Provide dialogs to edit pan values numerically, at least for
[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                 _shadow_data[which] = (LADSPA_Data) val;
283
284 #if 0
285                 if (which < parameter_count() && controls[which]) {
286                         controls[which]->Changed ();
287                 }
288 #endif
289
290         } else {
291                 warning << string_compose (_("illegal parameter number used with plugin \"%1\". This may"
292                                              "indicate a change in the plugin design, and presets may be"
293                                              "invalid"), name())
294                         << endmsg;
295         }
296
297         Plugin::set_parameter (which, val);
298 }
299
300 /** @return `plugin' value */
301 float
302 LadspaPlugin::get_parameter (uint32_t which) const
303 {
304         if (LADSPA_IS_PORT_INPUT(port_descriptor (which))) {
305                 return (float) _shadow_data[which];
306         } else {
307                 return (float) _control_data[which];
308         }
309 }
310
311 uint32_t
312 LadspaPlugin::nth_parameter (uint32_t n, bool& ok) const
313 {
314         uint32_t x, c;
315
316         ok = false;
317
318         for (c = 0, x = 0; x < _descriptor->PortCount; ++x) {
319                 if (LADSPA_IS_PORT_CONTROL (port_descriptor (x))) {
320                         if (c++ == n) {
321                                 ok = true;
322                                 return x;
323                         }
324                 }
325         }
326         return 0;
327 }
328
329 void
330 LadspaPlugin::add_state (XMLNode* root) const
331 {
332         XMLNode *child;
333         char buf[16];
334         LocaleGuard lg (X_("POSIX"));
335
336         for (uint32_t i = 0; i < parameter_count(); ++i){
337
338                 if (LADSPA_IS_PORT_INPUT(port_descriptor (i)) &&
339                     LADSPA_IS_PORT_CONTROL(port_descriptor (i))){
340
341                         child = new XMLNode("Port");
342                         snprintf(buf, sizeof(buf), "%u", i);
343                         child->add_property("number", string(buf));
344                         snprintf(buf, sizeof(buf), "%+f", _shadow_data[i]);
345                         child->add_property("value", string(buf));
346                         root->add_child_nocopy (*child);
347                 }
348         }
349 }
350
351 int
352 LadspaPlugin::set_state (const XMLNode& node, int version)
353 {
354         if (version < 3000) {
355                 return set_state_2X (node, version);
356         }
357
358         XMLNodeList nodes;
359         XMLProperty *prop;
360         XMLNodeConstIterator iter;
361         XMLNode *child;
362         const char *port;
363         const char *data;
364         uint32_t port_id;
365         LocaleGuard lg (X_("POSIX"));
366
367         if (node.name() != state_node_name()) {
368                 error << _("Bad node sent to LadspaPlugin::set_state") << endmsg;
369                 return -1;
370         }
371
372         nodes = node.children ("Port");
373
374         for (iter = nodes.begin(); iter != nodes.end(); ++iter) {
375
376                 child = *iter;
377
378                 if ((prop = child->property("number")) != 0) {
379                         port = prop->value().c_str();
380                 } else {
381                         warning << _("LADSPA: no ladspa port number") << endmsg;
382                         continue;
383                 }
384                 if ((prop = child->property("value")) != 0) {
385                         data = prop->value().c_str();
386                 } else {
387                         warning << _("LADSPA: no ladspa port data") << endmsg;
388                         continue;
389                 }
390
391                 sscanf (port, "%" PRIu32, &port_id);
392                 set_parameter (port_id, atof(data));
393         }
394
395         latency_compute_run ();
396
397         return Plugin::set_state (node, version);
398 }
399
400 int
401 LadspaPlugin::set_state_2X (const XMLNode& node, int /* version */)
402 {
403         XMLNodeList nodes;
404         XMLProperty *prop;
405         XMLNodeConstIterator iter;
406         XMLNode *child;
407         const char *port;
408         const char *data;
409         uint32_t port_id;
410         LocaleGuard lg (X_("POSIX"));
411
412         if (node.name() != state_node_name()) {
413                 error << _("Bad node sent to LadspaPlugin::set_state") << endmsg;
414                 return -1;
415         }
416
417         nodes = node.children ("port");
418
419         for(iter = nodes.begin(); iter != nodes.end(); ++iter){
420
421                 child = *iter;
422
423                 if ((prop = child->property("number")) != 0) {
424                         port = prop->value().c_str();
425                 } else {
426                         warning << _("LADSPA: no ladspa port number") << endmsg;
427                         continue;
428                 }
429                 if ((prop = child->property("value")) != 0) {
430                         data = prop->value().c_str();
431                 } else {
432                         warning << _("LADSPA: no ladspa port data") << endmsg;
433                         continue;
434                 }
435
436                 sscanf (port, "%" PRIu32, &port_id);
437                 set_parameter (port_id, atof(data));
438         }
439
440         latency_compute_run ();
441
442         return 0;
443 }
444
445 int
446 LadspaPlugin::get_parameter_descriptor (uint32_t which, ParameterDescriptor& desc) const
447 {
448         LADSPA_PortRangeHint prh;
449
450         prh  = port_range_hints()[which];
451
452
453         if (LADSPA_IS_HINT_BOUNDED_BELOW(prh.HintDescriptor)) {
454                 desc.min_unbound = false;
455                 if (LADSPA_IS_HINT_SAMPLE_RATE(prh.HintDescriptor)) {
456                         desc.lower = prh.LowerBound * _session.frame_rate();
457                 } else {
458                         desc.lower = prh.LowerBound;
459                 }
460         } else {
461                 desc.min_unbound = true;
462                 desc.lower = 0;
463         }
464
465
466         if (LADSPA_IS_HINT_BOUNDED_ABOVE(prh.HintDescriptor)) {
467                 desc.max_unbound = false;
468                 if (LADSPA_IS_HINT_SAMPLE_RATE(prh.HintDescriptor)) {
469                         desc.upper = prh.UpperBound * _session.frame_rate();
470                 } else {
471                         desc.upper = prh.UpperBound;
472                 }
473         } else {
474                 desc.max_unbound = true;
475                 desc.upper = 4; /* completely arbitrary */
476         }
477
478         if (LADSPA_IS_HINT_INTEGER (prh.HintDescriptor)) {
479                 desc.step = 1.0;
480                 desc.smallstep = 0.1;
481                 desc.largestep = 10.0;
482         } else {
483                 float delta = desc.upper - desc.lower;
484                 desc.step = delta / 1000.0f;
485                 desc.smallstep = delta / 10000.0f;
486                 desc.largestep = delta/10.0f;
487         }
488
489         desc.toggled = LADSPA_IS_HINT_TOGGLED (prh.HintDescriptor);
490         desc.logarithmic = LADSPA_IS_HINT_LOGARITHMIC (prh.HintDescriptor);
491         desc.sr_dependent = LADSPA_IS_HINT_SAMPLE_RATE (prh.HintDescriptor);
492         desc.integer_step = LADSPA_IS_HINT_INTEGER (prh.HintDescriptor);
493
494         desc.label = port_names()[which];
495
496         return 0;
497 }
498
499 string
500 LadspaPlugin::describe_parameter (Evoral::Parameter which)
501 {
502         if (which.type() == PluginAutomation && which.id() < parameter_count()) {
503                 return port_names()[which.id()];
504         } else {
505                 return "??";
506         }
507 }
508
509 ARDOUR::framecnt_t
510 LadspaPlugin::signal_latency () const
511 {
512         if (_user_latency) {
513                 return _user_latency;
514         }
515
516         if (_latency_control_port) {
517                 return (framecnt_t) floor (*_latency_control_port);
518         } else {
519                 return 0;
520         }
521 }
522
523 set<Evoral::Parameter>
524 LadspaPlugin::automatable () const
525 {
526         set<Evoral::Parameter> ret;
527
528         for (uint32_t i = 0; i < parameter_count(); ++i){
529                 if (LADSPA_IS_PORT_INPUT(port_descriptor (i)) &&
530                     LADSPA_IS_PORT_CONTROL(port_descriptor (i))){
531
532                         ret.insert (ret.end(), Evoral::Parameter(PluginAutomation, 0, i));
533                 }
534         }
535
536         return ret;
537 }
538
539 int
540 LadspaPlugin::connect_and_run (BufferSet& bufs,
541                 ChanMapping in_map, ChanMapping out_map,
542                 pframes_t nframes, framecnt_t offset)
543 {
544         Plugin::connect_and_run (bufs, in_map, out_map, nframes, offset);
545
546         cycles_t now;
547         cycles_t then = get_cycles ();
548
549         BufferSet& silent_bufs  = _session.get_silent_buffers(ChanCount(DataType::AUDIO, 1));
550         BufferSet& scratch_bufs = _session.get_silent_buffers(ChanCount(DataType::AUDIO, 1));
551
552         uint32_t audio_in_index  = 0;
553         uint32_t audio_out_index = 0;
554         bool valid;
555         for (uint32_t port_index = 0; port_index < parameter_count(); ++port_index) {
556                 if (LADSPA_IS_PORT_AUDIO(port_descriptor(port_index))) {
557                         if (LADSPA_IS_PORT_INPUT(port_descriptor(port_index))) {
558                                 const uint32_t buf_index = in_map.get(DataType::AUDIO, audio_in_index++, &valid);
559                                 connect_port(port_index,
560                                              valid ? bufs.get_audio(buf_index).data(offset)
561                                                    : silent_bufs.get_audio(0).data(offset));
562                         } else if (LADSPA_IS_PORT_OUTPUT(port_descriptor(port_index))) {
563                                 const uint32_t buf_index = out_map.get(DataType::AUDIO, audio_out_index++, &valid);
564                                 connect_port(port_index,
565                                              valid ? bufs.get_audio(buf_index).data(offset)
566                                                    : scratch_bufs.get_audio(0).data(offset));
567                         }
568                 }
569         }
570
571         run_in_place (nframes);
572         now = get_cycles ();
573         set_cycles ((uint32_t) (now - then));
574
575         return 0;
576 }
577
578 bool
579 LadspaPlugin::parameter_is_control (uint32_t param) const
580 {
581         return LADSPA_IS_PORT_CONTROL(port_descriptor (param));
582 }
583
584 bool
585 LadspaPlugin::parameter_is_audio (uint32_t param) const
586 {
587         return LADSPA_IS_PORT_AUDIO(port_descriptor (param));
588 }
589
590 bool
591 LadspaPlugin::parameter_is_output (uint32_t param) const
592 {
593         return LADSPA_IS_PORT_OUTPUT(port_descriptor (param));
594 }
595
596 bool
597 LadspaPlugin::parameter_is_input (uint32_t param) const
598 {
599         return LADSPA_IS_PORT_INPUT(port_descriptor (param));
600 }
601
602 void
603 LadspaPlugin::print_parameter (uint32_t param, char *buf, uint32_t len) const
604 {
605         if (buf && len) {
606                 if (param < parameter_count()) {
607                         snprintf (buf, len, "%.3f", get_parameter (param));
608                 } else {
609                         strcat (buf, "0");
610                 }
611         }
612 }
613
614 boost::shared_ptr<Plugin::ScalePoints>
615 LadspaPlugin::get_scale_points(uint32_t port_index) const
616 {
617         const uint32_t id     = atol(unique_id().c_str());
618         lrdf_defaults* points = lrdf_get_scale_values(id, port_index);
619
620         boost::shared_ptr<Plugin::ScalePoints> ret;
621         if (!points) {
622                 return ret;
623         }
624
625         ret = boost::shared_ptr<Plugin::ScalePoints>(new ScalePoints());
626
627         for (uint32_t i = 0; i < points->count; ++i) {
628                 ret->insert(make_pair(points->items[i].label,
629                                       points->items[i].value));
630         }
631
632         lrdf_free_setting_values(points);
633         return ret;
634 }
635
636 void
637 LadspaPlugin::run_in_place (pframes_t nframes)
638 {
639         for (uint32_t i = 0; i < parameter_count(); ++i) {
640                 if (LADSPA_IS_PORT_INPUT(port_descriptor (i)) && LADSPA_IS_PORT_CONTROL(port_descriptor (i))) {
641                         _control_data[i] = _shadow_data[i];
642                 }
643         }
644
645         assert (_was_activated);
646
647         _descriptor->run (_handle, nframes);
648 }
649
650 void
651 LadspaPlugin::latency_compute_run ()
652 {
653         if (!_latency_control_port) {
654                 return;
655         }
656
657         /* we need to run the plugin so that it can set its latency
658            parameter.
659         */
660
661         activate ();
662
663         uint32_t port_index = 0;
664         uint32_t in_index = 0;
665         uint32_t out_index = 0;
666         const framecnt_t bufsize = 1024;
667         LADSPA_Data buffer[bufsize];
668
669         memset(buffer,0,sizeof(LADSPA_Data)*bufsize);
670
671         /* Note that we've already required that plugins
672            be able to handle in-place processing.
673         */
674
675         port_index = 0;
676
677         while (port_index < parameter_count()) {
678                 if (LADSPA_IS_PORT_AUDIO (port_descriptor (port_index))) {
679                         if (LADSPA_IS_PORT_INPUT (port_descriptor (port_index))) {
680                                 connect_port (port_index, buffer);
681                                 in_index++;
682                         } else if (LADSPA_IS_PORT_OUTPUT (port_descriptor (port_index))) {
683                                 connect_port (port_index, buffer);
684                                 out_index++;
685                         }
686                 }
687                 port_index++;
688         }
689
690         run_in_place (bufsize);
691         deactivate ();
692 }
693
694 PluginPtr
695 LadspaPluginInfo::load (Session& session)
696 {
697         try {
698                 PluginPtr plugin;
699                 void *module;
700
701                 if ((module = dlopen (path.c_str(), RTLD_NOW)) == 0) {
702                         error << string_compose(_("LADSPA: cannot load module from \"%1\""), path) << endmsg;
703                         error << dlerror() << endmsg;
704                         return PluginPtr ((Plugin*) 0);
705                 } else {
706                         plugin.reset (new LadspaPlugin (module, session.engine(), session, index, session.frame_rate()));
707                 }
708
709                 plugin->set_info(PluginInfoPtr(new LadspaPluginInfo(*this)));
710                 return plugin;
711         }
712
713         catch (failed_constructor &err) {
714                 return PluginPtr ((Plugin*) 0);
715         }
716 }
717
718 LadspaPluginInfo::LadspaPluginInfo()
719 {
720        type = ARDOUR::LADSPA;
721 }
722
723
724 void
725 LadspaPlugin::find_presets ()
726 {
727         uint32_t id;
728         std::string unique (unique_id());
729
730         if (!isdigit (unique[0])) {
731                 return;
732         }
733
734         id = atol (unique.c_str());
735
736         lrdf_uris* set_uris = lrdf_get_setting_uris(id);
737
738         if (set_uris) {
739                 for (uint32_t i = 0; i < (uint32_t) set_uris->count; ++i) {
740                         if (char* label = lrdf_get_label(set_uris->items[i])) {
741                                 PresetRecord rec (set_uris->items[i], label);
742                                 _presets.insert (make_pair (set_uris->items[i], rec));
743                         }
744                 }
745                 lrdf_free_uris(set_uris);
746         }
747 }
748
749
750 bool
751 LadspaPlugin::load_preset (PresetRecord r)
752 {
753         lrdf_defaults* defs = lrdf_get_setting_values (r.uri.c_str());
754
755         if (defs) {
756                 for (uint32_t i = 0; i < (uint32_t) defs->count; ++i) {
757                         if (parameter_is_input (defs->items[i].pid)) {
758                                 set_parameter(defs->items[i].pid, defs->items[i].value);
759                         }
760                 }
761                 lrdf_free_setting_values(defs);
762         }
763
764         Plugin::load_preset (r);
765         return true;
766 }
767
768 /* XXX: should be in liblrdf */
769 static void
770 lrdf_remove_preset (const char* /*source*/, const char *setting_uri)
771 {
772         lrdf_statement p;
773         lrdf_statement *q;
774         lrdf_statement *i;
775         char setting_uri_copy[64];
776         char buf[64];
777
778         strncpy(setting_uri_copy, setting_uri, sizeof(setting_uri_copy));
779
780         p.subject = setting_uri_copy;
781         strncpy(buf, LADSPA_BASE "hasPortValue", sizeof(buf));
782         p.predicate = buf;
783         p.object = NULL;
784         q = lrdf_matches(&p);
785
786         p.predicate = NULL;
787         p.object = NULL;
788         for (i = q; i; i = i->next) {
789                 p.subject = i->object;
790                 lrdf_remove_matches(&p);
791         }
792
793         lrdf_free_statements(q);
794
795         p.subject = NULL;
796         strncpy(buf, LADSPA_BASE "hasSetting", sizeof(buf));
797         p.predicate = buf;
798         p.object = setting_uri_copy;
799         lrdf_remove_matches(&p);
800
801         p.subject = setting_uri_copy;
802         p.predicate = NULL;
803         p.object = NULL;
804         lrdf_remove_matches (&p);
805 }
806
807 void
808 LadspaPlugin::do_remove_preset (string name)
809 {
810         string const envvar = preset_envvar ();
811         if (envvar.empty()) {
812                 warning << _("Could not locate HOME.  Preset not removed.") << endmsg;
813                 return;
814         }
815
816         Plugin::PresetRecord const * p = preset_by_label (name);
817         if (!p) {
818                 return;
819         }
820
821         string const source = preset_source (envvar);
822         lrdf_remove_preset (source.c_str(), p->uri.c_str ());
823
824         write_preset_file (envvar);
825 }
826
827 string
828 LadspaPlugin::preset_envvar () const
829 {
830         char* envvar;
831         if ((envvar = getenv ("HOME")) == 0) {
832                 return "";
833         }
834
835         return envvar;
836 }
837
838 string
839 LadspaPlugin::preset_source (string envvar) const
840 {
841         return string_compose ("file:%1/.ladspa/rdf/ardour-presets.n3", envvar);
842 }
843
844 bool
845 LadspaPlugin::write_preset_file (string envvar)
846 {
847         string path = string_compose("%1/.ladspa", envvar);
848         if (g_mkdir_with_parents (path.c_str(), 0775)) {
849                 warning << string_compose(_("Could not create %1.  Preset not saved. (%2)"), path, strerror(errno)) << endmsg;
850                 return false;
851         }
852
853         path += "/rdf";
854         if (g_mkdir_with_parents (path.c_str(), 0775)) {
855                 warning << string_compose(_("Could not create %1.  Preset not saved. (%2)"), path, strerror(errno)) << endmsg;
856                 return false;
857         }
858
859         string const source = preset_source (envvar);
860
861         if (lrdf_export_by_source (source.c_str(), source.substr(5).c_str())) {
862                 warning << string_compose(_("Error saving presets file %1."), source) << endmsg;
863                 return false;
864         }
865
866         return true;
867 }
868
869 string
870 LadspaPlugin::do_save_preset (string name)
871 {
872         /* make a vector of pids that are input parameters */
873         vector<int> input_parameter_pids;
874         for (uint32_t i = 0; i < parameter_count(); ++i) {
875                 if (parameter_is_input (i)) {
876                         input_parameter_pids.push_back (i);
877                 }
878         }
879
880         std::string unique (unique_id());
881
882         if (!isdigit (unique[0])) {
883                 return "";
884         }
885
886         uint32_t const id = atol (unique.c_str());
887
888         lrdf_defaults defaults;
889         defaults.count = input_parameter_pids.size ();
890         lrdf_portvalue portvalues[input_parameter_pids.size()];
891         defaults.items = portvalues;
892
893         for (vector<int>::size_type i = 0; i < input_parameter_pids.size(); ++i) {
894                 portvalues[i].pid = input_parameter_pids[i];
895                 portvalues[i].value = get_parameter (input_parameter_pids[i]);
896         }
897
898         string const envvar = preset_envvar ();
899         if (envvar.empty()) {
900                 warning << _("Could not locate HOME.  Preset not saved.") << endmsg;
901                 return "";
902         }
903
904         string const source = preset_source (envvar);
905
906         char* uri_char = lrdf_add_preset (source.c_str(), name.c_str(), id, &defaults);
907         string uri (uri_char);
908         free (uri_char);
909
910         if (!write_preset_file (envvar)) {
911                 return "";
912         }
913
914         return uri;
915 }
916
917 LADSPA_PortDescriptor
918 LadspaPlugin::port_descriptor (uint32_t i) const
919 {
920         if (i < _descriptor->PortCount) {               
921                 return _descriptor->PortDescriptors[i];
922         }
923         
924         warning << "LADSPA plugin port index " << i << " out of range." << endmsg;
925         return 0;
926 }
927
928                 
929