Update for latest LV2 persist extension.
[ardour.git] / libs / ardour / lv2_plugin.cc
1 /*
2     Copyright (C) 2008-2011 Paul Davis
3     Author: David Robillard
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #include <string>
22 #include <vector>
23
24 #include <cmath>
25 #include <cstdlib>
26 #include <cstring>
27
28 #include <glibmm.h>
29
30 #include "pbd/compose.h"
31 #include "pbd/error.h"
32 #include "pbd/pathscanner.h"
33 #include "pbd/xml++.h"
34
35 #include "ardour/ardour.h"
36 #include "ardour/audio_buffer.h"
37 #include "ardour/audioengine.h"
38 #include "ardour/debug.h"
39 #include "ardour/lv2_event_buffer.h"
40 #include "ardour/lv2_plugin.h"
41 #include "ardour/session.h"
42
43 #include "pbd/stl_delete.h"
44
45 #include "i18n.h"
46 #include <locale.h>
47
48 #include "lv2ext/lv2_persist.h"
49 #include "rdff.h"
50
51 #define NS_DC   "http://dublincore.org/documents/dcmi-namespace/"
52 #define NS_LV2  "http://lv2plug.in/ns/lv2core#"
53 #define NS_PSET "http://lv2plug.in/ns/dev/presets#"
54 #define NS_UI   "http://lv2plug.in/ns/extensions/ui#"
55
56 using namespace std;
57 using namespace ARDOUR;
58 using namespace PBD;
59
60 URIMap LV2Plugin::_uri_map;
61 uint32_t LV2Plugin::_midi_event_type = _uri_map.uri_to_id(
62         "http://lv2plug.in/ns/ext/event",
63         "http://lv2plug.in/ns/ext/midi#MidiEvent");
64
65 LV2Plugin::LV2Plugin (AudioEngine& engine,
66                       Session&     session,
67                       LV2World&    world,
68                       SLV2Plugin   plugin,
69                       framecnt_t   rate)
70         : Plugin(engine, session)
71         , _world(world)
72         , _features(NULL)
73 {
74         init(world, plugin, rate);
75 }
76
77 LV2Plugin::LV2Plugin (const LV2Plugin& other)
78         : Plugin(other)
79         , _world(other._world)
80         , _features(NULL)
81 {
82         init(other._world, other._plugin, other._sample_rate);
83
84         for (uint32_t i = 0; i < parameter_count(); ++i) {
85                 _control_data[i] = other._shadow_data[i];
86                 _shadow_data[i]  = other._shadow_data[i];
87         }
88 }
89
90 void
91 LV2Plugin::init(LV2World& world, SLV2Plugin plugin, framecnt_t rate)
92 {
93         DEBUG_TRACE(DEBUG::LV2, "LV2 plugin init\n");
94
95         _world                = world;
96         _plugin               = plugin;
97         _ui                   = NULL;
98         _control_data         = 0;
99         _shadow_data          = 0;
100         _latency_control_port = 0;
101         _was_activated        = false;
102
103         _instance_access_feature.URI = "http://lv2plug.in/ns/ext/instance-access";
104         _data_access_feature.URI     = "http://lv2plug.in/ns/ext/data-access";
105         _persist_feature.URI         = "http://lv2plug.in/ns/ext/persist";
106         _persist_feature.data        = NULL;
107
108         SLV2Value persist_uri = slv2_value_new_uri(_world.world, _persist_feature.URI);
109         _supports_persist = slv2_plugin_has_feature(plugin, persist_uri);
110         slv2_value_free(persist_uri);
111
112         _features    = (LV2_Feature**)malloc(sizeof(LV2_Feature*) * 5);
113         _features[0] = &_instance_access_feature;
114         _features[1] = &_data_access_feature;
115         _features[2] = &_persist_feature;
116         _features[3] = _uri_map.feature();
117         _features[4] = NULL;
118
119         _instance = slv2_plugin_instantiate(plugin, rate, _features);
120         _name     = slv2_plugin_get_name(plugin);
121         _author   = slv2_plugin_get_author_name(plugin);
122
123         if (_instance == 0) {
124                 error << _("LV2: Failed to instantiate plugin ")
125                       << slv2_value_as_string(slv2_plugin_get_uri(plugin)) << endmsg;
126                 throw failed_constructor();
127         }
128
129         _instance_access_feature.data              = (void*)_instance->lv2_handle;
130         _data_access_extension_data.extension_data = _instance->lv2_descriptor->extension_data;
131         _data_access_feature.data                  = &_data_access_extension_data;
132
133         if (slv2_plugin_has_feature(plugin, world.in_place_broken)) {
134                 error << string_compose(
135                     _("LV2: \"%1\" cannot be used, since it cannot do inplace processing"),
136                     slv2_value_as_string(_name)) << endmsg;
137                 slv2_value_free(_name);
138                 slv2_value_free(_author);
139                 throw failed_constructor();
140         }
141
142         _sample_rate = rate;
143
144         const uint32_t num_ports    = slv2_plugin_get_num_ports(plugin);
145         const bool     latent       = slv2_plugin_has_latency(plugin);
146         const uint32_t latency_port = (latent)
147             ? slv2_plugin_get_latency_port_index(plugin)
148                 : 0;
149
150         _control_data = new float[num_ports];
151         _shadow_data  = new float[num_ports];
152         _defaults     = new float[num_ports];
153
154         for (uint32_t i = 0; i < num_ports; ++i) {
155                 SLV2Port  port = slv2_plugin_get_port_by_index(plugin, i);
156                 SLV2Value sym  = slv2_port_get_symbol(_plugin, port);
157
158                 // Store index in map so we can look up index by symbol
159                 _port_indices.insert(std::make_pair(slv2_value_as_string(sym), i));
160
161                 // Get range and default value if applicable
162                 if (parameter_is_control(i)) {
163                         SLV2Value def;
164                         slv2_port_get_range(plugin, port, &def, NULL, NULL);
165                         _defaults[i] = def ? slv2_value_as_float(def) : 0.0f;
166                         slv2_value_free(def);
167
168                         slv2_instance_connect_port(_instance, i, &_control_data[i]);
169
170                         if (latent && ( i == latency_port) ) {
171                                 _latency_control_port  = &_control_data[i];
172                                 *_latency_control_port = 0;
173                         }
174
175                         if (parameter_is_input(i)) {
176                                 _shadow_data[i] = default_value(i);
177                         }
178                 } else {
179                         _defaults[i] = 0.0f;
180                 }
181         }
182
183         SLV2UIs uis = slv2_plugin_get_uis(_plugin);
184         if (slv2_uis_size(uis) > 0) {
185                 // Look for Gtk native UI
186                 for (unsigned i = 0; i < slv2_uis_size(uis); ++i) {
187                         SLV2UI ui = slv2_uis_get_at(uis, i);
188                         if (slv2_ui_is_a(ui, _world.gtk_gui)) {
189                                 _ui = ui;
190                                 break;
191                         }
192                 }
193
194                 // If Gtk UI is not available, try to find external UI
195                 if (!_ui) {
196                         for (unsigned i = 0; i < slv2_uis_size(uis); ++i) {
197                                 SLV2UI ui = slv2_uis_get_at(uis, i);
198                                 if (slv2_ui_is_a(ui, _world.external_gui)) {
199                                         _ui = ui;
200                                         break;
201                                 }
202                         }
203                 }
204         }
205
206         latency_compute_run();
207 }
208
209 LV2Plugin::~LV2Plugin ()
210 {
211         DEBUG_TRACE(DEBUG::LV2, string_compose("%1 destroy\n", name()));
212
213         deactivate();
214         cleanup();
215
216         slv2_instance_free(_instance);
217         slv2_value_free(_name);
218         slv2_value_free(_author);
219
220         delete [] _control_data;
221         delete [] _shadow_data;
222 }
223
224 bool
225 LV2Plugin::is_external_ui() const
226 {
227         return slv2_ui_is_a(_ui, _world.external_gui);
228 }
229
230 string
231 LV2Plugin::unique_id() const
232 {
233         return slv2_value_as_uri(slv2_plugin_get_uri(_plugin));
234 }
235
236 float
237 LV2Plugin::default_value(uint32_t port)
238 {
239         return _defaults[port];
240 }
241
242 const char*
243 LV2Plugin::port_symbol(uint32_t index) const
244 {
245         SLV2Port port = slv2_plugin_get_port_by_index(_plugin, index);
246         if (!port) {
247                 error << name() << ": Invalid port index " << index << endmsg;
248         }
249
250         SLV2Value sym = slv2_port_get_symbol(_plugin, port);
251         return slv2_value_as_string(sym);
252 }
253
254 void
255 LV2Plugin::set_parameter(uint32_t which, float val)
256 {
257         DEBUG_TRACE(DEBUG::LV2, string_compose(
258                         "%1 set parameter %2 to %3\n", name(), which, val));
259
260         if (which < slv2_plugin_get_num_ports(_plugin)) {
261                 _shadow_data[which] = val;
262         } else {
263                 warning << string_compose(
264                     _("Illegal parameter number used with plugin \"%1\". "
265                       "This is a bug in either %2 or the LV2 plugin <%3>"),
266                     name(), PROGRAM_NAME, unique_id()) << endmsg;
267         }
268
269         Plugin::set_parameter(which, val);
270 }
271
272 float
273 LV2Plugin::get_parameter(uint32_t which) const
274 {
275         if (parameter_is_input(which)) {
276                 return (float)_shadow_data[which];
277         } else {
278                 return (float)_control_data[which];
279         }
280         return 0.0f;
281 }
282
283 uint32_t
284 LV2Plugin::nth_parameter(uint32_t n, bool& ok) const
285 {
286         ok = false;
287         for (uint32_t c = 0, x = 0; x < slv2_plugin_get_num_ports(_plugin); ++x) {
288                 if (parameter_is_control(x)) {
289                         if (c++ == n) {
290                                 ok = true;
291                                 return x;
292                         }
293                 }
294         }
295
296         return 0;
297 }
298
299 struct PersistValue {
300         inline PersistValue(uint32_t k, const void* v, size_t s, uint32_t t, uint32_t f)
301                 : key(k), value(v), size(s), type(t), flags(f)
302         {}
303
304         const uint32_t key;
305         const void*    value;
306         const size_t   size;
307         const uint32_t type;
308         const bool     flags;
309 };
310
311 struct PersistState {
312         PersistState(URIMap& map) : uri_map(map) {}
313
314         typedef std::map<uint32_t, std::string>  URIs;
315         typedef std::map<uint32_t, PersistValue> Values;
316
317         uint32_t file_id_to_runtime_id(uint32_t file_id) const {
318                 URIs::const_iterator i = uris.find(file_id);
319                 if (i == uris.end()) {
320                         error << "LV2 state refers to undefined URI ID" << endmsg;
321                         return 0;
322                 }
323                 return uri_map.uri_to_id(NULL, i->second.c_str());
324         }
325
326         int add_uri(uint32_t file_id, const char* str) {
327                 // TODO: check for clashes (invalid file)
328                 uris.insert(make_pair(file_id, str));
329                 return 0;
330         }
331
332         int add_value(uint32_t    file_subject,
333                       uint32_t    file_key,
334                       const void* value,
335                       size_t      size,
336                       uint32_t    file_type,
337                       uint32_t    flags) {
338                 const uint32_t key  = file_id_to_runtime_id(file_key);
339                 const uint32_t type = file_id_to_runtime_id(file_type);
340                 if (!key || !type) {
341                         return 1;
342                 }
343
344                 Values::const_iterator i = values.find(key);
345                 if (i != values.end()) {
346                         error << "LV2 state contains duplicate keys" << endmsg;
347                         return 1;
348                 } else {
349                         void* value_copy = malloc(size);
350                         memcpy(value_copy, value, size); // FIXME: leak
351                         values.insert(
352                                 make_pair(key,
353                                           PersistValue(key, value_copy, size, type, flags)));
354                         return 0;
355                 }
356         }
357
358         URIMap& uri_map;
359         URIs    uris;
360         Values  values;
361 };
362
363 int
364 LV2Plugin::lv2_persist_store_callback(void*       callback_data,
365                                       uint32_t    subject,
366                                       uint32_t    key,
367                                       const void* value,
368                                       size_t      size,
369                                       uint32_t    type,
370                                       uint32_t    flags)
371 {
372         DEBUG_TRACE(DEBUG::LV2, string_compose("persist store %1\n",
373                                                _uri_map.id_to_uri(NULL, key)));
374
375         PersistState* state = (PersistState*)callback_data;
376         state->add_uri(key,  _uri_map.id_to_uri(NULL, key)); 
377         state->add_uri(type, _uri_map.id_to_uri(NULL, type)); 
378         return state->add_value(subject, key, value, size, type, flags);
379 }
380
381 const void*
382 LV2Plugin::lv2_persist_retrieve_callback(void*     callback_data,
383                                          uint32_t  subject,
384                                          uint32_t  key,
385                                          size_t*   size,
386                                          uint32_t* type,
387                                          uint32_t* flags)
388 {
389         PersistState* state = (PersistState*)callback_data;
390         PersistState::Values::const_iterator i = state->values.find(key);
391         if (i == state->values.end()) {
392                 warning << "LV2 plugin attempted to retrieve nonexistent key: "
393                         << _uri_map.id_to_uri(NULL, key) << endmsg;
394                 return NULL;
395         }
396         *size = i->second.size;
397         *type = i->second.type;
398         *flags = LV2_PERSIST_IS_POD | LV2_PERSIST_IS_PORTABLE; // FIXME
399         DEBUG_TRACE(DEBUG::LV2, string_compose(
400                             "persist retrieve %1 = %s (size: %u, type: %u)\n",
401                             _uri_map.id_to_uri(NULL, key), i->second.value, *size, *type));
402         return i->second.value;
403 }
404
405 void
406 LV2Plugin::add_state(XMLNode* root) const
407 {
408         XMLNode*    child;
409         char        buf[16];
410         LocaleGuard lg(X_("POSIX"));
411
412         for (uint32_t i = 0; i < parameter_count(); ++i) {
413                 if (parameter_is_input(i) && parameter_is_control(i)) {
414                         child = new XMLNode("Port");
415                         child->add_property("symbol", port_symbol(i));
416                         snprintf(buf, sizeof(buf), "%+f", _shadow_data[i]);
417                         child->add_property("value", string(buf));
418                         root->add_child_nocopy(*child);
419                 }
420         }
421
422         if (_supports_persist) {
423                 // Create state directory for this plugin instance
424                 const std::string state_filename = _id.to_s() + ".rdff";
425                 const std::string state_path     = Glib::build_filename(
426                         _session.plugins_dir(), state_filename);
427
428                 cout << "Saving LV2 plugin state to " << state_path << endl;
429
430                 // Get LV2 Persist extension data from plugin instance
431                 LV2_Persist* persist = (LV2_Persist*)slv2_instance_get_extension_data(
432                         _instance, "http://lv2plug.in/ns/ext/persist");
433                 if (!persist) {
434                         warning << string_compose(
435                             _("Plugin \"%1\% failed to return LV2 persist data"),
436                             unique_id());
437                         return;
438                 }
439
440                 // Save plugin state to state object
441                 PersistState state(_uri_map);
442                 persist->save(_instance->lv2_handle,
443                               &LV2Plugin::lv2_persist_store_callback,
444                               &state);
445
446                 // Open state file
447                 RDFF file = rdff_open(state_path.c_str(), true);
448
449                 // Write all referenced URIs to state file
450                 for (PersistState::URIs::const_iterator i = state.uris.begin();
451                      i != state.uris.end(); ++i) {
452                         rdff_write_uri(file,
453                                        i->first,
454                                        i->second.length(),
455                                        i->second.c_str());
456                 }
457
458                 // Write all values to state file
459                 for (PersistState::Values::const_iterator i = state.values.begin();
460                      i != state.values.end(); ++i) {
461                         const uint32_t      key = i->first;
462                         const PersistValue& val = i->second;
463                         rdff_write_triple(file,
464                                           0,
465                                           key,
466                                           val.type,
467                                           val.size,
468                                           val.value);
469                 }
470
471                 // Close state file
472                 rdff_close(file);
473
474                 root->add_property("state-file", state_filename);
475         }
476 }
477
478 static inline SLV2Value
479 get_value(SLV2Plugin p, SLV2Value subject, SLV2Value predicate)
480 {
481         SLV2Values vs = slv2_plugin_get_value_for_subject(p, subject, predicate);
482         return vs ? slv2_values_get_at(vs, 0) : NULL;
483 }
484
485 void
486 LV2Plugin::find_presets()
487 {
488         SLV2Value dc_title       = slv2_value_new_uri(_world.world, NS_DC   "title");
489         SLV2Value pset_hasPreset = slv2_value_new_uri(_world.world, NS_PSET "hasPreset");
490
491         SLV2Values presets = slv2_plugin_get_value(_plugin, pset_hasPreset);
492         for (unsigned i = 0; i < slv2_values_size(presets); ++i) {
493                 SLV2Value preset = slv2_values_get_at(presets, i);
494                 SLV2Value name   = get_value(_plugin, preset, dc_title);
495                 if (name) {
496                         _presets.insert(std::make_pair(slv2_value_as_string(preset),
497                                                        PresetRecord(
498                                                            slv2_value_as_string(preset),
499                                                            slv2_value_as_string(name))));
500                 } else {
501                         warning << string_compose(
502                             _("Plugin \"%1\% preset \"%2%\" is missing a dc:title\n"),
503                             unique_id(), slv2_value_as_string(preset));
504                 }
505         }
506         slv2_values_free(presets);
507
508         slv2_value_free(pset_hasPreset);
509         slv2_value_free(dc_title);
510 }
511
512 bool
513 LV2Plugin::load_preset(PresetRecord r)
514 {
515         Plugin::load_preset(r);
516
517 #ifdef HAVE_NEW_SLV2
518         // New (>= 0.7.0) slv2 no longer supports SPARQL, but exposes blank nodes
519         // so querying ports is possible with the simple/fast API
520         SLV2Value lv2_port   = slv2_value_new_uri(_world.world, NS_LV2 "port");
521         SLV2Value lv2_symbol = slv2_value_new_uri(_world.world, NS_LV2 "symbol");
522         SLV2Value pset_value = slv2_value_new_uri(_world.world, NS_PSET "value");
523         SLV2Value preset     = slv2_value_new_uri(_world.world, r.uri.c_str());
524
525         SLV2Values ports = slv2_plugin_get_value_for_subject(_plugin, preset, lv2_port);
526         for (unsigned i = 0; i < slv2_values_size(ports); ++i) {
527                 SLV2Value port   = slv2_values_get_at(ports, i);
528                 SLV2Value symbol = get_value(_plugin, port, lv2_symbol);
529                 SLV2Value value  = get_value(_plugin, port, pset_value);
530                 if (value && slv2_value_is_float(value)) {
531                         set_parameter(_port_indices[slv2_value_as_string(symbol)],
532                                       slv2_value_as_float(value));
533                 }
534         }
535         slv2_values_free(ports);
536
537         slv2_value_free(preset);
538         slv2_value_free(pset_value);
539         slv2_value_free(lv2_symbol);
540         slv2_value_free(lv2_port);
541 #else
542         const string query = string(
543                 "PREFIX lv2p: <http://lv2plug.in/ns/dev/presets#>\n"
544                 "PREFIX dc:  <http://dublincore.org/documents/dcmi-namespace/>\n"
545                 "SELECT ?sym ?val WHERE { <") + r.uri + "> lv2:port ?port . "
546             " ?port lv2:symbol ?sym ; lv2p:value ?val . }";
547         SLV2Results values = slv2_plugin_query_sparql(_plugin, query.c_str());
548         for (; !slv2_results_finished(values); slv2_results_next(values)) {
549                 SLV2Value sym = slv2_results_get_binding_value(values, 0);
550                 SLV2Value val = slv2_results_get_binding_value(values, 1);
551                 if (slv2_value_is_float(val)) {
552                         uint32_t index = _port_indices[slv2_value_as_string(sym)];
553                         set_parameter(index, slv2_value_as_float(val));
554                 }
555         }
556         slv2_results_free(values);
557 #endif
558         return true;
559 }
560
561 std::string
562 LV2Plugin::do_save_preset(string /*name*/)
563 {
564         return "";
565 }
566
567 void
568 LV2Plugin::do_remove_preset(string /*name*/)
569 {}
570
571 bool
572 LV2Plugin::has_editor() const
573 {
574         return _ui != NULL;
575 }
576
577 int
578 LV2Plugin::set_state(const XMLNode& node, int version)
579 {
580         XMLNodeList          nodes;
581         const XMLProperty*   prop;
582         XMLNodeConstIterator iter;
583         XMLNode*             child;
584         const char*          sym;
585         const char*          value;
586         uint32_t             port_id;
587         LocaleGuard          lg(X_("POSIX"));
588
589         if (node.name() != state_node_name()) {
590                 error << _("Bad node sent to LV2Plugin::set_state") << endmsg;
591                 return -1;
592         }
593
594         if (version < 3000) {
595                 nodes = node.children("port");
596         } else {
597                 nodes = node.children("Port");
598         }
599
600         for (iter = nodes.begin(); iter != nodes.end(); ++iter) {
601
602                 child = *iter;
603
604                 if ((prop = child->property("symbol")) != 0) {
605                         sym = prop->value().c_str();
606                 } else {
607                         warning << _("LV2: port has no symbol, ignored") << endmsg;
608                         continue;
609                 }
610
611                 map<string, uint32_t>::iterator i = _port_indices.find(sym);
612
613                 if (i != _port_indices.end()) {
614                         port_id = i->second;
615                 } else {
616                         warning << _("LV2: port has unknown index, ignored") << endmsg;
617                         continue;
618                 }
619
620                 if ((prop = child->property("value")) != 0) {
621                         value = prop->value().c_str();
622                 } else {
623                         warning << _("LV2: port has no value, ignored") << endmsg;
624                         continue;
625                 }
626
627                 set_parameter(port_id, atof(value));
628         }
629
630         if ((prop = node.property("state-file")) != 0) {
631                 std::string state_path = Glib::build_filename(_session.plugins_dir(),
632                                                               prop->value());
633
634                 // Get LV2 Persist extension data from plugin instance
635                 LV2_Persist* persist = (LV2_Persist*)slv2_instance_get_extension_data(
636                         _instance, "http://lv2plug.in/ns/ext/persist");
637                 if (persist) {
638                         cout << "Loading LV2 state from " << state_path << endl;
639                         RDFF file = rdff_open(state_path.c_str(), false);
640
641                         PersistState state(_uri_map);
642
643                         // Load file into state object
644                         RDFFChunk* chunk = (RDFFChunk*)malloc(sizeof(RDFFChunk));
645                         chunk->size = 0;
646                         while (!rdff_read_chunk(file, &chunk)) {
647                                 if (rdff_chunk_is_uri(chunk)) {
648                                         RDFFURIChunk* body = (RDFFURIChunk*)chunk->data;
649                                         printf("READ URI %u: %s\n", body->id, body->uri);
650                                         state.add_uri(body->id, body->uri);
651                                 } else if (rdff_chunk_is_triple(chunk)) {
652                                         RDFFTripleChunk* body = (RDFFTripleChunk*)chunk->data;
653                                         printf("READ VAL %u = %s (size: %u type: %u)\n",
654                                                body->predicate, body->object,
655                                                body->object_size, body->object_type);
656                                         state.add_value(body->subject,
657                                                         body->predicate,
658                                                         body->object,
659                                                         body->object_size,
660                                                         body->object_type,
661                                                         LV2_PERSIST_IS_POD | LV2_PERSIST_IS_PORTABLE);
662                                 }
663                         }
664                         free(chunk);
665                         
666                         persist->restore(_instance->lv2_handle,
667                                          &LV2Plugin::lv2_persist_retrieve_callback,
668                                          &state);
669                         rdff_close(file);
670                 } else {
671                         warning << string_compose(
672                             _("Plugin \"%1\% failed to return LV2 persist data"),
673                             unique_id());
674                 }
675         }
676
677         latency_compute_run();
678
679         return Plugin::set_state(node, version);
680 }
681
682 int
683 LV2Plugin::get_parameter_descriptor(uint32_t which, ParameterDescriptor& desc) const
684 {
685         SLV2Port port = slv2_plugin_get_port_by_index(_plugin, which);
686
687         SLV2Value def, min, max;
688         slv2_port_get_range(_plugin, port, &def, &min, &max);
689
690         desc.integer_step = slv2_port_has_property(_plugin, port, _world.integer);
691         desc.toggled      = slv2_port_has_property(_plugin, port, _world.toggled);
692         desc.logarithmic  = slv2_port_has_property(_plugin, port, _world.logarithmic);
693         desc.sr_dependent = slv2_port_has_property(_plugin, port, _world.srate);
694         desc.label        = slv2_value_as_string(slv2_port_get_name(_plugin, port));
695         desc.lower        = min ? slv2_value_as_float(min) : 0.0f;
696         desc.upper        = max ? slv2_value_as_float(max) : 1.0f;
697         desc.min_unbound  = false; // TODO: LV2 extension required
698         desc.max_unbound  = false; // TODO: LV2 extension required
699
700         if (desc.integer_step) {
701                 desc.step      = 1.0;
702                 desc.smallstep = 0.1;
703                 desc.largestep = 10.0;
704         } else {
705                 const float delta = desc.upper - desc.lower;
706                 desc.step      = delta / 1000.0f;
707                 desc.smallstep = delta / 10000.0f;
708                 desc.largestep = delta / 10.0f;
709         }
710
711         slv2_value_free(def);
712         slv2_value_free(min);
713         slv2_value_free(max);
714
715         return 0;
716 }
717
718 string
719 LV2Plugin::describe_parameter(Evoral::Parameter which)
720 {
721         if (( which.type() == PluginAutomation) && ( which.id() < parameter_count()) ) {
722                 SLV2Value name = slv2_port_get_name(_plugin,
723                                                     slv2_plugin_get_port_by_index(_plugin, which.id()));
724                 string ret(slv2_value_as_string(name));
725                 slv2_value_free(name);
726                 return ret;
727         } else {
728                 return "??";
729         }
730 }
731
732 framecnt_t
733 LV2Plugin::signal_latency() const
734 {
735         if (_latency_control_port) {
736                 return (framecnt_t)floor(*_latency_control_port);
737         } else {
738                 return 0;
739         }
740 }
741
742 set<Evoral::Parameter>
743 LV2Plugin::automatable() const
744 {
745         set<Evoral::Parameter> ret;
746
747         for (uint32_t i = 0; i < parameter_count(); ++i) {
748                 if (parameter_is_input(i) && parameter_is_control(i)) {
749                         ret.insert(ret.end(), Evoral::Parameter(PluginAutomation, 0, i));
750                 }
751         }
752
753         return ret;
754 }
755
756 void
757 LV2Plugin::activate()
758 {
759         DEBUG_TRACE(DEBUG::LV2, string_compose("%1 activate\n", name()));
760
761         if (!_was_activated) {
762                 slv2_instance_activate(_instance);
763                 _was_activated = true;
764         }
765 }
766
767 void
768 LV2Plugin::deactivate()
769 {
770         DEBUG_TRACE(DEBUG::LV2, string_compose("%1 deactivate\n", name()));
771
772         if (_was_activated) {
773                 slv2_instance_deactivate(_instance);
774                 _was_activated = false;
775         }
776 }
777
778 void
779 LV2Plugin::cleanup()
780 {
781         DEBUG_TRACE(DEBUG::LV2, string_compose("%1 cleanup\n", name()));
782
783         activate();
784         deactivate();
785         slv2_instance_free(_instance);
786         _instance = NULL;
787 }
788
789 int
790 LV2Plugin::connect_and_run(BufferSet& bufs,
791         ChanMapping in_map, ChanMapping out_map,
792         pframes_t nframes, framecnt_t offset)
793 {
794         DEBUG_TRACE(DEBUG::LV2, string_compose("%1 run %2 offset %3\n", name(), nframes, offset));
795         Plugin::connect_and_run(bufs, in_map, out_map, nframes, offset);
796
797         cycles_t then = get_cycles();
798
799         uint32_t audio_in_index  = 0;
800         uint32_t audio_out_index = 0;
801         uint32_t midi_in_index   = 0;
802         uint32_t midi_out_index  = 0;
803         for (uint32_t port_index = 0; port_index < parameter_count(); ++port_index) {
804                 if (parameter_is_audio(port_index)) {
805                         if (parameter_is_input(port_index)) {
806                                 const uint32_t buf_index = in_map.get(DataType::AUDIO, audio_in_index++);
807                                 slv2_instance_connect_port(_instance, port_index,
808                                                            bufs.get_audio(buf_index).data(offset));
809                         } else if (parameter_is_output(port_index)) {
810                                 const uint32_t buf_index = out_map.get(DataType::AUDIO, audio_out_index++);
811                                 //cerr << port_index << " : " << " AUDIO OUT " << buf_index << endl;
812                                 slv2_instance_connect_port(_instance, port_index,
813                                                            bufs.get_audio(buf_index).data(offset));
814                         }
815                 } else if (parameter_is_midi(port_index)) {
816                         if (parameter_is_input(port_index)) {
817                                 const uint32_t buf_index = in_map.get(DataType::MIDI, midi_in_index++);
818                                 slv2_instance_connect_port(_instance, port_index,
819                                                            bufs.get_lv2_midi(true, buf_index).data());
820                         } else if (parameter_is_output(port_index)) {
821                                 const uint32_t buf_index = out_map.get(DataType::MIDI, midi_out_index++);
822                                 slv2_instance_connect_port(_instance, port_index,
823                                                            bufs.get_lv2_midi(false, buf_index).data());
824                         }
825                 } else if (!parameter_is_control(port_index)) {
826                         // Optional port (it'd better be if we've made it this far...)
827                         slv2_instance_connect_port(_instance, port_index, NULL);
828                 }
829         }
830
831         run(nframes);
832
833         midi_out_index = 0;
834         for (uint32_t port_index = 0; port_index < parameter_count(); ++port_index) {
835                 if (parameter_is_midi(port_index) && parameter_is_output(port_index)) {
836                         const uint32_t buf_index = out_map.get(DataType::MIDI, midi_out_index++);
837                         bufs.flush_lv2_midi(true, buf_index);
838                 }
839         }
840
841         cycles_t now = get_cycles();
842         set_cycles((uint32_t)(now - then));
843
844         return 0;
845 }
846
847 bool
848 LV2Plugin::parameter_is_control(uint32_t param) const
849 {
850         SLV2Port port = slv2_plugin_get_port_by_index(_plugin, param);
851         return slv2_port_is_a(_plugin, port, _world.control_class);
852 }
853
854 bool
855 LV2Plugin::parameter_is_audio(uint32_t param) const
856 {
857         SLV2Port port = slv2_plugin_get_port_by_index(_plugin, param);
858         return slv2_port_is_a(_plugin, port, _world.audio_class);
859 }
860
861 bool
862 LV2Plugin::parameter_is_midi(uint32_t param) const
863 {
864         SLV2Port port = slv2_plugin_get_port_by_index(_plugin, param);
865         return slv2_port_is_a(_plugin, port, _world.event_class);
866         //      && slv2_port_supports_event(_plugin, port, _world.midi_class);
867 }
868
869 bool
870 LV2Plugin::parameter_is_output(uint32_t param) const
871 {
872         SLV2Port port = slv2_plugin_get_port_by_index(_plugin, param);
873         return slv2_port_is_a(_plugin, port, _world.output_class);
874 }
875
876 bool
877 LV2Plugin::parameter_is_input(uint32_t param) const
878 {
879         SLV2Port port = slv2_plugin_get_port_by_index(_plugin, param);
880         return slv2_port_is_a(_plugin, port, _world.input_class);
881 }
882
883 void
884 LV2Plugin::print_parameter(uint32_t param, char* buf, uint32_t len) const
885 {
886         if (buf && len) {
887                 if (param < parameter_count()) {
888                         snprintf(buf, len, "%.3f", get_parameter(param));
889                 } else {
890                         strcat(buf, "0");
891                 }
892         }
893 }
894
895 void
896 LV2Plugin::run(pframes_t nframes)
897 {
898         for (uint32_t i = 0; i < parameter_count(); ++i) {
899                 if (parameter_is_control(i) && parameter_is_input(i)) {
900                         _control_data[i] = _shadow_data[i];
901                 }
902         }
903
904         slv2_instance_run(_instance, nframes);
905 }
906
907 void
908 LV2Plugin::latency_compute_run()
909 {
910         if (!_latency_control_port) {
911                 return;
912         }
913
914         // Run the plugin so that it can set its latency parameter
915
916         activate();
917
918         uint32_t port_index = 0;
919         uint32_t in_index   = 0;
920         uint32_t out_index  = 0;
921
922         const framecnt_t bufsize = 1024;
923         float            buffer[bufsize];
924
925         memset(buffer, 0, sizeof(float) * bufsize);
926
927         // FIXME: Ensure plugins can handle in-place processing
928
929         port_index = 0;
930
931         while (port_index < parameter_count()) {
932                 if (parameter_is_audio(port_index)) {
933                         if (parameter_is_input(port_index)) {
934                                 slv2_instance_connect_port(_instance, port_index, buffer);
935                                 in_index++;
936                         } else if (parameter_is_output(port_index)) {
937                                 slv2_instance_connect_port(_instance, port_index, buffer);
938                                 out_index++;
939                         }
940                 }
941                 port_index++;
942         }
943
944         run(bufsize);
945         deactivate();
946 }
947
948 LV2World::LV2World()
949         : world(slv2_world_new())
950 {
951         slv2_world_load_all(world);
952         input_class     = slv2_value_new_uri(world, SLV2_PORT_CLASS_INPUT);
953         output_class    = slv2_value_new_uri(world, SLV2_PORT_CLASS_OUTPUT);
954         control_class   = slv2_value_new_uri(world, SLV2_PORT_CLASS_CONTROL);
955         audio_class     = slv2_value_new_uri(world, SLV2_PORT_CLASS_AUDIO);
956         event_class     = slv2_value_new_uri(world, SLV2_PORT_CLASS_EVENT);
957         midi_class      = slv2_value_new_uri(world, SLV2_EVENT_CLASS_MIDI);
958         in_place_broken = slv2_value_new_uri(world, SLV2_NAMESPACE_LV2 "inPlaceBroken");
959         integer         = slv2_value_new_uri(world, SLV2_NAMESPACE_LV2 "integer");
960         toggled         = slv2_value_new_uri(world, SLV2_NAMESPACE_LV2 "toggled");
961         srate           = slv2_value_new_uri(world, SLV2_NAMESPACE_LV2 "sampleRate");
962         gtk_gui         = slv2_value_new_uri(world, NS_UI "GtkUI");
963         external_gui    = slv2_value_new_uri(world, NS_UI "external");
964         logarithmic     = slv2_value_new_uri(world, "http://lv2plug.in/ns/dev/extportinfo#logarithmic");
965 }
966
967 LV2World::~LV2World()
968 {
969         slv2_value_free(input_class);
970         slv2_value_free(output_class);
971         slv2_value_free(control_class);
972         slv2_value_free(audio_class);
973         slv2_value_free(event_class);
974         slv2_value_free(midi_class);
975         slv2_value_free(in_place_broken);
976 }
977
978 LV2PluginInfo::LV2PluginInfo (void* lv2_world, void* slv2_plugin)
979         : _lv2_world(lv2_world)
980         , _slv2_plugin(slv2_plugin)
981 {
982         type = ARDOUR::LV2;
983 }
984
985 LV2PluginInfo::~LV2PluginInfo()
986 {}
987
988 PluginPtr
989 LV2PluginInfo::load(Session& session)
990 {
991         try {
992                 PluginPtr plugin;
993
994                 plugin.reset(new LV2Plugin(session.engine(), session,
995                                            *(LV2World*)_lv2_world, (SLV2Plugin)_slv2_plugin,
996                                            session.frame_rate()));
997
998                 plugin->set_info(PluginInfoPtr(new LV2PluginInfo(*this)));
999                 return plugin;
1000         } catch (failed_constructor& err) {
1001                 return PluginPtr((Plugin*)0);
1002         }
1003
1004         return PluginPtr();
1005 }
1006
1007 PluginInfoList*
1008 LV2PluginInfo::discover(void* lv2_world)
1009 {
1010         PluginInfoList* plugs   = new PluginInfoList;
1011         LV2World*       world   = (LV2World*)lv2_world;
1012         SLV2Plugins     plugins = slv2_world_get_all_plugins(world->world);
1013
1014         cerr << "LV2: Discovering " << slv2_plugins_size(plugins) << " plugins" << endl;
1015
1016         for (unsigned i = 0; i < slv2_plugins_size(plugins); ++i) {
1017                 SLV2Plugin       p = slv2_plugins_get_at(plugins, i);
1018                 LV2PluginInfoPtr info(new LV2PluginInfo(lv2_world, p));
1019
1020                 SLV2Value name = slv2_plugin_get_name(p);
1021
1022                 if (!name) {
1023                         cerr << "LV2: invalid plugin\n";
1024                         continue;
1025                 }
1026
1027                 info->type = LV2;
1028
1029                 info->name = string(slv2_value_as_string(name));
1030                 slv2_value_free(name);
1031
1032                 SLV2PluginClass pclass = slv2_plugin_get_class(p);
1033                 SLV2Value       label  = slv2_plugin_class_get_label(pclass);
1034                 info->category = slv2_value_as_string(label);
1035
1036                 SLV2Value author_name = slv2_plugin_get_author_name(p);
1037                 info->creator = author_name ? string(slv2_value_as_string(author_name)) : "Unknown";
1038                 slv2_value_free(author_name);
1039
1040                 info->path = "/NOPATH"; // Meaningless for LV2
1041
1042                 info->n_inputs.set_audio(
1043                         slv2_plugin_get_num_ports_of_class(
1044                                 p, world->input_class, world->audio_class, NULL));
1045                 info->n_inputs.set_midi(
1046                         slv2_plugin_get_num_ports_of_class(
1047                                 p, world->input_class, world->event_class, NULL));
1048
1049                 info->n_outputs.set_audio(
1050                         slv2_plugin_get_num_ports_of_class(
1051                                 p, world->output_class, world->audio_class, NULL));
1052                 info->n_outputs.set_midi(
1053                         slv2_plugin_get_num_ports_of_class(
1054                                 p, world->output_class, world->event_class, NULL));
1055
1056                 info->unique_id = slv2_value_as_uri(slv2_plugin_get_uri(p));
1057                 info->index     = 0; // Meaningless for LV2
1058
1059                 plugs->push_back(info);
1060         }
1061
1062         cerr << "Done LV2 discovery" << endl;
1063
1064         return plugs;
1065 }