chiark / gitweb /
Placate picky compiler.
[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"
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();
adafcbcf 246 /* Recheck RTP status too */
00e0c652 247 check_rtp_address(0, 0, 0);
460b9539 248 return TRUE; /* don't remove me */
249}
250
321f7536
RK
251/** @brief Called frequently */
252static gboolean periodic_fast(gpointer attribute((unused)) data) {
253#if 0 /* debugging hack */
460b9539 254 static struct timeval last;
255 struct timeval now;
256 double delta;
257
258 xgettimeofday(&now, 0);
259 if(last.tv_sec) {
260 delta = (now.tv_sec + now.tv_sec / 1.0E6)
261 - (last.tv_sec + last.tv_sec / 1.0E6);
262 if(delta >= 1.0625)
263 fprintf(stderr, "%f: %fs between 1s heartbeats\n",
264 now.tv_sec + now.tv_sec / 1.0E6,
265 delta);
266 }
267 last = now;
321f7536 268#endif
b50cfb8a 269 if(rtp_supported && backend && backend->get_volume) {
321f7536 270 int nl, nr;
b50cfb8a
RK
271 backend->get_volume(&nl, &nr);
272 if(nl != volume_l || nr != volume_r) {
321f7536
RK
273 volume_l = nl;
274 volume_r = nr;
1f868ca3 275 event_raise("volume-changed", 0);
321f7536
RK
276 }
277 }
00e0c652 278 /* Periodically check what our rights are */
45e6d04a
RK
279 int recheck_rights = 1;
280 if(server_version_bytes >= 0x04010000)
281 /* Server versions after 4.1 will send updates */
282 recheck_rights = 0;
283 if((server_version_bytes & 0xFF) == 0x01)
284 /* Development servers might do regardless of their version number */
285 recheck_rights = 0;
286 if(recheck_rights)
287 check_rights();
460b9539 288 return TRUE;
289}
290
7858930d 291/** @brief Called when a NOP completes */
53fa91bb 292static void nop_completed(void attribute((unused)) *v,
abf99697 293 const char attribute((unused)) *err) {
53fa91bb 294 /* TODO report the error somewhere */
7858930d 295 nop_in_flight = 0;
296}
297
298/** @brief Called from time to time to arrange for a NOP to be sent
299 *
300 * At most one NOP remains in flight at any moment. If the client is not
301 * currently connected then no NOP is sent.
302 */
303static gboolean maybe_send_nop(gpointer attribute((unused)) data) {
8f763f1b 304 if(!nop_in_flight && (disorder_eclient_state(client) & DISORDER_CONNECTED)) {
7858930d 305 nop_in_flight = 1;
306 disorder_eclient_nop(client, nop_completed, 0);
307 }
a99c4e9a 308 if(rtp_supported) {
6c7a654c 309 const int rtp_was_running = rtp_is_running;
a99c4e9a 310 rtp_is_running = rtp_running();
6c7a654c
RK
311 if(rtp_was_running != rtp_is_running)
312 event_raise("rtp-changed", 0);
a99c4e9a 313 }
7858930d 314 return TRUE; /* keep call me please */
315}
316
a99c4e9a
RK
317/** @brief Called when a rtp-address command succeeds */
318static void got_rtp_address(void attribute((unused)) *v,
abf99697 319 const char *err,
a99c4e9a
RK
320 int attribute((unused)) nvec,
321 char attribute((unused)) **vec) {
3849817f 322 const int rtp_was_supported = rtp_supported;
6c7a654c
RK
323 const int rtp_was_running = rtp_is_running;
324
fb44b59e 325 ++suppress_actions;
a99c4e9a 326 rtp_address_in_flight = 0;
abf99697 327 if(err) {
4190a4d9
RK
328 /* An error just means that we're not using network play */
329 rtp_supported = 0;
330 rtp_is_running = 0;
331 } else {
332 rtp_supported = 1;
333 rtp_is_running = rtp_running();
4190a4d9 334 }
00e0c652
RK
335 /*fprintf(stderr, "rtp supported->%d, running->%d\n",
336 rtp_supported, rtp_is_running);*/
3849817f
RK
337 if(rtp_supported != rtp_was_supported
338 || rtp_is_running != rtp_was_running)
6c7a654c 339 event_raise("rtp-changed", 0);
fb44b59e 340 --suppress_actions;
a99c4e9a
RK
341}
342
343/** @brief Called to check whether RTP play is available */
00e0c652
RK
344static void check_rtp_address(const char attribute((unused)) *event,
345 void attribute((unused)) *eventdata,
346 void attribute((unused)) *callbackdata) {
347 if(!rtp_address_in_flight) {
348 //fprintf(stderr, "checking rtp\n");
4190a4d9 349 disorder_eclient_rtp_address(client, got_rtp_address, NULL);
00e0c652 350 }
a99c4e9a
RK
351}
352
460b9539 353/* main -------------------------------------------------------------------- */
354
355static const struct option options[] = {
356 { "help", no_argument, 0, 'h' },
357 { "version", no_argument, 0, 'V' },
358 { "config", required_argument, 0, 'c' },
359 { "tufnel", no_argument, 0, 't' },
460b9539 360 { "debug", no_argument, 0, 'd' },
361 { 0, 0, 0, 0 }
362};
363
364/* display usage message and terminate */
365static void help(void) {
366 xprintf("Disobedience - GUI client for DisOrder\n"
367 "\n"
368 "Usage:\n"
369 " disobedience [OPTIONS]\n"
370 "Options:\n"
371 " --help, -h Display usage message\n"
372 " --version, -V Display version number\n"
373 " --config PATH, -c PATH Set configuration file\n"
374 " --debug, -d Turn on debugging\n"
375 "\n"
376 "Also GTK+ options will work.\n");
377 xfclose(stdout);
378 exit(0);
379}
380
45e6d04a
RK
381static void version_completed(void attribute((unused)) *v,
382 const char attribute((unused)) *err,
3665689a 383 const char *ver) {
45e6d04a
RK
384 long major, minor, patch, dev;
385
3665689a 386 if(!ver) {
45e6d04a
RK
387 server_version = 0;
388 server_version_bytes = 0;
389 return;
390 }
3665689a 391 server_version = ver;
45e6d04a 392 server_version_bytes = 0;
3665689a
RK
393 major = strtol(ver, (char **)&ver, 10);
394 if(*ver != '.')
45e6d04a 395 return;
3665689a
RK
396 ++ver;
397 minor = strtol(ver, (char **)&ver, 10);
398 if(*ver == '.') {
399 ++ver;
400 patch = strtol(ver, (char **)&ver, 10);
45e6d04a
RK
401 } else
402 patch = 0;
3665689a
RK
403 if(*ver) {
404 if(*ver == '+') {
45e6d04a 405 dev = 1;
3665689a 406 ++ver;
45e6d04a 407 }
3665689a 408 if(*ver)
45e6d04a
RK
409 dev = 2;
410 } else
411 dev = 0;
412 server_version_bytes = (major << 24) + (minor << 16) + (patch << 8) + dev;
413}
414
7c30fc75 415void logged_in(void) {
73f1b9f3
RK
416 /* reset the clients */
417 disorder_eclient_close(client);
418 disorder_eclient_close(logclient);
a99c4e9a 419 rtp_supported = 0;
7c30fc75 420 event_raise("logged-in", 0);
6f09d54d 421 /* Force the periodic checks */
6f09d54d
RK
422 periodic_slow(0);
423 periodic_fast(0);
45e6d04a
RK
424 /* Recheck server version */
425 disorder_eclient_version(client, version_completed, 0);
68210888
RK
426 disorder_eclient_enable_connect(client);
427 disorder_eclient_enable_connect(logclient);
73f1b9f3
RK
428}
429
460b9539 430int main(int argc, char **argv) {
431 int n;
ce73fea7 432 gboolean gtkok;
460b9539 433
320598d4 434 mem_init();
fe8f8518
RK
435 /* garbage-collect PCRE's memory */
436 pcre_malloc = xmalloc;
437 pcre_free = xfree;
460b9539 438 if(!setlocale(LC_CTYPE, "")) fatal(errno, "error calling setlocale");
ce73fea7 439 gtkok = gtk_init_check(&argc, &argv);
c3df9503 440 while((n = getopt_long(argc, argv, "hVc:dtHC", options, 0)) >= 0) {
460b9539 441 switch(n) {
442 case 'h': help();
3fbdc96d 443 case 'V': version("disobedience");
460b9539 444 case 'c': configfile = optarg; break;
445 case 'd': debugging = 1; break;
446 case 't': goesupto = 11; break;
460b9539 447 default: fatal(0, "invalid option");
448 }
449 }
ce73fea7 450 if(!gtkok)
451 fatal(0, "failed to initialize GTK+");
5bf7c546
RK
452 /* gcrypt initialization */
453 if(!gcry_check_version(NULL))
454 disorder_fatal(0, "gcry_check_version failed");
455 gcry_control(GCRYCTL_INIT_SECMEM, 0);
456 gcry_control (GCRYCTL_INITIALIZATION_FINISHED, 0);
346ba8d5 457 signal(SIGPIPE, SIG_IGN);
33288048 458 init_styles();
b4f8eba1 459 load_settings();
460b9539 460 /* create the event loop */
461 D(("create main loop"));
462 mainloop = g_main_loop_new(0, 0);
02ba7921 463 if(config_read(0, NULL)) fatal(0, "cannot read configuration");
b50cfb8a
RK
464 /* we'll need mixer support */
465 backend = uaudio_apis[0];
466 if(backend->open_mixer)
467 backend->open_mixer();
460b9539 468 /* create the clients */
1c0d78bd
RK
469 if(!(client = gtkclient())
470 || !(logclient = gtkclient()))
471 return 1; /* already reported an error */
321f7536 472 /* periodic operations (e.g. expiring the cache, checking local volume) */
00e0c652 473 g_timeout_add(600000/*milliseconds*/, periodic_slow, 0);
321f7536 474 g_timeout_add(1000/*milliseconds*/, periodic_fast, 0);
348ef780
RK
475 /* global tooltips */
476 tips = gtk_tooltips_new();
460b9539 477 make_toplevel_window();
478 /* reset styles now everything has its name */
479 gtk_rc_reset_styles(gtk_settings_get_for_screen(gdk_screen_get_default()));
480 gtk_widget_show_all(toplevel);
7858930d 481 /* issue a NOP every so often */
482 g_timeout_add_full(G_PRIORITY_LOW,
d37d5336 483 2000/*interval, ms*/,
7858930d 484 maybe_send_nop,
485 0/*data*/,
486 0/*notify*/);
6d1302f0
RK
487 /* Start monitoring the log */
488 disorder_eclient_log(logclient, &log_callbacks, 0);
6f09d54d 489 /* Initiate all the checks */
6f09d54d 490 periodic_fast(0);
45e6d04a 491 disorder_eclient_version(client, version_completed, 0);
00e0c652 492 event_register("log-connected", check_rtp_address, 0);
fb44b59e 493 suppress_actions = 0;
bf5fdf14
RK
494 /* If no password is set yet pop up a login box */
495 if(!config->password)
496 login_box();
460b9539 497 D(("enter main loop"));
498 g_main_loop_run(mainloop);
499 return 0;
500}
501
502/*
503Local Variables:
504c-basic-offset:2
505comment-column:40
506fill-column:79
507indent-tabs-mode:nil
508End:
509*/