1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
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
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
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.
73 #include "string-extra.h"
75 #include "ata_idle_notify.h"
85 #include "applimits.h"
89 #include "filefuncs.h"
95 #include "filetypes.h"
96 #ifdef HAVE_LCD_BITMAP
104 #include "rbunicode.h"
105 #include "root_menu.h"
106 #include "plugin.h" /* To borrow a temp buffer to rewrite a .m3u8 file */
108 #define PLAYLIST_CONTROL_FILE_VERSION 2
111 Each playlist index has a flag associated with it which identifies what
112 type of track it is. These flags are stored in the 4 high order bits of
115 NOTE: This limits the playlist file size to a max of 256M.
119 01 = Track was prepended into playlist
120 10 = Track was inserted into playlist
121 11 = Track was appended into playlist
126 0 = Track entry is valid
127 1 = Track does not exist on disk and should be skipped
129 #define PLAYLIST_SEEK_MASK 0x0FFFFFFF
130 #define PLAYLIST_INSERT_TYPE_MASK 0xC0000000
131 #define PLAYLIST_QUEUE_MASK 0x20000000
133 #define PLAYLIST_INSERT_TYPE_PREPEND 0x40000000
134 #define PLAYLIST_INSERT_TYPE_INSERT 0x80000000
135 #define PLAYLIST_INSERT_TYPE_APPEND 0xC0000000
137 #define PLAYLIST_QUEUED 0x20000000
138 #define PLAYLIST_SKIPPED 0x10000000
140 struct directory_search_context
{
141 struct playlist_info
* playlist
;
147 static struct playlist_info current_playlist
;
149 static void empty_playlist(struct playlist_info
* playlist
, bool resume
);
150 static void new_playlist(struct playlist_info
* playlist
, const char *dir
,
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
,
168 static int sort_playlist(struct playlist_info
* playlist
, bool start_current
,
170 static int get_next_index(const struct playlist_info
* playlist
, int steps
,
172 static void find_and_set_playlist_index(struct playlist_info
* playlist
,
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
,
183 static void display_playlist_count(int count
, const unsigned char *fmt
,
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
);
194 #define PLAYLIST_LOAD_POINTERS 1
196 static struct event_queue playlist_queue SHAREDBSS_ATTR
;
197 static long playlist_stack
[(DEFAULT_STACK_SIZE
+ 0x800)/sizeof(long)];
198 static const char playlist_thread_name
[] = "playlist cachectrl";
201 static struct mutex current_playlist_mutex SHAREDBSS_ATTR
;
202 static struct mutex created_playlist_mutex SHAREDBSS_ATTR
;
204 /* Check if the filename suggests M3U or M3U8 format. */
205 static bool is_m3u8(const char* filename
)
207 int len
= strlen(filename
);
209 /* Default to M3U8 unless explicitly told otherwise. */
210 return !(len
> 4 && strcasecmp(&filename
[len
- 4], ".m3u") == 0);
214 /* Convert a filename in an M3U playlist to UTF-8.
216 * buf - the filename to convert; can contain more than one line from the
218 * buf_len - amount of buf that is used.
219 * buf_max - total size of buf.
220 * temp - temporary conversion buffer, at least buf_max bytes.
222 * Returns the length of the converted filename.
224 static int convert_m3u(char* buf
, int buf_len
, int buf_max
, char* temp
)
230 while ((buf
[i
] != '\n') && (buf
[i
] != '\r') && (i
< buf_len
))
235 /* Work back killing white space. */
236 while ((i
> 0) && isspace(buf
[i
- 1]))
244 /* Convert char by char, so as to not overflow temp (iso_decode should
245 * preferably handle this). No more than 4 bytes should be generated for
248 for (i
= 0; i
< buf_len
&& dest
< (temp
+ buf_max
- 4); i
++)
250 dest
= iso_decode(&buf
[i
], dest
, -1, 1);
259 * remove any files and indices associated with the playlist
261 static void empty_playlist(struct playlist_info
* playlist
, bool resume
)
263 playlist
->filename
[0] = '\0';
264 playlist
->utf8
= true;
266 if(playlist
->fd
>= 0)
267 /* If there is an already open playlist, close it. */
271 if(playlist
->control_fd
>= 0)
272 close(playlist
->control_fd
);
273 playlist
->control_fd
= -1;
274 playlist
->control_created
= false;
276 playlist
->in_ram
= false;
278 if (playlist
->buffer
)
279 playlist
->buffer
[0] = 0;
281 playlist
->buffer_end_pos
= 0;
284 playlist
->first_index
= 0;
285 playlist
->amount
= 0;
286 playlist
->last_insert_pos
= -1;
288 playlist
->shuffle_modified
= false;
289 playlist
->deleted
= false;
290 playlist
->num_inserted_tracks
= 0;
291 playlist
->started
= false;
293 playlist
->num_cached
= 0;
294 playlist
->pending_control_sync
= false;
296 if (!resume
&& playlist
->current
)
298 /* start with fresh playlist control file when starting new
300 create_control(playlist
);
305 * Initialize a new playlist for viewing/editing/playing. dir is the
306 * directory where the playlist is located and file is the filename.
308 static void new_playlist(struct playlist_info
* playlist
, const char *dir
,
311 const char *fileused
= file
;
312 const char *dirused
= dir
;
313 empty_playlist(playlist
, false);
319 if (dirused
&& playlist
->current
) /* !current cannot be in_ram */
320 playlist
->in_ram
= true;
322 dirused
= ""; /* empty playlist */
325 update_playlist_filename(playlist
, dirused
, fileused
);
327 if (playlist
->control_fd
>= 0)
329 update_control(playlist
, PLAYLIST_COMMAND_PLAYLIST
,
330 PLAYLIST_CONTROL_FILE_VERSION
, -1, dirused
, fileused
, NULL
);
331 sync_control(playlist
, false);
336 * create control file for playlist
338 static void create_control(struct playlist_info
* playlist
)
340 playlist
->control_fd
= open(playlist
->control_filename
,
341 O_CREAT
|O_RDWR
|O_TRUNC
, 0666);
342 if (playlist
->control_fd
< 0)
344 if (check_rockboxdir())
346 cond_talk_ids_fq(LANG_PLAYLIST_CONTROL_ACCESS_ERROR
);
347 splashf(HZ
*2, (unsigned char *)"%s (%d)",
348 str(LANG_PLAYLIST_CONTROL_ACCESS_ERROR
),
349 playlist
->control_fd
);
351 playlist
->control_created
= false;
355 playlist
->control_created
= true;
360 * validate the control file. This may include creating/initializing it if
363 static int check_control(struct playlist_info
* playlist
)
365 if (!playlist
->control_created
)
367 create_control(playlist
);
369 if (playlist
->control_fd
>= 0)
371 char* dir
= playlist
->filename
;
372 char* file
= playlist
->filename
+playlist
->dirlen
;
373 char c
= playlist
->filename
[playlist
->dirlen
-1];
375 playlist
->filename
[playlist
->dirlen
-1] = '\0';
377 update_control(playlist
, PLAYLIST_COMMAND_PLAYLIST
,
378 PLAYLIST_CONTROL_FILE_VERSION
, -1, dir
, file
, NULL
);
379 sync_control(playlist
, false);
380 playlist
->filename
[playlist
->dirlen
-1] = c
;
384 if (playlist
->control_fd
< 0)
391 * recreate the control file based on current playlist entries
393 static int recreate_control(struct playlist_info
* playlist
)
395 char temp_file
[MAX_PATH
+1];
400 if(playlist
->control_fd
>= 0)
402 char* dir
= playlist
->filename
;
403 char* file
= playlist
->filename
+playlist
->dirlen
;
404 char c
= playlist
->filename
[playlist
->dirlen
-1];
406 close(playlist
->control_fd
);
408 snprintf(temp_file
, sizeof(temp_file
), "%s_temp",
409 playlist
->control_filename
);
411 if (rename(playlist
->control_filename
, temp_file
) < 0)
414 temp_fd
= open(temp_file
, O_RDONLY
);
418 playlist
->control_fd
= open(playlist
->control_filename
,
419 O_CREAT
|O_RDWR
|O_TRUNC
, 0666);
420 if (playlist
->control_fd
< 0)
423 playlist
->filename
[playlist
->dirlen
-1] = '\0';
425 /* cannot call update_control() because of mutex */
426 result
= fdprintf(playlist
->control_fd
, "P:%d:%s:%s\n",
427 PLAYLIST_CONTROL_FILE_VERSION
, dir
, file
);
429 playlist
->filename
[playlist
->dirlen
-1] = c
;
439 playlist
->shuffle_modified
= false;
440 playlist
->deleted
= false;
441 playlist
->num_inserted_tracks
= 0;
443 for (i
=0; i
<playlist
->amount
; i
++)
445 if (playlist
->indices
[i
] & PLAYLIST_INSERT_TYPE_MASK
)
447 bool queue
= playlist
->indices
[i
] & PLAYLIST_QUEUE_MASK
;
448 char inserted_file
[MAX_PATH
+1];
450 lseek(temp_fd
, playlist
->indices
[i
] & PLAYLIST_SEEK_MASK
,
452 read_line(temp_fd
, inserted_file
, sizeof(inserted_file
));
454 result
= fdprintf(playlist
->control_fd
, "%c:%d:%d:",
455 queue
?'Q':'A', i
, playlist
->last_insert_pos
);
458 /* save the position in file where name is written */
459 int seek_pos
= lseek(playlist
->control_fd
, 0, SEEK_CUR
);
461 result
= fdprintf(playlist
->control_fd
, "%s\n",
464 playlist
->indices
[i
] =
465 (playlist
->indices
[i
] & ~PLAYLIST_SEEK_MASK
) | seek_pos
;
471 playlist
->num_inserted_tracks
++;
477 fsync(playlist
->control_fd
);
486 * store directory and name of playlist file
488 static void update_playlist_filename(struct playlist_info
* playlist
,
489 const char *dir
, const char *file
)
492 int dirlen
= strlen(dir
);
494 playlist
->utf8
= is_m3u8(file
);
496 /* If the dir does not end in trailing slash, we use a separator.
497 Otherwise we don't. */
498 if('/' != dir
[dirlen
-1])
504 playlist
->dirlen
= dirlen
;
506 snprintf(playlist
->filename
, sizeof(playlist
->filename
),
507 "%s%s%s", dir
, sep
, file
);
511 * calculate track offsets within a playlist file
513 static int add_indices_to_playlist(struct playlist_info
* playlist
,
514 char* buffer
, size_t buflen
)
518 unsigned int count
= 0;
523 if(-1 == playlist
->fd
)
524 playlist
->fd
= open_utf8(playlist
->filename
, O_RDONLY
);
526 return -1; /* failure */
527 if((i
= lseek(playlist
->fd
, 0, SEEK_CUR
)) > 0)
528 playlist
->utf8
= true; /* Override any earlier indication. */
530 splash(0, ID2P(LANG_WAIT
));
534 /* use mp3 buffer for maximum load speed */
536 #if CONFIG_CODEC != SWCODEC
537 talk_buffer_steal(); /* we use the mp3 buffer, need to tell */
538 buflen
= (audiobufend
- audiobuf
);
539 buffer
= (char *)audiobuf
;
541 buffer
= (char *)audio_get_buffer(false, &buflen
);
549 nread
= read(playlist
->fd
, buffer
, buflen
);
550 /* Terminate on EOF */
554 p
= (unsigned char *)buffer
;
556 for(count
=0; count
< nread
; count
++,p
++) {
558 /* Are we on a new line? */
559 if((*p
== '\n') || (*p
== '\r'))
569 if ( playlist
->amount
>= playlist
->max_playlist_size
) {
570 display_buffer_full();
575 /* Store a new entry */
576 playlist
->indices
[ playlist
->amount
] = i
+count
;
578 if (playlist
->filenames
)
579 playlist
->filenames
[ playlist
->amount
] = -1;
591 queue_post(&playlist_queue
, PLAYLIST_LOAD_POINTERS
, 0);
598 * Utility function to create a new playlist, fill it with the next or
599 * previous directory, shuffle it if needed, and start playback.
600 * If play_last is true and direction zero or negative, start playing
601 * the last file in the directory, otherwise start playing the first.
603 static int create_and_play_dir(int direction
, bool play_last
)
605 char dir
[MAX_PATH
+ 1];
610 res
= get_next_directory(dir
);
612 res
= get_previous_directory(dir
);
616 if (playlist_create(dir
, NULL
) != -1)
618 ft_build_playlist(tree_get_context(), 0);
620 if (global_settings
.playlist_shuffle
)
621 playlist_shuffle(current_tick
, -1);
623 if (play_last
&& direction
<= 0)
624 index
= current_playlist
.amount
- 1;
628 #if (CONFIG_CODEC == SWCODEC)
629 current_playlist
.started
= true;
631 playlist_start(index
, 0);
635 /* we've overwritten the dircache when getting the next/previous dir,
636 so the tree browser context will need to be reloaded */
644 * Removes all tracks, from the playlist, leaving the presently playing
647 int playlist_remove_all_tracks(struct playlist_info
*playlist
)
651 if (playlist
== NULL
)
652 playlist
= ¤t_playlist
;
654 while (playlist
->index
> 0)
655 if ((result
= remove_track_from_playlist(playlist
, 0, true)) < 0)
658 while (playlist
->amount
> 1)
659 if ((result
= remove_track_from_playlist(playlist
, 1, true)) < 0)
662 if (playlist
->amount
== 1) {
663 playlist
->indices
[0] |= PLAYLIST_QUEUED
;
671 * Add track to playlist at specified position. There are seven special
672 * positions that can be specified:
673 * PLAYLIST_PREPEND - Add track at beginning of playlist
674 * PLAYLIST_INSERT - Add track after current song. NOTE: If
675 * there are already inserted tracks then track
676 * is added to the end of the insertion list
677 * PLAYLIST_INSERT_FIRST - Add track immediately after current song, no
678 * matter what other tracks have been inserted
679 * PLAYLIST_INSERT_LAST - Add track to end of playlist
680 * PLAYLIST_INSERT_SHUFFLED - Add track at some random point between the
681 * current playing track and end of playlist
682 * PLAYLIST_INSERT_LAST_SHUFFLED - Add tracks in random order to the end of
684 * PLAYLIST_REPLACE - Erase current playlist, Cue the current track
685 * and inster this track at the end.
687 static int add_track_to_playlist(struct playlist_info
* playlist
,
688 const char *filename
, int position
,
689 bool queue
, int seek_pos
)
691 int insert_position
, orig_position
;
692 unsigned long flags
= PLAYLIST_INSERT_TYPE_INSERT
;
695 insert_position
= orig_position
= position
;
697 if (playlist
->amount
>= playlist
->max_playlist_size
)
699 display_buffer_full();
705 case PLAYLIST_PREPEND
:
706 position
= insert_position
= playlist
->first_index
;
708 case PLAYLIST_INSERT
:
709 /* if there are already inserted tracks then add track to end of
710 insertion list else add after current playing track */
711 if (playlist
->last_insert_pos
>= 0 &&
712 playlist
->last_insert_pos
< playlist
->amount
&&
713 (playlist
->indices
[playlist
->last_insert_pos
]&
714 PLAYLIST_INSERT_TYPE_MASK
) == PLAYLIST_INSERT_TYPE_INSERT
)
715 position
= insert_position
= playlist
->last_insert_pos
+1;
716 else if (playlist
->amount
> 0)
717 position
= insert_position
= playlist
->index
+ 1;
719 position
= insert_position
= 0;
721 playlist
->last_insert_pos
= position
;
723 case PLAYLIST_INSERT_FIRST
:
724 if (playlist
->amount
> 0)
725 position
= insert_position
= playlist
->index
+ 1;
727 position
= insert_position
= 0;
729 playlist
->last_insert_pos
= position
;
731 case PLAYLIST_INSERT_LAST
:
732 if (playlist
->first_index
> 0)
733 position
= insert_position
= playlist
->first_index
;
735 position
= insert_position
= playlist
->amount
;
737 playlist
->last_insert_pos
= position
;
739 case PLAYLIST_INSERT_SHUFFLED
:
741 if (playlist
->started
)
744 int n
= playlist
->amount
-
745 rotate_index(playlist
, playlist
->index
);
752 position
= playlist
->index
+ offset
+ 1;
753 if (position
>= playlist
->amount
)
754 position
-= playlist
->amount
;
756 insert_position
= position
;
759 position
= insert_position
= (rand() % (playlist
->amount
+1));
762 case PLAYLIST_INSERT_LAST_SHUFFLED
:
764 position
= insert_position
= playlist
->last_shuffled_start
+
765 rand() % (playlist
->amount
- playlist
->last_shuffled_start
+ 1);
768 case PLAYLIST_REPLACE
:
769 if (playlist_remove_all_tracks(playlist
) < 0)
772 playlist
->last_insert_pos
= position
= insert_position
= playlist
->index
+ 1;
777 flags
|= PLAYLIST_QUEUED
;
779 /* shift indices so that track can be added */
780 for (i
=playlist
->amount
; i
>insert_position
; i
--)
782 playlist
->indices
[i
] = playlist
->indices
[i
-1];
784 if (playlist
->filenames
)
785 playlist
->filenames
[i
] = playlist
->filenames
[i
-1];
789 /* update stored indices if needed */
791 if (orig_position
< 0)
793 if (playlist
->amount
> 0 && insert_position
<= playlist
->index
&&
797 if (playlist
->amount
> 0 && insert_position
<= playlist
->first_index
&&
798 orig_position
!= PLAYLIST_PREPEND
&& playlist
->started
)
799 playlist
->first_index
++;
802 if (insert_position
< playlist
->last_insert_pos
||
803 (insert_position
== playlist
->last_insert_pos
&& position
< 0))
804 playlist
->last_insert_pos
++;
806 if (seek_pos
< 0 && playlist
->control_fd
>= 0)
808 int result
= update_control(playlist
,
809 (queue
?PLAYLIST_COMMAND_QUEUE
:PLAYLIST_COMMAND_ADD
), position
,
810 playlist
->last_insert_pos
, filename
, NULL
, &seek_pos
);
816 playlist
->indices
[insert_position
] = flags
| seek_pos
;
819 if (playlist
->filenames
)
820 playlist
->filenames
[insert_position
] = -1;
824 playlist
->num_inserted_tracks
++;
826 return insert_position
;
830 * Callback for playlist_directory_tracksearch to insert track into
833 static int directory_search_callback(char* filename
, void* context
)
835 struct directory_search_context
* c
=
836 (struct directory_search_context
*) context
;
839 insert_pos
= add_track_to_playlist(c
->playlist
, filename
, c
->position
,
847 /* Make sure tracks are inserted in correct order if user requests
849 if (c
->position
== PLAYLIST_INSERT_FIRST
|| c
->position
>= 0)
850 c
->position
= insert_pos
+ 1;
852 if (((c
->count
)%PLAYLIST_DISPLAY_COUNT
) == 0)
854 unsigned char* count_str
;
857 count_str
= ID2P(LANG_PLAYLIST_QUEUE_COUNT
);
859 count_str
= ID2P(LANG_PLAYLIST_INSERT_COUNT
);
861 display_playlist_count(c
->count
, count_str
, false);
863 if ((c
->count
) == PLAYLIST_DISPLAY_COUNT
&&
864 (audio_status() & AUDIO_STATUS_PLAY
) &&
865 c
->playlist
->started
)
866 audio_flush_and_reload_tracks();
873 * remove track at specified position
875 static int remove_track_from_playlist(struct playlist_info
* playlist
,
876 int position
, bool write
)
881 if (playlist
->amount
<= 0)
884 inserted
= playlist
->indices
[position
] & PLAYLIST_INSERT_TYPE_MASK
;
886 /* shift indices now that track has been removed */
887 for (i
=position
; i
<playlist
->amount
; i
++)
889 playlist
->indices
[i
] = playlist
->indices
[i
+1];
891 if (playlist
->filenames
)
892 playlist
->filenames
[i
] = playlist
->filenames
[i
+1];
899 playlist
->num_inserted_tracks
--;
901 playlist
->deleted
= true;
903 /* update stored indices if needed */
904 if (position
< playlist
->index
)
907 if (position
< playlist
->first_index
)
909 playlist
->first_index
--;
912 if (position
<= playlist
->last_insert_pos
)
913 playlist
->last_insert_pos
--;
915 if (write
&& playlist
->control_fd
>= 0)
917 int result
= update_control(playlist
, PLAYLIST_COMMAND_DELETE
,
918 position
, -1, NULL
, NULL
, NULL
);
923 sync_control(playlist
, false);
930 * randomly rearrange the array of indices for the playlist. If start_current
931 * is true then update the index to the new index of the current playing track
933 static int randomise_playlist(struct playlist_info
* playlist
,
934 unsigned int seed
, bool start_current
,
940 unsigned int current
= playlist
->indices
[playlist
->index
];
942 /* seed 0 is used to identify sorted playlist for resume purposes */
946 /* seed with the given seed */
949 /* randomise entire indices list */
950 for(count
= playlist
->amount
- 1; count
>= 0; count
--)
952 /* the rand is from 0 to RAND_MAX, so adjust to our value range */
953 candidate
= rand() % (count
+ 1);
955 /* now swap the values at the 'count' and 'candidate' positions */
956 store
= playlist
->indices
[candidate
];
957 playlist
->indices
[candidate
] = playlist
->indices
[count
];
958 playlist
->indices
[count
] = store
;
960 if (playlist
->filenames
)
962 store
= playlist
->filenames
[candidate
];
963 playlist
->filenames
[candidate
] = playlist
->filenames
[count
];
964 playlist
->filenames
[count
] = store
;
970 find_and_set_playlist_index(playlist
, current
);
972 /* indices have been moved so last insert position is no longer valid */
973 playlist
->last_insert_pos
= -1;
975 playlist
->seed
= seed
;
976 if (playlist
->num_inserted_tracks
> 0 || playlist
->deleted
)
977 playlist
->shuffle_modified
= true;
981 update_control(playlist
, PLAYLIST_COMMAND_SHUFFLE
, seed
,
982 playlist
->first_index
, NULL
, NULL
, NULL
);
989 * Sort the array of indices for the playlist. If start_current is true then
990 * set the index to the new index of the current song.
991 * Also while going to unshuffled mode set the first_index to 0.
993 static int sort_playlist(struct playlist_info
* playlist
, bool start_current
,
996 unsigned int current
= playlist
->indices
[playlist
->index
];
998 if (playlist
->amount
> 0)
999 qsort(playlist
->indices
, playlist
->amount
,
1000 sizeof(playlist
->indices
[0]), compare
);
1002 #ifdef HAVE_DIRCACHE
1003 /** We need to re-check the song names from disk because qsort can't
1004 * sort two arrays at once :/
1005 * FIXME: Please implement a better way to do this. */
1006 memset(playlist
->filenames
, 0xff, playlist
->max_playlist_size
* sizeof(int));
1007 queue_post(&playlist_queue
, PLAYLIST_LOAD_POINTERS
, 0);
1011 find_and_set_playlist_index(playlist
, current
);
1013 /* indices have been moved so last insert position is no longer valid */
1014 playlist
->last_insert_pos
= -1;
1016 if (!playlist
->num_inserted_tracks
&& !playlist
->deleted
)
1017 playlist
->shuffle_modified
= false;
1018 if (write
&& playlist
->control_fd
>= 0)
1020 playlist
->first_index
= 0;
1021 update_control(playlist
, PLAYLIST_COMMAND_UNSHUFFLE
,
1022 playlist
->first_index
, -1, NULL
, NULL
, NULL
);
1028 /* Calculate how many steps we have to really step when skipping entries
1031 static int calculate_step_count(const struct playlist_info
*playlist
, int steps
)
1033 int i
, count
, direction
;
1035 int stepped_count
= 0;
1048 index
= playlist
->index
;
1051 /* Boundary check */
1053 index
+= playlist
->amount
;
1054 if (index
>= playlist
->amount
)
1055 index
-= playlist
->amount
;
1057 /* Check if we found a bad entry. */
1058 if (playlist
->indices
[index
] & PLAYLIST_SKIPPED
)
1061 /* Are all entries bad? */
1062 if (stepped_count
++ > playlist
->amount
)
1069 } while (i
<= count
);
1074 /* Marks the index of the track to be skipped that is "steps" away from
1075 * current playing track.
1077 void playlist_skip_entry(struct playlist_info
*playlist
, int steps
)
1081 if (playlist
== NULL
)
1082 playlist
= ¤t_playlist
;
1084 /* need to account for already skipped tracks */
1085 steps
= calculate_step_count(playlist
, steps
);
1087 index
= playlist
->index
+ steps
;
1089 index
+= playlist
->amount
;
1090 else if (index
>= playlist
->amount
)
1091 index
-= playlist
->amount
;
1093 playlist
->indices
[index
] |= PLAYLIST_SKIPPED
;
1097 * returns the index of the track that is "steps" away from current playing
1100 static int get_next_index(const struct playlist_info
* playlist
, int steps
,
1103 int current_index
= playlist
->index
;
1104 int next_index
= -1;
1106 if (playlist
->amount
<= 0)
1109 if (repeat_mode
== -1)
1110 repeat_mode
= global_settings
.repeat_mode
;
1112 if (repeat_mode
== REPEAT_SHUFFLE
&& playlist
->amount
<= 1)
1113 repeat_mode
= REPEAT_ALL
;
1115 steps
= calculate_step_count(playlist
, steps
);
1116 switch (repeat_mode
)
1118 case REPEAT_SHUFFLE
:
1119 /* Treat repeat shuffle just like repeat off. At end of playlist,
1120 play will be resumed in playlist_next() */
1123 current_index
= rotate_index(playlist
, current_index
);
1124 next_index
= current_index
+steps
;
1125 if ((next_index
< 0) || (next_index
>= playlist
->amount
))
1128 next_index
= (next_index
+playlist
->first_index
) %
1135 #ifdef AB_REPEAT_ENABLE
1138 next_index
= current_index
;
1144 next_index
= (current_index
+steps
) % playlist
->amount
;
1145 while (next_index
< 0)
1146 next_index
+= playlist
->amount
;
1148 if (steps
>= playlist
->amount
)
1155 /* second time around so skip the queued files */
1156 for (i
=0; i
<playlist
->amount
; i
++)
1158 if (playlist
->indices
[index
] & PLAYLIST_QUEUE_MASK
)
1159 index
= (index
+1) % playlist
->amount
;
1171 /* No luck if the whole playlist was bad. */
1172 if (playlist
->indices
[next_index
] & PLAYLIST_SKIPPED
)
1179 * Search for the seek track and set appropriate indices. Used after shuffle
1180 * to make sure the current index is still pointing to correct track.
1182 static void find_and_set_playlist_index(struct playlist_info
* playlist
,
1187 /* Set the index to the current song */
1188 for (i
=0; i
<playlist
->amount
; i
++)
1190 if (playlist
->indices
[i
] == seek
)
1192 playlist
->index
= playlist
->first_index
= i
;
1200 * used to sort track indices. Sort order is as follows:
1201 * 1. Prepended tracks (in prepend order)
1202 * 2. Playlist/directory tracks (in playlist order)
1203 * 3. Inserted/Appended tracks (in insert order)
1205 static int compare(const void* p1
, const void* p2
)
1207 unsigned long* e1
= (unsigned long*) p1
;
1208 unsigned long* e2
= (unsigned long*) p2
;
1209 unsigned long flags1
= *e1
& PLAYLIST_INSERT_TYPE_MASK
;
1210 unsigned long flags2
= *e2
& PLAYLIST_INSERT_TYPE_MASK
;
1212 if (flags1
== flags2
)
1213 return (*e1
& PLAYLIST_SEEK_MASK
) - (*e2
& PLAYLIST_SEEK_MASK
);
1214 else if (flags1
== PLAYLIST_INSERT_TYPE_PREPEND
||
1215 flags2
== PLAYLIST_INSERT_TYPE_APPEND
)
1217 else if (flags1
== PLAYLIST_INSERT_TYPE_APPEND
||
1218 flags2
== PLAYLIST_INSERT_TYPE_PREPEND
)
1220 else if (flags1
&& flags2
)
1221 return (*e1
& PLAYLIST_SEEK_MASK
) - (*e2
& PLAYLIST_SEEK_MASK
);
1226 #ifdef HAVE_DIRCACHE
1228 * Thread to update filename pointers to dircache on background
1229 * without affecting playlist load up performance. This thread also flushes
1230 * any pending control commands when the disk spins up.
1232 static void playlist_flush_callback(void *param
)
1235 struct playlist_info
*playlist
;
1236 playlist
= ¤t_playlist
;
1237 if (playlist
->control_fd
>= 0)
1239 if (playlist
->num_cached
> 0)
1241 mutex_lock(playlist
->control_mutex
);
1242 flush_cached_control(playlist
);
1243 mutex_unlock(playlist
->control_mutex
);
1245 sync_control(playlist
, true);
1249 static bool is_dircache_pointers_intact(void)
1251 return dircache_get_appflag(DIRCACHE_APPFLAG_PLAYLIST
) ? true : false;
1254 static void playlist_thread(void)
1256 struct queue_event ev
;
1257 bool dirty_pointers
= false;
1258 static char tmp
[MAX_PATH
+1];
1260 struct playlist_info
*playlist
;
1267 #ifdef HAVE_DISK_STORAGE
1268 if (global_settings
.disk_spindown
> 1 &&
1269 global_settings
.disk_spindown
<= 5)
1270 sleep_time
= global_settings
.disk_spindown
- 1;
1275 queue_wait_w_tmo(&playlist_queue
, &ev
, HZ
*sleep_time
);
1279 case PLAYLIST_LOAD_POINTERS
:
1280 dirty_pointers
= true;
1283 /* Start the background scanning after either the disk spindown
1284 timeout or 5s, whichever is less */
1287 playlist
= ¤t_playlist
;
1288 if (playlist
->control_fd
>= 0)
1290 if (playlist
->num_cached
> 0)
1291 register_storage_idle_func(playlist_flush_callback
);
1294 if (!dircache_is_enabled() || !playlist
->filenames
1295 || playlist
->amount
<= 0)
1300 /* Check if previously loaded pointers are intact. */
1301 if (is_dircache_pointers_intact() && !dirty_pointers
)
1304 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
1307 for (index
= 0; index
< playlist
->amount
1308 && queue_empty(&playlist_queue
); index
++)
1310 /* Process only pointers that are not already loaded. */
1311 if (is_dircache_pointers_intact() && playlist
->filenames
[index
] >= 0)
1314 control_file
= playlist
->indices
[index
] & PLAYLIST_INSERT_TYPE_MASK
;
1315 seek
= playlist
->indices
[index
] & PLAYLIST_SEEK_MASK
;
1317 /* Load the filename from playlist file. */
1318 if (get_filename(playlist
, index
, seek
, control_file
, tmp
,
1324 /* Set the dircache entry pointer. */
1325 playlist
->filenames
[index
] = dircache_get_entry_id(tmp
);
1327 /* And be on background so user doesn't notice any delays. */
1331 if (dircache_is_enabled())
1332 dircache_set_appflag(DIRCACHE_APPFLAG_PLAYLIST
);
1334 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
1337 if (index
== playlist
->amount
)
1338 dirty_pointers
= false;
1343 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
1344 case SYS_USB_CONNECTED
:
1345 usb_acknowledge(SYS_USB_CONNECTED_ACK
);
1346 usb_wait_for_disconnect(&playlist_queue
);
1355 * gets pathname for track at seek index
1357 static int get_filename(struct playlist_info
* playlist
, int index
, int seek
,
1358 bool control_file
, char *buf
, int buf_length
)
1362 char tmp_buf
[MAX_PATH
+1];
1363 char dir_buf
[MAX_PATH
+1];
1364 bool utf8
= playlist
->utf8
;
1366 if (buf_length
> MAX_PATH
+1)
1367 buf_length
= MAX_PATH
+1;
1369 #ifdef HAVE_DIRCACHE
1370 if (is_dircache_pointers_intact() && playlist
->filenames
)
1372 if (playlist
->filenames
[index
] >= 0)
1374 max
= dircache_copy_path(playlist
->filenames
[index
],
1375 tmp_buf
, sizeof(tmp_buf
)-1);
1382 if (playlist
->in_ram
&& !control_file
&& max
< 0)
1384 max
= strlcpy(tmp_buf
, &playlist
->buffer
[seek
], sizeof(tmp_buf
));
1388 mutex_lock(playlist
->control_mutex
);
1392 fd
= playlist
->control_fd
;
1397 if(-1 == playlist
->fd
)
1398 playlist
->fd
= open(playlist
->filename
, O_RDONLY
);
1406 if (lseek(fd
, seek
, SEEK_SET
) != seek
)
1410 max
= read(fd
, tmp_buf
, MIN((size_t) buf_length
, sizeof(tmp_buf
)));
1412 if ((max
> 0) && !utf8
)
1414 /* Use dir_buf as a temporary buffer. Note that dir_buf must
1415 * be as large as tmp_buf.
1417 max
= convert_m3u(tmp_buf
, max
, sizeof(tmp_buf
), dir_buf
);
1422 mutex_unlock(playlist
->control_mutex
);
1427 splash(HZ
*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR
));
1429 splash(HZ
*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR
));
1435 strlcpy(dir_buf
, playlist
->filename
, playlist
->dirlen
);
1437 return (format_track_path(buf
, tmp_buf
, buf_length
, max
, dir_buf
));
1440 static int get_next_directory(char *dir
){
1441 return get_next_dir(dir
,true,false);
1444 static int get_previous_directory(char *dir
){
1445 return get_next_dir(dir
,false,false);
1449 * search through all the directories (starting with the current) to find
1450 * one that has tracks to play
1452 static int get_next_dir(char *dir
, bool is_forward
, bool recursion
)
1454 struct playlist_info
* playlist
= ¤t_playlist
;
1456 char *start_dir
= NULL
;
1459 struct tree_context
* tc
= tree_get_context();
1460 int saved_dirfilter
= *(tc
->dirfilter
);
1462 /* process random folder advance */
1463 if (global_settings
.next_folder
== FOLDER_ADVANCE_RANDOM
)
1465 int fd
= open(ROCKBOX_DIR
"/folder_advance_list.dat", O_RDONLY
);
1468 char buffer
[MAX_PATH
];
1469 int folder_count
= 0;
1470 srand(current_tick
);
1471 *(tc
->dirfilter
) = SHOW_MUSIC
;
1472 tc
->sort_dir
= global_settings
.sort_dir
;
1473 read(fd
,&folder_count
,sizeof(int));
1478 i
= rand()%folder_count
;
1479 lseek(fd
,sizeof(int) + (MAX_PATH
*i
),SEEK_SET
);
1480 read(fd
,buffer
,MAX_PATH
);
1481 if (check_subdir_for_music(buffer
, "", false) ==0)
1487 *(tc
->dirfilter
) = saved_dirfilter
;
1488 tc
->sort_dir
= global_settings
.sort_dir
;
1494 /* not random folder advance (or random folder advance unavailable) */
1497 /* start with root */
1502 /* start with current directory */
1503 strlcpy(dir
, playlist
->filename
, playlist
->dirlen
);
1506 /* use the tree browser dircache to load files */
1507 *(tc
->dirfilter
) = SHOW_ALL
;
1509 /* set up sorting/direction */
1510 tc
->sort_dir
= global_settings
.sort_dir
;
1513 static const char sortpairs
[] =
1515 [SORT_ALPHA
] = SORT_ALPHA_REVERSED
,
1516 [SORT_DATE
] = SORT_DATE_REVERSED
,
1517 [SORT_TYPE
] = SORT_TYPE_REVERSED
,
1518 [SORT_ALPHA_REVERSED
] = SORT_ALPHA
,
1519 [SORT_DATE_REVERSED
] = SORT_DATE
,
1520 [SORT_TYPE_REVERSED
] = SORT_TYPE
,
1523 if ((unsigned)tc
->sort_dir
< sizeof(sortpairs
))
1524 tc
->sort_dir
= sortpairs
[tc
->sort_dir
];
1529 struct entry
*files
;
1533 if (ft_load(tc
, (dir
[0]=='\0')?"/":dir
) < 0)
1540 files
= (struct entry
*) tc
->dircache
;
1541 num_files
= tc
->filesindir
;
1543 for (i
=0; i
<num_files
; i
++)
1546 if (action_userabort(TIMEOUT_NOBLOCK
))
1553 if (files
[i
].attr
& ATTR_DIRECTORY
)
1557 result
= check_subdir_for_music(dir
, files
[i
].name
, true);
1564 else if (!strcmp(start_dir
, files
[i
].name
))
1571 /* move down to parent directory. current directory name is
1572 stored as the starting point for the search in parent */
1573 start_dir
= strrchr(dir
, '/');
1584 /* restore dirfilter */
1585 *(tc
->dirfilter
) = saved_dirfilter
;
1586 tc
->sort_dir
= global_settings
.sort_dir
;
1588 /* special case if nothing found: try start searching again from root */
1589 if (result
== -1 && !recursion
){
1590 result
= get_next_dir(dir
, is_forward
, true);
1597 * Checks if there are any music files in the dir or any of its
1598 * subdirectories. May be called recursively.
1600 static int check_subdir_for_music(char *dir
, const char *subdir
, bool recurse
)
1603 int dirlen
= strlen(dir
);
1606 struct entry
*files
;
1607 bool has_music
= false;
1608 bool has_subdir
= false;
1609 struct tree_context
* tc
= tree_get_context();
1611 snprintf(dir
+dirlen
, MAX_PATH
-dirlen
, "/%s", subdir
);
1613 if (ft_load(tc
, dir
) < 0)
1618 files
= (struct entry
*) tc
->dircache
;
1619 num_files
= tc
->filesindir
;
1621 for (i
=0; i
<num_files
; i
++)
1623 if (files
[i
].attr
& ATTR_DIRECTORY
)
1625 else if ((files
[i
].attr
& FILE_ATTR_MASK
) == FILE_ATTR_AUDIO
)
1635 if (has_subdir
&& recurse
)
1637 for (i
=0; i
<num_files
; i
++)
1639 if (action_userabort(TIMEOUT_NOBLOCK
))
1645 if (files
[i
].attr
& ATTR_DIRECTORY
)
1647 result
= check_subdir_for_music(dir
, files
[i
].name
, true);
1665 /* we now need to reload our current directory */
1666 if(ft_load(tc
, dir
) < 0)
1667 splash(HZ
*2, ID2P(LANG_PLAYLIST_DIRECTORY_ACCESS_ERROR
));
1673 * Returns absolute path of track
1675 static int format_track_path(char *dest
, char *src
, int buf_length
, int max
,
1682 /* Look for the end of the string */
1689 /* Now work back killing white space */
1691 ((src
[i
-1] == ' ') ||
1692 (src
[i
-1] == '\t')))
1695 /* Zero-terminate the file name */
1698 /* replace backslashes with forward slashes */
1699 for ( j
=0; j
<i
; j
++ )
1700 if ( src
[j
] == '\\' )
1705 strlcpy(dest
, src
, buf_length
);
1709 /* handle dos style drive letter */
1711 strlcpy(dest
, &src
[2], buf_length
);
1712 else if (!strncmp(src
, "../", 3))
1714 /* handle relative paths */
1716 while(!strncmp(&src
[i
], "../", 3))
1718 for (j
=0; j
<i
/3; j
++) {
1719 temp_ptr
= strrchr(dir
, '/');
1725 snprintf(dest
, buf_length
, "%s/%s", dir
, &src
[i
]);
1727 else if ( '.' == src
[0] && '/' == src
[1] ) {
1728 snprintf(dest
, buf_length
, "%s/%s", dir
, &src
[2]);
1731 snprintf(dest
, buf_length
, "%s/%s", dir
, src
);
1739 * Display splash message showing progress of playlist/directory insertion or
1742 static void display_playlist_count(int count
, const unsigned char *fmt
,
1745 static long talked_tick
= 0;
1746 long id
= P2ID(fmt
);
1747 if(global_settings
.talk_menu
&& id
>=0)
1749 if(final
|| (count
&& (talked_tick
== 0
1750 || TIME_AFTER(current_tick
, talked_tick
+5*HZ
))))
1752 talked_tick
= current_tick
;
1753 talk_number(count
, false);
1759 splashf(0, fmt
, count
, str(LANG_OFF_ABORT
));
1763 * Display buffer full message
1765 static void display_buffer_full(void)
1767 splash(HZ
*2, ID2P(LANG_PLAYLIST_BUFFER_FULL
));
1771 * Flush any cached control commands to disk. Called when playlist is being
1772 * modified. Returns 0 on success and -1 on failure.
1774 static int flush_cached_control(struct playlist_info
* playlist
)
1779 if (!playlist
->num_cached
)
1782 lseek(playlist
->control_fd
, 0, SEEK_END
);
1784 for (i
=0; i
<playlist
->num_cached
; i
++)
1786 struct playlist_control_cache
* cache
=
1787 &(playlist
->control_cache
[i
]);
1789 switch (cache
->command
)
1791 case PLAYLIST_COMMAND_PLAYLIST
:
1792 result
= fdprintf(playlist
->control_fd
, "P:%d:%s:%s\n",
1793 cache
->i1
, cache
->s1
, cache
->s2
);
1795 case PLAYLIST_COMMAND_ADD
:
1796 case PLAYLIST_COMMAND_QUEUE
:
1797 result
= fdprintf(playlist
->control_fd
, "%c:%d:%d:",
1798 (cache
->command
== PLAYLIST_COMMAND_ADD
)?'A':'Q',
1799 cache
->i1
, cache
->i2
);
1802 /* save the position in file where name is written */
1803 int* seek_pos
= (int *)cache
->data
;
1804 *seek_pos
= lseek(playlist
->control_fd
, 0, SEEK_CUR
);
1805 result
= fdprintf(playlist
->control_fd
, "%s\n",
1809 case PLAYLIST_COMMAND_DELETE
:
1810 result
= fdprintf(playlist
->control_fd
, "D:%d\n", cache
->i1
);
1812 case PLAYLIST_COMMAND_SHUFFLE
:
1813 result
= fdprintf(playlist
->control_fd
, "S:%d:%d\n",
1814 cache
->i1
, cache
->i2
);
1816 case PLAYLIST_COMMAND_UNSHUFFLE
:
1817 result
= fdprintf(playlist
->control_fd
, "U:%d\n", cache
->i1
);
1819 case PLAYLIST_COMMAND_RESET
:
1820 result
= fdprintf(playlist
->control_fd
, "R\n");
1832 playlist
->num_cached
= 0;
1833 playlist
->pending_control_sync
= true;
1840 splash(HZ
*2, ID2P(LANG_PLAYLIST_CONTROL_UPDATE_ERROR
));
1847 * Update control data with new command. Depending on the command, it may be
1848 * cached or flushed to disk.
1850 static int update_control(struct playlist_info
* playlist
,
1851 enum playlist_command command
, int i1
, int i2
,
1852 const char* s1
, const char* s2
, void* data
)
1855 struct playlist_control_cache
* cache
;
1858 mutex_lock(playlist
->control_mutex
);
1860 cache
= &(playlist
->control_cache
[playlist
->num_cached
++]);
1862 cache
->command
= command
;
1871 case PLAYLIST_COMMAND_PLAYLIST
:
1872 case PLAYLIST_COMMAND_ADD
:
1873 case PLAYLIST_COMMAND_QUEUE
:
1874 #ifndef HAVE_DIRCACHE
1875 case PLAYLIST_COMMAND_DELETE
:
1876 case PLAYLIST_COMMAND_RESET
:
1880 case PLAYLIST_COMMAND_SHUFFLE
:
1881 case PLAYLIST_COMMAND_UNSHUFFLE
:
1883 /* only flush when needed */
1887 if (flush
|| playlist
->num_cached
== PLAYLIST_MAX_CACHE
)
1888 result
= flush_cached_control(playlist
);
1890 mutex_unlock(playlist
->control_mutex
);
1896 * sync control file to disk
1898 static void sync_control(struct playlist_info
* playlist
, bool force
)
1900 #ifdef HAVE_DIRCACHE
1901 if (playlist
->started
&& force
)
1905 if (playlist
->started
)
1908 if (playlist
->pending_control_sync
)
1910 mutex_lock(playlist
->control_mutex
);
1911 fsync(playlist
->control_fd
);
1912 playlist
->pending_control_sync
= false;
1913 mutex_unlock(playlist
->control_mutex
);
1919 * Rotate indices such that first_index is index 0
1921 static int rotate_index(const struct playlist_info
* playlist
, int index
)
1923 index
-= playlist
->first_index
;
1925 index
+= playlist
->amount
;
1931 * Initialize playlist entries at startup
1933 void playlist_init(void)
1935 struct playlist_info
* playlist
= ¤t_playlist
;
1937 mutex_init(¤t_playlist_mutex
);
1938 mutex_init(&created_playlist_mutex
);
1940 playlist
->current
= true;
1941 strlcpy(playlist
->control_filename
, PLAYLIST_CONTROL_FILE
,
1942 sizeof(playlist
->control_filename
));
1944 playlist
->control_fd
= -1;
1945 playlist
->max_playlist_size
= global_settings
.max_files_in_playlist
;
1946 playlist
->indices
= buffer_alloc(
1947 playlist
->max_playlist_size
* sizeof(int));
1948 playlist
->buffer_size
=
1949 AVERAGE_FILENAME_LENGTH
* global_settings
.max_files_in_dir
;
1950 playlist
->buffer
= buffer_alloc(playlist
->buffer_size
);
1951 playlist
->control_mutex
= ¤t_playlist_mutex
;
1953 empty_playlist(playlist
, true);
1955 #ifdef HAVE_DIRCACHE
1956 playlist
->filenames
= buffer_alloc(
1957 playlist
->max_playlist_size
* sizeof(int));
1958 memset(playlist
->filenames
, 0xff,
1959 playlist
->max_playlist_size
* sizeof(int));
1960 create_thread(playlist_thread
, playlist_stack
, sizeof(playlist_stack
),
1961 0, playlist_thread_name
IF_PRIO(, PRIORITY_BACKGROUND
)
1963 queue_init(&playlist_queue
, true);
1968 * Clean playlist at shutdown
1970 void playlist_shutdown(void)
1972 struct playlist_info
* playlist
= ¤t_playlist
;
1974 if (playlist
->control_fd
>= 0)
1976 mutex_lock(playlist
->control_mutex
);
1978 if (playlist
->num_cached
> 0)
1979 flush_cached_control(playlist
);
1981 close(playlist
->control_fd
);
1983 mutex_unlock(playlist
->control_mutex
);
1988 * Create new playlist
1990 int playlist_create(const char *dir
, const char *file
)
1992 struct playlist_info
* playlist
= ¤t_playlist
;
1994 new_playlist(playlist
, dir
, file
);
1997 /* load the playlist file */
1998 add_indices_to_playlist(playlist
, NULL
, 0);
2003 #define PLAYLIST_COMMAND_SIZE (MAX_PATH+12)
2006 * Restore the playlist state based on control file commands. Called to
2007 * resume playback after shutdown.
2009 int playlist_resume(void)
2011 struct playlist_info
* playlist
= ¤t_playlist
;
2016 int control_file_size
= 0;
2020 /* use mp3 buffer for maximum load speed */
2021 #if CONFIG_CODEC != SWCODEC
2022 talk_buffer_steal(); /* we use the mp3 buffer, need to tell */
2023 buflen
= (audiobufend
- audiobuf
);
2024 buffer
= (char *)audiobuf
;
2026 buffer
= (char *)audio_get_buffer(false, &buflen
);
2029 empty_playlist(playlist
, true);
2031 splash(0, ID2P(LANG_WAIT
));
2032 playlist
->control_fd
= open(playlist
->control_filename
, O_RDWR
);
2033 if (playlist
->control_fd
< 0)
2035 splash(HZ
*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR
));
2038 playlist
->control_created
= true;
2040 control_file_size
= filesize(playlist
->control_fd
);
2041 if (control_file_size
<= 0)
2043 splash(HZ
*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR
));
2047 /* read a small amount first to get the header */
2048 nread
= read(playlist
->control_fd
, buffer
,
2049 PLAYLIST_COMMAND_SIZE
<buflen
?PLAYLIST_COMMAND_SIZE
:buflen
);
2052 splash(HZ
*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR
));
2056 playlist
->started
= true;
2062 enum playlist_command current_command
= PLAYLIST_COMMAND_COMMENT
;
2063 int last_newline
= 0;
2065 bool newline
= true;
2066 bool exit_loop
= false;
2071 unsigned long last_tick
= current_tick
;
2072 bool useraborted
= false;
2074 for(count
=0; count
<nread
&& !exit_loop
&& !useraborted
; count
++,p
++)
2076 /* So a splash while we are loading. */
2077 if (TIME_AFTER(current_tick
, last_tick
+ HZ
/4))
2079 splashf(0, str(LANG_LOADING_PERCENT
),
2080 (total_read
+count
)*100/control_file_size
,
2081 str(LANG_OFF_ABORT
));
2082 if (action_userabort(TIMEOUT_NOBLOCK
))
2087 last_tick
= current_tick
;
2090 /* Are we on a new line? */
2091 if((*p
== '\n') || (*p
== '\r'))
2095 /* save last_newline in case we need to load more data */
2096 last_newline
= count
;
2098 switch (current_command
)
2100 case PLAYLIST_COMMAND_PLAYLIST
:
2102 /* str1=version str2=dir str3=file */
2118 version
= atoi(str1
);
2120 if (version
!= PLAYLIST_CONTROL_FILE_VERSION
)
2123 update_playlist_filename(playlist
, str2
, str3
);
2125 if (str3
[0] != '\0')
2127 /* NOTE: add_indices_to_playlist() overwrites the
2128 audiobuf so we need to reload control file
2130 add_indices_to_playlist(playlist
, NULL
, 0);
2132 else if (str2
[0] != '\0')
2134 playlist
->in_ram
= true;
2135 resume_directory(str2
);
2138 /* load the rest of the data */
2144 case PLAYLIST_COMMAND_ADD
:
2145 case PLAYLIST_COMMAND_QUEUE
:
2147 /* str1=position str2=last_position str3=file */
2148 int position
, last_position
;
2151 if (!str1
|| !str2
|| !str3
)
2158 position
= atoi(str1
);
2159 last_position
= atoi(str2
);
2161 queue
= (current_command
== PLAYLIST_COMMAND_ADD
)?
2164 /* seek position is based on str3's position in
2166 if (add_track_to_playlist(playlist
, str3
, position
,
2167 queue
, total_read
+(str3
-buffer
)) < 0)
2170 playlist
->last_insert_pos
= last_position
;
2174 case PLAYLIST_COMMAND_DELETE
:
2186 position
= atoi(str1
);
2188 if (remove_track_from_playlist(playlist
, position
,
2194 case PLAYLIST_COMMAND_SHUFFLE
:
2196 /* str1=seed str2=first_index */
2208 /* Always sort list before shuffling */
2209 sort_playlist(playlist
, false, false);
2213 playlist
->first_index
= atoi(str2
);
2215 if (randomise_playlist(playlist
, seed
, false,
2221 case PLAYLIST_COMMAND_UNSHUFFLE
:
2223 /* str1=first_index */
2231 playlist
->first_index
= atoi(str1
);
2233 if (sort_playlist(playlist
, false, false) < 0)
2239 case PLAYLIST_COMMAND_RESET
:
2241 playlist
->last_insert_pos
= -1;
2244 case PLAYLIST_COMMAND_COMMENT
:
2251 /* to ignore any extra newlines */
2252 current_command
= PLAYLIST_COMMAND_COMMENT
;
2258 /* first non-comment line must always specify playlist */
2259 if (first
&& *p
!= 'P' && *p
!= '#')
2269 /* playlist can only be specified once */
2277 current_command
= PLAYLIST_COMMAND_PLAYLIST
;
2280 current_command
= PLAYLIST_COMMAND_ADD
;
2283 current_command
= PLAYLIST_COMMAND_QUEUE
;
2286 current_command
= PLAYLIST_COMMAND_DELETE
;
2289 current_command
= PLAYLIST_COMMAND_SHUFFLE
;
2292 current_command
= PLAYLIST_COMMAND_UNSHUFFLE
;
2295 current_command
= PLAYLIST_COMMAND_RESET
;
2298 current_command
= PLAYLIST_COMMAND_COMMENT
;
2311 else if(current_command
!= PLAYLIST_COMMAND_COMMENT
)
2313 /* all control file strings are separated with a colon.
2314 Replace the colon with 0 to get proper strings that can be
2315 used by commands above */
2321 if ((count
+1) < nread
)
2335 /* allow last string to contain colons */
2346 splash(HZ
*2, ID2P(LANG_PLAYLIST_CONTROL_INVALID
));
2352 splash(HZ
*2, ID2P(LANG_CANCEL
));
2355 if (!newline
|| (exit_loop
&& count
<nread
))
2357 if ((total_read
+ count
) >= control_file_size
)
2359 /* no newline at end of control file */
2360 splash(HZ
*2, ID2P(LANG_PLAYLIST_CONTROL_INVALID
));
2364 /* We didn't end on a newline or we exited loop prematurely.
2365 Either way, re-read the remainder. */
2366 count
= last_newline
;
2367 lseek(playlist
->control_fd
, total_read
+count
, SEEK_SET
);
2370 total_read
+= count
;
2373 /* still looking for header */
2374 nread
= read(playlist
->control_fd
, buffer
,
2375 PLAYLIST_COMMAND_SIZE
<buflen
?PLAYLIST_COMMAND_SIZE
:buflen
);
2377 nread
= read(playlist
->control_fd
, buffer
, buflen
);
2379 /* Terminate on EOF */
2386 #ifdef HAVE_DIRCACHE
2387 queue_post(&playlist_queue
, PLAYLIST_LOAD_POINTERS
, 0);
2394 * Add track to in_ram playlist. Used when playing directories.
2396 int playlist_add(const char *filename
)
2398 struct playlist_info
* playlist
= ¤t_playlist
;
2399 int len
= strlen(filename
);
2401 if((len
+1 > playlist
->buffer_size
- playlist
->buffer_end_pos
) ||
2402 (playlist
->amount
>= playlist
->max_playlist_size
))
2404 display_buffer_full();
2408 playlist
->indices
[playlist
->amount
] = playlist
->buffer_end_pos
;
2409 #ifdef HAVE_DIRCACHE
2410 playlist
->filenames
[playlist
->amount
] = -1;
2414 strcpy(&playlist
->buffer
[playlist
->buffer_end_pos
], filename
);
2415 playlist
->buffer_end_pos
+= len
;
2416 playlist
->buffer
[playlist
->buffer_end_pos
++] = '\0';
2421 /* shuffle newly created playlist using random seed. */
2422 int playlist_shuffle(int random_seed
, int start_index
)
2424 struct playlist_info
* playlist
= ¤t_playlist
;
2426 bool start_current
= false;
2428 if (start_index
>= 0 && global_settings
.play_selected
)
2430 /* store the seek position before the shuffle */
2431 playlist
->index
= playlist
->first_index
= start_index
;
2432 start_current
= true;
2435 randomise_playlist(playlist
, random_seed
, start_current
, true);
2437 return playlist
->index
;
2440 /* start playing current playlist at specified index/offset */
2441 void playlist_start(int start_index
, int offset
)
2443 struct playlist_info
* playlist
= ¤t_playlist
;
2445 /* Cancel FM radio selection as previous music. For cases where we start
2446 playback without going to the WPS, such as playlist insert.. or
2447 playlist catalog. */
2448 previous_music_is_wps();
2450 playlist
->index
= start_index
;
2452 #if CONFIG_CODEC != SWCODEC
2453 talk_buffer_steal(); /* will use the mp3 buffer */
2456 playlist
->started
= true;
2457 sync_control(playlist
, false);
2461 /* Returns false if 'steps' is out of bounds, else true */
2462 bool playlist_check(int steps
)
2464 struct playlist_info
* playlist
= ¤t_playlist
;
2466 /* always allow folder navigation */
2467 if (global_settings
.next_folder
&& playlist
->in_ram
)
2470 int index
= get_next_index(playlist
, steps
, -1);
2472 if (index
< 0 && steps
>= 0 && global_settings
.repeat_mode
== REPEAT_SHUFFLE
)
2473 index
= get_next_index(playlist
, steps
, REPEAT_ALL
);
2475 return (index
>= 0);
2478 /* get trackname of track that is "steps" away from current playing track.
2479 NULL is used to identify end of playlist */
2480 const char* playlist_peek(int steps
, char* buf
, size_t buf_size
)
2482 struct playlist_info
* playlist
= ¤t_playlist
;
2488 index
= get_next_index(playlist
, steps
, -1);
2492 #if CONFIG_CODEC == SWCODEC
2493 /* Just testing - don't care about the file name */
2494 if (!buf
|| !buf_size
)
2498 control_file
= playlist
->indices
[index
] & PLAYLIST_INSERT_TYPE_MASK
;
2499 seek
= playlist
->indices
[index
] & PLAYLIST_SEEK_MASK
;
2501 if (get_filename(playlist
, index
, seek
, control_file
, buf
,
2507 if (!playlist
->in_ram
|| control_file
)
2509 /* remove bogus dirs from beginning of path
2510 (workaround for buggy playlist creation tools) */
2513 if (file_exists(temp_ptr
))
2516 temp_ptr
= strchr(temp_ptr
+1, '/');
2521 /* Even though this is an invalid file, we still need to pass a
2522 file name to the caller because NULL is used to indicate end
2532 * Update indices as track has changed
2534 int playlist_next(int steps
)
2536 struct playlist_info
* playlist
= ¤t_playlist
;
2540 #ifdef AB_REPEAT_ENABLE
2541 && (global_settings
.repeat_mode
!= REPEAT_AB
)
2543 && (global_settings
.repeat_mode
!= REPEAT_ONE
) )
2547 /* We need to delete all the queued songs */
2548 for (i
=0, j
=steps
; i
<j
; i
++)
2550 index
= get_next_index(playlist
, i
, -1);
2552 if (playlist
->indices
[index
] & PLAYLIST_QUEUE_MASK
)
2554 remove_track_from_playlist(playlist
, index
, true);
2555 steps
--; /* one less track */
2560 index
= get_next_index(playlist
, steps
, -1);
2564 /* end of playlist... or is it */
2565 if (global_settings
.repeat_mode
== REPEAT_SHUFFLE
&&
2566 playlist
->amount
> 1)
2568 /* Repeat shuffle mode. Re-shuffle playlist and resume play */
2569 playlist
->first_index
= 0;
2570 sort_playlist(playlist
, false, false);
2571 randomise_playlist(playlist
, current_tick
, false, true);
2573 #if CONFIG_CODEC == SWCODEC
2574 playlist
->started
= true;
2576 playlist_start(0, 0);
2578 playlist
->index
= 0;
2581 else if (playlist
->in_ram
&& global_settings
.next_folder
)
2583 index
= create_and_play_dir(steps
, true);
2587 playlist
->index
= index
;
2594 playlist
->index
= index
;
2596 if (playlist
->last_insert_pos
>= 0 && steps
> 0)
2598 /* check to see if we've gone beyond the last inserted track */
2599 int cur
= rotate_index(playlist
, index
);
2600 int last_pos
= rotate_index(playlist
, playlist
->last_insert_pos
);
2604 /* reset last inserted track */
2605 playlist
->last_insert_pos
= -1;
2607 if (playlist
->control_fd
>= 0)
2609 int result
= update_control(playlist
, PLAYLIST_COMMAND_RESET
,
2610 -1, -1, NULL
, NULL
, NULL
);
2615 sync_control(playlist
, false);
2623 /* try playing next or previous folder */
2624 bool playlist_next_dir(int direction
)
2626 /* not to mess up real playlists */
2627 if(!current_playlist
.in_ram
)
2630 return create_and_play_dir(direction
, false) >= 0;
2633 /* Get resume info for current playing song. If return value is -1 then
2634 settings shouldn't be saved. */
2635 int playlist_get_resume_info(int *resume_index
)
2637 struct playlist_info
* playlist
= ¤t_playlist
;
2639 *resume_index
= playlist
->index
;
2644 /* Update resume info for current playing song. Returns -1 on error. */
2645 int playlist_update_resume_info(const struct mp3entry
* id3
)
2647 struct playlist_info
* playlist
= ¤t_playlist
;
2651 if (global_status
.resume_index
!= playlist
->index
||
2652 global_status
.resume_offset
!= id3
->offset
)
2654 global_status
.resume_index
= playlist
->index
;
2655 global_status
.resume_offset
= id3
->offset
;
2661 global_status
.resume_index
= -1;
2662 global_status
.resume_offset
= -1;
2669 /* Returns index of current playing track for display purposes. This value
2670 should not be used for resume purposes as it doesn't represent the actual
2671 index into the playlist */
2672 int playlist_get_display_index(void)
2674 struct playlist_info
* playlist
= ¤t_playlist
;
2676 /* first_index should always be index 0 for display purposes */
2677 int index
= rotate_index(playlist
, playlist
->index
);
2682 /* returns number of tracks in current playlist */
2683 int playlist_amount(void)
2685 return playlist_amount_ex(NULL
);
2687 /* set playlist->last_shuffle_start to playlist->amount for
2688 PLAYLIST_INSERT_LAST_SHUFFLED command purposes*/
2689 void playlist_set_last_shuffled_start(void)
2691 struct playlist_info
* playlist
= ¤t_playlist
;
2692 playlist
->last_shuffled_start
= playlist
->amount
;
2695 * Create a new playlist If playlist is not NULL then we're loading a
2696 * playlist off disk for viewing/editing. The index_buffer is used to store
2697 * playlist indices (required for and only used if !current playlist). The
2698 * temp_buffer (if not NULL) is used as a scratchpad when loading indices.
2700 int playlist_create_ex(struct playlist_info
* playlist
,
2701 const char* dir
, const char* file
,
2702 void* index_buffer
, int index_buffer_size
,
2703 void* temp_buffer
, int temp_buffer_size
)
2706 playlist
= ¤t_playlist
;
2709 /* Initialize playlist structure */
2710 int r
= rand() % 10;
2711 playlist
->current
= false;
2713 /* Use random name for control file */
2714 snprintf(playlist
->control_filename
, sizeof(playlist
->control_filename
),
2715 "%s.%d", PLAYLIST_CONTROL_FILE
, r
);
2717 playlist
->control_fd
= -1;
2721 int num_indices
= index_buffer_size
/ sizeof(int);
2723 #ifdef HAVE_DIRCACHE
2726 if (num_indices
> global_settings
.max_files_in_playlist
)
2727 num_indices
= global_settings
.max_files_in_playlist
;
2729 playlist
->max_playlist_size
= num_indices
;
2730 playlist
->indices
= index_buffer
;
2731 #ifdef HAVE_DIRCACHE
2732 playlist
->filenames
= (int*)&playlist
->indices
[num_indices
];
2737 playlist
->max_playlist_size
= current_playlist
.max_playlist_size
;
2738 playlist
->indices
= current_playlist
.indices
;
2739 #ifdef HAVE_DIRCACHE
2740 playlist
->filenames
= current_playlist
.filenames
;
2744 playlist
->buffer_size
= 0;
2745 playlist
->buffer
= NULL
;
2746 playlist
->control_mutex
= &created_playlist_mutex
;
2749 new_playlist(playlist
, dir
, file
);
2752 /* load the playlist file */
2753 add_indices_to_playlist(playlist
, temp_buffer
, temp_buffer_size
);
2759 * Set the specified playlist as the current.
2760 * NOTE: You will get undefined behaviour if something is already playing so
2761 * remember to stop before calling this. Also, this call will
2762 * effectively close your playlist, making it unusable.
2764 int playlist_set_current(struct playlist_info
* playlist
)
2766 if (!playlist
|| (check_control(playlist
) < 0))
2769 empty_playlist(¤t_playlist
, false);
2771 strlcpy(current_playlist
.filename
, playlist
->filename
,
2772 sizeof(current_playlist
.filename
));
2774 current_playlist
.utf8
= playlist
->utf8
;
2775 current_playlist
.fd
= playlist
->fd
;
2777 close(playlist
->control_fd
);
2778 close(current_playlist
.control_fd
);
2779 remove(current_playlist
.control_filename
);
2780 if (rename(playlist
->control_filename
,
2781 current_playlist
.control_filename
) < 0)
2783 current_playlist
.control_fd
= open(current_playlist
.control_filename
,
2785 if (current_playlist
.control_fd
< 0)
2787 current_playlist
.control_created
= true;
2789 current_playlist
.dirlen
= playlist
->dirlen
;
2791 if (playlist
->indices
&& playlist
->indices
!= current_playlist
.indices
)
2793 memcpy(current_playlist
.indices
, playlist
->indices
,
2794 playlist
->max_playlist_size
*sizeof(int));
2795 #ifdef HAVE_DIRCACHE
2796 memcpy(current_playlist
.filenames
, playlist
->filenames
,
2797 playlist
->max_playlist_size
*sizeof(int));
2801 current_playlist
.first_index
= playlist
->first_index
;
2802 current_playlist
.amount
= playlist
->amount
;
2803 current_playlist
.last_insert_pos
= playlist
->last_insert_pos
;
2804 current_playlist
.seed
= playlist
->seed
;
2805 current_playlist
.shuffle_modified
= playlist
->shuffle_modified
;
2806 current_playlist
.deleted
= playlist
->deleted
;
2807 current_playlist
.num_inserted_tracks
= playlist
->num_inserted_tracks
;
2809 memcpy(current_playlist
.control_cache
, playlist
->control_cache
,
2810 sizeof(current_playlist
.control_cache
));
2811 current_playlist
.num_cached
= playlist
->num_cached
;
2812 current_playlist
.pending_control_sync
= playlist
->pending_control_sync
;
2816 struct playlist_info
*playlist_get_current(void)
2818 return ¤t_playlist
;
2821 * Close files and delete control file for non-current playlist.
2823 void playlist_close(struct playlist_info
* playlist
)
2828 if (playlist
->fd
>= 0)
2829 close(playlist
->fd
);
2831 if (playlist
->control_fd
>= 0)
2832 close(playlist
->control_fd
);
2834 if (playlist
->control_created
)
2835 remove(playlist
->control_filename
);
2838 void playlist_sync(struct playlist_info
* playlist
)
2841 playlist
= ¤t_playlist
;
2843 sync_control(playlist
, false);
2844 if ((audio_status() & AUDIO_STATUS_PLAY
) && playlist
->started
)
2845 audio_flush_and_reload_tracks();
2847 #ifdef HAVE_DIRCACHE
2848 queue_post(&playlist_queue
, PLAYLIST_LOAD_POINTERS
, 0);
2853 * Insert track into playlist at specified position (or one of the special
2854 * positions). Returns position where track was inserted or -1 if error.
2856 int playlist_insert_track(struct playlist_info
* playlist
, const char *filename
,
2857 int position
, bool queue
, bool sync
)
2862 playlist
= ¤t_playlist
;
2864 if (check_control(playlist
) < 0)
2866 splash(HZ
*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR
));
2870 result
= add_track_to_playlist(playlist
, filename
, position
, queue
, -1);
2872 /* Check if we want manually sync later. For example when adding
2873 * bunch of files from tagcache, syncing after every file wouldn't be
2874 * a good thing to do. */
2875 if (sync
&& result
>= 0)
2876 playlist_sync(playlist
);
2882 * Insert all tracks from specified directory into playlist.
2884 int playlist_insert_directory(struct playlist_info
* playlist
,
2885 const char *dirname
, int position
, bool queue
,
2889 unsigned char *count_str
;
2890 struct directory_search_context context
;
2893 playlist
= ¤t_playlist
;
2895 if (check_control(playlist
) < 0)
2897 splash(HZ
*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR
));
2901 if (position
== PLAYLIST_REPLACE
)
2903 if (playlist_remove_all_tracks(playlist
) == 0)
2904 position
= PLAYLIST_INSERT_LAST
;
2910 count_str
= ID2P(LANG_PLAYLIST_QUEUE_COUNT
);
2912 count_str
= ID2P(LANG_PLAYLIST_INSERT_COUNT
);
2914 display_playlist_count(0, count_str
, false);
2916 context
.playlist
= playlist
;
2917 context
.position
= position
;
2918 context
.queue
= queue
;
2923 result
= playlist_directory_tracksearch(dirname
, recurse
,
2924 directory_search_callback
, &context
);
2926 sync_control(playlist
, false);
2930 display_playlist_count(context
.count
, count_str
, true);
2932 if ((audio_status() & AUDIO_STATUS_PLAY
) && playlist
->started
)
2933 audio_flush_and_reload_tracks();
2935 #ifdef HAVE_DIRCACHE
2936 queue_post(&playlist_queue
, PLAYLIST_LOAD_POINTERS
, 0);
2943 * Insert all tracks from specified playlist into dynamic playlist.
2945 int playlist_insert_playlist(struct playlist_info
* playlist
, const char *filename
,
2946 int position
, bool queue
)
2952 unsigned char *count_str
;
2953 char temp_buf
[MAX_PATH
+1];
2954 char trackname
[MAX_PATH
+1];
2957 bool utf8
= is_m3u8(filename
);
2960 playlist
= ¤t_playlist
;
2962 if (check_control(playlist
) < 0)
2964 splash(HZ
*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR
));
2968 fd
= open_utf8(filename
, O_RDONLY
);
2971 splash(HZ
*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR
));
2975 /* we need the directory name for formatting purposes */
2978 temp_ptr
= strrchr(filename
+1,'/');
2985 count_str
= ID2P(LANG_PLAYLIST_QUEUE_COUNT
);
2987 count_str
= ID2P(LANG_PLAYLIST_INSERT_COUNT
);
2989 display_playlist_count(count
, count_str
, false);
2991 if (position
== PLAYLIST_REPLACE
)
2993 if (playlist_remove_all_tracks(playlist
) == 0)
2994 position
= PLAYLIST_INSERT_LAST
;
3000 while ((max
= read_line(fd
, temp_buf
, sizeof(temp_buf
))) > 0)
3003 if (action_userabort(TIMEOUT_NOBLOCK
))
3006 if (temp_buf
[0] != '#' && temp_buf
[0] != '\0')
3012 /* Use trackname as a temporay buffer. Note that trackname must
3013 * be as large as temp_buf.
3015 max
= convert_m3u(temp_buf
, max
, sizeof(temp_buf
), trackname
);
3018 /* we need to format so that relative paths are correctly
3020 if (format_track_path(trackname
, temp_buf
, sizeof(trackname
), max
,
3027 insert_pos
= add_track_to_playlist(playlist
, trackname
, position
,
3036 /* Make sure tracks are inserted in correct order if user
3037 requests INSERT_FIRST */
3038 if (position
== PLAYLIST_INSERT_FIRST
|| position
>= 0)
3039 position
= insert_pos
+ 1;
3043 if ((count
%PLAYLIST_DISPLAY_COUNT
) == 0)
3045 display_playlist_count(count
, count_str
, false);
3047 if (count
== PLAYLIST_DISPLAY_COUNT
&&
3048 (audio_status() & AUDIO_STATUS_PLAY
) &&
3050 audio_flush_and_reload_tracks();
3054 /* let the other threads work */
3063 sync_control(playlist
, false);
3067 display_playlist_count(count
, count_str
, true);
3069 if ((audio_status() & AUDIO_STATUS_PLAY
) && playlist
->started
)
3070 audio_flush_and_reload_tracks();
3072 #ifdef HAVE_DIRCACHE
3073 queue_post(&playlist_queue
, PLAYLIST_LOAD_POINTERS
, 0);
3080 * Delete track at specified index. If index is PLAYLIST_DELETE_CURRENT then
3081 * we want to delete the current playing track.
3083 int playlist_delete(struct playlist_info
* playlist
, int index
)
3088 playlist
= ¤t_playlist
;
3090 if (check_control(playlist
) < 0)
3092 splash(HZ
*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR
));
3096 if (index
== PLAYLIST_DELETE_CURRENT
)
3097 index
= playlist
->index
;
3099 result
= remove_track_from_playlist(playlist
, index
, true);
3101 if (result
!= -1 && (audio_status() & AUDIO_STATUS_PLAY
) &&
3103 audio_flush_and_reload_tracks();
3109 * Move track at index to new_index. Tracks between the two are shifted
3110 * appropriately. Returns 0 on success and -1 on failure.
3112 int playlist_move(struct playlist_info
* playlist
, int index
, int new_index
)
3118 bool current
= false;
3120 char filename
[MAX_PATH
];
3123 playlist
= ¤t_playlist
;
3125 if (check_control(playlist
) < 0)
3127 splash(HZ
*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR
));
3131 if (index
== new_index
)
3134 if (index
== playlist
->index
)
3135 /* Moving the current track */
3138 control_file
= playlist
->indices
[index
] & PLAYLIST_INSERT_TYPE_MASK
;
3139 queue
= playlist
->indices
[index
] & PLAYLIST_QUEUE_MASK
;
3140 seek
= playlist
->indices
[index
] & PLAYLIST_SEEK_MASK
;
3142 if (get_filename(playlist
, index
, seek
, control_file
, filename
,
3143 sizeof(filename
)) < 0)
3146 /* We want to insert the track at the position that was specified by
3147 new_index. This may be different then new_index because of the
3148 shifting that will occur after the delete.
3149 We calculate this before we do the remove as it depends on the
3150 size of the playlist before the track removal */
3151 r
= rotate_index(playlist
, new_index
);
3153 /* Delete track from original position */
3154 result
= remove_track_from_playlist(playlist
, index
, true);
3160 new_index
= PLAYLIST_PREPEND
;
3161 else if (r
== playlist
->amount
)
3163 new_index
= PLAYLIST_INSERT_LAST
;
3165 /* Calculate index of desired position */
3166 new_index
= (r
+playlist
->first_index
)%playlist
->amount
;
3168 result
= add_track_to_playlist(playlist
, filename
, new_index
, queue
,
3175 /* Moved the current track */
3178 case PLAYLIST_PREPEND
:
3179 playlist
->index
= playlist
->first_index
;
3181 case PLAYLIST_INSERT_LAST
:
3182 playlist
->index
= playlist
->first_index
- 1;
3183 if (playlist
->index
< 0)
3184 playlist
->index
+= playlist
->amount
;
3187 playlist
->index
= new_index
;
3192 if ((audio_status() & AUDIO_STATUS_PLAY
) && playlist
->started
)
3193 audio_flush_and_reload_tracks();
3197 #ifdef HAVE_DIRCACHE
3198 queue_post(&playlist_queue
, PLAYLIST_LOAD_POINTERS
, 0);
3204 /* shuffle currently playing playlist */
3205 int playlist_randomise(struct playlist_info
* playlist
, unsigned int seed
,
3211 playlist
= ¤t_playlist
;
3213 check_control(playlist
);
3215 result
= randomise_playlist(playlist
, seed
, start_current
, true);
3217 if (result
!= -1 && (audio_status() & AUDIO_STATUS_PLAY
) &&
3219 audio_flush_and_reload_tracks();
3224 /* sort currently playing playlist */
3225 int playlist_sort(struct playlist_info
* playlist
, bool start_current
)
3230 playlist
= ¤t_playlist
;
3232 check_control(playlist
);
3234 result
= sort_playlist(playlist
, start_current
, true);
3236 if (result
!= -1 && (audio_status() & AUDIO_STATUS_PLAY
) &&
3238 audio_flush_and_reload_tracks();
3243 /* returns true if playlist has been modified */
3244 bool playlist_modified(const struct playlist_info
* playlist
)
3247 playlist
= ¤t_playlist
;
3249 if (playlist
->shuffle_modified
||
3250 playlist
->deleted
||
3251 playlist
->num_inserted_tracks
> 0)
3257 /* returns index of first track in playlist */
3258 int playlist_get_first_index(const struct playlist_info
* playlist
)
3261 playlist
= ¤t_playlist
;
3263 return playlist
->first_index
;
3266 /* returns shuffle seed of playlist */
3267 int playlist_get_seed(const struct playlist_info
* playlist
)
3270 playlist
= ¤t_playlist
;
3272 return playlist
->seed
;
3275 /* returns number of tracks in playlist (includes queued/inserted tracks) */
3276 int playlist_amount_ex(const struct playlist_info
* playlist
)
3279 playlist
= ¤t_playlist
;
3281 return playlist
->amount
;
3284 /* returns full path of playlist (minus extension) */
3285 char *playlist_name(const struct playlist_info
* playlist
, char *buf
,
3291 playlist
= ¤t_playlist
;
3293 strlcpy(buf
, playlist
->filename
+playlist
->dirlen
, buf_size
);
3298 /* Remove extension */
3299 sep
= strrchr(buf
, '.');
3306 /* returns the playlist filename */
3307 char *playlist_get_name(const struct playlist_info
* playlist
, char *buf
,
3311 playlist
= ¤t_playlist
;
3313 strlcpy(buf
, playlist
->filename
, buf_size
);
3321 /* Fills info structure with information about track at specified index.
3322 Returns 0 on success and -1 on failure */
3323 int playlist_get_track_info(struct playlist_info
* playlist
, int index
,
3324 struct playlist_track_info
* info
)
3330 playlist
= ¤t_playlist
;
3332 if (index
< 0 || index
>= playlist
->amount
)
3335 control_file
= playlist
->indices
[index
] & PLAYLIST_INSERT_TYPE_MASK
;
3336 seek
= playlist
->indices
[index
] & PLAYLIST_SEEK_MASK
;
3338 if (get_filename(playlist
, index
, seek
, control_file
, info
->filename
,
3339 sizeof(info
->filename
)) < 0)
3346 if (playlist
->indices
[index
] & PLAYLIST_QUEUE_MASK
)
3347 info
->attr
|= PLAYLIST_ATTR_QUEUED
;
3349 info
->attr
|= PLAYLIST_ATTR_INSERTED
;
3353 if (playlist
->indices
[index
] & PLAYLIST_SKIPPED
)
3354 info
->attr
|= PLAYLIST_ATTR_SKIPPED
;
3356 info
->index
= index
;
3357 info
->display_index
= rotate_index(playlist
, index
) + 1;
3362 /* save the current dynamic playlist to specified file */
3363 int playlist_save(struct playlist_info
* playlist
, char *filename
)
3368 char path
[MAX_PATH
+1];
3369 char tmp_buf
[MAX_PATH
+1];
3371 bool overwrite_current
= false;
3372 int* index_buf
= NULL
;
3373 char* old_buffer
= NULL
;
3374 size_t old_buffer_size
= 0;
3377 playlist
= ¤t_playlist
;
3379 if (playlist
->amount
<= 0)
3382 /* use current working directory as base for pathname */
3383 if (format_track_path(path
, filename
, sizeof(tmp_buf
),
3384 strlen(filename
)+1, getcwd(NULL
, -1)) < 0)
3387 if (!strncmp(playlist
->filename
, path
, strlen(path
)))
3389 /* Attempting to overwrite current playlist file.*/
3391 if (playlist
->buffer_size
< (int)(playlist
->amount
* sizeof(int)))
3393 /* not enough buffer space to store updated indices */
3394 /* Try to get a buffer */
3395 old_buffer
= playlist
->buffer
;
3396 old_buffer_size
= playlist
->buffer_size
;
3397 playlist
->buffer
= plugin_get_buffer((size_t*)&playlist
->buffer_size
);
3398 if (playlist
->buffer_size
< (int)(playlist
->amount
* sizeof(int)))
3400 playlist
->buffer
= old_buffer
;
3401 playlist
->buffer_size
= old_buffer_size
;
3402 splash(HZ
*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR
));
3407 /* in_ram buffer is unused for m3u files so we'll use for storing
3409 index_buf
= (int*)playlist
->buffer
;
3411 /* use temporary pathname */
3412 snprintf(path
, sizeof(path
), "%s_temp", playlist
->filename
);
3413 overwrite_current
= true;
3418 fd
= open_utf8(path
, O_CREAT
|O_WRONLY
|O_TRUNC
);
3422 /* some applications require a BOM to read the file properly */
3423 fd
= open(path
, O_CREAT
|O_WRONLY
|O_TRUNC
, 0666);
3427 splash(HZ
*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR
));
3428 if (old_buffer
!= NULL
)
3430 playlist
->buffer
= old_buffer
;
3431 playlist
->buffer_size
= old_buffer_size
;
3436 display_playlist_count(count
, ID2P(LANG_PLAYLIST_SAVE_COUNT
), false);
3440 index
= playlist
->first_index
;
3441 for (i
=0; i
<playlist
->amount
; i
++)
3448 if (action_userabort(TIMEOUT_NOBLOCK
))
3454 control_file
= playlist
->indices
[index
] & PLAYLIST_INSERT_TYPE_MASK
;
3455 queue
= playlist
->indices
[index
] & PLAYLIST_QUEUE_MASK
;
3456 seek
= playlist
->indices
[index
] & PLAYLIST_SEEK_MASK
;
3458 /* Don't save queued files */
3461 if (get_filename(playlist
, index
, seek
, control_file
, tmp_buf
,
3468 if (overwrite_current
)
3469 index_buf
[count
] = lseek(fd
, 0, SEEK_CUR
);
3471 if (fdprintf(fd
, "%s\n", tmp_buf
) < 0)
3473 splash(HZ
*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR
));
3480 if ((count
% PLAYLIST_DISPLAY_COUNT
) == 0)
3481 display_playlist_count(count
, ID2P(LANG_PLAYLIST_SAVE_COUNT
),
3487 index
= (index
+1)%playlist
->amount
;
3490 display_playlist_count(count
, ID2P(LANG_PLAYLIST_SAVE_COUNT
), true);
3494 if (overwrite_current
&& result
>= 0)
3498 mutex_lock(playlist
->control_mutex
);
3500 /* Replace the current playlist with the new one and update indices */
3501 close(playlist
->fd
);
3502 if (remove(playlist
->filename
) >= 0)
3504 if (rename(path
, playlist
->filename
) >= 0)
3506 playlist
->fd
= open_utf8(playlist
->filename
, O_RDONLY
);
3507 if (playlist
->fd
>= 0)
3509 index
= playlist
->first_index
;
3510 for (i
=0, count
=0; i
<playlist
->amount
; i
++)
3512 if (!(playlist
->indices
[index
] & PLAYLIST_QUEUE_MASK
))
3514 playlist
->indices
[index
] = index_buf
[count
];
3517 index
= (index
+1)%playlist
->amount
;
3520 /* we need to recreate control because inserted tracks are
3521 now part of the playlist and shuffle has been
3523 result
= recreate_control(playlist
);
3528 mutex_unlock(playlist
->control_mutex
);
3533 if (old_buffer
!= NULL
)
3535 playlist
->buffer
= old_buffer
;
3536 playlist
->buffer_size
= old_buffer_size
;
3543 * Search specified directory for tracks and notify via callback. May be
3544 * called recursively.
3546 int playlist_directory_tracksearch(const char* dirname
, bool recurse
,
3547 int (*callback
)(char*, void*),
3550 char buf
[MAX_PATH
+1];
3554 struct entry
*files
;
3555 struct tree_context
* tc
= tree_get_context();
3556 int old_dirfilter
= *(tc
->dirfilter
);
3561 /* use the tree browser dircache to load files */
3562 *(tc
->dirfilter
) = SHOW_ALL
;
3564 if (ft_load(tc
, dirname
) < 0)
3566 splash(HZ
*2, ID2P(LANG_PLAYLIST_DIRECTORY_ACCESS_ERROR
));
3567 *(tc
->dirfilter
) = old_dirfilter
;
3571 files
= (struct entry
*) tc
->dircache
;
3572 num_files
= tc
->filesindir
;
3574 /* we've overwritten the dircache so tree browser will need to be
3578 for (i
=0; i
<num_files
; i
++)
3581 if (action_userabort(TIMEOUT_NOBLOCK
))
3587 if (files
[i
].attr
& ATTR_DIRECTORY
)
3591 /* recursively add directories */
3592 snprintf(buf
, sizeof(buf
), "%s/%s",
3593 dirname
[1]? dirname
: "", files
[i
].name
);
3594 result
= playlist_directory_tracksearch(buf
, recurse
,
3599 /* we now need to reload our current directory */
3600 if(ft_load(tc
, dirname
) < 0)
3606 files
= (struct entry
*) tc
->dircache
;
3607 num_files
= tc
->filesindir
;
3617 else if ((files
[i
].attr
& FILE_ATTR_MASK
) == FILE_ATTR_AUDIO
)
3619 snprintf(buf
, sizeof(buf
), "%s/%s",
3620 dirname
[1]? dirname
: "", files
[i
].name
);
3622 if (callback(buf
, context
) != 0)
3628 /* let the other threads work */
3633 /* restore dirfilter */
3634 *(tc
->dirfilter
) = old_dirfilter
;