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