Preliminary MIDI plugin support.
[ardour.git] / libs / ardour / lv2_plugin.cc
1 /*
2     Copyright (C) 2008 Paul Davis 
3     Author: Dave 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 <vector>
22 #include <string>
23
24 #include <cstdlib>
25 #include <cmath>
26 #include <cstring>
27
28 #include "pbd/compose.h"
29 #include "pbd/error.h"
30 #include "pbd/pathscanner.h"
31 #include "pbd/xml++.h"
32
33 #include "ardour/ardour.h"
34 #include "ardour/session.h"
35 #include "ardour/audioengine.h"
36 #include "ardour/audio_buffer.h"
37 #include "ardour/lv2_event_buffer.h"
38 #include "ardour/lv2_plugin.h"
39
40 #include "pbd/stl_delete.h"
41
42 #include "i18n.h"
43 #include <locale.h>
44
45 using namespace std;
46 using namespace ARDOUR;
47 using namespace PBD;
48
49 URIMap   LV2Plugin::_uri_map;
50 uint32_t LV2Plugin::_midi_event_type = _uri_map.uri_to_id(
51                 "http://lv2plug.in/ns/ext/event",
52                 "http://lv2plug.in/ns/ext/midi#MidiEvent");
53
54 LV2Plugin::LV2Plugin (AudioEngine& e, Session& session, LV2World& world, SLV2Plugin plugin, nframes_t rate)
55         : Plugin (e, session)
56         , _world(world)
57         , _features(NULL)
58 {
59         init (world, plugin, rate);
60 }
61
62 LV2Plugin::LV2Plugin (const LV2Plugin &other)
63         : Plugin (other)
64         , _world(other._world)
65         , _features(NULL)
66 {
67         init (other._world, other._plugin, other._sample_rate);
68
69         for (uint32_t i = 0; i < parameter_count(); ++i) {
70                 _control_data[i] = other._shadow_data[i];
71                 _shadow_data[i] = other._shadow_data[i];
72         }
73 }
74
75 void
76 LV2Plugin::init (LV2World& world, SLV2Plugin plugin, nframes_t rate)
77 {
78         _world = world;
79         _plugin = plugin;
80         _ui = NULL;
81         _control_data = 0;
82         _shadow_data = 0;
83         _latency_control_port = 0;
84         _was_activated = false;
85         
86         _instance = slv2_plugin_instantiate(plugin, rate, _features);
87         _name = slv2_plugin_get_name(plugin);
88         assert(_name);
89         _author = slv2_plugin_get_author_name(plugin);
90
91         if (_instance == 0) {
92                 error << _("LV2: Failed to instantiate plugin ") << slv2_plugin_get_uri(plugin) << endl;
93                 throw failed_constructor();
94         }
95
96         if (slv2_plugin_has_feature(plugin, world.in_place_broken)) {
97                 error << string_compose(
98                                 _("LV2: \"%1\" cannot be used, since it cannot do inplace processing"),
99                                 slv2_value_as_string(_name));
100                 slv2_value_free(_name);
101                 slv2_value_free(_author);
102                 throw failed_constructor();
103         }
104         
105         _instance_access_feature.URI = "http://lv2plug.in/ns/ext/instance-access";
106         _instance_access_feature.data = (void*)_instance->lv2_handle;
107
108         _data_access_extension_data.extension_data = _instance->lv2_descriptor->extension_data;
109         _data_access_feature.URI = "http://lv2plug.in/ns/ext/data-access";
110         _data_access_feature.data = &_data_access_extension_data;
111         
112         _features = (LV2_Feature**)malloc(sizeof(LV2_Feature*) * 4);
113         _features[0] = &_instance_access_feature;
114         _features[1] = &_data_access_feature;
115         _features[2] = _uri_map.feature();
116         _features[3] = NULL;
117
118         _sample_rate = rate;
119
120         const uint32_t num_ports = slv2_plugin_get_num_ports(plugin);
121
122         _control_data = new float[num_ports];
123         _shadow_data = new float[num_ports];
124         _defaults = new float[num_ports];
125
126         const bool latent = slv2_plugin_has_latency(plugin);
127         uint32_t latency_port = (latent ? slv2_plugin_get_latency_port_index(plugin) : 0);
128
129         for (uint32_t i = 0; i < num_ports; ++i) {
130                 SLV2Port port = slv2_plugin_get_port_by_index(plugin, i);
131                 SLV2Value sym = slv2_port_get_symbol(_plugin, port);
132                 _port_indices.insert(std::make_pair(slv2_value_as_string(sym), i));
133                 if (parameter_is_control(i)) {
134                         SLV2Value def;
135                         slv2_port_get_range(plugin, port, &def, NULL, NULL);
136                         _defaults[i] = def ? slv2_value_as_float(def) : 0.0f;
137                         slv2_value_free(def);
138
139                         slv2_instance_connect_port (_instance, i, &_control_data[i]);
140
141                         if (latent && i == latency_port) {
142                                 _latency_control_port = &_control_data[i];
143                                 *_latency_control_port = 0;
144                         }
145
146                         if (parameter_is_input(i)) {
147                                 _shadow_data[i] = default_value (i);
148                         }
149                 } else {
150                         _defaults[i] = 0.0f;
151                 }
152         }
153         
154         SLV2UIs uis = slv2_plugin_get_uis(_plugin);
155         if (slv2_uis_size(uis) > 0) {
156                 for (unsigned i=0; i < slv2_uis_size(uis); ++i) {
157                         SLV2UI ui = slv2_uis_get_at(uis, i);
158                         if (slv2_ui_is_a(ui, _world.gtk_gui)) {
159                                 _ui = ui;
160                                 break;
161                         }
162                 }
163         }
164
165         latency_compute_run ();
166 }
167
168 LV2Plugin::~LV2Plugin ()
169 {
170         deactivate ();
171         cleanup ();
172
173         GoingAway (); /* EMIT SIGNAL */
174         
175         slv2_instance_free(_instance);
176         slv2_value_free(_name);
177         slv2_value_free(_author);
178
179         delete [] _control_data;
180         delete [] _shadow_data;
181 }
182
183 string
184 LV2Plugin::unique_id() const
185 {
186         return slv2_value_as_uri(slv2_plugin_get_uri(_plugin));
187 }
188
189
190 float
191 LV2Plugin::default_value (uint32_t port)
192 {
193         return _defaults[port];
194 }       
195
196 const char*
197 LV2Plugin::port_symbol (uint32_t index)
198 {
199         SLV2Port port = slv2_plugin_get_port_by_index(_plugin, index);
200         if (!port) {
201                 error << name() << ": Invalid port index " << index << endmsg;
202         }
203
204         SLV2Value sym = slv2_port_get_symbol(_plugin, port);
205         return slv2_value_as_string(sym);
206 }
207
208
209 void
210 LV2Plugin::set_parameter (uint32_t which, float val)
211 {
212         if (which < slv2_plugin_get_num_ports(_plugin)) {
213                 _shadow_data[which] = val;
214 #if 0
215                 ParameterChanged (which, val); /* EMIT SIGNAL */
216
217                 if (which < parameter_count() && controls[which]) {
218                         controls[which]->Changed ();
219                 }
220 #endif
221                 
222         } else {
223                 warning << string_compose (_("Illegal parameter number used with plugin \"%1\"."
224                                 "This is a bug in either Ardour or the LV2 plugin (%2)"),
225                                 name(), unique_id()) << endmsg;
226         }
227 }
228
229 float
230 LV2Plugin::get_parameter (uint32_t which) const
231 {
232         if (parameter_is_input(which)) {
233                 return (float) _shadow_data[which];
234         } else {
235                 return (float) _control_data[which];
236         }
237         return 0.0f;
238 }
239
240 uint32_t
241 LV2Plugin::nth_parameter (uint32_t n, bool& ok) const
242 {
243         uint32_t x, c;
244
245         ok = false;
246
247         for (c = 0, x = 0; x < slv2_plugin_get_num_ports(_plugin); ++x) {
248                 if (parameter_is_control (x)) {
249                         if (c++ == n) {
250                                 ok = true;
251                                 return x;
252                         }
253                 }
254         }
255         
256         return 0;
257 }
258
259 XMLNode&
260 LV2Plugin::get_state()
261 {
262         XMLNode *root = new XMLNode(state_node_name());
263         XMLNode *child;
264         char buf[16];
265         LocaleGuard lg (X_("POSIX"));
266
267         for (uint32_t i = 0; i < parameter_count(); ++i){
268
269                 if (parameter_is_input(i) && parameter_is_control(i)) {
270                         child = new XMLNode("Port");
271                         snprintf(buf, sizeof(buf), "%u", i);
272                         child->add_property("number", string(buf));
273                         child->add_property("symbol", port_symbol(i));
274                         snprintf(buf, sizeof(buf), "%+f", _shadow_data[i]);
275                         child->add_property("value", string(buf));
276                         root->add_child_nocopy (*child);
277
278                         /*if (i < controls.size() && controls[i]) {
279                                 root->add_child_nocopy (controls[i]->get_state());
280                         }*/
281                 }
282         }
283
284         return *root;
285 }
286
287 vector<Plugin::PresetRecord>
288 LV2Plugin::get_presets()
289 {
290         vector<PresetRecord> result;
291         SLV2Results presets = slv2_plugin_query_sparql(_plugin,
292                         "PREFIX lv2p: <http://lv2plug.in/ns/dev/presets#>\n"
293                         "PREFIX dc:  <http://dublincore.org/documents/dcmi-namespace/>\n"
294                         "SELECT ?p ?name WHERE { <> lv2p:hasPreset ?p . ?p dc:title ?name }\n");
295         for (; !slv2_results_finished(presets); slv2_results_next(presets)) {
296                 SLV2Value uri  = slv2_results_get_binding_value(presets, 0);
297                 SLV2Value name = slv2_results_get_binding_value(presets, 1);
298                 PresetRecord rec(slv2_value_as_string(uri), slv2_value_as_string(name));
299                 result.push_back(rec);
300                 this->presets.insert(std::make_pair(slv2_value_as_string(uri), rec));
301         }
302         slv2_results_free(presets);
303         return result;
304 }
305
306 bool
307 LV2Plugin::load_preset(const string uri)
308 {
309         const string query = string(
310                         "PREFIX lv2p: <http://lv2plug.in/ns/dev/presets#>\n"
311                         "PREFIX dc:  <http://dublincore.org/documents/dcmi-namespace/>\n"
312                         "SELECT ?sym ?val WHERE { <") + uri + "> lv2:port ?port . "
313                                 " ?port lv2:symbol ?sym ; lv2p:value ?val . }";
314         SLV2Results values = slv2_plugin_query_sparql(_plugin, query.c_str());
315         for (; !slv2_results_finished(values); slv2_results_next(values)) {
316                 SLV2Value sym  = slv2_results_get_binding_value(values, 0);
317                 SLV2Value val = slv2_results_get_binding_value(values, 1);
318                 if (slv2_value_is_float(val)) {
319                         uint32_t index = _port_indices[slv2_value_as_string(sym)];
320                         set_parameter(index, slv2_value_as_float(val));
321                 }
322         }
323         slv2_results_free(values);
324         return true;
325 }
326
327 bool
328 LV2Plugin::save_preset (string name)
329 {
330         return false;
331 }
332         
333 bool
334 LV2Plugin::has_editor() const
335 {
336         return (_ui != NULL);
337 }
338
339 int
340 LV2Plugin::set_state(const XMLNode& node)
341 {
342         XMLNodeList nodes;
343         XMLProperty *prop;
344         XMLNodeConstIterator iter;
345         XMLNode *child;
346         const char *port;
347         const char *data;
348         uint32_t port_id;
349         LocaleGuard lg (X_("POSIX"));
350
351         if (node.name() != state_node_name()) {
352                 error << _("Bad node sent to LV2Plugin::set_state") << endmsg;
353                 return -1;
354         }
355
356         nodes = node.children ("Port");
357
358         for (iter = nodes.begin(); iter != nodes.end(); ++iter){
359
360                 child = *iter;
361
362                 if ((prop = child->property("number")) != 0) {
363                         port = prop->value().c_str();
364                 } else {
365                         warning << _("LV2: no lv2 port number") << endmsg;
366                         continue;
367                 }
368
369                 if ((prop = child->property("value")) != 0) {
370                         data = prop->value().c_str();
371                 } else {
372                         warning << _("LV2: no lv2 port data") << endmsg;
373                         continue;
374                 }
375
376                 sscanf (port, "%" PRIu32, &port_id);
377                 set_parameter (port_id, atof(data));
378         }
379         
380         latency_compute_run ();
381
382         return 0;
383 }
384
385 int
386 LV2Plugin::get_parameter_descriptor (uint32_t which, ParameterDescriptor& desc) const
387 {
388         SLV2Port port = slv2_plugin_get_port_by_index(_plugin, which);
389
390         SLV2Value def, min, max;
391         slv2_port_get_range(_plugin, port, &def, &min, &max);
392         
393     desc.integer_step = slv2_port_has_property(_plugin, port, _world.integer);
394     desc.toggled = slv2_port_has_property(_plugin, port, _world.toggled);
395     desc.logarithmic = false; // TODO (LV2 extension)
396     desc.sr_dependent = slv2_port_has_property(_plugin, port, _world.srate);
397     desc.label = slv2_value_as_string(slv2_port_get_name(_plugin, port));
398     desc.lower = min ? slv2_value_as_float(min) : 0.0f;
399     desc.upper = max ? slv2_value_as_float(max) : 1.0f;
400     desc.min_unbound = false; // TODO (LV2 extension)
401     desc.max_unbound = false; // TODO (LV2 extension)
402         
403         if (desc.integer_step) {
404                 desc.step = 1.0;
405                 desc.smallstep = 0.1;
406                 desc.largestep = 10.0;
407         } else {
408                 const float delta = desc.upper - desc.lower;
409                 desc.step = delta / 1000.0f;
410                 desc.smallstep = delta / 10000.0f;
411                 desc.largestep = delta/10.0f;
412         }
413
414         slv2_value_free(def);
415         slv2_value_free(min);
416         slv2_value_free(max);
417
418         return 0;
419 }
420
421
422 string
423 LV2Plugin::describe_parameter (Evoral::Parameter which)
424 {
425         if (which.type() == PluginAutomation && which.id() < parameter_count()) {
426                 SLV2Value name = slv2_port_get_name(_plugin,
427                         slv2_plugin_get_port_by_index(_plugin, which));
428                 string ret(slv2_value_as_string(name));
429                 slv2_value_free(name);
430                 return ret;
431         } else {
432                 return "??";
433         }
434 }
435
436 nframes_t
437 LV2Plugin::signal_latency () const
438 {
439         if (_latency_control_port) {
440                 return (nframes_t) floor (*_latency_control_port);
441         } else {
442                 return 0;
443         }
444 }
445
446 set<Evoral::Parameter>
447 LV2Plugin::automatable () const
448 {
449         set<Evoral::Parameter> ret;
450
451         for (uint32_t i = 0; i < parameter_count(); ++i){
452                 if (parameter_is_input(i) && parameter_is_control(i)) {
453                         ret.insert (ret.end(), Evoral::Parameter(PluginAutomation, 0, i));
454                 }
455         }
456
457         return ret;
458 }
459
460 int
461 LV2Plugin::connect_and_run (BufferSet& bufs,
462                 ChanMapping in_map, ChanMapping out_map,
463                 nframes_t nframes, nframes_t offset)
464 {
465         cycles_t then, now;
466
467         then = get_cycles ();
468
469         uint32_t audio_in_index  = 0;
470         uint32_t audio_out_index = 0;
471         uint32_t midi_in_index   = 0;
472         uint32_t midi_out_index  = 0;
473         for (uint32_t port_index = 0; port_index < parameter_count(); ++port_index) {
474                 if (parameter_is_audio(port_index)) {
475                         if (parameter_is_input(port_index)) {
476                                 const uint32_t buf_index = in_map.get(DataType::AUDIO, audio_in_index++);
477                                 slv2_instance_connect_port(_instance, port_index,
478                                                 bufs.get_audio(buf_index).data(offset));
479                         } else if (parameter_is_output(port_index)) {
480                                 const uint32_t buf_index = out_map.get(DataType::AUDIO, audio_out_index++);
481                                 slv2_instance_connect_port(_instance, port_index,
482                                                 bufs.get_audio(buf_index).data(offset));
483                         }
484                 } else if (parameter_is_midi(port_index)) {
485                         if (parameter_is_input(port_index)) {
486                                 const uint32_t buf_index = in_map.get(DataType::MIDI, midi_in_index++);
487                                 slv2_instance_connect_port(_instance, port_index,
488                                                 bufs.get_lv2_midi(true, buf_index).data());
489                         } else if (parameter_is_output(port_index)) {
490                                 const uint32_t buf_index = out_map.get(DataType::MIDI, midi_out_index++);
491                                 slv2_instance_connect_port(_instance, port_index,
492                                                 bufs.get_lv2_midi(false, buf_index).data());
493                         }
494                 } else if (!parameter_is_control(port_index)) {
495                         std::cerr << "WARNING: Unknown LV2 port type, ignored" << endl;
496                         slv2_instance_connect_port(_instance, port_index, NULL);
497                 }
498         }
499         
500         run (nframes);
501         
502         midi_out_index = 0;
503         for (uint32_t port_index = 0; port_index < parameter_count(); ++port_index) {
504                 if (parameter_is_midi(port_index) && parameter_is_output(port_index)) {
505                         const uint32_t buf_index = out_map.get(DataType::MIDI, midi_out_index++);
506                         bufs.flush_lv2_midi(true, buf_index);
507                 }
508         }
509         
510         now = get_cycles ();
511         set_cycles ((uint32_t) (now - then));
512
513         return 0;
514 }
515
516 bool
517 LV2Plugin::parameter_is_control (uint32_t param) const
518 {
519         SLV2Port port = slv2_plugin_get_port_by_index(_plugin, param);
520         return slv2_port_is_a(_plugin, port, _world.control_class);
521 }
522
523 bool
524 LV2Plugin::parameter_is_audio (uint32_t param) const
525 {
526         SLV2Port port = slv2_plugin_get_port_by_index(_plugin, param);
527         return slv2_port_is_a(_plugin, port, _world.audio_class);
528 }
529
530 bool
531 LV2Plugin::parameter_is_midi (uint32_t param) const
532 {
533         SLV2Port port = slv2_plugin_get_port_by_index(_plugin, param);
534         return slv2_port_is_a(_plugin, port, _world.event_class);
535         //      && slv2_port_supports_event(_plugin, port, _world.midi_class);
536 }
537
538 bool
539 LV2Plugin::parameter_is_output (uint32_t param) const
540 {
541         SLV2Port port = slv2_plugin_get_port_by_index(_plugin, param);
542         return slv2_port_is_a(_plugin, port, _world.output_class);
543 }
544
545 bool
546 LV2Plugin::parameter_is_input (uint32_t param) const
547 {
548         SLV2Port port = slv2_plugin_get_port_by_index(_plugin, param);
549         return slv2_port_is_a(_plugin, port, _world.input_class);
550 }
551
552 void
553 LV2Plugin::print_parameter (uint32_t param, char *buf, uint32_t len) const
554 {
555         if (buf && len) {
556                 if (param < parameter_count()) {
557                         snprintf (buf, len, "%.3f", get_parameter (param));
558                 } else {
559                         strcat (buf, "0");
560                 }
561         }
562 }
563
564 void
565 LV2Plugin::run (nframes_t nframes)
566 {
567         for (uint32_t i = 0; i < parameter_count(); ++i) {
568                 if (parameter_is_control(i) && parameter_is_input(i))  {
569                         _control_data[i] = _shadow_data[i];
570                 }
571         }
572
573         slv2_instance_run(_instance, nframes);
574 }
575
576 void
577 LV2Plugin::latency_compute_run ()
578 {
579         if (!_latency_control_port) {
580                 return;
581         }
582
583         /* we need to run the plugin so that it can set its latency
584            parameter.
585         */
586         
587         activate ();
588         
589         uint32_t port_index = 0;
590         uint32_t in_index = 0;
591         uint32_t out_index = 0;
592         const nframes_t bufsize = 1024;
593         float buffer[bufsize];
594
595         memset(buffer,0,sizeof(float)*bufsize);
596                 
597         /* Note that we've already required that plugins
598            be able to handle in-place processing.
599         */
600         
601         port_index = 0;
602         
603         while (port_index < parameter_count()) {
604                 if (parameter_is_audio (port_index)) {
605                         if (parameter_is_input (port_index)) {
606                                 slv2_instance_connect_port (_instance, port_index, buffer);
607                                 in_index++;
608                         } else if (parameter_is_output (port_index)) {
609                                 slv2_instance_connect_port (_instance, port_index, buffer);
610                                 out_index++;
611                         }
612                 }
613                 port_index++;
614         }
615         
616         run (bufsize);
617         deactivate ();
618 }
619
620 LV2World::LV2World()
621         : world(slv2_world_new())
622 {
623         slv2_world_load_all(world);
624         input_class = slv2_value_new_uri(world, SLV2_PORT_CLASS_INPUT);
625         output_class = slv2_value_new_uri(world, SLV2_PORT_CLASS_OUTPUT);
626         control_class = slv2_value_new_uri(world, SLV2_PORT_CLASS_CONTROL);
627         audio_class = slv2_value_new_uri(world, SLV2_PORT_CLASS_AUDIO);
628         event_class = slv2_value_new_uri(world, SLV2_PORT_CLASS_EVENT);
629         midi_class = slv2_value_new_uri(world, SLV2_EVENT_CLASS_MIDI);
630         in_place_broken = slv2_value_new_uri(world, SLV2_NAMESPACE_LV2 "inPlaceBroken");
631         integer = slv2_value_new_uri(world, SLV2_NAMESPACE_LV2 "integer");
632         toggled = slv2_value_new_uri(world, SLV2_NAMESPACE_LV2 "toggled");
633         srate = slv2_value_new_uri(world, SLV2_NAMESPACE_LV2 "sampleRate");
634         gtk_gui = slv2_value_new_uri(world, "http://lv2plug.in/ns/extensions/ui#GtkUI");
635 }
636
637 LV2World::~LV2World()
638 {
639         slv2_value_free(input_class);
640         slv2_value_free(output_class);
641         slv2_value_free(control_class);
642         slv2_value_free(audio_class);
643         slv2_value_free(event_class);
644         slv2_value_free(midi_class);
645         slv2_value_free(in_place_broken);
646 }
647
648 LV2PluginInfo::LV2PluginInfo (void* lv2_world, void* slv2_plugin)
649         : _lv2_world(lv2_world)
650         , _slv2_plugin(slv2_plugin)
651 {
652 }
653
654 LV2PluginInfo::~LV2PluginInfo()
655 {
656 }
657
658 PluginPtr
659 LV2PluginInfo::load (Session& session)
660 {
661         try {
662                 PluginPtr plugin;
663
664                 plugin.reset (new LV2Plugin (session.engine(), session,
665                                 *(LV2World*)_lv2_world, (SLV2Plugin)_slv2_plugin, session.frame_rate()));
666
667                 plugin->set_info(PluginInfoPtr(new LV2PluginInfo(*this)));
668                 return plugin;
669         }
670
671         catch (failed_constructor &err) {
672                 return PluginPtr ((Plugin*) 0);
673         }       
674         
675         return PluginPtr();
676 }
677
678 PluginInfoList
679 LV2PluginInfo::discover (void* lv2_world)
680 {
681         PluginInfoList plugs;
682         
683         LV2World* world = (LV2World*)lv2_world;
684         SLV2Plugins plugins = slv2_world_get_all_plugins(world->world);
685
686         for (unsigned i=0; i < slv2_plugins_size(plugins); ++i) {
687                 SLV2Plugin p = slv2_plugins_get_at(plugins, i);
688                 LV2PluginInfoPtr info (new LV2PluginInfo(lv2_world, p));
689
690                 SLV2Value name = slv2_plugin_get_name(p);
691                 info->name = string(slv2_value_as_string(name));
692                 slv2_value_free(name);
693
694                 SLV2PluginClass pclass = slv2_plugin_get_class(p);
695                 SLV2Value label = slv2_plugin_class_get_label(pclass);
696                 info->category = slv2_value_as_string(label);
697
698                 SLV2Value author_name = slv2_plugin_get_author_name(p);
699                 info->creator = author_name ? string(slv2_value_as_string(author_name)) : "Unknown";
700                 slv2_value_free(author_name);
701
702                 info->path = "/NOPATH"; // Meaningless for LV2
703
704                 info->n_inputs.set_audio(slv2_plugin_get_num_ports_of_class(p,
705                                 world->input_class, world->audio_class, NULL));
706                 info->n_inputs.set_midi(slv2_plugin_get_num_ports_of_class(p,
707                                 world->input_class, world->event_class, NULL));
708                 
709                 info->n_outputs.set_audio(slv2_plugin_get_num_ports_of_class(p,
710                                 world->output_class, world->audio_class, NULL));
711                 info->n_outputs.set_midi(slv2_plugin_get_num_ports_of_class(p,
712                                 world->output_class, world->event_class, NULL));
713
714                 info->unique_id = slv2_value_as_uri(slv2_plugin_get_uri(p));
715                 info->index = 0; // Meaningless for LV2
716                 
717                 plugs.push_back (info);
718         }
719
720         return plugs;
721 }
722