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