opaque xfade patch + a version of the editor ruler/playhead/click patch
[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->creator = descriptor->Maker;
252                 info->path = path;
253                 info->index = i;
254                 info->n_inputs = 0;
255                 info->n_outputs = 0;
256                 info->type = ARDOUR::LADSPA;
257                 info->unique_id = descriptor->UniqueID;
258                 
259                 for (uint32_t n=0; n < descriptor->PortCount; ++n) {
260                         if ( LADSPA_IS_PORT_AUDIO (descriptor->PortDescriptors[n]) ) {
261                                 if ( LADSPA_IS_PORT_INPUT (descriptor->PortDescriptors[n]) ) {
262                                         info->n_inputs++;
263                                 }
264                                 else if ( LADSPA_IS_PORT_OUTPUT (descriptor->PortDescriptors[n]) ) {
265                                         info->n_outputs++;
266                                 }
267                         }
268                 }
269
270                 _ladspa_plugin_info.push_back (info);
271         }
272
273 // GDB WILL NOT LIKE YOU IF YOU DO THIS
274 //      dlclose (module);
275
276         return 0;
277 }
278
279 string
280 PluginManager::get_ladspa_category (uint32_t plugin_id)
281 {
282         char buf[256];
283         lrdf_statement pattern;
284
285         snprintf(buf, sizeof(buf), "%s%" PRIu32, LADSPA_BASE, plugin_id);
286         pattern.subject = buf;
287         pattern.predicate = RDF_TYPE;
288         pattern.object = 0;
289         pattern.object_type = lrdf_uri;
290
291         lrdf_statement* matches1 = lrdf_matches (&pattern);
292
293         if (!matches1) {
294                 return _("Unknown");
295         }
296
297         pattern.subject = matches1->object;
298         pattern.predicate = LADSPA_BASE "hasLabel";
299         pattern.object = 0;
300         pattern.object_type = lrdf_literal;
301
302         lrdf_statement* matches2 = lrdf_matches (&pattern);
303         lrdf_free_statements(matches1);
304
305         if (!matches2) {
306                 return _("Unknown");
307         }
308
309         string label = matches2->object;
310         lrdf_free_statements(matches2);
311
312         return label;
313 }
314
315 #ifdef VST_SUPPORT
316
317 void
318 PluginManager::vst_refresh ()
319 {
320         _vst_plugin_info.clear ();
321
322         if (vst_path.length() == 0) {
323                 vst_path = "/usr/local/lib/vst:/usr/lib/vst";
324         }
325
326         vst_discover_from_path (vst_path);
327 }
328
329 int
330 PluginManager::add_vst_directory (string path)
331 {
332         if (vst_discover_from_path (path) == 0) {
333                 vst_path += ':';
334                 vst_path += path;
335                 return 0;
336         } 
337         return -1;
338 }
339
340 static bool vst_filter (const string& str, void *arg)
341 {
342         /* Not a dotfile, has a prefix before a period, suffix is "dll" */
343
344         return str[0] != '.' && (str.length() > 4 && str.find (".dll") == (str.length() - 4));
345 }
346
347 int
348 PluginManager::vst_discover_from_path (string path)
349 {
350         PathScanner scanner;
351         vector<string *> *plugin_objects;
352         vector<string *>::iterator x;
353         int ret = 0;
354
355         info << "detecting VST plugins along " << path << endmsg;
356
357         plugin_objects = scanner (vst_path, vst_filter, 0, true, true);
358
359         if (plugin_objects) {
360                 for (x = plugin_objects->begin(); x != plugin_objects->end (); ++x) {
361                         vst_discover (**x);
362                 }
363         }
364
365         vector_delete (plugin_objects);
366         return ret;
367 }
368
369 int
370 PluginManager::vst_discover (string path)
371 {
372         FSTInfo* finfo;
373
374         if ((finfo = fst_get_info (const_cast<char *> (path.c_str()))) == 0) {
375                 warning << "Cannot get VST information from " << path << endmsg;
376                 return -1;
377         }
378
379         if (!finfo->canProcessReplacing) {
380                 warning << string_compose (_("VST plugin %1 does not support processReplacing, and so cannot be used in ardour at this time"),
381                                     finfo->name)
382                         << endl;
383         }
384         
385         PluginInfoPtr info(new VSTPluginInfo);
386
387         /* what a goddam joke freeware VST is */
388
389         if (!strcasecmp ("The Unnamed plugin", finfo->name)) {
390                 info->name = PBD::basename_nosuffix (path);
391         } else {
392                 info->name = finfo->name;
393         }
394
395         info->category = "VST";
396         info->path = path;
397         // need to set info->creator but FST doesn't provide it
398         info->index = 0;
399         info->n_inputs = finfo->numInputs;
400         info->n_outputs = finfo->numOutputs;
401         info->type = ARDOUR::VST;
402         
403         _vst_plugin_info.push_back (info);
404         fst_free_info (finfo);
405
406         return 0;
407 }
408
409 #endif // VST_SUPPORT