chiark / gitweb /
Mostly working playlist rearrangement.
[disorder] / disobedience / disobedience.c
1 /*
2  * This file is part of DisOrder.
3  * Copyright (C) 2006-2009 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 3 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,
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  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18 /** @file disobedience/disobedience.c
19  * @brief Main Disobedience program
20  */
21
22 #include "disobedience.h"
23 #include "version.h"
24
25 #include <getopt.h>
26 #include <locale.h>
27 #include <pcre.h>
28 #include <gcrypt.h>
29
30 /* Apologies for the numerous de-consting casts, but GLib et al do not seem to
31  * have heard of const. */
32
33 /* Variables --------------------------------------------------------------- */
34
35 /** @brief Event loop */
36 GMainLoop *mainloop;
37
38 /** @brief Top-level window */
39 GtkWidget *toplevel;
40
41 /** @brief Label for progress indicator */
42 GtkWidget *report_label;
43
44 /** @brief Main tab group */
45 GtkWidget *tabs;
46
47 /** @brief Main client */
48 disorder_eclient *client;
49
50 /** @brief Log client */
51 disorder_eclient *logclient;
52
53 /** @brief Last reported state
54  *
55  * This is updated by log_state().
56  */
57 unsigned 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  */
63 int playing;
64
65 /** @brief Left channel volume */
66 int volume_l;
67
68 /** @brief Right channel volume */
69 int volume_r;
70
71 /** @brief Audio backend */
72 const struct uaudio *backend;
73
74 double goesupto = 10;                   /* volume upper bound */
75
76 /** @brief True if a NOP is in flight */
77 static int nop_in_flight;
78
79 /** @brief True if an rtp-address command is in flight */
80 static int rtp_address_in_flight;
81
82 /** @brief True if a rights lookup is in flight */
83 static int rights_lookup_in_flight;
84
85 /** @brief Current rights bitmap */
86 rights_type last_rights;
87
88 /** @brief True if RTP play is available
89  *
90  * This is a bit of a bodge...
91  */
92 int rtp_supported;
93
94 /** @brief True if RTP play is enabled */
95 int rtp_is_running;
96
97 /** @brief Server version */
98 const char *server_version;
99
100 /** @brief Parsed server version */
101 long server_version_bytes;
102
103 static void check_rtp_address(const char *event,
104                               void *eventdata,
105                               void *callbackdata);
106
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
112 /** @brief Called when main window is deleted
113  *
114  * Terminates the program.
115  */
116 static 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
123 /** @brief Called when the current tab is switched
124  *
125  * Updates the menu settings to correspond to the new page.
126  */
127 static void tab_switched(GtkNotebook *notebook,
128                          GtkNotebookPage attribute((unused)) *page,
129                          guint page_num,
130                          gpointer attribute((unused)) user_data) {
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");
133   assert(t != 0);
134   if(t->selected)
135     t->selected();
136 }
137
138 /** @brief Create the report box */
139 static 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
150 /** @brief Create and populate the main tab group */
151 static GtkWidget *notebook(void) {
152   tabs = gtk_notebook_new();
153   /* The current tab is _NORMAL, the rest are _ACTIVE, which is bizarre but
154    * produces not too dreadful appearance */
155   gtk_widget_set_style(tabs, tool_style);
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"));
163   gtk_notebook_append_page(GTK_NOTEBOOK(tabs), added_widget(),
164                            gtk_label_new("Added"));
165   return tabs;
166 }
167
168 /** @brief Create and populate the main window */
169 static 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);
200   gtk_widget_set_style(toplevel, tool_style);
201 }
202
203 static void userinfo_rights_completed(void attribute((unused)) *v,
204                                       const char *err,
205                                       const char *value) {
206   rights_type r;
207
208   if(err) {
209     popup_protocol_error(0, err);
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
225 static 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
235 /** @brief Called occasionally */
236 static gboolean periodic_slow(gpointer attribute((unused)) data) {
237   D(("periodic_slow"));
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();
243   event_raise("periodic-slow", 0);
244   /* Recheck RTP status too */
245   check_rtp_address(0, 0, 0);
246   return TRUE;                          /* don't remove me */
247 }
248
249 /** @brief Called frequently */
250 static gboolean periodic_fast(gpointer attribute((unused)) data) {
251 #if 0                                   /* debugging hack */
252   static struct timeval last;
253   struct timeval now;
254   double delta;
255
256   xgettimeofday(&now, 0);
257   if(last.tv_sec) {
258     delta = (now.tv_sec + now.tv_sec / 1.0E6) 
259       - (last.tv_sec + last.tv_sec / 1.0E6);
260     if(delta >= 1.0625)
261       fprintf(stderr, "%f: %fs between 1s heartbeats\n", 
262               now.tv_sec + now.tv_sec / 1.0E6,
263               delta);
264   }
265   last = now;
266 #endif
267   if(rtp_supported && backend && backend->get_volume) {
268     int nl, nr;
269     backend->get_volume(&nl, &nr);
270     if(nl != volume_l || nr != volume_r) {
271       volume_l = nl;
272       volume_r = nr;
273       event_raise("volume-changed", 0);
274     }
275   }
276   /* Periodically check what our rights are */
277   int recheck_rights = 1;
278   if(server_version_bytes >= 0x04010000)
279     /* Server versions after 4.1 will send updates */
280     recheck_rights = 0;
281   if((server_version_bytes & 0xFF) == 0x01)
282     /* Development servers might do regardless of their version number */
283     recheck_rights = 0;
284   if(recheck_rights)
285     check_rights();
286   event_raise("periodic-fast", 0);
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, "")) disorder_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: disorder_fatal(0, "invalid option");
447     }
448   }
449   if(!gtkok)
450     disorder_fatal(0, "failed to initialize GTK+");
451   /* gcrypt initialization */
452   if(!gcry_check_version(NULL))
453     disorder_fatal(0, "gcry_check_version failed");
454   gcry_control(GCRYCTL_INIT_SECMEM, 0);
455   gcry_control (GCRYCTL_INITIALIZATION_FINISHED, 0);
456   signal(SIGPIPE, SIG_IGN);
457   init_styles();
458   load_settings();
459   /* create the event loop */
460   D(("create main loop"));
461   mainloop = g_main_loop_new(0, 0);
462   if(config_read(0, NULL)) disorder_fatal(0, "cannot read configuration");
463   /* we'll need mixer support */
464   backend = uaudio_apis[0];
465   if(backend->configure)
466     backend->configure();
467   if(backend->open_mixer)
468     backend->open_mixer();
469   /* create the clients */
470   if(!(client = gtkclient())
471      || !(logclient = gtkclient()))
472     return 1;                           /* already reported an error */
473   /* periodic operations (e.g. expiring the cache, checking local volume) */
474   g_timeout_add(600000/*milliseconds*/, periodic_slow, 0);
475   g_timeout_add(1000/*milliseconds*/, periodic_fast, 0);
476   make_toplevel_window();
477   /* reset styles now everything has its name */
478   gtk_rc_reset_styles(gtk_settings_get_for_screen(gdk_screen_get_default()));
479   gtk_widget_show_all(toplevel);
480   /* issue a NOP every so often */
481   g_timeout_add_full(G_PRIORITY_LOW,
482                      2000/*interval, ms*/,
483                      maybe_send_nop,
484                      0/*data*/,
485                      0/*notify*/);
486   /* Start monitoring the log */
487   disorder_eclient_log(logclient, &log_callbacks, 0);
488   /* Initiate all the checks */
489   periodic_fast(0);
490   disorder_eclient_version(client, version_completed, 0);
491   event_register("log-connected", check_rtp_address, 0);
492   suppress_actions = 0;
493 #if PLAYLISTS
494   playlists_init();
495 #endif
496   /* If no password is set yet pop up a login box */
497   if(!config->password)
498     login_box();
499   D(("enter main loop"));
500   g_main_loop_run(mainloop);
501   return 0;
502 }
503
504 /*
505 Local Variables:
506 c-basic-offset:2
507 comment-column:40
508 fill-column:79
509 indent-tabs-mode:nil
510 End:
511 */