f1f64f038b2c8403fc8f3bc5491f2c4ad6b15578
[ardour.git] / libs / ardour / luaproc.cc
1 /*
2     Copyright (C) 2016 Robin Gareus <robin@gareus.org>
3     Copyright (C) 2006 Paul Davis
4
5     This program is free software; you can redistribute it and/or modify it
6     under the terms of the GNU General Public License as published by the Free
7     Software Foundation; either version 2 of the License, or (at your option)
8     any later version.
9
10     This program is distributed in the hope that it will be useful, but WITHOUT
11     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
13     for more details.
14
15     You should have received a copy of the GNU General Public License along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #include <glib.h>
21 #include <glibmm/miscutils.h>
22 #include <glibmm/fileutils.h>
23
24 #include "pbd/gstdio_compat.h"
25 #include "pbd/locale_guard.h"
26 #include "pbd/pthread_utils.h"
27
28 #include "ardour/audio_buffer.h"
29 #include "ardour/buffer_set.h"
30 #include "ardour/filesystem_paths.h"
31 #include "ardour/luabindings.h"
32 #include "ardour/luaproc.h"
33 #include "ardour/luascripting.h"
34 #include "ardour/midi_buffer.h"
35 #include "ardour/plugin.h"
36 #include "ardour/session.h"
37
38 #include "LuaBridge/LuaBridge.h"
39
40 #include "pbd/i18n.h"
41
42 using namespace ARDOUR;
43 using namespace PBD;
44
45 LuaProc::LuaProc (AudioEngine& engine,
46                   Session& session,
47                   const std::string &script)
48         : Plugin (engine, session)
49         , _mempool ("LuaProc", 2097152)
50 #ifdef USE_TLSF
51         , lua (lua_newstate (&PBD::TLSF::lalloc, &_mempool))
52 #elif defined USE_MALLOC
53         , lua ()
54 #else
55         , lua (lua_newstate (&PBD::ReallocPool::lalloc, &_mempool))
56 #endif
57         , _lua_dsp (0)
58         , _script (script)
59         , _lua_does_channelmapping (false)
60         , _lua_has_inline_display (false)
61         , _designated_bypass_port (UINT32_MAX)
62         , _control_data (0)
63         , _shadow_data (0)
64         , _has_midi_input (false)
65         , _has_midi_output (false)
66 {
67         init ();
68
69         /* when loading a session, or pasing a processor,
70          * the script is set during set_state();
71          */
72         if (!_script.empty () && load_script ()) {
73                 throw failed_constructor ();
74         }
75 }
76
77 LuaProc::LuaProc (const LuaProc &other)
78         : Plugin (other)
79         , _mempool ("LuaProc", 2097152)
80 #ifdef USE_TLSF
81         , lua (lua_newstate (&PBD::TLSF::lalloc, &_mempool))
82 #elif defined USE_MALLOC
83         , lua ()
84 #else
85         , lua (lua_newstate (&PBD::ReallocPool::lalloc, &_mempool))
86 #endif
87         , _lua_dsp (0)
88         , _script (other.script ())
89         , _lua_does_channelmapping (false)
90         , _lua_has_inline_display (false)
91         , _designated_bypass_port (UINT32_MAX)
92         , _control_data (0)
93         , _shadow_data (0)
94         , _has_midi_input (false)
95         , _has_midi_output (false)
96 {
97         init ();
98
99         if (load_script ()) {
100                 throw failed_constructor ();
101         }
102
103         for (uint32_t i = 0; i < parameter_count (); ++i) {
104                 _control_data[i] = other._shadow_data[i];
105                 _shadow_data[i]  = other._shadow_data[i];
106         }
107 }
108
109 LuaProc::~LuaProc () {
110 #ifdef WITH_LUAPROC_STATS
111         if (_info && _stats_cnt > 0) {
112                 printf ("LuaProc: '%s' run()  avg: %.3f  max: %.3f [ms]\n",
113                                 _info->name.c_str (),
114                                 0.0001f * _stats_avg[0] / (float) _stats_cnt,
115                                 0.0001f * _stats_max[0]);
116                 printf ("LuaProc: '%s' gc()   avg: %.3f  max: %.3f [ms]\n",
117                                 _info->name.c_str (),
118                                 0.0001f * _stats_avg[1] / (float) _stats_cnt,
119                                 0.0001f * _stats_max[1]);
120         }
121 #endif
122         lua.do_command ("collectgarbage();");
123         delete (_lua_dsp);
124         delete [] _control_data;
125         delete [] _shadow_data;
126 }
127
128 void
129 LuaProc::init ()
130 {
131 #ifdef WITH_LUAPROC_STATS
132         _stats_avg[0] = _stats_avg[1] = _stats_max[0] = _stats_max[1] = _stats_cnt = 0;
133 #endif
134
135         lua.tweak_rt_gc ();
136         lua.Print.connect (sigc::mem_fun (*this, &LuaProc::lua_print));
137         // register session object
138         lua_State* L = lua.getState ();
139         LuaBindings::stddef (L);
140         LuaBindings::common (L);
141         LuaBindings::dsp (L);
142
143         luabridge::getGlobalNamespace (L)
144                 .beginNamespace ("Ardour")
145                 .beginClass <LuaProc> ("LuaProc")
146                 .addFunction ("queue_draw", &LuaProc::queue_draw)
147                 .addFunction ("shmem", &LuaProc::instance_shm)
148                 .addFunction ("table", &LuaProc::instance_ref)
149                 .endClass ()
150                 .endNamespace ();
151
152         // add session to global lua namespace
153         luabridge::push <Session *> (L, &_session);
154         lua_setglobal (L, "Session");
155
156         // instance
157         luabridge::push <LuaProc *> (L, this);
158         lua_setglobal (L, "self");
159
160         // sandbox
161         lua.do_command ("io = nil os = nil loadfile = nil require = nil dofile = nil package = nil debug = nil");
162 #if 0
163         lua.do_command ("for n in pairs(_G) do print(n) end print ('----')"); // print global env
164 #endif
165         lua.do_command ("function ardour () end");
166 }
167
168 void
169 LuaProc::lua_print (std::string s) {
170         std::cout <<"LuaProc: " << s << "\n";
171         PBD::error << "LuaProc: " << s << "\n";
172 }
173
174 bool
175 LuaProc::load_script ()
176 {
177         assert (!_lua_dsp); // don't allow to re-initialize
178         LuaPluginInfoPtr lpi;
179
180         // TODO: refine APIs; function arguments..
181         // - perform channel-map in ardour (silent/scratch buffers) ?
182         // - control-port API (explicit get/set functions ??)
183         // - latency reporting (global var? ctrl-port? set-function ?)
184         // - MIDI -> sparse table of events
185         //     { [sample] => { Event }, .. }
186         //   or  { { sample, Event }, .. }
187
188         try {
189                 LuaScriptInfoPtr lsi = LuaScripting::script_info (_script);
190                 lpi = LuaPluginInfoPtr (new LuaPluginInfo (lsi));
191                 assert (lpi);
192                 set_info (lpi);
193                 _mempool.set_name ("LuaProc: " + lsi->name);
194                 _docs = lsi->description;
195         } catch (failed_constructor& err) {
196                 return true;
197         }
198
199         lua_State* L = lua.getState ();
200         lua.do_command (_script);
201
202         // check if script has a DSP callback
203         luabridge::LuaRef lua_dsp_run = luabridge::getGlobal (L, "dsp_run");
204         luabridge::LuaRef lua_dsp_map = luabridge::getGlobal (L, "dsp_runmap");
205
206         if ((lua_dsp_run.type () != LUA_TFUNCTION) == (lua_dsp_map.type () != LUA_TFUNCTION)) {
207                 return true;
208         }
209
210         if (lua_dsp_run.type () == LUA_TFUNCTION) {
211                 _lua_dsp = new luabridge::LuaRef (lua_dsp_run);
212         }
213         else if (lua_dsp_map.type () == LUA_TFUNCTION) {
214                 _lua_dsp = new luabridge::LuaRef (lua_dsp_map);
215                 _lua_does_channelmapping = true;
216         }
217         else {
218                 assert (0);
219         }
220
221         // initialize the DSP if needed
222         luabridge::LuaRef lua_dsp_init = luabridge::getGlobal (L, "dsp_init");
223         if (lua_dsp_init.type () == LUA_TFUNCTION) {
224                 try {
225                         lua_dsp_init (_session.nominal_frame_rate ());
226                 } catch (luabridge::LuaException const& e) {
227                         ;
228                 }
229         }
230
231         // query midi i/o
232         luabridge::LuaRef lua_dsp_has_midi_in = luabridge::getGlobal (L, "dsp_has_midi_input");
233         if (lua_dsp_has_midi_in.type () == LUA_TFUNCTION) {
234                 try {
235                         _has_midi_input = lua_dsp_has_midi_in ();
236                 } catch (luabridge::LuaException const& e) {
237                         ;
238                 }
239         }
240
241         luabridge::LuaRef lua_dsp_has_midi_out = luabridge::getGlobal (L, "dsp_has_midi_output");
242         if (lua_dsp_has_midi_out.type () == LUA_TFUNCTION) {
243                 try {
244                         _has_midi_output = lua_dsp_has_midi_out ();
245                 } catch (luabridge::LuaException const& e) {
246                         ;
247                 }
248         }
249
250         _ctrl_params.clear ();
251
252         luabridge::LuaRef lua_render = luabridge::getGlobal (L, "render_inline");
253         if (lua_render.isFunction ()) {
254                 _lua_has_inline_display = true;
255         }
256
257         luabridge::LuaRef lua_params = luabridge::getGlobal (L, "dsp_params");
258         if (lua_params.isFunction ()) {
259
260                 // call function // add try {} catch (luabridge::LuaException const& e)
261                 luabridge::LuaRef params = lua_params ();
262
263                 if (params.isTable ()) {
264
265                         for (luabridge::Iterator i (params); !i.isNil (); ++i) {
266                                 // required fields
267                                 if (!i.key ().isNumber ())           { return false; }
268                                 if (!i.value ().isTable ())          { return false; }
269                                 if (!i.value ()["type"].isString ()) { return false; }
270                                 if (!i.value ()["name"].isString ()) { return false; }
271                                 if (!i.value ()["min"].isNumber ())  { return false; }
272                                 if (!i.value ()["max"].isNumber ())  { return false; }
273
274                                 int pn = i.key ().cast<int> ();
275                                 std::string type = i.value ()["type"].cast<std::string> ();
276                                 if (type == "input") {
277                                         if (!i.value ()["default"].isNumber ()) { return false; }
278                                         _ctrl_params.push_back (std::make_pair (false, pn));
279                                 }
280                                 else if (type == "output") {
281                                         _ctrl_params.push_back (std::make_pair (true, pn));
282                                 } else {
283                                         return false;
284                                 }
285                                 assert (pn == (int) _ctrl_params.size ());
286
287                                 //_param_desc[pn] = boost::shared_ptr<ParameterDescriptor> (new ParameterDescriptor());
288                                 luabridge::LuaRef lr = i.value ();
289
290                                 if (type == "input") {
291                                         _param_desc[pn].normal     = lr["default"].cast<float> ();
292                                 } else {
293                                         _param_desc[pn].normal     = lr["min"].cast<float> (); // output-port, no default
294                                 }
295                                 _param_desc[pn].lower        = lr["min"].cast<float> ();
296                                 _param_desc[pn].upper        = lr["max"].cast<float> ();
297                                 _param_desc[pn].toggled      = lr["toggled"].isBoolean () && (lr["toggled"]).cast<bool> ();
298                                 _param_desc[pn].logarithmic  = lr["logarithmic"].isBoolean () && (lr["logarithmic"]).cast<bool> ();
299                                 _param_desc[pn].integer_step = lr["integer"].isBoolean () && (lr["integer"]).cast<bool> ();
300                                 _param_desc[pn].sr_dependent = lr["ratemult"].isBoolean () && (lr["ratemult"]).cast<bool> ();
301                                 _param_desc[pn].enumeration  = lr["enum"].isBoolean () && (lr["enum"]).cast<bool> ();
302
303                                 if (lr["bypass"].isBoolean () && (lr["bypass"]).cast<bool> ()) {
304                                         _designated_bypass_port = pn - 1; // lua table starts at 1.
305                                 }
306
307                                 if (lr["unit"].isString ()) {
308                                         std::string unit = lr["unit"].cast<std::string> ();
309                                         if (unit == "dB")             { _param_desc[pn].unit = ParameterDescriptor::DB; }
310                                         else if (unit == "Hz")        { _param_desc[pn].unit = ParameterDescriptor::HZ; }
311                                         else if (unit == "Midi Note") { _param_desc[pn].unit = ParameterDescriptor::MIDI_NOTE; }
312                                 }
313                                 _param_desc[pn].label        = (lr["name"]).cast<std::string> ();
314                                 _param_desc[pn].scale_points = parse_scale_points (&lr);
315
316                                 luabridge::LuaRef doc = lr["doc"];
317                                 if (doc.isString ()) {
318                                         _param_doc[pn] = doc.cast<std::string> ();
319                                 } else {
320                                         _param_doc[pn] = "";
321                                 }
322                                 assert (!(_param_desc[pn].toggled && _param_desc[pn].logarithmic));
323                         }
324                 }
325         }
326
327         _control_data = new float[parameter_count ()];
328         _shadow_data  = new float[parameter_count ()];
329
330         for (uint32_t i = 0; i < parameter_count (); ++i) {
331                 if (parameter_is_input (i)) {
332                         _control_data[i] = _shadow_data[i] = default_value (i);
333                 }
334         }
335
336         // expose ctrl-ports to global lua namespace
337         luabridge::push <float *> (L, _control_data);
338         lua_setglobal (L, "CtrlPorts");
339
340         return false; // no error
341 }
342
343 bool
344 LuaProc::can_support_io_configuration (const ChanCount& in, ChanCount& out, ChanCount* imprecise)
345 {
346         // caller must hold process lock (no concurrent calls to interpreter
347         _output_configs.clear ();
348
349         if (in.n_midi() > 0 && !_has_midi_input && !imprecise) {
350                 return false;
351         }
352
353         lua_State* L = lua.getState ();
354         luabridge::LuaRef ioconfig = luabridge::getGlobal (L, "dsp_ioconfig");
355         if (!ioconfig.isFunction ()) {
356                 return false;
357         }
358
359         luabridge::LuaRef *_iotable = NULL; // can't use reference :(
360         try {
361                 luabridge::LuaRef iotable = ioconfig ();
362                 if (iotable.isTable ()) {
363                         _iotable = new luabridge::LuaRef (iotable);
364                 }
365         } catch (luabridge::LuaException const& e) {
366                 return false;
367         }
368
369         if (!_iotable) {
370                 return false;
371         }
372
373         // now we can reference it.
374         luabridge::LuaRef iotable (*_iotable);
375         delete _iotable;
376
377         if ((iotable).length () < 1) {
378                 return false;
379         }
380
381         const int audio_in = in.n_audio ();
382
383         // preferred setting (provided by plugin_insert)
384         const int preferred_out = out.n_audio ();
385
386         int midi_out = _has_midi_output ? 1 : 0;
387         int audio_out = -1;
388         float penalty = 9999;
389         bool found = false;
390
391 #define FOUNDCFG(nch) {                            \
392   float p = fabsf ((float)(nch) - preferred_out);  \
393   _output_configs.insert (nch);                    \
394   if ((nch) > preferred_out) { p *= 1.1; }         \
395   if (p < penalty) {                               \
396     audio_out = (nch);                             \
397     penalty = p;                                   \
398     found = true;                                  \
399   }                                                \
400 }
401
402 #define ANYTHINGGOES                               \
403   _output_configs.insert (0);
404
405 #define UPTO(nch) {                                \
406   for (int n = 1; n < nch; ++n) {                  \
407     _output_configs.insert (n);                    \
408   }                                                \
409 }
410
411         for (luabridge::Iterator i (iotable); !i.isNil (); ++i) {
412                 luabridge::LuaRef io (i.value ());
413                 if (!io.isTable()) {
414                         continue;
415                 }
416
417                 int possible_in = io["audio_in"].isNumber() ? io["audio_in"] : -1;
418                 int possible_out = io["audio_out"].isNumber() ? io["audio_out"] : -1;
419
420                 // exact match
421                 if ((possible_in == audio_in) && (possible_out == preferred_out)) {
422                         _output_configs.insert (preferred_out);
423                         audio_out = preferred_out;
424                         /* Set penalty so low that this output configuration
425                          * will trump any other one */
426                         penalty = -1;
427                         found = true;
428                 }
429
430                 // "imprecise" matches
431                 if (possible_out == 0) {
432                         if (possible_in == 0) {
433                                 if (_has_midi_output && audio_in == 0) {
434                                         // special case midi filters & generators
435                                         audio_out = 0;
436                                         found = true;
437                                         break;
438                                 }
439                         }
440                         continue;
441                 }
442
443                 if (possible_in == 0) {
444                         /* no inputs, generators & instruments */
445                         if (possible_out == -1) {
446                                 /* any configuration possible, stereo output */
447                                 FOUNDCFG (preferred_out);
448                                 ANYTHINGGOES;
449                         } else if (possible_out == -2) {
450                                 /* invalid, should be (0, -1) */
451                                 FOUNDCFG (preferred_out);
452                                 ANYTHINGGOES;
453                         } else if (possible_out < -2) {
454                                 /* variable number of outputs up to -N, */
455                                 FOUNDCFG (min (-possible_out, preferred_out));
456                                 UPTO (-possible_out);
457                         } else {
458                                 /* exact number of outputs */
459                                 FOUNDCFG (possible_out);
460                         }
461                 }
462
463                 if (possible_in == -1) {
464                         /* wildcard for input */
465                         if (possible_out == -1) {
466                                 /* out must match in */
467                                 FOUNDCFG (audio_in);
468                         } else if (possible_out == -2) {
469                                 /* any configuration possible, pick matching */
470                                 FOUNDCFG (preferred_out);
471                                 ANYTHINGGOES;
472                         } else if (possible_out < -2) {
473                                 /* explicitly variable number of outputs, pick maximum */
474                                 FOUNDCFG (max (-possible_out, preferred_out));
475                                 /* and try min, too, in case the penalty is lower */
476                                 FOUNDCFG (min (-possible_out, preferred_out));
477                                 UPTO (-possible_out)
478                         } else {
479                                 /* exact number of outputs */
480                                 FOUNDCFG (possible_out);
481                         }
482                 }
483
484                 if (possible_in == -2) {
485                         if (possible_out == -1) {
486                                 /* any configuration possible, pick matching */
487                                 FOUNDCFG (preferred_out);
488                                 ANYTHINGGOES;
489                         } else if (possible_out == -2) {
490                                 /* invalid. interpret as (-1, -1) */
491                                 FOUNDCFG (preferred_out);
492                                 ANYTHINGGOES;
493                         } else if (possible_out < -2) {
494                                 /* invalid,  interpret as (<-2, <-2)
495                                  * variable number of outputs up to -N, */
496                                 FOUNDCFG (min (-possible_out, preferred_out));
497                                 UPTO (-possible_out)
498                         } else {
499                                 /* exact number of outputs */
500                                 FOUNDCFG (possible_out);
501                         }
502                 }
503
504                 if (possible_in < -2) {
505                         /* explicit variable number of inputs */
506                         if (audio_in > -possible_in && imprecise != NULL) {
507                                 // hide inputs ports
508                                 imprecise->set (DataType::AUDIO, -possible_in);
509                         }
510
511                         if (audio_in > -possible_in && imprecise == NULL) {
512                                 /* request is too large */
513                         } else if (possible_out == -1) {
514                                 /* any output configuration possible */
515                                 FOUNDCFG (preferred_out);
516                                 ANYTHINGGOES;
517                         } else if (possible_out == -2) {
518                                 /* invalid. interpret as (<-2, -1) */
519                                 FOUNDCFG (preferred_out);
520                                 ANYTHINGGOES;
521                         } else if (possible_out < -2) {
522                                 /* variable number of outputs up to -N, */
523                                 FOUNDCFG (min (-possible_out, preferred_out));
524                                 UPTO (-possible_out)
525                         } else {
526                                 /* exact number of outputs */
527                                 FOUNDCFG (possible_out);
528                         }
529                 }
530
531                 if (possible_in && (possible_in == audio_in)) {
532                         /* exact number of inputs ... must match obviously */
533                         if (possible_out == -1) {
534                                 /* any output configuration possible */
535                                 FOUNDCFG (preferred_out);
536                                 ANYTHINGGOES;
537                         } else if (possible_out == -2) {
538                                 /* invalid. interpret as (>0, -1) */
539                                 FOUNDCFG (preferred_out);
540                                 ANYTHINGGOES;
541                         } else if (possible_out < -2) {
542                                 /* > 0, < -2 is not specified
543                                  * interpret as up to -N */
544                                 FOUNDCFG (min (-possible_out, preferred_out));
545                                 UPTO (-possible_out)
546                         } else {
547                                 /* exact number of outputs */
548                                 FOUNDCFG (possible_out);
549                         }
550                 }
551         }
552
553         if (found && imprecise) {
554                 *imprecise = in;
555         }
556
557         if (!found && imprecise) {
558                 /* try harder */
559                 for (luabridge::Iterator i (iotable); !i.isNil (); ++i) {
560                         luabridge::LuaRef io (i.value ());
561                         if (!io.isTable()) {
562                                 continue;
563                         }
564
565                         int possible_in = io["audio_in"].isNumber() ? io["audio_in"] : -1;
566                         int possible_out = io["audio_out"].isNumber() ? io["audio_out"] : -1;
567
568                         if (possible_out == 0 && possible_in == 0 && _has_midi_output) {
569                                 assert (audio_in > 0); // no input is handled above
570                                 // TODO hide audio input from plugin
571                                 imprecise->set (DataType::AUDIO, 0);
572                                 audio_out = 0;
573                                 found = true;
574                                 continue;
575                         }
576
577                         assert (possible_in > 0); // all other cases will have been matched above
578
579                         imprecise->set (DataType::AUDIO, possible_in);
580                         if (possible_out == -1 || possible_out == -2) {
581                                 FOUNDCFG (2);
582                         } else if (possible_out < -2) {
583                                 /* explicitly variable number of outputs, pick maximum */
584                                 FOUNDCFG (min (-possible_out, preferred_out));
585                         } else {
586                                 /* exact number of outputs */
587                                 FOUNDCFG (possible_out);
588                         }
589                         // ideally we'll also find the closest, best matching
590                         // input configuration with minimal output penalty...
591                 }
592         }
593
594         if (!found) {
595                 return false;
596         }
597
598         if (imprecise) {
599                 imprecise->set (DataType::MIDI, _has_midi_input ? 1 : 0);
600                 _selected_in = *imprecise;
601         } else {
602                 _selected_in = in;
603         }
604
605         out.set (DataType::MIDI, midi_out);
606         out.set (DataType::AUDIO, audio_out);
607         _selected_out = out;
608
609         return true;
610 }
611
612 bool
613 LuaProc::configure_io (ChanCount in, ChanCount out)
614 {
615         in.set (DataType::MIDI, _has_midi_input ? 1 : 0);
616         out.set (DataType::MIDI, _has_midi_output ? 1 : 0);
617
618         _info->n_inputs = _selected_in;
619         _info->n_outputs = _selected_out;
620
621         // configure the DSP if needed
622         if (in != _configured_in || out != _configured_out) {
623                 lua_State* L = lua.getState ();
624                 luabridge::LuaRef lua_dsp_configure = luabridge::getGlobal (L, "dsp_configure");
625                 if (lua_dsp_configure.type () == LUA_TFUNCTION) {
626                         try {
627                                 luabridge::LuaRef io = lua_dsp_configure (&in, &out);
628                                 if (io.isTable ()) {
629                                         ChanCount lin (_selected_in);
630                                         ChanCount lout (_selected_out);
631
632                                         if (io["audio_in"].type() == LUA_TNUMBER) {
633                                                 const int c = io["audio_in"].cast<int> ();
634                                                 if (c >= 0) {
635                                                         lin.set (DataType::AUDIO, c);
636                                                 }
637                                         }
638                                         if (io["audio_out"].type() == LUA_TNUMBER) {
639                                                 const int c = io["audio_out"].cast<int> ();
640                                                 if (c >= 0) {
641                                                         lout.set (DataType::AUDIO, c);
642                                                 }
643                                         }
644                                         if (io["midi_in"].type() == LUA_TNUMBER) {
645                                                 const int c = io["midi_in"].cast<int> ();
646                                                 if (c >= 0) {
647                                                         lin.set (DataType::MIDI, c);
648                                                 }
649                                         }
650                                         if (io["midi_out"].type() == LUA_TNUMBER) {
651                                                 const int c = io["midi_out"].cast<int> ();
652                                                 if (c >= 0) {
653                                                         lout.set (DataType::MIDI, c);
654                                                 }
655                                         }
656                                         _info->n_inputs = lin;
657                                         _info->n_outputs = lout;
658                                 }
659                         } catch (luabridge::LuaException const& e) {
660                                 PBD::error << "LuaException: " << e.what () << "\n";
661 #ifndef NDEBUG
662                                 std::cerr << "LuaException: " << e.what () << "\n";
663 #endif
664                                 return false;
665                         }
666                 }
667         }
668
669         _configured_in = in;
670         _configured_out = out;
671
672         return true;
673 }
674
675 int
676 LuaProc::connect_and_run (BufferSet& bufs,
677                 framepos_t start, framepos_t end, double speed,
678                 ChanMapping in, ChanMapping out,
679                 pframes_t nframes, framecnt_t offset)
680 {
681         if (!_lua_dsp) {
682                 return 0;
683         }
684
685         Plugin::connect_and_run (bufs, start, end, speed, in, out, nframes, offset);
686
687         // This is needed for ARDOUR::Session requests :(
688         if (! SessionEvent::has_per_thread_pool ()) {
689                 char name[64];
690                 snprintf (name, 64, "Proc-%p", this);
691                 pthread_set_name (name);
692                 SessionEvent::create_per_thread_pool (name, 64);
693                 PBD::notify_event_loops_about_thread_creation (pthread_self(), name, 64);
694         }
695
696         uint32_t const n = parameter_count ();
697         for (uint32_t i = 0; i < n; ++i) {
698                 if (parameter_is_control (i) && parameter_is_input (i)) {
699                         _control_data[i] = _shadow_data[i];
700                 }
701         }
702
703 #ifdef WITH_LUAPROC_STATS
704         int64_t t0 = g_get_monotonic_time ();
705 #endif
706
707         try {
708                 if (_lua_does_channelmapping) {
709                         // run the DSP function
710                         (*_lua_dsp)(&bufs, in, out, nframes, offset);
711                 } else {
712                         // map buffers
713                         BufferSet& silent_bufs  = _session.get_silent_buffers (ChanCount (DataType::AUDIO, 1));
714                         BufferSet& scratch_bufs = _session.get_scratch_buffers (ChanCount (DataType::AUDIO, 1));
715
716                         lua_State* L = lua.getState ();
717                         luabridge::LuaRef in_map (luabridge::newTable (L));
718                         luabridge::LuaRef out_map (luabridge::newTable (L));
719
720                         const uint32_t audio_in = _configured_in.n_audio ();
721                         const uint32_t audio_out = _configured_out.n_audio ();
722                         const uint32_t midi_in = _configured_in.n_midi ();
723
724                         for (uint32_t ap = 0; ap < audio_in; ++ap) {
725                                 bool valid;
726                                 const uint32_t buf_index = in.get(DataType::AUDIO, ap, &valid);
727                                 if (valid) {
728                                         in_map[ap + 1] = bufs.get_audio (buf_index).data (offset);
729                                 } else {
730                                         in_map[ap + 1] = silent_bufs.get_audio (0).data (offset);
731                                 }
732                         }
733                         for (uint32_t ap = 0; ap < audio_out; ++ap) {
734                                 bool valid;
735                                 const uint32_t buf_index = out.get(DataType::AUDIO, ap, &valid);
736                                 if (valid) {
737                                         out_map[ap + 1] = bufs.get_audio (buf_index).data (offset);
738                                 } else {
739                                         out_map[ap + 1] = scratch_bufs.get_audio (0).data (offset);
740                                 }
741                         }
742
743                         luabridge::LuaRef lua_midi_src_tbl (luabridge::newTable (L));
744                         int e = 1; // > 1 port, we merge events (unsorted)
745                         for (uint32_t mp = 0; mp < midi_in; ++mp) {
746                                 bool valid;
747                                 const uint32_t idx = in.get(DataType::MIDI, mp, &valid);
748                                 if (valid) {
749                                         for (MidiBuffer::iterator m = bufs.get_midi(idx).begin();
750                                                         m != bufs.get_midi(idx).end(); ++m, ++e) {
751                                                 const Evoral::MIDIEvent<framepos_t> ev(*m, false);
752                                                 luabridge::LuaRef lua_midi_data (luabridge::newTable (L));
753                                                 const uint8_t* data = ev.buffer();
754                                                 for (uint32_t i = 0; i < ev.size(); ++i) {
755                                                         lua_midi_data [i + 1] = data[i];
756                                                 }
757                                                 luabridge::LuaRef lua_midi_event (luabridge::newTable (L));
758                                                 lua_midi_event["time"] = 1 + (*m).time();
759                                                 lua_midi_event["data"] = lua_midi_data;
760                                                 lua_midi_src_tbl[e] = lua_midi_event;
761                                         }
762                                 }
763                         }
764
765                         if (_has_midi_input) {
766                                 // XXX TODO This needs a better solution than global namespace
767                                 luabridge::push (L, lua_midi_src_tbl);
768                                 lua_setglobal (L, "midiin");
769                         }
770
771                         luabridge::LuaRef lua_midi_sink_tbl (luabridge::newTable (L));
772                         if (_has_midi_output) {
773                                 luabridge::push (L, lua_midi_sink_tbl);
774                                 lua_setglobal (L, "midiout");
775                         }
776
777                         // run the DSP function
778                         (*_lua_dsp)(in_map, out_map, nframes);
779
780                         // copy back midi events
781                         if (_has_midi_output && lua_midi_sink_tbl.isTable ()) {
782                                 bool valid;
783                                 const uint32_t idx = out.get(DataType::MIDI, 0, &valid);
784                                 if (valid && bufs.count().n_midi() > idx) {
785                                         MidiBuffer& mbuf = bufs.get_midi(idx);
786                                         mbuf.silence(0, 0);
787                                         for (luabridge::Iterator i (lua_midi_sink_tbl); !i.isNil (); ++i) {
788                                                 if (!i.key ().isNumber ()) { continue; }
789                                                 if (!i.value ()["time"].isNumber ()) { continue; }
790                                                 if (!i.value ()["data"].isTable ()) { continue; }
791                                                 luabridge::LuaRef data_tbl (i.value ()["data"]);
792                                                 framepos_t tme = i.value ()["time"];
793                                                 if (tme < 1 || tme > nframes) { continue; }
794                                                 uint8_t data[64];
795                                                 size_t size = 0;
796                                                 for (luabridge::Iterator di (data_tbl); !di.isNil () && size < sizeof(data); ++di, ++size) {
797                                                         data[size] = di.value ();
798                                                 }
799                                                 if (size > 0 && size < 64) {
800                                                         mbuf.push_back(tme - 1, size, data);
801                                                 }
802                                         }
803
804                                 }
805                         }
806                 }
807         } catch (luabridge::LuaException const& e) {
808                 PBD::error << "LuaException: " << e.what () << "\n";
809 #ifndef NDEBUG
810                 std::cerr << "LuaException: " << e.what () << "\n";
811 #endif
812                 return -1;
813         }
814 #ifdef WITH_LUAPROC_STATS
815         int64_t t1 = g_get_monotonic_time ();
816 #endif
817
818         lua.collect_garbage_step ();
819 #ifdef WITH_LUAPROC_STATS
820         ++_stats_cnt;
821         int64_t t2 = g_get_monotonic_time ();
822         int64_t ela0 = t1 - t0;
823         int64_t ela1 = t2 - t1;
824         if (ela0 > _stats_max[0]) _stats_max[0] = ela0;
825         if (ela1 > _stats_max[1]) _stats_max[1] = ela1;
826         _stats_avg[0] += ela0;
827         _stats_avg[1] += ela1;
828 #endif
829         return 0;
830 }
831
832
833 void
834 LuaProc::add_state (XMLNode* root) const
835 {
836         XMLNode*    child;
837         char        buf[32];
838         LocaleGuard lg;
839
840         gchar* b64 = g_base64_encode ((const guchar*)_script.c_str (), _script.size ());
841         std::string b64s (b64);
842         g_free (b64);
843         XMLNode* script_node = new XMLNode (X_("script"));
844         script_node->add_property (X_("lua"), LUA_VERSION);
845         script_node->add_content (b64s);
846         root->add_child_nocopy (*script_node);
847
848         for (uint32_t i = 0; i < parameter_count(); ++i) {
849                 if (parameter_is_input(i) && parameter_is_control(i)) {
850                         child = new XMLNode("Port");
851                         snprintf(buf, sizeof(buf), "%u", i);
852                         child->add_property("id", std::string(buf));
853                         snprintf(buf, sizeof(buf), "%+f", _shadow_data[i]);
854                         child->add_property("value", std::string(buf));
855                         root->add_child_nocopy(*child);
856                 }
857         }
858 }
859
860 int
861 LuaProc::set_script_from_state (const XMLNode& node)
862 {
863         XMLNode* child;
864         if (node.name () != state_node_name ()) {
865                 return -1;
866         }
867
868         if ((child = node.child (X_("script"))) != 0) {
869                 for (XMLNodeList::const_iterator n = child->children ().begin (); n != child->children ().end (); ++n) {
870                         if (!(*n)->is_content ()) { continue; }
871                         gsize size;
872                         guchar* buf = g_base64_decode ((*n)->content ().c_str (), &size);
873                         _script = std::string ((const char*)buf, size);
874                         g_free (buf);
875                         if (load_script ()) {
876                                 PBD::error << _("Failed to load Lua script from session state.") << endmsg;
877 #ifndef NDEBUG
878                                 std::cerr << "Failed Lua Script: " << _script << std::endl;
879 #endif
880                                 _script = "";
881                         }
882                         break;
883                 }
884         }
885         if (_script.empty ()) {
886                 PBD::error << _("Session State for LuaProcessor did not include a Lua script.") << endmsg;
887                 return -1;
888         }
889         if (!_lua_dsp) {
890                 PBD::error << _("Invalid/incompatible Lua script found for LuaProcessor.") << endmsg;
891                 return -1;
892         }
893         return 0;
894 }
895
896 int
897 LuaProc::set_state (const XMLNode& node, int version)
898 {
899 #ifndef NO_PLUGIN_STATE
900         XMLNodeList nodes;
901         XMLProperty const * prop;
902         XMLNodeConstIterator iter;
903         XMLNode *child;
904         const char *value;
905         const char *port;
906         uint32_t port_id;
907 #endif
908         LocaleGuard lg;
909
910         if (_script.empty ()) {
911                 if (set_script_from_state (node)) {
912                         return -1;
913                 }
914         }
915
916 #ifndef NO_PLUGIN_STATE
917         if (node.name() != state_node_name()) {
918                 error << _("Bad node sent to LuaProc::set_state") << endmsg;
919                 return -1;
920         }
921
922         nodes = node.children ("Port");
923         for (iter = nodes.begin(); iter != nodes.end(); ++iter) {
924                 child = *iter;
925                 if ((prop = child->property("id")) != 0) {
926                         port = prop->value().c_str();
927                 } else {
928                         warning << _("LuaProc: port has no symbol, ignored") << endmsg;
929                         continue;
930                 }
931                 if ((prop = child->property("value")) != 0) {
932                         value = prop->value().c_str();
933                 } else {
934                         warning << _("LuaProc: port has no value, ignored") << endmsg;
935                         continue;
936                 }
937                 sscanf (port, "%" PRIu32, &port_id);
938                 set_parameter (port_id, atof(value));
939         }
940 #endif
941
942         return Plugin::set_state (node, version);
943 }
944
945 uint32_t
946 LuaProc::parameter_count () const
947 {
948         return _ctrl_params.size ();
949 }
950
951 float
952 LuaProc::default_value (uint32_t port)
953 {
954         if (_ctrl_params[port].first) {
955                 assert (0);
956                 return 0;
957         }
958         int lp = _ctrl_params[port].second;
959         return _param_desc[lp].normal;
960 }
961
962 void
963 LuaProc::set_parameter (uint32_t port, float val)
964 {
965         assert (port < parameter_count ());
966         if (get_parameter (port) == val) {
967                 return;
968         }
969         _shadow_data[port] = val;
970         Plugin::set_parameter (port, val);
971 }
972
973 float
974 LuaProc::get_parameter (uint32_t port) const
975 {
976         if (parameter_is_input (port)) {
977                 return _shadow_data[port];
978         } else {
979                 return _control_data[port];
980         }
981 }
982
983 int
984 LuaProc::get_parameter_descriptor (uint32_t port, ParameterDescriptor& desc) const
985 {
986         assert (port <= parameter_count ());
987         int lp = _ctrl_params[port].second;
988         const ParameterDescriptor& d (_param_desc.find(lp)->second);
989
990         desc.lower        = d.lower;
991         desc.upper        = d.upper;
992         desc.normal       = d.normal;
993         desc.toggled      = d.toggled;
994         desc.logarithmic  = d.logarithmic;
995         desc.integer_step = d.integer_step;
996         desc.sr_dependent = d.sr_dependent;
997         desc.enumeration  = d.enumeration;
998         desc.unit         = d.unit;
999         desc.label        = d.label;
1000         desc.scale_points = d.scale_points;
1001
1002         desc.update_steps ();
1003         return 0;
1004 }
1005
1006 std::string
1007 LuaProc::get_parameter_docs (uint32_t port) const {
1008         assert (port <= parameter_count ());
1009         int lp = _ctrl_params[port].second;
1010         return _param_doc.find(lp)->second;
1011 }
1012
1013 uint32_t
1014 LuaProc::nth_parameter (uint32_t port, bool& ok) const
1015 {
1016         if (port < _ctrl_params.size ()) {
1017                 ok = true;
1018                 return port;
1019         }
1020         ok = false;
1021         return 0;
1022 }
1023
1024 bool
1025 LuaProc::parameter_is_input (uint32_t port) const
1026 {
1027         assert (port < _ctrl_params.size ());
1028         return (!_ctrl_params[port].first);
1029 }
1030
1031 bool
1032 LuaProc::parameter_is_output (uint32_t port) const
1033 {
1034         assert (port < _ctrl_params.size ());
1035         return (_ctrl_params[port].first);
1036 }
1037
1038 std::set<Evoral::Parameter>
1039 LuaProc::automatable () const
1040 {
1041         std::set<Evoral::Parameter> automatables;
1042         for (uint32_t i = 0; i < _ctrl_params.size (); ++i) {
1043                 if (parameter_is_input (i)) {
1044                         automatables.insert (automatables.end (), Evoral::Parameter (PluginAutomation, 0, i));
1045                 }
1046         }
1047         return automatables;
1048 }
1049
1050 std::string
1051 LuaProc::describe_parameter (Evoral::Parameter param)
1052 {
1053         if (param.type () == PluginAutomation && param.id () < parameter_count ()) {
1054                 int lp = _ctrl_params[param.id ()].second;
1055                 return _param_desc[lp].label;
1056         }
1057         return "??";
1058 }
1059
1060 void
1061 LuaProc::print_parameter (uint32_t param, char* buf, uint32_t len) const
1062 {
1063         if (buf && len) {
1064                 if (param < parameter_count ()) {
1065                         snprintf (buf, len, "%.3f", get_parameter (param));
1066                 } else {
1067                         strcat (buf, "0");
1068                 }
1069         }
1070 }
1071
1072 boost::shared_ptr<ScalePoints>
1073 LuaProc::parse_scale_points (luabridge::LuaRef* lr)
1074 {
1075         if (!(*lr)["scalepoints"].isTable()) {
1076                 return boost::shared_ptr<ScalePoints> ();
1077         }
1078
1079         int cnt = 0;
1080         boost::shared_ptr<ScalePoints> rv = boost::shared_ptr<ScalePoints>(new ScalePoints());
1081         luabridge::LuaRef scalepoints ((*lr)["scalepoints"]);
1082
1083         for (luabridge::Iterator i (scalepoints); !i.isNil (); ++i) {
1084                 if (!i.key ().isString ())    { continue; }
1085                 if (!i.value ().isNumber ())  { continue; }
1086                 rv->insert(make_pair(i.key ().cast<std::string> (),
1087                                         i.value ().cast<float> ()));
1088                 ++cnt;
1089         }
1090
1091         if (rv->size() > 0) {
1092                 return rv;
1093         }
1094         return boost::shared_ptr<ScalePoints> ();
1095 }
1096
1097 boost::shared_ptr<ScalePoints>
1098 LuaProc::get_scale_points (uint32_t port) const
1099 {
1100         int lp = _ctrl_params[port].second;
1101         return _param_desc.find(lp)->second.scale_points;
1102 }
1103
1104 void
1105 LuaProc::setup_lua_inline_gui (LuaState *lua_gui)
1106 {
1107         lua_State* LG = lua_gui->getState ();
1108         LuaBindings::stddef (LG);
1109         LuaBindings::common (LG);
1110         LuaBindings::dsp (LG);
1111
1112         lua_gui->Print.connect (sigc::mem_fun (*this, &LuaProc::lua_print));
1113         lua_gui->do_command ("function ardour () end");
1114         lua_gui->do_command (_script);
1115
1116         // TODO think: use a weak-pointer here ?
1117         // (the GUI itself uses a shared ptr to this plugin, so we should be good)
1118         luabridge::getGlobalNamespace (LG)
1119                 .beginNamespace ("Ardour")
1120                 .beginClass <LuaProc> ("LuaProc")
1121                 .addFunction ("shmem", &LuaProc::instance_shm)
1122                 .addFunction ("table", &LuaProc::instance_ref)
1123                 .endClass ()
1124                 .endNamespace ();
1125
1126         luabridge::push <LuaProc *> (LG, this);
1127         lua_setglobal (LG, "self");
1128
1129         luabridge::push <float *> (LG, _shadow_data);
1130         lua_setglobal (LG, "CtrlPorts");
1131 }
1132 ////////////////////////////////////////////////////////////////////////////////
1133
1134 #include "ardour/search_paths.h"
1135 #include "sha1.c"
1136
1137 std::string
1138 LuaProc::preset_name_to_uri (const std::string& name) const
1139 {
1140         std::string uri ("urn:lua:");
1141         char hash[41];
1142         Sha1Digest s;
1143         sha1_init (&s);
1144         sha1_write (&s, (const uint8_t *) name.c_str(), name.size ());
1145         sha1_write (&s, (const uint8_t *) _script.c_str(), _script.size ());
1146         sha1_result_hash (&s, hash);
1147         return uri + hash;
1148 }
1149
1150 std::string
1151 LuaProc::presets_file () const
1152 {
1153         return string_compose ("lua-%1", _info->unique_id);
1154 }
1155
1156 XMLTree*
1157 LuaProc::presets_tree () const
1158 {
1159         XMLTree* t = new XMLTree;
1160         std::string p = Glib::build_filename (ARDOUR::user_config_directory (), "presets");
1161
1162         if (!Glib::file_test (p, Glib::FILE_TEST_IS_DIR)) {
1163                 if (g_mkdir_with_parents (p.c_str(), 0755) != 0) {
1164                         error << _("Unable to create LuaProc presets directory") << endmsg;
1165                 };
1166         }
1167
1168         p = Glib::build_filename (p, presets_file ());
1169
1170         if (!Glib::file_test (p, Glib::FILE_TEST_EXISTS)) {
1171                 t->set_root (new XMLNode (X_("LuaPresets")));
1172                 return t;
1173         }
1174
1175         t->set_filename (p);
1176         if (!t->read ()) {
1177                 delete t;
1178                 return 0;
1179         }
1180         return t;
1181 }
1182
1183 bool
1184 LuaProc::load_preset (PresetRecord r)
1185 {
1186         boost::shared_ptr<XMLTree> t (presets_tree ());
1187         if (t == 0) {
1188                 return false;
1189         }
1190
1191         XMLNode* root = t->root ();
1192         for (XMLNodeList::const_iterator i = root->children().begin(); i != root->children().end(); ++i) {
1193                 XMLProperty const * label = (*i)->property (X_("label"));
1194                 assert (label);
1195                 if (label->value() != r.label) {
1196                         continue;
1197                 }
1198
1199                 for (XMLNodeList::const_iterator j = (*i)->children().begin(); j != (*i)->children().end(); ++j) {
1200                         if ((*j)->name() == X_("Parameter")) {
1201                                 XMLProperty const * index = (*j)->property (X_("index"));
1202                                 XMLProperty const * value = (*j)->property (X_("value"));
1203                                 assert (index);
1204                                 assert (value);
1205                                 LocaleGuard lg;
1206                                 set_parameter (atoi (index->value().c_str()), atof (value->value().c_str ()));
1207                         }
1208                 }
1209                 return Plugin::load_preset(r);
1210         }
1211         return false;
1212 }
1213
1214 std::string
1215 LuaProc::do_save_preset (std::string name) {
1216
1217         boost::shared_ptr<XMLTree> t (presets_tree ());
1218         if (t == 0) {
1219                 return "";
1220         }
1221
1222         std::string uri (preset_name_to_uri (name));
1223
1224         XMLNode* p = new XMLNode (X_("Preset"));
1225         p->add_property (X_("uri"), uri);
1226         p->add_property (X_("label"), name);
1227
1228         for (uint32_t i = 0; i < parameter_count(); ++i) {
1229                 if (parameter_is_input (i)) {
1230                         XMLNode* c = new XMLNode (X_("Parameter"));
1231                         c->add_property (X_("index"), string_compose ("%1", i));
1232                         c->add_property (X_("value"), string_compose ("%1", get_parameter (i)));
1233                         p->add_child_nocopy (*c);
1234                 }
1235         }
1236         t->root()->add_child_nocopy (*p);
1237
1238         std::string f = Glib::build_filename (ARDOUR::user_config_directory (), "presets");
1239         f = Glib::build_filename (f, presets_file ());
1240
1241         t->write (f);
1242         return uri;
1243 }
1244
1245 void
1246 LuaProc::do_remove_preset (std::string name)
1247 {
1248         boost::shared_ptr<XMLTree> t (presets_tree ());
1249         if (t == 0) {
1250                 return;
1251         }
1252         t->root()->remove_nodes_and_delete (X_("label"), name);
1253         std::string f = Glib::build_filename (ARDOUR::user_config_directory (), "presets");
1254         f = Glib::build_filename (f, presets_file ());
1255         t->write (f);
1256 }
1257
1258 void
1259 LuaProc::find_presets ()
1260 {
1261         boost::shared_ptr<XMLTree> t (presets_tree ());
1262         if (t) {
1263                 XMLNode* root = t->root ();
1264                 for (XMLNodeList::const_iterator i = root->children().begin(); i != root->children().end(); ++i) {
1265
1266                         XMLProperty const * uri = (*i)->property (X_("uri"));
1267                         XMLProperty const * label = (*i)->property (X_("label"));
1268
1269                         assert (uri);
1270                         assert (label);
1271
1272                         PresetRecord r (uri->value(), label->value(), true);
1273                         _presets.insert (make_pair (r.uri, r));
1274                 }
1275         }
1276 }
1277
1278 ////////////////////////////////////////////////////////////////////////////////
1279
1280 LuaPluginInfo::LuaPluginInfo (LuaScriptInfoPtr lsi) {
1281         if (lsi->type != LuaScriptInfo::DSP) {
1282                 throw failed_constructor ();
1283         }
1284
1285         path = lsi->path;
1286         name = lsi->name;
1287         creator = lsi->author;
1288         category = lsi->category;
1289         unique_id = lsi->unique_id;
1290
1291         n_inputs.set (DataType::AUDIO, 1);
1292         n_outputs.set (DataType::AUDIO, 1);
1293         type = Lua;
1294
1295         _is_instrument = category == "Instrument";
1296 }
1297
1298 PluginPtr
1299 LuaPluginInfo::load (Session& session)
1300 {
1301         std::string script = "";
1302         if (!Glib::file_test (path, Glib::FILE_TEST_EXISTS)) {
1303                 return PluginPtr ();
1304         }
1305
1306         try {
1307                 script = Glib::file_get_contents (path);
1308         } catch (Glib::FileError err) {
1309                 return PluginPtr ();
1310         }
1311
1312         if (script.empty ()) {
1313                 return PluginPtr ();
1314         }
1315
1316         try {
1317                 PluginPtr plugin (new LuaProc (session.engine (), session, script));
1318                 return plugin;
1319         } catch (failed_constructor& err) {
1320                 ;
1321         }
1322         return PluginPtr ();
1323 }
1324
1325 std::vector<Plugin::PresetRecord>
1326 LuaPluginInfo::get_presets (bool /*user_only*/) const
1327 {
1328         std::vector<Plugin::PresetRecord> p;
1329         XMLTree* t = new XMLTree;
1330         std::string pf = Glib::build_filename (ARDOUR::user_config_directory (), "presets", string_compose ("lua-%1", unique_id));
1331         if (Glib::file_test (pf, Glib::FILE_TEST_EXISTS)) {
1332                 t->set_filename (pf);
1333                 if (t->read ()) {
1334                         XMLNode* root = t->root ();
1335                         for (XMLNodeList::const_iterator i = root->children().begin(); i != root->children().end(); ++i) {
1336                                 XMLProperty const * uri = (*i)->property (X_("uri"));
1337                                 XMLProperty const * label = (*i)->property (X_("label"));
1338                                 p.push_back (Plugin::PresetRecord (uri->value(), label->value(), true));
1339                         }
1340                 }
1341         }
1342         delete t;
1343         return p;
1344 }