chiark / gitweb /
Rearrange choose columns. The track name column is now last by
[disorder] / disobedience / choose.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder
ebcfbfef 3 * Copyright (C) 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 */
b9bdafc7
RK
20/** @file disobedience/choose.c
21 * @brief Hierarchical track selection and search
22 *
ebcfbfef
RK
23 * We now use an ordinary GtkTreeStore/GtkTreeView.
24 *
ebcfbfef
RK
25 * We don't want to pull the entire tree in memory, but we want directories to
26 * show up as having children. Therefore we give directories a placeholder
a98fd571
RK
27 * child and replace their children when they are opened. Placeholders have
28 * TRACK_COLUMN="" and ISFILE_COLUMN=FALSE (so that they don't get check boxes,
29 * lengths, etc).
ebcfbfef
RK
30 *
31 * TODO We do a period sweep which kills contracted nodes, putting back
32 * placeholders, and updating expanded nodes to keep up with server-side
33 * changes. (We could trigger the latter off rescan complete notifications?)
34 *
35 * TODO:
36 * - sweep up contracted nodes
37 * - update when content may have changed (e.g. after a rescan)
a98fd571 38 * - proper sorting
b9bdafc7 39 */
460b9539 40
41#include "disobedience.h"
6982880f 42#include "choose.h"
16e145a5 43
ebcfbfef 44/** @brief The current selection tree */
6982880f 45GtkTreeStore *choose_store;
16e145a5 46
ebcfbfef 47/** @brief The view onto the selection tree */
6982880f 48GtkWidget *choose_view;
16e145a5 49
ebcfbfef 50/** @brief The selection tree's selection */
6982880f 51GtkTreeSelection *choose_selection;
460b9539 52
2a9a65e4
RK
53/** @brief Count of file listing operations in flight */
54static int choose_list_in_flight;
55
56/** @brief Count of files inserted in current batch of listing operations */
57static int choose_inserted;
58
a98fd571
RK
59static char *choose_get_string(GtkTreeIter *iter, int column) {
60 gchar *gs;
61 gtk_tree_model_get(GTK_TREE_MODEL(choose_store), iter,
62 column, &gs,
63 -1);
64 char *s = xstrdup(gs);
65 g_free(gs);
66 return s;
6a06a735
RK
67}
68
a98fd571
RK
69char *choose_get_track(GtkTreeIter *iter) {
70 char *s = choose_get_string(iter, TRACK_COLUMN);
71 return *s ? s : 0; /* Placeholder -> NULL */
72}
73
74char *choose_get_sort(GtkTreeIter *iter) {
75 return choose_get_string(iter, SORT_COLUMN);
76}
77
78int choose_is_file(GtkTreeIter *iter) {
79 gboolean isfile;
80 gtk_tree_model_get(GTK_TREE_MODEL(choose_store), iter,
81 ISFILE_COLUMN, &isfile,
82 -1);
83 return isfile;
84}
85
86int choose_is_dir(GtkTreeIter *iter) {
87 gboolean isfile;
88 gtk_tree_model_get(GTK_TREE_MODEL(choose_store), iter,
89 ISFILE_COLUMN, &isfile,
90 -1);
91 if(isfile)
92 return FALSE;
93 return !choose_is_placeholder(iter);
94}
95
96int choose_is_placeholder(GtkTreeIter *iter) {
97 return choose_get_string(iter, TRACK_COLUMN)[0] == 0;
e8a26cdd
RK
98}
99
ebcfbfef
RK
100/** @brief Remove node @p it and all its children
101 * @param Iterator, updated to point to next
102 * @return True if iterator remains valid
16e145a5 103 */
ebcfbfef
RK
104static gboolean choose_remove_node(GtkTreeIter *it) {
105 GtkTreeIter child[1];
106 gboolean childv = gtk_tree_model_iter_children(GTK_TREE_MODEL(choose_store),
107 child,
108 it);
109 while(childv)
110 childv = choose_remove_node(child);
ebcfbfef
RK
111 return gtk_tree_store_remove(choose_store, it);
112}
113
ad47bd4c
RK
114/** @brief Update length and state fields */
115static gboolean choose_set_state_callback(GtkTreeModel attribute((unused)) *model,
116 GtkTreePath attribute((unused)) *path,
117 GtkTreeIter *it,
118 gpointer attribute((unused)) data) {
a98fd571
RK
119 if(choose_is_file(it)) {
120 const char *track = choose_get_track(it);
121 const long l = namepart_length(track);
ad47bd4c
RK
122 char length[64];
123 if(l > 0)
124 byte_snprintf(length, sizeof length, "%ld:%02ld", l / 60, l % 60);
125 else
126 length[0] = 0;
127 gtk_tree_store_set(choose_store, it,
128 LENGTH_COLUMN, length,
a98fd571 129 STATE_COLUMN, queued(track),
ad47bd4c 130 -1);
cfa78eaa
RK
131 if(choose_is_search_result(track))
132 gtk_tree_store_set(choose_store, it,
b96f65cf
RK
133 BG_COLUMN, SEARCH_RESULT_BG,
134 FG_COLUMN, SEARCH_RESULT_FG,
cfa78eaa
RK
135 -1);
136 else
137 gtk_tree_store_set(choose_store, it,
138 BG_COLUMN, (char *)0,
139 FG_COLUMN, (char *)0,
140 -1);
ad47bd4c
RK
141 }
142 return FALSE; /* continue walking */
143}
144
145/** @brief Called when the queue or playing track change */
146static void choose_set_state(const char attribute((unused)) *event,
147 void attribute((unused)) *eventdata,
148 void attribute((unused)) *callbackdata) {
149 gtk_tree_model_foreach(GTK_TREE_MODEL(choose_store),
150 choose_set_state_callback,
151 NULL);
152}
153
ebcfbfef
RK
154/** @brief (Re-)populate a node
155 * @param parent_ref Node to populate or NULL to fill root
156 * @param nvec Number of children to add
157 * @param vec Children
a98fd571 158 * @param files 1 if children are files, 0 if directories
b9bdafc7 159 *
ebcfbfef
RK
160 * Adjusts the set of files (or directories) below @p parent_ref to match those
161 * listed in @p nvec and @p vec.
fcc8b9f7 162 *
ebcfbfef 163 * @parent_ref will be destroyed.
fcc8b9f7 164 */
ebcfbfef
RK
165static void choose_populate(GtkTreeRowReference *parent_ref,
166 int nvec, char **vec,
a98fd571 167 int isfile) {
ebcfbfef
RK
168 /* Compute parent_* */
169 GtkTreeIter pit[1], *parent_it;
170 GtkTreePath *parent_path;
171 if(parent_ref) {
172 parent_path = gtk_tree_row_reference_get_path(parent_ref);
173 parent_it = pit;
174 gboolean pitv = gtk_tree_model_get_iter(GTK_TREE_MODEL(choose_store),
175 pit, parent_path);
176 assert(pitv);
177 /*fprintf(stderr, "choose_populate %s: parent path is [%s]\n",
178 choose_type_map[type],
179 gtk_tree_path_to_string(parent_path));*/
460b9539 180 } else {
ebcfbfef
RK
181 parent_path = 0;
182 parent_it = 0;
183 /*fprintf(stderr, "choose_populate %s: populating the root\n",
184 choose_type_map[type]);*/
185 }
186 /* Remove unwanted nodes and find out which we must add */
187 //fprintf(stderr, " trimming unwanted %s nodes\n", choose_type_map[type]);
188 char *found = xmalloc(nvec);
189 GtkTreeIter it[1];
190 gboolean itv = gtk_tree_model_iter_children(GTK_TREE_MODEL(choose_store),
191 it,
192 parent_it);
193 while(itv) {
a98fd571 194 const char *track = choose_get_track(it);
ebcfbfef
RK
195 int keep;
196
a98fd571 197 if(!track) {
ebcfbfef
RK
198 /* Always kill placeholders */
199 //fprintf(stderr, " kill a placeholder\n");
200 keep = 0;
a98fd571 201 } else if(choose_is_file(it) == isfile) {
ebcfbfef 202 /* This is the type we care about */
a98fd571 203 //fprintf(stderr, " %s is a %s\n", track, isfile ? "file" : "dir");
ebcfbfef 204 int n;
a98fd571 205 for(n = 0; n < nvec && strcmp(vec[n], track); ++n)
ebcfbfef
RK
206 ;
207 if(n < nvec) {
208 //fprintf(stderr, " ... and survives\n");
209 found[n] = 1;
210 keep = 1;
211 } else {
212 //fprintf(stderr, " ... and is to be removed\n");
213 keep = 0;
c3df9503 214 }
6a06a735 215 } else {
ebcfbfef 216 /* Keep wrong-type entries */
a98fd571 217 //fprintf(stderr, " %s has wrong type\n", track);
ebcfbfef 218 keep = 1;
460b9539 219 }
ebcfbfef
RK
220 if(keep)
221 itv = gtk_tree_model_iter_next(GTK_TREE_MODEL(choose_store), it);
222 else
223 itv = choose_remove_node(it);
224 }
225 /* Add nodes we don't have */
226 int inserted = 0;
2a9a65e4 227 //fprintf(stderr, " inserting new %s nodes\n", isfile ? "track" : "dir");
a98fd571 228 const char *typename = isfile ? "track" : "dir";
ebcfbfef
RK
229 for(int n = 0; n < nvec; ++n) {
230 if(!found[n]) {
231 //fprintf(stderr, " %s was not found\n", vec[n]);
ebcfbfef
RK
232 gtk_tree_store_append(choose_store, it, parent_it);
233 gtk_tree_store_set(choose_store, it,
a98fd571 234 NAME_COLUMN, trackname_transform(typename,
ebcfbfef
RK
235 vec[n],
236 "display"),
a98fd571
RK
237 ISFILE_COLUMN, isfile,
238 TRACK_COLUMN, vec[n],
239 SORT_COLUMN, trackname_transform(typename,
240 vec[n],
241 "sort"),
ebcfbfef 242 -1);
ad47bd4c
RK
243 /* Update length and state; we expect this to kick off length lookups
244 * rather than necessarily get the right value the first time round. */
245 choose_set_state_callback(0, 0, it, 0);
ebcfbfef
RK
246 ++inserted;
247 /* If we inserted a directory, insert a placeholder too, so it appears to
248 * have children; it will be deleted when we expand the directory. */
a98fd571 249 if(!isfile) {
ebcfbfef
RK
250 //fprintf(stderr, " inserting a placeholder\n");
251 GtkTreeIter placeholder[1];
252
253 gtk_tree_store_append(choose_store, placeholder, it);
254 gtk_tree_store_set(choose_store, placeholder,
255 NAME_COLUMN, "Waddling...",
a98fd571
RK
256 TRACK_COLUMN, "",
257 ISFILE_COLUMN, FALSE,
ebcfbfef 258 -1);
e9b70a84 259 }
460b9539 260 }
460b9539 261 }
ebcfbfef
RK
262 //fprintf(stderr, " %d nodes inserted\n", inserted);
263 if(inserted) {
264 /* TODO sort the children */
33288048 265 }
ebcfbfef
RK
266 if(parent_ref) {
267 /* If we deleted a placeholder then we must re-expand the row */
268 gtk_tree_view_expand_row(GTK_TREE_VIEW(choose_view), parent_path, FALSE);
269 gtk_tree_row_reference_free(parent_ref);
270 gtk_tree_path_free(parent_path);
460b9539 271 }
2a9a65e4
RK
272 /* We only notify others that we've inserted tracks when there are no more
273 * insertions pending, so that they don't have to keep track of how many
274 * requests they've made. */
275 choose_inserted += inserted;
276 if(--choose_list_in_flight == 0) {
277 /* Notify interested parties that we inserted some tracks, AFTER making
278 * sure that the row is properly expanded */
279 if(choose_inserted) {
280 event_raise("choose-inserted-tracks", parent_it);
281 choose_inserted = 0;
282 }
283 }
460b9539 284}
285
ebcfbfef
RK
286static void choose_dirs_completed(void *v,
287 const char *error,
288 int nvec, char **vec) {
289 if(error) {
290 popup_protocol_error(0, error);
291 return;
460b9539 292 }
a98fd571 293 choose_populate(v, nvec, vec, 0/*!isfile*/);
460b9539 294}
295
ebcfbfef
RK
296static void choose_files_completed(void *v,
297 const char *error,
298 int nvec, char **vec) {
299 if(error) {
53fa91bb 300 popup_protocol_error(0, error);
ebcfbfef 301 return;
460b9539 302 }
a98fd571 303 choose_populate(v, nvec, vec, 1/*isfile*/);
460b9539 304}
305
a3602333
RK
306void choose_play_completed(void attribute((unused)) *v,
307 const char *error) {
308 if(error)
309 popup_protocol_error(0, error);
310}
311
312static void choose_state_toggled
313 (GtkCellRendererToggle attribute((unused)) *cell_renderer,
314 gchar *path_str,
315 gpointer attribute((unused)) user_data) {
316 GtkTreeIter it[1];
317 /* Identify the track */
318 gboolean itv =
319 gtk_tree_model_get_iter_from_string(GTK_TREE_MODEL(choose_store),
320 it,
321 path_str);
322 if(!itv)
323 return;
a98fd571 324 if(!choose_is_file(it))
a3602333 325 return;
a98fd571
RK
326 const char *track = choose_get_track(it);
327 if(queued(track))
a3602333 328 return;
a98fd571 329 disorder_eclient_play(client, track, choose_play_completed, 0);
a3602333
RK
330
331}
332
ebcfbfef
RK
333static void choose_row_expanded(GtkTreeView attribute((unused)) *treeview,
334 GtkTreeIter *iter,
335 GtkTreePath *path,
460b9539 336 gpointer attribute((unused)) user_data) {
ebcfbfef
RK
337 /*fprintf(stderr, "row-expanded path=[%s]\n",
338 gtk_tree_path_to_string(path));*/
339 /* We update a node's contents whenever it is expanded, even if it was
340 * already populated; the effect is that contracting and expanding a node
341 * suffices to update it to the latest state on the server. */
a98fd571 342 const char *track = choose_get_track(iter);
ebcfbfef 343 disorder_eclient_files(client, choose_files_completed,
a98fd571 344 track,
ebcfbfef
RK
345 NULL,
346 gtk_tree_row_reference_new(GTK_TREE_MODEL(choose_store),
347 path));
348 disorder_eclient_dirs(client, choose_dirs_completed,
a98fd571 349 track,
ebcfbfef
RK
350 NULL,
351 gtk_tree_row_reference_new(GTK_TREE_MODEL(choose_store),
352 path));
353 /* The row references are destroyed in the _completed handlers. */
2a9a65e4 354 choose_list_in_flight += 2;
ebcfbfef
RK
355}
356
ebcfbfef 357/** @brief Create the choose tab */
460b9539 358GtkWidget *choose_widget(void) {
ebcfbfef 359 /* Create the tree store. */
a98fd571 360 choose_store = gtk_tree_store_new(CHOOSE_COLUMNS,
ad47bd4c
RK
361 G_TYPE_BOOLEAN,
362 G_TYPE_STRING,
ebcfbfef 363 G_TYPE_STRING,
a3602333 364 G_TYPE_BOOLEAN,
a98fd571 365 G_TYPE_STRING,
cfa78eaa
RK
366 G_TYPE_STRING,
367 G_TYPE_STRING,
a98fd571 368 G_TYPE_STRING);
ebcfbfef
RK
369
370 /* Create the view */
371 choose_view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(choose_store));
ad47bd4c 372 gtk_tree_view_set_rules_hint(GTK_TREE_VIEW(choose_view), TRUE);
ebcfbfef
RK
373
374 /* Create cell renderers and columns */
ad47bd4c
RK
375 /* TODO use a table */
376 {
e9a72659 377 GtkCellRenderer *r = gtk_cell_renderer_toggle_new();
ad47bd4c 378 GtkTreeViewColumn *c = gtk_tree_view_column_new_with_attributes
e9a72659 379 ("Queued",
ad47bd4c 380 r,
e9a72659
RK
381 "active", STATE_COLUMN,
382 "visible", ISFILE_COLUMN,
ad47bd4c
RK
383 (char *)0);
384 gtk_tree_view_column_set_resizable(c, TRUE);
385 gtk_tree_view_column_set_reorderable(c, TRUE);
ad47bd4c 386 gtk_tree_view_append_column(GTK_TREE_VIEW(choose_view), c);
e9a72659
RK
387 g_signal_connect(r, "toggled",
388 G_CALLBACK(choose_state_toggled), 0);
ad47bd4c
RK
389 }
390 {
391 GtkCellRenderer *r = gtk_cell_renderer_text_new();
392 GtkTreeViewColumn *c = gtk_tree_view_column_new_with_attributes
393 ("Length",
394 r,
395 "text", LENGTH_COLUMN,
396 (char *)0);
397 gtk_tree_view_column_set_resizable(c, TRUE);
398 gtk_tree_view_column_set_reorderable(c, TRUE);
a3602333 399 g_object_set(r, "xalign", (gfloat)1.0, (char *)0);
ad47bd4c
RK
400 gtk_tree_view_append_column(GTK_TREE_VIEW(choose_view), c);
401 }
402 {
e9a72659 403 GtkCellRenderer *r = gtk_cell_renderer_text_new();
ad47bd4c 404 GtkTreeViewColumn *c = gtk_tree_view_column_new_with_attributes
e9a72659 405 ("Track",
ad47bd4c 406 r,
e9a72659
RK
407 "text", NAME_COLUMN,
408 "background", BG_COLUMN,
409 "foreground", FG_COLUMN,
ad47bd4c
RK
410 (char *)0);
411 gtk_tree_view_column_set_resizable(c, TRUE);
412 gtk_tree_view_column_set_reorderable(c, TRUE);
e9a72659 413 g_object_set(c, "expand", TRUE, (char *)0);
ad47bd4c 414 gtk_tree_view_append_column(GTK_TREE_VIEW(choose_view), c);
e9a72659 415 gtk_tree_view_set_expander_column(GTK_TREE_VIEW(choose_view), c);
ad47bd4c 416 }
460b9539 417
ebcfbfef
RK
418 /* The selection should support multiple things being selected */
419 choose_selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(choose_view));
420 gtk_tree_selection_set_mode(choose_selection, GTK_SELECTION_MULTIPLE);
421
422 /* Catch button presses */
6982880f
RK
423 g_signal_connect(choose_view, "button-press-event",
424 G_CALLBACK(choose_button_event), 0);
425 g_signal_connect(choose_view, "button-release-event",
426 G_CALLBACK(choose_button_event), 0);
ebcfbfef
RK
427 /* Catch row expansions so we can fill in placeholders */
428 g_signal_connect(choose_view, "row-expanded",
429 G_CALLBACK(choose_row_expanded), 0);
ad47bd4c
RK
430
431 event_register("queue-list-changed", choose_set_state, 0);
432 event_register("playing-track-changed", choose_set_state, 0);
cfa78eaa 433 event_register("search-results-changed", choose_set_state, 0);
460b9539 434
ebcfbfef
RK
435 /* Fill the root */
436 disorder_eclient_files(client, choose_files_completed, "", NULL, NULL);
437 disorder_eclient_dirs(client, choose_dirs_completed, "", NULL, NULL);
cfa78eaa 438
ebcfbfef
RK
439 /* Make the widget scrollable */
440 GtkWidget *scrolled = scroll_widget(choose_view);
cfa78eaa
RK
441
442 /* Pack vertically with the search widget */
443 GtkWidget *vbox = gtk_vbox_new(FALSE/*homogenous*/, 1/*spacing*/);
444 gtk_box_pack_start(GTK_BOX(vbox), scrolled,
445 TRUE/*expand*/, TRUE/*fill*/, 0/*padding*/);
446 gtk_box_pack_end(GTK_BOX(vbox), choose_search_widget(),
447 FALSE/*expand*/, FALSE/*fill*/, 0/*padding*/);
448
449 g_object_set_data(G_OBJECT(vbox), "type", (void *)&choose_tabtype);
450 return vbox;
460b9539 451}
452
453/*
454Local Variables:
455c-basic-offset:2
456comment-column:40
457fill-column:79
458indent-tabs-mode:nil
459End:
460*/