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