chiark / gitweb /
Set Disobedience login default in a way that doesn't override
[disorder] / disobedience / queue-generic.c
1 /*
2  * This file is part of DisOrder
3  * Copyright (C) 2006-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/queue-generic.c
21  * @brief Queue widgets
22  *
23  * This file provides contains code shared between all the queue-like
24  * widgets - the queue, the recent list and the added tracks list.
25  *
26  * This code is in the process of being rewritten to use the native list
27  * widget.
28  *
29  * There are three @ref queuelike objects: @ref ql_queue, @ref
30  * ql_recent and @ref ql_added.  Each has an associated queue linked
31  * list and a list store containing the contents.
32  *
33  * When new contents turn up we rearrange the list store accordingly.
34  *
35  * NB that while in the server the playing track is not in the queue, in
36  * Disobedience, the playing does live in @c ql_queue.q, despite its different
37  * status to everything else found in that list.
38  *
39  * To do:
40  * - display playing row in a different color?
41  */
42 #include "disobedience.h"
43 #include "popup.h"
44 #include "queue-generic.h"
45
46 static struct queuelike *const queuelikes[] = {
47   &ql_queue, &ql_recent, &ql_added
48 };
49 #define NQUEUELIKES (sizeof queuelikes / sizeof *queuelikes)
50
51 /* Track detail lookup ----------------------------------------------------- */
52
53 static void queue_lookups_completed(const char attribute((unused)) *event,
54                                    void attribute((unused)) *eventdata,
55                                    void *callbackdata) {
56   struct queuelike *ql = callbackdata;
57   ql_update_list_store(ql);
58 }
59
60 /* Column formatting -------------------------------------------------------- */
61
62 /** @brief Format the 'when' column */
63 const char *column_when(const struct queue_entry *q,
64                         const char attribute((unused)) *data) {
65   char when[64];
66   struct tm tm;
67   time_t t;
68
69   D(("column_when"));
70   switch(q->state) {
71   case playing_isscratch:
72   case playing_unplayed:
73   case playing_random:
74     t = q->expected;
75     break;
76   case playing_failed:
77   case playing_no_player:
78   case playing_ok:
79   case playing_scratched:
80   case playing_started:
81   case playing_paused:
82   case playing_quitting:
83     t = q->played;
84     break;
85   default:
86     t = 0;
87     break;
88   }
89   if(t)
90     strftime(when, sizeof when, "%H:%M", localtime_r(&t, &tm));
91   else
92     when[0] = 0;
93   return xstrdup(when);
94 }
95
96 /** @brief Format the 'who' column */
97 const char *column_who(const struct queue_entry *q,
98                        const char attribute((unused)) *data) {
99   D(("column_who"));
100   return q->submitter ? q->submitter : "";
101 }
102
103 /** @brief Format one of the track name columns */
104 const char *column_namepart(const struct queue_entry *q,
105                             const char *data) {
106   D(("column_namepart"));
107   return namepart(q->track, "display", data);
108 }
109
110 /** @brief Format the length column */
111 const char *column_length(const struct queue_entry *q,
112                           const char attribute((unused)) *data) {
113   D(("column_length"));
114   long l;
115   time_t now;
116   char *played = 0, *length = 0;
117
118   /* Work out what to say for the length */
119   l = namepart_length(q->track);
120   if(l > 0)
121     byte_xasprintf(&length, "%ld:%02ld", l / 60, l % 60);
122   else
123     byte_xasprintf(&length, "?:??");
124   /* For the currently playing track we want to report how much of the track
125    * has been played */
126   if(q == playing_track) {
127     /* log_state() arranges that we re-get the playing data whenever the
128      * pause/resume state changes */
129     if(last_state & DISORDER_TRACK_PAUSED)
130       l = playing_track->sofar;
131     else {
132       time(&now);
133       l = playing_track->sofar + (now - last_playing);
134     }
135     byte_xasprintf(&played, "%ld:%02ld/%s", l / 60, l % 60, length);
136     return played;
137   } else
138     return length;
139 }
140
141 /* List store maintenance -------------------------------------------------- */
142
143 /** @brief Return the @ref queue_entry corresponding to @p iter
144  * @param model Model that owns @p iter
145  * @param iter Tree iterator
146  * @return ID string
147  */
148 struct queue_entry *ql_iter_to_q(GtkTreeModel *model,
149                                  GtkTreeIter *iter) {
150   struct queuelike *ql = g_object_get_data(G_OBJECT(model), "ql");
151   GValue v[1];
152   memset(v, 0, sizeof v);
153   gtk_tree_model_get_value(model, iter, ql->ncolumns + QUEUEPOINTER_COLUMN, v);
154   assert(G_VALUE_TYPE(v) == G_TYPE_POINTER);
155   struct queue_entry *const q = g_value_get_pointer(v);
156   g_value_unset(v);
157   return q;
158 }
159
160 /** @brief Update one row of a list store
161  * @param q Queue entry
162  * @param iter Iterator referring to row or NULL to work it out
163  */
164 void ql_update_row(struct queue_entry *q,
165                    GtkTreeIter *iter) { 
166   const struct queuelike *const ql = q->ql; 
167
168   D(("ql_update_row"));
169   /* If no iter was supplied, work it out */
170   GtkTreeIter my_iter[1];
171   if(!iter) {
172     gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql->store), my_iter);
173     struct queue_entry *qq;
174     for(qq = ql->q; qq && q != qq; qq = qq->next)
175       gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), my_iter);
176     if(!qq)
177       return;
178     iter = my_iter;
179   }
180   /* Update all the columns */
181   for(int col = 0; col < ql->ncolumns; ++col)
182     gtk_list_store_set(ql->store, iter,
183                        col, ql->columns[col].value(q,
184                                                    ql->columns[col].data),
185                        -1);
186   gtk_list_store_set(ql->store, iter,
187                      ql->ncolumns + QUEUEPOINTER_COLUMN, q,
188                      -1);
189   if(q == playing_track)
190     gtk_list_store_set(ql->store, iter,
191                        ql->ncolumns + BACKGROUND_COLUMN, BG_PLAYING,
192                        ql->ncolumns + FOREGROUND_COLUMN, FG_PLAYING,
193                        -1);
194   else
195     gtk_list_store_set(ql->store, iter,
196                        ql->ncolumns + BACKGROUND_COLUMN, (char *)0,
197                        ql->ncolumns + FOREGROUND_COLUMN, (char *)0,
198                        -1);
199 }
200
201 /** @brief Update the list store
202  * @param ql Queuelike to update
203  *
204  * Called when new namepart data is available (and initially).  Doesn't change
205  * the rows, just updates the cell values.
206  */
207 void ql_update_list_store(struct queuelike *ql) {
208   D(("ql_update_list_store"));
209   GtkTreeIter iter[1];
210   gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql->store), iter);
211   for(struct queue_entry *q = ql->q; q; q = q->next) {
212     ql_update_row(q, iter);
213     gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), iter);
214   }
215 }
216
217 struct newqueue_data {
218   struct queue_entry *old, *new;
219 };
220
221 static void record_queue_map(hash *h,
222                              const char *id,
223                              struct queue_entry *old,
224                              struct queue_entry *new) {
225   struct newqueue_data *nqd;
226
227   if(!(nqd = hash_find(h, id))) {
228     static const struct newqueue_data empty[1];
229     hash_add(h, id, empty, HASH_INSERT);
230     nqd = hash_find(h, id);
231   }
232   if(old)
233     nqd->old = old;
234   if(new)
235     nqd->new = new;
236 }
237
238 #if 0
239 static void dump_queue(struct queue_entry *head, struct queue_entry *mark) {
240   for(struct queue_entry *q = head; q; q = q->next) {
241     if(q == mark)
242       fprintf(stderr, "!");
243     fprintf(stderr, "%s", q->id);
244     if(q->next)
245       fprintf(stderr, " ");
246   }
247   fprintf(stderr, "\n");
248 }
249
250 static void dump_rows(struct queuelike *ql) {
251   GtkTreeIter iter[1];
252   gboolean it = gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql->store),
253                                               iter);
254   while(it) {
255     struct queue_entry *q = ql_iter_to_q(GTK_TREE_MODEL(ql->store), iter);
256     it = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), iter);
257     fprintf(stderr, "%s", q->id);
258     if(it)
259       fprintf(stderr, " ");
260   }
261   fprintf(stderr, "\n");
262 }
263 #endif
264
265 /** @brief Reset the list store
266  * @param ql Queuelike to reset
267  * @param newq New queue contents/ordering
268  *
269  * Updates the queue to match @p newq
270  */
271 void ql_new_queue(struct queuelike *ql,
272                   struct queue_entry *newq) {
273   D(("ql_new_queue"));
274   ++suppress_actions;
275
276   /* Tell every queue entry which queue owns it */
277   //fprintf(stderr, "%s: filling in q->ql\n", ql->name);
278   for(struct queue_entry *q = newq; q; q = q->next)
279     q->ql = ql;
280
281   //fprintf(stderr, "%s: constructing h\n", ql->name);
282   /* Construct map from id to new and old structures */
283   hash *h = hash_new(sizeof(struct newqueue_data));
284   for(struct queue_entry *q = ql->q; q; q = q->next)
285     record_queue_map(h, q->id, q, NULL);
286   for(struct queue_entry *q = newq; q; q = q->next)
287     record_queue_map(h, q->id, NULL, q);
288
289   /* The easy bit: delete rows not present any more.  In the same pass we
290    * update the secret column containing the queue_entry pointer. */
291   //fprintf(stderr, "%s: deleting rows...\n", ql->name);
292   GtkTreeIter iter[1];
293   gboolean it = gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql->store),
294                                               iter);
295   int inserted = 0, deleted = 0, kept = 0;
296   while(it) {
297     struct queue_entry *q = ql_iter_to_q(GTK_TREE_MODEL(ql->store), iter);
298     const struct newqueue_data *nqd = hash_find(h, q->id);
299     if(nqd->new) {
300       /* Tell this row that it belongs to the new version of the queue */
301       gtk_list_store_set(ql->store, iter,
302                          ql->ncolumns + QUEUEPOINTER_COLUMN, nqd->new,
303                          -1);
304       it = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), iter);
305       ++kept;
306     } else {
307       /* Delete this row (and move iter to the next one) */
308       //fprintf(stderr, " delete %s", q->id);
309       it = gtk_list_store_remove(ql->store, iter);
310       ++deleted;
311     }
312   }
313
314   /* Now every row's secret column is right, but we might be missing new rows
315    * and they might be in the wrong order */
316
317   /* We're going to have to support arbitrary rearrangements, so we might as
318    * well add new elements at the end. */
319   //fprintf(stderr, "%s: adding rows...\n", ql->name);
320   struct queue_entry *after = 0;
321   for(struct queue_entry *q = newq; q; q = q->next) {
322     const struct newqueue_data *nqd = hash_find(h, q->id);
323     if(!nqd->old) {
324       if(after) {
325         /* Try to insert at the right sort of place */
326         GtkTreeIter where[1];
327         gboolean wit = gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql->store),
328                                                      where);
329         while(wit && ql_iter_to_q(GTK_TREE_MODEL(ql->store), where) != after)
330           wit = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), where);
331         if(wit)
332           gtk_list_store_insert_after(ql->store, iter, where);
333         else
334           gtk_list_store_append(ql->store, iter);
335       } else
336         gtk_list_store_prepend(ql->store, iter);
337       gtk_list_store_set(ql->store, iter,
338                          ql->ncolumns + QUEUEPOINTER_COLUMN, q,
339                          -1);
340       //fprintf(stderr, " add %s", q->id);
341       ++inserted;
342     }
343     after = newq;
344   }
345
346   /* Now exactly the right set of rows are present, and they have the right
347    * queue_entry pointers in their secret column, but they may be in the wrong
348    * order.
349    *
350    * The current code is simple but amounts to a bubble-sort - we might easily
351    * called gtk_tree_model_iter_next a couple of thousand times.
352    */
353   //fprintf(stderr, "%s: rearranging rows\n", ql->name);
354   //fprintf(stderr, "%s: queue state: ", ql->name);
355   //dump_queue(newq, 0);
356   //fprintf(stderr, "%s: row state: ", ql->name);
357   //dump_rows(ql);
358   it = gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql->store),
359                                               iter);
360   struct queue_entry *rq = newq;        /* r for 'right, correct' */
361   int swaps = 0, searches = 0;
362   while(it) {
363     struct queue_entry *q = ql_iter_to_q(GTK_TREE_MODEL(ql->store), iter);
364     //fprintf(stderr, " rq = %p, q = %p\n", rq, q);
365     //fprintf(stderr, " rq->id = %s, q->id = %s\n", rq->id, q->id);
366
367     if(q != rq) {
368       //fprintf(stderr, "  mismatch\n");
369       GtkTreeIter next[1] = { *iter };
370       gboolean nit = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), next);
371       while(nit) {
372         struct queue_entry *nq = ql_iter_to_q(GTK_TREE_MODEL(ql->store), next);
373         //fprintf(stderr, "   candidate: %s\n", nq->id);
374         if(nq == rq)
375           break;
376         nit = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), next);
377         ++searches;
378       }
379       assert(nit);
380       //fprintf(stderr, "  found it\n");
381       gtk_list_store_swap(ql->store, iter, next);
382       *iter = *next;
383       //fprintf(stderr, "%s: new row state: ", ql->name);
384       //dump_rows(ql);
385       ++swaps;
386     }
387     /* ...and onto the next one */
388     it = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), iter);
389     rq = rq->next;
390   }
391 #if 0
392   fprintf(stderr, "%6s: %3d kept %3d inserted %3d deleted %3d swaps %4d searches\n", ql->name,
393           kept, inserted, deleted, swaps, searches);
394 #endif
395   //fprintf(stderr, "done\n");
396   ql->q = newq;
397   /* Set the rest of the columns in new rows */
398   ql_update_list_store(ql);
399   --suppress_actions;
400 }
401
402 /** @brief Initialize a @ref queuelike */
403 GtkWidget *init_queuelike(struct queuelike *ql) {
404   D(("init_queuelike"));
405   /* Create the list store.  We add an extra column to hold a pointer to the
406    * queue_entry. */
407   GType *types = xcalloc(ql->ncolumns + EXTRA_COLUMNS, sizeof (GType));
408   for(int n = 0; n < ql->ncolumns + EXTRA_COLUMNS; ++n)
409     types[n] = G_TYPE_STRING;
410   types[ql->ncolumns + QUEUEPOINTER_COLUMN] = G_TYPE_POINTER;
411   ql->store = gtk_list_store_newv(ql->ncolumns + EXTRA_COLUMNS, types);
412   g_object_set_data(G_OBJECT(ql->store), "ql", (void *)ql);
413
414   /* Create the view */
415   ql->view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(ql->store));
416   gtk_tree_view_set_rules_hint(GTK_TREE_VIEW(ql->view), TRUE);
417
418   /* Create cell renderers and label columns */
419   for(int n = 0; n < ql->ncolumns; ++n) {
420     GtkCellRenderer *r = gtk_cell_renderer_text_new();
421     if(ql->columns[n].flags & COL_ELLIPSIZE)
422       g_object_set(r, "ellipsize", PANGO_ELLIPSIZE_END, (char *)0);
423     if(ql->columns[n].flags & COL_RIGHT)
424       g_object_set(r, "xalign", (gfloat)1.0, (char *)0);
425     GtkTreeViewColumn *c = gtk_tree_view_column_new_with_attributes
426       (ql->columns[n].name,
427        r,
428        "text", n,
429        "background", ql->ncolumns + BACKGROUND_COLUMN,
430        "foreground", ql->ncolumns + FOREGROUND_COLUMN,
431        (char *)0);
432     gtk_tree_view_column_set_resizable(c, TRUE);
433     gtk_tree_view_column_set_reorderable(c, TRUE);
434     if(ql->columns[n].flags & COL_EXPAND)
435       g_object_set(c, "expand", TRUE, (char *)0);
436     gtk_tree_view_append_column(GTK_TREE_VIEW(ql->view), c);
437   }
438
439   /* The selection should support multiple things being selected */
440   ql->selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(ql->view));
441   gtk_tree_selection_set_mode(ql->selection, GTK_SELECTION_MULTIPLE);
442
443   /* Catch button presses */
444   g_signal_connect(ql->view, "button-press-event",
445                    G_CALLBACK(ql_button_release), ql);
446
447   /* TODO style? */
448
449   ql->init();
450
451   /* Update display text when lookups complete */
452   event_register("lookups-completed", queue_lookups_completed, ql);
453   
454   GtkWidget *scrolled = scroll_widget(ql->view);
455   g_object_set_data(G_OBJECT(scrolled), "type", (void *)ql_tabtype(ql));
456   return scrolled;
457 }
458
459 /*
460 Local Variables:
461 c-basic-offset:2
462 comment-column:40
463 fill-column:79
464 indent-tabs-mode:nil
465 End:
466 */