rename file and add Andrew 0002 HAVE_DV patch
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / pluginlv2ui.C
1
2 // shared between parent/child fork
3 #include "language.h"
4 #include "pluginlv2ui.h"
5
6 #include <gtk/gtk.h>
7 #include <gdk/gdk.h>
8
9 #include <ctype.h>
10 #include <string.h>
11
12 void PluginLV2UI::update_value(int idx, uint32_t bfrsz, uint32_t typ, const void *bfr)
13 {
14         if( idx >= config.nb_ports ) return;
15         for( int i=0, sz=config.size(); i<sz; ++i ) {
16                 PluginLV2Client_Opt *opt = config[i];
17                 if( opt->idx == idx ) {
18                         opt->set_value(*(const float*)bfr);
19                         updates |= UPDATE_HOST;
20                         break;
21                 }
22         }
23 }
24 void PluginLV2UI::write_from_ui(void *the, uint32_t idx,
25                 uint32_t bfrsz, uint32_t typ, const void *bfr)
26 {
27         ((PluginLV2UI*)the)->update_value(idx, bfrsz, typ, bfr);
28 }
29
30 uint32_t PluginLV2UI::port_index(void* obj, const char* sym)
31 {
32         PluginLV2UI *the = (PluginLV2UI*)obj;
33         for( int i=0, sz=the->config.size(); i<sz; ++i ) {
34                 PluginLV2Client_Opt *opt = the->config[i];
35                 if( !strcmp(sym, opt->sym) ) return opt->idx;
36         }
37         return UINT32_MAX;
38 }
39
40 void PluginLV2UI::update_control(int idx, uint32_t bfrsz, uint32_t typ, const void *bfr)
41 {
42         if( !sinst || idx >= config.nb_ports ) return;
43         suil_instance_port_event(sinst, idx, bfrsz, typ, bfr);
44 }
45
46
47 uint32_t PluginLV2UI::uri_to_id(LV2_URID_Map_Handle handle, const char *map, const char *uri)
48 {
49         return ((PluginLV2UriTable *)handle)->map(uri);
50 }
51
52 LV2_URID PluginLV2UI::uri_table_map(LV2_URID_Map_Handle handle, const char *uri)
53 {
54         return ((PluginLV2UriTable *)handle)->map(uri);
55 }
56
57 const char *PluginLV2UI::uri_table_unmap(LV2_URID_Map_Handle handle, LV2_URID urid)
58 {
59         return ((PluginLV2UriTable *)handle)->unmap(urid);
60 }
61
62 void PluginLV2UI::lv2ui_instantiate(void *parent)
63 {
64         if ( !ui_host ) {
65                 ui_host = suil_host_new(
66                         PluginLV2UI::write_from_ui,
67                         PluginLV2UI::port_index,
68                         0, 0);
69 //              suil_host_set_touch_func(ui_host, cb_touch);
70         }
71
72         features.remove();  // remove terminating zero
73         ui_features = features.size();
74         LV2_Handle lilv_handle = lilv_instance_get_handle(inst);
75         features.append(new Lv2Feature(NS_EXT "instance-access", lilv_handle));
76         const LV2_Descriptor *lilv_desc = lilv_instance_get_descriptor(inst);
77         ext_data = new LV2_Extension_Data_Feature();
78         ext_data->data_access = lilv_desc->extension_data;
79         features.append(new Lv2Feature(LV2_DATA_ACCESS_URI, ext_data));
80         features.append(new Lv2Feature(LV2_UI__parent, parent));
81         features.append(new Lv2Feature(LV2_UI__idleInterface, 0));
82         features.append(new Lv2Feature(LV2_EXTERNAL_UI_URI, &extui_host));
83         features.append(new Lv2Feature(LV2_EXTERNAL_UI_URI__KX__Host, &extui_host));
84         features.append(0); // add new terminating zero
85
86         const char* bundle_uri  = lilv_node_as_uri(lilv_ui_get_bundle_uri(lilv_ui));
87         char*       bundle_path = lilv_file_uri_parse(bundle_uri, NULL);
88         const char* binary_uri  = lilv_node_as_uri(lilv_ui_get_binary_uri(lilv_ui));
89         char*       binary_path = lilv_file_uri_parse(binary_uri, NULL);
90         sinst = suil_instance_new(ui_host, this, ui_type,
91                 lilv_node_as_uri(lilv_plugin_get_uri(lilv)),
92                 lilv_node_as_uri(lilv_ui_get_uri(lilv_ui)),
93                 lilv_node_as_uri(lilv_type),
94                 bundle_path, binary_path, features);
95
96         lilv_free(binary_path);
97         lilv_free(bundle_path);
98 }
99
100 bool PluginLV2UI::lv2ui_resizable()
101 {
102         if( !lilv_ui ) return false;
103         const LilvNode* s   = lilv_ui_get_uri(lilv_ui);
104         LilvNode *p   = lilv_new_uri(world, LV2_CORE__optionalFeature);
105         LilvNode *fs  = lilv_new_uri(world, LV2_UI__fixedSize);
106         LilvNode *nrs = lilv_new_uri(world, LV2_UI__noUserResize);
107         LilvNodes *fs_matches = lilv_world_find_nodes(world, s, p, fs);
108         LilvNodes *nrs_matches = lilv_world_find_nodes(world, s, p, nrs);
109         lilv_nodes_free(nrs_matches);
110         lilv_nodes_free(fs_matches);
111         lilv_node_free(nrs);
112         lilv_node_free(fs);
113         lilv_node_free(p);
114         return !fs_matches && !nrs_matches;
115 }
116
117 //force= 1:ctls(all),gui(all)  0:changed(ctls)  -1:gui(all)
118 int PluginLV2UI::update_lv2_input(float *vals, int force)
119 {
120         int ret = 0;
121         float *ctls = config.ctls;
122         for( int i=0; i<config.size(); ++i ) {
123                 int idx = config[i]->idx;
124                 float val = vals[idx];
125                 if( !force && ctls[idx] == val ) continue;
126                 if( force >= 0 ) {
127                         ctls[idx] = val;
128                         ++ret;
129                 }
130                 if( force )
131                         update_control(idx, sizeof(val), 0, &val);
132         }
133         return ret;
134 }
135
136 void PluginLV2UI::update_lv2_output()
137 {
138         int *ports = config.ports;
139         float *ctls = config.ctls;
140         for( int i=0; i<config.nb_ports; ++i ) {
141                 if( !(ports[i] & PORTS_UPDATE) ) continue;
142                 ports[i] &= ~PORTS_UPDATE;
143                 update_control(i, sizeof(ctls[i]), 0, &ctls[i]);
144         }
145 }
146
147 void PluginLV2UI::run_lilv(int samples)
148 {
149         float ctls[config.nb_ports];
150         for( int i=0; i<config.nb_ports; ++i ) ctls[i] = config.ctls[i];
151
152         lilv_instance_run(inst, samples);
153
154         if( worker_iface ) worker_responses();
155
156         for( int i=0; i<config.nb_ports; ++i ) {
157                 if( !(config.ports[i] & PORTS_OUTPUT) ) continue;
158                 if( !(config.ports[i] & PORTS_CONTROL) ) continue;
159                 if( config.ctls[i] == ctls[i] ) continue;
160                 config.ports[i] |= PORTS_UPDATE;
161                 updates |= UPDATE_PORTS;
162         }
163 }
164
165 void PluginLV2ChildUI::start_gui()
166 {
167         if( gui ) gui->start_gui();
168         update_lv2_input(config.ctls, 1);
169         connect_ports(config, PORTS_CONTROL | PORTS_ATOM);
170         int n = 0;
171
172         updates = 0;
173         run_lilv(n);
174         if( gui ) {
175                 send_host(LV2_SHOW, 0, 0);
176                 hidden = 0;
177         }
178 }
179
180 void PluginLV2UI::update_host()
181 {
182 // ignore update
183         if( running < 0 ) { running = 1;  return; }
184         send_host(LV2_UPDATE, config.ctls, sizeof(float)*config.nb_ports);
185 }
186
187
188 static void lv2ui_extui_host_ui_closed(void *p)
189 {
190         PluginLV2UI *ui = (PluginLV2UI *)p;
191         ui->hidden = -1;
192 }
193
194 int PluginLV2ChildUI::init_ui(const char *path, int sample_rate, int bfrsz)
195 {
196         char *title = PluginLV2UI::title;
197         if( load_lv2(path, title) ) return 1;
198         if( init_lv2(config, sample_rate, bfrsz) ) return 1;
199
200         lilv_uis = lilv_plugin_get_uis(lilv);
201         if( !gui && lilv_uis && wgt_type ) {
202                 LilvNode *gui_type = lilv_new_uri(world, wgt_type);
203                 LILV_FOREACH(uis, i, lilv_uis) {
204                         const LilvUI *ui = lilv_uis_get(lilv_uis, i);
205                         if( lilv_ui_is_supported(ui, suil_ui_supported, gui_type, &lilv_type)) {
206                                 extui_host.ui_closed = lv2ui_extui_host_ui_closed;
207                                 gui = new PluginLV2ChildWgtUI(this);
208                                 lilv_ui = ui;
209                                 ui_type = wgt_type;
210                                 break;
211                         }
212                 }
213                 lilv_node_free(gui_type);
214         }
215         if( !gui && lilv_uis && gtk_type ) {
216                 LilvNode *gui_type = lilv_new_uri(world, gtk_type);
217                 LILV_FOREACH(uis, i, lilv_uis) {
218                         const LilvUI *ui = lilv_uis_get(lilv_uis, i);
219                         if( lilv_ui_is_supported(ui, suil_ui_supported, gui_type, &lilv_type)) {
220                                 gui = new PluginLV2ChildGtkUI(this);
221                                 lilv_ui = ui;
222                                 ui_type = gtk_type;
223                                 break;
224                         }
225                 }
226                 lilv_node_free(gui_type);
227                 ui_type = gtk_type;
228         }
229
230         lilv_instance_activate(inst);
231         return 0;
232 }
233
234 void PluginLV2ChildUI::reset_gui()
235 {
236         if( gui ) gui->reset_gui();
237         if( sinst )     { suil_instance_free(sinst);  sinst = 0; }
238         if( ui_host )   { suil_host_free(ui_host);    ui_host = 0; }
239
240         while( features.size() > ui_features ) features.remove_object();
241         features.append(0);
242         send_host(LV2_HIDE, 0, 0);
243         hidden = 1;
244 }
245
246 // main loop
247 int PluginLV2ChildUI::run_ui()
248 {
249         double last_time = 0;
250         int64_t frame_usecs = 1e6 / refreshrate;
251         running = 1;
252         done = 0;
253         while( !done ) {
254                 if( hidden < 0 ) {
255                         if( gui ) gui->top_level = 0;
256                         reset_gui();
257                         if( !is_forked() ) {
258                                 done = -1;
259                                 break;
260                         }
261                         hidden = 1;
262                 }
263                 if( updates ) {
264                         if( (updates & UPDATE_PORTS) )
265                                 update_lv2_output();
266                         if( (updates & UPDATE_HOST) )
267                                 update_host();
268                         updates = 0;
269                 }
270                 struct timeval tv;  gettimeofday(&tv, 0);
271                 double t = tv.tv_sec + tv.tv_usec / 1e6;
272                 double dt = t - last_time;  last_time = t;
273                 int64_t usec = frame_usecs - dt*1e6;
274                 if( usec < 0 ) usec = 0;
275                 if( child_iteration(usec) < 0 )
276                         done = 1;
277         }
278         running = 0;
279         return 0;
280 }
281
282 void PluginLV2ChildUI::run_buffer(int shmid)
283 {
284         if( !shm_buffer(shmid) ) return;
285         map_buffer();
286         connect_ports(config, PORTS_ALL);
287         run_lilv(shm_bfr->samples);
288         shm_bfr->done = 1;
289 }
290
291 int PluginLV2ChildUI::child_iteration(int64_t usec)
292 {
293         int ret = 0;
294         if( is_forked() )
295                 ret = read_child(usec);
296         else if( gui )
297                 usleep(usec);
298         else
299                 ret = -1;
300
301         if( ret > 0 ) {
302                 switch( child_token ) {
303                 case LV2_OPEN: {
304                         open_bfr_t *open_bfr = (open_bfr_t *)child_data;
305                         if( init_ui(open_bfr->path, open_bfr->sample_rate, open_bfr->bfrsz) ) {
306                                 printf("lv2ui: unable to init: %s\n", open_bfr->path);
307                                 exit(1);
308                         }
309                         break; }
310                 case LV2_LOAD: {
311                         float *vals = (float *)child_data;
312                         update_lv2_input(vals, 1);
313                         break; }
314                 case LV2_CONFIG: {
315                         float *vals = (float *)child_data;
316                         update_lv2_input(vals, 0);
317                         break; }
318                 case LV2_UPDATE: {
319                         float *vals = (float *)child_data;
320                         update_lv2_input(vals, -1);
321                         break; }
322                 case LV2_SHOW: {
323                         start_gui();
324                         break; }
325                 case LV2_HIDE: {
326                         reset_gui();
327                         break; }
328                 case LV2_SHMID: {
329                         int shmid = *(int *)child_data;
330                         run_buffer(shmid);
331                         send_parent(LV2_SHMID, 0, 0);
332                         break; }
333                 case EXIT_CODE:
334                         return -1;
335                 }
336         }
337         if( ret >= 0 && gui )
338                 gui->handle_child();
339         return ret;
340 }
341
342 int PluginLV2ChildUI::send_host(int64_t token, const void *data, int bytes)
343 {
344         return is_forked() ? send_parent(token, data, bytes) : 0;
345 }
346
347 PluginLV2GUI::PluginLV2GUI(PluginLV2ChildUI *child_ui)
348 {
349         this->child_ui = child_ui;
350         top_level = 0;
351 }
352
353 PluginLV2GUI::~PluginLV2GUI()
354 {
355 }
356
357 PluginLV2ChildGtkUI::PluginLV2ChildGtkUI(PluginLV2ChildUI *child_ui)
358  : PluginLV2GUI(child_ui)
359 {
360         gtk_set_locale();
361         gtk_init(&child_ui->ac, &child_ui->av);
362 }
363
364 PluginLV2ChildGtkUI::~PluginLV2ChildGtkUI()
365 {
366 }
367
368 void PluginLV2ChildGtkUI::reset_gui()
369 {
370         GtkWidget *top_level = (GtkWidget *)this->top_level;
371         if( top_level ) { gtk_widget_destroy(top_level); this->top_level = 0; }
372 }
373
374 static void lilv_gtk_destroy(GtkWidget* widget, gpointer data)
375 {
376         PluginLV2ChildGtkUI *gui = (PluginLV2ChildGtkUI*)data;
377         gui->child_ui->hidden = -1;
378 }
379
380 void PluginLV2ChildGtkUI::start_gui()
381 {
382         this->top_level = (void *)gtk_window_new(GTK_WINDOW_TOPLEVEL);
383         GtkWidget *top_level = (GtkWidget *)this->top_level;
384         g_signal_connect(top_level, "destroy", G_CALLBACK(lilv_gtk_destroy), this);
385         char *title = child_ui->PluginLV2UI::title;
386         gtk_window_set_title(GTK_WINDOW(top_level), title);
387
388         GtkWidget *vbox = gtk_vbox_new(FALSE, 0);
389         gtk_window_set_role(GTK_WINDOW(top_level), "plugin_ui");
390         gtk_container_add(GTK_CONTAINER(top_level), vbox);
391
392         GtkWidget *alignment = gtk_alignment_new(0.5, 0.5, 1.0, 1.0);
393         gtk_box_pack_start(GTK_BOX(vbox), alignment, TRUE, TRUE, 0);
394         gtk_widget_show(alignment);
395         child_ui->lv2ui_instantiate(alignment);
396         GtkWidget* widget = (GtkWidget*)suil_instance_get_widget(child_ui->sinst);
397         gtk_container_add(GTK_CONTAINER(alignment), widget);
398         gtk_window_set_resizable(GTK_WINDOW(top_level), child_ui->lv2ui_resizable());
399         gtk_widget_show_all(vbox);
400         gtk_widget_grab_focus(widget);
401         gtk_window_present(GTK_WINDOW(top_level));
402 }
403
404 int PluginLV2ChildGtkUI::handle_child()
405 {
406         if( gtk_events_pending() ) {
407                 gtk_main_iteration();
408         }
409         return 1;
410 }
411
412 PluginLV2ChildWgtUI::PluginLV2ChildWgtUI(PluginLV2ChildUI *child_ui)
413  : PluginLV2GUI(child_ui)
414 {
415 }
416
417 PluginLV2ChildWgtUI::~PluginLV2ChildWgtUI()
418 {
419 }
420
421 void PluginLV2ChildWgtUI::reset_gui()
422 {
423         lv2_external_ui *top_level = (lv2_external_ui *)this->top_level;
424         if( top_level ) { LV2_EXTERNAL_UI_HIDE(top_level); this->top_level = 0; }
425 }
426
427 void PluginLV2ChildWgtUI::start_gui()
428 {
429         child_ui->lv2ui_instantiate(0);
430         this->top_level = (void *)suil_instance_get_widget(child_ui->sinst);
431         lv2_external_ui *top_level = (lv2_external_ui *)this->top_level;
432         if( top_level ) LV2_EXTERNAL_UI_SHOW(top_level);
433 }
434
435 int PluginLV2ChildWgtUI::handle_child()
436 {
437         lv2_external_ui *top_level = (lv2_external_ui *)this->top_level;
438         if( top_level )
439                 LV2_EXTERNAL_UI_RUN(top_level);
440         return 1;
441 }
442