Let qmake generate an install Makefile target to install the binary. Doesn't handle...
[Rockbox.git] / apps / tagtree.c
blob3562a48a5a18467daa14bf2aad39392f8741496e
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2005 by Miika Pekkarinen
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
20 /**
21 * Basic structure on this file was copied from dbtree.c and modified to
22 * support the tag cache interface.
24 #include <stdio.h>
25 #include <string.h>
26 #include <stdlib.h>
27 #include "config.h"
28 #include "system.h"
29 #include "kernel.h"
30 #include "splash.h"
31 #include "icons.h"
32 #include "tree.h"
33 #include "action.h"
34 #include "settings.h"
35 #include "tagcache.h"
36 #include "tagtree.h"
37 #include "lang.h"
38 #include "logf.h"
39 #include "playlist.h"
40 #include "keyboard.h"
41 #include "gui/list.h"
42 #include "buffer.h"
43 #include "playback.h"
44 #include "yesno.h"
45 #include "misc.h"
46 #include "filetypes.h"
47 #include "audio.h"
48 #include "events.h"
50 #define FILE_SEARCH_INSTRUCTIONS ROCKBOX_DIR "/tagnavi.config"
52 static int tagtree_play_folder(struct tree_context* c);
54 #define SEARCHSTR_SIZE 256
56 static const struct id3_to_search_mapping {
57 char *string;
58 size_t id3_offset;
59 } id3_to_search_mapping[] = {
60 { "", 0 }, /* offset n/a */
61 { "#directory#", 0 }, /* offset n/a */
62 { "#title#", offsetof(struct mp3entry, title) },
63 { "#artist#", offsetof(struct mp3entry, artist) },
64 { "#album#", offsetof(struct mp3entry, album) },
65 { "#genre#", offsetof(struct mp3entry, genre_string) },
66 { "#composer#", offsetof(struct mp3entry, composer) },
67 { "#albumartist#", offsetof(struct mp3entry, albumartist) },
69 enum variables {
70 var_sorttype = 100,
71 var_limit,
72 var_strip,
73 var_menu_start,
74 var_include,
75 var_rootmenu,
76 var_format,
77 menu_next,
78 menu_load,
81 /* Capacity 10 000 entries (for example 10k different artists) */
82 #define UNIQBUF_SIZE (64*1024)
83 static long *uniqbuf;
85 #define MAX_TAGS 5
86 #define MAX_MENU_ID_SIZE 32
88 static struct tagcache_search tcs, tcs2;
89 static bool sort_inverse;
92 * "%3d. %s" autoscore title %sort = "inverse" %limit = "100"
94 * valid = true
95 * formatstr = "%-3d. %s"
96 * tags[0] = tag_autoscore
97 * tags[1] = tag_title
98 * tag_count = 2
100 * limit = 100
101 * sort_inverse = true
103 struct display_format {
104 char name[32];
105 struct tagcache_search_clause *clause[TAGCACHE_MAX_CLAUSES];
106 int clause_count;
107 char *formatstr;
108 int group_id;
109 int tags[MAX_TAGS];
110 int tag_count;
112 int limit;
113 int strip;
114 bool sort_inverse;
115 bool sort;
118 static struct display_format *formats[TAGMENU_MAX_FMTS];
119 static int format_count;
121 struct search_instruction {
122 char name[64];
123 int tagorder[MAX_TAGS];
124 int tagorder_count;
125 struct tagcache_search_clause *clause[MAX_TAGS][TAGCACHE_MAX_CLAUSES];
126 int format_id[MAX_TAGS];
127 int clause_count[MAX_TAGS];
128 int result_seek[MAX_TAGS];
131 struct menu_entry {
132 char name[64];
133 int type;
134 struct search_instruction *si;
135 int link;
138 struct root_menu {
139 char title[64];
140 char id[MAX_MENU_ID_SIZE];
141 int itemcount;
142 struct menu_entry *items[TAGMENU_MAX_ITEMS];
145 /* Statusbar text of the current view. */
146 static char current_title[MAX_TAGS][128];
148 static struct root_menu *menus[TAGMENU_MAX_MENUS];
149 static struct root_menu *menu;
150 static struct search_instruction *csi;
151 static const char *strp;
152 static int menu_count;
153 static int root_menu;
155 static int current_offset;
156 static int current_entry_count;
158 static int format_count;
159 static struct tree_context *tc;
161 static int get_token_str(char *buf, int size)
163 /* Find the start. */
164 while (*strp != '"' && *strp != '\0')
165 strp++;
167 if (*strp == '\0' || *(++strp) == '\0')
168 return -1;
170 /* Read the data. */
171 while (*strp != '"' && *strp != '\0' && --size > 0)
172 *(buf++) = *(strp++);
174 *buf = '\0';
175 if (*strp != '"')
176 return -2;
178 strp++;
180 return 0;
183 #define MATCH(tag,str1,str2,settag) \
184 if (!strcasecmp(str1, str2)) { \
185 *tag = settag; \
186 return 1; \
189 static int get_tag(int *tag)
191 char buf[128];
192 int i;
194 /* Find the start. */
195 while ((*strp == ' ' || *strp == '>') && *strp != '\0')
196 strp++;
198 if (*strp == '\0' || *strp == '?')
199 return 0;
201 for (i = 0; i < (int)sizeof(buf)-1; i++)
203 if (*strp == '\0' || *strp == ' ')
204 break ;
205 buf[i] = *strp;
206 strp++;
208 buf[i] = '\0';
210 MATCH(tag, buf, "album", tag_album);
211 MATCH(tag, buf, "artist", tag_artist);
212 MATCH(tag, buf, "bitrate", tag_bitrate);
213 MATCH(tag, buf, "composer", tag_composer);
214 MATCH(tag, buf, "comment", tag_comment);
215 MATCH(tag, buf, "albumartist", tag_albumartist);
216 MATCH(tag, buf, "ensemble", tag_albumartist);
217 MATCH(tag, buf, "grouping", tag_grouping);
218 MATCH(tag, buf, "genre", tag_genre);
219 MATCH(tag, buf, "length", tag_length);
220 MATCH(tag, buf, "Lm", tag_virt_length_min);
221 MATCH(tag, buf, "Ls", tag_virt_length_sec);
222 MATCH(tag, buf, "Pm", tag_virt_playtime_min);
223 MATCH(tag, buf, "Ps", tag_virt_playtime_sec);
224 MATCH(tag, buf, "title", tag_title);
225 MATCH(tag, buf, "filename", tag_filename);
226 MATCH(tag, buf, "tracknum", tag_tracknumber);
227 MATCH(tag, buf, "discnum", tag_discnumber);
228 MATCH(tag, buf, "year", tag_year);
229 MATCH(tag, buf, "playcount", tag_playcount);
230 MATCH(tag, buf, "rating", tag_rating);
231 MATCH(tag, buf, "lastplayed", tag_lastplayed);
232 MATCH(tag, buf, "commitid", tag_commitid);
233 MATCH(tag, buf, "entryage", tag_virt_entryage);
234 MATCH(tag, buf, "autoscore", tag_virt_autoscore);
235 MATCH(tag, buf, "%sort", var_sorttype);
236 MATCH(tag, buf, "%limit", var_limit);
237 MATCH(tag, buf, "%strip", var_strip);
238 MATCH(tag, buf, "%menu_start", var_menu_start);
239 MATCH(tag, buf, "%include", var_include);
240 MATCH(tag, buf, "%root_menu", var_rootmenu);
241 MATCH(tag, buf, "%format", var_format);
242 MATCH(tag, buf, "->", menu_next);
243 MATCH(tag, buf, "==>", menu_load);
245 logf("NO MATCH: %s\n", buf);
246 if (buf[0] == '?')
247 return 0;
249 return -1;
252 static int get_clause(int *condition)
254 char buf[4];
255 int i;
257 /* Find the start. */
258 while (*strp == ' ' && *strp != '\0')
259 strp++;
261 if (*strp == '\0')
262 return 0;
264 for (i = 0; i < (int)sizeof(buf)-1; i++)
266 if (*strp == '\0' || *strp == ' ')
267 break ;
268 buf[i] = *strp;
269 strp++;
271 buf[i] = '\0';
273 MATCH(condition, buf, "=", clause_is);
274 MATCH(condition, buf, "==", clause_is);
275 MATCH(condition, buf, "!=", clause_is_not);
276 MATCH(condition, buf, ">", clause_gt);
277 MATCH(condition, buf, ">=", clause_gteq);
278 MATCH(condition, buf, "<", clause_lt);
279 MATCH(condition, buf, "<=", clause_lteq);
280 MATCH(condition, buf, "~", clause_contains);
281 MATCH(condition, buf, "!~", clause_not_contains);
282 MATCH(condition, buf, "^", clause_begins_with);
283 MATCH(condition, buf, "!^", clause_not_begins_with);
284 MATCH(condition, buf, "$", clause_ends_with);
285 MATCH(condition, buf, "!$", clause_not_ends_with);
286 MATCH(condition, buf, "@", clause_oneof);
288 return 0;
291 static bool read_clause(struct tagcache_search_clause *clause)
293 char buf[SEARCHSTR_SIZE];
294 unsigned int i;
296 if (get_tag(&clause->tag) <= 0)
297 return false;
299 if (get_clause(&clause->type) <= 0)
300 return false;
302 if (get_token_str(buf, sizeof buf) < 0)
303 return false;
305 for (i=0; i<ARRAYLEN(id3_to_search_mapping); i++)
307 if (!strcasecmp(buf, id3_to_search_mapping[i].string))
308 break;
311 if (i<ARRAYLEN(id3_to_search_mapping)) /* runtime search operand found */
313 clause->source = source_runtime+i;
314 clause->str = buffer_alloc(SEARCHSTR_SIZE);
316 else
318 clause->source = source_constant;
319 clause->str = buffer_alloc(strlen(buf)+1);
320 strcpy(clause->str, buf);
323 if (tagcache_is_numeric_tag(clause->tag))
325 clause->numeric = true;
326 clause->numeric_data = atoi(clause->str);
328 else
329 clause->numeric = false;
331 logf("got clause: %d/%d [%s]", clause->tag, clause->type, clause->str);
333 return true;
336 static bool read_variable(char *buf, int size)
338 int condition;
340 if (!get_clause(&condition))
341 return false;
343 if (condition != clause_is)
344 return false;
346 if (get_token_str(buf, size) < 0)
347 return false;
349 return true;
352 /* "%3d. %s" autoscore title %sort = "inverse" %limit = "100" */
353 static int get_format_str(struct display_format *fmt)
355 int ret;
356 char buf[128];
357 int i;
359 memset(fmt, 0, sizeof(struct display_format));
361 if (get_token_str(fmt->name, sizeof fmt->name) < 0)
362 return -10;
364 /* Determine the group id */
365 fmt->group_id = 0;
366 for (i = 0; i < format_count; i++)
368 if (!strcasecmp(formats[i]->name, fmt->name))
370 fmt->group_id = formats[i]->group_id;
371 break;
374 if (formats[i]->group_id > fmt->group_id)
375 fmt->group_id = formats[i]->group_id;
378 if (i == format_count)
379 fmt->group_id++;
381 logf("format: (%d) %s", fmt->group_id, fmt->name);
383 if (get_token_str(buf, sizeof buf) < 0)
384 return -10;
386 fmt->formatstr = buffer_alloc(strlen(buf) + 1);
387 strcpy(fmt->formatstr, buf);
389 while (fmt->tag_count < MAX_TAGS)
391 ret = get_tag(&fmt->tags[fmt->tag_count]);
392 if (ret < 0)
393 return -11;
395 if (ret == 0)
396 break;
398 switch (fmt->tags[fmt->tag_count]) {
399 case var_sorttype:
400 if (!read_variable(buf, sizeof buf))
401 return -12;
402 if (!strcasecmp("inverse", buf))
403 fmt->sort_inverse = true;
405 fmt->sort = true;
406 break;
408 case var_limit:
409 if (!read_variable(buf, sizeof buf))
410 return -13;
411 fmt->limit = atoi(buf);
412 break;
414 case var_strip:
415 if (!read_variable(buf, sizeof buf))
416 return -14;
417 fmt->strip = atoi(buf);
418 break;
420 default:
421 fmt->tag_count++;
425 return 1;
428 static int add_format(const char *buf)
430 strp = buf;
432 if (formats[format_count] == NULL)
433 formats[format_count] = buffer_alloc(sizeof(struct display_format));
435 memset(formats[format_count], 0, sizeof(struct display_format));
436 if (get_format_str(formats[format_count]) < 0)
438 logf("get_format_str() parser failed!");
439 return -4;
442 while (*strp != '\0' && *strp != '?')
443 strp++;
445 if (*strp == '?')
447 int clause_count = 0;
448 strp++;
450 while (1)
452 if (clause_count >= TAGCACHE_MAX_CLAUSES)
454 logf("too many clauses");
455 break;
458 formats[format_count]->clause[clause_count] =
459 buffer_alloc(sizeof(struct tagcache_search_clause));
461 if (!read_clause(formats[format_count]->clause[clause_count]))
462 break;
464 clause_count++;
467 formats[format_count]->clause_count = clause_count;
470 format_count++;
472 return 1;
475 static int get_condition(struct search_instruction *inst)
477 int clause_count;
478 char buf[128];
480 switch (*strp)
482 case '=':
484 int i;
486 if (get_token_str(buf, sizeof buf) < 0)
487 return -1;
489 for (i = 0; i < format_count; i++)
491 if (!strcasecmp(formats[i]->name, buf))
492 break;
495 if (i == format_count)
497 logf("format not found: %s", buf);
498 return -2;
501 inst->format_id[inst->tagorder_count] = formats[i]->group_id;
502 return 1;
504 case '?':
505 case ' ':
506 case '&':
507 strp++;
508 return 1;
509 case '-':
510 case '\0':
511 return 0;
514 clause_count = inst->clause_count[inst->tagorder_count];
515 if (clause_count >= TAGCACHE_MAX_CLAUSES)
517 logf("Too many clauses");
518 return false;
521 inst->clause[inst->tagorder_count][clause_count] =
522 buffer_alloc(sizeof(struct tagcache_search_clause));
524 if (!read_clause(inst->clause[inst->tagorder_count][clause_count]))
525 return -1;
527 inst->clause_count[inst->tagorder_count]++;
529 return 1;
532 /* example search:
533 * "Best" artist ? year >= "2000" & title !^ "crap" & genre = "good genre" \
534 * : album ? year >= "2000" : songs
535 * ^ begins with
536 * * contains
537 * $ ends with
540 static bool parse_search(struct menu_entry *entry, const char *str)
542 int ret;
543 int type;
544 struct search_instruction *inst = entry->si;
545 char buf[MAX_PATH];
546 int i;
547 struct root_menu *new_menu;
549 strp = str;
551 /* Parse entry name */
552 if (get_token_str(entry->name, sizeof entry->name) < 0)
554 logf("No name found.");
555 return false;
558 /* Parse entry type */
559 if (get_tag(&entry->type) <= 0)
560 return false;
562 if (entry->type == menu_load)
564 if (get_token_str(buf, sizeof buf) < 0)
565 return false;
567 /* Find the matching root menu or "create" it */
568 for (i = 0; i < menu_count; i++)
570 if (!strcasecmp(menus[i]->id, buf))
572 entry->link = i;
573 return true;
577 if (menu_count >= TAGMENU_MAX_MENUS)
579 logf("max menucount reached");
580 return false;
583 /* Allocate a new menu unless link is found. */
584 menus[menu_count] = buffer_alloc(sizeof(struct root_menu));
585 new_menu = menus[menu_count];
586 memset(new_menu, 0, sizeof(struct root_menu));
587 strncpy(new_menu->id, buf, MAX_MENU_ID_SIZE-1);
588 entry->link = menu_count;
589 ++menu_count;
591 return true;
594 if (entry->type != menu_next)
595 return false;
597 while (inst->tagorder_count < MAX_TAGS)
599 ret = get_tag(&inst->tagorder[inst->tagorder_count]);
600 if (ret < 0)
602 logf("Parse error #1");
603 logf("%s", strp);
604 return false;
607 if (ret == 0)
608 break ;
610 logf("tag: %d", inst->tagorder[inst->tagorder_count]);
612 while ( (ret = get_condition(inst)) > 0 ) ;
613 if (ret < 0)
614 return false;
616 inst->tagorder_count++;
618 if (get_tag(&type) <= 0 || type != menu_next)
619 break;
622 return true;
625 static int compare(const void *p1, const void *p2)
627 struct tagentry *e1 = (struct tagentry *)p1;
628 struct tagentry *e2 = (struct tagentry *)p2;
630 if (sort_inverse)
631 return strncasecmp(e2->name, e1->name, MAX_PATH);
633 return strncasecmp(e1->name, e2->name, MAX_PATH);
636 static void tagtree_buffer_event(struct mp3entry *id3)
638 /* Do not gather data unless proper setting has been enabled. */
639 if (!global_settings.runtimedb)
640 return;
642 logf("be:%s", id3->path);
644 if (!tagcache_find_index(&tcs, id3->path))
646 logf("tc stat: not found: %s", id3->path);
647 return;
650 id3->playcount = tagcache_get_numeric(&tcs, tag_playcount);
651 if (!id3->rating)
652 id3->rating = tagcache_get_numeric(&tcs, tag_rating);
653 id3->lastplayed = tagcache_get_numeric(&tcs, tag_lastplayed);
654 id3->score = tagcache_get_numeric(&tcs, tag_virt_autoscore) / 10;
655 id3->playtime = tagcache_get_numeric(&tcs, tag_playtime);
657 /* Store our tagcache index pointer. */
658 id3->tagcache_idx = tcs.idx_id+1;
660 tagcache_search_finish(&tcs);
663 static void tagtree_track_finish_event(struct mp3entry *id3)
665 long playcount;
666 long playtime;
667 long lastplayed;
668 long tagcache_idx;
670 /* Do not gather data unless proper setting has been enabled. */
671 if (!global_settings.runtimedb)
673 logf("runtimedb gathering not enabled");
674 return;
677 tagcache_idx=id3->tagcache_idx;
678 if (!tagcache_idx)
680 logf("No tagcache index pointer found");
681 return;
683 tagcache_idx--;
685 /* Don't process unplayed tracks. */
686 if (id3->elapsed == 0)
688 logf("not logging unplayed track");
689 return;
692 playcount = id3->playcount + 1;
693 lastplayed = tagcache_increase_serial();
694 if (lastplayed < 0)
696 logf("incorrect tc serial:%ld", lastplayed);
697 return;
700 /* Ignore the last 15s (crossfade etc.) */
701 playtime = id3->playtime + MIN(id3->length, id3->elapsed + 15 * 1000);
703 logf("ube:%s", id3->path);
704 logf("-> %ld/%ld", playcount, playtime);
705 logf("-> %ld/%ld/%ld", id3->elapsed, id3->length, MIN(id3->length, id3->elapsed + 15 * 1000));
707 /* Queue the updates to the tagcache system. */
708 tagcache_update_numeric(tagcache_idx, tag_playcount, playcount);
709 tagcache_update_numeric(tagcache_idx, tag_playtime, playtime);
710 tagcache_update_numeric(tagcache_idx, tag_lastplayed, lastplayed);
713 bool tagtree_export(void)
715 gui_syncsplash(0, str(LANG_CREATING));
716 if (!tagcache_create_changelog(&tcs))
718 gui_syncsplash(HZ*2, ID2P(LANG_FAILED));
721 return false;
724 bool tagtree_import(void)
726 gui_syncsplash(0, ID2P(LANG_WAIT));
727 if (!tagcache_import_changelog())
729 gui_syncsplash(HZ*2, ID2P(LANG_FAILED));
732 return false;
735 static bool parse_menu(const char *filename);
737 static int parse_line(int n, const char *buf, void *parameters)
739 char data[256];
740 int variable;
741 static bool read_menu;
742 int i;
744 (void)parameters;
746 logf("parse:%d/%s", n, buf);
748 /* First line, do initialisation. */
749 if (n == 0)
751 if (strcasecmp(TAGNAVI_VERSION, buf))
753 logf("Version mismatch");
754 return -1;
757 read_menu = false;
760 if (buf[0] == '#')
761 return 0;
763 if (buf[0] == '\0')
765 if (read_menu)
767 /* End the menu */
768 read_menu = false;
770 return 0;
773 if (!read_menu)
775 strp = buf;
776 if (get_tag(&variable) <= 0)
777 return 0;
779 switch (variable)
781 case var_format:
782 if (add_format(strp) < 0)
784 logf("Format add fail: %s", data);
786 break;
788 case var_include:
789 if (get_token_str(data, sizeof(data)) < 0)
791 logf("%%include empty");
792 return 0;
795 if (!parse_menu(data))
797 logf("Load menu fail: %s", data);
799 break;
801 case var_menu_start:
802 if (menu_count >= TAGMENU_MAX_MENUS)
804 logf("max menucount reached");
805 return 0;
808 if (get_token_str(data, sizeof data) < 0)
810 logf("%%menu_start id empty");
811 return 0;
814 menu = NULL;
815 for (i = 0; i < menu_count; i++)
817 if (!strcasecmp(menus[i]->id, data))
819 menu = menus[i];
823 if (menu == NULL)
825 menus[menu_count] = buffer_alloc(sizeof(struct root_menu));
826 menu = menus[menu_count];
827 ++menu_count;
828 memset(menu, 0, sizeof(struct root_menu));
829 strncpy(menu->id, data, MAX_MENU_ID_SIZE-1);
832 if (get_token_str(menu->title, sizeof(menu->title)) < 0)
834 logf("%%menu_start title empty");
835 return 0;
837 logf("menu: %s", menu->title);
838 read_menu = true;
839 break;
841 case var_rootmenu:
842 /* Only set root menu once. */
843 if (root_menu >= 0)
844 break;
846 if (get_token_str(data, sizeof(data)) < 0)
848 logf("%%root_menu empty");
849 return 0;
852 for (i = 0; i < menu_count; i++)
854 if (!strcasecmp(menus[i]->id, data))
856 root_menu = i;
859 break;
862 return 0;
865 if (menu->itemcount >= TAGMENU_MAX_ITEMS)
867 logf("max itemcount reached");
868 return 0;
871 /* Allocate */
872 if (menu->items[menu->itemcount] == NULL)
874 menu->items[menu->itemcount] = buffer_alloc(sizeof(struct menu_entry));
875 memset(menu->items[menu->itemcount], 0, sizeof(struct menu_entry));
876 menu->items[menu->itemcount]->si = buffer_alloc(sizeof(struct search_instruction));
879 memset(menu->items[menu->itemcount]->si, 0, sizeof(struct search_instruction));
880 if (!parse_search(menu->items[menu->itemcount], buf))
881 return 0;
883 menu->itemcount++;
885 return 0;
888 static bool parse_menu(const char *filename)
890 int fd;
891 char buf[1024];
893 if (menu_count >= TAGMENU_MAX_MENUS)
895 logf("max menucount reached");
896 return false;
899 fd = open(filename, O_RDONLY);
900 if (fd < 0)
902 logf("Search instruction file not found.");
903 return false;
906 /* Now read file for real, parsing into si */
907 fast_readline(fd, buf, sizeof buf, NULL, parse_line);
908 close(fd);
910 return true;
913 void tagtree_init(void)
915 format_count = 0;
916 menu_count = 0;
917 menu = NULL;
918 root_menu = -1;
919 parse_menu(FILE_SEARCH_INSTRUCTIONS);
921 /* If no root menu is set, assume it's the first single menu
922 * we have. That shouldn't normally happen. */
923 if (root_menu < 0)
924 root_menu = 0;
926 uniqbuf = buffer_alloc(UNIQBUF_SIZE);
928 add_event(PLAYBACK_EVENT_TRACK_BUFFER, false, tagtree_buffer_event);
929 add_event(PLAYBACK_EVENT_TRACK_FINISH, false, tagtree_track_finish_event);
932 static bool show_search_progress(bool init, int count)
934 static int last_tick = 0;
936 /* Don't show splashes for 1/2 second after starting search */
937 if (init)
939 last_tick = current_tick + HZ/2;
940 return true;
943 /* Update progress every 1/10 of a second */
944 if (current_tick - last_tick > HZ/10)
946 gui_syncsplash(0, str(LANG_PLAYLIST_SEARCH_MSG), count,
947 str(LANG_OFF_ABORT));
948 if (action_userabort(TIMEOUT_NOBLOCK))
949 return false;
950 last_tick = current_tick;
951 yield();
954 return true;
957 static int format_str(struct tagcache_search *tcs, struct display_format *fmt,
958 char *buf, int buf_size)
960 char fmtbuf[8];
961 bool read_format = false;
962 int fmtbuf_pos = 0;
963 int parpos = 0;
964 int buf_pos = 0;
965 int i;
967 memset(buf, 0, buf_size);
968 for (i = 0; fmt->formatstr[i] != '\0'; i++)
970 if (fmt->formatstr[i] == '%')
972 read_format = true;
973 fmtbuf_pos = 0;
974 if (parpos >= fmt->tag_count)
976 logf("too many format tags");
977 return -1;
981 if (read_format)
983 fmtbuf[fmtbuf_pos++] = fmt->formatstr[i];
984 if (fmtbuf_pos >= buf_size)
986 logf("format parse error");
987 return -2;
990 if (fmt->formatstr[i] == 's')
992 fmtbuf[fmtbuf_pos] = '\0';
993 read_format = false;
994 if (fmt->tags[parpos] == tcs->type)
996 snprintf(&buf[buf_pos], buf_size - buf_pos, fmtbuf, tcs->result);
998 else
1000 /* Need to fetch the tag data. */
1001 if (!tagcache_retrieve(tcs, tcs->idx_id, fmt->tags[parpos],
1002 &buf[buf_pos], buf_size - buf_pos))
1004 logf("retrieve failed");
1005 return -3;
1008 buf_pos += strlen(&buf[buf_pos]);
1009 parpos++;
1011 else if (fmt->formatstr[i] == 'd')
1013 fmtbuf[fmtbuf_pos] = '\0';
1014 read_format = false;
1015 snprintf(&buf[buf_pos], buf_size - buf_pos, fmtbuf,
1016 tagcache_get_numeric(tcs, fmt->tags[parpos]));
1017 buf_pos += strlen(&buf[buf_pos]);
1018 parpos++;
1020 continue;
1023 buf[buf_pos++] = fmt->formatstr[i];
1025 if (buf_pos - 1 >= buf_size)
1027 logf("buffer overflow");
1028 return -4;
1032 buf[buf_pos++] = '\0';
1034 return 0;
1037 static int retrieve_entries(struct tree_context *c, struct tagcache_search *tcs,
1038 int offset, bool init)
1040 struct tagentry *dptr = (struct tagentry *)c->dircache;
1041 struct display_format *fmt;
1042 int i;
1043 int namebufused = 0;
1044 int total_count = 0;
1045 int special_entry_count = 0;
1046 int level = c->currextra;
1047 int tag;
1048 bool sort = false;
1049 int sort_limit;
1050 int strip;
1052 if (init
1053 #ifdef HAVE_TC_RAMCACHE
1054 && !tagcache_is_ramcache()
1055 #endif
1058 /* Show search progress straight away if the disk needs to spin up,
1059 otherwise show it after the normal 1/2 second delay */
1060 show_search_progress(
1061 #if !defined(HAVE_FLASH_STORAGE) && !defined(SIMULATOR)
1062 ata_disk_is_active()
1063 #else
1064 true
1065 #endif
1066 , 0);
1069 if (c->currtable == allsubentries)
1071 tag = tag_title;
1072 level--;
1074 else
1075 tag = csi->tagorder[level];
1077 if (!tagcache_search(tcs, tag))
1078 return -1;
1080 /* Prevent duplicate entries in the search list. */
1081 tagcache_search_set_uniqbuf(tcs, uniqbuf, UNIQBUF_SIZE);
1083 if (level || csi->clause_count[0] || tagcache_is_numeric_tag(tag))
1084 sort = true;
1086 for (i = 0; i < level; i++)
1088 if (tagcache_is_numeric_tag(csi->tagorder[i]))
1090 static struct tagcache_search_clause cc;
1092 memset(&cc, 0, sizeof(struct tagcache_search_clause));
1093 cc.tag = csi->tagorder[i];
1094 cc.type = clause_is;
1095 cc.numeric = true;
1096 cc.numeric_data = csi->result_seek[i];
1097 tagcache_search_add_clause(tcs, &cc);
1099 else
1101 tagcache_search_add_filter(tcs, csi->tagorder[i],
1102 csi->result_seek[i]);
1106 for (i = 0; i <= level; i++)
1108 int j;
1110 for (j = 0; j < csi->clause_count[i]; j++)
1111 tagcache_search_add_clause(tcs, csi->clause[i][j]);
1114 current_offset = offset;
1115 current_entry_count = 0;
1116 c->dirfull = false;
1118 fmt = NULL;
1119 for (i = 0; i < format_count; i++)
1121 if (formats[i]->group_id == csi->format_id[level])
1122 fmt = formats[i];
1125 if (fmt)
1127 sort_inverse = fmt->sort_inverse;
1128 sort_limit = fmt->limit;
1129 strip = fmt->strip;
1131 /* Check if sorting is forced. */
1132 if (fmt->sort)
1133 sort = true;
1135 else
1137 sort_inverse = false;
1138 sort_limit = 0;
1139 strip = 0;
1142 if (tag != tag_title && tag != tag_filename)
1144 if (offset == 0)
1146 dptr->newtable = allsubentries;
1147 dptr->name = str(LANG_TAGNAVI_ALL_TRACKS);
1148 dptr++;
1149 current_entry_count++;
1151 if (offset <= 1)
1153 dptr->newtable = navibrowse;
1154 dptr->name = str(LANG_TAGNAVI_RANDOM);
1155 dptr->extraseek = -1;
1156 dptr++;
1157 current_entry_count++;
1159 special_entry_count+=2;
1162 total_count += special_entry_count;
1164 while (tagcache_get_next(tcs))
1166 if (total_count++ < offset)
1167 continue;
1169 dptr->newtable = navibrowse;
1170 if (tag == tag_title || tag == tag_filename)
1172 dptr->newtable = playtrack;
1173 dptr->extraseek = tcs->idx_id;
1175 else
1176 dptr->extraseek = tcs->result_seek;
1178 fmt = NULL;
1179 /* Check the format */
1180 for (i = 0; i < format_count; i++)
1182 if (formats[i]->group_id != csi->format_id[level])
1183 continue;
1185 if (tagcache_check_clauses(tcs, formats[i]->clause,
1186 formats[i]->clause_count))
1188 fmt = formats[i];
1189 break;
1193 if (!tcs->ramresult || fmt)
1195 char buf[MAX_PATH];
1197 if (fmt)
1199 if (format_str(tcs, fmt, buf, sizeof buf) < 0)
1201 logf("format_str() failed");
1202 return 0;
1206 dptr->name = &c->name_buffer[namebufused];
1207 if (fmt)
1208 namebufused += strlen(buf)+1;
1209 else
1210 namebufused += tcs->result_len;
1212 if (namebufused >= c->name_buffer_size)
1214 logf("chunk mode #2: %d", current_entry_count);
1215 c->dirfull = true;
1216 sort = false;
1217 break ;
1219 if (fmt)
1220 strcpy(dptr->name, buf);
1221 else
1222 strcpy(dptr->name, tcs->result);
1224 else
1225 dptr->name = tcs->result;
1227 dptr++;
1228 current_entry_count++;
1230 if (current_entry_count >= global_settings.max_files_in_dir)
1232 logf("chunk mode #3: %d", current_entry_count);
1233 c->dirfull = true;
1234 sort = false;
1235 break ;
1238 if (init && !tcs->ramsearch)
1240 if (!show_search_progress(false, total_count))
1242 tagcache_search_finish(tcs);
1243 return current_entry_count;
1248 if (sort)
1249 qsort(c->dircache + special_entry_count * c->dentry_size,
1250 current_entry_count - special_entry_count,
1251 c->dentry_size, compare);
1253 if (!init)
1255 tagcache_search_finish(tcs);
1256 return current_entry_count;
1259 while (tagcache_get_next(tcs))
1261 if (!tcs->ramsearch)
1263 if (!show_search_progress(false, total_count))
1264 break;
1266 total_count++;
1269 tagcache_search_finish(tcs);
1271 if (!sort && (sort_inverse || sort_limit))
1273 gui_syncsplash(HZ*4, ID2P(LANG_SHOWDIR_BUFFER_FULL), total_count);
1274 logf("Too small dir buffer");
1275 return 0;
1278 if (sort_limit)
1279 total_count = MIN(total_count, sort_limit);
1281 if (strip)
1283 dptr = c->dircache;
1284 for (i = 0; i < total_count; i++, dptr++)
1286 int len = strlen(dptr->name);
1288 if (len < strip)
1289 continue;
1291 dptr->name = &dptr->name[strip];
1295 return total_count;
1298 static int load_root(struct tree_context *c)
1300 struct tagentry *dptr = (struct tagentry *)c->dircache;
1301 int i;
1303 tc = c;
1304 c->currtable = root;
1305 if (c->dirlevel == 0)
1306 c->currextra = root_menu;
1308 menu = menus[c->currextra];
1309 if (menu == NULL)
1310 return 0;
1312 for (i = 0; i < menu->itemcount; i++)
1314 dptr->name = menu->items[i]->name;
1315 switch (menu->items[i]->type)
1317 case menu_next:
1318 dptr->newtable = navibrowse;
1319 dptr->extraseek = i;
1320 break;
1322 case menu_load:
1323 dptr->newtable = root;
1324 dptr->extraseek = menu->items[i]->link;
1325 break;
1328 dptr++;
1331 current_offset = 0;
1332 current_entry_count = i;
1334 return i;
1337 int tagtree_load(struct tree_context* c)
1339 int count;
1340 int table = c->currtable;
1342 c->dentry_size = sizeof(struct tagentry);
1343 c->dirsindir = 0;
1345 if (!table)
1347 c->dirfull = false;
1348 table = root;
1349 c->currtable = table;
1350 c->currextra = root_menu;
1353 switch (table)
1355 case root:
1356 count = load_root(c);
1357 break;
1359 case allsubentries:
1360 case navibrowse:
1361 logf("navibrowse...");
1362 cpu_boost(true);
1363 count = retrieve_entries(c, &tcs, 0, true);
1364 cpu_boost(false);
1365 break;
1367 default:
1368 logf("Unsupported table %d\n", table);
1369 return -1;
1372 if (count < 0)
1374 c->dirlevel = 0;
1375 count = load_root(c);
1376 gui_syncsplash(HZ, str(LANG_TAGCACHE_BUSY));
1379 /* The _total_ numer of entries available. */
1380 c->dirlength = c->filesindir = count;
1382 return count;
1385 int tagtree_enter(struct tree_context* c)
1387 int rc = 0;
1388 struct tagentry *dptr;
1389 struct mp3entry *id3;
1390 int newextra;
1391 int seek;
1392 int source;
1394 dptr = tagtree_get_entry(c, c->selected_item);
1396 c->dirfull = false;
1397 seek = dptr->extraseek;
1398 if (seek == -1)
1400 if(c->filesindir<=2)
1401 return 0;
1402 srand(current_tick);
1403 dptr = (tagtree_get_entry(c, 2+(rand() % (c->filesindir-2))));
1404 seek = dptr->extraseek;
1406 newextra = dptr->newtable;
1408 if (c->dirlevel >= MAX_DIR_LEVELS)
1409 return 0;
1411 c->selected_item_history[c->dirlevel]=c->selected_item;
1412 c->table_history[c->dirlevel] = c->currtable;
1413 c->extra_history[c->dirlevel] = c->currextra;
1414 c->pos_history[c->dirlevel] = c->firstpos;
1415 c->dirlevel++;
1417 switch (c->currtable) {
1418 case root:
1419 c->currextra = newextra;
1421 if (newextra == root)
1423 menu = menus[seek];
1424 c->currextra = seek;
1427 else if (newextra == navibrowse)
1429 int i, j;
1431 csi = menu->items[seek]->si;
1432 c->currextra = 0;
1434 strncpy(current_title[c->currextra], dptr->name,
1435 sizeof(current_title[0]) - 1);
1437 /* Read input as necessary. */
1438 for (i = 0; i < csi->tagorder_count; i++)
1440 for (j = 0; j < csi->clause_count[i]; j++)
1442 char* searchstring;
1443 source = csi->clause[i][j]->source;
1445 if (source == source_constant)
1446 continue;
1448 searchstring=csi->clause[i][j]->str;
1449 *searchstring = '\0';
1451 id3 = audio_current_track();
1453 if (source == source_current_path && id3)
1455 char *e;
1456 strncpy(searchstring, id3->path, SEARCHSTR_SIZE);
1457 e = strrchr(searchstring, '/');
1458 if (e)
1459 *e = '\0';
1461 else if (source > source_runtime && id3)
1464 int k = source-source_runtime;
1465 int offset = id3_to_search_mapping[k].id3_offset;
1466 char **src = (char**)((char*)id3 + offset);
1467 if (*src)
1469 strncpy(searchstring, *src, SEARCHSTR_SIZE);
1470 searchstring[SEARCHSTR_SIZE-1] = '\0';
1473 else
1475 rc = kbd_input(searchstring, SEARCHSTR_SIZE);
1476 if (rc == -1 || !searchstring[0])
1478 tagtree_exit(c);
1479 return 0;
1481 if (csi->clause[i][j]->numeric)
1482 csi->clause[i][j]->numeric_data = atoi(searchstring);
1489 c->currtable = newextra;
1491 break;
1493 case navibrowse:
1494 case allsubentries:
1495 if (newextra == playtrack)
1497 c->dirlevel--;
1498 /* about to create a new current playlist...
1499 allow user to cancel the operation */
1500 if (!warn_on_pl_erase())
1501 break;
1503 if (tagtree_play_folder(c) >= 0)
1504 rc = 2;
1505 break;
1508 c->currtable = newextra;
1509 csi->result_seek[c->currextra] = seek;
1510 if (c->currextra < csi->tagorder_count-1)
1511 c->currextra++;
1512 else
1513 c->dirlevel--;
1515 /* Update the statusbar title */
1516 strncpy(current_title[c->currextra], dptr->name,
1517 sizeof(current_title[0]) - 1);
1518 break;
1520 default:
1521 c->dirlevel--;
1522 break;
1525 c->selected_item=0;
1526 gui_synclist_select_item(&tree_lists, c->selected_item);
1528 return rc;
1531 void tagtree_exit(struct tree_context* c)
1533 c->dirfull = false;
1534 if (c->dirlevel > 0)
1535 c->dirlevel--;
1536 c->selected_item=c->selected_item_history[c->dirlevel];
1537 gui_synclist_select_item(&tree_lists, c->selected_item);
1538 c->currtable = c->table_history[c->dirlevel];
1539 c->currextra = c->extra_history[c->dirlevel];
1540 c->firstpos = c->pos_history[c->dirlevel];
1543 int tagtree_get_filename(struct tree_context* c, char *buf, int buflen)
1545 struct tagentry *entry;
1547 entry = tagtree_get_entry(c, c->selected_item);
1549 if (!tagcache_search(&tcs, tag_filename))
1550 return -1;
1552 if (!tagcache_retrieve(&tcs, entry->extraseek, tcs.type, buf, buflen))
1554 tagcache_search_finish(&tcs);
1555 return -2;
1558 tagcache_search_finish(&tcs);
1560 return 0;
1563 static bool insert_all_playlist(struct tree_context *c, int position, bool queue)
1565 int i;
1566 char buf[MAX_PATH];
1567 int from, to, direction;
1568 int files_left = c->filesindir;
1570 cpu_boost(true);
1571 if (!tagcache_search(&tcs, tag_filename))
1573 gui_syncsplash(HZ, ID2P(LANG_TAGCACHE_BUSY));
1574 cpu_boost(false);
1575 return false;
1578 if (position == PLAYLIST_REPLACE)
1580 if (playlist_remove_all_tracks(NULL) == 0)
1581 position = PLAYLIST_INSERT_LAST;
1582 else return -1; }
1584 if (position == PLAYLIST_INSERT_FIRST)
1586 from = c->filesindir - 1;
1587 to = -1;
1588 direction = -1;
1590 else
1592 from = 0;
1593 to = c->filesindir;
1594 direction = 1;
1597 for (i = from; i != to; i += direction)
1599 /* Count back to zero */
1600 if (!show_search_progress(false, files_left--))
1601 break;
1603 if (!tagcache_retrieve(&tcs, tagtree_get_entry(c, i)->extraseek,
1604 tcs.type, buf, sizeof buf))
1606 continue;
1609 if (playlist_insert_track(NULL, buf, position, queue, false) < 0)
1611 logf("playlist_insert_track failed");
1612 break;
1614 yield();
1616 playlist_sync(NULL);
1617 tagcache_search_finish(&tcs);
1618 cpu_boost(false);
1620 return true;
1623 bool tagtree_insert_selection_playlist(int position, bool queue)
1625 struct tagentry *dptr;
1626 char buf[MAX_PATH];
1627 int dirlevel = tc->dirlevel;
1629 /* We need to set the table to allsubentries. */
1630 show_search_progress(true, 0);
1632 dptr = tagtree_get_entry(tc, tc->selected_item);
1634 /* Insert a single track? */
1635 if (dptr->newtable == playtrack)
1637 if (tagtree_get_filename(tc, buf, sizeof buf) < 0)
1639 logf("tagtree_get_filename failed");
1640 return false;
1642 playlist_insert_track(NULL, buf, position, queue, true);
1644 return true;
1647 if (dptr->newtable == navibrowse)
1649 tagtree_enter(tc);
1650 tagtree_load(tc);
1651 dptr = tagtree_get_entry(tc, tc->selected_item);
1653 else if (dptr->newtable != allsubentries)
1655 logf("unsupported table: %d", dptr->newtable);
1656 return false;
1659 /* Now the current table should be allsubentries. */
1660 if (dptr->newtable != playtrack)
1662 tagtree_enter(tc);
1663 tagtree_load(tc);
1664 dptr = tagtree_get_entry(tc, tc->selected_item);
1666 /* And now the newtable should be playtrack. */
1667 if (dptr->newtable != playtrack)
1669 logf("newtable: %d !!", dptr->newtable);
1670 tc->dirlevel = dirlevel;
1671 return false;
1675 if (tc->filesindir <= 0)
1676 gui_syncsplash(HZ, ID2P(LANG_END_PLAYLIST));
1677 else
1679 logf("insert_all_playlist");
1680 if (!insert_all_playlist(tc, position, queue))
1681 gui_syncsplash(HZ*2, ID2P(LANG_FAILED));
1684 /* Finally return the dirlevel to its original value. */
1685 while (tc->dirlevel > dirlevel)
1686 tagtree_exit(tc);
1687 tagtree_load(tc);
1689 return true;
1692 static int tagtree_play_folder(struct tree_context* c)
1694 if (playlist_create(NULL, NULL) < 0)
1696 logf("Failed creating playlist\n");
1697 return -1;
1700 if (!insert_all_playlist(c, PLAYLIST_INSERT_LAST, false))
1701 return -2;
1703 if (global_settings.playlist_shuffle)
1704 c->selected_item = playlist_shuffle(current_tick, c->selected_item);
1705 if (!global_settings.play_selected)
1706 c->selected_item = 0;
1707 gui_synclist_select_item(&tree_lists, c->selected_item);
1709 playlist_start(c->selected_item,0);
1711 return 0;
1714 struct tagentry* tagtree_get_entry(struct tree_context *c, int id)
1716 struct tagentry *entry = (struct tagentry *)c->dircache;
1717 int realid = id - current_offset;
1719 /* Load the next chunk if necessary. */
1720 if (realid >= current_entry_count || realid < 0)
1722 cpu_boost(true);
1723 if (retrieve_entries(c, &tcs2, MAX(0, id - (current_entry_count / 2)),
1724 false) < 0)
1726 logf("retrieve failed");
1727 cpu_boost(false);
1728 return NULL;
1730 realid = id - current_offset;
1731 cpu_boost(false);
1734 return &entry[realid];
1737 char *tagtree_get_title(struct tree_context* c)
1739 switch (c->currtable)
1741 case root:
1742 return menu->title;
1744 case navibrowse:
1745 case allsubentries:
1746 return current_title[c->currextra];
1749 return "?";
1752 int tagtree_get_attr(struct tree_context* c)
1754 int attr = -1;
1755 switch (c->currtable)
1757 case navibrowse:
1758 if (csi->tagorder[c->currextra] == tag_title)
1759 attr = FILE_ATTR_AUDIO;
1760 else
1761 attr = ATTR_DIRECTORY;
1762 break;
1764 case allsubentries:
1765 attr = FILE_ATTR_AUDIO;
1766 break;
1768 default:
1769 attr = ATTR_DIRECTORY;
1770 break;
1773 return attr;
1776 int tagtree_get_icon(struct tree_context* c)
1778 int icon = Icon_Folder;
1780 if (tagtree_get_attr(c) == FILE_ATTR_AUDIO)
1781 icon = Icon_Audio;
1783 return icon;