FS#9281 Rename of splash functions.
[kugel-rb.git] / apps / playlist_catalog.c
blobef2c1d13d59aba9ab41f14984cc82d3b3030f84c
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2006 Sebastian Henriksen, Hardeep Sidhu
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #include <stdbool.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include "action.h"
27 #include "dir.h"
28 #include "file.h"
29 #include "filetree.h"
30 #include "kernel.h"
31 #include "keyboard.h"
32 #include "lang.h"
33 #include "list.h"
34 #include "misc.h"
35 #include "onplay.h"
36 #include "playlist.h"
37 #include "settings.h"
38 #include "splash.h"
39 #include "sprintf.h"
40 #include "tree.h"
41 #include "yesno.h"
42 #include "filetypes.h"
43 #include "debug.h"
44 #include "playlist_catalog.h"
45 #include "statusbar.h"
46 #include "talk.h"
48 #define MAX_PLAYLISTS 400
49 #define PLAYLIST_DISPLAY_COUNT 10
51 /* Use for recursive directory search */
52 struct add_track_context {
53 int fd;
54 int count;
57 /* keep track of most recently used playlist */
58 static char most_recent_playlist[MAX_PATH];
60 /* directory where our playlists our stored */
61 static char playlist_dir[MAX_PATH];
62 static int playlist_dir_length;
63 static bool playlist_dir_exists = false;
65 /* Retrieve playlist directory from config file and verify it exists */
66 static int initialize_catalog(void)
68 static bool initialized = false;
70 if (!initialized)
72 bool default_dir = true;
74 /* directory config is of the format: "dir: /path/to/dir" */
75 if (global_settings.playlist_catalog_dir[0])
77 strcpy(playlist_dir, global_settings.playlist_catalog_dir);
78 default_dir = false;
81 /* fall back to default directory if no or invalid config */
82 if (default_dir)
83 strncpy(playlist_dir, PLAYLIST_CATALOG_DEFAULT_DIR,
84 sizeof(playlist_dir));
86 playlist_dir_length = strlen(playlist_dir);
88 if (dir_exists(playlist_dir))
90 playlist_dir_exists = true;
91 memset(most_recent_playlist, 0, sizeof(most_recent_playlist));
92 initialized = true;
96 if (!playlist_dir_exists)
98 if (mkdir(playlist_dir) < 0) {
99 splashf(HZ*2, ID2P(LANG_CATALOG_NO_DIRECTORY), playlist_dir);
100 return -1;
102 else {
103 playlist_dir_exists = true;
104 memset(most_recent_playlist, 0, sizeof(most_recent_playlist));
105 initialized = true;
109 return 0;
111 /* Use the filetree functions to retrieve the list of playlists in the
112 directory */
113 static int create_playlist_list(char** playlists, int num_items,
114 int* num_playlists)
116 int result = -1;
117 int num_files = 0;
118 int index = 0;
119 int i;
120 bool most_recent = false;
121 struct entry *files;
122 struct tree_context* tc = tree_get_context();
123 int dirfilter = *(tc->dirfilter);
125 *num_playlists = 0;
127 /* use the tree browser dircache to load only playlists */
128 *(tc->dirfilter) = SHOW_PLAYLIST;
130 if (ft_load(tc, playlist_dir) < 0)
132 splashf(HZ*2, ID2P(LANG_CATALOG_NO_DIRECTORY), playlist_dir);
133 goto exit;
136 files = (struct entry*) tc->dircache;
137 num_files = tc->filesindir;
139 /* we've overwritten the dircache so tree browser will need to be
140 reloaded */
141 reload_directory();
143 /* if it exists, most recent playlist will always be index 0 */
144 if (most_recent_playlist[0] != '\0')
146 index = 1;
147 most_recent = true;
150 for (i=0; i<num_files && index<num_items; i++)
152 if (files[i].attr & FILE_ATTR_M3U)
154 if (most_recent && !strncmp(files[i].name, most_recent_playlist,
155 sizeof(most_recent_playlist)))
157 playlists[0] = files[i].name;
158 most_recent = false;
160 else
162 playlists[index] = files[i].name;
163 index++;
168 *num_playlists = index;
170 /* we couldn't find the most recent playlist, shift all playlists up */
171 if (most_recent)
173 for (i=0; i<index-1; i++)
174 playlists[i] = playlists[i+1];
176 (*num_playlists)--;
178 most_recent_playlist[0] = '\0';
181 result = 0;
183 exit:
184 *(tc->dirfilter) = dirfilter;
185 return result;
188 /* Callback for gui_synclist */
189 static char* playlist_callback_name(int selected_item, void* data,
190 char* buffer, size_t buffer_len)
192 char** playlists = (char**) data;
194 strncpy(buffer, playlists[selected_item], buffer_len);
196 if (buffer[0] != '.' && !(global_settings.show_filename_ext == 1
197 || (global_settings.show_filename_ext == 3
198 && global_settings.dirfilter == 0)))
200 char* dot = strrchr(buffer, '.');
202 if (dot != NULL)
204 *dot = '\0';
208 return buffer;
211 static int playlist_callback_voice(int selected_item, void* data)
213 char** playlists = (char**) data;
214 talk_file_or_spell(playlist_dir, playlists[selected_item], NULL, false);
215 return 0;
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 splash(HZ*2, ID2P(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, NULL);
244 if(global_settings.talk_menu)
245 gui_synclist_set_voice_callback(&playlist_lists,
246 playlist_callback_voice);
247 gui_synclist_set_nb_items(&playlist_lists, num_playlists);
248 gui_synclist_draw(&playlist_lists);
249 gui_synclist_speak_item(&playlist_lists);
251 while (!exit)
253 int button;
254 char* sel_file;
255 list_do_action(CONTEXT_LIST,HZ/2,
256 &playlist_lists, &button,LIST_WRAP_UNLESS_HELD);
257 sel_file = playlists[gui_synclist_get_sel_pos(&playlist_lists)];
259 switch (button)
261 case ACTION_STD_CANCEL:
262 exit = true;
263 break;
265 case ACTION_STD_OK:
266 snprintf(playlist, MAX_PATH, "%s/%s", playlist_dir, sel_file);
268 if (view)
270 /* In view mode, selecting a playlist starts playback */
271 ft_play_playlist(playlist, playlist_dir, sel_file);
274 result = 0;
275 exit = true;
276 break;
278 case ACTION_STD_CONTEXT:
279 /* context menu only available in view mode */
280 if (view)
282 snprintf(playlist, MAX_PATH, "%s/%s", playlist_dir,
283 sel_file);
285 if (onplay(playlist, FILE_ATTR_M3U,
286 CONTEXT_TREE) != ONPLAY_OK)
288 result = 0;
289 exit = true;
291 else
293 gui_synclist_draw(&playlist_lists);
294 gui_synclist_speak_item(&playlist_lists);
297 break;
299 case ACTION_NONE:
300 gui_syncstatusbar_draw(&statusbars, false);
301 break;
303 default:
304 if(default_event_handler(button) == SYS_USB_CONNECTED)
306 result = -1;
307 exit = true;
309 break;
312 return result;
315 /* display number of tracks inserted into playlists. Used for directory
316 insert */
317 static void display_insert_count(int count)
319 static long talked_tick = 0;
320 if(global_settings.talk_menu && count &&
321 (talked_tick == 0 || TIME_AFTER(current_tick, talked_tick+5*HZ)))
323 talked_tick = current_tick;
324 talk_number(count, false);
325 talk_id(LANG_PLAYLIST_INSERT_COUNT, true);
328 splashf(0, str(LANG_PLAYLIST_INSERT_COUNT), count, str(LANG_OFF_ABORT));
331 /* Add specified track into playlist. Callback from directory insert */
332 static int add_track_to_playlist(char* filename, void* context)
334 struct add_track_context* c = (struct add_track_context*) context;
336 if (fdprintf(c->fd, "%s\n", filename) <= 0)
337 return -1;
339 (c->count)++;
341 if (((c->count)%PLAYLIST_DISPLAY_COUNT) == 0)
342 display_insert_count(c->count);
344 return 0;
347 /* Add "sel" file into specified "playlist". How to insert depends on type
348 of file */
349 static int add_to_playlist(const char* playlist, bool new_playlist,
350 const char* sel, int sel_attr)
352 int fd;
353 int result = -1;
354 int flags = O_CREAT|O_WRONLY;
356 if (new_playlist)
357 flags |= O_TRUNC;
358 else
359 flags |= O_APPEND;
361 fd = open(playlist, flags);
362 if(fd < 0)
363 return result;
365 /* In case we're in the playlist directory */
366 reload_directory();
368 if ((sel_attr & FILE_ATTR_MASK) == FILE_ATTR_AUDIO)
370 /* append the selected file */
371 if (fdprintf(fd, "%s\n", sel) > 0)
372 result = 0;
374 else if ((sel_attr & FILE_ATTR_MASK) == FILE_ATTR_M3U)
376 /* append playlist */
377 int f, fs, i;
378 char buf[1024];
380 if(strcasecmp(playlist, sel) == 0)
381 goto exit;
383 f = open(sel, O_RDONLY);
384 if (f < 0)
385 goto exit;
387 fs = filesize(f);
389 for (i=0; i<fs;)
391 int n;
393 n = read(f, buf, sizeof(buf));
394 if (n < 0)
395 break;
397 if (write(fd, buf, n) < 0)
398 break;
400 i += n;
403 if (i >= fs)
404 result = 0;
406 close(f);
408 else if (sel_attr & ATTR_DIRECTORY)
410 /* search directory for tracks and append to playlist */
411 bool recurse = false;
412 const char *lines[] = {
413 ID2P(LANG_RECURSE_DIRECTORY_QUESTION), sel};
414 const struct text_message message={lines, 2};
415 struct add_track_context context;
417 if (global_settings.recursive_dir_insert != RECURSE_ASK)
418 recurse = (bool)global_settings.recursive_dir_insert;
419 else
421 /* Ask if user wants to recurse directory */
422 recurse = (gui_syncyesno_run(&message, NULL, NULL)==YESNO_YES);
425 context.fd = fd;
426 context.count = 0;
428 display_insert_count(0);
430 result = playlist_directory_tracksearch(sel, recurse,
431 add_track_to_playlist, &context);
433 display_insert_count(context.count);
436 exit:
437 close(fd);
438 return result;
441 bool catalog_view_playlists(void)
443 if (initialize_catalog() == -1)
444 return false;
446 if (display_playlists(NULL, true) == -1)
447 return false;
449 return true;
452 bool catalog_add_to_a_playlist(const char* sel, int sel_attr,
453 bool new_playlist, char *m3u8name)
455 char playlist[MAX_PATH];
457 if (initialize_catalog() == -1)
458 return false;
460 if (new_playlist)
462 size_t len;
463 if (m3u8name == NULL)
465 snprintf(playlist, MAX_PATH, "%s/", playlist_dir);
466 if (kbd_input(playlist, MAX_PATH))
467 return false;
469 else
470 strcpy(playlist, m3u8name);
472 len = strlen(playlist);
474 if(len > 4 && !strcasecmp(&playlist[len-4], ".m3u"))
475 strcat(playlist, "8");
476 else if(len <= 5 || strcasecmp(&playlist[len-5], ".m3u8"))
477 strcat(playlist, ".m3u8");
479 else
481 if (display_playlists(playlist, false) == -1)
482 return false;
485 if (add_to_playlist(playlist, new_playlist, sel, sel_attr) == 0)
487 strncpy(most_recent_playlist, playlist+playlist_dir_length+1,
488 sizeof(most_recent_playlist));
489 return true;
491 else
492 return false;