Monitor new signal to rebuild sendlist
[ardour.git] / gtk2_ardour / luainstance.cc
1 /*
2  * Copyright (C) 2016-2019 Paul Davis <paul@linuxaudiosystems.com>
3  * Copyright (C) 2016-2019 Robin Gareus <robin@gareus.org>
4  * Copyright (C) 2016 Tim Mayberry <mojofunk@gmail.com>
5  * Copyright (C) 2017-2018 Ben Loftis <ben@harrisonconsoles.com>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #include <cairomm/context.h>
23 #include <cairomm/surface.h>
24 #include <pango/pangocairo.h>
25
26 #include "pbd/file_utils.h"
27 #include "pbd/strsplit.h"
28
29 #include "gtkmm2ext/bindings.h"
30 #include "gtkmm2ext/gui_thread.h"
31
32 #include "ardour/audioengine.h"
33 #include "ardour/disk_reader.h"
34 #include "ardour/disk_writer.h"
35 #include "ardour/filesystem_paths.h"
36 #include "ardour/plugin_manager.h"
37 #include "ardour/route.h"
38 #include "ardour/session.h"
39 #include "ardour/system_exec.h"
40
41 #include "LuaBridge/LuaBridge.h"
42
43 #include "ardour_http.h"
44 #include "ardour_ui.h"
45 #include "public_editor.h"
46 #include "region_selection.h"
47 #include "luadialog.h"
48 #include "luainstance.h"
49 #include "luasignal.h"
50 #include "marker.h"
51 #include "mixer_ui.h"
52 #include "region_view.h"
53 #include "processor_box.h"
54 #include "time_axis_view.h"
55 #include "time_axis_view_item.h"
56 #include "selection.h"
57 #include "script_selector.h"
58 #include "timers.h"
59 #include "utils_videotl.h"
60
61 #include "pbd/i18n.h"
62
63 static const char* ui_scripts_file_name = "ui_scripts";
64
65 namespace LuaCairo {
66 /** wrap RefPtr< Cairo::ImageSurface >
67  *
68  * Image surfaces provide the ability to render to memory buffers either
69  * allocated by cairo or by the calling code. The supported image formats are
70  * those defined in Cairo::Format.
71  */
72 class ImageSurface {
73         public:
74                 /**
75                  * Creates an image surface of the specified format and dimensions. Initially
76                  * the surface contents are all 0. (Specifically, within each pixel, each
77                  * color or alpha channel belonging to format will be 0. The contents of bits
78                  * within a pixel, but not belonging to the given format are undefined).
79                  *
80                  * @param format  format of pixels in the surface to create
81                  * @param width   width of the surface, in pixels
82                  * @param height  height of the surface, in pixels
83                  */
84                 ImageSurface (Cairo::Format format, int width, int height)
85                         : _surface (Cairo::ImageSurface::create (format, width, height))
86                         , _ctx (Cairo::Context::create (_surface))
87                         , ctx (_ctx->cobj ()) {}
88
89                 ~ImageSurface () {}
90
91                 /**
92                  * Set this surface as source for another context.
93                  * This allows to draw this surface
94                  */
95                 void set_as_source (Cairo::Context* c, int x, int y) {
96                         _surface->flush ();
97                         c->set_source (_surface, x, y);
98                 }
99
100                 /**
101                  * Returns a context object to perform operations on the surface
102                  */
103                 Cairo::Context* context () {
104                         return (Cairo::Context *)&ctx;
105                 }
106
107                 /**
108                  * Returns the stride of the image surface in bytes (or 0 if surface is not
109                  * an image surface). The stride is the distance in bytes from the beginning
110                  * of one row of the image data to the beginning of the next row.
111                  */
112                 int get_stride () const {
113                         return _surface->get_stride ();
114                 }
115
116                 /** Gets the width of the ImageSurface in pixels */
117                 int get_width () const {
118                         return _surface->get_width ();
119                 }
120
121                 /** Gets the height of the ImageSurface in pixels */
122                 int get_height () const {
123                         return _surface->get_height ();
124                 }
125
126                 /**
127                  * Get a pointer to the data of the image surface, for direct
128                  * inspection or modification.
129                  *
130                  * Return value: a pointer to the image data of this surface or NULL
131                  * if @surface is not an image surface.
132                  *
133                  */
134                 unsigned char* get_data () {
135                         return _surface->get_data ();
136                 }
137
138                 /** Tells cairo to consider the data buffer dirty.
139                  *
140                  * In particular, if you've created an ImageSurface with a data buffer that
141                  * you've allocated yourself and you draw to that data buffer using means
142                  * other than cairo, you must call mark_dirty() before doing any additional
143                  * drawing to that surface with cairo.
144                  *
145                  * Note that if you do draw to the Surface outside of cairo, you must call
146                  * flush() before doing the drawing.
147                  */
148                 void mark_dirty () {
149                         _surface->mark_dirty ();
150                 }
151
152                 /** Marks a rectangular area of the given surface dirty.
153                  *
154                  * @param x X coordinate of dirty rectangle
155                  * @param y Y coordinate of dirty rectangle
156                  * @param width width of dirty rectangle
157                  * @param height height of dirty rectangle
158                  */
159                 void mark_dirty (int x, int y, int width, int height) {
160                         _surface->mark_dirty (x, y, width, height);
161                 }
162
163         private:
164                 Cairo::RefPtr<Cairo::ImageSurface> _surface;
165                 Cairo::RefPtr<Cairo::Context> _ctx;
166                 Cairo::Context ctx;
167 };
168
169 class PangoLayout {
170         public:
171                 /** Create a new PangoLayout Text Display
172                  * @param c CairoContext for the layout
173                  * @param font_name a font-description e.g. "Mono 8px"
174                  */
175                 PangoLayout (Cairo::Context* c, std::string font_name) {
176                         ::PangoLayout* pl = pango_cairo_create_layout (c->cobj ());
177                         _layout = Glib::wrap (pl);
178                         Pango::FontDescription fd (font_name);
179                         _layout->set_font_description (fd);
180                 }
181
182                 ~PangoLayout () {}
183
184                 /** Gets the text in the layout. The returned text should not
185                  * be freed or modified.
186                  *
187                  * @return The text in the @a layout.
188                  */
189                 std::string get_text () const {
190                         return _layout->get_text ();
191                 }
192                 /** Set the text of the layout.
193                  * @param text The text for the layout.
194                  */
195                 void set_text (const std::string& text) {
196                         _layout->set_text (text);
197                 }
198
199                 /** Sets the layout text and attribute list from marked-up text (see markup format).
200                  * Replaces the current text and attribute list.
201                  * @param markup Some marked-up text.
202                  */
203                 void set_markup (const std::string& markup) {
204                         _layout->set_markup (markup);
205                 }
206
207                 /** Sets the width to which the lines of the Pango::Layout should wrap or
208                  * ellipsized.  The default value is -1: no width set.
209                  *
210                  * @param width The desired width in Pango units, or -1 to indicate that no
211                  * wrapping or ellipsization should be performed.
212                  */
213                 void set_width (int width) {
214                         _layout->set_width (width * PANGO_SCALE);
215                 }
216
217                 /** Gets the width to which the lines of the Pango::Layout should wrap.
218                  *
219                  * @return The width in Pango units, or -1 if no width set.
220                  */
221                 int get_width () const {
222                         return _layout->get_width () / PANGO_SCALE;
223                 }
224
225                 /** Sets the type of ellipsization being performed for @a layout.
226                  * Depending on the ellipsization mode @a ellipsize text is
227                  * removed from the start, middle, or end of text so they
228                  * fit within the width and height of layout set with
229                  * set_width() and set_height().
230                  *
231                  * If the layout contains characters such as newlines that
232                  * force it to be layed out in multiple paragraphs, then whether
233                  * each paragraph is ellipsized separately or the entire layout
234                  * is ellipsized as a whole depends on the set height of the layout.
235                  * See set_height() for details.
236                  *
237                  * @param ellipsize The new ellipsization mode for @a layout.
238                  */
239                 void set_ellipsize (Pango::EllipsizeMode ellipsize) {
240                         _layout->set_ellipsize (ellipsize);
241                 }
242
243                 /** Gets the type of ellipsization being performed for @a layout.
244                  * See set_ellipsize()
245                  *
246                  * @return The current ellipsization mode for @a layout.
247                  *
248                  * Use is_ellipsized() to query whether any paragraphs
249                  * were actually ellipsized.
250                  */
251                 Pango::EllipsizeMode get_ellipsize () const {
252                         return _layout->get_ellipsize ();
253                 }
254
255                 /** Queries whether the layout had to ellipsize any paragraphs.
256                  *
257                  * This returns <tt>true</tt> if the ellipsization mode for @a layout
258                  * is not Pango::ELLIPSIZE_NONE, a positive width is set on @a layout,
259                  * and there are paragraphs exceeding that width that have to be
260                  * ellipsized.
261                  *
262                  * @return <tt>true</tt> if any paragraphs had to be ellipsized, <tt>false</tt>
263                  * otherwise.
264                  */
265                 bool is_ellipsized () const {
266                         return _layout->is_ellipsized ();
267                 }
268
269                 /** Sets the alignment for the layout: how partial lines are
270                  * positioned within the horizontal space available.
271                  * @param alignment The alignment.
272                  */
273                 void set_alignment(Pango::Alignment alignment) {
274                         _layout->set_alignment (alignment);
275                 }
276
277                 /** Gets the alignment for the layout: how partial lines are
278                  * positioned within the horizontal space available.
279                  * @return The alignment.
280                  */
281                 Pango::Alignment get_alignment() const {
282                         return _layout->get_alignment ();
283                 }
284
285                 /** Sets the wrap mode; the wrap mode only has effect if a width
286                  * is set on the layout with set_width().
287                  * To turn off wrapping, set the width to -1.
288                  *
289                  * @param wrap The wrap mode.
290                  */
291                 void set_wrap (Pango::WrapMode wrap) {
292                         _layout->set_width (wrap);
293                 }
294
295                 /** Gets the wrap mode for the layout.
296                  *
297                  * Use is_wrapped() to query whether any paragraphs
298                  * were actually wrapped.
299                  *
300                  * @return Active wrap mode.
301                  */
302                 Pango::WrapMode get_wrap () const {
303                         return _layout->get_wrap ();
304                 }
305
306                 /** Queries whether the layout had to wrap any paragraphs.
307                  *
308                  * This returns <tt>true</tt> if a positive width is set on @a layout,
309                  * ellipsization mode of @a layout is set to Pango::ELLIPSIZE_NONE,
310                  * and there are paragraphs exceeding the layout width that have
311                  * to be wrapped.
312                  *
313                  * @return <tt>true</tt> if any paragraphs had to be wrapped, <tt>false</tt>
314                  * otherwise.
315                  */
316                 bool is_wrapped () const {
317                         return _layout->is_wrapped ();
318                 }
319
320                 /** Determines the logical width and height of a Pango::Layout
321                  * in device units.
322                  */
323                 int get_pixel_size (lua_State *L) {
324                         int width, height;
325                         _layout->get_pixel_size (width, height);
326                         luabridge::Stack<int>::push (L, width);
327                         luabridge::Stack<int>::push (L, height);
328                         return 2;
329                 }
330
331                 /** Draws a Layout in the specified Cairo @a context. The top-left
332                  *  corner of the Layout will be drawn at the current point of the
333                  *  cairo context.
334                  *
335                  * @param context A Cairo context.
336                  */
337                 void show_in_cairo_context (Cairo::Context* c) {
338                         pango_cairo_update_layout (c->cobj (), _layout->gobj());
339                         pango_cairo_show_layout (c->cobj (), _layout->gobj());
340                 }
341
342                 void layout_cairo_path (Cairo::Context* c) {
343                         pango_cairo_update_layout (c->cobj (), _layout->gobj());
344                         pango_cairo_layout_path (c->cobj (), _layout->gobj());
345                 }
346
347         private:
348                 Glib::RefPtr<Pango::Layout> _layout;
349 };
350
351 }; // namespace
352
353 ////////////////////////////////////////////////////////////////////////////////
354
355 namespace LuaSignal {
356
357 #define STATIC(name,c,p) else if (!strcmp(type, #name)) {return name;}
358 #define SESSION(name,c,p) else if (!strcmp(type, #name)) {return name;}
359 #define ENGINE(name,c,p) else if (!strcmp(type, #name)) {return name;}
360
361 LuaSignal
362 str2luasignal (const std::string &str) {
363         const char* type = str.c_str();
364         if (0) { }
365 #       include "luasignal_syms.h"
366         else {
367                 PBD::fatal << string_compose (_("programming error: %1: %2"), "Impossible LuaSignal type", str) << endmsg;
368                 abort(); /*NOTREACHED*/
369         }
370 }
371 #undef STATIC
372 #undef SESSION
373 #undef ENGINE
374
375 #define STATIC(name,c,p) N_(#name),
376 #define SESSION(name,c,p) N_(#name),
377 #define ENGINE(name,c,p) N_(#name),
378 const char *luasignalstr[] = {
379 #       include "luasignal_syms.h"
380         0
381 };
382
383 #undef STATIC
384 #undef SESSION
385 #undef ENGINE
386 }; // namespace
387
388
389 static std::string http_get_unlogged (const std::string& url) { return ArdourCurl::http_get (url, false); }
390
391 /** special cases for Ardour's Mixer UI */
392 namespace LuaMixer {
393
394         ProcessorBox::ProcSelection
395         processor_selection () {
396                 return ProcessorBox::current_processor_selection ();
397         }
398
399 };
400
401 static void mixer_screenshot (const std::string& fn) {
402         Mixer_UI::instance()->screenshot (fn);
403 }
404
405 ////////////////////////////////////////////////////////////////////////////////
406
407 static PBD::ScopedConnectionList _luaexecs;
408
409 static void reaper (ARDOUR::SystemExec* x)
410 {
411         delete x;
412 }
413
414 static int
415 lua_forkexec (lua_State *L)
416 {
417         int argc = lua_gettop (L);
418         if (argc == 0) {
419                 return luaL_argerror (L, 1, "invalid number of arguments, forkexec (command, ...)");
420         }
421         // args are free()ed in ~SystemExec
422         char** args = (char**) malloc ((argc + 1) * sizeof(char*));
423         for (int i = 0; i < argc; ++i) {
424                 args[i] = strdup (luaL_checkstring (L, i + 1));
425         }
426         args[argc] = 0;
427
428         ARDOUR::SystemExec* x = new ARDOUR::SystemExec (args[0], args);
429         x->Terminated.connect (_luaexecs, MISSING_INVALIDATOR, boost::bind (&reaper, x), gui_context());
430
431         if (x->start()) {
432                 reaper (x);
433                 luabridge::Stack<bool>::push (L, false);
434                 return -1;
435         } else {
436                 luabridge::Stack<bool>::push (L, false);
437         }
438         return 1;
439 }
440
441 #ifndef PLATFORM_WINDOWS
442 static int
443 lua_exec (std::string cmd)
444 {
445         // args are free()ed in ~SystemExec
446         char** args = (char**) malloc (4 * sizeof(char*));
447         args[0] = strdup ("/bin/sh");
448         args[1] = strdup ("-c");
449         args[2] = strdup (cmd.c_str());
450         args[3] = 0;
451         ARDOUR::SystemExec x ("/bin/sh", args);
452         if (x.start()) {
453                 return -1;
454         }
455         x.wait ();
456         return 0;
457 }
458 #endif
459
460 ////////////////////////////////////////////////////////////////////////////////
461
462 static int
463 lua_actionlist (lua_State *L)
464 {
465         using namespace std;
466
467         vector<string> paths;
468         vector<string> labels;
469         vector<string> tooltips;
470         vector<string> keys;
471         vector<Glib::RefPtr<Gtk::Action> > actions;
472         ActionManager::get_all_actions (paths, labels, tooltips, keys, actions);
473
474         vector<string>::iterator p;
475         vector<string>::iterator l;
476
477         luabridge::LuaRef action_tbl (luabridge::newTable (L));
478
479         for (l = labels.begin(), p = paths.begin(); l != labels.end(); ++p, ++l) {
480                 if (l->empty ()) {
481                         continue;
482                 }
483
484                 vector<string> parts;
485                 split (*p, parts, '/');
486
487                 if (parts.empty()) {
488                         continue;
489                 }
490
491                 //kinda kludgy way to avoid displaying menu items as mappable
492                 if (parts[1] == _("Main_menu"))
493                         continue;
494                 if (parts[1] == _("JACK"))
495                         continue;
496                 if (parts[1] == _("redirectmenu"))
497                         continue;
498                 if (parts[1] == _("RegionList"))
499                         continue;
500                 if (parts[1] == _("ProcessorMenu"))
501                         continue;
502
503                 if (!action_tbl[parts[1]].isTable()) {
504                         action_tbl[parts[1]] = luabridge::newTable (L);
505                 }
506                 assert (action_tbl[parts[1]].isTable());
507                 luabridge::LuaRef tbl (action_tbl[parts[1]]);
508                 assert (tbl.isTable());
509                 tbl[*l] = *p;
510         }
511
512         luabridge::push (L, action_tbl);
513         return 1;
514 }
515
516 ////////////////////////////////////////////////////////////////////////////////
517
518 // ARDOUR_UI and instance() are not exposed.
519 ARDOUR::PresentationInfo::order_t
520 lua_translate_order (RouteDialogs::InsertAt place)
521 {
522         return ARDOUR_UI::instance()->translate_order (place);
523 }
524
525 ////////////////////////////////////////////////////////////////////////////////
526
527 #define xstr(s) stringify(s)
528 #define stringify(s) #s
529
530 using namespace ARDOUR;
531
532 PBD::Signal0<void> LuaInstance::LuaTimerS;
533 PBD::Signal0<void> LuaInstance::LuaTimerDS;
534 PBD::Signal0<void> LuaInstance::SetSession;
535
536 void
537 LuaInstance::register_hooks (lua_State* L)
538 {
539
540 #define ENGINE(name,c,p) .addConst (stringify(name), (LuaSignal::LuaSignal)LuaSignal::name)
541 #define STATIC(name,c,p) .addConst (stringify(name), (LuaSignal::LuaSignal)LuaSignal::name)
542 #define SESSION(name,c,p) .addConst (stringify(name), (LuaSignal::LuaSignal)LuaSignal::name)
543         luabridge::getGlobalNamespace (L)
544                 .beginNamespace ("LuaSignal")
545 #               include "luasignal_syms.h"
546                 .endNamespace ();
547 #undef ENGINE
548 #undef SESSION
549 #undef STATIC
550
551         luabridge::getGlobalNamespace (L)
552                 .beginNamespace ("LuaSignal")
553                 .beginStdBitSet <LuaSignal::LAST_SIGNAL> ("Set")
554                 .endClass()
555                 .endNamespace ();
556
557 #if 0 // Dump size -> libs/ardour/luabindings.cc
558         printf ("LuaInstance: registered %d signals\n", LuaSignal::LAST_SIGNAL);
559 #endif
560 }
561
562 void
563 LuaInstance::bind_cairo (lua_State* L)
564 {
565         /* std::vector<double> for set_dash()
566          * for Windows (DLL, .exe) this needs to be bound in the same memory context as "Cairo".
567          *
568          * The std::vector<> argument in set_dash() has a fixed address in ardour.exe, while
569          * the address of the one in libardour.dll is mapped when loading the .dll
570          *
571          * see LuaBindings::set_session() for a detailed explanation
572          */
573         luabridge::getGlobalNamespace (L)
574                 .beginNamespace ("C")
575                 .beginStdVector <double> ("DoubleVector")
576                 .endClass ()
577                 .endNamespace ();
578
579         luabridge::getGlobalNamespace (L)
580                 .beginNamespace ("Cairo")
581                 .beginClass <Cairo::Context> ("Context")
582                 .addFunction ("save", &Cairo::Context::save)
583                 .addFunction ("restore", &Cairo::Context::restore)
584                 .addFunction ("set_operator", &Cairo::Context::set_operator)
585                 //.addFunction ("set_source", &Cairo::Context::set_operator) // needs RefPtr
586                 .addFunction ("set_source_rgb", &Cairo::Context::set_source_rgb)
587                 .addFunction ("set_source_rgba", &Cairo::Context::set_source_rgba)
588                 .addFunction ("set_line_width", &Cairo::Context::set_line_width)
589                 .addFunction ("set_line_cap", &Cairo::Context::set_line_cap)
590                 .addFunction ("set_line_join", &Cairo::Context::set_line_join)
591                 .addFunction ("set_dash", (void (Cairo::Context::*)(const std::vector<double>&, double))&Cairo::Context::set_dash)
592                 .addFunction ("unset_dash", &Cairo::Context::unset_dash)
593                 .addFunction ("translate", &Cairo::Context::translate)
594                 .addFunction ("scale", &Cairo::Context::scale)
595                 .addFunction ("rotate", &Cairo::Context::rotate)
596                 .addFunction ("begin_new_path", &Cairo::Context::begin_new_path)
597                 .addFunction ("begin_new_sub_path", &Cairo::Context::begin_new_sub_path)
598                 .addFunction ("move_to", &Cairo::Context::move_to)
599                 .addFunction ("line_to", &Cairo::Context::line_to)
600                 .addFunction ("curve_to", &Cairo::Context::curve_to)
601                 .addFunction ("arc", &Cairo::Context::arc)
602                 .addFunction ("arc_negative", &Cairo::Context::arc_negative)
603                 .addFunction ("rel_move_to", &Cairo::Context::rel_move_to)
604                 .addFunction ("rel_line_to", &Cairo::Context::rel_line_to)
605                 .addFunction ("rel_curve_to", &Cairo::Context::rel_curve_to)
606                 .addFunction ("rectangle", (void (Cairo::Context::*)(double, double, double, double))&Cairo::Context::rectangle)
607                 .addFunction ("close_path", &Cairo::Context::close_path)
608                 .addFunction ("paint", &Cairo::Context::paint)
609                 .addFunction ("paint_with_alpha", &Cairo::Context::paint_with_alpha)
610                 .addFunction ("stroke", &Cairo::Context::stroke)
611                 .addFunction ("stroke_preserve", &Cairo::Context::stroke_preserve)
612                 .addFunction ("fill", &Cairo::Context::fill)
613                 .addFunction ("fill_preserve", &Cairo::Context::fill_preserve)
614                 .addFunction ("reset_clip", &Cairo::Context::reset_clip)
615                 .addFunction ("clip", &Cairo::Context::clip)
616                 .addFunction ("clip_preserve", &Cairo::Context::clip_preserve)
617                 .addFunction ("set_font_size", &Cairo::Context::set_font_size)
618                 .addFunction ("show_text", &Cairo::Context::show_text)
619                 .endClass ()
620                 /* enums */
621                 // LineCap, LineJoin, Operator
622                 .beginNamespace ("LineCap")
623                 .addConst ("Butt", CAIRO_LINE_CAP_BUTT)
624                 .addConst ("Round", CAIRO_LINE_CAP_ROUND)
625                 .addConst ("Square", CAIRO_LINE_CAP_SQUARE)
626                 .endNamespace ()
627
628                 .beginNamespace ("LineJoin")
629                 .addConst ("Miter", CAIRO_LINE_JOIN_MITER)
630                 .addConst ("Round", CAIRO_LINE_JOIN_ROUND)
631                 .addConst ("Bevel", CAIRO_LINE_JOIN_BEVEL)
632                 .endNamespace ()
633
634                 .beginNamespace ("Operator")
635                 .addConst ("Clear", CAIRO_OPERATOR_CLEAR)
636                 .addConst ("Source", CAIRO_OPERATOR_SOURCE)
637                 .addConst ("Over", CAIRO_OPERATOR_OVER)
638                 .addConst ("Add", CAIRO_OPERATOR_ADD)
639                 .endNamespace ()
640
641                 .beginNamespace ("Format")
642                 .addConst ("ARGB32", CAIRO_FORMAT_ARGB32)
643                 .addConst ("RGB24", CAIRO_FORMAT_RGB24)
644                 .endNamespace ()
645
646                 .beginClass <LuaCairo::ImageSurface> ("ImageSurface")
647                 .addConstructor <void (*) (Cairo::Format, int, int)> ()
648                 .addFunction ("set_as_source", &LuaCairo::ImageSurface::set_as_source)
649                 .addFunction ("context", &LuaCairo::ImageSurface::context)
650                 .addFunction ("get_stride", &LuaCairo::ImageSurface::get_stride)
651                 .addFunction ("get_width", &LuaCairo::ImageSurface::get_width)
652                 .addFunction ("get_height", &LuaCairo::ImageSurface::get_height)
653                 //.addFunction ("get_data", &LuaCairo::ImageSurface::get_data) // uint8_t* array is n/a
654                 .endClass ()
655
656                 .beginClass <LuaCairo::PangoLayout> ("PangoLayout")
657                 .addConstructor <void (*) (Cairo::Context*, std::string)> ()
658                 .addCFunction ("get_pixel_size", &LuaCairo::PangoLayout::get_pixel_size)
659                 .addFunction ("get_text", &LuaCairo::PangoLayout::get_text)
660                 .addFunction ("set_text", &LuaCairo::PangoLayout::set_text)
661                 .addFunction ("show_in_cairo_context", &LuaCairo::PangoLayout::show_in_cairo_context)
662                 .addFunction ("layout_cairo_path", &LuaCairo::PangoLayout::layout_cairo_path)
663                 .addFunction ("set_markup", &LuaCairo::PangoLayout::set_markup)
664                 .addFunction ("set_width", &LuaCairo::PangoLayout::set_width)
665                 .addFunction ("set_ellipsize", &LuaCairo::PangoLayout::set_ellipsize)
666                 .addFunction ("get_ellipsize", &LuaCairo::PangoLayout::get_ellipsize)
667                 .addFunction ("is_ellipsized", &LuaCairo::PangoLayout::is_ellipsized)
668                 .addFunction ("set_alignment", &LuaCairo::PangoLayout::set_alignment)
669                 .addFunction ("get_alignment", &LuaCairo::PangoLayout::get_alignment)
670                 .addFunction ("set_wrap", &LuaCairo::PangoLayout::set_wrap)
671                 .addFunction ("get_wrap", &LuaCairo::PangoLayout::get_wrap)
672                 .addFunction ("is_wrapped", &LuaCairo::PangoLayout::is_wrapped)
673                 .endClass ()
674
675                 /* enums */
676                 .beginNamespace ("EllipsizeMode")
677                 .addConst ("None", Pango::ELLIPSIZE_NONE)
678                 .addConst ("Start", Pango::ELLIPSIZE_START)
679                 .addConst ("Middle", Pango::ELLIPSIZE_MIDDLE)
680                 .addConst ("End", Pango::ELLIPSIZE_END)
681                 .endNamespace ()
682
683                 .beginNamespace ("Alignment")
684                 .addConst ("Left", Pango::ALIGN_LEFT)
685                 .addConst ("Center", Pango::ALIGN_CENTER)
686                 .addConst ("Right", Pango::ALIGN_RIGHT)
687                 .endNamespace ()
688
689                 .beginNamespace ("WrapMode")
690                 .addConst ("Word", Pango::WRAP_WORD)
691                 .addConst ("Char", Pango::WRAP_CHAR)
692                 .addConst ("WordChar", Pango::WRAP_WORD_CHAR)
693                 .endNamespace ()
694
695                 .endNamespace ();
696
697 /* Lua/cairo bindings operate on Cairo::Context, there is no Cairo::RefPtr wrapper [yet].
698   one can work around this as follows:
699
700   LuaState lua;
701   LuaInstance::register_classes (lua.getState());
702   lua.do_command (
703       "function render (ctx)"
704       "  ctx:rectangle (0, 0, 100, 100)"
705       "  ctx:set_source_rgba (0.1, 1.0, 0.1, 1.0)"
706       "  ctx:fill ()"
707       " end"
708       );
709   {
710                 Cairo::RefPtr<Cairo::Context> context = get_window ()->create_cairo_context ();
711     Cairo::Context ctx (context->cobj ());
712
713     luabridge::LuaRef lua_render = luabridge::getGlobal (lua.getState(), "render");
714     lua_render ((Cairo::Context *)&ctx);
715   }
716 */
717
718 }
719
720 void
721 LuaInstance::bind_dialog (lua_State* L)
722 {
723         luabridge::getGlobalNamespace (L)
724                 .beginNamespace ("LuaDialog")
725
726                 .beginClass <LuaDialog::Message> ("Message")
727                 .addConstructor <void (*) (std::string const&, std::string const&, LuaDialog::Message::MessageType, LuaDialog::Message::ButtonType)> ()
728                 .addFunction ("run", &LuaDialog::Message::run)
729                 .endClass ()
730
731                 .beginClass <LuaDialog::Dialog> ("Dialog")
732                 .addConstructor <void (*) (std::string const&, luabridge::LuaRef)> ()
733                 .addCFunction ("run", &LuaDialog::Dialog::run)
734                 .endClass ()
735
736                 /* enums */
737                 .beginNamespace ("MessageType")
738                 .addConst ("Info", LuaDialog::Message::Info)
739                 .addConst ("Warning", LuaDialog::Message::Warning)
740                 .addConst ("Question", LuaDialog::Message::Question)
741                 .addConst ("Error", LuaDialog::Message::Error)
742                 .endNamespace ()
743
744                 .beginNamespace ("ButtonType")
745                 .addConst ("OK", LuaDialog::Message::OK)
746                 .addConst ("Close", LuaDialog::Message::Close)
747                 .addConst ("Cancel", LuaDialog::Message::Cancel)
748                 .addConst ("Yes_No", LuaDialog::Message::Yes_No)
749                 .addConst ("OK_Cancel", LuaDialog::Message::OK_Cancel)
750                 .endNamespace ()
751
752                 .beginNamespace ("Response")
753                 .addConst ("OK", 0)
754                 .addConst ("Cancel", 1)
755                 .addConst ("Close", 2)
756                 .addConst ("Yes", 3)
757                 .addConst ("No", 4)
758                 .addConst ("None", -1)
759                 .endNamespace ()
760
761                 .endNamespace ();
762
763 }
764
765 void
766 LuaInstance::register_classes (lua_State* L)
767 {
768         LuaBindings::stddef (L);
769         LuaBindings::common (L);
770         LuaBindings::session (L);
771         LuaBindings::osc (L);
772
773         bind_cairo (L);
774         bind_dialog (L);
775
776         luabridge::getGlobalNamespace (L)
777                 .beginNamespace ("ArdourUI")
778
779                 .addFunction ("http_get", &http_get_unlogged)
780
781                 .addFunction ("mixer_screenshot", &mixer_screenshot)
782
783                 .addFunction ("processor_selection", &LuaMixer::processor_selection)
784
785                 .beginStdCPtrList <ArdourMarker> ("ArdourMarkerList")
786                 .endClass ()
787
788                 .beginClass <ArdourMarker> ("ArdourMarker")
789                 .addFunction ("name", &ArdourMarker::name)
790                 .addFunction ("position", &ArdourMarker::position)
791                 .addFunction ("_type", &ArdourMarker::type)
792                 .endClass ()
793
794                 .beginClass <AxisView> ("AxisView")
795                 .endClass ()
796
797                 .deriveClass <TimeAxisView, AxisView> ("TimeAxisView")
798                 .addFunction ("order", &TimeAxisView::order)
799                 .addFunction ("y_position", &TimeAxisView::y_position)
800                 .addFunction ("effective_height", &TimeAxisView::effective_height)
801                 .addFunction ("current_height", &TimeAxisView::current_height)
802                 .addFunction ("set_height", &TimeAxisView::set_height)
803                 .endClass ()
804
805                 .deriveClass <StripableTimeAxisView, TimeAxisView> ("StripableTimeAxisView")
806                 .endClass ()
807
808                 .beginClass <Selectable> ("Selectable")
809                 .endClass ()
810
811                 .deriveClass <TimeAxisViewItem, Selectable> ("TimeAxisViewItem")
812                 .endClass ()
813
814                 .deriveClass <RegionView, TimeAxisViewItem> ("RegionView")
815                 .endClass ()
816
817                 .deriveClass <RouteUI, Selectable> ("RouteUI")
818                 .endClass ()
819
820                 .deriveClass <RouteTimeAxisView, RouteUI> ("RouteTimeAxisView")
821                 .addCast<StripableTimeAxisView> ("to_stripabletimeaxisview")
822                 .addCast<TimeAxisView> ("to_timeaxisview") // deprecated
823                 .endClass ()
824
825                 // std::list<Selectable*>
826                 .beginConstStdCPtrList <Selectable> ("SelectionList")
827                 .endClass ()
828
829                 // std::list<TimeAxisView*>
830                 .beginConstStdCPtrList <TimeAxisView> ("TrackViewStdList")
831                 .endClass ()
832
833
834                 .beginClass <RegionSelection> ("RegionSelection")
835                 .addFunction ("start", &RegionSelection::start)
836                 .addFunction ("end_sample", &RegionSelection::end_sample)
837                 .addFunction ("n_midi_regions", &RegionSelection::n_midi_regions)
838                 .addFunction ("regionlist", &RegionSelection::regionlist) // XXX check windows binding (libardour)
839                 .endClass ()
840
841                 .deriveClass <TimeSelection, std::list<ARDOUR::AudioRange> > ("TimeSelection")
842                 .addFunction ("start", &TimeSelection::start)
843                 .addFunction ("end_sample", &TimeSelection::end_sample)
844                 .addFunction ("length", &TimeSelection::length)
845                 .endClass ()
846
847                 .deriveClass <MarkerSelection, std::list<ArdourMarker*> > ("MarkerSelection")
848                 .endClass ()
849
850                 .beginClass <TrackViewList> ("TrackViewList")
851                 .addCast<std::list<TimeAxisView*> > ("to_tav_list")
852                 .addFunction ("contains", &TrackViewList::contains)
853                 .addFunction ("routelist", &TrackViewList::routelist)
854                 .endClass ()
855
856                 .deriveClass <TrackSelection, TrackViewList> ("TrackSelection")
857                 .endClass ()
858
859                 .beginClass <Selection> ("Selection")
860                 .addFunction ("clear", &Selection::clear)
861                 .addFunction ("clear_all", &Selection::clear_all)
862                 .addFunction ("empty", &Selection::empty)
863                 .addData ("tracks", &Selection::tracks)
864                 .addData ("regions", &Selection::regions)
865                 .addData ("time", &Selection::time)
866                 .addData ("markers", &Selection::markers)
867 #if 0
868                 .addData ("lines", &Selection::lines)
869                 .addData ("playlists", &Selection::playlists)
870                 .addData ("points", &Selection::points)
871                 .addData ("midi_regions", &Selection::midi_regions)
872                 .addData ("midi_notes", &Selection::midi_notes) // cut buffer only
873 #endif
874                 .endClass ()
875
876                 .beginClass <PublicEditor> ("Editor")
877                 .addFunction ("grid_type", &PublicEditor::grid_type)
878                 .addFunction ("snap_mode", &PublicEditor::snap_mode)
879                 .addFunction ("set_snap_mode", &PublicEditor::set_snap_mode)
880
881                 .addFunction ("undo", &PublicEditor::undo)
882                 .addFunction ("redo", &PublicEditor::redo)
883
884                 .addFunction ("set_mouse_mode", &PublicEditor::set_mouse_mode)
885                 .addFunction ("current_mouse_mode", &PublicEditor::current_mouse_mode)
886
887                 .addFunction ("consider_auditioning", &PublicEditor::consider_auditioning)
888
889                 .addFunction ("new_region_from_selection", &PublicEditor::new_region_from_selection)
890                 .addFunction ("separate_region_from_selection", &PublicEditor::separate_region_from_selection)
891                 .addFunction ("pixel_to_sample", &PublicEditor::pixel_to_sample)
892                 .addFunction ("sample_to_pixel", &PublicEditor::sample_to_pixel)
893
894                 .addFunction ("get_selection", &PublicEditor::get_selection)
895                 .addFunction ("get_cut_buffer", &PublicEditor::get_cut_buffer)
896                 .addRefFunction ("get_selection_extents", &PublicEditor::get_selection_extents)
897
898                 .addFunction ("set_selection", &PublicEditor::set_selection)
899
900                 .addFunction ("play_selection", &PublicEditor::play_selection)
901                 .addFunction ("play_with_preroll", &PublicEditor::play_with_preroll)
902                 .addFunction ("maybe_locate_with_edit_preroll", &PublicEditor::maybe_locate_with_edit_preroll)
903                 .addFunction ("goto_nth_marker", &PublicEditor::goto_nth_marker)
904
905                 .addFunction ("add_location_from_playhead_cursor", &PublicEditor::add_location_from_playhead_cursor)
906                 .addFunction ("remove_location_at_playhead_cursor", &PublicEditor::remove_location_at_playhead_cursor)
907
908                 .addFunction ("update_grid", &PublicEditor::update_grid)
909                 .addFunction ("remove_tracks", &PublicEditor::remove_tracks)
910
911                 .addFunction ("set_loop_range", &PublicEditor::set_loop_range)
912                 .addFunction ("set_punch_range", &PublicEditor::set_punch_range)
913
914                 .addFunction ("effective_mouse_mode", &PublicEditor::effective_mouse_mode)
915
916                 .addRefFunction ("do_import", &PublicEditor::do_import)
917                 .addRefFunction ("do_embed", &PublicEditor::do_embed)
918
919                 .addFunction ("export_audio", &PublicEditor::export_audio)
920                 .addFunction ("stem_export", &PublicEditor::stem_export)
921                 .addFunction ("export_selection", &PublicEditor::export_selection)
922                 .addFunction ("export_range", &PublicEditor::export_range)
923
924                 .addFunction ("set_zoom_focus", &PublicEditor::set_zoom_focus)
925                 .addFunction ("get_zoom_focus", &PublicEditor::get_zoom_focus)
926                 .addFunction ("get_current_zoom", &PublicEditor::get_current_zoom)
927                 .addFunction ("reset_zoom", &PublicEditor::reset_zoom)
928
929                 .addFunction ("clear_playlist", &PublicEditor::clear_playlist)
930                 .addFunction ("new_playlists", &PublicEditor::new_playlists)
931                 .addFunction ("copy_playlists", &PublicEditor::copy_playlists)
932                 .addFunction ("clear_playlists", &PublicEditor::clear_playlists)
933
934                 .addFunction ("select_all_tracks", &PublicEditor::select_all_tracks)
935                 .addFunction ("deselect_all", &PublicEditor::deselect_all)
936
937 #if 0 // TimeAxisView&  can't be bound (pure virtual fn)
938                 .addFunction ("set_selected_track", &PublicEditor::set_selected_track)
939                 .addFunction ("set_selected_mixer_strip", &PublicEditor::set_selected_mixer_strip)
940                 .addFunction ("ensure_time_axis_view_is_visible", &PublicEditor::ensure_time_axis_view_is_visible)
941 #endif
942                 .addFunction ("hide_track_in_display", &PublicEditor::hide_track_in_display)
943                 .addFunction ("show_track_in_display", &PublicEditor::show_track_in_display)
944                 .addFunction ("set_visible_track_count", &PublicEditor::set_visible_track_count)
945                 .addFunction ("fit_selection", &PublicEditor::fit_selection)
946
947                 .addFunction ("regionview_from_region", &PublicEditor::regionview_from_region)
948                 .addFunction ("set_stationary_playhead", &PublicEditor::set_stationary_playhead)
949                 .addFunction ("stationary_playhead", &PublicEditor::stationary_playhead)
950                 .addFunction ("set_follow_playhead", &PublicEditor::set_follow_playhead)
951                 .addFunction ("follow_playhead", &PublicEditor::follow_playhead)
952
953                 .addFunction ("dragging_playhead", &PublicEditor::dragging_playhead)
954                 .addFunction ("leftmost_sample", &PublicEditor::leftmost_sample)
955                 .addFunction ("current_page_samples", &PublicEditor::current_page_samples)
956                 .addFunction ("visible_canvas_height", &PublicEditor::visible_canvas_height)
957                 .addFunction ("temporal_zoom_step", &PublicEditor::temporal_zoom_step)
958                 .addFunction ("override_visible_track_count", &PublicEditor::override_visible_track_count)
959
960                 .addFunction ("scroll_tracks_down_line", &PublicEditor::scroll_tracks_down_line)
961                 .addFunction ("scroll_tracks_up_line", &PublicEditor::scroll_tracks_up_line)
962                 .addFunction ("scroll_down_one_track", &PublicEditor::scroll_down_one_track)
963                 .addFunction ("scroll_up_one_track", &PublicEditor::scroll_up_one_track)
964
965                 .addFunction ("reset_x_origin", &PublicEditor::reset_x_origin)
966                 .addFunction ("get_y_origin", &PublicEditor::get_y_origin)
967                 .addFunction ("reset_y_origin", &PublicEditor::reset_y_origin)
968
969                 .addFunction ("remove_last_capture", &PublicEditor::remove_last_capture)
970
971                 .addFunction ("maximise_editing_space", &PublicEditor::maximise_editing_space)
972                 .addFunction ("restore_editing_space", &PublicEditor::restore_editing_space)
973                 .addFunction ("toggle_meter_updating", &PublicEditor::toggle_meter_updating)
974
975                 //.addFunction ("get_preferred_edit_position", &PublicEditor::get_preferred_edit_position)
976                 //.addFunction ("split_regions_at", &PublicEditor::split_regions_at)
977
978                 .addRefFunction ("get_nudge_distance", &PublicEditor::get_nudge_distance)
979                 .addFunction ("get_paste_offset", &PublicEditor::get_paste_offset)
980                 .addFunction ("get_grid_beat_divisions", &PublicEditor::get_grid_beat_divisions)
981                 .addRefFunction ("get_grid_type_as_beats", &PublicEditor::get_grid_type_as_beats)
982
983                 .addFunction ("toggle_ruler_video", &PublicEditor::toggle_ruler_video)
984                 .addFunction ("toggle_xjadeo_proc", &PublicEditor::toggle_xjadeo_proc)
985                 .addFunction ("get_videotl_bar_height", &PublicEditor::get_videotl_bar_height)
986                 .addFunction ("set_video_timeline_height", &PublicEditor::set_video_timeline_height)
987
988 #if 0
989                 .addFunction ("get_equivalent_regions", &PublicEditor::get_equivalent_regions)
990                 .addFunction ("drags", &PublicEditor::drags)
991 #endif
992
993                 .addFunction ("get_stripable_time_axis_by_id", &PublicEditor::get_stripable_time_axis_by_id)
994                 .addFunction ("get_track_views", &PublicEditor::get_track_views)
995                 .addFunction ("rtav_from_route", &PublicEditor::rtav_from_route)
996                 .addFunction ("axis_views_from_routes", &PublicEditor::axis_views_from_routes)
997
998                 .addFunction ("center_screen", &PublicEditor::center_screen)
999
1000                 .addFunction ("get_smart_mode", &PublicEditor::get_smart_mode)
1001                 .addRefFunction ("get_pointer_position", &PublicEditor::get_pointer_position)
1002
1003                 .addRefFunction ("find_location_from_marker", &PublicEditor::find_location_from_marker)
1004                 .addFunction ("find_marker_from_location_id", &PublicEditor::find_marker_from_location_id)
1005                 .addFunction ("mouse_add_new_marker", &PublicEditor::mouse_add_new_marker)
1006 #if 0
1007                 .addFunction ("get_regions_at", &PublicEditor::get_regions_at)
1008                 .addFunction ("get_regions_after", &PublicEditor::get_regions_after)
1009                 .addFunction ("get_regions_from_selection_and_mouse", &PublicEditor::get_regions_from_selection_and_mouse)
1010                 .addFunction ("get_regionviews_by_id", &PublicEditor::get_regionviews_by_id)
1011                 .addFunction ("get_per_region_note_selection", &PublicEditor::get_per_region_note_selection)
1012 #endif
1013
1014 #if 0
1015                 .addFunction ("mouse_add_new_tempo_event", &PublicEditor::mouse_add_new_tempo_event)
1016                 .addFunction ("mouse_add_new_meter_event", &PublicEditor::mouse_add_new_meter_event)
1017                 .addFunction ("edit_tempo_section", &PublicEditor::edit_tempo_section)
1018                 .addFunction ("edit_meter_section", &PublicEditor::edit_meter_section)
1019 #endif
1020
1021                 .addFunction ("access_action", &PublicEditor::access_action)
1022                 .addFunction ("set_toggleaction", &PublicEditor::set_toggleaction)
1023                 .endClass ()
1024
1025                 .addFunction ("translate_order", &lua_translate_order)
1026
1027                 /* ArdourUI enums */
1028                 .beginNamespace ("InsertAt")
1029                 .addConst ("BeforeSelection", RouteDialogs::InsertAt(RouteDialogs::BeforeSelection))
1030                 .addConst ("AfterSelection", RouteDialogs::InsertAt(RouteDialogs::AfterSelection))
1031                 .addConst ("First", RouteDialogs::InsertAt(RouteDialogs::First))
1032                 .addConst ("Last", RouteDialogs::InsertAt(RouteDialogs::Last))
1033                 .endNamespace ()
1034
1035                 .beginNamespace ("MarkerType")
1036                 .addConst ("Mark", ArdourMarker::Type(ArdourMarker::Mark))
1037                 .addConst ("Tempo", ArdourMarker::Type(ArdourMarker::Tempo))
1038                 .addConst ("Meter", ArdourMarker::Type(ArdourMarker::Meter))
1039                 .addConst ("SessionStart", ArdourMarker::Type(ArdourMarker::SessionStart))
1040                 .addConst ("SessionEnd", ArdourMarker::Type(ArdourMarker::SessionEnd))
1041                 .addConst ("RangeStart", ArdourMarker::Type(ArdourMarker::RangeStart))
1042                 .addConst ("RangeEnd", ArdourMarker::Type(ArdourMarker::RangeEnd))
1043                 .addConst ("LoopStart", ArdourMarker::Type(ArdourMarker::LoopStart))
1044                 .addConst ("LoopEnd", ArdourMarker::Type(ArdourMarker::LoopEnd))
1045                 .addConst ("PunchIn", ArdourMarker::Type(ArdourMarker::PunchIn))
1046                 .addConst ("PunchOut", ArdourMarker::Type(ArdourMarker::PunchOut))
1047                 .endNamespace ()
1048
1049                 .beginNamespace ("SelectionOp")
1050                 .addConst ("Toggle", Selection::Operation(Selection::Toggle))
1051                 .addConst ("Set", Selection::Operation(Selection::Set))
1052                 .addConst ("Extend", Selection::Operation(Selection::Extend))
1053                 .addConst ("Add", Selection::Operation(Selection::Add))
1054                 .endNamespace ()
1055
1056                 .beginNamespace ("TrackHeightMode")
1057                 .addConst ("OnlySelf", TimeAxisView::TrackHeightMode(TimeAxisView::OnlySelf))
1058                 .addConst ("TotalHeight", TimeAxisView::TrackHeightMode(TimeAxisView::TotalHeight))
1059                 .addConst ("HeightPerLane,", TimeAxisView::TrackHeightMode(TimeAxisView::HeightPerLane))
1060                 .endNamespace ()
1061
1062                 .addCFunction ("actionlist", &lua_actionlist)
1063
1064                 .endNamespace () // end ArdourUI
1065
1066                 .beginNamespace ("os")
1067 #ifndef PLATFORM_WINDOWS
1068                 .addFunction ("execute", &lua_exec)
1069 #endif
1070                 .addCFunction ("forkexec", &lua_forkexec)
1071                 .endNamespace ();
1072
1073         // Editing Symbols
1074
1075 #undef ZOOMFOCUS
1076 #undef GRIDTYPE
1077 #undef SNAPMODE
1078 #undef MOUSEMODE
1079 #undef DISPLAYCONTROL
1080 #undef IMPORTMODE
1081 #undef IMPORTPOSITION
1082 #undef IMPORTDISPOSITION
1083
1084 #define ZOOMFOCUS(NAME) .addConst (stringify(NAME), (Editing::ZoomFocus)Editing::NAME)
1085 #define GRIDTYPE(NAME) .addConst (stringify(NAME), (Editing::GridType)Editing::NAME)
1086 #define SNAPMODE(NAME) .addConst (stringify(NAME), (Editing::SnapMode)Editing::NAME)
1087 #define MOUSEMODE(NAME) .addConst (stringify(NAME), (Editing::MouseMode)Editing::NAME)
1088 #define DISPLAYCONTROL(NAME) .addConst (stringify(NAME), (Editing::DisplayControl)Editing::NAME)
1089 #define IMPORTMODE(NAME) .addConst (stringify(NAME), (Editing::ImportMode)Editing::NAME)
1090 #define IMPORTPOSITION(NAME) .addConst (stringify(NAME), (Editing::ImportPosition)Editing::NAME)
1091 #define IMPORTDISPOSITION(NAME) .addConst (stringify(NAME), (Editing::ImportDisposition)Editing::NAME)
1092         luabridge::getGlobalNamespace (L)
1093                 .beginNamespace ("Editing")
1094 #               include "editing_syms.h"
1095                 .endNamespace ();
1096 }
1097
1098 #undef xstr
1099 #undef stringify
1100
1101 ////////////////////////////////////////////////////////////////////////////////
1102
1103 using namespace ARDOUR;
1104 using namespace ARDOUR_UI_UTILS;
1105 using namespace PBD;
1106 using namespace std;
1107
1108 static void _lua_print (std::string s) {
1109 #ifndef NDEBUG
1110         std::cout << "LuaInstance: " << s << "\n";
1111 #endif
1112         PBD::info << "LuaInstance: " << s << endmsg;
1113 }
1114
1115 LuaInstance* LuaInstance::_instance = 0;
1116
1117 LuaInstance*
1118 LuaInstance::instance ()
1119 {
1120         if (!_instance) {
1121                 _instance  = new LuaInstance;
1122         }
1123
1124         return _instance;
1125 }
1126
1127 void
1128 LuaInstance::destroy_instance ()
1129 {
1130         delete _instance;
1131         _instance = 0;
1132 }
1133
1134 LuaInstance::LuaInstance ()
1135 {
1136         lua.Print.connect (&_lua_print);
1137         init ();
1138 }
1139
1140 LuaInstance::~LuaInstance ()
1141 {
1142         delete _lua_call_action;
1143         delete _lua_render_icon;
1144         delete _lua_add_action;
1145         delete _lua_del_action;
1146         delete _lua_get_action;
1147
1148         delete _lua_load;
1149         delete _lua_save;
1150         delete _lua_clear;
1151         _callbacks.clear();
1152 }
1153
1154 void
1155 LuaInstance::init ()
1156 {
1157         lua.sandbox (false);
1158         lua.do_command (
1159                         "function ScriptManager ()"
1160                         "  local self = { scripts = {}, instances = {}, icons = {} }"
1161                         ""
1162                         "  local remove = function (id)"
1163                         "   self.scripts[id] = nil"
1164                         "   self.instances[id] = nil"
1165                         "   self.icons[id] = nil"
1166                         "  end"
1167                         ""
1168                         "  local addinternal = function (i, n, s, f, c, a)"
1169                         "   assert(type(i) == 'number', 'id must be numeric')"
1170                         "   assert(type(n) == 'string', 'Name must be string')"
1171                         "   assert(type(s) == 'string', 'Script must be string')"
1172                         "   assert(type(f) == 'function', 'Factory is a not a function')"
1173                         "   assert(type(a) == 'table' or type(a) == 'nil', 'Given argument is invalid')"
1174                         "   self.scripts[i] = { ['n'] = n, ['s'] = s, ['f'] = f, ['a'] = a, ['c'] = c }"
1175                         "   local env = _ENV; env.f = nil"
1176                         "   self.instances[i] = load (string.dump(f, true), nil, nil, env)(a)"
1177                         "   if type(c) == 'function' then"
1178                         "     self.icons[i] = load (string.dump(c, true), nil, nil, env)(a)"
1179                         "   else"
1180                         "     self.icons[i] = nil"
1181                         "   end"
1182                         "  end"
1183                         ""
1184                         "  local call = function (id)"
1185                         "   if type(self.instances[id]) == 'function' then"
1186                         "     local status, err = pcall (self.instances[id])"
1187                         "     if not status then"
1188                         "       print ('action \"'.. id .. '\": ', err)" // error out
1189                         "       remove (id)"
1190                         "     end"
1191                         "   end"
1192                         "   collectgarbage()"
1193                         "  end"
1194                         ""
1195                         "  local icon = function (id, ...)"
1196                         "   if type(self.icons[id]) == 'function' then"
1197                         "     pcall (self.icons[id], ...)"
1198                         "   end"
1199                         "   collectgarbage()"
1200                         "  end"
1201                         ""
1202                         "  local add = function (i, n, s, b, c, a)"
1203                         "   assert(type(b) == 'string', 'ByteCode must be string')"
1204                         "   f = nil load (b)()" // assigns f
1205                         "   icn = nil load (c)()" // may assign "icn"
1206                         "   assert(type(f) == 'string', 'Assigned ByteCode must be string')"
1207                         "   addinternal (i, n, s, load(f), type(icn) ~= \"string\" or icn == '' or load(icn), a)"
1208                         "  end"
1209                         ""
1210                         "  local get = function (id)"
1211                         "   if type(self.scripts[id]) == 'table' then"
1212                         "    return { ['name'] = self.scripts[id]['n'],"
1213                         "             ['script'] = self.scripts[id]['s'],"
1214                         "             ['icon'] = type(self.scripts[id]['c']) == 'function',"
1215                         "             ['args'] = self.scripts[id]['a'] }"
1216                         "   end"
1217                         "   return nil"
1218                         "  end"
1219                         ""
1220                         "  local function basic_serialize (o)"
1221                         "    if type(o) == \"number\" then"
1222                         "     return tostring(o)"
1223                         "    else"
1224                         "     return string.format(\"%q\", o)"
1225                         "    end"
1226                         "  end"
1227                         ""
1228                         "  local function serialize (name, value)"
1229                         "   local rv = name .. ' = '"
1230                         "   if type(value) == \"number\" or type(value) == \"string\" or type(value) == \"nil\" then"
1231                         "    return rv .. basic_serialize(value) .. ' '"
1232                         "   elseif type(value) == \"table\" then"
1233                         "    rv = rv .. '{} '"
1234                         "    for k,v in pairs(value) do"
1235                         "     local fieldname = string.format(\"%s[%s]\", name, basic_serialize(k))"
1236                         "     rv = rv .. serialize(fieldname, v) .. ' '"
1237                         "    end"
1238                         "    return rv;"
1239                         "   elseif type(value) == \"function\" then"
1240                         "     return rv .. string.format(\"%q\", string.dump(value, true))"
1241                         "   elseif type(value) == \"boolean\" then"
1242                         "     return rv .. tostring (value)"
1243                         "   else"
1244                         "    error('cannot save a ' .. type(value))"
1245                         "   end"
1246                         "  end"
1247                         ""
1248                         ""
1249                         "  local save = function ()"
1250                         "   return (serialize('scripts', self.scripts))"
1251                         "  end"
1252                         ""
1253                         "  local clear = function ()"
1254                         "   self.scripts = {}"
1255                         "   self.instances = {}"
1256                         "   self.icons = {}"
1257                         "   collectgarbage()"
1258                         "  end"
1259                         ""
1260                         "  local restore = function (state)"
1261                         "   clear()"
1262                         "   load (state)()"
1263                         "   for i, s in pairs (scripts) do"
1264                         "    addinternal (i, s['n'], s['s'], load(s['f']), type (s['c']) ~= \"string\" or s['c'] == '' or load (s['c']), s['a'])"
1265                         "   end"
1266                         "   collectgarbage()"
1267                         "  end"
1268                         ""
1269                         " return { call = call, add = add, remove = remove, get = get,"
1270                         "          restore = restore, save = save, clear = clear, icon = icon}"
1271                         " end"
1272                         " "
1273                         " manager = ScriptManager ()"
1274                         " ScriptManager = nil"
1275                         );
1276         lua_State* L = lua.getState();
1277
1278         try {
1279                 luabridge::LuaRef lua_mgr = luabridge::getGlobal (L, "manager");
1280                 lua.do_command ("manager = nil"); // hide it.
1281                 lua.do_command ("collectgarbage()");
1282
1283                 _lua_add_action = new luabridge::LuaRef(lua_mgr["add"]);
1284                 _lua_del_action = new luabridge::LuaRef(lua_mgr["remove"]);
1285                 _lua_get_action = new luabridge::LuaRef(lua_mgr["get"]);
1286                 _lua_call_action = new luabridge::LuaRef(lua_mgr["call"]);
1287                 _lua_render_icon = new luabridge::LuaRef(lua_mgr["icon"]);
1288                 _lua_save = new luabridge::LuaRef(lua_mgr["save"]);
1289                 _lua_load = new luabridge::LuaRef(lua_mgr["restore"]);
1290                 _lua_clear = new luabridge::LuaRef(lua_mgr["clear"]);
1291
1292         } catch (luabridge::LuaException const& e) {
1293                 fatal << string_compose (_("programming error: %1"),
1294                                 std::string ("Failed to setup Lua action interpreter") + e.what ())
1295                         << endmsg;
1296                 abort(); /*NOTREACHED*/
1297         } catch (...) {
1298                 fatal << string_compose (_("programming error: %1"),
1299                                 X_("Failed to setup Lua action interpreter"))
1300                         << endmsg;
1301                 abort(); /*NOTREACHED*/
1302         }
1303
1304         register_classes (L);
1305         register_hooks (L);
1306
1307         luabridge::push <PublicEditor *> (L, &PublicEditor::instance());
1308         lua_setglobal (L, "Editor");
1309 }
1310
1311 int
1312 LuaInstance::load_state ()
1313 {
1314         std::string uiscripts;
1315         if (!find_file (ardour_config_search_path(), ui_scripts_file_name, uiscripts)) {
1316                 return -1;
1317         }
1318         XMLTree tree;
1319
1320         info << string_compose (_("Loading user ui scripts file %1"), uiscripts) << endmsg;
1321
1322         if (!tree.read (uiscripts)) {
1323                 error << string_compose(_("cannot read ui scripts file \"%1\""), uiscripts) << endmsg;
1324                 return -1;
1325         }
1326
1327         if (set_state (*tree.root())) {
1328                 error << string_compose(_("user ui scripts file \"%1\" not loaded successfully."), uiscripts) << endmsg;
1329                 return -1;
1330         }
1331
1332         return 0;
1333 }
1334
1335 int
1336 LuaInstance::save_state ()
1337 {
1338         if (!_session) {
1339                 /* action scripts are un-registered with the session */
1340                 return -1;
1341         }
1342
1343         std::string uiscripts = Glib::build_filename (user_config_directory(), ui_scripts_file_name);
1344
1345         XMLNode* node = new XMLNode (X_("UIScripts"));
1346         node->add_child_nocopy (get_action_state ());
1347         node->add_child_nocopy (get_hook_state ());
1348
1349         XMLTree tree;
1350         tree.set_root (node);
1351
1352         if (!tree.write (uiscripts.c_str())){
1353                 error << string_compose (_("UI script file %1 not saved"), uiscripts) << endmsg;
1354                 return -1;
1355         }
1356         return 0;
1357 }
1358
1359 void
1360 LuaInstance::set_dirty ()
1361 {
1362         if (!_session || _session->deletion_in_progress()) {
1363                 return;
1364         }
1365         save_state ();
1366         _session->set_dirty (); // XXX is this reasonable?
1367 }
1368
1369 void LuaInstance::set_session (Session* s)
1370 {
1371         SessionHandlePtr::set_session (s);
1372         if (!_session) {
1373                 return;
1374         }
1375
1376         load_state ();
1377
1378         lua_State* L = lua.getState();
1379         LuaBindings::set_session (L, _session);
1380
1381         for (LuaCallbackMap::iterator i = _callbacks.begin(); i != _callbacks.end(); ++i) {
1382                 i->second->set_session (s);
1383         }
1384         second_connection = Timers::rapid_connect (sigc::mem_fun(*this, & LuaInstance::every_second));
1385         point_one_second_connection = Timers::rapid_connect (sigc::mem_fun(*this, & LuaInstance::every_point_one_seconds));
1386         SetSession (); /* EMIT SIGNAL */
1387 }
1388
1389 void
1390 LuaInstance::session_going_away ()
1391 {
1392         ENSURE_GUI_THREAD (*this, &LuaInstance::session_going_away);
1393         second_connection.disconnect ();
1394         point_one_second_connection.disconnect ();
1395
1396         (*_lua_clear)();
1397         for (int i = 0; i < MAX_LUA_ACTION_SCRIPTS; ++i) {
1398                 ActionChanged (i, ""); /* EMIT SIGNAL */
1399         }
1400         SessionHandlePtr::session_going_away ();
1401         _session = 0;
1402
1403         lua_State* L = lua.getState();
1404         LuaBindings::set_session (L, _session);
1405         lua.do_command ("collectgarbage();");
1406 }
1407
1408 void
1409 LuaInstance::every_second ()
1410 {
1411         LuaTimerS (); // emit signal
1412 }
1413
1414 void
1415 LuaInstance::every_point_one_seconds ()
1416 {
1417         LuaTimerDS (); // emit signal
1418 }
1419
1420 int
1421 LuaInstance::set_state (const XMLNode& node)
1422 {
1423         XMLNode* child;
1424
1425         if ((child = find_named_node (node, "ActionScript"))) {
1426                 for (XMLNodeList::const_iterator n = child->children ().begin (); n != child->children ().end (); ++n) {
1427                         if (!(*n)->is_content ()) { continue; }
1428                         gsize size;
1429                         guchar* buf = g_base64_decode ((*n)->content ().c_str (), &size);
1430                         try {
1431                                 (*_lua_load)(std::string ((const char*)buf, size));
1432                         } catch (luabridge::LuaException const& e) {
1433                                 cerr << "LuaException:" << e.what () << endl;
1434                         } catch (...) { }
1435                         for (int i = 0; i < MAX_LUA_ACTION_SCRIPTS; ++i) {
1436                                 std::string name;
1437                                 if (lua_action_name (i, name)) {
1438                                         ActionChanged (i, name); /* EMIT SIGNAL */
1439                                 }
1440                         }
1441                         g_free (buf);
1442                 }
1443         }
1444
1445         assert (_callbacks.empty());
1446         if ((child = find_named_node (node, "ActionHooks"))) {
1447                 for (XMLNodeList::const_iterator n = child->children ().begin (); n != child->children ().end (); ++n) {
1448                         try {
1449                                 LuaCallbackPtr p (new LuaCallback (_session, *(*n)));
1450                                 _callbacks.insert (std::make_pair(p->id(), p));
1451                                 p->drop_callback.connect (_slotcon, MISSING_INVALIDATOR, boost::bind (&LuaInstance::unregister_lua_slot, this, p->id()), gui_context());
1452                                 SlotChanged (p->id(), p->name(), p->signals()); /* EMIT SIGNAL */
1453                         } catch (luabridge::LuaException const& e) {
1454                                 cerr << "LuaException:" << e.what () << endl;
1455                         } catch (...) { }
1456                 }
1457         }
1458
1459         return 0;
1460 }
1461
1462 bool
1463 LuaInstance::interactive_add (LuaScriptInfo::ScriptType type, int id)
1464 {
1465         std::string title;
1466         std::string param_function = "action_params";
1467         std::vector<std::string> reg;
1468
1469         switch (type) {
1470                 case LuaScriptInfo::EditorAction:
1471                         reg = lua_action_names ();
1472                         title = _("Add Shortcut or Lua Script");
1473                         break;
1474                 case LuaScriptInfo::EditorHook:
1475                         reg = lua_slot_names ();
1476                         title = _("Add Lua Callback Hook");
1477                         break;
1478                 case LuaScriptInfo::Session:
1479                         if (!_session) {
1480                                 return false;
1481                         }
1482                         reg = _session->registered_lua_functions ();
1483                         title = _("Add Lua Session Script");
1484                         param_function = "sess_params";
1485                         break;
1486                 default:
1487                         return false;
1488         }
1489
1490         LuaScriptInfoPtr spi;
1491         ScriptSelector ss (title, type);
1492         switch (ss.run ()) {
1493                 case Gtk::RESPONSE_ACCEPT:
1494                         spi = ss.script();
1495                         break;
1496                 default:
1497                         return false;
1498         }
1499         ss.hide ();
1500
1501         std::string script = "";
1502
1503         try {
1504                 script = Glib::file_get_contents (spi->path);
1505         } catch (Glib::FileError const& e) {
1506                 string msg = string_compose (_("Cannot read script '%1': %2"), spi->path, e.what());
1507                 Gtk::MessageDialog am (msg);
1508                 am.run ();
1509                 return false;
1510         }
1511
1512         LuaState ls;
1513         register_classes (ls.getState ());
1514         LuaScriptParamList lsp = LuaScriptParams::script_params (ls, spi->path, param_function);
1515
1516         /* allow cancel */
1517         for (size_t i = 0; i < lsp.size(); ++i) {
1518                 if (lsp[i]->preseeded && lsp[i]->name == "x-script-abort") {
1519                         return false;
1520                 }
1521         }
1522
1523         ScriptParameterDialog spd (_("Set Script Parameters"), spi, reg, lsp);
1524
1525         if (spd.need_interation ()) {
1526                 switch (spd.run ()) {
1527                         case Gtk::RESPONSE_ACCEPT:
1528                                 break;
1529                         default:
1530                                 return false;
1531                 }
1532         }
1533
1534         LuaScriptParamPtr lspp (new LuaScriptParam("x-script-origin", "", spi->path, false, true));
1535         lsp.push_back (lspp);
1536
1537         switch (type) {
1538                 case LuaScriptInfo::EditorAction:
1539                         return set_lua_action (id, spd.name(), script, lsp);
1540                         break;
1541                 case LuaScriptInfo::EditorHook:
1542                         return register_lua_slot (spd.name(), script, lsp);
1543                         break;
1544                 case LuaScriptInfo::Session:
1545                         try {
1546                                 _session->register_lua_function (spd.name(), script, lsp);
1547                         } catch (luabridge::LuaException const& e) {
1548                                 string msg = string_compose (_("Session script '%1' instantiation failed: %2"), spd.name(), e.what ());
1549                                 Gtk::MessageDialog am (msg);
1550                                 am.run ();
1551                         } catch (SessionException const& e) {
1552                                 string msg = string_compose (_("Loading Session script '%1' failed: %2"), spd.name(), e.what ());
1553                                 Gtk::MessageDialog am (msg);
1554                                 am.run ();
1555                         } catch (...) {
1556                                 string msg = string_compose (_("Loading Session script '%1' failed: %2"), spd.name(), "Unknown Exception");
1557                                 Gtk::MessageDialog am (msg);
1558                                 am.run ();
1559                         }
1560                 default:
1561                         break;
1562         }
1563         return false;
1564 }
1565
1566 XMLNode&
1567 LuaInstance::get_action_state ()
1568 {
1569         std::string saved;
1570         {
1571                 luabridge::LuaRef savedstate ((*_lua_save)());
1572                 saved = savedstate.cast<std::string>();
1573         }
1574         lua.collect_garbage ();
1575
1576         gchar* b64 = g_base64_encode ((const guchar*)saved.c_str (), saved.size ());
1577         std::string b64s (b64);
1578         g_free (b64);
1579
1580         XMLNode* script_node = new XMLNode (X_("ActionScript"));
1581         script_node->set_property (X_("lua"), LUA_VERSION);
1582         script_node->add_content (b64s);
1583
1584         return *script_node;
1585 }
1586
1587 XMLNode&
1588 LuaInstance::get_hook_state ()
1589 {
1590         XMLNode* script_node = new XMLNode (X_("ActionHooks"));
1591         for (LuaCallbackMap::const_iterator i = _callbacks.begin(); i != _callbacks.end(); ++i) {
1592                 script_node->add_child_nocopy (i->second->get_state ());
1593         }
1594         return *script_node;
1595 }
1596
1597 void
1598 LuaInstance::call_action (const int id)
1599 {
1600         try {
1601                 (*_lua_call_action)(id + 1);
1602                 lua.collect_garbage_step ();
1603         } catch (luabridge::LuaException const& e) {
1604                 cerr << "LuaException:" << e.what () << endl;
1605         } catch (...) { }
1606 }
1607
1608 void
1609 LuaInstance::render_action_icon (cairo_t* cr, int w, int h, uint32_t c, void* i) {
1610         int ii = reinterpret_cast<uintptr_t> (i);
1611         instance()->render_icon (ii, cr, w, h, c);
1612 }
1613
1614 void
1615 LuaInstance::render_icon (int i, cairo_t* cr, int w, int h, uint32_t clr)
1616 {
1617          Cairo::Context ctx (cr);
1618          try {
1619                  (*_lua_render_icon)(i + 1, (Cairo::Context *)&ctx, w, h, clr);
1620          } catch (luabridge::LuaException const& e) {
1621                  cerr << "LuaException:" << e.what () << endl;
1622          } catch (...) { }
1623 }
1624
1625 bool
1626 LuaInstance::set_lua_action (
1627                 const int id,
1628                 const std::string& name,
1629                 const std::string& script,
1630                 const LuaScriptParamList& args)
1631 {
1632         try {
1633                 lua_State* L = lua.getState();
1634                 // get bytcode of factory-function in a sandbox
1635                 // (don't allow scripts to interfere)
1636                 const std::string& bytecode = LuaScripting::get_factory_bytecode (script);
1637                 const std::string& iconfunc = LuaScripting::get_factory_bytecode (script, "icon", "icn");
1638                 luabridge::LuaRef tbl_arg (luabridge::newTable(L));
1639                 for (LuaScriptParamList::const_iterator i = args.begin(); i != args.end(); ++i) {
1640                         if ((*i)->optional && !(*i)->is_set) { continue; }
1641                         tbl_arg[(*i)->name] = (*i)->value;
1642                 }
1643                 (*_lua_add_action)(id + 1, name, script, bytecode, iconfunc, tbl_arg);
1644                 ActionChanged (id, name); /* EMIT SIGNAL */
1645         } catch (luabridge::LuaException const& e) {
1646                 cerr << "LuaException:" << e.what () << endl;
1647                 return false;
1648         } catch (...) {
1649                 return false;
1650         }
1651         set_dirty ();
1652         return true;
1653 }
1654
1655 bool
1656 LuaInstance::remove_lua_action (const int id)
1657 {
1658         try {
1659                 (*_lua_del_action)(id + 1);
1660         } catch (luabridge::LuaException const& e) {
1661                 cerr << "LuaException:" << e.what () << endl;
1662                 return false;
1663         } catch (...) {
1664                 return false;
1665         }
1666         ActionChanged (id, ""); /* EMIT SIGNAL */
1667         set_dirty ();
1668         return true;
1669 }
1670
1671 bool
1672 LuaInstance::lua_action_name (const int id, std::string& rv)
1673 {
1674         try {
1675                 luabridge::LuaRef ref ((*_lua_get_action)(id + 1));
1676                 if (ref.isNil()) {
1677                         return false;
1678                 }
1679                 if (ref["name"].isString()) {
1680                         rv = ref["name"].cast<std::string>();
1681                         return true;
1682                 }
1683                 return true;
1684         } catch (luabridge::LuaException const& e) {
1685                 cerr << "LuaException:" << e.what () << endl;
1686         } catch (...) { }
1687         return false;
1688 }
1689
1690 std::vector<std::string>
1691 LuaInstance::lua_action_names ()
1692 {
1693         std::vector<std::string> rv;
1694         for (int i = 0; i < MAX_LUA_ACTION_SCRIPTS; ++i) {
1695                 std::string name;
1696                 if (lua_action_name (i, name)) {
1697                         rv.push_back (name);
1698                 }
1699         }
1700         return rv;
1701 }
1702
1703 bool
1704 LuaInstance::lua_action_has_icon (const int id)
1705 {
1706         try {
1707                 luabridge::LuaRef ref ((*_lua_get_action)(id + 1));
1708                 if (ref.isNil()) {
1709                         return false;
1710                 }
1711                 if (ref["icon"].isBoolean()) {
1712                         return ref["icon"].cast<bool>();
1713                 }
1714         } catch (luabridge::LuaException const& e) {
1715                 cerr << "LuaException:" << e.what () << endl;
1716         } catch (...) { }
1717         return false;
1718 }
1719
1720 bool
1721 LuaInstance::lua_action (const int id, std::string& name, std::string& script, LuaScriptParamList& args)
1722 {
1723         try {
1724                 luabridge::LuaRef ref ((*_lua_get_action)(id + 1));
1725                 if (ref.isNil()) {
1726                         return false;
1727                 }
1728                 if (!ref["name"].isString()) {
1729                         return false;
1730                 }
1731                 if (!ref["script"].isString()) {
1732                         return false;
1733                 }
1734                 if (!ref["args"].isTable()) {
1735                         return false;
1736                 }
1737                 name = ref["name"].cast<std::string>();
1738                 script = ref["script"].cast<std::string>();
1739
1740                 args.clear();
1741                 LuaScriptInfoPtr lsi = LuaScripting::script_info (script);
1742                 if (!lsi) {
1743                         return false;
1744                 }
1745                 args = LuaScriptParams::script_params (lsi, "action_params");
1746                 luabridge::LuaRef rargs (ref["args"]);
1747                 LuaScriptParams::ref_to_params (args, &rargs);
1748                 return true;
1749         } catch (luabridge::LuaException const& e) {
1750                 cerr << "LuaException:" << e.what () << endl;
1751         } catch (...) { }
1752         return false;
1753 }
1754
1755 bool
1756 LuaInstance::register_lua_slot (const std::string& name, const std::string& script, const ARDOUR::LuaScriptParamList& args)
1757 {
1758         /* parse script, get ActionHook(s) from script */
1759         ActionHook ah;
1760         try {
1761                 LuaState l;
1762                 l.Print.connect (&_lua_print);
1763                 l.sandbox (true);
1764                 lua_State* L = l.getState();
1765                 register_hooks (L);
1766                 l.do_command ("function ardour () end");
1767                 l.do_command (script);
1768                 luabridge::LuaRef signals = luabridge::getGlobal (L, "signals");
1769                 if (signals.isFunction()) {
1770                         ah = signals();
1771                 }
1772         } catch (luabridge::LuaException const& e) {
1773                 cerr << "LuaException:" << e.what () << endl;
1774         } catch (...) { }
1775
1776         if (ah.none ()) {
1777                 cerr << "Script registered no hooks." << endl;
1778                 return false;
1779         }
1780
1781         /* register script w/args, get entry-point / ID */
1782
1783         try {
1784                 LuaCallbackPtr p (new LuaCallback (_session, name, script, ah, args));
1785                 _callbacks.insert (std::make_pair(p->id(), p));
1786                 p->drop_callback.connect (_slotcon, MISSING_INVALIDATOR, boost::bind (&LuaInstance::unregister_lua_slot, this, p->id()), gui_context());
1787                 SlotChanged (p->id(), p->name(), p->signals()); /* EMIT SIGNAL */
1788                 set_dirty ();
1789                 return true;
1790         } catch (luabridge::LuaException const& e) {
1791                 cerr << "LuaException:" << e.what () << endl;
1792         } catch (...) { }
1793         return false;
1794 }
1795
1796 bool
1797 LuaInstance::unregister_lua_slot (const PBD::ID& id)
1798 {
1799         LuaCallbackMap::iterator i = _callbacks.find (id);
1800         if (i != _callbacks.end()) {
1801                 SlotChanged (id, "", ActionHook()); /* EMIT SIGNAL */
1802                 _callbacks.erase (i);
1803                 set_dirty ();
1804                 return true;
1805         }
1806         return false;
1807 }
1808
1809 std::vector<PBD::ID>
1810 LuaInstance::lua_slots () const
1811 {
1812         std::vector<PBD::ID> rv;
1813         for (LuaCallbackMap::const_iterator i = _callbacks.begin(); i != _callbacks.end(); ++i) {
1814                 rv.push_back (i->first);
1815         }
1816         return rv;
1817 }
1818
1819 bool
1820 LuaInstance::lua_slot_name (const PBD::ID& id, std::string& name) const
1821 {
1822         LuaCallbackMap::const_iterator i = _callbacks.find (id);
1823         if (i != _callbacks.end()) {
1824                 name = i->second->name();
1825                 return true;
1826         }
1827         return false;
1828 }
1829
1830 std::vector<std::string>
1831 LuaInstance::lua_slot_names () const
1832 {
1833         std::vector<std::string> rv;
1834         std::vector<PBD::ID> ids = lua_slots();
1835         for (std::vector<PBD::ID>::const_iterator i = ids.begin(); i != ids.end(); ++i) {
1836                 std::string name;
1837                 if (lua_slot_name (*i, name)) {
1838                         rv.push_back (name);
1839                 }
1840         }
1841         return rv;
1842 }
1843
1844 bool
1845 LuaInstance::lua_slot (const PBD::ID& id, std::string& name, std::string& script, ActionHook& ah, ARDOUR::LuaScriptParamList& args)
1846 {
1847         LuaCallbackMap::const_iterator i = _callbacks.find (id);
1848         if (i == _callbacks.end()) {
1849                 return false; // error
1850         }
1851         return i->second->lua_slot (name, script, ah, args);
1852 }
1853
1854 ///////////////////////////////////////////////////////////////////////////////
1855
1856 LuaCallback::LuaCallback (Session *s,
1857                 const std::string& name,
1858                 const std::string& script,
1859                 const ActionHook& ah,
1860                 const ARDOUR::LuaScriptParamList& args)
1861         : SessionHandlePtr (s)
1862         , _id ("0")
1863         , _name (name)
1864         , _signals (ah)
1865 {
1866         // TODO: allow to reference object (e.g region)
1867         init ();
1868
1869         lua_State* L = lua.getState();
1870         luabridge::LuaRef tbl_arg (luabridge::newTable(L));
1871         for (LuaScriptParamList::const_iterator i = args.begin(); i != args.end(); ++i) {
1872                 if ((*i)->optional && !(*i)->is_set) { continue; }
1873                 tbl_arg[(*i)->name] = (*i)->value;
1874         }
1875
1876         try {
1877                 const std::string& bytecode = LuaScripting::get_factory_bytecode (script);
1878                 (*_lua_add)(name, script, bytecode, tbl_arg);
1879         } catch (luabridge::LuaException const& e) {
1880                 cerr << "LuaException:" << e.what () << endl;
1881                 throw failed_constructor ();
1882         } catch (...) {
1883                 throw failed_constructor ();
1884         }
1885
1886         _id.reset ();
1887         set_session (s);
1888 }
1889
1890 LuaCallback::LuaCallback (Session *s, XMLNode & node)
1891         : SessionHandlePtr (s)
1892 {
1893         XMLNode* child = NULL;
1894         if (node.name() != X_("LuaCallback")
1895                         || !node.property ("signals")
1896                         || !node.property ("id")
1897                         || !node.property ("name")) {
1898                 throw failed_constructor ();
1899         }
1900
1901         for (XMLNodeList::const_iterator n = node.children ().begin (); n != node.children ().end (); ++n) {
1902                 if (!(*n)->is_content ()) { continue; }
1903                 child = *n;
1904         }
1905
1906         if (!child) {
1907                 throw failed_constructor ();
1908         }
1909
1910         init ();
1911
1912         _id = PBD::ID (node.property ("id")->value ());
1913         _name = node.property ("name")->value ();
1914         _signals = ActionHook (node.property ("signals")->value ());
1915
1916         gsize size;
1917         guchar* buf = g_base64_decode (child->content ().c_str (), &size);
1918         try {
1919                 (*_lua_load)(std::string ((const char*)buf, size));
1920         } catch (luabridge::LuaException const& e) {
1921                 cerr << "LuaException:" << e.what () << endl;
1922         } catch (...) { }
1923         g_free (buf);
1924
1925         set_session (s);
1926 }
1927
1928 LuaCallback::~LuaCallback ()
1929 {
1930         delete _lua_add;
1931         delete _lua_get;
1932         delete _lua_call;
1933         delete _lua_load;
1934         delete _lua_save;
1935 }
1936
1937 XMLNode&
1938 LuaCallback::get_state (void)
1939 {
1940         std::string saved;
1941         {
1942                 luabridge::LuaRef savedstate ((*_lua_save)());
1943                 saved = savedstate.cast<std::string>();
1944         }
1945
1946         lua.collect_garbage (); // this may be expensive:
1947         /* Editor::instant_save() calls Editor::get_state() which
1948          * calls LuaInstance::get_hook_state() which in turn calls
1949          * this LuaCallback::get_state() for every registered hook.
1950          *
1951          * serialize in _lua_save() allocates many small strings
1952          * on the lua-stack, collecting them all may take a ms.
1953          */
1954
1955         gchar* b64 = g_base64_encode ((const guchar*)saved.c_str (), saved.size ());
1956         std::string b64s (b64);
1957         g_free (b64);
1958
1959         XMLNode* script_node = new XMLNode (X_("LuaCallback"));
1960         script_node->set_property (X_("lua"), LUA_VERSION);
1961         script_node->set_property (X_("id"), _id.to_s ());
1962         script_node->set_property (X_("name"), _name);
1963         script_node->set_property (X_("signals"), _signals.to_string ());
1964         script_node->add_content (b64s);
1965         return *script_node;
1966 }
1967
1968 void
1969 LuaCallback::init (void)
1970 {
1971         lua.Print.connect (&_lua_print);
1972         lua.sandbox (false);
1973
1974         lua.do_command (
1975                         "function ScriptManager ()"
1976                         "  local self = { script = {}, instance = {} }"
1977                         ""
1978                         "  local addinternal = function (n, s, f, a)"
1979                         "   assert(type(n) == 'string', 'Name must be string')"
1980                         "   assert(type(s) == 'string', 'Script must be string')"
1981                         "   assert(type(f) == 'function', 'Factory is a not a function')"
1982                         "   assert(type(a) == 'table' or type(a) == 'nil', 'Given argument is invalid')"
1983                         "   self.script = { ['n'] = n, ['s'] = s, ['f'] = f, ['a'] = a }"
1984                         "   local env = _ENV; env.f = nil"
1985                         "   self.instance = load (string.dump(f, true), nil, nil, env)(a)"
1986                         "  end"
1987                         ""
1988                         "  local call = function (...)"
1989                         "   if type(self.instance) == 'function' then"
1990                         "     local status, err = pcall (self.instance, ...)"
1991                         "     if not status then"
1992                         "       print ('callback \"'.. self.script['n'] .. '\": ', err)" // error out
1993                         "       self.script = nil"
1994                         "       self.instance = nil"
1995                         "       return false"
1996                         "     end"
1997                         "   end"
1998                         "   collectgarbage()"
1999                         "   return true"
2000                         "  end"
2001                         ""
2002                         "  local add = function (n, s, b, a)"
2003                         "   assert(type(b) == 'string', 'ByteCode must be string')"
2004                         "   load (b)()" // assigns f
2005                         "   assert(type(f) == 'string', 'Assigned ByteCode must be string')"
2006                         "   addinternal (n, s, load(f), a)"
2007                         "  end"
2008                         ""
2009                         "  local get = function ()"
2010                         "   if type(self.instance) == 'function' and type(self.script['n']) == 'string' then"
2011                         "    return { ['name'] = self.script['n'],"
2012                         "             ['script'] = self.script['s'],"
2013                         "             ['args'] = self.script['a'] }"
2014                         "   end"
2015                         "   return nil"
2016                         "  end"
2017                         ""
2018                         // code dup
2019                         ""
2020                         "  local function basic_serialize (o)"
2021                         "    if type(o) == \"number\" then"
2022                         "     return tostring(o)"
2023                         "    else"
2024                         "     return string.format(\"%q\", o)"
2025                         "    end"
2026                         "  end"
2027                         ""
2028                         "  local function serialize (name, value)"
2029                         "   local rv = name .. ' = '"
2030                         "   if type(value) == \"number\" or type(value) == \"string\" or type(value) == \"nil\" then"
2031                         "    return rv .. basic_serialize(value) .. ' '"
2032                         "   elseif type(value) == \"table\" then"
2033                         "    rv = rv .. '{} '"
2034                         "    for k,v in pairs(value) do"
2035                         "     local fieldname = string.format(\"%s[%s]\", name, basic_serialize(k))"
2036                         "     rv = rv .. serialize(fieldname, v) .. ' '"
2037                         "    end"
2038                         "    return rv;"
2039                         "   elseif type(value) == \"function\" then"
2040                         "     return rv .. string.format(\"%q\", string.dump(value, true))"
2041                         "   elseif type(value) == \"boolean\" then"
2042                         "     return rv .. tostring (value)"
2043                         "   else"
2044                         "    error('cannot save a ' .. type(value))"
2045                         "   end"
2046                         "  end"
2047                         ""
2048                         // end code dup
2049                         ""
2050                         "  local save = function ()"
2051                         "   return (serialize('s', self.script))"
2052                         "  end"
2053                         ""
2054                         "  local restore = function (state)"
2055                         "   self.script = {}"
2056                         "   load (state)()"
2057                         "   addinternal (s['n'], s['s'], load(s['f']), s['a'])"
2058                         "  end"
2059                         ""
2060                         " return { call = call, add = add, get = get,"
2061                         "          restore = restore, save = save}"
2062                         " end"
2063                         " "
2064                         " manager = ScriptManager ()"
2065                         " ScriptManager = nil"
2066                         );
2067
2068         lua_State* L = lua.getState();
2069
2070         try {
2071                 luabridge::LuaRef lua_mgr = luabridge::getGlobal (L, "manager");
2072                 lua.do_command ("manager = nil"); // hide it.
2073                 lua.do_command ("collectgarbage()");
2074
2075                 _lua_add = new luabridge::LuaRef(lua_mgr["add"]);
2076                 _lua_get = new luabridge::LuaRef(lua_mgr["get"]);
2077                 _lua_call = new luabridge::LuaRef(lua_mgr["call"]);
2078                 _lua_save = new luabridge::LuaRef(lua_mgr["save"]);
2079                 _lua_load = new luabridge::LuaRef(lua_mgr["restore"]);
2080
2081         } catch (luabridge::LuaException const& e) {
2082                 fatal << string_compose (_("programming error: %1"),
2083                                 std::string ("Failed to setup Lua callback interpreter: ") + e.what ())
2084                         << endmsg;
2085                 abort(); /*NOTREACHED*/
2086         } catch (...) {
2087                 fatal << string_compose (_("programming error: %1"),
2088                                 X_("Failed to setup Lua callback interpreter"))
2089                         << endmsg;
2090                 abort(); /*NOTREACHED*/
2091         }
2092
2093         LuaInstance::register_classes (L);
2094         LuaInstance::register_hooks (L);
2095
2096         luabridge::push <PublicEditor *> (L, &PublicEditor::instance());
2097         lua_setglobal (L, "Editor");
2098 }
2099
2100 bool
2101 LuaCallback::lua_slot (std::string& name, std::string& script, ActionHook& ah, ARDOUR::LuaScriptParamList& args)
2102 {
2103         // TODO consolidate w/ LuaInstance::lua_action()
2104         try {
2105                 luabridge::LuaRef ref = (*_lua_get)();
2106                 if (ref.isNil()) {
2107                         return false;
2108                 }
2109                 if (!ref["name"].isString()) {
2110                         return false;
2111                 }
2112                 if (!ref["script"].isString()) {
2113                         return false;
2114                 }
2115                 if (!ref["args"].isTable()) {
2116                         return false;
2117                 }
2118
2119                 ah = _signals;
2120                 name = ref["name"].cast<std::string> ();
2121                 script = ref["script"].cast<std::string> ();
2122
2123                 args.clear();
2124                 LuaScriptInfoPtr lsi = LuaScripting::script_info (script);
2125                 if (!lsi) {
2126                         return false;
2127                 }
2128                 args = LuaScriptParams::script_params (lsi, "action_params");
2129                 luabridge::LuaRef rargs (ref["args"]);
2130                 LuaScriptParams::ref_to_params (args, &rargs);
2131                 return true;
2132         } catch (luabridge::LuaException const& e) {
2133                 cerr << "LuaException:" << e.what () << endl;
2134                 return false;
2135         } catch (...) { }
2136         return false;
2137 }
2138
2139 void
2140 LuaCallback::set_session (ARDOUR::Session *s)
2141 {
2142         SessionHandlePtr::set_session (s);
2143
2144         if (!_session) {
2145                 return;
2146         }
2147
2148         lua_State* L = lua.getState();
2149         LuaBindings::set_session (L, _session);
2150
2151         reconnect();
2152 }
2153
2154 void
2155 LuaCallback::session_going_away ()
2156 {
2157         ENSURE_GUI_THREAD (*this, &LuaCallback::session_going_away);
2158         lua.do_command ("collectgarbage();");
2159
2160         SessionHandlePtr::session_going_away ();
2161         _session = 0;
2162
2163         drop_callback (); /* EMIT SIGNAL */
2164 }
2165
2166 void
2167 LuaCallback::reconnect ()
2168 {
2169         _connections.drop_connections ();
2170         if ((*_lua_get) ().isNil ()) {
2171                 drop_callback (); /* EMIT SIGNAL */
2172                 return;
2173         }
2174
2175         // TODO pass object which emits the signal (e.g region)
2176         //
2177         // save/load bound objects will be tricky.
2178         // Best idea so far is to save/lookup the PBD::ID
2179         // (either use boost::any indirection or templates for bindable
2180         // object types or a switch statement..)
2181         //
2182         // _session->route_by_id ()
2183         // _session->track_by_diskstream_id ()
2184         // _session->source_by_id ()
2185         // _session->controllable_by_id ()
2186         // _session->processor_by_id ()
2187         // RegionFactory::region_by_id ()
2188         //
2189         // TODO loop over objects (if any)
2190
2191         reconnect_object ((void*)0);
2192 }
2193
2194 template <class T> void
2195 LuaCallback::reconnect_object (T obj)
2196 {
2197         for (uint32_t i = 0; i < LuaSignal::LAST_SIGNAL; ++i) {
2198                 if (_signals[i]) {
2199 #define ENGINE(n,c,p) else if (i == LuaSignal::n) { connect_ ## p (LuaSignal::n, AudioEngine::instance(), &(AudioEngine::instance()->c)); }
2200 #define SESSION(n,c,p) else if (i == LuaSignal::n) { if (_session) { connect_ ## p (LuaSignal::n, _session, &(_session->c)); } }
2201 #define STATIC(n,c,p) else if (i == LuaSignal::n) { connect_ ## p (LuaSignal::n, obj, c); }
2202                         if (0) {}
2203 #                       include "luasignal_syms.h"
2204                         else {
2205                                 PBD::fatal << string_compose (_("programming error: %1: %2"), "Impossible LuaSignal type", i) << endmsg;
2206                                 abort(); /*NOTREACHED*/
2207                         }
2208 #undef ENGINE
2209 #undef SESSION
2210 #undef STATIC
2211                 }
2212         }
2213 }
2214
2215 template <typename T, typename S> void
2216 LuaCallback::connect_0 (enum LuaSignal::LuaSignal ls, T ref, S *signal) {
2217         signal->connect (
2218                         _connections, invalidator (*this),
2219                         boost::bind (&LuaCallback::proxy_0<T>, this, ls, ref),
2220                         gui_context());
2221 }
2222
2223 template <typename T, typename C1> void
2224 LuaCallback::connect_1 (enum LuaSignal::LuaSignal ls, T ref, PBD::Signal1<void, C1> *signal) {
2225         signal->connect (
2226                         _connections, invalidator (*this),
2227                         boost::bind (&LuaCallback::proxy_1<T, C1>, this, ls, ref, _1),
2228                         gui_context());
2229 }
2230
2231 template <typename T, typename C1, typename C2> void
2232 LuaCallback::connect_2 (enum LuaSignal::LuaSignal ls, T ref, PBD::Signal2<void, C1, C2> *signal) {
2233         signal->connect (
2234                         _connections, invalidator (*this),
2235                         boost::bind (&LuaCallback::proxy_2<T, C1, C2>, this, ls, ref, _1, _2),
2236                         gui_context());
2237 }
2238
2239 template <typename T, typename C1, typename C2, typename C3> void
2240 LuaCallback::connect_3 (enum LuaSignal::LuaSignal ls, T ref, PBD::Signal3<void, C1, C2, C3> *signal) {
2241         signal->connect (
2242                         _connections, invalidator (*this),
2243                         boost::bind (&LuaCallback::proxy_3<T, C1, C2, C3>, this, ls, ref, _1, _2, _3),
2244                         gui_context());
2245 }
2246
2247 template <typename T> void
2248 LuaCallback::proxy_0 (enum LuaSignal::LuaSignal ls, T ref) {
2249         bool ok = true;
2250         {
2251                 const luabridge::LuaRef& rv ((*_lua_call)((int)ls, ref));
2252                 if (! rv.cast<bool> ()) {
2253                         ok = false;
2254                 }
2255         }
2256         /* destroy LuaRef ^^ first before calling drop_callback() */
2257         if (!ok) {
2258                 drop_callback (); /* EMIT SIGNAL */
2259         }
2260 }
2261
2262 template <typename T, typename C1> void
2263 LuaCallback::proxy_1 (enum LuaSignal::LuaSignal ls, T ref, C1 a1) {
2264         bool ok = true;
2265         {
2266                 const luabridge::LuaRef& rv ((*_lua_call)((int)ls, ref, a1));
2267                 if (! rv.cast<bool> ()) {
2268                         ok = false;
2269                 }
2270         }
2271         if (!ok) {
2272                 drop_callback (); /* EMIT SIGNAL */
2273         }
2274 }
2275
2276 template <typename T, typename C1, typename C2> void
2277 LuaCallback::proxy_2 (enum LuaSignal::LuaSignal ls, T ref, C1 a1, C2 a2) {
2278         bool ok = true;
2279         {
2280                 const luabridge::LuaRef& rv ((*_lua_call)((int)ls, ref, a1, a2));
2281                 if (! rv.cast<bool> ()) {
2282                         ok = false;
2283                 }
2284         }
2285         if (!ok) {
2286                 drop_callback (); /* EMIT SIGNAL */
2287         }
2288 }
2289
2290 template <typename T, typename C1, typename C2, typename C3> void
2291 LuaCallback::proxy_3 (enum LuaSignal::LuaSignal ls, T ref, C1 a1, C2 a2, C3 a3) {
2292         bool ok = true;
2293         {
2294                 const luabridge::LuaRef& rv ((*_lua_call)((int)ls, ref, a1, a2, a3));
2295                 if (! rv.cast<bool> ()) {
2296                         ok = false;
2297                 }
2298         }
2299         if (!ok) {
2300                 drop_callback (); /* EMIT SIGNAL */
2301         }
2302 }