chiark / gitweb /
more help widget fixes
[disorder] / disobedience / disobedience.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder.
eb525fcd 3 * Copyright (C) 2006, 2007 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"
25
26#include <getopt.h>
27#include <locale.h>
fe8f8518 28#include <pcre.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
33#include "style.h" /* generated style */
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
348ef780
RK
81/** @brief Global tooltip group */
82GtkTooltips *tips;
83
a99c4e9a
RK
84/** @brief True if RTP play is available
85 *
86 * This is a bit of a bodge...
87 */
88int rtp_supported;
89
90/** @brief True if RTP play is enabled */
91int rtp_is_running;
92
73f1b9f3
RK
93/** @brief Linked list of functions to call when we reset login parameters */
94static struct reset_callback_node {
95 struct reset_callback_node *next;
96 reset_callback *callback;
97} *resets;
98
460b9539 99/* Window creation --------------------------------------------------------- */
100
101/* Note that all the client operations kicked off from here will only complete
102 * after we've entered the event loop. */
103
219dc95c
RK
104/** @brief Called when main window is deleted
105 *
106 * Terminates the program.
107 */
460b9539 108static gboolean delete_event(GtkWidget attribute((unused)) *widget,
109 GdkEvent attribute((unused)) *event,
110 gpointer attribute((unused)) data) {
111 D(("delete_event"));
112 exit(0); /* die immediately */
113}
114
219dc95c
RK
115/** @brief Called when the current tab is switched
116 *
117 * Updates the menu settings to correspond to the new page.
118 */
460b9539 119static void tab_switched(GtkNotebook attribute((unused)) *notebook,
120 GtkNotebookPage attribute((unused)) *page,
121 guint page_num,
122 gpointer attribute((unused)) user_data) {
123 menu_update(page_num);
124}
125
219dc95c 126/** @brief Create the report box */
460b9539 127static GtkWidget *report_box(void) {
128 GtkWidget *vbox = gtk_vbox_new(FALSE, 0);
129
130 report_label = gtk_label_new("");
131 gtk_label_set_ellipsize(GTK_LABEL(report_label), PANGO_ELLIPSIZE_END);
132 gtk_misc_set_alignment(GTK_MISC(report_label), 0, 0);
133 gtk_container_add(GTK_CONTAINER(vbox), gtk_hseparator_new());
134 gtk_container_add(GTK_CONTAINER(vbox), report_label);
135 return vbox;
136}
137
219dc95c 138/** @brief Create and populate the main tab group */
460b9539 139static GtkWidget *notebook(void) {
140 tabs = gtk_notebook_new();
141 g_signal_connect(tabs, "switch-page", G_CALLBACK(tab_switched), 0);
142 gtk_notebook_append_page(GTK_NOTEBOOK(tabs), queue_widget(),
143 gtk_label_new("Queue"));
144 gtk_notebook_append_page(GTK_NOTEBOOK(tabs), recent_widget(),
145 gtk_label_new("Recent"));
146 gtk_notebook_append_page(GTK_NOTEBOOK(tabs), choose_widget(),
147 gtk_label_new("Choose"));
4eb1f430
RK
148 gtk_notebook_append_page(GTK_NOTEBOOK(tabs), added_widget(),
149 gtk_label_new("Added"));
460b9539 150 return tabs;
151}
152
219dc95c 153/** @brief Create and populate the main window */
460b9539 154static void make_toplevel_window(void) {
155 GtkWidget *const vbox = gtk_vbox_new(FALSE, 1);
156 GtkWidget *const rb = report_box();
157
158 D(("top_window"));
159 toplevel = gtk_window_new(GTK_WINDOW_TOPLEVEL);
160 /* default size is too small */
161 gtk_window_set_default_size(GTK_WINDOW(toplevel), 640, 480);
162 /* terminate on close */
163 g_signal_connect(G_OBJECT(toplevel), "delete_event",
164 G_CALLBACK(delete_event), NULL);
165 /* lay out the window */
166 gtk_window_set_title(GTK_WINDOW(toplevel), "Disobedience");
167 gtk_container_add(GTK_CONTAINER(toplevel), vbox);
168 /* lay out the vbox */
169 gtk_box_pack_start(GTK_BOX(vbox),
170 menubar(toplevel),
171 FALSE, /* expand */
172 FALSE, /* fill */
173 0);
174 gtk_box_pack_start(GTK_BOX(vbox),
175 control_widget(),
176 FALSE, /* expand */
177 FALSE, /* fill */
178 0);
179 gtk_container_add(GTK_CONTAINER(vbox), notebook());
180 gtk_box_pack_end(GTK_BOX(vbox),
181 rb,
182 FALSE, /* expand */
183 FALSE, /* fill */
184 0);
185 gtk_widget_set_name(toplevel, "disobedience");
186}
187
0b7c8909 188#if MDEBUG
189static int widget_count, container_count;
190
191static void count_callback(GtkWidget *w,
192 gpointer attribute((unused)) data) {
193 ++widget_count;
194 if(GTK_IS_CONTAINER(w)) {
195 ++container_count;
196 gtk_container_foreach(GTK_CONTAINER(w), count_callback, 0);
197 }
198}
199
200static void count_widgets(void) {
201 widget_count = 0;
202 container_count = 1;
203 if(toplevel)
204 gtk_container_foreach(GTK_CONTAINER(toplevel), count_callback, 0);
205 fprintf(stderr, "widget count: %8d container count: %8d\n",
206 widget_count, container_count);
207}
208#endif
209
e1d4a32b 210#if MTRACK
211const char *mtag = "init";
212static hash *mtrack_hash;
213
214static int *mthfind(const char *tag) {
215 static const int zero = 0;
216 int *cp = hash_find(mtrack_hash, tag);
217 if(!cp) {
218 hash_add(mtrack_hash, tag, &zero, HASH_INSERT);
219 cp = hash_find(mtrack_hash, tag);
220 }
221 return cp;
222}
223
224static void *trap_malloc(size_t n) {
225 void *ptr = malloc(n + sizeof(char *));
226
227 *(const char **)ptr = mtag;
228 ++*mthfind(mtag);
229 return (char *)ptr + sizeof(char *);
230}
231
232static void trap_free(void *ptr) {
233 const char *tag;
234 if(!ptr)
235 return;
236 ptr = (char *)ptr - sizeof(char *);
237 tag = *(const char **)ptr;
238 --*mthfind(tag);
239 free(ptr);
240}
241
242static void *trap_realloc(void *ptr, size_t n) {
243 if(!ptr)
244 return trap_malloc(n);
245 if(!n) {
246 trap_free(ptr);
247 return 0;
248 }
249 ptr = (char *)ptr - sizeof(char *);
250 ptr = realloc(ptr, n + sizeof(char *));
251 *(const char **)ptr = mtag;
252 return (char *)ptr + sizeof(char *);
253}
254
255static int report_tags_callback(const char *key, void *value,
256 void attribute((unused)) *u) {
257 fprintf(stderr, "%16s: %d\n", key, *(int *)value);
258 return 0;
259}
260
261static void report_tags(void) {
262 hash_foreach(mtrack_hash, report_tags_callback, 0);
263 fprintf(stderr, "\n");
264}
265
266static const GMemVTable glib_memvtable = {
267 trap_malloc,
268 trap_realloc,
269 trap_free,
270 0,
271 0,
272 0
273};
274#endif
275
219dc95c 276/** @brief Called once every 10 minutes */
460b9539 277static gboolean periodic(gpointer attribute((unused)) data) {
278 D(("periodic"));
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();
0b7c8909 284#if MDEBUG
285 count_widgets();
286 fprintf(stderr, "cache size: %zu\n", cache_count());
e1d4a32b 287#endif
288#if MTRACK
289 report_tags();
0b7c8909 290#endif
460b9539 291 return TRUE; /* don't remove me */
292}
293
219dc95c
RK
294/** @brief Called from time to time
295 *
296 * Used for debugging purposes
297 */
460b9539 298static gboolean heartbeat(gpointer attribute((unused)) data) {
299 static struct timeval last;
300 struct timeval now;
301 double delta;
302
303 xgettimeofday(&now, 0);
304 if(last.tv_sec) {
305 delta = (now.tv_sec + now.tv_sec / 1.0E6)
306 - (last.tv_sec + last.tv_sec / 1.0E6);
307 if(delta >= 1.0625)
308 fprintf(stderr, "%f: %fs between 1s heartbeats\n",
309 now.tv_sec + now.tv_sec / 1.0E6,
310 delta);
311 }
312 last = now;
313 return TRUE;
314}
315
7858930d 316/** @brief Called when a NOP completes */
317static void nop_completed(void attribute((unused)) *v) {
318 nop_in_flight = 0;
319}
320
321/** @brief Called from time to time to arrange for a NOP to be sent
322 *
323 * At most one NOP remains in flight at any moment. If the client is not
324 * currently connected then no NOP is sent.
325 */
326static gboolean maybe_send_nop(gpointer attribute((unused)) data) {
8f763f1b 327 if(!nop_in_flight && (disorder_eclient_state(client) & DISORDER_CONNECTED)) {
7858930d 328 nop_in_flight = 1;
329 disorder_eclient_nop(client, nop_completed, 0);
330 }
a99c4e9a
RK
331 if(rtp_supported) {
332 const int old_state = rtp_is_running;
333 rtp_is_running = rtp_running();
334 if(old_state != rtp_is_running)
335 control_monitor(0);
336 }
7858930d 337 return TRUE; /* keep call me please */
338}
339
a99c4e9a
RK
340/** @brief Called when a rtp-address command succeeds */
341static void got_rtp_address(void attribute((unused)) *v,
342 int attribute((unused)) nvec,
343 char attribute((unused)) **vec) {
344 rtp_address_in_flight = 0;
345 rtp_supported = 1;
346 rtp_is_running = rtp_running();
347 control_monitor(0);
348}
349
350/** @brief Called when a rtp-address command fails */
351static void no_rtp_address(struct callbackdata attribute((unused)) *cbd,
352 int attribute((unused)) code,
353 const char attribute((unused)) *msg) {
354 rtp_address_in_flight = 0;
355 rtp_supported = 0;
356 rtp_is_running = 0;
357 control_monitor(0);
358}
359
360/** @brief Called to check whether RTP play is available */
361static void check_rtp_address(void) {
362 if(!rtp_address_in_flight) {
363 struct callbackdata *const cbd = xmalloc(sizeof *cbd);
364 cbd->onerror = no_rtp_address;
365 disorder_eclient_rtp_address(client, got_rtp_address, cbd);
366 }
367}
368
460b9539 369/* main -------------------------------------------------------------------- */
370
371static const struct option options[] = {
372 { "help", no_argument, 0, 'h' },
373 { "version", no_argument, 0, 'V' },
374 { "config", required_argument, 0, 'c' },
375 { "tufnel", no_argument, 0, 't' },
460b9539 376 { "debug", no_argument, 0, 'd' },
377 { 0, 0, 0, 0 }
378};
379
380/* display usage message and terminate */
381static void help(void) {
382 xprintf("Disobedience - GUI client for DisOrder\n"
383 "\n"
384 "Usage:\n"
385 " disobedience [OPTIONS]\n"
386 "Options:\n"
387 " --help, -h Display usage message\n"
388 " --version, -V Display version number\n"
389 " --config PATH, -c PATH Set configuration file\n"
390 " --debug, -d Turn on debugging\n"
391 "\n"
392 "Also GTK+ options will work.\n");
393 xfclose(stdout);
394 exit(0);
395}
396
397/* display version number and terminate */
398static void version(void) {
399 xprintf("disorder version %s\n", disorder_version_string);
400 xfclose(stdout);
401 exit(0);
402}
403
73f1b9f3
RK
404/* reset state */
405void reset(void) {
406 struct reset_callback_node *r;
407
408 /* reset the clients */
409 disorder_eclient_close(client);
410 disorder_eclient_close(logclient);
a99c4e9a 411 rtp_supported = 0;
73f1b9f3
RK
412 for(r = resets; r; r = r->next)
413 r->callback();
a99c4e9a
RK
414 /* Might be a new server so re-check */
415 check_rtp_address();
73f1b9f3
RK
416}
417
418/** @brief Register a reset callback */
419void register_reset(reset_callback *callback) {
420 struct reset_callback_node *const r = xmalloc(sizeof *r);
421
422 r->next = resets;
423 r->callback = callback;
424 resets = r;
425}
426
460b9539 427int main(int argc, char **argv) {
428 int n;
460b9539 429
320598d4 430 mem_init();
fe8f8518
RK
431 /* garbage-collect PCRE's memory */
432 pcre_malloc = xmalloc;
433 pcre_free = xfree;
e1d4a32b 434#if MTRACK
435 mtrack_hash = hash_new(sizeof (int));
436 g_mem_set_vtable((GMemVTable *)&glib_memvtable);
437#endif
460b9539 438 if(!setlocale(LC_CTYPE, "")) fatal(errno, "error calling setlocale");
460b9539 439 gtk_init(&argc, &argv);
440 gtk_rc_parse_string(style);
c3df9503 441 while((n = getopt_long(argc, argv, "hVc:dtHC", options, 0)) >= 0) {
460b9539 442 switch(n) {
443 case 'h': help();
444 case 'V': version();
445 case 'c': configfile = optarg; break;
446 case 'd': debugging = 1; break;
447 case 't': goesupto = 11; break;
460b9539 448 default: fatal(0, "invalid option");
449 }
450 }
346ba8d5 451 signal(SIGPIPE, SIG_IGN);
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 */
460b9539 460 /* periodic operations (e.g. expiring the cache) */
e1d4a32b 461#if MDEBUG || MTRACK
0b7c8909 462 g_timeout_add(5000/*milliseconds*/, periodic, 0);
463#else
460b9539 464 g_timeout_add(600000/*milliseconds*/, periodic, 0);
0b7c8909 465#endif
460b9539 466 /* The point of this is to try and get a handle on mysterious
467 * unresponsiveness. It's not very useful in production use. */
468 if(0)
469 g_timeout_add(1000/*milliseconds*/, heartbeat, 0);
348ef780
RK
470 /* global tooltips */
471 tips = gtk_tooltips_new();
460b9539 472 make_toplevel_window();
473 /* reset styles now everything has its name */
474 gtk_rc_reset_styles(gtk_settings_get_for_screen(gdk_screen_get_default()));
475 gtk_widget_show_all(toplevel);
7858930d 476 /* issue a NOP every so often */
477 g_timeout_add_full(G_PRIORITY_LOW,
478 1000/*interval, ms*/,
479 maybe_send_nop,
480 0/*data*/,
481 0/*notify*/);
73f1b9f3 482 register_reset(properties_reset);
6d1302f0
RK
483 /* Start monitoring the log */
484 disorder_eclient_log(logclient, &log_callbacks, 0);
a99c4e9a
RK
485 /* See if RTP play supported */
486 check_rtp_address();
460b9539 487 D(("enter main loop"));
e1d4a32b 488 MTAG("misc");
460b9539 489 g_main_loop_run(mainloop);
490 return 0;
491}
492
493/*
494Local Variables:
495c-basic-offset:2
496comment-column:40
497fill-column:79
498indent-tabs-mode:nil
499End:
500*/