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