merged with 1697 revision of trunk (which is post-rc1 but pre-rc2
[ardour.git] / libs / ardour / plugin_manager.cc
1 /*
2     Copyright (C) 2000-2006 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 <sys/types.h>
21 #include <cstdio>
22 #include <lrdf.h>
23 #include <dlfcn.h>
24
25 #ifdef VST_SUPPORT
26 #include <fst.h>
27 #include <pbd/basename.h>
28 #include <string.h>
29 #endif // VST_SUPPORT
30
31 #include <pbd/pathscanner.h>
32
33 #include <ardour/ladspa.h>
34 #include <ardour/session.h>
35 #include <ardour/plugin_manager.h>
36 #include <ardour/plugin.h>
37 #include <ardour/ladspa_plugin.h>
38
39 #ifdef VST_SUPPORT
40 #include <ardour/vst_plugin.h>
41 #endif
42
43 #include <pbd/error.h>
44 #include <pbd/stl_delete.h>
45
46 #include "i18n.h"
47
48 using namespace ARDOUR;
49 using namespace PBD;
50
51 PluginManager* PluginManager::_manager = 0;
52
53 PluginManager::PluginManager ()
54 {
55         char* s;
56         string lrdf_path;
57
58         if ((s = getenv ("LADSPA_RDF_PATH"))){
59                 lrdf_path = s;
60         }
61
62         if (lrdf_path.length() == 0) {
63                 lrdf_path = "/usr/local/share/ladspa/rdf:/usr/share/ladspa/rdf";
64         }
65
66         add_lrdf_data(lrdf_path);
67         add_ladspa_presets();
68 #ifdef VST_SUPPORT
69         if (Config->get_use_vst()) {
70                 add_vst_presets();
71         }
72 #endif /* VST_SUPPORT */
73
74         if ((s = getenv ("LADSPA_PATH"))) {
75                 ladspa_path = s;
76         }
77
78         if ((s = getenv ("VST_PATH"))) {
79                 vst_path = s;
80         } else if ((s = getenv ("VST_PLUGINS"))) {
81                 vst_path = s;
82         }
83
84         refresh ();
85         if (_manager == 0) {
86                 _manager = this;
87         }
88 }
89
90 void
91 PluginManager::refresh ()
92 {
93         ladspa_refresh ();
94 #ifdef VST_SUPPORT
95         if (Config->get_use_vst()) {
96                 vst_refresh ();
97         }
98 #endif // VST_SUPPORT
99 }
100
101 void
102 PluginManager::ladspa_refresh ()
103 {
104         _ladspa_plugin_info.clear ();
105
106         if (ladspa_path.length() == 0) {
107                 ladspa_path = "/usr/local/lib64/ladspa:/usr/local/lib/ladspa:/usr/lib64/ladspa:/usr/lib/ladspa:/Library/Audio/Plug-Ins/LADSPA";
108         }
109
110         ladspa_discover_from_path (ladspa_path);
111 }
112
113 int
114 PluginManager::add_ladspa_directory (string path)
115 {
116         if (ladspa_discover_from_path (path) == 0) {
117                 ladspa_path += ':';
118                 ladspa_path += path;
119                 return 0;
120         } 
121         return -1;
122 }
123
124 static bool ladspa_filter (const string& str, void *arg)
125 {
126         /* Not a dotfile, has a prefix before a period, suffix is "so" */
127         
128         return str[0] != '.' && (str.length() > 3 && str.find (".so") == (str.length() - 3));
129 }
130
131 int
132 PluginManager::ladspa_discover_from_path (string path)
133 {
134         PathScanner scanner;
135         vector<string *> *plugin_objects;
136         vector<string *>::iterator x;
137         int ret = 0;
138
139         plugin_objects = scanner (ladspa_path, ladspa_filter, 0, true, true);
140
141         if (plugin_objects) {
142                 for (x = plugin_objects->begin(); x != plugin_objects->end (); ++x) {
143                         ladspa_discover (**x);
144                 }
145         }
146
147         vector_delete (plugin_objects);
148         return ret;
149 }
150
151 static bool rdf_filter (const string &str, void *arg)
152 {
153         return str[0] != '.' && 
154                    ((str.find(".rdf")  == (str.length() - 4)) ||
155             (str.find(".rdfs") == (str.length() - 5)) ||
156                     (str.find(".n3")   == (str.length() - 3)));
157 }
158
159 void
160 PluginManager::add_ladspa_presets()
161 {
162         add_presets ("ladspa");
163 }
164
165 void
166 PluginManager::add_vst_presets()
167 {
168         add_presets ("vst");
169 }
170 void
171 PluginManager::add_presets(string domain)
172 {
173
174         PathScanner scanner;
175         vector<string *> *presets;
176         vector<string *>::iterator x;
177
178         char* envvar;
179         if ((envvar = getenv ("HOME")) == 0) {
180                 return;
181         }
182
183         string path = string_compose("%1/.%2/rdf", envvar, domain);
184         presets = scanner (path, rdf_filter, 0, true, true);
185
186         if (presets) {
187                 for (x = presets->begin(); x != presets->end (); ++x) {
188                         string file = "file:" + **x;
189                         if (lrdf_read_file(file.c_str())) {
190                                 warning << string_compose(_("Could not parse rdf file: %1"), *x) << endmsg;
191                         }
192                 }
193         }
194
195         vector_delete (presets);
196 }
197
198 void
199 PluginManager::add_lrdf_data (const string &path)
200 {
201         PathScanner scanner;
202         vector<string *>* rdf_files;
203         vector<string *>::iterator x;
204         string uri;
205
206         rdf_files = scanner (path, rdf_filter, 0, true, true);
207
208         if (rdf_files) {
209                 for (x = rdf_files->begin(); x != rdf_files->end (); ++x) {
210                         uri = "file://" + **x;
211
212                         if (lrdf_read_file(uri.c_str())) {
213                                 warning << "Could not parse rdf file: " << uri << endmsg;
214                         }
215                 }
216         }
217
218         vector_delete (rdf_files);
219 }
220
221 int 
222 PluginManager::ladspa_discover (string path)
223 {
224         void *module;
225         const LADSPA_Descriptor *descriptor;
226         LADSPA_Descriptor_Function dfunc;
227         const char *errstr;
228
229         if ((module = dlopen (path.c_str(), RTLD_NOW)) == 0) {
230                 error << string_compose(_("LADSPA: cannot load module \"%1\" (%2)"), path, dlerror()) << endmsg;
231                 return -1;
232         }
233
234         dfunc = (LADSPA_Descriptor_Function) dlsym (module, "ladspa_descriptor");
235
236         if ((errstr = dlerror()) != 0) {
237                 error << string_compose(_("LADSPA: module \"%1\" has no descriptor function."), path) << endmsg;
238                 error << errstr << endmsg;
239                 dlclose (module);
240                 return -1;
241         }
242
243         for (uint32_t i = 0; ; ++i) {
244                 if ((descriptor = dfunc (i)) == 0) {
245                         break;
246                 }
247
248                 PluginInfoPtr info(new LadspaPluginInfo);
249                 info->name = descriptor->Name;
250                 info->category = get_ladspa_category(descriptor->UniqueID);
251                 info->path = path;
252                 info->index = i;
253                 info->n_inputs = 0;
254                 info->n_outputs = 0;
255                 info->type = ARDOUR::LADSPA;
256                 info->unique_id = descriptor->UniqueID;
257                 
258                 for (uint32_t n=0; n < descriptor->PortCount; ++n) {
259                         if ( LADSPA_IS_PORT_AUDIO (descriptor->PortDescriptors[n]) ) {
260                                 if ( LADSPA_IS_PORT_INPUT (descriptor->PortDescriptors[n]) ) {
261                                         info->n_inputs++;
262                                 }
263                                 else if ( LADSPA_IS_PORT_OUTPUT (descriptor->PortDescriptors[n]) ) {
264                                         info->n_outputs++;
265                                 }
266                         }
267                 }
268
269                 _ladspa_plugin_info.push_back (info);
270         }
271
272 // GDB WILL NOT LIKE YOU IF YOU DO THIS
273 //      dlclose (module);
274
275         return 0;
276 }
277
278 string
279 PluginManager::get_ladspa_category (uint32_t plugin_id)
280 {
281         char buf[256];
282         lrdf_statement pattern;
283
284         snprintf(buf, sizeof(buf), "%s%" PRIu32, LADSPA_BASE, plugin_id);
285         pattern.subject = buf;
286         pattern.predicate = RDF_TYPE;
287         pattern.object = 0;
288         pattern.object_type = lrdf_uri;
289
290         lrdf_statement* matches1 = lrdf_matches (&pattern);
291
292         if (!matches1) {
293                 return _("Unknown");
294         }
295
296         pattern.subject = matches1->object;
297         pattern.predicate = LADSPA_BASE "hasLabel";
298         pattern.object = 0;
299         pattern.object_type = lrdf_literal;
300
301         lrdf_statement* matches2 = lrdf_matches (&pattern);
302         lrdf_free_statements(matches1);
303
304         if (!matches2) {
305                 return _("Unknown");
306         }
307
308         string label = matches2->object;
309         lrdf_free_statements(matches2);
310
311         return label;
312 }
313
314 #ifdef VST_SUPPORT
315
316 void
317 PluginManager::vst_refresh ()
318 {
319         _vst_plugin_info.clear ();
320
321         if (vst_path.length() == 0) {
322                 vst_path = "/usr/local/lib/vst:/usr/lib/vst";
323         }
324
325         vst_discover_from_path (vst_path);
326 }
327
328 int
329 PluginManager::add_vst_directory (string path)
330 {
331         if (vst_discover_from_path (path) == 0) {
332                 vst_path += ':';
333                 vst_path += path;
334                 return 0;
335         } 
336         return -1;
337 }
338
339 static bool vst_filter (const string& str, void *arg)
340 {
341         /* Not a dotfile, has a prefix before a period, suffix is "dll" */
342
343         return str[0] != '.' && (str.length() > 4 && str.find (".dll") == (str.length() - 4));
344 }
345
346 int
347 PluginManager::vst_discover_from_path (string path)
348 {
349         PathScanner scanner;
350         vector<string *> *plugin_objects;
351         vector<string *>::iterator x;
352         int ret = 0;
353
354         info << "detecting VST plugins along " << path << endmsg;
355
356         plugin_objects = scanner (vst_path, vst_filter, 0, true, true);
357
358         if (plugin_objects) {
359                 for (x = plugin_objects->begin(); x != plugin_objects->end (); ++x) {
360                         vst_discover (**x);
361                 }
362         }
363
364         vector_delete (plugin_objects);
365         return ret;
366 }
367
368 int
369 PluginManager::vst_discover (string path)
370 {
371         FSTInfo* finfo;
372
373         if ((finfo = fst_get_info (const_cast<char *> (path.c_str()))) == 0) {
374                 warning << "Cannot get VST information from " << path << endmsg;
375                 return -1;
376         }
377
378         if (!finfo->canProcessReplacing) {
379                 warning << string_compose (_("VST plugin %1 does not support processReplacing, and so cannot be used in ardour at this time"),
380                                     finfo->name)
381                         << endl;
382         }
383         
384         PluginInfoPtr info(new VSTPluginInfo);
385
386         /* what a goddam joke freeware VST is */
387
388         if (!strcasecmp ("The Unnamed plugin", finfo->name)) {
389                 info->name = PBD::basename_nosuffix (path);
390         } else {
391                 info->name = finfo->name;
392         }
393
394         info->category = "VST";
395         info->path = path;
396         info->index = 0;
397         info->n_inputs = finfo->numInputs;
398         info->n_outputs = finfo->numOutputs;
399         info->type = ARDOUR::VST;
400         
401         _vst_plugin_info.push_back (info);
402         fst_free_info (finfo);
403
404         return 0;
405 }
406
407 #endif // VST_SUPPORT