2006-03-26 11:33:42 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 by Miika Pekkarinen
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Basic structure on this file was copied from dbtree.c and modified to
|
|
|
|
* support the tag cache interface.
|
|
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "system.h"
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "splash.h"
|
|
|
|
#include "icons.h"
|
|
|
|
#include "tree.h"
|
2006-08-15 12:27:07 +00:00
|
|
|
#include "action.h"
|
2006-03-26 11:33:42 +00:00
|
|
|
#include "settings.h"
|
|
|
|
#include "tagcache.h"
|
|
|
|
#include "tagtree.h"
|
|
|
|
#include "lang.h"
|
|
|
|
#include "logf.h"
|
|
|
|
#include "playlist.h"
|
|
|
|
#include "keyboard.h"
|
|
|
|
#include "gui/list.h"
|
2006-04-04 19:28:13 +00:00
|
|
|
#include "buffer.h"
|
|
|
|
#include "atoi.h"
|
2006-07-15 17:36:25 +00:00
|
|
|
#include "playback.h"
|
2006-08-09 07:28:48 +00:00
|
|
|
#include "yesno.h"
|
2006-04-04 19:28:13 +00:00
|
|
|
|
|
|
|
#define FILE_SEARCH_INSTRUCTIONS ROCKBOX_DIR "/tagnavi.config"
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
static int tagtree_play_folder(struct tree_context* c);
|
2006-04-04 19:28:13 +00:00
|
|
|
|
2006-10-10 10:29:42 +00:00
|
|
|
static char searchstring[128];
|
2006-08-25 13:22:46 +00:00
|
|
|
|
2006-08-26 22:00:22 +00:00
|
|
|
enum variables {
|
|
|
|
var_sorttype = 100,
|
2006-09-19 11:54:33 +00:00
|
|
|
var_limit,
|
2006-09-26 18:59:16 +00:00
|
|
|
var_strip,
|
2006-09-19 11:54:33 +00:00
|
|
|
var_menu_start,
|
|
|
|
var_include,
|
|
|
|
var_rootmenu,
|
2006-10-15 11:01:18 +00:00
|
|
|
var_format,
|
2006-09-19 11:54:33 +00:00
|
|
|
menu_next,
|
|
|
|
menu_load,
|
2006-08-26 22:00:22 +00:00
|
|
|
};
|
|
|
|
|
2006-08-25 13:22:46 +00:00
|
|
|
/* Capacity 10 000 entries (for example 10k different artists) */
|
|
|
|
#define UNIQBUF_SIZE (64*1024)
|
|
|
|
static long *uniqbuf;
|
|
|
|
|
2006-04-04 19:28:13 +00:00
|
|
|
#define MAX_TAGS 5
|
|
|
|
|
2006-08-26 22:00:22 +00:00
|
|
|
static struct tagcache_search tcs, tcs2;
|
|
|
|
static bool sort_inverse;
|
|
|
|
|
2006-07-15 17:36:25 +00:00
|
|
|
/*
|
2006-08-26 22:00:22 +00:00
|
|
|
* "%3d. %s" autoscore title %sort = "inverse" %limit = "100"
|
2006-07-15 17:36:25 +00:00
|
|
|
*
|
|
|
|
* valid = true
|
|
|
|
* formatstr = "%-3d. %s"
|
|
|
|
* tags[0] = tag_autoscore
|
|
|
|
* tags[1] = tag_title
|
|
|
|
* tag_count = 2
|
2006-08-26 22:00:22 +00:00
|
|
|
*
|
|
|
|
* limit = 100
|
|
|
|
* sort_inverse = true
|
2006-07-15 17:36:25 +00:00
|
|
|
*/
|
|
|
|
struct display_format {
|
2006-10-15 11:01:18 +00:00
|
|
|
char name[32];
|
|
|
|
struct tagcache_search_clause *clause[TAGCACHE_MAX_CLAUSES];
|
|
|
|
int clause_count;
|
|
|
|
char *formatstr;
|
|
|
|
int group_id;
|
2006-07-15 17:36:25 +00:00
|
|
|
int tags[MAX_TAGS];
|
|
|
|
int tag_count;
|
2006-08-26 22:00:22 +00:00
|
|
|
|
|
|
|
int limit;
|
2006-09-26 18:59:16 +00:00
|
|
|
int strip;
|
2006-08-26 22:00:22 +00:00
|
|
|
bool sort_inverse;
|
2006-07-15 17:36:25 +00:00
|
|
|
};
|
|
|
|
|
2006-10-15 11:01:18 +00:00
|
|
|
static struct display_format *formats[TAGMENU_MAX_FMTS];
|
|
|
|
static int format_count;
|
|
|
|
|
2006-04-04 19:28:13 +00:00
|
|
|
struct search_instruction {
|
|
|
|
char name[64];
|
|
|
|
int tagorder[MAX_TAGS];
|
|
|
|
int tagorder_count;
|
2006-10-15 11:01:18 +00:00
|
|
|
struct tagcache_search_clause *clause[MAX_TAGS][TAGCACHE_MAX_CLAUSES];
|
|
|
|
int format_id[MAX_TAGS];
|
2006-04-04 19:28:13 +00:00
|
|
|
int clause_count[MAX_TAGS];
|
|
|
|
int result_seek[MAX_TAGS];
|
|
|
|
};
|
|
|
|
|
2006-09-19 11:54:33 +00:00
|
|
|
struct menu_entry {
|
|
|
|
char name[64];
|
|
|
|
int type;
|
|
|
|
struct search_instruction *si;
|
|
|
|
int link;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct root_menu {
|
|
|
|
char title[64];
|
|
|
|
char id[32];
|
|
|
|
int itemcount;
|
|
|
|
struct root_menu *parent;
|
|
|
|
struct menu_entry *items[TAGMENU_MAX_ITEMS];
|
|
|
|
};
|
|
|
|
|
2006-09-25 19:52:38 +00:00
|
|
|
/* Statusbar text of the current view. */
|
|
|
|
static char current_title[MAX_TAGS][128];
|
|
|
|
|
2006-09-26 06:40:14 +00:00
|
|
|
static struct root_menu *menus[TAGMENU_MAX_MENUS];
|
2006-09-19 11:54:33 +00:00
|
|
|
static struct root_menu *menu;
|
|
|
|
static struct search_instruction *csi;
|
2006-04-04 19:28:13 +00:00
|
|
|
static const char *strp;
|
2006-09-19 11:54:33 +00:00
|
|
|
static int menu_count;
|
|
|
|
static int root_menu;
|
2006-04-04 19:28:13 +00:00
|
|
|
|
2006-04-15 13:57:15 +00:00
|
|
|
static int current_offset;
|
|
|
|
static int current_entry_count;
|
|
|
|
|
2006-10-15 11:01:18 +00:00
|
|
|
static int format_count;
|
2006-07-25 07:41:00 +00:00
|
|
|
static struct tree_context *tc;
|
|
|
|
|
2006-04-04 19:28:13 +00:00
|
|
|
static int get_token_str(char *buf, int size)
|
|
|
|
{
|
|
|
|
/* Find the start. */
|
|
|
|
while (*strp != '"' && *strp != '\0')
|
|
|
|
strp++;
|
|
|
|
|
|
|
|
if (*strp == '\0' || *(++strp) == '\0')
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Read the data. */
|
|
|
|
while (*strp != '"' && *strp != '\0' && --size > 0)
|
|
|
|
*(buf++) = *(strp++);
|
|
|
|
|
|
|
|
*buf = '\0';
|
|
|
|
if (*strp != '"')
|
|
|
|
return -2;
|
|
|
|
|
|
|
|
strp++;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define MATCH(tag,str1,str2,settag) \
|
|
|
|
if (!strcasecmp(str1, str2)) { \
|
|
|
|
*tag = settag; \
|
|
|
|
return 1; \
|
|
|
|
}
|
|
|
|
|
|
|
|
static int get_tag(int *tag)
|
|
|
|
{
|
2006-10-10 10:29:42 +00:00
|
|
|
char buf[128];
|
2006-04-04 19:28:13 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Find the start. */
|
2006-09-19 11:54:33 +00:00
|
|
|
while ((*strp == ' ' || *strp == '>') && *strp != '\0')
|
2006-04-04 19:28:13 +00:00
|
|
|
strp++;
|
|
|
|
|
2006-09-19 11:54:33 +00:00
|
|
|
if (*strp == '\0' || *strp == '?')
|
2006-04-04 19:28:13 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
for (i = 0; i < (int)sizeof(buf)-1; i++)
|
|
|
|
{
|
|
|
|
if (*strp == '\0' || *strp == ' ')
|
|
|
|
break ;
|
|
|
|
buf[i] = *strp;
|
|
|
|
strp++;
|
|
|
|
}
|
|
|
|
buf[i] = '\0';
|
|
|
|
|
|
|
|
MATCH(tag, buf, "album", tag_album);
|
2006-04-19 11:03:37 +00:00
|
|
|
MATCH(tag, buf, "artist", tag_artist);
|
|
|
|
MATCH(tag, buf, "bitrate", tag_bitrate);
|
2006-04-04 19:28:13 +00:00
|
|
|
MATCH(tag, buf, "composer", tag_composer);
|
2006-04-19 11:03:37 +00:00
|
|
|
MATCH(tag, buf, "genre", tag_genre);
|
2006-04-04 19:28:13 +00:00
|
|
|
MATCH(tag, buf, "length", tag_length);
|
2006-04-19 11:03:37 +00:00
|
|
|
MATCH(tag, buf, "title", tag_title);
|
2006-07-16 15:04:46 +00:00
|
|
|
MATCH(tag, buf, "filename", tag_filename);
|
2006-04-04 19:28:13 +00:00
|
|
|
MATCH(tag, buf, "tracknum", tag_tracknumber);
|
2006-04-19 11:03:37 +00:00
|
|
|
MATCH(tag, buf, "year", tag_year);
|
2006-07-15 17:36:25 +00:00
|
|
|
MATCH(tag, buf, "playcount", tag_playcount);
|
2006-09-26 18:24:48 +00:00
|
|
|
MATCH(tag, buf, "lastplayed", tag_lastplayed);
|
2006-07-15 17:36:25 +00:00
|
|
|
MATCH(tag, buf, "autoscore", tag_virt_autoscore);
|
2006-08-26 22:00:22 +00:00
|
|
|
MATCH(tag, buf, "%sort", var_sorttype);
|
|
|
|
MATCH(tag, buf, "%limit", var_limit);
|
2006-09-26 18:59:16 +00:00
|
|
|
MATCH(tag, buf, "%strip", var_strip);
|
2006-09-19 11:54:33 +00:00
|
|
|
MATCH(tag, buf, "%menu_start", var_menu_start);
|
|
|
|
MATCH(tag, buf, "%include", var_include);
|
|
|
|
MATCH(tag, buf, "%root_menu", var_rootmenu);
|
2006-10-15 11:01:18 +00:00
|
|
|
MATCH(tag, buf, "%format", var_format);
|
2006-09-19 11:54:33 +00:00
|
|
|
MATCH(tag, buf, "->", menu_next);
|
|
|
|
MATCH(tag, buf, "==>", menu_load);
|
2006-04-04 19:28:13 +00:00
|
|
|
|
|
|
|
logf("NO MATCH: %s\n", buf);
|
|
|
|
if (buf[0] == '?')
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int get_clause(int *condition)
|
|
|
|
{
|
|
|
|
char buf[4];
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Find the start. */
|
|
|
|
while (*strp == ' ' && *strp != '\0')
|
|
|
|
strp++;
|
|
|
|
|
|
|
|
if (*strp == '\0')
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
for (i = 0; i < (int)sizeof(buf)-1; i++)
|
|
|
|
{
|
|
|
|
if (*strp == '\0' || *strp == ' ')
|
|
|
|
break ;
|
|
|
|
buf[i] = *strp;
|
|
|
|
strp++;
|
|
|
|
}
|
|
|
|
buf[i] = '\0';
|
|
|
|
|
|
|
|
MATCH(condition, buf, "=", clause_is);
|
2006-04-19 11:03:37 +00:00
|
|
|
MATCH(condition, buf, "==", clause_is);
|
2006-08-13 12:33:34 +00:00
|
|
|
MATCH(condition, buf, "!=", clause_is_not);
|
2006-04-04 19:28:13 +00:00
|
|
|
MATCH(condition, buf, ">", clause_gt);
|
|
|
|
MATCH(condition, buf, ">=", clause_gteq);
|
|
|
|
MATCH(condition, buf, "<", clause_lt);
|
|
|
|
MATCH(condition, buf, "<=", clause_lteq);
|
|
|
|
MATCH(condition, buf, "~", clause_contains);
|
2006-08-13 12:33:34 +00:00
|
|
|
MATCH(condition, buf, "!~", clause_not_contains);
|
2006-04-04 19:28:13 +00:00
|
|
|
MATCH(condition, buf, "^", clause_begins_with);
|
2006-08-13 12:33:34 +00:00
|
|
|
MATCH(condition, buf, "!^", clause_not_begins_with);
|
2006-04-04 19:28:13 +00:00
|
|
|
MATCH(condition, buf, "$", clause_ends_with);
|
2006-08-13 12:33:34 +00:00
|
|
|
MATCH(condition, buf, "!$", clause_not_ends_with);
|
2006-10-09 10:23:35 +00:00
|
|
|
MATCH(condition, buf, "@", clause_oneof);
|
2006-04-04 19:28:13 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-10-15 11:01:18 +00:00
|
|
|
static bool read_clause(struct tagcache_search_clause *clause)
|
2006-04-04 19:28:13 +00:00
|
|
|
{
|
2006-10-15 11:01:18 +00:00
|
|
|
char buf[256];
|
2006-04-04 19:28:13 +00:00
|
|
|
|
2006-10-15 11:01:18 +00:00
|
|
|
if (get_tag(&clause->tag) <= 0)
|
2006-04-04 19:28:13 +00:00
|
|
|
return false;
|
|
|
|
|
2006-10-15 11:01:18 +00:00
|
|
|
if (get_clause(&clause->type) <= 0)
|
2006-04-04 19:28:13 +00:00
|
|
|
return false;
|
|
|
|
|
2006-10-15 11:01:18 +00:00
|
|
|
if (get_token_str(buf, sizeof buf) < 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
clause->str = buffer_alloc(strlen(buf)+1);
|
|
|
|
strcpy(clause->str, buf);
|
|
|
|
|
|
|
|
logf("got clause: %d/%d [%s]", clause->tag, clause->type, clause->str);
|
|
|
|
|
|
|
|
if (*(clause->str) == '\0')
|
2006-04-04 19:28:13 +00:00
|
|
|
clause->input = true;
|
|
|
|
else
|
|
|
|
clause->input = false;
|
|
|
|
|
2006-10-15 11:01:18 +00:00
|
|
|
if (tagcache_is_numeric_tag(clause->tag))
|
2006-04-04 19:28:13 +00:00
|
|
|
{
|
|
|
|
clause->numeric = true;
|
2006-10-15 11:01:18 +00:00
|
|
|
clause->numeric_data = atoi(clause->str);
|
2006-04-04 19:28:13 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
clause->numeric = false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-08-26 22:00:22 +00:00
|
|
|
static bool read_variable(char *buf, int size)
|
|
|
|
{
|
|
|
|
int condition;
|
|
|
|
|
|
|
|
if (!get_clause(&condition))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (condition != clause_is)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (get_token_str(buf, size) < 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* "%3d. %s" autoscore title %sort = "inverse" %limit = "100" */
|
2006-07-15 17:36:25 +00:00
|
|
|
static int get_format_str(struct display_format *fmt)
|
|
|
|
{
|
|
|
|
int ret;
|
2006-10-11 04:32:33 +00:00
|
|
|
char buf[128];
|
2006-10-15 11:01:18 +00:00
|
|
|
int i;
|
2006-07-15 17:36:25 +00:00
|
|
|
|
|
|
|
memset(fmt, 0, sizeof(struct display_format));
|
|
|
|
|
2006-10-15 11:01:18 +00:00
|
|
|
if (get_token_str(fmt->name, sizeof fmt->name) < 0)
|
|
|
|
return -10;
|
|
|
|
|
|
|
|
/* Determine the group id */
|
|
|
|
fmt->group_id = 0;
|
|
|
|
for (i = 0; i < format_count; i++)
|
|
|
|
{
|
|
|
|
if (!strcasecmp(formats[i]->name, fmt->name))
|
|
|
|
{
|
|
|
|
fmt->group_id = formats[i]->group_id;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (formats[i]->group_id > fmt->group_id)
|
|
|
|
fmt->group_id = formats[i]->group_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == format_count)
|
|
|
|
fmt->group_id++;
|
|
|
|
|
|
|
|
logf("format: (%d) %s", fmt->group_id, fmt->name);
|
|
|
|
|
|
|
|
if (get_token_str(buf, sizeof buf) < 0)
|
2006-07-15 17:36:25 +00:00
|
|
|
return -10;
|
|
|
|
|
2006-10-15 11:01:18 +00:00
|
|
|
fmt->formatstr = buffer_alloc(strlen(buf) + 1);
|
|
|
|
strcpy(fmt->formatstr, buf);
|
|
|
|
|
2006-07-15 17:36:25 +00:00
|
|
|
while (fmt->tag_count < MAX_TAGS)
|
|
|
|
{
|
|
|
|
ret = get_tag(&fmt->tags[fmt->tag_count]);
|
|
|
|
if (ret < 0)
|
|
|
|
return -11;
|
|
|
|
|
|
|
|
if (ret == 0)
|
|
|
|
break;
|
|
|
|
|
2006-08-26 22:00:22 +00:00
|
|
|
switch (fmt->tags[fmt->tag_count]) {
|
|
|
|
case var_sorttype:
|
|
|
|
if (!read_variable(buf, sizeof buf))
|
|
|
|
return -12;
|
|
|
|
if (!strcasecmp("inverse", buf))
|
|
|
|
fmt->sort_inverse = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case var_limit:
|
|
|
|
if (!read_variable(buf, sizeof buf))
|
|
|
|
return -13;
|
|
|
|
fmt->limit = atoi(buf);
|
|
|
|
break;
|
|
|
|
|
2006-09-26 18:59:16 +00:00
|
|
|
case var_strip:
|
|
|
|
if (!read_variable(buf, sizeof buf))
|
|
|
|
return -14;
|
|
|
|
fmt->strip = atoi(buf);
|
|
|
|
break;
|
|
|
|
|
2006-08-26 22:00:22 +00:00
|
|
|
default:
|
|
|
|
fmt->tag_count++;
|
|
|
|
}
|
2006-07-15 17:36:25 +00:00
|
|
|
}
|
|
|
|
|
2006-10-15 11:01:18 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int add_format(const char *buf)
|
|
|
|
{
|
|
|
|
strp = buf;
|
|
|
|
|
|
|
|
if (formats[format_count] == NULL)
|
|
|
|
formats[format_count] = buffer_alloc(sizeof(struct display_format));
|
|
|
|
|
|
|
|
memset(formats[format_count], 0, sizeof(struct display_format));
|
|
|
|
if (get_format_str(formats[format_count]) < 0)
|
|
|
|
{
|
|
|
|
logf("get_format_str() parser failed!");
|
|
|
|
return -4;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (*strp != '\0' && *strp != '?')
|
|
|
|
strp++;
|
|
|
|
|
|
|
|
if (*strp == '?')
|
|
|
|
{
|
|
|
|
int clause_count = 0;
|
|
|
|
strp++;
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
formats[format_count]->clause[clause_count] =
|
|
|
|
buffer_alloc(sizeof(struct tagcache_search_clause));
|
|
|
|
|
|
|
|
if (!read_clause(formats[format_count]->clause[clause_count]))
|
|
|
|
break;
|
|
|
|
|
|
|
|
clause_count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
formats[format_count]->clause_count = clause_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
format_count++;
|
2006-07-15 17:36:25 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-04-04 19:28:13 +00:00
|
|
|
static int get_condition(struct search_instruction *inst)
|
|
|
|
{
|
2006-10-15 11:01:18 +00:00
|
|
|
int clause_count;
|
2006-10-11 04:32:33 +00:00
|
|
|
char buf[128];
|
2006-07-15 17:36:25 +00:00
|
|
|
|
2006-04-04 19:28:13 +00:00
|
|
|
switch (*strp)
|
|
|
|
{
|
2006-07-15 17:36:25 +00:00
|
|
|
case '=':
|
2006-10-15 11:01:18 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (get_token_str(buf, sizeof buf) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
for (i = 0; i < format_count; i++)
|
2006-07-15 17:36:25 +00:00
|
|
|
{
|
2006-10-15 11:01:18 +00:00
|
|
|
if (!strcasecmp(formats[i]->name, buf))
|
|
|
|
break;
|
2006-07-15 17:36:25 +00:00
|
|
|
}
|
2006-10-15 11:01:18 +00:00
|
|
|
|
|
|
|
if (i == format_count)
|
|
|
|
{
|
|
|
|
logf("format not found: %s", buf);
|
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
|
|
|
|
inst->format_id[inst->tagorder_count] = formats[i]->group_id;
|
2006-08-26 22:00:22 +00:00
|
|
|
return 1;
|
2006-10-15 11:01:18 +00:00
|
|
|
}
|
2006-04-04 19:28:13 +00:00
|
|
|
case '?':
|
|
|
|
case ' ':
|
|
|
|
case '&':
|
|
|
|
strp++;
|
|
|
|
return 1;
|
2006-09-19 11:54:33 +00:00
|
|
|
case '-':
|
2006-04-04 19:28:13 +00:00
|
|
|
case '\0':
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-10-15 11:01:18 +00:00
|
|
|
clause_count = inst->clause_count[inst->tagorder_count];
|
|
|
|
if (clause_count >= TAGCACHE_MAX_CLAUSES)
|
|
|
|
{
|
|
|
|
logf("Too many clauses");
|
|
|
|
return false;
|
|
|
|
}
|
2006-04-04 19:28:13 +00:00
|
|
|
|
2006-10-15 11:01:18 +00:00
|
|
|
inst->clause[inst->tagorder_count][clause_count] =
|
|
|
|
buffer_alloc(sizeof(struct tagcache_search_clause));
|
2006-04-04 19:28:13 +00:00
|
|
|
|
2006-10-15 11:01:18 +00:00
|
|
|
if (!read_clause(inst->clause[inst->tagorder_count][clause_count]))
|
|
|
|
return -1;
|
2006-04-04 19:28:13 +00:00
|
|
|
|
2006-10-15 11:01:18 +00:00
|
|
|
inst->clause_count[inst->tagorder_count]++;
|
2006-04-04 19:28:13 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* example search:
|
|
|
|
* "Best" artist ? year >= "2000" & title !^ "crap" & genre = "good genre" \
|
|
|
|
* : album ? year >= "2000" : songs
|
|
|
|
* ^ begins with
|
|
|
|
* * contains
|
|
|
|
* $ ends with
|
|
|
|
*/
|
|
|
|
|
2006-09-19 11:54:33 +00:00
|
|
|
static bool parse_search(struct menu_entry *entry, const char *str)
|
2006-04-04 19:28:13 +00:00
|
|
|
{
|
|
|
|
int ret;
|
2006-09-19 11:54:33 +00:00
|
|
|
int type;
|
|
|
|
struct search_instruction *inst = entry->si;
|
|
|
|
char buf[MAX_PATH];
|
|
|
|
int i;
|
2006-04-04 19:28:13 +00:00
|
|
|
|
|
|
|
strp = str;
|
|
|
|
|
2006-09-19 11:54:33 +00:00
|
|
|
/* Parse entry name */
|
|
|
|
if (get_token_str(entry->name, sizeof entry->name) < 0)
|
2006-04-04 19:28:13 +00:00
|
|
|
{
|
|
|
|
logf("No name found.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-09-19 11:54:33 +00:00
|
|
|
/* Parse entry type */
|
|
|
|
if (get_tag(&entry->type) <= 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (entry->type == menu_load)
|
|
|
|
{
|
|
|
|
if (get_token_str(buf, sizeof buf) < 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Find the matching root menu or "create" it */
|
|
|
|
for (i = 0; i < menu_count; i++)
|
|
|
|
{
|
2006-09-26 06:40:14 +00:00
|
|
|
if (!strcasecmp(menus[i]->id, buf))
|
2006-09-19 11:54:33 +00:00
|
|
|
{
|
|
|
|
entry->link = i;
|
2006-09-26 06:40:14 +00:00
|
|
|
menus[i]->parent = menu;
|
2006-09-19 11:54:33 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (entry->type != menu_next)
|
|
|
|
return false;
|
|
|
|
|
2006-04-04 19:28:13 +00:00
|
|
|
while (inst->tagorder_count < MAX_TAGS)
|
|
|
|
{
|
|
|
|
ret = get_tag(&inst->tagorder[inst->tagorder_count]);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
logf("Parse error #1");
|
2006-09-19 11:54:33 +00:00
|
|
|
logf("%s", strp);
|
2006-04-04 19:28:13 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ret == 0)
|
|
|
|
break ;
|
|
|
|
|
|
|
|
logf("tag: %d", inst->tagorder[inst->tagorder_count]);
|
|
|
|
|
2006-10-15 11:01:18 +00:00
|
|
|
while ( (ret = get_condition(inst)) > 0 ) ;
|
|
|
|
if (ret < 0)
|
|
|
|
return false;
|
2006-04-04 19:28:13 +00:00
|
|
|
|
|
|
|
inst->tagorder_count++;
|
2006-09-19 11:54:33 +00:00
|
|
|
|
|
|
|
if (get_tag(&type) <= 0 || type != menu_next)
|
|
|
|
break;
|
2006-04-04 19:28:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-03-30 12:07:32 +00:00
|
|
|
static int compare(const void *p1, const void *p2)
|
|
|
|
{
|
|
|
|
struct tagentry *e1 = (struct tagentry *)p1;
|
|
|
|
struct tagentry *e2 = (struct tagentry *)p2;
|
|
|
|
|
2006-08-26 22:00:22 +00:00
|
|
|
if (sort_inverse)
|
|
|
|
return strncasecmp(e2->name, e1->name, MAX_PATH);
|
|
|
|
|
2006-03-30 12:07:32 +00:00
|
|
|
return strncasecmp(e1->name, e2->name, MAX_PATH);
|
|
|
|
}
|
|
|
|
|
2006-07-15 17:36:25 +00:00
|
|
|
static void tagtree_buffer_event(struct mp3entry *id3, bool last_track)
|
|
|
|
{
|
|
|
|
(void)id3;
|
|
|
|
(void)last_track;
|
|
|
|
|
2006-08-26 16:06:54 +00:00
|
|
|
/* Do not gather data unless proper setting has been enabled. */
|
|
|
|
if (!global_settings.runtimedb)
|
|
|
|
return;
|
|
|
|
|
2006-07-15 17:36:25 +00:00
|
|
|
logf("be:%d%s", last_track, id3->path);
|
2006-08-26 16:06:54 +00:00
|
|
|
|
|
|
|
if (!tagcache_find_index(&tcs, id3->path))
|
|
|
|
{
|
|
|
|
logf("tc stat: not found: %s", id3->path);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
id3->playcount = tagcache_get_numeric(&tcs, tag_playcount);
|
|
|
|
id3->lastplayed = tagcache_get_numeric(&tcs, tag_lastplayed);
|
|
|
|
id3->rating = tagcache_get_numeric(&tcs, tag_virt_autoscore) / 10;
|
|
|
|
|
|
|
|
tagcache_search_finish(&tcs);
|
2006-07-15 17:36:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void tagtree_unbuffer_event(struct mp3entry *id3, bool last_track)
|
|
|
|
{
|
|
|
|
(void)last_track;
|
|
|
|
long playcount;
|
|
|
|
long playtime;
|
|
|
|
long lastplayed;
|
|
|
|
|
|
|
|
/* Do not gather data unless proper setting has been enabled. */
|
|
|
|
if (!global_settings.runtimedb)
|
2006-08-02 17:39:34 +00:00
|
|
|
{
|
|
|
|
logf("runtimedb gathering not enabled");
|
2006-07-15 17:36:25 +00:00
|
|
|
return;
|
2006-08-02 17:39:34 +00:00
|
|
|
}
|
2006-07-15 17:36:25 +00:00
|
|
|
|
|
|
|
/* Don't process unplayed tracks. */
|
|
|
|
if (id3->elapsed == 0)
|
2006-08-02 17:39:34 +00:00
|
|
|
{
|
|
|
|
logf("not logging unplayed track");
|
2006-07-15 17:36:25 +00:00
|
|
|
return;
|
2006-08-02 17:39:34 +00:00
|
|
|
}
|
2006-07-15 17:36:25 +00:00
|
|
|
|
|
|
|
if (!tagcache_find_index(&tcs, id3->path))
|
|
|
|
{
|
|
|
|
logf("tc stat: not found: %s", id3->path);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
playcount = tagcache_get_numeric(&tcs, tag_playcount);
|
|
|
|
playtime = tagcache_get_numeric(&tcs, tag_playtime);
|
|
|
|
lastplayed = tagcache_get_numeric(&tcs, tag_lastplayed);
|
|
|
|
|
|
|
|
playcount++;
|
|
|
|
|
2006-07-20 12:19:31 +00:00
|
|
|
lastplayed = tagcache_increase_serial();
|
|
|
|
if (lastplayed < 0)
|
2006-08-02 17:39:34 +00:00
|
|
|
{
|
|
|
|
logf("incorrect tc serial:%d", lastplayed);
|
|
|
|
tagcache_search_finish(&tcs);
|
2006-07-20 12:19:31 +00:00
|
|
|
return;
|
2006-08-02 17:39:34 +00:00
|
|
|
}
|
2006-07-20 12:19:31 +00:00
|
|
|
|
2006-07-15 17:36:25 +00:00
|
|
|
/* Ignore the last 15s (crossfade etc.) */
|
|
|
|
playtime += MIN(id3->length, id3->elapsed + 15 * 1000);
|
|
|
|
|
|
|
|
logf("ube:%s", id3->path);
|
|
|
|
logf("-> %d/%d/%d", last_track, playcount, playtime);
|
|
|
|
logf("-> %d/%d/%d", id3->elapsed, id3->length, MIN(id3->length, id3->elapsed + 15 * 1000));
|
|
|
|
|
|
|
|
/* lastplayed not yet supported. */
|
|
|
|
|
|
|
|
if (!tagcache_modify_numeric_entry(&tcs, tag_playcount, playcount)
|
|
|
|
|| !tagcache_modify_numeric_entry(&tcs, tag_playtime, playtime)
|
2006-08-11 18:53:46 +00:00
|
|
|
|| !tagcache_modify_numeric_entry(&tcs, tag_lastplayed, lastplayed))
|
2006-07-15 17:36:25 +00:00
|
|
|
{
|
|
|
|
logf("tc stat: modify failed!");
|
|
|
|
tagcache_search_finish(&tcs);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
tagcache_search_finish(&tcs);
|
|
|
|
}
|
|
|
|
|
2006-07-16 15:04:46 +00:00
|
|
|
bool tagtree_export(void)
|
|
|
|
{
|
2006-07-26 06:44:39 +00:00
|
|
|
gui_syncsplash(0, true, str(LANG_CREATING));
|
2006-07-16 15:04:46 +00:00
|
|
|
if (!tagcache_create_changelog(&tcs))
|
|
|
|
{
|
|
|
|
gui_syncsplash(HZ*2, true, str(LANG_FAILED));
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-07-20 12:19:31 +00:00
|
|
|
bool tagtree_import(void)
|
|
|
|
{
|
|
|
|
gui_syncsplash(0, true, str(LANG_WAIT));
|
|
|
|
if (!tagcache_import_changelog())
|
|
|
|
{
|
|
|
|
gui_syncsplash(HZ*2, true, str(LANG_FAILED));
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-09-19 11:54:33 +00:00
|
|
|
static bool parse_menu(const char *filename)
|
2006-04-04 19:28:13 +00:00
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
char buf[256];
|
2006-09-19 11:54:33 +00:00
|
|
|
char data[256];
|
|
|
|
int variable;
|
2006-08-23 08:41:18 +00:00
|
|
|
int rc;
|
2006-09-19 11:54:33 +00:00
|
|
|
bool first = true;
|
|
|
|
bool read_menu = false;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (menu_count >= TAGMENU_MAX_MENUS)
|
2006-09-21 17:16:35 +00:00
|
|
|
{
|
|
|
|
logf("max menucount reached");
|
2006-09-19 11:54:33 +00:00
|
|
|
return false;
|
2006-09-21 17:16:35 +00:00
|
|
|
}
|
2006-04-04 19:28:13 +00:00
|
|
|
|
2006-09-19 11:54:33 +00:00
|
|
|
fd = open(filename, O_RDONLY);
|
2006-04-04 19:28:13 +00:00
|
|
|
if (fd < 0)
|
|
|
|
{
|
|
|
|
logf("Search instruction file not found.");
|
2006-09-19 11:54:33 +00:00
|
|
|
return false;
|
2006-04-04 19:28:13 +00:00
|
|
|
}
|
|
|
|
|
2006-08-23 08:41:18 +00:00
|
|
|
/* Now read file for real, parsing into si */
|
|
|
|
while ( 1 )
|
|
|
|
{
|
|
|
|
rc = read_line(fd, buf, sizeof(buf)-1);
|
|
|
|
if (rc <= 0)
|
2006-04-04 19:28:13 +00:00
|
|
|
break;
|
2006-09-19 11:54:33 +00:00
|
|
|
|
|
|
|
if (first)
|
|
|
|
{
|
|
|
|
if (strcasecmp(TAGNAVI_VERSION, buf))
|
|
|
|
{
|
|
|
|
logf("Version mismatch");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (buf[0] == '#')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (buf[0] == '\0')
|
|
|
|
{
|
|
|
|
if (read_menu)
|
|
|
|
{
|
|
|
|
/* End the menu */
|
|
|
|
menu_count++;
|
|
|
|
read_menu = false;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!read_menu)
|
|
|
|
{
|
|
|
|
strp = buf;
|
|
|
|
if (get_tag(&variable) <= 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
switch (variable)
|
|
|
|
{
|
2006-10-15 11:01:18 +00:00
|
|
|
case var_format:
|
|
|
|
if (add_format(strp) < 0)
|
|
|
|
{
|
|
|
|
logf("Format add fail: %s", data);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2006-09-19 11:54:33 +00:00
|
|
|
case var_include:
|
|
|
|
if (get_token_str(data, sizeof(data)) < 0)
|
|
|
|
{
|
|
|
|
logf("%include empty");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!parse_menu(data))
|
|
|
|
{
|
|
|
|
logf("Load menu fail: %s", data);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case var_menu_start:
|
2006-09-21 17:16:35 +00:00
|
|
|
if (menu_count >= TAGMENU_MAX_MENUS)
|
|
|
|
{
|
|
|
|
logf("max menucount reached");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-09-26 06:40:14 +00:00
|
|
|
menus[menu_count] = buffer_alloc(sizeof(struct root_menu));
|
|
|
|
menu = menus[menu_count];
|
|
|
|
memset(menu, 0, sizeof(struct root_menu));
|
2006-09-19 11:54:33 +00:00
|
|
|
if (get_token_str(menu->id, sizeof(menu->id)) < 0)
|
|
|
|
{
|
|
|
|
logf("%menu_start id empty");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (get_token_str(menu->title, sizeof(menu->title)) < 0)
|
|
|
|
{
|
|
|
|
logf("%menu_start title empty");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
menu->itemcount = 0;
|
|
|
|
read_menu = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case var_rootmenu:
|
2006-09-25 19:52:38 +00:00
|
|
|
/* Only set root menu once. */
|
|
|
|
if (root_menu)
|
|
|
|
break;
|
|
|
|
|
2006-09-19 11:54:33 +00:00
|
|
|
if (get_token_str(data, sizeof(data)) < 0)
|
|
|
|
{
|
|
|
|
logf("%root_menu empty");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < menu_count; i++)
|
|
|
|
{
|
2006-09-26 06:40:14 +00:00
|
|
|
if (!strcasecmp(menus[i]->id, data))
|
2006-09-19 11:54:33 +00:00
|
|
|
{
|
|
|
|
root_menu = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2006-09-21 17:16:35 +00:00
|
|
|
if (menu->itemcount >= TAGMENU_MAX_ITEMS)
|
|
|
|
{
|
|
|
|
logf("max itemcount reached");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2006-09-19 11:54:33 +00:00
|
|
|
/* Allocate */
|
|
|
|
if (menu->items[menu->itemcount] == NULL)
|
|
|
|
{
|
|
|
|
menu->items[menu->itemcount] = buffer_alloc(sizeof(struct menu_entry));
|
|
|
|
memset(menu->items[menu->itemcount], 0, sizeof(struct menu_entry));
|
|
|
|
menu->items[menu->itemcount]->si = buffer_alloc(sizeof(struct search_instruction));
|
|
|
|
}
|
|
|
|
|
2006-10-15 11:01:18 +00:00
|
|
|
memset(menu->items[menu->itemcount]->si, 0, sizeof(struct search_instruction));
|
2006-09-19 11:54:33 +00:00
|
|
|
if (!parse_search(menu->items[menu->itemcount], buf))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
menu->itemcount++;
|
2006-04-04 19:28:13 +00:00
|
|
|
}
|
|
|
|
close(fd);
|
|
|
|
|
2006-09-19 11:54:33 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void tagtree_init(void)
|
|
|
|
{
|
2006-10-15 11:01:18 +00:00
|
|
|
format_count = 0;
|
2006-09-19 11:54:33 +00:00
|
|
|
menu_count = 0;
|
2006-09-26 06:40:14 +00:00
|
|
|
menu = NULL;
|
2006-09-19 11:54:33 +00:00
|
|
|
root_menu = 0;
|
|
|
|
parse_menu(FILE_SEARCH_INSTRUCTIONS);
|
|
|
|
|
2006-08-25 13:22:46 +00:00
|
|
|
uniqbuf = buffer_alloc(UNIQBUF_SIZE);
|
2006-07-15 17:36:25 +00:00
|
|
|
audio_set_track_buffer_event(tagtree_buffer_event);
|
|
|
|
audio_set_track_unbuffer_event(tagtree_unbuffer_event);
|
2006-04-04 19:28:13 +00:00
|
|
|
}
|
|
|
|
|
2006-04-15 13:57:15 +00:00
|
|
|
bool show_search_progress(bool init, int count)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-04-15 13:57:15 +00:00
|
|
|
static int last_tick = 0;
|
2006-04-04 19:28:13 +00:00
|
|
|
|
2006-04-15 13:57:15 +00:00
|
|
|
if (init)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-04-15 13:57:15 +00:00
|
|
|
last_tick = current_tick;
|
|
|
|
return true;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
2006-04-15 13:57:15 +00:00
|
|
|
|
2006-08-12 11:00:39 +00:00
|
|
|
if (current_tick - last_tick > HZ/4)
|
2006-04-15 13:57:15 +00:00
|
|
|
{
|
|
|
|
gui_syncsplash(0, true, str(LANG_PLAYLIST_SEARCH_MSG), count,
|
|
|
|
#if CONFIG_KEYPAD == PLAYER_PAD
|
|
|
|
str(LANG_STOP_ABORT)
|
|
|
|
#else
|
|
|
|
str(LANG_OFF_ABORT)
|
|
|
|
#endif
|
|
|
|
);
|
2006-08-15 12:27:07 +00:00
|
|
|
if (action_userabort(TIMEOUT_NOBLOCK))
|
2006-04-15 13:57:15 +00:00
|
|
|
return false;
|
|
|
|
last_tick = current_tick;
|
2006-08-12 11:00:39 +00:00
|
|
|
yield();
|
2006-04-15 13:57:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-04-15 13:57:15 +00:00
|
|
|
int retrieve_entries(struct tree_context *c, struct tagcache_search *tcs,
|
|
|
|
int offset, bool init)
|
|
|
|
{
|
|
|
|
struct tagentry *dptr = (struct tagentry *)c->dircache;
|
2006-08-26 22:00:22 +00:00
|
|
|
struct display_format *fmt;
|
2006-04-15 13:57:15 +00:00
|
|
|
int i;
|
|
|
|
int namebufused = 0;
|
|
|
|
int total_count = 0;
|
2006-04-19 18:56:59 +00:00
|
|
|
int special_entry_count = 0;
|
2006-08-25 21:13:49 +00:00
|
|
|
int level = c->currextra;
|
2006-04-19 11:03:37 +00:00
|
|
|
int tag;
|
2006-04-15 13:57:15 +00:00
|
|
|
bool sort = false;
|
2006-09-26 18:59:16 +00:00
|
|
|
int sort_limit;
|
|
|
|
int strip;
|
2006-04-15 13:57:15 +00:00
|
|
|
|
|
|
|
if (init
|
2006-04-08 08:59:47 +00:00
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
2006-04-15 13:57:15 +00:00
|
|
|
&& !tagcache_is_ramcache()
|
2006-04-08 08:59:47 +00:00
|
|
|
#endif
|
2006-04-15 13:57:15 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
show_search_progress(true, 0);
|
|
|
|
gui_syncsplash(0, true, str(LANG_PLAYLIST_SEARCH_MSG),
|
|
|
|
0, csi->name);
|
|
|
|
}
|
2006-04-08 08:59:47 +00:00
|
|
|
|
2006-04-19 11:03:37 +00:00
|
|
|
if (c->currtable == allsubentries)
|
|
|
|
{
|
|
|
|
tag = tag_title;
|
2006-08-25 21:13:49 +00:00
|
|
|
level--;
|
2006-04-19 11:03:37 +00:00
|
|
|
}
|
|
|
|
else
|
2006-08-25 21:13:49 +00:00
|
|
|
tag = csi->tagorder[level];
|
2006-04-19 11:03:37 +00:00
|
|
|
|
|
|
|
if (!tagcache_search(tcs, tag))
|
2006-04-16 17:32:54 +00:00
|
|
|
return -1;
|
|
|
|
|
2006-08-25 13:22:46 +00:00
|
|
|
/* Prevent duplicate entries in the search list. */
|
|
|
|
tagcache_search_set_uniqbuf(tcs, uniqbuf, UNIQBUF_SIZE);
|
|
|
|
|
2006-08-25 21:13:49 +00:00
|
|
|
if (level || csi->clause_count[0] || tagcache_is_numeric_tag(tag))
|
2006-08-25 13:22:46 +00:00
|
|
|
sort = true;
|
|
|
|
|
2006-08-25 21:13:49 +00:00
|
|
|
for (i = 0; i < level; i++)
|
|
|
|
{
|
|
|
|
if (tagcache_is_numeric_tag(csi->tagorder[i]))
|
|
|
|
{
|
|
|
|
static struct tagcache_search_clause cc;
|
|
|
|
|
|
|
|
memset(&cc, 0, sizeof(struct tagcache_search_clause));
|
|
|
|
cc.tag = csi->tagorder[i];
|
|
|
|
cc.type = clause_is;
|
|
|
|
cc.numeric = true;
|
|
|
|
cc.numeric_data = csi->result_seek[i];
|
|
|
|
tagcache_search_add_clause(tcs, &cc);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tagcache_search_add_filter(tcs, csi->tagorder[i],
|
|
|
|
csi->result_seek[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i <= level; i++)
|
2006-04-15 13:57:15 +00:00
|
|
|
{
|
2006-08-25 13:22:46 +00:00
|
|
|
int j;
|
|
|
|
|
|
|
|
for (j = 0; j < csi->clause_count[i]; j++)
|
2006-10-15 11:01:18 +00:00
|
|
|
tagcache_search_add_clause(tcs, csi->clause[i][j]);
|
2006-04-15 13:57:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
current_offset = offset;
|
|
|
|
current_entry_count = 0;
|
2006-03-26 11:33:42 +00:00
|
|
|
c->dirfull = false;
|
2006-10-15 11:01:18 +00:00
|
|
|
|
|
|
|
fmt = NULL;
|
|
|
|
for (i = 0; i < format_count; i++)
|
|
|
|
{
|
|
|
|
if (formats[i]->group_id == csi->format_id[level])
|
|
|
|
fmt = formats[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fmt)
|
2006-08-26 22:00:22 +00:00
|
|
|
{
|
|
|
|
sort_inverse = fmt->sort_inverse;
|
|
|
|
sort_limit = fmt->limit;
|
2006-09-26 18:59:16 +00:00
|
|
|
strip = fmt->strip;
|
2006-08-26 22:00:22 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sort_inverse = false;
|
|
|
|
sort_limit = 0;
|
2006-09-26 18:59:16 +00:00
|
|
|
strip = 0;
|
2006-08-26 22:00:22 +00:00
|
|
|
}
|
2006-04-19 11:03:37 +00:00
|
|
|
|
2006-07-16 15:04:46 +00:00
|
|
|
if (tag != tag_title && tag != tag_filename)
|
2006-04-19 11:03:37 +00:00
|
|
|
{
|
|
|
|
if (offset == 0)
|
|
|
|
{
|
|
|
|
dptr->newtable = allsubentries;
|
|
|
|
dptr->name = str(LANG_TAGNAVI_ALL_TRACKS);
|
|
|
|
dptr++;
|
|
|
|
current_entry_count++;
|
|
|
|
}
|
2006-04-19 18:56:59 +00:00
|
|
|
special_entry_count++;
|
2006-04-19 11:03:37 +00:00
|
|
|
}
|
|
|
|
|
2006-04-19 18:56:59 +00:00
|
|
|
total_count += special_entry_count;
|
|
|
|
|
2006-04-15 13:57:15 +00:00
|
|
|
while (tagcache_get_next(tcs))
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-04-15 13:57:15 +00:00
|
|
|
if (total_count++ < offset)
|
|
|
|
continue;
|
|
|
|
|
2006-04-19 11:03:37 +00:00
|
|
|
dptr->newtable = navibrowse;
|
2006-07-16 15:04:46 +00:00
|
|
|
if (tag == tag_title || tag == tag_filename)
|
2006-08-30 18:18:37 +00:00
|
|
|
{
|
2006-07-15 17:36:25 +00:00
|
|
|
dptr->newtable = playtrack;
|
2006-08-30 18:18:37 +00:00
|
|
|
dptr->extraseek = tcs->idx_id;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
dptr->extraseek = tcs->result_seek;
|
2006-07-15 17:36:25 +00:00
|
|
|
|
2006-10-15 11:01:18 +00:00
|
|
|
fmt = NULL;
|
|
|
|
/* Check the format */
|
|
|
|
for (i = 0; i < format_count; i++)
|
|
|
|
{
|
|
|
|
if (formats[i]->group_id != csi->format_id[level])
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (tagcache_check_clauses(tcs, formats[i]->clause,
|
|
|
|
formats[i]->clause_count))
|
|
|
|
{
|
|
|
|
fmt = formats[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!tcs->ramresult || fmt)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-07-15 17:36:25 +00:00
|
|
|
char buf[MAX_PATH];
|
|
|
|
int buf_pos = 0;
|
2006-04-05 18:46:38 +00:00
|
|
|
|
2006-10-15 11:01:18 +00:00
|
|
|
if (fmt)
|
2006-04-19 11:03:37 +00:00
|
|
|
{
|
2006-07-15 17:36:25 +00:00
|
|
|
char fmtbuf[8];
|
|
|
|
bool read_format = false;
|
|
|
|
int fmtbuf_pos = 0;
|
|
|
|
int parpos = 0;
|
2006-08-26 22:00:22 +00:00
|
|
|
|
2006-07-15 17:36:25 +00:00
|
|
|
memset(buf, 0, sizeof buf);
|
|
|
|
for (i = 0; fmt->formatstr[i] != '\0'; i++)
|
2006-03-30 12:07:32 +00:00
|
|
|
{
|
2006-07-15 17:36:25 +00:00
|
|
|
if (fmt->formatstr[i] == '%')
|
|
|
|
{
|
|
|
|
read_format = true;
|
|
|
|
fmtbuf_pos = 0;
|
|
|
|
if (parpos >= fmt->tag_count)
|
|
|
|
{
|
|
|
|
logf("too many format tags");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (read_format)
|
|
|
|
{
|
|
|
|
fmtbuf[fmtbuf_pos++] = fmt->formatstr[i];
|
|
|
|
if (fmtbuf_pos >= (long)sizeof(fmtbuf))
|
|
|
|
{
|
|
|
|
logf("format parse error");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fmt->formatstr[i] == 's')
|
|
|
|
{
|
|
|
|
fmtbuf[fmtbuf_pos] = '\0';
|
|
|
|
read_format = false;
|
|
|
|
snprintf(&buf[buf_pos], MAX_PATH - buf_pos, fmtbuf, tcs->result);
|
|
|
|
buf_pos += strlen(&buf[buf_pos]);
|
|
|
|
parpos++;
|
|
|
|
}
|
|
|
|
else if (fmt->formatstr[i] == 'd')
|
|
|
|
{
|
|
|
|
fmtbuf[fmtbuf_pos] = '\0';
|
|
|
|
read_format = false;
|
|
|
|
snprintf(&buf[buf_pos], MAX_PATH - buf_pos, fmtbuf,
|
|
|
|
tagcache_get_numeric(tcs, fmt->tags[parpos]));
|
|
|
|
buf_pos += strlen(&buf[buf_pos]);
|
|
|
|
parpos++;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
buf[buf_pos++] = fmt->formatstr[i];
|
|
|
|
|
|
|
|
if (buf_pos - 1 >= (long)sizeof(buf))
|
|
|
|
{
|
|
|
|
logf("buffer overflow");
|
|
|
|
return 0;
|
|
|
|
}
|
2006-03-30 12:07:32 +00:00
|
|
|
}
|
2006-07-15 17:36:25 +00:00
|
|
|
|
|
|
|
buf[buf_pos++] = '\0';
|
2006-03-30 12:07:32 +00:00
|
|
|
}
|
2006-07-15 17:36:25 +00:00
|
|
|
|
|
|
|
dptr->name = &c->name_buffer[namebufused];
|
2006-10-15 11:01:18 +00:00
|
|
|
if (fmt)
|
2006-07-15 17:36:25 +00:00
|
|
|
namebufused += buf_pos;
|
2006-03-30 12:07:32 +00:00
|
|
|
else
|
2006-04-15 13:57:15 +00:00
|
|
|
namebufused += tcs->result_len;
|
2006-07-15 17:36:25 +00:00
|
|
|
|
|
|
|
if (namebufused >= c->name_buffer_size)
|
|
|
|
{
|
|
|
|
logf("chunk mode #2: %d", current_entry_count);
|
|
|
|
c->dirfull = true;
|
|
|
|
sort = false;
|
|
|
|
break ;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
2006-10-15 11:01:18 +00:00
|
|
|
if (fmt)
|
2006-07-15 17:36:25 +00:00
|
|
|
strcpy(dptr->name, buf);
|
|
|
|
else
|
|
|
|
strcpy(dptr->name, tcs->result);
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
else
|
2006-04-15 13:57:15 +00:00
|
|
|
dptr->name = tcs->result;
|
2006-03-30 12:07:32 +00:00
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
dptr++;
|
2006-04-15 13:57:15 +00:00
|
|
|
current_entry_count++;
|
|
|
|
|
|
|
|
if (current_entry_count >= global_settings.max_files_in_dir)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-04-15 13:57:15 +00:00
|
|
|
logf("chunk mode #3: %d", current_entry_count);
|
2006-03-26 11:33:42 +00:00
|
|
|
c->dirfull = true;
|
2006-04-15 13:57:15 +00:00
|
|
|
sort = false;
|
2006-03-26 11:33:42 +00:00
|
|
|
break ;
|
|
|
|
}
|
|
|
|
|
2006-04-15 13:57:15 +00:00
|
|
|
if (init && !tcs->ramsearch)
|
2006-04-08 08:59:47 +00:00
|
|
|
{
|
2006-04-15 13:57:15 +00:00
|
|
|
if (!show_search_progress(false, i))
|
|
|
|
{
|
|
|
|
tagcache_search_finish(tcs);
|
|
|
|
return current_entry_count;
|
|
|
|
}
|
2006-04-08 08:59:47 +00:00
|
|
|
}
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
2006-04-15 13:57:15 +00:00
|
|
|
|
2006-03-30 12:07:32 +00:00
|
|
|
if (sort)
|
2006-04-19 18:56:59 +00:00
|
|
|
qsort(c->dircache + special_entry_count * c->dentry_size,
|
|
|
|
current_entry_count - special_entry_count,
|
|
|
|
c->dentry_size, compare);
|
2006-03-30 12:07:32 +00:00
|
|
|
|
2006-04-15 13:57:15 +00:00
|
|
|
if (!init)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-04-15 13:57:15 +00:00
|
|
|
tagcache_search_finish(tcs);
|
|
|
|
return current_entry_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (tagcache_get_next(tcs))
|
|
|
|
{
|
|
|
|
if (!tcs->ramsearch)
|
|
|
|
{
|
|
|
|
if (!show_search_progress(false, total_count))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
total_count++;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
2006-04-15 13:57:15 +00:00
|
|
|
tagcache_search_finish(tcs);
|
2006-08-26 22:00:22 +00:00
|
|
|
|
|
|
|
if (!sort && (sort_inverse || sort_limit))
|
|
|
|
{
|
2006-08-27 03:39:55 +00:00
|
|
|
gui_syncsplash(HZ*4, true, str(LANG_SHOWDIR_BUFFER_FULL), total_count);
|
2006-08-26 22:00:22 +00:00
|
|
|
logf("Too small dir buffer");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sort_limit)
|
|
|
|
total_count = MIN(total_count, sort_limit);
|
|
|
|
|
2006-09-26 18:59:16 +00:00
|
|
|
if (strip)
|
|
|
|
{
|
|
|
|
dptr = c->dircache;
|
|
|
|
for (i = 0; i < total_count; i++, dptr++)
|
|
|
|
{
|
|
|
|
int len = strlen(dptr->name);
|
|
|
|
|
|
|
|
if (len < strip)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
dptr->name = &dptr->name[strip];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-15 13:57:15 +00:00
|
|
|
return total_count;
|
|
|
|
}
|
|
|
|
|
2006-04-16 17:32:54 +00:00
|
|
|
static int load_root(struct tree_context *c)
|
2006-04-15 13:57:15 +00:00
|
|
|
{
|
|
|
|
struct tagentry *dptr = (struct tagentry *)c->dircache;
|
2006-04-16 17:32:54 +00:00
|
|
|
int i;
|
|
|
|
|
2006-07-25 07:41:00 +00:00
|
|
|
tc = c;
|
2006-04-16 17:32:54 +00:00
|
|
|
c->currtable = root;
|
2006-09-19 11:54:33 +00:00
|
|
|
if (c->dirlevel == 0)
|
|
|
|
c->currextra = root_menu;
|
|
|
|
|
2006-09-26 06:40:14 +00:00
|
|
|
menu = menus[c->currextra];
|
|
|
|
if (menu == NULL)
|
|
|
|
return 0;
|
2006-09-19 11:54:33 +00:00
|
|
|
|
|
|
|
for (i = 0; i < menu->itemcount; i++)
|
2006-04-16 17:32:54 +00:00
|
|
|
{
|
2006-09-19 11:54:33 +00:00
|
|
|
dptr->name = menu->items[i]->name;
|
|
|
|
switch (menu->items[i]->type)
|
|
|
|
{
|
|
|
|
case menu_next:
|
|
|
|
dptr->newtable = navibrowse;
|
|
|
|
dptr->extraseek = i;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case menu_load:
|
|
|
|
dptr->newtable = root;
|
|
|
|
dptr->extraseek = menu->items[i]->link;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-04-16 17:32:54 +00:00
|
|
|
dptr++;
|
|
|
|
}
|
|
|
|
|
|
|
|
current_offset = 0;
|
|
|
|
current_entry_count = i;
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
int tagtree_load(struct tree_context* c)
|
|
|
|
{
|
|
|
|
int count;
|
2006-04-15 13:57:15 +00:00
|
|
|
int table = c->currtable;
|
|
|
|
|
|
|
|
c->dentry_size = sizeof(struct tagentry);
|
2006-10-20 06:49:31 +00:00
|
|
|
c->dirsindir = 0;
|
2006-04-15 13:57:15 +00:00
|
|
|
|
|
|
|
if (!table)
|
|
|
|
{
|
|
|
|
c->dirfull = false;
|
|
|
|
table = root;
|
|
|
|
c->currtable = table;
|
2006-09-19 11:54:33 +00:00
|
|
|
c->currextra = root_menu;
|
2006-04-15 13:57:15 +00:00
|
|
|
}
|
|
|
|
|
2006-04-16 17:32:54 +00:00
|
|
|
switch (table)
|
|
|
|
{
|
|
|
|
case root:
|
|
|
|
count = load_root(c);
|
|
|
|
break;
|
2006-04-15 13:57:15 +00:00
|
|
|
|
2006-04-19 11:03:37 +00:00
|
|
|
case allsubentries:
|
2006-04-15 13:57:15 +00:00
|
|
|
case navibrowse:
|
|
|
|
logf("navibrowse...");
|
2006-10-05 10:07:03 +00:00
|
|
|
cpu_boost_id(true, CPUBOOSTID_TAGTREE);
|
2006-04-16 17:32:54 +00:00
|
|
|
count = retrieve_entries(c, &tcs, 0, true);
|
2006-10-05 10:07:03 +00:00
|
|
|
cpu_boost_id(false, CPUBOOSTID_TAGTREE);
|
2006-04-15 13:57:15 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
logf("Unsupported table %d\n", table);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-04-16 17:32:54 +00:00
|
|
|
if (count < 0)
|
|
|
|
{
|
|
|
|
c->dirlevel = 0;
|
|
|
|
count = load_root(c);
|
|
|
|
gui_syncsplash(HZ, true, str(LANG_TAGCACHE_BUSY));
|
|
|
|
}
|
2006-04-15 13:57:15 +00:00
|
|
|
|
|
|
|
/* The _total_ numer of entries available. */
|
2006-04-16 17:32:54 +00:00
|
|
|
c->dirlength = c->filesindir = count;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-04-16 17:32:54 +00:00
|
|
|
return count;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int tagtree_enter(struct tree_context* c)
|
|
|
|
{
|
|
|
|
int rc = 0;
|
2006-04-15 13:57:15 +00:00
|
|
|
struct tagentry *dptr;
|
2006-03-26 11:33:42 +00:00
|
|
|
int newextra;
|
2006-04-19 11:03:37 +00:00
|
|
|
int seek;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-04-15 13:57:15 +00:00
|
|
|
dptr = tagtree_get_entry(c, c->selected_item);
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
c->dirfull = false;
|
|
|
|
newextra = dptr->newtable;
|
2006-04-19 11:03:37 +00:00
|
|
|
seek = dptr->extraseek;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
if (c->dirlevel >= MAX_DIR_LEVELS)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
c->selected_item_history[c->dirlevel]=c->selected_item;
|
|
|
|
c->table_history[c->dirlevel] = c->currtable;
|
|
|
|
c->extra_history[c->dirlevel] = c->currextra;
|
|
|
|
c->pos_history[c->dirlevel] = c->firstpos;
|
|
|
|
c->dirlevel++;
|
|
|
|
|
|
|
|
switch (c->currtable) {
|
|
|
|
case root:
|
|
|
|
c->currextra = newextra;
|
2006-04-05 18:46:38 +00:00
|
|
|
|
2006-09-19 11:54:33 +00:00
|
|
|
if (newextra == root)
|
|
|
|
{
|
2006-09-26 06:40:14 +00:00
|
|
|
menu = menus[seek];
|
2006-09-19 11:54:33 +00:00
|
|
|
c->currextra = seek;
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (newextra == navibrowse)
|
2006-04-04 19:28:13 +00:00
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
|
2006-09-19 11:54:33 +00:00
|
|
|
csi = menu->items[seek]->si;
|
2006-04-04 19:28:13 +00:00
|
|
|
c->currextra = 0;
|
|
|
|
|
2006-09-25 19:52:38 +00:00
|
|
|
strncpy(current_title[c->currextra], dptr->name,
|
|
|
|
sizeof(current_title[0]) - 1);
|
|
|
|
|
2006-04-04 19:28:13 +00:00
|
|
|
/* Read input as necessary. */
|
|
|
|
for (i = 0; i < csi->tagorder_count; i++)
|
|
|
|
{
|
|
|
|
for (j = 0; j < csi->clause_count[i]; j++)
|
|
|
|
{
|
2006-10-15 11:01:18 +00:00
|
|
|
if (!csi->clause[i][j]->input)
|
2006-04-04 19:28:13 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
rc = kbd_input(searchstring, sizeof(searchstring));
|
|
|
|
if (rc == -1 || !searchstring[0])
|
|
|
|
{
|
2006-09-19 11:54:33 +00:00
|
|
|
tagtree_exit(c);
|
2006-04-05 18:46:38 +00:00
|
|
|
return 0;
|
2006-04-04 19:28:13 +00:00
|
|
|
}
|
|
|
|
|
2006-10-15 11:01:18 +00:00
|
|
|
if (csi->clause[i][j]->numeric)
|
|
|
|
csi->clause[i][j]->numeric_data = atoi(searchstring);
|
2006-04-04 19:28:13 +00:00
|
|
|
else
|
2006-10-15 11:01:18 +00:00
|
|
|
strncpy(csi->clause[i][j]->str, searchstring,
|
|
|
|
sizeof(csi->clause[i][j]->str)-1);
|
2006-04-04 19:28:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-04-05 18:46:38 +00:00
|
|
|
c->currtable = newextra;
|
2006-04-19 11:03:37 +00:00
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
break;
|
|
|
|
|
2006-04-04 19:28:13 +00:00
|
|
|
case navibrowse:
|
2006-04-19 11:03:37 +00:00
|
|
|
case allsubentries:
|
|
|
|
if (newextra == playtrack)
|
2006-04-04 19:28:13 +00:00
|
|
|
{
|
2006-04-19 11:03:37 +00:00
|
|
|
c->dirlevel--;
|
2006-08-09 07:28:48 +00:00
|
|
|
/* about to create a new current playlist...
|
|
|
|
allow user to cancel the operation */
|
|
|
|
if (global_settings.warnon_erase_dynplaylist &&
|
|
|
|
!global_settings.party_mode &&
|
|
|
|
playlist_modified(NULL))
|
|
|
|
{
|
|
|
|
char *lines[]={str(LANG_WARN_ERASEDYNPLAYLIST_PROMPT)};
|
|
|
|
struct text_message message={lines, 1};
|
|
|
|
|
|
|
|
if (gui_syncyesno_run(&message, NULL, NULL) != YESNO_YES)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-04-04 19:28:13 +00:00
|
|
|
if (tagtree_play_folder(c) >= 0)
|
|
|
|
rc = 2;
|
2006-04-19 11:03:37 +00:00
|
|
|
break;
|
2006-04-04 19:28:13 +00:00
|
|
|
}
|
2006-04-19 11:03:37 +00:00
|
|
|
|
|
|
|
c->currtable = newextra;
|
|
|
|
csi->result_seek[c->currextra] = seek;
|
|
|
|
if (c->currextra < csi->tagorder_count-1)
|
|
|
|
c->currextra++;
|
|
|
|
else
|
|
|
|
c->dirlevel--;
|
2006-09-25 19:52:38 +00:00
|
|
|
|
|
|
|
/* Update the statusbar title */
|
|
|
|
strncpy(current_title[c->currextra], dptr->name,
|
|
|
|
sizeof(current_title[0]) - 1);
|
2006-03-26 11:33:42 +00:00
|
|
|
break;
|
2006-04-04 19:28:13 +00:00
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
default:
|
|
|
|
c->dirlevel--;
|
|
|
|
break;
|
|
|
|
}
|
2006-04-19 11:03:37 +00:00
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
c->selected_item=0;
|
|
|
|
gui_synclist_select_item(&tree_lists, c->selected_item);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
void tagtree_exit(struct tree_context* c)
|
|
|
|
{
|
|
|
|
c->dirfull = false;
|
2006-09-19 11:54:33 +00:00
|
|
|
if (c->dirlevel > 0)
|
|
|
|
c->dirlevel--;
|
2006-03-26 11:33:42 +00:00
|
|
|
c->selected_item=c->selected_item_history[c->dirlevel];
|
|
|
|
gui_synclist_select_item(&tree_lists, c->selected_item);
|
|
|
|
c->currtable = c->table_history[c->dirlevel];
|
|
|
|
c->currextra = c->extra_history[c->dirlevel];
|
|
|
|
c->firstpos = c->pos_history[c->dirlevel];
|
|
|
|
}
|
|
|
|
|
|
|
|
int tagtree_get_filename(struct tree_context* c, char *buf, int buflen)
|
|
|
|
{
|
2006-04-15 13:57:15 +00:00
|
|
|
struct tagentry *entry;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-04-15 13:57:15 +00:00
|
|
|
entry = tagtree_get_entry(c, c->selected_item);
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-04-16 17:32:54 +00:00
|
|
|
if (!tagcache_search(&tcs, tag_filename))
|
|
|
|
return -1;
|
|
|
|
|
2006-05-05 07:01:43 +00:00
|
|
|
if (!tagcache_retrieve(&tcs, entry->extraseek, buf, buflen))
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
tagcache_search_finish(&tcs);
|
2006-04-16 17:32:54 +00:00
|
|
|
return -2;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tagcache_search_finish(&tcs);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2006-07-25 07:41:00 +00:00
|
|
|
|
|
|
|
bool insert_all_playlist(struct tree_context *c, int position, bool queue)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
int i;
|
2006-04-10 10:26:24 +00:00
|
|
|
char buf[MAX_PATH];
|
2006-08-12 09:06:50 +00:00
|
|
|
int from, to, direction;
|
2006-10-15 11:01:18 +00:00
|
|
|
int files_left = c->filesindir;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-10-05 10:07:03 +00:00
|
|
|
cpu_boost_id(true, CPUBOOSTID_TAGTREE);
|
2006-04-16 17:32:54 +00:00
|
|
|
if (!tagcache_search(&tcs, tag_filename))
|
|
|
|
{
|
|
|
|
gui_syncsplash(HZ, true, str(LANG_TAGCACHE_BUSY));
|
2006-10-05 10:07:03 +00:00
|
|
|
cpu_boost_id(false, CPUBOOSTID_TAGTREE);
|
2006-07-25 07:41:00 +00:00
|
|
|
return false;
|
2006-04-16 17:32:54 +00:00
|
|
|
}
|
|
|
|
|
2006-08-12 09:06:50 +00:00
|
|
|
if (position == PLAYLIST_INSERT_FIRST)
|
|
|
|
{
|
|
|
|
from = c->filesindir - 1;
|
|
|
|
to = -1;
|
|
|
|
direction = -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
from = 0;
|
|
|
|
to = c->filesindir;
|
|
|
|
direction = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = from; i != to; i += direction)
|
2006-04-10 10:26:24 +00:00
|
|
|
{
|
2006-10-15 11:01:18 +00:00
|
|
|
/* Count back to zero */
|
|
|
|
if (!show_search_progress(false, files_left--))
|
2006-04-15 13:57:15 +00:00
|
|
|
break;
|
2006-04-10 10:26:24 +00:00
|
|
|
|
2006-04-19 11:03:37 +00:00
|
|
|
if (!tagcache_retrieve(&tcs, tagtree_get_entry(c, i)->extraseek,
|
2006-04-10 10:26:24 +00:00
|
|
|
buf, sizeof buf))
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-04-10 10:26:24 +00:00
|
|
|
continue;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
2006-08-10 09:50:45 +00:00
|
|
|
if (playlist_insert_track(NULL, buf, position, queue, false) < 0)
|
2006-08-14 19:03:37 +00:00
|
|
|
{
|
|
|
|
logf("playlist_insert_track failed");
|
2006-08-10 09:50:45 +00:00
|
|
|
break;
|
2006-08-14 19:03:37 +00:00
|
|
|
}
|
2006-08-12 11:00:39 +00:00
|
|
|
yield();
|
2006-04-10 10:26:24 +00:00
|
|
|
}
|
2006-08-10 09:50:45 +00:00
|
|
|
playlist_sync(NULL);
|
2006-04-10 10:26:24 +00:00
|
|
|
tagcache_search_finish(&tcs);
|
2006-10-05 10:07:03 +00:00
|
|
|
cpu_boost_id(false, CPUBOOSTID_TAGTREE);
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-07-25 07:41:00 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool tagtree_insert_selection_playlist(int position, bool queue)
|
|
|
|
{
|
|
|
|
struct tagentry *dptr;
|
2006-07-26 06:44:39 +00:00
|
|
|
char buf[MAX_PATH];
|
2006-07-25 07:41:00 +00:00
|
|
|
int dirlevel = tc->dirlevel;
|
|
|
|
|
2006-08-12 11:00:39 +00:00
|
|
|
/* We need to set the table to allsubentries. */
|
|
|
|
show_search_progress(true, 0);
|
|
|
|
|
2006-07-25 07:41:00 +00:00
|
|
|
dptr = tagtree_get_entry(tc, tc->selected_item);
|
|
|
|
|
2006-07-26 06:44:39 +00:00
|
|
|
/* Insert a single track? */
|
|
|
|
if (dptr->newtable == playtrack)
|
|
|
|
{
|
|
|
|
if (tagtree_get_filename(tc, buf, sizeof buf) < 0)
|
|
|
|
{
|
|
|
|
logf("tagtree_get_filename failed");
|
|
|
|
return false;
|
|
|
|
}
|
2006-08-10 09:50:45 +00:00
|
|
|
playlist_insert_track(NULL, buf, position, queue, true);
|
2006-07-26 06:44:39 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-07-25 07:41:00 +00:00
|
|
|
if (dptr->newtable == navibrowse)
|
|
|
|
{
|
|
|
|
tagtree_enter(tc);
|
|
|
|
tagtree_load(tc);
|
|
|
|
dptr = tagtree_get_entry(tc, tc->selected_item);
|
|
|
|
}
|
|
|
|
else if (dptr->newtable != allsubentries)
|
|
|
|
{
|
|
|
|
logf("unsupported table: %d", dptr->newtable);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now the current table should be allsubentries. */
|
|
|
|
if (dptr->newtable != playtrack)
|
|
|
|
{
|
|
|
|
tagtree_enter(tc);
|
|
|
|
tagtree_load(tc);
|
|
|
|
dptr = tagtree_get_entry(tc, tc->selected_item);
|
|
|
|
|
|
|
|
/* And now the newtable should be playtrack. */
|
|
|
|
if (dptr->newtable != playtrack)
|
|
|
|
{
|
|
|
|
logf("newtable: %d !!", dptr->newtable);
|
|
|
|
tc->dirlevel = dirlevel;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tc->filesindir <= 0)
|
|
|
|
gui_syncsplash(HZ, true, str(LANG_END_PLAYLIST_PLAYER));
|
|
|
|
else
|
|
|
|
{
|
|
|
|
logf("insert_all_playlist");
|
2006-08-14 19:03:37 +00:00
|
|
|
if (!insert_all_playlist(tc, position, queue))
|
|
|
|
gui_syncsplash(HZ*2, true, str(LANG_FAILED));
|
2006-07-25 07:41:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Finally return the dirlevel to its original value. */
|
|
|
|
while (tc->dirlevel > dirlevel)
|
|
|
|
tagtree_exit(tc);
|
|
|
|
tagtree_load(tc);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tagtree_play_folder(struct tree_context* c)
|
|
|
|
{
|
|
|
|
if (playlist_create(NULL, NULL) < 0)
|
|
|
|
{
|
|
|
|
logf("Failed creating playlist\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-09-18 04:41:50 +00:00
|
|
|
if (!insert_all_playlist(c, PLAYLIST_INSERT_LAST, false))
|
2006-07-25 07:41:00 +00:00
|
|
|
return -2;
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
if (global_settings.playlist_shuffle)
|
|
|
|
c->selected_item = playlist_shuffle(current_tick, c->selected_item);
|
|
|
|
if (!global_settings.play_selected)
|
|
|
|
c->selected_item = 0;
|
|
|
|
gui_synclist_select_item(&tree_lists, c->selected_item);
|
|
|
|
|
|
|
|
playlist_start(c->selected_item,0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-04-15 13:57:15 +00:00
|
|
|
struct tagentry* tagtree_get_entry(struct tree_context *c, int id)
|
2006-04-10 10:26:24 +00:00
|
|
|
{
|
2006-04-15 13:57:15 +00:00
|
|
|
struct tagentry *entry = (struct tagentry *)c->dircache;
|
|
|
|
int realid = id - current_offset;
|
|
|
|
|
|
|
|
/* Load the next chunk if necessary. */
|
|
|
|
if (realid >= current_entry_count || realid < 0)
|
|
|
|
{
|
2006-10-05 10:07:03 +00:00
|
|
|
cpu_boost_id(true, CPUBOOSTID_TAGTREE);
|
2006-05-05 07:54:19 +00:00
|
|
|
if (retrieve_entries(c, &tcs2, MAX(0, id - (current_entry_count / 2)),
|
2006-04-16 17:32:54 +00:00
|
|
|
false) < 0)
|
|
|
|
{
|
2006-04-19 18:56:59 +00:00
|
|
|
logf("retrieve failed");
|
2006-10-05 10:07:03 +00:00
|
|
|
cpu_boost_id(false, CPUBOOSTID_TAGTREE);
|
2006-04-16 17:32:54 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2006-04-15 13:57:15 +00:00
|
|
|
realid = id - current_offset;
|
2006-10-05 10:07:03 +00:00
|
|
|
cpu_boost_id(false, CPUBOOSTID_TAGTREE);
|
2006-04-15 13:57:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return &entry[realid];
|
2006-04-10 10:26:24 +00:00
|
|
|
}
|
|
|
|
|
2006-09-19 12:36:21 +00:00
|
|
|
char *tagtree_get_title(struct tree_context* c)
|
|
|
|
{
|
|
|
|
switch (c->currtable)
|
|
|
|
{
|
|
|
|
case root:
|
|
|
|
return menu->title;
|
|
|
|
|
|
|
|
case navibrowse:
|
|
|
|
case allsubentries:
|
2006-09-25 19:52:38 +00:00
|
|
|
return current_title[c->currextra];
|
2006-09-19 12:36:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return "?";
|
|
|
|
}
|
|
|
|
|
2006-05-05 07:01:43 +00:00
|
|
|
int tagtree_get_attr(struct tree_context* c)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-05-05 07:01:43 +00:00
|
|
|
int attr = -1;
|
2006-03-26 11:33:42 +00:00
|
|
|
switch (c->currtable)
|
|
|
|
{
|
2006-04-04 19:28:13 +00:00
|
|
|
case navibrowse:
|
|
|
|
if (csi->tagorder[c->currextra] == tag_title)
|
2006-05-05 07:01:43 +00:00
|
|
|
attr = TREE_ATTR_MPA;
|
2006-04-04 19:28:13 +00:00
|
|
|
else
|
2006-05-05 07:01:43 +00:00
|
|
|
attr = ATTR_DIRECTORY;
|
2006-03-26 11:33:42 +00:00
|
|
|
break;
|
|
|
|
|
2006-04-19 11:03:37 +00:00
|
|
|
case allsubentries:
|
2006-05-05 07:01:43 +00:00
|
|
|
attr = TREE_ATTR_MPA;
|
2006-04-19 11:03:37 +00:00
|
|
|
break;
|
|
|
|
|
2006-05-05 07:01:43 +00:00
|
|
|
default:
|
|
|
|
attr = ATTR_DIRECTORY;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return attr;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
const unsigned char* tagtree_get_icon(struct tree_context* c)
|
|
|
|
#else
|
|
|
|
int tagtree_get_icon(struct tree_context* c)
|
|
|
|
#endif
|
|
|
|
{
|
2006-05-05 07:54:19 +00:00
|
|
|
int icon = Icon_Folder;
|
2006-05-05 07:01:43 +00:00
|
|
|
|
2006-05-05 07:54:19 +00:00
|
|
|
if (tagtree_get_attr(c) == TREE_ATTR_MPA)
|
|
|
|
icon = Icon_Audio;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2006-05-05 07:01:43 +00:00
|
|
|
return bitmap_icons_6x8[icon];
|
2006-03-26 11:33:42 +00:00
|
|
|
#else
|
|
|
|
return icon;
|
|
|
|
#endif
|
|
|
|
}
|