chiark / gitweb /
Send clients a rights-changed message when their rights change.
[disorder] / disobedience / queue-generic.c
CommitLineData
c133bd3c
RK
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.
ee7552f8
RK
38 *
39 * To do:
ee7552f8 40 * - display playing row in a different color?
c133bd3c
RK
41 */
42#include "disobedience.h"
6982880f 43#include "popup.h"
c133bd3c
RK
44#include "queue-generic.h"
45
46static 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
ad47bd4c
RK
53static 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);
c133bd3c
RK
58}
59
60/* Column formatting -------------------------------------------------------- */
61
62/** @brief Format the 'when' column */
63const 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 */
97const 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 */
104const char *column_namepart(const struct queue_entry *q,
22717074 105 const char *data) {
c133bd3c
RK
106 D(("column_namepart"));
107 return namepart(q->track, "display", data);
108}
109
110/** @brief Format the length column */
111const 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 */
ad47bd4c 119 l = namepart_length(q->track);
c133bd3c
RK
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
c133bd3c
RK
141/* List store maintenance -------------------------------------------------- */
142
22717074 143/** @brief Return the @ref queue_entry corresponding to @p iter
83fb99f9 144 * @param model Model that owns @p iter
22717074
RK
145 * @param iter Tree iterator
146 * @return ID string
147 */
83fb99f9 148struct queue_entry *ql_iter_to_q(GtkTreeModel *model,
22717074 149 GtkTreeIter *iter) {
83fb99f9 150 struct queuelike *ql = g_object_get_data(G_OBJECT(model), "ql");
22717074
RK
151 GValue v[1];
152 memset(v, 0, sizeof v);
0fb5e8f3 153 gtk_tree_model_get_value(model, iter, ql->ncolumns + QUEUEPOINTER_COLUMN, v);
22717074
RK
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
c133bd3c
RK
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 */
164void 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);
0fb5e8f3
RK
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);
c133bd3c
RK
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 */
207void 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
83fb99f9
RK
217struct newqueue_data {
218 struct queue_entry *old, *new;
219};
220
221static 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
239static 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
250static 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
c133bd3c
RK
265/** @brief Reset the list store
266 * @param ql Queuelike to reset
83fb99f9 267 * @param newq New queue contents/ordering
c133bd3c 268 *
83fb99f9 269 * Updates the queue to match @p newq
c133bd3c
RK
270 */
271void ql_new_queue(struct queuelike *ql,
272 struct queue_entry *newq) {
273 D(("ql_new_queue"));
83fb99f9
RK
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)
c133bd3c 279 q->ql = ql;
83fb99f9
RK
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 */
0fb5e8f3
RK
301 gtk_list_store_set(ql->store, iter,
302 ql->ncolumns + QUEUEPOINTER_COLUMN, nqd->new,
303 -1);
83fb99f9
RK
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 }
c133bd3c 312 }
83fb99f9
RK
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 GtkTreeIter iter[1];
325 if(after) {
326 /* Try to insert at the right sort of place */
327 GtkTreeIter where[1];
328 gboolean wit = gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql->store),
329 where);
330 while(wit && ql_iter_to_q(GTK_TREE_MODEL(ql->store), where) != after)
331 wit = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), where);
332 if(wit)
333 gtk_list_store_insert_after(ql->store, iter, where);
334 else
335 gtk_list_store_append(ql->store, iter);
336 } else
337 gtk_list_store_prepend(ql->store, iter);
0fb5e8f3
RK
338 gtk_list_store_set(ql->store, iter,
339 ql->ncolumns + QUEUEPOINTER_COLUMN, q,
340 -1);
83fb99f9
RK
341 //fprintf(stderr, " add %s", q->id);
342 ++inserted;
343 }
344 after = newq;
345 }
346
347 /* Now exactly the right set of rows are present, and they have the right
348 * queue_entry pointers in their secret column, but they may be in the wrong
349 * order.
350 *
351 * The current code is simple but amounts to a bubble-sort - we might easily
352 * called gtk_tree_model_iter_next a couple of thousand times.
353 */
354 //fprintf(stderr, "%s: rearranging rows\n", ql->name);
355 //fprintf(stderr, "%s: queue state: ", ql->name);
356 //dump_queue(newq, 0);
357 //fprintf(stderr, "%s: row state: ", ql->name);
358 //dump_rows(ql);
359 it = gtk_tree_model_get_iter_first(GTK_TREE_MODEL(ql->store),
360 iter);
361 struct queue_entry *rq = newq; /* r for 'right, correct' */
362 int swaps = 0, searches = 0;
363 while(it) {
364 struct queue_entry *q = ql_iter_to_q(GTK_TREE_MODEL(ql->store), iter);
365 //fprintf(stderr, " rq = %p, q = %p\n", rq, q);
366 //fprintf(stderr, " rq->id = %s, q->id = %s\n", rq->id, q->id);
367
368 if(q != rq) {
369 //fprintf(stderr, " mismatch\n");
370 GtkTreeIter next[1] = { *iter };
371 gboolean nit = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), next);
372 while(nit) {
373 struct queue_entry *nq = ql_iter_to_q(GTK_TREE_MODEL(ql->store), next);
374 //fprintf(stderr, " candidate: %s\n", nq->id);
375 if(nq == rq)
376 break;
377 nit = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), next);
378 ++searches;
379 }
380 assert(nit);
381 //fprintf(stderr, " found it\n");
382 gtk_list_store_swap(ql->store, iter, next);
383 *iter = *next;
384 //fprintf(stderr, "%s: new row state: ", ql->name);
385 //dump_rows(ql);
386 ++swaps;
387 }
388 /* ...and onto the next one */
389 it = gtk_tree_model_iter_next(GTK_TREE_MODEL(ql->store), iter);
390 rq = rq->next;
391 }
392#if 0
393 fprintf(stderr, "%6s: %3d kept %3d inserted %3d deleted %3d swaps %4d searches\n", ql->name,
394 kept, inserted, deleted, swaps, searches);
395#endif
396 //fprintf(stderr, "done\n");
397 ql->q = newq;
398 /* Set the rest of the columns in new rows */
399 ql_update_list_store(ql);
83fb99f9 400 --suppress_actions;
c133bd3c
RK
401}
402
403/** @brief Initialize a @ref queuelike */
404GtkWidget *init_queuelike(struct queuelike *ql) {
405 D(("init_queuelike"));
0fb5e8f3
RK
406 /* Create the list store. We add an extra column to hold a pointer to the
407 * queue_entry. */
408 GType *types = xcalloc(ql->ncolumns + EXTRA_COLUMNS, sizeof (GType));
409 for(int n = 0; n < ql->ncolumns + EXTRA_COLUMNS; ++n)
c133bd3c 410 types[n] = G_TYPE_STRING;
0fb5e8f3
RK
411 types[ql->ncolumns + QUEUEPOINTER_COLUMN] = G_TYPE_POINTER;
412 ql->store = gtk_list_store_newv(ql->ncolumns + EXTRA_COLUMNS, types);
22717074 413 g_object_set_data(G_OBJECT(ql->store), "ql", (void *)ql);
c133bd3c
RK
414
415 /* Create the view */
416 ql->view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(ql->store));
1583d68f 417 gtk_tree_view_set_rules_hint(GTK_TREE_VIEW(ql->view), TRUE);
c133bd3c
RK
418
419 /* Create cell renderers and label columns */
420 for(int n = 0; n < ql->ncolumns; ++n) {
421 GtkCellRenderer *r = gtk_cell_renderer_text_new();
b0b15b7c
RK
422 if(ql->columns[n].flags & COL_ELLIPSIZE)
423 g_object_set(r, "ellipsize", PANGO_ELLIPSIZE_END, (char *)0);
424 if(ql->columns[n].flags & COL_RIGHT)
425 g_object_set(r, "xalign", (gfloat)1.0, (char *)0);
c133bd3c
RK
426 GtkTreeViewColumn *c = gtk_tree_view_column_new_with_attributes
427 (ql->columns[n].name,
428 r,
429 "text", n,
0fb5e8f3
RK
430 "background", ql->ncolumns + BACKGROUND_COLUMN,
431 "foreground", ql->ncolumns + FOREGROUND_COLUMN,
c133bd3c 432 (char *)0);
3ffb8e5d
RK
433 gtk_tree_view_column_set_resizable(c, TRUE);
434 gtk_tree_view_column_set_reorderable(c, TRUE);
b0b15b7c
RK
435 if(ql->columns[n].flags & COL_EXPAND)
436 g_object_set(c, "expand", TRUE, (char *)0);
c133bd3c
RK
437 gtk_tree_view_append_column(GTK_TREE_VIEW(ql->view), c);
438 }
439
440 /* The selection should support multiple things being selected */
441 ql->selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(ql->view));
442 gtk_tree_selection_set_mode(ql->selection, GTK_SELECTION_MULTIPLE);
443
c133bd3c 444 /* Catch button presses */
17c36802 445 g_signal_connect(ql->view, "button-press-event",
c133bd3c
RK
446 G_CALLBACK(ql_button_release), ql);
447
448 /* TODO style? */
c133bd3c
RK
449
450 ql->init();
451
ad47bd4c
RK
452 /* Update display text when lookups complete */
453 event_register("lookups-completed", queue_lookups_completed, ql);
454
ee7552f8
RK
455 GtkWidget *scrolled = scroll_widget(ql->view);
456 g_object_set_data(G_OBJECT(scrolled), "type", (void *)ql_tabtype(ql));
457 return scrolled;
c133bd3c
RK
458}
459
460/*
461Local Variables:
462c-basic-offset:2
463comment-column:40
464fill-column:79
465indent-tabs-mode:nil
466End:
467*/