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