chiark / gitweb /
DisOrder 4.1
[disorder] / disobedience / disobedience.c
... / ...
CommitLineData
1/*
2 * This file is part of DisOrder.
3 * Copyright (C) 2006, 2007, 2008 Richard Kettlewell
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 */
20/** @file disobedience/disobedience.c
21 * @brief Main Disobedience program
22 */
23
24#include "disobedience.h"
25#include "mixer.h"
26#include "version.h"
27
28#include <getopt.h>
29#include <locale.h>
30#include <pcre.h>
31
32/* Apologies for the numerous de-consting casts, but GLib et al do not seem to
33 * have heard of const. */
34
35/* Variables --------------------------------------------------------------- */
36
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;
51
52/** @brief Log client */
53disorder_eclient *logclient;
54
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;
72
73double goesupto = 10; /* volume upper bound */
74
75/** @brief True if a NOP is in flight */
76static int nop_in_flight;
77
78/** @brief True if an rtp-address command is in flight */
79static int rtp_address_in_flight;
80
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
87/** @brief Global tooltip group */
88GtkTooltips *tips;
89
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
99/** @brief Server version */
100const char *server_version;
101
102/** @brief Parsed server version */
103long server_version_bytes;
104
105static void check_rtp_address(const char *event,
106 void *eventdata,
107 void *callbackdata);
108
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
114/** @brief Called when main window is deleted
115 *
116 * Terminates the program.
117 */
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
125/** @brief Called when the current tab is switched
126 *
127 * Updates the menu settings to correspond to the new page.
128 */
129static void tab_switched(GtkNotebook *notebook,
130 GtkNotebookPage attribute((unused)) *page,
131 guint page_num,
132 gpointer attribute((unused)) user_data) {
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");
135 assert(t != 0);
136 if(t->selected)
137 t->selected();
138}
139
140/** @brief Create the report box */
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
152/** @brief Create and populate the main tab group */
153static GtkWidget *notebook(void) {
154 tabs = gtk_notebook_new();
155 /* The current tab is _NORMAL, the rest are _ACTIVE, which is bizarre but
156 * produces not too dreadful appearance */
157 gtk_widget_set_style(tabs, tool_style);
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"));
165 gtk_notebook_append_page(GTK_NOTEBOOK(tabs), added_widget(),
166 gtk_label_new("Added"));
167 return tabs;
168}
169
170/** @brief Create and populate the main window */
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);
202 gtk_widget_set_style(toplevel, tool_style);
203}
204
205static void userinfo_rights_completed(void attribute((unused)) *v,
206 const char *err,
207 const char *value) {
208 rights_type r;
209
210 if(err) {
211 popup_protocol_error(0, err);
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
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
237/** @brief Called occasionally */
238static gboolean periodic_slow(gpointer attribute((unused)) data) {
239 D(("periodic_slow"));
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();
245 /* Recheck RTP status too */
246 check_rtp_address(0, 0, 0);
247 return TRUE; /* don't remove me */
248}
249
250/** @brief Called frequently */
251static gboolean periodic_fast(gpointer attribute((unused)) data) {
252#if 0 /* debugging hack */
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;
267#endif
268 if(rtp_supported && mixer_supported(DEFAULT_BACKEND)) {
269 int nl, nr;
270 if(!mixer_control(DEFAULT_BACKEND, &nl, &nr, 0)
271 && (nl != volume_l || nr != volume_r)) {
272 volume_l = nl;
273 volume_r = nr;
274 event_raise("volume-changed", 0);
275 }
276 }
277 /* Periodically check what our rights are */
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();
287 return TRUE;
288}
289
290/** @brief Called when a NOP completes */
291static void nop_completed(void attribute((unused)) *v,
292 const char attribute((unused)) *err) {
293 /* TODO report the error somewhere */
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) {
303 if(!nop_in_flight && (disorder_eclient_state(client) & DISORDER_CONNECTED)) {
304 nop_in_flight = 1;
305 disorder_eclient_nop(client, nop_completed, 0);
306 }
307 if(rtp_supported) {
308 const int rtp_was_running = rtp_is_running;
309 rtp_is_running = rtp_running();
310 if(rtp_was_running != rtp_is_running)
311 event_raise("rtp-changed", 0);
312 }
313 return TRUE; /* keep call me please */
314}
315
316/** @brief Called when a rtp-address command succeeds */
317static void got_rtp_address(void attribute((unused)) *v,
318 const char *err,
319 int attribute((unused)) nvec,
320 char attribute((unused)) **vec) {
321 const int rtp_was_supported = rtp_supported;
322 const int rtp_was_running = rtp_is_running;
323
324 ++suppress_actions;
325 rtp_address_in_flight = 0;
326 if(err) {
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();
333 }
334 /*fprintf(stderr, "rtp supported->%d, running->%d\n",
335 rtp_supported, rtp_is_running);*/
336 if(rtp_supported != rtp_was_supported
337 || rtp_is_running != rtp_was_running)
338 event_raise("rtp-changed", 0);
339 --suppress_actions;
340}
341
342/** @brief Called to check whether RTP play is available */
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");
348 disorder_eclient_rtp_address(client, got_rtp_address, NULL);
349 }
350}
351
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' },
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
380static void version_completed(void attribute((unused)) *v,
381 const char attribute((unused)) *err,
382 const char *ver) {
383 long major, minor, patch, dev;
384
385 if(!ver) {
386 server_version = 0;
387 server_version_bytes = 0;
388 return;
389 }
390 server_version = ver;
391 server_version_bytes = 0;
392 major = strtol(ver, (char **)&ver, 10);
393 if(*ver != '.')
394 return;
395 ++ver;
396 minor = strtol(ver, (char **)&ver, 10);
397 if(*ver == '.') {
398 ++ver;
399 patch = strtol(ver, (char **)&ver, 10);
400 } else
401 patch = 0;
402 if(*ver) {
403 if(*ver == '+') {
404 dev = 1;
405 ++ver;
406 }
407 if(*ver)
408 dev = 2;
409 } else
410 dev = 0;
411 server_version_bytes = (major << 24) + (minor << 16) + (patch << 8) + dev;
412}
413
414void logged_in(void) {
415 /* reset the clients */
416 disorder_eclient_close(client);
417 disorder_eclient_close(logclient);
418 rtp_supported = 0;
419 event_raise("logged-in", 0);
420 /* Force the periodic checks */
421 periodic_slow(0);
422 periodic_fast(0);
423 /* Recheck server version */
424 disorder_eclient_version(client, version_completed, 0);
425}
426
427int main(int argc, char **argv) {
428 int n;
429 gboolean gtkok;
430
431 mem_init();
432 /* garbage-collect PCRE's memory */
433 pcre_malloc = xmalloc;
434 pcre_free = xfree;
435 if(!setlocale(LC_CTYPE, "")) fatal(errno, "error calling setlocale");
436 gtkok = gtk_init_check(&argc, &argv);
437 while((n = getopt_long(argc, argv, "hVc:dtHC", options, 0)) >= 0) {
438 switch(n) {
439 case 'h': help();
440 case 'V': version("disobedience");
441 case 'c': configfile = optarg; break;
442 case 'd': debugging = 1; break;
443 case 't': goesupto = 11; break;
444 default: fatal(0, "invalid option");
445 }
446 }
447 if(!gtkok)
448 fatal(0, "failed to initialize GTK+");
449 signal(SIGPIPE, SIG_IGN);
450 init_styles();
451 load_settings();
452 /* create the event loop */
453 D(("create main loop"));
454 mainloop = g_main_loop_new(0, 0);
455 if(config_read(0)) fatal(0, "cannot read configuration");
456 /* create the clients */
457 if(!(client = gtkclient())
458 || !(logclient = gtkclient()))
459 return 1; /* already reported an error */
460 /* periodic operations (e.g. expiring the cache, checking local volume) */
461 g_timeout_add(600000/*milliseconds*/, periodic_slow, 0);
462 g_timeout_add(1000/*milliseconds*/, periodic_fast, 0);
463 /* global tooltips */
464 tips = gtk_tooltips_new();
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);
469 /* issue a NOP every so often */
470 g_timeout_add_full(G_PRIORITY_LOW,
471 2000/*interval, ms*/,
472 maybe_send_nop,
473 0/*data*/,
474 0/*notify*/);
475 /* Start monitoring the log */
476 disorder_eclient_log(logclient, &log_callbacks, 0);
477 /* Initiate all the checks */
478 periodic_fast(0);
479 disorder_eclient_version(client, version_completed, 0);
480 event_register("log-connected", check_rtp_address, 0);
481 suppress_actions = 0;
482 /* If no password is set yet pop up a login box */
483 if(!config->password)
484 login_box();
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*/