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