chiark / gitweb /
Core Audio support should now include descriptions in error strings.
[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 *
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"
321f7536 23#include "mixer.h"
3fbdc96d 24#include "version.h"
460b9539 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
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
460b9539 71double goesupto = 10; /* volume upper bound */
219dc95c 72
7858930d 73/** @brief True if a NOP is in flight */
74static int nop_in_flight;
75
a99c4e9a
RK
76/** @brief True if an rtp-address command is in flight */
77static int rtp_address_in_flight;
78
6f09d54d
RK
79/** @brief True if a rights lookup is in flight */
80static int rights_lookup_in_flight;
81
82/** @brief Current rights bitmap */
83rights_type last_rights;
84
348ef780
RK
85/** @brief Global tooltip group */
86GtkTooltips *tips;
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
00e0c652
RK
103static void check_rtp_address(const char *event,
104 void *eventdata,
105 void *callbackdata);
adafcbcf 106
460b9539 107/* Window creation --------------------------------------------------------- */
108
109/* Note that all the client operations kicked off from here will only complete
110 * after we've entered the event loop. */
111
219dc95c
RK
112/** @brief Called when main window is deleted
113 *
114 * Terminates the program.
115 */
460b9539 116static gboolean delete_event(GtkWidget attribute((unused)) *widget,
117 GdkEvent attribute((unused)) *event,
118 gpointer attribute((unused)) data) {
119 D(("delete_event"));
120 exit(0); /* die immediately */
121}
122
219dc95c
RK
123/** @brief Called when the current tab is switched
124 *
125 * Updates the menu settings to correspond to the new page.
126 */
2a3fe554 127static void tab_switched(GtkNotebook *notebook,
460b9539 128 GtkNotebookPage attribute((unused)) *page,
129 guint page_num,
130 gpointer attribute((unused)) user_data) {
2a3fe554
RK
131 GtkWidget *const tab = gtk_notebook_get_nth_page(notebook, page_num);
132 const struct tabtype *const t = g_object_get_data(G_OBJECT(tab), "type");
ee7552f8 133 assert(t != 0);
2a3fe554
RK
134 if(t->selected)
135 t->selected();
460b9539 136}
137
219dc95c 138/** @brief Create the report box */
460b9539 139static GtkWidget *report_box(void) {
140 GtkWidget *vbox = gtk_vbox_new(FALSE, 0);
141
142 report_label = gtk_label_new("");
143 gtk_label_set_ellipsize(GTK_LABEL(report_label), PANGO_ELLIPSIZE_END);
144 gtk_misc_set_alignment(GTK_MISC(report_label), 0, 0);
145 gtk_container_add(GTK_CONTAINER(vbox), gtk_hseparator_new());
146 gtk_container_add(GTK_CONTAINER(vbox), report_label);
147 return vbox;
148}
149
219dc95c 150/** @brief Create and populate the main tab group */
460b9539 151static GtkWidget *notebook(void) {
152 tabs = gtk_notebook_new();
d4ef4132
RK
153 /* The current tab is _NORMAL, the rest are _ACTIVE, which is bizarre but
154 * produces not too dreadful appearance */
33288048 155 gtk_widget_set_style(tabs, tool_style);
460b9539 156 g_signal_connect(tabs, "switch-page", G_CALLBACK(tab_switched), 0);
157 gtk_notebook_append_page(GTK_NOTEBOOK(tabs), queue_widget(),
158 gtk_label_new("Queue"));
159 gtk_notebook_append_page(GTK_NOTEBOOK(tabs), recent_widget(),
160 gtk_label_new("Recent"));
161 gtk_notebook_append_page(GTK_NOTEBOOK(tabs), choose_widget(),
162 gtk_label_new("Choose"));
4eb1f430
RK
163 gtk_notebook_append_page(GTK_NOTEBOOK(tabs), added_widget(),
164 gtk_label_new("Added"));
460b9539 165 return tabs;
166}
167
219dc95c 168/** @brief Create and populate the main window */
460b9539 169static void make_toplevel_window(void) {
170 GtkWidget *const vbox = gtk_vbox_new(FALSE, 1);
171 GtkWidget *const rb = report_box();
172
173 D(("top_window"));
174 toplevel = gtk_window_new(GTK_WINDOW_TOPLEVEL);
175 /* default size is too small */
176 gtk_window_set_default_size(GTK_WINDOW(toplevel), 640, 480);
177 /* terminate on close */
178 g_signal_connect(G_OBJECT(toplevel), "delete_event",
179 G_CALLBACK(delete_event), NULL);
180 /* lay out the window */
181 gtk_window_set_title(GTK_WINDOW(toplevel), "Disobedience");
182 gtk_container_add(GTK_CONTAINER(toplevel), vbox);
183 /* lay out the vbox */
184 gtk_box_pack_start(GTK_BOX(vbox),
185 menubar(toplevel),
186 FALSE, /* expand */
187 FALSE, /* fill */
188 0);
189 gtk_box_pack_start(GTK_BOX(vbox),
190 control_widget(),
191 FALSE, /* expand */
192 FALSE, /* fill */
193 0);
194 gtk_container_add(GTK_CONTAINER(vbox), notebook());
195 gtk_box_pack_end(GTK_BOX(vbox),
196 rb,
197 FALSE, /* expand */
198 FALSE, /* fill */
199 0);
33288048 200 gtk_widget_set_style(toplevel, tool_style);
460b9539 201}
202
6f09d54d 203static void userinfo_rights_completed(void attribute((unused)) *v,
abf99697 204 const char *err,
6f09d54d
RK
205 const char *value) {
206 rights_type r;
207
abf99697
RK
208 if(err) {
209 popup_protocol_error(0, err);
6f09d54d
RK
210 r = 0;
211 } else {
212 if(parse_rights(value, &r, 0))
213 r = 0;
214 }
215 /* If rights have changed, signal everything that cares */
216 if(r != last_rights) {
217 last_rights = r;
218 ++suppress_actions;
219 event_raise("rights-changed", 0);
220 --suppress_actions;
221 }
222 rights_lookup_in_flight = 0;
223}
224
45e6d04a
RK
225static void check_rights(void) {
226 if(!rights_lookup_in_flight) {
227 rights_lookup_in_flight = 1;
228 disorder_eclient_userinfo(client,
229 userinfo_rights_completed,
230 config->username, "rights",
231 0);
232 }
233}
234
321f7536
RK
235/** @brief Called occasionally */
236static gboolean periodic_slow(gpointer attribute((unused)) data) {
6f09d54d 237 D(("periodic_slow"));
460b9539 238 /* Expire cached data */
239 cache_expire();
240 /* Update everything to be sure that the connection to the server hasn't
241 * mysteriously gone stale on us. */
242 all_update();
adafcbcf 243 /* Recheck RTP status too */
00e0c652 244 check_rtp_address(0, 0, 0);
460b9539 245 return TRUE; /* don't remove me */
246}
247
321f7536
RK
248/** @brief Called frequently */
249static gboolean periodic_fast(gpointer attribute((unused)) data) {
250#if 0 /* debugging hack */
460b9539 251 static struct timeval last;
252 struct timeval now;
253 double delta;
254
255 xgettimeofday(&now, 0);
256 if(last.tv_sec) {
257 delta = (now.tv_sec + now.tv_sec / 1.0E6)
258 - (last.tv_sec + last.tv_sec / 1.0E6);
259 if(delta >= 1.0625)
260 fprintf(stderr, "%f: %fs between 1s heartbeats\n",
261 now.tv_sec + now.tv_sec / 1.0E6,
262 delta);
263 }
264 last = now;
321f7536 265#endif
3c499fe7 266 if(rtp_supported && mixer_supported(DEFAULT_BACKEND)) {
321f7536 267 int nl, nr;
3c499fe7
RK
268 if(!mixer_control(DEFAULT_BACKEND, &nl, &nr, 0)
269 && (nl != volume_l || nr != volume_r)) {
321f7536
RK
270 volume_l = nl;
271 volume_r = nr;
1f868ca3 272 event_raise("volume-changed", 0);
321f7536
RK
273 }
274 }
00e0c652 275 /* Periodically check what our rights are */
45e6d04a
RK
276 int recheck_rights = 1;
277 if(server_version_bytes >= 0x04010000)
278 /* Server versions after 4.1 will send updates */
279 recheck_rights = 0;
280 if((server_version_bytes & 0xFF) == 0x01)
281 /* Development servers might do regardless of their version number */
282 recheck_rights = 0;
283 if(recheck_rights)
284 check_rights();
460b9539 285 return TRUE;
286}
287
7858930d 288/** @brief Called when a NOP completes */
53fa91bb 289static void nop_completed(void attribute((unused)) *v,
abf99697 290 const char attribute((unused)) *err) {
53fa91bb 291 /* TODO report the error somewhere */
7858930d 292 nop_in_flight = 0;
293}
294
295/** @brief Called from time to time to arrange for a NOP to be sent
296 *
297 * At most one NOP remains in flight at any moment. If the client is not
298 * currently connected then no NOP is sent.
299 */
300static gboolean maybe_send_nop(gpointer attribute((unused)) data) {
8f763f1b 301 if(!nop_in_flight && (disorder_eclient_state(client) & DISORDER_CONNECTED)) {
7858930d 302 nop_in_flight = 1;
303 disorder_eclient_nop(client, nop_completed, 0);
304 }
a99c4e9a 305 if(rtp_supported) {
6c7a654c 306 const int rtp_was_running = rtp_is_running;
a99c4e9a 307 rtp_is_running = rtp_running();
6c7a654c
RK
308 if(rtp_was_running != rtp_is_running)
309 event_raise("rtp-changed", 0);
a99c4e9a 310 }
7858930d 311 return TRUE; /* keep call me please */
312}
313
a99c4e9a
RK
314/** @brief Called when a rtp-address command succeeds */
315static void got_rtp_address(void attribute((unused)) *v,
abf99697 316 const char *err,
a99c4e9a
RK
317 int attribute((unused)) nvec,
318 char attribute((unused)) **vec) {
3849817f 319 const int rtp_was_supported = rtp_supported;
6c7a654c
RK
320 const int rtp_was_running = rtp_is_running;
321
fb44b59e 322 ++suppress_actions;
a99c4e9a 323 rtp_address_in_flight = 0;
abf99697 324 if(err) {
4190a4d9
RK
325 /* An error just means that we're not using network play */
326 rtp_supported = 0;
327 rtp_is_running = 0;
328 } else {
329 rtp_supported = 1;
330 rtp_is_running = rtp_running();
4190a4d9 331 }
00e0c652
RK
332 /*fprintf(stderr, "rtp supported->%d, running->%d\n",
333 rtp_supported, rtp_is_running);*/
3849817f
RK
334 if(rtp_supported != rtp_was_supported
335 || rtp_is_running != rtp_was_running)
6c7a654c 336 event_raise("rtp-changed", 0);
fb44b59e 337 --suppress_actions;
a99c4e9a
RK
338}
339
340/** @brief Called to check whether RTP play is available */
00e0c652
RK
341static void check_rtp_address(const char attribute((unused)) *event,
342 void attribute((unused)) *eventdata,
343 void attribute((unused)) *callbackdata) {
344 if(!rtp_address_in_flight) {
345 //fprintf(stderr, "checking rtp\n");
4190a4d9 346 disorder_eclient_rtp_address(client, got_rtp_address, NULL);
00e0c652 347 }
a99c4e9a
RK
348}
349
460b9539 350/* main -------------------------------------------------------------------- */
351
352static const struct option options[] = {
353 { "help", no_argument, 0, 'h' },
354 { "version", no_argument, 0, 'V' },
355 { "config", required_argument, 0, 'c' },
356 { "tufnel", no_argument, 0, 't' },
460b9539 357 { "debug", no_argument, 0, 'd' },
358 { 0, 0, 0, 0 }
359};
360
361/* display usage message and terminate */
362static void help(void) {
363 xprintf("Disobedience - GUI client for DisOrder\n"
364 "\n"
365 "Usage:\n"
366 " disobedience [OPTIONS]\n"
367 "Options:\n"
368 " --help, -h Display usage message\n"
369 " --version, -V Display version number\n"
370 " --config PATH, -c PATH Set configuration file\n"
371 " --debug, -d Turn on debugging\n"
372 "\n"
373 "Also GTK+ options will work.\n");
374 xfclose(stdout);
375 exit(0);
376}
377
45e6d04a
RK
378static void version_completed(void attribute((unused)) *v,
379 const char attribute((unused)) *err,
3665689a 380 const char *ver) {
45e6d04a
RK
381 long major, minor, patch, dev;
382
3665689a 383 if(!ver) {
45e6d04a
RK
384 server_version = 0;
385 server_version_bytes = 0;
386 return;
387 }
3665689a 388 server_version = ver;
45e6d04a 389 server_version_bytes = 0;
3665689a
RK
390 major = strtol(ver, (char **)&ver, 10);
391 if(*ver != '.')
45e6d04a 392 return;
3665689a
RK
393 ++ver;
394 minor = strtol(ver, (char **)&ver, 10);
395 if(*ver == '.') {
396 ++ver;
397 patch = strtol(ver, (char **)&ver, 10);
45e6d04a
RK
398 } else
399 patch = 0;
3665689a
RK
400 if(*ver) {
401 if(*ver == '+') {
45e6d04a 402 dev = 1;
3665689a 403 ++ver;
45e6d04a 404 }
3665689a 405 if(*ver)
45e6d04a
RK
406 dev = 2;
407 } else
408 dev = 0;
409 server_version_bytes = (major << 24) + (minor << 16) + (patch << 8) + dev;
410}
411
7c30fc75 412void logged_in(void) {
73f1b9f3
RK
413 /* reset the clients */
414 disorder_eclient_close(client);
415 disorder_eclient_close(logclient);
a99c4e9a 416 rtp_supported = 0;
7c30fc75 417 event_raise("logged-in", 0);
6f09d54d 418 /* Force the periodic checks */
6f09d54d
RK
419 periodic_slow(0);
420 periodic_fast(0);
45e6d04a
RK
421 /* Recheck server version */
422 disorder_eclient_version(client, version_completed, 0);
68210888
RK
423 disorder_eclient_enable_connect(client);
424 disorder_eclient_enable_connect(logclient);
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*/