Properly synchronize LCD and SDL button thread when switching between fullscreen...
[maemo-rb.git] / apps / playlist.c
blobbbbbe22349d28aff7b93a3ddf2d32e30f04b6f18
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 ] = NULL;
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 playlist_start(index, 0);
629 #endif
632 /* we've overwritten the dircache when getting the next/previous dir,
633 so the tree browser context will need to be reloaded */
634 reload_directory();
637 return index;
641 * Removes all tracks, from the playlist, leaving the presently playing
642 * track queued.
644 int playlist_remove_all_tracks(struct playlist_info *playlist)
646 int result;
648 if (playlist == NULL)
649 playlist = &current_playlist;
651 while (playlist->index > 0)
652 if ((result = remove_track_from_playlist(playlist, 0, true)) < 0)
653 return result;
655 while (playlist->amount > 1)
656 if ((result = remove_track_from_playlist(playlist, 1, true)) < 0)
657 return result;
659 if (playlist->amount == 1) {
660 playlist->indices[0] |= PLAYLIST_QUEUED;
663 return 0;
668 * Add track to playlist at specified position. There are seven special
669 * positions that can be specified:
670 * PLAYLIST_PREPEND - Add track at beginning of playlist
671 * PLAYLIST_INSERT - Add track after current song. NOTE: If
672 * there are already inserted tracks then track
673 * is added to the end of the insertion list
674 * PLAYLIST_INSERT_FIRST - Add track immediately after current song, no
675 * matter what other tracks have been inserted
676 * PLAYLIST_INSERT_LAST - Add track to end of playlist
677 * PLAYLIST_INSERT_SHUFFLED - Add track at some random point between the
678 * current playing track and end of playlist
679 * PLAYLIST_INSERT_LAST_SHUFFLED - Add tracks in random order to the end of
680 * the playlist.
681 * PLAYLIST_REPLACE - Erase current playlist, Cue the current track
682 * and inster this track at the end.
684 static int add_track_to_playlist(struct playlist_info* playlist,
685 const char *filename, int position,
686 bool queue, int seek_pos)
688 int insert_position, orig_position;
689 unsigned long flags = PLAYLIST_INSERT_TYPE_INSERT;
690 int i;
692 insert_position = orig_position = position;
694 if (playlist->amount >= playlist->max_playlist_size)
696 display_buffer_full();
697 return -1;
700 switch (position)
702 case PLAYLIST_PREPEND:
703 position = insert_position = playlist->first_index;
704 break;
705 case PLAYLIST_INSERT:
706 /* if there are already inserted tracks then add track to end of
707 insertion list else add after current playing track */
708 if (playlist->last_insert_pos >= 0 &&
709 playlist->last_insert_pos < playlist->amount &&
710 (playlist->indices[playlist->last_insert_pos]&
711 PLAYLIST_INSERT_TYPE_MASK) == PLAYLIST_INSERT_TYPE_INSERT)
712 position = insert_position = playlist->last_insert_pos+1;
713 else if (playlist->amount > 0)
714 position = insert_position = playlist->index + 1;
715 else
716 position = insert_position = 0;
718 playlist->last_insert_pos = position;
719 break;
720 case PLAYLIST_INSERT_FIRST:
721 if (playlist->amount > 0)
722 position = insert_position = playlist->index + 1;
723 else
724 position = insert_position = 0;
726 playlist->last_insert_pos = position;
727 break;
728 case PLAYLIST_INSERT_LAST:
729 if (playlist->first_index > 0)
730 position = insert_position = playlist->first_index;
731 else
732 position = insert_position = playlist->amount;
734 playlist->last_insert_pos = position;
735 break;
736 case PLAYLIST_INSERT_SHUFFLED:
738 if (playlist->started)
740 int offset;
741 int n = playlist->amount -
742 rotate_index(playlist, playlist->index);
744 if (n > 0)
745 offset = rand() % n;
746 else
747 offset = 0;
749 position = playlist->index + offset + 1;
750 if (position >= playlist->amount)
751 position -= playlist->amount;
753 insert_position = position;
755 else
756 position = insert_position = (rand() % (playlist->amount+1));
757 break;
759 case PLAYLIST_INSERT_LAST_SHUFFLED:
761 position = insert_position = playlist->last_shuffled_start +
762 rand() % (playlist->amount - playlist->last_shuffled_start + 1);
763 break;
765 case PLAYLIST_REPLACE:
766 if (playlist_remove_all_tracks(playlist) < 0)
767 return -1;
769 playlist->last_insert_pos = position = insert_position = playlist->index + 1;
770 break;
773 if (queue)
774 flags |= PLAYLIST_QUEUED;
776 /* shift indices so that track can be added */
777 for (i=playlist->amount; i>insert_position; i--)
779 playlist->indices[i] = playlist->indices[i-1];
780 #ifdef HAVE_DIRCACHE
781 if (playlist->filenames)
782 playlist->filenames[i] = playlist->filenames[i-1];
783 #endif
786 /* update stored indices if needed */
788 if (orig_position < 0)
790 if (playlist->amount > 0 && insert_position <= playlist->index &&
791 playlist->started)
792 playlist->index++;
794 if (playlist->amount > 0 && insert_position <= playlist->first_index &&
795 orig_position != PLAYLIST_PREPEND && playlist->started)
796 playlist->first_index++;
799 if (insert_position < playlist->last_insert_pos ||
800 (insert_position == playlist->last_insert_pos && position < 0))
801 playlist->last_insert_pos++;
803 if (seek_pos < 0 && playlist->control_fd >= 0)
805 int result = update_control(playlist,
806 (queue?PLAYLIST_COMMAND_QUEUE:PLAYLIST_COMMAND_ADD), position,
807 playlist->last_insert_pos, filename, NULL, &seek_pos);
809 if (result < 0)
810 return result;
813 playlist->indices[insert_position] = flags | seek_pos;
815 #ifdef HAVE_DIRCACHE
816 if (playlist->filenames)
817 playlist->filenames[insert_position] = NULL;
818 #endif
820 playlist->amount++;
821 playlist->num_inserted_tracks++;
823 return insert_position;
827 * Callback for playlist_directory_tracksearch to insert track into
828 * playlist.
830 static int directory_search_callback(char* filename, void* context)
832 struct directory_search_context* c =
833 (struct directory_search_context*) context;
834 int insert_pos;
836 insert_pos = add_track_to_playlist(c->playlist, filename, c->position,
837 c->queue, -1);
839 if (insert_pos < 0)
840 return -1;
842 (c->count)++;
844 /* Make sure tracks are inserted in correct order if user requests
845 INSERT_FIRST */
846 if (c->position == PLAYLIST_INSERT_FIRST || c->position >= 0)
847 c->position = insert_pos + 1;
849 if (((c->count)%PLAYLIST_DISPLAY_COUNT) == 0)
851 unsigned char* count_str;
853 if (c->queue)
854 count_str = ID2P(LANG_PLAYLIST_QUEUE_COUNT);
855 else
856 count_str = ID2P(LANG_PLAYLIST_INSERT_COUNT);
858 display_playlist_count(c->count, count_str, false);
860 if ((c->count) == PLAYLIST_DISPLAY_COUNT &&
861 (audio_status() & AUDIO_STATUS_PLAY) &&
862 c->playlist->started)
863 audio_flush_and_reload_tracks();
866 return 0;
870 * remove track at specified position
872 static int remove_track_from_playlist(struct playlist_info* playlist,
873 int position, bool write)
875 int i;
876 bool inserted;
878 if (playlist->amount <= 0)
879 return -1;
881 inserted = playlist->indices[position] & PLAYLIST_INSERT_TYPE_MASK;
883 /* shift indices now that track has been removed */
884 for (i=position; i<playlist->amount; i++)
886 playlist->indices[i] = playlist->indices[i+1];
887 #ifdef HAVE_DIRCACHE
888 if (playlist->filenames)
889 playlist->filenames[i] = playlist->filenames[i+1];
890 #endif
893 playlist->amount--;
895 if (inserted)
896 playlist->num_inserted_tracks--;
897 else
898 playlist->deleted = true;
900 /* update stored indices if needed */
901 if (position < playlist->index)
902 playlist->index--;
904 if (position < playlist->first_index)
906 playlist->first_index--;
909 if (position <= playlist->last_insert_pos)
910 playlist->last_insert_pos--;
912 if (write && playlist->control_fd >= 0)
914 int result = update_control(playlist, PLAYLIST_COMMAND_DELETE,
915 position, -1, NULL, NULL, NULL);
917 if (result < 0)
918 return result;
920 sync_control(playlist, false);
923 return 0;
927 * randomly rearrange the array of indices for the playlist. If start_current
928 * is true then update the index to the new index of the current playing track
930 static int randomise_playlist(struct playlist_info* playlist,
931 unsigned int seed, bool start_current,
932 bool write)
934 int count;
935 int candidate;
936 long store;
937 unsigned int current = playlist->indices[playlist->index];
939 /* seed 0 is used to identify sorted playlist for resume purposes */
940 if (seed == 0)
941 seed = 1;
943 /* seed with the given seed */
944 srand(seed);
946 /* randomise entire indices list */
947 for(count = playlist->amount - 1; count >= 0; count--)
949 /* the rand is from 0 to RAND_MAX, so adjust to our value range */
950 candidate = rand() % (count + 1);
952 /* now swap the values at the 'count' and 'candidate' positions */
953 store = playlist->indices[candidate];
954 playlist->indices[candidate] = playlist->indices[count];
955 playlist->indices[count] = store;
956 #ifdef HAVE_DIRCACHE
957 if (playlist->filenames)
959 store = (long)playlist->filenames[candidate];
960 playlist->filenames[candidate] = playlist->filenames[count];
961 playlist->filenames[count] = (struct dircache_entry *)store;
963 #endif
966 if (start_current)
967 find_and_set_playlist_index(playlist, current);
969 /* indices have been moved so last insert position is no longer valid */
970 playlist->last_insert_pos = -1;
972 playlist->seed = seed;
973 if (playlist->num_inserted_tracks > 0 || playlist->deleted)
974 playlist->shuffle_modified = true;
976 if (write)
978 update_control(playlist, PLAYLIST_COMMAND_SHUFFLE, seed,
979 playlist->first_index, NULL, NULL, NULL);
982 return 0;
986 * Sort the array of indices for the playlist. If start_current is true then
987 * set the index to the new index of the current song.
988 * Also while going to unshuffled mode set the first_index to 0.
990 static int sort_playlist(struct playlist_info* playlist, bool start_current,
991 bool write)
993 unsigned int current = playlist->indices[playlist->index];
995 if (playlist->amount > 0)
996 qsort(playlist->indices, playlist->amount,
997 sizeof(playlist->indices[0]), compare);
999 #ifdef HAVE_DIRCACHE
1000 /** We need to re-check the song names from disk because qsort can't
1001 * sort two arrays at once :/
1002 * FIXME: Please implement a better way to do this. */
1003 memset(playlist->filenames, 0, playlist->max_playlist_size * sizeof(int));
1004 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
1005 #endif
1007 if (start_current)
1008 find_and_set_playlist_index(playlist, current);
1010 /* indices have been moved so last insert position is no longer valid */
1011 playlist->last_insert_pos = -1;
1013 if (!playlist->num_inserted_tracks && !playlist->deleted)
1014 playlist->shuffle_modified = false;
1015 if (write && playlist->control_fd >= 0)
1017 playlist->first_index = 0;
1018 update_control(playlist, PLAYLIST_COMMAND_UNSHUFFLE,
1019 playlist->first_index, -1, NULL, NULL, NULL);
1022 return 0;
1025 /* Calculate how many steps we have to really step when skipping entries
1026 * marked as bad.
1028 static int calculate_step_count(const struct playlist_info *playlist, int steps)
1030 int i, count, direction;
1031 int index;
1032 int stepped_count = 0;
1034 if (steps < 0)
1036 direction = -1;
1037 count = -steps;
1039 else
1041 direction = 1;
1042 count = steps;
1045 index = playlist->index;
1046 i = 0;
1047 do {
1048 /* Boundary check */
1049 if (index < 0)
1050 index += playlist->amount;
1051 if (index >= playlist->amount)
1052 index -= playlist->amount;
1054 /* Check if we found a bad entry. */
1055 if (playlist->indices[index] & PLAYLIST_SKIPPED)
1057 steps += direction;
1058 /* Are all entries bad? */
1059 if (stepped_count++ > playlist->amount)
1060 break ;
1062 else
1063 i++;
1065 index += direction;
1066 } while (i <= count);
1068 return steps;
1071 /* Marks the index of the track to be skipped that is "steps" away from
1072 * current playing track.
1074 void playlist_skip_entry(struct playlist_info *playlist, int steps)
1076 int index;
1078 if (playlist == NULL)
1079 playlist = &current_playlist;
1081 /* need to account for already skipped tracks */
1082 steps = calculate_step_count(playlist, steps);
1084 index = playlist->index + steps;
1085 if (index < 0)
1086 index += playlist->amount;
1087 else if (index >= playlist->amount)
1088 index -= playlist->amount;
1090 playlist->indices[index] |= PLAYLIST_SKIPPED;
1094 * returns the index of the track that is "steps" away from current playing
1095 * track.
1097 static int get_next_index(const struct playlist_info* playlist, int steps,
1098 int repeat_mode)
1100 int current_index = playlist->index;
1101 int next_index = -1;
1103 if (playlist->amount <= 0)
1104 return -1;
1106 if (repeat_mode == -1)
1107 repeat_mode = global_settings.repeat_mode;
1109 if (repeat_mode == REPEAT_SHUFFLE && playlist->amount <= 1)
1110 repeat_mode = REPEAT_ALL;
1112 steps = calculate_step_count(playlist, steps);
1113 switch (repeat_mode)
1115 case REPEAT_SHUFFLE:
1116 /* Treat repeat shuffle just like repeat off. At end of playlist,
1117 play will be resumed in playlist_next() */
1118 case REPEAT_OFF:
1120 current_index = rotate_index(playlist, current_index);
1121 next_index = current_index+steps;
1122 if ((next_index < 0) || (next_index >= playlist->amount))
1123 next_index = -1;
1124 else
1125 next_index = (next_index+playlist->first_index) %
1126 playlist->amount;
1128 break;
1131 case REPEAT_ONE:
1132 #ifdef AB_REPEAT_ENABLE
1133 case REPEAT_AB:
1134 #endif
1135 next_index = current_index;
1136 break;
1138 case REPEAT_ALL:
1139 default:
1141 next_index = (current_index+steps) % playlist->amount;
1142 while (next_index < 0)
1143 next_index += playlist->amount;
1145 if (steps >= playlist->amount)
1147 int i, index;
1149 index = next_index;
1150 next_index = -1;
1152 /* second time around so skip the queued files */
1153 for (i=0; i<playlist->amount; i++)
1155 if (playlist->indices[index] & PLAYLIST_QUEUE_MASK)
1156 index = (index+1) % playlist->amount;
1157 else
1159 next_index = index;
1160 break;
1164 break;
1168 /* No luck if the whole playlist was bad. */
1169 if (playlist->indices[next_index] & PLAYLIST_SKIPPED)
1170 return -1;
1172 return next_index;
1176 * Search for the seek track and set appropriate indices. Used after shuffle
1177 * to make sure the current index is still pointing to correct track.
1179 static void find_and_set_playlist_index(struct playlist_info* playlist,
1180 unsigned int seek)
1182 int i;
1184 /* Set the index to the current song */
1185 for (i=0; i<playlist->amount; i++)
1187 if (playlist->indices[i] == seek)
1189 playlist->index = playlist->first_index = i;
1191 break;
1197 * used to sort track indices. Sort order is as follows:
1198 * 1. Prepended tracks (in prepend order)
1199 * 2. Playlist/directory tracks (in playlist order)
1200 * 3. Inserted/Appended tracks (in insert order)
1202 static int compare(const void* p1, const void* p2)
1204 unsigned long* e1 = (unsigned long*) p1;
1205 unsigned long* e2 = (unsigned long*) p2;
1206 unsigned long flags1 = *e1 & PLAYLIST_INSERT_TYPE_MASK;
1207 unsigned long flags2 = *e2 & PLAYLIST_INSERT_TYPE_MASK;
1209 if (flags1 == flags2)
1210 return (*e1 & PLAYLIST_SEEK_MASK) - (*e2 & PLAYLIST_SEEK_MASK);
1211 else if (flags1 == PLAYLIST_INSERT_TYPE_PREPEND ||
1212 flags2 == PLAYLIST_INSERT_TYPE_APPEND)
1213 return -1;
1214 else if (flags1 == PLAYLIST_INSERT_TYPE_APPEND ||
1215 flags2 == PLAYLIST_INSERT_TYPE_PREPEND)
1216 return 1;
1217 else if (flags1 && flags2)
1218 return (*e1 & PLAYLIST_SEEK_MASK) - (*e2 & PLAYLIST_SEEK_MASK);
1219 else
1220 return *e1 - *e2;
1223 #ifdef HAVE_DIRCACHE
1225 * Thread to update filename pointers to dircache on background
1226 * without affecting playlist load up performance. This thread also flushes
1227 * any pending control commands when the disk spins up.
1229 static void playlist_flush_callback(void *param)
1231 (void)param;
1232 struct playlist_info *playlist;
1233 playlist = &current_playlist;
1234 if (playlist->control_fd >= 0)
1236 if (playlist->num_cached > 0)
1238 mutex_lock(playlist->control_mutex);
1239 flush_cached_control(playlist);
1240 mutex_unlock(playlist->control_mutex);
1242 sync_control(playlist, true);
1246 static void playlist_thread(void)
1248 struct queue_event ev;
1249 bool dirty_pointers = false;
1250 static char tmp[MAX_PATH+1];
1252 struct playlist_info *playlist;
1253 int index;
1254 int seek;
1255 bool control_file;
1257 int sleep_time = 5;
1259 #ifdef HAVE_DISK_STORAGE
1260 if (global_settings.disk_spindown > 1 &&
1261 global_settings.disk_spindown <= 5)
1262 sleep_time = global_settings.disk_spindown - 1;
1263 #endif
1265 while (1)
1267 queue_wait_w_tmo(&playlist_queue, &ev, HZ*sleep_time);
1269 switch (ev.id)
1271 case PLAYLIST_LOAD_POINTERS:
1272 dirty_pointers = true;
1273 break ;
1275 /* Start the background scanning after either the disk spindown
1276 timeout or 5s, whichever is less */
1277 case SYS_TIMEOUT:
1278 playlist = &current_playlist;
1279 if (playlist->control_fd >= 0)
1281 if (playlist->num_cached > 0)
1282 register_storage_idle_func(playlist_flush_callback);
1285 if (!dirty_pointers)
1286 break ;
1288 if (!dircache_is_enabled() || !playlist->filenames
1289 || playlist->amount <= 0)
1290 break ;
1292 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
1293 cpu_boost(true);
1294 #endif
1295 for (index = 0; index < playlist->amount
1296 && queue_empty(&playlist_queue); index++)
1298 /* Process only pointers that are not already loaded. */
1299 if (playlist->filenames[index])
1300 continue ;
1302 control_file = playlist->indices[index] & PLAYLIST_INSERT_TYPE_MASK;
1303 seek = playlist->indices[index] & PLAYLIST_SEEK_MASK;
1305 /* Load the filename from playlist file. */
1306 if (get_filename(playlist, index, seek, control_file, tmp,
1307 sizeof(tmp)) < 0)
1308 break ;
1310 /* Set the dircache entry pointer. */
1311 playlist->filenames[index] = dircache_get_entry_ptr(tmp);
1313 /* And be on background so user doesn't notice any delays. */
1314 yield();
1317 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
1318 cpu_boost(false);
1319 #endif
1320 dirty_pointers = false;
1321 break ;
1323 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
1324 case SYS_USB_CONNECTED:
1325 usb_acknowledge(SYS_USB_CONNECTED_ACK);
1326 usb_wait_for_disconnect(&playlist_queue);
1327 break ;
1328 #endif
1332 #endif
1335 * gets pathname for track at seek index
1337 static int get_filename(struct playlist_info* playlist, int index, int seek,
1338 bool control_file, char *buf, int buf_length)
1340 int fd;
1341 int max = -1;
1342 char tmp_buf[MAX_PATH+1];
1343 char dir_buf[MAX_PATH+1];
1344 bool utf8 = playlist->utf8;
1346 if (buf_length > MAX_PATH+1)
1347 buf_length = MAX_PATH+1;
1349 #ifdef HAVE_DIRCACHE
1350 if (dircache_is_enabled() && playlist->filenames)
1352 if (playlist->filenames[index] != NULL)
1354 dircache_copy_path(playlist->filenames[index], tmp_buf, sizeof(tmp_buf)-1);
1355 max = strlen(tmp_buf);
1358 #else
1359 (void)index;
1360 #endif
1362 if (playlist->in_ram && !control_file && max < 0)
1364 max = strlcpy(tmp_buf, &playlist->buffer[seek], sizeof(tmp_buf));
1366 else if (max < 0)
1368 mutex_lock(playlist->control_mutex);
1370 if (control_file)
1372 fd = playlist->control_fd;
1373 utf8 = true;
1375 else
1377 if(-1 == playlist->fd)
1378 playlist->fd = open(playlist->filename, O_RDONLY);
1380 fd = playlist->fd;
1383 if(-1 != fd)
1386 if (lseek(fd, seek, SEEK_SET) != seek)
1387 max = -1;
1388 else
1390 max = read(fd, tmp_buf, MIN((size_t) buf_length, sizeof(tmp_buf)));
1392 if ((max > 0) && !utf8)
1394 /* Use dir_buf as a temporary buffer. Note that dir_buf must
1395 * be as large as tmp_buf.
1397 max = convert_m3u(tmp_buf, max, sizeof(tmp_buf), dir_buf);
1402 mutex_unlock(playlist->control_mutex);
1404 if (max < 0)
1406 if (control_file)
1407 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
1408 else
1409 splash(HZ*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR));
1411 return max;
1415 strlcpy(dir_buf, playlist->filename, playlist->dirlen);
1417 return (format_track_path(buf, tmp_buf, buf_length, max, dir_buf));
1420 static int get_next_directory(char *dir){
1421 return get_next_dir(dir,true,false);
1424 static int get_previous_directory(char *dir){
1425 return get_next_dir(dir,false,false);
1429 * search through all the directories (starting with the current) to find
1430 * one that has tracks to play
1432 static int get_next_dir(char *dir, bool is_forward, bool recursion)
1434 struct playlist_info* playlist = &current_playlist;
1435 int result = -1;
1436 char *start_dir = NULL;
1437 bool exit = false;
1438 int i;
1439 struct tree_context* tc = tree_get_context();
1440 int saved_dirfilter = *(tc->dirfilter);
1442 /* process random folder advance */
1443 if (global_settings.next_folder == FOLDER_ADVANCE_RANDOM)
1445 int fd = open(ROCKBOX_DIR "/folder_advance_list.dat", O_RDONLY);
1446 if (fd >= 0)
1448 char buffer[MAX_PATH];
1449 int folder_count = 0;
1450 srand(current_tick);
1451 *(tc->dirfilter) = SHOW_MUSIC;
1452 tc->sort_dir = global_settings.sort_dir;
1453 read(fd,&folder_count,sizeof(int));
1454 if (!folder_count)
1455 exit = true;
1456 while (!exit)
1458 i = rand()%folder_count;
1459 lseek(fd,sizeof(int) + (MAX_PATH*i),SEEK_SET);
1460 read(fd,buffer,MAX_PATH);
1461 if (check_subdir_for_music(buffer, "", false) ==0)
1462 exit = true;
1464 if (folder_count)
1465 strcpy(dir,buffer);
1466 close(fd);
1467 *(tc->dirfilter) = saved_dirfilter;
1468 tc->sort_dir = global_settings.sort_dir;
1469 reload_directory();
1470 return 0;
1474 /* not random folder advance (or random folder advance unavailable) */
1475 if (recursion)
1477 /* start with root */
1478 dir[0] = '\0';
1480 else
1482 /* start with current directory */
1483 strlcpy(dir, playlist->filename, playlist->dirlen);
1486 /* use the tree browser dircache to load files */
1487 *(tc->dirfilter) = SHOW_ALL;
1489 /* set up sorting/direction */
1490 tc->sort_dir = global_settings.sort_dir;
1491 if (!is_forward)
1493 static const char sortpairs[] =
1495 [SORT_ALPHA] = SORT_ALPHA_REVERSED,
1496 [SORT_DATE] = SORT_DATE_REVERSED,
1497 [SORT_TYPE] = SORT_TYPE_REVERSED,
1498 [SORT_ALPHA_REVERSED] = SORT_ALPHA,
1499 [SORT_DATE_REVERSED] = SORT_DATE,
1500 [SORT_TYPE_REVERSED] = SORT_TYPE,
1503 if ((unsigned)tc->sort_dir < sizeof(sortpairs))
1504 tc->sort_dir = sortpairs[tc->sort_dir];
1507 while (!exit)
1509 struct entry *files;
1510 int num_files = 0;
1511 int i;
1513 if (ft_load(tc, (dir[0]=='\0')?"/":dir) < 0)
1515 exit = true;
1516 result = -1;
1517 break;
1520 files = (struct entry*) tc->dircache;
1521 num_files = tc->filesindir;
1523 for (i=0; i<num_files; i++)
1525 /* user abort */
1526 if (action_userabort(TIMEOUT_NOBLOCK))
1528 result = -1;
1529 exit = true;
1530 break;
1533 if (files[i].attr & ATTR_DIRECTORY)
1535 if (!start_dir)
1537 result = check_subdir_for_music(dir, files[i].name, true);
1538 if (result != -1)
1540 exit = true;
1541 break;
1544 else if (!strcmp(start_dir, files[i].name))
1545 start_dir = NULL;
1549 if (!exit)
1551 /* move down to parent directory. current directory name is
1552 stored as the starting point for the search in parent */
1553 start_dir = strrchr(dir, '/');
1554 if (start_dir)
1556 *start_dir = '\0';
1557 start_dir++;
1559 else
1560 break;
1564 /* restore dirfilter */
1565 *(tc->dirfilter) = saved_dirfilter;
1566 tc->sort_dir = global_settings.sort_dir;
1568 /* special case if nothing found: try start searching again from root */
1569 if (result == -1 && !recursion){
1570 result = get_next_dir(dir, is_forward, true);
1573 return result;
1577 * Checks if there are any music files in the dir or any of its
1578 * subdirectories. May be called recursively.
1580 static int check_subdir_for_music(char *dir, const char *subdir, bool recurse)
1582 int result = -1;
1583 int dirlen = strlen(dir);
1584 int num_files = 0;
1585 int i;
1586 struct entry *files;
1587 bool has_music = false;
1588 bool has_subdir = false;
1589 struct tree_context* tc = tree_get_context();
1591 snprintf(dir+dirlen, MAX_PATH-dirlen, "/%s", subdir);
1593 if (ft_load(tc, dir) < 0)
1595 return -2;
1598 files = (struct entry*) tc->dircache;
1599 num_files = tc->filesindir;
1601 for (i=0; i<num_files; i++)
1603 if (files[i].attr & ATTR_DIRECTORY)
1604 has_subdir = true;
1605 else if ((files[i].attr & FILE_ATTR_MASK) == FILE_ATTR_AUDIO)
1607 has_music = true;
1608 break;
1612 if (has_music)
1613 return 0;
1615 if (has_subdir && recurse)
1617 for (i=0; i<num_files; i++)
1619 if (action_userabort(TIMEOUT_NOBLOCK))
1621 result = -2;
1622 break;
1625 if (files[i].attr & ATTR_DIRECTORY)
1627 result = check_subdir_for_music(dir, files[i].name, true);
1628 if (!result)
1629 break;
1634 if (result < 0)
1636 if (dirlen)
1638 dir[dirlen] = '\0';
1640 else
1642 strcpy(dir, "/");
1645 /* we now need to reload our current directory */
1646 if(ft_load(tc, dir) < 0)
1647 splash(HZ*2, ID2P(LANG_PLAYLIST_DIRECTORY_ACCESS_ERROR));
1649 return result;
1653 * Returns absolute path of track
1655 static int format_track_path(char *dest, char *src, int buf_length, int max,
1656 const char *dir)
1658 int i = 0;
1659 int j;
1660 char *temp_ptr;
1662 /* Look for the end of the string */
1663 while((i < max) &&
1664 (src[i] != '\n') &&
1665 (src[i] != '\r') &&
1666 (src[i] != '\0'))
1667 i++;
1669 /* Now work back killing white space */
1670 while((i > 0) &&
1671 ((src[i-1] == ' ') ||
1672 (src[i-1] == '\t')))
1673 i--;
1675 /* Zero-terminate the file name */
1676 src[i]=0;
1678 /* replace backslashes with forward slashes */
1679 for ( j=0; j<i; j++ )
1680 if ( src[j] == '\\' )
1681 src[j] = '/';
1683 if('/' == src[0])
1685 strlcpy(dest, src, buf_length);
1687 else
1689 /* handle dos style drive letter */
1690 if (':' == src[1])
1691 strlcpy(dest, &src[2], buf_length);
1692 else if (!strncmp(src, "../", 3))
1694 /* handle relative paths */
1695 i=3;
1696 while(!strncmp(&src[i], "../", 3))
1697 i += 3;
1698 for (j=0; j<i/3; j++) {
1699 temp_ptr = strrchr(dir, '/');
1700 if (temp_ptr)
1701 *temp_ptr = '\0';
1702 else
1703 break;
1705 snprintf(dest, buf_length, "%s/%s", dir, &src[i]);
1707 else if ( '.' == src[0] && '/' == src[1] ) {
1708 snprintf(dest, buf_length, "%s/%s", dir, &src[2]);
1710 else {
1711 snprintf(dest, buf_length, "%s/%s", dir, src);
1715 return 0;
1719 * Display splash message showing progress of playlist/directory insertion or
1720 * save.
1722 static void display_playlist_count(int count, const unsigned char *fmt,
1723 bool final)
1725 static long talked_tick = 0;
1726 long id = P2ID(fmt);
1727 if(global_settings.talk_menu && id>=0)
1729 if(final || (count && (talked_tick == 0
1730 || TIME_AFTER(current_tick, talked_tick+5*HZ))))
1732 talked_tick = current_tick;
1733 talk_number(count, false);
1734 talk_id(id, true);
1737 fmt = P2STR(fmt);
1739 splashf(0, fmt, count, str(LANG_OFF_ABORT));
1743 * Display buffer full message
1745 static void display_buffer_full(void)
1747 splash(HZ*2, ID2P(LANG_PLAYLIST_BUFFER_FULL));
1751 * Flush any cached control commands to disk. Called when playlist is being
1752 * modified. Returns 0 on success and -1 on failure.
1754 static int flush_cached_control(struct playlist_info* playlist)
1756 int result = 0;
1757 int i;
1759 if (!playlist->num_cached)
1760 return 0;
1762 lseek(playlist->control_fd, 0, SEEK_END);
1764 for (i=0; i<playlist->num_cached; i++)
1766 struct playlist_control_cache* cache =
1767 &(playlist->control_cache[i]);
1769 switch (cache->command)
1771 case PLAYLIST_COMMAND_PLAYLIST:
1772 result = fdprintf(playlist->control_fd, "P:%d:%s:%s\n",
1773 cache->i1, cache->s1, cache->s2);
1774 break;
1775 case PLAYLIST_COMMAND_ADD:
1776 case PLAYLIST_COMMAND_QUEUE:
1777 result = fdprintf(playlist->control_fd, "%c:%d:%d:",
1778 (cache->command == PLAYLIST_COMMAND_ADD)?'A':'Q',
1779 cache->i1, cache->i2);
1780 if (result > 0)
1782 /* save the position in file where name is written */
1783 int* seek_pos = (int *)cache->data;
1784 *seek_pos = lseek(playlist->control_fd, 0, SEEK_CUR);
1785 result = fdprintf(playlist->control_fd, "%s\n",
1786 cache->s1);
1788 break;
1789 case PLAYLIST_COMMAND_DELETE:
1790 result = fdprintf(playlist->control_fd, "D:%d\n", cache->i1);
1791 break;
1792 case PLAYLIST_COMMAND_SHUFFLE:
1793 result = fdprintf(playlist->control_fd, "S:%d:%d\n",
1794 cache->i1, cache->i2);
1795 break;
1796 case PLAYLIST_COMMAND_UNSHUFFLE:
1797 result = fdprintf(playlist->control_fd, "U:%d\n", cache->i1);
1798 break;
1799 case PLAYLIST_COMMAND_RESET:
1800 result = fdprintf(playlist->control_fd, "R\n");
1801 break;
1802 default:
1803 break;
1806 if (result <= 0)
1807 break;
1810 if (result > 0)
1812 playlist->num_cached = 0;
1813 playlist->pending_control_sync = true;
1815 result = 0;
1817 else
1819 result = -1;
1820 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_UPDATE_ERROR));
1823 return result;
1827 * Update control data with new command. Depending on the command, it may be
1828 * cached or flushed to disk.
1830 static int update_control(struct playlist_info* playlist,
1831 enum playlist_command command, int i1, int i2,
1832 const char* s1, const char* s2, void* data)
1834 int result = 0;
1835 struct playlist_control_cache* cache;
1836 bool flush = false;
1838 mutex_lock(playlist->control_mutex);
1840 cache = &(playlist->control_cache[playlist->num_cached++]);
1842 cache->command = command;
1843 cache->i1 = i1;
1844 cache->i2 = i2;
1845 cache->s1 = s1;
1846 cache->s2 = s2;
1847 cache->data = data;
1849 switch (command)
1851 case PLAYLIST_COMMAND_PLAYLIST:
1852 case PLAYLIST_COMMAND_ADD:
1853 case PLAYLIST_COMMAND_QUEUE:
1854 #ifndef HAVE_DIRCACHE
1855 case PLAYLIST_COMMAND_DELETE:
1856 case PLAYLIST_COMMAND_RESET:
1857 #endif
1858 flush = true;
1859 break;
1860 case PLAYLIST_COMMAND_SHUFFLE:
1861 case PLAYLIST_COMMAND_UNSHUFFLE:
1862 default:
1863 /* only flush when needed */
1864 break;
1867 if (flush || playlist->num_cached == PLAYLIST_MAX_CACHE)
1868 result = flush_cached_control(playlist);
1870 mutex_unlock(playlist->control_mutex);
1872 return result;
1876 * sync control file to disk
1878 static void sync_control(struct playlist_info* playlist, bool force)
1880 #ifdef HAVE_DIRCACHE
1881 if (playlist->started && force)
1882 #else
1883 (void) force;
1885 if (playlist->started)
1886 #endif
1888 if (playlist->pending_control_sync)
1890 mutex_lock(playlist->control_mutex);
1891 fsync(playlist->control_fd);
1892 playlist->pending_control_sync = false;
1893 mutex_unlock(playlist->control_mutex);
1899 * Rotate indices such that first_index is index 0
1901 static int rotate_index(const struct playlist_info* playlist, int index)
1903 index -= playlist->first_index;
1904 if (index < 0)
1905 index += playlist->amount;
1907 return index;
1911 * Initialize playlist entries at startup
1913 void playlist_init(void)
1915 struct playlist_info* playlist = &current_playlist;
1917 mutex_init(&current_playlist_mutex);
1918 mutex_init(&created_playlist_mutex);
1920 playlist->current = true;
1921 strlcpy(playlist->control_filename, PLAYLIST_CONTROL_FILE,
1922 sizeof(playlist->control_filename));
1923 playlist->fd = -1;
1924 playlist->control_fd = -1;
1925 playlist->max_playlist_size = global_settings.max_files_in_playlist;
1926 playlist->indices = buffer_alloc(
1927 playlist->max_playlist_size * sizeof(int));
1928 playlist->buffer_size =
1929 AVERAGE_FILENAME_LENGTH * global_settings.max_files_in_dir;
1930 playlist->buffer = buffer_alloc(playlist->buffer_size);
1931 playlist->control_mutex = &current_playlist_mutex;
1933 empty_playlist(playlist, true);
1935 #ifdef HAVE_DIRCACHE
1936 playlist->filenames = buffer_alloc(
1937 playlist->max_playlist_size * sizeof(int));
1938 memset(playlist->filenames, 0,
1939 playlist->max_playlist_size * sizeof(int));
1940 create_thread(playlist_thread, playlist_stack, sizeof(playlist_stack),
1941 0, playlist_thread_name IF_PRIO(, PRIORITY_BACKGROUND)
1942 IF_COP(, CPU));
1943 queue_init(&playlist_queue, true);
1944 #endif
1948 * Clean playlist at shutdown
1950 void playlist_shutdown(void)
1952 struct playlist_info* playlist = &current_playlist;
1954 if (playlist->control_fd >= 0)
1956 mutex_lock(playlist->control_mutex);
1958 if (playlist->num_cached > 0)
1959 flush_cached_control(playlist);
1961 close(playlist->control_fd);
1963 mutex_unlock(playlist->control_mutex);
1968 * Create new playlist
1970 int playlist_create(const char *dir, const char *file)
1972 struct playlist_info* playlist = &current_playlist;
1974 new_playlist(playlist, dir, file);
1976 if (file)
1977 /* load the playlist file */
1978 add_indices_to_playlist(playlist, NULL, 0);
1980 return 0;
1983 #define PLAYLIST_COMMAND_SIZE (MAX_PATH+12)
1986 * Restore the playlist state based on control file commands. Called to
1987 * resume playback after shutdown.
1989 int playlist_resume(void)
1991 struct playlist_info* playlist = &current_playlist;
1992 char *buffer;
1993 size_t buflen;
1994 int nread;
1995 int total_read = 0;
1996 int control_file_size = 0;
1997 bool first = true;
1998 bool sorted = true;
2000 /* use mp3 buffer for maximum load speed */
2001 #if CONFIG_CODEC != SWCODEC
2002 talk_buffer_steal(); /* we use the mp3 buffer, need to tell */
2003 buflen = (audiobufend - audiobuf);
2004 buffer = (char *)audiobuf;
2005 #else
2006 buffer = (char *)audio_get_buffer(false, &buflen);
2007 #endif
2009 empty_playlist(playlist, true);
2011 splash(0, ID2P(LANG_WAIT));
2012 playlist->control_fd = open(playlist->control_filename, O_RDWR);
2013 if (playlist->control_fd < 0)
2015 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
2016 return -1;
2018 playlist->control_created = true;
2020 control_file_size = filesize(playlist->control_fd);
2021 if (control_file_size <= 0)
2023 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
2024 return -1;
2027 /* read a small amount first to get the header */
2028 nread = read(playlist->control_fd, buffer,
2029 PLAYLIST_COMMAND_SIZE<buflen?PLAYLIST_COMMAND_SIZE:buflen);
2030 if(nread <= 0)
2032 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
2033 return -1;
2036 playlist->started = true;
2038 while (1)
2040 int result = 0;
2041 int count;
2042 enum playlist_command current_command = PLAYLIST_COMMAND_COMMENT;
2043 int last_newline = 0;
2044 int str_count = -1;
2045 bool newline = true;
2046 bool exit_loop = false;
2047 char *p = buffer;
2048 char *str1 = NULL;
2049 char *str2 = NULL;
2050 char *str3 = NULL;
2051 unsigned long last_tick = current_tick;
2052 bool useraborted = false;
2054 for(count=0; count<nread && !exit_loop && !useraborted; count++,p++)
2056 /* So a splash while we are loading. */
2057 if (TIME_AFTER(current_tick, last_tick + HZ/4))
2059 splashf(0, str(LANG_LOADING_PERCENT),
2060 (total_read+count)*100/control_file_size,
2061 str(LANG_OFF_ABORT));
2062 if (action_userabort(TIMEOUT_NOBLOCK))
2064 useraborted = true;
2065 break;
2067 last_tick = current_tick;
2070 /* Are we on a new line? */
2071 if((*p == '\n') || (*p == '\r'))
2073 *p = '\0';
2075 /* save last_newline in case we need to load more data */
2076 last_newline = count;
2078 switch (current_command)
2080 case PLAYLIST_COMMAND_PLAYLIST:
2082 /* str1=version str2=dir str3=file */
2083 int version;
2085 if (!str1)
2087 result = -1;
2088 exit_loop = true;
2089 break;
2092 if (!str2)
2093 str2 = "";
2095 if (!str3)
2096 str3 = "";
2098 version = atoi(str1);
2100 if (version != PLAYLIST_CONTROL_FILE_VERSION)
2101 return -1;
2103 update_playlist_filename(playlist, str2, str3);
2105 if (str3[0] != '\0')
2107 /* NOTE: add_indices_to_playlist() overwrites the
2108 audiobuf so we need to reload control file
2109 data */
2110 add_indices_to_playlist(playlist, NULL, 0);
2112 else if (str2[0] != '\0')
2114 playlist->in_ram = true;
2115 resume_directory(str2);
2118 /* load the rest of the data */
2119 first = false;
2120 exit_loop = true;
2122 break;
2124 case PLAYLIST_COMMAND_ADD:
2125 case PLAYLIST_COMMAND_QUEUE:
2127 /* str1=position str2=last_position str3=file */
2128 int position, last_position;
2129 bool queue;
2131 if (!str1 || !str2 || !str3)
2133 result = -1;
2134 exit_loop = true;
2135 break;
2138 position = atoi(str1);
2139 last_position = atoi(str2);
2141 queue = (current_command == PLAYLIST_COMMAND_ADD)?
2142 false:true;
2144 /* seek position is based on str3's position in
2145 buffer */
2146 if (add_track_to_playlist(playlist, str3, position,
2147 queue, total_read+(str3-buffer)) < 0)
2148 return -1;
2150 playlist->last_insert_pos = last_position;
2152 break;
2154 case PLAYLIST_COMMAND_DELETE:
2156 /* str1=position */
2157 int position;
2159 if (!str1)
2161 result = -1;
2162 exit_loop = true;
2163 break;
2166 position = atoi(str1);
2168 if (remove_track_from_playlist(playlist, position,
2169 false) < 0)
2170 return -1;
2172 break;
2174 case PLAYLIST_COMMAND_SHUFFLE:
2176 /* str1=seed str2=first_index */
2177 int seed;
2179 if (!str1 || !str2)
2181 result = -1;
2182 exit_loop = true;
2183 break;
2186 if (!sorted)
2188 /* Always sort list before shuffling */
2189 sort_playlist(playlist, false, false);
2192 seed = atoi(str1);
2193 playlist->first_index = atoi(str2);
2195 if (randomise_playlist(playlist, seed, false,
2196 false) < 0)
2197 return -1;
2198 sorted = false;
2199 break;
2201 case PLAYLIST_COMMAND_UNSHUFFLE:
2203 /* str1=first_index */
2204 if (!str1)
2206 result = -1;
2207 exit_loop = true;
2208 break;
2211 playlist->first_index = atoi(str1);
2213 if (sort_playlist(playlist, false, false) < 0)
2214 return -1;
2216 sorted = true;
2217 break;
2219 case PLAYLIST_COMMAND_RESET:
2221 playlist->last_insert_pos = -1;
2222 break;
2224 case PLAYLIST_COMMAND_COMMENT:
2225 default:
2226 break;
2229 newline = true;
2231 /* to ignore any extra newlines */
2232 current_command = PLAYLIST_COMMAND_COMMENT;
2234 else if(newline)
2236 newline = false;
2238 /* first non-comment line must always specify playlist */
2239 if (first && *p != 'P' && *p != '#')
2241 result = -1;
2242 exit_loop = true;
2243 break;
2246 switch (*p)
2248 case 'P':
2249 /* playlist can only be specified once */
2250 if (!first)
2252 result = -1;
2253 exit_loop = true;
2254 break;
2257 current_command = PLAYLIST_COMMAND_PLAYLIST;
2258 break;
2259 case 'A':
2260 current_command = PLAYLIST_COMMAND_ADD;
2261 break;
2262 case 'Q':
2263 current_command = PLAYLIST_COMMAND_QUEUE;
2264 break;
2265 case 'D':
2266 current_command = PLAYLIST_COMMAND_DELETE;
2267 break;
2268 case 'S':
2269 current_command = PLAYLIST_COMMAND_SHUFFLE;
2270 break;
2271 case 'U':
2272 current_command = PLAYLIST_COMMAND_UNSHUFFLE;
2273 break;
2274 case 'R':
2275 current_command = PLAYLIST_COMMAND_RESET;
2276 break;
2277 case '#':
2278 current_command = PLAYLIST_COMMAND_COMMENT;
2279 break;
2280 default:
2281 result = -1;
2282 exit_loop = true;
2283 break;
2286 str_count = -1;
2287 str1 = NULL;
2288 str2 = NULL;
2289 str3 = NULL;
2291 else if(current_command != PLAYLIST_COMMAND_COMMENT)
2293 /* all control file strings are separated with a colon.
2294 Replace the colon with 0 to get proper strings that can be
2295 used by commands above */
2296 if (*p == ':')
2298 *p = '\0';
2299 str_count++;
2301 if ((count+1) < nread)
2303 switch (str_count)
2305 case 0:
2306 str1 = p+1;
2307 break;
2308 case 1:
2309 str2 = p+1;
2310 break;
2311 case 2:
2312 str3 = p+1;
2313 break;
2314 default:
2315 /* allow last string to contain colons */
2316 *p = ':';
2317 break;
2324 if (result < 0)
2326 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_INVALID));
2327 return result;
2330 if (useraborted)
2332 splash(HZ*2, ID2P(LANG_CANCEL));
2333 return -1;
2335 if (!newline || (exit_loop && count<nread))
2337 if ((total_read + count) >= control_file_size)
2339 /* no newline at end of control file */
2340 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_INVALID));
2341 return -1;
2344 /* We didn't end on a newline or we exited loop prematurely.
2345 Either way, re-read the remainder. */
2346 count = last_newline;
2347 lseek(playlist->control_fd, total_read+count, SEEK_SET);
2350 total_read += count;
2352 if (first)
2353 /* still looking for header */
2354 nread = read(playlist->control_fd, buffer,
2355 PLAYLIST_COMMAND_SIZE<buflen?PLAYLIST_COMMAND_SIZE:buflen);
2356 else
2357 nread = read(playlist->control_fd, buffer, buflen);
2359 /* Terminate on EOF */
2360 if(nread <= 0)
2362 break;
2366 #ifdef HAVE_DIRCACHE
2367 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
2368 #endif
2370 return 0;
2374 * Add track to in_ram playlist. Used when playing directories.
2376 int playlist_add(const char *filename)
2378 struct playlist_info* playlist = &current_playlist;
2379 int len = strlen(filename);
2381 if((len+1 > playlist->buffer_size - playlist->buffer_end_pos) ||
2382 (playlist->amount >= playlist->max_playlist_size))
2384 display_buffer_full();
2385 return -1;
2388 playlist->indices[playlist->amount] = playlist->buffer_end_pos;
2389 #ifdef HAVE_DIRCACHE
2390 playlist->filenames[playlist->amount] = NULL;
2391 #endif
2392 playlist->amount++;
2394 strcpy(&playlist->buffer[playlist->buffer_end_pos], filename);
2395 playlist->buffer_end_pos += len;
2396 playlist->buffer[playlist->buffer_end_pos++] = '\0';
2398 return 0;
2401 /* shuffle newly created playlist using random seed. */
2402 int playlist_shuffle(int random_seed, int start_index)
2404 struct playlist_info* playlist = &current_playlist;
2406 bool start_current = false;
2408 if (start_index >= 0 && global_settings.play_selected)
2410 /* store the seek position before the shuffle */
2411 playlist->index = playlist->first_index = start_index;
2412 start_current = true;
2415 randomise_playlist(playlist, random_seed, start_current, true);
2417 return playlist->index;
2420 /* start playing current playlist at specified index/offset */
2421 void playlist_start(int start_index, int offset)
2423 struct playlist_info* playlist = &current_playlist;
2425 /* Cancel FM radio selection as previous music. For cases where we start
2426 playback without going to the WPS, such as playlist insert.. or
2427 playlist catalog. */
2428 previous_music_is_wps();
2430 playlist->index = start_index;
2432 #if CONFIG_CODEC != SWCODEC
2433 talk_buffer_steal(); /* will use the mp3 buffer */
2434 #endif
2436 playlist->started = true;
2437 sync_control(playlist, false);
2438 audio_play(offset);
2441 /* Returns false if 'steps' is out of bounds, else true */
2442 bool playlist_check(int steps)
2444 struct playlist_info* playlist = &current_playlist;
2446 /* always allow folder navigation */
2447 if (global_settings.next_folder && playlist->in_ram)
2448 return true;
2450 int index = get_next_index(playlist, steps, -1);
2452 if (index < 0 && steps >= 0 && global_settings.repeat_mode == REPEAT_SHUFFLE)
2453 index = get_next_index(playlist, steps, REPEAT_ALL);
2455 return (index >= 0);
2458 /* get trackname of track that is "steps" away from current playing track.
2459 NULL is used to identify end of playlist */
2460 const char* playlist_peek(int steps, char* buf, size_t buf_size)
2462 struct playlist_info* playlist = &current_playlist;
2463 int seek;
2464 char *temp_ptr;
2465 int index;
2466 bool control_file;
2468 index = get_next_index(playlist, steps, -1);
2469 if (index < 0)
2470 return NULL;
2472 control_file = playlist->indices[index] & PLAYLIST_INSERT_TYPE_MASK;
2473 seek = playlist->indices[index] & PLAYLIST_SEEK_MASK;
2475 if (get_filename(playlist, index, seek, control_file, buf,
2476 buf_size) < 0)
2477 return NULL;
2479 temp_ptr = buf;
2481 if (!playlist->in_ram || control_file)
2483 /* remove bogus dirs from beginning of path
2484 (workaround for buggy playlist creation tools) */
2485 while (temp_ptr)
2487 if (file_exists(temp_ptr))
2488 break;
2490 temp_ptr = strchr(temp_ptr+1, '/');
2493 if (!temp_ptr)
2495 /* Even though this is an invalid file, we still need to pass a
2496 file name to the caller because NULL is used to indicate end
2497 of playlist */
2498 return buf;
2502 return temp_ptr;
2506 * Update indices as track has changed
2508 int playlist_next(int steps)
2510 struct playlist_info* playlist = &current_playlist;
2511 int index;
2513 if ( (steps > 0)
2514 #ifdef AB_REPEAT_ENABLE
2515 && (global_settings.repeat_mode != REPEAT_AB)
2516 #endif
2517 && (global_settings.repeat_mode != REPEAT_ONE) )
2519 int i, j;
2521 /* We need to delete all the queued songs */
2522 for (i=0, j=steps; i<j; i++)
2524 index = get_next_index(playlist, i, -1);
2526 if (playlist->indices[index] & PLAYLIST_QUEUE_MASK)
2528 remove_track_from_playlist(playlist, index, true);
2529 steps--; /* one less track */
2534 index = get_next_index(playlist, steps, -1);
2536 if (index < 0)
2538 /* end of playlist... or is it */
2539 if (global_settings.repeat_mode == REPEAT_SHUFFLE &&
2540 playlist->amount > 1)
2542 /* Repeat shuffle mode. Re-shuffle playlist and resume play */
2543 playlist->first_index = 0;
2544 sort_playlist(playlist, false, false);
2545 randomise_playlist(playlist, current_tick, false, true);
2546 #if CONFIG_CODEC != SWCODEC
2547 playlist_start(0, 0);
2548 #endif
2549 playlist->index = 0;
2550 index = 0;
2552 else if (playlist->in_ram && global_settings.next_folder)
2554 index = create_and_play_dir(steps, true);
2556 if (index >= 0)
2558 playlist->index = index;
2562 return index;
2565 playlist->index = index;
2567 if (playlist->last_insert_pos >= 0 && steps > 0)
2569 /* check to see if we've gone beyond the last inserted track */
2570 int cur = rotate_index(playlist, index);
2571 int last_pos = rotate_index(playlist, playlist->last_insert_pos);
2573 if (cur > last_pos)
2575 /* reset last inserted track */
2576 playlist->last_insert_pos = -1;
2578 if (playlist->control_fd >= 0)
2580 int result = update_control(playlist, PLAYLIST_COMMAND_RESET,
2581 -1, -1, NULL, NULL, NULL);
2583 if (result < 0)
2584 return result;
2586 sync_control(playlist, false);
2591 return index;
2594 /* try playing next or previous folder */
2595 bool playlist_next_dir(int direction)
2597 /* not to mess up real playlists */
2598 if(!current_playlist.in_ram)
2599 return false;
2601 return create_and_play_dir(direction, false) >= 0;
2604 /* Get resume info for current playing song. If return value is -1 then
2605 settings shouldn't be saved. */
2606 int playlist_get_resume_info(int *resume_index)
2608 struct playlist_info* playlist = &current_playlist;
2610 *resume_index = playlist->index;
2612 return 0;
2615 /* Update resume info for current playing song. Returns -1 on error. */
2616 int playlist_update_resume_info(const struct mp3entry* id3)
2618 struct playlist_info* playlist = &current_playlist;
2620 if (id3)
2622 if (global_status.resume_index != playlist->index ||
2623 global_status.resume_offset != id3->offset)
2625 global_status.resume_index = playlist->index;
2626 global_status.resume_offset = id3->offset;
2627 status_save();
2630 else
2632 global_status.resume_index = -1;
2633 global_status.resume_offset = -1;
2634 status_save();
2637 return 0;
2640 /* Returns index of current playing track for display purposes. This value
2641 should not be used for resume purposes as it doesn't represent the actual
2642 index into the playlist */
2643 int playlist_get_display_index(void)
2645 struct playlist_info* playlist = &current_playlist;
2647 /* first_index should always be index 0 for display purposes */
2648 int index = rotate_index(playlist, playlist->index);
2650 return (index+1);
2653 /* returns number of tracks in current playlist */
2654 int playlist_amount(void)
2656 return playlist_amount_ex(NULL);
2658 /* set playlist->last_shuffle_start to playlist->amount for
2659 PLAYLIST_INSERT_LAST_SHUFFLED command purposes*/
2660 void playlist_set_last_shuffled_start(void)
2662 struct playlist_info* playlist = &current_playlist;
2663 playlist->last_shuffled_start = playlist->amount;
2666 * Create a new playlist If playlist is not NULL then we're loading a
2667 * playlist off disk for viewing/editing. The index_buffer is used to store
2668 * playlist indices (required for and only used if !current playlist). The
2669 * temp_buffer (if not NULL) is used as a scratchpad when loading indices.
2671 int playlist_create_ex(struct playlist_info* playlist,
2672 const char* dir, const char* file,
2673 void* index_buffer, int index_buffer_size,
2674 void* temp_buffer, int temp_buffer_size)
2676 if (!playlist)
2677 playlist = &current_playlist;
2678 else
2680 /* Initialize playlist structure */
2681 int r = rand() % 10;
2682 playlist->current = false;
2684 /* Use random name for control file */
2685 snprintf(playlist->control_filename, sizeof(playlist->control_filename),
2686 "%s.%d", PLAYLIST_CONTROL_FILE, r);
2687 playlist->fd = -1;
2688 playlist->control_fd = -1;
2690 if (index_buffer)
2692 int num_indices = index_buffer_size / sizeof(int);
2694 #ifdef HAVE_DIRCACHE
2695 num_indices /= 2;
2696 #endif
2697 if (num_indices > global_settings.max_files_in_playlist)
2698 num_indices = global_settings.max_files_in_playlist;
2700 playlist->max_playlist_size = num_indices;
2701 playlist->indices = index_buffer;
2702 #ifdef HAVE_DIRCACHE
2703 playlist->filenames = (const struct dircache_entry **)
2704 &playlist->indices[num_indices];
2705 #endif
2707 else
2709 playlist->max_playlist_size = current_playlist.max_playlist_size;
2710 playlist->indices = current_playlist.indices;
2711 #ifdef HAVE_DIRCACHE
2712 playlist->filenames = current_playlist.filenames;
2713 #endif
2716 playlist->buffer_size = 0;
2717 playlist->buffer = NULL;
2718 playlist->control_mutex = &created_playlist_mutex;
2721 new_playlist(playlist, dir, file);
2723 if (file)
2724 /* load the playlist file */
2725 add_indices_to_playlist(playlist, temp_buffer, temp_buffer_size);
2727 return 0;
2731 * Set the specified playlist as the current.
2732 * NOTE: You will get undefined behaviour if something is already playing so
2733 * remember to stop before calling this. Also, this call will
2734 * effectively close your playlist, making it unusable.
2736 int playlist_set_current(struct playlist_info* playlist)
2738 if (!playlist || (check_control(playlist) < 0))
2739 return -1;
2741 empty_playlist(&current_playlist, false);
2743 strlcpy(current_playlist.filename, playlist->filename,
2744 sizeof(current_playlist.filename));
2746 current_playlist.utf8 = playlist->utf8;
2747 current_playlist.fd = playlist->fd;
2749 close(playlist->control_fd);
2750 close(current_playlist.control_fd);
2751 remove(current_playlist.control_filename);
2752 if (rename(playlist->control_filename,
2753 current_playlist.control_filename) < 0)
2754 return -1;
2755 current_playlist.control_fd = open(current_playlist.control_filename,
2756 O_RDWR);
2757 if (current_playlist.control_fd < 0)
2758 return -1;
2759 current_playlist.control_created = true;
2761 current_playlist.dirlen = playlist->dirlen;
2763 if (playlist->indices && playlist->indices != current_playlist.indices)
2765 memcpy(current_playlist.indices, playlist->indices,
2766 playlist->max_playlist_size*sizeof(int));
2767 #ifdef HAVE_DIRCACHE
2768 memcpy(current_playlist.filenames, playlist->filenames,
2769 playlist->max_playlist_size*sizeof(int));
2770 #endif
2773 current_playlist.first_index = playlist->first_index;
2774 current_playlist.amount = playlist->amount;
2775 current_playlist.last_insert_pos = playlist->last_insert_pos;
2776 current_playlist.seed = playlist->seed;
2777 current_playlist.shuffle_modified = playlist->shuffle_modified;
2778 current_playlist.deleted = playlist->deleted;
2779 current_playlist.num_inserted_tracks = playlist->num_inserted_tracks;
2781 memcpy(current_playlist.control_cache, playlist->control_cache,
2782 sizeof(current_playlist.control_cache));
2783 current_playlist.num_cached = playlist->num_cached;
2784 current_playlist.pending_control_sync = playlist->pending_control_sync;
2786 return 0;
2788 struct playlist_info *playlist_get_current(void)
2790 return &current_playlist;
2793 * Close files and delete control file for non-current playlist.
2795 void playlist_close(struct playlist_info* playlist)
2797 if (!playlist)
2798 return;
2800 if (playlist->fd >= 0)
2801 close(playlist->fd);
2803 if (playlist->control_fd >= 0)
2804 close(playlist->control_fd);
2806 if (playlist->control_created)
2807 remove(playlist->control_filename);
2810 void playlist_sync(struct playlist_info* playlist)
2812 if (!playlist)
2813 playlist = &current_playlist;
2815 sync_control(playlist, false);
2816 if ((audio_status() & AUDIO_STATUS_PLAY) && playlist->started)
2817 audio_flush_and_reload_tracks();
2819 #ifdef HAVE_DIRCACHE
2820 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
2821 #endif
2825 * Insert track into playlist at specified position (or one of the special
2826 * positions). Returns position where track was inserted or -1 if error.
2828 int playlist_insert_track(struct playlist_info* playlist, const char *filename,
2829 int position, bool queue, bool sync)
2831 int result;
2833 if (!playlist)
2834 playlist = &current_playlist;
2836 if (check_control(playlist) < 0)
2838 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
2839 return -1;
2842 result = add_track_to_playlist(playlist, filename, position, queue, -1);
2844 /* Check if we want manually sync later. For example when adding
2845 * bunch of files from tagcache, syncing after every file wouldn't be
2846 * a good thing to do. */
2847 if (sync && result >= 0)
2848 playlist_sync(playlist);
2850 return result;
2854 * Insert all tracks from specified directory into playlist.
2856 int playlist_insert_directory(struct playlist_info* playlist,
2857 const char *dirname, int position, bool queue,
2858 bool recurse)
2860 int result;
2861 unsigned char *count_str;
2862 struct directory_search_context context;
2864 if (!playlist)
2865 playlist = &current_playlist;
2867 if (check_control(playlist) < 0)
2869 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
2870 return -1;
2873 if (position == PLAYLIST_REPLACE)
2875 if (playlist_remove_all_tracks(playlist) == 0)
2876 position = PLAYLIST_INSERT_LAST;
2877 else
2878 return -1;
2881 if (queue)
2882 count_str = ID2P(LANG_PLAYLIST_QUEUE_COUNT);
2883 else
2884 count_str = ID2P(LANG_PLAYLIST_INSERT_COUNT);
2886 display_playlist_count(0, count_str, false);
2888 context.playlist = playlist;
2889 context.position = position;
2890 context.queue = queue;
2891 context.count = 0;
2893 cpu_boost(true);
2895 result = playlist_directory_tracksearch(dirname, recurse,
2896 directory_search_callback, &context);
2898 sync_control(playlist, false);
2900 cpu_boost(false);
2902 display_playlist_count(context.count, count_str, true);
2904 if ((audio_status() & AUDIO_STATUS_PLAY) && playlist->started)
2905 audio_flush_and_reload_tracks();
2907 #ifdef HAVE_DIRCACHE
2908 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
2909 #endif
2911 return result;
2915 * Insert all tracks from specified playlist into dynamic playlist.
2917 int playlist_insert_playlist(struct playlist_info* playlist, const char *filename,
2918 int position, bool queue)
2920 int fd;
2921 int max;
2922 char *temp_ptr;
2923 const char *dir;
2924 unsigned char *count_str;
2925 char temp_buf[MAX_PATH+1];
2926 char trackname[MAX_PATH+1];
2927 int count = 0;
2928 int result = 0;
2929 bool utf8 = is_m3u8(filename);
2931 if (!playlist)
2932 playlist = &current_playlist;
2934 if (check_control(playlist) < 0)
2936 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
2937 return -1;
2940 fd = open_utf8(filename, O_RDONLY);
2941 if (fd < 0)
2943 splash(HZ*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR));
2944 return -1;
2947 /* we need the directory name for formatting purposes */
2948 dir = filename;
2950 temp_ptr = strrchr(filename+1,'/');
2951 if (temp_ptr)
2952 *temp_ptr = 0;
2953 else
2954 dir = "/";
2956 if (queue)
2957 count_str = ID2P(LANG_PLAYLIST_QUEUE_COUNT);
2958 else
2959 count_str = ID2P(LANG_PLAYLIST_INSERT_COUNT);
2961 display_playlist_count(count, count_str, false);
2963 if (position == PLAYLIST_REPLACE)
2965 if (playlist_remove_all_tracks(playlist) == 0)
2966 position = PLAYLIST_INSERT_LAST;
2967 else return -1;
2970 cpu_boost(true);
2972 while ((max = read_line(fd, temp_buf, sizeof(temp_buf))) > 0)
2974 /* user abort */
2975 if (action_userabort(TIMEOUT_NOBLOCK))
2976 break;
2978 if (temp_buf[0] != '#' && temp_buf[0] != '\0')
2980 int insert_pos;
2982 if (!utf8)
2984 /* Use trackname as a temporay buffer. Note that trackname must
2985 * be as large as temp_buf.
2987 max = convert_m3u(temp_buf, max, sizeof(temp_buf), trackname);
2990 /* we need to format so that relative paths are correctly
2991 handled */
2992 if (format_track_path(trackname, temp_buf, sizeof(trackname), max,
2993 dir) < 0)
2995 result = -1;
2996 break;
2999 insert_pos = add_track_to_playlist(playlist, trackname, position,
3000 queue, -1);
3002 if (insert_pos < 0)
3004 result = -1;
3005 break;
3008 /* Make sure tracks are inserted in correct order if user
3009 requests INSERT_FIRST */
3010 if (position == PLAYLIST_INSERT_FIRST || position >= 0)
3011 position = insert_pos + 1;
3013 count++;
3015 if ((count%PLAYLIST_DISPLAY_COUNT) == 0)
3017 display_playlist_count(count, count_str, false);
3019 if (count == PLAYLIST_DISPLAY_COUNT &&
3020 (audio_status() & AUDIO_STATUS_PLAY) &&
3021 playlist->started)
3022 audio_flush_and_reload_tracks();
3026 /* let the other threads work */
3027 yield();
3030 close(fd);
3032 if (temp_ptr)
3033 *temp_ptr = '/';
3035 sync_control(playlist, false);
3037 cpu_boost(false);
3039 display_playlist_count(count, count_str, true);
3041 if ((audio_status() & AUDIO_STATUS_PLAY) && playlist->started)
3042 audio_flush_and_reload_tracks();
3044 #ifdef HAVE_DIRCACHE
3045 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
3046 #endif
3048 return result;
3052 * Delete track at specified index. If index is PLAYLIST_DELETE_CURRENT then
3053 * we want to delete the current playing track.
3055 int playlist_delete(struct playlist_info* playlist, int index)
3057 int result = 0;
3059 if (!playlist)
3060 playlist = &current_playlist;
3062 if (check_control(playlist) < 0)
3064 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
3065 return -1;
3068 if (index == PLAYLIST_DELETE_CURRENT)
3069 index = playlist->index;
3071 result = remove_track_from_playlist(playlist, index, true);
3073 if (result != -1 && (audio_status() & AUDIO_STATUS_PLAY) &&
3074 playlist->started)
3075 audio_flush_and_reload_tracks();
3077 return result;
3081 * Move track at index to new_index. Tracks between the two are shifted
3082 * appropriately. Returns 0 on success and -1 on failure.
3084 int playlist_move(struct playlist_info* playlist, int index, int new_index)
3086 int result;
3087 int seek;
3088 bool control_file;
3089 bool queue;
3090 bool current = false;
3091 int r;
3092 char filename[MAX_PATH];
3094 if (!playlist)
3095 playlist = &current_playlist;
3097 if (check_control(playlist) < 0)
3099 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
3100 return -1;
3103 if (index == new_index)
3104 return -1;
3106 if (index == playlist->index)
3107 /* Moving the current track */
3108 current = true;
3110 control_file = playlist->indices[index] & PLAYLIST_INSERT_TYPE_MASK;
3111 queue = playlist->indices[index] & PLAYLIST_QUEUE_MASK;
3112 seek = playlist->indices[index] & PLAYLIST_SEEK_MASK;
3114 if (get_filename(playlist, index, seek, control_file, filename,
3115 sizeof(filename)) < 0)
3116 return -1;
3118 /* We want to insert the track at the position that was specified by
3119 new_index. This may be different then new_index because of the
3120 shifting that will occur after the delete.
3121 We calculate this before we do the remove as it depends on the
3122 size of the playlist before the track removal */
3123 r = rotate_index(playlist, new_index);
3125 /* Delete track from original position */
3126 result = remove_track_from_playlist(playlist, index, true);
3128 if (result != -1)
3130 if (r == 0)
3131 /* First index */
3132 new_index = PLAYLIST_PREPEND;
3133 else if (r == playlist->amount)
3134 /* Append */
3135 new_index = PLAYLIST_INSERT_LAST;
3136 else
3137 /* Calculate index of desired position */
3138 new_index = (r+playlist->first_index)%playlist->amount;
3140 result = add_track_to_playlist(playlist, filename, new_index, queue,
3141 -1);
3143 if (result != -1)
3145 if (current)
3147 /* Moved the current track */
3148 switch (new_index)
3150 case PLAYLIST_PREPEND:
3151 playlist->index = playlist->first_index;
3152 break;
3153 case PLAYLIST_INSERT_LAST:
3154 playlist->index = playlist->first_index - 1;
3155 if (playlist->index < 0)
3156 playlist->index += playlist->amount;
3157 break;
3158 default:
3159 playlist->index = new_index;
3160 break;
3164 if ((audio_status() & AUDIO_STATUS_PLAY) && playlist->started)
3165 audio_flush_and_reload_tracks();
3169 #ifdef HAVE_DIRCACHE
3170 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
3171 #endif
3173 return result;
3176 /* shuffle currently playing playlist */
3177 int playlist_randomise(struct playlist_info* playlist, unsigned int seed,
3178 bool start_current)
3180 int result;
3182 if (!playlist)
3183 playlist = &current_playlist;
3185 check_control(playlist);
3187 result = randomise_playlist(playlist, seed, start_current, true);
3189 if (result != -1 && (audio_status() & AUDIO_STATUS_PLAY) &&
3190 playlist->started)
3191 audio_flush_and_reload_tracks();
3193 return result;
3196 /* sort currently playing playlist */
3197 int playlist_sort(struct playlist_info* playlist, bool start_current)
3199 int result;
3201 if (!playlist)
3202 playlist = &current_playlist;
3204 check_control(playlist);
3206 result = sort_playlist(playlist, start_current, true);
3208 if (result != -1 && (audio_status() & AUDIO_STATUS_PLAY) &&
3209 playlist->started)
3210 audio_flush_and_reload_tracks();
3212 return result;
3215 /* returns true if playlist has been modified */
3216 bool playlist_modified(const struct playlist_info* playlist)
3218 if (!playlist)
3219 playlist = &current_playlist;
3221 if (playlist->shuffle_modified ||
3222 playlist->deleted ||
3223 playlist->num_inserted_tracks > 0)
3224 return true;
3226 return false;
3229 /* returns index of first track in playlist */
3230 int playlist_get_first_index(const struct playlist_info* playlist)
3232 if (!playlist)
3233 playlist = &current_playlist;
3235 return playlist->first_index;
3238 /* returns shuffle seed of playlist */
3239 int playlist_get_seed(const struct playlist_info* playlist)
3241 if (!playlist)
3242 playlist = &current_playlist;
3244 return playlist->seed;
3247 /* returns number of tracks in playlist (includes queued/inserted tracks) */
3248 int playlist_amount_ex(const struct playlist_info* playlist)
3250 if (!playlist)
3251 playlist = &current_playlist;
3253 return playlist->amount;
3256 /* returns full path of playlist (minus extension) */
3257 char *playlist_name(const struct playlist_info* playlist, char *buf,
3258 int buf_size)
3260 char *sep;
3262 if (!playlist)
3263 playlist = &current_playlist;
3265 strlcpy(buf, playlist->filename+playlist->dirlen, buf_size);
3267 if (!buf[0])
3268 return NULL;
3270 /* Remove extension */
3271 sep = strrchr(buf, '.');
3272 if (sep)
3273 *sep = 0;
3275 return buf;
3278 /* returns the playlist filename */
3279 char *playlist_get_name(const struct playlist_info* playlist, char *buf,
3280 int buf_size)
3282 if (!playlist)
3283 playlist = &current_playlist;
3285 strlcpy(buf, playlist->filename, buf_size);
3287 if (!buf[0])
3288 return NULL;
3290 return buf;
3293 /* Fills info structure with information about track at specified index.
3294 Returns 0 on success and -1 on failure */
3295 int playlist_get_track_info(struct playlist_info* playlist, int index,
3296 struct playlist_track_info* info)
3298 int seek;
3299 bool control_file;
3301 if (!playlist)
3302 playlist = &current_playlist;
3304 if (index < 0 || index >= playlist->amount)
3305 return -1;
3307 control_file = playlist->indices[index] & PLAYLIST_INSERT_TYPE_MASK;
3308 seek = playlist->indices[index] & PLAYLIST_SEEK_MASK;
3310 if (get_filename(playlist, index, seek, control_file, info->filename,
3311 sizeof(info->filename)) < 0)
3312 return -1;
3314 info->attr = 0;
3316 if (control_file)
3318 if (playlist->indices[index] & PLAYLIST_QUEUE_MASK)
3319 info->attr |= PLAYLIST_ATTR_QUEUED;
3320 else
3321 info->attr |= PLAYLIST_ATTR_INSERTED;
3325 if (playlist->indices[index] & PLAYLIST_SKIPPED)
3326 info->attr |= PLAYLIST_ATTR_SKIPPED;
3328 info->index = index;
3329 info->display_index = rotate_index(playlist, index) + 1;
3331 return 0;
3334 /* save the current dynamic playlist to specified file */
3335 int playlist_save(struct playlist_info* playlist, char *filename)
3337 int fd;
3338 int i, index;
3339 int count = 0;
3340 char path[MAX_PATH+1];
3341 char tmp_buf[MAX_PATH+1];
3342 int result = 0;
3343 bool overwrite_current = false;
3344 int* index_buf = NULL;
3346 if (!playlist)
3347 playlist = &current_playlist;
3349 if (playlist->amount <= 0)
3350 return -1;
3352 /* use current working directory as base for pathname */
3353 if (format_track_path(path, filename, sizeof(tmp_buf),
3354 strlen(filename)+1, getcwd(NULL, -1)) < 0)
3355 return -1;
3357 if (!strncmp(playlist->filename, path, strlen(path)))
3359 /* Attempting to overwrite current playlist file.*/
3361 if (playlist->buffer_size < (int)(playlist->amount * sizeof(int)))
3363 /* not enough buffer space to store updated indices */
3364 splash(HZ*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR));
3365 return -1;
3368 /* in_ram buffer is unused for m3u files so we'll use for storing
3369 updated indices */
3370 index_buf = (int*)playlist->buffer;
3372 /* use temporary pathname */
3373 snprintf(path, sizeof(path), "%s_temp", playlist->filename);
3374 overwrite_current = true;
3377 if (is_m3u8(path))
3379 fd = open_utf8(path, O_CREAT|O_WRONLY|O_TRUNC);
3381 else
3383 /* some applications require a BOM to read the file properly */
3384 fd = open(path, O_CREAT|O_WRONLY|O_TRUNC, 0666);
3386 if (fd < 0)
3388 splash(HZ*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR));
3389 return -1;
3392 display_playlist_count(count, ID2P(LANG_PLAYLIST_SAVE_COUNT), false);
3394 cpu_boost(true);
3396 index = playlist->first_index;
3397 for (i=0; i<playlist->amount; i++)
3399 bool control_file;
3400 bool queue;
3401 int seek;
3403 /* user abort */
3404 if (action_userabort(TIMEOUT_NOBLOCK))
3406 result = -1;
3407 break;
3410 control_file = playlist->indices[index] & PLAYLIST_INSERT_TYPE_MASK;
3411 queue = playlist->indices[index] & PLAYLIST_QUEUE_MASK;
3412 seek = playlist->indices[index] & PLAYLIST_SEEK_MASK;
3414 /* Don't save queued files */
3415 if (!queue)
3417 if (get_filename(playlist, index, seek, control_file, tmp_buf,
3418 MAX_PATH+1) < 0)
3420 result = -1;
3421 break;
3424 if (overwrite_current)
3425 index_buf[count] = lseek(fd, 0, SEEK_CUR);
3427 if (fdprintf(fd, "%s\n", tmp_buf) < 0)
3429 splash(HZ*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR));
3430 result = -1;
3431 break;
3434 count++;
3436 if ((count % PLAYLIST_DISPLAY_COUNT) == 0)
3437 display_playlist_count(count, ID2P(LANG_PLAYLIST_SAVE_COUNT),
3438 false);
3440 yield();
3443 index = (index+1)%playlist->amount;
3446 display_playlist_count(count, ID2P(LANG_PLAYLIST_SAVE_COUNT), true);
3448 close(fd);
3450 if (overwrite_current && result >= 0)
3452 result = -1;
3454 mutex_lock(playlist->control_mutex);
3456 /* Replace the current playlist with the new one and update indices */
3457 close(playlist->fd);
3458 if (remove(playlist->filename) >= 0)
3460 if (rename(path, playlist->filename) >= 0)
3462 playlist->fd = open_utf8(playlist->filename, O_RDONLY);
3463 if (playlist->fd >= 0)
3465 index = playlist->first_index;
3466 for (i=0, count=0; i<playlist->amount; i++)
3468 if (!(playlist->indices[index] & PLAYLIST_QUEUE_MASK))
3470 playlist->indices[index] = index_buf[count];
3471 count++;
3473 index = (index+1)%playlist->amount;
3476 /* we need to recreate control because inserted tracks are
3477 now part of the playlist and shuffle has been
3478 invalidated */
3479 result = recreate_control(playlist);
3484 mutex_unlock(playlist->control_mutex);
3488 cpu_boost(false);
3490 return result;
3494 * Search specified directory for tracks and notify via callback. May be
3495 * called recursively.
3497 int playlist_directory_tracksearch(const char* dirname, bool recurse,
3498 int (*callback)(char*, void*),
3499 void* context)
3501 char buf[MAX_PATH+1];
3502 int result = 0;
3503 int num_files = 0;
3504 int i;
3505 struct entry *files;
3506 struct tree_context* tc = tree_get_context();
3507 int old_dirfilter = *(tc->dirfilter);
3509 if (!callback)
3510 return -1;
3512 /* use the tree browser dircache to load files */
3513 *(tc->dirfilter) = SHOW_ALL;
3515 if (ft_load(tc, dirname) < 0)
3517 splash(HZ*2, ID2P(LANG_PLAYLIST_DIRECTORY_ACCESS_ERROR));
3518 *(tc->dirfilter) = old_dirfilter;
3519 return -1;
3522 files = (struct entry*) tc->dircache;
3523 num_files = tc->filesindir;
3525 /* we've overwritten the dircache so tree browser will need to be
3526 reloaded */
3527 reload_directory();
3529 for (i=0; i<num_files; i++)
3531 /* user abort */
3532 if (action_userabort(TIMEOUT_NOBLOCK))
3534 result = -1;
3535 break;
3538 if (files[i].attr & ATTR_DIRECTORY)
3540 if (recurse)
3542 /* recursively add directories */
3543 snprintf(buf, sizeof(buf), "%s/%s",
3544 dirname[1]? dirname: "", files[i].name);
3545 result = playlist_directory_tracksearch(buf, recurse,
3546 callback, context);
3547 if (result < 0)
3548 break;
3550 /* we now need to reload our current directory */
3551 if(ft_load(tc, dirname) < 0)
3553 result = -1;
3554 break;
3557 files = (struct entry*) tc->dircache;
3558 num_files = tc->filesindir;
3559 if (!num_files)
3561 result = -1;
3562 break;
3565 else
3566 continue;
3568 else if ((files[i].attr & FILE_ATTR_MASK) == FILE_ATTR_AUDIO)
3570 snprintf(buf, sizeof(buf), "%s/%s",
3571 dirname[1]? dirname: "", files[i].name);
3573 if (callback(buf, context) != 0)
3575 result = -1;
3576 break;
3579 /* let the other threads work */
3580 yield();
3584 /* restore dirfilter */
3585 *(tc->dirfilter) = old_dirfilter;
3587 return result;