chiark / gitweb /
More careful about compact mode transition detection
[disorder] / disobedience / disobedience.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder.
4778e044 3 * Copyright (C) 2006-2009 Richard Kettlewell
460b9539 4 *
e7eb3a27 5 * This program is free software: you can redistribute it and/or modify
460b9539 6 * it under the terms of the GNU General Public License as published by
e7eb3a27 7 * the Free Software Foundation, either version 3 of the License, or
460b9539 8 * (at your option) any later version.
9 *
e7eb3a27
RK
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 *
460b9539 15 * You should have received a copy of the GNU General Public License
e7eb3a27 16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
460b9539 17 */
219dc95c
RK
18/** @file disobedience/disobedience.c
19 * @brief Main Disobedience program
20 */
460b9539 21
22#include "disobedience.h"
3fbdc96d 23#include "version.h"
460b9539 24
25#include <getopt.h>
26#include <locale.h>
fe8f8518 27#include <pcre.h>
5bf7c546 28#include <gcrypt.h>
460b9539 29
30/* Apologies for the numerous de-consting casts, but GLib et al do not seem to
31 * have heard of const. */
32
460b9539 33/* Variables --------------------------------------------------------------- */
34
219dc95c
RK
35/** @brief Event loop */
36GMainLoop *mainloop;
37
38/** @brief Top-level window */
39GtkWidget *toplevel;
40
41/** @brief Label for progress indicator */
42GtkWidget *report_label;
43
44/** @brief Main tab group */
45GtkWidget *tabs;
46
47/** @brief Main client */
48disorder_eclient *client;
460b9539 49
73f1b9f3
RK
50/** @brief Log client */
51disorder_eclient *logclient;
52
219dc95c
RK
53/** @brief Last reported state
54 *
55 * This is updated by log_state().
56 */
57unsigned long last_state;
58
59/** @brief True if some track is playing
60 *
61 * This ought to be removed in favour of last_state & DISORDER_PLAYING
62 */
63int playing;
64
65/** @brief Left channel volume */
66int volume_l;
67
68/** @brief Right channel volume */
69int volume_r;
460b9539 70
b50cfb8a
RK
71/** @brief Audio backend */
72const struct uaudio *backend;
73
460b9539 74double goesupto = 10; /* volume upper bound */
219dc95c 75
7858930d 76/** @brief True if a NOP is in flight */
77static int nop_in_flight;
78
a99c4e9a
RK
79/** @brief True if an rtp-address command is in flight */
80static int rtp_address_in_flight;
81
6f09d54d
RK
82/** @brief True if a rights lookup is in flight */
83static int rights_lookup_in_flight;
84
85/** @brief Current rights bitmap */
86rights_type last_rights;
87
a99c4e9a
RK
88/** @brief True if RTP play is available
89 *
90 * This is a bit of a bodge...
91 */
92int rtp_supported;
93
94/** @brief True if RTP play is enabled */
95int rtp_is_running;
96
45e6d04a
RK
97/** @brief Server version */
98const char *server_version;
99
100/** @brief Parsed server version */
101long server_version_bytes;
102
ac904902
RK
103static GtkWidget *queue;
104
105static GtkWidget *notebook_box;
106
107static int main_current_fullmode = 1;
108
00e0c652
RK
109static void check_rtp_address(const char *event,
110 void *eventdata,
111 void *callbackdata);
adafcbcf 112
460b9539 113/* Window creation --------------------------------------------------------- */
114
115/* Note that all the client operations kicked off from here will only complete
116 * after we've entered the event loop. */
117
219dc95c
RK
118/** @brief Called when main window is deleted
119 *
120 * Terminates the program.
121 */
460b9539 122static gboolean delete_event(GtkWidget attribute((unused)) *widget,
123 GdkEvent attribute((unused)) *event,
124 gpointer attribute((unused)) data) {
125 D(("delete_event"));
126 exit(0); /* die immediately */
127}
128
219dc95c
RK
129/** @brief Called when the current tab is switched
130 *
131 * Updates the menu settings to correspond to the new page.
132 */
2a3fe554 133static void tab_switched(GtkNotebook *notebook,
460b9539 134 GtkNotebookPage attribute((unused)) *page,
135 guint page_num,
136 gpointer attribute((unused)) user_data) {
2a3fe554
RK
137 GtkWidget *const tab = gtk_notebook_get_nth_page(notebook, page_num);
138 const struct tabtype *const t = g_object_get_data(G_OBJECT(tab), "type");
ee7552f8 139 assert(t != 0);
2a3fe554
RK
140 if(t->selected)
141 t->selected();
460b9539 142}
143
219dc95c 144/** @brief Create the report box */
460b9539 145static GtkWidget *report_box(void) {
146 GtkWidget *vbox = gtk_vbox_new(FALSE, 0);
147
148 report_label = gtk_label_new("");
149 gtk_label_set_ellipsize(GTK_LABEL(report_label), PANGO_ELLIPSIZE_END);
150 gtk_misc_set_alignment(GTK_MISC(report_label), 0, 0);
151 gtk_container_add(GTK_CONTAINER(vbox), gtk_hseparator_new());
152 gtk_container_add(GTK_CONTAINER(vbox), report_label);
153 return vbox;
154}
155
219dc95c 156/** @brief Create and populate the main tab group */
460b9539 157static GtkWidget *notebook(void) {
158 tabs = gtk_notebook_new();
d4ef4132
RK
159 /* The current tab is _NORMAL, the rest are _ACTIVE, which is bizarre but
160 * produces not too dreadful appearance */
33288048 161 gtk_widget_set_style(tabs, tool_style);
460b9539 162 g_signal_connect(tabs, "switch-page", G_CALLBACK(tab_switched), 0);
ac904902 163 gtk_notebook_append_page(GTK_NOTEBOOK(tabs), queue = queue_widget(),
460b9539 164 gtk_label_new("Queue"));
165 gtk_notebook_append_page(GTK_NOTEBOOK(tabs), recent_widget(),
166 gtk_label_new("Recent"));
167 gtk_notebook_append_page(GTK_NOTEBOOK(tabs), choose_widget(),
168 gtk_label_new("Choose"));
4eb1f430
RK
169 gtk_notebook_append_page(GTK_NOTEBOOK(tabs), added_widget(),
170 gtk_label_new("Added"));
460b9539 171 return tabs;
172}
173
ac904902
RK
174static void main_minimode(const char attribute((unused)) *event,
175 void attribute((unused)) *evendata,
176 void attribute((unused)) *callbackdata) {
177 if(full_mode == main_current_fullmode)
178 return;
179 if(full_mode) {
180 /* Remove queue from display */
181 g_object_ref(queue);
182 gtk_container_remove(GTK_CONTAINER(notebook_box), queue);
183 /* Add queue to notebook */
184 gtk_notebook_prepend_page(GTK_NOTEBOOK(tabs), queue,
185 gtk_label_new("Queue"));
186 g_object_unref(queue);
187 /* Add notebook to display */
188 gtk_container_add(GTK_CONTAINER(notebook_box), tabs);
189 g_object_unref(tabs);
190 /* Show the queue (bit confusing otherwise!) */
191 gtk_notebook_set_current_page(GTK_NOTEBOOK(tabs), 0);
192 } else {
193 /* Remove notebook from display */
194 g_object_ref(tabs);
195 gtk_container_remove(GTK_CONTAINER(notebook_box), tabs);
196 /* Remove queue from notebook */
197 g_object_ref(queue);
198 gtk_container_remove(GTK_CONTAINER(tabs), queue);
199 /* Add queue to display */
200 gtk_container_add(GTK_CONTAINER(notebook_box), queue);
201 g_object_unref(queue);
202 }
203 main_current_fullmode = full_mode;
204}
205
219dc95c 206/** @brief Create and populate the main window */
460b9539 207static void make_toplevel_window(void) {
208 GtkWidget *const vbox = gtk_vbox_new(FALSE, 1);
209 GtkWidget *const rb = report_box();
210
211 D(("top_window"));
212 toplevel = gtk_window_new(GTK_WINDOW_TOPLEVEL);
213 /* default size is too small */
214 gtk_window_set_default_size(GTK_WINDOW(toplevel), 640, 480);
215 /* terminate on close */
216 g_signal_connect(G_OBJECT(toplevel), "delete_event",
217 G_CALLBACK(delete_event), NULL);
218 /* lay out the window */
219 gtk_window_set_title(GTK_WINDOW(toplevel), "Disobedience");
220 gtk_container_add(GTK_CONTAINER(toplevel), vbox);
221 /* lay out the vbox */
222 gtk_box_pack_start(GTK_BOX(vbox),
223 menubar(toplevel),
224 FALSE, /* expand */
225 FALSE, /* fill */
226 0);
227 gtk_box_pack_start(GTK_BOX(vbox),
228 control_widget(),
229 FALSE, /* expand */
230 FALSE, /* fill */
231 0);
ac904902
RK
232 notebook_box = gtk_vbox_new(FALSE, 0);
233 gtk_container_add(GTK_CONTAINER(notebook_box), notebook());
234 gtk_container_add(GTK_CONTAINER(vbox), notebook_box);
460b9539 235 gtk_box_pack_end(GTK_BOX(vbox),
236 rb,
237 FALSE, /* expand */
238 FALSE, /* fill */
239 0);
33288048 240 gtk_widget_set_style(toplevel, tool_style);
ac904902 241 event_register("mini-mode-changed", main_minimode, 0);
460b9539 242}
243
6f09d54d 244static void userinfo_rights_completed(void attribute((unused)) *v,
abf99697 245 const char *err,
6f09d54d
RK
246 const char *value) {
247 rights_type r;
248
abf99697
RK
249 if(err) {
250 popup_protocol_error(0, err);
6f09d54d
RK
251 r = 0;
252 } else {
253 if(parse_rights(value, &r, 0))
254 r = 0;
255 }
256 /* If rights have changed, signal everything that cares */
257 if(r != last_rights) {
258 last_rights = r;
259 ++suppress_actions;
260 event_raise("rights-changed", 0);
261 --suppress_actions;
262 }
263 rights_lookup_in_flight = 0;
264}
265
45e6d04a
RK
266static void check_rights(void) {
267 if(!rights_lookup_in_flight) {
268 rights_lookup_in_flight = 1;
269 disorder_eclient_userinfo(client,
270 userinfo_rights_completed,
271 config->username, "rights",
272 0);
273 }
274}
275
321f7536
RK
276/** @brief Called occasionally */
277static gboolean periodic_slow(gpointer attribute((unused)) data) {
6f09d54d 278 D(("periodic_slow"));
460b9539 279 /* Expire cached data */
280 cache_expire();
281 /* Update everything to be sure that the connection to the server hasn't
282 * mysteriously gone stale on us. */
283 all_update();
fc36ecb7 284 event_raise("periodic-slow", 0);
adafcbcf 285 /* Recheck RTP status too */
00e0c652 286 check_rtp_address(0, 0, 0);
460b9539 287 return TRUE; /* don't remove me */
288}
289
321f7536
RK
290/** @brief Called frequently */
291static gboolean periodic_fast(gpointer attribute((unused)) data) {
292#if 0 /* debugging hack */
460b9539 293 static struct timeval last;
294 struct timeval now;
295 double delta;
296
297 xgettimeofday(&now, 0);
298 if(last.tv_sec) {
299 delta = (now.tv_sec + now.tv_sec / 1.0E6)
300 - (last.tv_sec + last.tv_sec / 1.0E6);
301 if(delta >= 1.0625)
302 fprintf(stderr, "%f: %fs between 1s heartbeats\n",
303 now.tv_sec + now.tv_sec / 1.0E6,
304 delta);
305 }
306 last = now;
321f7536 307#endif
b50cfb8a 308 if(rtp_supported && backend && backend->get_volume) {
321f7536 309 int nl, nr;
b50cfb8a
RK
310 backend->get_volume(&nl, &nr);
311 if(nl != volume_l || nr != volume_r) {
321f7536
RK
312 volume_l = nl;
313 volume_r = nr;
1f868ca3 314 event_raise("volume-changed", 0);
321f7536
RK
315 }
316 }
00e0c652 317 /* Periodically check what our rights are */
45e6d04a
RK
318 int recheck_rights = 1;
319 if(server_version_bytes >= 0x04010000)
320 /* Server versions after 4.1 will send updates */
321 recheck_rights = 0;
322 if((server_version_bytes & 0xFF) == 0x01)
323 /* Development servers might do regardless of their version number */
324 recheck_rights = 0;
325 if(recheck_rights)
326 check_rights();
fc36ecb7 327 event_raise("periodic-fast", 0);
460b9539 328 return TRUE;
329}
330
7858930d 331/** @brief Called when a NOP completes */
53fa91bb 332static void nop_completed(void attribute((unused)) *v,
abf99697 333 const char attribute((unused)) *err) {
53fa91bb 334 /* TODO report the error somewhere */
7858930d 335 nop_in_flight = 0;
336}
337
338/** @brief Called from time to time to arrange for a NOP to be sent
339 *
340 * At most one NOP remains in flight at any moment. If the client is not
341 * currently connected then no NOP is sent.
342 */
343static gboolean maybe_send_nop(gpointer attribute((unused)) data) {
8f763f1b 344 if(!nop_in_flight && (disorder_eclient_state(client) & DISORDER_CONNECTED)) {
7858930d 345 nop_in_flight = 1;
346 disorder_eclient_nop(client, nop_completed, 0);
347 }
a99c4e9a 348 if(rtp_supported) {
6c7a654c 349 const int rtp_was_running = rtp_is_running;
a99c4e9a 350 rtp_is_running = rtp_running();
6c7a654c
RK
351 if(rtp_was_running != rtp_is_running)
352 event_raise("rtp-changed", 0);
a99c4e9a 353 }
7858930d 354 return TRUE; /* keep call me please */
355}
356
a99c4e9a
RK
357/** @brief Called when a rtp-address command succeeds */
358static void got_rtp_address(void attribute((unused)) *v,
abf99697 359 const char *err,
a99c4e9a
RK
360 int attribute((unused)) nvec,
361 char attribute((unused)) **vec) {
3849817f 362 const int rtp_was_supported = rtp_supported;
6c7a654c
RK
363 const int rtp_was_running = rtp_is_running;
364
fb44b59e 365 ++suppress_actions;
a99c4e9a 366 rtp_address_in_flight = 0;
abf99697 367 if(err) {
4190a4d9
RK
368 /* An error just means that we're not using network play */
369 rtp_supported = 0;
370 rtp_is_running = 0;
371 } else {
372 rtp_supported = 1;
373 rtp_is_running = rtp_running();
4190a4d9 374 }
00e0c652
RK
375 /*fprintf(stderr, "rtp supported->%d, running->%d\n",
376 rtp_supported, rtp_is_running);*/
3849817f
RK
377 if(rtp_supported != rtp_was_supported
378 || rtp_is_running != rtp_was_running)
6c7a654c 379 event_raise("rtp-changed", 0);
fb44b59e 380 --suppress_actions;
a99c4e9a
RK
381}
382
383/** @brief Called to check whether RTP play is available */
00e0c652
RK
384static void check_rtp_address(const char attribute((unused)) *event,
385 void attribute((unused)) *eventdata,
386 void attribute((unused)) *callbackdata) {
387 if(!rtp_address_in_flight) {
388 //fprintf(stderr, "checking rtp\n");
4190a4d9 389 disorder_eclient_rtp_address(client, got_rtp_address, NULL);
00e0c652 390 }
a99c4e9a
RK
391}
392
460b9539 393/* main -------------------------------------------------------------------- */
394
395static const struct option options[] = {
396 { "help", no_argument, 0, 'h' },
397 { "version", no_argument, 0, 'V' },
398 { "config", required_argument, 0, 'c' },
399 { "tufnel", no_argument, 0, 't' },
460b9539 400 { "debug", no_argument, 0, 'd' },
401 { 0, 0, 0, 0 }
402};
403
404/* display usage message and terminate */
405static void help(void) {
406 xprintf("Disobedience - GUI client for DisOrder\n"
407 "\n"
408 "Usage:\n"
409 " disobedience [OPTIONS]\n"
410 "Options:\n"
411 " --help, -h Display usage message\n"
412 " --version, -V Display version number\n"
413 " --config PATH, -c PATH Set configuration file\n"
414 " --debug, -d Turn on debugging\n"
415 "\n"
416 "Also GTK+ options will work.\n");
417 xfclose(stdout);
418 exit(0);
419}
420
45e6d04a
RK
421static void version_completed(void attribute((unused)) *v,
422 const char attribute((unused)) *err,
3665689a 423 const char *ver) {
45e6d04a
RK
424 long major, minor, patch, dev;
425
3665689a 426 if(!ver) {
45e6d04a
RK
427 server_version = 0;
428 server_version_bytes = 0;
429 return;
430 }
3665689a 431 server_version = ver;
45e6d04a 432 server_version_bytes = 0;
3665689a
RK
433 major = strtol(ver, (char **)&ver, 10);
434 if(*ver != '.')
45e6d04a 435 return;
3665689a
RK
436 ++ver;
437 minor = strtol(ver, (char **)&ver, 10);
438 if(*ver == '.') {
439 ++ver;
440 patch = strtol(ver, (char **)&ver, 10);
45e6d04a
RK
441 } else
442 patch = 0;
3665689a
RK
443 if(*ver) {
444 if(*ver == '+') {
45e6d04a 445 dev = 1;
3665689a 446 ++ver;
45e6d04a 447 }
3665689a 448 if(*ver)
45e6d04a
RK
449 dev = 2;
450 } else
451 dev = 0;
452 server_version_bytes = (major << 24) + (minor << 16) + (patch << 8) + dev;
453}
454
7c30fc75 455void logged_in(void) {
73f1b9f3
RK
456 /* reset the clients */
457 disorder_eclient_close(client);
458 disorder_eclient_close(logclient);
a99c4e9a 459 rtp_supported = 0;
7c30fc75 460 event_raise("logged-in", 0);
6f09d54d 461 /* Force the periodic checks */
6f09d54d
RK
462 periodic_slow(0);
463 periodic_fast(0);
45e6d04a
RK
464 /* Recheck server version */
465 disorder_eclient_version(client, version_completed, 0);
68210888
RK
466 disorder_eclient_enable_connect(client);
467 disorder_eclient_enable_connect(logclient);
73f1b9f3
RK
468}
469
460b9539 470int main(int argc, char **argv) {
471 int n;
ce73fea7 472 gboolean gtkok;
460b9539 473
320598d4 474 mem_init();
fe8f8518
RK
475 /* garbage-collect PCRE's memory */
476 pcre_malloc = xmalloc;
477 pcre_free = xfree;
2e9ba080 478 if(!setlocale(LC_CTYPE, "")) disorder_fatal(errno, "error calling setlocale");
ce73fea7 479 gtkok = gtk_init_check(&argc, &argv);
c3df9503 480 while((n = getopt_long(argc, argv, "hVc:dtHC", options, 0)) >= 0) {
460b9539 481 switch(n) {
482 case 'h': help();
3fbdc96d 483 case 'V': version("disobedience");
460b9539 484 case 'c': configfile = optarg; break;
485 case 'd': debugging = 1; break;
486 case 't': goesupto = 11; break;
2e9ba080 487 default: disorder_fatal(0, "invalid option");
460b9539 488 }
489 }
ce73fea7 490 if(!gtkok)
2e9ba080 491 disorder_fatal(0, "failed to initialize GTK+");
5bf7c546
RK
492 /* gcrypt initialization */
493 if(!gcry_check_version(NULL))
494 disorder_fatal(0, "gcry_check_version failed");
495 gcry_control(GCRYCTL_INIT_SECMEM, 0);
496 gcry_control (GCRYCTL_INITIALIZATION_FINISHED, 0);
346ba8d5 497 signal(SIGPIPE, SIG_IGN);
33288048 498 init_styles();
b4f8eba1 499 load_settings();
460b9539 500 /* create the event loop */
501 D(("create main loop"));
502 mainloop = g_main_loop_new(0, 0);
2e9ba080 503 if(config_read(0, NULL)) disorder_fatal(0, "cannot read configuration");
b50cfb8a
RK
504 /* we'll need mixer support */
505 backend = uaudio_apis[0];
61ad0645
RK
506 if(backend->configure)
507 backend->configure();
b50cfb8a
RK
508 if(backend->open_mixer)
509 backend->open_mixer();
460b9539 510 /* create the clients */
1c0d78bd
RK
511 if(!(client = gtkclient())
512 || !(logclient = gtkclient()))
513 return 1; /* already reported an error */
321f7536 514 /* periodic operations (e.g. expiring the cache, checking local volume) */
00e0c652 515 g_timeout_add(600000/*milliseconds*/, periodic_slow, 0);
321f7536 516 g_timeout_add(1000/*milliseconds*/, periodic_fast, 0);
460b9539 517 make_toplevel_window();
518 /* reset styles now everything has its name */
519 gtk_rc_reset_styles(gtk_settings_get_for_screen(gdk_screen_get_default()));
520 gtk_widget_show_all(toplevel);
7858930d 521 /* issue a NOP every so often */
522 g_timeout_add_full(G_PRIORITY_LOW,
d37d5336 523 2000/*interval, ms*/,
7858930d 524 maybe_send_nop,
525 0/*data*/,
526 0/*notify*/);
6d1302f0
RK
527 /* Start monitoring the log */
528 disorder_eclient_log(logclient, &log_callbacks, 0);
6f09d54d 529 /* Initiate all the checks */
6f09d54d 530 periodic_fast(0);
45e6d04a 531 disorder_eclient_version(client, version_completed, 0);
00e0c652 532 event_register("log-connected", check_rtp_address, 0);
fb44b59e 533 suppress_actions = 0;
fc36ecb7 534 playlists_init();
bf5fdf14
RK
535 /* If no password is set yet pop up a login box */
536 if(!config->password)
537 login_box();
460b9539 538 D(("enter main loop"));
539 g_main_loop_run(mainloop);
540 return 0;
541}
542
543/*
544Local Variables:
545c-basic-offset:2
546comment-column:40
547fill-column:79
548indent-tabs-mode:nil
549End:
550*/