PBD::Signal<...>::connect() is already thread safe, so drop intermediate proxy/call_s...
[ardour.git] / libs / ardour / windows_vst_plugin.cc
1 /*
2     Copyright (C) 2004 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "fst.h"
21
22 #include <glibmm/fileutils.h>
23 #include <glibmm/miscutils.h>
24
25 #include "ardour/filesystem_paths.h"
26 #include "ardour/windows_vst_plugin.h"
27 #include "ardour/session.h"
28
29 #include "pbd/i18n.h"
30
31 using namespace std;
32 using namespace ARDOUR;
33 using namespace PBD;
34
35 WindowsVSTPlugin::WindowsVSTPlugin (AudioEngine& e, Session& session, VSTHandle* h, int unique_id)
36         : VSTPlugin (e, session, h)
37 {
38         Session::vst_current_loading_id = unique_id;
39         if ((_state = fst_instantiate (_handle, Session::vst_callback, this)) == 0) {
40                 throw failed_constructor();
41         }
42         Session::vst_current_loading_id = 0;
43
44         set_plugin (_state->plugin);
45 }
46
47 WindowsVSTPlugin::WindowsVSTPlugin (const WindowsVSTPlugin &other)
48         : VSTPlugin (other)
49 {
50         _handle = other._handle;
51
52         Session::vst_current_loading_id = PBD::atoi(other.unique_id());
53         if ((_state = fst_instantiate (_handle, Session::vst_callback, this)) == 0) {
54                 throw failed_constructor();
55         }
56         Session::vst_current_loading_id = 0;
57
58         _plugin = _state->plugin;
59
60         XMLNode* root = new XMLNode (other.state_node_name ());
61         LocaleGuard lg;
62         other.add_state (root);
63         set_state (*root, Stateful::loading_state_version);
64         delete root;
65
66         set_plugin (_state->plugin);
67 }
68
69 WindowsVSTPlugin::~WindowsVSTPlugin ()
70 {
71         deactivate ();
72         fst_close (_state);
73 }
74
75 PluginPtr
76 WindowsVSTPluginInfo::load (Session& session)
77 {
78         try {
79                 PluginPtr plugin;
80
81                 if (Config->get_use_windows_vst ()) {
82                         VSTHandle* handle;
83
84                         handle = fst_load(path.c_str());
85
86                         if (!handle) {
87                                 error << string_compose(_("VST: cannot load module from \"%1\""), path) << endmsg;
88                         } else {
89                                 plugin.reset (new WindowsVSTPlugin (session.engine(), session, handle, PBD::atoi(unique_id)));
90                         }
91                 } else {
92                         error << _("You asked ardour to not use any VST plugins") << endmsg;
93                         return PluginPtr ((Plugin*) 0);
94                 }
95
96                 plugin->set_info(PluginInfoPtr(new WindowsVSTPluginInfo(*this)));
97                 return plugin;
98         }
99
100         catch (failed_constructor &err) {
101                 return PluginPtr ((Plugin*) 0);
102         }
103 }
104
105 std::vector<Plugin::PresetRecord>
106 WindowsVSTPluginInfo::get_presets (bool user_only) const
107 {
108         std::vector<Plugin::PresetRecord> p;
109 #ifndef NO_PLUGIN_STATE
110         if (!Config->get_use_lxvst()) {
111                 return p;
112         }
113
114         if (!user_only) {
115                 // TODO cache and load factory-preset names
116         }
117
118         /* user presets */
119         XMLTree* t = new XMLTree;
120         std::string pf = Glib::build_filename (ARDOUR::user_config_directory (), "presets", string_compose ("vst-%1", unique_id));
121         if (Glib::file_test (pf, Glib::FILE_TEST_EXISTS)) {
122                 t->set_filename (pf);
123                 if (t->read ()) {
124                         XMLNode* root = t->root ();
125                         for (XMLNodeList::const_iterator i = root->children().begin(); i != root->children().end(); ++i) {
126                                 XMLProperty const * uri = (*i)->property (X_("uri"));
127                                 XMLProperty const * label = (*i)->property (X_("label"));
128                                 p.push_back (Plugin::PresetRecord (uri->value(), label->value(), true));
129                         }
130                 }
131         }
132         delete t;
133 #endif
134
135         return p;
136 }
137
138 WindowsVSTPluginInfo::WindowsVSTPluginInfo()
139 {
140        type = ARDOUR::Windows_VST;
141 }
142