8144bd8d191f587325d118726a0541201f8ca7d2
[omnplay] / src / omnplay.cpp
1 /*
2 * omnplay.c -- GTK+ 2 omnplay
3 * Copyright (C) 2011 Maksym Veremeyenko <verem@m1stereo.tv>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software Foundation,
17 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
19
20 #ifndef _GNU_SOURCE
21 #define _GNU_SOURCE
22 #endif
23
24 #ifdef HAVE_CONFIG_H
25 # include <config.h>
26 #endif
27
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <gtk/gtk.h>
32 #include <gdk/gdkkeysyms.h>
33 #include <pthread.h>
34
35 #include "omnplay.h"
36 #include "ui.h"
37 #include "opts.h"
38 #include "timecode.h"
39
40 #include "omplrclnt.h"
41
42 static gboolean on_main_window_delete_event( GtkWidget *widget, GdkEvent *event, gpointer user_data )
43 {
44 gtk_exit(0);
45 return TRUE;
46 }
47
48 omnplay_instance_t* omnplay_create(int argc, char** argv)
49 {
50 int i, c;
51 omnplay_instance_t* app;
52
53 /* prepare application instance */
54 app = (omnplay_instance_t*)malloc(sizeof(omnplay_instance_t));
55 memset(app, 0, sizeof(omnplay_instance_t));
56
57 /* load parameters from command line */
58 if(!omnplay_opt(argc, argv, app) && app->players.count)
59 app->window = ui_omnplay(app);
60 else
61 omnplay_usage();
62
63 return app;
64 };
65
66 void omnplay_destroy(omnplay_instance_t* app)
67 {
68 free(app);
69 };
70
71 static int find_index_of_playlist_item(omnplay_instance_t* app, int start, int idx)
72 {
73 while(1)
74 {
75 if(app->playlist.item[start].omn_idx == idx)
76 return start;
77
78 if(app->playlist.item[start].type & OMNPLAY_PLAYLIST_BLOCK_END)
79 break;
80
81 start++;
82 };
83
84 return -1;
85 };
86
87 static void omnplay_update_status(omnplay_player_t* player, OmPlrStatus *prev , OmPlrStatus *curr)
88 {
89 int idx;
90 char tc_cur[32], tc_rem[32], state[32], status[32];
91 const char *clip;
92
93 if(curr)
94 {
95 frames2tc(curr->pos - curr->minPos, 25.0, tc_cur);
96 frames2tc(curr->maxPos - curr->pos, 25.0, tc_rem);
97 strcpy(status, "ONLINE");
98 clip = curr->currClipName;
99
100 switch(curr->state)
101 {
102 case omPlrStateStopped: strcpy(state, "STOPPED"); break;
103 case omPlrStateCuePlay: strcpy(state, "CUE_PLAY"); break;
104 case omPlrStatePlay: strcpy(state, "PLAY"); break;
105 case omPlrStateCueRecord: strcpy(state, "CUE_RECORD"); break;
106 case omPlrStateRecord: strcpy(state, "RECORD"); break;
107 };
108 }
109 else
110 {
111 tc_cur[0] = 0;
112 tc_rem[0] = 0;
113 clip = "";
114 state[0] = 0;
115 strcpy(status, "OFFLINE");
116 };
117
118 /* update status in status page */
119 gdk_threads_enter();
120 gtk_label_set_text(GTK_LABEL (player->label_tc_cur), tc_cur);
121 gtk_label_set_text(GTK_LABEL (player->label_tc_rem), tc_rem);
122 gtk_label_set_text(GTK_LABEL (player->label_state), state);
123 gtk_label_set_text(GTK_LABEL (player->label_status), status);
124 gtk_label_set_text(GTK_LABEL (player->label_clip), clip);
125 gdk_flush();
126 gdk_threads_leave();
127
128 /* update remaining time */
129 gdk_threads_enter();
130 pthread_mutex_lock(&player->app->playlist.lock);
131 pthread_mutex_lock(&player->app->players.lock);
132 if(curr->state == omPlrStatePlay || curr->state == omPlrStateCuePlay)
133 {
134 idx = find_index_of_playlist_item(player->app, player->playlist_start, curr->currClipNum);
135 if(idx >= 0)
136 {
137 frames2tc(curr->currClipStartPos + curr->currClipLen - curr->pos, 25.0, tc_rem);
138 omnplay_playlist_draw_item_rem(player->app, idx, tc_rem);
139 }
140 if(curr->currClipNum != prev->currClipNum && 1 != prev->numClips)
141 {
142 tc_rem[0] = 0;
143 idx = find_index_of_playlist_item(player->app, player->playlist_start, prev->currClipNum);
144 if(idx >= 0)
145 omnplay_playlist_draw_item_rem(player->app, idx, tc_rem);
146 };
147 }
148 else
149 {
150 tc_rem[0] = 0;
151 idx = find_index_of_playlist_item(player->app, player->playlist_start, curr->currClipNum);
152 if(idx >= 0)
153 omnplay_playlist_draw_item_rem(player->app, idx, tc_rem);
154 idx = find_index_of_playlist_item(player->app, player->playlist_start, prev->currClipNum);
155 if(idx >= 0)
156 omnplay_playlist_draw_item_rem(player->app, idx, tc_rem);
157 };
158 pthread_mutex_unlock(&player->app->players.lock);
159 pthread_mutex_unlock(&player->app->playlist.lock);
160 gdk_flush();
161 gdk_threads_leave();
162
163
164 memcpy(prev, curr, sizeof(OmPlrStatus));
165 };
166
167 static void* omnplay_thread_proc(void* data)
168 {
169 int r;
170 OmPlrStatus st_curr, st_prev;
171 omnplay_player_t* player = (omnplay_player_t*)data;
172
173 /* connect */
174 pthread_mutex_lock(&player->app->players.lock);
175 r = OmPlrOpen(player->host, player->name, (OmPlrHandle*)&player->handle);
176 pthread_mutex_unlock(&player->app->players.lock);
177 if(r)
178 {
179 fprintf(stderr, "ERROR: OmPlrOpen(%s, %s) failed with 0x%.8X\n",
180 player->host, player->name, r);
181
182 return (void*)r;
183 };
184
185 /* setup to do not reconnect */
186 pthread_mutex_lock(&player->app->players.lock);
187 OmPlrSetRetryOpen((OmPlrHandle)player->handle, 0);
188 pthread_mutex_unlock(&player->app->players.lock);
189
190 /* setup directory */
191 if(player->app->players.path[0])
192 {
193 pthread_mutex_lock(&player->app->players.lock);
194 r = OmPlrClipSetDirectory((OmPlrHandle)player->handle, player->app->players.path);
195 pthread_mutex_unlock(&player->app->players.lock);
196
197 if(r)
198 {
199 fprintf(stderr, "ERROR: OmPlrClipSetDirectory(%s) failed with 0x%.8X\n",
200 player->app->players.path, r);
201
202 pthread_mutex_lock(&player->app->players.lock);
203 OmPlrClose((OmPlrHandle)player->handle);
204 pthread_mutex_unlock(&player->app->players.lock);
205
206 return (void*)r;
207 };
208 };
209
210 /* endless loop */
211 for(r = 0 ; !player->app->f_exit && !r;)
212 {
213 /* sleep */
214 usleep(100000);
215
216 /* get status */
217 pthread_mutex_lock(&player->app->players.lock);
218 st_curr.size = sizeof(OmPlrStatus);
219 r = OmPlrGetPlayerStatus((OmPlrHandle)player->handle, &st_curr);
220 pthread_mutex_unlock(&player->app->players.lock);
221
222 if(r)
223 fprintf(stderr, "ERROR: OmPlrGetPlayerStatus failed with 0x%.8X\n", r);
224 else
225 if(memcmp(&st_curr, &st_prev, sizeof(OmPlrStatus)))
226 omnplay_update_status(player, &st_prev , &st_curr);
227 };
228
229 pthread_mutex_lock(&player->app->players.lock);
230 OmPlrClose((OmPlrHandle)player->handle);
231 pthread_mutex_unlock(&player->app->players.lock);
232
233 return NULL;
234 };
235
236 void get_selected_items_playlist_proc(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer data)
237 {
238 int idx, *list = (int*)data;
239 gtk_tree_model_get(model, iter, 7, &idx, -1);
240 list[list[0] + 1] = idx;
241 list[0] = list[0] + 1;
242 };
243
244 static int* get_selected_items_playlist(omnplay_instance_t* app)
245 {
246 int* list = NULL;
247 GtkTreeSelection *selection;
248
249 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(app->playlist_grid));
250 if(selection)
251 {
252 list = (int*)malloc(sizeof(int) * (MAX_PLAYLIST_ITEMS + 1));
253 memset(list, 0, sizeof(int) * (MAX_PLAYLIST_ITEMS + 1));
254
255 gtk_tree_selection_selected_foreach(
256 selection,
257 get_selected_items_playlist_proc,
258 list);
259
260 if(!list[0])
261 {
262 free(list);
263 list = NULL;
264 };
265 };
266
267 return list;
268 };
269
270 static int get_first_selected_item_playlist(omnplay_instance_t* app)
271 {
272 int idx;
273 int* list = get_selected_items_playlist(app);
274 if(!list) return -1;
275 idx = list[1];
276 free(list);
277 return idx;
278 };
279
280 static int get_playlist_block(omnplay_instance_t* app, int idx, int* start_ptr, int* stop_ptr)
281 {
282 int start, stop;
283
284 for(start = idx; start >= 0; start--)
285 if(app->playlist.item[start].type & OMNPLAY_PLAYLIST_BLOCK_BEGIN)
286 break;
287
288 for(stop = idx; stop < app->playlist.count; stop++)
289 if(app->playlist.item[stop].type & OMNPLAY_PLAYLIST_BLOCK_END)
290 break;
291
292 fprintf(stderr, "get_playlist_block: range %d -> %d\n", start, stop);
293
294 /* check block range */
295 if(start >= 0 && stop < app->playlist.count)
296 {
297 *start_ptr = start;
298 *stop_ptr = stop;
299 return (stop - start + 1);
300 };
301
302 return -1;
303 };
304
305 static omnplay_player_t *get_player_at_pos(omnplay_instance_t* app, int pos)
306 {
307 /* check player range */
308 if(app->playlist.item[pos].player > -1 && app->playlist.item[pos].player < app->players.count)
309 return &app->players.item[app->playlist.item[pos].player];
310
311 return NULL;
312 };
313
314 static void omnplay_ctl(omnplay_instance_t* app, control_buttons_t button)
315 {
316 int i, r;
317 int idx, start, stop;
318 omnplay_player_t *player;
319
320 pthread_mutex_lock(&app->playlist.lock);
321
322 idx = get_first_selected_item_playlist(app);
323
324 if(idx < 0)
325 {
326 pthread_mutex_unlock(&app->playlist.lock);
327 return;
328 };
329
330 fprintf(stderr, "cue: selected item is %d\n", idx);
331
332 if(get_playlist_block(app, idx, &start, &stop) < 0)
333 {
334 pthread_mutex_unlock(&app->playlist.lock);
335 return;
336 };
337
338 fprintf(stderr, "cue: range %d -> %d\n", start, stop);
339
340 player = get_player_at_pos(app, start);
341
342 if(!player)
343 {
344 pthread_mutex_unlock(&app->playlist.lock);
345 return;
346 };
347
348 pthread_mutex_lock(&app->players.lock);
349
350 if(BUTTON_PLAYER_STOP == button || BUTTON_PLAYER_CUE == button)
351 {
352 /* stop */
353 OmPlrStop((OmPlrHandle)player->handle);
354
355 /* detach previous clips */
356 // player->playlist_start = -1;
357 // player->playlist_count = -1;
358 OmPlrDetachAllClips((OmPlrHandle)player->handle);
359 };
360
361 if(BUTTON_PLAYER_CUE == button)
362 {
363 int o, c, p = 0;
364
365 /* Attach clips to timeline */
366 for(i = start, c = 0, o = 0; i <= stop; i++)
367 {
368 OmPlrClipInfo clip;
369
370 /* get clip info */
371 clip.maxMsTracks = 0;
372 clip.size = sizeof(clip);
373 r = OmPlrClipGetInfo((OmPlrHandle)player->handle, app->playlist.item[i].id, &clip);
374
375 if(!r)
376 {
377 unsigned int l;
378
379 fprintf(stderr, "OmPlrClipGetInfo(%s): firstFrame=%d, lastFrame=%d\n",
380 app->playlist.item[i].id, clip.firstFrame, clip.lastFrame);
381
382 /* should we fix playlist clip timings */
383 if(!(
384 app->playlist.item[i].in >= clip.firstFrame &&
385 app->playlist.item[i].in + app->playlist.item[i].dur <= clip.lastFrame) ||
386 !app->playlist.item[i].dur)
387 {
388 fprintf(stderr, "cue: item [%s] will be updated [%d;%d]->[%d;%d]\n",
389 app->playlist.item[i].id,
390 app->playlist.item[i].in, app->playlist.item[i].dur,
391 clip.firstFrame, clip.lastFrame - clip.firstFrame);
392
393 app->playlist.item[i].in = clip.firstFrame;
394 app->playlist.item[i].dur = clip.lastFrame - clip.firstFrame;
395 omnplay_playlist_draw_item(app, i);
396 };
397
398 r = OmPlrAttach((OmPlrHandle)player->handle,
399 app->playlist.item[i].id,
400 app->playlist.item[i].in,
401 app->playlist.item[i].in + app->playlist.item[i].dur,
402 0, omPlrShiftModeAfter, &l);
403 };
404
405 if(r)
406 {
407 fprintf(stderr, "cue: failed with %d, %s\n", r, OmPlrGetErrorString((OmPlrError)r));
408 app->playlist.item[i].omn_idx = -1;
409 app->playlist.item[i].omn_offset = -1;
410 }
411 else
412 {
413 app->playlist.item[i].omn_idx = c;
414 app->playlist.item[i].omn_offset = o;
415
416 /* save selected item offset */
417 if(i == idx) p = o;
418
419 c++;
420 o += app->playlist.item[i].dur;
421 };
422 };
423
424 if(c)
425 {
426 OmPlrStatus hs;
427
428 /* Set timeline min/max */
429 OmPlrSetMinPosMin((OmPlrHandle)player->handle);
430 OmPlrSetMaxPosMax((OmPlrHandle)player->handle);
431
432 /* Set timeline position */
433 hs.minPos = 0;
434 hs.size = sizeof(OmPlrStatus);
435 OmPlrGetPlayerStatus((OmPlrHandle)player->handle, &hs);
436 OmPlrSetPos((OmPlrHandle)player->handle, hs.minPos + p);
437
438 /* setup loop */
439 if(app->playlist.item[start].type & OMNPLAY_PLAYLIST_BLOCK_LOOP)
440 OmPlrLoop((OmPlrHandle)player->handle, hs.minPos, hs.maxPos);
441
442 player->playlist_start = start;
443
444 /* Cue */
445 OmPlrCuePlay((OmPlrHandle)player->handle, 0.0);
446 OmPlrPlay((OmPlrHandle)player->handle, 0.0);
447 };
448 };
449
450 if(BUTTON_PLAYER_PLAY == button)
451 {
452 /* play */
453 OmPlrPlay((OmPlrHandle)player->handle, 1.0);
454 };
455
456 if(BUTTON_PLAYER_PAUSE == button)
457 /* pause */
458 OmPlrPlay((OmPlrHandle)player->handle, 0.0);
459
460 pthread_mutex_unlock(&app->players.lock);
461
462 pthread_mutex_unlock(&app->playlist.lock);
463 };
464
465 static gboolean omnplay_button_click(omnplay_instance_t* app, control_buttons_t button)
466 {
467 switch(button)
468 {
469 case BUTTON_PLAYLIST_ITEM_ADD:
470 case BUTTON_PLAYLIST_ITEM_DEL:
471 case BUTTON_PLAYLIST_ITEM_EDIT:
472 break;
473 case BUTTON_PLAYLIST_LOAD:
474 omnplay_playlist_load(app);
475 break;
476 case BUTTON_PLAYLIST_SAVE:
477 omnplay_playlist_save(app);
478 break;
479 case BUTTON_PLAYLIST_BLOCK_SINGLE:
480 case BUTTON_PLAYLIST_BLOCK_LOOP:
481 break;
482 case BUTTON_PLAYLIST_ITEM_UP:
483 case BUTTON_PLAYLIST_ITEM_DOWN:
484 break;
485 case BUTTON_PLAYER_CUE:
486 case BUTTON_PLAYER_PLAY:
487 case BUTTON_PLAYER_PAUSE:
488 case BUTTON_PLAYER_STOP:
489 omnplay_ctl(app, button);
490 break;
491 case BUTTON_LIBRARY_ADD:
492 case BUTTON_LIBRARY_REFRESH:
493 break;
494 };
495
496 return TRUE;
497 };
498
499 static gboolean on_button_click(GtkWidget *button, gpointer user_data)
500 {
501 int i;
502 omnplay_instance_t* app = (omnplay_instance_t*)user_data;
503
504 for(i = 1; i < BUTTON_LAST; i++)
505 if(app->buttons[i] == button)
506 return omnplay_button_click(app, (control_buttons_t)i);
507
508 return FALSE;
509 };
510
511 void omnplay_init(omnplay_instance_t* app)
512 {
513 int i;
514 pthread_mutexattr_t attr;
515
516 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
517
518 gtk_signal_connect( GTK_OBJECT( app->window ), "destroy",
519 GTK_SIGNAL_FUNC(on_main_window_delete_event), app);
520
521 /* create lock */
522 pthread_mutex_init(&app->players.lock, &attr);
523
524 /* create a omneon status thread */
525 for(i = 0; i < app->players.count; i++)
526 pthread_create(&app->players.item[i].thread, NULL,
527 omnplay_thread_proc, &app->players.item[i]);
528
529 /* create lock */
530 pthread_mutex_init(&app->playlist.lock, &attr);
531
532 /* attach buttons click */
533 for(i = 1; i < BUTTON_LAST; i++)
534 gtk_signal_connect(GTK_OBJECT(app->buttons[i]), "clicked",
535 GTK_SIGNAL_FUNC( on_button_click), app );
536
537 };
538
539 void omnplay_release(omnplay_instance_t* app)
540 {
541 int i;
542 void* r;
543
544 app->f_exit = 1;
545
546 for(i = 0; i < app->players.count; i++)
547 /* create a omneon status thread */
548 pthread_join(app->players.item[i].thread, &r);
549
550 /* destroy lock */
551 pthread_mutex_destroy(&app->players.lock);
552
553 /* destroy lock */
554 pthread_mutex_destroy(&app->playlist.lock);
555 };