Fix Lua Pangolayout ellipsis width
[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 (float 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                 .beginClass <LuaDialog::ProgressWindow> ("ProgressWindow")
762                 .addConstructor <void (*) (std::string const&, bool)> ()
763                 .addFunction ("progress", &LuaDialog::ProgressWindow::progress)
764                 .addFunction ("done", &LuaDialog::ProgressWindow::done)
765                 .addFunction ("canceled", &LuaDialog::ProgressWindow::canceled)
766                 .endClass ()
767
768                 .endNamespace ();
769 }
770
771 void
772 LuaInstance::register_classes (lua_State* L)
773 {
774         LuaBindings::stddef (L);
775         LuaBindings::common (L);
776         LuaBindings::session (L);
777         LuaBindings::osc (L);
778
779         bind_cairo (L);
780         bind_dialog (L);
781
782         luabridge::getGlobalNamespace (L)
783                 .beginNamespace ("ArdourUI")
784
785                 .addFunction ("http_get", &http_get_unlogged)
786
787                 .addFunction ("mixer_screenshot", &mixer_screenshot)
788
789                 .addFunction ("processor_selection", &LuaMixer::processor_selection)
790
791                 .beginStdCPtrList <ArdourMarker> ("ArdourMarkerList")
792                 .endClass ()
793
794                 .beginClass <ArdourMarker> ("ArdourMarker")
795                 .addFunction ("name", &ArdourMarker::name)
796                 .addFunction ("position", &ArdourMarker::position)
797                 .addFunction ("_type", &ArdourMarker::type)
798                 .endClass ()
799
800                 .beginClass <AxisView> ("AxisView")
801                 .endClass ()
802
803                 .deriveClass <TimeAxisView, AxisView> ("TimeAxisView")
804                 .addFunction ("order", &TimeAxisView::order)
805                 .addFunction ("y_position", &TimeAxisView::y_position)
806                 .addFunction ("effective_height", &TimeAxisView::effective_height)
807                 .addFunction ("current_height", &TimeAxisView::current_height)
808                 .addFunction ("set_height", &TimeAxisView::set_height)
809                 .endClass ()
810
811                 .deriveClass <StripableTimeAxisView, TimeAxisView> ("StripableTimeAxisView")
812                 .endClass ()
813
814                 .beginClass <Selectable> ("Selectable")
815                 .endClass ()
816
817                 .deriveClass <TimeAxisViewItem, Selectable> ("TimeAxisViewItem")
818                 .endClass ()
819
820                 .deriveClass <RegionView, TimeAxisViewItem> ("RegionView")
821                 .endClass ()
822
823                 .deriveClass <RouteUI, Selectable> ("RouteUI")
824                 .endClass ()
825
826                 .deriveClass <RouteTimeAxisView, RouteUI> ("RouteTimeAxisView")
827                 .addCast<StripableTimeAxisView> ("to_stripabletimeaxisview")
828                 .addCast<TimeAxisView> ("to_timeaxisview") // deprecated
829                 .endClass ()
830
831                 // std::list<Selectable*>
832                 .beginStdCPtrList <Selectable> ("SelectionList")
833                 .endClass ()
834
835                 // std::list<TimeAxisView*>
836                 .beginConstStdCPtrList <TimeAxisView> ("TrackViewStdList")
837                 .endClass ()
838
839
840                 .beginClass <RegionSelection> ("RegionSelection")
841                 .addFunction ("start", &RegionSelection::start)
842                 .addFunction ("end_sample", &RegionSelection::end_sample)
843                 .addFunction ("n_midi_regions", &RegionSelection::n_midi_regions)
844                 .addFunction ("regionlist", &RegionSelection::regionlist) // XXX check windows binding (libardour)
845                 .endClass ()
846
847                 .deriveClass <TimeSelection, std::list<ARDOUR::AudioRange> > ("TimeSelection")
848                 .addFunction ("start", &TimeSelection::start)
849                 .addFunction ("end_sample", &TimeSelection::end_sample)
850                 .addFunction ("length", &TimeSelection::length)
851                 .endClass ()
852
853                 .deriveClass <MarkerSelection, std::list<ArdourMarker*> > ("MarkerSelection")
854                 .endClass ()
855
856                 .beginClass <TrackViewList> ("TrackViewList")
857                 .addCast<std::list<TimeAxisView*> > ("to_tav_list")
858                 .addFunction ("contains", &TrackViewList::contains)
859                 .addFunction ("routelist", &TrackViewList::routelist)
860                 .endClass ()
861
862                 .deriveClass <TrackSelection, TrackViewList> ("TrackSelection")
863                 .endClass ()
864
865                 .beginClass <Selection> ("Selection")
866                 .addFunction ("clear", &Selection::clear)
867                 .addFunction ("clear_all", &Selection::clear_all)
868                 .addFunction ("empty", &Selection::empty)
869                 .addData ("tracks", &Selection::tracks)
870                 .addData ("regions", &Selection::regions)
871                 .addData ("time", &Selection::time)
872                 .addData ("markers", &Selection::markers)
873 #if 0
874                 .addData ("lines", &Selection::lines)
875                 .addData ("playlists", &Selection::playlists)
876                 .addData ("points", &Selection::points)
877                 .addData ("midi_regions", &Selection::midi_regions)
878                 .addData ("midi_notes", &Selection::midi_notes) // cut buffer only
879 #endif
880                 .endClass ()
881
882                 .beginClass <PublicEditor> ("Editor")
883                 .addFunction ("grid_type", &PublicEditor::grid_type)
884                 .addFunction ("snap_mode", &PublicEditor::snap_mode)
885                 .addFunction ("set_snap_mode", &PublicEditor::set_snap_mode)
886
887                 .addFunction ("undo", &PublicEditor::undo)
888                 .addFunction ("redo", &PublicEditor::redo)
889
890                 .addFunction ("set_mouse_mode", &PublicEditor::set_mouse_mode)
891                 .addFunction ("current_mouse_mode", &PublicEditor::current_mouse_mode)
892
893                 .addFunction ("consider_auditioning", &PublicEditor::consider_auditioning)
894
895                 .addFunction ("new_region_from_selection", &PublicEditor::new_region_from_selection)
896                 .addFunction ("separate_region_from_selection", &PublicEditor::separate_region_from_selection)
897                 .addFunction ("pixel_to_sample", &PublicEditor::pixel_to_sample)
898                 .addFunction ("sample_to_pixel", &PublicEditor::sample_to_pixel)
899
900                 .addFunction ("get_selection", &PublicEditor::get_selection)
901                 .addFunction ("get_cut_buffer", &PublicEditor::get_cut_buffer)
902                 .addRefFunction ("get_selection_extents", &PublicEditor::get_selection_extents)
903
904                 .addFunction ("set_selection", &PublicEditor::set_selection)
905
906                 .addFunction ("play_selection", &PublicEditor::play_selection)
907                 .addFunction ("play_with_preroll", &PublicEditor::play_with_preroll)
908                 .addFunction ("maybe_locate_with_edit_preroll", &PublicEditor::maybe_locate_with_edit_preroll)
909                 .addFunction ("goto_nth_marker", &PublicEditor::goto_nth_marker)
910
911                 .addFunction ("add_location_from_playhead_cursor", &PublicEditor::add_location_from_playhead_cursor)
912                 .addFunction ("remove_location_at_playhead_cursor", &PublicEditor::remove_location_at_playhead_cursor)
913
914                 .addFunction ("update_grid", &PublicEditor::update_grid)
915                 .addFunction ("remove_tracks", &PublicEditor::remove_tracks)
916
917                 .addFunction ("set_loop_range", &PublicEditor::set_loop_range)
918                 .addFunction ("set_punch_range", &PublicEditor::set_punch_range)
919
920                 .addFunction ("effective_mouse_mode", &PublicEditor::effective_mouse_mode)
921
922                 .addRefFunction ("do_import", &PublicEditor::do_import)
923                 .addRefFunction ("do_embed", &PublicEditor::do_embed)
924
925                 .addFunction ("export_audio", &PublicEditor::export_audio)
926                 .addFunction ("stem_export", &PublicEditor::stem_export)
927                 .addFunction ("export_selection", &PublicEditor::export_selection)
928                 .addFunction ("export_range", &PublicEditor::export_range)
929
930                 .addFunction ("set_zoom_focus", &PublicEditor::set_zoom_focus)
931                 .addFunction ("get_zoom_focus", &PublicEditor::get_zoom_focus)
932                 .addFunction ("get_current_zoom", &PublicEditor::get_current_zoom)
933                 .addFunction ("reset_zoom", &PublicEditor::reset_zoom)
934
935                 .addFunction ("clear_playlist", &PublicEditor::clear_playlist)
936                 .addFunction ("new_playlists", &PublicEditor::new_playlists)
937                 .addFunction ("copy_playlists", &PublicEditor::copy_playlists)
938                 .addFunction ("clear_playlists", &PublicEditor::clear_playlists)
939
940                 .addFunction ("select_all_tracks", &PublicEditor::select_all_tracks)
941                 .addFunction ("deselect_all", &PublicEditor::deselect_all)
942
943 #if 0 // TimeAxisView&  can't be bound (pure virtual fn)
944                 .addFunction ("set_selected_track", &PublicEditor::set_selected_track)
945                 .addFunction ("set_selected_mixer_strip", &PublicEditor::set_selected_mixer_strip)
946                 .addFunction ("ensure_time_axis_view_is_visible", &PublicEditor::ensure_time_axis_view_is_visible)
947 #endif
948                 .addFunction ("hide_track_in_display", &PublicEditor::hide_track_in_display)
949                 .addFunction ("show_track_in_display", &PublicEditor::show_track_in_display)
950                 .addFunction ("set_visible_track_count", &PublicEditor::set_visible_track_count)
951                 .addFunction ("fit_selection", &PublicEditor::fit_selection)
952
953                 .addFunction ("regionview_from_region", &PublicEditor::regionview_from_region)
954                 .addFunction ("set_stationary_playhead", &PublicEditor::set_stationary_playhead)
955                 .addFunction ("stationary_playhead", &PublicEditor::stationary_playhead)
956                 .addFunction ("set_follow_playhead", &PublicEditor::set_follow_playhead)
957                 .addFunction ("follow_playhead", &PublicEditor::follow_playhead)
958
959                 .addFunction ("dragging_playhead", &PublicEditor::dragging_playhead)
960                 .addFunction ("leftmost_sample", &PublicEditor::leftmost_sample)
961                 .addFunction ("current_page_samples", &PublicEditor::current_page_samples)
962                 .addFunction ("visible_canvas_height", &PublicEditor::visible_canvas_height)
963                 .addFunction ("temporal_zoom_step", &PublicEditor::temporal_zoom_step)
964                 .addFunction ("override_visible_track_count", &PublicEditor::override_visible_track_count)
965
966                 .addFunction ("scroll_tracks_down_line", &PublicEditor::scroll_tracks_down_line)
967                 .addFunction ("scroll_tracks_up_line", &PublicEditor::scroll_tracks_up_line)
968                 .addFunction ("scroll_down_one_track", &PublicEditor::scroll_down_one_track)
969                 .addFunction ("scroll_up_one_track", &PublicEditor::scroll_up_one_track)
970
971                 .addFunction ("reset_x_origin", &PublicEditor::reset_x_origin)
972                 .addFunction ("get_y_origin", &PublicEditor::get_y_origin)
973                 .addFunction ("reset_y_origin", &PublicEditor::reset_y_origin)
974
975                 .addFunction ("remove_last_capture", &PublicEditor::remove_last_capture)
976
977                 .addFunction ("maximise_editing_space", &PublicEditor::maximise_editing_space)
978                 .addFunction ("restore_editing_space", &PublicEditor::restore_editing_space)
979                 .addFunction ("toggle_meter_updating", &PublicEditor::toggle_meter_updating)
980
981                 //.addFunction ("get_preferred_edit_position", &PublicEditor::get_preferred_edit_position)
982                 //.addFunction ("split_regions_at", &PublicEditor::split_regions_at)
983
984                 .addRefFunction ("get_nudge_distance", &PublicEditor::get_nudge_distance)
985                 .addFunction ("get_paste_offset", &PublicEditor::get_paste_offset)
986                 .addFunction ("get_grid_beat_divisions", &PublicEditor::get_grid_beat_divisions)
987                 .addRefFunction ("get_grid_type_as_beats", &PublicEditor::get_grid_type_as_beats)
988
989                 .addFunction ("toggle_ruler_video", &PublicEditor::toggle_ruler_video)
990                 .addFunction ("toggle_xjadeo_proc", &PublicEditor::toggle_xjadeo_proc)
991                 .addFunction ("get_videotl_bar_height", &PublicEditor::get_videotl_bar_height)
992                 .addFunction ("set_video_timeline_height", &PublicEditor::set_video_timeline_height)
993
994 #if 0
995                 .addFunction ("get_equivalent_regions", &PublicEditor::get_equivalent_regions)
996                 .addFunction ("drags", &PublicEditor::drags)
997 #endif
998
999                 .addFunction ("get_stripable_time_axis_by_id", &PublicEditor::get_stripable_time_axis_by_id)
1000                 .addFunction ("get_track_views", &PublicEditor::get_track_views)
1001                 .addFunction ("rtav_from_route", &PublicEditor::rtav_from_route)
1002                 .addFunction ("axis_views_from_routes", &PublicEditor::axis_views_from_routes)
1003
1004                 .addFunction ("center_screen", &PublicEditor::center_screen)
1005
1006                 .addFunction ("get_smart_mode", &PublicEditor::get_smart_mode)
1007                 .addRefFunction ("get_pointer_position", &PublicEditor::get_pointer_position)
1008
1009                 .addRefFunction ("find_location_from_marker", &PublicEditor::find_location_from_marker)
1010                 .addFunction ("find_marker_from_location_id", &PublicEditor::find_marker_from_location_id)
1011                 .addFunction ("mouse_add_new_marker", &PublicEditor::mouse_add_new_marker)
1012 #if 0
1013                 .addFunction ("get_regions_at", &PublicEditor::get_regions_at)
1014                 .addFunction ("get_regions_after", &PublicEditor::get_regions_after)
1015                 .addFunction ("get_regions_from_selection_and_mouse", &PublicEditor::get_regions_from_selection_and_mouse)
1016                 .addFunction ("get_regionviews_by_id", &PublicEditor::get_regionviews_by_id)
1017                 .addFunction ("get_per_region_note_selection", &PublicEditor::get_per_region_note_selection)
1018 #endif
1019
1020 #if 0
1021                 .addFunction ("mouse_add_new_tempo_event", &PublicEditor::mouse_add_new_tempo_event)
1022                 .addFunction ("mouse_add_new_meter_event", &PublicEditor::mouse_add_new_meter_event)
1023                 .addFunction ("edit_tempo_section", &PublicEditor::edit_tempo_section)
1024                 .addFunction ("edit_meter_section", &PublicEditor::edit_meter_section)
1025 #endif
1026
1027                 .addFunction ("access_action", &PublicEditor::access_action)
1028                 .addFunction ("set_toggleaction", &PublicEditor::set_toggleaction)
1029                 .endClass ()
1030
1031                 .addFunction ("translate_order", &lua_translate_order)
1032
1033                 /* ArdourUI enums */
1034                 .beginNamespace ("InsertAt")
1035                 .addConst ("BeforeSelection", RouteDialogs::InsertAt(RouteDialogs::BeforeSelection))
1036                 .addConst ("AfterSelection", RouteDialogs::InsertAt(RouteDialogs::AfterSelection))
1037                 .addConst ("First", RouteDialogs::InsertAt(RouteDialogs::First))
1038                 .addConst ("Last", RouteDialogs::InsertAt(RouteDialogs::Last))
1039                 .endNamespace ()
1040
1041                 .beginNamespace ("MarkerType")
1042                 .addConst ("Mark", ArdourMarker::Type(ArdourMarker::Mark))
1043                 .addConst ("Tempo", ArdourMarker::Type(ArdourMarker::Tempo))
1044                 .addConst ("Meter", ArdourMarker::Type(ArdourMarker::Meter))
1045                 .addConst ("SessionStart", ArdourMarker::Type(ArdourMarker::SessionStart))
1046                 .addConst ("SessionEnd", ArdourMarker::Type(ArdourMarker::SessionEnd))
1047                 .addConst ("RangeStart", ArdourMarker::Type(ArdourMarker::RangeStart))
1048                 .addConst ("RangeEnd", ArdourMarker::Type(ArdourMarker::RangeEnd))
1049                 .addConst ("LoopStart", ArdourMarker::Type(ArdourMarker::LoopStart))
1050                 .addConst ("LoopEnd", ArdourMarker::Type(ArdourMarker::LoopEnd))
1051                 .addConst ("PunchIn", ArdourMarker::Type(ArdourMarker::PunchIn))
1052                 .addConst ("PunchOut", ArdourMarker::Type(ArdourMarker::PunchOut))
1053                 .endNamespace ()
1054
1055                 .beginNamespace ("SelectionOp")
1056                 .addConst ("Toggle", Selection::Operation(Selection::Toggle))
1057                 .addConst ("Set", Selection::Operation(Selection::Set))
1058                 .addConst ("Extend", Selection::Operation(Selection::Extend))
1059                 .addConst ("Add", Selection::Operation(Selection::Add))
1060                 .endNamespace ()
1061
1062                 .beginNamespace ("TrackHeightMode")
1063                 .addConst ("OnlySelf", TimeAxisView::TrackHeightMode(TimeAxisView::OnlySelf))
1064                 .addConst ("TotalHeight", TimeAxisView::TrackHeightMode(TimeAxisView::TotalHeight))
1065                 .addConst ("HeightPerLane,", TimeAxisView::TrackHeightMode(TimeAxisView::HeightPerLane))
1066                 .endNamespace ()
1067
1068                 .addCFunction ("actionlist", &lua_actionlist)
1069
1070                 .endNamespace () // end ArdourUI
1071
1072                 .beginNamespace ("os")
1073 #ifndef PLATFORM_WINDOWS
1074                 .addFunction ("execute", &lua_exec)
1075 #endif
1076                 .addCFunction ("forkexec", &lua_forkexec)
1077                 .endNamespace ();
1078
1079         // Editing Symbols
1080
1081 #undef ZOOMFOCUS
1082 #undef GRIDTYPE
1083 #undef SNAPMODE
1084 #undef MOUSEMODE
1085 #undef DISPLAYCONTROL
1086 #undef IMPORTMODE
1087 #undef IMPORTPOSITION
1088 #undef IMPORTDISPOSITION
1089
1090 #define ZOOMFOCUS(NAME) .addConst (stringify(NAME), (Editing::ZoomFocus)Editing::NAME)
1091 #define GRIDTYPE(NAME) .addConst (stringify(NAME), (Editing::GridType)Editing::NAME)
1092 #define SNAPMODE(NAME) .addConst (stringify(NAME), (Editing::SnapMode)Editing::NAME)
1093 #define MOUSEMODE(NAME) .addConst (stringify(NAME), (Editing::MouseMode)Editing::NAME)
1094 #define DISPLAYCONTROL(NAME) .addConst (stringify(NAME), (Editing::DisplayControl)Editing::NAME)
1095 #define IMPORTMODE(NAME) .addConst (stringify(NAME), (Editing::ImportMode)Editing::NAME)
1096 #define IMPORTPOSITION(NAME) .addConst (stringify(NAME), (Editing::ImportPosition)Editing::NAME)
1097 #define IMPORTDISPOSITION(NAME) .addConst (stringify(NAME), (Editing::ImportDisposition)Editing::NAME)
1098         luabridge::getGlobalNamespace (L)
1099                 .beginNamespace ("Editing")
1100 #               include "editing_syms.h"
1101                 .endNamespace ();
1102 }
1103
1104 #undef xstr
1105 #undef stringify
1106
1107 ////////////////////////////////////////////////////////////////////////////////
1108
1109 using namespace ARDOUR;
1110 using namespace ARDOUR_UI_UTILS;
1111 using namespace PBD;
1112 using namespace std;
1113
1114 static void _lua_print (std::string s) {
1115 #ifndef NDEBUG
1116         std::cout << "LuaInstance: " << s << "\n";
1117 #endif
1118         PBD::info << "LuaInstance: " << s << endmsg;
1119 }
1120
1121 LuaInstance* LuaInstance::_instance = 0;
1122
1123 LuaInstance*
1124 LuaInstance::instance ()
1125 {
1126         if (!_instance) {
1127                 _instance  = new LuaInstance;
1128         }
1129
1130         return _instance;
1131 }
1132
1133 void
1134 LuaInstance::destroy_instance ()
1135 {
1136         delete _instance;
1137         _instance = 0;
1138 }
1139
1140 LuaInstance::LuaInstance ()
1141 {
1142         lua.Print.connect (&_lua_print);
1143         init ();
1144 }
1145
1146 LuaInstance::~LuaInstance ()
1147 {
1148         delete _lua_call_action;
1149         delete _lua_render_icon;
1150         delete _lua_add_action;
1151         delete _lua_del_action;
1152         delete _lua_get_action;
1153
1154         delete _lua_load;
1155         delete _lua_save;
1156         delete _lua_clear;
1157         _callbacks.clear();
1158 }
1159
1160 void
1161 LuaInstance::init ()
1162 {
1163         lua.sandbox (false);
1164         lua.do_command (
1165                         "function ScriptManager ()"
1166                         "  local self = { scripts = {}, instances = {}, icons = {} }"
1167                         ""
1168                         "  local remove = function (id)"
1169                         "   self.scripts[id] = nil"
1170                         "   self.instances[id] = nil"
1171                         "   self.icons[id] = nil"
1172                         "  end"
1173                         ""
1174                         "  local addinternal = function (i, n, s, f, c, a)"
1175                         "   assert(type(i) == 'number', 'id must be numeric')"
1176                         "   assert(type(n) == 'string', 'Name must be string')"
1177                         "   assert(type(s) == 'string', 'Script must be string')"
1178                         "   assert(type(f) == 'function', 'Factory is a not a function')"
1179                         "   assert(type(a) == 'table' or type(a) == 'nil', 'Given argument is invalid')"
1180                         "   self.scripts[i] = { ['n'] = n, ['s'] = s, ['f'] = f, ['a'] = a, ['c'] = c }"
1181                         "   local env = _ENV; env.f = nil"
1182                         "   self.instances[i] = load (string.dump(f, true), nil, nil, env)(a)"
1183                         "   if type(c) == 'function' then"
1184                         "     self.icons[i] = load (string.dump(c, true), nil, nil, env)(a)"
1185                         "   else"
1186                         "     self.icons[i] = nil"
1187                         "   end"
1188                         "  end"
1189                         ""
1190                         "  local call = function (id)"
1191                         "   if type(self.instances[id]) == 'function' then"
1192                         "     local status, err = pcall (self.instances[id])"
1193                         "     if not status then"
1194                         "       print ('action \"'.. id .. '\": ', err)" // error out
1195                         "       remove (id)"
1196                         "     end"
1197                         "   end"
1198                         "   collectgarbage()"
1199                         "  end"
1200                         ""
1201                         "  local icon = function (id, ...)"
1202                         "   if type(self.icons[id]) == 'function' then"
1203                         "     pcall (self.icons[id], ...)"
1204                         "   end"
1205                         "   collectgarbage()"
1206                         "  end"
1207                         ""
1208                         "  local add = function (i, n, s, b, c, a)"
1209                         "   assert(type(b) == 'string', 'ByteCode must be string')"
1210                         "   f = nil load (b)()" // assigns f
1211                         "   icn = nil load (c)()" // may assign "icn"
1212                         "   assert(type(f) == 'string', 'Assigned ByteCode must be string')"
1213                         "   addinternal (i, n, s, load(f), type(icn) ~= \"string\" or icn == '' or load(icn), a)"
1214                         "  end"
1215                         ""
1216                         "  local get = function (id)"
1217                         "   if type(self.scripts[id]) == 'table' then"
1218                         "    return { ['name'] = self.scripts[id]['n'],"
1219                         "             ['script'] = self.scripts[id]['s'],"
1220                         "             ['icon'] = type(self.scripts[id]['c']) == 'function',"
1221                         "             ['args'] = self.scripts[id]['a'] }"
1222                         "   end"
1223                         "   return nil"
1224                         "  end"
1225                         ""
1226                         "  local function basic_serialize (o)"
1227                         "    if type(o) == \"number\" then"
1228                         "     return tostring(o)"
1229                         "    else"
1230                         "     return string.format(\"%q\", o)"
1231                         "    end"
1232                         "  end"
1233                         ""
1234                         "  local function serialize (name, value)"
1235                         "   local rv = name .. ' = '"
1236                         "   if type(value) == \"number\" or type(value) == \"string\" or type(value) == \"nil\" then"
1237                         "    return rv .. basic_serialize(value) .. ' '"
1238                         "   elseif type(value) == \"table\" then"
1239                         "    rv = rv .. '{} '"
1240                         "    for k,v in pairs(value) do"
1241                         "     local fieldname = string.format(\"%s[%s]\", name, basic_serialize(k))"
1242                         "     rv = rv .. serialize(fieldname, v) .. ' '"
1243                         "    end"
1244                         "    return rv;"
1245                         "   elseif type(value) == \"function\" then"
1246                         "     return rv .. string.format(\"%q\", string.dump(value, true))"
1247                         "   elseif type(value) == \"boolean\" then"
1248                         "     return rv .. tostring (value)"
1249                         "   else"
1250                         "    error('cannot save a ' .. type(value))"
1251                         "   end"
1252                         "  end"
1253                         ""
1254                         ""
1255                         "  local save = function ()"
1256                         "   return (serialize('scripts', self.scripts))"
1257                         "  end"
1258                         ""
1259                         "  local clear = function ()"
1260                         "   self.scripts = {}"
1261                         "   self.instances = {}"
1262                         "   self.icons = {}"
1263                         "   collectgarbage()"
1264                         "  end"
1265                         ""
1266                         "  local restore = function (state)"
1267                         "   clear()"
1268                         "   load (state)()"
1269                         "   for i, s in pairs (scripts) do"
1270                         "    addinternal (i, s['n'], s['s'], load(s['f']), type (s['c']) ~= \"string\" or s['c'] == '' or load (s['c']), s['a'])"
1271                         "   end"
1272                         "   collectgarbage()"
1273                         "  end"
1274                         ""
1275                         " return { call = call, add = add, remove = remove, get = get,"
1276                         "          restore = restore, save = save, clear = clear, icon = icon}"
1277                         " end"
1278                         " "
1279                         " manager = ScriptManager ()"
1280                         " ScriptManager = nil"
1281                         );
1282         lua_State* L = lua.getState();
1283
1284         try {
1285                 luabridge::LuaRef lua_mgr = luabridge::getGlobal (L, "manager");
1286                 lua.do_command ("manager = nil"); // hide it.
1287                 lua.do_command ("collectgarbage()");
1288
1289                 _lua_add_action = new luabridge::LuaRef(lua_mgr["add"]);
1290                 _lua_del_action = new luabridge::LuaRef(lua_mgr["remove"]);
1291                 _lua_get_action = new luabridge::LuaRef(lua_mgr["get"]);
1292                 _lua_call_action = new luabridge::LuaRef(lua_mgr["call"]);
1293                 _lua_render_icon = new luabridge::LuaRef(lua_mgr["icon"]);
1294                 _lua_save = new luabridge::LuaRef(lua_mgr["save"]);
1295                 _lua_load = new luabridge::LuaRef(lua_mgr["restore"]);
1296                 _lua_clear = new luabridge::LuaRef(lua_mgr["clear"]);
1297
1298         } catch (luabridge::LuaException const& e) {
1299                 fatal << string_compose (_("programming error: %1"),
1300                                 std::string ("Failed to setup Lua action interpreter") + e.what ())
1301                         << endmsg;
1302                 abort(); /*NOTREACHED*/
1303         } catch (...) {
1304                 fatal << string_compose (_("programming error: %1"),
1305                                 X_("Failed to setup Lua action interpreter"))
1306                         << endmsg;
1307                 abort(); /*NOTREACHED*/
1308         }
1309
1310         register_classes (L);
1311         register_hooks (L);
1312
1313         luabridge::push <PublicEditor *> (L, &PublicEditor::instance());
1314         lua_setglobal (L, "Editor");
1315 }
1316
1317 int
1318 LuaInstance::load_state ()
1319 {
1320         std::string uiscripts;
1321         if (!find_file (ardour_config_search_path(), ui_scripts_file_name, uiscripts)) {
1322                 return -1;
1323         }
1324         XMLTree tree;
1325
1326         info << string_compose (_("Loading user ui scripts file %1"), uiscripts) << endmsg;
1327
1328         if (!tree.read (uiscripts)) {
1329                 error << string_compose(_("cannot read ui scripts file \"%1\""), uiscripts) << endmsg;
1330                 return -1;
1331         }
1332
1333         if (set_state (*tree.root())) {
1334                 error << string_compose(_("user ui scripts file \"%1\" not loaded successfully."), uiscripts) << endmsg;
1335                 return -1;
1336         }
1337
1338         return 0;
1339 }
1340
1341 int
1342 LuaInstance::save_state ()
1343 {
1344         if (!_session) {
1345                 /* action scripts are un-registered with the session */
1346                 return -1;
1347         }
1348
1349         std::string uiscripts = Glib::build_filename (user_config_directory(), ui_scripts_file_name);
1350
1351         XMLNode* node = new XMLNode (X_("UIScripts"));
1352         node->add_child_nocopy (get_action_state ());
1353         node->add_child_nocopy (get_hook_state ());
1354
1355         XMLTree tree;
1356         tree.set_root (node);
1357
1358         if (!tree.write (uiscripts.c_str())){
1359                 error << string_compose (_("UI script file %1 not saved"), uiscripts) << endmsg;
1360                 return -1;
1361         }
1362         return 0;
1363 }
1364
1365 void
1366 LuaInstance::set_dirty ()
1367 {
1368         if (!_session || _session->deletion_in_progress()) {
1369                 return;
1370         }
1371         save_state ();
1372         _session->set_dirty (); // XXX is this reasonable?
1373 }
1374
1375 void LuaInstance::set_session (Session* s)
1376 {
1377         SessionHandlePtr::set_session (s);
1378         if (!_session) {
1379                 return;
1380         }
1381
1382         load_state ();
1383
1384         lua_State* L = lua.getState();
1385         LuaBindings::set_session (L, _session);
1386
1387         for (LuaCallbackMap::iterator i = _callbacks.begin(); i != _callbacks.end(); ++i) {
1388                 i->second->set_session (s);
1389         }
1390         second_connection = Timers::rapid_connect (sigc::mem_fun(*this, & LuaInstance::every_second));
1391         point_one_second_connection = Timers::rapid_connect (sigc::mem_fun(*this, & LuaInstance::every_point_one_seconds));
1392         SetSession (); /* EMIT SIGNAL */
1393 }
1394
1395 void
1396 LuaInstance::session_going_away ()
1397 {
1398         ENSURE_GUI_THREAD (*this, &LuaInstance::session_going_away);
1399         second_connection.disconnect ();
1400         point_one_second_connection.disconnect ();
1401
1402         (*_lua_clear)();
1403         for (int i = 0; i < MAX_LUA_ACTION_SCRIPTS; ++i) {
1404                 ActionChanged (i, ""); /* EMIT SIGNAL */
1405         }
1406         SessionHandlePtr::session_going_away ();
1407         _session = 0;
1408
1409         lua_State* L = lua.getState();
1410         LuaBindings::set_session (L, _session);
1411         lua.do_command ("collectgarbage();");
1412 }
1413
1414 void
1415 LuaInstance::every_second ()
1416 {
1417         LuaTimerS (); // emit signal
1418 }
1419
1420 void
1421 LuaInstance::every_point_one_seconds ()
1422 {
1423         LuaTimerDS (); // emit signal
1424 }
1425
1426 int
1427 LuaInstance::set_state (const XMLNode& node)
1428 {
1429         XMLNode* child;
1430
1431         if ((child = find_named_node (node, "ActionScript"))) {
1432                 for (XMLNodeList::const_iterator n = child->children ().begin (); n != child->children ().end (); ++n) {
1433                         if (!(*n)->is_content ()) { continue; }
1434                         gsize size;
1435                         guchar* buf = g_base64_decode ((*n)->content ().c_str (), &size);
1436                         try {
1437                                 (*_lua_load)(std::string ((const char*)buf, size));
1438                         } catch (luabridge::LuaException const& e) {
1439                                 cerr << "LuaException:" << e.what () << endl;
1440                         } catch (...) { }
1441                         for (int i = 0; i < MAX_LUA_ACTION_SCRIPTS; ++i) {
1442                                 std::string name;
1443                                 if (lua_action_name (i, name)) {
1444                                         ActionChanged (i, name); /* EMIT SIGNAL */
1445                                 }
1446                         }
1447                         g_free (buf);
1448                 }
1449         }
1450
1451         assert (_callbacks.empty());
1452         if ((child = find_named_node (node, "ActionHooks"))) {
1453                 for (XMLNodeList::const_iterator n = child->children ().begin (); n != child->children ().end (); ++n) {
1454                         try {
1455                                 LuaCallbackPtr p (new LuaCallback (_session, *(*n)));
1456                                 _callbacks.insert (std::make_pair(p->id(), p));
1457                                 p->drop_callback.connect (_slotcon, MISSING_INVALIDATOR, boost::bind (&LuaInstance::unregister_lua_slot, this, p->id()), gui_context());
1458                                 SlotChanged (p->id(), p->name(), p->signals()); /* EMIT SIGNAL */
1459                         } catch (luabridge::LuaException const& e) {
1460                                 cerr << "LuaException:" << e.what () << endl;
1461                         } catch (...) { }
1462                 }
1463         }
1464
1465         return 0;
1466 }
1467
1468 bool
1469 LuaInstance::interactive_add (LuaScriptInfo::ScriptType type, int id)
1470 {
1471         std::string title;
1472         std::string param_function = "action_params";
1473         std::vector<std::string> reg;
1474
1475         switch (type) {
1476                 case LuaScriptInfo::EditorAction:
1477                         reg = lua_action_names ();
1478                         title = _("Add Shortcut or Lua Script");
1479                         break;
1480                 case LuaScriptInfo::EditorHook:
1481                         reg = lua_slot_names ();
1482                         title = _("Add Lua Callback Hook");
1483                         break;
1484                 case LuaScriptInfo::Session:
1485                         if (!_session) {
1486                                 return false;
1487                         }
1488                         reg = _session->registered_lua_functions ();
1489                         title = _("Add Lua Session Script");
1490                         param_function = "sess_params";
1491                         break;
1492                 default:
1493                         return false;
1494         }
1495
1496         LuaScriptInfoPtr spi;
1497         ScriptSelector ss (title, type);
1498         switch (ss.run ()) {
1499                 case Gtk::RESPONSE_ACCEPT:
1500                         spi = ss.script();
1501                         break;
1502                 default:
1503                         return false;
1504         }
1505         ss.hide ();
1506
1507         std::string script = "";
1508
1509         try {
1510                 script = Glib::file_get_contents (spi->path);
1511         } catch (Glib::FileError const& e) {
1512                 string msg = string_compose (_("Cannot read script '%1': %2"), spi->path, e.what());
1513                 Gtk::MessageDialog am (msg);
1514                 am.run ();
1515                 return false;
1516         }
1517
1518         LuaState ls;
1519         register_classes (ls.getState ());
1520         LuaScriptParamList lsp = LuaScriptParams::script_params (ls, spi->path, param_function);
1521
1522         /* allow cancel */
1523         for (size_t i = 0; i < lsp.size(); ++i) {
1524                 if (lsp[i]->preseeded && lsp[i]->name == "x-script-abort") {
1525                         return false;
1526                 }
1527         }
1528
1529         ScriptParameterDialog spd (_("Set Script Parameters"), spi, reg, lsp);
1530
1531         if (spd.need_interation ()) {
1532                 switch (spd.run ()) {
1533                         case Gtk::RESPONSE_ACCEPT:
1534                                 break;
1535                         default:
1536                                 return false;
1537                 }
1538         }
1539
1540         LuaScriptParamPtr lspp (new LuaScriptParam("x-script-origin", "", spi->path, false, true));
1541         lsp.push_back (lspp);
1542
1543         switch (type) {
1544                 case LuaScriptInfo::EditorAction:
1545                         return set_lua_action (id, spd.name(), script, lsp);
1546                         break;
1547                 case LuaScriptInfo::EditorHook:
1548                         return register_lua_slot (spd.name(), script, lsp);
1549                         break;
1550                 case LuaScriptInfo::Session:
1551                         try {
1552                                 _session->register_lua_function (spd.name(), script, lsp);
1553                         } catch (luabridge::LuaException const& e) {
1554                                 string msg = string_compose (_("Session script '%1' instantiation failed: %2"), spd.name(), e.what ());
1555                                 Gtk::MessageDialog am (msg);
1556                                 am.run ();
1557                         } catch (SessionException const& e) {
1558                                 string msg = string_compose (_("Loading Session script '%1' failed: %2"), spd.name(), e.what ());
1559                                 Gtk::MessageDialog am (msg);
1560                                 am.run ();
1561                         } catch (...) {
1562                                 string msg = string_compose (_("Loading Session script '%1' failed: %2"), spd.name(), "Unknown Exception");
1563                                 Gtk::MessageDialog am (msg);
1564                                 am.run ();
1565                         }
1566                 default:
1567                         break;
1568         }
1569         return false;
1570 }
1571
1572 XMLNode&
1573 LuaInstance::get_action_state ()
1574 {
1575         std::string saved;
1576         {
1577                 luabridge::LuaRef savedstate ((*_lua_save)());
1578                 saved = savedstate.cast<std::string>();
1579         }
1580         lua.collect_garbage ();
1581
1582         gchar* b64 = g_base64_encode ((const guchar*)saved.c_str (), saved.size ());
1583         std::string b64s (b64);
1584         g_free (b64);
1585
1586         XMLNode* script_node = new XMLNode (X_("ActionScript"));
1587         script_node->set_property (X_("lua"), LUA_VERSION);
1588         script_node->add_content (b64s);
1589
1590         return *script_node;
1591 }
1592
1593 XMLNode&
1594 LuaInstance::get_hook_state ()
1595 {
1596         XMLNode* script_node = new XMLNode (X_("ActionHooks"));
1597         for (LuaCallbackMap::const_iterator i = _callbacks.begin(); i != _callbacks.end(); ++i) {
1598                 script_node->add_child_nocopy (i->second->get_state ());
1599         }
1600         return *script_node;
1601 }
1602
1603 void
1604 LuaInstance::call_action (const int id)
1605 {
1606         try {
1607                 (*_lua_call_action)(id + 1);
1608                 lua.collect_garbage_step ();
1609         } catch (luabridge::LuaException const& e) {
1610                 cerr << "LuaException:" << e.what () << endl;
1611         } catch (...) { }
1612 }
1613
1614 void
1615 LuaInstance::render_action_icon (cairo_t* cr, int w, int h, uint32_t c, void* i) {
1616         int ii = reinterpret_cast<uintptr_t> (i);
1617         instance()->render_icon (ii, cr, w, h, c);
1618 }
1619
1620 void
1621 LuaInstance::render_icon (int i, cairo_t* cr, int w, int h, uint32_t clr)
1622 {
1623          Cairo::Context ctx (cr);
1624          try {
1625                  (*_lua_render_icon)(i + 1, (Cairo::Context *)&ctx, w, h, clr);
1626          } catch (luabridge::LuaException const& e) {
1627                  cerr << "LuaException:" << e.what () << endl;
1628          } catch (...) { }
1629 }
1630
1631 bool
1632 LuaInstance::set_lua_action (
1633                 const int id,
1634                 const std::string& name,
1635                 const std::string& script,
1636                 const LuaScriptParamList& args)
1637 {
1638         try {
1639                 lua_State* L = lua.getState();
1640                 // get bytcode of factory-function in a sandbox
1641                 // (don't allow scripts to interfere)
1642                 const std::string& bytecode = LuaScripting::get_factory_bytecode (script);
1643                 const std::string& iconfunc = LuaScripting::get_factory_bytecode (script, "icon", "icn");
1644                 luabridge::LuaRef tbl_arg (luabridge::newTable(L));
1645                 for (LuaScriptParamList::const_iterator i = args.begin(); i != args.end(); ++i) {
1646                         if ((*i)->optional && !(*i)->is_set) { continue; }
1647                         tbl_arg[(*i)->name] = (*i)->value;
1648                 }
1649                 (*_lua_add_action)(id + 1, name, script, bytecode, iconfunc, tbl_arg);
1650                 ActionChanged (id, name); /* EMIT SIGNAL */
1651         } catch (luabridge::LuaException const& e) {
1652                 cerr << "LuaException:" << e.what () << endl;
1653                 return false;
1654         } catch (...) {
1655                 return false;
1656         }
1657         set_dirty ();
1658         return true;
1659 }
1660
1661 bool
1662 LuaInstance::remove_lua_action (const int id)
1663 {
1664         try {
1665                 (*_lua_del_action)(id + 1);
1666         } catch (luabridge::LuaException const& e) {
1667                 cerr << "LuaException:" << e.what () << endl;
1668                 return false;
1669         } catch (...) {
1670                 return false;
1671         }
1672         ActionChanged (id, ""); /* EMIT SIGNAL */
1673         set_dirty ();
1674         return true;
1675 }
1676
1677 bool
1678 LuaInstance::lua_action_name (const int id, std::string& rv)
1679 {
1680         try {
1681                 luabridge::LuaRef ref ((*_lua_get_action)(id + 1));
1682                 if (ref.isNil()) {
1683                         return false;
1684                 }
1685                 if (ref["name"].isString()) {
1686                         rv = ref["name"].cast<std::string>();
1687                         return true;
1688                 }
1689                 return true;
1690         } catch (luabridge::LuaException const& e) {
1691                 cerr << "LuaException:" << e.what () << endl;
1692         } catch (...) { }
1693         return false;
1694 }
1695
1696 std::vector<std::string>
1697 LuaInstance::lua_action_names ()
1698 {
1699         std::vector<std::string> rv;
1700         for (int i = 0; i < MAX_LUA_ACTION_SCRIPTS; ++i) {
1701                 std::string name;
1702                 if (lua_action_name (i, name)) {
1703                         rv.push_back (name);
1704                 }
1705         }
1706         return rv;
1707 }
1708
1709 bool
1710 LuaInstance::lua_action_has_icon (const int id)
1711 {
1712         try {
1713                 luabridge::LuaRef ref ((*_lua_get_action)(id + 1));
1714                 if (ref.isNil()) {
1715                         return false;
1716                 }
1717                 if (ref["icon"].isBoolean()) {
1718                         return ref["icon"].cast<bool>();
1719                 }
1720         } catch (luabridge::LuaException const& e) {
1721                 cerr << "LuaException:" << e.what () << endl;
1722         } catch (...) { }
1723         return false;
1724 }
1725
1726 bool
1727 LuaInstance::lua_action (const int id, std::string& name, std::string& script, LuaScriptParamList& args)
1728 {
1729         try {
1730                 luabridge::LuaRef ref ((*_lua_get_action)(id + 1));
1731                 if (ref.isNil()) {
1732                         return false;
1733                 }
1734                 if (!ref["name"].isString()) {
1735                         return false;
1736                 }
1737                 if (!ref["script"].isString()) {
1738                         return false;
1739                 }
1740                 if (!ref["args"].isTable()) {
1741                         return false;
1742                 }
1743                 name = ref["name"].cast<std::string>();
1744                 script = ref["script"].cast<std::string>();
1745
1746                 args.clear();
1747                 LuaScriptInfoPtr lsi = LuaScripting::script_info (script);
1748                 if (!lsi) {
1749                         return false;
1750                 }
1751                 args = LuaScriptParams::script_params (lsi, "action_params");
1752                 luabridge::LuaRef rargs (ref["args"]);
1753                 LuaScriptParams::ref_to_params (args, &rargs);
1754                 return true;
1755         } catch (luabridge::LuaException const& e) {
1756                 cerr << "LuaException:" << e.what () << endl;
1757         } catch (...) { }
1758         return false;
1759 }
1760
1761 bool
1762 LuaInstance::register_lua_slot (const std::string& name, const std::string& script, const ARDOUR::LuaScriptParamList& args)
1763 {
1764         /* parse script, get ActionHook(s) from script */
1765         ActionHook ah;
1766         try {
1767                 LuaState l;
1768                 l.Print.connect (&_lua_print);
1769                 l.sandbox (true);
1770                 lua_State* L = l.getState();
1771                 register_hooks (L);
1772                 l.do_command ("function ardour () end");
1773                 l.do_command (script);
1774                 luabridge::LuaRef signals = luabridge::getGlobal (L, "signals");
1775                 if (signals.isFunction()) {
1776                         ah = signals();
1777                 }
1778         } catch (luabridge::LuaException const& e) {
1779                 cerr << "LuaException:" << e.what () << endl;
1780         } catch (...) { }
1781
1782         if (ah.none ()) {
1783                 cerr << "Script registered no hooks." << endl;
1784                 return false;
1785         }
1786
1787         /* register script w/args, get entry-point / ID */
1788
1789         try {
1790                 LuaCallbackPtr p (new LuaCallback (_session, name, script, ah, args));
1791                 _callbacks.insert (std::make_pair(p->id(), p));
1792                 p->drop_callback.connect (_slotcon, MISSING_INVALIDATOR, boost::bind (&LuaInstance::unregister_lua_slot, this, p->id()), gui_context());
1793                 SlotChanged (p->id(), p->name(), p->signals()); /* EMIT SIGNAL */
1794                 set_dirty ();
1795                 return true;
1796         } catch (luabridge::LuaException const& e) {
1797                 cerr << "LuaException:" << e.what () << endl;
1798         } catch (...) { }
1799         return false;
1800 }
1801
1802 bool
1803 LuaInstance::unregister_lua_slot (const PBD::ID& id)
1804 {
1805         LuaCallbackMap::iterator i = _callbacks.find (id);
1806         if (i != _callbacks.end()) {
1807                 SlotChanged (id, "", ActionHook()); /* EMIT SIGNAL */
1808                 _callbacks.erase (i);
1809                 set_dirty ();
1810                 return true;
1811         }
1812         return false;
1813 }
1814
1815 std::vector<PBD::ID>
1816 LuaInstance::lua_slots () const
1817 {
1818         std::vector<PBD::ID> rv;
1819         for (LuaCallbackMap::const_iterator i = _callbacks.begin(); i != _callbacks.end(); ++i) {
1820                 rv.push_back (i->first);
1821         }
1822         return rv;
1823 }
1824
1825 bool
1826 LuaInstance::lua_slot_name (const PBD::ID& id, std::string& name) const
1827 {
1828         LuaCallbackMap::const_iterator i = _callbacks.find (id);
1829         if (i != _callbacks.end()) {
1830                 name = i->second->name();
1831                 return true;
1832         }
1833         return false;
1834 }
1835
1836 std::vector<std::string>
1837 LuaInstance::lua_slot_names () const
1838 {
1839         std::vector<std::string> rv;
1840         std::vector<PBD::ID> ids = lua_slots();
1841         for (std::vector<PBD::ID>::const_iterator i = ids.begin(); i != ids.end(); ++i) {
1842                 std::string name;
1843                 if (lua_slot_name (*i, name)) {
1844                         rv.push_back (name);
1845                 }
1846         }
1847         return rv;
1848 }
1849
1850 bool
1851 LuaInstance::lua_slot (const PBD::ID& id, std::string& name, std::string& script, ActionHook& ah, ARDOUR::LuaScriptParamList& args)
1852 {
1853         LuaCallbackMap::const_iterator i = _callbacks.find (id);
1854         if (i == _callbacks.end()) {
1855                 return false; // error
1856         }
1857         return i->second->lua_slot (name, script, ah, args);
1858 }
1859
1860 ///////////////////////////////////////////////////////////////////////////////
1861
1862 LuaCallback::LuaCallback (Session *s,
1863                 const std::string& name,
1864                 const std::string& script,
1865                 const ActionHook& ah,
1866                 const ARDOUR::LuaScriptParamList& args)
1867         : SessionHandlePtr (s)
1868         , _id ("0")
1869         , _name (name)
1870         , _signals (ah)
1871 {
1872         // TODO: allow to reference object (e.g region)
1873         init ();
1874
1875         lua_State* L = lua.getState();
1876         luabridge::LuaRef tbl_arg (luabridge::newTable(L));
1877         for (LuaScriptParamList::const_iterator i = args.begin(); i != args.end(); ++i) {
1878                 if ((*i)->optional && !(*i)->is_set) { continue; }
1879                 tbl_arg[(*i)->name] = (*i)->value;
1880         }
1881
1882         try {
1883                 const std::string& bytecode = LuaScripting::get_factory_bytecode (script);
1884                 (*_lua_add)(name, script, bytecode, tbl_arg);
1885         } catch (luabridge::LuaException const& e) {
1886                 cerr << "LuaException:" << e.what () << endl;
1887                 throw failed_constructor ();
1888         } catch (...) {
1889                 throw failed_constructor ();
1890         }
1891
1892         _id.reset ();
1893         set_session (s);
1894 }
1895
1896 LuaCallback::LuaCallback (Session *s, XMLNode & node)
1897         : SessionHandlePtr (s)
1898 {
1899         XMLNode* child = NULL;
1900         if (node.name() != X_("LuaCallback")
1901                         || !node.property ("signals")
1902                         || !node.property ("id")
1903                         || !node.property ("name")) {
1904                 throw failed_constructor ();
1905         }
1906
1907         for (XMLNodeList::const_iterator n = node.children ().begin (); n != node.children ().end (); ++n) {
1908                 if (!(*n)->is_content ()) { continue; }
1909                 child = *n;
1910         }
1911
1912         if (!child) {
1913                 throw failed_constructor ();
1914         }
1915
1916         init ();
1917
1918         _id = PBD::ID (node.property ("id")->value ());
1919         _name = node.property ("name")->value ();
1920         _signals = ActionHook (node.property ("signals")->value ());
1921
1922         gsize size;
1923         guchar* buf = g_base64_decode (child->content ().c_str (), &size);
1924         try {
1925                 (*_lua_load)(std::string ((const char*)buf, size));
1926         } catch (luabridge::LuaException const& e) {
1927                 cerr << "LuaException:" << e.what () << endl;
1928         } catch (...) { }
1929         g_free (buf);
1930
1931         set_session (s);
1932 }
1933
1934 LuaCallback::~LuaCallback ()
1935 {
1936         delete _lua_add;
1937         delete _lua_get;
1938         delete _lua_call;
1939         delete _lua_load;
1940         delete _lua_save;
1941 }
1942
1943 XMLNode&
1944 LuaCallback::get_state (void)
1945 {
1946         std::string saved;
1947         {
1948                 luabridge::LuaRef savedstate ((*_lua_save)());
1949                 saved = savedstate.cast<std::string>();
1950         }
1951
1952         lua.collect_garbage (); // this may be expensive:
1953         /* Editor::instant_save() calls Editor::get_state() which
1954          * calls LuaInstance::get_hook_state() which in turn calls
1955          * this LuaCallback::get_state() for every registered hook.
1956          *
1957          * serialize in _lua_save() allocates many small strings
1958          * on the lua-stack, collecting them all may take a ms.
1959          */
1960
1961         gchar* b64 = g_base64_encode ((const guchar*)saved.c_str (), saved.size ());
1962         std::string b64s (b64);
1963         g_free (b64);
1964
1965         XMLNode* script_node = new XMLNode (X_("LuaCallback"));
1966         script_node->set_property (X_("lua"), LUA_VERSION);
1967         script_node->set_property (X_("id"), _id.to_s ());
1968         script_node->set_property (X_("name"), _name);
1969         script_node->set_property (X_("signals"), _signals.to_string ());
1970         script_node->add_content (b64s);
1971         return *script_node;
1972 }
1973
1974 void
1975 LuaCallback::init (void)
1976 {
1977         lua.Print.connect (&_lua_print);
1978         lua.sandbox (false);
1979
1980         lua.do_command (
1981                         "function ScriptManager ()"
1982                         "  local self = { script = {}, instance = {} }"
1983                         ""
1984                         "  local addinternal = function (n, s, f, a)"
1985                         "   assert(type(n) == 'string', 'Name must be string')"
1986                         "   assert(type(s) == 'string', 'Script must be string')"
1987                         "   assert(type(f) == 'function', 'Factory is a not a function')"
1988                         "   assert(type(a) == 'table' or type(a) == 'nil', 'Given argument is invalid')"
1989                         "   self.script = { ['n'] = n, ['s'] = s, ['f'] = f, ['a'] = a }"
1990                         "   local env = _ENV; env.f = nil"
1991                         "   self.instance = load (string.dump(f, true), nil, nil, env)(a)"
1992                         "  end"
1993                         ""
1994                         "  local call = function (...)"
1995                         "   if type(self.instance) == 'function' then"
1996                         "     local status, err = pcall (self.instance, ...)"
1997                         "     if not status then"
1998                         "       print ('callback \"'.. self.script['n'] .. '\": ', err)" // error out
1999                         "       self.script = nil"
2000                         "       self.instance = nil"
2001                         "       return false"
2002                         "     end"
2003                         "   end"
2004                         "   collectgarbage()"
2005                         "   return true"
2006                         "  end"
2007                         ""
2008                         "  local add = function (n, s, b, a)"
2009                         "   assert(type(b) == 'string', 'ByteCode must be string')"
2010                         "   load (b)()" // assigns f
2011                         "   assert(type(f) == 'string', 'Assigned ByteCode must be string')"
2012                         "   addinternal (n, s, load(f), a)"
2013                         "  end"
2014                         ""
2015                         "  local get = function ()"
2016                         "   if type(self.instance) == 'function' and type(self.script['n']) == 'string' then"
2017                         "    return { ['name'] = self.script['n'],"
2018                         "             ['script'] = self.script['s'],"
2019                         "             ['args'] = self.script['a'] }"
2020                         "   end"
2021                         "   return nil"
2022                         "  end"
2023                         ""
2024                         // code dup
2025                         ""
2026                         "  local function basic_serialize (o)"
2027                         "    if type(o) == \"number\" then"
2028                         "     return tostring(o)"
2029                         "    else"
2030                         "     return string.format(\"%q\", o)"
2031                         "    end"
2032                         "  end"
2033                         ""
2034                         "  local function serialize (name, value)"
2035                         "   local rv = name .. ' = '"
2036                         "   if type(value) == \"number\" or type(value) == \"string\" or type(value) == \"nil\" then"
2037                         "    return rv .. basic_serialize(value) .. ' '"
2038                         "   elseif type(value) == \"table\" then"
2039                         "    rv = rv .. '{} '"
2040                         "    for k,v in pairs(value) do"
2041                         "     local fieldname = string.format(\"%s[%s]\", name, basic_serialize(k))"
2042                         "     rv = rv .. serialize(fieldname, v) .. ' '"
2043                         "    end"
2044                         "    return rv;"
2045                         "   elseif type(value) == \"function\" then"
2046                         "     return rv .. string.format(\"%q\", string.dump(value, true))"
2047                         "   elseif type(value) == \"boolean\" then"
2048                         "     return rv .. tostring (value)"
2049                         "   else"
2050                         "    error('cannot save a ' .. type(value))"
2051                         "   end"
2052                         "  end"
2053                         ""
2054                         // end code dup
2055                         ""
2056                         "  local save = function ()"
2057                         "   return (serialize('s', self.script))"
2058                         "  end"
2059                         ""
2060                         "  local restore = function (state)"
2061                         "   self.script = {}"
2062                         "   load (state)()"
2063                         "   addinternal (s['n'], s['s'], load(s['f']), s['a'])"
2064                         "  end"
2065                         ""
2066                         " return { call = call, add = add, get = get,"
2067                         "          restore = restore, save = save}"
2068                         " end"
2069                         " "
2070                         " manager = ScriptManager ()"
2071                         " ScriptManager = nil"
2072                         );
2073
2074         lua_State* L = lua.getState();
2075
2076         try {
2077                 luabridge::LuaRef lua_mgr = luabridge::getGlobal (L, "manager");
2078                 lua.do_command ("manager = nil"); // hide it.
2079                 lua.do_command ("collectgarbage()");
2080
2081                 _lua_add = new luabridge::LuaRef(lua_mgr["add"]);
2082                 _lua_get = new luabridge::LuaRef(lua_mgr["get"]);
2083                 _lua_call = new luabridge::LuaRef(lua_mgr["call"]);
2084                 _lua_save = new luabridge::LuaRef(lua_mgr["save"]);
2085                 _lua_load = new luabridge::LuaRef(lua_mgr["restore"]);
2086
2087         } catch (luabridge::LuaException const& e) {
2088                 fatal << string_compose (_("programming error: %1"),
2089                                 std::string ("Failed to setup Lua callback interpreter: ") + e.what ())
2090                         << endmsg;
2091                 abort(); /*NOTREACHED*/
2092         } catch (...) {
2093                 fatal << string_compose (_("programming error: %1"),
2094                                 X_("Failed to setup Lua callback interpreter"))
2095                         << endmsg;
2096                 abort(); /*NOTREACHED*/
2097         }
2098
2099         LuaInstance::register_classes (L);
2100         LuaInstance::register_hooks (L);
2101
2102         luabridge::push <PublicEditor *> (L, &PublicEditor::instance());
2103         lua_setglobal (L, "Editor");
2104 }
2105
2106 bool
2107 LuaCallback::lua_slot (std::string& name, std::string& script, ActionHook& ah, ARDOUR::LuaScriptParamList& args)
2108 {
2109         // TODO consolidate w/ LuaInstance::lua_action()
2110         try {
2111                 luabridge::LuaRef ref = (*_lua_get)();
2112                 if (ref.isNil()) {
2113                         return false;
2114                 }
2115                 if (!ref["name"].isString()) {
2116                         return false;
2117                 }
2118                 if (!ref["script"].isString()) {
2119                         return false;
2120                 }
2121                 if (!ref["args"].isTable()) {
2122                         return false;
2123                 }
2124
2125                 ah = _signals;
2126                 name = ref["name"].cast<std::string> ();
2127                 script = ref["script"].cast<std::string> ();
2128
2129                 args.clear();
2130                 LuaScriptInfoPtr lsi = LuaScripting::script_info (script);
2131                 if (!lsi) {
2132                         return false;
2133                 }
2134                 args = LuaScriptParams::script_params (lsi, "action_params");
2135                 luabridge::LuaRef rargs (ref["args"]);
2136                 LuaScriptParams::ref_to_params (args, &rargs);
2137                 return true;
2138         } catch (luabridge::LuaException const& e) {
2139                 cerr << "LuaException:" << e.what () << endl;
2140                 return false;
2141         } catch (...) { }
2142         return false;
2143 }
2144
2145 void
2146 LuaCallback::set_session (ARDOUR::Session *s)
2147 {
2148         SessionHandlePtr::set_session (s);
2149
2150         if (!_session) {
2151                 return;
2152         }
2153
2154         lua_State* L = lua.getState();
2155         LuaBindings::set_session (L, _session);
2156
2157         reconnect();
2158 }
2159
2160 void
2161 LuaCallback::session_going_away ()
2162 {
2163         ENSURE_GUI_THREAD (*this, &LuaCallback::session_going_away);
2164         lua.do_command ("collectgarbage();");
2165
2166         SessionHandlePtr::session_going_away ();
2167         _session = 0;
2168
2169         drop_callback (); /* EMIT SIGNAL */
2170 }
2171
2172 void
2173 LuaCallback::reconnect ()
2174 {
2175         _connections.drop_connections ();
2176         if ((*_lua_get) ().isNil ()) {
2177                 drop_callback (); /* EMIT SIGNAL */
2178                 return;
2179         }
2180
2181         // TODO pass object which emits the signal (e.g region)
2182         //
2183         // save/load bound objects will be tricky.
2184         // Best idea so far is to save/lookup the PBD::ID
2185         // (either use boost::any indirection or templates for bindable
2186         // object types or a switch statement..)
2187         //
2188         // _session->route_by_id ()
2189         // _session->track_by_diskstream_id ()
2190         // _session->source_by_id ()
2191         // _session->controllable_by_id ()
2192         // _session->processor_by_id ()
2193         // RegionFactory::region_by_id ()
2194         //
2195         // TODO loop over objects (if any)
2196
2197         reconnect_object ((void*)0);
2198 }
2199
2200 template <class T> void
2201 LuaCallback::reconnect_object (T obj)
2202 {
2203         for (uint32_t i = 0; i < LuaSignal::LAST_SIGNAL; ++i) {
2204                 if (_signals[i]) {
2205 #define ENGINE(n,c,p) else if (i == LuaSignal::n) { connect_ ## p (LuaSignal::n, AudioEngine::instance(), &(AudioEngine::instance()->c)); }
2206 #define SESSION(n,c,p) else if (i == LuaSignal::n) { if (_session) { connect_ ## p (LuaSignal::n, _session, &(_session->c)); } }
2207 #define STATIC(n,c,p) else if (i == LuaSignal::n) { connect_ ## p (LuaSignal::n, obj, c); }
2208                         if (0) {}
2209 #                       include "luasignal_syms.h"
2210                         else {
2211                                 PBD::fatal << string_compose (_("programming error: %1: %2"), "Impossible LuaSignal type", i) << endmsg;
2212                                 abort(); /*NOTREACHED*/
2213                         }
2214 #undef ENGINE
2215 #undef SESSION
2216 #undef STATIC
2217                 }
2218         }
2219 }
2220
2221 template <typename T, typename S> void
2222 LuaCallback::connect_0 (enum LuaSignal::LuaSignal ls, T ref, S *signal) {
2223         signal->connect (
2224                         _connections, invalidator (*this),
2225                         boost::bind (&LuaCallback::proxy_0<T>, this, ls, ref),
2226                         gui_context());
2227 }
2228
2229 template <typename T, typename C1> void
2230 LuaCallback::connect_1 (enum LuaSignal::LuaSignal ls, T ref, PBD::Signal1<void, C1> *signal) {
2231         signal->connect (
2232                         _connections, invalidator (*this),
2233                         boost::bind (&LuaCallback::proxy_1<T, C1>, this, ls, ref, _1),
2234                         gui_context());
2235 }
2236
2237 template <typename T, typename C1, typename C2> void
2238 LuaCallback::connect_2 (enum LuaSignal::LuaSignal ls, T ref, PBD::Signal2<void, C1, C2> *signal) {
2239         signal->connect (
2240                         _connections, invalidator (*this),
2241                         boost::bind (&LuaCallback::proxy_2<T, C1, C2>, this, ls, ref, _1, _2),
2242                         gui_context());
2243 }
2244
2245 template <typename T, typename C1, typename C2, typename C3> void
2246 LuaCallback::connect_3 (enum LuaSignal::LuaSignal ls, T ref, PBD::Signal3<void, C1, C2, C3> *signal) {
2247         signal->connect (
2248                         _connections, invalidator (*this),
2249                         boost::bind (&LuaCallback::proxy_3<T, C1, C2, C3>, this, ls, ref, _1, _2, _3),
2250                         gui_context());
2251 }
2252
2253 template <typename T> void
2254 LuaCallback::proxy_0 (enum LuaSignal::LuaSignal ls, T ref) {
2255         bool ok = true;
2256         {
2257                 const luabridge::LuaRef& rv ((*_lua_call)((int)ls, ref));
2258                 if (! rv.cast<bool> ()) {
2259                         ok = false;
2260                 }
2261         }
2262         /* destroy LuaRef ^^ first before calling drop_callback() */
2263         if (!ok) {
2264                 drop_callback (); /* EMIT SIGNAL */
2265         }
2266 }
2267
2268 template <typename T, typename C1> void
2269 LuaCallback::proxy_1 (enum LuaSignal::LuaSignal ls, T ref, C1 a1) {
2270         bool ok = true;
2271         {
2272                 const luabridge::LuaRef& rv ((*_lua_call)((int)ls, ref, a1));
2273                 if (! rv.cast<bool> ()) {
2274                         ok = false;
2275                 }
2276         }
2277         if (!ok) {
2278                 drop_callback (); /* EMIT SIGNAL */
2279         }
2280 }
2281
2282 template <typename T, typename C1, typename C2> void
2283 LuaCallback::proxy_2 (enum LuaSignal::LuaSignal ls, T ref, C1 a1, C2 a2) {
2284         bool ok = true;
2285         {
2286                 const luabridge::LuaRef& rv ((*_lua_call)((int)ls, ref, a1, a2));
2287                 if (! rv.cast<bool> ()) {
2288                         ok = false;
2289                 }
2290         }
2291         if (!ok) {
2292                 drop_callback (); /* EMIT SIGNAL */
2293         }
2294 }
2295
2296 template <typename T, typename C1, typename C2, typename C3> void
2297 LuaCallback::proxy_3 (enum LuaSignal::LuaSignal ls, T ref, C1 a1, C2 a2, C3 a3) {
2298         bool ok = true;
2299         {
2300                 const luabridge::LuaRef& rv ((*_lua_call)((int)ls, ref, a1, a2, a3));
2301                 if (! rv.cast<bool> ()) {
2302                         ok = false;
2303                 }
2304         }
2305         if (!ok) {
2306                 drop_callback (); /* EMIT SIGNAL */
2307         }
2308 }