NO-OP; whitespace
[ardour.git] / libs / ardour / mac_vst_plugin.cc
1 /*
2  * Copyright (C) 2016 Robin Gareus <robin@gareus.org>
3  * Copyright (C) 2004 Paul Davis
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2, or (at your option)
8  * any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software Foundation,
17  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19
20 #include <glibmm/fileutils.h>
21 #include <glibmm/miscutils.h>
22
23 #include "ardour/filesystem_paths.h"
24 #include "ardour/mac_vst_plugin.h"
25 #include "ardour/mac_vst_support.h"
26 #include "ardour/session.h"
27
28 #include "pbd/i18n.h"
29
30 using namespace std;
31 using namespace ARDOUR;
32 using namespace PBD;
33
34 MacVSTPlugin::MacVSTPlugin (AudioEngine& e, Session& session, VSTHandle* h, int unique_id)
35         : VSTPlugin (e, session, h)
36 {
37         /* Instantiate the plugin and return a VSTState* */
38
39         Session::vst_current_loading_id = unique_id;
40         if ((_state = mac_vst_instantiate (_handle, Session::vst_callback, this)) == 0) {
41                 throw failed_constructor ();
42         }
43         Session::vst_current_loading_id = 0;
44
45         set_plugin (_state->plugin);
46 }
47
48 MacVSTPlugin::MacVSTPlugin (const MacVSTPlugin &other)
49         : VSTPlugin (other)
50 {
51         _handle = other._handle;
52
53         Session::vst_current_loading_id = PBD::atoi (other.unique_id ());
54         if ((_state = mac_vst_instantiate (_handle, Session::vst_callback, this)) == 0) {
55                 throw failed_constructor ();
56         }
57         Session::vst_current_loading_id = 0;
58
59         _plugin = _state->plugin;
60
61         XMLNode* root = new XMLNode (other.state_node_name ());
62         LocaleGuard lg;
63         other.add_state (root);
64         set_state (*root, Stateful::loading_state_version);
65         delete root;
66
67         set_plugin (_state->plugin);
68 }
69
70 MacVSTPlugin::~MacVSTPlugin ()
71 {
72         mac_vst_close (_state);
73 }
74
75 PluginPtr
76 MacVSTPluginInfo::load (Session& session)
77 {
78         try {
79                 PluginPtr plugin;
80
81                 if (Config->get_use_macvst ()) {
82                         VSTHandle* handle;
83
84                         handle = mac_vst_load (path.c_str ());
85
86                         if (handle == NULL) {
87                                 error << string_compose (_("MacVST: cannot load module from \"%1\""), path) << endmsg;
88                         }
89                         else {
90                                 plugin.reset (new MacVSTPlugin (session.engine (), session, handle, PBD::atoi (unique_id)));
91                         }
92                 }
93                 else {
94                         error << _("You asked ardour to not use any MacVST plugins") << endmsg;
95                         return PluginPtr ((Plugin*) 0);
96                 }
97
98                 plugin->set_info (PluginInfoPtr (new MacVSTPluginInfo (*this)));
99                 return plugin;
100         }
101
102         catch (failed_constructor &err) {
103                 return PluginPtr ((Plugin*) 0);
104         }
105 }
106
107 std::vector<Plugin::PresetRecord>
108 MacVSTPluginInfo::get_presets (bool user_only) const
109 {
110         std::vector<Plugin::PresetRecord> p;
111 #ifndef NO_PLUGIN_STATE
112         if (!Config->get_use_macvst ()) {
113                 return p;
114         }
115
116         if (!user_only) {
117                 // TODO - cache, instantiating the plugin can be heavy
118                 /* Built-in presets */
119                 VSTHandle* handle = mac_vst_load (path.c_str ());
120                 Session::vst_current_loading_id = atoi (unique_id);
121                 AEffect* plugin = handle->main_entry (Session::vst_callback);
122                 Session::vst_current_loading_id = 0;
123
124                 plugin->dispatcher (plugin, effOpen, 0, 0, 0, 0); // :(
125                 int const vst_version = plugin->dispatcher (plugin, effGetVstVersion, 0, 0, NULL, 0);
126
127                 for (int i = 0; i < plugin->numPrograms; ++i) {
128                         Plugin::PresetRecord r (string_compose (X_("VST:%1:%2"), unique_id, i), "", false);
129                         if (vst_version >= 2) {
130                                 char buf[256];
131                                 if (plugin->dispatcher (plugin, 29, i, 0, buf, 0) == 1) {
132                                         r.label = buf;
133                                 } else {
134                                         r.label = string_compose (_("Preset %1"), i);
135                                 }
136                         } else {
137                                 r.label = string_compose (_("Preset %1"), i);
138                         }
139                         p.push_back (r);
140                 }
141
142                 plugin->dispatcher (plugin, effMainsChanged, 0, 0, 0, 0);
143                 plugin->dispatcher (plugin, effClose, 0, 0, 0, 0); // :(
144
145                 if (handle->plugincnt) {
146                         handle->plugincnt--;
147                 }
148                 mac_vst_unload (handle);
149         }
150
151         /* user presets */
152         XMLTree* t = new XMLTree;
153         std::string pf = Glib::build_filename (ARDOUR::user_config_directory (), "presets", string_compose ("vst-%1", unique_id));
154         if (Glib::file_test (pf, Glib::FILE_TEST_EXISTS)) {
155                 t->set_filename (pf);
156                 if (t->read ()) { // TODO read names only. skip parsing the actual data
157                         XMLNode* root = t->root ();
158                         for (XMLNodeList::const_iterator i = root->children ().begin (); i != root->children ().end (); ++i) {
159                                 XMLProperty const * uri = (*i)->property (X_("uri"));
160                                 XMLProperty const * label = (*i)->property (X_("label"));
161                                 p.push_back (Plugin::PresetRecord (uri->value (), label->value (), true));
162                         }
163                 }
164         }
165         delete t;
166 #endif
167
168         return p;
169 }
170
171 MacVSTPluginInfo::MacVSTPluginInfo ()
172 {
173         type = ARDOUR::MacVST;
174 }