Only show user-presets in favorite sidebar
[ardour.git] / libs / ardour / ladspa_plugin.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 #ifdef WAF_BUILD
21 #include "libardour-config.h"
22 #endif
23
24 #include <inttypes.h>
25
26 #include <vector>
27 #include <string>
28
29 #include <cstdlib>
30 #include <cstdio> // so libraptor doesn't complain
31 #include <cmath>
32 #ifndef COMPILER_MSVC
33 #include <dirent.h>
34 #endif
35 #include <sys/stat.h>
36 #include <cerrno>
37
38 #ifdef HAVE_LRDF
39 #include <lrdf.h>
40 #endif
41
42 #include "pbd/compose.h"
43 #include "pbd/error.h"
44 #include "pbd/locale_guard.h"
45 #include "pbd/xml++.h"
46 #include "pbd/stacktrace.h"
47
48 #include "ardour/session.h"
49 #include "ardour/ladspa_plugin.h"
50 #include "ardour/buffer_set.h"
51 #include "ardour/audio_buffer.h"
52
53 #include "pbd/stl_delete.h"
54
55 #include "pbd/i18n.h"
56 #include <locale.h>
57
58 using namespace std;
59 using namespace ARDOUR;
60 using namespace PBD;
61
62 LadspaPlugin::LadspaPlugin (string module_path, AudioEngine& e, Session& session, uint32_t index, samplecnt_t rate)
63         : Plugin (e, session)
64 {
65         init (module_path, index, rate);
66 }
67
68 LadspaPlugin::LadspaPlugin (const LadspaPlugin &other)
69         : Plugin (other)
70 {
71         init (other._module_path, other._index, other._sample_rate);
72
73         for (uint32_t i = 0; i < parameter_count(); ++i) {
74                 _control_data[i] = other._shadow_data[i];
75                 _shadow_data[i] = other._shadow_data[i];
76         }
77 }
78
79 void
80 LadspaPlugin::init (string module_path, uint32_t index, samplecnt_t rate)
81 {
82         void* func;
83         LADSPA_Descriptor_Function dfunc;
84         uint32_t i, port_cnt;
85
86         _module_path = module_path;
87         _module = new Glib::Module(_module_path);
88         _control_data = 0;
89         _shadow_data = 0;
90         _latency_control_port = 0;
91         _was_activated = false;
92
93         if (!(*_module)) {
94                 error << _("LADSPA: Unable to open module: ") << Glib::Module::get_last_error() << endmsg;
95                 delete _module;
96                 throw failed_constructor();
97         }
98
99         if (!_module->get_symbol("ladspa_descriptor", func)) {
100                 error << _("LADSPA: module has no descriptor function.") << endmsg;
101                 throw failed_constructor();
102         }
103
104         dfunc = (LADSPA_Descriptor_Function)func;
105
106         if ((_descriptor = dfunc (index)) == 0) {
107                 error << _("LADSPA: plugin has gone away since discovery!") << endmsg;
108                 throw failed_constructor();
109         }
110
111         _index = index;
112
113         if (LADSPA_IS_INPLACE_BROKEN(_descriptor->Properties)) {
114                 error << string_compose(_("LADSPA: \"%1\" cannot be used, since it cannot do inplace processing"), _descriptor->Name) << endmsg;
115                 throw failed_constructor();
116         }
117
118         _sample_rate = rate;
119
120         if (_descriptor->instantiate == 0) {
121                 throw failed_constructor();
122         }
123
124         if ((_handle = _descriptor->instantiate (_descriptor, rate)) == 0) {
125                 throw failed_constructor();
126         }
127
128         port_cnt = parameter_count();
129
130         _control_data = new LADSPA_Data[port_cnt];
131         memset (_control_data, 0, sizeof (LADSPA_Data) * port_cnt);
132         _shadow_data = new LADSPA_Data[port_cnt];
133         memset (_shadow_data, 0, sizeof (LADSPA_Data) * port_cnt);
134
135         for (i = 0; i < port_cnt; ++i) {
136                 if (LADSPA_IS_PORT_CONTROL(port_descriptor (i))) {
137                         connect_port (i, &_control_data[i]);
138
139                         if (LADSPA_IS_PORT_OUTPUT(port_descriptor (i)) &&
140                             strcmp (port_names()[i], X_("latency")) == 0) {
141                                 _latency_control_port = &_control_data[i];
142                                 *_latency_control_port = 0;
143                         }
144
145                         _shadow_data[i] = _default_value (i);
146                         _control_data[i] = _shadow_data[i];
147                 }
148         }
149
150         latency_compute_run ();
151 }
152
153 LadspaPlugin::~LadspaPlugin ()
154 {
155         deactivate ();
156         cleanup ();
157
158         // glib has internal reference counting on modules so this is ok
159         delete _module;
160
161         delete [] _control_data;
162         delete [] _shadow_data;
163 }
164
165 string
166 LadspaPlugin::unique_id() const
167 {
168         char buf[32];
169         snprintf (buf, sizeof (buf), "%lu", _descriptor->UniqueID);
170         return string (buf);
171 }
172
173 float
174 LadspaPlugin::_default_value (uint32_t port) const
175 {
176         const LADSPA_PortRangeHint *prh = port_range_hints();
177         float ret = 0.0f;
178         bool bounds_given = false;
179         bool sr_scaling = false;
180         bool earlier_hint = false;
181
182         /* defaults - case 1 */
183
184         if (LADSPA_IS_HINT_HAS_DEFAULT(prh[port].HintDescriptor)) {
185                 if (LADSPA_IS_HINT_DEFAULT_MINIMUM(prh[port].HintDescriptor)) {
186                         ret = prh[port].LowerBound;
187                         bounds_given = true;
188                         sr_scaling = true;
189                 }
190
191                 else if (LADSPA_IS_HINT_DEFAULT_LOW(prh[port].HintDescriptor)) {
192                         ret = prh[port].LowerBound * 0.75f + prh[port].UpperBound * 0.25f;
193                         bounds_given = true;
194                         sr_scaling = true;
195                 }
196                 else if (LADSPA_IS_HINT_DEFAULT_MIDDLE(prh[port].HintDescriptor)) {
197                         ret = prh[port].LowerBound * 0.5f + prh[port].UpperBound * 0.5f;
198                         bounds_given = true;
199                         sr_scaling = true;
200                 }
201                 else if (LADSPA_IS_HINT_DEFAULT_HIGH(prh[port].HintDescriptor)) {
202                         ret = prh[port].LowerBound * 0.25f + prh[port].UpperBound * 0.75f;
203                         bounds_given = true;
204                         sr_scaling = true;
205                 }
206                 else if (LADSPA_IS_HINT_DEFAULT_MAXIMUM(prh[port].HintDescriptor)) {
207                         ret = prh[port].UpperBound;
208                         bounds_given = true;
209                         sr_scaling = true;
210                 }
211                 else if (LADSPA_IS_HINT_DEFAULT_0(prh[port].HintDescriptor)) {
212                         ret = 0.0f;
213                         earlier_hint = true;
214                 }
215                 else if (LADSPA_IS_HINT_DEFAULT_1(prh[port].HintDescriptor)) {
216                         ret = 1.0f;
217                         earlier_hint = true;
218                 }
219                 else if (LADSPA_IS_HINT_DEFAULT_100(prh[port].HintDescriptor)) {
220                         ret = 100.0f;
221                         earlier_hint = true;
222                 }
223                 else if (LADSPA_IS_HINT_DEFAULT_440(prh[port].HintDescriptor)) {
224                         ret = 440.0f;
225                         earlier_hint = true;
226                 }
227                 else {
228                         /* no hint found */
229                         ret = 0.0f;
230                 }
231         }
232
233         /* defaults - case 2 */
234         else if (LADSPA_IS_HINT_BOUNDED_BELOW(prh[port].HintDescriptor) &&
235                  !LADSPA_IS_HINT_BOUNDED_ABOVE(prh[port].HintDescriptor)) {
236
237                 if (prh[port].LowerBound < 0) {
238                         ret = 0.0f;
239                 } else {
240                         ret = prh[port].LowerBound;
241                 }
242
243                 bounds_given = true;
244                 sr_scaling = true;
245         }
246
247         /* defaults - case 3 */
248         else if (!LADSPA_IS_HINT_BOUNDED_BELOW(prh[port].HintDescriptor) &&
249                  LADSPA_IS_HINT_BOUNDED_ABOVE(prh[port].HintDescriptor)) {
250
251                 if (prh[port].UpperBound > 0) {
252                         ret = 0.0f;
253                 } else {
254                         ret = prh[port].UpperBound;
255                 }
256
257                 bounds_given = true;
258                 sr_scaling = true;
259         }
260
261         /* defaults - case 4 */
262         else if (LADSPA_IS_HINT_BOUNDED_BELOW(prh[port].HintDescriptor) &&
263                  LADSPA_IS_HINT_BOUNDED_ABOVE(prh[port].HintDescriptor)) {
264
265                 if (prh[port].LowerBound < 0 && prh[port].UpperBound > 0) {
266                         ret = 0.0f;
267                 } else if (prh[port].LowerBound < 0 && prh[port].UpperBound < 0) {
268                         ret = prh[port].UpperBound;
269                 } else {
270                         ret = prh[port].LowerBound;
271                 }
272                 bounds_given = true;
273                 sr_scaling = true;
274         }
275
276         /* defaults - case 5 */
277
278         if (LADSPA_IS_HINT_SAMPLE_RATE(prh[port].HintDescriptor) && !earlier_hint) {
279                 if (bounds_given) {
280                         if (sr_scaling) {
281                                 ret *= _sample_rate;
282                         }
283                 } else {
284                         ret = _sample_rate;
285                 }
286         }
287
288         return ret;
289 }
290
291 void
292 LadspaPlugin::set_parameter (uint32_t which, float val)
293 {
294         if (which < _descriptor->PortCount) {
295
296                 if (get_parameter (which) == val) {
297                         return;
298                 }
299
300                 _shadow_data[which] = (LADSPA_Data) val;
301
302 #if 0
303                 if (which < parameter_count() && controls[which]) {
304                         controls[which]->Changed ();
305                 }
306 #endif
307
308         } else {
309                 warning << string_compose (_("illegal parameter number used with plugin \"%1\". This may "
310                                              "indicate a change in the plugin design, and presets may be "
311                                              "invalid"), name())
312                         << endmsg;
313         }
314
315         Plugin::set_parameter (which, val);
316 }
317
318 /** @return `plugin' value */
319 float
320 LadspaPlugin::get_parameter (uint32_t which) const
321 {
322         if (LADSPA_IS_PORT_INPUT(port_descriptor (which))) {
323                 return (float) _shadow_data[which];
324         } else {
325                 return (float) _control_data[which];
326         }
327 }
328
329 uint32_t
330 LadspaPlugin::nth_parameter (uint32_t n, bool& ok) const
331 {
332         uint32_t x, c;
333
334         ok = false;
335
336         for (c = 0, x = 0; x < _descriptor->PortCount; ++x) {
337                 if (LADSPA_IS_PORT_CONTROL (port_descriptor (x))) {
338                         if (c++ == n) {
339                                 ok = true;
340                                 return x;
341                         }
342                 }
343         }
344         return 0;
345 }
346
347 void
348 LadspaPlugin::add_state (XMLNode* root) const
349 {
350         XMLNode *child;
351
352         for (uint32_t i = 0; i < parameter_count(); ++i){
353
354                 if (LADSPA_IS_PORT_INPUT(port_descriptor (i)) &&
355                     LADSPA_IS_PORT_CONTROL(port_descriptor (i))){
356
357                         child = new XMLNode("Port");
358                         child->set_property("number", i);
359                         child->set_property("value", _shadow_data[i]);
360                         root->add_child_nocopy (*child);
361                 }
362         }
363 }
364
365 int
366 LadspaPlugin::set_state (const XMLNode& node, int version)
367 {
368         if (version < 3000) {
369                 return set_state_2X (node, version);
370         }
371
372 #ifndef NO_PLUGIN_STATE
373         XMLNodeList nodes;
374         XMLNodeConstIterator iter;
375         XMLNode *child;
376 #endif
377
378         if (node.name() != state_node_name()) {
379                 error << _("Bad node sent to LadspaPlugin::set_state") << endmsg;
380                 return -1;
381         }
382
383 #ifndef NO_PLUGIN_STATE
384
385         nodes = node.children ("Port");
386
387         for (iter = nodes.begin(); iter != nodes.end(); ++iter) {
388
389                 child = *iter;
390
391                 uint32_t port_id;
392                 float value;
393
394                 if (!child->get_property ("number", port_id)) {
395                         warning << _("LADSPA: no ladspa port number") << endmsg;
396                         continue;
397                 }
398
399                 if (!child->get_property ("value", value)) {
400                         warning << _("LADSPA: no ladspa port data") << endmsg;
401                         continue;
402                 }
403
404                 set_parameter (port_id, value);
405         }
406 #endif
407
408         latency_compute_run ();
409
410         return Plugin::set_state (node, version);
411 }
412
413 int
414 LadspaPlugin::set_state_2X (const XMLNode& node, int /* version */)
415 {
416 #ifndef NO_PLUGIN_STATE
417         XMLNodeList nodes;
418         XMLProperty const * prop;
419         XMLNodeConstIterator iter;
420         XMLNode *child;
421         const char *port;
422         const char *data;
423         uint32_t port_id;
424 #endif
425         LocaleGuard lg;
426
427         if (node.name() != state_node_name()) {
428                 error << _("Bad node sent to LadspaPlugin::set_state") << endmsg;
429                 return -1;
430         }
431
432 #ifndef NO_PLUGIN_STATE
433         nodes = node.children ("port");
434
435         for(iter = nodes.begin(); iter != nodes.end(); ++iter){
436
437                 child = *iter;
438
439                 if ((prop = child->property("number")) != 0) {
440                         port = prop->value().c_str();
441                 } else {
442                         warning << _("LADSPA: no ladspa port number") << endmsg;
443                         continue;
444                 }
445                 if ((prop = child->property("value")) != 0) {
446                         data = prop->value().c_str();
447                 } else {
448                         warning << _("LADSPA: no ladspa port data") << endmsg;
449                         continue;
450                 }
451
452                 sscanf (port, "%" PRIu32, &port_id);
453                 set_parameter (port_id, atof(data));
454         }
455
456         latency_compute_run ();
457 #endif
458
459         return 0;
460 }
461
462 int
463 LadspaPlugin::get_parameter_descriptor (uint32_t which, ParameterDescriptor& desc) const
464 {
465         LADSPA_PortRangeHint prh;
466
467         prh  = port_range_hints()[which];
468
469
470         if (LADSPA_IS_HINT_BOUNDED_BELOW(prh.HintDescriptor)) {
471                 if (LADSPA_IS_HINT_SAMPLE_RATE(prh.HintDescriptor)) {
472                         desc.lower = prh.LowerBound * _session.sample_rate();
473                 } else {
474                         desc.lower = prh.LowerBound;
475                 }
476         } else {
477                 desc.lower = 0;
478         }
479
480
481         if (LADSPA_IS_HINT_BOUNDED_ABOVE(prh.HintDescriptor)) {
482                 if (LADSPA_IS_HINT_SAMPLE_RATE(prh.HintDescriptor)) {
483                         desc.upper = prh.UpperBound * _session.sample_rate();
484                 } else {
485                         desc.upper = prh.UpperBound;
486                 }
487         } else {
488                 if (LADSPA_IS_HINT_TOGGLED (prh.HintDescriptor)) {
489                         desc.upper = 1;
490                 } else {
491                         desc.upper = 4; /* completely arbitrary */
492                 }
493         }
494
495         if (LADSPA_IS_HINT_HAS_DEFAULT (prh.HintDescriptor)) {
496                 desc.normal = _default_value(which);
497         } else {
498                 /* if there is no explicit hint for the default
499                  * value, use lower bound. This is not great but
500                  * better than just assuming '0' which may be out-of range.
501                  */
502                 desc.normal = desc.lower;
503         }
504
505         desc.toggled = LADSPA_IS_HINT_TOGGLED (prh.HintDescriptor);
506         desc.logarithmic = LADSPA_IS_HINT_LOGARITHMIC (prh.HintDescriptor);
507         desc.sr_dependent = LADSPA_IS_HINT_SAMPLE_RATE (prh.HintDescriptor);
508         desc.integer_step = LADSPA_IS_HINT_INTEGER (prh.HintDescriptor);
509
510         desc.label = port_names()[which];
511
512         desc.scale_points = get_scale_points(which);
513         desc.update_steps();
514
515         return 0;
516 }
517
518 string
519 LadspaPlugin::describe_parameter (Evoral::Parameter which)
520 {
521         if (which.type() == PluginAutomation && which.id() < parameter_count()) {
522                 return port_names()[which.id()];
523         } else {
524                 return "??";
525         }
526 }
527
528 ARDOUR::samplecnt_t
529 LadspaPlugin::signal_latency () const
530 {
531         if (_user_latency) {
532                 return _user_latency;
533         }
534
535         if (_latency_control_port) {
536                 return (samplecnt_t) floor (*_latency_control_port);
537         } else {
538                 return 0;
539         }
540 }
541
542 set<Evoral::Parameter>
543 LadspaPlugin::automatable () const
544 {
545         set<Evoral::Parameter> ret;
546
547         for (uint32_t i = 0; i < parameter_count(); ++i){
548                 if (LADSPA_IS_PORT_INPUT(port_descriptor (i)) &&
549                     LADSPA_IS_PORT_CONTROL(port_descriptor (i))){
550
551                         ret.insert (ret.end(), Evoral::Parameter(PluginAutomation, 0, i));
552                 }
553         }
554
555         return ret;
556 }
557
558 int
559 LadspaPlugin::connect_and_run (BufferSet& bufs,
560                 samplepos_t start, samplepos_t end, double speed,
561                 ChanMapping const& in_map, ChanMapping const& out_map,
562                 pframes_t nframes, samplecnt_t offset)
563 {
564         Plugin::connect_and_run (bufs, start, end, speed, in_map, out_map, nframes, offset);
565
566         cycles_t now;
567         cycles_t then = get_cycles ();
568
569         BufferSet& silent_bufs  = _session.get_silent_buffers(ChanCount(DataType::AUDIO, 1));
570         BufferSet& scratch_bufs = _session.get_scratch_buffers(ChanCount(DataType::AUDIO, 1));
571
572         uint32_t audio_in_index  = 0;
573         uint32_t audio_out_index = 0;
574         bool valid;
575         for (uint32_t port_index = 0; port_index < parameter_count(); ++port_index) {
576                 if (LADSPA_IS_PORT_AUDIO(port_descriptor(port_index))) {
577                         if (LADSPA_IS_PORT_INPUT(port_descriptor(port_index))) {
578                                 const uint32_t buf_index = in_map.get(DataType::AUDIO, audio_in_index++, &valid);
579                                 connect_port(port_index,
580                                              valid ? bufs.get_audio(buf_index).data(offset)
581                                                    : silent_bufs.get_audio(0).data(offset));
582                         } else if (LADSPA_IS_PORT_OUTPUT(port_descriptor(port_index))) {
583                                 const uint32_t buf_index = out_map.get(DataType::AUDIO, audio_out_index++, &valid);
584                                 connect_port(port_index,
585                                              valid ? bufs.get_audio(buf_index).data(offset)
586                                                    : scratch_bufs.get_audio(0).data(offset));
587                         }
588                 }
589         }
590
591         run_in_place (nframes);
592         now = get_cycles ();
593         set_cycles ((uint32_t) (now - then));
594
595         return 0;
596 }
597
598 bool
599 LadspaPlugin::parameter_is_control (uint32_t param) const
600 {
601         return LADSPA_IS_PORT_CONTROL(port_descriptor (param));
602 }
603
604 bool
605 LadspaPlugin::parameter_is_audio (uint32_t param) const
606 {
607         return LADSPA_IS_PORT_AUDIO(port_descriptor (param));
608 }
609
610 bool
611 LadspaPlugin::parameter_is_output (uint32_t param) const
612 {
613         return LADSPA_IS_PORT_OUTPUT(port_descriptor (param));
614 }
615
616 bool
617 LadspaPlugin::parameter_is_input (uint32_t param) const
618 {
619         return LADSPA_IS_PORT_INPUT(port_descriptor (param));
620 }
621
622 void
623 LadspaPlugin::print_parameter (uint32_t param, char *buf, uint32_t len) const
624 {
625         if (buf && len) {
626                 if (param < parameter_count()) {
627                         snprintf (buf, len, "%.3f", get_parameter (param));
628                 } else {
629                         strcat (buf, "0");
630                 }
631         }
632 }
633
634 boost::shared_ptr<ScalePoints>
635 LadspaPlugin::get_scale_points(uint32_t port_index) const
636 {
637         boost::shared_ptr<ScalePoints> ret;
638 #ifdef HAVE_LRDF
639         const uint32_t id     = atol(unique_id().c_str());
640         lrdf_defaults* points = lrdf_get_scale_values(id, port_index);
641
642         if (!points) {
643                 return ret;
644         }
645
646         ret = boost::shared_ptr<ScalePoints>(new ScalePoints());
647
648         for (uint32_t i = 0; i < points->count; ++i) {
649                 ret->insert(make_pair(points->items[i].label,
650                                       points->items[i].value));
651         }
652
653         lrdf_free_setting_values(points);
654 #endif
655         return ret;
656 }
657
658 void
659 LadspaPlugin::run_in_place (pframes_t nframes)
660 {
661         for (uint32_t i = 0; i < parameter_count(); ++i) {
662                 if (LADSPA_IS_PORT_INPUT(port_descriptor (i)) && LADSPA_IS_PORT_CONTROL(port_descriptor (i))) {
663                         _control_data[i] = _shadow_data[i];
664                 }
665         }
666
667         assert (_was_activated);
668
669         _descriptor->run (_handle, nframes);
670 }
671
672 void
673 LadspaPlugin::latency_compute_run ()
674 {
675         if (!_latency_control_port) {
676                 return;
677         }
678
679         /* we need to run the plugin so that it can set its latency
680            parameter.
681         */
682
683         activate ();
684
685         uint32_t port_index = 0;
686         uint32_t in_index = 0;
687         uint32_t out_index = 0;
688         const samplecnt_t bufsize = 1024;
689         LADSPA_Data buffer[bufsize];
690
691         memset(buffer,0,sizeof(LADSPA_Data)*bufsize);
692
693         /* Note that we've already required that plugins
694            be able to handle in-place processing.
695         */
696
697         port_index = 0;
698
699         while (port_index < parameter_count()) {
700                 if (LADSPA_IS_PORT_AUDIO (port_descriptor (port_index))) {
701                         if (LADSPA_IS_PORT_INPUT (port_descriptor (port_index))) {
702                                 connect_port (port_index, buffer);
703                                 in_index++;
704                         } else if (LADSPA_IS_PORT_OUTPUT (port_descriptor (port_index))) {
705                                 connect_port (port_index, buffer);
706                                 out_index++;
707                         }
708                 }
709                 port_index++;
710         }
711
712         run_in_place (bufsize);
713         deactivate ();
714 }
715
716 PluginPtr
717 LadspaPluginInfo::load (Session& session)
718 {
719         try {
720                 PluginPtr plugin (new LadspaPlugin (path, session.engine(), session, index, session.sample_rate()));
721                 plugin->set_info(PluginInfoPtr(new LadspaPluginInfo(*this)));
722                 return plugin;
723         }
724
725         catch (failed_constructor &err) {
726                 return PluginPtr ((Plugin*) 0);
727         }
728 }
729
730 std::vector<Plugin::PresetRecord>
731 LadspaPluginInfo::get_presets (bool /*user_only*/) const
732 {
733         std::vector<Plugin::PresetRecord> p;
734 #if (defined HAVE_LRDF && !defined NO_PLUGIN_STATE)
735         if (!isdigit (unique_id[0])) {
736                 return p;
737         }
738         uint32_t id = atol (unique_id);
739         lrdf_uris* set_uris = lrdf_get_setting_uris(id);
740
741         if (set_uris) {
742                 for (uint32_t i = 0; i < (uint32_t) set_uris->count; ++i) {
743                         if (char* label = lrdf_get_label (set_uris->items[i])) {
744                                 p.push_back (Plugin::PresetRecord (set_uris->items[i], label));
745                         }
746                 }
747                 lrdf_free_uris(set_uris);
748         }
749 #endif
750         return p;
751 }
752
753 LadspaPluginInfo::LadspaPluginInfo()
754 {
755        type = ARDOUR::LADSPA;
756 }
757
758
759 void
760 LadspaPlugin::find_presets ()
761 {
762 #ifdef HAVE_LRDF
763         uint32_t id;
764         std::string unique (unique_id());
765
766         if (!isdigit (unique[0])) {
767                 return;
768         }
769
770         id = atol (unique.c_str());
771
772         lrdf_uris* set_uris = lrdf_get_setting_uris(id);
773
774         if (set_uris) {
775                 for (uint32_t i = 0; i < (uint32_t) set_uris->count; ++i) {
776                         if (char* label = lrdf_get_label(set_uris->items[i])) {
777                                 PresetRecord rec (set_uris->items[i], label);
778                                 _presets.insert (make_pair (set_uris->items[i], rec));
779                         }
780                 }
781                 lrdf_free_uris(set_uris);
782         }
783 #endif
784 }
785
786
787 bool
788 LadspaPlugin::load_preset (PresetRecord r)
789 {
790 #ifdef HAVE_LRDF
791         lrdf_defaults* defs = lrdf_get_setting_values (r.uri.c_str());
792
793         if (defs) {
794                 for (uint32_t i = 0; i < (uint32_t) defs->count; ++i) {
795                         if (parameter_is_input (defs->items[i].pid)) {
796                                 set_parameter(defs->items[i].pid, defs->items[i].value);
797                                 PresetPortSetValue (defs->items[i].pid, defs->items[i].value); /* EMIT SIGNAL */
798                         }
799                 }
800                 lrdf_free_setting_values(defs);
801         }
802
803         Plugin::load_preset (r);
804 #endif
805         return true;
806 }
807
808 #ifdef HAVE_LRDF
809 /* XXX: should be in liblrdf */
810 static void
811 lrdf_remove_preset (const char* /*source*/, const char *setting_uri)
812 {
813         lrdf_statement p;
814         lrdf_statement *q;
815         lrdf_statement *i;
816         char setting_uri_copy[64];
817         char buf[64];
818
819         strncpy(setting_uri_copy, setting_uri, sizeof(setting_uri_copy));
820
821         p.subject = setting_uri_copy;
822         strncpy(buf, LADSPA_BASE "hasPortValue", sizeof(buf));
823         p.predicate = buf;
824         p.object = NULL;
825         q = lrdf_matches(&p);
826
827         p.predicate = NULL;
828         p.object = NULL;
829         for (i = q; i; i = i->next) {
830                 p.subject = i->object;
831                 lrdf_remove_matches(&p);
832         }
833
834         lrdf_free_statements(q);
835
836         p.subject = NULL;
837         strncpy(buf, LADSPA_BASE "hasSetting", sizeof(buf));
838         p.predicate = buf;
839         p.object = setting_uri_copy;
840         lrdf_remove_matches(&p);
841
842         p.subject = setting_uri_copy;
843         p.predicate = NULL;
844         p.object = NULL;
845         lrdf_remove_matches (&p);
846 }
847 #endif
848
849 void
850 LadspaPlugin::do_remove_preset (string name)
851 {
852 #ifdef HAVE_LRDF
853         string const envvar = preset_envvar ();
854         if (envvar.empty()) {
855                 warning << _("Could not locate HOME.  Preset not removed.") << endmsg;
856                 return;
857         }
858
859         Plugin::PresetRecord const * p = preset_by_label (name);
860         if (!p) {
861                 return;
862         }
863
864         string const source = preset_source (envvar);
865         lrdf_remove_preset (source.c_str(), p->uri.c_str ());
866
867         write_preset_file (envvar);
868 #endif
869 }
870
871 string
872 LadspaPlugin::preset_envvar () const
873 {
874         char* envvar;
875         if ((envvar = getenv ("HOME")) == 0) {
876                 return "";
877         }
878
879         return envvar;
880 }
881
882 string
883 LadspaPlugin::preset_source (string envvar) const
884 {
885         return string_compose ("file:%1/.ladspa/rdf/ardour-presets.n3", envvar);
886 }
887
888 bool
889 LadspaPlugin::write_preset_file (string envvar)
890 {
891 #ifdef HAVE_LRDF
892         string path = string_compose("%1/.ladspa", envvar);
893         if (g_mkdir_with_parents (path.c_str(), 0775)) {
894                 warning << string_compose(_("Could not create %1.  Preset not saved. (%2)"), path, strerror(errno)) << endmsg;
895                 return false;
896         }
897
898         path += "/rdf";
899         if (g_mkdir_with_parents (path.c_str(), 0775)) {
900                 warning << string_compose(_("Could not create %1.  Preset not saved. (%2)"), path, strerror(errno)) << endmsg;
901                 return false;
902         }
903
904         string const source = preset_source (envvar);
905
906         if (lrdf_export_by_source (source.c_str(), source.substr(5).c_str())) {
907                 warning << string_compose(_("Error saving presets file %1."), source) << endmsg;
908                 return false;
909         }
910
911         return true;
912 #else
913         return false;
914 #endif
915 }
916
917 string
918 LadspaPlugin::do_save_preset (string name)
919 {
920 #ifdef HAVE_LRDF
921         /* make a vector of pids that are input parameters */
922         vector<int> input_parameter_pids;
923         for (uint32_t i = 0; i < parameter_count(); ++i) {
924                 if (parameter_is_input (i)) {
925                         input_parameter_pids.push_back (i);
926                 }
927         }
928
929         std::string unique (unique_id());
930
931         if (!isdigit (unique[0])) {
932                 return "";
933         }
934
935         uint32_t const id = atol (unique.c_str());
936
937         lrdf_defaults defaults;
938         defaults.count = input_parameter_pids.size ();
939         std::vector<lrdf_portvalue> portvalues(input_parameter_pids.size());
940         defaults.items = &portvalues[0];
941
942         for (vector<int>::size_type i = 0; i < input_parameter_pids.size(); ++i) {
943                 portvalues[i].pid = input_parameter_pids[i];
944                 portvalues[i].value = get_parameter (input_parameter_pids[i]);
945         }
946
947         string const envvar = preset_envvar ();
948         if (envvar.empty()) {
949                 warning << _("Could not locate HOME.  Preset not saved.") << endmsg;
950                 return "";
951         }
952
953         string const source = preset_source (envvar);
954
955         char* uri_char = lrdf_add_preset (source.c_str(), name.c_str(), id, &defaults);
956         string uri (uri_char);
957         free (uri_char);
958
959         if (!write_preset_file (envvar)) {
960                 return "";
961         }
962
963         return uri;
964 #else
965         return string();
966 #endif
967 }
968
969 LADSPA_PortDescriptor
970 LadspaPlugin::port_descriptor (uint32_t i) const
971 {
972         if (i < _descriptor->PortCount) {
973                 return _descriptor->PortDescriptors[i];
974         }
975
976         warning << "LADSPA plugin port index " << i << " out of range." << endmsg;
977         return 0;
978 }
979
980
981