set YOFS to 0 for portrait LCDs.
[kugel-rb.git] / apps / filetree.c
blob87ac37c2e0ec541f9219f9f475bf257cc4cb8001
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2005 by Björn 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 <stdlib.h>
22 #include <file.h>
23 #include <dir.h>
24 #include <string.h>
25 #include <kernel.h>
26 #include <lcd.h>
27 #include <debug.h>
28 #include <font.h>
29 #include <limits.h>
30 #include "bookmark.h"
31 #include "tree.h"
32 #include "settings.h"
33 #include "filetypes.h"
34 #include "talk.h"
35 #include "playlist.h"
36 #include "gwps.h"
37 #include "lang.h"
38 #include "language.h"
39 #include "screens.h"
40 #include "plugin.h"
41 #include "rolo.h"
42 #include "sprintf.h"
43 #include "splash.h"
44 #include "cuesheet.h"
45 #include "filetree.h"
46 #include "misc.h"
47 #include "strnatcmp.h"
48 #ifdef HAVE_LCD_BITMAP
49 #include "keyboard.h"
50 #endif
52 #if CONFIG_TUNER
53 #include "radio.h"
54 #endif
56 #include "backdrop.h"
58 static int compare_sort_dir; /* qsort key for sorting directories */
60 int ft_build_playlist(struct tree_context* c, int start_index)
62 int i;
63 int start=start_index;
65 struct entry *dircache = c->dircache;
67 for(i = 0;i < c->filesindir;i++)
69 if((dircache[i].attr & FILE_ATTR_MASK) == FILE_ATTR_AUDIO)
71 if (playlist_add(dircache[i].name) < 0)
72 break;
74 else
76 /* Adjust the start index when se skip non-MP3 entries */
77 if(i < start)
78 start_index--;
82 return start_index;
85 /* Start playback of a playlist, checking for bookmark autoload, modified
86 * playlists, etc., as required. Returns false if playback wasn't started,
87 * or started via bookmark autoload, true otherwise.
89 * Pointers to both the full pathname and the separated parts needed to
90 * avoid allocating yet another path buffer on the stack (and save some
91 * code; the caller typically needs to create the full pathname anyway)...
93 bool ft_play_playlist(char* pathname, char* dirname, char* filename)
95 if (global_settings.party_mode && audio_status())
97 splash(HZ, ID2P(LANG_PARTY_MODE));
98 return false;
101 if (bookmark_autoload(pathname))
103 return false;
106 splash(0, ID2P(LANG_WAIT));
108 /* about to create a new current playlist...
109 allow user to cancel the operation */
110 if (!warn_on_pl_erase())
111 return false;
113 if (playlist_create(dirname, filename) != -1)
115 if (global_settings.playlist_shuffle)
117 playlist_shuffle(current_tick, -1);
120 playlist_start(0, 0);
121 return true;
124 return false;
127 /* walk a directory and check all dircache entries if a .talk file exists */
128 static void check_file_thumbnails(struct tree_context* c)
130 int i;
131 struct dirent *entry;
132 struct entry* dircache = c->dircache;
133 DIR *dir;
135 dir = opendir(c->currdir);
136 if(!dir)
137 return;
138 /* mark all files as non talking, except the .talk ones */
139 for (i=0; i < c->filesindir; i++)
141 if (dircache[i].attr & ATTR_DIRECTORY)
142 continue; /* we're not touching directories */
144 if (strcasecmp(file_thumbnail_ext,
145 &dircache[i].name[strlen(dircache[i].name)
146 - strlen(file_thumbnail_ext)]))
147 { /* no .talk file */
148 dircache[i].attr &= ~FILE_ATTR_THUMBNAIL; /* clear */
150 else
151 { /* .talk file, we later let them speak themselves */
152 dircache[i].attr |= FILE_ATTR_THUMBNAIL; /* set */
156 while((entry = readdir(dir)) != 0) /* walk directory */
158 int ext_pos;
160 ext_pos = strlen((char *)entry->d_name) - strlen(file_thumbnail_ext);
161 if (ext_pos <= 0 /* too short to carry ".talk" */
162 || (entry->attribute & ATTR_DIRECTORY) /* no file */
163 || strcasecmp((char *)&entry->d_name[ext_pos], file_thumbnail_ext))
164 { /* or doesn't end with ".talk", no candidate */
165 continue;
168 /* terminate the (disposable) name in dir buffer,
169 this truncates off the ".talk" without needing an extra buffer */
170 entry->d_name[ext_pos] = '\0';
172 /* search corresponding file in dir cache */
173 for (i=0; i < c->filesindir; i++)
175 if (!strcasecmp(dircache[i].name, (char *)entry->d_name))
176 { /* match */
177 dircache[i].attr |= FILE_ATTR_THUMBNAIL; /* set the flag */
178 break; /* exit search loop, because we found it */
182 closedir(dir);
185 /* support function for qsort() */
186 static int compare(const void* p1, const void* p2)
188 struct entry* e1 = (struct entry*)p1;
189 struct entry* e2 = (struct entry*)p2;
190 int criteria;
192 if (e1->attr & ATTR_DIRECTORY && e2->attr & ATTR_DIRECTORY)
193 { /* two directories */
194 criteria = compare_sort_dir;
196 #ifdef HAVE_MULTIVOLUME
197 if (e1->attr & ATTR_VOLUME || e2->attr & ATTR_VOLUME)
198 { /* a volume identifier is involved */
199 if (e1->attr & ATTR_VOLUME && e2->attr & ATTR_VOLUME)
200 criteria = SORT_ALPHA; /* two volumes: sort alphabetically */
201 else /* only one is a volume: volume first */
202 return (e2->attr & ATTR_VOLUME) - (e1->attr & ATTR_VOLUME);
204 #endif
207 else if (!(e1->attr & ATTR_DIRECTORY) && !(e2->attr & ATTR_DIRECTORY))
208 { /* two files */
209 criteria = global_settings.sort_file;
211 else /* dir and file, dir goes first */
212 return (e2->attr & ATTR_DIRECTORY) - (e1->attr & ATTR_DIRECTORY);
214 switch(criteria)
216 case SORT_TYPE:
217 case SORT_TYPE_REVERSED:
219 int t1 = e1->attr & FILE_ATTR_MASK;
220 int t2 = e2->attr & FILE_ATTR_MASK;
222 if (!t1) /* unknown type */
223 t1 = INT_MAX; /* gets a high number, to sort after known */
224 if (!t2) /* unknown type */
225 t2 = INT_MAX; /* gets a high number, to sort after known */
227 if (t1 != t2) /* if different */
228 return (t1 - t2) * (criteria == SORT_TYPE_REVERSED ? -1 : 1);
229 /* else fall through to alphabetical sorting */
232 case SORT_DATE:
233 case SORT_DATE_REVERSED:
234 /* Ignore SORT_TYPE */
235 if (criteria == SORT_DATE || criteria == SORT_DATE_REVERSED)
237 if (e1->time_write != e2->time_write)
238 return (e1->time_write - e2->time_write)
239 * (criteria == SORT_DATE_REVERSED ? -1 : 1);
240 /* else fall through to alphabetical sorting */
243 case SORT_ALPHA:
244 case SORT_ALPHA_REVERSED:
246 if (global_settings.sort_case)
248 if (global_settings.interpret_numbers == SORT_INTERPRET_AS_NUMBER)
249 return strnatcmp(e1->name, e2->name)
250 * (criteria == SORT_ALPHA_REVERSED ? -1 : 1);
251 else
252 return strncmp(e1->name, e2->name, MAX_PATH)
253 * (criteria == SORT_ALPHA_REVERSED ? -1 : 1);
255 else
257 if (global_settings.interpret_numbers == SORT_INTERPRET_AS_NUMBER)
258 return strnatcasecmp(e1->name, e2->name)
259 * (criteria == SORT_ALPHA_REVERSED ? -1 : 1);
260 else
261 return strncasecmp(e1->name, e2->name, MAX_PATH)
262 * (criteria == SORT_ALPHA_REVERSED ? -1 : 1);
267 return 0; /* never reached */
270 /* load and sort directory into dircache. returns NULL on failure. */
271 int ft_load(struct tree_context* c, const char* tempdir)
273 int i;
274 int name_buffer_used = 0;
275 DIR *dir;
277 if (tempdir)
278 dir = opendir(tempdir);
279 else
280 dir = opendir(c->currdir);
281 if(!dir)
282 return -1; /* not a directory */
284 c->dirsindir = 0;
285 c->dirfull = false;
287 for ( i=0; i < global_settings.max_files_in_dir; i++ ) {
288 int len;
289 struct dirent *entry = readdir(dir);
290 struct entry* dptr =
291 (struct entry*)(c->dircache + i * sizeof(struct entry));
292 if (!entry)
293 break;
295 len = strlen((char *)entry->d_name);
297 /* skip directories . and .. */
298 if ((entry->attribute & ATTR_DIRECTORY) &&
299 (((len == 1) && (!strncmp((char *)entry->d_name, ".", 1))) ||
300 ((len == 2) && (!strncmp((char *)entry->d_name, "..", 2))))) {
301 i--;
302 continue;
305 /* Skip FAT volume ID */
306 if (entry->attribute & ATTR_VOLUME_ID) {
307 i--;
308 continue;
311 /* filter out dotfiles and hidden files */
312 if (*c->dirfilter != SHOW_ALL &&
313 ((entry->d_name[0]=='.') ||
314 (entry->attribute & ATTR_HIDDEN))) {
315 i--;
316 continue;
319 dptr->attr = entry->attribute;
321 /* check for known file types */
322 if ( !(dptr->attr & ATTR_DIRECTORY) )
323 dptr->attr |= filetype_get_attr((char *)entry->d_name);
325 /* filter out non-visible files */
326 if ((!(dptr->attr & ATTR_DIRECTORY) && (
327 (*c->dirfilter == SHOW_PLAYLIST &&
328 (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_M3U) ||
329 ((*c->dirfilter == SHOW_MUSIC &&
330 (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_AUDIO) &&
331 (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_M3U) ||
332 (*c->dirfilter == SHOW_SUPPORTED && !filetype_supported(dptr->attr)))) ||
333 (*c->dirfilter == SHOW_WPS && (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_WPS) ||
334 #ifdef HAVE_REMOTE_LCD
335 (*c->dirfilter == SHOW_RWPS && (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_RWPS) ||
336 #endif
337 #if CONFIG_TUNER
338 (*c->dirfilter == SHOW_FMR && (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_FMR) ||
339 #endif
340 (*c->dirfilter == SHOW_CFG && (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_CFG) ||
341 (*c->dirfilter == SHOW_LNG && (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_LNG) ||
342 (*c->dirfilter == SHOW_MOD && (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_MOD) ||
343 (*c->dirfilter == SHOW_FONT && (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_FONT) ||
344 (*c->dirfilter == SHOW_PLUGINS && (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_ROCK))
346 i--;
347 continue;
350 if (len > c->name_buffer_size - name_buffer_used - 1) {
351 /* Tell the world that we ran out of buffer space */
352 c->dirfull = true;
353 break;
355 dptr->name = &c->name_buffer[name_buffer_used];
356 dptr->time_write =
357 (long)entry->wrtdate<<16 |
358 (long)entry->wrttime; /* in one # */
359 strcpy(dptr->name, (char *)entry->d_name);
360 name_buffer_used += len + 1;
362 if (dptr->attr & ATTR_DIRECTORY) /* count the remaining dirs */
363 c->dirsindir++;
365 c->filesindir = i;
366 c->dirlength = i;
367 closedir(dir);
369 compare_sort_dir = c->sort_dir;
370 qsort(c->dircache,i,sizeof(struct entry),compare);
372 /* If thumbnail talking is enabled, make an extra run to mark files with
373 associated thumbnails, so we don't do unsuccessful spinups later. */
374 if (global_settings.talk_file_clip)
375 check_file_thumbnails(c); /* map .talk to ours */
377 return 0;
380 int ft_enter(struct tree_context* c)
382 int rc = 0;
383 char buf[MAX_PATH];
384 struct entry *dircache = c->dircache;
385 struct entry* file = &dircache[c->selected_item];
386 bool reload_dir = false;
387 bool start_wps = false;
388 bool exit_func = false;
390 if (c->currdir[1])
391 snprintf(buf,sizeof(buf),"%s/%s",c->currdir, file->name);
392 else
393 snprintf(buf,sizeof(buf),"/%s",file->name);
395 if (file->attr & ATTR_DIRECTORY) {
396 memcpy(c->currdir, buf, sizeof(c->currdir));
397 if ( c->dirlevel < MAX_DIR_LEVELS )
398 c->selected_item_history[c->dirlevel] = c->selected_item;
399 c->dirlevel++;
400 c->selected_item=0;
402 else {
403 int seed = current_tick;
404 bool play = false;
405 int start_index=0;
407 switch ( file->attr & FILE_ATTR_MASK ) {
408 case FILE_ATTR_M3U:
409 play = ft_play_playlist(buf, c->currdir, file->name);
411 if (play)
413 start_index = 0;
416 break;
418 case FILE_ATTR_AUDIO:
419 if (bookmark_autoload(c->currdir))
420 break;
422 splash(0, ID2P(LANG_WAIT));
424 /* about to create a new current playlist...
425 allow user to cancel the operation */
426 if (!warn_on_pl_erase())
427 break;
429 if (global_settings.party_mode && audio_status())
431 playlist_insert_track(NULL, buf,
432 PLAYLIST_INSERT_LAST, true, true);
433 splash(HZ, ID2P(LANG_QUEUE_LAST));
435 else if (playlist_create(c->currdir, NULL) != -1)
437 start_index = ft_build_playlist(c, c->selected_item);
438 if (global_settings.playlist_shuffle)
440 start_index = playlist_shuffle(seed, start_index);
442 /* when shuffling dir.: play all files
443 even if the file selected by user is
444 not the first one */
445 if (!global_settings.play_selected)
446 start_index = 0;
449 playlist_start(start_index, 0);
450 play = true;
452 break;
454 #if CONFIG_TUNER
455 /* fmr preset file */
456 case FILE_ATTR_FMR:
457 splash(0, ID2P(LANG_WAIT));
459 /* Preset inside the default folder. */
460 if(!strncasecmp(FMPRESET_PATH, buf, strlen(FMPRESET_PATH)))
462 set_file(buf, global_settings.fmr_file, MAX_FILENAME);
463 radio_load_presets(global_settings.fmr_file);
464 if(!in_radio_screen())
465 radio_screen();
468 * Preset outside default folder, we can choose such only
469 * if we are out of the radio screen, so the check for the
470 * radio status isn't neccessary
472 else
474 radio_load_presets(buf);
475 radio_screen();
478 break;
479 #endif
482 /* wps config file */
483 case FILE_ATTR_WPS:
484 splash(0, ID2P(LANG_WAIT));
485 #if LCD_DEPTH > 1
486 unload_wps_backdrop();
487 #endif
488 wps_data_load(gui_wps[0].data, &screens[0], buf, true);
489 set_file(buf, (char *)global_settings.wps_file,
490 MAX_FILENAME);
491 break;
493 #if defined(HAVE_REMOTE_LCD) && (NB_SCREENS > 1)
494 /* remote-wps config file */
495 case FILE_ATTR_RWPS:
496 splash(0, ID2P(LANG_WAIT));
497 #if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
498 unload_remote_wps_backdrop();
499 #endif
500 wps_data_load(gui_wps[1].data, &screens[1], buf, true);
501 set_file(buf, (char *)global_settings.rwps_file,
502 MAX_FILENAME);
503 break;
504 #endif
506 case FILE_ATTR_CFG:
507 splash(0, ID2P(LANG_WAIT));
508 if (!settings_load_config(buf,true))
509 break;
510 gui_synclist_draw(&tree_lists);
511 splash(HZ, ID2P(LANG_SETTINGS_LOADED));
512 break;
514 case FILE_ATTR_BMARK:
515 splash(0, ID2P(LANG_WAIT));
516 bookmark_load(buf, false);
517 reload_dir = true;
518 break;
520 case FILE_ATTR_LNG:
521 splash(0, ID2P(LANG_WAIT));
522 if(!lang_load(buf)) {
523 set_file(buf, (char *)global_settings.lang_file,
524 MAX_FILENAME);
525 talk_init(); /* use voice of same language */
526 splash(HZ, ID2P(LANG_LANGUAGE_LOADED));
528 break;
530 #ifdef HAVE_LCD_BITMAP
531 case FILE_ATTR_FONT:
532 splash(0, ID2P(LANG_WAIT));
533 font_load(buf);
534 set_file(buf, (char *)global_settings.font_file, MAX_FILENAME);
535 break;
537 case FILE_ATTR_KBD:
538 splash(0, ID2P(LANG_WAIT));
539 if (!load_kbd(buf))
540 splash(HZ, ID2P(LANG_KEYBOARD_LOADED));
541 set_file(buf, (char *)global_settings.kbd_file, MAX_FILENAME);
542 break;
543 #endif
545 #ifndef SIMULATOR
546 /* firmware file */
547 case FILE_ATTR_MOD:
548 splash(0, ID2P(LANG_WAIT));
549 rolo_load(buf);
550 break;
551 #endif
553 /* plugin file */
554 case FILE_ATTR_ROCK:
556 int ret;
557 if (global_settings.party_mode && audio_status()) {
558 splash(HZ, ID2P(LANG_PARTY_MODE));
559 break;
561 ret = plugin_load(buf,NULL);
562 switch (ret)
564 case PLUGIN_GOTO_WPS:
565 play = true;
566 break;
567 case PLUGIN_USB_CONNECTED:
568 if(*c->dirfilter > NUM_FILTER_MODES)
569 /* leave sub-browsers after usb, doing
570 otherwise might be confusing to the user */
571 exit_func = true;
572 else
573 reload_dir = true;
574 break;
576 case PLUGIN_ERROR:
577 case PLUGIN_OK:
579 default:
580 break;
582 break;
584 case FILE_ATTR_CUE:
585 display_cuesheet_content(buf);
586 break;
588 default:
590 const char* plugin;
592 if (global_settings.party_mode && audio_status()) {
593 splash(HZ, ID2P(LANG_PARTY_MODE));
594 break;
597 plugin = filetype_get_plugin(file);
598 if (plugin)
600 switch (plugin_load(plugin,buf))
602 case PLUGIN_USB_CONNECTED:
603 reload_dir = true;
604 break;
605 case PLUGIN_GOTO_WPS:
606 play = true;
607 break;
609 case PLUGIN_OK:
610 case PLUGIN_ERROR:
612 default:
613 break;
616 break;
620 if ( play ) {
621 /* the resume_index must always be the index in the
622 shuffled list in case shuffle is enabled */
623 global_status.resume_index = start_index;
624 global_status.resume_offset = 0;
625 status_save();
627 start_wps = true;
629 else {
630 if (*c->dirfilter > NUM_FILTER_MODES &&
631 *c->dirfilter != SHOW_CFG &&
632 *c->dirfilter != SHOW_FONT &&
633 *c->dirfilter != SHOW_PLUGINS)
635 exit_func = true;
640 if (reload_dir)
641 rc = 1;
642 if (start_wps)
643 rc = 2;
644 if (exit_func)
645 rc = 3;
647 return rc;
650 int ft_exit(struct tree_context* c)
652 extern char lastfile[]; /* from tree.c */
653 char buf[MAX_PATH];
654 int rc = 0;
655 bool exit_func = false;
657 int i = strlen(c->currdir);
658 if (i>1) {
659 while (c->currdir[i-1]!='/')
660 i--;
661 strcpy(buf,&c->currdir[i]);
662 if (i==1)
663 c->currdir[i]=0;
664 else
665 c->currdir[i-1]=0;
667 if (*c->dirfilter > NUM_FILTER_MODES && c->dirlevel < 1)
668 exit_func = true;
670 c->dirlevel--;
671 if ( c->dirlevel < MAX_DIR_LEVELS )
672 c->selected_item=c->selected_item_history[c->dirlevel];
673 else
674 c->selected_item=0;
676 /* if undefined position */
677 if (c->selected_item == -1)
678 strcpy(lastfile, buf);
680 else
682 if (*c->dirfilter > NUM_FILTER_MODES && c->dirlevel < 1)
683 exit_func = true;
686 if (exit_func)
687 rc = 3;
689 return rc;