chiark / gitweb /
Disobedience login window now has a 'remote' switch. When off it will
[disorder] / disobedience / disobedience.c
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 */
38 GMainLoop *mainloop;
39
40 /** @brief Top-level window */
41 GtkWidget *toplevel;
42
43 /** @brief Label for progress indicator */
44 GtkWidget *report_label;
45
46 /** @brief Main tab group */
47 GtkWidget *tabs;
48
49 /** @brief Main client */
50 disorder_eclient *client;
51
52 /** @brief Log client */
53 disorder_eclient *logclient;
54
55 /** @brief Last reported state
56  *
57  * This is updated by log_state().
58  */
59 unsigned 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  */
65 int playing;
66
67 /** @brief Left channel volume */
68 int volume_l;
69
70 /** @brief Right channel volume */
71 int volume_r;
72
73 double goesupto = 10;                   /* volume upper bound */
74
75 /** @brief True if a NOP is in flight */
76 static int nop_in_flight;
77
78 /** @brief True if an rtp-address command is in flight */
79 static int rtp_address_in_flight;
80
81 /** @brief True if a rights lookup is in flight */
82 static int rights_lookup_in_flight;
83
84 /** @brief Current rights bitmap */
85 rights_type last_rights;
86
87 /** @brief Global tooltip group */
88 GtkTooltips *tips;
89
90 /** @brief True if RTP play is available
91  *
92  * This is a bit of a bodge...
93  */
94 int rtp_supported;
95
96 /** @brief True if RTP play is enabled */
97 int rtp_is_running;
98
99 /** @brief Server version */
100 const char *server_version;
101
102 /** @brief Parsed server version */
103 long server_version_bytes;
104
105 static 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  */
118 static 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  */
129 static 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 */
141 static 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 */
153 static 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 */
171 static 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
205 static 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
227 static 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 */
238 static 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 */
251 static 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 */
291 static 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  */
302 static 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 */
317 static 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 */
343 static 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
354 static 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 */
364 static 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
380 static 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
414 void 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   disorder_eclient_enable_connect(client);
426   disorder_eclient_enable_connect(logclient);
427 }
428
429 int main(int argc, char **argv) {
430   int n;
431   gboolean gtkok;
432
433   mem_init();
434   /* garbage-collect PCRE's memory */
435   pcre_malloc = xmalloc;
436   pcre_free = xfree;
437   if(!setlocale(LC_CTYPE, "")) fatal(errno, "error calling setlocale");
438   gtkok = gtk_init_check(&argc, &argv);
439   while((n = getopt_long(argc, argv, "hVc:dtHC", options, 0)) >= 0) {
440     switch(n) {
441     case 'h': help();
442     case 'V': version("disobedience");
443     case 'c': configfile = optarg; break;
444     case 'd': debugging = 1; break;
445     case 't': goesupto = 11; break;
446     default: fatal(0, "invalid option");
447     }
448   }
449   if(!gtkok)
450     fatal(0, "failed to initialize GTK+");
451   signal(SIGPIPE, SIG_IGN);
452   init_styles();
453   load_settings();
454   /* create the event loop */
455   D(("create main loop"));
456   mainloop = g_main_loop_new(0, 0);
457   if(config_read(0)) fatal(0, "cannot read configuration");
458   /* create the clients */
459   if(!(client = gtkclient())
460      || !(logclient = gtkclient()))
461     return 1;                           /* already reported an error */
462   /* periodic operations (e.g. expiring the cache, checking local volume) */
463   g_timeout_add(600000/*milliseconds*/, periodic_slow, 0);
464   g_timeout_add(1000/*milliseconds*/, periodic_fast, 0);
465   /* global tooltips */
466   tips = gtk_tooltips_new();
467   make_toplevel_window();
468   /* reset styles now everything has its name */
469   gtk_rc_reset_styles(gtk_settings_get_for_screen(gdk_screen_get_default()));
470   gtk_widget_show_all(toplevel);
471   /* issue a NOP every so often */
472   g_timeout_add_full(G_PRIORITY_LOW,
473                      2000/*interval, ms*/,
474                      maybe_send_nop,
475                      0/*data*/,
476                      0/*notify*/);
477   /* Start monitoring the log */
478   disorder_eclient_log(logclient, &log_callbacks, 0);
479   /* Initiate all the checks */
480   periodic_fast(0);
481   disorder_eclient_version(client, version_completed, 0);
482   event_register("log-connected", check_rtp_address, 0);
483   suppress_actions = 0;
484   /* If no password is set yet pop up a login box */
485   if(!config->password)
486     login_box();
487   D(("enter main loop"));
488   g_main_loop_run(mainloop);
489   return 0;
490 }
491
492 /*
493 Local Variables:
494 c-basic-offset:2
495 comment-column:40
496 fill-column:79
497 indent-tabs-mode:nil
498 End:
499 */