Re-add the lseek to the beginning of the file which was accidentally removed.
[kugel-rb.git] / apps / tree.c
blob86238c50d9412d167718eb4c282c526e9b54e83e
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
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 ****************************************************************************/
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <stdbool.h>
24 #include "string-extra.h"
26 #include "applimits.h"
27 #include "dir.h"
28 #include "file.h"
29 #include "lcd.h"
30 #include "font.h"
31 #include "button.h"
32 #include "kernel.h"
33 #include "usb.h"
34 #include "tree.h"
35 #include "audio.h"
36 #include "playlist.h"
37 #include "menu.h"
38 #include "skin_engine/skin_engine.h"
39 #include "settings.h"
40 #include "debug.h"
41 #include "storage.h"
42 #include "rolo.h"
43 #include "icons.h"
44 #include "lang.h"
45 #include "screens.h"
46 #include "keyboard.h"
47 #include "bookmark.h"
48 #include "onplay.h"
49 #include "buffer.h"
50 #include "power.h"
51 #include "action.h"
52 #include "talk.h"
53 #include "filetypes.h"
54 #include "misc.h"
55 #include "filefuncs.h"
56 #include "filetree.h"
57 #include "tagtree.h"
58 #ifdef HAVE_RECORDING
59 #include "recorder/recording.h"
60 #endif
61 #include "rtc.h"
62 #include "dircache.h"
63 #ifdef HAVE_TAGCACHE
64 #include "tagcache.h"
65 #endif
66 #include "yesno.h"
67 #include "eeprom_settings.h"
68 #include "playlist_catalog.h"
70 /* gui api */
71 #include "list.h"
72 #include "splash.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 */
86 #ifdef HAVE_BUTTONBAR
87 static struct gui_buttonbar tree_buttonbar;
88 #endif
89 static struct tree_context tc;
91 bool boot_changed = false;
93 char lastfile[MAX_PATH];
94 static char lastdir[MAX_PATH];
95 #ifdef HAVE_TAGCACHE
96 static int lasttable, lastextra, lastfirstpos;
97 #endif
98 static int max_files = 0;
100 static bool reload_dir = false;
102 static bool start_wps = false;
103 static int curr_context = false;/* id3db or tree*/
105 static int dirbrowse(void);
106 static int ft_play_dirname(char* name);
107 static void ft_play_filename(char *dir, char *file);
108 static void say_filetype(int attr);
110 static const char* tree_get_filename(int selected_item, void *data,
111 char *buffer, size_t buffer_len)
113 struct tree_context * local_tc=(struct tree_context *)data;
114 char *name;
115 int attr=0;
116 bool stripit = false;
117 #ifdef HAVE_TAGCACHE
118 bool id3db = *(local_tc->dirfilter) == SHOW_ID3DB;
120 if (id3db)
122 return tagtree_get_entry(&tc, selected_item)->name;
124 else
125 #endif
127 struct entry* dc = local_tc->dircache;
128 struct entry* e = &dc[selected_item];
129 name = e->name;
130 attr = e->attr;
133 if(!(attr & ATTR_DIRECTORY))
135 switch(global_settings.show_filename_ext)
137 case 0:
138 /* show file extension: off */
139 stripit = true;
140 break;
141 case 1:
142 /* show file extension: on */
143 break;
144 case 2:
145 /* show file extension: only unknown types */
146 stripit = filetype_supported(attr);
147 break;
148 case 3:
149 default:
150 /* show file extension: only when viewing all */
151 stripit = (*(local_tc->dirfilter) != SHOW_ID3DB) &&
152 (*(local_tc->dirfilter) != SHOW_ALL);
153 break;
157 if(stripit)
159 return(strip_extension(buffer, buffer_len, name));
161 return(name);
164 #ifdef HAVE_LCD_COLOR
165 static int tree_get_filecolor(int selected_item, void * data)
167 if (*tc.dirfilter == SHOW_ID3DB)
168 return -1;
169 struct tree_context * local_tc=(struct tree_context *)data;
170 struct entry* dc = local_tc->dircache;
171 struct entry* e = &dc[selected_item];
172 return filetype_get_color(e->name, e->attr);
174 #endif
176 static enum themable_icons tree_get_fileicon(int selected_item, void * data)
178 struct tree_context * local_tc=(struct tree_context *)data;
179 #ifdef HAVE_TAGCACHE
180 bool id3db = *(local_tc->dirfilter) == SHOW_ID3DB;
181 if (id3db) {
182 return tagtree_get_icon(&tc);
184 else
185 #endif
187 struct entry* dc = local_tc->dircache;
188 struct entry* e = &dc[selected_item];
189 return filetype_get_icon(e->attr);
193 static int tree_voice_cb(int selected_item, void * data)
195 struct tree_context * local_tc=(struct tree_context *)data;
196 char *name;
197 int attr=0;
198 #ifdef HAVE_TAGCACHE
199 bool id3db = *(local_tc->dirfilter) == SHOW_ID3DB;
201 if (id3db)
203 attr = tagtree_get_attr(local_tc);
204 name = tagtree_get_entry(local_tc, selected_item)->name;
206 else
207 #endif
209 struct entry* dc = local_tc->dircache;
210 struct entry* e = &dc[selected_item];
211 name = e->name;
212 attr = e->attr;
214 bool is_dir = (attr & ATTR_DIRECTORY);
215 bool did_clip = false;
216 /* First the .talk clip case */
217 if(is_dir)
219 if(global_settings.talk_dir_clip)
221 did_clip = true;
222 if(ft_play_dirname(name) <0)
223 /* failed, not existing */
224 did_clip = false;
226 } else { /* it's a file */
227 if (global_settings.talk_file_clip && (attr & FILE_ATTR_THUMBNAIL))
229 did_clip = true;
230 ft_play_filename(local_tc->currdir, name);
233 if(!did_clip)
235 /* say the number or spell if required or as a fallback */
236 switch (is_dir ? global_settings.talk_dir : global_settings.talk_file)
238 case 1: /* as numbers */
239 talk_id(is_dir ? VOICE_DIR : VOICE_FILE, false);
240 talk_number(selected_item+1 - (is_dir ? 0 : local_tc->dirsindir),
241 true);
242 if(global_settings.talk_filetype
243 && !is_dir && *local_tc->dirfilter < NUM_FILTER_MODES)
244 say_filetype(attr);
245 break;
246 case 2: /* spelled */
247 talk_shutup();
248 if(global_settings.talk_filetype)
250 if(is_dir)
251 talk_id(VOICE_DIR, true);
252 else if(*local_tc->dirfilter < NUM_FILTER_MODES)
253 say_filetype(attr);
255 talk_spell(name, true);
256 break;
259 return 0;
262 bool check_rockboxdir(void)
264 char path[MAX_PATH];
265 if(!dir_exists(get_user_file_path(ROCKBOX_DIR, 0, path, sizeof(path))))
266 { /* No need to localise this message.
267 If .rockbox is missing, it wouldn't work anyway */
268 int i;
269 FOR_NB_SCREENS(i)
270 screens[i].clear_display();
271 splash(HZ*2, "No .rockbox directory");
272 FOR_NB_SCREENS(i)
273 screens[i].clear_display();
274 splash(HZ*2, "Installation incomplete");
275 return false;
277 return true;
280 /* do this really late in the init sequence */
281 void tree_gui_init(void)
283 check_rockboxdir();
285 strcpy(tc.currdir, "/");
287 #ifdef HAVE_LCD_CHARCELLS
288 int i;
289 FOR_NB_SCREENS(i)
290 screens[i].double_height(false);
291 #endif
292 #ifdef HAVE_BUTTONBAR
293 gui_buttonbar_init(&tree_buttonbar);
294 /* since archos only have one screen, no need to create more than that */
295 gui_buttonbar_set_display(&tree_buttonbar, &(screens[SCREEN_MAIN]) );
296 #endif
297 gui_synclist_init(&tree_lists, &tree_get_filename, &tc, false, 1, NULL);
298 gui_synclist_set_voice_callback(&tree_lists, tree_voice_cb);
299 gui_synclist_set_icon_callback(&tree_lists,
300 global_settings.show_icons?&tree_get_fileicon:NULL);
301 #ifdef HAVE_LCD_COLOR
302 gui_synclist_set_color_callback(&tree_lists, &tree_get_filecolor);
303 #endif
307 /* drawer function for the GUI_EVENT_REDRAW callback */
308 void tree_drawlists(void)
310 /* band-aid to fix the bar/list redrawing properly after leaving a plugin */
311 send_event(GUI_EVENT_THEME_CHANGED, NULL);
312 /* end bandaid */
313 gui_synclist_draw(&tree_lists);
317 struct tree_context* tree_get_context(void)
319 return &tc;
323 * Returns the position of a given file in the current directory
324 * returns -1 if not found
326 static int tree_get_file_position(char * filename)
328 int i;
330 /* use lastfile to determine the selected item (default=0) */
331 for (i=0; i < tc.filesindir; i++)
333 struct entry* dc = tc.dircache;
334 struct entry* e = &dc[i];
335 if (!strcasecmp(e->name, filename))
336 return(i);
338 return(-1);/* no file can match, returns undefined */
342 * Called when a new dir is loaded (for example when returning from other apps ...)
343 * also completely redraws the tree
345 static int update_dir(void)
347 bool changed = false;
348 #ifdef HAVE_TAGCACHE
349 bool id3db = *tc.dirfilter == SHOW_ID3DB;
350 /* Checks for changes */
351 if (id3db) {
352 if (tc.currtable != lasttable ||
353 tc.currextra != lastextra ||
354 tc.firstpos != lastfirstpos ||
355 reload_dir)
357 if (tagtree_load(&tc) < 0)
358 return -1;
360 lasttable = tc.currtable;
361 lastextra = tc.currextra;
362 lastfirstpos = tc.firstpos;
363 changed = true;
366 else
367 #endif
369 /* if the tc.currdir has been changed, reload it ...*/
370 if (strncmp(tc.currdir, lastdir, sizeof(lastdir)) || reload_dir)
372 if (ft_load(&tc, NULL) < 0)
373 return -1;
374 strcpy(lastdir, tc.currdir);
375 changed = true;
378 /* if selected item is undefined */
379 if (tc.selected_item == -1)
381 /* use lastfile to determine the selected item */
382 tc.selected_item = tree_get_file_position(lastfile);
384 /* If the file doesn't exists, select the first one (default) */
385 if(tc.selected_item < 0)
386 tc.selected_item = 0;
387 changed = true;
389 if (changed)
392 #ifdef HAVE_TAGCACHE
393 !id3db &&
394 #endif
395 (tc.dirfull || tc.filesindir == global_settings.max_files_in_dir) )
397 splash(HZ, ID2P(LANG_SHOWDIR_BUFFER_FULL));
400 #ifdef HAVE_TAGCACHE
401 if (id3db)
403 #ifdef HAVE_LCD_BITMAP
404 if (global_settings.show_path_in_browser == SHOW_PATH_FULL
405 || global_settings.show_path_in_browser == SHOW_PATH_CURRENT)
407 gui_synclist_set_title(&tree_lists, tagtree_get_title(&tc),
408 filetype_get_icon(ATTR_DIRECTORY));
410 else
412 /* Must clear the title as the list is reused */
413 gui_synclist_set_title(&tree_lists, NULL, NOICON);
415 #endif
417 else
418 #endif
420 #ifdef HAVE_LCD_BITMAP
421 if (global_settings.show_path_in_browser &&
422 *(tc.dirfilter) == SHOW_PLUGINS)
424 char *title;
425 if (!strcmp(tc.currdir, PLUGIN_GAMES_DIR))
426 title = str(LANG_PLUGIN_GAMES);
427 else if (!strcmp(tc.currdir, PLUGIN_APPS_DIR))
428 title = str(LANG_PLUGIN_APPS);
429 else if (!strcmp(tc.currdir, PLUGIN_DEMOS_DIR))
430 title = str(LANG_PLUGIN_DEMOS);
431 else title = str(LANG_PLUGINS);
432 gui_synclist_set_title(&tree_lists, title, Icon_Plugin);
434 else if (global_settings.show_path_in_browser == SHOW_PATH_FULL)
436 gui_synclist_set_title(&tree_lists, tc.currdir,
437 filetype_get_icon(ATTR_DIRECTORY));
439 else if (global_settings.show_path_in_browser == SHOW_PATH_CURRENT)
441 char *title = strrchr(tc.currdir, '/') + 1;
442 if (*title == '\0')
444 /* Display "Files" for the root dir */
445 gui_synclist_set_title(&tree_lists, str(LANG_DIR_BROWSER),
446 filetype_get_icon(ATTR_DIRECTORY));
448 else
449 gui_synclist_set_title(&tree_lists, title,
450 filetype_get_icon(ATTR_DIRECTORY));
452 else
454 /* Must clear the title as the list is reused */
455 gui_synclist_set_title(&tree_lists, NULL, NOICON);
457 #endif
460 gui_synclist_set_nb_items(&tree_lists, tc.filesindir);
461 gui_synclist_set_icon_callback(&tree_lists,
462 global_settings.show_icons?tree_get_fileicon:NULL);
463 if( tc.selected_item >= tc.filesindir)
464 tc.selected_item=tc.filesindir-1;
466 gui_synclist_select_item(&tree_lists, tc.selected_item);
467 #ifdef HAVE_BUTTONBAR
468 if (global_settings.buttonbar) {
469 if (*tc.dirfilter < NUM_FILTER_MODES)
470 gui_buttonbar_set(&tree_buttonbar, str(LANG_SYSFONT_DIRBROWSE_F1),
471 str(LANG_SYSFONT_DIRBROWSE_F2),
472 str(LANG_SYSFONT_DIRBROWSE_F3));
473 else
474 gui_buttonbar_set(&tree_buttonbar, "<<<", "", "");
475 gui_buttonbar_draw(&tree_buttonbar);
477 #endif
478 gui_synclist_draw(&tree_lists);
479 gui_synclist_speak_item(&tree_lists);
480 return tc.filesindir;
483 /* load tracks from specified directory to resume play */
484 void resume_directory(const char *dir)
486 int dirfilter = *tc.dirfilter;
487 int ret;
488 #ifdef HAVE_TAGCACHE
489 bool id3db = *tc.dirfilter == SHOW_ID3DB;
490 #endif
491 /* make sure the dirfilter is sane. The only time it should be possible
492 * thats its not is when resume playlist is called from a plugin
494 #ifdef HAVE_TAGCACHE
495 if (!id3db)
496 #endif
497 *tc.dirfilter = global_settings.dirfilter;
498 ret = ft_load(&tc, dir);
499 *tc.dirfilter = dirfilter;
500 if (ret < 0)
501 return;
502 lastdir[0] = 0;
504 ft_build_playlist(&tc, 0);
506 #ifdef HAVE_TAGCACHE
507 if (id3db)
508 tagtree_load(&tc);
509 #endif
512 /* Returns the current working directory and also writes cwd to buf if
513 non-NULL. In case of error, returns NULL. */
514 char *getcwd(char *buf, getcwd_size_t size)
516 if (!buf)
517 return tc.currdir;
518 else if (size)
520 if ((getcwd_size_t)strlcpy(buf, tc.currdir, size) < size)
521 return buf;
523 /* size == 0, or truncation in strlcpy */
524 return NULL;
527 /* Force a reload of the directory next time directory browser is called */
528 void reload_directory(void)
530 reload_dir = true;
533 char* get_current_file(char* buffer, size_t buffer_len)
535 #ifdef HAVE_TAGCACHE
536 /* in ID3DB mode it is a bad idea to call this function */
537 /* (only happens with `follow playlist') */
538 if( *tc.dirfilter == SHOW_ID3DB )
539 return NULL;
540 #endif
542 struct entry* dc = tc.dircache;
543 struct entry* e = &dc[tc.selected_item];
544 if (getcwd(buffer, buffer_len))
546 if (tc.dirlength)
548 if (buffer[strlen(buffer)-1] != '/')
549 strlcat(buffer, "/", buffer_len);
550 if (strlcat(buffer, e->name, buffer_len) >= buffer_len)
551 return NULL;
553 return buffer;
555 return NULL;
558 /* Allow apps to change our dirfilter directly (required for sub browsers)
559 if they're suddenly going to become a file browser for example */
560 void set_dirfilter(int l_dirfilter)
562 *tc.dirfilter = l_dirfilter;
565 /* Selects a file and update tree context properly */
566 void set_current_file(const char *path)
568 const char *name;
569 int i;
571 #ifdef HAVE_TAGCACHE
572 /* in ID3DB mode it is a bad idea to call this function */
573 /* (only happens with `follow playlist') */
574 if( *tc.dirfilter == SHOW_ID3DB )
575 return;
576 #endif
578 /* separate directory from filename */
579 /* gets the directory's name and put it into tc.currdir */
580 name = strrchr(path+1,'/');
581 if (name)
583 strlcpy(tc.currdir, path, name - path + 1);
584 name++;
586 else
588 strcpy(tc.currdir, "/");
589 name = path+1;
592 strcpy(lastfile, name);
595 /* If we changed dir we must recalculate the dirlevel
596 and adjust the selected history properly */
597 if (strncmp(tc.currdir,lastdir,sizeof(lastdir)))
599 tc.dirlevel = 0;
600 tc.selected_item_history[tc.dirlevel] = -1;
602 /* use '/' to calculate dirlevel */
603 for (i = 1; path[i] != '\0'; i++)
605 if (path[i] == '/')
607 tc.dirlevel++;
608 tc.selected_item_history[tc.dirlevel] = -1;
612 if (ft_load(&tc, NULL) >= 0)
614 tc.selected_item = tree_get_file_position(lastfile);
619 /* main loop, handles key events */
620 static int dirbrowse()
622 int numentries=0;
623 char buf[MAX_PATH];
624 int button, oldbutton;
625 bool reload_root = false;
626 int lastfilter = *tc.dirfilter;
627 bool lastsortcase = global_settings.sort_case;
628 bool exit_func = false;
630 char* currdir = tc.currdir; /* just a shortcut */
631 #ifdef HAVE_TAGCACHE
632 bool id3db = *tc.dirfilter == SHOW_ID3DB;
634 if (id3db)
635 curr_context=CONTEXT_ID3DB;
636 else
637 #endif
638 curr_context=CONTEXT_TREE;
639 if (tc.selected_item < 0)
640 tc.selected_item = 0;
641 #ifdef HAVE_TAGCACHE
642 tc.firstpos = 0;
643 lasttable = -1;
644 lastextra = -1;
645 lastfirstpos = 0;
646 #endif
648 start_wps = false;
649 numentries = update_dir();
650 reload_dir = false;
651 if (numentries == -1)
652 return GO_TO_PREVIOUS; /* currdir is not a directory */
654 if (*tc.dirfilter > NUM_FILTER_MODES && numentries==0)
656 splash(HZ*2, ID2P(LANG_NO_FILES));
657 return GO_TO_PREVIOUS; /* No files found for rockbox_browser() */
660 gui_synclist_draw(&tree_lists);
661 while(1) {
662 struct entry *dircache = tc.dircache;
663 bool restore = false;
664 if (tc.dirlevel < 0)
665 tc.dirlevel = 0; /* shouldnt be needed.. this code needs work! */
666 #ifdef BOOTFILE
667 if (boot_changed) {
668 static const char *lines[]={ID2P(LANG_BOOT_CHANGED), ID2P(LANG_REBOOT_NOW)};
669 static const struct text_message message={lines, 2};
670 if(gui_syncyesno_run(&message, NULL, NULL)==YESNO_YES)
671 rolo_load("/" BOOTFILE);
672 restore = true;
673 boot_changed = false;
675 #endif
676 button = get_action(CONTEXT_TREE,
677 list_do_action_timeout(&tree_lists, HZ/2));
678 oldbutton = button;
679 gui_synclist_do_button(&tree_lists, &button,LIST_WRAP_UNLESS_HELD);
680 tc.selected_item = gui_synclist_get_sel_pos(&tree_lists);
681 switch ( button ) {
682 case ACTION_STD_OK:
683 /* nothing to do if no files to display */
684 if ( numentries == 0 )
685 break;
687 #ifdef HAVE_TAGCACHE
688 switch (id3db?tagtree_enter(&tc):ft_enter(&tc))
689 #else
690 switch (ft_enter(&tc))
691 #endif
693 case GO_TO_FILEBROWSER: reload_dir = true; break;
694 case GO_TO_WPS:
695 return GO_TO_WPS;
696 #if CONFIG_TUNER
697 case GO_TO_FM:
698 return GO_TO_FM;
699 #endif
700 case GO_TO_ROOT: exit_func = true; break;
701 default: break;
703 restore = true;
704 break;
706 case ACTION_STD_CANCEL:
707 if (*tc.dirfilter > NUM_FILTER_MODES && tc.dirlevel < 1) {
708 exit_func = true;
709 break;
711 if ((*tc.dirfilter == SHOW_ID3DB && tc.dirlevel == 0) ||
712 ((*tc.dirfilter != SHOW_ID3DB && !strcmp(currdir,"/"))))
714 #ifdef HAVE_LCD_BITMAP /* charcell doesnt have ACTION_TREE_PGLEFT so this isnt needed */
715 if (oldbutton == ACTION_TREE_PGLEFT)
716 break;
717 else
718 #endif
719 return GO_TO_ROOT;
722 #ifdef HAVE_TAGCACHE
723 if (id3db)
724 tagtree_exit(&tc);
725 else
726 #endif
727 if (ft_exit(&tc) == 3)
728 exit_func = true;
730 restore = true;
731 break;
733 case ACTION_TREE_STOP:
734 if (list_stop_handler())
735 restore = true;
736 break;
738 case ACTION_STD_MENU:
739 return GO_TO_ROOT;
740 break;
742 #ifdef HAVE_RECORDING
743 case ACTION_STD_REC:
744 return GO_TO_RECSCREEN;
745 #endif
747 case ACTION_TREE_WPS:
748 return GO_TO_PREVIOUS_MUSIC;
749 break;
750 #ifdef HAVE_QUICKSCREEN
751 case ACTION_STD_QUICKSCREEN:
752 /* don't enter f2 from plugin browser */
753 if (*tc.dirfilter < NUM_FILTER_MODES)
755 if (quick_screen_quick(button))
756 reload_dir = true;
757 restore = true;
759 break;
760 #endif
761 #ifdef BUTTON_F3
762 case ACTION_F3:
763 /* don't enter f3 from plugin browser */
764 if (*tc.dirfilter < NUM_FILTER_MODES)
766 if (quick_screen_f3(ACTION_F3))
767 reload_dir = true;
768 restore = true;
770 break;
771 #endif
773 #ifdef HAVE_HOTKEY
774 case ACTION_TREE_HOTKEY:
775 if (!global_settings.hotkey_tree)
776 break;
777 /* fall through */
778 #endif
779 case ACTION_STD_CONTEXT:
781 bool hotkey = button == ACTION_TREE_HOTKEY;
782 int onplay_result;
783 int attr = 0;
785 if(!numentries)
786 onplay_result = onplay(NULL, 0, curr_context, hotkey);
787 else {
788 #ifdef HAVE_TAGCACHE
789 if (id3db)
791 if (tagtree_get_attr(&tc) == FILE_ATTR_AUDIO)
793 attr = FILE_ATTR_AUDIO;
794 tagtree_get_filename(&tc, buf, sizeof(buf));
796 else
797 attr = ATTR_DIRECTORY;
799 else
800 #endif
802 attr = dircache[tc.selected_item].attr;
804 if (currdir[1]) /* Not in / */
805 snprintf(buf, sizeof buf, "%s/%s",
806 currdir,
807 dircache[tc.selected_item].name);
808 else /* In / */
809 snprintf(buf, sizeof buf, "/%s",
810 dircache[tc.selected_item].name);
812 onplay_result = onplay(buf, attr, curr_context, hotkey);
814 switch (onplay_result)
816 case ONPLAY_MAINMENU:
817 return GO_TO_ROOT;
819 case ONPLAY_OK:
820 restore = true;
821 break;
823 case ONPLAY_RELOAD_DIR:
824 reload_dir = true;
825 break;
827 case ONPLAY_START_PLAY:
828 return GO_TO_WPS;
829 break;
831 break;
834 #ifdef HAVE_HOTSWAP
835 case SYS_FS_CHANGED:
836 #ifdef HAVE_TAGCACHE
837 if (!id3db)
838 #endif
839 reload_dir = true;
840 /* The 'dir no longer valid' situation will be caught later
841 * by checking the showdir() result. */
842 break;
843 #endif
845 default:
846 if (default_event_handler(button) == SYS_USB_CONNECTED)
848 if(*tc.dirfilter > NUM_FILTER_MODES)
849 /* leave sub-browsers after usb, doing otherwise
850 might be confusing to the user */
851 exit_func = true;
852 else
853 reload_dir = true;
855 break;
857 if (start_wps)
858 return GO_TO_WPS;
859 if (button && !IS_SYSEVENT(button))
861 storage_spin();
865 check_rescan:
866 /* do we need to rescan dir? */
867 if (reload_dir || reload_root ||
868 lastfilter != *tc.dirfilter ||
869 lastsortcase != global_settings.sort_case)
871 if (reload_root) {
872 strcpy(currdir, "/");
873 tc.dirlevel = 0;
874 #ifdef HAVE_TAGCACHE
875 tc.currtable = 0;
876 tc.currextra = 0;
877 lasttable = -1;
878 lastextra = -1;
879 #endif
880 reload_root = false;
883 if (!reload_dir)
885 gui_synclist_select_item(&tree_lists, 0);
886 gui_synclist_draw(&tree_lists);
887 tc.selected_item = 0;
888 lastdir[0] = 0;
891 lastfilter = *tc.dirfilter;
892 lastsortcase = global_settings.sort_case;
893 restore = true;
896 if (exit_func)
897 return GO_TO_PREVIOUS;
899 if (restore || reload_dir) {
900 /* restore display */
901 numentries = update_dir();
902 reload_dir = false;
903 if (currdir[1] && (numentries < 0))
904 { /* not in root and reload failed */
905 reload_root = true; /* try root */
906 goto check_rescan;
910 return true;
913 bool create_playlist(void)
915 char filename[MAX_PATH];
917 snprintf(filename, sizeof filename, "%s.m3u8",
918 tc.currdir[1] ? tc.currdir : "/root");
919 splashf(0, "%s %s", str(LANG_CREATING), filename);
921 trigger_cpu_boost();
922 catalog_add_to_a_playlist(tc.currdir, ATTR_DIRECTORY, true, filename);
923 cancel_cpu_boost();
925 return true;
928 int rockbox_browse(const char *root, int dirfilter)
930 static char current[MAX_PATH];
931 int ret_val = 0;
932 int *last_filter = tc.dirfilter;
933 tc.dirfilter = &dirfilter;
934 tc.sort_dir = global_settings.sort_dir;
936 reload_dir = true;
937 if (dirfilter >= NUM_FILTER_MODES)
939 static struct tree_context backup;
940 int last_context;
941 const char *ext, *setting;
943 backup = tc;
944 tc.selected_item = 0;
945 tc.dirlevel = 0;
946 memcpy(tc.currdir, root, sizeof(tc.currdir));
947 start_wps = false;
948 last_context = curr_context;
950 /* if we are in a special settings folder, center the current setting */
951 switch(dirfilter)
953 case SHOW_LNG:
954 ext = "lng";
955 if (global_settings.lang_file[0])
956 setting = global_settings.lang_file;
957 else
958 setting = "english";
959 break;
960 case SHOW_WPS:
961 ext = "wps";
962 setting = global_settings.wps_file;
963 break;
964 #ifdef HAVE_REMOTE_LCD
965 case SHOW_RWPS:
966 ext = "rwps";
967 setting = global_settings.rwps_file;
968 break;
969 case SHOW_RSBS:
970 ext = "rsbs";
971 setting = global_settings.rsbs_file;
972 break;
973 #if CONFIG_TUNER
974 case SHOW_RFMS:
975 ext = "rfms";
976 setting = global_settings.rfms_file;
977 break;
978 #endif /* CONFIG_TUNER */
979 #endif
980 #ifdef HAVE_LCD_BITMAP
981 case SHOW_FONT:
982 ext = "fnt";
983 setting = global_settings.font_file;
984 break;
985 case SHOW_SBS:
986 ext = "sbs";
987 setting = global_settings.sbs_file;
988 break;
989 #if CONFIG_TUNER
990 case SHOW_FMS:
991 ext = "fms";
992 setting = global_settings.fms_file;
993 break;
994 #endif /* CONFIG_TUNER */
995 #endif
996 #if CONFIG_TUNER
997 case SHOW_FMR:
998 ext = "fmr";
999 setting = global_settings.fmr_file;
1000 break;
1001 #endif
1002 default:
1003 ext = setting = NULL;
1004 break;
1007 /* If we've found a file to center on, do it */
1008 if (setting)
1010 /* if setting != NULL, ext is initialized */
1011 snprintf(current, sizeof(current), "%s/%s.%s", root, setting, ext);
1012 set_current_file(current);
1013 /* set_current_file changes dirlevel, change it back */
1014 tc.dirlevel = 0;
1017 ret_val = dirbrowse();
1018 tc = backup;
1019 curr_context = last_context;
1021 else
1023 if (dirfilter != SHOW_ID3DB)
1024 tc.dirfilter = &global_settings.dirfilter;
1025 strcpy(current,root);
1026 set_current_file(current);
1027 ret_val = dirbrowse();
1029 tc.dirfilter = last_filter;
1030 return ret_val;
1033 void tree_mem_init(void)
1035 /* We copy the settings value in case it is changed by the user. We can't
1036 use it until the next reboot. */
1037 max_files = global_settings.max_files_in_dir;
1039 /* initialize tree context struct */
1040 memset(&tc, 0, sizeof(tc));
1041 tc.dirfilter = &global_settings.dirfilter;
1042 tc.sort_dir = global_settings.sort_dir;
1044 tc.name_buffer_size = AVERAGE_FILENAME_LENGTH * max_files;
1045 tc.name_buffer = buffer_alloc(tc.name_buffer_size);
1047 tc.dircache_size = max_files * sizeof(struct entry);
1048 tc.dircache = buffer_alloc(tc.dircache_size);
1049 tree_get_filetypes(&filetypes, &filetypes_count);
1052 bool bookmark_play(char *resume_file, int index, int offset, int seed,
1053 char *filename)
1055 int i;
1056 char* suffix = strrchr(resume_file, '.');
1057 bool started = false;
1059 if (suffix != NULL &&
1060 (!strcasecmp(suffix, ".m3u") || !strcasecmp(suffix, ".m3u8")))
1062 /* Playlist playback */
1063 char* slash;
1064 /* check that the file exists */
1065 if(!file_exists(resume_file))
1066 return false;
1068 slash = strrchr(resume_file,'/');
1069 if (slash)
1071 char* cp;
1072 *slash=0;
1074 cp=resume_file;
1075 if (!cp[0])
1076 cp="/";
1078 if (playlist_create(cp, slash+1) != -1)
1080 if (global_settings.playlist_shuffle)
1081 playlist_shuffle(seed, -1);
1082 playlist_start(index,offset);
1083 started = true;
1085 *slash='/';
1088 else
1090 /* Directory playback */
1091 lastdir[0]='\0';
1092 if (playlist_create(resume_file, NULL) != -1)
1094 char filename_buf[MAX_PATH + 1];
1095 const char* peek_filename;
1096 resume_directory(resume_file);
1097 if (global_settings.playlist_shuffle)
1098 playlist_shuffle(seed, -1);
1100 /* Check if the file is at the same spot in the directory,
1101 else search for it */
1102 peek_filename = playlist_peek(index, filename_buf,
1103 sizeof(filename_buf));
1105 if (peek_filename == NULL)
1107 /* playlist has shrunk, search from the top */
1108 index = 0;
1109 peek_filename = playlist_peek(index, filename_buf,
1110 sizeof(filename_buf));
1111 if (peek_filename == NULL)
1112 return false;
1115 if (strcmp(strrchr(peek_filename, '/') + 1, filename))
1117 for ( i=0; i < playlist_amount(); i++ )
1119 peek_filename = playlist_peek(i, filename_buf,
1120 sizeof(filename_buf));
1122 if (peek_filename == NULL)
1123 return false;
1125 if (!strcmp(strrchr(peek_filename, '/') + 1, filename))
1126 break;
1128 if (i < playlist_amount())
1129 index = i;
1130 else
1131 return false;
1133 playlist_start(index,offset);
1134 started = true;
1138 if (started)
1139 start_wps = true;
1140 return started;
1143 static void say_filetype(int attr)
1145 /* try to find a voice ID for the extension, if known */
1146 int j;
1147 attr &= FILE_ATTR_MASK; /* file type */
1148 for (j=0; j<filetypes_count; j++)
1149 if (attr == filetypes[j].tree_attr)
1151 talk_id(filetypes[j].voiceclip, true);
1152 return;
1156 static int ft_play_dirname(char* name)
1158 #if CONFIG_CODEC != SWCODEC
1159 if (audio_status() & AUDIO_STATUS_PLAY)
1160 return 0;
1161 #endif
1163 if(talk_file(tc.currdir, name, dir_thumbnail_name, NULL,
1164 NULL, false))
1166 if(global_settings.talk_filetype)
1167 talk_id(VOICE_DIR, true);
1168 return 1;
1170 else
1171 return -1;
1174 static void ft_play_filename(char *dir, char *file)
1176 #if CONFIG_CODEC != SWCODEC
1177 if (audio_status() & AUDIO_STATUS_PLAY)
1178 return;
1179 #endif
1181 if (strlen(file) >= strlen(file_thumbnail_ext)
1182 && strcasecmp(&file[strlen(file) - strlen(file_thumbnail_ext)],
1183 file_thumbnail_ext))
1184 /* file has no .talk extension */
1185 talk_file(dir, NULL, file, file_thumbnail_ext,
1186 NULL, false);
1187 else
1188 /* it already is a .talk file, play this directly, but prefix it. */
1189 talk_file(dir, NULL, file, NULL,
1190 TALK_IDARRAY(LANG_VOICE_DIR_HOVER), false);
1193 /* These two functions are called by the USB and shutdown handlers */
1194 void tree_flush(void)
1196 #ifdef HAVE_TAGCACHE
1197 tagcache_shutdown();
1198 #endif
1200 #ifdef HAVE_TC_RAMCACHE
1201 tagcache_unload_ramcache();
1202 #endif
1204 #ifdef HAVE_DIRCACHE
1206 int old_val = global_status.dircache_size;
1207 if (global_settings.dircache)
1209 if (!dircache_is_initializing())
1210 global_status.dircache_size = dircache_get_cache_size();
1211 # ifdef HAVE_EEPROM_SETTINGS
1212 if (firmware_settings.initialized)
1213 dircache_save();
1214 # endif
1215 dircache_disable();
1217 else
1219 global_status.dircache_size = 0;
1221 if (old_val != global_status.dircache_size)
1222 status_save();
1224 #endif
1227 void tree_restore(void)
1229 #ifdef HAVE_EEPROM_SETTINGS
1230 firmware_settings.disk_clean = false;
1231 #endif
1233 #ifdef HAVE_TC_RAMCACHE
1234 remove(TAGCACHE_STATEFILE);
1235 #endif
1237 #ifdef HAVE_DIRCACHE
1238 remove(DIRCACHE_FILE);
1239 if (global_settings.dircache)
1241 /* Print "Scanning disk..." to the display. */
1242 splash(0, str(LANG_SCANNING_DISK));
1244 dircache_build(global_status.dircache_size);
1246 #endif
1247 #ifdef HAVE_TAGCACHE
1248 tagcache_start_scan();
1249 #endif