Remove duplicate setters that don't affect the outcome
[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         bool found = false;
382         bool exact_match = false;
383         const int32_t audio_in = in.n_audio ();
384         int32_t midi_out = _has_midi_output ? 1 : 0;
385
386         // preferred setting (provided by plugin_insert)
387         assert (out.n_audio () > 0 || midi_out > 0);
388         const int preferred_out = out.n_audio ();
389
390         for (luabridge::Iterator i (iotable); !i.isNil (); ++i) {
391                 assert (i.value ().type () == LUA_TTABLE);
392                 luabridge::LuaRef io (i.value ());
393
394                 int possible_in = io["audio_in"];
395                 int possible_out = io["audio_out"];
396
397                 // exact match
398                 if ((possible_in == audio_in) && (possible_out == preferred_out)) {
399                         _output_configs.insert (preferred_out);
400                         exact_match = true;
401                         found = true;
402                         break;
403                 }
404         }
405
406         /* now allow potentially "imprecise" matches */
407         int32_t audio_out = -1;
408         float penalty = 9999;
409
410 #define FOUNDCFG(nch) {                            \
411   float p = fabsf ((float)(nch) - preferred_out);  \
412   _output_configs.insert (nch);                    \
413   if ((nch) > preferred_out) { p *= 1.1; }         \
414   if (p < penalty) {                               \
415     audio_out = (nch);                             \
416     penalty = p;                                   \
417     found = true;                                  \
418   }                                                \
419 }
420
421 #define ANYTHINGGOES                               \
422   _output_configs.insert (0);
423
424 #define UPTO(nch) {                                \
425   for (int n = 1; n < nch; ++n) {                  \
426     _output_configs.insert (n);                    \
427   }                                                \
428 }
429
430         for (luabridge::Iterator i (iotable); !i.isNil (); ++i) {
431                 assert (i.value ().type () == LUA_TTABLE);
432                 luabridge::LuaRef io (i.value ());
433
434                 int possible_in = io["audio_in"];
435                 int possible_out = io["audio_out"];
436
437                 if (possible_out == 0) {
438                         if (possible_in == 0) {
439                                 if (_has_midi_output && audio_in == 0) {
440                                         // special case midi filters & generators
441                                         audio_out = 0;
442                                         found = true;
443                                         break;
444                                 }
445                         }
446                         continue;
447                 }
448
449                 if (possible_in == 0) {
450                         /* no inputs, generators & instruments */
451                         if (possible_out == -1) {
452                                 /* any configuration possible, stereo output */
453                                 FOUNDCFG (preferred_out);
454                                 ANYTHINGGOES;
455                         } else if (possible_out == -2) {
456                                 /* invalid, should be (0, -1) */
457                                 FOUNDCFG (preferred_out);
458                                 ANYTHINGGOES;
459                         } else if (possible_out < -2) {
460                                 /* variable number of outputs up to -N, */
461                                 FOUNDCFG (min (-possible_out, preferred_out));
462                                 UPTO (-possible_out);
463                         } else {
464                                 /* exact number of outputs */
465                                 FOUNDCFG (possible_out);
466                         }
467                 }
468
469                 if (possible_in == -1) {
470                         /* wildcard for input */
471                         if (possible_out == -1) {
472                                 /* out must match in */
473                                 FOUNDCFG (audio_in);
474                         } else if (possible_out == -2) {
475                                 /* any configuration possible, pick matching */
476                                 FOUNDCFG (preferred_out);
477                                 ANYTHINGGOES;
478                         } else if (possible_out < -2) {
479                                 /* explicitly variable number of outputs, pick maximum */
480                                 FOUNDCFG (max (-possible_out, preferred_out));
481                                 /* and try min, too, in case the penalty is lower */
482                                 FOUNDCFG (min (-possible_out, preferred_out));
483                                 UPTO (-possible_out)
484                         } else {
485                                 /* exact number of outputs */
486                                 FOUNDCFG (possible_out);
487                         }
488                 }
489
490                 if (possible_in == -2) {
491                         if (possible_out == -1) {
492                                 /* any configuration possible, pick matching */
493                                 FOUNDCFG (preferred_out);
494                                 ANYTHINGGOES;
495                         } else if (possible_out == -2) {
496                                 /* invalid. interpret as (-1, -1) */
497                                 FOUNDCFG (preferred_out);
498                                 ANYTHINGGOES;
499                         } else if (possible_out < -2) {
500                                 /* invalid,  interpret as (<-2, <-2)
501                                  * variable number of outputs up to -N, */
502                                 FOUNDCFG (min (-possible_out, preferred_out));
503                                 UPTO (-possible_out)
504                         } else {
505                                 /* exact number of outputs */
506                                 FOUNDCFG (possible_out);
507                         }
508                 }
509
510                 if (possible_in < -2) {
511                         /* explicit variable number of inputs */
512                         if (audio_in > -possible_in && imprecise != NULL) {
513                                 // hide inputs ports
514                                 imprecise->set (DataType::AUDIO, -possible_in);
515                         }
516
517                         if (audio_in > -possible_in && imprecise == NULL) {
518                                 /* request is too large */
519                         } else if (possible_out == -1) {
520                                 /* any output configuration possible */
521                                 FOUNDCFG (preferred_out);
522                                 ANYTHINGGOES;
523                         } else if (possible_out == -2) {
524                                 /* invalid. interpret as (<-2, -1) */
525                                 FOUNDCFG (preferred_out);
526                                 ANYTHINGGOES;
527                         } else if (possible_out < -2) {
528                                 /* variable number of outputs up to -N, */
529                                 FOUNDCFG (min (-possible_out, preferred_out));
530                                 UPTO (-possible_out)
531                         } else {
532                                 /* exact number of outputs */
533                                 FOUNDCFG (possible_out);
534                         }
535                 }
536
537                 if (possible_in && (possible_in == audio_in)) {
538                         /* exact number of inputs ... must match obviously */
539                         if (possible_out == -1) {
540                                 /* any output configuration possible */
541                                 FOUNDCFG (preferred_out);
542                                 ANYTHINGGOES;
543                         } else if (possible_out == -2) {
544                                 /* invalid. interpret as (>0, -1) */
545                                 FOUNDCFG (preferred_out);
546                                 ANYTHINGGOES;
547                         } else if (possible_out < -2) {
548                                 /* > 0, < -2 is not specified
549                                  * interpret as up to -N */
550                                 FOUNDCFG (min (-possible_out, preferred_out));
551                                 UPTO (-possible_out)
552                         } else {
553                                 /* exact number of outputs */
554                                 FOUNDCFG (possible_out);
555                         }
556                 }
557         }
558
559         if (found && imprecise) {
560                 *imprecise = in;
561         }
562
563         if (!found && imprecise) {
564                 /* try harder */
565                 for (luabridge::Iterator i (iotable); !i.isNil (); ++i) {
566                         assert (i.value ().type () == LUA_TTABLE);
567                         luabridge::LuaRef io (i.value ());
568
569                         int possible_in = io["audio_in"];
570                         int possible_out = io["audio_out"];
571
572                         if (possible_out == 0 && possible_in == 0 && _has_midi_output) {
573                                 assert (audio_in > 0); // no input is handled above
574                                 // TODO hide audio input from plugin
575                                 imprecise->set (DataType::AUDIO, 0);
576                                 audio_out = 0;
577                                 found = true;
578                                 continue;
579                         }
580
581                         assert (possible_in > 0); // all other cases will have been matched above
582                         assert (possible_out !=0 || possible_in !=0); // already handled above
583
584                         imprecise->set (DataType::AUDIO, possible_in);
585                         if (possible_out == -1 || possible_out == -2) {
586                                 FOUNDCFG (2);
587                         } else if (possible_out < -2) {
588                                 /* explicitly variable number of outputs, pick maximum */
589                                 FOUNDCFG (min (-possible_out, preferred_out));
590                         } else {
591                                 /* exact number of outputs */
592                                 FOUNDCFG (possible_out);
593                         }
594                         // ideally we'll also find the closest, best matching
595                         // input configuration with minimal output penalty...
596                 }
597         }
598
599         if (!found) {
600                 return false;
601         }
602
603         if (imprecise) {
604                 imprecise->set (DataType::MIDI, _has_midi_input ? 1 : 0);
605                 _selected_in = *imprecise;
606         } else {
607                 _selected_in = in;
608         }
609
610         if (exact_match) {
611                 out.set (DataType::MIDI, midi_out);
612                 out.set (DataType::AUDIO, preferred_out);
613         } else {
614                 out.set (DataType::MIDI, midi_out);
615                 out.set (DataType::AUDIO, audio_out);
616         }
617         _selected_out = out;
618
619         return true;
620 }
621
622 bool
623 LuaProc::configure_io (ChanCount in, ChanCount out)
624 {
625         in.set (DataType::MIDI, _has_midi_input ? 1 : 0);
626         out.set (DataType::MIDI, _has_midi_output ? 1 : 0);
627
628         _info->n_inputs = _selected_in;
629         _info->n_outputs = _selected_out;
630
631         // configure the DSP if needed
632         if (in != _configured_in || out != _configured_out) {
633                 lua_State* L = lua.getState ();
634                 luabridge::LuaRef lua_dsp_configure = luabridge::getGlobal (L, "dsp_configure");
635                 if (lua_dsp_configure.type () == LUA_TFUNCTION) {
636                         try {
637                                 luabridge::LuaRef io = lua_dsp_configure (&in, &out);
638                                 if (io.isTable ()) {
639                                         ChanCount lin (_selected_in);
640                                         ChanCount lout (_selected_out);
641
642                                         if (io["audio_in"].type() == LUA_TNUMBER) {
643                                                 const int c = io["audio_in"].cast<int> ();
644                                                 if (c >= 0) {
645                                                         lin.set (DataType::AUDIO, c);
646                                                 }
647                                         }
648                                         if (io["audio_out"].type() == LUA_TNUMBER) {
649                                                 const int c = io["audio_out"].cast<int> ();
650                                                 if (c >= 0) {
651                                                         lout.set (DataType::AUDIO, c);
652                                                 }
653                                         }
654                                         if (io["midi_in"].type() == LUA_TNUMBER) {
655                                                 const int c = io["midi_in"].cast<int> ();
656                                                 if (c >= 0) {
657                                                         lin.set (DataType::MIDI, c);
658                                                 }
659                                         }
660                                         if (io["midi_out"].type() == LUA_TNUMBER) {
661                                                 const int c = io["midi_out"].cast<int> ();
662                                                 if (c >= 0) {
663                                                         lout.set (DataType::MIDI, c);
664                                                 }
665                                         }
666                                         _info->n_inputs = lin;
667                                         _info->n_outputs = lout;
668                                 }
669                         } catch (luabridge::LuaException const& e) {
670                                 PBD::error << "LuaException: " << e.what () << "\n";
671 #ifndef NDEBUG
672                                 std::cerr << "LuaException: " << e.what () << "\n";
673 #endif
674                                 return false;
675                         }
676                 }
677         }
678
679         _configured_in = in;
680         _configured_out = out;
681
682         return true;
683 }
684
685 int
686 LuaProc::connect_and_run (BufferSet& bufs,
687                 framepos_t start, framepos_t end, double speed,
688                 ChanMapping in, ChanMapping out,
689                 pframes_t nframes, framecnt_t offset)
690 {
691         if (!_lua_dsp) {
692                 return 0;
693         }
694
695         Plugin::connect_and_run (bufs, start, end, speed, in, out, nframes, offset);
696
697         // This is needed for ARDOUR::Session requests :(
698         if (! SessionEvent::has_per_thread_pool ()) {
699                 char name[64];
700                 snprintf (name, 64, "Proc-%p", this);
701                 pthread_set_name (name);
702                 SessionEvent::create_per_thread_pool (name, 64);
703                 PBD::notify_event_loops_about_thread_creation (pthread_self(), name, 64);
704         }
705
706         uint32_t const n = parameter_count ();
707         for (uint32_t i = 0; i < n; ++i) {
708                 if (parameter_is_control (i) && parameter_is_input (i)) {
709                         _control_data[i] = _shadow_data[i];
710                 }
711         }
712
713 #ifdef WITH_LUAPROC_STATS
714         int64_t t0 = g_get_monotonic_time ();
715 #endif
716
717         try {
718                 if (_lua_does_channelmapping) {
719                         // run the DSP function
720                         (*_lua_dsp)(&bufs, in, out, nframes, offset);
721                 } else {
722                         // map buffers
723                         BufferSet& silent_bufs  = _session.get_silent_buffers (ChanCount (DataType::AUDIO, 1));
724                         BufferSet& scratch_bufs = _session.get_scratch_buffers (ChanCount (DataType::AUDIO, 1));
725
726                         lua_State* L = lua.getState ();
727                         luabridge::LuaRef in_map (luabridge::newTable (L));
728                         luabridge::LuaRef out_map (luabridge::newTable (L));
729
730                         const uint32_t audio_in = _configured_in.n_audio ();
731                         const uint32_t audio_out = _configured_out.n_audio ();
732                         const uint32_t midi_in = _configured_in.n_midi ();
733
734                         for (uint32_t ap = 0; ap < audio_in; ++ap) {
735                                 bool valid;
736                                 const uint32_t buf_index = in.get(DataType::AUDIO, ap, &valid);
737                                 if (valid) {
738                                         in_map[ap + 1] = bufs.get_audio (buf_index).data (offset);
739                                 } else {
740                                         in_map[ap + 1] = silent_bufs.get_audio (0).data (offset);
741                                 }
742                         }
743                         for (uint32_t ap = 0; ap < audio_out; ++ap) {
744                                 bool valid;
745                                 const uint32_t buf_index = out.get(DataType::AUDIO, ap, &valid);
746                                 if (valid) {
747                                         out_map[ap + 1] = bufs.get_audio (buf_index).data (offset);
748                                 } else {
749                                         out_map[ap + 1] = scratch_bufs.get_audio (0).data (offset);
750                                 }
751                         }
752
753                         luabridge::LuaRef lua_midi_src_tbl (luabridge::newTable (L));
754                         int e = 1; // > 1 port, we merge events (unsorted)
755                         for (uint32_t mp = 0; mp < midi_in; ++mp) {
756                                 bool valid;
757                                 const uint32_t idx = in.get(DataType::MIDI, mp, &valid);
758                                 if (valid) {
759                                         for (MidiBuffer::iterator m = bufs.get_midi(idx).begin();
760                                                         m != bufs.get_midi(idx).end(); ++m, ++e) {
761                                                 const Evoral::MIDIEvent<framepos_t> ev(*m, false);
762                                                 luabridge::LuaRef lua_midi_data (luabridge::newTable (L));
763                                                 const uint8_t* data = ev.buffer();
764                                                 for (uint32_t i = 0; i < ev.size(); ++i) {
765                                                         lua_midi_data [i + 1] = data[i];
766                                                 }
767                                                 luabridge::LuaRef lua_midi_event (luabridge::newTable (L));
768                                                 lua_midi_event["time"] = 1 + (*m).time();
769                                                 lua_midi_event["data"] = lua_midi_data;
770                                                 lua_midi_src_tbl[e] = lua_midi_event;
771                                         }
772                                 }
773                         }
774
775                         if (_has_midi_input) {
776                                 // XXX TODO This needs a better solution than global namespace
777                                 luabridge::push (L, lua_midi_src_tbl);
778                                 lua_setglobal (L, "midiin");
779                         }
780
781                         luabridge::LuaRef lua_midi_sink_tbl (luabridge::newTable (L));
782                         if (_has_midi_output) {
783                                 luabridge::push (L, lua_midi_sink_tbl);
784                                 lua_setglobal (L, "midiout");
785                         }
786
787                         // run the DSP function
788                         (*_lua_dsp)(in_map, out_map, nframes);
789
790                         // copy back midi events
791                         if (_has_midi_output && lua_midi_sink_tbl.isTable ()) {
792                                 bool valid;
793                                 const uint32_t idx = out.get(DataType::MIDI, 0, &valid);
794                                 if (valid && bufs.count().n_midi() > idx) {
795                                         MidiBuffer& mbuf = bufs.get_midi(idx);
796                                         mbuf.silence(0, 0);
797                                         for (luabridge::Iterator i (lua_midi_sink_tbl); !i.isNil (); ++i) {
798                                                 if (!i.key ().isNumber ()) { continue; }
799                                                 if (!i.value ()["time"].isNumber ()) { continue; }
800                                                 if (!i.value ()["data"].isTable ()) { continue; }
801                                                 luabridge::LuaRef data_tbl (i.value ()["data"]);
802                                                 framepos_t tme = i.value ()["time"];
803                                                 if (tme < 1 || tme > nframes) { continue; }
804                                                 uint8_t data[64];
805                                                 size_t size = 0;
806                                                 for (luabridge::Iterator di (data_tbl); !di.isNil () && size < sizeof(data); ++di, ++size) {
807                                                         data[size] = di.value ();
808                                                 }
809                                                 if (size > 0 && size < 64) {
810                                                         mbuf.push_back(tme - 1, size, data);
811                                                 }
812                                         }
813
814                                 }
815                         }
816                 }
817         } catch (luabridge::LuaException const& e) {
818                 PBD::error << "LuaException: " << e.what () << "\n";
819 #ifndef NDEBUG
820                 std::cerr << "LuaException: " << e.what () << "\n";
821 #endif
822                 return -1;
823         }
824 #ifdef WITH_LUAPROC_STATS
825         int64_t t1 = g_get_monotonic_time ();
826 #endif
827
828         lua.collect_garbage_step ();
829 #ifdef WITH_LUAPROC_STATS
830         ++_stats_cnt;
831         int64_t t2 = g_get_monotonic_time ();
832         int64_t ela0 = t1 - t0;
833         int64_t ela1 = t2 - t1;
834         if (ela0 > _stats_max[0]) _stats_max[0] = ela0;
835         if (ela1 > _stats_max[1]) _stats_max[1] = ela1;
836         _stats_avg[0] += ela0;
837         _stats_avg[1] += ela1;
838 #endif
839         return 0;
840 }
841
842
843 void
844 LuaProc::add_state (XMLNode* root) const
845 {
846         XMLNode*    child;
847         char        buf[32];
848         LocaleGuard lg;
849
850         gchar* b64 = g_base64_encode ((const guchar*)_script.c_str (), _script.size ());
851         std::string b64s (b64);
852         g_free (b64);
853         XMLNode* script_node = new XMLNode (X_("script"));
854         script_node->add_property (X_("lua"), LUA_VERSION);
855         script_node->add_content (b64s);
856         root->add_child_nocopy (*script_node);
857
858         for (uint32_t i = 0; i < parameter_count(); ++i) {
859                 if (parameter_is_input(i) && parameter_is_control(i)) {
860                         child = new XMLNode("Port");
861                         snprintf(buf, sizeof(buf), "%u", i);
862                         child->add_property("id", std::string(buf));
863                         snprintf(buf, sizeof(buf), "%+f", _shadow_data[i]);
864                         child->add_property("value", std::string(buf));
865                         root->add_child_nocopy(*child);
866                 }
867         }
868 }
869
870 int
871 LuaProc::set_script_from_state (const XMLNode& node)
872 {
873         XMLNode* child;
874         if (node.name () != state_node_name ()) {
875                 return -1;
876         }
877
878         if ((child = node.child (X_("script"))) != 0) {
879                 for (XMLNodeList::const_iterator n = child->children ().begin (); n != child->children ().end (); ++n) {
880                         if (!(*n)->is_content ()) { continue; }
881                         gsize size;
882                         guchar* buf = g_base64_decode ((*n)->content ().c_str (), &size);
883                         _script = std::string ((const char*)buf, size);
884                         g_free (buf);
885                         if (load_script ()) {
886                                 PBD::error << _("Failed to load Lua script from session state.") << endmsg;
887 #ifndef NDEBUG
888                                 std::cerr << "Failed Lua Script: " << _script << std::endl;
889 #endif
890                                 _script = "";
891                         }
892                         break;
893                 }
894         }
895         if (_script.empty ()) {
896                 PBD::error << _("Session State for LuaProcessor did not include a Lua script.") << endmsg;
897                 return -1;
898         }
899         if (!_lua_dsp) {
900                 PBD::error << _("Invalid/incompatible Lua script found for LuaProcessor.") << endmsg;
901                 return -1;
902         }
903         return 0;
904 }
905
906 int
907 LuaProc::set_state (const XMLNode& node, int version)
908 {
909 #ifndef NO_PLUGIN_STATE
910         XMLNodeList nodes;
911         XMLProperty const * prop;
912         XMLNodeConstIterator iter;
913         XMLNode *child;
914         const char *value;
915         const char *port;
916         uint32_t port_id;
917 #endif
918         LocaleGuard lg;
919
920         if (_script.empty ()) {
921                 if (set_script_from_state (node)) {
922                         return -1;
923                 }
924         }
925
926 #ifndef NO_PLUGIN_STATE
927         if (node.name() != state_node_name()) {
928                 error << _("Bad node sent to LuaProc::set_state") << endmsg;
929                 return -1;
930         }
931
932         nodes = node.children ("Port");
933         for (iter = nodes.begin(); iter != nodes.end(); ++iter) {
934                 child = *iter;
935                 if ((prop = child->property("id")) != 0) {
936                         port = prop->value().c_str();
937                 } else {
938                         warning << _("LuaProc: port has no symbol, ignored") << endmsg;
939                         continue;
940                 }
941                 if ((prop = child->property("value")) != 0) {
942                         value = prop->value().c_str();
943                 } else {
944                         warning << _("LuaProc: port has no value, ignored") << endmsg;
945                         continue;
946                 }
947                 sscanf (port, "%" PRIu32, &port_id);
948                 set_parameter (port_id, atof(value));
949         }
950 #endif
951
952         return Plugin::set_state (node, version);
953 }
954
955 uint32_t
956 LuaProc::parameter_count () const
957 {
958         return _ctrl_params.size ();
959 }
960
961 float
962 LuaProc::default_value (uint32_t port)
963 {
964         if (_ctrl_params[port].first) {
965                 assert (0);
966                 return 0;
967         }
968         int lp = _ctrl_params[port].second;
969         return _param_desc[lp].normal;
970 }
971
972 void
973 LuaProc::set_parameter (uint32_t port, float val)
974 {
975         assert (port < parameter_count ());
976         if (get_parameter (port) == val) {
977                 return;
978         }
979         _shadow_data[port] = val;
980         Plugin::set_parameter (port, val);
981 }
982
983 float
984 LuaProc::get_parameter (uint32_t port) const
985 {
986         if (parameter_is_input (port)) {
987                 return _shadow_data[port];
988         } else {
989                 return _control_data[port];
990         }
991 }
992
993 int
994 LuaProc::get_parameter_descriptor (uint32_t port, ParameterDescriptor& desc) const
995 {
996         assert (port <= parameter_count ());
997         int lp = _ctrl_params[port].second;
998         const ParameterDescriptor& d (_param_desc.find(lp)->second);
999
1000         desc.lower        = d.lower;
1001         desc.upper        = d.upper;
1002         desc.normal       = d.normal;
1003         desc.toggled      = d.toggled;
1004         desc.logarithmic  = d.logarithmic;
1005         desc.integer_step = d.integer_step;
1006         desc.sr_dependent = d.sr_dependent;
1007         desc.enumeration  = d.enumeration;
1008         desc.unit         = d.unit;
1009         desc.label        = d.label;
1010         desc.scale_points = d.scale_points;
1011
1012         desc.update_steps ();
1013         return 0;
1014 }
1015
1016 std::string
1017 LuaProc::get_parameter_docs (uint32_t port) const {
1018         assert (port <= parameter_count ());
1019         int lp = _ctrl_params[port].second;
1020         return _param_doc.find(lp)->second;
1021 }
1022
1023 uint32_t
1024 LuaProc::nth_parameter (uint32_t port, bool& ok) const
1025 {
1026         if (port < _ctrl_params.size ()) {
1027                 ok = true;
1028                 return port;
1029         }
1030         ok = false;
1031         return 0;
1032 }
1033
1034 bool
1035 LuaProc::parameter_is_input (uint32_t port) const
1036 {
1037         assert (port < _ctrl_params.size ());
1038         return (!_ctrl_params[port].first);
1039 }
1040
1041 bool
1042 LuaProc::parameter_is_output (uint32_t port) const
1043 {
1044         assert (port < _ctrl_params.size ());
1045         return (_ctrl_params[port].first);
1046 }
1047
1048 std::set<Evoral::Parameter>
1049 LuaProc::automatable () const
1050 {
1051         std::set<Evoral::Parameter> automatables;
1052         for (uint32_t i = 0; i < _ctrl_params.size (); ++i) {
1053                 if (parameter_is_input (i)) {
1054                         automatables.insert (automatables.end (), Evoral::Parameter (PluginAutomation, 0, i));
1055                 }
1056         }
1057         return automatables;
1058 }
1059
1060 std::string
1061 LuaProc::describe_parameter (Evoral::Parameter param)
1062 {
1063         if (param.type () == PluginAutomation && param.id () < parameter_count ()) {
1064                 int lp = _ctrl_params[param.id ()].second;
1065                 return _param_desc[lp].label;
1066         }
1067         return "??";
1068 }
1069
1070 void
1071 LuaProc::print_parameter (uint32_t param, char* buf, uint32_t len) const
1072 {
1073         if (buf && len) {
1074                 if (param < parameter_count ()) {
1075                         snprintf (buf, len, "%.3f", get_parameter (param));
1076                 } else {
1077                         strcat (buf, "0");
1078                 }
1079         }
1080 }
1081
1082 boost::shared_ptr<ScalePoints>
1083 LuaProc::parse_scale_points (luabridge::LuaRef* lr)
1084 {
1085         if (!(*lr)["scalepoints"].isTable()) {
1086                 return boost::shared_ptr<ScalePoints> ();
1087         }
1088
1089         int cnt = 0;
1090         boost::shared_ptr<ScalePoints> rv = boost::shared_ptr<ScalePoints>(new ScalePoints());
1091         luabridge::LuaRef scalepoints ((*lr)["scalepoints"]);
1092
1093         for (luabridge::Iterator i (scalepoints); !i.isNil (); ++i) {
1094                 if (!i.key ().isString ())    { continue; }
1095                 if (!i.value ().isNumber ())  { continue; }
1096                 rv->insert(make_pair(i.key ().cast<std::string> (),
1097                                         i.value ().cast<float> ()));
1098                 ++cnt;
1099         }
1100
1101         if (rv->size() > 0) {
1102                 return rv;
1103         }
1104         return boost::shared_ptr<ScalePoints> ();
1105 }
1106
1107 boost::shared_ptr<ScalePoints>
1108 LuaProc::get_scale_points (uint32_t port) const
1109 {
1110         int lp = _ctrl_params[port].second;
1111         return _param_desc.find(lp)->second.scale_points;
1112 }
1113
1114 void
1115 LuaProc::setup_lua_inline_gui (LuaState *lua_gui)
1116 {
1117         lua_State* LG = lua_gui->getState ();
1118         LuaBindings::stddef (LG);
1119         LuaBindings::common (LG);
1120         LuaBindings::dsp (LG);
1121
1122         lua_gui->Print.connect (sigc::mem_fun (*this, &LuaProc::lua_print));
1123         lua_gui->do_command ("function ardour () end");
1124         lua_gui->do_command (_script);
1125
1126         // TODO think: use a weak-pointer here ?
1127         // (the GUI itself uses a shared ptr to this plugin, so we should be good)
1128         luabridge::getGlobalNamespace (LG)
1129                 .beginNamespace ("Ardour")
1130                 .beginClass <LuaProc> ("LuaProc")
1131                 .addFunction ("shmem", &LuaProc::instance_shm)
1132                 .addFunction ("table", &LuaProc::instance_ref)
1133                 .endClass ()
1134                 .endNamespace ();
1135
1136         luabridge::push <LuaProc *> (LG, this);
1137         lua_setglobal (LG, "self");
1138
1139         luabridge::push <float *> (LG, _shadow_data);
1140         lua_setglobal (LG, "CtrlPorts");
1141 }
1142 ////////////////////////////////////////////////////////////////////////////////
1143
1144 #include "ardour/search_paths.h"
1145 #include "sha1.c"
1146
1147 std::string
1148 LuaProc::preset_name_to_uri (const std::string& name) const
1149 {
1150         std::string uri ("urn:lua:");
1151         char hash[41];
1152         Sha1Digest s;
1153         sha1_init (&s);
1154         sha1_write (&s, (const uint8_t *) name.c_str(), name.size ());
1155         sha1_write (&s, (const uint8_t *) _script.c_str(), _script.size ());
1156         sha1_result_hash (&s, hash);
1157         return uri + hash;
1158 }
1159
1160 std::string
1161 LuaProc::presets_file () const
1162 {
1163         return string_compose ("lua-%1", _info->unique_id);
1164 }
1165
1166 XMLTree*
1167 LuaProc::presets_tree () const
1168 {
1169         XMLTree* t = new XMLTree;
1170         std::string p = Glib::build_filename (ARDOUR::user_config_directory (), "presets");
1171
1172         if (!Glib::file_test (p, Glib::FILE_TEST_IS_DIR)) {
1173                 if (g_mkdir_with_parents (p.c_str(), 0755) != 0) {
1174                         error << _("Unable to create LuaProc presets directory") << endmsg;
1175                 };
1176         }
1177
1178         p = Glib::build_filename (p, presets_file ());
1179
1180         if (!Glib::file_test (p, Glib::FILE_TEST_EXISTS)) {
1181                 t->set_root (new XMLNode (X_("LuaPresets")));
1182                 return t;
1183         }
1184
1185         t->set_filename (p);
1186         if (!t->read ()) {
1187                 delete t;
1188                 return 0;
1189         }
1190         return t;
1191 }
1192
1193 bool
1194 LuaProc::load_preset (PresetRecord r)
1195 {
1196         boost::shared_ptr<XMLTree> t (presets_tree ());
1197         if (t == 0) {
1198                 return false;
1199         }
1200
1201         XMLNode* root = t->root ();
1202         for (XMLNodeList::const_iterator i = root->children().begin(); i != root->children().end(); ++i) {
1203                 XMLProperty const * label = (*i)->property (X_("label"));
1204                 assert (label);
1205                 if (label->value() != r.label) {
1206                         continue;
1207                 }
1208
1209                 for (XMLNodeList::const_iterator j = (*i)->children().begin(); j != (*i)->children().end(); ++j) {
1210                         if ((*j)->name() == X_("Parameter")) {
1211                                 XMLProperty const * index = (*j)->property (X_("index"));
1212                                 XMLProperty const * value = (*j)->property (X_("value"));
1213                                 assert (index);
1214                                 assert (value);
1215                                 LocaleGuard lg;
1216                                 set_parameter (atoi (index->value().c_str()), atof (value->value().c_str ()));
1217                         }
1218                 }
1219                 return Plugin::load_preset(r);
1220         }
1221         return false;
1222 }
1223
1224 std::string
1225 LuaProc::do_save_preset (std::string name) {
1226
1227         boost::shared_ptr<XMLTree> t (presets_tree ());
1228         if (t == 0) {
1229                 return "";
1230         }
1231
1232         std::string uri (preset_name_to_uri (name));
1233
1234         XMLNode* p = new XMLNode (X_("Preset"));
1235         p->add_property (X_("uri"), uri);
1236         p->add_property (X_("label"), name);
1237
1238         for (uint32_t i = 0; i < parameter_count(); ++i) {
1239                 if (parameter_is_input (i)) {
1240                         XMLNode* c = new XMLNode (X_("Parameter"));
1241                         c->add_property (X_("index"), string_compose ("%1", i));
1242                         c->add_property (X_("value"), string_compose ("%1", get_parameter (i)));
1243                         p->add_child_nocopy (*c);
1244                 }
1245         }
1246         t->root()->add_child_nocopy (*p);
1247
1248         std::string f = Glib::build_filename (ARDOUR::user_config_directory (), "presets");
1249         f = Glib::build_filename (f, presets_file ());
1250
1251         t->write (f);
1252         return uri;
1253 }
1254
1255 void
1256 LuaProc::do_remove_preset (std::string name)
1257 {
1258         boost::shared_ptr<XMLTree> t (presets_tree ());
1259         if (t == 0) {
1260                 return;
1261         }
1262         t->root()->remove_nodes_and_delete (X_("label"), name);
1263         std::string f = Glib::build_filename (ARDOUR::user_config_directory (), "presets");
1264         f = Glib::build_filename (f, presets_file ());
1265         t->write (f);
1266 }
1267
1268 void
1269 LuaProc::find_presets ()
1270 {
1271         boost::shared_ptr<XMLTree> t (presets_tree ());
1272         if (t) {
1273                 XMLNode* root = t->root ();
1274                 for (XMLNodeList::const_iterator i = root->children().begin(); i != root->children().end(); ++i) {
1275
1276                         XMLProperty const * uri = (*i)->property (X_("uri"));
1277                         XMLProperty const * label = (*i)->property (X_("label"));
1278
1279                         assert (uri);
1280                         assert (label);
1281
1282                         PresetRecord r (uri->value(), label->value(), true);
1283                         _presets.insert (make_pair (r.uri, r));
1284                 }
1285         }
1286 }
1287
1288 ////////////////////////////////////////////////////////////////////////////////
1289
1290 LuaPluginInfo::LuaPluginInfo (LuaScriptInfoPtr lsi) {
1291         if (lsi->type != LuaScriptInfo::DSP) {
1292                 throw failed_constructor ();
1293         }
1294
1295         path = lsi->path;
1296         name = lsi->name;
1297         creator = lsi->author;
1298         category = lsi->category;
1299         unique_id = lsi->unique_id;
1300
1301         n_inputs.set (DataType::AUDIO, 1);
1302         n_outputs.set (DataType::AUDIO, 1);
1303         type = Lua;
1304
1305         _is_instrument = category == "Instrument";
1306 }
1307
1308 PluginPtr
1309 LuaPluginInfo::load (Session& session)
1310 {
1311         std::string script = "";
1312         if (!Glib::file_test (path, Glib::FILE_TEST_EXISTS)) {
1313                 return PluginPtr ();
1314         }
1315
1316         try {
1317                 script = Glib::file_get_contents (path);
1318         } catch (Glib::FileError err) {
1319                 return PluginPtr ();
1320         }
1321
1322         if (script.empty ()) {
1323                 return PluginPtr ();
1324         }
1325
1326         try {
1327                 PluginPtr plugin (new LuaProc (session.engine (), session, script));
1328                 return plugin;
1329         } catch (failed_constructor& err) {
1330                 ;
1331         }
1332         return PluginPtr ();
1333 }
1334
1335 std::vector<Plugin::PresetRecord>
1336 LuaPluginInfo::get_presets (bool /*user_only*/) const
1337 {
1338         std::vector<Plugin::PresetRecord> p;
1339         XMLTree* t = new XMLTree;
1340         std::string pf = Glib::build_filename (ARDOUR::user_config_directory (), "presets", string_compose ("lua-%1", unique_id));
1341         if (Glib::file_test (pf, Glib::FILE_TEST_EXISTS)) {
1342                 t->set_filename (pf);
1343                 if (t->read ()) {
1344                         XMLNode* root = t->root ();
1345                         for (XMLNodeList::const_iterator i = root->children().begin(); i != root->children().end(); ++i) {
1346                                 XMLProperty const * uri = (*i)->property (X_("uri"));
1347                                 XMLProperty const * label = (*i)->property (X_("label"));
1348                                 p.push_back (Plugin::PresetRecord (uri->value(), label->value(), true));
1349                         }
1350                 }
1351         }
1352         delete t;
1353         return p;
1354 }