chiark / gitweb /
Merge playlist support.
[disorder] / disobedience / queue.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder
fb009628 3 * Copyright (C) 2006-2008 Richard Kettlewell
460b9539 4 *
e7eb3a27 5 * This program is free software: you can redistribute it and/or modify
460b9539 6 * it under the terms of the GNU General Public License as published by
e7eb3a27 7 * the Free Software Foundation, either version 3 of the License, or
460b9539 8 * (at your option) any later version.
9 *
e7eb3a27
RK
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 *
460b9539 15 * You should have received a copy of the GNU General Public License
e7eb3a27 16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
460b9539 17 */
132a5a4a
RK
18/** @file disobedience/queue.c
19 * @brief Disobedience queue widget
20 */
717ba987 21#include "disobedience.h"
6982880f 22#include "popup.h"
c133bd3c 23#include "queue-generic.h"
460b9539 24
c133bd3c
RK
25/** @brief The actual queue */
26static struct queue_entry *actual_queue;
27static struct queue_entry *actual_playing_track;
460b9539 28
c133bd3c
RK
29/** @brief The playing track */
30struct queue_entry *playing_track;
4eb1f430 31
3900d6d6
RK
32/** @brief When we last got the playing track
33 *
34 * Set to 0 if the timings are currently off due to having just unpaused.
35 */
c133bd3c 36time_t last_playing;
460b9539 37
83fb99f9 38static void queue_completed(void *v,
e2717131 39 const char *err,
83fb99f9
RK
40 struct queue_entry *q);
41static void playing_completed(void *v,
e2717131 42 const char *err,
83fb99f9
RK
43 struct queue_entry *q);
44
c133bd3c
RK
45/** @brief Called when either the actual queue or the playing track change */
46static void queue_playing_changed(void) {
83fb99f9
RK
47 /* Check that the playing track isn't in the queue. There's a race here due
48 * to the fact that we issue the two commands at slightly different times.
49 * If it goes wrong we re-issue and try again, so that we never offer up an
50 * inconsistent state. */
51 if(actual_playing_track) {
52 struct queue_entry *q;
53 for(q = actual_queue; q; q = q->next)
54 if(!strcmp(q->id, actual_playing_track->id))
55 break;
56 if(q) {
57 disorder_eclient_playing(client, playing_completed, 0);
58 disorder_eclient_queue(client, queue_completed, 0);
59 return;
60 }
61 }
62
63 struct queue_entry *q = xmalloc(sizeof *q);
ee7552f8
RK
64 if(actual_playing_track) {
65 *q = *actual_playing_track;
66 q->next = actual_queue;
67 playing_track = q;
68 } else {
69 playing_track = NULL;
70 q = actual_queue;
71 }
c133bd3c
RK
72 ql_new_queue(&ql_queue, q);
73 /* Tell anyone who cares */
74 event_raise("queue-list-changed", q);
75 event_raise("playing-track-changed", q);
460b9539 76}
77
c133bd3c
RK
78/** @brief Update the queue itself */
79static void queue_completed(void attribute((unused)) *v,
abf99697 80 const char *err,
c133bd3c 81 struct queue_entry *q) {
abf99697
RK
82 if(err) {
83 popup_protocol_error(0, err);
c133bd3c 84 return;
3035257f 85 }
c133bd3c
RK
86 actual_queue = q;
87 queue_playing_changed();
460b9539 88}
89
c133bd3c 90/** @brief Update the playing track */
460b9539 91static void playing_completed(void attribute((unused)) *v,
abf99697 92 const char *err,
460b9539 93 struct queue_entry *q) {
abf99697
RK
94 if(err) {
95 popup_protocol_error(0, err);
c133bd3c 96 return;
460b9539 97 }
c133bd3c
RK
98 actual_playing_track = q;
99 queue_playing_changed();
8484d1bf 100 time(&last_playing);
460b9539 101}
102
c133bd3c 103/** @brief Schedule an update to the queue
717ba987 104 *
c133bd3c
RK
105 * Called whenever a track is added to it or removed from it.
106 */
107static void queue_changed(const char attribute((unused)) *event,
108 void attribute((unused)) *eventdata,
109 void attribute((unused)) *callbackdata) {
110 D(("queue_changed"));
111 gtk_label_set_text(GTK_LABEL(report_label), "updating queue");
112 disorder_eclient_queue(client, queue_completed, 0);
460b9539 113}
114
c133bd3c 115/** @brief Schedule an update to the playing track
717ba987 116 *
c133bd3c 117 * Called whenever it changes
3ffa2d15 118 */
a8cd6f84 119static void playing_changed(const char attribute((unused)) *event,
c133bd3c
RK
120 void attribute((unused)) *eventdata,
121 void attribute((unused)) *callbackdata) {
a8cd6f84 122 D(("playing_changed"));
3ffa2d15 123 gtk_label_set_text(GTK_LABEL(report_label), "updating playing track");
3900d6d6
RK
124 /* Setting last_playing=0 means that we don't know what the correct value
125 * is right now, e.g. because things have been deranged by a pause. */
126 last_playing = 0;
3ffa2d15
RK
127 disorder_eclient_playing(client, playing_completed, 0);
128}
129
c133bd3c 130/** @brief Called regularly
717ba987 131 *
c133bd3c 132 * Updates the played-so-far field
717ba987 133 */
c133bd3c
RK
134static gboolean playing_periodic(gpointer attribute((unused)) data) {
135 /* If there's a track playing, update its row */
136 if(playing_track)
137 ql_update_row(playing_track, 0);
138 return TRUE;
460b9539 139}
140
c133bd3c
RK
141/** @brief Called at startup */
142static void queue_init(void) {
143 /* Arrange a callback whenever the playing state changes */
144 event_register("playing-changed", playing_changed, 0);
15837f6a
RK
145 /* We reget both playing track and queue at pause/resume so that start times
146 * can be computed correctly */
c133bd3c 147 event_register("pause-changed", playing_changed, 0);
15837f6a
RK
148 event_register("pause-changed", queue_changed, 0);
149 /* Reget the queue whenever it changes */
c133bd3c
RK
150 event_register("queue-changed", queue_changed, 0);
151 /* ...and once a second anyway */
152 g_timeout_add(1000/*ms*/, playing_periodic, 0);
460b9539 153}
154
82db9336
RK
155static void queue_move_completed(void attribute((unused)) *v,
156 const char *err) {
157 if(err) {
158 popup_protocol_error(0, err);
159 return;
160 }
161 /* The log should tell us the queue changed so we do no more here */
162}
163
164/** @brief Called when drag+drop completes */
165static void queue_drop(int src, int dst) {
166 struct queue_entry *sq, *dq;
167 int n;
168
169 //fprintf(stderr, "queue_drop %d -> %d\n", src, dst);
170 if(playing_track) {
171 /* If there's a playing track then you can't drag it anywhere */
172 if(src == 0) {
173 //fprintf(stderr, "cannot drag playing track\n");
174 queue_playing_changed();
175 return;
176 }
177 /* If you try to drop before the playing track we assume you missed and
178 * mean after instead */
179 if(!dst)
180 dst = 1;
181 //fprintf(stderr, "...adjusted to %d -> %d\n\n", src, dst);
182 }
183 /* Find the entry to move */
184 for(n = 0, sq = ql_queue.q; n < src; ++n)
185 sq = sq->next;
186 /*fprintf(stderr, "source=%s (%s)\n",
187 sq->id, sq->track);*/
188 const int after = dst - 1;
189 if(after == -1)
190 dq = 0;
191 else
192 /* Find the entry to insert after */
193 for(n = 0, dq = ql_queue.q; n < after; ++n)
194 dq = dq->next;
195 if(dq == playing_track)
196 dq = 0;
197#if 0
198 if(dq)
199 fprintf(stderr, "after=%s (%s)\n",
200 dq->id, dq->track);
201 else
202 fprintf(stderr, "after=NULL\n");
203#endif
204 disorder_eclient_moveafter(client,
205 dq ? dq->id : "",
206 1, &sq->id,
207 queue_move_completed, NULL);
208}
209
c133bd3c
RK
210/** @brief Columns for the queue */
211static const struct queue_column queue_columns[] = {
b0b15b7c 212 { "When", column_when, 0, COL_RIGHT },
c133bd3c 213 { "Who", column_who, 0, 0 },
b0b15b7c
RK
214 { "Artist", column_namepart, "artist", COL_EXPAND|COL_ELLIPSIZE },
215 { "Album", column_namepart, "album", COL_EXPAND|COL_ELLIPSIZE },
216 { "Title", column_namepart, "title", COL_EXPAND|COL_ELLIPSIZE },
217 { "Length", column_length, 0, COL_RIGHT }
460b9539 218};
219
c133bd3c 220/** @brief Pop-up menu for queue */
6982880f 221static struct menuitem queue_menuitems[] = {
c133bd3c
RK
222 { "Track properties", ql_properties_activate, ql_properties_sensitive, 0, 0 },
223 { "Select all tracks", ql_selectall_activate, ql_selectall_sensitive, 0, 0 },
224 { "Deselect all tracks", ql_selectnone_activate, ql_selectnone_sensitive, 0, 0 },
c9fb35f4 225 { "Scratch playing track", ql_scratch_activate, ql_scratch_sensitive, 0, 0 },
c133bd3c 226 { "Remove track from queue", ql_remove_activate, ql_remove_sensitive, 0, 0 },
a49c2c0f 227 { "Adopt track", ql_adopt_activate, ql_adopt_sensitive, 0, 0 },
4eb1f430
RK
228};
229
c133bd3c 230struct queuelike ql_queue = {
ee7552f8 231 .name = "queue",
c133bd3c
RK
232 .init = queue_init,
233 .columns = queue_columns,
234 .ncolumns = sizeof queue_columns / sizeof *queue_columns,
235 .menuitems = queue_menuitems,
82db9336
RK
236 .nmenuitems = sizeof queue_menuitems / sizeof *queue_menuitems,
237 .drop = queue_drop
460b9539 238};
239
c10dd9af
RK
240/** @brief Called when a key is pressed in the queue tree view */
241static gboolean queue_key_press(GtkWidget attribute((unused)) *widget,
242 GdkEventKey *event,
243 gpointer user_data) {
244 /*fprintf(stderr, "queue_key_press type=%d state=%#x keyval=%#x\n",
245 event->type, event->state, event->keyval);*/
246 switch(event->keyval) {
247 case GDK_BackSpace:
248 case GDK_Delete:
249 if(event->state)
250 break; /* Only take unmodified DEL/<-- */
251 ql_remove_activate(0, user_data);
252 return TRUE; /* Do not propagate */
253 }
254 return FALSE; /* Propagate */
255}
256
c133bd3c 257GtkWidget *queue_widget(void) {
1b5f38c4
RK
258 GtkWidget *const w = init_queuelike(&ql_queue);
259
c10dd9af
RK
260 /* Catch keypresses */
261 g_signal_connect(ql_queue.view, "key-press-event",
262 G_CALLBACK(queue_key_press), &ql_queue);
1b5f38c4 263 return w;
c133bd3c 264}
460b9539 265
717ba987 266/** @brief Return nonzero if @p track is in the queue */
460b9539 267int queued(const char *track) {
268 struct queue_entry *q;
269
270 D(("queued %s", track));
68110302
RK
271 /* Queue will contain resolved name */
272 track = namepart_resolve(track);
460b9539 273 for(q = ql_queue.q; q; q = q->next)
274 if(!strcmp(q->track, track))
275 return 1;
276 return 0;
277}
278
279/*
280Local Variables:
281c-basic-offset:2
282comment-column:40
283fill-column:79
284indent-tabs-mode:nil
285End:
286*/