Reverting parts of r19760 that was mistakenly committed.
[kugel-rb.git] / apps / playlist.c
blob38f685161f756707ab94855badb0d77585223650
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 <string.h>
73 #include <ctype.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 "sprintf.h"
80 #include "debug.h"
81 #include "audio.h"
82 #include "lcd.h"
83 #include "kernel.h"
84 #include "settings.h"
85 #include "status.h"
86 #include "applimits.h"
87 #include "screens.h"
88 #include "buffer.h"
89 #include "misc.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
100 #include "lang.h"
101 #include "talk.h"
102 #include "splash.h"
103 #include "rbunicode.h"
104 #include "root_menu.h"
106 #define PLAYLIST_CONTROL_FILE ROCKBOX_DIR "/.playlist_control"
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;
147 static char now_playing[MAX_PATH+1];
149 static void empty_playlist(struct playlist_info* playlist, bool resume);
150 static void new_playlist(struct playlist_info* playlist, const char *dir,
151 const char *file);
152 static void create_control(struct playlist_info* playlist);
153 static int check_control(struct playlist_info* playlist);
154 static int recreate_control(struct playlist_info* playlist);
155 static void update_playlist_filename(struct playlist_info* playlist,
156 const char *dir, const char *file);
157 static int add_indices_to_playlist(struct playlist_info* playlist,
158 char* buffer, size_t buflen);
159 static int add_track_to_playlist(struct playlist_info* playlist,
160 const char *filename, int position,
161 bool queue, int seek_pos);
162 static int directory_search_callback(char* filename, void* context);
163 static int remove_track_from_playlist(struct playlist_info* playlist,
164 int position, bool write);
165 static int randomise_playlist(struct playlist_info* playlist,
166 unsigned int seed, bool start_current,
167 bool write);
168 static int sort_playlist(struct playlist_info* playlist, bool start_current,
169 bool write);
170 static int get_next_index(const struct playlist_info* playlist, int steps,
171 int repeat_mode);
172 static void find_and_set_playlist_index(struct playlist_info* playlist,
173 unsigned int seek);
174 static int compare(const void* p1, const void* p2);
175 static int get_filename(struct playlist_info* playlist, int index, int seek,
176 bool control_file, char *buf, int buf_length);
177 static int get_next_directory(char *dir);
178 static int get_next_dir(char *dir, bool is_forward, bool recursion);
179 static int get_previous_directory(char *dir);
180 static int check_subdir_for_music(char *dir, const char *subdir, bool recurse);
181 static int format_track_path(char *dest, char *src, int buf_length, int max,
182 const char *dir);
183 static void display_playlist_count(int count, const unsigned char *fmt,
184 bool final);
185 static void display_buffer_full(void);
186 static int flush_cached_control(struct playlist_info* playlist);
187 static int update_control(struct playlist_info* playlist,
188 enum playlist_command command, int i1, int i2,
189 const char* s1, const char* s2, void* data);
190 static void sync_control(struct playlist_info* playlist, bool force);
191 static int rotate_index(const struct playlist_info* playlist, int index);
193 #ifdef HAVE_DIRCACHE
194 #define PLAYLIST_LOAD_POINTERS 1
196 static struct event_queue playlist_queue;
197 static long playlist_stack[(DEFAULT_STACK_SIZE + 0x800)/sizeof(long)];
198 static const char playlist_thread_name[] = "playlist cachectrl";
199 #endif
201 /* Check if the filename suggests M3U or M3U8 format. */
202 static bool is_m3u8(const char* filename)
204 int len = strlen(filename);
206 /* Default to M3U8 unless explicitly told otherwise. */
207 return !(len > 4 && strcasecmp(&filename[len - 4], ".m3u") == 0);
211 /* Convert a filename in an M3U playlist to UTF-8.
213 * buf - the filename to convert; can contain more than one line from the
214 * playlist.
215 * buf_len - amount of buf that is used.
216 * buf_max - total size of buf.
217 * temp - temporary conversion buffer, at least buf_max bytes.
219 * Returns the length of the converted filename.
221 static int convert_m3u(char* buf, int buf_len, int buf_max, char* temp)
223 int i = 0;
224 char* dest;
226 /* Locate EOL. */
227 while ((buf[i] != '\n') && (buf[i] != '\r') && (i < buf_len))
229 i++;
232 /* Work back killing white space. */
233 while ((i > 0) && isspace(buf[i - 1]))
235 i--;
238 buf_len = i;
239 dest = temp;
241 /* Convert char by char, so as to not overflow temp (iso_decode should
242 * preferably handle this). No more than 4 bytes should be generated for
243 * each input char.
245 for (i = 0; i < buf_len && dest < (temp + buf_max - 4); i++)
247 dest = iso_decode(&buf[i], dest, -1, 1);
250 *dest = 0;
251 strcpy(buf, temp);
252 return dest - temp;
256 * remove any files and indices associated with the playlist
258 static void empty_playlist(struct playlist_info* playlist, bool resume)
260 playlist->filename[0] = '\0';
261 playlist->utf8 = true;
263 if(playlist->fd >= 0)
264 /* If there is an already open playlist, close it. */
265 close(playlist->fd);
266 playlist->fd = -1;
268 if(playlist->control_fd >= 0)
269 close(playlist->control_fd);
270 playlist->control_fd = -1;
271 playlist->control_created = false;
273 playlist->in_ram = false;
275 if (playlist->buffer)
276 playlist->buffer[0] = 0;
278 playlist->buffer_end_pos = 0;
280 playlist->index = 0;
281 playlist->first_index = 0;
282 playlist->amount = 0;
283 playlist->last_insert_pos = -1;
284 playlist->seed = 0;
285 playlist->shuffle_modified = false;
286 playlist->deleted = false;
287 playlist->num_inserted_tracks = 0;
288 playlist->started = false;
290 playlist->num_cached = 0;
291 playlist->pending_control_sync = false;
293 if (!resume && playlist->current)
295 /* start with fresh playlist control file when starting new
296 playlist */
297 create_control(playlist);
302 * Initialize a new playlist for viewing/editing/playing. dir is the
303 * directory where the playlist is located and file is the filename.
305 static void new_playlist(struct playlist_info* playlist, const char *dir,
306 const char *file)
308 const char *fileused = file;
309 const char *dirused = dir;
310 empty_playlist(playlist, false);
312 if (!fileused)
314 fileused = "";
316 if (dirused && playlist->current) /* !current cannot be in_ram */
317 playlist->in_ram = true;
318 else
319 dirused = ""; /* empty playlist */
322 update_playlist_filename(playlist, dirused, fileused);
324 if (playlist->control_fd >= 0)
326 update_control(playlist, PLAYLIST_COMMAND_PLAYLIST,
327 PLAYLIST_CONTROL_FILE_VERSION, -1, dirused, fileused, NULL);
328 sync_control(playlist, false);
333 * create control file for playlist
335 static void create_control(struct playlist_info* playlist)
337 playlist->control_fd = open(playlist->control_filename,
338 O_CREAT|O_RDWR|O_TRUNC);
339 if (playlist->control_fd < 0)
341 if (check_rockboxdir())
343 cond_talk_ids_fq(LANG_PLAYLIST_CONTROL_ACCESS_ERROR);
344 splashf(HZ*2, (unsigned char *)"%s (%d)",
345 str(LANG_PLAYLIST_CONTROL_ACCESS_ERROR),
346 playlist->control_fd);
348 playlist->control_created = false;
350 else
352 playlist->control_created = true;
357 * validate the control file. This may include creating/initializing it if
358 * necessary;
360 static int check_control(struct playlist_info* playlist)
362 if (!playlist->control_created)
364 create_control(playlist);
366 if (playlist->control_fd >= 0)
368 char* dir = playlist->filename;
369 char* file = playlist->filename+playlist->dirlen;
370 char c = playlist->filename[playlist->dirlen-1];
372 playlist->filename[playlist->dirlen-1] = '\0';
374 update_control(playlist, PLAYLIST_COMMAND_PLAYLIST,
375 PLAYLIST_CONTROL_FILE_VERSION, -1, dir, file, NULL);
376 sync_control(playlist, false);
377 playlist->filename[playlist->dirlen-1] = c;
381 if (playlist->control_fd < 0)
382 return -1;
384 return 0;
388 * recreate the control file based on current playlist entries
390 static int recreate_control(struct playlist_info* playlist)
392 char temp_file[MAX_PATH+1];
393 int temp_fd = -1;
394 int i;
395 int result = 0;
397 if(playlist->control_fd >= 0)
399 char* dir = playlist->filename;
400 char* file = playlist->filename+playlist->dirlen;
401 char c = playlist->filename[playlist->dirlen-1];
403 close(playlist->control_fd);
405 snprintf(temp_file, sizeof(temp_file), "%s_temp",
406 playlist->control_filename);
408 if (rename(playlist->control_filename, temp_file) < 0)
409 return -1;
411 temp_fd = open(temp_file, O_RDONLY);
412 if (temp_fd < 0)
413 return -1;
415 playlist->control_fd = open(playlist->control_filename,
416 O_CREAT|O_RDWR|O_TRUNC);
417 if (playlist->control_fd < 0)
418 return -1;
420 playlist->filename[playlist->dirlen-1] = '\0';
422 /* cannot call update_control() because of mutex */
423 result = fdprintf(playlist->control_fd, "P:%d:%s:%s\n",
424 PLAYLIST_CONTROL_FILE_VERSION, dir, file);
426 playlist->filename[playlist->dirlen-1] = c;
428 if (result < 0)
430 close(temp_fd);
431 return result;
435 playlist->seed = 0;
436 playlist->shuffle_modified = false;
437 playlist->deleted = false;
438 playlist->num_inserted_tracks = 0;
440 for (i=0; i<playlist->amount; i++)
442 if (playlist->indices[i] & PLAYLIST_INSERT_TYPE_MASK)
444 bool queue = playlist->indices[i] & PLAYLIST_QUEUE_MASK;
445 char inserted_file[MAX_PATH+1];
447 lseek(temp_fd, playlist->indices[i] & PLAYLIST_SEEK_MASK,
448 SEEK_SET);
449 read_line(temp_fd, inserted_file, sizeof(inserted_file));
451 result = fdprintf(playlist->control_fd, "%c:%d:%d:",
452 queue?'Q':'A', i, playlist->last_insert_pos);
453 if (result > 0)
455 /* save the position in file where name is written */
456 int seek_pos = lseek(playlist->control_fd, 0, SEEK_CUR);
458 result = fdprintf(playlist->control_fd, "%s\n",
459 inserted_file);
461 playlist->indices[i] =
462 (playlist->indices[i] & ~PLAYLIST_SEEK_MASK) | seek_pos;
465 if (result < 0)
466 break;
468 playlist->num_inserted_tracks++;
472 close(temp_fd);
473 remove(temp_file);
474 fsync(playlist->control_fd);
476 if (result < 0)
477 return result;
479 return 0;
483 * store directory and name of playlist file
485 static void update_playlist_filename(struct playlist_info* playlist,
486 const char *dir, const char *file)
488 char *sep="";
489 int dirlen = strlen(dir);
491 playlist->utf8 = is_m3u8(file);
493 /* If the dir does not end in trailing slash, we use a separator.
494 Otherwise we don't. */
495 if('/' != dir[dirlen-1])
497 sep="/";
498 dirlen++;
501 playlist->dirlen = dirlen;
503 snprintf(playlist->filename, sizeof(playlist->filename),
504 "%s%s%s", dir, sep, file);
508 * calculate track offsets within a playlist file
510 static int add_indices_to_playlist(struct playlist_info* playlist,
511 char* buffer, size_t buflen)
513 unsigned int nread;
514 unsigned int i = 0;
515 unsigned int count = 0;
516 bool store_index;
517 unsigned char *p;
518 int result = 0;
520 if(-1 == playlist->fd)
521 playlist->fd = open_utf8(playlist->filename, O_RDONLY);
522 if(playlist->fd < 0)
523 return -1; /* failure */
524 if((i = lseek(playlist->fd, 0, SEEK_CUR)) > 0)
525 playlist->utf8 = true; /* Override any earlier indication. */
527 splash(0, ID2P(LANG_WAIT));
529 if (!buffer)
531 /* use mp3 buffer for maximum load speed */
532 audio_stop();
533 #if CONFIG_CODEC != SWCODEC
534 talk_buffer_steal(); /* we use the mp3 buffer, need to tell */
535 buflen = (audiobufend - audiobuf);
536 buffer = (char *)audiobuf;
537 #else
538 buffer = (char *)audio_get_buffer(false, &buflen);
539 #endif
542 store_index = true;
544 while(1)
546 nread = read(playlist->fd, buffer, buflen);
547 /* Terminate on EOF */
548 if(nread <= 0)
549 break;
551 p = (unsigned char *)buffer;
553 for(count=0; count < nread; count++,p++) {
555 /* Are we on a new line? */
556 if((*p == '\n') || (*p == '\r'))
558 store_index = true;
560 else if(store_index)
562 store_index = false;
564 if(*p != '#')
566 if ( playlist->amount >= playlist->max_playlist_size ) {
567 display_buffer_full();
568 result = -1;
569 goto exit;
572 /* Store a new entry */
573 playlist->indices[ playlist->amount ] = i+count;
574 #ifdef HAVE_DIRCACHE
575 if (playlist->filenames)
576 playlist->filenames[ playlist->amount ] = NULL;
577 #endif
578 playlist->amount++;
583 i+= count;
586 exit:
587 #ifdef HAVE_DIRCACHE
588 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
589 #endif
591 return result;
595 * Utility function to create a new playlist, fill it with the next or
596 * previous directory, shuffle it if needed, and start playback.
597 * If play_last is true and direction zero or negative, start playing
598 * the last file in the directory, otherwise start playing the first.
600 static int create_and_play_dir(int direction, bool play_last)
602 char dir[MAX_PATH + 1];
603 int res;
604 int index = -1;
606 if(direction > 0)
607 res = get_next_directory(dir);
608 else
609 res = get_previous_directory(dir);
611 if (!res)
613 if (playlist_create(dir, NULL) != -1)
615 ft_build_playlist(tree_get_context(), 0);
617 if (global_settings.playlist_shuffle)
618 playlist_shuffle(current_tick, -1);
620 if (play_last && direction <= 0)
621 index = current_playlist.amount - 1;
622 else
623 index = 0;
625 #if (CONFIG_CODEC != SWCODEC)
626 playlist_start(index, 0);
627 #endif
630 /* we've overwritten the dircache when getting the next/previous dir,
631 so the tree browser context will need to be reloaded */
632 reload_directory();
635 return index;
639 * Removes all tracks, from the playlist, leaving the presently playing
640 * track queued.
642 int playlist_remove_all_tracks(struct playlist_info *playlist)
644 int result;
646 if (playlist == NULL)
647 playlist = &current_playlist;
649 while (playlist->index > 0)
650 if ((result = remove_track_from_playlist(playlist, 0, true)) < 0)
651 return result;
653 while (playlist->amount > 1)
654 if ((result = remove_track_from_playlist(playlist, 1, true)) < 0)
655 return result;
657 if (playlist->amount == 1) {
658 playlist->indices[0] |= PLAYLIST_QUEUED;
661 return 0;
666 * Add track to playlist at specified position. There are five special
667 * positions that can be specified:
668 * PLAYLIST_PREPEND - Add track at beginning of playlist
669 * PLAYLIST_INSERT - Add track after current song. NOTE: If
670 * there are already inserted tracks then track
671 * is added to the end of the insertion list
672 * PLAYLIST_INSERT_FIRST - Add track immediately after current song, no
673 * matter what other tracks have been inserted
674 * PLAYLIST_INSERT_LAST - Add track to end of playlist
675 * PLAYLIST_INSERT_SHUFFLED - Add track at some random point between the
676 * current playing track and end of playlist
677 * PLAYLIST_REPLACE - Erase current playlist, Cue the current track
678 * and inster this track at the end.
680 static int add_track_to_playlist(struct playlist_info* playlist,
681 const char *filename, int position,
682 bool queue, int seek_pos)
684 int insert_position, orig_position;
685 unsigned long flags = PLAYLIST_INSERT_TYPE_INSERT;
686 int i;
688 insert_position = orig_position = position;
690 if (playlist->amount >= playlist->max_playlist_size)
692 display_buffer_full();
693 return -1;
696 switch (position)
698 case PLAYLIST_PREPEND:
699 position = insert_position = playlist->first_index;
700 break;
701 case PLAYLIST_INSERT:
702 /* if there are already inserted tracks then add track to end of
703 insertion list else add after current playing track */
704 if (playlist->last_insert_pos >= 0 &&
705 playlist->last_insert_pos < playlist->amount &&
706 (playlist->indices[playlist->last_insert_pos]&
707 PLAYLIST_INSERT_TYPE_MASK) == PLAYLIST_INSERT_TYPE_INSERT)
708 position = insert_position = playlist->last_insert_pos+1;
709 else if (playlist->amount > 0)
710 position = insert_position = playlist->index + 1;
711 else
712 position = insert_position = 0;
714 if (playlist->started)
715 playlist->last_insert_pos = position;
716 break;
717 case PLAYLIST_INSERT_FIRST:
718 if (playlist->amount > 0)
719 position = insert_position = playlist->index + 1;
720 else
721 position = insert_position = 0;
723 if (playlist->last_insert_pos < 0 && playlist->started)
724 playlist->last_insert_pos = position;
725 break;
726 case PLAYLIST_INSERT_LAST:
727 if (playlist->first_index > 0)
728 position = insert_position = playlist->first_index;
729 else
730 position = insert_position = playlist->amount;
731 break;
732 case PLAYLIST_INSERT_SHUFFLED:
734 if (playlist->started)
736 int offset;
737 int n = playlist->amount -
738 rotate_index(playlist, playlist->index);
740 if (n > 0)
741 offset = rand() % n;
742 else
743 offset = 0;
745 position = playlist->index + offset + 1;
746 if (position >= playlist->amount)
747 position -= playlist->amount;
749 insert_position = position;
751 else
752 position = insert_position = (rand() % (playlist->amount+1));
753 break;
755 case PLAYLIST_REPLACE:
756 if (playlist_remove_all_tracks(playlist) < 0)
757 return -1;
759 position = insert_position = playlist->index + 1;
760 break;
763 if (queue)
764 flags |= PLAYLIST_QUEUED;
766 /* shift indices so that track can be added */
767 for (i=playlist->amount; i>insert_position; i--)
769 playlist->indices[i] = playlist->indices[i-1];
770 #ifdef HAVE_DIRCACHE
771 if (playlist->filenames)
772 playlist->filenames[i] = playlist->filenames[i-1];
773 #endif
776 /* update stored indices if needed */
777 if (playlist->amount > 0 && insert_position <= playlist->index &&
778 playlist->started)
779 playlist->index++;
781 if (playlist->amount > 0 && insert_position <= playlist->first_index &&
782 orig_position != PLAYLIST_PREPEND && playlist->started)
784 playlist->first_index++;
788 if (insert_position < playlist->last_insert_pos ||
789 (insert_position == playlist->last_insert_pos && position < 0))
790 playlist->last_insert_pos++;
792 if (seek_pos < 0 && playlist->control_fd >= 0)
794 int result = update_control(playlist,
795 (queue?PLAYLIST_COMMAND_QUEUE:PLAYLIST_COMMAND_ADD), position,
796 playlist->last_insert_pos, filename, NULL, &seek_pos);
798 if (result < 0)
799 return result;
802 playlist->indices[insert_position] = flags | seek_pos;
804 #ifdef HAVE_DIRCACHE
805 if (playlist->filenames)
806 playlist->filenames[insert_position] = NULL;
807 #endif
809 playlist->amount++;
810 playlist->num_inserted_tracks++;
812 return insert_position;
816 * Callback for playlist_directory_tracksearch to insert track into
817 * playlist.
819 static int directory_search_callback(char* filename, void* context)
821 struct directory_search_context* c =
822 (struct directory_search_context*) context;
823 int insert_pos;
825 insert_pos = add_track_to_playlist(c->playlist, filename, c->position,
826 c->queue, -1);
828 if (insert_pos < 0)
829 return -1;
831 (c->count)++;
833 /* Make sure tracks are inserted in correct order if user requests
834 INSERT_FIRST */
835 if (c->position == PLAYLIST_INSERT_FIRST || c->position >= 0)
836 c->position = insert_pos + 1;
838 if (((c->count)%PLAYLIST_DISPLAY_COUNT) == 0)
840 unsigned char* count_str;
842 if (c->queue)
843 count_str = ID2P(LANG_PLAYLIST_QUEUE_COUNT);
844 else
845 count_str = ID2P(LANG_PLAYLIST_INSERT_COUNT);
847 display_playlist_count(c->count, count_str, false);
849 if ((c->count) == PLAYLIST_DISPLAY_COUNT &&
850 (audio_status() & AUDIO_STATUS_PLAY) &&
851 c->playlist->started)
852 audio_flush_and_reload_tracks();
855 return 0;
859 * remove track at specified position
861 static int remove_track_from_playlist(struct playlist_info* playlist,
862 int position, bool write)
864 int i;
865 bool inserted;
867 if (playlist->amount <= 0)
868 return -1;
870 inserted = playlist->indices[position] & PLAYLIST_INSERT_TYPE_MASK;
872 /* shift indices now that track has been removed */
873 for (i=position; i<playlist->amount; i++)
875 playlist->indices[i] = playlist->indices[i+1];
876 #ifdef HAVE_DIRCACHE
877 if (playlist->filenames)
878 playlist->filenames[i] = playlist->filenames[i+1];
879 #endif
882 playlist->amount--;
884 if (inserted)
885 playlist->num_inserted_tracks--;
886 else
887 playlist->deleted = true;
889 /* update stored indices if needed */
890 if (position < playlist->index)
891 playlist->index--;
893 if (position < playlist->first_index)
895 playlist->first_index--;
898 if (position <= playlist->last_insert_pos)
899 playlist->last_insert_pos--;
901 if (write && playlist->control_fd >= 0)
903 int result = update_control(playlist, PLAYLIST_COMMAND_DELETE,
904 position, -1, NULL, NULL, NULL);
906 if (result < 0)
907 return result;
909 sync_control(playlist, false);
912 return 0;
916 * randomly rearrange the array of indices for the playlist. If start_current
917 * is true then update the index to the new index of the current playing track
919 static int randomise_playlist(struct playlist_info* playlist,
920 unsigned int seed, bool start_current,
921 bool write)
923 int count;
924 int candidate;
925 long store;
926 unsigned int current = playlist->indices[playlist->index];
928 /* seed 0 is used to identify sorted playlist for resume purposes */
929 if (seed == 0)
930 seed = 1;
932 /* seed with the given seed */
933 srand(seed);
935 /* randomise entire indices list */
936 for(count = playlist->amount - 1; count >= 0; count--)
938 /* the rand is from 0 to RAND_MAX, so adjust to our value range */
939 candidate = rand() % (count + 1);
941 /* now swap the values at the 'count' and 'candidate' positions */
942 store = playlist->indices[candidate];
943 playlist->indices[candidate] = playlist->indices[count];
944 playlist->indices[count] = store;
945 #ifdef HAVE_DIRCACHE
946 if (playlist->filenames)
948 store = (long)playlist->filenames[candidate];
949 playlist->filenames[candidate] = playlist->filenames[count];
950 playlist->filenames[count] = (struct dircache_entry *)store;
952 #endif
955 if (start_current)
956 find_and_set_playlist_index(playlist, current);
958 /* indices have been moved so last insert position is no longer valid */
959 playlist->last_insert_pos = -1;
961 playlist->seed = seed;
962 if (playlist->num_inserted_tracks > 0 || playlist->deleted)
963 playlist->shuffle_modified = true;
965 if (write)
967 update_control(playlist, PLAYLIST_COMMAND_SHUFFLE, seed,
968 playlist->first_index, NULL, NULL, NULL);
971 return 0;
975 * Sort the array of indices for the playlist. If start_current is true then
976 * set the index to the new index of the current song.
978 static int sort_playlist(struct playlist_info* playlist, bool start_current,
979 bool write)
981 unsigned int current = playlist->indices[playlist->index];
983 if (playlist->amount > 0)
984 qsort(playlist->indices, playlist->amount,
985 sizeof(playlist->indices[0]), compare);
987 #ifdef HAVE_DIRCACHE
988 /** We need to re-check the song names from disk because qsort can't
989 * sort two arrays at once :/
990 * FIXME: Please implement a better way to do this. */
991 memset(playlist->filenames, 0, playlist->max_playlist_size * sizeof(int));
992 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
993 #endif
995 if (start_current)
996 find_and_set_playlist_index(playlist, current);
998 /* indices have been moved so last insert position is no longer valid */
999 playlist->last_insert_pos = -1;
1001 if (!playlist->num_inserted_tracks && !playlist->deleted)
1002 playlist->shuffle_modified = false;
1003 if (write && playlist->control_fd >= 0)
1005 update_control(playlist, PLAYLIST_COMMAND_UNSHUFFLE,
1006 playlist->first_index, -1, NULL, NULL, NULL);
1009 return 0;
1012 /* Calculate how many steps we have to really step when skipping entries
1013 * marked as bad.
1015 static int calculate_step_count(const struct playlist_info *playlist, int steps)
1017 int i, count, direction;
1018 int index;
1019 int stepped_count = 0;
1021 if (steps < 0)
1023 direction = -1;
1024 count = -steps;
1026 else
1028 direction = 1;
1029 count = steps;
1032 index = playlist->index;
1033 i = 0;
1034 do {
1035 /* Boundary check */
1036 if (index < 0)
1037 index += playlist->amount;
1038 if (index >= playlist->amount)
1039 index -= playlist->amount;
1041 /* Check if we found a bad entry. */
1042 if (playlist->indices[index] & PLAYLIST_SKIPPED)
1044 steps += direction;
1045 /* Are all entries bad? */
1046 if (stepped_count++ > playlist->amount)
1047 break ;
1049 else
1050 i++;
1052 index += direction;
1053 } while (i <= count);
1055 return steps;
1058 /* Marks the index of the track to be skipped that is "steps" away from
1059 * current playing track.
1061 void playlist_skip_entry(struct playlist_info *playlist, int steps)
1063 int index;
1065 if (playlist == NULL)
1066 playlist = &current_playlist;
1068 /* need to account for already skipped tracks */
1069 steps = calculate_step_count(playlist, steps);
1071 index = playlist->index + steps;
1072 if (index < 0)
1073 index += playlist->amount;
1074 else if (index >= playlist->amount)
1075 index -= playlist->amount;
1077 playlist->indices[index] |= PLAYLIST_SKIPPED;
1081 * returns the index of the track that is "steps" away from current playing
1082 * track.
1084 static int get_next_index(const struct playlist_info* playlist, int steps,
1085 int repeat_mode)
1087 int current_index = playlist->index;
1088 int next_index = -1;
1090 if (playlist->amount <= 0)
1091 return -1;
1093 if (repeat_mode == -1)
1094 repeat_mode = global_settings.repeat_mode;
1096 if (repeat_mode == REPEAT_SHUFFLE && playlist->amount <= 1)
1097 repeat_mode = REPEAT_ALL;
1099 steps = calculate_step_count(playlist, steps);
1100 switch (repeat_mode)
1102 case REPEAT_SHUFFLE:
1103 /* Treat repeat shuffle just like repeat off. At end of playlist,
1104 play will be resumed in playlist_next() */
1105 case REPEAT_OFF:
1107 current_index = rotate_index(playlist, current_index);
1108 next_index = current_index+steps;
1109 if ((next_index < 0) || (next_index >= playlist->amount))
1110 next_index = -1;
1111 else
1112 next_index = (next_index+playlist->first_index) %
1113 playlist->amount;
1115 break;
1118 case REPEAT_ONE:
1119 #ifdef AB_REPEAT_ENABLE
1120 case REPEAT_AB:
1121 #endif
1122 next_index = current_index;
1123 break;
1125 case REPEAT_ALL:
1126 default:
1128 next_index = (current_index+steps) % playlist->amount;
1129 while (next_index < 0)
1130 next_index += playlist->amount;
1132 if (steps >= playlist->amount)
1134 int i, index;
1136 index = next_index;
1137 next_index = -1;
1139 /* second time around so skip the queued files */
1140 for (i=0; i<playlist->amount; i++)
1142 if (playlist->indices[index] & PLAYLIST_QUEUE_MASK)
1143 index = (index+1) % playlist->amount;
1144 else
1146 next_index = index;
1147 break;
1151 break;
1155 /* No luck if the whole playlist was bad. */
1156 if (playlist->indices[next_index] & PLAYLIST_SKIPPED)
1157 return -1;
1159 return next_index;
1163 * Search for the seek track and set appropriate indices. Used after shuffle
1164 * to make sure the current index is still pointing to correct track.
1166 static void find_and_set_playlist_index(struct playlist_info* playlist,
1167 unsigned int seek)
1169 int i;
1171 /* Set the index to the current song */
1172 for (i=0; i<playlist->amount; i++)
1174 if (playlist->indices[i] == seek)
1176 playlist->index = playlist->first_index = i;
1178 break;
1184 * used to sort track indices. Sort order is as follows:
1185 * 1. Prepended tracks (in prepend order)
1186 * 2. Playlist/directory tracks (in playlist order)
1187 * 3. Inserted/Appended tracks (in insert order)
1189 static int compare(const void* p1, const void* p2)
1191 unsigned long* e1 = (unsigned long*) p1;
1192 unsigned long* e2 = (unsigned long*) p2;
1193 unsigned long flags1 = *e1 & PLAYLIST_INSERT_TYPE_MASK;
1194 unsigned long flags2 = *e2 & PLAYLIST_INSERT_TYPE_MASK;
1196 if (flags1 == flags2)
1197 return (*e1 & PLAYLIST_SEEK_MASK) - (*e2 & PLAYLIST_SEEK_MASK);
1198 else if (flags1 == PLAYLIST_INSERT_TYPE_PREPEND ||
1199 flags2 == PLAYLIST_INSERT_TYPE_APPEND)
1200 return -1;
1201 else if (flags1 == PLAYLIST_INSERT_TYPE_APPEND ||
1202 flags2 == PLAYLIST_INSERT_TYPE_PREPEND)
1203 return 1;
1204 else if (flags1 && flags2)
1205 return (*e1 & PLAYLIST_SEEK_MASK) - (*e2 & PLAYLIST_SEEK_MASK);
1206 else
1207 return *e1 - *e2;
1210 #ifdef HAVE_DIRCACHE
1212 * Thread to update filename pointers to dircache on background
1213 * without affecting playlist load up performance. This thread also flushes
1214 * any pending control commands when the disk spins up.
1216 static bool playlist_flush_callback(void)
1218 struct playlist_info *playlist;
1219 playlist = &current_playlist;
1220 if (playlist->control_fd >= 0)
1222 if (playlist->num_cached > 0)
1224 mutex_lock(&playlist->control_mutex);
1225 flush_cached_control(playlist);
1226 mutex_unlock(&playlist->control_mutex);
1228 sync_control(playlist, true);
1230 return true;
1233 static void playlist_thread(void)
1235 struct queue_event ev;
1236 bool dirty_pointers = false;
1237 static char tmp[MAX_PATH+1];
1239 struct playlist_info *playlist;
1240 int index;
1241 int seek;
1242 bool control_file;
1244 int sleep_time = 5;
1246 #ifdef HAVE_DISK_STORAGE
1247 if (global_settings.disk_spindown > 1 &&
1248 global_settings.disk_spindown <= 5)
1249 sleep_time = global_settings.disk_spindown - 1;
1250 #endif
1252 while (1)
1254 queue_wait_w_tmo(&playlist_queue, &ev, HZ*sleep_time);
1256 switch (ev.id)
1258 case PLAYLIST_LOAD_POINTERS:
1259 dirty_pointers = true;
1260 break ;
1262 /* Start the background scanning after either the disk spindown
1263 timeout or 5s, whichever is less */
1264 case SYS_TIMEOUT:
1265 playlist = &current_playlist;
1266 if (playlist->control_fd >= 0)
1268 if (playlist->num_cached > 0)
1269 register_storage_idle_func(playlist_flush_callback);
1272 if (!dirty_pointers)
1273 break ;
1275 if (!dircache_is_enabled() || !playlist->filenames
1276 || playlist->amount <= 0)
1277 break ;
1279 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
1280 cpu_boost(true);
1281 #endif
1282 for (index = 0; index < playlist->amount
1283 && queue_empty(&playlist_queue); index++)
1285 /* Process only pointers that are not already loaded. */
1286 if (playlist->filenames[index])
1287 continue ;
1289 control_file = playlist->indices[index] & PLAYLIST_INSERT_TYPE_MASK;
1290 seek = playlist->indices[index] & PLAYLIST_SEEK_MASK;
1292 /* Load the filename from playlist file. */
1293 if (get_filename(playlist, index, seek, control_file, tmp,
1294 sizeof(tmp)) < 0)
1295 break ;
1297 /* Set the dircache entry pointer. */
1298 playlist->filenames[index] = dircache_get_entry_ptr(tmp);
1300 /* And be on background so user doesn't notice any delays. */
1301 yield();
1304 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
1305 cpu_boost(false);
1306 #endif
1307 dirty_pointers = false;
1308 break ;
1310 #ifndef SIMULATOR
1311 case SYS_USB_CONNECTED:
1312 usb_acknowledge(SYS_USB_CONNECTED_ACK);
1313 usb_wait_for_disconnect(&playlist_queue);
1314 break ;
1315 #endif
1319 #endif
1322 * gets pathname for track at seek index
1324 static int get_filename(struct playlist_info* playlist, int index, int seek,
1325 bool control_file, char *buf, int buf_length)
1327 int fd;
1328 int max = -1;
1329 char tmp_buf[MAX_PATH+1];
1330 char dir_buf[MAX_PATH+1];
1331 bool utf8 = playlist->utf8;
1333 if (buf_length > MAX_PATH+1)
1334 buf_length = MAX_PATH+1;
1336 #ifdef HAVE_DIRCACHE
1337 if (dircache_is_enabled() && playlist->filenames)
1339 if (playlist->filenames[index] != NULL)
1341 dircache_copy_path(playlist->filenames[index], tmp_buf, sizeof(tmp_buf)-1);
1342 max = strlen(tmp_buf) + 1;
1345 #else
1346 (void)index;
1347 #endif
1349 if (playlist->in_ram && !control_file && max < 0)
1351 strncpy(tmp_buf, &playlist->buffer[seek], sizeof(tmp_buf));
1352 tmp_buf[MAX_PATH] = '\0';
1353 max = strlen(tmp_buf) + 1;
1355 else if (max < 0)
1357 mutex_lock(&playlist->control_mutex);
1359 if (control_file)
1361 fd = playlist->control_fd;
1362 utf8 = true;
1364 else
1366 if(-1 == playlist->fd)
1367 playlist->fd = open(playlist->filename, O_RDONLY);
1369 fd = playlist->fd;
1372 if(-1 != fd)
1375 if (lseek(fd, seek, SEEK_SET) != seek)
1376 max = -1;
1377 else
1379 max = read(fd, tmp_buf, MIN((size_t) buf_length, sizeof(tmp_buf)));
1381 if ((max > 0) && !utf8)
1383 /* Use dir_buf as a temporary buffer. Note that dir_buf must
1384 * be as large as tmp_buf.
1386 max = convert_m3u(tmp_buf, max, sizeof(tmp_buf), dir_buf);
1391 mutex_unlock(&playlist->control_mutex);
1393 if (max < 0)
1395 if (control_file)
1396 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
1397 else
1398 splash(HZ*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR));
1400 return max;
1404 strncpy(dir_buf, playlist->filename, playlist->dirlen-1);
1405 dir_buf[playlist->dirlen-1] = 0;
1407 return (format_track_path(buf, tmp_buf, buf_length, max, dir_buf));
1410 static int get_next_directory(char *dir){
1411 return get_next_dir(dir,true,false);
1414 static int get_previous_directory(char *dir){
1415 return get_next_dir(dir,false,false);
1419 * search through all the directories (starting with the current) to find
1420 * one that has tracks to play
1422 static int get_next_dir(char *dir, bool is_forward, bool recursion)
1424 struct playlist_info* playlist = &current_playlist;
1425 int result = -1;
1426 char *start_dir = NULL;
1427 bool exit = false;
1428 int i;
1429 struct tree_context* tc = tree_get_context();
1430 int saved_dirfilter = *(tc->dirfilter);
1432 /* process random folder advance */
1433 if (global_settings.next_folder == FOLDER_ADVANCE_RANDOM)
1435 int fd = open(ROCKBOX_DIR "/folder_advance_list.dat", O_RDONLY);
1436 if (fd >= 0)
1438 char buffer[MAX_PATH];
1439 int folder_count = 0;
1440 srand(current_tick);
1441 *(tc->dirfilter) = SHOW_MUSIC;
1442 tc->sort_dir = global_settings.sort_dir;
1443 read(fd,&folder_count,sizeof(int));
1444 if (!folder_count)
1445 exit = true;
1446 while (!exit)
1448 i = rand()%folder_count;
1449 lseek(fd,sizeof(int) + (MAX_PATH*i),SEEK_SET);
1450 read(fd,buffer,MAX_PATH);
1451 if (check_subdir_for_music(buffer, "", false) ==0)
1452 exit = true;
1454 if (folder_count)
1455 strcpy(dir,buffer);
1456 close(fd);
1457 *(tc->dirfilter) = saved_dirfilter;
1458 tc->sort_dir = global_settings.sort_dir;
1459 reload_directory();
1460 return 0;
1464 /* not random folder advance (or random folder advance unavailable) */
1465 if (recursion)
1467 /* start with root */
1468 dir[0] = '\0';
1470 else
1472 /* start with current directory */
1473 strncpy(dir, playlist->filename, playlist->dirlen-1);
1474 dir[playlist->dirlen-1] = '\0';
1477 /* use the tree browser dircache to load files */
1478 *(tc->dirfilter) = SHOW_ALL;
1480 /* set up sorting/direction */
1481 tc->sort_dir = global_settings.sort_dir;
1482 if (!is_forward)
1484 static const char sortpairs[] =
1486 [SORT_ALPHA] = SORT_ALPHA_REVERSED,
1487 [SORT_DATE] = SORT_DATE_REVERSED,
1488 [SORT_TYPE] = SORT_TYPE_REVERSED,
1489 [SORT_ALPHA_REVERSED] = SORT_ALPHA,
1490 [SORT_DATE_REVERSED] = SORT_DATE,
1491 [SORT_TYPE_REVERSED] = SORT_TYPE,
1494 if ((unsigned)tc->sort_dir < sizeof(sortpairs))
1495 tc->sort_dir = sortpairs[tc->sort_dir];
1498 while (!exit)
1500 struct entry *files;
1501 int num_files = 0;
1502 int i;
1504 if (ft_load(tc, (dir[0]=='\0')?"/":dir) < 0)
1506 exit = true;
1507 result = -1;
1508 break;
1511 files = (struct entry*) tc->dircache;
1512 num_files = tc->filesindir;
1514 for (i=0; i<num_files; i++)
1516 /* user abort */
1517 if (action_userabort(TIMEOUT_NOBLOCK))
1519 result = -1;
1520 exit = true;
1521 break;
1524 if (files[i].attr & ATTR_DIRECTORY)
1526 if (!start_dir)
1528 result = check_subdir_for_music(dir, files[i].name, true);
1529 if (result != -1)
1531 exit = true;
1532 break;
1535 else if (!strcmp(start_dir, files[i].name))
1536 start_dir = NULL;
1540 if (!exit)
1542 /* move down to parent directory. current directory name is
1543 stored as the starting point for the search in parent */
1544 start_dir = strrchr(dir, '/');
1545 if (start_dir)
1547 *start_dir = '\0';
1548 start_dir++;
1550 else
1551 break;
1555 /* restore dirfilter */
1556 *(tc->dirfilter) = saved_dirfilter;
1557 tc->sort_dir = global_settings.sort_dir;
1559 /* special case if nothing found: try start searching again from root */
1560 if (result == -1 && !recursion){
1561 result = get_next_dir(dir, is_forward, true);
1564 return result;
1568 * Checks if there are any music files in the dir or any of its
1569 * subdirectories. May be called recursively.
1571 static int check_subdir_for_music(char *dir, const char *subdir, bool recurse)
1573 int result = -1;
1574 int dirlen = strlen(dir);
1575 int num_files = 0;
1576 int i;
1577 struct entry *files;
1578 bool has_music = false;
1579 bool has_subdir = false;
1580 struct tree_context* tc = tree_get_context();
1582 snprintf(dir+dirlen, MAX_PATH-dirlen, "/%s", subdir);
1584 if (ft_load(tc, dir) < 0)
1586 return -2;
1589 files = (struct entry*) tc->dircache;
1590 num_files = tc->filesindir;
1592 for (i=0; i<num_files; i++)
1594 if (files[i].attr & ATTR_DIRECTORY)
1595 has_subdir = true;
1596 else if ((files[i].attr & FILE_ATTR_MASK) == FILE_ATTR_AUDIO)
1598 has_music = true;
1599 break;
1603 if (has_music)
1604 return 0;
1606 if (has_subdir && recurse)
1608 for (i=0; i<num_files; i++)
1610 if (action_userabort(TIMEOUT_NOBLOCK))
1612 result = -2;
1613 break;
1616 if (files[i].attr & ATTR_DIRECTORY)
1618 result = check_subdir_for_music(dir, files[i].name, true);
1619 if (!result)
1620 break;
1625 if (result < 0)
1627 if (dirlen)
1629 dir[dirlen] = '\0';
1631 else
1633 strcpy(dir, "/");
1636 /* we now need to reload our current directory */
1637 if(ft_load(tc, dir) < 0)
1638 splash(HZ*2, ID2P(LANG_PLAYLIST_DIRECTORY_ACCESS_ERROR));
1640 return result;
1644 * Returns absolute path of track
1646 static int format_track_path(char *dest, char *src, int buf_length, int max,
1647 const char *dir)
1649 int i = 0;
1650 int j;
1651 char *temp_ptr;
1653 /* Zero-terminate the file name */
1654 while((src[i] != '\n') &&
1655 (src[i] != '\r') &&
1656 (i < max))
1657 i++;
1659 /* Now work back killing white space */
1660 while((src[i-1] == ' ') ||
1661 (src[i-1] == '\t'))
1662 i--;
1664 src[i]=0;
1666 /* replace backslashes with forward slashes */
1667 for ( j=0; j<i; j++ )
1668 if ( src[j] == '\\' )
1669 src[j] = '/';
1671 if('/' == src[0])
1673 strncpy(dest, src, buf_length);
1675 else
1677 /* handle dos style drive letter */
1678 if (':' == src[1])
1679 strncpy(dest, &src[2], buf_length);
1680 else if (!strncmp(src, "../", 3))
1682 /* handle relative paths */
1683 i=3;
1684 while(!strncmp(&src[i], "../", 3))
1685 i += 3;
1686 for (j=0; j<i/3; j++) {
1687 temp_ptr = strrchr(dir, '/');
1688 if (temp_ptr)
1689 *temp_ptr = '\0';
1690 else
1691 break;
1693 snprintf(dest, buf_length, "%s/%s", dir, &src[i]);
1695 else if ( '.' == src[0] && '/' == src[1] ) {
1696 snprintf(dest, buf_length, "%s/%s", dir, &src[2]);
1698 else {
1699 snprintf(dest, buf_length, "%s/%s", dir, src);
1703 return 0;
1707 * Display splash message showing progress of playlist/directory insertion or
1708 * save.
1710 static void display_playlist_count(int count, const unsigned char *fmt,
1711 bool final)
1713 static long talked_tick = 0;
1714 long id = P2ID(fmt);
1715 if(global_settings.talk_menu && id>=0)
1717 if(final || (count && (talked_tick == 0
1718 || TIME_AFTER(current_tick, talked_tick+5*HZ))))
1720 talked_tick = current_tick;
1721 talk_number(count, false);
1722 talk_id(id, true);
1725 fmt = P2STR(fmt);
1727 splashf(0, fmt, count, str(LANG_OFF_ABORT));
1731 * Display buffer full message
1733 static void display_buffer_full(void)
1735 splash(HZ*2, ID2P(LANG_PLAYLIST_BUFFER_FULL));
1739 * Flush any cached control commands to disk. Called when playlist is being
1740 * modified. Returns 0 on success and -1 on failure.
1742 static int flush_cached_control(struct playlist_info* playlist)
1744 int result = 0;
1745 int i;
1747 if (!playlist->num_cached)
1748 return 0;
1750 lseek(playlist->control_fd, 0, SEEK_END);
1752 for (i=0; i<playlist->num_cached; i++)
1754 struct playlist_control_cache* cache =
1755 &(playlist->control_cache[i]);
1757 switch (cache->command)
1759 case PLAYLIST_COMMAND_PLAYLIST:
1760 result = fdprintf(playlist->control_fd, "P:%d:%s:%s\n",
1761 cache->i1, cache->s1, cache->s2);
1762 break;
1763 case PLAYLIST_COMMAND_ADD:
1764 case PLAYLIST_COMMAND_QUEUE:
1765 result = fdprintf(playlist->control_fd, "%c:%d:%d:",
1766 (cache->command == PLAYLIST_COMMAND_ADD)?'A':'Q',
1767 cache->i1, cache->i2);
1768 if (result > 0)
1770 /* save the position in file where name is written */
1771 int* seek_pos = (int *)cache->data;
1772 *seek_pos = lseek(playlist->control_fd, 0, SEEK_CUR);
1773 result = fdprintf(playlist->control_fd, "%s\n",
1774 cache->s1);
1776 break;
1777 case PLAYLIST_COMMAND_DELETE:
1778 result = fdprintf(playlist->control_fd, "D:%d\n", cache->i1);
1779 break;
1780 case PLAYLIST_COMMAND_SHUFFLE:
1781 result = fdprintf(playlist->control_fd, "S:%d:%d\n",
1782 cache->i1, cache->i2);
1783 break;
1784 case PLAYLIST_COMMAND_UNSHUFFLE:
1785 result = fdprintf(playlist->control_fd, "U:%d\n", cache->i1);
1786 break;
1787 case PLAYLIST_COMMAND_RESET:
1788 result = fdprintf(playlist->control_fd, "R\n");
1789 break;
1790 default:
1791 break;
1794 if (result <= 0)
1795 break;
1798 if (result > 0)
1800 playlist->num_cached = 0;
1801 playlist->pending_control_sync = true;
1803 result = 0;
1805 else
1807 result = -1;
1808 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_UPDATE_ERROR));
1811 return result;
1815 * Update control data with new command. Depending on the command, it may be
1816 * cached or flushed to disk.
1818 static int update_control(struct playlist_info* playlist,
1819 enum playlist_command command, int i1, int i2,
1820 const char* s1, const char* s2, void* data)
1822 int result = 0;
1823 struct playlist_control_cache* cache;
1824 bool flush = false;
1826 mutex_lock(&playlist->control_mutex);
1828 cache = &(playlist->control_cache[playlist->num_cached++]);
1830 cache->command = command;
1831 cache->i1 = i1;
1832 cache->i2 = i2;
1833 cache->s1 = s1;
1834 cache->s2 = s2;
1835 cache->data = data;
1837 switch (command)
1839 case PLAYLIST_COMMAND_PLAYLIST:
1840 case PLAYLIST_COMMAND_ADD:
1841 case PLAYLIST_COMMAND_QUEUE:
1842 #ifndef HAVE_DIRCACHE
1843 case PLAYLIST_COMMAND_DELETE:
1844 case PLAYLIST_COMMAND_RESET:
1845 #endif
1846 flush = true;
1847 break;
1848 case PLAYLIST_COMMAND_SHUFFLE:
1849 case PLAYLIST_COMMAND_UNSHUFFLE:
1850 default:
1851 /* only flush when needed */
1852 break;
1855 if (flush || playlist->num_cached == PLAYLIST_MAX_CACHE)
1856 result = flush_cached_control(playlist);
1858 mutex_unlock(&playlist->control_mutex);
1860 return result;
1864 * sync control file to disk
1866 static void sync_control(struct playlist_info* playlist, bool force)
1868 #ifdef HAVE_DIRCACHE
1869 if (playlist->started && force)
1870 #else
1871 (void) force;
1873 if (playlist->started)
1874 #endif
1876 if (playlist->pending_control_sync)
1878 mutex_lock(&playlist->control_mutex);
1879 fsync(playlist->control_fd);
1880 playlist->pending_control_sync = false;
1881 mutex_unlock(&playlist->control_mutex);
1887 * Rotate indices such that first_index is index 0
1889 static int rotate_index(const struct playlist_info* playlist, int index)
1891 index -= playlist->first_index;
1892 if (index < 0)
1893 index += playlist->amount;
1895 return index;
1899 * Initialize playlist entries at startup
1901 void playlist_init(void)
1903 struct playlist_info* playlist = &current_playlist;
1905 playlist->current = true;
1906 strncpy(playlist->control_filename, PLAYLIST_CONTROL_FILE,
1907 sizeof(playlist->control_filename));
1908 playlist->fd = -1;
1909 playlist->control_fd = -1;
1910 playlist->max_playlist_size = global_settings.max_files_in_playlist;
1911 playlist->indices = buffer_alloc(
1912 playlist->max_playlist_size * sizeof(int));
1913 playlist->buffer_size =
1914 AVERAGE_FILENAME_LENGTH * global_settings.max_files_in_dir;
1915 playlist->buffer = buffer_alloc(playlist->buffer_size);
1916 mutex_init(&playlist->control_mutex);
1917 empty_playlist(playlist, true);
1919 #ifdef HAVE_DIRCACHE
1920 playlist->filenames = buffer_alloc(
1921 playlist->max_playlist_size * sizeof(int));
1922 memset(playlist->filenames, 0,
1923 playlist->max_playlist_size * sizeof(int));
1924 create_thread(playlist_thread, playlist_stack, sizeof(playlist_stack),
1925 0, playlist_thread_name IF_PRIO(, PRIORITY_BACKGROUND)
1926 IF_COP(, CPU));
1927 queue_init(&playlist_queue, true);
1928 #endif
1932 * Clean playlist at shutdown
1934 void playlist_shutdown(void)
1936 struct playlist_info* playlist = &current_playlist;
1938 if (playlist->control_fd >= 0)
1940 mutex_lock(&playlist->control_mutex);
1942 if (playlist->num_cached > 0)
1943 flush_cached_control(playlist);
1945 close(playlist->control_fd);
1947 mutex_unlock(&playlist->control_mutex);
1952 * Create new playlist
1954 int playlist_create(const char *dir, const char *file)
1956 struct playlist_info* playlist = &current_playlist;
1958 new_playlist(playlist, dir, file);
1960 if (file)
1961 /* load the playlist file */
1962 add_indices_to_playlist(playlist, NULL, 0);
1964 return 0;
1967 #define PLAYLIST_COMMAND_SIZE (MAX_PATH+12)
1970 * Restore the playlist state based on control file commands. Called to
1971 * resume playback after shutdown.
1973 int playlist_resume(void)
1975 struct playlist_info* playlist = &current_playlist;
1976 char *buffer;
1977 size_t buflen;
1978 int nread;
1979 int total_read = 0;
1980 int control_file_size = 0;
1981 bool first = true;
1982 bool sorted = true;
1984 /* use mp3 buffer for maximum load speed */
1985 #if CONFIG_CODEC != SWCODEC
1986 talk_buffer_steal(); /* we use the mp3 buffer, need to tell */
1987 buflen = (audiobufend - audiobuf);
1988 buffer = (char *)audiobuf;
1989 #else
1990 buffer = (char *)audio_get_buffer(false, &buflen);
1991 #endif
1993 empty_playlist(playlist, true);
1995 splash(0, ID2P(LANG_WAIT));
1996 playlist->control_fd = open(playlist->control_filename, O_RDWR);
1997 if (playlist->control_fd < 0)
1999 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
2000 return -1;
2002 playlist->control_created = true;
2004 control_file_size = filesize(playlist->control_fd);
2005 if (control_file_size <= 0)
2007 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
2008 return -1;
2011 /* read a small amount first to get the header */
2012 nread = read(playlist->control_fd, buffer,
2013 PLAYLIST_COMMAND_SIZE<buflen?PLAYLIST_COMMAND_SIZE:buflen);
2014 if(nread <= 0)
2016 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
2017 return -1;
2020 playlist->started = true;
2022 while (1)
2024 int result = 0;
2025 int count;
2026 enum playlist_command current_command = PLAYLIST_COMMAND_COMMENT;
2027 int last_newline = 0;
2028 int str_count = -1;
2029 bool newline = true;
2030 bool exit_loop = false;
2031 char *p = buffer;
2032 char *str1 = NULL;
2033 char *str2 = NULL;
2034 char *str3 = NULL;
2035 unsigned long last_tick = current_tick;
2036 bool useraborted = false;
2038 for(count=0; count<nread && !exit_loop && !useraborted; count++,p++)
2040 /* So a splash while we are loading. */
2041 if (TIME_AFTER(current_tick, last_tick + HZ/4))
2043 splashf(0, str(LANG_LOADING_PERCENT),
2044 (total_read+count)*100/control_file_size,
2045 str(LANG_OFF_ABORT));
2046 if (action_userabort(TIMEOUT_NOBLOCK))
2048 useraborted = true;
2049 break;
2051 last_tick = current_tick;
2054 /* Are we on a new line? */
2055 if((*p == '\n') || (*p == '\r'))
2057 *p = '\0';
2059 /* save last_newline in case we need to load more data */
2060 last_newline = count;
2062 switch (current_command)
2064 case PLAYLIST_COMMAND_PLAYLIST:
2066 /* str1=version str2=dir str3=file */
2067 int version;
2069 if (!str1)
2071 result = -1;
2072 exit_loop = true;
2073 break;
2076 if (!str2)
2077 str2 = "";
2079 if (!str3)
2080 str3 = "";
2082 version = atoi(str1);
2084 if (version != PLAYLIST_CONTROL_FILE_VERSION)
2085 return -1;
2087 update_playlist_filename(playlist, str2, str3);
2089 if (str3[0] != '\0')
2091 /* NOTE: add_indices_to_playlist() overwrites the
2092 audiobuf so we need to reload control file
2093 data */
2094 add_indices_to_playlist(playlist, NULL, 0);
2096 else if (str2[0] != '\0')
2098 playlist->in_ram = true;
2099 resume_directory(str2);
2102 /* load the rest of the data */
2103 first = false;
2104 exit_loop = true;
2106 break;
2108 case PLAYLIST_COMMAND_ADD:
2109 case PLAYLIST_COMMAND_QUEUE:
2111 /* str1=position str2=last_position str3=file */
2112 int position, last_position;
2113 bool queue;
2115 if (!str1 || !str2 || !str3)
2117 result = -1;
2118 exit_loop = true;
2119 break;
2122 position = atoi(str1);
2123 last_position = atoi(str2);
2125 queue = (current_command == PLAYLIST_COMMAND_ADD)?
2126 false:true;
2128 /* seek position is based on str3's position in
2129 buffer */
2130 if (add_track_to_playlist(playlist, str3, position,
2131 queue, total_read+(str3-buffer)) < 0)
2132 return -1;
2134 playlist->last_insert_pos = last_position;
2136 break;
2138 case PLAYLIST_COMMAND_DELETE:
2140 /* str1=position */
2141 int position;
2143 if (!str1)
2145 result = -1;
2146 exit_loop = true;
2147 break;
2150 position = atoi(str1);
2152 if (remove_track_from_playlist(playlist, position,
2153 false) < 0)
2154 return -1;
2156 break;
2158 case PLAYLIST_COMMAND_SHUFFLE:
2160 /* str1=seed str2=first_index */
2161 int seed;
2163 if (!str1 || !str2)
2165 result = -1;
2166 exit_loop = true;
2167 break;
2170 if (!sorted)
2172 /* Always sort list before shuffling */
2173 sort_playlist(playlist, false, false);
2176 seed = atoi(str1);
2177 playlist->first_index = atoi(str2);
2179 if (randomise_playlist(playlist, seed, false,
2180 false) < 0)
2181 return -1;
2182 sorted = false;
2183 break;
2185 case PLAYLIST_COMMAND_UNSHUFFLE:
2187 /* str1=first_index */
2188 if (!str1)
2190 result = -1;
2191 exit_loop = true;
2192 break;
2195 playlist->first_index = atoi(str1);
2197 if (sort_playlist(playlist, false, false) < 0)
2198 return -1;
2200 sorted = true;
2201 break;
2203 case PLAYLIST_COMMAND_RESET:
2205 playlist->last_insert_pos = -1;
2206 break;
2208 case PLAYLIST_COMMAND_COMMENT:
2209 default:
2210 break;
2213 newline = true;
2215 /* to ignore any extra newlines */
2216 current_command = PLAYLIST_COMMAND_COMMENT;
2218 else if(newline)
2220 newline = false;
2222 /* first non-comment line must always specify playlist */
2223 if (first && *p != 'P' && *p != '#')
2225 result = -1;
2226 exit_loop = true;
2227 break;
2230 switch (*p)
2232 case 'P':
2233 /* playlist can only be specified once */
2234 if (!first)
2236 result = -1;
2237 exit_loop = true;
2238 break;
2241 current_command = PLAYLIST_COMMAND_PLAYLIST;
2242 break;
2243 case 'A':
2244 current_command = PLAYLIST_COMMAND_ADD;
2245 break;
2246 case 'Q':
2247 current_command = PLAYLIST_COMMAND_QUEUE;
2248 break;
2249 case 'D':
2250 current_command = PLAYLIST_COMMAND_DELETE;
2251 break;
2252 case 'S':
2253 current_command = PLAYLIST_COMMAND_SHUFFLE;
2254 break;
2255 case 'U':
2256 current_command = PLAYLIST_COMMAND_UNSHUFFLE;
2257 break;
2258 case 'R':
2259 current_command = PLAYLIST_COMMAND_RESET;
2260 break;
2261 case '#':
2262 current_command = PLAYLIST_COMMAND_COMMENT;
2263 break;
2264 default:
2265 result = -1;
2266 exit_loop = true;
2267 break;
2270 str_count = -1;
2271 str1 = NULL;
2272 str2 = NULL;
2273 str3 = NULL;
2275 else if(current_command != PLAYLIST_COMMAND_COMMENT)
2277 /* all control file strings are separated with a colon.
2278 Replace the colon with 0 to get proper strings that can be
2279 used by commands above */
2280 if (*p == ':')
2282 *p = '\0';
2283 str_count++;
2285 if ((count+1) < nread)
2287 switch (str_count)
2289 case 0:
2290 str1 = p+1;
2291 break;
2292 case 1:
2293 str2 = p+1;
2294 break;
2295 case 2:
2296 str3 = p+1;
2297 break;
2298 default:
2299 /* allow last string to contain colons */
2300 *p = ':';
2301 break;
2308 if (result < 0)
2310 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_INVALID));
2311 return result;
2314 if (useraborted)
2316 splash(HZ*2, ID2P(LANG_CANCEL));
2317 return -1;
2319 if (!newline || (exit_loop && count<nread))
2321 if ((total_read + count) >= control_file_size)
2323 /* no newline at end of control file */
2324 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_INVALID));
2325 return -1;
2328 /* We didn't end on a newline or we exited loop prematurely.
2329 Either way, re-read the remainder. */
2330 count = last_newline;
2331 lseek(playlist->control_fd, total_read+count, SEEK_SET);
2334 total_read += count;
2336 if (first)
2337 /* still looking for header */
2338 nread = read(playlist->control_fd, buffer,
2339 PLAYLIST_COMMAND_SIZE<buflen?PLAYLIST_COMMAND_SIZE:buflen);
2340 else
2341 nread = read(playlist->control_fd, buffer, buflen);
2343 /* Terminate on EOF */
2344 if(nread <= 0)
2346 playlist->first_index = 0;
2347 break;
2351 #ifdef HAVE_DIRCACHE
2352 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
2353 #endif
2355 return 0;
2359 * Add track to in_ram playlist. Used when playing directories.
2361 int playlist_add(const char *filename)
2363 struct playlist_info* playlist = &current_playlist;
2364 int len = strlen(filename);
2366 if((len+1 > playlist->buffer_size - playlist->buffer_end_pos) ||
2367 (playlist->amount >= playlist->max_playlist_size))
2369 display_buffer_full();
2370 return -1;
2373 playlist->indices[playlist->amount] = playlist->buffer_end_pos;
2374 #ifdef HAVE_DIRCACHE
2375 playlist->filenames[playlist->amount] = NULL;
2376 #endif
2377 playlist->amount++;
2379 strcpy(&playlist->buffer[playlist->buffer_end_pos], filename);
2380 playlist->buffer_end_pos += len;
2381 playlist->buffer[playlist->buffer_end_pos++] = '\0';
2383 return 0;
2386 /* shuffle newly created playlist using random seed. */
2387 int playlist_shuffle(int random_seed, int start_index)
2389 struct playlist_info* playlist = &current_playlist;
2391 unsigned int seek_pos = 0;
2392 bool start_current = false;
2394 if (start_index >= 0 && global_settings.play_selected)
2396 /* store the seek position before the shuffle */
2397 seek_pos = playlist->indices[start_index];
2398 playlist->index = playlist->first_index = start_index;
2399 start_current = true;
2402 randomise_playlist(playlist, random_seed, start_current, true);
2404 return playlist->index;
2407 /* start playing current playlist at specified index/offset */
2408 int playlist_start(int start_index, int offset)
2410 struct playlist_info* playlist = &current_playlist;
2412 /* Cancel FM radio selection as previous music. For cases where we start
2413 playback without going to the WPS, such as playlist insert.. or
2414 playlist catalog. */
2415 previous_music_is_wps();
2417 playlist->index = start_index;
2419 #if CONFIG_CODEC != SWCODEC
2420 talk_buffer_steal(); /* will use the mp3 buffer */
2421 #endif
2423 playlist->started = true;
2424 sync_control(playlist, false);
2425 audio_play(offset);
2427 return 0;
2430 /* Returns false if 'steps' is out of bounds, else true */
2431 bool playlist_check(int steps)
2433 struct playlist_info* playlist = &current_playlist;
2435 /* always allow folder navigation */
2436 if (global_settings.next_folder && playlist->in_ram)
2437 return true;
2439 int index = get_next_index(playlist, steps, -1);
2441 if (index < 0 && steps >= 0 && global_settings.repeat_mode == REPEAT_SHUFFLE)
2442 index = get_next_index(playlist, steps, REPEAT_ALL);
2444 return (index >= 0);
2447 /* get trackname of track that is "steps" away from current playing track.
2448 NULL is used to identify end of playlist */
2449 char* playlist_peek(int steps)
2451 struct playlist_info* playlist = &current_playlist;
2452 int seek;
2453 char *temp_ptr;
2454 int index;
2455 bool control_file;
2457 index = get_next_index(playlist, steps, -1);
2458 if (index < 0)
2459 return NULL;
2461 control_file = playlist->indices[index] & PLAYLIST_INSERT_TYPE_MASK;
2462 seek = playlist->indices[index] & PLAYLIST_SEEK_MASK;
2464 if (get_filename(playlist, index, seek, control_file, now_playing,
2465 MAX_PATH+1) < 0)
2466 return NULL;
2468 temp_ptr = now_playing;
2470 if (!playlist->in_ram || control_file)
2472 /* remove bogus dirs from beginning of path
2473 (workaround for buggy playlist creation tools) */
2474 while (temp_ptr)
2476 if (file_exists(temp_ptr))
2477 break;
2479 temp_ptr = strchr(temp_ptr+1, '/');
2482 if (!temp_ptr)
2484 /* Even though this is an invalid file, we still need to pass a
2485 file name to the caller because NULL is used to indicate end
2486 of playlist */
2487 return now_playing;
2491 return temp_ptr;
2495 * Update indices as track has changed
2497 int playlist_next(int steps)
2499 struct playlist_info* playlist = &current_playlist;
2500 int index;
2502 if ( (steps > 0)
2503 #ifdef AB_REPEAT_ENABLE
2504 && (global_settings.repeat_mode != REPEAT_AB)
2505 #endif
2506 && (global_settings.repeat_mode != REPEAT_ONE) )
2508 int i, j;
2510 /* We need to delete all the queued songs */
2511 for (i=0, j=steps; i<j; i++)
2513 index = get_next_index(playlist, i, -1);
2515 if (playlist->indices[index] & PLAYLIST_QUEUE_MASK)
2517 remove_track_from_playlist(playlist, index, true);
2518 steps--; /* one less track */
2523 index = get_next_index(playlist, steps, -1);
2525 if (index < 0)
2527 /* end of playlist... or is it */
2528 if (global_settings.repeat_mode == REPEAT_SHUFFLE &&
2529 playlist->amount > 1)
2531 /* Repeat shuffle mode. Re-shuffle playlist and resume play */
2532 playlist->first_index = 0;
2533 sort_playlist(playlist, false, false);
2534 randomise_playlist(playlist, current_tick, false, true);
2535 #if CONFIG_CODEC != SWCODEC
2536 playlist_start(0, 0);
2537 #endif
2538 playlist->index = 0;
2539 index = 0;
2541 else if (playlist->in_ram && global_settings.next_folder)
2543 index = create_and_play_dir(steps, true);
2545 if (index >= 0)
2547 playlist->index = index;
2551 return index;
2554 playlist->index = index;
2556 if (playlist->last_insert_pos >= 0 && steps > 0)
2558 /* check to see if we've gone beyond the last inserted track */
2559 int cur = rotate_index(playlist, index);
2560 int last_pos = rotate_index(playlist, playlist->last_insert_pos);
2562 if (cur > last_pos)
2564 /* reset last inserted track */
2565 playlist->last_insert_pos = -1;
2567 if (playlist->control_fd >= 0)
2569 int result = update_control(playlist, PLAYLIST_COMMAND_RESET,
2570 -1, -1, NULL, NULL, NULL);
2572 if (result < 0)
2573 return result;
2575 sync_control(playlist, false);
2580 return index;
2583 /* try playing next or previous folder */
2584 bool playlist_next_dir(int direction)
2586 /* not to mess up real playlists */
2587 if(!current_playlist.in_ram)
2588 return false;
2590 return create_and_play_dir(direction, false) >= 0;
2593 /* Get resume info for current playing song. If return value is -1 then
2594 settings shouldn't be saved. */
2595 int playlist_get_resume_info(int *resume_index)
2597 struct playlist_info* playlist = &current_playlist;
2599 *resume_index = playlist->index;
2601 return 0;
2604 /* Update resume info for current playing song. Returns -1 on error. */
2605 int playlist_update_resume_info(const struct mp3entry* id3)
2607 struct playlist_info* playlist = &current_playlist;
2609 if (id3)
2611 if (global_status.resume_index != playlist->index ||
2612 global_status.resume_offset != id3->offset)
2614 global_status.resume_index = playlist->index;
2615 global_status.resume_offset = id3->offset;
2616 status_save();
2619 else
2621 global_status.resume_index = -1;
2622 global_status.resume_offset = -1;
2623 status_save();
2626 return 0;
2629 /* Returns index of current playing track for display purposes. This value
2630 should not be used for resume purposes as it doesn't represent the actual
2631 index into the playlist */
2632 int playlist_get_display_index(void)
2634 struct playlist_info* playlist = &current_playlist;
2636 /* first_index should always be index 0 for display purposes */
2637 int index = rotate_index(playlist, playlist->index);
2639 return (index+1);
2642 /* returns number of tracks in current playlist */
2643 int playlist_amount(void)
2645 return playlist_amount_ex(NULL);
2649 * Create a new playlist If playlist is not NULL then we're loading a
2650 * playlist off disk for viewing/editing. The index_buffer is used to store
2651 * playlist indices (required for and only used if !current playlist). The
2652 * temp_buffer (if not NULL) is used as a scratchpad when loading indices.
2654 int playlist_create_ex(struct playlist_info* playlist,
2655 const char* dir, const char* file,
2656 void* index_buffer, int index_buffer_size,
2657 void* temp_buffer, int temp_buffer_size)
2659 if (!playlist)
2660 playlist = &current_playlist;
2661 else
2663 /* Initialize playlist structure */
2664 int r = rand() % 10;
2665 playlist->current = false;
2667 /* Use random name for control file */
2668 snprintf(playlist->control_filename, sizeof(playlist->control_filename),
2669 "%s.%d", PLAYLIST_CONTROL_FILE, r);
2670 playlist->fd = -1;
2671 playlist->control_fd = -1;
2673 if (index_buffer)
2675 int num_indices = index_buffer_size / sizeof(int);
2677 #ifdef HAVE_DIRCACHE
2678 num_indices /= 2;
2679 #endif
2680 if (num_indices > global_settings.max_files_in_playlist)
2681 num_indices = global_settings.max_files_in_playlist;
2683 playlist->max_playlist_size = num_indices;
2684 playlist->indices = index_buffer;
2685 #ifdef HAVE_DIRCACHE
2686 playlist->filenames = (const struct dircache_entry **)
2687 &playlist->indices[num_indices];
2688 #endif
2690 else
2692 playlist->max_playlist_size = current_playlist.max_playlist_size;
2693 playlist->indices = current_playlist.indices;
2694 #ifdef HAVE_DIRCACHE
2695 playlist->filenames = current_playlist.filenames;
2696 #endif
2699 playlist->buffer_size = 0;
2700 playlist->buffer = NULL;
2701 mutex_init(&playlist->control_mutex);
2704 new_playlist(playlist, dir, file);
2706 if (file)
2707 /* load the playlist file */
2708 add_indices_to_playlist(playlist, temp_buffer, temp_buffer_size);
2710 return 0;
2714 * Set the specified playlist as the current.
2715 * NOTE: You will get undefined behaviour if something is already playing so
2716 * remember to stop before calling this. Also, this call will
2717 * effectively close your playlist, making it unusable.
2719 int playlist_set_current(struct playlist_info* playlist)
2721 if (!playlist || (check_control(playlist) < 0))
2722 return -1;
2724 empty_playlist(&current_playlist, false);
2726 strncpy(current_playlist.filename, playlist->filename,
2727 sizeof(current_playlist.filename));
2729 current_playlist.utf8 = playlist->utf8;
2730 current_playlist.fd = playlist->fd;
2732 close(playlist->control_fd);
2733 close(current_playlist.control_fd);
2734 remove(current_playlist.control_filename);
2735 if (rename(playlist->control_filename,
2736 current_playlist.control_filename) < 0)
2737 return -1;
2738 current_playlist.control_fd = open(current_playlist.control_filename,
2739 O_RDWR);
2740 if (current_playlist.control_fd < 0)
2741 return -1;
2742 current_playlist.control_created = true;
2744 current_playlist.dirlen = playlist->dirlen;
2746 if (playlist->indices && playlist->indices != current_playlist.indices)
2748 memcpy(current_playlist.indices, playlist->indices,
2749 playlist->max_playlist_size*sizeof(int));
2750 #ifdef HAVE_DIRCACHE
2751 memcpy(current_playlist.filenames, playlist->filenames,
2752 playlist->max_playlist_size*sizeof(int));
2753 #endif
2756 current_playlist.first_index = playlist->first_index;
2757 current_playlist.amount = playlist->amount;
2758 current_playlist.last_insert_pos = playlist->last_insert_pos;
2759 current_playlist.seed = playlist->seed;
2760 current_playlist.shuffle_modified = playlist->shuffle_modified;
2761 current_playlist.deleted = playlist->deleted;
2762 current_playlist.num_inserted_tracks = playlist->num_inserted_tracks;
2764 memcpy(current_playlist.control_cache, playlist->control_cache,
2765 sizeof(current_playlist.control_cache));
2766 current_playlist.num_cached = playlist->num_cached;
2767 current_playlist.pending_control_sync = playlist->pending_control_sync;
2769 return 0;
2773 * Close files and delete control file for non-current playlist.
2775 void playlist_close(struct playlist_info* playlist)
2777 if (!playlist)
2778 return;
2780 if (playlist->fd >= 0)
2781 close(playlist->fd);
2783 if (playlist->control_fd >= 0)
2784 close(playlist->control_fd);
2786 if (playlist->control_created)
2787 remove(playlist->control_filename);
2790 void playlist_sync(struct playlist_info* playlist)
2792 if (!playlist)
2793 playlist = &current_playlist;
2795 sync_control(playlist, false);
2796 if ((audio_status() & AUDIO_STATUS_PLAY) && playlist->started)
2797 audio_flush_and_reload_tracks();
2799 #ifdef HAVE_DIRCACHE
2800 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
2801 #endif
2805 * Insert track into playlist at specified position (or one of the special
2806 * positions). Returns position where track was inserted or -1 if error.
2808 int playlist_insert_track(struct playlist_info* playlist, const char *filename,
2809 int position, bool queue, bool sync)
2811 int result;
2813 if (!playlist)
2814 playlist = &current_playlist;
2816 if (check_control(playlist) < 0)
2818 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
2819 return -1;
2822 result = add_track_to_playlist(playlist, filename, position, queue, -1);
2824 /* Check if we want manually sync later. For example when adding
2825 * bunch of files from tagcache, syncing after every file wouldn't be
2826 * a good thing to do. */
2827 if (sync && result >= 0)
2828 playlist_sync(playlist);
2830 return result;
2834 * Insert all tracks from specified directory into playlist.
2836 int playlist_insert_directory(struct playlist_info* playlist,
2837 const char *dirname, int position, bool queue,
2838 bool recurse)
2840 int result;
2841 unsigned char *count_str;
2842 struct directory_search_context context;
2844 if (!playlist)
2845 playlist = &current_playlist;
2847 if (check_control(playlist) < 0)
2849 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
2850 return -1;
2853 if (position == PLAYLIST_REPLACE)
2855 if (playlist_remove_all_tracks(playlist) == 0)
2856 position = PLAYLIST_INSERT_LAST;
2857 else
2858 return -1;
2861 if (queue)
2862 count_str = ID2P(LANG_PLAYLIST_QUEUE_COUNT);
2863 else
2864 count_str = ID2P(LANG_PLAYLIST_INSERT_COUNT);
2866 display_playlist_count(0, count_str, false);
2868 context.playlist = playlist;
2869 context.position = position;
2870 context.queue = queue;
2871 context.count = 0;
2873 cpu_boost(true);
2875 result = playlist_directory_tracksearch(dirname, recurse,
2876 directory_search_callback, &context);
2878 sync_control(playlist, false);
2880 cpu_boost(false);
2882 display_playlist_count(context.count, count_str, true);
2884 if ((audio_status() & AUDIO_STATUS_PLAY) && playlist->started)
2885 audio_flush_and_reload_tracks();
2887 #ifdef HAVE_DIRCACHE
2888 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
2889 #endif
2891 return result;
2895 * Insert all tracks from specified playlist into dynamic playlist.
2897 int playlist_insert_playlist(struct playlist_info* playlist, const char *filename,
2898 int position, bool queue)
2900 int fd;
2901 int max;
2902 char *temp_ptr;
2903 const char *dir;
2904 unsigned char *count_str;
2905 char temp_buf[MAX_PATH+1];
2906 char trackname[MAX_PATH+1];
2907 int count = 0;
2908 int result = 0;
2909 bool utf8 = is_m3u8(filename);
2911 if (!playlist)
2912 playlist = &current_playlist;
2914 if (check_control(playlist) < 0)
2916 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
2917 return -1;
2920 fd = open_utf8(filename, O_RDONLY);
2921 if (fd < 0)
2923 splash(HZ*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR));
2924 return -1;
2927 /* we need the directory name for formatting purposes */
2928 dir = filename;
2930 temp_ptr = strrchr(filename+1,'/');
2931 if (temp_ptr)
2932 *temp_ptr = 0;
2933 else
2934 dir = "/";
2936 if (queue)
2937 count_str = ID2P(LANG_PLAYLIST_QUEUE_COUNT);
2938 else
2939 count_str = ID2P(LANG_PLAYLIST_INSERT_COUNT);
2941 display_playlist_count(count, count_str, false);
2943 if (position == PLAYLIST_REPLACE)
2945 if (playlist_remove_all_tracks(playlist) == 0)
2946 position = PLAYLIST_INSERT_LAST;
2947 else return -1;
2950 cpu_boost(true);
2952 while ((max = read_line(fd, temp_buf, sizeof(temp_buf))) > 0)
2954 /* user abort */
2955 if (action_userabort(TIMEOUT_NOBLOCK))
2956 break;
2958 if (temp_buf[0] != '#' && temp_buf[0] != '\0')
2960 int insert_pos;
2962 if (!utf8)
2964 /* Use trackname as a temporay buffer. Note that trackname must
2965 * be as large as temp_buf.
2967 max = convert_m3u(temp_buf, max, sizeof(temp_buf), trackname);
2970 /* we need to format so that relative paths are correctly
2971 handled */
2972 if (format_track_path(trackname, temp_buf, sizeof(trackname), max,
2973 dir) < 0)
2975 result = -1;
2976 break;
2979 insert_pos = add_track_to_playlist(playlist, trackname, position,
2980 queue, -1);
2982 if (insert_pos < 0)
2984 result = -1;
2985 break;
2988 /* Make sure tracks are inserted in correct order if user
2989 requests INSERT_FIRST */
2990 if (position == PLAYLIST_INSERT_FIRST || position >= 0)
2991 position = insert_pos + 1;
2993 count++;
2995 if ((count%PLAYLIST_DISPLAY_COUNT) == 0)
2997 display_playlist_count(count, count_str, false);
2999 if (count == PLAYLIST_DISPLAY_COUNT &&
3000 (audio_status() & AUDIO_STATUS_PLAY) &&
3001 playlist->started)
3002 audio_flush_and_reload_tracks();
3006 /* let the other threads work */
3007 yield();
3010 close(fd);
3012 if (temp_ptr)
3013 *temp_ptr = '/';
3015 sync_control(playlist, false);
3017 cpu_boost(false);
3019 display_playlist_count(count, count_str, true);
3021 if ((audio_status() & AUDIO_STATUS_PLAY) && playlist->started)
3022 audio_flush_and_reload_tracks();
3024 #ifdef HAVE_DIRCACHE
3025 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
3026 #endif
3028 return result;
3032 * Delete track at specified index. If index is PLAYLIST_DELETE_CURRENT then
3033 * we want to delete the current playing track.
3035 int playlist_delete(struct playlist_info* playlist, int index)
3037 int result = 0;
3039 if (!playlist)
3040 playlist = &current_playlist;
3042 if (check_control(playlist) < 0)
3044 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
3045 return -1;
3048 if (index == PLAYLIST_DELETE_CURRENT)
3049 index = playlist->index;
3051 result = remove_track_from_playlist(playlist, index, true);
3053 if (result != -1 && (audio_status() & AUDIO_STATUS_PLAY) &&
3054 playlist->started)
3055 audio_flush_and_reload_tracks();
3057 return result;
3061 * Move track at index to new_index. Tracks between the two are shifted
3062 * appropriately. Returns 0 on success and -1 on failure.
3064 int playlist_move(struct playlist_info* playlist, int index, int new_index)
3066 int result;
3067 int seek;
3068 bool control_file;
3069 bool queue;
3070 bool current = false;
3071 int r;
3072 char filename[MAX_PATH];
3074 if (!playlist)
3075 playlist = &current_playlist;
3077 if (check_control(playlist) < 0)
3079 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
3080 return -1;
3083 if (index == new_index)
3084 return -1;
3086 if (index == playlist->index)
3087 /* Moving the current track */
3088 current = true;
3090 control_file = playlist->indices[index] & PLAYLIST_INSERT_TYPE_MASK;
3091 queue = playlist->indices[index] & PLAYLIST_QUEUE_MASK;
3092 seek = playlist->indices[index] & PLAYLIST_SEEK_MASK;
3094 if (get_filename(playlist, index, seek, control_file, filename,
3095 sizeof(filename)) < 0)
3096 return -1;
3098 /* Delete track from original position */
3099 result = remove_track_from_playlist(playlist, index, true);
3101 if (result != -1)
3103 /* We want to insert the track at the position that was specified by
3104 new_index. This may be different then new_index because of the
3105 shifting that occurred after the delete */
3106 r = rotate_index(playlist, new_index);
3108 if (r == 0)
3109 /* First index */
3110 new_index = PLAYLIST_PREPEND;
3111 else if (r == playlist->amount)
3112 /* Append */
3113 new_index = PLAYLIST_INSERT_LAST;
3114 else
3115 /* Calculate index of desired position */
3116 new_index = (r+playlist->first_index)%playlist->amount;
3118 result = add_track_to_playlist(playlist, filename, new_index, queue,
3119 -1);
3121 if (result != -1)
3123 if (current)
3125 /* Moved the current track */
3126 switch (new_index)
3128 case PLAYLIST_PREPEND:
3129 playlist->index = playlist->first_index;
3130 break;
3131 case PLAYLIST_INSERT_LAST:
3132 playlist->index = playlist->first_index - 1;
3133 if (playlist->index < 0)
3134 playlist->index += playlist->amount;
3135 break;
3136 default:
3137 playlist->index = new_index;
3138 break;
3142 if ((audio_status() & AUDIO_STATUS_PLAY) && playlist->started)
3143 audio_flush_and_reload_tracks();
3147 #ifdef HAVE_DIRCACHE
3148 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
3149 #endif
3151 return result;
3154 /* shuffle currently playing playlist */
3155 int playlist_randomise(struct playlist_info* playlist, unsigned int seed,
3156 bool start_current)
3158 int result;
3160 if (!playlist)
3161 playlist = &current_playlist;
3163 check_control(playlist);
3165 result = randomise_playlist(playlist, seed, start_current, true);
3167 if (result != -1 && (audio_status() & AUDIO_STATUS_PLAY) &&
3168 playlist->started)
3169 audio_flush_and_reload_tracks();
3171 return result;
3174 /* sort currently playing playlist */
3175 int playlist_sort(struct playlist_info* playlist, bool start_current)
3177 int result;
3179 if (!playlist)
3180 playlist = &current_playlist;
3182 check_control(playlist);
3184 result = sort_playlist(playlist, start_current, true);
3186 if (result != -1 && (audio_status() & AUDIO_STATUS_PLAY) &&
3187 playlist->started)
3188 audio_flush_and_reload_tracks();
3190 return result;
3193 /* returns true if playlist has been modified */
3194 bool playlist_modified(const struct playlist_info* playlist)
3196 if (!playlist)
3197 playlist = &current_playlist;
3199 if (playlist->shuffle_modified ||
3200 playlist->deleted ||
3201 playlist->num_inserted_tracks > 0)
3202 return true;
3204 return false;
3207 /* returns index of first track in playlist */
3208 int playlist_get_first_index(const struct playlist_info* playlist)
3210 if (!playlist)
3211 playlist = &current_playlist;
3213 return playlist->first_index;
3216 /* returns shuffle seed of playlist */
3217 int playlist_get_seed(const struct playlist_info* playlist)
3219 if (!playlist)
3220 playlist = &current_playlist;
3222 return playlist->seed;
3225 /* returns number of tracks in playlist (includes queued/inserted tracks) */
3226 int playlist_amount_ex(const struct playlist_info* playlist)
3228 if (!playlist)
3229 playlist = &current_playlist;
3231 return playlist->amount;
3234 /* returns full path of playlist (minus extension) */
3235 char *playlist_name(const struct playlist_info* playlist, char *buf,
3236 int buf_size)
3238 char *sep;
3240 if (!playlist)
3241 playlist = &current_playlist;
3243 strncpy(buf, playlist->filename+playlist->dirlen, buf_size);
3245 if (!buf[0])
3246 return NULL;
3248 /* Remove extension */
3249 sep = strrchr(buf, '.');
3250 if (sep)
3251 *sep = 0;
3253 return buf;
3256 /* returns the playlist filename */
3257 char *playlist_get_name(const struct playlist_info* playlist, char *buf,
3258 int buf_size)
3260 if (!playlist)
3261 playlist = &current_playlist;
3263 strncpy(buf, playlist->filename, buf_size);
3265 if (!buf[0])
3266 return NULL;
3268 return buf;
3271 /* Fills info structure with information about track at specified index.
3272 Returns 0 on success and -1 on failure */
3273 int playlist_get_track_info(struct playlist_info* playlist, int index,
3274 struct playlist_track_info* info)
3276 int seek;
3277 bool control_file;
3279 if (!playlist)
3280 playlist = &current_playlist;
3282 if (index < 0 || index >= playlist->amount)
3283 return -1;
3285 control_file = playlist->indices[index] & PLAYLIST_INSERT_TYPE_MASK;
3286 seek = playlist->indices[index] & PLAYLIST_SEEK_MASK;
3288 if (get_filename(playlist, index, seek, control_file, info->filename,
3289 sizeof(info->filename)) < 0)
3290 return -1;
3292 info->attr = 0;
3294 if (control_file)
3296 if (playlist->indices[index] & PLAYLIST_QUEUE_MASK)
3297 info->attr |= PLAYLIST_ATTR_QUEUED;
3298 else
3299 info->attr |= PLAYLIST_ATTR_INSERTED;
3303 if (playlist->indices[index] & PLAYLIST_SKIPPED)
3304 info->attr |= PLAYLIST_ATTR_SKIPPED;
3306 info->index = index;
3307 info->display_index = rotate_index(playlist, index) + 1;
3309 return 0;
3312 /* save the current dynamic playlist to specified file */
3313 int playlist_save(struct playlist_info* playlist, char *filename)
3315 int fd;
3316 int i, index;
3317 int count = 0;
3318 char path[MAX_PATH+1];
3319 char tmp_buf[MAX_PATH+1];
3320 int result = 0;
3321 bool overwrite_current = false;
3322 int* index_buf = NULL;
3324 if (!playlist)
3325 playlist = &current_playlist;
3327 if (playlist->amount <= 0)
3328 return -1;
3330 /* use current working directory as base for pathname */
3331 if (format_track_path(path, filename, sizeof(tmp_buf),
3332 strlen(filename)+1, getcwd(NULL, -1)) < 0)
3333 return -1;
3335 if (!strncmp(playlist->filename, path, strlen(path)))
3337 /* Attempting to overwrite current playlist file.*/
3339 if (playlist->buffer_size < (int)(playlist->amount * sizeof(int)))
3341 /* not enough buffer space to store updated indices */
3342 splash(HZ*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR));
3343 return -1;
3346 /* in_ram buffer is unused for m3u files so we'll use for storing
3347 updated indices */
3348 index_buf = (int*)playlist->buffer;
3350 /* use temporary pathname */
3351 snprintf(path, sizeof(path), "%s_temp", playlist->filename);
3352 overwrite_current = true;
3355 if (is_m3u8(path))
3357 fd = open_utf8(path, O_CREAT|O_WRONLY|O_TRUNC);
3359 else
3361 /* some applications require a BOM to read the file properly */
3362 fd = open(path, O_CREAT|O_WRONLY|O_TRUNC);
3364 if (fd < 0)
3366 splash(HZ*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR));
3367 return -1;
3370 display_playlist_count(count, ID2P(LANG_PLAYLIST_SAVE_COUNT), false);
3372 cpu_boost(true);
3374 index = playlist->first_index;
3375 for (i=0; i<playlist->amount; i++)
3377 bool control_file;
3378 bool queue;
3379 int seek;
3381 /* user abort */
3382 if (action_userabort(TIMEOUT_NOBLOCK))
3384 result = -1;
3385 break;
3388 control_file = playlist->indices[index] & PLAYLIST_INSERT_TYPE_MASK;
3389 queue = playlist->indices[index] & PLAYLIST_QUEUE_MASK;
3390 seek = playlist->indices[index] & PLAYLIST_SEEK_MASK;
3392 /* Don't save queued files */
3393 if (!queue)
3395 if (get_filename(playlist, index, seek, control_file, tmp_buf,
3396 MAX_PATH+1) < 0)
3398 result = -1;
3399 break;
3402 if (overwrite_current)
3403 index_buf[count] = lseek(fd, 0, SEEK_CUR);
3405 if (fdprintf(fd, "%s\n", tmp_buf) < 0)
3407 splash(HZ*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR));
3408 result = -1;
3409 break;
3412 count++;
3414 if ((count % PLAYLIST_DISPLAY_COUNT) == 0)
3415 display_playlist_count(count, ID2P(LANG_PLAYLIST_SAVE_COUNT),
3416 false);
3418 yield();
3421 index = (index+1)%playlist->amount;
3424 display_playlist_count(count, ID2P(LANG_PLAYLIST_SAVE_COUNT), true);
3426 close(fd);
3428 if (overwrite_current && result >= 0)
3430 result = -1;
3432 mutex_lock(&playlist->control_mutex);
3434 /* Replace the current playlist with the new one and update indices */
3435 close(playlist->fd);
3436 if (remove(playlist->filename) >= 0)
3438 if (rename(path, playlist->filename) >= 0)
3440 playlist->fd = open_utf8(playlist->filename, O_RDONLY);
3441 if (playlist->fd >= 0)
3443 index = playlist->first_index;
3444 for (i=0, count=0; i<playlist->amount; i++)
3446 if (!(playlist->indices[index] & PLAYLIST_QUEUE_MASK))
3448 playlist->indices[index] = index_buf[count];
3449 count++;
3451 index = (index+1)%playlist->amount;
3454 /* we need to recreate control because inserted tracks are
3455 now part of the playlist and shuffle has been
3456 invalidated */
3457 result = recreate_control(playlist);
3462 mutex_unlock(&playlist->control_mutex);
3466 cpu_boost(false);
3468 return result;
3472 * Search specified directory for tracks and notify via callback. May be
3473 * called recursively.
3475 int playlist_directory_tracksearch(const char* dirname, bool recurse,
3476 int (*callback)(char*, void*),
3477 void* context)
3479 char buf[MAX_PATH+1];
3480 int result = 0;
3481 int num_files = 0;
3482 int i;
3483 struct entry *files;
3484 struct tree_context* tc = tree_get_context();
3485 int old_dirfilter = *(tc->dirfilter);
3487 if (!callback)
3488 return -1;
3490 /* use the tree browser dircache to load files */
3491 *(tc->dirfilter) = SHOW_ALL;
3493 if (ft_load(tc, dirname) < 0)
3495 splash(HZ*2, ID2P(LANG_PLAYLIST_DIRECTORY_ACCESS_ERROR));
3496 *(tc->dirfilter) = old_dirfilter;
3497 return -1;
3500 files = (struct entry*) tc->dircache;
3501 num_files = tc->filesindir;
3503 /* we've overwritten the dircache so tree browser will need to be
3504 reloaded */
3505 reload_directory();
3507 for (i=0; i<num_files; i++)
3509 /* user abort */
3510 if (action_userabort(TIMEOUT_NOBLOCK))
3512 result = -1;
3513 break;
3516 if (files[i].attr & ATTR_DIRECTORY)
3518 if (recurse)
3520 /* recursively add directories */
3521 snprintf(buf, sizeof(buf), "%s/%s", dirname, files[i].name);
3522 result = playlist_directory_tracksearch(buf, recurse,
3523 callback, context);
3524 if (result < 0)
3525 break;
3527 /* we now need to reload our current directory */
3528 if(ft_load(tc, dirname) < 0)
3530 result = -1;
3531 break;
3534 files = (struct entry*) tc->dircache;
3535 num_files = tc->filesindir;
3536 if (!num_files)
3538 result = -1;
3539 break;
3542 else
3543 continue;
3545 else if ((files[i].attr & FILE_ATTR_MASK) == FILE_ATTR_AUDIO)
3547 snprintf(buf, sizeof(buf), "%s/%s", dirname, files[i].name);
3549 if (callback(buf, context) != 0)
3551 result = -1;
3552 break;
3555 /* let the other threads work */
3556 yield();
3560 /* restore dirfilter */
3561 *(tc->dirfilter) = old_dirfilter;
3563 return result;