We have a 3.9 release, update builds.pm
[maemo-rb.git] / apps / playlist.c
blobfc6b20307b244593d9fa6af779b5bd30947ca594
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 by wavey@wavey.org
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 ****************************************************************************/
23 Dynamic playlist design (based on design originally proposed by ricII)
25 There are two files associated with a dynamic playlist:
26 1. Playlist file : This file contains the initial songs in the playlist.
27 The file is created by the user and stored on the hard
28 drive. NOTE: If we are playing the contents of a
29 directory, there will be no playlist file.
30 2. Control file : This file is automatically created when a playlist is
31 started and contains all the commands done to it.
33 The first non-comment line in a control file must begin with
34 "P:VERSION:DIR:FILE" where VERSION is the playlist control file version,
35 DIR is the directory where the playlist is located and FILE is the
36 playlist filename. For dirplay, FILE will be empty. An empty playlist
37 will have both entries as null.
39 Control file commands:
40 a. Add track (A:<position>:<last position>:<path to track>)
41 - Insert a track at the specified position in the current
42 playlist. Last position is used to specify where last insertion
43 occurred.
44 b. Queue track (Q:<position>:<last position>:<path to track>)
45 - Queue a track at the specified position in the current
46 playlist. Queued tracks differ from added tracks in that they
47 are deleted from the playlist as soon as they are played and
48 they are not saved to disk as part of the playlist.
49 c. Delete track (D:<position>)
50 - Delete track from specified position in the current playlist.
51 d. Shuffle playlist (S:<seed>:<index>)
52 - Shuffle entire playlist with specified seed. The index
53 identifies the first index in the newly shuffled playlist
54 (needed for repeat mode).
55 e. Unshuffle playlist (U:<index>)
56 - Unshuffle entire playlist. The index identifies the first index
57 in the newly unshuffled playlist.
58 f. Reset last insert position (R)
59 - Needed so that insertions work properly after resume
61 Resume:
62 The only resume info that needs to be saved is the current index in the
63 playlist and the position in the track. When resuming, all the commands
64 in the control file will be reapplied so that the playlist indices are
65 exactly the same as before shutdown. To avoid unnecessary disk
66 accesses, the shuffle mode settings are also saved in settings and only
67 flushed to disk when required.
70 #include <stdio.h>
71 #include <stdlib.h>
72 #include <ctype.h>
73 #include "string-extra.h"
74 #include "playlist.h"
75 #include "ata_idle_notify.h"
76 #include "file.h"
77 #include "action.h"
78 #include "dir.h"
79 #include "debug.h"
80 #include "audio.h"
81 #include "lcd.h"
82 #include "kernel.h"
83 #include "settings.h"
84 #include "status.h"
85 #include "applimits.h"
86 #include "screens.h"
87 #include "buffer.h"
88 #include "misc.h"
89 #include "filefuncs.h"
90 #include "button.h"
91 #include "filetree.h"
92 #include "abrepeat.h"
93 #include "thread.h"
94 #include "usb.h"
95 #include "filetypes.h"
96 #ifdef HAVE_LCD_BITMAP
97 #include "icons.h"
98 #endif
99 #include "system.h"
101 #include "lang.h"
102 #include "talk.h"
103 #include "splash.h"
104 #include "rbunicode.h"
105 #include "root_menu.h"
107 #define PLAYLIST_CONTROL_FILE_VERSION 2
110 Each playlist index has a flag associated with it which identifies what
111 type of track it is. These flags are stored in the 4 high order bits of
112 the index.
114 NOTE: This limits the playlist file size to a max of 256M.
116 Bits 31-30:
117 00 = Playlist track
118 01 = Track was prepended into playlist
119 10 = Track was inserted into playlist
120 11 = Track was appended into playlist
121 Bit 29:
122 0 = Added track
123 1 = Queued track
124 Bit 28:
125 0 = Track entry is valid
126 1 = Track does not exist on disk and should be skipped
128 #define PLAYLIST_SEEK_MASK 0x0FFFFFFF
129 #define PLAYLIST_INSERT_TYPE_MASK 0xC0000000
130 #define PLAYLIST_QUEUE_MASK 0x20000000
132 #define PLAYLIST_INSERT_TYPE_PREPEND 0x40000000
133 #define PLAYLIST_INSERT_TYPE_INSERT 0x80000000
134 #define PLAYLIST_INSERT_TYPE_APPEND 0xC0000000
136 #define PLAYLIST_QUEUED 0x20000000
137 #define PLAYLIST_SKIPPED 0x10000000
139 struct directory_search_context {
140 struct playlist_info* playlist;
141 int position;
142 bool queue;
143 int count;
146 static struct playlist_info current_playlist;
148 static void empty_playlist(struct playlist_info* playlist, bool resume);
149 static void new_playlist(struct playlist_info* playlist, const char *dir,
150 const char *file);
151 static void create_control(struct playlist_info* playlist);
152 static int check_control(struct playlist_info* playlist);
153 static int recreate_control(struct playlist_info* playlist);
154 static void update_playlist_filename(struct playlist_info* playlist,
155 const char *dir, const char *file);
156 static int add_indices_to_playlist(struct playlist_info* playlist,
157 char* buffer, size_t buflen);
158 static int add_track_to_playlist(struct playlist_info* playlist,
159 const char *filename, int position,
160 bool queue, int seek_pos);
161 static int directory_search_callback(char* filename, void* context);
162 static int remove_track_from_playlist(struct playlist_info* playlist,
163 int position, bool write);
164 static int randomise_playlist(struct playlist_info* playlist,
165 unsigned int seed, bool start_current,
166 bool write);
167 static int sort_playlist(struct playlist_info* playlist, bool start_current,
168 bool write);
169 static int get_next_index(const struct playlist_info* playlist, int steps,
170 int repeat_mode);
171 static void find_and_set_playlist_index(struct playlist_info* playlist,
172 unsigned int seek);
173 static int compare(const void* p1, const void* p2);
174 static int get_filename(struct playlist_info* playlist, int index, int seek,
175 bool control_file, char *buf, int buf_length);
176 static int get_next_directory(char *dir);
177 static int get_next_dir(char *dir, bool is_forward, bool recursion);
178 static int get_previous_directory(char *dir);
179 static int check_subdir_for_music(char *dir, const char *subdir, bool recurse);
180 static int format_track_path(char *dest, char *src, int buf_length, int max,
181 const char *dir);
182 static void display_playlist_count(int count, const unsigned char *fmt,
183 bool final);
184 static void display_buffer_full(void);
185 static int flush_cached_control(struct playlist_info* playlist);
186 static int update_control(struct playlist_info* playlist,
187 enum playlist_command command, int i1, int i2,
188 const char* s1, const char* s2, void* data);
189 static void sync_control(struct playlist_info* playlist, bool force);
190 static int rotate_index(const struct playlist_info* playlist, int index);
192 #ifdef HAVE_DIRCACHE
193 #define PLAYLIST_LOAD_POINTERS 1
195 static struct event_queue playlist_queue SHAREDBSS_ATTR;
196 static long playlist_stack[(DEFAULT_STACK_SIZE + 0x800)/sizeof(long)];
197 static const char playlist_thread_name[] = "playlist cachectrl";
198 #endif
200 static struct mutex current_playlist_mutex SHAREDBSS_ATTR;
201 static struct mutex created_playlist_mutex SHAREDBSS_ATTR;
203 /* Check if the filename suggests M3U or M3U8 format. */
204 static bool is_m3u8(const char* filename)
206 int len = strlen(filename);
208 /* Default to M3U8 unless explicitly told otherwise. */
209 return !(len > 4 && strcasecmp(&filename[len - 4], ".m3u") == 0);
213 /* Convert a filename in an M3U playlist to UTF-8.
215 * buf - the filename to convert; can contain more than one line from the
216 * playlist.
217 * buf_len - amount of buf that is used.
218 * buf_max - total size of buf.
219 * temp - temporary conversion buffer, at least buf_max bytes.
221 * Returns the length of the converted filename.
223 static int convert_m3u(char* buf, int buf_len, int buf_max, char* temp)
225 int i = 0;
226 char* dest;
228 /* Locate EOL. */
229 while ((buf[i] != '\n') && (buf[i] != '\r') && (i < buf_len))
231 i++;
234 /* Work back killing white space. */
235 while ((i > 0) && isspace(buf[i - 1]))
237 i--;
240 buf_len = i;
241 dest = temp;
243 /* Convert char by char, so as to not overflow temp (iso_decode should
244 * preferably handle this). No more than 4 bytes should be generated for
245 * each input char.
247 for (i = 0; i < buf_len && dest < (temp + buf_max - 4); i++)
249 dest = iso_decode(&buf[i], dest, -1, 1);
252 *dest = 0;
253 strcpy(buf, temp);
254 return dest - temp;
258 * remove any files and indices associated with the playlist
260 static void empty_playlist(struct playlist_info* playlist, bool resume)
262 playlist->filename[0] = '\0';
263 playlist->utf8 = true;
265 if(playlist->fd >= 0)
266 /* If there is an already open playlist, close it. */
267 close(playlist->fd);
268 playlist->fd = -1;
270 if(playlist->control_fd >= 0)
271 close(playlist->control_fd);
272 playlist->control_fd = -1;
273 playlist->control_created = false;
275 playlist->in_ram = false;
277 if (playlist->buffer)
278 playlist->buffer[0] = 0;
280 playlist->buffer_end_pos = 0;
282 playlist->index = 0;
283 playlist->first_index = 0;
284 playlist->amount = 0;
285 playlist->last_insert_pos = -1;
286 playlist->seed = 0;
287 playlist->shuffle_modified = false;
288 playlist->deleted = false;
289 playlist->num_inserted_tracks = 0;
290 playlist->started = false;
292 playlist->num_cached = 0;
293 playlist->pending_control_sync = false;
295 if (!resume && playlist->current)
297 /* start with fresh playlist control file when starting new
298 playlist */
299 create_control(playlist);
304 * Initialize a new playlist for viewing/editing/playing. dir is the
305 * directory where the playlist is located and file is the filename.
307 static void new_playlist(struct playlist_info* playlist, const char *dir,
308 const char *file)
310 const char *fileused = file;
311 const char *dirused = dir;
312 empty_playlist(playlist, false);
314 if (!fileused)
316 fileused = "";
318 if (dirused && playlist->current) /* !current cannot be in_ram */
319 playlist->in_ram = true;
320 else
321 dirused = ""; /* empty playlist */
324 update_playlist_filename(playlist, dirused, fileused);
326 if (playlist->control_fd >= 0)
328 update_control(playlist, PLAYLIST_COMMAND_PLAYLIST,
329 PLAYLIST_CONTROL_FILE_VERSION, -1, dirused, fileused, NULL);
330 sync_control(playlist, false);
335 * create control file for playlist
337 static void create_control(struct playlist_info* playlist)
339 playlist->control_fd = open(playlist->control_filename,
340 O_CREAT|O_RDWR|O_TRUNC, 0666);
341 if (playlist->control_fd < 0)
343 if (check_rockboxdir())
345 cond_talk_ids_fq(LANG_PLAYLIST_CONTROL_ACCESS_ERROR);
346 splashf(HZ*2, (unsigned char *)"%s (%d)",
347 str(LANG_PLAYLIST_CONTROL_ACCESS_ERROR),
348 playlist->control_fd);
350 playlist->control_created = false;
352 else
354 playlist->control_created = true;
359 * validate the control file. This may include creating/initializing it if
360 * necessary;
362 static int check_control(struct playlist_info* playlist)
364 if (!playlist->control_created)
366 create_control(playlist);
368 if (playlist->control_fd >= 0)
370 char* dir = playlist->filename;
371 char* file = playlist->filename+playlist->dirlen;
372 char c = playlist->filename[playlist->dirlen-1];
374 playlist->filename[playlist->dirlen-1] = '\0';
376 update_control(playlist, PLAYLIST_COMMAND_PLAYLIST,
377 PLAYLIST_CONTROL_FILE_VERSION, -1, dir, file, NULL);
378 sync_control(playlist, false);
379 playlist->filename[playlist->dirlen-1] = c;
383 if (playlist->control_fd < 0)
384 return -1;
386 return 0;
390 * recreate the control file based on current playlist entries
392 static int recreate_control(struct playlist_info* playlist)
394 char temp_file[MAX_PATH+1];
395 int temp_fd = -1;
396 int i;
397 int result = 0;
399 if(playlist->control_fd >= 0)
401 char* dir = playlist->filename;
402 char* file = playlist->filename+playlist->dirlen;
403 char c = playlist->filename[playlist->dirlen-1];
405 close(playlist->control_fd);
407 snprintf(temp_file, sizeof(temp_file), "%s_temp",
408 playlist->control_filename);
410 if (rename(playlist->control_filename, temp_file) < 0)
411 return -1;
413 temp_fd = open(temp_file, O_RDONLY);
414 if (temp_fd < 0)
415 return -1;
417 playlist->control_fd = open(playlist->control_filename,
418 O_CREAT|O_RDWR|O_TRUNC, 0666);
419 if (playlist->control_fd < 0)
420 return -1;
422 playlist->filename[playlist->dirlen-1] = '\0';
424 /* cannot call update_control() because of mutex */
425 result = fdprintf(playlist->control_fd, "P:%d:%s:%s\n",
426 PLAYLIST_CONTROL_FILE_VERSION, dir, file);
428 playlist->filename[playlist->dirlen-1] = c;
430 if (result < 0)
432 close(temp_fd);
433 return result;
437 playlist->seed = 0;
438 playlist->shuffle_modified = false;
439 playlist->deleted = false;
440 playlist->num_inserted_tracks = 0;
442 for (i=0; i<playlist->amount; i++)
444 if (playlist->indices[i] & PLAYLIST_INSERT_TYPE_MASK)
446 bool queue = playlist->indices[i] & PLAYLIST_QUEUE_MASK;
447 char inserted_file[MAX_PATH+1];
449 lseek(temp_fd, playlist->indices[i] & PLAYLIST_SEEK_MASK,
450 SEEK_SET);
451 read_line(temp_fd, inserted_file, sizeof(inserted_file));
453 result = fdprintf(playlist->control_fd, "%c:%d:%d:",
454 queue?'Q':'A', i, playlist->last_insert_pos);
455 if (result > 0)
457 /* save the position in file where name is written */
458 int seek_pos = lseek(playlist->control_fd, 0, SEEK_CUR);
460 result = fdprintf(playlist->control_fd, "%s\n",
461 inserted_file);
463 playlist->indices[i] =
464 (playlist->indices[i] & ~PLAYLIST_SEEK_MASK) | seek_pos;
467 if (result < 0)
468 break;
470 playlist->num_inserted_tracks++;
474 close(temp_fd);
475 remove(temp_file);
476 fsync(playlist->control_fd);
478 if (result < 0)
479 return result;
481 return 0;
485 * store directory and name of playlist file
487 static void update_playlist_filename(struct playlist_info* playlist,
488 const char *dir, const char *file)
490 char *sep="";
491 int dirlen = strlen(dir);
493 playlist->utf8 = is_m3u8(file);
495 /* If the dir does not end in trailing slash, we use a separator.
496 Otherwise we don't. */
497 if('/' != dir[dirlen-1])
499 sep="/";
500 dirlen++;
503 playlist->dirlen = dirlen;
505 snprintf(playlist->filename, sizeof(playlist->filename),
506 "%s%s%s", dir, sep, file);
510 * calculate track offsets within a playlist file
512 static int add_indices_to_playlist(struct playlist_info* playlist,
513 char* buffer, size_t buflen)
515 unsigned int nread;
516 unsigned int i = 0;
517 unsigned int count = 0;
518 bool store_index;
519 unsigned char *p;
520 int result = 0;
522 if(-1 == playlist->fd)
523 playlist->fd = open_utf8(playlist->filename, O_RDONLY);
524 if(playlist->fd < 0)
525 return -1; /* failure */
526 if((i = lseek(playlist->fd, 0, SEEK_CUR)) > 0)
527 playlist->utf8 = true; /* Override any earlier indication. */
529 splash(0, ID2P(LANG_WAIT));
531 if (!buffer)
533 /* use mp3 buffer for maximum load speed */
534 audio_stop();
535 #if CONFIG_CODEC != SWCODEC
536 talk_buffer_steal(); /* we use the mp3 buffer, need to tell */
537 buflen = (audiobufend - audiobuf);
538 buffer = (char *)audiobuf;
539 #else
540 buffer = (char *)audio_get_buffer(false, &buflen);
541 #endif
544 store_index = true;
546 while(1)
548 nread = read(playlist->fd, buffer, buflen);
549 /* Terminate on EOF */
550 if(nread <= 0)
551 break;
553 p = (unsigned char *)buffer;
555 for(count=0; count < nread; count++,p++) {
557 /* Are we on a new line? */
558 if((*p == '\n') || (*p == '\r'))
560 store_index = true;
562 else if(store_index)
564 store_index = false;
566 if(*p != '#')
568 if ( playlist->amount >= playlist->max_playlist_size ) {
569 display_buffer_full();
570 result = -1;
571 goto exit;
574 /* Store a new entry */
575 playlist->indices[ playlist->amount ] = i+count;
576 #ifdef HAVE_DIRCACHE
577 if (playlist->filenames)
578 playlist->filenames[ playlist->amount ] = -1;
579 #endif
580 playlist->amount++;
585 i+= count;
588 exit:
589 #ifdef HAVE_DIRCACHE
590 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
591 #endif
593 return result;
597 * Utility function to create a new playlist, fill it with the next or
598 * previous directory, shuffle it if needed, and start playback.
599 * If play_last is true and direction zero or negative, start playing
600 * the last file in the directory, otherwise start playing the first.
602 static int create_and_play_dir(int direction, bool play_last)
604 char dir[MAX_PATH + 1];
605 int res;
606 int index = -1;
608 if(direction > 0)
609 res = get_next_directory(dir);
610 else
611 res = get_previous_directory(dir);
613 if (!res)
615 if (playlist_create(dir, NULL) != -1)
617 ft_build_playlist(tree_get_context(), 0);
619 if (global_settings.playlist_shuffle)
620 playlist_shuffle(current_tick, -1);
622 if (play_last && direction <= 0)
623 index = current_playlist.amount - 1;
624 else
625 index = 0;
627 #if (CONFIG_CODEC == SWCODEC)
628 current_playlist.started = true;
629 #else
630 playlist_start(index, 0);
631 #endif
634 /* we've overwritten the dircache when getting the next/previous dir,
635 so the tree browser context will need to be reloaded */
636 reload_directory();
639 return index;
643 * Removes all tracks, from the playlist, leaving the presently playing
644 * track queued.
646 int playlist_remove_all_tracks(struct playlist_info *playlist)
648 int result;
650 if (playlist == NULL)
651 playlist = &current_playlist;
653 while (playlist->index > 0)
654 if ((result = remove_track_from_playlist(playlist, 0, true)) < 0)
655 return result;
657 while (playlist->amount > 1)
658 if ((result = remove_track_from_playlist(playlist, 1, true)) < 0)
659 return result;
661 if (playlist->amount == 1) {
662 playlist->indices[0] |= PLAYLIST_QUEUED;
665 return 0;
670 * Add track to playlist at specified position. There are seven special
671 * positions that can be specified:
672 * PLAYLIST_PREPEND - Add track at beginning of playlist
673 * PLAYLIST_INSERT - Add track after current song. NOTE: If
674 * there are already inserted tracks then track
675 * is added to the end of the insertion list
676 * PLAYLIST_INSERT_FIRST - Add track immediately after current song, no
677 * matter what other tracks have been inserted
678 * PLAYLIST_INSERT_LAST - Add track to end of playlist
679 * PLAYLIST_INSERT_SHUFFLED - Add track at some random point between the
680 * current playing track and end of playlist
681 * PLAYLIST_INSERT_LAST_SHUFFLED - Add tracks in random order to the end of
682 * the playlist.
683 * PLAYLIST_REPLACE - Erase current playlist, Cue the current track
684 * and inster this track at the end.
686 static int add_track_to_playlist(struct playlist_info* playlist,
687 const char *filename, int position,
688 bool queue, int seek_pos)
690 int insert_position, orig_position;
691 unsigned long flags = PLAYLIST_INSERT_TYPE_INSERT;
692 int i;
694 insert_position = orig_position = position;
696 if (playlist->amount >= playlist->max_playlist_size)
698 display_buffer_full();
699 return -1;
702 switch (position)
704 case PLAYLIST_PREPEND:
705 position = insert_position = playlist->first_index;
706 break;
707 case PLAYLIST_INSERT:
708 /* if there are already inserted tracks then add track to end of
709 insertion list else add after current playing track */
710 if (playlist->last_insert_pos >= 0 &&
711 playlist->last_insert_pos < playlist->amount &&
712 (playlist->indices[playlist->last_insert_pos]&
713 PLAYLIST_INSERT_TYPE_MASK) == PLAYLIST_INSERT_TYPE_INSERT)
714 position = insert_position = playlist->last_insert_pos+1;
715 else if (playlist->amount > 0)
716 position = insert_position = playlist->index + 1;
717 else
718 position = insert_position = 0;
720 playlist->last_insert_pos = position;
721 break;
722 case PLAYLIST_INSERT_FIRST:
723 if (playlist->amount > 0)
724 position = insert_position = playlist->index + 1;
725 else
726 position = insert_position = 0;
728 playlist->last_insert_pos = position;
729 break;
730 case PLAYLIST_INSERT_LAST:
731 if (playlist->first_index > 0)
732 position = insert_position = playlist->first_index;
733 else
734 position = insert_position = playlist->amount;
736 playlist->last_insert_pos = position;
737 break;
738 case PLAYLIST_INSERT_SHUFFLED:
740 if (playlist->started)
742 int offset;
743 int n = playlist->amount -
744 rotate_index(playlist, playlist->index);
746 if (n > 0)
747 offset = rand() % n;
748 else
749 offset = 0;
751 position = playlist->index + offset + 1;
752 if (position >= playlist->amount)
753 position -= playlist->amount;
755 insert_position = position;
757 else
758 position = insert_position = (rand() % (playlist->amount+1));
759 break;
761 case PLAYLIST_INSERT_LAST_SHUFFLED:
763 position = insert_position = playlist->last_shuffled_start +
764 rand() % (playlist->amount - playlist->last_shuffled_start + 1);
765 break;
767 case PLAYLIST_REPLACE:
768 if (playlist_remove_all_tracks(playlist) < 0)
769 return -1;
771 playlist->last_insert_pos = position = insert_position = playlist->index + 1;
772 break;
775 if (queue)
776 flags |= PLAYLIST_QUEUED;
778 /* shift indices so that track can be added */
779 for (i=playlist->amount; i>insert_position; i--)
781 playlist->indices[i] = playlist->indices[i-1];
782 #ifdef HAVE_DIRCACHE
783 if (playlist->filenames)
784 playlist->filenames[i] = playlist->filenames[i-1];
785 #endif
788 /* update stored indices if needed */
790 if (orig_position < 0)
792 if (playlist->amount > 0 && insert_position <= playlist->index &&
793 playlist->started)
794 playlist->index++;
796 if (playlist->amount > 0 && insert_position <= playlist->first_index &&
797 orig_position != PLAYLIST_PREPEND && playlist->started)
798 playlist->first_index++;
801 if (insert_position < playlist->last_insert_pos ||
802 (insert_position == playlist->last_insert_pos && position < 0))
803 playlist->last_insert_pos++;
805 if (seek_pos < 0 && playlist->control_fd >= 0)
807 int result = update_control(playlist,
808 (queue?PLAYLIST_COMMAND_QUEUE:PLAYLIST_COMMAND_ADD), position,
809 playlist->last_insert_pos, filename, NULL, &seek_pos);
811 if (result < 0)
812 return result;
815 playlist->indices[insert_position] = flags | seek_pos;
817 #ifdef HAVE_DIRCACHE
818 if (playlist->filenames)
819 playlist->filenames[insert_position] = -1;
820 #endif
822 playlist->amount++;
823 playlist->num_inserted_tracks++;
825 return insert_position;
829 * Callback for playlist_directory_tracksearch to insert track into
830 * playlist.
832 static int directory_search_callback(char* filename, void* context)
834 struct directory_search_context* c =
835 (struct directory_search_context*) context;
836 int insert_pos;
838 insert_pos = add_track_to_playlist(c->playlist, filename, c->position,
839 c->queue, -1);
841 if (insert_pos < 0)
842 return -1;
844 (c->count)++;
846 /* Make sure tracks are inserted in correct order if user requests
847 INSERT_FIRST */
848 if (c->position == PLAYLIST_INSERT_FIRST || c->position >= 0)
849 c->position = insert_pos + 1;
851 if (((c->count)%PLAYLIST_DISPLAY_COUNT) == 0)
853 unsigned char* count_str;
855 if (c->queue)
856 count_str = ID2P(LANG_PLAYLIST_QUEUE_COUNT);
857 else
858 count_str = ID2P(LANG_PLAYLIST_INSERT_COUNT);
860 display_playlist_count(c->count, count_str, false);
862 if ((c->count) == PLAYLIST_DISPLAY_COUNT &&
863 (audio_status() & AUDIO_STATUS_PLAY) &&
864 c->playlist->started)
865 audio_flush_and_reload_tracks();
868 return 0;
872 * remove track at specified position
874 static int remove_track_from_playlist(struct playlist_info* playlist,
875 int position, bool write)
877 int i;
878 bool inserted;
880 if (playlist->amount <= 0)
881 return -1;
883 inserted = playlist->indices[position] & PLAYLIST_INSERT_TYPE_MASK;
885 /* shift indices now that track has been removed */
886 for (i=position; i<playlist->amount; i++)
888 playlist->indices[i] = playlist->indices[i+1];
889 #ifdef HAVE_DIRCACHE
890 if (playlist->filenames)
891 playlist->filenames[i] = playlist->filenames[i+1];
892 #endif
895 playlist->amount--;
897 if (inserted)
898 playlist->num_inserted_tracks--;
899 else
900 playlist->deleted = true;
902 /* update stored indices if needed */
903 if (position < playlist->index)
904 playlist->index--;
906 if (position < playlist->first_index)
908 playlist->first_index--;
911 if (position <= playlist->last_insert_pos)
912 playlist->last_insert_pos--;
914 if (write && playlist->control_fd >= 0)
916 int result = update_control(playlist, PLAYLIST_COMMAND_DELETE,
917 position, -1, NULL, NULL, NULL);
919 if (result < 0)
920 return result;
922 sync_control(playlist, false);
925 return 0;
929 * randomly rearrange the array of indices for the playlist. If start_current
930 * is true then update the index to the new index of the current playing track
932 static int randomise_playlist(struct playlist_info* playlist,
933 unsigned int seed, bool start_current,
934 bool write)
936 int count;
937 int candidate;
938 long store;
939 unsigned int current = playlist->indices[playlist->index];
941 /* seed 0 is used to identify sorted playlist for resume purposes */
942 if (seed == 0)
943 seed = 1;
945 /* seed with the given seed */
946 srand(seed);
948 /* randomise entire indices list */
949 for(count = playlist->amount - 1; count >= 0; count--)
951 /* the rand is from 0 to RAND_MAX, so adjust to our value range */
952 candidate = rand() % (count + 1);
954 /* now swap the values at the 'count' and 'candidate' positions */
955 store = playlist->indices[candidate];
956 playlist->indices[candidate] = playlist->indices[count];
957 playlist->indices[count] = store;
958 #ifdef HAVE_DIRCACHE
959 if (playlist->filenames)
961 store = playlist->filenames[candidate];
962 playlist->filenames[candidate] = playlist->filenames[count];
963 playlist->filenames[count] = store;
965 #endif
968 if (start_current)
969 find_and_set_playlist_index(playlist, current);
971 /* indices have been moved so last insert position is no longer valid */
972 playlist->last_insert_pos = -1;
974 playlist->seed = seed;
975 if (playlist->num_inserted_tracks > 0 || playlist->deleted)
976 playlist->shuffle_modified = true;
978 if (write)
980 update_control(playlist, PLAYLIST_COMMAND_SHUFFLE, seed,
981 playlist->first_index, NULL, NULL, NULL);
984 return 0;
988 * Sort the array of indices for the playlist. If start_current is true then
989 * set the index to the new index of the current song.
990 * Also while going to unshuffled mode set the first_index to 0.
992 static int sort_playlist(struct playlist_info* playlist, bool start_current,
993 bool write)
995 unsigned int current = playlist->indices[playlist->index];
997 if (playlist->amount > 0)
998 qsort(playlist->indices, playlist->amount,
999 sizeof(playlist->indices[0]), compare);
1001 #ifdef HAVE_DIRCACHE
1002 /** We need to re-check the song names from disk because qsort can't
1003 * sort two arrays at once :/
1004 * FIXME: Please implement a better way to do this. */
1005 memset(playlist->filenames, 0, playlist->max_playlist_size * sizeof(int));
1006 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
1007 #endif
1009 if (start_current)
1010 find_and_set_playlist_index(playlist, current);
1012 /* indices have been moved so last insert position is no longer valid */
1013 playlist->last_insert_pos = -1;
1015 if (!playlist->num_inserted_tracks && !playlist->deleted)
1016 playlist->shuffle_modified = false;
1017 if (write && playlist->control_fd >= 0)
1019 playlist->first_index = 0;
1020 update_control(playlist, PLAYLIST_COMMAND_UNSHUFFLE,
1021 playlist->first_index, -1, NULL, NULL, NULL);
1024 return 0;
1027 /* Calculate how many steps we have to really step when skipping entries
1028 * marked as bad.
1030 static int calculate_step_count(const struct playlist_info *playlist, int steps)
1032 int i, count, direction;
1033 int index;
1034 int stepped_count = 0;
1036 if (steps < 0)
1038 direction = -1;
1039 count = -steps;
1041 else
1043 direction = 1;
1044 count = steps;
1047 index = playlist->index;
1048 i = 0;
1049 do {
1050 /* Boundary check */
1051 if (index < 0)
1052 index += playlist->amount;
1053 if (index >= playlist->amount)
1054 index -= playlist->amount;
1056 /* Check if we found a bad entry. */
1057 if (playlist->indices[index] & PLAYLIST_SKIPPED)
1059 steps += direction;
1060 /* Are all entries bad? */
1061 if (stepped_count++ > playlist->amount)
1062 break ;
1064 else
1065 i++;
1067 index += direction;
1068 } while (i <= count);
1070 return steps;
1073 /* Marks the index of the track to be skipped that is "steps" away from
1074 * current playing track.
1076 void playlist_skip_entry(struct playlist_info *playlist, int steps)
1078 int index;
1080 if (playlist == NULL)
1081 playlist = &current_playlist;
1083 /* need to account for already skipped tracks */
1084 steps = calculate_step_count(playlist, steps);
1086 index = playlist->index + steps;
1087 if (index < 0)
1088 index += playlist->amount;
1089 else if (index >= playlist->amount)
1090 index -= playlist->amount;
1092 playlist->indices[index] |= PLAYLIST_SKIPPED;
1096 * returns the index of the track that is "steps" away from current playing
1097 * track.
1099 static int get_next_index(const struct playlist_info* playlist, int steps,
1100 int repeat_mode)
1102 int current_index = playlist->index;
1103 int next_index = -1;
1105 if (playlist->amount <= 0)
1106 return -1;
1108 if (repeat_mode == -1)
1109 repeat_mode = global_settings.repeat_mode;
1111 if (repeat_mode == REPEAT_SHUFFLE && playlist->amount <= 1)
1112 repeat_mode = REPEAT_ALL;
1114 steps = calculate_step_count(playlist, steps);
1115 switch (repeat_mode)
1117 case REPEAT_SHUFFLE:
1118 /* Treat repeat shuffle just like repeat off. At end of playlist,
1119 play will be resumed in playlist_next() */
1120 case REPEAT_OFF:
1122 current_index = rotate_index(playlist, current_index);
1123 next_index = current_index+steps;
1124 if ((next_index < 0) || (next_index >= playlist->amount))
1125 next_index = -1;
1126 else
1127 next_index = (next_index+playlist->first_index) %
1128 playlist->amount;
1130 break;
1133 case REPEAT_ONE:
1134 #ifdef AB_REPEAT_ENABLE
1135 case REPEAT_AB:
1136 #endif
1137 next_index = current_index;
1138 break;
1140 case REPEAT_ALL:
1141 default:
1143 next_index = (current_index+steps) % playlist->amount;
1144 while (next_index < 0)
1145 next_index += playlist->amount;
1147 if (steps >= playlist->amount)
1149 int i, index;
1151 index = next_index;
1152 next_index = -1;
1154 /* second time around so skip the queued files */
1155 for (i=0; i<playlist->amount; i++)
1157 if (playlist->indices[index] & PLAYLIST_QUEUE_MASK)
1158 index = (index+1) % playlist->amount;
1159 else
1161 next_index = index;
1162 break;
1166 break;
1170 /* No luck if the whole playlist was bad. */
1171 if (playlist->indices[next_index] & PLAYLIST_SKIPPED)
1172 return -1;
1174 return next_index;
1178 * Search for the seek track and set appropriate indices. Used after shuffle
1179 * to make sure the current index is still pointing to correct track.
1181 static void find_and_set_playlist_index(struct playlist_info* playlist,
1182 unsigned int seek)
1184 int i;
1186 /* Set the index to the current song */
1187 for (i=0; i<playlist->amount; i++)
1189 if (playlist->indices[i] == seek)
1191 playlist->index = playlist->first_index = i;
1193 break;
1199 * used to sort track indices. Sort order is as follows:
1200 * 1. Prepended tracks (in prepend order)
1201 * 2. Playlist/directory tracks (in playlist order)
1202 * 3. Inserted/Appended tracks (in insert order)
1204 static int compare(const void* p1, const void* p2)
1206 unsigned long* e1 = (unsigned long*) p1;
1207 unsigned long* e2 = (unsigned long*) p2;
1208 unsigned long flags1 = *e1 & PLAYLIST_INSERT_TYPE_MASK;
1209 unsigned long flags2 = *e2 & PLAYLIST_INSERT_TYPE_MASK;
1211 if (flags1 == flags2)
1212 return (*e1 & PLAYLIST_SEEK_MASK) - (*e2 & PLAYLIST_SEEK_MASK);
1213 else if (flags1 == PLAYLIST_INSERT_TYPE_PREPEND ||
1214 flags2 == PLAYLIST_INSERT_TYPE_APPEND)
1215 return -1;
1216 else if (flags1 == PLAYLIST_INSERT_TYPE_APPEND ||
1217 flags2 == PLAYLIST_INSERT_TYPE_PREPEND)
1218 return 1;
1219 else if (flags1 && flags2)
1220 return (*e1 & PLAYLIST_SEEK_MASK) - (*e2 & PLAYLIST_SEEK_MASK);
1221 else
1222 return *e1 - *e2;
1225 #ifdef HAVE_DIRCACHE
1227 * Thread to update filename pointers to dircache on background
1228 * without affecting playlist load up performance. This thread also flushes
1229 * any pending control commands when the disk spins up.
1231 static void playlist_flush_callback(void *param)
1233 (void)param;
1234 struct playlist_info *playlist;
1235 playlist = &current_playlist;
1236 if (playlist->control_fd >= 0)
1238 if (playlist->num_cached > 0)
1240 mutex_lock(playlist->control_mutex);
1241 flush_cached_control(playlist);
1242 mutex_unlock(playlist->control_mutex);
1244 sync_control(playlist, true);
1248 static bool is_dircache_pointers_intact(void)
1250 return dircache_get_appflag(DIRCACHE_APPFLAG_PLAYLIST) ? true : false;
1253 static void playlist_thread(void)
1255 struct queue_event ev;
1256 bool dirty_pointers = false;
1257 static char tmp[MAX_PATH+1];
1259 struct playlist_info *playlist;
1260 int index;
1261 int seek;
1262 bool control_file;
1264 int sleep_time = 5;
1266 #ifdef HAVE_DISK_STORAGE
1267 if (global_settings.disk_spindown > 1 &&
1268 global_settings.disk_spindown <= 5)
1269 sleep_time = global_settings.disk_spindown - 1;
1270 #endif
1272 while (1)
1274 queue_wait_w_tmo(&playlist_queue, &ev, HZ*sleep_time);
1276 switch (ev.id)
1278 case PLAYLIST_LOAD_POINTERS:
1279 dirty_pointers = true;
1280 break ;
1282 /* Start the background scanning after either the disk spindown
1283 timeout or 5s, whichever is less */
1284 case SYS_TIMEOUT:
1286 playlist = &current_playlist;
1287 if (playlist->control_fd >= 0)
1289 if (playlist->num_cached > 0)
1290 register_storage_idle_func(playlist_flush_callback);
1293 if (!dircache_is_enabled() || !playlist->filenames
1294 || playlist->amount <= 0)
1296 break ;
1299 /* Check if previously loaded pointers are intact. */
1300 if (is_dircache_pointers_intact() && !dirty_pointers)
1301 break ;
1303 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
1304 cpu_boost(true);
1305 #endif
1306 for (index = 0; index < playlist->amount
1307 && queue_empty(&playlist_queue); index++)
1309 /* Process only pointers that are not already loaded. */
1310 if (is_dircache_pointers_intact() && playlist->filenames[index] >= 0)
1311 continue ;
1313 control_file = playlist->indices[index] & PLAYLIST_INSERT_TYPE_MASK;
1314 seek = playlist->indices[index] & PLAYLIST_SEEK_MASK;
1316 /* Load the filename from playlist file. */
1317 if (get_filename(playlist, index, seek, control_file, tmp,
1318 sizeof(tmp)) < 0)
1320 break ;
1323 /* Set the dircache entry pointer. */
1324 playlist->filenames[index] = dircache_get_entry_id(tmp);
1326 /* And be on background so user doesn't notice any delays. */
1327 yield();
1330 if (dircache_is_enabled())
1331 dircache_set_appflag(DIRCACHE_APPFLAG_PLAYLIST);
1333 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
1334 cpu_boost(false);
1335 #endif
1336 if (index == playlist->amount)
1337 dirty_pointers = false;
1339 break ;
1342 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
1343 case SYS_USB_CONNECTED:
1344 usb_acknowledge(SYS_USB_CONNECTED_ACK);
1345 usb_wait_for_disconnect(&playlist_queue);
1346 break ;
1347 #endif
1351 #endif
1354 * gets pathname for track at seek index
1356 static int get_filename(struct playlist_info* playlist, int index, int seek,
1357 bool control_file, char *buf, int buf_length)
1359 int fd;
1360 int max = -1;
1361 char tmp_buf[MAX_PATH+1];
1362 char dir_buf[MAX_PATH+1];
1363 bool utf8 = playlist->utf8;
1365 if (buf_length > MAX_PATH+1)
1366 buf_length = MAX_PATH+1;
1368 #ifdef HAVE_DIRCACHE
1369 if (is_dircache_pointers_intact() && playlist->filenames)
1371 if (playlist->filenames[index] >= 0)
1373 max = dircache_copy_path(playlist->filenames[index],
1374 tmp_buf, sizeof(tmp_buf)-1);
1377 #else
1378 (void)index;
1379 #endif
1381 if (playlist->in_ram && !control_file && max < 0)
1383 max = strlcpy(tmp_buf, &playlist->buffer[seek], sizeof(tmp_buf));
1385 else if (max < 0)
1387 mutex_lock(playlist->control_mutex);
1389 if (control_file)
1391 fd = playlist->control_fd;
1392 utf8 = true;
1394 else
1396 if(-1 == playlist->fd)
1397 playlist->fd = open(playlist->filename, O_RDONLY);
1399 fd = playlist->fd;
1402 if(-1 != fd)
1405 if (lseek(fd, seek, SEEK_SET) != seek)
1406 max = -1;
1407 else
1409 max = read(fd, tmp_buf, MIN((size_t) buf_length, sizeof(tmp_buf)));
1411 if ((max > 0) && !utf8)
1413 /* Use dir_buf as a temporary buffer. Note that dir_buf must
1414 * be as large as tmp_buf.
1416 max = convert_m3u(tmp_buf, max, sizeof(tmp_buf), dir_buf);
1421 mutex_unlock(playlist->control_mutex);
1423 if (max < 0)
1425 if (control_file)
1426 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
1427 else
1428 splash(HZ*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR));
1430 return max;
1434 strlcpy(dir_buf, playlist->filename, playlist->dirlen);
1436 return (format_track_path(buf, tmp_buf, buf_length, max, dir_buf));
1439 static int get_next_directory(char *dir){
1440 return get_next_dir(dir,true,false);
1443 static int get_previous_directory(char *dir){
1444 return get_next_dir(dir,false,false);
1448 * search through all the directories (starting with the current) to find
1449 * one that has tracks to play
1451 static int get_next_dir(char *dir, bool is_forward, bool recursion)
1453 struct playlist_info* playlist = &current_playlist;
1454 int result = -1;
1455 char *start_dir = NULL;
1456 bool exit = false;
1457 int i;
1458 struct tree_context* tc = tree_get_context();
1459 int saved_dirfilter = *(tc->dirfilter);
1461 /* process random folder advance */
1462 if (global_settings.next_folder == FOLDER_ADVANCE_RANDOM)
1464 int fd = open(ROCKBOX_DIR "/folder_advance_list.dat", O_RDONLY);
1465 if (fd >= 0)
1467 char buffer[MAX_PATH];
1468 int folder_count = 0;
1469 srand(current_tick);
1470 *(tc->dirfilter) = SHOW_MUSIC;
1471 tc->sort_dir = global_settings.sort_dir;
1472 read(fd,&folder_count,sizeof(int));
1473 if (!folder_count)
1474 exit = true;
1475 while (!exit)
1477 i = rand()%folder_count;
1478 lseek(fd,sizeof(int) + (MAX_PATH*i),SEEK_SET);
1479 read(fd,buffer,MAX_PATH);
1480 if (check_subdir_for_music(buffer, "", false) ==0)
1481 exit = true;
1483 if (folder_count)
1484 strcpy(dir,buffer);
1485 close(fd);
1486 *(tc->dirfilter) = saved_dirfilter;
1487 tc->sort_dir = global_settings.sort_dir;
1488 reload_directory();
1489 return 0;
1493 /* not random folder advance (or random folder advance unavailable) */
1494 if (recursion)
1496 /* start with root */
1497 dir[0] = '\0';
1499 else
1501 /* start with current directory */
1502 strlcpy(dir, playlist->filename, playlist->dirlen);
1505 /* use the tree browser dircache to load files */
1506 *(tc->dirfilter) = SHOW_ALL;
1508 /* set up sorting/direction */
1509 tc->sort_dir = global_settings.sort_dir;
1510 if (!is_forward)
1512 static const char sortpairs[] =
1514 [SORT_ALPHA] = SORT_ALPHA_REVERSED,
1515 [SORT_DATE] = SORT_DATE_REVERSED,
1516 [SORT_TYPE] = SORT_TYPE_REVERSED,
1517 [SORT_ALPHA_REVERSED] = SORT_ALPHA,
1518 [SORT_DATE_REVERSED] = SORT_DATE,
1519 [SORT_TYPE_REVERSED] = SORT_TYPE,
1522 if ((unsigned)tc->sort_dir < sizeof(sortpairs))
1523 tc->sort_dir = sortpairs[tc->sort_dir];
1526 while (!exit)
1528 struct entry *files;
1529 int num_files = 0;
1530 int i;
1532 if (ft_load(tc, (dir[0]=='\0')?"/":dir) < 0)
1534 exit = true;
1535 result = -1;
1536 break;
1539 files = (struct entry*) tc->dircache;
1540 num_files = tc->filesindir;
1542 for (i=0; i<num_files; i++)
1544 /* user abort */
1545 if (action_userabort(TIMEOUT_NOBLOCK))
1547 result = -1;
1548 exit = true;
1549 break;
1552 if (files[i].attr & ATTR_DIRECTORY)
1554 if (!start_dir)
1556 result = check_subdir_for_music(dir, files[i].name, true);
1557 if (result != -1)
1559 exit = true;
1560 break;
1563 else if (!strcmp(start_dir, files[i].name))
1564 start_dir = NULL;
1568 if (!exit)
1570 /* move down to parent directory. current directory name is
1571 stored as the starting point for the search in parent */
1572 start_dir = strrchr(dir, '/');
1573 if (start_dir)
1575 *start_dir = '\0';
1576 start_dir++;
1578 else
1579 break;
1583 /* restore dirfilter */
1584 *(tc->dirfilter) = saved_dirfilter;
1585 tc->sort_dir = global_settings.sort_dir;
1587 /* special case if nothing found: try start searching again from root */
1588 if (result == -1 && !recursion){
1589 result = get_next_dir(dir, is_forward, true);
1592 return result;
1596 * Checks if there are any music files in the dir or any of its
1597 * subdirectories. May be called recursively.
1599 static int check_subdir_for_music(char *dir, const char *subdir, bool recurse)
1601 int result = -1;
1602 int dirlen = strlen(dir);
1603 int num_files = 0;
1604 int i;
1605 struct entry *files;
1606 bool has_music = false;
1607 bool has_subdir = false;
1608 struct tree_context* tc = tree_get_context();
1610 snprintf(dir+dirlen, MAX_PATH-dirlen, "/%s", subdir);
1612 if (ft_load(tc, dir) < 0)
1614 return -2;
1617 files = (struct entry*) tc->dircache;
1618 num_files = tc->filesindir;
1620 for (i=0; i<num_files; i++)
1622 if (files[i].attr & ATTR_DIRECTORY)
1623 has_subdir = true;
1624 else if ((files[i].attr & FILE_ATTR_MASK) == FILE_ATTR_AUDIO)
1626 has_music = true;
1627 break;
1631 if (has_music)
1632 return 0;
1634 if (has_subdir && recurse)
1636 for (i=0; i<num_files; i++)
1638 if (action_userabort(TIMEOUT_NOBLOCK))
1640 result = -2;
1641 break;
1644 if (files[i].attr & ATTR_DIRECTORY)
1646 result = check_subdir_for_music(dir, files[i].name, true);
1647 if (!result)
1648 break;
1653 if (result < 0)
1655 if (dirlen)
1657 dir[dirlen] = '\0';
1659 else
1661 strcpy(dir, "/");
1664 /* we now need to reload our current directory */
1665 if(ft_load(tc, dir) < 0)
1666 splash(HZ*2, ID2P(LANG_PLAYLIST_DIRECTORY_ACCESS_ERROR));
1668 return result;
1672 * Returns absolute path of track
1674 static int format_track_path(char *dest, char *src, int buf_length, int max,
1675 const char *dir)
1677 int i = 0;
1678 int j;
1679 char *temp_ptr;
1681 /* Look for the end of the string */
1682 while((i < max) &&
1683 (src[i] != '\n') &&
1684 (src[i] != '\r') &&
1685 (src[i] != '\0'))
1686 i++;
1688 /* Now work back killing white space */
1689 while((i > 0) &&
1690 ((src[i-1] == ' ') ||
1691 (src[i-1] == '\t')))
1692 i--;
1694 /* Zero-terminate the file name */
1695 src[i]=0;
1697 /* replace backslashes with forward slashes */
1698 for ( j=0; j<i; j++ )
1699 if ( src[j] == '\\' )
1700 src[j] = '/';
1702 if('/' == src[0])
1704 strlcpy(dest, src, buf_length);
1706 else
1708 /* handle dos style drive letter */
1709 if (':' == src[1])
1710 strlcpy(dest, &src[2], buf_length);
1711 else if (!strncmp(src, "../", 3))
1713 /* handle relative paths */
1714 i=3;
1715 while(!strncmp(&src[i], "../", 3))
1716 i += 3;
1717 for (j=0; j<i/3; j++) {
1718 temp_ptr = strrchr(dir, '/');
1719 if (temp_ptr)
1720 *temp_ptr = '\0';
1721 else
1722 break;
1724 snprintf(dest, buf_length, "%s/%s", dir, &src[i]);
1726 else if ( '.' == src[0] && '/' == src[1] ) {
1727 snprintf(dest, buf_length, "%s/%s", dir, &src[2]);
1729 else {
1730 snprintf(dest, buf_length, "%s/%s", dir, src);
1734 return 0;
1738 * Display splash message showing progress of playlist/directory insertion or
1739 * save.
1741 static void display_playlist_count(int count, const unsigned char *fmt,
1742 bool final)
1744 static long talked_tick = 0;
1745 long id = P2ID(fmt);
1746 if(global_settings.talk_menu && id>=0)
1748 if(final || (count && (talked_tick == 0
1749 || TIME_AFTER(current_tick, talked_tick+5*HZ))))
1751 talked_tick = current_tick;
1752 talk_number(count, false);
1753 talk_id(id, true);
1756 fmt = P2STR(fmt);
1758 splashf(0, fmt, count, str(LANG_OFF_ABORT));
1762 * Display buffer full message
1764 static void display_buffer_full(void)
1766 splash(HZ*2, ID2P(LANG_PLAYLIST_BUFFER_FULL));
1770 * Flush any cached control commands to disk. Called when playlist is being
1771 * modified. Returns 0 on success and -1 on failure.
1773 static int flush_cached_control(struct playlist_info* playlist)
1775 int result = 0;
1776 int i;
1778 if (!playlist->num_cached)
1779 return 0;
1781 lseek(playlist->control_fd, 0, SEEK_END);
1783 for (i=0; i<playlist->num_cached; i++)
1785 struct playlist_control_cache* cache =
1786 &(playlist->control_cache[i]);
1788 switch (cache->command)
1790 case PLAYLIST_COMMAND_PLAYLIST:
1791 result = fdprintf(playlist->control_fd, "P:%d:%s:%s\n",
1792 cache->i1, cache->s1, cache->s2);
1793 break;
1794 case PLAYLIST_COMMAND_ADD:
1795 case PLAYLIST_COMMAND_QUEUE:
1796 result = fdprintf(playlist->control_fd, "%c:%d:%d:",
1797 (cache->command == PLAYLIST_COMMAND_ADD)?'A':'Q',
1798 cache->i1, cache->i2);
1799 if (result > 0)
1801 /* save the position in file where name is written */
1802 int* seek_pos = (int *)cache->data;
1803 *seek_pos = lseek(playlist->control_fd, 0, SEEK_CUR);
1804 result = fdprintf(playlist->control_fd, "%s\n",
1805 cache->s1);
1807 break;
1808 case PLAYLIST_COMMAND_DELETE:
1809 result = fdprintf(playlist->control_fd, "D:%d\n", cache->i1);
1810 break;
1811 case PLAYLIST_COMMAND_SHUFFLE:
1812 result = fdprintf(playlist->control_fd, "S:%d:%d\n",
1813 cache->i1, cache->i2);
1814 break;
1815 case PLAYLIST_COMMAND_UNSHUFFLE:
1816 result = fdprintf(playlist->control_fd, "U:%d\n", cache->i1);
1817 break;
1818 case PLAYLIST_COMMAND_RESET:
1819 result = fdprintf(playlist->control_fd, "R\n");
1820 break;
1821 default:
1822 break;
1825 if (result <= 0)
1826 break;
1829 if (result > 0)
1831 playlist->num_cached = 0;
1832 playlist->pending_control_sync = true;
1834 result = 0;
1836 else
1838 result = -1;
1839 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_UPDATE_ERROR));
1842 return result;
1846 * Update control data with new command. Depending on the command, it may be
1847 * cached or flushed to disk.
1849 static int update_control(struct playlist_info* playlist,
1850 enum playlist_command command, int i1, int i2,
1851 const char* s1, const char* s2, void* data)
1853 int result = 0;
1854 struct playlist_control_cache* cache;
1855 bool flush = false;
1857 mutex_lock(playlist->control_mutex);
1859 cache = &(playlist->control_cache[playlist->num_cached++]);
1861 cache->command = command;
1862 cache->i1 = i1;
1863 cache->i2 = i2;
1864 cache->s1 = s1;
1865 cache->s2 = s2;
1866 cache->data = data;
1868 switch (command)
1870 case PLAYLIST_COMMAND_PLAYLIST:
1871 case PLAYLIST_COMMAND_ADD:
1872 case PLAYLIST_COMMAND_QUEUE:
1873 #ifndef HAVE_DIRCACHE
1874 case PLAYLIST_COMMAND_DELETE:
1875 case PLAYLIST_COMMAND_RESET:
1876 #endif
1877 flush = true;
1878 break;
1879 case PLAYLIST_COMMAND_SHUFFLE:
1880 case PLAYLIST_COMMAND_UNSHUFFLE:
1881 default:
1882 /* only flush when needed */
1883 break;
1886 if (flush || playlist->num_cached == PLAYLIST_MAX_CACHE)
1887 result = flush_cached_control(playlist);
1889 mutex_unlock(playlist->control_mutex);
1891 return result;
1895 * sync control file to disk
1897 static void sync_control(struct playlist_info* playlist, bool force)
1899 #ifdef HAVE_DIRCACHE
1900 if (playlist->started && force)
1901 #else
1902 (void) force;
1904 if (playlist->started)
1905 #endif
1907 if (playlist->pending_control_sync)
1909 mutex_lock(playlist->control_mutex);
1910 fsync(playlist->control_fd);
1911 playlist->pending_control_sync = false;
1912 mutex_unlock(playlist->control_mutex);
1918 * Rotate indices such that first_index is index 0
1920 static int rotate_index(const struct playlist_info* playlist, int index)
1922 index -= playlist->first_index;
1923 if (index < 0)
1924 index += playlist->amount;
1926 return index;
1930 * Initialize playlist entries at startup
1932 void playlist_init(void)
1934 struct playlist_info* playlist = &current_playlist;
1936 mutex_init(&current_playlist_mutex);
1937 mutex_init(&created_playlist_mutex);
1939 playlist->current = true;
1940 strlcpy(playlist->control_filename, PLAYLIST_CONTROL_FILE,
1941 sizeof(playlist->control_filename));
1942 playlist->fd = -1;
1943 playlist->control_fd = -1;
1944 playlist->max_playlist_size = global_settings.max_files_in_playlist;
1945 playlist->indices = buffer_alloc(
1946 playlist->max_playlist_size * sizeof(int));
1947 playlist->buffer_size =
1948 AVERAGE_FILENAME_LENGTH * global_settings.max_files_in_dir;
1949 playlist->buffer = buffer_alloc(playlist->buffer_size);
1950 playlist->control_mutex = &current_playlist_mutex;
1952 empty_playlist(playlist, true);
1954 #ifdef HAVE_DIRCACHE
1955 playlist->filenames = buffer_alloc(
1956 playlist->max_playlist_size * sizeof(int));
1957 memset(playlist->filenames, 0,
1958 playlist->max_playlist_size * sizeof(int));
1959 create_thread(playlist_thread, playlist_stack, sizeof(playlist_stack),
1960 0, playlist_thread_name IF_PRIO(, PRIORITY_BACKGROUND)
1961 IF_COP(, CPU));
1962 queue_init(&playlist_queue, true);
1963 #endif
1967 * Clean playlist at shutdown
1969 void playlist_shutdown(void)
1971 struct playlist_info* playlist = &current_playlist;
1973 if (playlist->control_fd >= 0)
1975 mutex_lock(playlist->control_mutex);
1977 if (playlist->num_cached > 0)
1978 flush_cached_control(playlist);
1980 close(playlist->control_fd);
1982 mutex_unlock(playlist->control_mutex);
1987 * Create new playlist
1989 int playlist_create(const char *dir, const char *file)
1991 struct playlist_info* playlist = &current_playlist;
1993 new_playlist(playlist, dir, file);
1995 if (file)
1996 /* load the playlist file */
1997 add_indices_to_playlist(playlist, NULL, 0);
1999 return 0;
2002 #define PLAYLIST_COMMAND_SIZE (MAX_PATH+12)
2005 * Restore the playlist state based on control file commands. Called to
2006 * resume playback after shutdown.
2008 int playlist_resume(void)
2010 struct playlist_info* playlist = &current_playlist;
2011 char *buffer;
2012 size_t buflen;
2013 int nread;
2014 int total_read = 0;
2015 int control_file_size = 0;
2016 bool first = true;
2017 bool sorted = true;
2019 /* use mp3 buffer for maximum load speed */
2020 #if CONFIG_CODEC != SWCODEC
2021 talk_buffer_steal(); /* we use the mp3 buffer, need to tell */
2022 buflen = (audiobufend - audiobuf);
2023 buffer = (char *)audiobuf;
2024 #else
2025 buffer = (char *)audio_get_buffer(false, &buflen);
2026 #endif
2028 empty_playlist(playlist, true);
2030 splash(0, ID2P(LANG_WAIT));
2031 playlist->control_fd = open(playlist->control_filename, O_RDWR);
2032 if (playlist->control_fd < 0)
2034 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
2035 return -1;
2037 playlist->control_created = true;
2039 control_file_size = filesize(playlist->control_fd);
2040 if (control_file_size <= 0)
2042 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
2043 return -1;
2046 /* read a small amount first to get the header */
2047 nread = read(playlist->control_fd, buffer,
2048 PLAYLIST_COMMAND_SIZE<buflen?PLAYLIST_COMMAND_SIZE:buflen);
2049 if(nread <= 0)
2051 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
2052 return -1;
2055 playlist->started = true;
2057 while (1)
2059 int result = 0;
2060 int count;
2061 enum playlist_command current_command = PLAYLIST_COMMAND_COMMENT;
2062 int last_newline = 0;
2063 int str_count = -1;
2064 bool newline = true;
2065 bool exit_loop = false;
2066 char *p = buffer;
2067 char *str1 = NULL;
2068 char *str2 = NULL;
2069 char *str3 = NULL;
2070 unsigned long last_tick = current_tick;
2071 bool useraborted = false;
2073 for(count=0; count<nread && !exit_loop && !useraborted; count++,p++)
2075 /* So a splash while we are loading. */
2076 if (TIME_AFTER(current_tick, last_tick + HZ/4))
2078 splashf(0, str(LANG_LOADING_PERCENT),
2079 (total_read+count)*100/control_file_size,
2080 str(LANG_OFF_ABORT));
2081 if (action_userabort(TIMEOUT_NOBLOCK))
2083 useraborted = true;
2084 break;
2086 last_tick = current_tick;
2089 /* Are we on a new line? */
2090 if((*p == '\n') || (*p == '\r'))
2092 *p = '\0';
2094 /* save last_newline in case we need to load more data */
2095 last_newline = count;
2097 switch (current_command)
2099 case PLAYLIST_COMMAND_PLAYLIST:
2101 /* str1=version str2=dir str3=file */
2102 int version;
2104 if (!str1)
2106 result = -1;
2107 exit_loop = true;
2108 break;
2111 if (!str2)
2112 str2 = "";
2114 if (!str3)
2115 str3 = "";
2117 version = atoi(str1);
2119 if (version != PLAYLIST_CONTROL_FILE_VERSION)
2120 return -1;
2122 update_playlist_filename(playlist, str2, str3);
2124 if (str3[0] != '\0')
2126 /* NOTE: add_indices_to_playlist() overwrites the
2127 audiobuf so we need to reload control file
2128 data */
2129 add_indices_to_playlist(playlist, NULL, 0);
2131 else if (str2[0] != '\0')
2133 playlist->in_ram = true;
2134 resume_directory(str2);
2137 /* load the rest of the data */
2138 first = false;
2139 exit_loop = true;
2141 break;
2143 case PLAYLIST_COMMAND_ADD:
2144 case PLAYLIST_COMMAND_QUEUE:
2146 /* str1=position str2=last_position str3=file */
2147 int position, last_position;
2148 bool queue;
2150 if (!str1 || !str2 || !str3)
2152 result = -1;
2153 exit_loop = true;
2154 break;
2157 position = atoi(str1);
2158 last_position = atoi(str2);
2160 queue = (current_command == PLAYLIST_COMMAND_ADD)?
2161 false:true;
2163 /* seek position is based on str3's position in
2164 buffer */
2165 if (add_track_to_playlist(playlist, str3, position,
2166 queue, total_read+(str3-buffer)) < 0)
2167 return -1;
2169 playlist->last_insert_pos = last_position;
2171 break;
2173 case PLAYLIST_COMMAND_DELETE:
2175 /* str1=position */
2176 int position;
2178 if (!str1)
2180 result = -1;
2181 exit_loop = true;
2182 break;
2185 position = atoi(str1);
2187 if (remove_track_from_playlist(playlist, position,
2188 false) < 0)
2189 return -1;
2191 break;
2193 case PLAYLIST_COMMAND_SHUFFLE:
2195 /* str1=seed str2=first_index */
2196 int seed;
2198 if (!str1 || !str2)
2200 result = -1;
2201 exit_loop = true;
2202 break;
2205 if (!sorted)
2207 /* Always sort list before shuffling */
2208 sort_playlist(playlist, false, false);
2211 seed = atoi(str1);
2212 playlist->first_index = atoi(str2);
2214 if (randomise_playlist(playlist, seed, false,
2215 false) < 0)
2216 return -1;
2217 sorted = false;
2218 break;
2220 case PLAYLIST_COMMAND_UNSHUFFLE:
2222 /* str1=first_index */
2223 if (!str1)
2225 result = -1;
2226 exit_loop = true;
2227 break;
2230 playlist->first_index = atoi(str1);
2232 if (sort_playlist(playlist, false, false) < 0)
2233 return -1;
2235 sorted = true;
2236 break;
2238 case PLAYLIST_COMMAND_RESET:
2240 playlist->last_insert_pos = -1;
2241 break;
2243 case PLAYLIST_COMMAND_COMMENT:
2244 default:
2245 break;
2248 newline = true;
2250 /* to ignore any extra newlines */
2251 current_command = PLAYLIST_COMMAND_COMMENT;
2253 else if(newline)
2255 newline = false;
2257 /* first non-comment line must always specify playlist */
2258 if (first && *p != 'P' && *p != '#')
2260 result = -1;
2261 exit_loop = true;
2262 break;
2265 switch (*p)
2267 case 'P':
2268 /* playlist can only be specified once */
2269 if (!first)
2271 result = -1;
2272 exit_loop = true;
2273 break;
2276 current_command = PLAYLIST_COMMAND_PLAYLIST;
2277 break;
2278 case 'A':
2279 current_command = PLAYLIST_COMMAND_ADD;
2280 break;
2281 case 'Q':
2282 current_command = PLAYLIST_COMMAND_QUEUE;
2283 break;
2284 case 'D':
2285 current_command = PLAYLIST_COMMAND_DELETE;
2286 break;
2287 case 'S':
2288 current_command = PLAYLIST_COMMAND_SHUFFLE;
2289 break;
2290 case 'U':
2291 current_command = PLAYLIST_COMMAND_UNSHUFFLE;
2292 break;
2293 case 'R':
2294 current_command = PLAYLIST_COMMAND_RESET;
2295 break;
2296 case '#':
2297 current_command = PLAYLIST_COMMAND_COMMENT;
2298 break;
2299 default:
2300 result = -1;
2301 exit_loop = true;
2302 break;
2305 str_count = -1;
2306 str1 = NULL;
2307 str2 = NULL;
2308 str3 = NULL;
2310 else if(current_command != PLAYLIST_COMMAND_COMMENT)
2312 /* all control file strings are separated with a colon.
2313 Replace the colon with 0 to get proper strings that can be
2314 used by commands above */
2315 if (*p == ':')
2317 *p = '\0';
2318 str_count++;
2320 if ((count+1) < nread)
2322 switch (str_count)
2324 case 0:
2325 str1 = p+1;
2326 break;
2327 case 1:
2328 str2 = p+1;
2329 break;
2330 case 2:
2331 str3 = p+1;
2332 break;
2333 default:
2334 /* allow last string to contain colons */
2335 *p = ':';
2336 break;
2343 if (result < 0)
2345 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_INVALID));
2346 return result;
2349 if (useraborted)
2351 splash(HZ*2, ID2P(LANG_CANCEL));
2352 return -1;
2354 if (!newline || (exit_loop && count<nread))
2356 if ((total_read + count) >= control_file_size)
2358 /* no newline at end of control file */
2359 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_INVALID));
2360 return -1;
2363 /* We didn't end on a newline or we exited loop prematurely.
2364 Either way, re-read the remainder. */
2365 count = last_newline;
2366 lseek(playlist->control_fd, total_read+count, SEEK_SET);
2369 total_read += count;
2371 if (first)
2372 /* still looking for header */
2373 nread = read(playlist->control_fd, buffer,
2374 PLAYLIST_COMMAND_SIZE<buflen?PLAYLIST_COMMAND_SIZE:buflen);
2375 else
2376 nread = read(playlist->control_fd, buffer, buflen);
2378 /* Terminate on EOF */
2379 if(nread <= 0)
2381 break;
2385 #ifdef HAVE_DIRCACHE
2386 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
2387 #endif
2389 return 0;
2393 * Add track to in_ram playlist. Used when playing directories.
2395 int playlist_add(const char *filename)
2397 struct playlist_info* playlist = &current_playlist;
2398 int len = strlen(filename);
2400 if((len+1 > playlist->buffer_size - playlist->buffer_end_pos) ||
2401 (playlist->amount >= playlist->max_playlist_size))
2403 display_buffer_full();
2404 return -1;
2407 playlist->indices[playlist->amount] = playlist->buffer_end_pos;
2408 #ifdef HAVE_DIRCACHE
2409 playlist->filenames[playlist->amount] = -1;
2410 #endif
2411 playlist->amount++;
2413 strcpy(&playlist->buffer[playlist->buffer_end_pos], filename);
2414 playlist->buffer_end_pos += len;
2415 playlist->buffer[playlist->buffer_end_pos++] = '\0';
2417 return 0;
2420 /* shuffle newly created playlist using random seed. */
2421 int playlist_shuffle(int random_seed, int start_index)
2423 struct playlist_info* playlist = &current_playlist;
2425 bool start_current = false;
2427 if (start_index >= 0 && global_settings.play_selected)
2429 /* store the seek position before the shuffle */
2430 playlist->index = playlist->first_index = start_index;
2431 start_current = true;
2434 randomise_playlist(playlist, random_seed, start_current, true);
2436 return playlist->index;
2439 /* start playing current playlist at specified index/offset */
2440 void playlist_start(int start_index, int offset)
2442 struct playlist_info* playlist = &current_playlist;
2444 /* Cancel FM radio selection as previous music. For cases where we start
2445 playback without going to the WPS, such as playlist insert.. or
2446 playlist catalog. */
2447 previous_music_is_wps();
2449 playlist->index = start_index;
2451 #if CONFIG_CODEC != SWCODEC
2452 talk_buffer_steal(); /* will use the mp3 buffer */
2453 #endif
2455 playlist->started = true;
2456 sync_control(playlist, false);
2457 audio_play(offset);
2460 /* Returns false if 'steps' is out of bounds, else true */
2461 bool playlist_check(int steps)
2463 struct playlist_info* playlist = &current_playlist;
2465 /* always allow folder navigation */
2466 if (global_settings.next_folder && playlist->in_ram)
2467 return true;
2469 int index = get_next_index(playlist, steps, -1);
2471 if (index < 0 && steps >= 0 && global_settings.repeat_mode == REPEAT_SHUFFLE)
2472 index = get_next_index(playlist, steps, REPEAT_ALL);
2474 return (index >= 0);
2477 /* get trackname of track that is "steps" away from current playing track.
2478 NULL is used to identify end of playlist */
2479 const char* playlist_peek(int steps, char* buf, size_t buf_size)
2481 struct playlist_info* playlist = &current_playlist;
2482 int seek;
2483 char *temp_ptr;
2484 int index;
2485 bool control_file;
2487 index = get_next_index(playlist, steps, -1);
2488 if (index < 0)
2489 return NULL;
2491 #if CONFIG_CODEC == SWCODEC
2492 /* Just testing - don't care about the file name */
2493 if (!buf || !buf_size)
2494 return "";
2495 #endif
2497 control_file = playlist->indices[index] & PLAYLIST_INSERT_TYPE_MASK;
2498 seek = playlist->indices[index] & PLAYLIST_SEEK_MASK;
2500 if (get_filename(playlist, index, seek, control_file, buf,
2501 buf_size) < 0)
2502 return NULL;
2504 temp_ptr = buf;
2506 if (!playlist->in_ram || control_file)
2508 /* remove bogus dirs from beginning of path
2509 (workaround for buggy playlist creation tools) */
2510 while (temp_ptr)
2512 if (file_exists(temp_ptr))
2513 break;
2515 temp_ptr = strchr(temp_ptr+1, '/');
2518 if (!temp_ptr)
2520 /* Even though this is an invalid file, we still need to pass a
2521 file name to the caller because NULL is used to indicate end
2522 of playlist */
2523 return buf;
2527 return temp_ptr;
2531 * Update indices as track has changed
2533 int playlist_next(int steps)
2535 struct playlist_info* playlist = &current_playlist;
2536 int index;
2538 if ( (steps > 0)
2539 #ifdef AB_REPEAT_ENABLE
2540 && (global_settings.repeat_mode != REPEAT_AB)
2541 #endif
2542 && (global_settings.repeat_mode != REPEAT_ONE) )
2544 int i, j;
2546 /* We need to delete all the queued songs */
2547 for (i=0, j=steps; i<j; i++)
2549 index = get_next_index(playlist, i, -1);
2551 if (playlist->indices[index] & PLAYLIST_QUEUE_MASK)
2553 remove_track_from_playlist(playlist, index, true);
2554 steps--; /* one less track */
2559 index = get_next_index(playlist, steps, -1);
2561 if (index < 0)
2563 /* end of playlist... or is it */
2564 if (global_settings.repeat_mode == REPEAT_SHUFFLE &&
2565 playlist->amount > 1)
2567 /* Repeat shuffle mode. Re-shuffle playlist and resume play */
2568 playlist->first_index = 0;
2569 sort_playlist(playlist, false, false);
2570 randomise_playlist(playlist, current_tick, false, true);
2572 #if CONFIG_CODEC == SWCODEC
2573 playlist->started = true;
2574 #else
2575 playlist_start(0, 0);
2576 #endif
2577 playlist->index = 0;
2578 index = 0;
2580 else if (playlist->in_ram && global_settings.next_folder)
2582 index = create_and_play_dir(steps, true);
2584 if (index >= 0)
2586 playlist->index = index;
2590 return index;
2593 playlist->index = index;
2595 if (playlist->last_insert_pos >= 0 && steps > 0)
2597 /* check to see if we've gone beyond the last inserted track */
2598 int cur = rotate_index(playlist, index);
2599 int last_pos = rotate_index(playlist, playlist->last_insert_pos);
2601 if (cur > last_pos)
2603 /* reset last inserted track */
2604 playlist->last_insert_pos = -1;
2606 if (playlist->control_fd >= 0)
2608 int result = update_control(playlist, PLAYLIST_COMMAND_RESET,
2609 -1, -1, NULL, NULL, NULL);
2611 if (result < 0)
2612 return result;
2614 sync_control(playlist, false);
2619 return index;
2622 /* try playing next or previous folder */
2623 bool playlist_next_dir(int direction)
2625 /* not to mess up real playlists */
2626 if(!current_playlist.in_ram)
2627 return false;
2629 return create_and_play_dir(direction, false) >= 0;
2632 /* Get resume info for current playing song. If return value is -1 then
2633 settings shouldn't be saved. */
2634 int playlist_get_resume_info(int *resume_index)
2636 struct playlist_info* playlist = &current_playlist;
2638 *resume_index = playlist->index;
2640 return 0;
2643 /* Update resume info for current playing song. Returns -1 on error. */
2644 int playlist_update_resume_info(const struct mp3entry* id3)
2646 struct playlist_info* playlist = &current_playlist;
2648 if (id3)
2650 if (global_status.resume_index != playlist->index ||
2651 global_status.resume_offset != id3->offset)
2653 global_status.resume_index = playlist->index;
2654 global_status.resume_offset = id3->offset;
2655 status_save();
2658 else
2660 global_status.resume_index = -1;
2661 global_status.resume_offset = -1;
2662 status_save();
2665 return 0;
2668 /* Returns index of current playing track for display purposes. This value
2669 should not be used for resume purposes as it doesn't represent the actual
2670 index into the playlist */
2671 int playlist_get_display_index(void)
2673 struct playlist_info* playlist = &current_playlist;
2675 /* first_index should always be index 0 for display purposes */
2676 int index = rotate_index(playlist, playlist->index);
2678 return (index+1);
2681 /* returns number of tracks in current playlist */
2682 int playlist_amount(void)
2684 return playlist_amount_ex(NULL);
2686 /* set playlist->last_shuffle_start to playlist->amount for
2687 PLAYLIST_INSERT_LAST_SHUFFLED command purposes*/
2688 void playlist_set_last_shuffled_start(void)
2690 struct playlist_info* playlist = &current_playlist;
2691 playlist->last_shuffled_start = playlist->amount;
2694 * Create a new playlist If playlist is not NULL then we're loading a
2695 * playlist off disk for viewing/editing. The index_buffer is used to store
2696 * playlist indices (required for and only used if playlist != NULL). The
2697 * temp_buffer is used as a scratchpad when loading indices.
2699 * returns <0 on failure
2701 int playlist_create_ex(struct playlist_info* playlist,
2702 const char* dir, const char* file,
2703 void* index_buffer, int index_buffer_size,
2704 void* temp_buffer, int temp_buffer_size)
2706 if (!playlist)
2707 playlist = &current_playlist;
2708 else
2710 if (!index_buffer)
2711 return -1;
2712 /* Initialize playlist structure */
2713 int r = rand() % 10;
2714 playlist->current = false;
2716 /* Use random name for control file */
2717 snprintf(playlist->control_filename, sizeof(playlist->control_filename),
2718 "%s.%d", PLAYLIST_CONTROL_FILE, r);
2719 playlist->fd = -1;
2720 playlist->control_fd = -1;
2722 int num_indices = index_buffer_size / sizeof(int);
2724 #ifdef HAVE_DIRCACHE
2725 num_indices /= 2;
2726 #endif
2727 if (num_indices > global_settings.max_files_in_playlist)
2728 num_indices = global_settings.max_files_in_playlist;
2730 playlist->max_playlist_size = num_indices;
2731 playlist->indices = index_buffer;
2732 #ifdef HAVE_DIRCACHE
2733 playlist->filenames = (int*)&playlist->indices[num_indices];
2734 #endif
2736 playlist->buffer_size = 0;
2737 playlist->buffer = NULL;
2738 playlist->control_mutex = &created_playlist_mutex;
2741 new_playlist(playlist, dir, file);
2743 if (file)
2744 /* load the playlist file */
2745 add_indices_to_playlist(playlist, temp_buffer, temp_buffer_size);
2747 return 0;
2751 * Set the specified playlist as the current.
2752 * NOTE: You will get undefined behaviour if something is already playing so
2753 * remember to stop before calling this. Also, this call will
2754 * effectively close your playlist, making it unusable.
2756 int playlist_set_current(struct playlist_info* playlist)
2758 if (!playlist || (check_control(playlist) < 0))
2759 return -1;
2761 empty_playlist(&current_playlist, false);
2763 strlcpy(current_playlist.filename, playlist->filename,
2764 sizeof(current_playlist.filename));
2766 current_playlist.utf8 = playlist->utf8;
2767 current_playlist.fd = playlist->fd;
2769 close(playlist->control_fd);
2770 close(current_playlist.control_fd);
2771 remove(current_playlist.control_filename);
2772 if (rename(playlist->control_filename,
2773 current_playlist.control_filename) < 0)
2774 return -1;
2775 current_playlist.control_fd = open(current_playlist.control_filename,
2776 O_RDWR);
2777 if (current_playlist.control_fd < 0)
2778 return -1;
2779 current_playlist.control_created = true;
2781 current_playlist.dirlen = playlist->dirlen;
2783 if (playlist->indices && playlist->indices != current_playlist.indices)
2785 memcpy(current_playlist.indices, playlist->indices,
2786 playlist->max_playlist_size*sizeof(int));
2787 #ifdef HAVE_DIRCACHE
2788 memcpy(current_playlist.filenames, playlist->filenames,
2789 playlist->max_playlist_size*sizeof(int));
2790 #endif
2793 current_playlist.first_index = playlist->first_index;
2794 current_playlist.amount = playlist->amount;
2795 current_playlist.last_insert_pos = playlist->last_insert_pos;
2796 current_playlist.seed = playlist->seed;
2797 current_playlist.shuffle_modified = playlist->shuffle_modified;
2798 current_playlist.deleted = playlist->deleted;
2799 current_playlist.num_inserted_tracks = playlist->num_inserted_tracks;
2801 memcpy(current_playlist.control_cache, playlist->control_cache,
2802 sizeof(current_playlist.control_cache));
2803 current_playlist.num_cached = playlist->num_cached;
2804 current_playlist.pending_control_sync = playlist->pending_control_sync;
2806 return 0;
2808 struct playlist_info *playlist_get_current(void)
2810 return &current_playlist;
2813 * Close files and delete control file for non-current playlist.
2815 void playlist_close(struct playlist_info* playlist)
2817 if (!playlist)
2818 return;
2820 if (playlist->fd >= 0)
2821 close(playlist->fd);
2823 if (playlist->control_fd >= 0)
2824 close(playlist->control_fd);
2826 if (playlist->control_created)
2827 remove(playlist->control_filename);
2830 void playlist_sync(struct playlist_info* playlist)
2832 if (!playlist)
2833 playlist = &current_playlist;
2835 sync_control(playlist, false);
2836 if ((audio_status() & AUDIO_STATUS_PLAY) && playlist->started)
2837 audio_flush_and_reload_tracks();
2839 #ifdef HAVE_DIRCACHE
2840 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
2841 #endif
2845 * Insert track into playlist at specified position (or one of the special
2846 * positions). Returns position where track was inserted or -1 if error.
2848 int playlist_insert_track(struct playlist_info* playlist, const char *filename,
2849 int position, bool queue, bool sync)
2851 int result;
2853 if (!playlist)
2854 playlist = &current_playlist;
2856 if (check_control(playlist) < 0)
2858 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
2859 return -1;
2862 result = add_track_to_playlist(playlist, filename, position, queue, -1);
2864 /* Check if we want manually sync later. For example when adding
2865 * bunch of files from tagcache, syncing after every file wouldn't be
2866 * a good thing to do. */
2867 if (sync && result >= 0)
2868 playlist_sync(playlist);
2870 return result;
2874 * Insert all tracks from specified directory into playlist.
2876 int playlist_insert_directory(struct playlist_info* playlist,
2877 const char *dirname, int position, bool queue,
2878 bool recurse)
2880 int result;
2881 unsigned char *count_str;
2882 struct directory_search_context context;
2884 if (!playlist)
2885 playlist = &current_playlist;
2887 if (check_control(playlist) < 0)
2889 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
2890 return -1;
2893 if (position == PLAYLIST_REPLACE)
2895 if (playlist_remove_all_tracks(playlist) == 0)
2896 position = PLAYLIST_INSERT_LAST;
2897 else
2898 return -1;
2901 if (queue)
2902 count_str = ID2P(LANG_PLAYLIST_QUEUE_COUNT);
2903 else
2904 count_str = ID2P(LANG_PLAYLIST_INSERT_COUNT);
2906 display_playlist_count(0, count_str, false);
2908 context.playlist = playlist;
2909 context.position = position;
2910 context.queue = queue;
2911 context.count = 0;
2913 cpu_boost(true);
2915 result = playlist_directory_tracksearch(dirname, recurse,
2916 directory_search_callback, &context);
2918 sync_control(playlist, false);
2920 cpu_boost(false);
2922 display_playlist_count(context.count, count_str, true);
2924 if ((audio_status() & AUDIO_STATUS_PLAY) && playlist->started)
2925 audio_flush_and_reload_tracks();
2927 #ifdef HAVE_DIRCACHE
2928 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
2929 #endif
2931 return result;
2935 * Insert all tracks from specified playlist into dynamic playlist.
2937 int playlist_insert_playlist(struct playlist_info* playlist, const char *filename,
2938 int position, bool queue)
2940 int fd;
2941 int max;
2942 char *temp_ptr;
2943 const char *dir;
2944 unsigned char *count_str;
2945 char temp_buf[MAX_PATH+1];
2946 char trackname[MAX_PATH+1];
2947 int count = 0;
2948 int result = 0;
2949 bool utf8 = is_m3u8(filename);
2951 if (!playlist)
2952 playlist = &current_playlist;
2954 if (check_control(playlist) < 0)
2956 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
2957 return -1;
2960 fd = open_utf8(filename, O_RDONLY);
2961 if (fd < 0)
2963 splash(HZ*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR));
2964 return -1;
2967 /* we need the directory name for formatting purposes */
2968 dir = filename;
2970 temp_ptr = strrchr(filename+1,'/');
2971 if (temp_ptr)
2972 *temp_ptr = 0;
2973 else
2974 dir = "/";
2976 if (queue)
2977 count_str = ID2P(LANG_PLAYLIST_QUEUE_COUNT);
2978 else
2979 count_str = ID2P(LANG_PLAYLIST_INSERT_COUNT);
2981 display_playlist_count(count, count_str, false);
2983 if (position == PLAYLIST_REPLACE)
2985 if (playlist_remove_all_tracks(playlist) == 0)
2986 position = PLAYLIST_INSERT_LAST;
2987 else return -1;
2990 cpu_boost(true);
2992 while ((max = read_line(fd, temp_buf, sizeof(temp_buf))) > 0)
2994 /* user abort */
2995 if (action_userabort(TIMEOUT_NOBLOCK))
2996 break;
2998 if (temp_buf[0] != '#' && temp_buf[0] != '\0')
3000 int insert_pos;
3002 if (!utf8)
3004 /* Use trackname as a temporay buffer. Note that trackname must
3005 * be as large as temp_buf.
3007 max = convert_m3u(temp_buf, max, sizeof(temp_buf), trackname);
3010 /* we need to format so that relative paths are correctly
3011 handled */
3012 if (format_track_path(trackname, temp_buf, sizeof(trackname), max,
3013 dir) < 0)
3015 result = -1;
3016 break;
3019 insert_pos = add_track_to_playlist(playlist, trackname, position,
3020 queue, -1);
3022 if (insert_pos < 0)
3024 result = -1;
3025 break;
3028 /* Make sure tracks are inserted in correct order if user
3029 requests INSERT_FIRST */
3030 if (position == PLAYLIST_INSERT_FIRST || position >= 0)
3031 position = insert_pos + 1;
3033 count++;
3035 if ((count%PLAYLIST_DISPLAY_COUNT) == 0)
3037 display_playlist_count(count, count_str, false);
3039 if (count == PLAYLIST_DISPLAY_COUNT &&
3040 (audio_status() & AUDIO_STATUS_PLAY) &&
3041 playlist->started)
3042 audio_flush_and_reload_tracks();
3046 /* let the other threads work */
3047 yield();
3050 close(fd);
3052 if (temp_ptr)
3053 *temp_ptr = '/';
3055 sync_control(playlist, false);
3057 cpu_boost(false);
3059 display_playlist_count(count, count_str, true);
3061 if ((audio_status() & AUDIO_STATUS_PLAY) && playlist->started)
3062 audio_flush_and_reload_tracks();
3064 #ifdef HAVE_DIRCACHE
3065 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
3066 #endif
3068 return result;
3072 * Delete track at specified index. If index is PLAYLIST_DELETE_CURRENT then
3073 * we want to delete the current playing track.
3075 int playlist_delete(struct playlist_info* playlist, int index)
3077 int result = 0;
3079 if (!playlist)
3080 playlist = &current_playlist;
3082 if (check_control(playlist) < 0)
3084 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
3085 return -1;
3088 if (index == PLAYLIST_DELETE_CURRENT)
3089 index = playlist->index;
3091 result = remove_track_from_playlist(playlist, index, true);
3093 if (result != -1 && (audio_status() & AUDIO_STATUS_PLAY) &&
3094 playlist->started)
3095 audio_flush_and_reload_tracks();
3097 return result;
3101 * Move track at index to new_index. Tracks between the two are shifted
3102 * appropriately. Returns 0 on success and -1 on failure.
3104 int playlist_move(struct playlist_info* playlist, int index, int new_index)
3106 int result;
3107 int seek;
3108 bool control_file;
3109 bool queue;
3110 bool current = false;
3111 int r;
3112 char filename[MAX_PATH];
3114 if (!playlist)
3115 playlist = &current_playlist;
3117 if (check_control(playlist) < 0)
3119 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
3120 return -1;
3123 if (index == new_index)
3124 return -1;
3126 if (index == playlist->index)
3127 /* Moving the current track */
3128 current = true;
3130 control_file = playlist->indices[index] & PLAYLIST_INSERT_TYPE_MASK;
3131 queue = playlist->indices[index] & PLAYLIST_QUEUE_MASK;
3132 seek = playlist->indices[index] & PLAYLIST_SEEK_MASK;
3134 if (get_filename(playlist, index, seek, control_file, filename,
3135 sizeof(filename)) < 0)
3136 return -1;
3138 /* We want to insert the track at the position that was specified by
3139 new_index. This may be different then new_index because of the
3140 shifting that will occur after the delete.
3141 We calculate this before we do the remove as it depends on the
3142 size of the playlist before the track removal */
3143 r = rotate_index(playlist, new_index);
3145 /* Delete track from original position */
3146 result = remove_track_from_playlist(playlist, index, true);
3148 if (result != -1)
3150 if (r == 0)
3151 /* First index */
3152 new_index = PLAYLIST_PREPEND;
3153 else if (r == playlist->amount)
3154 /* Append */
3155 new_index = PLAYLIST_INSERT_LAST;
3156 else
3157 /* Calculate index of desired position */
3158 new_index = (r+playlist->first_index)%playlist->amount;
3160 result = add_track_to_playlist(playlist, filename, new_index, queue,
3161 -1);
3163 if (result != -1)
3165 if (current)
3167 /* Moved the current track */
3168 switch (new_index)
3170 case PLAYLIST_PREPEND:
3171 playlist->index = playlist->first_index;
3172 break;
3173 case PLAYLIST_INSERT_LAST:
3174 playlist->index = playlist->first_index - 1;
3175 if (playlist->index < 0)
3176 playlist->index += playlist->amount;
3177 break;
3178 default:
3179 playlist->index = new_index;
3180 break;
3184 if ((audio_status() & AUDIO_STATUS_PLAY) && playlist->started)
3185 audio_flush_and_reload_tracks();
3189 #ifdef HAVE_DIRCACHE
3190 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
3191 #endif
3193 return result;
3196 /* shuffle currently playing playlist */
3197 int playlist_randomise(struct playlist_info* playlist, unsigned int seed,
3198 bool start_current)
3200 int result;
3202 if (!playlist)
3203 playlist = &current_playlist;
3205 check_control(playlist);
3207 result = randomise_playlist(playlist, seed, start_current, true);
3209 if (result != -1 && (audio_status() & AUDIO_STATUS_PLAY) &&
3210 playlist->started)
3211 audio_flush_and_reload_tracks();
3213 return result;
3216 /* sort currently playing playlist */
3217 int playlist_sort(struct playlist_info* playlist, bool start_current)
3219 int result;
3221 if (!playlist)
3222 playlist = &current_playlist;
3224 check_control(playlist);
3226 result = sort_playlist(playlist, start_current, true);
3228 if (result != -1 && (audio_status() & AUDIO_STATUS_PLAY) &&
3229 playlist->started)
3230 audio_flush_and_reload_tracks();
3232 return result;
3235 /* returns true if playlist has been modified */
3236 bool playlist_modified(const struct playlist_info* playlist)
3238 if (!playlist)
3239 playlist = &current_playlist;
3241 if (playlist->shuffle_modified ||
3242 playlist->deleted ||
3243 playlist->num_inserted_tracks > 0)
3244 return true;
3246 return false;
3249 /* returns index of first track in playlist */
3250 int playlist_get_first_index(const struct playlist_info* playlist)
3252 if (!playlist)
3253 playlist = &current_playlist;
3255 return playlist->first_index;
3258 /* returns shuffle seed of playlist */
3259 int playlist_get_seed(const struct playlist_info* playlist)
3261 if (!playlist)
3262 playlist = &current_playlist;
3264 return playlist->seed;
3267 /* returns number of tracks in playlist (includes queued/inserted tracks) */
3268 int playlist_amount_ex(const struct playlist_info* playlist)
3270 if (!playlist)
3271 playlist = &current_playlist;
3273 return playlist->amount;
3276 /* returns full path of playlist (minus extension) */
3277 char *playlist_name(const struct playlist_info* playlist, char *buf,
3278 int buf_size)
3280 char *sep;
3282 if (!playlist)
3283 playlist = &current_playlist;
3285 strlcpy(buf, playlist->filename+playlist->dirlen, buf_size);
3287 if (!buf[0])
3288 return NULL;
3290 /* Remove extension */
3291 sep = strrchr(buf, '.');
3292 if (sep)
3293 *sep = 0;
3295 return buf;
3298 /* returns the playlist filename */
3299 char *playlist_get_name(const struct playlist_info* playlist, char *buf,
3300 int buf_size)
3302 if (!playlist)
3303 playlist = &current_playlist;
3305 strlcpy(buf, playlist->filename, buf_size);
3307 if (!buf[0])
3308 return NULL;
3310 return buf;
3313 /* Fills info structure with information about track at specified index.
3314 Returns 0 on success and -1 on failure */
3315 int playlist_get_track_info(struct playlist_info* playlist, int index,
3316 struct playlist_track_info* info)
3318 int seek;
3319 bool control_file;
3321 if (!playlist)
3322 playlist = &current_playlist;
3324 if (index < 0 || index >= playlist->amount)
3325 return -1;
3327 control_file = playlist->indices[index] & PLAYLIST_INSERT_TYPE_MASK;
3328 seek = playlist->indices[index] & PLAYLIST_SEEK_MASK;
3330 if (get_filename(playlist, index, seek, control_file, info->filename,
3331 sizeof(info->filename)) < 0)
3332 return -1;
3334 info->attr = 0;
3336 if (control_file)
3338 if (playlist->indices[index] & PLAYLIST_QUEUE_MASK)
3339 info->attr |= PLAYLIST_ATTR_QUEUED;
3340 else
3341 info->attr |= PLAYLIST_ATTR_INSERTED;
3345 if (playlist->indices[index] & PLAYLIST_SKIPPED)
3346 info->attr |= PLAYLIST_ATTR_SKIPPED;
3348 info->index = index;
3349 info->display_index = rotate_index(playlist, index) + 1;
3351 return 0;
3354 /* save the current dynamic playlist to specified file */
3355 int playlist_save(struct playlist_info* playlist, char *filename)
3357 int fd;
3358 int i, index;
3359 int count = 0;
3360 char path[MAX_PATH+1];
3361 char tmp_buf[MAX_PATH+1];
3362 int result = 0;
3363 bool overwrite_current = false;
3364 int* index_buf = NULL;
3366 if (!playlist)
3367 playlist = &current_playlist;
3369 if (playlist->amount <= 0)
3370 return -1;
3372 /* use current working directory as base for pathname */
3373 if (format_track_path(path, filename, sizeof(tmp_buf),
3374 strlen(filename)+1, getcwd(NULL, -1)) < 0)
3375 return -1;
3377 if (!strncmp(playlist->filename, path, strlen(path)))
3379 /* Attempting to overwrite current playlist file.*/
3381 if (playlist->buffer_size < (int)(playlist->amount * sizeof(int)))
3383 /* not enough buffer space to store updated indices */
3384 splash(HZ*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR));
3385 return -1;
3388 /* in_ram buffer is unused for m3u files so we'll use for storing
3389 updated indices */
3390 index_buf = (int*)playlist->buffer;
3392 /* use temporary pathname */
3393 snprintf(path, sizeof(path), "%s_temp", playlist->filename);
3394 overwrite_current = true;
3397 if (is_m3u8(path))
3399 fd = open_utf8(path, O_CREAT|O_WRONLY|O_TRUNC);
3401 else
3403 /* some applications require a BOM to read the file properly */
3404 fd = open(path, O_CREAT|O_WRONLY|O_TRUNC, 0666);
3406 if (fd < 0)
3408 splash(HZ*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR));
3409 return -1;
3412 display_playlist_count(count, ID2P(LANG_PLAYLIST_SAVE_COUNT), false);
3414 cpu_boost(true);
3416 index = playlist->first_index;
3417 for (i=0; i<playlist->amount; i++)
3419 bool control_file;
3420 bool queue;
3421 int seek;
3423 /* user abort */
3424 if (action_userabort(TIMEOUT_NOBLOCK))
3426 result = -1;
3427 break;
3430 control_file = playlist->indices[index] & PLAYLIST_INSERT_TYPE_MASK;
3431 queue = playlist->indices[index] & PLAYLIST_QUEUE_MASK;
3432 seek = playlist->indices[index] & PLAYLIST_SEEK_MASK;
3434 /* Don't save queued files */
3435 if (!queue)
3437 if (get_filename(playlist, index, seek, control_file, tmp_buf,
3438 MAX_PATH+1) < 0)
3440 result = -1;
3441 break;
3444 if (overwrite_current)
3445 index_buf[count] = lseek(fd, 0, SEEK_CUR);
3447 if (fdprintf(fd, "%s\n", tmp_buf) < 0)
3449 splash(HZ*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR));
3450 result = -1;
3451 break;
3454 count++;
3456 if ((count % PLAYLIST_DISPLAY_COUNT) == 0)
3457 display_playlist_count(count, ID2P(LANG_PLAYLIST_SAVE_COUNT),
3458 false);
3460 yield();
3463 index = (index+1)%playlist->amount;
3466 display_playlist_count(count, ID2P(LANG_PLAYLIST_SAVE_COUNT), true);
3468 close(fd);
3470 if (overwrite_current && result >= 0)
3472 result = -1;
3474 mutex_lock(playlist->control_mutex);
3476 /* Replace the current playlist with the new one and update indices */
3477 close(playlist->fd);
3478 if (remove(playlist->filename) >= 0)
3480 if (rename(path, playlist->filename) >= 0)
3482 playlist->fd = open_utf8(playlist->filename, O_RDONLY);
3483 if (playlist->fd >= 0)
3485 index = playlist->first_index;
3486 for (i=0, count=0; i<playlist->amount; i++)
3488 if (!(playlist->indices[index] & PLAYLIST_QUEUE_MASK))
3490 playlist->indices[index] = index_buf[count];
3491 count++;
3493 index = (index+1)%playlist->amount;
3496 /* we need to recreate control because inserted tracks are
3497 now part of the playlist and shuffle has been
3498 invalidated */
3499 result = recreate_control(playlist);
3504 mutex_unlock(playlist->control_mutex);
3508 cpu_boost(false);
3510 return result;
3514 * Search specified directory for tracks and notify via callback. May be
3515 * called recursively.
3517 int playlist_directory_tracksearch(const char* dirname, bool recurse,
3518 int (*callback)(char*, void*),
3519 void* context)
3521 char buf[MAX_PATH+1];
3522 int result = 0;
3523 int num_files = 0;
3524 int i;
3525 struct entry *files;
3526 struct tree_context* tc = tree_get_context();
3527 int old_dirfilter = *(tc->dirfilter);
3529 if (!callback)
3530 return -1;
3532 /* use the tree browser dircache to load files */
3533 *(tc->dirfilter) = SHOW_ALL;
3535 if (ft_load(tc, dirname) < 0)
3537 splash(HZ*2, ID2P(LANG_PLAYLIST_DIRECTORY_ACCESS_ERROR));
3538 *(tc->dirfilter) = old_dirfilter;
3539 return -1;
3542 files = (struct entry*) tc->dircache;
3543 num_files = tc->filesindir;
3545 /* we've overwritten the dircache so tree browser will need to be
3546 reloaded */
3547 reload_directory();
3549 for (i=0; i<num_files; i++)
3551 /* user abort */
3552 if (action_userabort(TIMEOUT_NOBLOCK))
3554 result = -1;
3555 break;
3558 if (files[i].attr & ATTR_DIRECTORY)
3560 if (recurse)
3562 /* recursively add directories */
3563 snprintf(buf, sizeof(buf), "%s/%s",
3564 dirname[1]? dirname: "", files[i].name);
3565 result = playlist_directory_tracksearch(buf, recurse,
3566 callback, context);
3567 if (result < 0)
3568 break;
3570 /* we now need to reload our current directory */
3571 if(ft_load(tc, dirname) < 0)
3573 result = -1;
3574 break;
3577 files = (struct entry*) tc->dircache;
3578 num_files = tc->filesindir;
3579 if (!num_files)
3581 result = -1;
3582 break;
3585 else
3586 continue;
3588 else if ((files[i].attr & FILE_ATTR_MASK) == FILE_ATTR_AUDIO)
3590 snprintf(buf, sizeof(buf), "%s/%s",
3591 dirname[1]? dirname: "", files[i].name);
3593 if (callback(buf, context) != 0)
3595 result = -1;
3596 break;
3599 /* let the other threads work */
3600 yield();
3604 /* restore dirfilter */
3605 *(tc->dirfilter) = old_dirfilter;
3607 return result;