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"
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
114 NOTE: This limits the playlist file size to a max of 256M.
118 01 = Track was prepended into playlist
119 10 = Track was inserted into playlist
120 11 = Track was appended into playlist
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
;
146 static struct playlist_info current_playlist
;
148 static void empty_playlist(struct playlist_info
* playlist
, bool resume
);
149 static void new_playlist(struct playlist_info
* playlist
, const char *dir
,
151 static void create_control(struct playlist_info
* playlist
);
152 static int check_control(struct playlist_info
* playlist
);
153 static int recreate_control(struct playlist_info
* playlist
);
154 static void update_playlist_filename(struct playlist_info
* playlist
,
155 const char *dir
, const char *file
);
156 static int add_indices_to_playlist(struct playlist_info
* playlist
,
157 char* buffer
, size_t buflen
);
158 static int add_track_to_playlist(struct playlist_info
* playlist
,
159 const char *filename
, int position
,
160 bool queue
, int seek_pos
);
161 static int directory_search_callback(char* filename
, void* context
);
162 static int remove_track_from_playlist(struct playlist_info
* playlist
,
163 int position
, bool write
);
164 static int randomise_playlist(struct playlist_info
* playlist
,
165 unsigned int seed
, bool start_current
,
167 static int sort_playlist(struct playlist_info
* playlist
, bool start_current
,
169 static int get_next_index(const struct playlist_info
* playlist
, int steps
,
171 static void find_and_set_playlist_index(struct playlist_info
* playlist
,
173 static int compare(const void* p1
, const void* p2
);
174 static int get_filename(struct playlist_info
* playlist
, int index
, int seek
,
175 bool control_file
, char *buf
, int buf_length
);
176 static int get_next_directory(char *dir
);
177 static int get_next_dir(char *dir
, bool is_forward
, bool recursion
);
178 static int get_previous_directory(char *dir
);
179 static int check_subdir_for_music(char *dir
, const char *subdir
, bool recurse
);
180 static int format_track_path(char *dest
, char *src
, int buf_length
, int max
,
182 static void display_playlist_count(int count
, const unsigned char *fmt
,
184 static void display_buffer_full(void);
185 static int flush_cached_control(struct playlist_info
* playlist
);
186 static int update_control(struct playlist_info
* playlist
,
187 enum playlist_command command
, int i1
, int i2
,
188 const char* s1
, const char* s2
, void* data
);
189 static void sync_control(struct playlist_info
* playlist
, bool force
);
190 static int rotate_index(const struct playlist_info
* playlist
, int index
);
193 #define PLAYLIST_LOAD_POINTERS 1
195 static struct event_queue playlist_queue SHAREDBSS_ATTR
;
196 static long playlist_stack
[(DEFAULT_STACK_SIZE
+ 0x800)/sizeof(long)];
197 static const char playlist_thread_name
[] = "playlist cachectrl";
200 static struct mutex current_playlist_mutex SHAREDBSS_ATTR
;
201 static struct mutex created_playlist_mutex SHAREDBSS_ATTR
;
203 /* Check if the filename suggests M3U or M3U8 format. */
204 static bool is_m3u8(const char* filename
)
206 int len
= strlen(filename
);
208 /* Default to M3U8 unless explicitly told otherwise. */
209 return !(len
> 4 && strcasecmp(&filename
[len
- 4], ".m3u") == 0);
213 /* Convert a filename in an M3U playlist to UTF-8.
215 * buf - the filename to convert; can contain more than one line from the
217 * buf_len - amount of buf that is used.
218 * buf_max - total size of buf.
219 * temp - temporary conversion buffer, at least buf_max bytes.
221 * Returns the length of the converted filename.
223 static int convert_m3u(char* buf
, int buf_len
, int buf_max
, char* temp
)
229 while ((buf
[i
] != '\n') && (buf
[i
] != '\r') && (i
< buf_len
))
234 /* Work back killing white space. */
235 while ((i
> 0) && isspace(buf
[i
- 1]))
243 /* Convert char by char, so as to not overflow temp (iso_decode should
244 * preferably handle this). No more than 4 bytes should be generated for
247 for (i
= 0; i
< buf_len
&& dest
< (temp
+ buf_max
- 4); i
++)
249 dest
= iso_decode(&buf
[i
], dest
, -1, 1);
258 * remove any files and indices associated with the playlist
260 static void empty_playlist(struct playlist_info
* playlist
, bool resume
)
262 playlist
->filename
[0] = '\0';
263 playlist
->utf8
= true;
265 if(playlist
->fd
>= 0)
266 /* If there is an already open playlist, close it. */
270 if(playlist
->control_fd
>= 0)
271 close(playlist
->control_fd
);
272 playlist
->control_fd
= -1;
273 playlist
->control_created
= false;
275 playlist
->in_ram
= false;
277 if (playlist
->buffer
)
278 playlist
->buffer
[0] = 0;
280 playlist
->buffer_end_pos
= 0;
283 playlist
->first_index
= 0;
284 playlist
->amount
= 0;
285 playlist
->last_insert_pos
= -1;
287 playlist
->shuffle_modified
= false;
288 playlist
->deleted
= false;
289 playlist
->num_inserted_tracks
= 0;
290 playlist
->started
= false;
292 playlist
->num_cached
= 0;
293 playlist
->pending_control_sync
= false;
295 if (!resume
&& playlist
->current
)
297 /* start with fresh playlist control file when starting new
299 create_control(playlist
);
304 * Initialize a new playlist for viewing/editing/playing. dir is the
305 * directory where the playlist is located and file is the filename.
307 static void new_playlist(struct playlist_info
* playlist
, const char *dir
,
310 const char *fileused
= file
;
311 const char *dirused
= dir
;
312 empty_playlist(playlist
, false);
318 if (dirused
&& playlist
->current
) /* !current cannot be in_ram */
319 playlist
->in_ram
= true;
321 dirused
= ""; /* empty playlist */
324 update_playlist_filename(playlist
, dirused
, fileused
);
326 if (playlist
->control_fd
>= 0)
328 update_control(playlist
, PLAYLIST_COMMAND_PLAYLIST
,
329 PLAYLIST_CONTROL_FILE_VERSION
, -1, dirused
, fileused
, NULL
);
330 sync_control(playlist
, false);
335 * create control file for playlist
337 static void create_control(struct playlist_info
* playlist
)
339 playlist
->control_fd
= open(playlist
->control_filename
,
340 O_CREAT
|O_RDWR
|O_TRUNC
, 0666);
341 if (playlist
->control_fd
< 0)
343 if (check_rockboxdir())
345 cond_talk_ids_fq(LANG_PLAYLIST_CONTROL_ACCESS_ERROR
);
346 splashf(HZ
*2, (unsigned char *)"%s (%d)",
347 str(LANG_PLAYLIST_CONTROL_ACCESS_ERROR
),
348 playlist
->control_fd
);
350 playlist
->control_created
= false;
354 playlist
->control_created
= true;
359 * validate the control file. This may include creating/initializing it if
362 static int check_control(struct playlist_info
* playlist
)
364 if (!playlist
->control_created
)
366 create_control(playlist
);
368 if (playlist
->control_fd
>= 0)
370 char* dir
= playlist
->filename
;
371 char* file
= playlist
->filename
+playlist
->dirlen
;
372 char c
= playlist
->filename
[playlist
->dirlen
-1];
374 playlist
->filename
[playlist
->dirlen
-1] = '\0';
376 update_control(playlist
, PLAYLIST_COMMAND_PLAYLIST
,
377 PLAYLIST_CONTROL_FILE_VERSION
, -1, dir
, file
, NULL
);
378 sync_control(playlist
, false);
379 playlist
->filename
[playlist
->dirlen
-1] = c
;
383 if (playlist
->control_fd
< 0)
390 * recreate the control file based on current playlist entries
392 static int recreate_control(struct playlist_info
* playlist
)
394 char temp_file
[MAX_PATH
+1];
399 if(playlist
->control_fd
>= 0)
401 char* dir
= playlist
->filename
;
402 char* file
= playlist
->filename
+playlist
->dirlen
;
403 char c
= playlist
->filename
[playlist
->dirlen
-1];
405 close(playlist
->control_fd
);
407 snprintf(temp_file
, sizeof(temp_file
), "%s_temp",
408 playlist
->control_filename
);
410 if (rename(playlist
->control_filename
, temp_file
) < 0)
413 temp_fd
= open(temp_file
, O_RDONLY
);
417 playlist
->control_fd
= open(playlist
->control_filename
,
418 O_CREAT
|O_RDWR
|O_TRUNC
, 0666);
419 if (playlist
->control_fd
< 0)
422 playlist
->filename
[playlist
->dirlen
-1] = '\0';
424 /* cannot call update_control() because of mutex */
425 result
= fdprintf(playlist
->control_fd
, "P:%d:%s:%s\n",
426 PLAYLIST_CONTROL_FILE_VERSION
, dir
, file
);
428 playlist
->filename
[playlist
->dirlen
-1] = c
;
438 playlist
->shuffle_modified
= false;
439 playlist
->deleted
= false;
440 playlist
->num_inserted_tracks
= 0;
442 for (i
=0; i
<playlist
->amount
; i
++)
444 if (playlist
->indices
[i
] & PLAYLIST_INSERT_TYPE_MASK
)
446 bool queue
= playlist
->indices
[i
] & PLAYLIST_QUEUE_MASK
;
447 char inserted_file
[MAX_PATH
+1];
449 lseek(temp_fd
, playlist
->indices
[i
] & PLAYLIST_SEEK_MASK
,
451 read_line(temp_fd
, inserted_file
, sizeof(inserted_file
));
453 result
= fdprintf(playlist
->control_fd
, "%c:%d:%d:",
454 queue
?'Q':'A', i
, playlist
->last_insert_pos
);
457 /* save the position in file where name is written */
458 int seek_pos
= lseek(playlist
->control_fd
, 0, SEEK_CUR
);
460 result
= fdprintf(playlist
->control_fd
, "%s\n",
463 playlist
->indices
[i
] =
464 (playlist
->indices
[i
] & ~PLAYLIST_SEEK_MASK
) | seek_pos
;
470 playlist
->num_inserted_tracks
++;
476 fsync(playlist
->control_fd
);
485 * store directory and name of playlist file
487 static void update_playlist_filename(struct playlist_info
* playlist
,
488 const char *dir
, const char *file
)
491 int dirlen
= strlen(dir
);
493 playlist
->utf8
= is_m3u8(file
);
495 /* If the dir does not end in trailing slash, we use a separator.
496 Otherwise we don't. */
497 if('/' != dir
[dirlen
-1])
503 playlist
->dirlen
= dirlen
;
505 snprintf(playlist
->filename
, sizeof(playlist
->filename
),
506 "%s%s%s", dir
, sep
, file
);
510 * calculate track offsets within a playlist file
512 static int add_indices_to_playlist(struct playlist_info
* playlist
,
513 char* buffer
, size_t buflen
)
517 unsigned int count
= 0;
522 if(-1 == playlist
->fd
)
523 playlist
->fd
= open_utf8(playlist
->filename
, O_RDONLY
);
525 return -1; /* failure */
526 if((i
= lseek(playlist
->fd
, 0, SEEK_CUR
)) > 0)
527 playlist
->utf8
= true; /* Override any earlier indication. */
529 splash(0, ID2P(LANG_WAIT
));
533 /* use mp3 buffer for maximum load speed */
535 #if CONFIG_CODEC != SWCODEC
536 talk_buffer_steal(); /* we use the mp3 buffer, need to tell */
537 buflen
= (audiobufend
- audiobuf
);
538 buffer
= (char *)audiobuf
;
540 buffer
= (char *)audio_get_buffer(false, &buflen
);
548 nread
= read(playlist
->fd
, buffer
, buflen
);
549 /* Terminate on EOF */
553 p
= (unsigned char *)buffer
;
555 for(count
=0; count
< nread
; count
++,p
++) {
557 /* Are we on a new line? */
558 if((*p
== '\n') || (*p
== '\r'))
568 if ( playlist
->amount
>= playlist
->max_playlist_size
) {
569 display_buffer_full();
574 /* Store a new entry */
575 playlist
->indices
[ playlist
->amount
] = i
+count
;
577 if (playlist
->filenames
)
578 playlist
->filenames
[ playlist
->amount
] = NULL
;
590 queue_post(&playlist_queue
, PLAYLIST_LOAD_POINTERS
, 0);
597 * Utility function to create a new playlist, fill it with the next or
598 * previous directory, shuffle it if needed, and start playback.
599 * If play_last is true and direction zero or negative, start playing
600 * the last file in the directory, otherwise start playing the first.
602 static int create_and_play_dir(int direction
, bool play_last
)
604 char dir
[MAX_PATH
+ 1];
609 res
= get_next_directory(dir
);
611 res
= get_previous_directory(dir
);
615 if (playlist_create(dir
, NULL
) != -1)
617 ft_build_playlist(tree_get_context(), 0);
619 if (global_settings
.playlist_shuffle
)
620 playlist_shuffle(current_tick
, -1);
622 if (play_last
&& direction
<= 0)
623 index
= current_playlist
.amount
- 1;
627 #if (CONFIG_CODEC == SWCODEC)
628 current_playlist
.started
= true;
630 playlist_start(index
, 0);
634 /* we've overwritten the dircache when getting the next/previous dir,
635 so the tree browser context will need to be reloaded */
643 * Removes all tracks, from the playlist, leaving the presently playing
646 int playlist_remove_all_tracks(struct playlist_info
*playlist
)
650 if (playlist
== NULL
)
651 playlist
= ¤t_playlist
;
653 while (playlist
->index
> 0)
654 if ((result
= remove_track_from_playlist(playlist
, 0, true)) < 0)
657 while (playlist
->amount
> 1)
658 if ((result
= remove_track_from_playlist(playlist
, 1, true)) < 0)
661 if (playlist
->amount
== 1) {
662 playlist
->indices
[0] |= PLAYLIST_QUEUED
;
670 * Add track to playlist at specified position. There are seven special
671 * positions that can be specified:
672 * PLAYLIST_PREPEND - Add track at beginning of playlist
673 * PLAYLIST_INSERT - Add track after current song. NOTE: If
674 * there are already inserted tracks then track
675 * is added to the end of the insertion list
676 * PLAYLIST_INSERT_FIRST - Add track immediately after current song, no
677 * matter what other tracks have been inserted
678 * PLAYLIST_INSERT_LAST - Add track to end of playlist
679 * PLAYLIST_INSERT_SHUFFLED - Add track at some random point between the
680 * current playing track and end of playlist
681 * PLAYLIST_INSERT_LAST_SHUFFLED - Add tracks in random order to the end of
683 * PLAYLIST_REPLACE - Erase current playlist, Cue the current track
684 * and inster this track at the end.
686 static int add_track_to_playlist(struct playlist_info
* playlist
,
687 const char *filename
, int position
,
688 bool queue
, int seek_pos
)
690 int insert_position
, orig_position
;
691 unsigned long flags
= PLAYLIST_INSERT_TYPE_INSERT
;
694 insert_position
= orig_position
= position
;
696 if (playlist
->amount
>= playlist
->max_playlist_size
)
698 display_buffer_full();
704 case PLAYLIST_PREPEND
:
705 position
= insert_position
= playlist
->first_index
;
707 case PLAYLIST_INSERT
:
708 /* if there are already inserted tracks then add track to end of
709 insertion list else add after current playing track */
710 if (playlist
->last_insert_pos
>= 0 &&
711 playlist
->last_insert_pos
< playlist
->amount
&&
712 (playlist
->indices
[playlist
->last_insert_pos
]&
713 PLAYLIST_INSERT_TYPE_MASK
) == PLAYLIST_INSERT_TYPE_INSERT
)
714 position
= insert_position
= playlist
->last_insert_pos
+1;
715 else if (playlist
->amount
> 0)
716 position
= insert_position
= playlist
->index
+ 1;
718 position
= insert_position
= 0;
720 playlist
->last_insert_pos
= position
;
722 case PLAYLIST_INSERT_FIRST
:
723 if (playlist
->amount
> 0)
724 position
= insert_position
= playlist
->index
+ 1;
726 position
= insert_position
= 0;
728 playlist
->last_insert_pos
= position
;
730 case PLAYLIST_INSERT_LAST
:
731 if (playlist
->first_index
> 0)
732 position
= insert_position
= playlist
->first_index
;
734 position
= insert_position
= playlist
->amount
;
736 playlist
->last_insert_pos
= position
;
738 case PLAYLIST_INSERT_SHUFFLED
:
740 if (playlist
->started
)
743 int n
= playlist
->amount
-
744 rotate_index(playlist
, playlist
->index
);
751 position
= playlist
->index
+ offset
+ 1;
752 if (position
>= playlist
->amount
)
753 position
-= playlist
->amount
;
755 insert_position
= position
;
758 position
= insert_position
= (rand() % (playlist
->amount
+1));
761 case PLAYLIST_INSERT_LAST_SHUFFLED
:
763 position
= insert_position
= playlist
->last_shuffled_start
+
764 rand() % (playlist
->amount
- playlist
->last_shuffled_start
+ 1);
767 case PLAYLIST_REPLACE
:
768 if (playlist_remove_all_tracks(playlist
) < 0)
771 playlist
->last_insert_pos
= position
= insert_position
= playlist
->index
+ 1;
776 flags
|= PLAYLIST_QUEUED
;
778 /* shift indices so that track can be added */
779 for (i
=playlist
->amount
; i
>insert_position
; i
--)
781 playlist
->indices
[i
] = playlist
->indices
[i
-1];
783 if (playlist
->filenames
)
784 playlist
->filenames
[i
] = playlist
->filenames
[i
-1];
788 /* update stored indices if needed */
790 if (orig_position
< 0)
792 if (playlist
->amount
> 0 && insert_position
<= playlist
->index
&&
796 if (playlist
->amount
> 0 && insert_position
<= playlist
->first_index
&&
797 orig_position
!= PLAYLIST_PREPEND
&& playlist
->started
)
798 playlist
->first_index
++;
801 if (insert_position
< playlist
->last_insert_pos
||
802 (insert_position
== playlist
->last_insert_pos
&& position
< 0))
803 playlist
->last_insert_pos
++;
805 if (seek_pos
< 0 && playlist
->control_fd
>= 0)
807 int result
= update_control(playlist
,
808 (queue
?PLAYLIST_COMMAND_QUEUE
:PLAYLIST_COMMAND_ADD
), position
,
809 playlist
->last_insert_pos
, filename
, NULL
, &seek_pos
);
815 playlist
->indices
[insert_position
] = flags
| seek_pos
;
818 if (playlist
->filenames
)
819 playlist
->filenames
[insert_position
] = NULL
;
823 playlist
->num_inserted_tracks
++;
825 return insert_position
;
829 * Callback for playlist_directory_tracksearch to insert track into
832 static int directory_search_callback(char* filename
, void* context
)
834 struct directory_search_context
* c
=
835 (struct directory_search_context
*) context
;
838 insert_pos
= add_track_to_playlist(c
->playlist
, filename
, c
->position
,
846 /* Make sure tracks are inserted in correct order if user requests
848 if (c
->position
== PLAYLIST_INSERT_FIRST
|| c
->position
>= 0)
849 c
->position
= insert_pos
+ 1;
851 if (((c
->count
)%PLAYLIST_DISPLAY_COUNT
) == 0)
853 unsigned char* count_str
;
856 count_str
= ID2P(LANG_PLAYLIST_QUEUE_COUNT
);
858 count_str
= ID2P(LANG_PLAYLIST_INSERT_COUNT
);
860 display_playlist_count(c
->count
, count_str
, false);
862 if ((c
->count
) == PLAYLIST_DISPLAY_COUNT
&&
863 (audio_status() & AUDIO_STATUS_PLAY
) &&
864 c
->playlist
->started
)
865 audio_flush_and_reload_tracks();
872 * remove track at specified position
874 static int remove_track_from_playlist(struct playlist_info
* playlist
,
875 int position
, bool write
)
880 if (playlist
->amount
<= 0)
883 inserted
= playlist
->indices
[position
] & PLAYLIST_INSERT_TYPE_MASK
;
885 /* shift indices now that track has been removed */
886 for (i
=position
; i
<playlist
->amount
; i
++)
888 playlist
->indices
[i
] = playlist
->indices
[i
+1];
890 if (playlist
->filenames
)
891 playlist
->filenames
[i
] = playlist
->filenames
[i
+1];
898 playlist
->num_inserted_tracks
--;
900 playlist
->deleted
= true;
902 /* update stored indices if needed */
903 if (position
< playlist
->index
)
906 if (position
< playlist
->first_index
)
908 playlist
->first_index
--;
911 if (position
<= playlist
->last_insert_pos
)
912 playlist
->last_insert_pos
--;
914 if (write
&& playlist
->control_fd
>= 0)
916 int result
= update_control(playlist
, PLAYLIST_COMMAND_DELETE
,
917 position
, -1, NULL
, NULL
, NULL
);
922 sync_control(playlist
, false);
929 * randomly rearrange the array of indices for the playlist. If start_current
930 * is true then update the index to the new index of the current playing track
932 static int randomise_playlist(struct playlist_info
* playlist
,
933 unsigned int seed
, bool start_current
,
939 unsigned int current
= playlist
->indices
[playlist
->index
];
941 /* seed 0 is used to identify sorted playlist for resume purposes */
945 /* seed with the given seed */
948 /* randomise entire indices list */
949 for(count
= playlist
->amount
- 1; count
>= 0; count
--)
951 /* the rand is from 0 to RAND_MAX, so adjust to our value range */
952 candidate
= rand() % (count
+ 1);
954 /* now swap the values at the 'count' and 'candidate' positions */
955 store
= playlist
->indices
[candidate
];
956 playlist
->indices
[candidate
] = playlist
->indices
[count
];
957 playlist
->indices
[count
] = store
;
959 if (playlist
->filenames
)
961 store
= (long)playlist
->filenames
[candidate
];
962 playlist
->filenames
[candidate
] = playlist
->filenames
[count
];
963 playlist
->filenames
[count
] = (struct dircache_entry
*)store
;
969 find_and_set_playlist_index(playlist
, current
);
971 /* indices have been moved so last insert position is no longer valid */
972 playlist
->last_insert_pos
= -1;
974 playlist
->seed
= seed
;
975 if (playlist
->num_inserted_tracks
> 0 || playlist
->deleted
)
976 playlist
->shuffle_modified
= true;
980 update_control(playlist
, PLAYLIST_COMMAND_SHUFFLE
, seed
,
981 playlist
->first_index
, NULL
, NULL
, NULL
);
988 * Sort the array of indices for the playlist. If start_current is true then
989 * set the index to the new index of the current song.
990 * Also while going to unshuffled mode set the first_index to 0.
992 static int sort_playlist(struct playlist_info
* playlist
, bool start_current
,
995 unsigned int current
= playlist
->indices
[playlist
->index
];
997 if (playlist
->amount
> 0)
998 qsort(playlist
->indices
, playlist
->amount
,
999 sizeof(playlist
->indices
[0]), compare
);
1001 #ifdef HAVE_DIRCACHE
1002 /** We need to re-check the song names from disk because qsort can't
1003 * sort two arrays at once :/
1004 * FIXME: Please implement a better way to do this. */
1005 memset(playlist
->filenames
, 0, playlist
->max_playlist_size
* sizeof(int));
1006 queue_post(&playlist_queue
, PLAYLIST_LOAD_POINTERS
, 0);
1010 find_and_set_playlist_index(playlist
, current
);
1012 /* indices have been moved so last insert position is no longer valid */
1013 playlist
->last_insert_pos
= -1;
1015 if (!playlist
->num_inserted_tracks
&& !playlist
->deleted
)
1016 playlist
->shuffle_modified
= false;
1017 if (write
&& playlist
->control_fd
>= 0)
1019 playlist
->first_index
= 0;
1020 update_control(playlist
, PLAYLIST_COMMAND_UNSHUFFLE
,
1021 playlist
->first_index
, -1, NULL
, NULL
, NULL
);
1027 /* Calculate how many steps we have to really step when skipping entries
1030 static int calculate_step_count(const struct playlist_info
*playlist
, int steps
)
1032 int i
, count
, direction
;
1034 int stepped_count
= 0;
1047 index
= playlist
->index
;
1050 /* Boundary check */
1052 index
+= playlist
->amount
;
1053 if (index
>= playlist
->amount
)
1054 index
-= playlist
->amount
;
1056 /* Check if we found a bad entry. */
1057 if (playlist
->indices
[index
] & PLAYLIST_SKIPPED
)
1060 /* Are all entries bad? */
1061 if (stepped_count
++ > playlist
->amount
)
1068 } while (i
<= count
);
1073 /* Marks the index of the track to be skipped that is "steps" away from
1074 * current playing track.
1076 void playlist_skip_entry(struct playlist_info
*playlist
, int steps
)
1080 if (playlist
== NULL
)
1081 playlist
= ¤t_playlist
;
1083 /* need to account for already skipped tracks */
1084 steps
= calculate_step_count(playlist
, steps
);
1086 index
= playlist
->index
+ steps
;
1088 index
+= playlist
->amount
;
1089 else if (index
>= playlist
->amount
)
1090 index
-= playlist
->amount
;
1092 playlist
->indices
[index
] |= PLAYLIST_SKIPPED
;
1096 * returns the index of the track that is "steps" away from current playing
1099 static int get_next_index(const struct playlist_info
* playlist
, int steps
,
1102 int current_index
= playlist
->index
;
1103 int next_index
= -1;
1105 if (playlist
->amount
<= 0)
1108 if (repeat_mode
== -1)
1109 repeat_mode
= global_settings
.repeat_mode
;
1111 if (repeat_mode
== REPEAT_SHUFFLE
&& playlist
->amount
<= 1)
1112 repeat_mode
= REPEAT_ALL
;
1114 steps
= calculate_step_count(playlist
, steps
);
1115 switch (repeat_mode
)
1117 case REPEAT_SHUFFLE
:
1118 /* Treat repeat shuffle just like repeat off. At end of playlist,
1119 play will be resumed in playlist_next() */
1122 current_index
= rotate_index(playlist
, current_index
);
1123 next_index
= current_index
+steps
;
1124 if ((next_index
< 0) || (next_index
>= playlist
->amount
))
1127 next_index
= (next_index
+playlist
->first_index
) %
1134 #ifdef AB_REPEAT_ENABLE
1137 next_index
= current_index
;
1143 next_index
= (current_index
+steps
) % playlist
->amount
;
1144 while (next_index
< 0)
1145 next_index
+= playlist
->amount
;
1147 if (steps
>= playlist
->amount
)
1154 /* second time around so skip the queued files */
1155 for (i
=0; i
<playlist
->amount
; i
++)
1157 if (playlist
->indices
[index
] & PLAYLIST_QUEUE_MASK
)
1158 index
= (index
+1) % playlist
->amount
;
1170 /* No luck if the whole playlist was bad. */
1171 if (playlist
->indices
[next_index
] & PLAYLIST_SKIPPED
)
1178 * Search for the seek track and set appropriate indices. Used after shuffle
1179 * to make sure the current index is still pointing to correct track.
1181 static void find_and_set_playlist_index(struct playlist_info
* playlist
,
1186 /* Set the index to the current song */
1187 for (i
=0; i
<playlist
->amount
; i
++)
1189 if (playlist
->indices
[i
] == seek
)
1191 playlist
->index
= playlist
->first_index
= i
;
1199 * used to sort track indices. Sort order is as follows:
1200 * 1. Prepended tracks (in prepend order)
1201 * 2. Playlist/directory tracks (in playlist order)
1202 * 3. Inserted/Appended tracks (in insert order)
1204 static int compare(const void* p1
, const void* p2
)
1206 unsigned long* e1
= (unsigned long*) p1
;
1207 unsigned long* e2
= (unsigned long*) p2
;
1208 unsigned long flags1
= *e1
& PLAYLIST_INSERT_TYPE_MASK
;
1209 unsigned long flags2
= *e2
& PLAYLIST_INSERT_TYPE_MASK
;
1211 if (flags1
== flags2
)
1212 return (*e1
& PLAYLIST_SEEK_MASK
) - (*e2
& PLAYLIST_SEEK_MASK
);
1213 else if (flags1
== PLAYLIST_INSERT_TYPE_PREPEND
||
1214 flags2
== PLAYLIST_INSERT_TYPE_APPEND
)
1216 else if (flags1
== PLAYLIST_INSERT_TYPE_APPEND
||
1217 flags2
== PLAYLIST_INSERT_TYPE_PREPEND
)
1219 else if (flags1
&& flags2
)
1220 return (*e1
& PLAYLIST_SEEK_MASK
) - (*e2
& PLAYLIST_SEEK_MASK
);
1225 #ifdef HAVE_DIRCACHE
1227 * Thread to update filename pointers to dircache on background
1228 * without affecting playlist load up performance. This thread also flushes
1229 * any pending control commands when the disk spins up.
1231 static void playlist_flush_callback(void *param
)
1234 struct playlist_info
*playlist
;
1235 playlist
= ¤t_playlist
;
1236 if (playlist
->control_fd
>= 0)
1238 if (playlist
->num_cached
> 0)
1240 mutex_lock(playlist
->control_mutex
);
1241 flush_cached_control(playlist
);
1242 mutex_unlock(playlist
->control_mutex
);
1244 sync_control(playlist
, true);
1248 static void playlist_thread(void)
1250 struct queue_event ev
;
1251 bool dirty_pointers
= false;
1252 static char tmp
[MAX_PATH
+1];
1254 struct playlist_info
*playlist
;
1261 #ifdef HAVE_DISK_STORAGE
1262 if (global_settings
.disk_spindown
> 1 &&
1263 global_settings
.disk_spindown
<= 5)
1264 sleep_time
= global_settings
.disk_spindown
- 1;
1269 queue_wait_w_tmo(&playlist_queue
, &ev
, HZ
*sleep_time
);
1273 case PLAYLIST_LOAD_POINTERS
:
1274 dirty_pointers
= true;
1277 /* Start the background scanning after either the disk spindown
1278 timeout or 5s, whichever is less */
1280 playlist
= ¤t_playlist
;
1281 if (playlist
->control_fd
>= 0)
1283 if (playlist
->num_cached
> 0)
1284 register_storage_idle_func(playlist_flush_callback
);
1287 if (!dirty_pointers
)
1290 if (!dircache_is_enabled() || !playlist
->filenames
1291 || playlist
->amount
<= 0)
1294 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
1297 for (index
= 0; index
< playlist
->amount
1298 && queue_empty(&playlist_queue
); index
++)
1300 /* Process only pointers that are not already loaded. */
1301 if (playlist
->filenames
[index
])
1304 control_file
= playlist
->indices
[index
] & PLAYLIST_INSERT_TYPE_MASK
;
1305 seek
= playlist
->indices
[index
] & PLAYLIST_SEEK_MASK
;
1307 /* Load the filename from playlist file. */
1308 if (get_filename(playlist
, index
, seek
, control_file
, tmp
,
1312 /* Set the dircache entry pointer. */
1313 playlist
->filenames
[index
] = dircache_get_entry_ptr(tmp
);
1315 /* And be on background so user doesn't notice any delays. */
1319 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
1322 dirty_pointers
= false;
1325 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
1326 case SYS_USB_CONNECTED
:
1327 usb_acknowledge(SYS_USB_CONNECTED_ACK
);
1328 usb_wait_for_disconnect(&playlist_queue
);
1337 * gets pathname for track at seek index
1339 static int get_filename(struct playlist_info
* playlist
, int index
, int seek
,
1340 bool control_file
, char *buf
, int buf_length
)
1344 char tmp_buf
[MAX_PATH
+1];
1345 char dir_buf
[MAX_PATH
+1];
1346 bool utf8
= playlist
->utf8
;
1348 if (buf_length
> MAX_PATH
+1)
1349 buf_length
= MAX_PATH
+1;
1351 #ifdef HAVE_DIRCACHE
1352 if (dircache_is_enabled() && playlist
->filenames
)
1354 if (playlist
->filenames
[index
] != NULL
)
1356 dircache_copy_path(playlist
->filenames
[index
], tmp_buf
, sizeof(tmp_buf
)-1);
1357 max
= strlen(tmp_buf
);
1364 if (playlist
->in_ram
&& !control_file
&& max
< 0)
1366 max
= strlcpy(tmp_buf
, &playlist
->buffer
[seek
], sizeof(tmp_buf
));
1370 mutex_lock(playlist
->control_mutex
);
1374 fd
= playlist
->control_fd
;
1379 if(-1 == playlist
->fd
)
1380 playlist
->fd
= open(playlist
->filename
, O_RDONLY
);
1388 if (lseek(fd
, seek
, SEEK_SET
) != seek
)
1392 max
= read(fd
, tmp_buf
, MIN((size_t) buf_length
, sizeof(tmp_buf
)));
1394 if ((max
> 0) && !utf8
)
1396 /* Use dir_buf as a temporary buffer. Note that dir_buf must
1397 * be as large as tmp_buf.
1399 max
= convert_m3u(tmp_buf
, max
, sizeof(tmp_buf
), dir_buf
);
1404 mutex_unlock(playlist
->control_mutex
);
1409 splash(HZ
*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR
));
1411 splash(HZ
*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR
));
1417 strlcpy(dir_buf
, playlist
->filename
, playlist
->dirlen
);
1419 return (format_track_path(buf
, tmp_buf
, buf_length
, max
, dir_buf
));
1422 static int get_next_directory(char *dir
){
1423 return get_next_dir(dir
,true,false);
1426 static int get_previous_directory(char *dir
){
1427 return get_next_dir(dir
,false,false);
1431 * search through all the directories (starting with the current) to find
1432 * one that has tracks to play
1434 static int get_next_dir(char *dir
, bool is_forward
, bool recursion
)
1436 struct playlist_info
* playlist
= ¤t_playlist
;
1438 char *start_dir
= NULL
;
1441 struct tree_context
* tc
= tree_get_context();
1442 int saved_dirfilter
= *(tc
->dirfilter
);
1444 /* process random folder advance */
1445 if (global_settings
.next_folder
== FOLDER_ADVANCE_RANDOM
)
1447 int fd
= open(ROCKBOX_DIR
"/folder_advance_list.dat", O_RDONLY
);
1450 char buffer
[MAX_PATH
];
1451 int folder_count
= 0;
1452 srand(current_tick
);
1453 *(tc
->dirfilter
) = SHOW_MUSIC
;
1454 tc
->sort_dir
= global_settings
.sort_dir
;
1455 read(fd
,&folder_count
,sizeof(int));
1460 i
= rand()%folder_count
;
1461 lseek(fd
,sizeof(int) + (MAX_PATH
*i
),SEEK_SET
);
1462 read(fd
,buffer
,MAX_PATH
);
1463 if (check_subdir_for_music(buffer
, "", false) ==0)
1469 *(tc
->dirfilter
) = saved_dirfilter
;
1470 tc
->sort_dir
= global_settings
.sort_dir
;
1476 /* not random folder advance (or random folder advance unavailable) */
1479 /* start with root */
1484 /* start with current directory */
1485 strlcpy(dir
, playlist
->filename
, playlist
->dirlen
);
1488 /* use the tree browser dircache to load files */
1489 *(tc
->dirfilter
) = SHOW_ALL
;
1491 /* set up sorting/direction */
1492 tc
->sort_dir
= global_settings
.sort_dir
;
1495 static const char sortpairs
[] =
1497 [SORT_ALPHA
] = SORT_ALPHA_REVERSED
,
1498 [SORT_DATE
] = SORT_DATE_REVERSED
,
1499 [SORT_TYPE
] = SORT_TYPE_REVERSED
,
1500 [SORT_ALPHA_REVERSED
] = SORT_ALPHA
,
1501 [SORT_DATE_REVERSED
] = SORT_DATE
,
1502 [SORT_TYPE_REVERSED
] = SORT_TYPE
,
1505 if ((unsigned)tc
->sort_dir
< sizeof(sortpairs
))
1506 tc
->sort_dir
= sortpairs
[tc
->sort_dir
];
1511 struct entry
*files
;
1515 if (ft_load(tc
, (dir
[0]=='\0')?"/":dir
) < 0)
1522 files
= (struct entry
*) tc
->dircache
;
1523 num_files
= tc
->filesindir
;
1525 for (i
=0; i
<num_files
; i
++)
1528 if (action_userabort(TIMEOUT_NOBLOCK
))
1535 if (files
[i
].attr
& ATTR_DIRECTORY
)
1539 result
= check_subdir_for_music(dir
, files
[i
].name
, true);
1546 else if (!strcmp(start_dir
, files
[i
].name
))
1553 /* move down to parent directory. current directory name is
1554 stored as the starting point for the search in parent */
1555 start_dir
= strrchr(dir
, '/');
1566 /* restore dirfilter */
1567 *(tc
->dirfilter
) = saved_dirfilter
;
1568 tc
->sort_dir
= global_settings
.sort_dir
;
1570 /* special case if nothing found: try start searching again from root */
1571 if (result
== -1 && !recursion
){
1572 result
= get_next_dir(dir
, is_forward
, true);
1579 * Checks if there are any music files in the dir or any of its
1580 * subdirectories. May be called recursively.
1582 static int check_subdir_for_music(char *dir
, const char *subdir
, bool recurse
)
1585 int dirlen
= strlen(dir
);
1588 struct entry
*files
;
1589 bool has_music
= false;
1590 bool has_subdir
= false;
1591 struct tree_context
* tc
= tree_get_context();
1593 snprintf(dir
+dirlen
, MAX_PATH
-dirlen
, "/%s", subdir
);
1595 if (ft_load(tc
, dir
) < 0)
1600 files
= (struct entry
*) tc
->dircache
;
1601 num_files
= tc
->filesindir
;
1603 for (i
=0; i
<num_files
; i
++)
1605 if (files
[i
].attr
& ATTR_DIRECTORY
)
1607 else if ((files
[i
].attr
& FILE_ATTR_MASK
) == FILE_ATTR_AUDIO
)
1617 if (has_subdir
&& recurse
)
1619 for (i
=0; i
<num_files
; i
++)
1621 if (action_userabort(TIMEOUT_NOBLOCK
))
1627 if (files
[i
].attr
& ATTR_DIRECTORY
)
1629 result
= check_subdir_for_music(dir
, files
[i
].name
, true);
1647 /* we now need to reload our current directory */
1648 if(ft_load(tc
, dir
) < 0)
1649 splash(HZ
*2, ID2P(LANG_PLAYLIST_DIRECTORY_ACCESS_ERROR
));
1655 * Returns absolute path of track
1657 static int format_track_path(char *dest
, char *src
, int buf_length
, int max
,
1664 /* Look for the end of the string */
1671 /* Now work back killing white space */
1673 ((src
[i
-1] == ' ') ||
1674 (src
[i
-1] == '\t')))
1677 /* Zero-terminate the file name */
1680 /* replace backslashes with forward slashes */
1681 for ( j
=0; j
<i
; j
++ )
1682 if ( src
[j
] == '\\' )
1687 strlcpy(dest
, src
, buf_length
);
1691 /* handle dos style drive letter */
1693 strlcpy(dest
, &src
[2], buf_length
);
1694 else if (!strncmp(src
, "../", 3))
1696 /* handle relative paths */
1698 while(!strncmp(&src
[i
], "../", 3))
1700 for (j
=0; j
<i
/3; j
++) {
1701 temp_ptr
= strrchr(dir
, '/');
1707 snprintf(dest
, buf_length
, "%s/%s", dir
, &src
[i
]);
1709 else if ( '.' == src
[0] && '/' == src
[1] ) {
1710 snprintf(dest
, buf_length
, "%s/%s", dir
, &src
[2]);
1713 snprintf(dest
, buf_length
, "%s/%s", dir
, src
);
1721 * Display splash message showing progress of playlist/directory insertion or
1724 static void display_playlist_count(int count
, const unsigned char *fmt
,
1727 static long talked_tick
= 0;
1728 long id
= P2ID(fmt
);
1729 if(global_settings
.talk_menu
&& id
>=0)
1731 if(final
|| (count
&& (talked_tick
== 0
1732 || TIME_AFTER(current_tick
, talked_tick
+5*HZ
))))
1734 talked_tick
= current_tick
;
1735 talk_number(count
, false);
1741 splashf(0, fmt
, count
, str(LANG_OFF_ABORT
));
1745 * Display buffer full message
1747 static void display_buffer_full(void)
1749 splash(HZ
*2, ID2P(LANG_PLAYLIST_BUFFER_FULL
));
1753 * Flush any cached control commands to disk. Called when playlist is being
1754 * modified. Returns 0 on success and -1 on failure.
1756 static int flush_cached_control(struct playlist_info
* playlist
)
1761 if (!playlist
->num_cached
)
1764 lseek(playlist
->control_fd
, 0, SEEK_END
);
1766 for (i
=0; i
<playlist
->num_cached
; i
++)
1768 struct playlist_control_cache
* cache
=
1769 &(playlist
->control_cache
[i
]);
1771 switch (cache
->command
)
1773 case PLAYLIST_COMMAND_PLAYLIST
:
1774 result
= fdprintf(playlist
->control_fd
, "P:%d:%s:%s\n",
1775 cache
->i1
, cache
->s1
, cache
->s2
);
1777 case PLAYLIST_COMMAND_ADD
:
1778 case PLAYLIST_COMMAND_QUEUE
:
1779 result
= fdprintf(playlist
->control_fd
, "%c:%d:%d:",
1780 (cache
->command
== PLAYLIST_COMMAND_ADD
)?'A':'Q',
1781 cache
->i1
, cache
->i2
);
1784 /* save the position in file where name is written */
1785 int* seek_pos
= (int *)cache
->data
;
1786 *seek_pos
= lseek(playlist
->control_fd
, 0, SEEK_CUR
);
1787 result
= fdprintf(playlist
->control_fd
, "%s\n",
1791 case PLAYLIST_COMMAND_DELETE
:
1792 result
= fdprintf(playlist
->control_fd
, "D:%d\n", cache
->i1
);
1794 case PLAYLIST_COMMAND_SHUFFLE
:
1795 result
= fdprintf(playlist
->control_fd
, "S:%d:%d\n",
1796 cache
->i1
, cache
->i2
);
1798 case PLAYLIST_COMMAND_UNSHUFFLE
:
1799 result
= fdprintf(playlist
->control_fd
, "U:%d\n", cache
->i1
);
1801 case PLAYLIST_COMMAND_RESET
:
1802 result
= fdprintf(playlist
->control_fd
, "R\n");
1814 playlist
->num_cached
= 0;
1815 playlist
->pending_control_sync
= true;
1822 splash(HZ
*2, ID2P(LANG_PLAYLIST_CONTROL_UPDATE_ERROR
));
1829 * Update control data with new command. Depending on the command, it may be
1830 * cached or flushed to disk.
1832 static int update_control(struct playlist_info
* playlist
,
1833 enum playlist_command command
, int i1
, int i2
,
1834 const char* s1
, const char* s2
, void* data
)
1837 struct playlist_control_cache
* cache
;
1840 mutex_lock(playlist
->control_mutex
);
1842 cache
= &(playlist
->control_cache
[playlist
->num_cached
++]);
1844 cache
->command
= command
;
1853 case PLAYLIST_COMMAND_PLAYLIST
:
1854 case PLAYLIST_COMMAND_ADD
:
1855 case PLAYLIST_COMMAND_QUEUE
:
1856 #ifndef HAVE_DIRCACHE
1857 case PLAYLIST_COMMAND_DELETE
:
1858 case PLAYLIST_COMMAND_RESET
:
1862 case PLAYLIST_COMMAND_SHUFFLE
:
1863 case PLAYLIST_COMMAND_UNSHUFFLE
:
1865 /* only flush when needed */
1869 if (flush
|| playlist
->num_cached
== PLAYLIST_MAX_CACHE
)
1870 result
= flush_cached_control(playlist
);
1872 mutex_unlock(playlist
->control_mutex
);
1878 * sync control file to disk
1880 static void sync_control(struct playlist_info
* playlist
, bool force
)
1882 #ifdef HAVE_DIRCACHE
1883 if (playlist
->started
&& force
)
1887 if (playlist
->started
)
1890 if (playlist
->pending_control_sync
)
1892 mutex_lock(playlist
->control_mutex
);
1893 fsync(playlist
->control_fd
);
1894 playlist
->pending_control_sync
= false;
1895 mutex_unlock(playlist
->control_mutex
);
1901 * Rotate indices such that first_index is index 0
1903 static int rotate_index(const struct playlist_info
* playlist
, int index
)
1905 index
-= playlist
->first_index
;
1907 index
+= playlist
->amount
;
1913 * Initialize playlist entries at startup
1915 void playlist_init(void)
1917 struct playlist_info
* playlist
= ¤t_playlist
;
1919 mutex_init(¤t_playlist_mutex
);
1920 mutex_init(&created_playlist_mutex
);
1922 playlist
->current
= true;
1923 strlcpy(playlist
->control_filename
, PLAYLIST_CONTROL_FILE
,
1924 sizeof(playlist
->control_filename
));
1926 playlist
->control_fd
= -1;
1927 playlist
->max_playlist_size
= global_settings
.max_files_in_playlist
;
1928 playlist
->indices
= buffer_alloc(
1929 playlist
->max_playlist_size
* sizeof(int));
1930 playlist
->buffer_size
=
1931 AVERAGE_FILENAME_LENGTH
* global_settings
.max_files_in_dir
;
1932 playlist
->buffer
= buffer_alloc(playlist
->buffer_size
);
1933 playlist
->control_mutex
= ¤t_playlist_mutex
;
1935 empty_playlist(playlist
, true);
1937 #ifdef HAVE_DIRCACHE
1938 playlist
->filenames
= buffer_alloc(
1939 playlist
->max_playlist_size
* sizeof(int));
1940 memset(playlist
->filenames
, 0,
1941 playlist
->max_playlist_size
* sizeof(int));
1942 create_thread(playlist_thread
, playlist_stack
, sizeof(playlist_stack
),
1943 0, playlist_thread_name
IF_PRIO(, PRIORITY_BACKGROUND
)
1945 queue_init(&playlist_queue
, true);
1950 * Clean playlist at shutdown
1952 void playlist_shutdown(void)
1954 struct playlist_info
* playlist
= ¤t_playlist
;
1956 if (playlist
->control_fd
>= 0)
1958 mutex_lock(playlist
->control_mutex
);
1960 if (playlist
->num_cached
> 0)
1961 flush_cached_control(playlist
);
1963 close(playlist
->control_fd
);
1965 mutex_unlock(playlist
->control_mutex
);
1970 * Create new playlist
1972 int playlist_create(const char *dir
, const char *file
)
1974 struct playlist_info
* playlist
= ¤t_playlist
;
1976 new_playlist(playlist
, dir
, file
);
1979 /* load the playlist file */
1980 add_indices_to_playlist(playlist
, NULL
, 0);
1985 #define PLAYLIST_COMMAND_SIZE (MAX_PATH+12)
1988 * Restore the playlist state based on control file commands. Called to
1989 * resume playback after shutdown.
1991 int playlist_resume(void)
1993 struct playlist_info
* playlist
= ¤t_playlist
;
1998 int control_file_size
= 0;
2002 /* use mp3 buffer for maximum load speed */
2003 #if CONFIG_CODEC != SWCODEC
2004 talk_buffer_steal(); /* we use the mp3 buffer, need to tell */
2005 buflen
= (audiobufend
- audiobuf
);
2006 buffer
= (char *)audiobuf
;
2008 buffer
= (char *)audio_get_buffer(false, &buflen
);
2011 empty_playlist(playlist
, true);
2013 splash(0, ID2P(LANG_WAIT
));
2014 playlist
->control_fd
= open(playlist
->control_filename
, O_RDWR
);
2015 if (playlist
->control_fd
< 0)
2017 splash(HZ
*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR
));
2020 playlist
->control_created
= true;
2022 control_file_size
= filesize(playlist
->control_fd
);
2023 if (control_file_size
<= 0)
2025 splash(HZ
*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR
));
2029 /* read a small amount first to get the header */
2030 nread
= read(playlist
->control_fd
, buffer
,
2031 PLAYLIST_COMMAND_SIZE
<buflen
?PLAYLIST_COMMAND_SIZE
:buflen
);
2034 splash(HZ
*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR
));
2038 playlist
->started
= true;
2044 enum playlist_command current_command
= PLAYLIST_COMMAND_COMMENT
;
2045 int last_newline
= 0;
2047 bool newline
= true;
2048 bool exit_loop
= false;
2053 unsigned long last_tick
= current_tick
;
2054 bool useraborted
= false;
2056 for(count
=0; count
<nread
&& !exit_loop
&& !useraborted
; count
++,p
++)
2058 /* So a splash while we are loading. */
2059 if (TIME_AFTER(current_tick
, last_tick
+ HZ
/4))
2061 splashf(0, str(LANG_LOADING_PERCENT
),
2062 (total_read
+count
)*100/control_file_size
,
2063 str(LANG_OFF_ABORT
));
2064 if (action_userabort(TIMEOUT_NOBLOCK
))
2069 last_tick
= current_tick
;
2072 /* Are we on a new line? */
2073 if((*p
== '\n') || (*p
== '\r'))
2077 /* save last_newline in case we need to load more data */
2078 last_newline
= count
;
2080 switch (current_command
)
2082 case PLAYLIST_COMMAND_PLAYLIST
:
2084 /* str1=version str2=dir str3=file */
2100 version
= atoi(str1
);
2102 if (version
!= PLAYLIST_CONTROL_FILE_VERSION
)
2105 update_playlist_filename(playlist
, str2
, str3
);
2107 if (str3
[0] != '\0')
2109 /* NOTE: add_indices_to_playlist() overwrites the
2110 audiobuf so we need to reload control file
2112 add_indices_to_playlist(playlist
, NULL
, 0);
2114 else if (str2
[0] != '\0')
2116 playlist
->in_ram
= true;
2117 resume_directory(str2
);
2120 /* load the rest of the data */
2126 case PLAYLIST_COMMAND_ADD
:
2127 case PLAYLIST_COMMAND_QUEUE
:
2129 /* str1=position str2=last_position str3=file */
2130 int position
, last_position
;
2133 if (!str1
|| !str2
|| !str3
)
2140 position
= atoi(str1
);
2141 last_position
= atoi(str2
);
2143 queue
= (current_command
== PLAYLIST_COMMAND_ADD
)?
2146 /* seek position is based on str3's position in
2148 if (add_track_to_playlist(playlist
, str3
, position
,
2149 queue
, total_read
+(str3
-buffer
)) < 0)
2152 playlist
->last_insert_pos
= last_position
;
2156 case PLAYLIST_COMMAND_DELETE
:
2168 position
= atoi(str1
);
2170 if (remove_track_from_playlist(playlist
, position
,
2176 case PLAYLIST_COMMAND_SHUFFLE
:
2178 /* str1=seed str2=first_index */
2190 /* Always sort list before shuffling */
2191 sort_playlist(playlist
, false, false);
2195 playlist
->first_index
= atoi(str2
);
2197 if (randomise_playlist(playlist
, seed
, false,
2203 case PLAYLIST_COMMAND_UNSHUFFLE
:
2205 /* str1=first_index */
2213 playlist
->first_index
= atoi(str1
);
2215 if (sort_playlist(playlist
, false, false) < 0)
2221 case PLAYLIST_COMMAND_RESET
:
2223 playlist
->last_insert_pos
= -1;
2226 case PLAYLIST_COMMAND_COMMENT
:
2233 /* to ignore any extra newlines */
2234 current_command
= PLAYLIST_COMMAND_COMMENT
;
2240 /* first non-comment line must always specify playlist */
2241 if (first
&& *p
!= 'P' && *p
!= '#')
2251 /* playlist can only be specified once */
2259 current_command
= PLAYLIST_COMMAND_PLAYLIST
;
2262 current_command
= PLAYLIST_COMMAND_ADD
;
2265 current_command
= PLAYLIST_COMMAND_QUEUE
;
2268 current_command
= PLAYLIST_COMMAND_DELETE
;
2271 current_command
= PLAYLIST_COMMAND_SHUFFLE
;
2274 current_command
= PLAYLIST_COMMAND_UNSHUFFLE
;
2277 current_command
= PLAYLIST_COMMAND_RESET
;
2280 current_command
= PLAYLIST_COMMAND_COMMENT
;
2293 else if(current_command
!= PLAYLIST_COMMAND_COMMENT
)
2295 /* all control file strings are separated with a colon.
2296 Replace the colon with 0 to get proper strings that can be
2297 used by commands above */
2303 if ((count
+1) < nread
)
2317 /* allow last string to contain colons */
2328 splash(HZ
*2, ID2P(LANG_PLAYLIST_CONTROL_INVALID
));
2334 splash(HZ
*2, ID2P(LANG_CANCEL
));
2337 if (!newline
|| (exit_loop
&& count
<nread
))
2339 if ((total_read
+ count
) >= control_file_size
)
2341 /* no newline at end of control file */
2342 splash(HZ
*2, ID2P(LANG_PLAYLIST_CONTROL_INVALID
));
2346 /* We didn't end on a newline or we exited loop prematurely.
2347 Either way, re-read the remainder. */
2348 count
= last_newline
;
2349 lseek(playlist
->control_fd
, total_read
+count
, SEEK_SET
);
2352 total_read
+= count
;
2355 /* still looking for header */
2356 nread
= read(playlist
->control_fd
, buffer
,
2357 PLAYLIST_COMMAND_SIZE
<buflen
?PLAYLIST_COMMAND_SIZE
:buflen
);
2359 nread
= read(playlist
->control_fd
, buffer
, buflen
);
2361 /* Terminate on EOF */
2368 #ifdef HAVE_DIRCACHE
2369 queue_post(&playlist_queue
, PLAYLIST_LOAD_POINTERS
, 0);
2376 * Add track to in_ram playlist. Used when playing directories.
2378 int playlist_add(const char *filename
)
2380 struct playlist_info
* playlist
= ¤t_playlist
;
2381 int len
= strlen(filename
);
2383 if((len
+1 > playlist
->buffer_size
- playlist
->buffer_end_pos
) ||
2384 (playlist
->amount
>= playlist
->max_playlist_size
))
2386 display_buffer_full();
2390 playlist
->indices
[playlist
->amount
] = playlist
->buffer_end_pos
;
2391 #ifdef HAVE_DIRCACHE
2392 playlist
->filenames
[playlist
->amount
] = NULL
;
2396 strcpy(&playlist
->buffer
[playlist
->buffer_end_pos
], filename
);
2397 playlist
->buffer_end_pos
+= len
;
2398 playlist
->buffer
[playlist
->buffer_end_pos
++] = '\0';
2403 /* shuffle newly created playlist using random seed. */
2404 int playlist_shuffle(int random_seed
, int start_index
)
2406 struct playlist_info
* playlist
= ¤t_playlist
;
2408 bool start_current
= false;
2410 if (start_index
>= 0 && global_settings
.play_selected
)
2412 /* store the seek position before the shuffle */
2413 playlist
->index
= playlist
->first_index
= start_index
;
2414 start_current
= true;
2417 randomise_playlist(playlist
, random_seed
, start_current
, true);
2419 return playlist
->index
;
2422 /* start playing current playlist at specified index/offset */
2423 void playlist_start(int start_index
, int offset
)
2425 struct playlist_info
* playlist
= ¤t_playlist
;
2427 /* Cancel FM radio selection as previous music. For cases where we start
2428 playback without going to the WPS, such as playlist insert.. or
2429 playlist catalog. */
2430 previous_music_is_wps();
2432 playlist
->index
= start_index
;
2434 #if CONFIG_CODEC != SWCODEC
2435 talk_buffer_steal(); /* will use the mp3 buffer */
2438 playlist
->started
= true;
2439 sync_control(playlist
, false);
2443 /* Returns false if 'steps' is out of bounds, else true */
2444 bool playlist_check(int steps
)
2446 struct playlist_info
* playlist
= ¤t_playlist
;
2448 /* always allow folder navigation */
2449 if (global_settings
.next_folder
&& playlist
->in_ram
)
2452 int index
= get_next_index(playlist
, steps
, -1);
2454 if (index
< 0 && steps
>= 0 && global_settings
.repeat_mode
== REPEAT_SHUFFLE
)
2455 index
= get_next_index(playlist
, steps
, REPEAT_ALL
);
2457 return (index
>= 0);
2460 /* get trackname of track that is "steps" away from current playing track.
2461 NULL is used to identify end of playlist */
2462 const char* playlist_peek(int steps
, char* buf
, size_t buf_size
)
2464 struct playlist_info
* playlist
= ¤t_playlist
;
2470 index
= get_next_index(playlist
, steps
, -1);
2474 #if CONFIG_CODEC == SWCODEC
2475 /* Just testing - don't care about the file name */
2476 if (!buf
|| !buf_size
)
2480 control_file
= playlist
->indices
[index
] & PLAYLIST_INSERT_TYPE_MASK
;
2481 seek
= playlist
->indices
[index
] & PLAYLIST_SEEK_MASK
;
2483 if (get_filename(playlist
, index
, seek
, control_file
, buf
,
2489 if (!playlist
->in_ram
|| control_file
)
2491 /* remove bogus dirs from beginning of path
2492 (workaround for buggy playlist creation tools) */
2495 if (file_exists(temp_ptr
))
2498 temp_ptr
= strchr(temp_ptr
+1, '/');
2503 /* Even though this is an invalid file, we still need to pass a
2504 file name to the caller because NULL is used to indicate end
2514 * Update indices as track has changed
2516 int playlist_next(int steps
)
2518 struct playlist_info
* playlist
= ¤t_playlist
;
2522 #ifdef AB_REPEAT_ENABLE
2523 && (global_settings
.repeat_mode
!= REPEAT_AB
)
2525 && (global_settings
.repeat_mode
!= REPEAT_ONE
) )
2529 /* We need to delete all the queued songs */
2530 for (i
=0, j
=steps
; i
<j
; i
++)
2532 index
= get_next_index(playlist
, i
, -1);
2534 if (playlist
->indices
[index
] & PLAYLIST_QUEUE_MASK
)
2536 remove_track_from_playlist(playlist
, index
, true);
2537 steps
--; /* one less track */
2542 index
= get_next_index(playlist
, steps
, -1);
2546 /* end of playlist... or is it */
2547 if (global_settings
.repeat_mode
== REPEAT_SHUFFLE
&&
2548 playlist
->amount
> 1)
2550 /* Repeat shuffle mode. Re-shuffle playlist and resume play */
2551 playlist
->first_index
= 0;
2552 sort_playlist(playlist
, false, false);
2553 randomise_playlist(playlist
, current_tick
, false, true);
2555 #if CONFIG_CODEC == SWCODEC
2556 playlist
->started
= true;
2558 playlist_start(0, 0);
2560 playlist
->index
= 0;
2563 else if (playlist
->in_ram
&& global_settings
.next_folder
)
2565 index
= create_and_play_dir(steps
, true);
2569 playlist
->index
= index
;
2576 playlist
->index
= index
;
2578 if (playlist
->last_insert_pos
>= 0 && steps
> 0)
2580 /* check to see if we've gone beyond the last inserted track */
2581 int cur
= rotate_index(playlist
, index
);
2582 int last_pos
= rotate_index(playlist
, playlist
->last_insert_pos
);
2586 /* reset last inserted track */
2587 playlist
->last_insert_pos
= -1;
2589 if (playlist
->control_fd
>= 0)
2591 int result
= update_control(playlist
, PLAYLIST_COMMAND_RESET
,
2592 -1, -1, NULL
, NULL
, NULL
);
2597 sync_control(playlist
, false);
2605 /* try playing next or previous folder */
2606 bool playlist_next_dir(int direction
)
2608 /* not to mess up real playlists */
2609 if(!current_playlist
.in_ram
)
2612 return create_and_play_dir(direction
, false) >= 0;
2615 /* Get resume info for current playing song. If return value is -1 then
2616 settings shouldn't be saved. */
2617 int playlist_get_resume_info(int *resume_index
)
2619 struct playlist_info
* playlist
= ¤t_playlist
;
2621 *resume_index
= playlist
->index
;
2626 /* Update resume info for current playing song. Returns -1 on error. */
2627 int playlist_update_resume_info(const struct mp3entry
* id3
)
2629 struct playlist_info
* playlist
= ¤t_playlist
;
2633 if (global_status
.resume_index
!= playlist
->index
||
2634 global_status
.resume_offset
!= id3
->offset
)
2636 global_status
.resume_index
= playlist
->index
;
2637 global_status
.resume_offset
= id3
->offset
;
2643 global_status
.resume_index
= -1;
2644 global_status
.resume_offset
= -1;
2651 /* Returns index of current playing track for display purposes. This value
2652 should not be used for resume purposes as it doesn't represent the actual
2653 index into the playlist */
2654 int playlist_get_display_index(void)
2656 struct playlist_info
* playlist
= ¤t_playlist
;
2658 /* first_index should always be index 0 for display purposes */
2659 int index
= rotate_index(playlist
, playlist
->index
);
2664 /* returns number of tracks in current playlist */
2665 int playlist_amount(void)
2667 return playlist_amount_ex(NULL
);
2669 /* set playlist->last_shuffle_start to playlist->amount for
2670 PLAYLIST_INSERT_LAST_SHUFFLED command purposes*/
2671 void playlist_set_last_shuffled_start(void)
2673 struct playlist_info
* playlist
= ¤t_playlist
;
2674 playlist
->last_shuffled_start
= playlist
->amount
;
2677 * Create a new playlist If playlist is not NULL then we're loading a
2678 * playlist off disk for viewing/editing. The index_buffer is used to store
2679 * playlist indices (required for and only used if !current playlist). The
2680 * temp_buffer (if not NULL) is used as a scratchpad when loading indices.
2682 int playlist_create_ex(struct playlist_info
* playlist
,
2683 const char* dir
, const char* file
,
2684 void* index_buffer
, int index_buffer_size
,
2685 void* temp_buffer
, int temp_buffer_size
)
2688 playlist
= ¤t_playlist
;
2691 /* Initialize playlist structure */
2692 int r
= rand() % 10;
2693 playlist
->current
= false;
2695 /* Use random name for control file */
2696 snprintf(playlist
->control_filename
, sizeof(playlist
->control_filename
),
2697 "%s.%d", PLAYLIST_CONTROL_FILE
, r
);
2699 playlist
->control_fd
= -1;
2703 int num_indices
= index_buffer_size
/ sizeof(int);
2705 #ifdef HAVE_DIRCACHE
2708 if (num_indices
> global_settings
.max_files_in_playlist
)
2709 num_indices
= global_settings
.max_files_in_playlist
;
2711 playlist
->max_playlist_size
= num_indices
;
2712 playlist
->indices
= index_buffer
;
2713 #ifdef HAVE_DIRCACHE
2714 playlist
->filenames
= (const struct dircache_entry
**)
2715 &playlist
->indices
[num_indices
];
2720 playlist
->max_playlist_size
= current_playlist
.max_playlist_size
;
2721 playlist
->indices
= current_playlist
.indices
;
2722 #ifdef HAVE_DIRCACHE
2723 playlist
->filenames
= current_playlist
.filenames
;
2727 playlist
->buffer_size
= 0;
2728 playlist
->buffer
= NULL
;
2729 playlist
->control_mutex
= &created_playlist_mutex
;
2732 new_playlist(playlist
, dir
, file
);
2735 /* load the playlist file */
2736 add_indices_to_playlist(playlist
, temp_buffer
, temp_buffer_size
);
2742 * Set the specified playlist as the current.
2743 * NOTE: You will get undefined behaviour if something is already playing so
2744 * remember to stop before calling this. Also, this call will
2745 * effectively close your playlist, making it unusable.
2747 int playlist_set_current(struct playlist_info
* playlist
)
2749 if (!playlist
|| (check_control(playlist
) < 0))
2752 empty_playlist(¤t_playlist
, false);
2754 strlcpy(current_playlist
.filename
, playlist
->filename
,
2755 sizeof(current_playlist
.filename
));
2757 current_playlist
.utf8
= playlist
->utf8
;
2758 current_playlist
.fd
= playlist
->fd
;
2760 close(playlist
->control_fd
);
2761 close(current_playlist
.control_fd
);
2762 remove(current_playlist
.control_filename
);
2763 if (rename(playlist
->control_filename
,
2764 current_playlist
.control_filename
) < 0)
2766 current_playlist
.control_fd
= open(current_playlist
.control_filename
,
2768 if (current_playlist
.control_fd
< 0)
2770 current_playlist
.control_created
= true;
2772 current_playlist
.dirlen
= playlist
->dirlen
;
2774 if (playlist
->indices
&& playlist
->indices
!= current_playlist
.indices
)
2776 memcpy(current_playlist
.indices
, playlist
->indices
,
2777 playlist
->max_playlist_size
*sizeof(int));
2778 #ifdef HAVE_DIRCACHE
2779 memcpy(current_playlist
.filenames
, playlist
->filenames
,
2780 playlist
->max_playlist_size
*sizeof(int));
2784 current_playlist
.first_index
= playlist
->first_index
;
2785 current_playlist
.amount
= playlist
->amount
;
2786 current_playlist
.last_insert_pos
= playlist
->last_insert_pos
;
2787 current_playlist
.seed
= playlist
->seed
;
2788 current_playlist
.shuffle_modified
= playlist
->shuffle_modified
;
2789 current_playlist
.deleted
= playlist
->deleted
;
2790 current_playlist
.num_inserted_tracks
= playlist
->num_inserted_tracks
;
2792 memcpy(current_playlist
.control_cache
, playlist
->control_cache
,
2793 sizeof(current_playlist
.control_cache
));
2794 current_playlist
.num_cached
= playlist
->num_cached
;
2795 current_playlist
.pending_control_sync
= playlist
->pending_control_sync
;
2799 struct playlist_info
*playlist_get_current(void)
2801 return ¤t_playlist
;
2804 * Close files and delete control file for non-current playlist.
2806 void playlist_close(struct playlist_info
* playlist
)
2811 if (playlist
->fd
>= 0)
2812 close(playlist
->fd
);
2814 if (playlist
->control_fd
>= 0)
2815 close(playlist
->control_fd
);
2817 if (playlist
->control_created
)
2818 remove(playlist
->control_filename
);
2821 void playlist_sync(struct playlist_info
* playlist
)
2824 playlist
= ¤t_playlist
;
2826 sync_control(playlist
, false);
2827 if ((audio_status() & AUDIO_STATUS_PLAY
) && playlist
->started
)
2828 audio_flush_and_reload_tracks();
2830 #ifdef HAVE_DIRCACHE
2831 queue_post(&playlist_queue
, PLAYLIST_LOAD_POINTERS
, 0);
2836 * Insert track into playlist at specified position (or one of the special
2837 * positions). Returns position where track was inserted or -1 if error.
2839 int playlist_insert_track(struct playlist_info
* playlist
, const char *filename
,
2840 int position
, bool queue
, bool sync
)
2845 playlist
= ¤t_playlist
;
2847 if (check_control(playlist
) < 0)
2849 splash(HZ
*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR
));
2853 result
= add_track_to_playlist(playlist
, filename
, position
, queue
, -1);
2855 /* Check if we want manually sync later. For example when adding
2856 * bunch of files from tagcache, syncing after every file wouldn't be
2857 * a good thing to do. */
2858 if (sync
&& result
>= 0)
2859 playlist_sync(playlist
);
2865 * Insert all tracks from specified directory into playlist.
2867 int playlist_insert_directory(struct playlist_info
* playlist
,
2868 const char *dirname
, int position
, bool queue
,
2872 unsigned char *count_str
;
2873 struct directory_search_context context
;
2876 playlist
= ¤t_playlist
;
2878 if (check_control(playlist
) < 0)
2880 splash(HZ
*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR
));
2884 if (position
== PLAYLIST_REPLACE
)
2886 if (playlist_remove_all_tracks(playlist
) == 0)
2887 position
= PLAYLIST_INSERT_LAST
;
2893 count_str
= ID2P(LANG_PLAYLIST_QUEUE_COUNT
);
2895 count_str
= ID2P(LANG_PLAYLIST_INSERT_COUNT
);
2897 display_playlist_count(0, count_str
, false);
2899 context
.playlist
= playlist
;
2900 context
.position
= position
;
2901 context
.queue
= queue
;
2906 result
= playlist_directory_tracksearch(dirname
, recurse
,
2907 directory_search_callback
, &context
);
2909 sync_control(playlist
, false);
2913 display_playlist_count(context
.count
, count_str
, true);
2915 if ((audio_status() & AUDIO_STATUS_PLAY
) && playlist
->started
)
2916 audio_flush_and_reload_tracks();
2918 #ifdef HAVE_DIRCACHE
2919 queue_post(&playlist_queue
, PLAYLIST_LOAD_POINTERS
, 0);
2926 * Insert all tracks from specified playlist into dynamic playlist.
2928 int playlist_insert_playlist(struct playlist_info
* playlist
, const char *filename
,
2929 int position
, bool queue
)
2935 unsigned char *count_str
;
2936 char temp_buf
[MAX_PATH
+1];
2937 char trackname
[MAX_PATH
+1];
2940 bool utf8
= is_m3u8(filename
);
2943 playlist
= ¤t_playlist
;
2945 if (check_control(playlist
) < 0)
2947 splash(HZ
*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR
));
2951 fd
= open_utf8(filename
, O_RDONLY
);
2954 splash(HZ
*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR
));
2958 /* we need the directory name for formatting purposes */
2961 temp_ptr
= strrchr(filename
+1,'/');
2968 count_str
= ID2P(LANG_PLAYLIST_QUEUE_COUNT
);
2970 count_str
= ID2P(LANG_PLAYLIST_INSERT_COUNT
);
2972 display_playlist_count(count
, count_str
, false);
2974 if (position
== PLAYLIST_REPLACE
)
2976 if (playlist_remove_all_tracks(playlist
) == 0)
2977 position
= PLAYLIST_INSERT_LAST
;
2983 while ((max
= read_line(fd
, temp_buf
, sizeof(temp_buf
))) > 0)
2986 if (action_userabort(TIMEOUT_NOBLOCK
))
2989 if (temp_buf
[0] != '#' && temp_buf
[0] != '\0')
2995 /* Use trackname as a temporay buffer. Note that trackname must
2996 * be as large as temp_buf.
2998 max
= convert_m3u(temp_buf
, max
, sizeof(temp_buf
), trackname
);
3001 /* we need to format so that relative paths are correctly
3003 if (format_track_path(trackname
, temp_buf
, sizeof(trackname
), max
,
3010 insert_pos
= add_track_to_playlist(playlist
, trackname
, position
,
3019 /* Make sure tracks are inserted in correct order if user
3020 requests INSERT_FIRST */
3021 if (position
== PLAYLIST_INSERT_FIRST
|| position
>= 0)
3022 position
= insert_pos
+ 1;
3026 if ((count
%PLAYLIST_DISPLAY_COUNT
) == 0)
3028 display_playlist_count(count
, count_str
, false);
3030 if (count
== PLAYLIST_DISPLAY_COUNT
&&
3031 (audio_status() & AUDIO_STATUS_PLAY
) &&
3033 audio_flush_and_reload_tracks();
3037 /* let the other threads work */
3046 sync_control(playlist
, false);
3050 display_playlist_count(count
, count_str
, true);
3052 if ((audio_status() & AUDIO_STATUS_PLAY
) && playlist
->started
)
3053 audio_flush_and_reload_tracks();
3055 #ifdef HAVE_DIRCACHE
3056 queue_post(&playlist_queue
, PLAYLIST_LOAD_POINTERS
, 0);
3063 * Delete track at specified index. If index is PLAYLIST_DELETE_CURRENT then
3064 * we want to delete the current playing track.
3066 int playlist_delete(struct playlist_info
* playlist
, int index
)
3071 playlist
= ¤t_playlist
;
3073 if (check_control(playlist
) < 0)
3075 splash(HZ
*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR
));
3079 if (index
== PLAYLIST_DELETE_CURRENT
)
3080 index
= playlist
->index
;
3082 result
= remove_track_from_playlist(playlist
, index
, true);
3084 if (result
!= -1 && (audio_status() & AUDIO_STATUS_PLAY
) &&
3086 audio_flush_and_reload_tracks();
3092 * Move track at index to new_index. Tracks between the two are shifted
3093 * appropriately. Returns 0 on success and -1 on failure.
3095 int playlist_move(struct playlist_info
* playlist
, int index
, int new_index
)
3101 bool current
= false;
3103 char filename
[MAX_PATH
];
3106 playlist
= ¤t_playlist
;
3108 if (check_control(playlist
) < 0)
3110 splash(HZ
*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR
));
3114 if (index
== new_index
)
3117 if (index
== playlist
->index
)
3118 /* Moving the current track */
3121 control_file
= playlist
->indices
[index
] & PLAYLIST_INSERT_TYPE_MASK
;
3122 queue
= playlist
->indices
[index
] & PLAYLIST_QUEUE_MASK
;
3123 seek
= playlist
->indices
[index
] & PLAYLIST_SEEK_MASK
;
3125 if (get_filename(playlist
, index
, seek
, control_file
, filename
,
3126 sizeof(filename
)) < 0)
3129 /* We want to insert the track at the position that was specified by
3130 new_index. This may be different then new_index because of the
3131 shifting that will occur after the delete.
3132 We calculate this before we do the remove as it depends on the
3133 size of the playlist before the track removal */
3134 r
= rotate_index(playlist
, new_index
);
3136 /* Delete track from original position */
3137 result
= remove_track_from_playlist(playlist
, index
, true);
3143 new_index
= PLAYLIST_PREPEND
;
3144 else if (r
== playlist
->amount
)
3146 new_index
= PLAYLIST_INSERT_LAST
;
3148 /* Calculate index of desired position */
3149 new_index
= (r
+playlist
->first_index
)%playlist
->amount
;
3151 result
= add_track_to_playlist(playlist
, filename
, new_index
, queue
,
3158 /* Moved the current track */
3161 case PLAYLIST_PREPEND
:
3162 playlist
->index
= playlist
->first_index
;
3164 case PLAYLIST_INSERT_LAST
:
3165 playlist
->index
= playlist
->first_index
- 1;
3166 if (playlist
->index
< 0)
3167 playlist
->index
+= playlist
->amount
;
3170 playlist
->index
= new_index
;
3175 if ((audio_status() & AUDIO_STATUS_PLAY
) && playlist
->started
)
3176 audio_flush_and_reload_tracks();
3180 #ifdef HAVE_DIRCACHE
3181 queue_post(&playlist_queue
, PLAYLIST_LOAD_POINTERS
, 0);
3187 /* shuffle currently playing playlist */
3188 int playlist_randomise(struct playlist_info
* playlist
, unsigned int seed
,
3194 playlist
= ¤t_playlist
;
3196 check_control(playlist
);
3198 result
= randomise_playlist(playlist
, seed
, start_current
, true);
3200 if (result
!= -1 && (audio_status() & AUDIO_STATUS_PLAY
) &&
3202 audio_flush_and_reload_tracks();
3207 /* sort currently playing playlist */
3208 int playlist_sort(struct playlist_info
* playlist
, bool start_current
)
3213 playlist
= ¤t_playlist
;
3215 check_control(playlist
);
3217 result
= sort_playlist(playlist
, start_current
, true);
3219 if (result
!= -1 && (audio_status() & AUDIO_STATUS_PLAY
) &&
3221 audio_flush_and_reload_tracks();
3226 /* returns true if playlist has been modified */
3227 bool playlist_modified(const struct playlist_info
* playlist
)
3230 playlist
= ¤t_playlist
;
3232 if (playlist
->shuffle_modified
||
3233 playlist
->deleted
||
3234 playlist
->num_inserted_tracks
> 0)
3240 /* returns index of first track in playlist */
3241 int playlist_get_first_index(const struct playlist_info
* playlist
)
3244 playlist
= ¤t_playlist
;
3246 return playlist
->first_index
;
3249 /* returns shuffle seed of playlist */
3250 int playlist_get_seed(const struct playlist_info
* playlist
)
3253 playlist
= ¤t_playlist
;
3255 return playlist
->seed
;
3258 /* returns number of tracks in playlist (includes queued/inserted tracks) */
3259 int playlist_amount_ex(const struct playlist_info
* playlist
)
3262 playlist
= ¤t_playlist
;
3264 return playlist
->amount
;
3267 /* returns full path of playlist (minus extension) */
3268 char *playlist_name(const struct playlist_info
* playlist
, char *buf
,
3274 playlist
= ¤t_playlist
;
3276 strlcpy(buf
, playlist
->filename
+playlist
->dirlen
, buf_size
);
3281 /* Remove extension */
3282 sep
= strrchr(buf
, '.');
3289 /* returns the playlist filename */
3290 char *playlist_get_name(const struct playlist_info
* playlist
, char *buf
,
3294 playlist
= ¤t_playlist
;
3296 strlcpy(buf
, playlist
->filename
, buf_size
);
3304 /* Fills info structure with information about track at specified index.
3305 Returns 0 on success and -1 on failure */
3306 int playlist_get_track_info(struct playlist_info
* playlist
, int index
,
3307 struct playlist_track_info
* info
)
3313 playlist
= ¤t_playlist
;
3315 if (index
< 0 || index
>= playlist
->amount
)
3318 control_file
= playlist
->indices
[index
] & PLAYLIST_INSERT_TYPE_MASK
;
3319 seek
= playlist
->indices
[index
] & PLAYLIST_SEEK_MASK
;
3321 if (get_filename(playlist
, index
, seek
, control_file
, info
->filename
,
3322 sizeof(info
->filename
)) < 0)
3329 if (playlist
->indices
[index
] & PLAYLIST_QUEUE_MASK
)
3330 info
->attr
|= PLAYLIST_ATTR_QUEUED
;
3332 info
->attr
|= PLAYLIST_ATTR_INSERTED
;
3336 if (playlist
->indices
[index
] & PLAYLIST_SKIPPED
)
3337 info
->attr
|= PLAYLIST_ATTR_SKIPPED
;
3339 info
->index
= index
;
3340 info
->display_index
= rotate_index(playlist
, index
) + 1;
3345 /* save the current dynamic playlist to specified file */
3346 int playlist_save(struct playlist_info
* playlist
, char *filename
)
3351 char path
[MAX_PATH
+1];
3352 char tmp_buf
[MAX_PATH
+1];
3354 bool overwrite_current
= false;
3355 int* index_buf
= NULL
;
3358 playlist
= ¤t_playlist
;
3360 if (playlist
->amount
<= 0)
3363 /* use current working directory as base for pathname */
3364 if (format_track_path(path
, filename
, sizeof(tmp_buf
),
3365 strlen(filename
)+1, getcwd(NULL
, -1)) < 0)
3368 if (!strncmp(playlist
->filename
, path
, strlen(path
)))
3370 /* Attempting to overwrite current playlist file.*/
3372 if (playlist
->buffer_size
< (int)(playlist
->amount
* sizeof(int)))
3374 /* not enough buffer space to store updated indices */
3375 splash(HZ
*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR
));
3379 /* in_ram buffer is unused for m3u files so we'll use for storing
3381 index_buf
= (int*)playlist
->buffer
;
3383 /* use temporary pathname */
3384 snprintf(path
, sizeof(path
), "%s_temp", playlist
->filename
);
3385 overwrite_current
= true;
3390 fd
= open_utf8(path
, O_CREAT
|O_WRONLY
|O_TRUNC
);
3394 /* some applications require a BOM to read the file properly */
3395 fd
= open(path
, O_CREAT
|O_WRONLY
|O_TRUNC
, 0666);
3399 splash(HZ
*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR
));
3403 display_playlist_count(count
, ID2P(LANG_PLAYLIST_SAVE_COUNT
), false);
3407 index
= playlist
->first_index
;
3408 for (i
=0; i
<playlist
->amount
; i
++)
3415 if (action_userabort(TIMEOUT_NOBLOCK
))
3421 control_file
= playlist
->indices
[index
] & PLAYLIST_INSERT_TYPE_MASK
;
3422 queue
= playlist
->indices
[index
] & PLAYLIST_QUEUE_MASK
;
3423 seek
= playlist
->indices
[index
] & PLAYLIST_SEEK_MASK
;
3425 /* Don't save queued files */
3428 if (get_filename(playlist
, index
, seek
, control_file
, tmp_buf
,
3435 if (overwrite_current
)
3436 index_buf
[count
] = lseek(fd
, 0, SEEK_CUR
);
3438 if (fdprintf(fd
, "%s\n", tmp_buf
) < 0)
3440 splash(HZ
*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR
));
3447 if ((count
% PLAYLIST_DISPLAY_COUNT
) == 0)
3448 display_playlist_count(count
, ID2P(LANG_PLAYLIST_SAVE_COUNT
),
3454 index
= (index
+1)%playlist
->amount
;
3457 display_playlist_count(count
, ID2P(LANG_PLAYLIST_SAVE_COUNT
), true);
3461 if (overwrite_current
&& result
>= 0)
3465 mutex_lock(playlist
->control_mutex
);
3467 /* Replace the current playlist with the new one and update indices */
3468 close(playlist
->fd
);
3469 if (remove(playlist
->filename
) >= 0)
3471 if (rename(path
, playlist
->filename
) >= 0)
3473 playlist
->fd
= open_utf8(playlist
->filename
, O_RDONLY
);
3474 if (playlist
->fd
>= 0)
3476 index
= playlist
->first_index
;
3477 for (i
=0, count
=0; i
<playlist
->amount
; i
++)
3479 if (!(playlist
->indices
[index
] & PLAYLIST_QUEUE_MASK
))
3481 playlist
->indices
[index
] = index_buf
[count
];
3484 index
= (index
+1)%playlist
->amount
;
3487 /* we need to recreate control because inserted tracks are
3488 now part of the playlist and shuffle has been
3490 result
= recreate_control(playlist
);
3495 mutex_unlock(playlist
->control_mutex
);
3505 * Search specified directory for tracks and notify via callback. May be
3506 * called recursively.
3508 int playlist_directory_tracksearch(const char* dirname
, bool recurse
,
3509 int (*callback
)(char*, void*),
3512 char buf
[MAX_PATH
+1];
3516 struct entry
*files
;
3517 struct tree_context
* tc
= tree_get_context();
3518 int old_dirfilter
= *(tc
->dirfilter
);
3523 /* use the tree browser dircache to load files */
3524 *(tc
->dirfilter
) = SHOW_ALL
;
3526 if (ft_load(tc
, dirname
) < 0)
3528 splash(HZ
*2, ID2P(LANG_PLAYLIST_DIRECTORY_ACCESS_ERROR
));
3529 *(tc
->dirfilter
) = old_dirfilter
;
3533 files
= (struct entry
*) tc
->dircache
;
3534 num_files
= tc
->filesindir
;
3536 /* we've overwritten the dircache so tree browser will need to be
3540 for (i
=0; i
<num_files
; i
++)
3543 if (action_userabort(TIMEOUT_NOBLOCK
))
3549 if (files
[i
].attr
& ATTR_DIRECTORY
)
3553 /* recursively add directories */
3554 snprintf(buf
, sizeof(buf
), "%s/%s",
3555 dirname
[1]? dirname
: "", files
[i
].name
);
3556 result
= playlist_directory_tracksearch(buf
, recurse
,
3561 /* we now need to reload our current directory */
3562 if(ft_load(tc
, dirname
) < 0)
3568 files
= (struct entry
*) tc
->dircache
;
3569 num_files
= tc
->filesindir
;
3579 else if ((files
[i
].attr
& FILE_ATTR_MASK
) == FILE_ATTR_AUDIO
)
3581 snprintf(buf
, sizeof(buf
), "%s/%s",
3582 dirname
[1]? dirname
: "", files
[i
].name
);
3584 if (callback(buf
, context
) != 0)
3590 /* let the other threads work */
3595 /* restore dirfilter */
3596 *(tc
->dirfilter
) = old_dirfilter
;