1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
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 ****************************************************************************/
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
{
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;
71 bool default_dir
= true;
73 f
= open(PLAYLIST_CATALOG_CFG
, O_RDONLY
);
78 while (read_line(f
, buf
, sizeof(buf
)))
83 /* directory config is of the format: "dir: /path/to/dir" */
84 if (settings_parseline(buf
, &name
, &value
) &&
85 !strncasecmp(name
, "dir:", strlen(name
)) &&
88 strncpy(playlist_dir
, value
, strlen(value
));
96 /* fall back to default directory if no or invalid config */
98 strncpy(playlist_dir
, PLAYLIST_CATALOG_DEFAULT_DIR
,
99 sizeof(playlist_dir
));
101 playlist_dir_length
= strlen(playlist_dir
);
103 dir
= opendir(playlist_dir
);
106 playlist_dir_exists
= true;
108 memset(most_recent_playlist
, 0, sizeof(most_recent_playlist
));
113 if (!playlist_dir_exists
)
115 if (mkdir(playlist_dir
) < 0) {
116 gui_syncsplash(HZ
*2, str(LANG_CATALOG_NO_DIRECTORY
),
121 playlist_dir_exists
= true;
122 memset(most_recent_playlist
, 0, sizeof(most_recent_playlist
));
129 /* Use the filetree functions to retrieve the list of playlists in the
131 static int create_playlist_list(char** playlists
, int num_items
,
138 bool most_recent
= false;
140 struct tree_context
* tc
= tree_get_context();
141 int dirfilter
= *(tc
->dirfilter
);
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
),
155 files
= (struct entry
*) tc
->dircache
;
156 num_files
= tc
->filesindir
;
158 /* we've overwritten the dircache so tree browser will need to be
162 /* if it exists, most recent playlist will always be index 0 */
163 if (most_recent_playlist
[0] != '\0')
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
;
181 playlists
[index
] = files
[i
].name
;
187 *num_playlists
= index
;
189 /* we couldn't find the most recent playlist, shift all playlists up */
192 for (i
=0; i
<index
-1; i
++)
193 playlists
[i
] = playlists
[i
+1];
197 most_recent_playlist
[0] = '\0';
203 *(tc
->dirfilter
) = dirfilter
;
207 /* Callback for gui_synclist */
208 static char* playlist_callback_name(int selected_item
, void* data
,
211 char** playlists
= (char**) data
;
213 strncpy(buffer
, playlists
[selected_item
], MAX_PATH
);
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
)
223 int num_playlists
= 0;
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)
233 if (num_playlists
<= 0)
235 gui_syncsplash(HZ
*2, str(LANG_CATALOG_NO_PLAYLISTS
));
242 gui_synclist_init(&playlist_lists
, playlist_callback_name
, playlists
,
244 gui_synclist_set_nb_items(&playlist_lists
, num_playlists
);
245 gui_synclist_draw(&playlist_lists
);
249 int button
= get_action(CONTEXT_LIST
,HZ
/2);
252 gui_synclist_do_button(&playlist_lists
, button
,LIST_WRAP_UNLESS_HELD
);
254 sel_file
= playlists
[gui_synclist_get_sel_pos(&playlist_lists
)];
258 case ACTION_STD_CANCEL
:
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);
275 /* we found the playlist we want to add to */
276 snprintf(playlist
, MAX_PATH
, "%s/%s", playlist_dir
,
284 case ACTION_STD_CONTEXT
:
285 /* context menu only available in view mode */
288 snprintf(playlist
, MAX_PATH
, "%s/%s", playlist_dir
,
291 if (onplay(playlist
, FILE_ATTR_M3U
,
292 CONTEXT_TREE
) != ONPLAY_OK
)
298 gui_synclist_draw(&playlist_lists
);
303 gui_syncstatusbar_draw(&statusbars
, false);
307 if(default_event_handler(button
) == SYS_USB_CONNECTED
)
318 /* display number of tracks inserted into playlists. Used for directory
320 static void display_insert_count(int count
)
322 gui_syncsplash(0, str(LANG_PLAYLIST_INSERT_COUNT
), count
,
323 #if CONFIG_KEYPAD == PLAYER_PAD
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)
341 if (((c
->count
)%PLAYLIST_DISPLAY_COUNT
) == 0)
342 display_insert_count(c
->count
);
347 /* Add "sel" file into specified "playlist". How to insert depends on type
349 static int add_to_playlist(const char* playlist
, char* sel
, int sel_attr
)
354 fd
= open(playlist
, O_CREAT
|O_WRONLY
|O_APPEND
);
358 /* In case we're in the playlist directory */
361 if ((sel_attr
& FILE_ATTR_MASK
) == FILE_ATTR_AUDIO
)
363 /* append the selected file */
364 if (fdprintf(fd
, "%s\n", sel
) > 0)
367 else if ((sel_attr
& FILE_ATTR_MASK
) == FILE_ATTR_M3U
)
369 /* append playlist */
373 if(strcasecmp(playlist
, sel
) == 0)
376 f
= open(sel
, O_RDONLY
);
386 n
= read(f
, buf
, sizeof(buf
));
390 if (write(fd
, buf
, n
) < 0)
401 else if (sel_attr
& ATTR_DIRECTORY
)
403 /* search directory for tracks and append to playlist */
404 bool recurse
= false;
406 (char *)str(LANG_RECURSE_DIRECTORY_QUESTION
),
409 struct text_message message
={lines
, 2};
410 struct add_track_context context
;
412 if (global_settings
.recursive_dir_insert
!= RECURSE_ASK
)
413 recurse
= (bool)global_settings
.recursive_dir_insert
;
416 /* Ask if user wants to recurse directory */
417 recurse
= (gui_syncyesno_run(&message
, NULL
, NULL
)==YESNO_YES
);
423 display_insert_count(0);
425 result
= playlist_directory_tracksearch(sel
, recurse
,
426 add_track_to_playlist
, &context
);
428 display_insert_count(context
.count
);
436 bool catalog_view_playlists(void)
438 if (initialize_catalog() == -1)
441 if (display_playlists(NULL
, true) == -1)
447 bool catalog_add_to_a_playlist(char* sel
, int sel_attr
, bool new_playlist
)
449 char playlist
[MAX_PATH
];
451 if (initialize_catalog() == -1)
457 snprintf(playlist
, MAX_PATH
, "%s/", playlist_dir
);
458 if (kbd_input(playlist
, MAX_PATH
))
461 len
= strlen(playlist
);
463 if(len
> 4 && !strcasecmp(&playlist
[len
-4], ".m3u"))
464 strcat(playlist
, "8");
465 else if(len
<= 5 || strcasecmp(&playlist
[len
-5], ".m3u8"))
466 strcat(playlist
, ".m3u8");
470 if (display_playlists(playlist
, false) == -1)
474 if (add_to_playlist(playlist
, sel
, sel_attr
) == 0)
476 strncpy(most_recent_playlist
, playlist
+playlist_dir_length
+1,
477 sizeof(most_recent_playlist
));