chiark / gitweb /
Update queues by rearranging rows, rather than by blowing them away
[disorder] / disobedience / queue.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder
fb009628 3 * Copyright (C) 2006-2008 Richard Kettlewell
460b9539 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 */
717ba987 20#include "disobedience.h"
c133bd3c 21#include "queue-generic.h"
460b9539 22
c133bd3c
RK
23/** @brief The actual queue */
24static struct queue_entry *actual_queue;
25static struct queue_entry *actual_playing_track;
460b9539 26
c133bd3c
RK
27/** @brief The playing track */
28struct queue_entry *playing_track;
4eb1f430 29
c133bd3c
RK
30/** @brief When we last got the playing track */
31time_t last_playing;
460b9539 32
83fb99f9
RK
33static void queue_completed(void *v,
34 const char *error,
35 struct queue_entry *q);
36static void playing_completed(void *v,
37 const char *error,
38 struct queue_entry *q);
39
c133bd3c
RK
40/** @brief Called when either the actual queue or the playing track change */
41static void queue_playing_changed(void) {
460b9539 42
83fb99f9
RK
43 /* Check that the playing track isn't in the queue. There's a race here due
44 * to the fact that we issue the two commands at slightly different times.
45 * If it goes wrong we re-issue and try again, so that we never offer up an
46 * inconsistent state. */
47 if(actual_playing_track) {
48 struct queue_entry *q;
49 for(q = actual_queue; q; q = q->next)
50 if(!strcmp(q->id, actual_playing_track->id))
51 break;
52 if(q) {
53 disorder_eclient_playing(client, playing_completed, 0);
54 disorder_eclient_queue(client, queue_completed, 0);
55 return;
56 }
57 }
58
59 struct queue_entry *q = xmalloc(sizeof *q);
ee7552f8
RK
60 if(actual_playing_track) {
61 *q = *actual_playing_track;
62 q->next = actual_queue;
63 playing_track = q;
64 } else {
65 playing_track = NULL;
66 q = actual_queue;
67 }
c133bd3c
RK
68 time(&last_playing); /* for column_length() */
69 ql_new_queue(&ql_queue, q);
70 /* Tell anyone who cares */
71 event_raise("queue-list-changed", q);
72 event_raise("playing-track-changed", q);
460b9539 73}
74
c133bd3c
RK
75/** @brief Update the queue itself */
76static void queue_completed(void attribute((unused)) *v,
77 const char *error,
78 struct queue_entry *q) {
06bfbba4 79 if(error) {
3035257f 80 popup_protocol_error(0, error);
c133bd3c 81 return;
3035257f 82 }
c133bd3c
RK
83 actual_queue = q;
84 queue_playing_changed();
460b9539 85}
86
c133bd3c 87/** @brief Update the playing track */
460b9539 88static void playing_completed(void attribute((unused)) *v,
3035257f 89 const char *error,
460b9539 90 struct queue_entry *q) {
c133bd3c 91 if(error) {
3035257f 92 popup_protocol_error(0, error);
c133bd3c 93 return;
460b9539 94 }
c133bd3c
RK
95 actual_playing_track = q;
96 queue_playing_changed();
460b9539 97}
98
c133bd3c 99/** @brief Schedule an update to the queue
717ba987 100 *
c133bd3c
RK
101 * Called whenever a track is added to it or removed from it.
102 */
103static void queue_changed(const char attribute((unused)) *event,
104 void attribute((unused)) *eventdata,
105 void attribute((unused)) *callbackdata) {
106 D(("queue_changed"));
107 gtk_label_set_text(GTK_LABEL(report_label), "updating queue");
108 disorder_eclient_queue(client, queue_completed, 0);
460b9539 109}
110
c133bd3c 111/** @brief Schedule an update to the playing track
717ba987 112 *
c133bd3c 113 * Called whenever it changes
3ffa2d15 114 */
a8cd6f84 115static void playing_changed(const char attribute((unused)) *event,
c133bd3c
RK
116 void attribute((unused)) *eventdata,
117 void attribute((unused)) *callbackdata) {
a8cd6f84 118 D(("playing_changed"));
3ffa2d15
RK
119 gtk_label_set_text(GTK_LABEL(report_label), "updating playing track");
120 disorder_eclient_playing(client, playing_completed, 0);
121}
122
c133bd3c 123/** @brief Called regularly
717ba987 124 *
c133bd3c 125 * Updates the played-so-far field
717ba987 126 */
c133bd3c
RK
127static gboolean playing_periodic(gpointer attribute((unused)) data) {
128 /* If there's a track playing, update its row */
129 if(playing_track)
130 ql_update_row(playing_track, 0);
131 return TRUE;
460b9539 132}
133
c133bd3c
RK
134/** @brief Called at startup */
135static void queue_init(void) {
136 /* Arrange a callback whenever the playing state changes */
137 event_register("playing-changed", playing_changed, 0);
15837f6a
RK
138 /* We reget both playing track and queue at pause/resume so that start times
139 * can be computed correctly */
c133bd3c 140 event_register("pause-changed", playing_changed, 0);
15837f6a
RK
141 event_register("pause-changed", queue_changed, 0);
142 /* Reget the queue whenever it changes */
c133bd3c
RK
143 event_register("queue-changed", queue_changed, 0);
144 /* ...and once a second anyway */
145 g_timeout_add(1000/*ms*/, playing_periodic, 0);
460b9539 146}
147
c133bd3c
RK
148/** @brief Columns for the queue */
149static const struct queue_column queue_columns[] = {
b0b15b7c 150 { "When", column_when, 0, COL_RIGHT },
c133bd3c 151 { "Who", column_who, 0, 0 },
b0b15b7c
RK
152 { "Artist", column_namepart, "artist", COL_EXPAND|COL_ELLIPSIZE },
153 { "Album", column_namepart, "album", COL_EXPAND|COL_ELLIPSIZE },
154 { "Title", column_namepart, "title", COL_EXPAND|COL_ELLIPSIZE },
155 { "Length", column_length, 0, COL_RIGHT }
460b9539 156};
157
c133bd3c
RK
158/** @brief Pop-up menu for queue */
159static struct queue_menuitem queue_menuitems[] = {
160 { "Track properties", ql_properties_activate, ql_properties_sensitive, 0, 0 },
161 { "Select all tracks", ql_selectall_activate, ql_selectall_sensitive, 0, 0 },
162 { "Deselect all tracks", ql_selectnone_activate, ql_selectnone_sensitive, 0, 0 },
c9fb35f4 163 { "Scratch playing track", ql_scratch_activate, ql_scratch_sensitive, 0, 0 },
c133bd3c 164 { "Remove track from queue", ql_remove_activate, ql_remove_sensitive, 0, 0 },
4eb1f430
RK
165};
166
c133bd3c 167struct queuelike ql_queue = {
ee7552f8 168 .name = "queue",
c133bd3c
RK
169 .init = queue_init,
170 .columns = queue_columns,
171 .ncolumns = sizeof queue_columns / sizeof *queue_columns,
172 .menuitems = queue_menuitems,
83fb99f9 173 .nmenuitems = sizeof queue_menuitems / sizeof *queue_menuitems
460b9539 174};
175
c133bd3c
RK
176GtkWidget *queue_widget(void) {
177 return init_queuelike(&ql_queue);
178}
460b9539 179
717ba987 180/** @brief Return nonzero if @p track is in the queue */
460b9539 181int queued(const char *track) {
182 struct queue_entry *q;
183
184 D(("queued %s", track));
185 for(q = ql_queue.q; q; q = q->next)
186 if(!strcmp(q->track, track))
187 return 1;
188 return 0;
189}
190
191/*
192Local Variables:
193c-basic-offset:2
194comment-column:40
195fill-column:79
196indent-tabs-mode:nil
197End:
198*/