copy VST state on copy construction
[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
67 WindowsVSTPlugin::~WindowsVSTPlugin ()
68 {
69         deactivate ();
70         fst_close (_state);
71 }
72
73 PluginPtr
74 WindowsVSTPluginInfo::load (Session& session)
75 {
76         try {
77                 PluginPtr plugin;
78
79                 if (Config->get_use_windows_vst ()) {
80                         VSTHandle* handle;
81
82                         handle = fst_load(path.c_str());
83
84                         if (!handle) {
85                                 error << string_compose(_("VST: cannot load module from \"%1\""), path) << endmsg;
86                         } else {
87                                 plugin.reset (new WindowsVSTPlugin (session.engine(), session, handle, PBD::atoi(unique_id)));
88                         }
89                 } else {
90                         error << _("You asked ardour to not use any VST plugins") << endmsg;
91                         return PluginPtr ((Plugin*) 0);
92                 }
93
94                 plugin->set_info(PluginInfoPtr(new WindowsVSTPluginInfo(*this)));
95                 return plugin;
96         }
97
98         catch (failed_constructor &err) {
99                 return PluginPtr ((Plugin*) 0);
100         }
101 }
102
103 std::vector<Plugin::PresetRecord>
104 WindowsVSTPluginInfo::get_presets (bool user_only) const
105 {
106         std::vector<Plugin::PresetRecord> p;
107 #ifndef NO_PLUGIN_STATE
108         if (!Config->get_use_lxvst()) {
109                 return p;
110         }
111
112         if (!user_only) {
113                 // TODO cache and load factory-preset names
114         }
115
116         /* user presets */
117         XMLTree* t = new XMLTree;
118         std::string pf = Glib::build_filename (ARDOUR::user_config_directory (), "presets", string_compose ("vst-%1", unique_id));
119         if (Glib::file_test (pf, Glib::FILE_TEST_EXISTS)) {
120                 t->set_filename (pf);
121                 if (t->read ()) {
122                         XMLNode* root = t->root ();
123                         for (XMLNodeList::const_iterator i = root->children().begin(); i != root->children().end(); ++i) {
124                                 XMLProperty const * uri = (*i)->property (X_("uri"));
125                                 XMLProperty const * label = (*i)->property (X_("label"));
126                                 p.push_back (Plugin::PresetRecord (uri->value(), label->value(), true));
127                         }
128                 }
129         }
130         delete t;
131 #endif
132
133         return p;
134 }
135
136 WindowsVSTPluginInfo::WindowsVSTPluginInfo()
137 {
138        type = ARDOUR::Windows_VST;
139 }
140