chiark / gitweb /
Proper calculation of scratch/remove rights
[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
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();
d4ef4132
RK
141 /* The current tab is _NORMAL, the rest are _ACTIVE, which is bizarre but
142 * produces not too dreadful appearance */
33288048 143 gtk_widget_set_style(tabs, tool_style);
460b9539 144 g_signal_connect(tabs, "switch-page", G_CALLBACK(tab_switched), 0);
145 gtk_notebook_append_page(GTK_NOTEBOOK(tabs), queue_widget(),
146 gtk_label_new("Queue"));
147 gtk_notebook_append_page(GTK_NOTEBOOK(tabs), recent_widget(),
148 gtk_label_new("Recent"));
149 gtk_notebook_append_page(GTK_NOTEBOOK(tabs), choose_widget(),
150 gtk_label_new("Choose"));
4eb1f430
RK
151 gtk_notebook_append_page(GTK_NOTEBOOK(tabs), added_widget(),
152 gtk_label_new("Added"));
460b9539 153 return tabs;
154}
155
219dc95c 156/** @brief Create and populate the main window */
460b9539 157static void make_toplevel_window(void) {
158 GtkWidget *const vbox = gtk_vbox_new(FALSE, 1);
159 GtkWidget *const rb = report_box();
160
161 D(("top_window"));
162 toplevel = gtk_window_new(GTK_WINDOW_TOPLEVEL);
163 /* default size is too small */
164 gtk_window_set_default_size(GTK_WINDOW(toplevel), 640, 480);
165 /* terminate on close */
166 g_signal_connect(G_OBJECT(toplevel), "delete_event",
167 G_CALLBACK(delete_event), NULL);
168 /* lay out the window */
169 gtk_window_set_title(GTK_WINDOW(toplevel), "Disobedience");
170 gtk_container_add(GTK_CONTAINER(toplevel), vbox);
171 /* lay out the vbox */
172 gtk_box_pack_start(GTK_BOX(vbox),
173 menubar(toplevel),
174 FALSE, /* expand */
175 FALSE, /* fill */
176 0);
177 gtk_box_pack_start(GTK_BOX(vbox),
178 control_widget(),
179 FALSE, /* expand */
180 FALSE, /* fill */
181 0);
182 gtk_container_add(GTK_CONTAINER(vbox), notebook());
183 gtk_box_pack_end(GTK_BOX(vbox),
184 rb,
185 FALSE, /* expand */
186 FALSE, /* fill */
187 0);
33288048 188 gtk_widget_set_style(toplevel, tool_style);
460b9539 189}
190
0b7c8909 191#if MDEBUG
192static int widget_count, container_count;
193
194static void count_callback(GtkWidget *w,
195 gpointer attribute((unused)) data) {
196 ++widget_count;
197 if(GTK_IS_CONTAINER(w)) {
198 ++container_count;
199 gtk_container_foreach(GTK_CONTAINER(w), count_callback, 0);
200 }
201}
202
203static void count_widgets(void) {
204 widget_count = 0;
205 container_count = 1;
206 if(toplevel)
207 gtk_container_foreach(GTK_CONTAINER(toplevel), count_callback, 0);
208 fprintf(stderr, "widget count: %8d container count: %8d\n",
209 widget_count, container_count);
210}
211#endif
212
e1d4a32b 213#if MTRACK
214const char *mtag = "init";
215static hash *mtrack_hash;
216
217static int *mthfind(const char *tag) {
218 static const int zero = 0;
219 int *cp = hash_find(mtrack_hash, tag);
220 if(!cp) {
221 hash_add(mtrack_hash, tag, &zero, HASH_INSERT);
222 cp = hash_find(mtrack_hash, tag);
223 }
224 return cp;
225}
226
227static void *trap_malloc(size_t n) {
228 void *ptr = malloc(n + sizeof(char *));
229
230 *(const char **)ptr = mtag;
231 ++*mthfind(mtag);
232 return (char *)ptr + sizeof(char *);
233}
234
235static void trap_free(void *ptr) {
236 const char *tag;
237 if(!ptr)
238 return;
239 ptr = (char *)ptr - sizeof(char *);
240 tag = *(const char **)ptr;
241 --*mthfind(tag);
242 free(ptr);
243}
244
245static void *trap_realloc(void *ptr, size_t n) {
246 if(!ptr)
247 return trap_malloc(n);
248 if(!n) {
249 trap_free(ptr);
250 return 0;
251 }
252 ptr = (char *)ptr - sizeof(char *);
253 ptr = realloc(ptr, n + sizeof(char *));
254 *(const char **)ptr = mtag;
255 return (char *)ptr + sizeof(char *);
256}
257
258static int report_tags_callback(const char *key, void *value,
259 void attribute((unused)) *u) {
260 fprintf(stderr, "%16s: %d\n", key, *(int *)value);
261 return 0;
262}
263
264static void report_tags(void) {
265 hash_foreach(mtrack_hash, report_tags_callback, 0);
266 fprintf(stderr, "\n");
267}
268
269static const GMemVTable glib_memvtable = {
270 trap_malloc,
271 trap_realloc,
272 trap_free,
273 0,
274 0,
275 0
276};
277#endif
278
6f09d54d
RK
279static void userinfo_rights_completed(void attribute((unused)) *v,
280 const char *error,
281 const char *value) {
282 rights_type r;
283
284 if(error) {
285 popup_protocol_error(0, error);
286 r = 0;
287 } else {
288 if(parse_rights(value, &r, 0))
289 r = 0;
290 }
291 /* If rights have changed, signal everything that cares */
292 if(r != last_rights) {
293 last_rights = r;
294 ++suppress_actions;
295 event_raise("rights-changed", 0);
296 --suppress_actions;
297 }
298 rights_lookup_in_flight = 0;
299}
300
321f7536
RK
301/** @brief Called occasionally */
302static gboolean periodic_slow(gpointer attribute((unused)) data) {
6f09d54d 303 D(("periodic_slow"));
460b9539 304 /* Expire cached data */
305 cache_expire();
306 /* Update everything to be sure that the connection to the server hasn't
307 * mysteriously gone stale on us. */
308 all_update();
0b7c8909 309#if MDEBUG
310 count_widgets();
311 fprintf(stderr, "cache size: %zu\n", cache_count());
e1d4a32b 312#endif
313#if MTRACK
314 report_tags();
0b7c8909 315#endif
6f09d54d
RK
316 /* Periodically check what our rights are */
317 if(!rights_lookup_in_flight) {
318 rights_lookup_in_flight = 1;
319 disorder_eclient_userinfo(client,
320 userinfo_rights_completed,
321 config->username, "rights",
322 0);
323 }
460b9539 324 return TRUE; /* don't remove me */
325}
326
321f7536
RK
327/** @brief Called frequently */
328static gboolean periodic_fast(gpointer attribute((unused)) data) {
329#if 0 /* debugging hack */
460b9539 330 static struct timeval last;
331 struct timeval now;
332 double delta;
333
334 xgettimeofday(&now, 0);
335 if(last.tv_sec) {
336 delta = (now.tv_sec + now.tv_sec / 1.0E6)
337 - (last.tv_sec + last.tv_sec / 1.0E6);
338 if(delta >= 1.0625)
339 fprintf(stderr, "%f: %fs between 1s heartbeats\n",
340 now.tv_sec + now.tv_sec / 1.0E6,
341 delta);
342 }
343 last = now;
321f7536 344#endif
3c499fe7 345 if(rtp_supported && mixer_supported(DEFAULT_BACKEND)) {
321f7536 346 int nl, nr;
3c499fe7
RK
347 if(!mixer_control(DEFAULT_BACKEND, &nl, &nr, 0)
348 && (nl != volume_l || nr != volume_r)) {
321f7536
RK
349 volume_l = nl;
350 volume_r = nr;
1f868ca3 351 event_raise("volume-changed", 0);
321f7536
RK
352 }
353 }
460b9539 354 return TRUE;
355}
356
7858930d 357/** @brief Called when a NOP completes */
53fa91bb
RK
358static void nop_completed(void attribute((unused)) *v,
359 const char attribute((unused)) *error) {
360 /* TODO report the error somewhere */
7858930d 361 nop_in_flight = 0;
362}
363
364/** @brief Called from time to time to arrange for a NOP to be sent
365 *
366 * At most one NOP remains in flight at any moment. If the client is not
367 * currently connected then no NOP is sent.
368 */
369static gboolean maybe_send_nop(gpointer attribute((unused)) data) {
8f763f1b 370 if(!nop_in_flight && (disorder_eclient_state(client) & DISORDER_CONNECTED)) {
7858930d 371 nop_in_flight = 1;
372 disorder_eclient_nop(client, nop_completed, 0);
373 }
a99c4e9a 374 if(rtp_supported) {
6c7a654c 375 const int rtp_was_running = rtp_is_running;
a99c4e9a 376 rtp_is_running = rtp_running();
6c7a654c
RK
377 if(rtp_was_running != rtp_is_running)
378 event_raise("rtp-changed", 0);
a99c4e9a 379 }
7858930d 380 return TRUE; /* keep call me please */
381}
382
a99c4e9a
RK
383/** @brief Called when a rtp-address command succeeds */
384static void got_rtp_address(void attribute((unused)) *v,
4190a4d9 385 const char *error,
a99c4e9a
RK
386 int attribute((unused)) nvec,
387 char attribute((unused)) **vec) {
3849817f 388 const int rtp_was_supported = rtp_supported;
6c7a654c
RK
389 const int rtp_was_running = rtp_is_running;
390
fb44b59e 391 ++suppress_actions;
a99c4e9a 392 rtp_address_in_flight = 0;
4190a4d9
RK
393 if(error) {
394 /* An error just means that we're not using network play */
395 rtp_supported = 0;
396 rtp_is_running = 0;
397 } else {
398 rtp_supported = 1;
399 rtp_is_running = rtp_running();
4190a4d9 400 }
3849817f
RK
401 if(rtp_supported != rtp_was_supported
402 || rtp_is_running != rtp_was_running)
6c7a654c 403 event_raise("rtp-changed", 0);
fb44b59e 404 --suppress_actions;
a99c4e9a
RK
405}
406
407/** @brief Called to check whether RTP play is available */
408static void check_rtp_address(void) {
4190a4d9
RK
409 if(!rtp_address_in_flight)
410 disorder_eclient_rtp_address(client, got_rtp_address, NULL);
a99c4e9a
RK
411}
412
460b9539 413/* main -------------------------------------------------------------------- */
414
415static const struct option options[] = {
416 { "help", no_argument, 0, 'h' },
417 { "version", no_argument, 0, 'V' },
418 { "config", required_argument, 0, 'c' },
419 { "tufnel", no_argument, 0, 't' },
460b9539 420 { "debug", no_argument, 0, 'd' },
421 { 0, 0, 0, 0 }
422};
423
424/* display usage message and terminate */
425static void help(void) {
426 xprintf("Disobedience - GUI client for DisOrder\n"
427 "\n"
428 "Usage:\n"
429 " disobedience [OPTIONS]\n"
430 "Options:\n"
431 " --help, -h Display usage message\n"
432 " --version, -V Display version number\n"
433 " --config PATH, -c PATH Set configuration file\n"
434 " --debug, -d Turn on debugging\n"
435 "\n"
436 "Also GTK+ options will work.\n");
437 xfclose(stdout);
438 exit(0);
439}
440
7c30fc75 441void logged_in(void) {
73f1b9f3
RK
442 /* reset the clients */
443 disorder_eclient_close(client);
444 disorder_eclient_close(logclient);
a99c4e9a 445 rtp_supported = 0;
7c30fc75 446 event_raise("logged-in", 0);
6f09d54d 447 /* Force the periodic checks */
a99c4e9a 448 check_rtp_address();
6f09d54d
RK
449 periodic_slow(0);
450 periodic_fast(0);
73f1b9f3
RK
451}
452
460b9539 453int main(int argc, char **argv) {
454 int n;
ce73fea7 455 gboolean gtkok;
460b9539 456
320598d4 457 mem_init();
fe8f8518
RK
458 /* garbage-collect PCRE's memory */
459 pcre_malloc = xmalloc;
460 pcre_free = xfree;
e1d4a32b 461#if MTRACK
462 mtrack_hash = hash_new(sizeof (int));
463 g_mem_set_vtable((GMemVTable *)&glib_memvtable);
464#endif
460b9539 465 if(!setlocale(LC_CTYPE, "")) fatal(errno, "error calling setlocale");
ce73fea7 466 gtkok = gtk_init_check(&argc, &argv);
c3df9503 467 while((n = getopt_long(argc, argv, "hVc:dtHC", options, 0)) >= 0) {
460b9539 468 switch(n) {
469 case 'h': help();
3fbdc96d 470 case 'V': version("disobedience");
460b9539 471 case 'c': configfile = optarg; break;
472 case 'd': debugging = 1; break;
473 case 't': goesupto = 11; break;
460b9539 474 default: fatal(0, "invalid option");
475 }
476 }
ce73fea7 477 if(!gtkok)
478 fatal(0, "failed to initialize GTK+");
346ba8d5 479 signal(SIGPIPE, SIG_IGN);
33288048 480 init_styles();
b4f8eba1 481 load_settings();
460b9539 482 /* create the event loop */
483 D(("create main loop"));
484 mainloop = g_main_loop_new(0, 0);
c00fce3a 485 if(config_read(0)) fatal(0, "cannot read configuration");
460b9539 486 /* create the clients */
1c0d78bd
RK
487 if(!(client = gtkclient())
488 || !(logclient = gtkclient()))
489 return 1; /* already reported an error */
321f7536 490 /* periodic operations (e.g. expiring the cache, checking local volume) */
6f09d54d 491 g_timeout_add(10000/*milliseconds*/, periodic_slow, 0);
321f7536 492 g_timeout_add(1000/*milliseconds*/, periodic_fast, 0);
348ef780
RK
493 /* global tooltips */
494 tips = gtk_tooltips_new();
460b9539 495 make_toplevel_window();
496 /* reset styles now everything has its name */
497 gtk_rc_reset_styles(gtk_settings_get_for_screen(gdk_screen_get_default()));
498 gtk_widget_show_all(toplevel);
7858930d 499 /* issue a NOP every so often */
500 g_timeout_add_full(G_PRIORITY_LOW,
d37d5336 501 2000/*interval, ms*/,
7858930d 502 maybe_send_nop,
503 0/*data*/,
504 0/*notify*/);
6d1302f0
RK
505 /* Start monitoring the log */
506 disorder_eclient_log(logclient, &log_callbacks, 0);
6f09d54d 507 /* Initiate all the checks */
a99c4e9a 508 check_rtp_address();
6f09d54d
RK
509 periodic_slow(0);
510 periodic_fast(0);
fb44b59e 511 suppress_actions = 0;
bf5fdf14
RK
512 /* If no password is set yet pop up a login box */
513 if(!config->password)
514 login_box();
460b9539 515 D(("enter main loop"));
e1d4a32b 516 MTAG("misc");
460b9539 517 g_main_loop_run(mainloop);
518 return 0;
519}
520
521/*
522Local Variables:
523c-basic-offset:2
524comment-column:40
525fill-column:79
526indent-tabs-mode:nil
527End:
528*/