Initial 800x480 cabbiev2 port, based on 480x800x16 one
[kugel-rb.git] / apps / playlist.c
blob41d6ae5ed7fa6c613d95f6d10f56d01475c43f96
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 by wavey@wavey.org
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
23 Dynamic playlist design (based on design originally proposed by ricII)
25 There are two files associated with a dynamic playlist:
26 1. Playlist file : This file contains the initial songs in the playlist.
27 The file is created by the user and stored on the hard
28 drive. NOTE: If we are playing the contents of a
29 directory, there will be no playlist file.
30 2. Control file : This file is automatically created when a playlist is
31 started and contains all the commands done to it.
33 The first non-comment line in a control file must begin with
34 "P:VERSION:DIR:FILE" where VERSION is the playlist control file version,
35 DIR is the directory where the playlist is located and FILE is the
36 playlist filename. For dirplay, FILE will be empty. An empty playlist
37 will have both entries as null.
39 Control file commands:
40 a. Add track (A:<position>:<last position>:<path to track>)
41 - Insert a track at the specified position in the current
42 playlist. Last position is used to specify where last insertion
43 occurred.
44 b. Queue track (Q:<position>:<last position>:<path to track>)
45 - Queue a track at the specified position in the current
46 playlist. Queued tracks differ from added tracks in that they
47 are deleted from the playlist as soon as they are played and
48 they are not saved to disk as part of the playlist.
49 c. Delete track (D:<position>)
50 - Delete track from specified position in the current playlist.
51 d. Shuffle playlist (S:<seed>:<index>)
52 - Shuffle entire playlist with specified seed. The index
53 identifies the first index in the newly shuffled playlist
54 (needed for repeat mode).
55 e. Unshuffle playlist (U:<index>)
56 - Unshuffle entire playlist. The index identifies the first index
57 in the newly unshuffled playlist.
58 f. Reset last insert position (R)
59 - Needed so that insertions work properly after resume
61 Resume:
62 The only resume info that needs to be saved is the current index in the
63 playlist and the position in the track. When resuming, all the commands
64 in the control file will be reapplied so that the playlist indices are
65 exactly the same as before shutdown. To avoid unnecessary disk
66 accesses, the shuffle mode settings are also saved in settings and only
67 flushed to disk when required.
70 #include <stdio.h>
71 #include <stdlib.h>
72 #include <ctype.h>
73 #include "string-extra.h"
74 #include "playlist.h"
75 #include "ata_idle_notify.h"
76 #include "file.h"
77 #include "action.h"
78 #include "dir.h"
79 #include "debug.h"
80 #include "audio.h"
81 #include "lcd.h"
82 #include "kernel.h"
83 #include "settings.h"
84 #include "status.h"
85 #include "applimits.h"
86 #include "screens.h"
87 #include "buffer.h"
88 #include "misc.h"
89 #include "filefuncs.h"
90 #include "button.h"
91 #include "filetree.h"
92 #include "abrepeat.h"
93 #include "thread.h"
94 #include "usb.h"
95 #include "filetypes.h"
96 #ifdef HAVE_LCD_BITMAP
97 #include "icons.h"
98 #endif
99 #include "system.h"
101 #include "lang.h"
102 #include "talk.h"
103 #include "splash.h"
104 #include "rbunicode.h"
105 #include "root_menu.h"
107 #define PLAYLIST_CONTROL_FILE_VERSION 2
110 Each playlist index has a flag associated with it which identifies what
111 type of track it is. These flags are stored in the 4 high order bits of
112 the index.
114 NOTE: This limits the playlist file size to a max of 256M.
116 Bits 31-30:
117 00 = Playlist track
118 01 = Track was prepended into playlist
119 10 = Track was inserted into playlist
120 11 = Track was appended into playlist
121 Bit 29:
122 0 = Added track
123 1 = Queued track
124 Bit 28:
125 0 = Track entry is valid
126 1 = Track does not exist on disk and should be skipped
128 #define PLAYLIST_SEEK_MASK 0x0FFFFFFF
129 #define PLAYLIST_INSERT_TYPE_MASK 0xC0000000
130 #define PLAYLIST_QUEUE_MASK 0x20000000
132 #define PLAYLIST_INSERT_TYPE_PREPEND 0x40000000
133 #define PLAYLIST_INSERT_TYPE_INSERT 0x80000000
134 #define PLAYLIST_INSERT_TYPE_APPEND 0xC0000000
136 #define PLAYLIST_QUEUED 0x20000000
137 #define PLAYLIST_SKIPPED 0x10000000
139 struct directory_search_context {
140 struct playlist_info* playlist;
141 int position;
142 bool queue;
143 int count;
146 static struct playlist_info current_playlist;
148 static void empty_playlist(struct playlist_info* playlist, bool resume);
149 static void new_playlist(struct playlist_info* playlist, const char *dir,
150 const char *file);
151 static void create_control(struct playlist_info* playlist);
152 static int check_control(struct playlist_info* playlist);
153 static int recreate_control(struct playlist_info* playlist);
154 static void update_playlist_filename(struct playlist_info* playlist,
155 const char *dir, const char *file);
156 static int add_indices_to_playlist(struct playlist_info* playlist,
157 char* buffer, size_t buflen);
158 static int add_track_to_playlist(struct playlist_info* playlist,
159 const char *filename, int position,
160 bool queue, int seek_pos);
161 static int directory_search_callback(char* filename, void* context);
162 static int remove_track_from_playlist(struct playlist_info* playlist,
163 int position, bool write);
164 static int randomise_playlist(struct playlist_info* playlist,
165 unsigned int seed, bool start_current,
166 bool write);
167 static int sort_playlist(struct playlist_info* playlist, bool start_current,
168 bool write);
169 static int get_next_index(const struct playlist_info* playlist, int steps,
170 int repeat_mode);
171 static void find_and_set_playlist_index(struct playlist_info* playlist,
172 unsigned int seek);
173 static int compare(const void* p1, const void* p2);
174 static int get_filename(struct playlist_info* playlist, int index, int seek,
175 bool control_file, char *buf, int buf_length);
176 static int get_next_directory(char *dir);
177 static int get_next_dir(char *dir, bool is_forward, bool recursion);
178 static int get_previous_directory(char *dir);
179 static int check_subdir_for_music(char *dir, const char *subdir, bool recurse);
180 static int format_track_path(char *dest, char *src, int buf_length, int max,
181 const char *dir);
182 static void display_playlist_count(int count, const unsigned char *fmt,
183 bool final);
184 static void display_buffer_full(void);
185 static int flush_cached_control(struct playlist_info* playlist);
186 static int update_control(struct playlist_info* playlist,
187 enum playlist_command command, int i1, int i2,
188 const char* s1, const char* s2, void* data);
189 static void sync_control(struct playlist_info* playlist, bool force);
190 static int rotate_index(const struct playlist_info* playlist, int index);
192 #ifdef HAVE_DIRCACHE
193 #define PLAYLIST_LOAD_POINTERS 1
195 static struct event_queue playlist_queue;
196 static long playlist_stack[(DEFAULT_STACK_SIZE + 0x800)/sizeof(long)];
197 static const char playlist_thread_name[] = "playlist cachectrl";
198 #endif
200 /* Check if the filename suggests M3U or M3U8 format. */
201 static bool is_m3u8(const char* filename)
203 int len = strlen(filename);
205 /* Default to M3U8 unless explicitly told otherwise. */
206 return !(len > 4 && strcasecmp(&filename[len - 4], ".m3u") == 0);
210 /* Convert a filename in an M3U playlist to UTF-8.
212 * buf - the filename to convert; can contain more than one line from the
213 * playlist.
214 * buf_len - amount of buf that is used.
215 * buf_max - total size of buf.
216 * temp - temporary conversion buffer, at least buf_max bytes.
218 * Returns the length of the converted filename.
220 static int convert_m3u(char* buf, int buf_len, int buf_max, char* temp)
222 int i = 0;
223 char* dest;
225 /* Locate EOL. */
226 while ((buf[i] != '\n') && (buf[i] != '\r') && (i < buf_len))
228 i++;
231 /* Work back killing white space. */
232 while ((i > 0) && isspace(buf[i - 1]))
234 i--;
237 buf_len = i;
238 dest = temp;
240 /* Convert char by char, so as to not overflow temp (iso_decode should
241 * preferably handle this). No more than 4 bytes should be generated for
242 * each input char.
244 for (i = 0; i < buf_len && dest < (temp + buf_max - 4); i++)
246 dest = iso_decode(&buf[i], dest, -1, 1);
249 *dest = 0;
250 strcpy(buf, temp);
251 return dest - temp;
255 * remove any files and indices associated with the playlist
257 static void empty_playlist(struct playlist_info* playlist, bool resume)
259 playlist->filename[0] = '\0';
260 playlist->utf8 = true;
262 if(playlist->fd >= 0)
263 /* If there is an already open playlist, close it. */
264 close(playlist->fd);
265 playlist->fd = -1;
267 if(playlist->control_fd >= 0)
268 close(playlist->control_fd);
269 playlist->control_fd = -1;
270 playlist->control_created = false;
272 playlist->in_ram = false;
274 if (playlist->buffer)
275 playlist->buffer[0] = 0;
277 playlist->buffer_end_pos = 0;
279 playlist->index = 0;
280 playlist->first_index = 0;
281 playlist->amount = 0;
282 playlist->last_insert_pos = -1;
283 playlist->seed = 0;
284 playlist->shuffle_modified = false;
285 playlist->deleted = false;
286 playlist->num_inserted_tracks = 0;
287 playlist->started = false;
289 playlist->num_cached = 0;
290 playlist->pending_control_sync = false;
292 if (!resume && playlist->current)
294 /* start with fresh playlist control file when starting new
295 playlist */
296 create_control(playlist);
301 * Initialize a new playlist for viewing/editing/playing. dir is the
302 * directory where the playlist is located and file is the filename.
304 static void new_playlist(struct playlist_info* playlist, const char *dir,
305 const char *file)
307 const char *fileused = file;
308 const char *dirused = dir;
309 empty_playlist(playlist, false);
311 if (!fileused)
313 fileused = "";
315 if (dirused && playlist->current) /* !current cannot be in_ram */
316 playlist->in_ram = true;
317 else
318 dirused = ""; /* empty playlist */
321 update_playlist_filename(playlist, dirused, fileused);
323 if (playlist->control_fd >= 0)
325 update_control(playlist, PLAYLIST_COMMAND_PLAYLIST,
326 PLAYLIST_CONTROL_FILE_VERSION, -1, dirused, fileused, NULL);
327 sync_control(playlist, false);
332 * create control file for playlist
334 static void create_control(struct playlist_info* playlist)
336 playlist->control_fd = open(playlist->control_filename,
337 O_CREAT|O_RDWR|O_TRUNC, 0666);
338 if (playlist->control_fd < 0)
340 if (check_rockboxdir())
342 cond_talk_ids_fq(LANG_PLAYLIST_CONTROL_ACCESS_ERROR);
343 splashf(HZ*2, (unsigned char *)"%s (%d)",
344 str(LANG_PLAYLIST_CONTROL_ACCESS_ERROR),
345 playlist->control_fd);
347 playlist->control_created = false;
349 else
351 playlist->control_created = true;
356 * validate the control file. This may include creating/initializing it if
357 * necessary;
359 static int check_control(struct playlist_info* playlist)
361 if (!playlist->control_created)
363 create_control(playlist);
365 if (playlist->control_fd >= 0)
367 char* dir = playlist->filename;
368 char* file = playlist->filename+playlist->dirlen;
369 char c = playlist->filename[playlist->dirlen-1];
371 playlist->filename[playlist->dirlen-1] = '\0';
373 update_control(playlist, PLAYLIST_COMMAND_PLAYLIST,
374 PLAYLIST_CONTROL_FILE_VERSION, -1, dir, file, NULL);
375 sync_control(playlist, false);
376 playlist->filename[playlist->dirlen-1] = c;
380 if (playlist->control_fd < 0)
381 return -1;
383 return 0;
387 * recreate the control file based on current playlist entries
389 static int recreate_control(struct playlist_info* playlist)
391 char temp_file[MAX_PATH+1];
392 int temp_fd = -1;
393 int i;
394 int result = 0;
396 if(playlist->control_fd >= 0)
398 char* dir = playlist->filename;
399 char* file = playlist->filename+playlist->dirlen;
400 char c = playlist->filename[playlist->dirlen-1];
402 close(playlist->control_fd);
404 snprintf(temp_file, sizeof(temp_file), "%s_temp",
405 playlist->control_filename);
407 if (rename(playlist->control_filename, temp_file) < 0)
408 return -1;
410 temp_fd = open(temp_file, O_RDONLY);
411 if (temp_fd < 0)
412 return -1;
414 playlist->control_fd = open(playlist->control_filename,
415 O_CREAT|O_RDWR|O_TRUNC, 0666);
416 if (playlist->control_fd < 0)
417 return -1;
419 playlist->filename[playlist->dirlen-1] = '\0';
421 /* cannot call update_control() because of mutex */
422 result = fdprintf(playlist->control_fd, "P:%d:%s:%s\n",
423 PLAYLIST_CONTROL_FILE_VERSION, dir, file);
425 playlist->filename[playlist->dirlen-1] = c;
427 if (result < 0)
429 close(temp_fd);
430 return result;
434 playlist->seed = 0;
435 playlist->shuffle_modified = false;
436 playlist->deleted = false;
437 playlist->num_inserted_tracks = 0;
439 for (i=0; i<playlist->amount; i++)
441 if (playlist->indices[i] & PLAYLIST_INSERT_TYPE_MASK)
443 bool queue = playlist->indices[i] & PLAYLIST_QUEUE_MASK;
444 char inserted_file[MAX_PATH+1];
446 lseek(temp_fd, playlist->indices[i] & PLAYLIST_SEEK_MASK,
447 SEEK_SET);
448 read_line(temp_fd, inserted_file, sizeof(inserted_file));
450 result = fdprintf(playlist->control_fd, "%c:%d:%d:",
451 queue?'Q':'A', i, playlist->last_insert_pos);
452 if (result > 0)
454 /* save the position in file where name is written */
455 int seek_pos = lseek(playlist->control_fd, 0, SEEK_CUR);
457 result = fdprintf(playlist->control_fd, "%s\n",
458 inserted_file);
460 playlist->indices[i] =
461 (playlist->indices[i] & ~PLAYLIST_SEEK_MASK) | seek_pos;
464 if (result < 0)
465 break;
467 playlist->num_inserted_tracks++;
471 close(temp_fd);
472 remove(temp_file);
473 fsync(playlist->control_fd);
475 if (result < 0)
476 return result;
478 return 0;
482 * store directory and name of playlist file
484 static void update_playlist_filename(struct playlist_info* playlist,
485 const char *dir, const char *file)
487 char *sep="";
488 int dirlen = strlen(dir);
490 playlist->utf8 = is_m3u8(file);
492 /* If the dir does not end in trailing slash, we use a separator.
493 Otherwise we don't. */
494 if('/' != dir[dirlen-1])
496 sep="/";
497 dirlen++;
500 playlist->dirlen = dirlen;
502 snprintf(playlist->filename, sizeof(playlist->filename),
503 "%s%s%s", dir, sep, file);
507 * calculate track offsets within a playlist file
509 static int add_indices_to_playlist(struct playlist_info* playlist,
510 char* buffer, size_t buflen)
512 unsigned int nread;
513 unsigned int i = 0;
514 unsigned int count = 0;
515 bool store_index;
516 unsigned char *p;
517 int result = 0;
519 if(-1 == playlist->fd)
520 playlist->fd = open_utf8(playlist->filename, O_RDONLY);
521 if(playlist->fd < 0)
522 return -1; /* failure */
523 if((i = lseek(playlist->fd, 0, SEEK_CUR)) > 0)
524 playlist->utf8 = true; /* Override any earlier indication. */
526 splash(0, ID2P(LANG_WAIT));
528 if (!buffer)
530 /* use mp3 buffer for maximum load speed */
531 audio_stop();
532 #if CONFIG_CODEC != SWCODEC
533 talk_buffer_steal(); /* we use the mp3 buffer, need to tell */
534 buflen = (audiobufend - audiobuf);
535 buffer = (char *)audiobuf;
536 #else
537 buffer = (char *)audio_get_buffer(false, &buflen);
538 #endif
541 store_index = true;
543 while(1)
545 nread = read(playlist->fd, buffer, buflen);
546 /* Terminate on EOF */
547 if(nread <= 0)
548 break;
550 p = (unsigned char *)buffer;
552 for(count=0; count < nread; count++,p++) {
554 /* Are we on a new line? */
555 if((*p == '\n') || (*p == '\r'))
557 store_index = true;
559 else if(store_index)
561 store_index = false;
563 if(*p != '#')
565 if ( playlist->amount >= playlist->max_playlist_size ) {
566 display_buffer_full();
567 result = -1;
568 goto exit;
571 /* Store a new entry */
572 playlist->indices[ playlist->amount ] = i+count;
573 #ifdef HAVE_DIRCACHE
574 if (playlist->filenames)
575 playlist->filenames[ playlist->amount ] = NULL;
576 #endif
577 playlist->amount++;
582 i+= count;
585 exit:
586 #ifdef HAVE_DIRCACHE
587 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
588 #endif
590 return result;
594 * Utility function to create a new playlist, fill it with the next or
595 * previous directory, shuffle it if needed, and start playback.
596 * If play_last is true and direction zero or negative, start playing
597 * the last file in the directory, otherwise start playing the first.
599 static int create_and_play_dir(int direction, bool play_last)
601 char dir[MAX_PATH + 1];
602 int res;
603 int index = -1;
605 if(direction > 0)
606 res = get_next_directory(dir);
607 else
608 res = get_previous_directory(dir);
610 if (!res)
612 if (playlist_create(dir, NULL) != -1)
614 ft_build_playlist(tree_get_context(), 0);
616 if (global_settings.playlist_shuffle)
617 playlist_shuffle(current_tick, -1);
619 if (play_last && direction <= 0)
620 index = current_playlist.amount - 1;
621 else
622 index = 0;
624 #if (CONFIG_CODEC != SWCODEC)
625 playlist_start(index, 0);
626 #endif
629 /* we've overwritten the dircache when getting the next/previous dir,
630 so the tree browser context will need to be reloaded */
631 reload_directory();
634 return index;
638 * Removes all tracks, from the playlist, leaving the presently playing
639 * track queued.
641 int playlist_remove_all_tracks(struct playlist_info *playlist)
643 int result;
645 if (playlist == NULL)
646 playlist = &current_playlist;
648 while (playlist->index > 0)
649 if ((result = remove_track_from_playlist(playlist, 0, true)) < 0)
650 return result;
652 while (playlist->amount > 1)
653 if ((result = remove_track_from_playlist(playlist, 1, true)) < 0)
654 return result;
656 if (playlist->amount == 1) {
657 playlist->indices[0] |= PLAYLIST_QUEUED;
660 return 0;
665 * Add track to playlist at specified position. There are seven special
666 * positions that can be specified:
667 * PLAYLIST_PREPEND - Add track at beginning of playlist
668 * PLAYLIST_INSERT - Add track after current song. NOTE: If
669 * there are already inserted tracks then track
670 * is added to the end of the insertion list
671 * PLAYLIST_INSERT_FIRST - Add track immediately after current song, no
672 * matter what other tracks have been inserted
673 * PLAYLIST_INSERT_LAST - Add track to end of playlist
674 * PLAYLIST_INSERT_SHUFFLED - Add track at some random point between the
675 * current playing track and end of playlist
676 * PLAYLIST_INSERT_LAST_SHUFFLED - Add tracks in random order to the end of
677 * the playlist.
678 * PLAYLIST_REPLACE - Erase current playlist, Cue the current track
679 * and inster this track at the end.
681 static int add_track_to_playlist(struct playlist_info* playlist,
682 const char *filename, int position,
683 bool queue, int seek_pos)
685 int insert_position, orig_position;
686 unsigned long flags = PLAYLIST_INSERT_TYPE_INSERT;
687 int i;
689 insert_position = orig_position = position;
691 if (playlist->amount >= playlist->max_playlist_size)
693 display_buffer_full();
694 return -1;
697 switch (position)
699 case PLAYLIST_PREPEND:
700 position = insert_position = playlist->first_index;
701 break;
702 case PLAYLIST_INSERT:
703 /* if there are already inserted tracks then add track to end of
704 insertion list else add after current playing track */
705 if (playlist->last_insert_pos >= 0 &&
706 playlist->last_insert_pos < playlist->amount &&
707 (playlist->indices[playlist->last_insert_pos]&
708 PLAYLIST_INSERT_TYPE_MASK) == PLAYLIST_INSERT_TYPE_INSERT)
709 position = insert_position = playlist->last_insert_pos+1;
710 else if (playlist->amount > 0)
711 position = insert_position = playlist->index + 1;
712 else
713 position = insert_position = 0;
715 playlist->last_insert_pos = position;
716 break;
717 case PLAYLIST_INSERT_FIRST:
718 if (playlist->amount > 0)
719 position = insert_position = playlist->index + 1;
720 else
721 position = insert_position = 0;
723 playlist->last_insert_pos = position;
724 break;
725 case PLAYLIST_INSERT_LAST:
726 if (playlist->first_index > 0)
727 position = insert_position = playlist->first_index;
728 else
729 position = insert_position = playlist->amount;
731 playlist->last_insert_pos = position;
732 break;
733 case PLAYLIST_INSERT_SHUFFLED:
735 if (playlist->started)
737 int offset;
738 int n = playlist->amount -
739 rotate_index(playlist, playlist->index);
741 if (n > 0)
742 offset = rand() % n;
743 else
744 offset = 0;
746 position = playlist->index + offset + 1;
747 if (position >= playlist->amount)
748 position -= playlist->amount;
750 insert_position = position;
752 else
753 position = insert_position = (rand() % (playlist->amount+1));
754 break;
756 case PLAYLIST_INSERT_LAST_SHUFFLED:
758 position = insert_position = playlist->last_shuffled_start +
759 rand() % (playlist->amount - playlist->last_shuffled_start + 1);
760 break;
762 case PLAYLIST_REPLACE:
763 if (playlist_remove_all_tracks(playlist) < 0)
764 return -1;
766 playlist->last_insert_pos = position = insert_position = playlist->index + 1;
767 break;
770 if (queue)
771 flags |= PLAYLIST_QUEUED;
773 /* shift indices so that track can be added */
774 for (i=playlist->amount; i>insert_position; i--)
776 playlist->indices[i] = playlist->indices[i-1];
777 #ifdef HAVE_DIRCACHE
778 if (playlist->filenames)
779 playlist->filenames[i] = playlist->filenames[i-1];
780 #endif
783 /* update stored indices if needed */
785 if (orig_position < 0)
787 if (playlist->amount > 0 && insert_position <= playlist->index &&
788 playlist->started)
789 playlist->index++;
791 if (playlist->amount > 0 && insert_position <= playlist->first_index &&
792 orig_position != PLAYLIST_PREPEND && playlist->started)
793 playlist->first_index++;
796 if (insert_position < playlist->last_insert_pos ||
797 (insert_position == playlist->last_insert_pos && position < 0))
798 playlist->last_insert_pos++;
800 if (seek_pos < 0 && playlist->control_fd >= 0)
802 int result = update_control(playlist,
803 (queue?PLAYLIST_COMMAND_QUEUE:PLAYLIST_COMMAND_ADD), position,
804 playlist->last_insert_pos, filename, NULL, &seek_pos);
806 if (result < 0)
807 return result;
810 playlist->indices[insert_position] = flags | seek_pos;
812 #ifdef HAVE_DIRCACHE
813 if (playlist->filenames)
814 playlist->filenames[insert_position] = NULL;
815 #endif
817 playlist->amount++;
818 playlist->num_inserted_tracks++;
820 return insert_position;
824 * Callback for playlist_directory_tracksearch to insert track into
825 * playlist.
827 static int directory_search_callback(char* filename, void* context)
829 struct directory_search_context* c =
830 (struct directory_search_context*) context;
831 int insert_pos;
833 insert_pos = add_track_to_playlist(c->playlist, filename, c->position,
834 c->queue, -1);
836 if (insert_pos < 0)
837 return -1;
839 (c->count)++;
841 /* Make sure tracks are inserted in correct order if user requests
842 INSERT_FIRST */
843 if (c->position == PLAYLIST_INSERT_FIRST || c->position >= 0)
844 c->position = insert_pos + 1;
846 if (((c->count)%PLAYLIST_DISPLAY_COUNT) == 0)
848 unsigned char* count_str;
850 if (c->queue)
851 count_str = ID2P(LANG_PLAYLIST_QUEUE_COUNT);
852 else
853 count_str = ID2P(LANG_PLAYLIST_INSERT_COUNT);
855 display_playlist_count(c->count, count_str, false);
857 if ((c->count) == PLAYLIST_DISPLAY_COUNT &&
858 (audio_status() & AUDIO_STATUS_PLAY) &&
859 c->playlist->started)
860 audio_flush_and_reload_tracks();
863 return 0;
867 * remove track at specified position
869 static int remove_track_from_playlist(struct playlist_info* playlist,
870 int position, bool write)
872 int i;
873 bool inserted;
875 if (playlist->amount <= 0)
876 return -1;
878 inserted = playlist->indices[position] & PLAYLIST_INSERT_TYPE_MASK;
880 /* shift indices now that track has been removed */
881 for (i=position; i<playlist->amount; i++)
883 playlist->indices[i] = playlist->indices[i+1];
884 #ifdef HAVE_DIRCACHE
885 if (playlist->filenames)
886 playlist->filenames[i] = playlist->filenames[i+1];
887 #endif
890 playlist->amount--;
892 if (inserted)
893 playlist->num_inserted_tracks--;
894 else
895 playlist->deleted = true;
897 /* update stored indices if needed */
898 if (position < playlist->index)
899 playlist->index--;
901 if (position < playlist->first_index)
903 playlist->first_index--;
906 if (position <= playlist->last_insert_pos)
907 playlist->last_insert_pos--;
909 if (write && playlist->control_fd >= 0)
911 int result = update_control(playlist, PLAYLIST_COMMAND_DELETE,
912 position, -1, NULL, NULL, NULL);
914 if (result < 0)
915 return result;
917 sync_control(playlist, false);
920 return 0;
924 * randomly rearrange the array of indices for the playlist. If start_current
925 * is true then update the index to the new index of the current playing track
927 static int randomise_playlist(struct playlist_info* playlist,
928 unsigned int seed, bool start_current,
929 bool write)
931 int count;
932 int candidate;
933 long store;
934 unsigned int current = playlist->indices[playlist->index];
936 /* seed 0 is used to identify sorted playlist for resume purposes */
937 if (seed == 0)
938 seed = 1;
940 /* seed with the given seed */
941 srand(seed);
943 /* randomise entire indices list */
944 for(count = playlist->amount - 1; count >= 0; count--)
946 /* the rand is from 0 to RAND_MAX, so adjust to our value range */
947 candidate = rand() % (count + 1);
949 /* now swap the values at the 'count' and 'candidate' positions */
950 store = playlist->indices[candidate];
951 playlist->indices[candidate] = playlist->indices[count];
952 playlist->indices[count] = store;
953 #ifdef HAVE_DIRCACHE
954 if (playlist->filenames)
956 store = (long)playlist->filenames[candidate];
957 playlist->filenames[candidate] = playlist->filenames[count];
958 playlist->filenames[count] = (struct dircache_entry *)store;
960 #endif
963 if (start_current)
964 find_and_set_playlist_index(playlist, current);
966 /* indices have been moved so last insert position is no longer valid */
967 playlist->last_insert_pos = -1;
969 playlist->seed = seed;
970 if (playlist->num_inserted_tracks > 0 || playlist->deleted)
971 playlist->shuffle_modified = true;
973 if (write)
975 update_control(playlist, PLAYLIST_COMMAND_SHUFFLE, seed,
976 playlist->first_index, NULL, NULL, NULL);
979 return 0;
983 * Sort the array of indices for the playlist. If start_current is true then
984 * set the index to the new index of the current song.
985 * Also while going to unshuffled mode set the first_index to 0.
987 static int sort_playlist(struct playlist_info* playlist, bool start_current,
988 bool write)
990 unsigned int current = playlist->indices[playlist->index];
992 if (playlist->amount > 0)
993 qsort(playlist->indices, playlist->amount,
994 sizeof(playlist->indices[0]), compare);
996 #ifdef HAVE_DIRCACHE
997 /** We need to re-check the song names from disk because qsort can't
998 * sort two arrays at once :/
999 * FIXME: Please implement a better way to do this. */
1000 memset(playlist->filenames, 0, playlist->max_playlist_size * sizeof(int));
1001 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
1002 #endif
1004 if (start_current)
1005 find_and_set_playlist_index(playlist, current);
1007 /* indices have been moved so last insert position is no longer valid */
1008 playlist->last_insert_pos = -1;
1010 if (!playlist->num_inserted_tracks && !playlist->deleted)
1011 playlist->shuffle_modified = false;
1012 if (write && playlist->control_fd >= 0)
1014 playlist->first_index = 0;
1015 update_control(playlist, PLAYLIST_COMMAND_UNSHUFFLE,
1016 playlist->first_index, -1, NULL, NULL, NULL);
1019 return 0;
1022 /* Calculate how many steps we have to really step when skipping entries
1023 * marked as bad.
1025 static int calculate_step_count(const struct playlist_info *playlist, int steps)
1027 int i, count, direction;
1028 int index;
1029 int stepped_count = 0;
1031 if (steps < 0)
1033 direction = -1;
1034 count = -steps;
1036 else
1038 direction = 1;
1039 count = steps;
1042 index = playlist->index;
1043 i = 0;
1044 do {
1045 /* Boundary check */
1046 if (index < 0)
1047 index += playlist->amount;
1048 if (index >= playlist->amount)
1049 index -= playlist->amount;
1051 /* Check if we found a bad entry. */
1052 if (playlist->indices[index] & PLAYLIST_SKIPPED)
1054 steps += direction;
1055 /* Are all entries bad? */
1056 if (stepped_count++ > playlist->amount)
1057 break ;
1059 else
1060 i++;
1062 index += direction;
1063 } while (i <= count);
1065 return steps;
1068 /* Marks the index of the track to be skipped that is "steps" away from
1069 * current playing track.
1071 void playlist_skip_entry(struct playlist_info *playlist, int steps)
1073 int index;
1075 if (playlist == NULL)
1076 playlist = &current_playlist;
1078 /* need to account for already skipped tracks */
1079 steps = calculate_step_count(playlist, steps);
1081 index = playlist->index + steps;
1082 if (index < 0)
1083 index += playlist->amount;
1084 else if (index >= playlist->amount)
1085 index -= playlist->amount;
1087 playlist->indices[index] |= PLAYLIST_SKIPPED;
1091 * returns the index of the track that is "steps" away from current playing
1092 * track.
1094 static int get_next_index(const struct playlist_info* playlist, int steps,
1095 int repeat_mode)
1097 int current_index = playlist->index;
1098 int next_index = -1;
1100 if (playlist->amount <= 0)
1101 return -1;
1103 if (repeat_mode == -1)
1104 repeat_mode = global_settings.repeat_mode;
1106 if (repeat_mode == REPEAT_SHUFFLE && playlist->amount <= 1)
1107 repeat_mode = REPEAT_ALL;
1109 steps = calculate_step_count(playlist, steps);
1110 switch (repeat_mode)
1112 case REPEAT_SHUFFLE:
1113 /* Treat repeat shuffle just like repeat off. At end of playlist,
1114 play will be resumed in playlist_next() */
1115 case REPEAT_OFF:
1117 current_index = rotate_index(playlist, current_index);
1118 next_index = current_index+steps;
1119 if ((next_index < 0) || (next_index >= playlist->amount))
1120 next_index = -1;
1121 else
1122 next_index = (next_index+playlist->first_index) %
1123 playlist->amount;
1125 break;
1128 case REPEAT_ONE:
1129 #ifdef AB_REPEAT_ENABLE
1130 case REPEAT_AB:
1131 #endif
1132 next_index = current_index;
1133 break;
1135 case REPEAT_ALL:
1136 default:
1138 next_index = (current_index+steps) % playlist->amount;
1139 while (next_index < 0)
1140 next_index += playlist->amount;
1142 if (steps >= playlist->amount)
1144 int i, index;
1146 index = next_index;
1147 next_index = -1;
1149 /* second time around so skip the queued files */
1150 for (i=0; i<playlist->amount; i++)
1152 if (playlist->indices[index] & PLAYLIST_QUEUE_MASK)
1153 index = (index+1) % playlist->amount;
1154 else
1156 next_index = index;
1157 break;
1161 break;
1165 /* No luck if the whole playlist was bad. */
1166 if (playlist->indices[next_index] & PLAYLIST_SKIPPED)
1167 return -1;
1169 return next_index;
1173 * Search for the seek track and set appropriate indices. Used after shuffle
1174 * to make sure the current index is still pointing to correct track.
1176 static void find_and_set_playlist_index(struct playlist_info* playlist,
1177 unsigned int seek)
1179 int i;
1181 /* Set the index to the current song */
1182 for (i=0; i<playlist->amount; i++)
1184 if (playlist->indices[i] == seek)
1186 playlist->index = playlist->first_index = i;
1188 break;
1194 * used to sort track indices. Sort order is as follows:
1195 * 1. Prepended tracks (in prepend order)
1196 * 2. Playlist/directory tracks (in playlist order)
1197 * 3. Inserted/Appended tracks (in insert order)
1199 static int compare(const void* p1, const void* p2)
1201 unsigned long* e1 = (unsigned long*) p1;
1202 unsigned long* e2 = (unsigned long*) p2;
1203 unsigned long flags1 = *e1 & PLAYLIST_INSERT_TYPE_MASK;
1204 unsigned long flags2 = *e2 & PLAYLIST_INSERT_TYPE_MASK;
1206 if (flags1 == flags2)
1207 return (*e1 & PLAYLIST_SEEK_MASK) - (*e2 & PLAYLIST_SEEK_MASK);
1208 else if (flags1 == PLAYLIST_INSERT_TYPE_PREPEND ||
1209 flags2 == PLAYLIST_INSERT_TYPE_APPEND)
1210 return -1;
1211 else if (flags1 == PLAYLIST_INSERT_TYPE_APPEND ||
1212 flags2 == PLAYLIST_INSERT_TYPE_PREPEND)
1213 return 1;
1214 else if (flags1 && flags2)
1215 return (*e1 & PLAYLIST_SEEK_MASK) - (*e2 & PLAYLIST_SEEK_MASK);
1216 else
1217 return *e1 - *e2;
1220 #ifdef HAVE_DIRCACHE
1222 * Thread to update filename pointers to dircache on background
1223 * without affecting playlist load up performance. This thread also flushes
1224 * any pending control commands when the disk spins up.
1226 static void playlist_flush_callback(void *param)
1228 (void)param;
1229 struct playlist_info *playlist;
1230 playlist = &current_playlist;
1231 if (playlist->control_fd >= 0)
1233 if (playlist->num_cached > 0)
1235 mutex_lock(&playlist->control_mutex);
1236 flush_cached_control(playlist);
1237 mutex_unlock(&playlist->control_mutex);
1239 sync_control(playlist, true);
1243 static void playlist_thread(void)
1245 struct queue_event ev;
1246 bool dirty_pointers = false;
1247 static char tmp[MAX_PATH+1];
1249 struct playlist_info *playlist;
1250 int index;
1251 int seek;
1252 bool control_file;
1254 int sleep_time = 5;
1256 #ifdef HAVE_DISK_STORAGE
1257 if (global_settings.disk_spindown > 1 &&
1258 global_settings.disk_spindown <= 5)
1259 sleep_time = global_settings.disk_spindown - 1;
1260 #endif
1262 while (1)
1264 queue_wait_w_tmo(&playlist_queue, &ev, HZ*sleep_time);
1266 switch (ev.id)
1268 case PLAYLIST_LOAD_POINTERS:
1269 dirty_pointers = true;
1270 break ;
1272 /* Start the background scanning after either the disk spindown
1273 timeout or 5s, whichever is less */
1274 case SYS_TIMEOUT:
1275 playlist = &current_playlist;
1276 if (playlist->control_fd >= 0)
1278 if (playlist->num_cached > 0)
1279 register_storage_idle_func(playlist_flush_callback);
1282 if (!dirty_pointers)
1283 break ;
1285 if (!dircache_is_enabled() || !playlist->filenames
1286 || playlist->amount <= 0)
1287 break ;
1289 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
1290 cpu_boost(true);
1291 #endif
1292 for (index = 0; index < playlist->amount
1293 && queue_empty(&playlist_queue); index++)
1295 /* Process only pointers that are not already loaded. */
1296 if (playlist->filenames[index])
1297 continue ;
1299 control_file = playlist->indices[index] & PLAYLIST_INSERT_TYPE_MASK;
1300 seek = playlist->indices[index] & PLAYLIST_SEEK_MASK;
1302 /* Load the filename from playlist file. */
1303 if (get_filename(playlist, index, seek, control_file, tmp,
1304 sizeof(tmp)) < 0)
1305 break ;
1307 /* Set the dircache entry pointer. */
1308 playlist->filenames[index] = dircache_get_entry_ptr(tmp);
1310 /* And be on background so user doesn't notice any delays. */
1311 yield();
1314 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
1315 cpu_boost(false);
1316 #endif
1317 dirty_pointers = false;
1318 break ;
1320 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
1321 case SYS_USB_CONNECTED:
1322 usb_acknowledge(SYS_USB_CONNECTED_ACK);
1323 usb_wait_for_disconnect(&playlist_queue);
1324 break ;
1325 #endif
1329 #endif
1332 * gets pathname for track at seek index
1334 static int get_filename(struct playlist_info* playlist, int index, int seek,
1335 bool control_file, char *buf, int buf_length)
1337 int fd;
1338 int max = -1;
1339 char tmp_buf[MAX_PATH+1];
1340 char dir_buf[MAX_PATH+1];
1341 bool utf8 = playlist->utf8;
1343 if (buf_length > MAX_PATH+1)
1344 buf_length = MAX_PATH+1;
1346 #ifdef HAVE_DIRCACHE
1347 if (dircache_is_enabled() && playlist->filenames)
1349 if (playlist->filenames[index] != NULL)
1351 dircache_copy_path(playlist->filenames[index], tmp_buf, sizeof(tmp_buf)-1);
1352 max = strlen(tmp_buf);
1355 #else
1356 (void)index;
1357 #endif
1359 if (playlist->in_ram && !control_file && max < 0)
1361 max = strlcpy(tmp_buf, &playlist->buffer[seek], sizeof(tmp_buf));
1363 else if (max < 0)
1365 mutex_lock(&playlist->control_mutex);
1367 if (control_file)
1369 fd = playlist->control_fd;
1370 utf8 = true;
1372 else
1374 if(-1 == playlist->fd)
1375 playlist->fd = open(playlist->filename, O_RDONLY);
1377 fd = playlist->fd;
1380 if(-1 != fd)
1383 if (lseek(fd, seek, SEEK_SET) != seek)
1384 max = -1;
1385 else
1387 max = read(fd, tmp_buf, MIN((size_t) buf_length, sizeof(tmp_buf)));
1389 if ((max > 0) && !utf8)
1391 /* Use dir_buf as a temporary buffer. Note that dir_buf must
1392 * be as large as tmp_buf.
1394 max = convert_m3u(tmp_buf, max, sizeof(tmp_buf), dir_buf);
1399 mutex_unlock(&playlist->control_mutex);
1401 if (max < 0)
1403 if (control_file)
1404 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
1405 else
1406 splash(HZ*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR));
1408 return max;
1412 strlcpy(dir_buf, playlist->filename, playlist->dirlen);
1414 return (format_track_path(buf, tmp_buf, buf_length, max, dir_buf));
1417 static int get_next_directory(char *dir){
1418 return get_next_dir(dir,true,false);
1421 static int get_previous_directory(char *dir){
1422 return get_next_dir(dir,false,false);
1426 * search through all the directories (starting with the current) to find
1427 * one that has tracks to play
1429 static int get_next_dir(char *dir, bool is_forward, bool recursion)
1431 struct playlist_info* playlist = &current_playlist;
1432 int result = -1;
1433 char *start_dir = NULL;
1434 bool exit = false;
1435 int i;
1436 struct tree_context* tc = tree_get_context();
1437 int saved_dirfilter = *(tc->dirfilter);
1439 /* process random folder advance */
1440 if (global_settings.next_folder == FOLDER_ADVANCE_RANDOM)
1442 int fd = open(ROCKBOX_DIR "/folder_advance_list.dat", O_RDONLY);
1443 if (fd >= 0)
1445 char buffer[MAX_PATH];
1446 int folder_count = 0;
1447 srand(current_tick);
1448 *(tc->dirfilter) = SHOW_MUSIC;
1449 tc->sort_dir = global_settings.sort_dir;
1450 read(fd,&folder_count,sizeof(int));
1451 if (!folder_count)
1452 exit = true;
1453 while (!exit)
1455 i = rand()%folder_count;
1456 lseek(fd,sizeof(int) + (MAX_PATH*i),SEEK_SET);
1457 read(fd,buffer,MAX_PATH);
1458 if (check_subdir_for_music(buffer, "", false) ==0)
1459 exit = true;
1461 if (folder_count)
1462 strcpy(dir,buffer);
1463 close(fd);
1464 *(tc->dirfilter) = saved_dirfilter;
1465 tc->sort_dir = global_settings.sort_dir;
1466 reload_directory();
1467 return 0;
1471 /* not random folder advance (or random folder advance unavailable) */
1472 if (recursion)
1474 /* start with root */
1475 dir[0] = '\0';
1477 else
1479 /* start with current directory */
1480 strlcpy(dir, playlist->filename, playlist->dirlen);
1483 /* use the tree browser dircache to load files */
1484 *(tc->dirfilter) = SHOW_ALL;
1486 /* set up sorting/direction */
1487 tc->sort_dir = global_settings.sort_dir;
1488 if (!is_forward)
1490 static const char sortpairs[] =
1492 [SORT_ALPHA] = SORT_ALPHA_REVERSED,
1493 [SORT_DATE] = SORT_DATE_REVERSED,
1494 [SORT_TYPE] = SORT_TYPE_REVERSED,
1495 [SORT_ALPHA_REVERSED] = SORT_ALPHA,
1496 [SORT_DATE_REVERSED] = SORT_DATE,
1497 [SORT_TYPE_REVERSED] = SORT_TYPE,
1500 if ((unsigned)tc->sort_dir < sizeof(sortpairs))
1501 tc->sort_dir = sortpairs[tc->sort_dir];
1504 while (!exit)
1506 struct entry *files;
1507 int num_files = 0;
1508 int i;
1510 if (ft_load(tc, (dir[0]=='\0')?"/":dir) < 0)
1512 exit = true;
1513 result = -1;
1514 break;
1517 files = (struct entry*) tc->dircache;
1518 num_files = tc->filesindir;
1520 for (i=0; i<num_files; i++)
1522 /* user abort */
1523 if (action_userabort(TIMEOUT_NOBLOCK))
1525 result = -1;
1526 exit = true;
1527 break;
1530 if (files[i].attr & ATTR_DIRECTORY)
1532 if (!start_dir)
1534 result = check_subdir_for_music(dir, files[i].name, true);
1535 if (result != -1)
1537 exit = true;
1538 break;
1541 else if (!strcmp(start_dir, files[i].name))
1542 start_dir = NULL;
1546 if (!exit)
1548 /* move down to parent directory. current directory name is
1549 stored as the starting point for the search in parent */
1550 start_dir = strrchr(dir, '/');
1551 if (start_dir)
1553 *start_dir = '\0';
1554 start_dir++;
1556 else
1557 break;
1561 /* restore dirfilter */
1562 *(tc->dirfilter) = saved_dirfilter;
1563 tc->sort_dir = global_settings.sort_dir;
1565 /* special case if nothing found: try start searching again from root */
1566 if (result == -1 && !recursion){
1567 result = get_next_dir(dir, is_forward, true);
1570 return result;
1574 * Checks if there are any music files in the dir or any of its
1575 * subdirectories. May be called recursively.
1577 static int check_subdir_for_music(char *dir, const char *subdir, bool recurse)
1579 int result = -1;
1580 int dirlen = strlen(dir);
1581 int num_files = 0;
1582 int i;
1583 struct entry *files;
1584 bool has_music = false;
1585 bool has_subdir = false;
1586 struct tree_context* tc = tree_get_context();
1588 snprintf(dir+dirlen, MAX_PATH-dirlen, "/%s", subdir);
1590 if (ft_load(tc, dir) < 0)
1592 return -2;
1595 files = (struct entry*) tc->dircache;
1596 num_files = tc->filesindir;
1598 for (i=0; i<num_files; i++)
1600 if (files[i].attr & ATTR_DIRECTORY)
1601 has_subdir = true;
1602 else if ((files[i].attr & FILE_ATTR_MASK) == FILE_ATTR_AUDIO)
1604 has_music = true;
1605 break;
1609 if (has_music)
1610 return 0;
1612 if (has_subdir && recurse)
1614 for (i=0; i<num_files; i++)
1616 if (action_userabort(TIMEOUT_NOBLOCK))
1618 result = -2;
1619 break;
1622 if (files[i].attr & ATTR_DIRECTORY)
1624 result = check_subdir_for_music(dir, files[i].name, true);
1625 if (!result)
1626 break;
1631 if (result < 0)
1633 if (dirlen)
1635 dir[dirlen] = '\0';
1637 else
1639 strcpy(dir, "/");
1642 /* we now need to reload our current directory */
1643 if(ft_load(tc, dir) < 0)
1644 splash(HZ*2, ID2P(LANG_PLAYLIST_DIRECTORY_ACCESS_ERROR));
1646 return result;
1650 * Returns absolute path of track
1652 static int format_track_path(char *dest, char *src, int buf_length, int max,
1653 const char *dir)
1655 int i = 0;
1656 int j;
1657 char *temp_ptr;
1659 /* Zero-terminate the file name */
1660 while((src[i] != '\n') &&
1661 (src[i] != '\r') &&
1662 (i < max))
1663 i++;
1665 /* Now work back killing white space */
1666 while((src[i-1] == ' ') ||
1667 (src[i-1] == '\t'))
1668 i--;
1670 src[i]=0;
1672 /* replace backslashes with forward slashes */
1673 for ( j=0; j<i; j++ )
1674 if ( src[j] == '\\' )
1675 src[j] = '/';
1677 if('/' == src[0])
1679 strlcpy(dest, src, buf_length);
1681 else
1683 /* handle dos style drive letter */
1684 if (':' == src[1])
1685 strlcpy(dest, &src[2], buf_length);
1686 else if (!strncmp(src, "../", 3))
1688 /* handle relative paths */
1689 i=3;
1690 while(!strncmp(&src[i], "../", 3))
1691 i += 3;
1692 for (j=0; j<i/3; j++) {
1693 temp_ptr = strrchr(dir, '/');
1694 if (temp_ptr)
1695 *temp_ptr = '\0';
1696 else
1697 break;
1699 snprintf(dest, buf_length, "%s/%s", dir, &src[i]);
1701 else if ( '.' == src[0] && '/' == src[1] ) {
1702 snprintf(dest, buf_length, "%s/%s", dir, &src[2]);
1704 else {
1705 snprintf(dest, buf_length, "%s/%s", dir, src);
1709 return 0;
1713 * Display splash message showing progress of playlist/directory insertion or
1714 * save.
1716 static void display_playlist_count(int count, const unsigned char *fmt,
1717 bool final)
1719 static long talked_tick = 0;
1720 long id = P2ID(fmt);
1721 if(global_settings.talk_menu && id>=0)
1723 if(final || (count && (talked_tick == 0
1724 || TIME_AFTER(current_tick, talked_tick+5*HZ))))
1726 talked_tick = current_tick;
1727 talk_number(count, false);
1728 talk_id(id, true);
1731 fmt = P2STR(fmt);
1733 splashf(0, fmt, count, str(LANG_OFF_ABORT));
1737 * Display buffer full message
1739 static void display_buffer_full(void)
1741 splash(HZ*2, ID2P(LANG_PLAYLIST_BUFFER_FULL));
1745 * Flush any cached control commands to disk. Called when playlist is being
1746 * modified. Returns 0 on success and -1 on failure.
1748 static int flush_cached_control(struct playlist_info* playlist)
1750 int result = 0;
1751 int i;
1753 if (!playlist->num_cached)
1754 return 0;
1756 lseek(playlist->control_fd, 0, SEEK_END);
1758 for (i=0; i<playlist->num_cached; i++)
1760 struct playlist_control_cache* cache =
1761 &(playlist->control_cache[i]);
1763 switch (cache->command)
1765 case PLAYLIST_COMMAND_PLAYLIST:
1766 result = fdprintf(playlist->control_fd, "P:%d:%s:%s\n",
1767 cache->i1, cache->s1, cache->s2);
1768 break;
1769 case PLAYLIST_COMMAND_ADD:
1770 case PLAYLIST_COMMAND_QUEUE:
1771 result = fdprintf(playlist->control_fd, "%c:%d:%d:",
1772 (cache->command == PLAYLIST_COMMAND_ADD)?'A':'Q',
1773 cache->i1, cache->i2);
1774 if (result > 0)
1776 /* save the position in file where name is written */
1777 int* seek_pos = (int *)cache->data;
1778 *seek_pos = lseek(playlist->control_fd, 0, SEEK_CUR);
1779 result = fdprintf(playlist->control_fd, "%s\n",
1780 cache->s1);
1782 break;
1783 case PLAYLIST_COMMAND_DELETE:
1784 result = fdprintf(playlist->control_fd, "D:%d\n", cache->i1);
1785 break;
1786 case PLAYLIST_COMMAND_SHUFFLE:
1787 result = fdprintf(playlist->control_fd, "S:%d:%d\n",
1788 cache->i1, cache->i2);
1789 break;
1790 case PLAYLIST_COMMAND_UNSHUFFLE:
1791 result = fdprintf(playlist->control_fd, "U:%d\n", cache->i1);
1792 break;
1793 case PLAYLIST_COMMAND_RESET:
1794 result = fdprintf(playlist->control_fd, "R\n");
1795 break;
1796 default:
1797 break;
1800 if (result <= 0)
1801 break;
1804 if (result > 0)
1806 playlist->num_cached = 0;
1807 playlist->pending_control_sync = true;
1809 result = 0;
1811 else
1813 result = -1;
1814 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_UPDATE_ERROR));
1817 return result;
1821 * Update control data with new command. Depending on the command, it may be
1822 * cached or flushed to disk.
1824 static int update_control(struct playlist_info* playlist,
1825 enum playlist_command command, int i1, int i2,
1826 const char* s1, const char* s2, void* data)
1828 int result = 0;
1829 struct playlist_control_cache* cache;
1830 bool flush = false;
1832 mutex_lock(&playlist->control_mutex);
1834 cache = &(playlist->control_cache[playlist->num_cached++]);
1836 cache->command = command;
1837 cache->i1 = i1;
1838 cache->i2 = i2;
1839 cache->s1 = s1;
1840 cache->s2 = s2;
1841 cache->data = data;
1843 switch (command)
1845 case PLAYLIST_COMMAND_PLAYLIST:
1846 case PLAYLIST_COMMAND_ADD:
1847 case PLAYLIST_COMMAND_QUEUE:
1848 #ifndef HAVE_DIRCACHE
1849 case PLAYLIST_COMMAND_DELETE:
1850 case PLAYLIST_COMMAND_RESET:
1851 #endif
1852 flush = true;
1853 break;
1854 case PLAYLIST_COMMAND_SHUFFLE:
1855 case PLAYLIST_COMMAND_UNSHUFFLE:
1856 default:
1857 /* only flush when needed */
1858 break;
1861 if (flush || playlist->num_cached == PLAYLIST_MAX_CACHE)
1862 result = flush_cached_control(playlist);
1864 mutex_unlock(&playlist->control_mutex);
1866 return result;
1870 * sync control file to disk
1872 static void sync_control(struct playlist_info* playlist, bool force)
1874 #ifdef HAVE_DIRCACHE
1875 if (playlist->started && force)
1876 #else
1877 (void) force;
1879 if (playlist->started)
1880 #endif
1882 if (playlist->pending_control_sync)
1884 mutex_lock(&playlist->control_mutex);
1885 fsync(playlist->control_fd);
1886 playlist->pending_control_sync = false;
1887 mutex_unlock(&playlist->control_mutex);
1893 * Rotate indices such that first_index is index 0
1895 static int rotate_index(const struct playlist_info* playlist, int index)
1897 index -= playlist->first_index;
1898 if (index < 0)
1899 index += playlist->amount;
1901 return index;
1905 * Initialize playlist entries at startup
1907 void playlist_init(void)
1909 struct playlist_info* playlist = &current_playlist;
1911 playlist->current = true;
1912 strlcpy(playlist->control_filename, PLAYLIST_CONTROL_FILE,
1913 sizeof(playlist->control_filename));
1914 playlist->fd = -1;
1915 playlist->control_fd = -1;
1916 playlist->max_playlist_size = global_settings.max_files_in_playlist;
1917 playlist->indices = buffer_alloc(
1918 playlist->max_playlist_size * sizeof(int));
1919 playlist->buffer_size =
1920 AVERAGE_FILENAME_LENGTH * global_settings.max_files_in_dir;
1921 playlist->buffer = buffer_alloc(playlist->buffer_size);
1922 mutex_init(&playlist->control_mutex);
1923 empty_playlist(playlist, true);
1925 #ifdef HAVE_DIRCACHE
1926 playlist->filenames = buffer_alloc(
1927 playlist->max_playlist_size * sizeof(int));
1928 memset(playlist->filenames, 0,
1929 playlist->max_playlist_size * sizeof(int));
1930 create_thread(playlist_thread, playlist_stack, sizeof(playlist_stack),
1931 0, playlist_thread_name IF_PRIO(, PRIORITY_BACKGROUND)
1932 IF_COP(, CPU));
1933 queue_init(&playlist_queue, true);
1934 #endif
1938 * Clean playlist at shutdown
1940 void playlist_shutdown(void)
1942 struct playlist_info* playlist = &current_playlist;
1944 if (playlist->control_fd >= 0)
1946 mutex_lock(&playlist->control_mutex);
1948 if (playlist->num_cached > 0)
1949 flush_cached_control(playlist);
1951 close(playlist->control_fd);
1953 mutex_unlock(&playlist->control_mutex);
1958 * Create new playlist
1960 int playlist_create(const char *dir, const char *file)
1962 struct playlist_info* playlist = &current_playlist;
1964 new_playlist(playlist, dir, file);
1966 if (file)
1967 /* load the playlist file */
1968 add_indices_to_playlist(playlist, NULL, 0);
1970 return 0;
1973 #define PLAYLIST_COMMAND_SIZE (MAX_PATH+12)
1976 * Restore the playlist state based on control file commands. Called to
1977 * resume playback after shutdown.
1979 int playlist_resume(void)
1981 struct playlist_info* playlist = &current_playlist;
1982 char *buffer;
1983 size_t buflen;
1984 int nread;
1985 int total_read = 0;
1986 int control_file_size = 0;
1987 bool first = true;
1988 bool sorted = true;
1990 /* use mp3 buffer for maximum load speed */
1991 #if CONFIG_CODEC != SWCODEC
1992 talk_buffer_steal(); /* we use the mp3 buffer, need to tell */
1993 buflen = (audiobufend - audiobuf);
1994 buffer = (char *)audiobuf;
1995 #else
1996 buffer = (char *)audio_get_buffer(false, &buflen);
1997 #endif
1999 empty_playlist(playlist, true);
2001 splash(0, ID2P(LANG_WAIT));
2002 playlist->control_fd = open(playlist->control_filename, O_RDWR);
2003 if (playlist->control_fd < 0)
2005 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
2006 return -1;
2008 playlist->control_created = true;
2010 control_file_size = filesize(playlist->control_fd);
2011 if (control_file_size <= 0)
2013 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
2014 return -1;
2017 /* read a small amount first to get the header */
2018 nread = read(playlist->control_fd, buffer,
2019 PLAYLIST_COMMAND_SIZE<buflen?PLAYLIST_COMMAND_SIZE:buflen);
2020 if(nread <= 0)
2022 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
2023 return -1;
2026 playlist->started = true;
2028 while (1)
2030 int result = 0;
2031 int count;
2032 enum playlist_command current_command = PLAYLIST_COMMAND_COMMENT;
2033 int last_newline = 0;
2034 int str_count = -1;
2035 bool newline = true;
2036 bool exit_loop = false;
2037 char *p = buffer;
2038 char *str1 = NULL;
2039 char *str2 = NULL;
2040 char *str3 = NULL;
2041 unsigned long last_tick = current_tick;
2042 bool useraborted = false;
2044 for(count=0; count<nread && !exit_loop && !useraborted; count++,p++)
2046 /* So a splash while we are loading. */
2047 if (TIME_AFTER(current_tick, last_tick + HZ/4))
2049 splashf(0, str(LANG_LOADING_PERCENT),
2050 (total_read+count)*100/control_file_size,
2051 str(LANG_OFF_ABORT));
2052 if (action_userabort(TIMEOUT_NOBLOCK))
2054 useraborted = true;
2055 break;
2057 last_tick = current_tick;
2060 /* Are we on a new line? */
2061 if((*p == '\n') || (*p == '\r'))
2063 *p = '\0';
2065 /* save last_newline in case we need to load more data */
2066 last_newline = count;
2068 switch (current_command)
2070 case PLAYLIST_COMMAND_PLAYLIST:
2072 /* str1=version str2=dir str3=file */
2073 int version;
2075 if (!str1)
2077 result = -1;
2078 exit_loop = true;
2079 break;
2082 if (!str2)
2083 str2 = "";
2085 if (!str3)
2086 str3 = "";
2088 version = atoi(str1);
2090 if (version != PLAYLIST_CONTROL_FILE_VERSION)
2091 return -1;
2093 update_playlist_filename(playlist, str2, str3);
2095 if (str3[0] != '\0')
2097 /* NOTE: add_indices_to_playlist() overwrites the
2098 audiobuf so we need to reload control file
2099 data */
2100 add_indices_to_playlist(playlist, NULL, 0);
2102 else if (str2[0] != '\0')
2104 playlist->in_ram = true;
2105 resume_directory(str2);
2108 /* load the rest of the data */
2109 first = false;
2110 exit_loop = true;
2112 break;
2114 case PLAYLIST_COMMAND_ADD:
2115 case PLAYLIST_COMMAND_QUEUE:
2117 /* str1=position str2=last_position str3=file */
2118 int position, last_position;
2119 bool queue;
2121 if (!str1 || !str2 || !str3)
2123 result = -1;
2124 exit_loop = true;
2125 break;
2128 position = atoi(str1);
2129 last_position = atoi(str2);
2131 queue = (current_command == PLAYLIST_COMMAND_ADD)?
2132 false:true;
2134 /* seek position is based on str3's position in
2135 buffer */
2136 if (add_track_to_playlist(playlist, str3, position,
2137 queue, total_read+(str3-buffer)) < 0)
2138 return -1;
2140 playlist->last_insert_pos = last_position;
2142 break;
2144 case PLAYLIST_COMMAND_DELETE:
2146 /* str1=position */
2147 int position;
2149 if (!str1)
2151 result = -1;
2152 exit_loop = true;
2153 break;
2156 position = atoi(str1);
2158 if (remove_track_from_playlist(playlist, position,
2159 false) < 0)
2160 return -1;
2162 break;
2164 case PLAYLIST_COMMAND_SHUFFLE:
2166 /* str1=seed str2=first_index */
2167 int seed;
2169 if (!str1 || !str2)
2171 result = -1;
2172 exit_loop = true;
2173 break;
2176 if (!sorted)
2178 /* Always sort list before shuffling */
2179 sort_playlist(playlist, false, false);
2182 seed = atoi(str1);
2183 playlist->first_index = atoi(str2);
2185 if (randomise_playlist(playlist, seed, false,
2186 false) < 0)
2187 return -1;
2188 sorted = false;
2189 break;
2191 case PLAYLIST_COMMAND_UNSHUFFLE:
2193 /* str1=first_index */
2194 if (!str1)
2196 result = -1;
2197 exit_loop = true;
2198 break;
2201 playlist->first_index = atoi(str1);
2203 if (sort_playlist(playlist, false, false) < 0)
2204 return -1;
2206 sorted = true;
2207 break;
2209 case PLAYLIST_COMMAND_RESET:
2211 playlist->last_insert_pos = -1;
2212 break;
2214 case PLAYLIST_COMMAND_COMMENT:
2215 default:
2216 break;
2219 newline = true;
2221 /* to ignore any extra newlines */
2222 current_command = PLAYLIST_COMMAND_COMMENT;
2224 else if(newline)
2226 newline = false;
2228 /* first non-comment line must always specify playlist */
2229 if (first && *p != 'P' && *p != '#')
2231 result = -1;
2232 exit_loop = true;
2233 break;
2236 switch (*p)
2238 case 'P':
2239 /* playlist can only be specified once */
2240 if (!first)
2242 result = -1;
2243 exit_loop = true;
2244 break;
2247 current_command = PLAYLIST_COMMAND_PLAYLIST;
2248 break;
2249 case 'A':
2250 current_command = PLAYLIST_COMMAND_ADD;
2251 break;
2252 case 'Q':
2253 current_command = PLAYLIST_COMMAND_QUEUE;
2254 break;
2255 case 'D':
2256 current_command = PLAYLIST_COMMAND_DELETE;
2257 break;
2258 case 'S':
2259 current_command = PLAYLIST_COMMAND_SHUFFLE;
2260 break;
2261 case 'U':
2262 current_command = PLAYLIST_COMMAND_UNSHUFFLE;
2263 break;
2264 case 'R':
2265 current_command = PLAYLIST_COMMAND_RESET;
2266 break;
2267 case '#':
2268 current_command = PLAYLIST_COMMAND_COMMENT;
2269 break;
2270 default:
2271 result = -1;
2272 exit_loop = true;
2273 break;
2276 str_count = -1;
2277 str1 = NULL;
2278 str2 = NULL;
2279 str3 = NULL;
2281 else if(current_command != PLAYLIST_COMMAND_COMMENT)
2283 /* all control file strings are separated with a colon.
2284 Replace the colon with 0 to get proper strings that can be
2285 used by commands above */
2286 if (*p == ':')
2288 *p = '\0';
2289 str_count++;
2291 if ((count+1) < nread)
2293 switch (str_count)
2295 case 0:
2296 str1 = p+1;
2297 break;
2298 case 1:
2299 str2 = p+1;
2300 break;
2301 case 2:
2302 str3 = p+1;
2303 break;
2304 default:
2305 /* allow last string to contain colons */
2306 *p = ':';
2307 break;
2314 if (result < 0)
2316 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_INVALID));
2317 return result;
2320 if (useraborted)
2322 splash(HZ*2, ID2P(LANG_CANCEL));
2323 return -1;
2325 if (!newline || (exit_loop && count<nread))
2327 if ((total_read + count) >= control_file_size)
2329 /* no newline at end of control file */
2330 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_INVALID));
2331 return -1;
2334 /* We didn't end on a newline or we exited loop prematurely.
2335 Either way, re-read the remainder. */
2336 count = last_newline;
2337 lseek(playlist->control_fd, total_read+count, SEEK_SET);
2340 total_read += count;
2342 if (first)
2343 /* still looking for header */
2344 nread = read(playlist->control_fd, buffer,
2345 PLAYLIST_COMMAND_SIZE<buflen?PLAYLIST_COMMAND_SIZE:buflen);
2346 else
2347 nread = read(playlist->control_fd, buffer, buflen);
2349 /* Terminate on EOF */
2350 if(nread <= 0)
2352 break;
2356 #ifdef HAVE_DIRCACHE
2357 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
2358 #endif
2360 return 0;
2364 * Add track to in_ram playlist. Used when playing directories.
2366 int playlist_add(const char *filename)
2368 struct playlist_info* playlist = &current_playlist;
2369 int len = strlen(filename);
2371 if((len+1 > playlist->buffer_size - playlist->buffer_end_pos) ||
2372 (playlist->amount >= playlist->max_playlist_size))
2374 display_buffer_full();
2375 return -1;
2378 playlist->indices[playlist->amount] = playlist->buffer_end_pos;
2379 #ifdef HAVE_DIRCACHE
2380 playlist->filenames[playlist->amount] = NULL;
2381 #endif
2382 playlist->amount++;
2384 strcpy(&playlist->buffer[playlist->buffer_end_pos], filename);
2385 playlist->buffer_end_pos += len;
2386 playlist->buffer[playlist->buffer_end_pos++] = '\0';
2388 return 0;
2391 /* shuffle newly created playlist using random seed. */
2392 int playlist_shuffle(int random_seed, int start_index)
2394 struct playlist_info* playlist = &current_playlist;
2396 bool start_current = false;
2398 if (start_index >= 0 && global_settings.play_selected)
2400 /* store the seek position before the shuffle */
2401 playlist->index = playlist->first_index = start_index;
2402 start_current = true;
2405 randomise_playlist(playlist, random_seed, start_current, true);
2407 return playlist->index;
2410 /* start playing current playlist at specified index/offset */
2411 void playlist_start(int start_index, int offset)
2413 struct playlist_info* playlist = &current_playlist;
2415 /* Cancel FM radio selection as previous music. For cases where we start
2416 playback without going to the WPS, such as playlist insert.. or
2417 playlist catalog. */
2418 previous_music_is_wps();
2420 playlist->index = start_index;
2422 #if CONFIG_CODEC != SWCODEC
2423 talk_buffer_steal(); /* will use the mp3 buffer */
2424 #endif
2426 playlist->started = true;
2427 sync_control(playlist, false);
2428 audio_play(offset);
2431 /* Returns false if 'steps' is out of bounds, else true */
2432 bool playlist_check(int steps)
2434 struct playlist_info* playlist = &current_playlist;
2436 /* always allow folder navigation */
2437 if (global_settings.next_folder && playlist->in_ram)
2438 return true;
2440 int index = get_next_index(playlist, steps, -1);
2442 if (index < 0 && steps >= 0 && global_settings.repeat_mode == REPEAT_SHUFFLE)
2443 index = get_next_index(playlist, steps, REPEAT_ALL);
2445 return (index >= 0);
2448 /* get trackname of track that is "steps" away from current playing track.
2449 NULL is used to identify end of playlist */
2450 const char* playlist_peek(int steps, char* buf, size_t buf_size)
2452 struct playlist_info* playlist = &current_playlist;
2453 int seek;
2454 char *temp_ptr;
2455 int index;
2456 bool control_file;
2458 index = get_next_index(playlist, steps, -1);
2459 if (index < 0)
2460 return NULL;
2462 control_file = playlist->indices[index] & PLAYLIST_INSERT_TYPE_MASK;
2463 seek = playlist->indices[index] & PLAYLIST_SEEK_MASK;
2465 if (get_filename(playlist, index, seek, control_file, buf,
2466 buf_size) < 0)
2467 return NULL;
2469 temp_ptr = buf;
2471 if (!playlist->in_ram || control_file)
2473 /* remove bogus dirs from beginning of path
2474 (workaround for buggy playlist creation tools) */
2475 while (temp_ptr)
2477 if (file_exists(temp_ptr))
2478 break;
2480 temp_ptr = strchr(temp_ptr+1, '/');
2483 if (!temp_ptr)
2485 /* Even though this is an invalid file, we still need to pass a
2486 file name to the caller because NULL is used to indicate end
2487 of playlist */
2488 return buf;
2492 return temp_ptr;
2496 * Update indices as track has changed
2498 int playlist_next(int steps)
2500 struct playlist_info* playlist = &current_playlist;
2501 int index;
2503 if ( (steps > 0)
2504 #ifdef AB_REPEAT_ENABLE
2505 && (global_settings.repeat_mode != REPEAT_AB)
2506 #endif
2507 && (global_settings.repeat_mode != REPEAT_ONE) )
2509 int i, j;
2511 /* We need to delete all the queued songs */
2512 for (i=0, j=steps; i<j; i++)
2514 index = get_next_index(playlist, i, -1);
2516 if (playlist->indices[index] & PLAYLIST_QUEUE_MASK)
2518 remove_track_from_playlist(playlist, index, true);
2519 steps--; /* one less track */
2524 index = get_next_index(playlist, steps, -1);
2526 if (index < 0)
2528 /* end of playlist... or is it */
2529 if (global_settings.repeat_mode == REPEAT_SHUFFLE &&
2530 playlist->amount > 1)
2532 /* Repeat shuffle mode. Re-shuffle playlist and resume play */
2533 playlist->first_index = 0;
2534 sort_playlist(playlist, false, false);
2535 randomise_playlist(playlist, current_tick, false, true);
2536 #if CONFIG_CODEC != SWCODEC
2537 playlist_start(0, 0);
2538 #endif
2539 playlist->index = 0;
2540 index = 0;
2542 else if (playlist->in_ram && global_settings.next_folder)
2544 index = create_and_play_dir(steps, true);
2546 if (index >= 0)
2548 playlist->index = index;
2552 return index;
2555 playlist->index = index;
2557 if (playlist->last_insert_pos >= 0 && steps > 0)
2559 /* check to see if we've gone beyond the last inserted track */
2560 int cur = rotate_index(playlist, index);
2561 int last_pos = rotate_index(playlist, playlist->last_insert_pos);
2563 if (cur > last_pos)
2565 /* reset last inserted track */
2566 playlist->last_insert_pos = -1;
2568 if (playlist->control_fd >= 0)
2570 int result = update_control(playlist, PLAYLIST_COMMAND_RESET,
2571 -1, -1, NULL, NULL, NULL);
2573 if (result < 0)
2574 return result;
2576 sync_control(playlist, false);
2581 return index;
2584 /* try playing next or previous folder */
2585 bool playlist_next_dir(int direction)
2587 /* not to mess up real playlists */
2588 if(!current_playlist.in_ram)
2589 return false;
2591 return create_and_play_dir(direction, false) >= 0;
2594 /* Get resume info for current playing song. If return value is -1 then
2595 settings shouldn't be saved. */
2596 int playlist_get_resume_info(int *resume_index)
2598 struct playlist_info* playlist = &current_playlist;
2600 *resume_index = playlist->index;
2602 return 0;
2605 /* Update resume info for current playing song. Returns -1 on error. */
2606 int playlist_update_resume_info(const struct mp3entry* id3)
2608 struct playlist_info* playlist = &current_playlist;
2610 if (id3)
2612 if (global_status.resume_index != playlist->index ||
2613 global_status.resume_offset != id3->offset)
2615 global_status.resume_index = playlist->index;
2616 global_status.resume_offset = id3->offset;
2617 status_save();
2620 else
2622 global_status.resume_index = -1;
2623 global_status.resume_offset = -1;
2624 status_save();
2627 return 0;
2630 /* Returns index of current playing track for display purposes. This value
2631 should not be used for resume purposes as it doesn't represent the actual
2632 index into the playlist */
2633 int playlist_get_display_index(void)
2635 struct playlist_info* playlist = &current_playlist;
2637 /* first_index should always be index 0 for display purposes */
2638 int index = rotate_index(playlist, playlist->index);
2640 return (index+1);
2643 /* returns number of tracks in current playlist */
2644 int playlist_amount(void)
2646 return playlist_amount_ex(NULL);
2648 /* set playlist->last_shuffle_start to playlist->amount for
2649 PLAYLIST_INSERT_LAST_SHUFFLED command purposes*/
2650 void playlist_set_last_shuffled_start(void)
2652 struct playlist_info* playlist = &current_playlist;
2653 playlist->last_shuffled_start = playlist->amount;
2656 * Create a new playlist If playlist is not NULL then we're loading a
2657 * playlist off disk for viewing/editing. The index_buffer is used to store
2658 * playlist indices (required for and only used if !current playlist). The
2659 * temp_buffer (if not NULL) is used as a scratchpad when loading indices.
2661 int playlist_create_ex(struct playlist_info* playlist,
2662 const char* dir, const char* file,
2663 void* index_buffer, int index_buffer_size,
2664 void* temp_buffer, int temp_buffer_size)
2666 if (!playlist)
2667 playlist = &current_playlist;
2668 else
2670 /* Initialize playlist structure */
2671 int r = rand() % 10;
2672 playlist->current = false;
2674 /* Use random name for control file */
2675 snprintf(playlist->control_filename, sizeof(playlist->control_filename),
2676 "%s.%d", PLAYLIST_CONTROL_FILE, r);
2677 playlist->fd = -1;
2678 playlist->control_fd = -1;
2680 if (index_buffer)
2682 int num_indices = index_buffer_size / sizeof(int);
2684 #ifdef HAVE_DIRCACHE
2685 num_indices /= 2;
2686 #endif
2687 if (num_indices > global_settings.max_files_in_playlist)
2688 num_indices = global_settings.max_files_in_playlist;
2690 playlist->max_playlist_size = num_indices;
2691 playlist->indices = index_buffer;
2692 #ifdef HAVE_DIRCACHE
2693 playlist->filenames = (const struct dircache_entry **)
2694 &playlist->indices[num_indices];
2695 #endif
2697 else
2699 playlist->max_playlist_size = current_playlist.max_playlist_size;
2700 playlist->indices = current_playlist.indices;
2701 #ifdef HAVE_DIRCACHE
2702 playlist->filenames = current_playlist.filenames;
2703 #endif
2706 playlist->buffer_size = 0;
2707 playlist->buffer = NULL;
2708 mutex_init(&playlist->control_mutex);
2711 new_playlist(playlist, dir, file);
2713 if (file)
2714 /* load the playlist file */
2715 add_indices_to_playlist(playlist, temp_buffer, temp_buffer_size);
2717 return 0;
2721 * Set the specified playlist as the current.
2722 * NOTE: You will get undefined behaviour if something is already playing so
2723 * remember to stop before calling this. Also, this call will
2724 * effectively close your playlist, making it unusable.
2726 int playlist_set_current(struct playlist_info* playlist)
2728 if (!playlist || (check_control(playlist) < 0))
2729 return -1;
2731 empty_playlist(&current_playlist, false);
2733 strlcpy(current_playlist.filename, playlist->filename,
2734 sizeof(current_playlist.filename));
2736 current_playlist.utf8 = playlist->utf8;
2737 current_playlist.fd = playlist->fd;
2739 close(playlist->control_fd);
2740 close(current_playlist.control_fd);
2741 remove(current_playlist.control_filename);
2742 if (rename(playlist->control_filename,
2743 current_playlist.control_filename) < 0)
2744 return -1;
2745 current_playlist.control_fd = open(current_playlist.control_filename,
2746 O_RDWR);
2747 if (current_playlist.control_fd < 0)
2748 return -1;
2749 current_playlist.control_created = true;
2751 current_playlist.dirlen = playlist->dirlen;
2753 if (playlist->indices && playlist->indices != current_playlist.indices)
2755 memcpy(current_playlist.indices, playlist->indices,
2756 playlist->max_playlist_size*sizeof(int));
2757 #ifdef HAVE_DIRCACHE
2758 memcpy(current_playlist.filenames, playlist->filenames,
2759 playlist->max_playlist_size*sizeof(int));
2760 #endif
2763 current_playlist.first_index = playlist->first_index;
2764 current_playlist.amount = playlist->amount;
2765 current_playlist.last_insert_pos = playlist->last_insert_pos;
2766 current_playlist.seed = playlist->seed;
2767 current_playlist.shuffle_modified = playlist->shuffle_modified;
2768 current_playlist.deleted = playlist->deleted;
2769 current_playlist.num_inserted_tracks = playlist->num_inserted_tracks;
2771 memcpy(current_playlist.control_cache, playlist->control_cache,
2772 sizeof(current_playlist.control_cache));
2773 current_playlist.num_cached = playlist->num_cached;
2774 current_playlist.pending_control_sync = playlist->pending_control_sync;
2776 return 0;
2778 struct playlist_info *playlist_get_current(void)
2780 return &current_playlist;
2783 * Close files and delete control file for non-current playlist.
2785 void playlist_close(struct playlist_info* playlist)
2787 if (!playlist)
2788 return;
2790 if (playlist->fd >= 0)
2791 close(playlist->fd);
2793 if (playlist->control_fd >= 0)
2794 close(playlist->control_fd);
2796 if (playlist->control_created)
2797 remove(playlist->control_filename);
2800 void playlist_sync(struct playlist_info* playlist)
2802 if (!playlist)
2803 playlist = &current_playlist;
2805 sync_control(playlist, false);
2806 if ((audio_status() & AUDIO_STATUS_PLAY) && playlist->started)
2807 audio_flush_and_reload_tracks();
2809 #ifdef HAVE_DIRCACHE
2810 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
2811 #endif
2815 * Insert track into playlist at specified position (or one of the special
2816 * positions). Returns position where track was inserted or -1 if error.
2818 int playlist_insert_track(struct playlist_info* playlist, const char *filename,
2819 int position, bool queue, bool sync)
2821 int result;
2823 if (!playlist)
2824 playlist = &current_playlist;
2826 if (check_control(playlist) < 0)
2828 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
2829 return -1;
2832 result = add_track_to_playlist(playlist, filename, position, queue, -1);
2834 /* Check if we want manually sync later. For example when adding
2835 * bunch of files from tagcache, syncing after every file wouldn't be
2836 * a good thing to do. */
2837 if (sync && result >= 0)
2838 playlist_sync(playlist);
2840 return result;
2844 * Insert all tracks from specified directory into playlist.
2846 int playlist_insert_directory(struct playlist_info* playlist,
2847 const char *dirname, int position, bool queue,
2848 bool recurse)
2850 int result;
2851 unsigned char *count_str;
2852 struct directory_search_context context;
2854 if (!playlist)
2855 playlist = &current_playlist;
2857 if (check_control(playlist) < 0)
2859 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
2860 return -1;
2863 if (position == PLAYLIST_REPLACE)
2865 if (playlist_remove_all_tracks(playlist) == 0)
2866 position = PLAYLIST_INSERT_LAST;
2867 else
2868 return -1;
2871 if (queue)
2872 count_str = ID2P(LANG_PLAYLIST_QUEUE_COUNT);
2873 else
2874 count_str = ID2P(LANG_PLAYLIST_INSERT_COUNT);
2876 display_playlist_count(0, count_str, false);
2878 context.playlist = playlist;
2879 context.position = position;
2880 context.queue = queue;
2881 context.count = 0;
2883 cpu_boost(true);
2885 result = playlist_directory_tracksearch(dirname, recurse,
2886 directory_search_callback, &context);
2888 sync_control(playlist, false);
2890 cpu_boost(false);
2892 display_playlist_count(context.count, count_str, true);
2894 if ((audio_status() & AUDIO_STATUS_PLAY) && playlist->started)
2895 audio_flush_and_reload_tracks();
2897 #ifdef HAVE_DIRCACHE
2898 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
2899 #endif
2901 return result;
2905 * Insert all tracks from specified playlist into dynamic playlist.
2907 int playlist_insert_playlist(struct playlist_info* playlist, const char *filename,
2908 int position, bool queue)
2910 int fd;
2911 int max;
2912 char *temp_ptr;
2913 const char *dir;
2914 unsigned char *count_str;
2915 char temp_buf[MAX_PATH+1];
2916 char trackname[MAX_PATH+1];
2917 int count = 0;
2918 int result = 0;
2919 bool utf8 = is_m3u8(filename);
2921 if (!playlist)
2922 playlist = &current_playlist;
2924 if (check_control(playlist) < 0)
2926 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
2927 return -1;
2930 fd = open_utf8(filename, O_RDONLY);
2931 if (fd < 0)
2933 splash(HZ*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR));
2934 return -1;
2937 /* we need the directory name for formatting purposes */
2938 dir = filename;
2940 temp_ptr = strrchr(filename+1,'/');
2941 if (temp_ptr)
2942 *temp_ptr = 0;
2943 else
2944 dir = "/";
2946 if (queue)
2947 count_str = ID2P(LANG_PLAYLIST_QUEUE_COUNT);
2948 else
2949 count_str = ID2P(LANG_PLAYLIST_INSERT_COUNT);
2951 display_playlist_count(count, count_str, false);
2953 if (position == PLAYLIST_REPLACE)
2955 if (playlist_remove_all_tracks(playlist) == 0)
2956 position = PLAYLIST_INSERT_LAST;
2957 else return -1;
2960 cpu_boost(true);
2962 while ((max = read_line(fd, temp_buf, sizeof(temp_buf))) > 0)
2964 /* user abort */
2965 if (action_userabort(TIMEOUT_NOBLOCK))
2966 break;
2968 if (temp_buf[0] != '#' && temp_buf[0] != '\0')
2970 int insert_pos;
2972 if (!utf8)
2974 /* Use trackname as a temporay buffer. Note that trackname must
2975 * be as large as temp_buf.
2977 max = convert_m3u(temp_buf, max, sizeof(temp_buf), trackname);
2980 /* we need to format so that relative paths are correctly
2981 handled */
2982 if (format_track_path(trackname, temp_buf, sizeof(trackname), max,
2983 dir) < 0)
2985 result = -1;
2986 break;
2989 insert_pos = add_track_to_playlist(playlist, trackname, position,
2990 queue, -1);
2992 if (insert_pos < 0)
2994 result = -1;
2995 break;
2998 /* Make sure tracks are inserted in correct order if user
2999 requests INSERT_FIRST */
3000 if (position == PLAYLIST_INSERT_FIRST || position >= 0)
3001 position = insert_pos + 1;
3003 count++;
3005 if ((count%PLAYLIST_DISPLAY_COUNT) == 0)
3007 display_playlist_count(count, count_str, false);
3009 if (count == PLAYLIST_DISPLAY_COUNT &&
3010 (audio_status() & AUDIO_STATUS_PLAY) &&
3011 playlist->started)
3012 audio_flush_and_reload_tracks();
3016 /* let the other threads work */
3017 yield();
3020 close(fd);
3022 if (temp_ptr)
3023 *temp_ptr = '/';
3025 sync_control(playlist, false);
3027 cpu_boost(false);
3029 display_playlist_count(count, count_str, true);
3031 if ((audio_status() & AUDIO_STATUS_PLAY) && playlist->started)
3032 audio_flush_and_reload_tracks();
3034 #ifdef HAVE_DIRCACHE
3035 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
3036 #endif
3038 return result;
3042 * Delete track at specified index. If index is PLAYLIST_DELETE_CURRENT then
3043 * we want to delete the current playing track.
3045 int playlist_delete(struct playlist_info* playlist, int index)
3047 int result = 0;
3049 if (!playlist)
3050 playlist = &current_playlist;
3052 if (check_control(playlist) < 0)
3054 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
3055 return -1;
3058 if (index == PLAYLIST_DELETE_CURRENT)
3059 index = playlist->index;
3061 result = remove_track_from_playlist(playlist, index, true);
3063 if (result != -1 && (audio_status() & AUDIO_STATUS_PLAY) &&
3064 playlist->started)
3065 audio_flush_and_reload_tracks();
3067 return result;
3071 * Move track at index to new_index. Tracks between the two are shifted
3072 * appropriately. Returns 0 on success and -1 on failure.
3074 int playlist_move(struct playlist_info* playlist, int index, int new_index)
3076 int result;
3077 int seek;
3078 bool control_file;
3079 bool queue;
3080 bool current = false;
3081 int r;
3082 char filename[MAX_PATH];
3084 if (!playlist)
3085 playlist = &current_playlist;
3087 if (check_control(playlist) < 0)
3089 splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR));
3090 return -1;
3093 if (index == new_index)
3094 return -1;
3096 if (index == playlist->index)
3097 /* Moving the current track */
3098 current = true;
3100 control_file = playlist->indices[index] & PLAYLIST_INSERT_TYPE_MASK;
3101 queue = playlist->indices[index] & PLAYLIST_QUEUE_MASK;
3102 seek = playlist->indices[index] & PLAYLIST_SEEK_MASK;
3104 if (get_filename(playlist, index, seek, control_file, filename,
3105 sizeof(filename)) < 0)
3106 return -1;
3108 /* We want to insert the track at the position that was specified by
3109 new_index. This may be different then new_index because of the
3110 shifting that will occur after the delete.
3111 We calculate this before we do the remove as it depends on the
3112 size of the playlist before the track removal */
3113 r = rotate_index(playlist, new_index);
3115 /* Delete track from original position */
3116 result = remove_track_from_playlist(playlist, index, true);
3118 if (result != -1)
3120 if (r == 0)
3121 /* First index */
3122 new_index = PLAYLIST_PREPEND;
3123 else if (r == playlist->amount)
3124 /* Append */
3125 new_index = PLAYLIST_INSERT_LAST;
3126 else
3127 /* Calculate index of desired position */
3128 new_index = (r+playlist->first_index)%playlist->amount;
3130 result = add_track_to_playlist(playlist, filename, new_index, queue,
3131 -1);
3133 if (result != -1)
3135 if (current)
3137 /* Moved the current track */
3138 switch (new_index)
3140 case PLAYLIST_PREPEND:
3141 playlist->index = playlist->first_index;
3142 break;
3143 case PLAYLIST_INSERT_LAST:
3144 playlist->index = playlist->first_index - 1;
3145 if (playlist->index < 0)
3146 playlist->index += playlist->amount;
3147 break;
3148 default:
3149 playlist->index = new_index;
3150 break;
3154 if ((audio_status() & AUDIO_STATUS_PLAY) && playlist->started)
3155 audio_flush_and_reload_tracks();
3159 #ifdef HAVE_DIRCACHE
3160 queue_post(&playlist_queue, PLAYLIST_LOAD_POINTERS, 0);
3161 #endif
3163 return result;
3166 /* shuffle currently playing playlist */
3167 int playlist_randomise(struct playlist_info* playlist, unsigned int seed,
3168 bool start_current)
3170 int result;
3172 if (!playlist)
3173 playlist = &current_playlist;
3175 check_control(playlist);
3177 result = randomise_playlist(playlist, seed, start_current, true);
3179 if (result != -1 && (audio_status() & AUDIO_STATUS_PLAY) &&
3180 playlist->started)
3181 audio_flush_and_reload_tracks();
3183 return result;
3186 /* sort currently playing playlist */
3187 int playlist_sort(struct playlist_info* playlist, bool start_current)
3189 int result;
3191 if (!playlist)
3192 playlist = &current_playlist;
3194 check_control(playlist);
3196 result = sort_playlist(playlist, start_current, true);
3198 if (result != -1 && (audio_status() & AUDIO_STATUS_PLAY) &&
3199 playlist->started)
3200 audio_flush_and_reload_tracks();
3202 return result;
3205 /* returns true if playlist has been modified */
3206 bool playlist_modified(const struct playlist_info* playlist)
3208 if (!playlist)
3209 playlist = &current_playlist;
3211 if (playlist->shuffle_modified ||
3212 playlist->deleted ||
3213 playlist->num_inserted_tracks > 0)
3214 return true;
3216 return false;
3219 /* returns index of first track in playlist */
3220 int playlist_get_first_index(const struct playlist_info* playlist)
3222 if (!playlist)
3223 playlist = &current_playlist;
3225 return playlist->first_index;
3228 /* returns shuffle seed of playlist */
3229 int playlist_get_seed(const struct playlist_info* playlist)
3231 if (!playlist)
3232 playlist = &current_playlist;
3234 return playlist->seed;
3237 /* returns number of tracks in playlist (includes queued/inserted tracks) */
3238 int playlist_amount_ex(const struct playlist_info* playlist)
3240 if (!playlist)
3241 playlist = &current_playlist;
3243 return playlist->amount;
3246 /* returns full path of playlist (minus extension) */
3247 char *playlist_name(const struct playlist_info* playlist, char *buf,
3248 int buf_size)
3250 char *sep;
3252 if (!playlist)
3253 playlist = &current_playlist;
3255 strlcpy(buf, playlist->filename+playlist->dirlen, buf_size);
3257 if (!buf[0])
3258 return NULL;
3260 /* Remove extension */
3261 sep = strrchr(buf, '.');
3262 if (sep)
3263 *sep = 0;
3265 return buf;
3268 /* returns the playlist filename */
3269 char *playlist_get_name(const struct playlist_info* playlist, char *buf,
3270 int buf_size)
3272 if (!playlist)
3273 playlist = &current_playlist;
3275 strlcpy(buf, playlist->filename, buf_size);
3277 if (!buf[0])
3278 return NULL;
3280 return buf;
3283 /* Fills info structure with information about track at specified index.
3284 Returns 0 on success and -1 on failure */
3285 int playlist_get_track_info(struct playlist_info* playlist, int index,
3286 struct playlist_track_info* info)
3288 int seek;
3289 bool control_file;
3291 if (!playlist)
3292 playlist = &current_playlist;
3294 if (index < 0 || index >= playlist->amount)
3295 return -1;
3297 control_file = playlist->indices[index] & PLAYLIST_INSERT_TYPE_MASK;
3298 seek = playlist->indices[index] & PLAYLIST_SEEK_MASK;
3300 if (get_filename(playlist, index, seek, control_file, info->filename,
3301 sizeof(info->filename)) < 0)
3302 return -1;
3304 info->attr = 0;
3306 if (control_file)
3308 if (playlist->indices[index] & PLAYLIST_QUEUE_MASK)
3309 info->attr |= PLAYLIST_ATTR_QUEUED;
3310 else
3311 info->attr |= PLAYLIST_ATTR_INSERTED;
3315 if (playlist->indices[index] & PLAYLIST_SKIPPED)
3316 info->attr |= PLAYLIST_ATTR_SKIPPED;
3318 info->index = index;
3319 info->display_index = rotate_index(playlist, index) + 1;
3321 return 0;
3324 /* save the current dynamic playlist to specified file */
3325 int playlist_save(struct playlist_info* playlist, char *filename)
3327 int fd;
3328 int i, index;
3329 int count = 0;
3330 char path[MAX_PATH+1];
3331 char tmp_buf[MAX_PATH+1];
3332 int result = 0;
3333 bool overwrite_current = false;
3334 int* index_buf = NULL;
3336 if (!playlist)
3337 playlist = &current_playlist;
3339 if (playlist->amount <= 0)
3340 return -1;
3342 /* use current working directory as base for pathname */
3343 if (format_track_path(path, filename, sizeof(tmp_buf),
3344 strlen(filename)+1, getcwd(NULL, -1)) < 0)
3345 return -1;
3347 if (!strncmp(playlist->filename, path, strlen(path)))
3349 /* Attempting to overwrite current playlist file.*/
3351 if (playlist->buffer_size < (int)(playlist->amount * sizeof(int)))
3353 /* not enough buffer space to store updated indices */
3354 splash(HZ*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR));
3355 return -1;
3358 /* in_ram buffer is unused for m3u files so we'll use for storing
3359 updated indices */
3360 index_buf = (int*)playlist->buffer;
3362 /* use temporary pathname */
3363 snprintf(path, sizeof(path), "%s_temp", playlist->filename);
3364 overwrite_current = true;
3367 if (is_m3u8(path))
3369 fd = open_utf8(path, O_CREAT|O_WRONLY|O_TRUNC);
3371 else
3373 /* some applications require a BOM to read the file properly */
3374 fd = open(path, O_CREAT|O_WRONLY|O_TRUNC, 0666);
3376 if (fd < 0)
3378 splash(HZ*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR));
3379 return -1;
3382 display_playlist_count(count, ID2P(LANG_PLAYLIST_SAVE_COUNT), false);
3384 cpu_boost(true);
3386 index = playlist->first_index;
3387 for (i=0; i<playlist->amount; i++)
3389 bool control_file;
3390 bool queue;
3391 int seek;
3393 /* user abort */
3394 if (action_userabort(TIMEOUT_NOBLOCK))
3396 result = -1;
3397 break;
3400 control_file = playlist->indices[index] & PLAYLIST_INSERT_TYPE_MASK;
3401 queue = playlist->indices[index] & PLAYLIST_QUEUE_MASK;
3402 seek = playlist->indices[index] & PLAYLIST_SEEK_MASK;
3404 /* Don't save queued files */
3405 if (!queue)
3407 if (get_filename(playlist, index, seek, control_file, tmp_buf,
3408 MAX_PATH+1) < 0)
3410 result = -1;
3411 break;
3414 if (overwrite_current)
3415 index_buf[count] = lseek(fd, 0, SEEK_CUR);
3417 if (fdprintf(fd, "%s\n", tmp_buf) < 0)
3419 splash(HZ*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR));
3420 result = -1;
3421 break;
3424 count++;
3426 if ((count % PLAYLIST_DISPLAY_COUNT) == 0)
3427 display_playlist_count(count, ID2P(LANG_PLAYLIST_SAVE_COUNT),
3428 false);
3430 yield();
3433 index = (index+1)%playlist->amount;
3436 display_playlist_count(count, ID2P(LANG_PLAYLIST_SAVE_COUNT), true);
3438 close(fd);
3440 if (overwrite_current && result >= 0)
3442 result = -1;
3444 mutex_lock(&playlist->control_mutex);
3446 /* Replace the current playlist with the new one and update indices */
3447 close(playlist->fd);
3448 if (remove(playlist->filename) >= 0)
3450 if (rename(path, playlist->filename) >= 0)
3452 playlist->fd = open_utf8(playlist->filename, O_RDONLY);
3453 if (playlist->fd >= 0)
3455 index = playlist->first_index;
3456 for (i=0, count=0; i<playlist->amount; i++)
3458 if (!(playlist->indices[index] & PLAYLIST_QUEUE_MASK))
3460 playlist->indices[index] = index_buf[count];
3461 count++;
3463 index = (index+1)%playlist->amount;
3466 /* we need to recreate control because inserted tracks are
3467 now part of the playlist and shuffle has been
3468 invalidated */
3469 result = recreate_control(playlist);
3474 mutex_unlock(&playlist->control_mutex);
3478 cpu_boost(false);
3480 return result;
3484 * Search specified directory for tracks and notify via callback. May be
3485 * called recursively.
3487 int playlist_directory_tracksearch(const char* dirname, bool recurse,
3488 int (*callback)(char*, void*),
3489 void* context)
3491 char buf[MAX_PATH+1];
3492 int result = 0;
3493 int num_files = 0;
3494 int i;
3495 struct entry *files;
3496 struct tree_context* tc = tree_get_context();
3497 int old_dirfilter = *(tc->dirfilter);
3499 if (!callback)
3500 return -1;
3502 /* use the tree browser dircache to load files */
3503 *(tc->dirfilter) = SHOW_ALL;
3505 if (ft_load(tc, dirname) < 0)
3507 splash(HZ*2, ID2P(LANG_PLAYLIST_DIRECTORY_ACCESS_ERROR));
3508 *(tc->dirfilter) = old_dirfilter;
3509 return -1;
3512 files = (struct entry*) tc->dircache;
3513 num_files = tc->filesindir;
3515 /* we've overwritten the dircache so tree browser will need to be
3516 reloaded */
3517 reload_directory();
3519 for (i=0; i<num_files; i++)
3521 /* user abort */
3522 if (action_userabort(TIMEOUT_NOBLOCK))
3524 result = -1;
3525 break;
3528 if (files[i].attr & ATTR_DIRECTORY)
3530 if (recurse)
3532 /* recursively add directories */
3533 snprintf(buf, sizeof(buf), "%s/%s",
3534 dirname[1]? dirname: "", files[i].name);
3535 result = playlist_directory_tracksearch(buf, recurse,
3536 callback, context);
3537 if (result < 0)
3538 break;
3540 /* we now need to reload our current directory */
3541 if(ft_load(tc, dirname) < 0)
3543 result = -1;
3544 break;
3547 files = (struct entry*) tc->dircache;
3548 num_files = tc->filesindir;
3549 if (!num_files)
3551 result = -1;
3552 break;
3555 else
3556 continue;
3558 else if ((files[i].attr & FILE_ATTR_MASK) == FILE_ATTR_AUDIO)
3560 snprintf(buf, sizeof(buf), "%s/%s",
3561 dirname[1]? dirname: "", files[i].name);
3563 if (callback(buf, context) != 0)
3565 result = -1;
3566 break;
3569 /* let the other threads work */
3570 yield();
3574 /* restore dirfilter */
3575 *(tc->dirfilter) = old_dirfilter;
3577 return result;