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