1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 Daniel Stenberg
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 ****************************************************************************/
24 #include "string-extra.h"
26 #include "applimits.h"
38 #include "skin_engine/skin_engine.h"
49 #include "core_alloc.h"
53 #include "filetypes.h"
55 #include "filefuncs.h"
59 #include "recorder/recording.h"
67 #include "eeprom_settings.h"
68 #include "playlist_catalog.h"
73 #include "buttonbar.h"
74 #include "quickscreen.h"
75 #include "appevents.h"
77 #include "root_menu.h"
79 static const struct filetype
*filetypes
;
80 static int filetypes_count
;
82 struct gui_synclist tree_lists
;
84 /* I put it here because other files doesn't use it yet,
85 * but should be elsewhere since it will be used mostly everywhere */
87 static struct gui_buttonbar tree_buttonbar
;
89 static struct tree_context tc
;
91 char lastfile
[MAX_PATH
];
92 static char lastdir
[MAX_PATH
];
94 static int lasttable
, lastextra
, lastfirstpos
;
97 static bool reload_dir
= false;
99 static bool start_wps
= false;
100 static int curr_context
= false;/* id3db or tree*/
102 static int dirbrowse(void);
103 static int ft_play_dirname(char* name
);
104 static void ft_play_filename(char *dir
, char *file
);
105 static void say_filetype(int attr
);
107 struct entry
* tree_get_entries(struct tree_context
*t
)
109 return core_get_data(t
->cache
.entries_handle
);
112 struct entry
* tree_get_entry_at(struct tree_context
*t
, int index
)
114 struct entry
* entries
= tree_get_entries(t
);
115 return &entries
[index
];
119 static const char* tree_get_filename(int selected_item
, void *data
,
120 char *buffer
, size_t buffer_len
)
122 struct tree_context
* local_tc
=(struct tree_context
*)data
;
125 bool stripit
= false;
127 bool id3db
= *(local_tc
->dirfilter
) == SHOW_ID3DB
;
131 return tagtree_get_entry_name(&tc
, selected_item
, buffer
, buffer_len
);
136 struct entry
* e
= tree_get_entry_at(local_tc
, selected_item
);
141 if(!(attr
& ATTR_DIRECTORY
))
143 switch(global_settings
.show_filename_ext
)
146 /* show file extension: off */
150 /* show file extension: on */
153 /* show file extension: only unknown types */
154 stripit
= filetype_supported(attr
);
158 /* show file extension: only when viewing all */
159 stripit
= (*(local_tc
->dirfilter
) != SHOW_ID3DB
) &&
160 (*(local_tc
->dirfilter
) != SHOW_ALL
);
167 return(strip_extension(buffer
, buffer_len
, name
));
172 #ifdef HAVE_LCD_COLOR
173 static int tree_get_filecolor(int selected_item
, void * data
)
175 if (*tc
.dirfilter
== SHOW_ID3DB
)
177 struct tree_context
* local_tc
=(struct tree_context
*)data
;
178 struct entry
* e
= tree_get_entry_at(local_tc
, selected_item
);
179 return filetype_get_color(e
->name
, e
->attr
);
183 static enum themable_icons
tree_get_fileicon(int selected_item
, void * data
)
185 struct tree_context
* local_tc
=(struct tree_context
*)data
;
187 bool id3db
= *(local_tc
->dirfilter
) == SHOW_ID3DB
;
189 return tagtree_get_icon(&tc
);
194 struct entry
* e
= tree_get_entry_at(local_tc
, selected_item
);
195 return filetype_get_icon(e
->attr
);
199 static int tree_voice_cb(int selected_item
, void * data
)
201 struct tree_context
* local_tc
=(struct tree_context
*)data
;
205 bool id3db
= *(local_tc
->dirfilter
) == SHOW_ID3DB
;
206 char buf
[AVERAGE_FILENAME_LENGTH
*2];
210 attr
= tagtree_get_attr(local_tc
);
211 name
= tagtree_get_entry_name(local_tc
, selected_item
, buf
, sizeof(buf
));
216 struct entry
* e
= tree_get_entry_at(local_tc
, selected_item
);
220 bool is_dir
= (attr
& ATTR_DIRECTORY
);
221 bool did_clip
= false;
222 /* First the .talk clip case */
225 if(global_settings
.talk_dir_clip
)
228 if(ft_play_dirname(name
) <0)
229 /* failed, not existing */
232 } else { /* it's a file */
233 if (global_settings
.talk_file_clip
&& (attr
& FILE_ATTR_THUMBNAIL
))
236 ft_play_filename(local_tc
->currdir
, name
);
241 /* say the number or spell if required or as a fallback */
242 switch (is_dir
? global_settings
.talk_dir
: global_settings
.talk_file
)
244 case 1: /* as numbers */
245 talk_id(is_dir
? VOICE_DIR
: VOICE_FILE
, false);
246 talk_number(selected_item
+1 - (is_dir
? 0 : local_tc
->dirsindir
),
248 if(global_settings
.talk_filetype
249 && !is_dir
&& *local_tc
->dirfilter
< NUM_FILTER_MODES
)
252 case 2: /* spelled */
254 if(global_settings
.talk_filetype
)
257 talk_id(VOICE_DIR
, true);
258 else if(*local_tc
->dirfilter
< NUM_FILTER_MODES
)
261 talk_spell(name
, true);
268 bool check_rockboxdir(void)
270 if(!dir_exists(ROCKBOX_DIR
))
271 { /* No need to localise this message.
272 If .rockbox is missing, it wouldn't work anyway */
274 screens
[i
].clear_display();
275 splash(HZ
*2, "No .rockbox directory");
277 screens
[i
].clear_display();
278 splash(HZ
*2, "Installation incomplete");
284 /* do this really late in the init sequence */
285 void tree_gui_init(void)
289 strcpy(tc
.currdir
, "/");
291 #ifdef HAVE_LCD_CHARCELLS
293 screens
[i
].double_height(false);
295 #ifdef HAVE_BUTTONBAR
296 gui_buttonbar_init(&tree_buttonbar
);
297 /* since archos only have one screen, no need to create more than that */
298 gui_buttonbar_set_display(&tree_buttonbar
, &(screens
[SCREEN_MAIN
]) );
300 gui_synclist_init(&tree_lists
, &tree_get_filename
, &tc
, false, 1, NULL
);
301 gui_synclist_set_voice_callback(&tree_lists
, tree_voice_cb
);
302 gui_synclist_set_icon_callback(&tree_lists
,
303 global_settings
.show_icons
?&tree_get_fileicon
:NULL
);
304 #ifdef HAVE_LCD_COLOR
305 gui_synclist_set_color_callback(&tree_lists
, &tree_get_filecolor
);
310 struct tree_context
* tree_get_context(void)
316 * Returns the position of a given file in the current directory
317 * returns -1 if not found
319 static int tree_get_file_position(char * filename
)
324 /* use lastfile to determine the selected item (default=0) */
325 for (i
=0; i
< tc
.filesindir
; i
++)
327 e
= tree_get_entry_at(&tc
, i
);
328 if (!strcasecmp(e
->name
, filename
))
331 return(-1);/* no file can match, returns undefined */
335 * Called when a new dir is loaded (for example when returning from other apps ...)
336 * also completely redraws the tree
338 static int update_dir(void)
340 bool changed
= false;
342 bool id3db
= *tc
.dirfilter
== SHOW_ID3DB
;
343 /* Checks for changes */
345 if (tc
.currtable
!= lasttable
||
346 tc
.currextra
!= lastextra
||
347 tc
.firstpos
!= lastfirstpos
||
350 if (tagtree_load(&tc
) < 0)
353 lasttable
= tc
.currtable
;
354 lastextra
= tc
.currextra
;
355 lastfirstpos
= tc
.firstpos
;
362 /* if the tc.currdir has been changed, reload it ...*/
363 if (strncmp(tc
.currdir
, lastdir
, sizeof(lastdir
)) || reload_dir
)
365 if (ft_load(&tc
, NULL
) < 0)
367 strcpy(lastdir
, tc
.currdir
);
371 /* if selected item is undefined */
372 if (tc
.selected_item
== -1)
374 /* use lastfile to determine the selected item */
375 tc
.selected_item
= tree_get_file_position(lastfile
);
377 /* If the file doesn't exists, select the first one (default) */
378 if(tc
.selected_item
< 0)
379 tc
.selected_item
= 0;
390 splash(HZ
, ID2P(LANG_SHOWDIR_BUFFER_FULL
));
396 #ifdef HAVE_LCD_BITMAP
397 if (global_settings
.show_path_in_browser
== SHOW_PATH_FULL
398 || global_settings
.show_path_in_browser
== SHOW_PATH_CURRENT
)
400 gui_synclist_set_title(&tree_lists
, tagtree_get_title(&tc
),
401 filetype_get_icon(ATTR_DIRECTORY
));
405 /* Must clear the title as the list is reused */
406 gui_synclist_set_title(&tree_lists
, NULL
, NOICON
);
413 #ifdef HAVE_LCD_BITMAP
414 if (tc
.browse
&& tc
.browse
->title
)
416 int icon
= tc
.browse
->icon
;
418 icon
= filetype_get_icon(ATTR_DIRECTORY
);
419 gui_synclist_set_title(&tree_lists
, tc
.browse
->title
, icon
);
421 else if (global_settings
.show_path_in_browser
== SHOW_PATH_FULL
)
423 gui_synclist_set_title(&tree_lists
, tc
.currdir
,
424 filetype_get_icon(ATTR_DIRECTORY
));
426 else if (global_settings
.show_path_in_browser
== SHOW_PATH_CURRENT
)
428 char *title
= strrchr(tc
.currdir
, '/') + 1;
431 /* Display "Files" for the root dir */
432 gui_synclist_set_title(&tree_lists
, str(LANG_DIR_BROWSER
),
433 filetype_get_icon(ATTR_DIRECTORY
));
436 gui_synclist_set_title(&tree_lists
, title
,
437 filetype_get_icon(ATTR_DIRECTORY
));
441 /* Must clear the title as the list is reused */
442 gui_synclist_set_title(&tree_lists
, NULL
, NOICON
);
447 gui_synclist_set_nb_items(&tree_lists
, tc
.filesindir
);
448 gui_synclist_set_icon_callback(&tree_lists
,
449 global_settings
.show_icons
?tree_get_fileicon
:NULL
);
450 if( tc
.selected_item
>= tc
.filesindir
)
451 tc
.selected_item
=tc
.filesindir
-1;
453 gui_synclist_select_item(&tree_lists
, tc
.selected_item
);
454 #ifdef HAVE_BUTTONBAR
455 if (global_settings
.buttonbar
) {
456 if (*tc
.dirfilter
< NUM_FILTER_MODES
)
457 gui_buttonbar_set(&tree_buttonbar
, str(LANG_SYSFONT_DIRBROWSE_F1
),
458 str(LANG_SYSFONT_DIRBROWSE_F2
),
459 str(LANG_SYSFONT_DIRBROWSE_F3
));
461 gui_buttonbar_set(&tree_buttonbar
, "<<<", "", "");
462 gui_buttonbar_draw(&tree_buttonbar
);
465 gui_synclist_draw(&tree_lists
);
466 gui_synclist_speak_item(&tree_lists
);
467 return tc
.filesindir
;
470 /* load tracks from specified directory to resume play */
471 void resume_directory(const char *dir
)
473 int dirfilter
= *tc
.dirfilter
;
476 bool id3db
= *tc
.dirfilter
== SHOW_ID3DB
;
478 /* make sure the dirfilter is sane. The only time it should be possible
479 * thats its not is when resume playlist is called from a plugin
484 *tc
.dirfilter
= global_settings
.dirfilter
;
485 ret
= ft_load(&tc
, dir
);
486 *tc
.dirfilter
= dirfilter
;
491 ft_build_playlist(&tc
, 0);
499 /* Returns the current working directory and also writes cwd to buf if
500 non-NULL. In case of error, returns NULL. */
501 char *getcwd(char *buf
, getcwd_size_t size
)
507 if ((getcwd_size_t
)strlcpy(buf
, tc
.currdir
, size
) < size
)
510 /* size == 0, or truncation in strlcpy */
514 /* Force a reload of the directory next time directory browser is called */
515 void reload_directory(void)
520 char* get_current_file(char* buffer
, size_t buffer_len
)
523 /* in ID3DB mode it is a bad idea to call this function */
524 /* (only happens with `follow playlist') */
525 if( *tc
.dirfilter
== SHOW_ID3DB
)
529 struct entry
* e
= tree_get_entry_at(&tc
, tc
.selected_item
);
530 if (getcwd(buffer
, buffer_len
))
534 if (buffer
[strlen(buffer
)-1] != '/')
535 strlcat(buffer
, "/", buffer_len
);
536 if (strlcat(buffer
, e
->name
, buffer_len
) >= buffer_len
)
544 /* Allow apps to change our dirfilter directly (required for sub browsers)
545 if they're suddenly going to become a file browser for example */
546 void set_dirfilter(int l_dirfilter
)
548 *tc
.dirfilter
= l_dirfilter
;
551 /* Selects a file and update tree context properly */
552 void set_current_file(const char *path
)
558 /* in ID3DB mode it is a bad idea to call this function */
559 /* (only happens with `follow playlist') */
560 if( *tc
.dirfilter
== SHOW_ID3DB
)
564 /* separate directory from filename */
565 /* gets the directory's name and put it into tc.currdir */
566 name
= strrchr(path
+1,'/');
569 strlcpy(tc
.currdir
, path
, name
- path
+ 1);
574 strcpy(tc
.currdir
, "/");
578 strcpy(lastfile
, name
);
581 /* If we changed dir we must recalculate the dirlevel
582 and adjust the selected history properly */
583 if (strncmp(tc
.currdir
,lastdir
,sizeof(lastdir
)))
586 tc
.selected_item_history
[tc
.dirlevel
] = -1;
588 /* use '/' to calculate dirlevel */
589 for (i
= 1; path
[i
] != '\0'; i
++)
594 tc
.selected_item_history
[tc
.dirlevel
] = -1;
598 if (ft_load(&tc
, NULL
) >= 0)
600 tc
.selected_item
= tree_get_file_position(lastfile
);
605 /* main loop, handles key events */
606 static int dirbrowse(void)
611 #ifdef HAVE_LCD_BITMAP
614 bool reload_root
= false;
615 int lastfilter
= *tc
.dirfilter
;
616 bool lastsortcase
= global_settings
.sort_case
;
617 bool exit_func
= false;
619 char* currdir
= tc
.currdir
; /* just a shortcut */
621 bool id3db
= *tc
.dirfilter
== SHOW_ID3DB
;
624 curr_context
=CONTEXT_ID3DB
;
627 curr_context
=CONTEXT_TREE
;
628 if (tc
.selected_item
< 0)
629 tc
.selected_item
= 0;
638 numentries
= update_dir();
640 if (numentries
== -1)
641 return GO_TO_PREVIOUS
; /* currdir is not a directory */
643 if (*tc
.dirfilter
> NUM_FILTER_MODES
&& numentries
==0)
645 splash(HZ
*2, ID2P(LANG_NO_FILES
));
646 return GO_TO_PREVIOUS
; /* No files found for rockbox_browse() */
649 gui_synclist_draw(&tree_lists
);
651 bool restore
= false;
653 tc
.dirlevel
= 0; /* shouldnt be needed.. this code needs work! */
655 #if CONFIG_CODEC == SWCODEC
656 keyclick_set_callback(gui_synclist_keyclick_callback
, &tree_lists
);
658 button
= get_action(CONTEXT_TREE
,
659 list_do_action_timeout(&tree_lists
, HZ
/2));
660 #ifdef HAVE_LCD_BITMAP
663 gui_synclist_do_button(&tree_lists
, &button
,LIST_WRAP_UNLESS_HELD
);
664 tc
.selected_item
= gui_synclist_get_sel_pos(&tree_lists
);
667 /* nothing to do if no files to display */
668 if ( numentries
== 0 )
671 short attr
= tree_get_entry_at(&tc
, tc
.selected_item
)->attr
;
672 if ((tc
.browse
->flags
& BROWSE_SELECTONLY
) &&
673 !(attr
& ATTR_DIRECTORY
))
675 tc
.browse
->flags
|= BROWSE_SELECTED
;
676 get_current_file(tc
.browse
->buf
, tc
.browse
->bufsize
);
677 return GO_TO_PREVIOUS
;
681 switch (id3db
?tagtree_enter(&tc
):ft_enter(&tc
))
683 switch (ft_enter(&tc
))
686 case GO_TO_FILEBROWSER
: reload_dir
= true; break;
693 case GO_TO_ROOT
: exit_func
= true; break;
699 case ACTION_STD_CANCEL
:
700 if (*tc
.dirfilter
> NUM_FILTER_MODES
&& tc
.dirlevel
< 1) {
704 if ((*tc
.dirfilter
== SHOW_ID3DB
&& tc
.dirlevel
== 0) ||
705 ((*tc
.dirfilter
!= SHOW_ID3DB
&& !strcmp(currdir
,"/"))))
707 #ifdef HAVE_LCD_BITMAP /* charcell doesnt have ACTION_TREE_PGLEFT so this isnt needed */
708 if (oldbutton
== ACTION_TREE_PGLEFT
)
720 if (ft_exit(&tc
) == 3)
726 case ACTION_TREE_STOP
:
727 if (list_stop_handler())
731 case ACTION_STD_MENU
:
735 #ifdef HAVE_RECORDING
737 return GO_TO_RECSCREEN
;
740 case ACTION_TREE_WPS
:
741 return GO_TO_PREVIOUS_MUSIC
;
743 #ifdef HAVE_QUICKSCREEN
744 case ACTION_STD_QUICKSCREEN
:
745 /* don't enter f2 from plugin browser */
746 if (*tc
.dirfilter
< NUM_FILTER_MODES
)
748 if (quick_screen_quick(button
))
756 /* don't enter f3 from plugin browser */
757 if (*tc
.dirfilter
< NUM_FILTER_MODES
)
759 if (quick_screen_f3(ACTION_F3
))
767 case ACTION_TREE_HOTKEY
:
768 if (!global_settings
.hotkey_tree
)
772 case ACTION_STD_CONTEXT
:
774 bool hotkey
= button
== ACTION_TREE_HOTKEY
;
778 if (tc
.browse
->flags
& BROWSE_NO_CONTEXT_MENU
)
782 onplay_result
= onplay(NULL
, 0, curr_context
, hotkey
);
787 if (tagtree_get_attr(&tc
) == FILE_ATTR_AUDIO
)
789 attr
= FILE_ATTR_AUDIO
;
790 tagtree_get_filename(&tc
, buf
, sizeof(buf
));
793 attr
= ATTR_DIRECTORY
;
798 struct entry
*entry
= tree_get_entry_at(&tc
, tc
.selected_item
);
801 if (currdir
[1]) /* Not in / */
802 snprintf(buf
, sizeof buf
, "%s/%s",
803 currdir
, entry
->name
);
805 snprintf(buf
, sizeof buf
, "/%s", entry
->name
);
807 onplay_result
= onplay(buf
, attr
, curr_context
, hotkey
);
809 switch (onplay_result
)
811 case ONPLAY_MAINMENU
:
818 case ONPLAY_RELOAD_DIR
:
822 case ONPLAY_START_PLAY
:
835 /* The 'dir no longer valid' situation will be caught later
836 * by checking the showdir() result. */
841 if (default_event_handler(button
) == SYS_USB_CONNECTED
)
843 if(*tc
.dirfilter
> NUM_FILTER_MODES
)
844 /* leave sub-browsers after usb, doing otherwise
845 might be confusing to the user */
854 if (button
&& !IS_SYSEVENT(button
))
861 /* do we need to rescan dir? */
862 if (reload_dir
|| reload_root
||
863 lastfilter
!= *tc
.dirfilter
||
864 lastsortcase
!= global_settings
.sort_case
)
867 strcpy(currdir
, "/");
880 gui_synclist_select_item(&tree_lists
, 0);
881 gui_synclist_draw(&tree_lists
);
882 tc
.selected_item
= 0;
886 lastfilter
= *tc
.dirfilter
;
887 lastsortcase
= global_settings
.sort_case
;
892 return GO_TO_PREVIOUS
;
894 if (restore
|| reload_dir
) {
895 /* restore display */
896 numentries
= update_dir();
898 if (currdir
[1] && (numentries
< 0))
899 { /* not in root and reload failed */
900 reload_root
= true; /* try root */
908 bool create_playlist(void)
910 char filename
[MAX_PATH
];
913 snprintf(filename
, sizeof filename
, "%s.m3u8", tc
.currdir
);
915 snprintf(filename
, sizeof filename
, "%s/all.m3u8",
916 catalog_get_directory());
919 if (kbd_input(filename
, MAX_PATH
))
921 splashf(0, "%s %s", str(LANG_CREATING
), filename
);
924 catalog_add_to_a_playlist(tc
.currdir
, ATTR_DIRECTORY
, true, filename
);
930 void browse_context_init(struct browse_context
*browse
,
931 int dirfilter
, unsigned flags
,
932 char *title
, enum themable_icons icon
,
933 const char *root
, const char *selected
)
935 browse
->dirfilter
= dirfilter
;
936 browse
->flags
= flags
;
937 browse
->callback_show_item
= NULL
;
938 browse
->title
= title
;
941 browse
->selected
= selected
;
946 #define NUM_TC_BACKUP 3
947 static struct tree_context backups
[NUM_TC_BACKUP
];
948 /* do not make backup if it is not recursive call */
949 static int backup_count
= -1;
950 int rockbox_browse(struct browse_context
*browse
)
952 static char current
[MAX_PATH
];
954 int dirfilter
= browse
->dirfilter
;
956 if (backup_count
>= NUM_TC_BACKUP
)
957 return GO_TO_PREVIOUS
;
958 if (backup_count
>= 0)
959 backups
[backup_count
] = tc
;
962 tc
.dirfilter
= &dirfilter
;
963 tc
.sort_dir
= global_settings
.sort_dir
;
966 if (*tc
.dirfilter
>= NUM_FILTER_MODES
)
971 tc
.selected_item
= 0;
973 strlcpy(tc
.currdir
, browse
->root
, sizeof(tc
.currdir
));
975 last_context
= curr_context
;
977 if (browse
->selected
)
979 snprintf(current
, sizeof(current
), "%s/%s",
980 browse
->root
, browse
->selected
);
981 set_current_file(current
);
982 /* set_current_file changes dirlevel, change it back */
986 ret_val
= dirbrowse();
987 curr_context
= last_context
;
991 if (dirfilter
!= SHOW_ID3DB
)
992 tc
.dirfilter
= &global_settings
.dirfilter
;
994 strcpy(current
, browse
->root
);
995 set_current_file(current
);
996 if (browse
->flags
&BROWSE_RUNFILE
)
997 ret_val
= ft_enter(&tc
);
999 ret_val
= dirbrowse();
1002 if (backup_count
>= 0)
1003 tc
= backups
[backup_count
];
1007 static int move_callback(int handle
, void* current
, void* new)
1009 struct tree_cache
* cache
= &tc
.cache
;
1010 if (cache
->lock_count
> 0)
1011 return BUFLIB_CB_CANNOT_MOVE
;
1013 size_t diff
= new - current
;
1014 /* FIX_PTR makes sure to not accidentally update static allocations */
1015 #define FIX_PTR(x) \
1016 { if ((void*)x >= current && (void*)x < (current+cache->name_buffer_size)) x+= diff; }
1018 if (handle
== cache
->name_buffer_handle
)
1019 { /* update entry structs, *even if they are struct tagentry */
1020 struct entry
*this = core_get_data(cache
->entries_handle
);
1021 struct entry
*last
= this + cache
->max_entries
;
1022 for(; this < last
; this++)
1023 FIX_PTR(this->name
);
1025 /* nothing to do if entries moved */
1026 return BUFLIB_CB_OK
;
1029 static struct buflib_callbacks ops
= {
1030 .move_callback
= move_callback
,
1031 .shrink_callback
= NULL
,
1034 void tree_mem_init(void)
1036 /* initialize tree context struct */
1037 struct tree_cache
* cache
= &tc
.cache
;
1038 memset(&tc
, 0, sizeof(tc
));
1039 tc
.dirfilter
= &global_settings
.dirfilter
;
1040 tc
.sort_dir
= global_settings
.sort_dir
;
1042 cache
->name_buffer_size
= AVERAGE_FILENAME_LENGTH
*
1043 global_settings
.max_files_in_dir
;
1044 cache
->name_buffer_handle
= core_alloc_ex("tree names",
1045 cache
->name_buffer_size
,
1048 cache
->max_entries
= global_settings
.max_files_in_dir
;
1049 cache
->entries_handle
= core_alloc_ex("tree entries",
1050 cache
->max_entries
*(sizeof(struct entry
)),
1052 tree_get_filetypes(&filetypes
, &filetypes_count
);
1055 bool bookmark_play(char *resume_file
, int index
, int offset
, int seed
,
1059 char* suffix
= strrchr(resume_file
, '.');
1060 bool started
= false;
1062 if (suffix
!= NULL
&&
1063 (!strcasecmp(suffix
, ".m3u") || !strcasecmp(suffix
, ".m3u8")))
1065 /* Playlist playback */
1067 /* check that the file exists */
1068 if(!file_exists(resume_file
))
1071 slash
= strrchr(resume_file
,'/');
1081 if (playlist_create(cp
, slash
+1) != -1)
1083 if (global_settings
.playlist_shuffle
)
1084 playlist_shuffle(seed
, -1);
1085 playlist_start(index
,offset
);
1093 /* Directory playback */
1095 if (playlist_create(resume_file
, NULL
) != -1)
1097 char filename_buf
[MAX_PATH
+ 1];
1098 const char* peek_filename
;
1099 resume_directory(resume_file
);
1100 if (global_settings
.playlist_shuffle
)
1101 playlist_shuffle(seed
, -1);
1103 /* Check if the file is at the same spot in the directory,
1104 else search for it */
1105 peek_filename
= playlist_peek(index
, filename_buf
,
1106 sizeof(filename_buf
));
1108 if (peek_filename
== NULL
)
1110 /* playlist has shrunk, search from the top */
1112 peek_filename
= playlist_peek(index
, filename_buf
,
1113 sizeof(filename_buf
));
1114 if (peek_filename
== NULL
)
1118 if (strcmp(strrchr(peek_filename
, '/') + 1, filename
))
1120 for ( i
=0; i
< playlist_amount(); i
++ )
1122 peek_filename
= playlist_peek(i
, filename_buf
,
1123 sizeof(filename_buf
));
1125 if (peek_filename
== NULL
)
1128 if (!strcmp(strrchr(peek_filename
, '/') + 1, filename
))
1131 if (i
< playlist_amount())
1136 playlist_start(index
,offset
);
1146 static void say_filetype(int attr
)
1148 /* try to find a voice ID for the extension, if known */
1150 attr
&= FILE_ATTR_MASK
; /* file type */
1151 for (j
=0; j
<filetypes_count
; j
++)
1152 if (attr
== filetypes
[j
].tree_attr
)
1154 talk_id(filetypes
[j
].voiceclip
, true);
1159 static int ft_play_dirname(char* name
)
1161 #if CONFIG_CODEC != SWCODEC
1162 if (audio_status() & AUDIO_STATUS_PLAY
)
1166 if(talk_file(tc
.currdir
, name
, dir_thumbnail_name
, NULL
,
1169 if(global_settings
.talk_filetype
)
1170 talk_id(VOICE_DIR
, true);
1177 static void ft_play_filename(char *dir
, char *file
)
1179 #if CONFIG_CODEC != SWCODEC
1180 if (audio_status() & AUDIO_STATUS_PLAY
)
1184 if (strlen(file
) >= strlen(file_thumbnail_ext
)
1185 && strcasecmp(&file
[strlen(file
) - strlen(file_thumbnail_ext
)],
1186 file_thumbnail_ext
))
1187 /* file has no .talk extension */
1188 talk_file(dir
, NULL
, file
, file_thumbnail_ext
,
1191 /* it already is a .talk file, play this directly, but prefix it. */
1192 talk_file(dir
, NULL
, file
, NULL
,
1193 TALK_IDARRAY(LANG_VOICE_DIR_HOVER
), false);
1196 /* These two functions are called by the USB and shutdown handlers */
1197 void tree_flush(void)
1199 #ifdef HAVE_TAGCACHE
1200 tagcache_shutdown();
1203 #ifdef HAVE_TC_RAMCACHE
1204 tagcache_unload_ramcache();
1207 #ifdef HAVE_DIRCACHE
1209 int old_val
= global_status
.dircache_size
;
1210 if (global_settings
.dircache
)
1212 if (!dircache_is_initializing())
1213 global_status
.dircache_size
= dircache_get_cache_size();
1214 # ifdef HAVE_EEPROM_SETTINGS
1215 if (firmware_settings
.initialized
)
1222 global_status
.dircache_size
= 0;
1224 if (old_val
!= global_status
.dircache_size
)
1230 void tree_restore(void)
1232 #ifdef HAVE_EEPROM_SETTINGS
1233 firmware_settings
.disk_clean
= false;
1236 #ifdef HAVE_TC_RAMCACHE
1237 remove(TAGCACHE_STATEFILE
);
1240 #ifdef HAVE_DIRCACHE
1241 remove(DIRCACHE_FILE
);
1242 if (global_settings
.dircache
)
1244 /* Print "Scanning disk..." to the display. */
1245 splash(0, str(LANG_SCANNING_DISK
));
1247 dircache_build(global_status
.dircache_size
);
1250 #ifdef HAVE_TAGCACHE
1251 tagcache_start_scan();