More tweaking
[Rockbox.git] / apps / playlist_catalog.c
blobfda91bb1ee85cb1c02eba55291d0025dd83c4447
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2006 Sebastian Henriksen, Hardeep Sidhu
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
20 #include <stdbool.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include "action.h"
25 #include "dir.h"
26 #include "file.h"
27 #include "filetree.h"
28 #include "kernel.h"
29 #include "keyboard.h"
30 #include "lang.h"
31 #include "list.h"
32 #include "misc.h"
33 #include "onplay.h"
34 #include "playlist.h"
35 #include "settings.h"
36 #include "splash.h"
37 #include "sprintf.h"
38 #include "tree.h"
39 #include "yesno.h"
40 #include "filetypes.h"
42 #define PLAYLIST_CATALOG_CFG ROCKBOX_DIR "/playlist_catalog.config"
43 #define PLAYLIST_CATALOG_DEFAULT_DIR "/Playlists"
44 #define MAX_PLAYLISTS 400
45 #define PLAYLIST_DISPLAY_COUNT 10
47 /* Use for recursive directory search */
48 struct add_track_context {
49 int fd;
50 int count;
53 /* keep track of most recently used playlist */
54 static char most_recent_playlist[MAX_PATH];
56 /* directory where our playlists our stored (configured in
57 PLAYLIST_CATALOG_CFG) */
58 static char playlist_dir[MAX_PATH];
59 static int playlist_dir_length;
60 static bool playlist_dir_exists = false;
62 /* Retrieve playlist directory from config file and verify it exists */
63 static int initialize_catalog(void)
65 static bool initialized = false;
67 if (!initialized)
69 int f;
70 DIR* dir;
71 bool default_dir = true;
73 f = open(PLAYLIST_CATALOG_CFG, O_RDONLY);
74 if (f >= 0)
76 char buf[MAX_PATH+5];
78 while (read_line(f, buf, sizeof(buf)))
80 char* name;
81 char* value;
83 /* directory config is of the format: "dir: /path/to/dir" */
84 if (settings_parseline(buf, &name, &value) &&
85 !strncasecmp(name, "dir:", strlen(name)) &&
86 strlen(value) > 0)
88 strncpy(playlist_dir, value, strlen(value));
89 default_dir = false;
93 close(f);
96 /* fall back to default directory if no or invalid config */
97 if (default_dir)
98 strncpy(playlist_dir, PLAYLIST_CATALOG_DEFAULT_DIR,
99 sizeof(playlist_dir));
101 playlist_dir_length = strlen(playlist_dir);
103 dir = opendir(playlist_dir);
104 if (dir)
106 playlist_dir_exists = true;
107 closedir(dir);
108 memset(most_recent_playlist, 0, sizeof(most_recent_playlist));
109 initialized = true;
113 if (!playlist_dir_exists)
115 if (mkdir(playlist_dir) < 0) {
116 gui_syncsplash(HZ*2, str(LANG_CATALOG_NO_DIRECTORY),
117 playlist_dir);
118 return -1;
120 else {
121 playlist_dir_exists = true;
122 memset(most_recent_playlist, 0, sizeof(most_recent_playlist));
123 initialized = true;
127 return 0;
129 /* Use the filetree functions to retrieve the list of playlists in the
130 directory */
131 static int create_playlist_list(char** playlists, int num_items,
132 int* num_playlists)
134 int result = -1;
135 int num_files = 0;
136 int index = 0;
137 int i;
138 bool most_recent = false;
139 struct entry *files;
140 struct tree_context* tc = tree_get_context();
141 int dirfilter = *(tc->dirfilter);
143 *num_playlists = 0;
145 /* use the tree browser dircache to load only playlists */
146 *(tc->dirfilter) = SHOW_PLAYLIST;
148 if (ft_load(tc, playlist_dir) < 0)
150 gui_syncsplash(HZ*2, str(LANG_CATALOG_NO_DIRECTORY),
151 playlist_dir);
152 goto exit;
155 files = (struct entry*) tc->dircache;
156 num_files = tc->filesindir;
158 /* we've overwritten the dircache so tree browser will need to be
159 reloaded */
160 reload_directory();
162 /* if it exists, most recent playlist will always be index 0 */
163 if (most_recent_playlist[0] != '\0')
165 index = 1;
166 most_recent = true;
169 for (i=0; i<num_files && index<num_items; i++)
171 if (files[i].attr & FILE_ATTR_M3U)
173 if (most_recent && !strncmp(files[i].name, most_recent_playlist,
174 sizeof(most_recent_playlist)))
176 playlists[0] = files[i].name;
177 most_recent = false;
179 else
181 playlists[index] = files[i].name;
182 index++;
187 *num_playlists = index;
189 /* we couldn't find the most recent playlist, shift all playlists up */
190 if (most_recent)
192 for (i=0; i<index-1; i++)
193 playlists[i] = playlists[i+1];
195 (*num_playlists)--;
197 most_recent_playlist[0] = '\0';
200 result = 0;
202 exit:
203 *(tc->dirfilter) = dirfilter;
204 return result;
207 /* Callback for gui_synclist */
208 static char* playlist_callback_name(int selected_item, void* data,
209 char* buffer)
211 char** playlists = (char**) data;
213 strncpy(buffer, playlists[selected_item], MAX_PATH);
215 return buffer;
218 /* Display all playlists in catalog. Selected "playlist" is returned.
219 If "view" mode is set then we're not adding anything into playlist. */
220 static int display_playlists(char* playlist, bool view)
222 int result = -1;
223 int num_playlists = 0;
224 bool exit = false;
225 char temp_buf[MAX_PATH];
226 char* playlists[MAX_PLAYLISTS];
227 struct gui_synclist playlist_lists;
229 if (create_playlist_list(playlists, sizeof(playlists),
230 &num_playlists) != 0)
231 return -1;
233 if (num_playlists <= 0)
235 gui_syncsplash(HZ*2, str(LANG_CATALOG_NO_PLAYLISTS));
236 return -1;
239 if (!playlist)
240 playlist = temp_buf;
242 gui_synclist_init(&playlist_lists, playlist_callback_name, playlists,
243 false, 1);
244 gui_synclist_set_nb_items(&playlist_lists, num_playlists);
245 gui_synclist_draw(&playlist_lists);
247 while (!exit)
249 int button = get_action(CONTEXT_LIST,HZ/2);
250 char* sel_file;
252 gui_synclist_do_button(&playlist_lists, &button,LIST_WRAP_UNLESS_HELD);
254 sel_file = playlists[gui_synclist_get_sel_pos(&playlist_lists)];
256 switch (button)
258 case ACTION_STD_CANCEL:
259 exit = true;
260 break;
262 case ACTION_STD_OK:
263 if (view)
265 /* In view mode, selecting a playlist starts playback */
266 if (playlist_create(playlist_dir, sel_file) != -1)
268 if (global_settings.playlist_shuffle)
269 playlist_shuffle(current_tick, -1);
270 playlist_start(0, 0);
273 else
275 /* we found the playlist we want to add to */
276 snprintf(playlist, MAX_PATH, "%s/%s", playlist_dir,
277 sel_file);
280 result = 0;
281 exit = true;
282 break;
284 case ACTION_STD_CONTEXT:
285 /* context menu only available in view mode */
286 if (view)
288 snprintf(playlist, MAX_PATH, "%s/%s", playlist_dir,
289 sel_file);
291 if (onplay(playlist, FILE_ATTR_M3U,
292 CONTEXT_TREE) != ONPLAY_OK)
294 result = 0;
295 exit = true;
297 else
298 gui_synclist_draw(&playlist_lists);
300 break;
302 case ACTION_NONE:
303 gui_syncstatusbar_draw(&statusbars, false);
304 break;
306 default:
307 if(default_event_handler(button) == SYS_USB_CONNECTED)
309 result = -1;
310 exit = true;
312 break;
315 return result;
318 /* display number of tracks inserted into playlists. Used for directory
319 insert */
320 static void display_insert_count(int count)
322 gui_syncsplash(0, str(LANG_PLAYLIST_INSERT_COUNT), count,
323 str(LANG_OFF_ABORT));
326 /* Add specified track into playlist. Callback from directory insert */
327 static int add_track_to_playlist(char* filename, void* context)
329 struct add_track_context* c = (struct add_track_context*) context;
331 if (fdprintf(c->fd, "%s\n", filename) <= 0)
332 return -1;
334 (c->count)++;
336 if (((c->count)%PLAYLIST_DISPLAY_COUNT) == 0)
337 display_insert_count(c->count);
339 return 0;
342 /* Add "sel" file into specified "playlist". How to insert depends on type
343 of file */
344 static int add_to_playlist(const char* playlist, char* sel, int sel_attr)
346 int fd;
347 int result = -1;
349 fd = open(playlist, O_CREAT|O_WRONLY|O_APPEND);
350 if(fd < 0)
351 return result;
353 /* In case we're in the playlist directory */
354 reload_directory();
356 if ((sel_attr & FILE_ATTR_MASK) == FILE_ATTR_AUDIO)
358 /* append the selected file */
359 if (fdprintf(fd, "%s\n", sel) > 0)
360 result = 0;
362 else if ((sel_attr & FILE_ATTR_MASK) == FILE_ATTR_M3U)
364 /* append playlist */
365 int f, fs, i;
366 char buf[1024];
368 if(strcasecmp(playlist, sel) == 0)
369 goto exit;
371 f = open(sel, O_RDONLY);
372 if (f < 0)
373 goto exit;
375 fs = filesize(f);
377 for (i=0; i<fs;)
379 int n;
381 n = read(f, buf, sizeof(buf));
382 if (n < 0)
383 break;
385 if (write(fd, buf, n) < 0)
386 break;
388 i += n;
391 if (i >= fs)
392 result = 0;
394 close(f);
396 else if (sel_attr & ATTR_DIRECTORY)
398 /* search directory for tracks and append to playlist */
399 bool recurse = false;
400 char *lines[] = {
401 (char *)str(LANG_RECURSE_DIRECTORY_QUESTION),
404 struct text_message message={lines, 2};
405 struct add_track_context context;
407 if (global_settings.recursive_dir_insert != RECURSE_ASK)
408 recurse = (bool)global_settings.recursive_dir_insert;
409 else
411 /* Ask if user wants to recurse directory */
412 recurse = (gui_syncyesno_run(&message, NULL, NULL)==YESNO_YES);
415 context.fd = fd;
416 context.count = 0;
418 display_insert_count(0);
420 result = playlist_directory_tracksearch(sel, recurse,
421 add_track_to_playlist, &context);
423 display_insert_count(context.count);
426 exit:
427 close(fd);
428 return result;
431 bool catalog_view_playlists(void)
433 if (initialize_catalog() == -1)
434 return false;
436 if (display_playlists(NULL, true) == -1)
437 return false;
439 return true;
442 bool catalog_add_to_a_playlist(char* sel, int sel_attr, bool new_playlist)
444 char playlist[MAX_PATH];
446 if (initialize_catalog() == -1)
447 return false;
449 if (new_playlist)
451 size_t len;
452 snprintf(playlist, MAX_PATH, "%s/", playlist_dir);
453 if (kbd_input(playlist, MAX_PATH))
454 return false;
456 len = strlen(playlist);
458 if(len > 4 && !strcasecmp(&playlist[len-4], ".m3u"))
459 strcat(playlist, "8");
460 else if(len <= 5 || strcasecmp(&playlist[len-5], ".m3u8"))
461 strcat(playlist, ".m3u8");
463 else
465 if (display_playlists(playlist, false) == -1)
466 return false;
469 if (add_to_playlist(playlist, sel, sel_attr) == 0)
471 strncpy(most_recent_playlist, playlist+playlist_dir_length+1,
472 sizeof(most_recent_playlist));
473 return true;
475 else
476 return false;