chiark / gitweb /
OSS backend for playrtp
[disorder] / disobedience / disobedience.c
1 /*
2  * This file is part of DisOrder.
3  * Copyright (C) 2006, 2007 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
26 #include <getopt.h>
27 #include <locale.h>
28 #include <pcre.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 #include "style.h"                      /* generated style */
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 Last reported state
53  *
54  * This is updated by log_state().
55  */
56 unsigned long last_state;
57
58 /** @brief True if some track is playing
59  *
60  * This ought to be removed in favour of last_state & DISORDER_PLAYING
61  */
62 int playing;
63
64 /** @brief Left channel volume */
65 int volume_l;
66
67 /** @brief Right channel volume */
68 int volume_r;
69
70 double goesupto = 10;                   /* volume upper bound */
71
72 /** @brief True if a NOP is in flight */
73 static int nop_in_flight;
74
75 /** @brief Global tooltip group */
76 GtkTooltips *tips;
77
78 /* Window creation --------------------------------------------------------- */
79
80 /* Note that all the client operations kicked off from here will only complete
81  * after we've entered the event loop. */
82
83 /** @brief Called when main window is deleted
84  *
85  * Terminates the program.
86  */
87 static gboolean delete_event(GtkWidget attribute((unused)) *widget,
88                              GdkEvent attribute((unused)) *event,
89                              gpointer attribute((unused)) data) {
90   D(("delete_event"));
91   exit(0);                              /* die immediately */
92 }
93
94 /** @brief Called when the current tab is switched
95  *
96  * Updates the menu settings to correspond to the new page.
97  */
98 static void tab_switched(GtkNotebook attribute((unused)) *notebook,
99                          GtkNotebookPage attribute((unused)) *page,
100                          guint page_num,
101                          gpointer attribute((unused)) user_data) {
102   menu_update(page_num);
103 }
104
105 /** @brief Create the report box */
106 static GtkWidget *report_box(void) {
107   GtkWidget *vbox = gtk_vbox_new(FALSE, 0);
108
109   report_label = gtk_label_new("");
110   gtk_label_set_ellipsize(GTK_LABEL(report_label), PANGO_ELLIPSIZE_END);
111   gtk_misc_set_alignment(GTK_MISC(report_label), 0, 0);
112   gtk_container_add(GTK_CONTAINER(vbox), gtk_hseparator_new());
113   gtk_container_add(GTK_CONTAINER(vbox), report_label);
114   return vbox;
115 }
116
117 /** @brief Create and populate the main tab group */
118 static GtkWidget *notebook(void) {
119   tabs = gtk_notebook_new();
120   g_signal_connect(tabs, "switch-page", G_CALLBACK(tab_switched), 0);
121   gtk_notebook_append_page(GTK_NOTEBOOK(tabs), queue_widget(),
122                            gtk_label_new("Queue"));
123   gtk_notebook_append_page(GTK_NOTEBOOK(tabs), recent_widget(),
124                            gtk_label_new("Recent"));
125   gtk_notebook_append_page(GTK_NOTEBOOK(tabs), choose_widget(),
126                            gtk_label_new("Choose"));
127   gtk_notebook_append_page(GTK_NOTEBOOK(tabs), added_widget(),
128                            gtk_label_new("Added"));
129   return tabs;
130 }
131
132 /** @brief Create and populate the main window */
133 static void make_toplevel_window(void) {
134   GtkWidget *const vbox = gtk_vbox_new(FALSE, 1);
135   GtkWidget *const rb = report_box();
136
137   D(("top_window"));
138   toplevel = gtk_window_new(GTK_WINDOW_TOPLEVEL);
139   /* default size is too small */
140   gtk_window_set_default_size(GTK_WINDOW(toplevel), 640, 480);
141   /* terminate on close */
142   g_signal_connect(G_OBJECT(toplevel), "delete_event",
143                    G_CALLBACK(delete_event), NULL);
144   /* lay out the window */
145   gtk_window_set_title(GTK_WINDOW(toplevel), "Disobedience");
146   gtk_container_add(GTK_CONTAINER(toplevel), vbox);
147   /* lay out the vbox */
148   gtk_box_pack_start(GTK_BOX(vbox),
149                      menubar(toplevel),
150                      FALSE,             /* expand */
151                      FALSE,             /* fill */
152                      0);
153   gtk_box_pack_start(GTK_BOX(vbox),
154                      control_widget(),
155                      FALSE,             /* expand */
156                      FALSE,             /* fill */
157                      0);
158   gtk_container_add(GTK_CONTAINER(vbox), notebook());
159   gtk_box_pack_end(GTK_BOX(vbox),
160                    rb,
161                    FALSE,             /* expand */
162                    FALSE,             /* fill */
163                    0);
164   gtk_widget_set_name(toplevel, "disobedience");
165 }
166
167 #if MDEBUG
168 static int widget_count, container_count;
169
170 static void count_callback(GtkWidget *w,
171                            gpointer attribute((unused)) data) {
172   ++widget_count;
173   if(GTK_IS_CONTAINER(w)) {
174     ++container_count;
175     gtk_container_foreach(GTK_CONTAINER(w), count_callback, 0);
176   }
177 }
178
179 static void count_widgets(void) {
180   widget_count = 0;
181   container_count = 1;
182   if(toplevel)
183     gtk_container_foreach(GTK_CONTAINER(toplevel), count_callback, 0);
184   fprintf(stderr, "widget count: %8d  container count: %8d\n",
185           widget_count, container_count);
186 }
187 #endif
188
189 #if MTRACK
190 const char *mtag = "init";
191 static hash *mtrack_hash;
192
193 static int *mthfind(const char *tag) {
194   static const int zero = 0;
195   int *cp = hash_find(mtrack_hash, tag);
196   if(!cp) {
197     hash_add(mtrack_hash, tag, &zero, HASH_INSERT);
198     cp = hash_find(mtrack_hash, tag);
199   }
200   return cp;
201 }
202
203 static void *trap_malloc(size_t n) {
204   void *ptr = malloc(n + sizeof(char *));
205
206   *(const char **)ptr = mtag;
207   ++*mthfind(mtag);
208   return (char *)ptr + sizeof(char *);
209 }
210
211 static void trap_free(void *ptr) {
212   const char *tag;
213   if(!ptr)
214     return;
215   ptr = (char *)ptr - sizeof(char *);
216   tag = *(const char **)ptr;
217   --*mthfind(tag);
218   free(ptr);
219 }
220
221 static void *trap_realloc(void *ptr, size_t n) {
222   if(!ptr)
223     return trap_malloc(n);
224   if(!n) {
225     trap_free(ptr);
226     return 0;
227   }
228   ptr = (char *)ptr - sizeof(char *);
229   ptr = realloc(ptr, n + sizeof(char *));
230   *(const char **)ptr = mtag;
231   return (char *)ptr + sizeof(char *);
232 }
233
234 static int report_tags_callback(const char *key, void *value,
235                                 void attribute((unused)) *u) {
236   fprintf(stderr, "%16s: %d\n", key, *(int *)value);
237   return 0;
238 }
239
240 static void report_tags(void) {
241   hash_foreach(mtrack_hash, report_tags_callback, 0);
242   fprintf(stderr, "\n");
243 }
244
245 static const GMemVTable glib_memvtable = {
246   trap_malloc,
247   trap_realloc,
248   trap_free,
249   0,
250   0,
251   0
252 };
253 #endif
254
255 /** @brief Called once every 10 minutes */
256 static gboolean periodic(gpointer attribute((unused)) data) {
257   D(("periodic"));
258   /* Expire cached data */
259   cache_expire();
260   /* Update everything to be sure that the connection to the server hasn't
261    * mysteriously gone stale on us. */
262   all_update();
263 #if MDEBUG
264   count_widgets();
265   fprintf(stderr, "cache size: %zu\n", cache_count());
266 #endif
267 #if MTRACK
268   report_tags();
269 #endif
270   return TRUE;                          /* don't remove me */
271 }
272
273 /** @brief Called from time to time
274  *
275  * Used for debugging purposes
276  */
277 static gboolean heartbeat(gpointer attribute((unused)) data) {
278   static struct timeval last;
279   struct timeval now;
280   double delta;
281
282   xgettimeofday(&now, 0);
283   if(last.tv_sec) {
284     delta = (now.tv_sec + now.tv_sec / 1.0E6) 
285       - (last.tv_sec + last.tv_sec / 1.0E6);
286     if(delta >= 1.0625)
287       fprintf(stderr, "%f: %fs between 1s heartbeats\n", 
288               now.tv_sec + now.tv_sec / 1.0E6,
289               delta);
290   }
291   last = now;
292   return TRUE;
293 }
294
295 /** @brief Called when a NOP completes */
296 static void nop_completed(void attribute((unused)) *v) {
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  */
305 static gboolean maybe_send_nop(gpointer attribute((unused)) data) {
306   if(!nop_in_flight && (disorder_eclient_state(client) & DISORDER_CONNECTED)) {
307     nop_in_flight = 1;
308     disorder_eclient_nop(client, nop_completed, 0);
309   }
310   return TRUE;                          /* keep call me please */
311 }
312
313 /* main -------------------------------------------------------------------- */
314
315 static const struct option options[] = {
316   { "help", no_argument, 0, 'h' },
317   { "version", no_argument, 0, 'V' },
318   { "config", required_argument, 0, 'c' },
319   { "tufnel", no_argument, 0, 't' },
320   { "debug", no_argument, 0, 'd' },
321   { 0, 0, 0, 0 }
322 };
323
324 /* display usage message and terminate */
325 static void help(void) {
326   xprintf("Disobedience - GUI client for DisOrder\n"
327           "\n"
328           "Usage:\n"
329           "  disobedience [OPTIONS]\n"
330           "Options:\n"
331           "  --help, -h              Display usage message\n"
332           "  --version, -V           Display version number\n"
333           "  --config PATH, -c PATH  Set configuration file\n"
334           "  --debug, -d             Turn on debugging\n"
335           "\n"
336           "Also GTK+ options will work.\n");
337   xfclose(stdout);
338   exit(0);
339 }
340
341 /* display version number and terminate */
342 static void version(void) {
343   xprintf("disorder version %s\n", disorder_version_string);
344   xfclose(stdout);
345   exit(0);
346 }
347
348 int main(int argc, char **argv) {
349   int n;
350   disorder_eclient *logclient;
351
352   mem_init();
353   /* garbage-collect PCRE's memory */
354   pcre_malloc = xmalloc;
355   pcre_free = xfree;
356 #if MTRACK
357   mtrack_hash = hash_new(sizeof (int));
358   g_mem_set_vtable((GMemVTable *)&glib_memvtable);
359 #endif
360   if(!setlocale(LC_CTYPE, "")) fatal(errno, "error calling setlocale");
361   gtk_init(&argc, &argv);
362   gtk_rc_parse_string(style);
363   while((n = getopt_long(argc, argv, "hVc:dtHC", options, 0)) >= 0) {
364     switch(n) {
365     case 'h': help();
366     case 'V': version();
367     case 'c': configfile = optarg; break;
368     case 'd': debugging = 1; break;
369     case 't': goesupto = 11; break;
370     default: fatal(0, "invalid option");
371     }
372   }
373   signal(SIGPIPE, SIG_IGN);
374   /* create the event loop */
375   D(("create main loop"));
376   mainloop = g_main_loop_new(0, 0);
377   if(config_read(0)) fatal(0, "cannot read configuration");
378   /* create the clients */
379   if(!(client = gtkclient())
380      || !(logclient = gtkclient()))
381     return 1;                           /* already reported an error */
382   /* periodic operations (e.g. expiring the cache) */
383 #if MDEBUG || MTRACK
384   g_timeout_add(5000/*milliseconds*/, periodic, 0);
385 #else
386   g_timeout_add(600000/*milliseconds*/, periodic, 0);
387 #endif
388   /* The point of this is to try and get a handle on mysterious
389    * unresponsiveness.  It's not very useful in production use. */
390   if(0)
391     g_timeout_add(1000/*milliseconds*/, heartbeat, 0);
392   /* global tooltips */
393   tips = gtk_tooltips_new();
394   make_toplevel_window();
395   /* reset styles now everything has its name */
396   gtk_rc_reset_styles(gtk_settings_get_for_screen(gdk_screen_get_default()));
397   gtk_widget_show_all(toplevel);
398   /* issue a NOP every so often */
399   g_timeout_add_full(G_PRIORITY_LOW,
400                      1000/*interval, ms*/,
401                      maybe_send_nop,
402                      0/*data*/,
403                      0/*notify*/);
404   /* Start monitoring the log */
405   disorder_eclient_log(logclient, &log_callbacks, 0);
406   D(("enter main loop"));
407   MTAG("misc");
408   g_main_loop_run(mainloop);
409   return 0;
410 }
411
412 /*
413 Local Variables:
414 c-basic-offset:2
415 comment-column:40
416 fill-column:79
417 indent-tabs-mode:nil
418 End:
419 */