2006-03-26 11:33:42 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 by Miika Pekkarinen
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2006-03-26 11:33:42 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2006-07-25 10:44:19 +00:00
|
|
|
/*
|
|
|
|
* TagCache API
|
|
|
|
*
|
|
|
|
* ----------x---------x------------------x-----
|
|
|
|
* | | | External
|
|
|
|
* +---------------x-------+ | TagCache | Libraries
|
|
|
|
* | Modification routines | | Core |
|
|
|
|
* +-x---------x-----------+ | |
|
|
|
|
* | (R/W) | | | |
|
|
|
|
* | +------x-------------x-+ +-------------x-----+ |
|
|
|
|
* | | x==x Filters & clauses | |
|
|
|
|
* | | Search routines | +-------------------+ |
|
|
|
|
* | | x============================x DirCache
|
|
|
|
* | +-x--------------------+ | (optional)
|
|
|
|
* | | (R) |
|
|
|
|
* | | +-------------------------------+ +---------+ |
|
|
|
|
* | | | DB Commit (sort,unique,index) | | | |
|
|
|
|
* | | +-x--------------------------x--+ | Control | |
|
|
|
|
* | | | (R/W) | (R) | Thread | |
|
|
|
|
* | | | +----------------------+ | | | |
|
|
|
|
* | | | | TagCache DB Builder | | +---------+ |
|
|
|
|
* | | | +-x-------------x------+ | |
|
|
|
|
* | | | | (R) | (W) | |
|
|
|
|
* | | | | +--x--------x---------+ |
|
|
|
|
* | | | | | Temporary Commit DB | |
|
|
|
|
* | | | | +---------------------+ |
|
2006-08-02 17:39:34 +00:00
|
|
|
* +-x----x-------x--+ |
|
2006-07-25 10:44:19 +00:00
|
|
|
* | TagCache RAM DB x==\(W) +-----------------+ |
|
2006-08-02 17:39:34 +00:00
|
|
|
* +-----------------+ \===x | |
|
2006-07-25 10:44:19 +00:00
|
|
|
* | | | | (R) | Ram DB Loader x============x DirCache
|
|
|
|
* +-x----x---x---x---+ /==x | | (optional)
|
|
|
|
* | Tagcache Disk DB x==/ +-----------------+ |
|
|
|
|
* +------------------+ |
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2009-11-03 16:25:03 +00:00
|
|
|
/*#define LOGF_ENABLE*/
|
2008-08-29 21:14:58 +00:00
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
#include <stdio.h>
|
2007-05-07 13:32:56 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <ctype.h>
|
2006-09-16 16:18:11 +00:00
|
|
|
#include "config.h"
|
2008-02-17 18:35:27 +00:00
|
|
|
#include "ata_idle_notify.h"
|
2006-03-26 11:33:42 +00:00
|
|
|
#include "thread.h"
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "logf.h"
|
|
|
|
#include "string.h"
|
|
|
|
#include "usb.h"
|
|
|
|
#include "metadata.h"
|
|
|
|
#include "tagcache.h"
|
2006-03-26 12:49:19 +00:00
|
|
|
#include "buffer.h"
|
2006-04-18 18:56:56 +00:00
|
|
|
#include "crc32.h"
|
2006-10-21 20:37:33 +00:00
|
|
|
#include "misc.h"
|
2006-11-10 08:03:33 +00:00
|
|
|
#include "settings.h"
|
2007-07-20 17:06:55 +00:00
|
|
|
#include "dir.h"
|
2007-02-13 21:51:18 +00:00
|
|
|
#include "structec.h"
|
2008-05-03 08:35:14 +00:00
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
#ifndef __PCTOOL__
|
|
|
|
#include "lang.h"
|
|
|
|
#include "eeprom_settings.h"
|
|
|
|
#endif
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
#ifdef __PCTOOL__
|
|
|
|
#define yield() do { } while(0)
|
|
|
|
#define sim_sleep(timeout) do { } while(0)
|
2007-03-10 14:34:56 +00:00
|
|
|
#define do_timed_yield() do { } while(0)
|
2006-11-10 08:03:33 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __PCTOOL__
|
2006-03-26 11:33:42 +00:00
|
|
|
/* Tag Cache thread. */
|
2007-10-16 22:00:51 +00:00
|
|
|
static struct event_queue tagcache_queue;
|
2006-03-26 11:33:42 +00:00
|
|
|
static long tagcache_stack[(DEFAULT_STACK_SIZE + 0x4000)/sizeof(long)];
|
|
|
|
static const char tagcache_thread_name[] = "tagcache";
|
2006-11-10 08:03:33 +00:00
|
|
|
#endif
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2007-03-04 17:30:12 +00:00
|
|
|
#define UNTAGGED "<Untagged>"
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
/* Previous path when scanning directory tree recursively. */
|
2006-11-10 08:03:33 +00:00
|
|
|
static char curpath[TAG_MAXLEN+32];
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
/* Used when removing duplicates. */
|
|
|
|
static char *tempbuf; /* Allocated when needed. */
|
|
|
|
static long tempbufidx; /* Current location in buffer. */
|
|
|
|
static long tempbuf_size; /* Buffer size (TEMPBUF_SIZE). */
|
|
|
|
static long tempbuf_left; /* Buffer space left. */
|
|
|
|
static long tempbuf_pos;
|
|
|
|
|
2009-06-03 09:38:06 +00:00
|
|
|
#define SORTED_TAGS_COUNT 8
|
2009-06-06 00:00:58 +00:00
|
|
|
#define TAGCACHE_IS_UNIQUE(tag) (BIT_N(tag) & TAGCACHE_UNIQUE_TAGS)
|
|
|
|
#define TAGCACHE_IS_SORTED(tag) (BIT_N(tag) & TAGCACHE_SORTED_TAGS)
|
|
|
|
#define TAGCACHE_IS_NUMERIC_OR_NONUNIQUE(tag) \
|
|
|
|
(BIT_N(tag) & (TAGCACHE_NUMERIC_TAGS | ~TAGCACHE_UNIQUE_TAGS))
|
2006-03-27 07:44:32 +00:00
|
|
|
/* Tags we want to get sorted (loaded to the tempbuf). */
|
2009-06-03 08:19:32 +00:00
|
|
|
#define TAGCACHE_SORTED_TAGS ((1LU << tag_artist) | (1LU << tag_album) | \
|
|
|
|
(1LU << tag_genre) | (1LU << tag_composer) | (1LU << tag_comment) | \
|
|
|
|
(1LU << tag_albumartist) | (1LU << tag_grouping) | (1LU << tag_title))
|
2006-04-10 10:26:24 +00:00
|
|
|
|
|
|
|
/* Uniqued tags (we can use these tags with filters and conditional clauses). */
|
2009-06-03 08:19:32 +00:00
|
|
|
#define TAGCACHE_UNIQUE_TAGS ((1LU << tag_artist) | (1LU << tag_album) | \
|
|
|
|
(1LU << tag_genre) | (1LU << tag_composer) | (1LU << tag_comment) | \
|
|
|
|
(1LU << tag_albumartist) | (1LU << tag_grouping))
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2007-02-10 12:09:28 +00:00
|
|
|
/* String presentation of the tags defined in tagcache.h. Must be in correct order! */
|
2006-07-20 12:19:31 +00:00
|
|
|
static const char *tags_str[] = { "artist", "album", "genre", "title",
|
2007-12-16 21:10:26 +00:00
|
|
|
"filename", "composer", "comment", "albumartist", "grouping", "year",
|
|
|
|
"discnumber", "tracknumber", "bitrate", "length", "playcount", "rating",
|
|
|
|
"playtime", "lastplayed", "commitid", "mtime" };
|
2006-07-20 12:19:31 +00:00
|
|
|
|
2006-04-23 18:47:26 +00:00
|
|
|
/* Status information of the tagcache. */
|
2006-11-10 08:03:33 +00:00
|
|
|
static struct tagcache_stat tc_stat;
|
2006-04-12 10:31:24 +00:00
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
/* Queue commands. */
|
2006-04-18 18:56:56 +00:00
|
|
|
enum tagcache_queue {
|
|
|
|
Q_STOP_SCAN = 0,
|
|
|
|
Q_START_SCAN,
|
2006-07-23 15:35:53 +00:00
|
|
|
Q_IMPORT_CHANGELOG,
|
2006-07-10 16:22:03 +00:00
|
|
|
Q_UPDATE,
|
|
|
|
Q_REBUILD,
|
2007-07-21 17:35:19 +00:00
|
|
|
|
|
|
|
/* Internal tagcache command queue. */
|
|
|
|
CMD_UPDATE_MASTER_HEADER,
|
|
|
|
CMD_UPDATE_NUMERIC,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct tagcache_command_entry {
|
2008-04-24 07:54:32 +00:00
|
|
|
int32_t command;
|
|
|
|
int32_t idx_id;
|
|
|
|
int32_t tag;
|
|
|
|
int32_t data;
|
2006-04-18 18:56:56 +00:00
|
|
|
};
|
2006-03-30 12:07:32 +00:00
|
|
|
|
2008-12-15 23:42:19 +00:00
|
|
|
#ifndef __PCTOOL__
|
2007-07-21 17:35:19 +00:00
|
|
|
static struct tagcache_command_entry command_queue[TAGCACHE_COMMAND_QUEUE_LENGTH];
|
|
|
|
static volatile int command_queue_widx = 0;
|
|
|
|
static volatile int command_queue_ridx = 0;
|
2007-10-16 22:00:51 +00:00
|
|
|
static struct mutex command_queue_mutex;
|
2008-12-15 23:42:19 +00:00
|
|
|
#endif
|
2006-04-16 17:32:54 +00:00
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
/* Tag database structures. */
|
|
|
|
|
|
|
|
/* Variable-length tag entry in tag files. */
|
|
|
|
struct tagfile_entry {
|
2009-03-06 15:21:58 +00:00
|
|
|
int32_t tag_length; /* Length of the data in bytes including '\0' */
|
|
|
|
int32_t idx_id; /* Corresponding entry location in index file of not unique tags */
|
2006-07-20 12:19:31 +00:00
|
|
|
char tag_data[0]; /* Begin of the tag data */
|
2006-03-26 11:33:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Fixed-size tag entry in master db index. */
|
|
|
|
struct index_entry {
|
2008-04-24 07:54:32 +00:00
|
|
|
int32_t tag_seek[TAG_COUNT]; /* Location of tag data or numeric tag data */
|
|
|
|
int32_t flag; /* Status flags */
|
2006-03-26 11:33:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Header is the same in every file. */
|
|
|
|
struct tagcache_header {
|
2008-04-24 07:54:32 +00:00
|
|
|
int32_t magic; /* Header version number */
|
|
|
|
int32_t datasize; /* Data size in bytes */
|
|
|
|
int32_t entry_count; /* Number of entries in this file */
|
2006-07-20 12:19:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct master_header {
|
|
|
|
struct tagcache_header tch;
|
2008-04-24 07:54:32 +00:00
|
|
|
int32_t serial; /* Increasing counting number */
|
|
|
|
int32_t commitid; /* Number of commits so far */
|
|
|
|
int32_t dirty;
|
2006-03-26 11:33:42 +00:00
|
|
|
};
|
|
|
|
|
2007-02-13 21:51:18 +00:00
|
|
|
/* For the endianess correction */
|
2009-03-06 15:21:58 +00:00
|
|
|
static const char *tagfile_entry_ec = "ll";
|
2008-08-29 21:14:58 +00:00
|
|
|
/**
|
|
|
|
Note: This should be (1 + TAG_COUNT) amount of l's.
|
|
|
|
*/
|
|
|
|
static const char *index_entry_ec = "lllllllllllllllllllll";
|
|
|
|
|
2007-02-13 21:51:18 +00:00
|
|
|
static const char *tagcache_header_ec = "lll";
|
2007-02-25 20:41:51 +00:00
|
|
|
static const char *master_header_ec = "llllll";
|
2007-02-13 21:51:18 +00:00
|
|
|
|
2007-02-25 20:41:51 +00:00
|
|
|
static struct master_header current_tcmh;
|
2006-07-20 12:19:31 +00:00
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
|
|
|
/* Header is created when loading database to ram. */
|
|
|
|
struct ramcache_header {
|
2006-07-20 12:19:31 +00:00
|
|
|
struct master_header h; /* Header from the master index */
|
|
|
|
struct index_entry *indices; /* Master index file content */
|
|
|
|
char *tags[TAG_COUNT]; /* Tag file content (not including filename tag) */
|
|
|
|
int entry_count[TAG_COUNT]; /* Number of entries in the indices. */
|
2006-03-26 11:33:42 +00:00
|
|
|
};
|
|
|
|
|
2006-08-15 22:54:06 +00:00
|
|
|
# ifdef HAVE_EEPROM_SETTINGS
|
2006-08-05 20:19:10 +00:00
|
|
|
struct statefile_header {
|
|
|
|
struct ramcache_header *hdr;
|
2006-11-10 08:03:33 +00:00
|
|
|
struct tagcache_stat tc_stat;
|
2006-08-05 20:19:10 +00:00
|
|
|
};
|
|
|
|
# endif
|
|
|
|
|
2006-07-20 12:19:31 +00:00
|
|
|
/* Pointer to allocated ramcache_header */
|
2006-03-26 11:33:42 +00:00
|
|
|
static struct ramcache_header *hdr;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Full tag entries stored in a temporary file waiting
|
|
|
|
* for commit to the cache. */
|
|
|
|
struct temp_file_entry {
|
|
|
|
long tag_offset[TAG_COUNT];
|
|
|
|
short tag_length[TAG_COUNT];
|
2006-10-04 09:05:01 +00:00
|
|
|
long flag;
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
long data_length;
|
|
|
|
};
|
|
|
|
|
2006-04-23 18:47:26 +00:00
|
|
|
struct tempbuf_id_list {
|
|
|
|
long id;
|
|
|
|
struct tempbuf_id_list *next;
|
2006-03-26 11:33:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct tempbuf_searchidx {
|
2006-03-30 12:07:32 +00:00
|
|
|
long idx_id;
|
2006-03-26 11:33:42 +00:00
|
|
|
char *str;
|
|
|
|
int seek;
|
2006-04-23 18:47:26 +00:00
|
|
|
struct tempbuf_id_list idlist;
|
2006-03-26 11:33:42 +00:00
|
|
|
};
|
|
|
|
|
2006-09-26 11:23:18 +00:00
|
|
|
/* Lookup buffer for fixing messed up index while after sorting. */
|
2006-07-22 07:09:57 +00:00
|
|
|
static long commit_entry_count;
|
2006-09-26 11:23:18 +00:00
|
|
|
static long lookup_buffer_depth;
|
2006-12-25 14:01:47 +00:00
|
|
|
static struct tempbuf_searchidx **lookup;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
/* Used when building the temporary file. */
|
|
|
|
static int cachefd = -1, filenametag_fd;
|
|
|
|
static int total_entry_count = 0;
|
|
|
|
static int data_size = 0;
|
|
|
|
static int processed_dir_count;
|
|
|
|
|
2006-08-02 17:39:34 +00:00
|
|
|
/* Thread safe locking */
|
|
|
|
static volatile int write_lock;
|
|
|
|
static volatile int read_lock;
|
|
|
|
|
2007-12-16 21:10:26 +00:00
|
|
|
static bool delete_entry(long idx_id);
|
|
|
|
|
2006-07-20 12:19:31 +00:00
|
|
|
const char* tagcache_tag_to_str(int tag)
|
|
|
|
{
|
|
|
|
return tags_str[tag];
|
|
|
|
}
|
|
|
|
|
2008-01-13 19:34:49 +00:00
|
|
|
#ifdef HAVE_DIRCACHE
|
2008-01-13 19:13:37 +00:00
|
|
|
/**
|
|
|
|
* Returns true if specified flag is still present, i.e., dircache
|
|
|
|
* has not been reloaded.
|
|
|
|
*/
|
|
|
|
static bool is_dircache_intact(void)
|
|
|
|
{
|
|
|
|
return dircache_get_appflag(DIRCACHE_APPFLAG_TAGCACHE);
|
|
|
|
}
|
2008-01-13 19:34:49 +00:00
|
|
|
#endif
|
2008-01-13 19:13:37 +00:00
|
|
|
|
2006-07-23 11:15:28 +00:00
|
|
|
static int open_tag_fd(struct tagcache_header *hdr, int tag, bool write)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
char buf[MAX_PATH];
|
2006-07-23 14:28:12 +00:00
|
|
|
int rc;
|
2006-07-23 11:15:28 +00:00
|
|
|
|
2009-06-03 08:19:32 +00:00
|
|
|
if (TAGCACHE_IS_NUMERIC(tag) || tag < 0 || tag >= TAG_COUNT)
|
2006-07-23 11:15:28 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
snprintf(buf, sizeof buf, TAGCACHE_FILE_INDEX, tag);
|
|
|
|
|
|
|
|
fd = open(buf, write ? O_RDWR : O_RDONLY);
|
|
|
|
if (fd < 0)
|
|
|
|
{
|
2006-11-10 08:03:33 +00:00
|
|
|
logf("tag file open failed: tag=%d write=%d file=%s", tag, write, buf);
|
|
|
|
tc_stat.ready = false;
|
2006-07-23 11:15:28 +00:00
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check the header. */
|
2007-02-13 21:51:18 +00:00
|
|
|
rc = ecread(fd, hdr, 1, tagcache_header_ec, tc_stat.econ);
|
2006-07-23 14:28:12 +00:00
|
|
|
if (hdr->magic != TAGCACHE_MAGIC || rc != sizeof(struct tagcache_header))
|
2006-07-23 11:15:28 +00:00
|
|
|
{
|
|
|
|
logf("header error");
|
2006-11-10 08:03:33 +00:00
|
|
|
tc_stat.ready = false;
|
2006-07-23 11:15:28 +00:00
|
|
|
close(fd);
|
|
|
|
return -2;
|
|
|
|
}
|
2006-09-26 11:23:18 +00:00
|
|
|
|
2006-07-23 11:15:28 +00:00
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
2007-12-16 21:10:26 +00:00
|
|
|
static int open_master_fd(struct master_header *hdr, bool write)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
fd = open(TAGCACHE_FILE_MASTER, write ? O_RDWR : O_RDONLY);
|
|
|
|
if (fd < 0)
|
|
|
|
{
|
|
|
|
logf("master file open failed for R/W");
|
|
|
|
tc_stat.ready = false;
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
tc_stat.econ = false;
|
|
|
|
|
|
|
|
/* Check the header. */
|
|
|
|
rc = read(fd, hdr, sizeof(struct master_header));
|
|
|
|
if (hdr->tch.magic == TAGCACHE_MAGIC && rc == sizeof(struct master_header))
|
|
|
|
{
|
|
|
|
/* Success. */
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Trying to read again, this time with endianess correction enabled. */
|
|
|
|
lseek(fd, 0, SEEK_SET);
|
|
|
|
|
|
|
|
rc = ecread(fd, hdr, 1, master_header_ec, true);
|
|
|
|
if (hdr->tch.magic != TAGCACHE_MAGIC || rc != sizeof(struct master_header))
|
|
|
|
{
|
|
|
|
logf("header error");
|
|
|
|
tc_stat.ready = false;
|
|
|
|
close(fd);
|
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
|
|
|
|
tc_stat.econ = true;
|
|
|
|
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
2007-03-10 14:34:56 +00:00
|
|
|
#ifndef __PCTOOL__
|
|
|
|
static bool do_timed_yield(void)
|
|
|
|
{
|
|
|
|
/* Sorting can lock up for quite a while, so yield occasionally */
|
|
|
|
static long wakeup_tick = 0;
|
2009-10-18 15:50:30 +00:00
|
|
|
if (TIME_AFTER(current_tick, wakeup_tick))
|
2007-03-10 14:34:56 +00:00
|
|
|
{
|
|
|
|
wakeup_tick = current_tick + (HZ/4);
|
|
|
|
yield();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-07-10 16:22:03 +00:00
|
|
|
#if defined(HAVE_TC_RAMCACHE) && defined(HAVE_DIRCACHE)
|
2006-07-15 17:36:25 +00:00
|
|
|
static long find_entry_ram(const char *filename,
|
2007-07-20 17:06:55 +00:00
|
|
|
const struct dirent *dc)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
static long last_pos = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Check if we tagcache is loaded into ram. */
|
2006-11-10 08:03:33 +00:00
|
|
|
if (!tc_stat.ramcache)
|
2006-07-15 17:36:25 +00:00
|
|
|
return -1;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
if (dc == NULL)
|
|
|
|
dc = dircache_get_entry_ptr(filename);
|
|
|
|
|
|
|
|
if (dc == NULL)
|
|
|
|
{
|
|
|
|
logf("tagcache: file not found.");
|
2006-07-15 17:36:25 +00:00
|
|
|
return -1;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
try_again:
|
|
|
|
|
|
|
|
if (last_pos > 0)
|
|
|
|
i = last_pos;
|
|
|
|
else
|
|
|
|
i = 0;
|
|
|
|
|
2006-07-20 12:19:31 +00:00
|
|
|
for (; i < hdr->h.tch.entry_count; i++)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
if (hdr->indices[i].tag_seek[tag_filename] == (long)dc)
|
|
|
|
{
|
|
|
|
last_pos = MAX(0, i - 3);
|
2006-07-15 17:36:25 +00:00
|
|
|
return i;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
2007-03-10 14:34:56 +00:00
|
|
|
do_timed_yield();
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (last_pos > 0)
|
|
|
|
{
|
|
|
|
last_pos = 0;
|
|
|
|
goto try_again;
|
|
|
|
}
|
|
|
|
|
2006-07-15 17:36:25 +00:00
|
|
|
return -1;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-06-20 16:17:54 +00:00
|
|
|
static long find_entry_disk(const char *filename, bool localfd)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-07-23 11:15:28 +00:00
|
|
|
struct tagcache_header tch;
|
2006-03-26 11:33:42 +00:00
|
|
|
static long last_pos = -1;
|
|
|
|
long pos_history[POS_HISTORY_COUNT];
|
|
|
|
long pos_history_idx = 0;
|
|
|
|
bool found = false;
|
|
|
|
struct tagfile_entry tfe;
|
2006-07-15 17:36:25 +00:00
|
|
|
int fd;
|
2006-11-10 08:03:33 +00:00
|
|
|
char buf[TAG_MAXLEN+32];
|
2006-03-26 11:33:42 +00:00
|
|
|
int i;
|
|
|
|
int pos = -1;
|
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
if (!tc_stat.ready)
|
2006-07-23 11:15:28 +00:00
|
|
|
return -2;
|
|
|
|
|
2006-07-15 17:36:25 +00:00
|
|
|
fd = filenametag_fd;
|
2009-06-20 16:17:54 +00:00
|
|
|
if (fd < 0 || localfd)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
last_pos = -1;
|
2006-07-23 11:15:28 +00:00
|
|
|
if ( (fd = open_tag_fd(&tch, tag_filename, false)) < 0)
|
2006-07-15 17:36:25 +00:00
|
|
|
return -1;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
check_again:
|
|
|
|
|
|
|
|
if (last_pos > 0)
|
|
|
|
lseek(fd, last_pos, SEEK_SET);
|
2006-07-24 12:10:50 +00:00
|
|
|
else
|
|
|
|
lseek(fd, sizeof(struct tagcache_header), SEEK_SET);
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
pos = lseek(fd, 0, SEEK_CUR);
|
|
|
|
for (i = pos_history_idx-1; i >= 0; i--)
|
|
|
|
pos_history[i+1] = pos_history[i];
|
|
|
|
pos_history[0] = pos;
|
|
|
|
|
2007-02-13 21:51:18 +00:00
|
|
|
if (ecread(fd, &tfe, 1, tagfile_entry_ec, tc_stat.econ)
|
|
|
|
!= sizeof(struct tagfile_entry))
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
break ;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tfe.tag_length >= (long)sizeof(buf))
|
|
|
|
{
|
2006-07-10 16:22:03 +00:00
|
|
|
logf("too long tag #1");
|
2006-03-26 11:33:42 +00:00
|
|
|
close(fd);
|
2009-06-20 16:17:54 +00:00
|
|
|
if (!localfd)
|
|
|
|
filenametag_fd = -1;
|
2006-03-26 11:33:42 +00:00
|
|
|
last_pos = -1;
|
2006-07-15 17:36:25 +00:00
|
|
|
return -2;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (read(fd, buf, tfe.tag_length) != tfe.tag_length)
|
|
|
|
{
|
|
|
|
logf("read error #2");
|
|
|
|
close(fd);
|
2009-06-20 16:17:54 +00:00
|
|
|
if (!localfd)
|
|
|
|
filenametag_fd = -1;
|
2006-03-26 11:33:42 +00:00
|
|
|
last_pos = -1;
|
2006-07-15 17:36:25 +00:00
|
|
|
return -3;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcasecmp(filename, buf))
|
|
|
|
{
|
|
|
|
last_pos = pos_history[pos_history_idx];
|
|
|
|
found = true;
|
|
|
|
break ;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pos_history_idx < POS_HISTORY_COUNT - 1)
|
|
|
|
pos_history_idx++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Not found? */
|
|
|
|
if (!found)
|
|
|
|
{
|
|
|
|
if (last_pos > 0)
|
|
|
|
{
|
|
|
|
last_pos = -1;
|
|
|
|
logf("seek again");
|
|
|
|
goto check_again;
|
|
|
|
}
|
2006-07-15 17:36:25 +00:00
|
|
|
|
2009-06-20 16:17:54 +00:00
|
|
|
if (fd != filenametag_fd || localfd)
|
2006-07-15 17:36:25 +00:00
|
|
|
close(fd);
|
|
|
|
return -4;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
2009-06-20 16:17:54 +00:00
|
|
|
if (fd != filenametag_fd || localfd)
|
2006-07-15 17:36:25 +00:00
|
|
|
close(fd);
|
|
|
|
|
|
|
|
return tfe.idx_id;
|
|
|
|
}
|
|
|
|
|
2006-07-20 12:19:31 +00:00
|
|
|
static int find_index(const char *filename)
|
2006-07-15 17:36:25 +00:00
|
|
|
{
|
|
|
|
long idx_id = -1;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-07-15 17:36:25 +00:00
|
|
|
#if defined(HAVE_TC_RAMCACHE) && defined(HAVE_DIRCACHE)
|
2008-01-13 19:13:37 +00:00
|
|
|
if (tc_stat.ramcache && is_dircache_intact())
|
2006-07-15 17:36:25 +00:00
|
|
|
idx_id = find_entry_ram(filename, NULL);
|
|
|
|
#endif
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-07-15 17:36:25 +00:00
|
|
|
if (idx_id < 0)
|
2009-06-20 16:17:54 +00:00
|
|
|
idx_id = find_entry_disk(filename, true);
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-07-20 12:19:31 +00:00
|
|
|
return idx_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool tagcache_find_index(struct tagcache_search *tcs, const char *filename)
|
|
|
|
{
|
|
|
|
int idx_id;
|
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
if (!tc_stat.ready)
|
2006-07-23 11:15:28 +00:00
|
|
|
return false;
|
|
|
|
|
2006-07-20 12:19:31 +00:00
|
|
|
idx_id = find_index(filename);
|
|
|
|
if (idx_id < 0)
|
|
|
|
return false;
|
|
|
|
|
2006-07-15 17:36:25 +00:00
|
|
|
if (!tagcache_search(tcs, tag_filename))
|
|
|
|
return false;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-07-15 17:36:25 +00:00
|
|
|
tcs->entry_count = 0;
|
|
|
|
tcs->idx_id = idx_id;
|
|
|
|
|
|
|
|
return true;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
2006-07-24 15:35:46 +00:00
|
|
|
static bool get_index(int masterfd, int idxid,
|
|
|
|
struct index_entry *idx, bool use_ram)
|
2006-03-30 12:07:32 +00:00
|
|
|
{
|
2007-12-16 21:10:26 +00:00
|
|
|
bool localfd = false;
|
|
|
|
|
2006-08-30 18:18:37 +00:00
|
|
|
if (idxid < 0)
|
|
|
|
{
|
|
|
|
logf("Incorrect idxid: %d", idxid);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-03-30 12:07:32 +00:00
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
2006-11-10 08:03:33 +00:00
|
|
|
if (tc_stat.ramcache && use_ram)
|
2006-03-30 12:07:32 +00:00
|
|
|
{
|
2006-04-19 18:56:59 +00:00
|
|
|
if (hdr->indices[idxid].flag & FLAG_DELETED)
|
|
|
|
return false;
|
|
|
|
|
2009-06-20 16:17:54 +00:00
|
|
|
# ifdef HAVE_DIRCACHE
|
|
|
|
if (!(hdr->indices[idxid].flag & FLAG_DIRCACHE)
|
|
|
|
|| is_dircache_intact())
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
memcpy(idx, &hdr->indices[idxid], sizeof(struct index_entry));
|
|
|
|
return true;
|
|
|
|
}
|
2006-03-30 12:07:32 +00:00
|
|
|
}
|
2006-08-02 06:57:13 +00:00
|
|
|
#else
|
|
|
|
(void)use_ram;
|
2006-03-30 12:07:32 +00:00
|
|
|
#endif
|
|
|
|
|
2007-12-16 21:10:26 +00:00
|
|
|
if (masterfd < 0)
|
|
|
|
{
|
|
|
|
struct master_header tcmh;
|
|
|
|
|
|
|
|
localfd = true;
|
|
|
|
masterfd = open_master_fd(&tcmh, false);
|
|
|
|
if (masterfd < 0)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-07-23 15:35:53 +00:00
|
|
|
lseek(masterfd, idxid * sizeof(struct index_entry)
|
2006-07-20 12:19:31 +00:00
|
|
|
+ sizeof(struct master_header), SEEK_SET);
|
2007-02-13 21:51:18 +00:00
|
|
|
if (ecread(masterfd, idx, 1, index_entry_ec, tc_stat.econ)
|
|
|
|
!= sizeof(struct index_entry))
|
2006-03-30 12:07:32 +00:00
|
|
|
{
|
|
|
|
logf("read error #3");
|
2007-12-16 21:10:26 +00:00
|
|
|
if (localfd)
|
|
|
|
close(masterfd);
|
|
|
|
|
2006-07-15 17:36:25 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-12-16 21:10:26 +00:00
|
|
|
if (localfd)
|
|
|
|
close(masterfd);
|
|
|
|
|
2006-07-23 15:35:53 +00:00
|
|
|
if (idx->flag & FLAG_DELETED)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-12-15 23:42:19 +00:00
|
|
|
#ifndef __PCTOOL__
|
|
|
|
|
2006-07-23 15:35:53 +00:00
|
|
|
static bool write_index(int masterfd, int idxid, struct index_entry *idx)
|
|
|
|
{
|
2006-07-24 15:35:46 +00:00
|
|
|
/* We need to exclude all memory only flags & tags when writing to disk. */
|
|
|
|
if (idx->flag & FLAG_DIRCACHE)
|
|
|
|
{
|
|
|
|
logf("memory only flags!");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-07-23 15:35:53 +00:00
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
2007-05-27 11:40:55 +00:00
|
|
|
/* Only update numeric data. Writing the whole index to RAM by memcpy
|
|
|
|
* destroys dircache pointers!
|
|
|
|
*/
|
2006-11-10 08:03:33 +00:00
|
|
|
if (tc_stat.ramcache)
|
2006-07-24 15:35:46 +00:00
|
|
|
{
|
2007-05-27 11:40:55 +00:00
|
|
|
int tag;
|
|
|
|
struct index_entry *idx_ram = &hdr->indices[idxid];
|
|
|
|
|
|
|
|
for (tag = 0; tag < TAG_COUNT; tag++)
|
|
|
|
{
|
2009-06-03 08:19:32 +00:00
|
|
|
if (TAGCACHE_IS_NUMERIC(tag))
|
2007-05-27 11:40:55 +00:00
|
|
|
{
|
|
|
|
idx_ram->tag_seek[tag] = idx->tag_seek[tag];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-29 21:14:58 +00:00
|
|
|
/* Don't touch the dircache flag or attributes. */
|
|
|
|
idx_ram->flag = (idx->flag & 0x0000ffff)
|
|
|
|
| (idx_ram->flag & (0xffff0000 | FLAG_DIRCACHE));
|
2006-07-24 15:35:46 +00:00
|
|
|
}
|
2006-07-23 15:35:53 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
lseek(masterfd, idxid * sizeof(struct index_entry)
|
|
|
|
+ sizeof(struct master_header), SEEK_SET);
|
2007-02-13 21:51:18 +00:00
|
|
|
if (ecwrite(masterfd, idx, 1, index_entry_ec, tc_stat.econ)
|
|
|
|
!= sizeof(struct index_entry))
|
2006-07-23 15:35:53 +00:00
|
|
|
{
|
|
|
|
logf("write error #3");
|
2006-08-02 17:39:34 +00:00
|
|
|
logf("idxid: %d", idxid);
|
2006-07-23 15:35:53 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-07-15 17:36:25 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-12-15 23:42:19 +00:00
|
|
|
#endif /* !__PCTOOL__ */
|
|
|
|
|
2006-10-15 11:01:18 +00:00
|
|
|
static bool open_files(struct tagcache_search *tcs, int tag)
|
|
|
|
{
|
|
|
|
if (tcs->idxfd[tag] < 0)
|
|
|
|
{
|
|
|
|
char fn[MAX_PATH];
|
|
|
|
|
|
|
|
snprintf(fn, sizeof fn, TAGCACHE_FILE_INDEX, tag);
|
|
|
|
tcs->idxfd[tag] = open(fn, O_RDONLY);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tcs->idxfd[tag] < 0)
|
|
|
|
{
|
|
|
|
logf("File not open!");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool retrieve(struct tagcache_search *tcs, struct index_entry *idx,
|
|
|
|
int tag, char *buf, long size)
|
|
|
|
{
|
|
|
|
struct tagfile_entry tfe;
|
|
|
|
long seek;
|
|
|
|
|
|
|
|
*buf = '\0';
|
|
|
|
|
2009-06-03 08:19:32 +00:00
|
|
|
if (TAGCACHE_IS_NUMERIC(tag))
|
2006-10-15 11:01:18 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
seek = idx->tag_seek[tag];
|
|
|
|
if (seek < 0)
|
|
|
|
{
|
|
|
|
logf("Retrieve failed");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
|
|
|
if (tcs->ramsearch)
|
|
|
|
{
|
|
|
|
struct tagfile_entry *ep;
|
|
|
|
|
|
|
|
# ifdef HAVE_DIRCACHE
|
2008-01-13 19:13:37 +00:00
|
|
|
if (tag == tag_filename && (idx->flag & FLAG_DIRCACHE)
|
|
|
|
&& is_dircache_intact())
|
2006-10-15 11:01:18 +00:00
|
|
|
{
|
2007-07-20 17:06:55 +00:00
|
|
|
dircache_copy_path((struct dirent *)seek,
|
2006-10-15 11:01:18 +00:00
|
|
|
buf, size);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
# endif
|
|
|
|
if (tag != tag_filename)
|
|
|
|
{
|
|
|
|
ep = (struct tagfile_entry *)&hdr->tags[tag][seek];
|
2009-07-14 13:57:45 +00:00
|
|
|
strlcpy(buf, ep->tag_data, size);
|
2006-10-15 11:01:18 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!open_files(tcs, tag))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
lseek(tcs->idxfd[tag], seek, SEEK_SET);
|
2007-02-13 21:51:18 +00:00
|
|
|
if (ecread(tcs->idxfd[tag], &tfe, 1, tagfile_entry_ec, tc_stat.econ)
|
|
|
|
!= sizeof(struct tagfile_entry))
|
2006-10-15 11:01:18 +00:00
|
|
|
{
|
|
|
|
logf("read error #5");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tfe.tag_length >= size)
|
|
|
|
{
|
|
|
|
logf("too small buffer");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (read(tcs->idxfd[tag], buf, tfe.tag_length) !=
|
|
|
|
tfe.tag_length)
|
|
|
|
{
|
|
|
|
logf("read error #6");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
buf[tfe.tag_length] = '\0';
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-07-15 17:36:25 +00:00
|
|
|
static long check_virtual_tags(int tag, const struct index_entry *idx)
|
|
|
|
{
|
|
|
|
long data = 0;
|
|
|
|
|
|
|
|
switch (tag)
|
|
|
|
{
|
2007-04-12 20:14:05 +00:00
|
|
|
case tag_virt_length_sec:
|
|
|
|
data = (idx->tag_seek[tag_length]/1000) % 60;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case tag_virt_length_min:
|
|
|
|
data = (idx->tag_seek[tag_length]/1000) / 60;
|
|
|
|
break;
|
|
|
|
|
2007-04-12 20:21:56 +00:00
|
|
|
case tag_virt_playtime_sec:
|
|
|
|
data = (idx->tag_seek[tag_playtime]/1000) % 60;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case tag_virt_playtime_min:
|
|
|
|
data = (idx->tag_seek[tag_playtime]/1000) / 60;
|
|
|
|
break;
|
|
|
|
|
2006-07-15 17:36:25 +00:00
|
|
|
case tag_virt_autoscore:
|
|
|
|
if (idx->tag_seek[tag_length] == 0
|
|
|
|
|| idx->tag_seek[tag_playcount] == 0)
|
|
|
|
{
|
|
|
|
data = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
data = 100 * idx->tag_seek[tag_playtime]
|
|
|
|
/ idx->tag_seek[tag_length]
|
|
|
|
/ idx->tag_seek[tag_playcount];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2007-02-25 20:41:51 +00:00
|
|
|
/* How many commits before the file has been added to the DB. */
|
|
|
|
case tag_virt_entryage:
|
|
|
|
data = current_tcmh.commitid - idx->tag_seek[tag_commitid] - 1;
|
|
|
|
break;
|
|
|
|
|
2006-07-15 17:36:25 +00:00
|
|
|
default:
|
|
|
|
data = idx->tag_seek[tag];
|
2006-03-30 12:07:32 +00:00
|
|
|
}
|
|
|
|
|
2006-07-15 17:36:25 +00:00
|
|
|
return data;
|
2006-03-30 12:07:32 +00:00
|
|
|
}
|
|
|
|
|
2006-04-10 10:26:24 +00:00
|
|
|
long tagcache_get_numeric(const struct tagcache_search *tcs, int tag)
|
|
|
|
{
|
2006-07-15 17:36:25 +00:00
|
|
|
struct index_entry idx;
|
2006-04-10 10:26:24 +00:00
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
if (!tc_stat.ready)
|
2006-07-23 11:15:28 +00:00
|
|
|
return false;
|
|
|
|
|
2009-06-03 08:19:32 +00:00
|
|
|
if (!TAGCACHE_IS_NUMERIC(tag))
|
2006-04-10 10:26:24 +00:00
|
|
|
return -1;
|
|
|
|
|
2006-07-24 15:35:46 +00:00
|
|
|
if (!get_index(tcs->masterfd, tcs->idx_id, &idx, true))
|
2006-07-15 17:36:25 +00:00
|
|
|
return -2;
|
|
|
|
|
|
|
|
return check_virtual_tags(tag, &idx);
|
2006-04-10 10:26:24 +00:00
|
|
|
}
|
|
|
|
|
2006-08-13 14:53:19 +00:00
|
|
|
inline static bool str_ends_with(const char *str1, const char *str2)
|
|
|
|
{
|
|
|
|
int str_len = strlen(str1);
|
|
|
|
int clause_len = strlen(str2);
|
|
|
|
|
|
|
|
if (clause_len > str_len)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return !strcasecmp(&str1[str_len - clause_len], str2);
|
|
|
|
}
|
|
|
|
|
2006-10-09 10:23:35 +00:00
|
|
|
inline static bool str_oneof(const char *str, const char *list)
|
|
|
|
{
|
|
|
|
const char *sep;
|
|
|
|
int l, len = strlen(str);
|
|
|
|
|
|
|
|
while (*list)
|
|
|
|
{
|
|
|
|
sep = strchr(list, '|');
|
|
|
|
l = sep ? (long)sep - (long)list : (int)strlen(list);
|
|
|
|
if ((l==len) && !strncasecmp(str, list, len))
|
|
|
|
return true;
|
|
|
|
list += sep ? l + 1 : l;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-04-03 18:57:34 +00:00
|
|
|
static bool check_against_clause(long numeric, const char *str,
|
|
|
|
const struct tagcache_search_clause *clause)
|
|
|
|
{
|
2006-10-05 09:49:18 +00:00
|
|
|
if (clause->numeric)
|
2006-04-03 18:57:34 +00:00
|
|
|
{
|
2006-10-05 09:49:18 +00:00
|
|
|
switch (clause->type)
|
|
|
|
{
|
|
|
|
case clause_is:
|
2006-04-03 18:57:34 +00:00
|
|
|
return numeric == clause->numeric_data;
|
2006-10-05 09:49:18 +00:00
|
|
|
case clause_is_not:
|
|
|
|
return numeric != clause->numeric_data;
|
|
|
|
case clause_gt:
|
|
|
|
return numeric > clause->numeric_data;
|
|
|
|
case clause_gteq:
|
|
|
|
return numeric >= clause->numeric_data;
|
|
|
|
case clause_lt:
|
|
|
|
return numeric < clause->numeric_data;
|
|
|
|
case clause_lteq:
|
|
|
|
return numeric <= clause->numeric_data;
|
|
|
|
default:
|
|
|
|
logf("Incorrect numeric tag: %d", clause->type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
switch (clause->type)
|
|
|
|
{
|
|
|
|
case clause_is:
|
2006-04-03 18:57:34 +00:00
|
|
|
return !strcasecmp(clause->str, str);
|
2006-10-05 09:49:18 +00:00
|
|
|
case clause_is_not:
|
|
|
|
return strcasecmp(clause->str, str);
|
|
|
|
case clause_gt:
|
|
|
|
return 0>strcasecmp(clause->str, str);
|
|
|
|
case clause_gteq:
|
|
|
|
return 0>=strcasecmp(clause->str, str);
|
|
|
|
case clause_lt:
|
|
|
|
return 0<strcasecmp(clause->str, str);
|
|
|
|
case clause_lteq:
|
|
|
|
return 0<=strcasecmp(clause->str, str);
|
|
|
|
case clause_contains:
|
|
|
|
return (strcasestr(str, clause->str) != NULL);
|
|
|
|
case clause_not_contains:
|
|
|
|
return (strcasestr(str, clause->str) == NULL);
|
|
|
|
case clause_begins_with:
|
|
|
|
return (strcasestr(str, clause->str) == str);
|
|
|
|
case clause_not_begins_with:
|
2007-02-27 11:09:09 +00:00
|
|
|
return (strcasestr(str, clause->str) != str);
|
2006-10-05 09:49:18 +00:00
|
|
|
case clause_ends_with:
|
|
|
|
return str_ends_with(str, clause->str);
|
|
|
|
case clause_not_ends_with:
|
|
|
|
return !str_ends_with(str, clause->str);
|
2006-10-09 10:23:35 +00:00
|
|
|
case clause_oneof:
|
|
|
|
return str_oneof(str, clause->str);
|
2006-10-05 09:49:18 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
logf("Incorrect tag: %d", clause->type);
|
|
|
|
}
|
2006-04-03 18:57:34 +00:00
|
|
|
}
|
2006-08-13 14:53:19 +00:00
|
|
|
|
2006-04-03 18:57:34 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-12-25 14:01:47 +00:00
|
|
|
static bool check_clauses(struct tagcache_search *tcs,
|
|
|
|
struct index_entry *idx,
|
|
|
|
struct tagcache_search_clause **clause, int count)
|
2006-10-15 11:01:18 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
|
|
|
if (tcs->ramsearch)
|
|
|
|
{
|
|
|
|
/* Go through all conditional clauses. */
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
{
|
|
|
|
struct tagfile_entry *tfe;
|
|
|
|
int seek;
|
|
|
|
char buf[256];
|
|
|
|
char *str = NULL;
|
|
|
|
|
|
|
|
seek = check_virtual_tags(clause[i]->tag, idx);
|
|
|
|
|
2009-06-03 08:19:32 +00:00
|
|
|
if (!TAGCACHE_IS_NUMERIC(clause[i]->tag))
|
2006-10-15 11:01:18 +00:00
|
|
|
{
|
|
|
|
if (clause[i]->tag == tag_filename)
|
|
|
|
{
|
|
|
|
retrieve(tcs, idx, tag_filename, buf, sizeof buf);
|
|
|
|
str = buf;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tfe = (struct tagfile_entry *)&hdr->tags[clause[i]->tag][seek];
|
|
|
|
str = tfe->tag_data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!check_against_clause(seek, str, clause[i]))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
/* Check for conditions. */
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
{
|
|
|
|
struct tagfile_entry tfe;
|
|
|
|
int seek;
|
|
|
|
char str[256];
|
|
|
|
|
|
|
|
seek = check_virtual_tags(clause[i]->tag, idx);
|
|
|
|
|
|
|
|
memset(str, 0, sizeof str);
|
2009-06-03 08:19:32 +00:00
|
|
|
if (!TAGCACHE_IS_NUMERIC(clause[i]->tag))
|
2006-10-15 11:01:18 +00:00
|
|
|
{
|
|
|
|
int fd = tcs->idxfd[clause[i]->tag];
|
|
|
|
lseek(fd, seek, SEEK_SET);
|
2007-02-13 21:51:18 +00:00
|
|
|
ecread(fd, &tfe, 1, tagfile_entry_ec, tc_stat.econ);
|
2006-10-15 11:01:18 +00:00
|
|
|
if (tfe.tag_length >= (int)sizeof(str))
|
|
|
|
{
|
|
|
|
logf("Too long tag read!");
|
|
|
|
break ;
|
|
|
|
}
|
|
|
|
|
|
|
|
read(fd, str, tfe.tag_length);
|
|
|
|
|
|
|
|
/* Check if entry has been deleted. */
|
|
|
|
if (str[0] == '\0')
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!check_against_clause(seek, str, clause[i]))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool tagcache_check_clauses(struct tagcache_search *tcs,
|
|
|
|
struct tagcache_search_clause **clause, int count)
|
|
|
|
{
|
|
|
|
struct index_entry idx;
|
|
|
|
|
|
|
|
if (count == 0)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (!get_index(tcs->masterfd, tcs->idx_id, &idx, true))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return check_clauses(tcs, &idx, clause, count);
|
|
|
|
}
|
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
static bool add_uniqbuf(struct tagcache_search *tcs, unsigned long id)
|
2006-08-25 13:22:46 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* If uniq buffer is not defined we must return true for search to work. */
|
2009-06-03 08:19:32 +00:00
|
|
|
if (tcs->unique_list == NULL || (!TAGCACHE_IS_UNIQUE(tcs->type)
|
|
|
|
&& !TAGCACHE_IS_NUMERIC(tcs->type)))
|
2006-08-25 21:13:49 +00:00
|
|
|
{
|
2006-08-25 13:22:46 +00:00
|
|
|
return true;
|
2006-08-25 21:13:49 +00:00
|
|
|
}
|
2006-08-25 13:22:46 +00:00
|
|
|
|
|
|
|
for (i = 0; i < tcs->unique_list_count; i++)
|
|
|
|
{
|
|
|
|
/* Return false if entry is found. */
|
|
|
|
if (tcs->unique_list[i] == id)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tcs->unique_list_count < tcs->unique_list_capacity)
|
|
|
|
{
|
|
|
|
tcs->unique_list[i] = id;
|
|
|
|
tcs->unique_list_count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
static bool build_lookup_list(struct tagcache_search *tcs)
|
|
|
|
{
|
|
|
|
struct index_entry entry;
|
2009-06-20 16:17:54 +00:00
|
|
|
int i, j;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
tcs->seek_list_count = 0;
|
|
|
|
|
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
2009-06-20 16:17:54 +00:00
|
|
|
if (tcs->ramsearch
|
|
|
|
# ifdef HAVE_DIRCACHE
|
|
|
|
&& (tcs->type != tag_filename || is_dircache_intact())
|
|
|
|
# endif
|
|
|
|
)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-07-20 12:19:31 +00:00
|
|
|
for (i = tcs->seek_pos; i < hdr->h.tch.entry_count; i++)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2009-06-20 16:17:54 +00:00
|
|
|
struct tagcache_seeklist_entry *seeklist;
|
2006-10-15 11:01:18 +00:00
|
|
|
struct index_entry *idx = &hdr->indices[i];
|
2006-03-26 11:33:42 +00:00
|
|
|
if (tcs->seek_list_count == SEEK_LIST_SIZE)
|
|
|
|
break ;
|
2006-04-19 18:56:59 +00:00
|
|
|
|
|
|
|
/* Skip deleted files. */
|
2006-10-15 11:01:18 +00:00
|
|
|
if (idx->flag & FLAG_DELETED)
|
2006-04-19 18:56:59 +00:00
|
|
|
continue;
|
|
|
|
|
2006-04-09 20:00:49 +00:00
|
|
|
/* Go through all filters.. */
|
2006-03-26 11:33:42 +00:00
|
|
|
for (j = 0; j < tcs->filter_count; j++)
|
|
|
|
{
|
2006-10-15 11:01:18 +00:00
|
|
|
if (idx->tag_seek[tcs->filter_tag[j]] != tcs->filter_seek[j])
|
2006-08-25 21:13:49 +00:00
|
|
|
{
|
2006-03-26 11:33:42 +00:00
|
|
|
break ;
|
2006-08-25 21:13:49 +00:00
|
|
|
}
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (j < tcs->filter_count)
|
|
|
|
continue ;
|
2006-04-09 20:00:49 +00:00
|
|
|
|
2006-10-15 11:01:18 +00:00
|
|
|
/* Check for conditions. */
|
|
|
|
if (!check_clauses(tcs, idx, tcs->clause, tcs->clause_count))
|
|
|
|
continue;
|
2006-04-03 18:57:34 +00:00
|
|
|
|
2006-08-25 13:22:46 +00:00
|
|
|
/* Add to the seek list if not already in uniq buffer. */
|
2006-10-15 11:01:18 +00:00
|
|
|
if (!add_uniqbuf(tcs, idx->tag_seek[tcs->type]))
|
2006-08-25 13:22:46 +00:00
|
|
|
continue;
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
/* Lets add it. */
|
2009-06-20 16:17:54 +00:00
|
|
|
seeklist = &tcs->seeklist[tcs->seek_list_count];
|
|
|
|
seeklist->seek = idx->tag_seek[tcs->type];
|
|
|
|
seeklist->flag = idx->flag;
|
|
|
|
seeklist->idx_id = i;
|
2006-08-25 13:22:46 +00:00
|
|
|
tcs->seek_list_count++;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tcs->seek_pos = i;
|
2009-06-20 16:17:54 +00:00
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
return tcs->seek_list_count > 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-06-20 16:17:54 +00:00
|
|
|
if (tcs->masterfd < 0)
|
|
|
|
{
|
|
|
|
struct master_header tcmh;
|
|
|
|
tcs->masterfd = open_master_fd(&tcmh, false);
|
|
|
|
}
|
|
|
|
|
2006-04-09 20:00:49 +00:00
|
|
|
lseek(tcs->masterfd, tcs->seek_pos * sizeof(struct index_entry) +
|
2006-07-20 12:19:31 +00:00
|
|
|
sizeof(struct master_header), SEEK_SET);
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2007-02-13 21:51:18 +00:00
|
|
|
while (ecread(tcs->masterfd, &entry, 1, index_entry_ec, tc_stat.econ)
|
|
|
|
== sizeof(struct index_entry))
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2009-06-20 16:17:54 +00:00
|
|
|
struct tagcache_seeklist_entry *seeklist;
|
|
|
|
|
2007-03-11 08:52:33 +00:00
|
|
|
if (tcs->seek_list_count == SEEK_LIST_SIZE)
|
|
|
|
break ;
|
2009-06-20 16:17:54 +00:00
|
|
|
|
|
|
|
i = tcs->seek_pos;
|
2007-03-11 08:52:33 +00:00
|
|
|
tcs->seek_pos++;
|
|
|
|
|
2006-07-10 16:22:03 +00:00
|
|
|
/* Check if entry has been deleted. */
|
|
|
|
if (entry.flag & FLAG_DELETED)
|
|
|
|
continue;
|
|
|
|
|
2006-04-09 20:00:49 +00:00
|
|
|
/* Go through all filters.. */
|
2009-06-20 16:17:54 +00:00
|
|
|
for (j = 0; j < tcs->filter_count; j++)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2009-06-20 16:17:54 +00:00
|
|
|
if (entry.tag_seek[tcs->filter_tag[j]] != tcs->filter_seek[j])
|
2006-03-26 11:33:42 +00:00
|
|
|
break ;
|
|
|
|
}
|
|
|
|
|
2009-06-20 16:17:54 +00:00
|
|
|
if (j < tcs->filter_count)
|
2006-03-26 11:33:42 +00:00
|
|
|
continue ;
|
|
|
|
|
2006-04-03 18:57:34 +00:00
|
|
|
/* Check for conditions. */
|
2006-10-15 11:01:18 +00:00
|
|
|
if (!check_clauses(tcs, &entry, tcs->clause, tcs->clause_count))
|
|
|
|
continue;
|
2006-04-03 18:57:34 +00:00
|
|
|
|
2006-08-25 13:22:46 +00:00
|
|
|
/* Add to the seek list if not already in uniq buffer. */
|
|
|
|
if (!add_uniqbuf(tcs, entry.tag_seek[tcs->type]))
|
|
|
|
continue;
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
/* Lets add it. */
|
2009-06-20 16:17:54 +00:00
|
|
|
seeklist = &tcs->seeklist[tcs->seek_list_count];
|
|
|
|
seeklist->seek = entry.tag_seek[tcs->type];
|
|
|
|
seeklist->flag = entry.flag;
|
|
|
|
seeklist->idx_id = i;
|
2006-08-25 13:22:46 +00:00
|
|
|
tcs->seek_list_count++;
|
2006-08-25 21:13:49 +00:00
|
|
|
|
|
|
|
yield();
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return tcs->seek_list_count > 0;
|
|
|
|
}
|
|
|
|
|
2006-04-10 10:26:24 +00:00
|
|
|
|
2006-07-20 12:19:31 +00:00
|
|
|
static void remove_files(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
char buf[MAX_PATH];
|
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
tc_stat.ready = false;
|
|
|
|
tc_stat.ramcache = false;
|
2007-02-13 21:51:18 +00:00
|
|
|
tc_stat.econ = false;
|
2006-07-20 12:19:31 +00:00
|
|
|
remove(TAGCACHE_FILE_MASTER);
|
|
|
|
for (i = 0; i < TAG_COUNT; i++)
|
|
|
|
{
|
2009-06-03 08:19:32 +00:00
|
|
|
if (TAGCACHE_IS_NUMERIC(i))
|
2006-07-20 12:19:31 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
snprintf(buf, sizeof buf, TAGCACHE_FILE_INDEX, i);
|
|
|
|
remove(buf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-23 11:15:28 +00:00
|
|
|
|
2007-02-25 20:41:51 +00:00
|
|
|
static bool check_all_headers(void)
|
|
|
|
{
|
|
|
|
struct master_header myhdr;
|
|
|
|
struct tagcache_header tch;
|
|
|
|
int tag;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
if ( (fd = open_master_fd(&myhdr, false)) < 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
if (myhdr.dirty)
|
|
|
|
{
|
|
|
|
logf("tagcache is dirty!");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(¤t_tcmh, &myhdr, sizeof(struct master_header));
|
|
|
|
|
|
|
|
for (tag = 0; tag < TAG_COUNT; tag++)
|
|
|
|
{
|
2009-06-03 08:19:32 +00:00
|
|
|
if (TAGCACHE_IS_NUMERIC(tag))
|
2007-02-25 20:41:51 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if ( (fd = open_tag_fd(&tch, tag, false)) < 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-06-20 16:17:54 +00:00
|
|
|
bool tagcache_is_busy(void)
|
|
|
|
{
|
|
|
|
return read_lock || write_lock;
|
|
|
|
}
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
bool tagcache_search(struct tagcache_search *tcs, int tag)
|
|
|
|
{
|
2006-07-20 12:19:31 +00:00
|
|
|
struct tagcache_header tag_hdr;
|
|
|
|
struct master_header master_hdr;
|
2006-04-08 08:03:51 +00:00
|
|
|
int i;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-08-02 17:39:34 +00:00
|
|
|
while (read_lock)
|
|
|
|
sleep(1);
|
|
|
|
|
2006-04-03 18:57:34 +00:00
|
|
|
memset(tcs, 0, sizeof(struct tagcache_search));
|
2006-11-10 08:03:33 +00:00
|
|
|
if (tc_stat.commit_step > 0 || !tc_stat.ready)
|
2006-04-16 17:32:54 +00:00
|
|
|
return false;
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
tcs->position = sizeof(struct tagcache_header);
|
|
|
|
tcs->type = tag;
|
|
|
|
tcs->seek_pos = 0;
|
2009-06-20 16:17:54 +00:00
|
|
|
tcs->list_position = 0;
|
2006-03-26 11:33:42 +00:00
|
|
|
tcs->seek_list_count = 0;
|
|
|
|
tcs->filter_count = 0;
|
2006-04-03 18:57:34 +00:00
|
|
|
tcs->masterfd = -1;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-04-08 08:03:51 +00:00
|
|
|
for (i = 0; i < TAG_COUNT; i++)
|
|
|
|
tcs->idxfd[i] = -1;
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
#ifndef HAVE_TC_RAMCACHE
|
|
|
|
tcs->ramsearch = false;
|
|
|
|
#else
|
2006-11-10 08:03:33 +00:00
|
|
|
tcs->ramsearch = tc_stat.ramcache;
|
2006-03-26 11:33:42 +00:00
|
|
|
if (tcs->ramsearch)
|
|
|
|
{
|
|
|
|
tcs->entry_count = hdr->entry_count[tcs->type];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
2009-06-20 16:17:54 +00:00
|
|
|
/* Always open as R/W so we can pass tcs to functions that modify data also
|
|
|
|
* without failing. */
|
|
|
|
tcs->masterfd = open_master_fd(&master_hdr, true);
|
|
|
|
if (tcs->masterfd < 0)
|
|
|
|
return false;
|
|
|
|
|
2009-06-03 08:19:32 +00:00
|
|
|
if (!TAGCACHE_IS_NUMERIC(tcs->type))
|
2006-08-02 17:39:34 +00:00
|
|
|
{
|
2006-08-25 21:13:49 +00:00
|
|
|
tcs->idxfd[tcs->type] = open_tag_fd(&tag_hdr, tcs->type, false);
|
|
|
|
if (tcs->idxfd[tcs->type] < 0)
|
|
|
|
return false;
|
2009-06-20 16:17:54 +00:00
|
|
|
|
|
|
|
tcs->entry_count = tag_hdr.entry_count;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tcs->entry_count = master_hdr.tch.entry_count;
|
2006-08-02 17:39:34 +00:00
|
|
|
}
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
2006-08-02 17:39:34 +00:00
|
|
|
tcs->valid = true;
|
|
|
|
tcs->initialized = true;
|
|
|
|
write_lock++;
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-08-25 13:22:46 +00:00
|
|
|
void tagcache_search_set_uniqbuf(struct tagcache_search *tcs,
|
|
|
|
void *buffer, long length)
|
|
|
|
{
|
|
|
|
tcs->unique_list = (unsigned long *)buffer;
|
|
|
|
tcs->unique_list_capacity = length / sizeof(*tcs->unique_list);
|
|
|
|
tcs->unique_list_count = 0;
|
|
|
|
}
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
bool tagcache_search_add_filter(struct tagcache_search *tcs,
|
|
|
|
int tag, int seek)
|
|
|
|
{
|
|
|
|
if (tcs->filter_count == TAGCACHE_MAX_FILTERS)
|
|
|
|
return false;
|
|
|
|
|
2009-06-06 00:00:58 +00:00
|
|
|
if (TAGCACHE_IS_NUMERIC_OR_NONUNIQUE(tag))
|
2006-04-10 10:26:24 +00:00
|
|
|
return false;
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
tcs->filter_tag[tcs->filter_count] = tag;
|
|
|
|
tcs->filter_seek[tcs->filter_count] = seek;
|
|
|
|
tcs->filter_count++;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-04-03 18:57:34 +00:00
|
|
|
bool tagcache_search_add_clause(struct tagcache_search *tcs,
|
|
|
|
struct tagcache_search_clause *clause)
|
|
|
|
{
|
2006-08-25 13:22:46 +00:00
|
|
|
int i;
|
|
|
|
|
2006-04-03 18:57:34 +00:00
|
|
|
if (tcs->clause_count >= TAGCACHE_MAX_CLAUSES)
|
|
|
|
{
|
|
|
|
logf("Too many clauses");
|
|
|
|
return false;
|
|
|
|
}
|
2006-04-08 08:03:51 +00:00
|
|
|
|
2006-08-25 13:22:46 +00:00
|
|
|
/* Check if there is already a similar filter in present (filters are
|
|
|
|
* much faster than clauses).
|
|
|
|
*/
|
|
|
|
for (i = 0; i < tcs->filter_count; i++)
|
|
|
|
{
|
|
|
|
if (tcs->filter_tag[i] == clause->tag)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-06-03 08:19:32 +00:00
|
|
|
if (!TAGCACHE_IS_NUMERIC(clause->tag) && tcs->idxfd[clause->tag] < 0)
|
2006-04-08 08:03:51 +00:00
|
|
|
{
|
|
|
|
char buf[MAX_PATH];
|
|
|
|
|
|
|
|
snprintf(buf, sizeof buf, TAGCACHE_FILE_INDEX, clause->tag);
|
|
|
|
tcs->idxfd[clause->tag] = open(buf, O_RDONLY);
|
|
|
|
}
|
2006-04-03 18:57:34 +00:00
|
|
|
|
|
|
|
tcs->clause[tcs->clause_count] = clause;
|
|
|
|
tcs->clause_count++;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-07-10 16:22:03 +00:00
|
|
|
static bool get_next(struct tagcache_search *tcs)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-11-10 08:03:33 +00:00
|
|
|
static char buf[TAG_MAXLEN+32];
|
2006-03-26 11:33:42 +00:00
|
|
|
struct tagfile_entry entry;
|
2006-08-30 18:18:37 +00:00
|
|
|
long flag = 0;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
if (!tcs->valid || !tc_stat.ready)
|
2006-03-26 11:33:42 +00:00
|
|
|
return false;
|
|
|
|
|
2009-06-03 08:19:32 +00:00
|
|
|
if (tcs->idxfd[tcs->type] < 0 && !TAGCACHE_IS_NUMERIC(tcs->type)
|
2006-03-26 11:33:42 +00:00
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
|
|
|
&& !tcs->ramsearch
|
|
|
|
#endif
|
|
|
|
)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Relative fetch. */
|
2006-08-25 21:13:49 +00:00
|
|
|
if (tcs->filter_count > 0 || tcs->clause_count > 0
|
2009-06-20 16:17:54 +00:00
|
|
|
|| TAGCACHE_IS_NUMERIC(tcs->type)
|
|
|
|
#if defined(HAVE_TC_RAMCACHE) && defined(HAVE_DIRCACHE)
|
|
|
|
/* We need to retrieve flag status for dircache. */
|
|
|
|
|| (tcs->ramsearch && tcs->type == tag_filename)
|
|
|
|
#endif
|
|
|
|
)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2009-06-20 16:17:54 +00:00
|
|
|
struct tagcache_seeklist_entry *seeklist;
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
/* Check for end of list. */
|
2009-06-20 16:17:54 +00:00
|
|
|
if (tcs->list_position == tcs->seek_list_count)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2009-06-20 16:17:54 +00:00
|
|
|
tcs->list_position = 0;
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
/* Try to fetch more. */
|
|
|
|
if (!build_lookup_list(tcs))
|
2006-08-25 21:13:49 +00:00
|
|
|
{
|
|
|
|
tcs->valid = false;
|
2006-03-26 11:33:42 +00:00
|
|
|
return false;
|
2006-08-25 21:13:49 +00:00
|
|
|
}
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
2009-06-20 16:17:54 +00:00
|
|
|
seeklist = &tcs->seeklist[tcs->list_position];
|
|
|
|
flag = seeklist->flag;
|
|
|
|
tcs->position = seeklist->seek;
|
|
|
|
tcs->idx_id = seeklist->idx_id;
|
|
|
|
tcs->list_position++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (tcs->entry_count == 0)
|
|
|
|
{
|
|
|
|
tcs->valid = false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
tcs->entry_count--;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
2009-06-20 16:17:54 +00:00
|
|
|
tcs->result_seek = tcs->position;
|
|
|
|
|
2009-06-03 08:19:32 +00:00
|
|
|
if (TAGCACHE_IS_NUMERIC(tcs->type))
|
2006-08-25 21:13:49 +00:00
|
|
|
{
|
|
|
|
snprintf(buf, sizeof(buf), "%d", tcs->position);
|
|
|
|
tcs->result = buf;
|
|
|
|
tcs->result_len = strlen(buf) + 1;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
/* Direct fetch. */
|
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
2009-06-20 16:17:54 +00:00
|
|
|
if (tcs->ramsearch)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
|
2009-06-20 16:17:54 +00:00
|
|
|
#if defined(HAVE_TC_RAMCACHE) && defined(HAVE_DIRCACHE)
|
|
|
|
if (tcs->type == tag_filename && (flag & FLAG_DIRCACHE)
|
|
|
|
&& is_dircache_intact())
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2007-07-20 17:06:55 +00:00
|
|
|
dircache_copy_path((struct dirent *)tcs->position,
|
2006-07-10 16:22:03 +00:00
|
|
|
buf, sizeof buf);
|
2006-03-26 11:33:42 +00:00
|
|
|
tcs->result = buf;
|
|
|
|
tcs->result_len = strlen(buf) + 1;
|
2006-08-30 18:18:37 +00:00
|
|
|
tcs->ramresult = false;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2009-06-20 16:17:54 +00:00
|
|
|
else
|
|
|
|
#endif
|
|
|
|
if (tcs->type != tag_filename)
|
|
|
|
{
|
|
|
|
struct tagfile_entry *ep;
|
|
|
|
|
|
|
|
ep = (struct tagfile_entry *)&hdr->tags[tcs->type][tcs->position];
|
|
|
|
tcs->result = ep->tag_data;
|
|
|
|
tcs->result_len = strlen(tcs->result) + 1;
|
|
|
|
tcs->idx_id = ep->idx_id;
|
|
|
|
tcs->ramresult = true;
|
|
|
|
|
|
|
|
/* Increase position for the next run. This may get overwritten. */
|
|
|
|
tcs->position += sizeof(struct tagfile_entry) + ep->tag_length;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
#endif
|
2009-06-19 14:30:59 +00:00
|
|
|
|
|
|
|
if (!open_files(tcs, tcs->type))
|
2009-06-20 16:17:54 +00:00
|
|
|
{
|
|
|
|
tcs->valid = false;
|
2009-06-19 14:30:59 +00:00
|
|
|
return false;
|
2009-06-20 16:17:54 +00:00
|
|
|
}
|
2009-06-19 14:30:59 +00:00
|
|
|
|
|
|
|
/* Seek stream to the correct position and continue to direct fetch. */
|
|
|
|
lseek(tcs->idxfd[tcs->type], tcs->position, SEEK_SET);
|
|
|
|
|
|
|
|
if (ecread(tcs->idxfd[tcs->type], &entry, 1,
|
|
|
|
tagfile_entry_ec, tc_stat.econ) != sizeof(struct tagfile_entry))
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2009-06-20 16:17:54 +00:00
|
|
|
logf("read error #5");
|
2009-06-19 14:30:59 +00:00
|
|
|
tcs->valid = false;
|
|
|
|
return false;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (entry.tag_length > (long)sizeof(buf))
|
|
|
|
{
|
|
|
|
tcs->valid = false;
|
2006-07-10 16:22:03 +00:00
|
|
|
logf("too long tag #2");
|
2009-06-20 16:17:54 +00:00
|
|
|
logf("P:%X/%X", tcs->position, entry.tag_length);
|
2006-03-26 11:33:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-07-10 16:22:03 +00:00
|
|
|
if (read(tcs->idxfd[tcs->type], buf, entry.tag_length) != entry.tag_length)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
tcs->valid = false;
|
2006-09-26 11:23:18 +00:00
|
|
|
logf("read error #4");
|
2006-03-26 11:33:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-06-19 14:30:59 +00:00
|
|
|
/**
|
|
|
|
Update the position for the next read (this may be overridden
|
|
|
|
if filters or clauses are being used).
|
|
|
|
*/
|
|
|
|
tcs->position += sizeof(struct tagfile_entry) + entry.tag_length;
|
2006-03-26 11:33:42 +00:00
|
|
|
tcs->result = buf;
|
2006-07-10 16:22:03 +00:00
|
|
|
tcs->result_len = strlen(tcs->result) + 1;
|
2006-03-30 12:07:32 +00:00
|
|
|
tcs->idx_id = entry.idx_id;
|
2006-08-30 18:18:37 +00:00
|
|
|
tcs->ramresult = false;
|
2006-04-10 10:26:24 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-07-10 16:22:03 +00:00
|
|
|
bool tagcache_get_next(struct tagcache_search *tcs)
|
|
|
|
{
|
|
|
|
while (get_next(tcs))
|
|
|
|
{
|
|
|
|
if (tcs->result_len > 1)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-04-10 10:26:24 +00:00
|
|
|
bool tagcache_retrieve(struct tagcache_search *tcs, int idxid,
|
2006-10-24 16:20:48 +00:00
|
|
|
int tag, char *buf, long size)
|
2006-04-10 10:26:24 +00:00
|
|
|
{
|
2006-07-15 17:36:25 +00:00
|
|
|
struct index_entry idx;
|
2006-04-10 10:26:24 +00:00
|
|
|
|
2006-09-23 10:29:14 +00:00
|
|
|
*buf = '\0';
|
2006-07-24 15:35:46 +00:00
|
|
|
if (!get_index(tcs->masterfd, idxid, &idx, true))
|
2006-07-15 17:36:25 +00:00
|
|
|
return false;
|
|
|
|
|
2006-10-24 16:20:48 +00:00
|
|
|
return retrieve(tcs, &idx, tag, buf, size);
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
2007-02-25 20:41:51 +00:00
|
|
|
static bool update_master_header(void)
|
|
|
|
{
|
|
|
|
struct master_header myhdr;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
if (!tc_stat.ready)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if ( (fd = open_master_fd(&myhdr, true)) < 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
myhdr.serial = current_tcmh.serial;
|
|
|
|
myhdr.commitid = current_tcmh.commitid;
|
2009-04-15 06:46:25 +00:00
|
|
|
myhdr.dirty = current_tcmh.dirty;
|
2007-02-25 20:41:51 +00:00
|
|
|
|
|
|
|
/* Write it back */
|
|
|
|
lseek(fd, 0, SEEK_SET);
|
|
|
|
ecwrite(fd, &myhdr, 1, master_header_ec, tc_stat.econ);
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
|
|
|
if (hdr)
|
|
|
|
{
|
|
|
|
hdr->h.serial = current_tcmh.serial;
|
|
|
|
hdr->h.commitid = current_tcmh.commitid;
|
2009-04-15 06:46:25 +00:00
|
|
|
hdr->h.dirty = current_tcmh.dirty;
|
2007-02-25 20:41:51 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
#if 0
|
2006-04-18 18:56:56 +00:00
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
void tagcache_modify(struct tagcache_search *tcs, int type, const char *text)
|
|
|
|
{
|
|
|
|
struct tagentry *entry;
|
|
|
|
|
|
|
|
if (tcs->type != tag_title)
|
|
|
|
return ;
|
|
|
|
|
|
|
|
/* We will need reserve buffer for this. */
|
|
|
|
if (tcs->ramcache)
|
|
|
|
{
|
|
|
|
struct tagfile_entry *ep;
|
|
|
|
|
|
|
|
ep = (struct tagfile_entry *)&hdr->tags[tcs->type][tcs->result_seek];
|
|
|
|
tcs->seek_list[tcs->seek_list_count];
|
|
|
|
}
|
|
|
|
|
2006-07-10 16:22:03 +00:00
|
|
|
entry = find_entry_ram();
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void tagcache_search_finish(struct tagcache_search *tcs)
|
|
|
|
{
|
2006-04-08 08:03:51 +00:00
|
|
|
int i;
|
|
|
|
|
2006-08-02 17:39:34 +00:00
|
|
|
if (!tcs->initialized)
|
|
|
|
return;
|
|
|
|
|
2006-04-03 18:57:34 +00:00
|
|
|
if (tcs->masterfd >= 0)
|
|
|
|
{
|
|
|
|
close(tcs->masterfd);
|
|
|
|
tcs->masterfd = -1;
|
|
|
|
}
|
2006-04-08 08:03:51 +00:00
|
|
|
|
|
|
|
for (i = 0; i < TAG_COUNT; i++)
|
|
|
|
{
|
|
|
|
if (tcs->idxfd[i] >= 0)
|
|
|
|
{
|
|
|
|
close(tcs->idxfd[i]);
|
|
|
|
tcs->idxfd[i] = -1;
|
|
|
|
}
|
|
|
|
}
|
2006-04-03 18:57:34 +00:00
|
|
|
|
|
|
|
tcs->ramsearch = false;
|
|
|
|
tcs->valid = false;
|
2006-08-02 17:39:34 +00:00
|
|
|
tcs->initialized = 0;
|
|
|
|
if (write_lock > 0)
|
|
|
|
write_lock--;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
2006-07-10 16:22:03 +00:00
|
|
|
#if defined(HAVE_TC_RAMCACHE) && defined(HAVE_DIRCACHE)
|
2006-04-03 06:00:56 +00:00
|
|
|
static struct tagfile_entry *get_tag(const struct index_entry *entry, int tag)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
return (struct tagfile_entry *)&hdr->tags[tag][entry->tag_seek[tag]];
|
|
|
|
}
|
|
|
|
|
2006-04-03 06:00:56 +00:00
|
|
|
static long get_tag_numeric(const struct index_entry *entry, int tag)
|
|
|
|
{
|
2007-09-15 22:45:08 +00:00
|
|
|
return check_virtual_tags(tag, entry);
|
2006-04-03 06:00:56 +00:00
|
|
|
}
|
2006-07-10 16:22:03 +00:00
|
|
|
|
2007-03-04 19:54:49 +00:00
|
|
|
static char* get_tag_string(const struct index_entry *entry, int tag)
|
|
|
|
{
|
|
|
|
char* s = get_tag(entry, tag)->tag_data;
|
|
|
|
return strcmp(s, UNTAGGED) ? s : NULL;
|
|
|
|
}
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
bool tagcache_fill_tags(struct mp3entry *id3, const char *filename)
|
|
|
|
{
|
|
|
|
struct index_entry *entry;
|
2006-07-15 17:36:25 +00:00
|
|
|
int idx_id;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2009-06-20 16:17:54 +00:00
|
|
|
if (!tc_stat.ready || !tc_stat.ramcache)
|
2006-07-23 11:15:28 +00:00
|
|
|
return false;
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
/* Find the corresponding entry in tagcache. */
|
2006-07-15 17:36:25 +00:00
|
|
|
idx_id = find_entry_ram(filename, NULL);
|
2009-06-20 16:17:54 +00:00
|
|
|
if (idx_id < 0)
|
2006-03-26 11:33:42 +00:00
|
|
|
return false;
|
|
|
|
|
2006-07-15 17:36:25 +00:00
|
|
|
entry = &hdr->indices[idx_id];
|
|
|
|
|
2007-03-04 19:54:49 +00:00
|
|
|
id3->title = get_tag_string(entry, tag_title);
|
|
|
|
id3->artist = get_tag_string(entry, tag_artist);
|
|
|
|
id3->album = get_tag_string(entry, tag_album);
|
|
|
|
id3->genre_string = get_tag_string(entry, tag_genre);
|
|
|
|
id3->composer = get_tag_string(entry, tag_composer);
|
|
|
|
id3->comment = get_tag_string(entry, tag_comment);
|
|
|
|
id3->albumartist = get_tag_string(entry, tag_albumartist);
|
2007-08-08 10:19:56 +00:00
|
|
|
id3->grouping = get_tag_string(entry, tag_grouping);
|
2007-03-04 17:30:12 +00:00
|
|
|
|
|
|
|
id3->playcount = get_tag_numeric(entry, tag_playcount);
|
2007-03-26 15:08:59 +00:00
|
|
|
id3->rating = get_tag_numeric(entry, tag_rating);
|
2007-03-04 17:30:12 +00:00
|
|
|
id3->lastplayed = get_tag_numeric(entry, tag_lastplayed);
|
2007-03-26 15:08:59 +00:00
|
|
|
id3->score = get_tag_numeric(entry, tag_virt_autoscore) / 10;
|
2007-03-04 17:30:12 +00:00
|
|
|
id3->year = get_tag_numeric(entry, tag_year);
|
|
|
|
|
2007-08-03 10:00:42 +00:00
|
|
|
id3->discnum = get_tag_numeric(entry, tag_discnumber);
|
2006-04-03 06:00:56 +00:00
|
|
|
id3->tracknum = get_tag_numeric(entry, tag_tracknumber);
|
|
|
|
id3->bitrate = get_tag_numeric(entry, tag_bitrate);
|
|
|
|
if (id3->bitrate == 0)
|
|
|
|
id3->bitrate = 1;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline void write_item(const char *item)
|
|
|
|
{
|
|
|
|
int len = strlen(item) + 1;
|
2008-01-25 21:21:41 +00:00
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
data_size += len;
|
|
|
|
write(cachefd, item, len);
|
|
|
|
}
|
|
|
|
|
2006-10-04 09:05:01 +00:00
|
|
|
static int check_if_empty(char **tag)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-10-04 09:05:01 +00:00
|
|
|
int length;
|
2008-01-25 21:21:41 +00:00
|
|
|
|
|
|
|
if (*tag == NULL || **tag == '\0')
|
2006-10-04 09:05:01 +00:00
|
|
|
{
|
2007-03-04 17:30:12 +00:00
|
|
|
*tag = UNTAGGED;
|
2007-03-04 19:30:03 +00:00
|
|
|
return sizeof(UNTAGGED); /* Tag length */
|
2006-10-04 09:05:01 +00:00
|
|
|
}
|
2008-01-25 21:21:41 +00:00
|
|
|
|
2006-10-04 09:05:01 +00:00
|
|
|
length = strlen(*tag);
|
2006-11-10 08:03:33 +00:00
|
|
|
if (length > TAG_MAXLEN)
|
2006-10-04 09:05:01 +00:00
|
|
|
{
|
|
|
|
logf("over length tag: %s", *tag);
|
2006-11-10 08:03:33 +00:00
|
|
|
length = TAG_MAXLEN;
|
2008-01-25 21:21:41 +00:00
|
|
|
(*tag)[length] = '\0';
|
2006-10-04 09:05:01 +00:00
|
|
|
}
|
2008-01-25 21:21:41 +00:00
|
|
|
|
2006-10-04 09:05:01 +00:00
|
|
|
return length + 1;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
2006-10-04 09:05:01 +00:00
|
|
|
#define ADD_TAG(entry,tag,data) \
|
|
|
|
/* Adding tag */ \
|
|
|
|
entry.tag_offset[tag] = offset; \
|
|
|
|
entry.tag_length[tag] = check_if_empty(data); \
|
|
|
|
offset += entry.tag_length[tag]
|
2009-06-30 21:32:38 +00:00
|
|
|
/* GCC 3.4.6 for Coldfire can choose to inline this function. Not a good
|
|
|
|
* idea, as it uses lots of stack and is called from a recursive function
|
|
|
|
* (check_dir).
|
|
|
|
*/
|
|
|
|
static void __attribute__ ((noinline)) add_tagcache(char *path,
|
|
|
|
unsigned long mtime
|
2006-07-10 16:22:03 +00:00
|
|
|
#if defined(HAVE_TC_RAMCACHE) && defined(HAVE_DIRCACHE)
|
2009-06-30 21:32:38 +00:00
|
|
|
,const struct dirent *dc
|
2006-03-26 11:33:42 +00:00
|
|
|
#endif
|
2009-06-30 21:32:38 +00:00
|
|
|
)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2007-10-01 20:06:21 +00:00
|
|
|
struct mp3entry id3;
|
2006-03-26 11:33:42 +00:00
|
|
|
struct temp_file_entry entry;
|
|
|
|
bool ret;
|
|
|
|
int fd;
|
2007-12-16 21:10:26 +00:00
|
|
|
int idx_id = -1;
|
2006-03-30 12:07:32 +00:00
|
|
|
char tracknumfix[3];
|
2006-10-04 09:05:01 +00:00
|
|
|
int offset = 0;
|
2006-11-10 08:03:33 +00:00
|
|
|
int path_length = strlen(path);
|
2007-06-25 11:33:21 +00:00
|
|
|
bool has_albumartist;
|
2007-08-08 10:19:56 +00:00
|
|
|
bool has_grouping;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2009-07-04 19:28:47 +00:00
|
|
|
#ifdef SIMULATOR
|
|
|
|
/* Crude logging for the sim - to aid in debugging */
|
|
|
|
int logfd = open(ROCKBOX_DIR "/database.log",
|
|
|
|
O_WRONLY | O_APPEND | O_CREAT);
|
|
|
|
if (logfd >= 0) {
|
|
|
|
write(logfd, path, strlen(path));
|
|
|
|
write(logfd, "\n", 1);
|
|
|
|
close(logfd);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
if (cachefd < 0)
|
|
|
|
return ;
|
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
/* Check for overlength file path. */
|
|
|
|
if (path_length > TAG_MAXLEN)
|
|
|
|
{
|
|
|
|
/* Path can't be shortened. */
|
2007-03-18 09:50:53 +00:00
|
|
|
logf("Too long path: %s", path);
|
2006-11-10 08:03:33 +00:00
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
/* Check if the file is supported. */
|
|
|
|
if (probe_file_format(path) == AFMT_UNKNOWN)
|
|
|
|
return ;
|
|
|
|
|
|
|
|
/* Check if the file is already cached. */
|
2006-07-10 16:22:03 +00:00
|
|
|
#if defined(HAVE_TC_RAMCACHE) && defined(HAVE_DIRCACHE)
|
2008-01-13 19:13:37 +00:00
|
|
|
if (tc_stat.ramcache && is_dircache_intact())
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2007-12-16 21:10:26 +00:00
|
|
|
idx_id = find_entry_ram(path, dc);
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
#endif
|
2009-06-20 16:17:54 +00:00
|
|
|
|
|
|
|
/* Be sure the entry doesn't exist. */
|
|
|
|
if (filenametag_fd >= 0 && idx_id < 0)
|
|
|
|
idx_id = find_entry_disk(path, false);
|
2007-12-16 21:10:26 +00:00
|
|
|
|
|
|
|
/* Check if file has been modified. */
|
|
|
|
if (idx_id >= 0)
|
|
|
|
{
|
|
|
|
struct index_entry idx;
|
|
|
|
|
2008-08-29 21:14:58 +00:00
|
|
|
/* TODO: Mark that the index exists (for fast reverse scan) */
|
|
|
|
//found_idx[idx_id/8] |= idx_id%8;
|
|
|
|
|
2007-12-16 21:10:26 +00:00
|
|
|
if (!get_index(-1, idx_id, &idx, true))
|
|
|
|
{
|
|
|
|
logf("failed to retrieve index entry");
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((unsigned long)idx.tag_seek[tag_mtime] == mtime)
|
|
|
|
{
|
|
|
|
/* No changes to file. */
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Metadata might have been changed. Delete the entry. */
|
|
|
|
logf("Re-adding: %s", path);
|
|
|
|
if (!delete_entry(idx_id))
|
|
|
|
{
|
|
|
|
logf("delete_entry failed: %d", idx_id);
|
|
|
|
return ;
|
2006-07-23 11:15:28 +00:00
|
|
|
}
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fd = open(path, O_RDONLY);
|
|
|
|
if (fd < 0)
|
|
|
|
{
|
|
|
|
logf("open fail: %s", path);
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
2007-10-01 20:06:21 +00:00
|
|
|
memset(&id3, 0, sizeof(struct mp3entry));
|
2006-03-30 12:07:32 +00:00
|
|
|
memset(&entry, 0, sizeof(struct temp_file_entry));
|
|
|
|
memset(&tracknumfix, 0, sizeof(tracknumfix));
|
2007-10-01 20:06:21 +00:00
|
|
|
ret = get_metadata(&id3, fd, path);
|
2006-03-26 11:33:42 +00:00
|
|
|
close(fd);
|
|
|
|
|
|
|
|
if (!ret)
|
2006-03-27 10:46:09 +00:00
|
|
|
return ;
|
|
|
|
|
2006-09-23 10:29:14 +00:00
|
|
|
logf("-> %s", path);
|
2006-07-24 12:10:50 +00:00
|
|
|
|
2006-10-04 09:05:01 +00:00
|
|
|
/* Generate track number if missing. */
|
2007-10-01 20:06:21 +00:00
|
|
|
if (id3.tracknum <= 0)
|
2006-03-30 12:07:32 +00:00
|
|
|
{
|
2006-04-05 18:46:38 +00:00
|
|
|
const char *p = strrchr(path, '.');
|
2006-03-30 12:07:32 +00:00
|
|
|
|
2006-04-05 18:46:38 +00:00
|
|
|
if (p == NULL)
|
|
|
|
p = &path[strlen(path)-1];
|
2006-03-30 12:07:32 +00:00
|
|
|
|
2006-04-05 18:46:38 +00:00
|
|
|
while (*p != '/')
|
2006-03-30 12:07:32 +00:00
|
|
|
{
|
2006-04-05 18:46:38 +00:00
|
|
|
if (isdigit(*p) && isdigit(*(p-1)))
|
|
|
|
{
|
|
|
|
tracknumfix[1] = *p--;
|
|
|
|
tracknumfix[0] = *p;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
p--;
|
2006-03-30 12:07:32 +00:00
|
|
|
}
|
2006-04-05 18:46:38 +00:00
|
|
|
|
2006-03-30 12:07:32 +00:00
|
|
|
if (tracknumfix[0] != '\0')
|
2006-10-04 09:05:01 +00:00
|
|
|
{
|
2007-10-01 20:06:21 +00:00
|
|
|
id3.tracknum = atoi(tracknumfix);
|
2006-10-04 09:05:01 +00:00
|
|
|
/* Set a flag to indicate track number has been generated. */
|
|
|
|
entry.flag |= FLAG_TRKNUMGEN;
|
|
|
|
}
|
2006-03-30 12:07:32 +00:00
|
|
|
else
|
2006-10-04 09:05:01 +00:00
|
|
|
{
|
|
|
|
/* Unable to generate track number. */
|
2007-10-01 20:06:21 +00:00
|
|
|
id3.tracknum = -1;
|
2006-10-04 09:05:01 +00:00
|
|
|
}
|
2006-03-30 12:07:32 +00:00
|
|
|
}
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-10-04 09:05:01 +00:00
|
|
|
/* Numeric tags */
|
2007-10-01 20:06:21 +00:00
|
|
|
entry.tag_offset[tag_year] = id3.year;
|
|
|
|
entry.tag_offset[tag_discnumber] = id3.discnum;
|
|
|
|
entry.tag_offset[tag_tracknumber] = id3.tracknum;
|
|
|
|
entry.tag_offset[tag_length] = id3.length;
|
|
|
|
entry.tag_offset[tag_bitrate] = id3.bitrate;
|
2007-12-16 21:10:26 +00:00
|
|
|
entry.tag_offset[tag_mtime] = mtime;
|
2006-10-04 09:05:01 +00:00
|
|
|
|
|
|
|
/* String tags. */
|
2007-10-01 20:06:21 +00:00
|
|
|
has_albumartist = id3.albumartist != NULL
|
|
|
|
&& strlen(id3.albumartist) > 0;
|
|
|
|
has_grouping = id3.grouping != NULL
|
|
|
|
&& strlen(id3.grouping) > 0;
|
2007-06-25 11:33:21 +00:00
|
|
|
|
2006-10-04 09:05:01 +00:00
|
|
|
ADD_TAG(entry, tag_filename, &path);
|
2007-10-01 20:06:21 +00:00
|
|
|
ADD_TAG(entry, tag_title, &id3.title);
|
|
|
|
ADD_TAG(entry, tag_artist, &id3.artist);
|
|
|
|
ADD_TAG(entry, tag_album, &id3.album);
|
|
|
|
ADD_TAG(entry, tag_genre, &id3.genre_string);
|
|
|
|
ADD_TAG(entry, tag_composer, &id3.composer);
|
|
|
|
ADD_TAG(entry, tag_comment, &id3.comment);
|
2007-06-25 11:33:21 +00:00
|
|
|
if (has_albumartist)
|
|
|
|
{
|
2007-10-01 20:06:21 +00:00
|
|
|
ADD_TAG(entry, tag_albumartist, &id3.albumartist);
|
2007-06-25 11:33:21 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-10-01 20:06:21 +00:00
|
|
|
ADD_TAG(entry, tag_albumartist, &id3.artist);
|
2007-06-25 11:33:21 +00:00
|
|
|
}
|
2007-08-08 10:19:56 +00:00
|
|
|
if (has_grouping)
|
|
|
|
{
|
2007-10-01 20:06:21 +00:00
|
|
|
ADD_TAG(entry, tag_grouping, &id3.grouping);
|
2007-08-08 10:19:56 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-10-01 20:06:21 +00:00
|
|
|
ADD_TAG(entry, tag_grouping, &id3.title);
|
2007-08-08 10:19:56 +00:00
|
|
|
}
|
2006-10-04 09:05:01 +00:00
|
|
|
entry.data_length = offset;
|
|
|
|
|
|
|
|
/* Write the header */
|
2006-03-26 11:33:42 +00:00
|
|
|
write(cachefd, &entry, sizeof(struct temp_file_entry));
|
2006-10-04 09:05:01 +00:00
|
|
|
|
|
|
|
/* And tags also... Correct order is critical */
|
2006-03-26 11:33:42 +00:00
|
|
|
write_item(path);
|
2007-10-01 20:06:21 +00:00
|
|
|
write_item(id3.title);
|
|
|
|
write_item(id3.artist);
|
|
|
|
write_item(id3.album);
|
|
|
|
write_item(id3.genre_string);
|
|
|
|
write_item(id3.composer);
|
|
|
|
write_item(id3.comment);
|
2007-06-25 11:33:21 +00:00
|
|
|
if (has_albumartist)
|
|
|
|
{
|
2007-10-01 20:06:21 +00:00
|
|
|
write_item(id3.albumartist);
|
2007-06-25 11:33:21 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-10-01 20:06:21 +00:00
|
|
|
write_item(id3.artist);
|
2007-06-25 11:33:21 +00:00
|
|
|
}
|
2007-08-08 10:19:56 +00:00
|
|
|
if (has_grouping)
|
|
|
|
{
|
2007-10-01 20:06:21 +00:00
|
|
|
write_item(id3.grouping);
|
2007-08-08 10:19:56 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-10-01 20:06:21 +00:00
|
|
|
write_item(id3.title);
|
2007-08-08 10:19:56 +00:00
|
|
|
}
|
2006-03-26 11:33:42 +00:00
|
|
|
total_entry_count++;
|
|
|
|
}
|
|
|
|
|
2006-04-23 18:47:26 +00:00
|
|
|
static bool tempbuf_insert(char *str, int id, int idx_id, bool unique)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
struct tempbuf_searchidx *index = (struct tempbuf_searchidx *)tempbuf;
|
|
|
|
int len = strlen(str)+1;
|
|
|
|
int i;
|
2006-04-18 18:56:56 +00:00
|
|
|
unsigned crc32;
|
|
|
|
unsigned *crcbuf = (unsigned *)&tempbuf[tempbuf_size-4];
|
2006-11-10 08:03:33 +00:00
|
|
|
char buf[TAG_MAXLEN+32];
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-04-23 18:47:26 +00:00
|
|
|
for (i = 0; str[i] != '\0' && i < (int)sizeof(buf)-1; i++)
|
|
|
|
buf[i] = tolower(str[i]);
|
|
|
|
buf[i] = '\0';
|
2006-04-18 18:56:56 +00:00
|
|
|
|
2006-04-23 18:47:26 +00:00
|
|
|
crc32 = crc_32(buf, i, 0xffffffff);
|
|
|
|
|
|
|
|
if (unique)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-04-23 18:47:26 +00:00
|
|
|
/* Check if the crc does not exist -> entry does not exist for sure. */
|
|
|
|
for (i = 0; i < tempbufidx; i++)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-04-23 18:47:26 +00:00
|
|
|
if (crcbuf[-i] != crc32)
|
|
|
|
continue;
|
|
|
|
|
2006-04-18 18:56:56 +00:00
|
|
|
if (!strcasecmp(str, index[i].str))
|
2006-03-26 18:36:31 +00:00
|
|
|
{
|
2006-09-26 11:23:18 +00:00
|
|
|
if (id < 0 || id >= lookup_buffer_depth)
|
|
|
|
{
|
|
|
|
logf("lookup buf overf.: %d", id);
|
|
|
|
return false;
|
|
|
|
}
|
2006-04-18 18:56:56 +00:00
|
|
|
|
2006-09-26 11:23:18 +00:00
|
|
|
lookup[id] = &index[i];
|
2006-04-18 18:56:56 +00:00
|
|
|
return true;
|
|
|
|
}
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-23 18:47:26 +00:00
|
|
|
/* Insert to CRC buffer. */
|
|
|
|
crcbuf[-tempbufidx] = crc32;
|
2006-04-18 18:56:56 +00:00
|
|
|
tempbuf_left -= 4;
|
2006-04-23 18:47:26 +00:00
|
|
|
|
|
|
|
/* Insert it to the buffer. */
|
|
|
|
tempbuf_left -= len;
|
2006-07-22 07:09:57 +00:00
|
|
|
if (tempbuf_left - 4 < 0 || tempbufidx >= commit_entry_count-1)
|
2006-04-23 18:47:26 +00:00
|
|
|
return false;
|
|
|
|
|
2006-09-26 11:23:18 +00:00
|
|
|
if (id >= lookup_buffer_depth)
|
|
|
|
{
|
|
|
|
logf("lookup buf overf. #2: %d", id);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (id >= 0)
|
2006-04-23 18:47:26 +00:00
|
|
|
{
|
|
|
|
lookup[id] = &index[tempbufidx];
|
|
|
|
index[tempbufidx].idlist.id = id;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
index[tempbufidx].idlist.id = -1;
|
|
|
|
|
|
|
|
index[tempbufidx].idlist.next = NULL;
|
|
|
|
index[tempbufidx].idx_id = idx_id;
|
|
|
|
index[tempbufidx].seek = -1;
|
|
|
|
index[tempbufidx].str = &tempbuf[tempbuf_pos];
|
|
|
|
memcpy(index[tempbufidx].str, str, len);
|
|
|
|
tempbuf_pos += len;
|
|
|
|
tempbufidx++;
|
|
|
|
|
|
|
|
return true;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int compare(const void *p1, const void *p2)
|
|
|
|
{
|
2007-03-10 14:34:56 +00:00
|
|
|
do_timed_yield();
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
struct tempbuf_searchidx *e1 = (struct tempbuf_searchidx *)p1;
|
|
|
|
struct tempbuf_searchidx *e2 = (struct tempbuf_searchidx *)p2;
|
|
|
|
|
2007-03-07 10:52:19 +00:00
|
|
|
if (strcmp(e1->str, UNTAGGED) == 0)
|
|
|
|
{
|
|
|
|
if (strcmp(e2->str, UNTAGGED) == 0)
|
|
|
|
return 0;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else if (strcmp(e2->str, UNTAGGED) == 0)
|
|
|
|
return 1;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
return strncasecmp(e1->str, e2->str, TAG_MAXLEN);
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int tempbuf_sort(int fd)
|
|
|
|
{
|
|
|
|
struct tempbuf_searchidx *index = (struct tempbuf_searchidx *)tempbuf;
|
|
|
|
struct tagfile_entry fe;
|
|
|
|
int i;
|
2006-03-27 10:46:09 +00:00
|
|
|
int length;
|
2006-04-23 18:47:26 +00:00
|
|
|
|
|
|
|
/* Generate reverse lookup entries. */
|
2006-09-26 11:23:18 +00:00
|
|
|
for (i = 0; i < lookup_buffer_depth; i++)
|
2006-04-23 18:47:26 +00:00
|
|
|
{
|
|
|
|
struct tempbuf_id_list *idlist;
|
|
|
|
|
|
|
|
if (!lookup[i])
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (lookup[i]->idlist.id == i)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
idlist = &lookup[i]->idlist;
|
|
|
|
while (idlist->next != NULL)
|
|
|
|
idlist = idlist->next;
|
|
|
|
|
|
|
|
tempbuf_left -= sizeof(struct tempbuf_id_list);
|
|
|
|
if (tempbuf_left - 4 < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
idlist->next = (struct tempbuf_id_list *)&tempbuf[tempbuf_pos];
|
|
|
|
if (tempbuf_pos & 0x03)
|
|
|
|
{
|
|
|
|
tempbuf_pos = (tempbuf_pos & ~0x03) + 0x04;
|
|
|
|
tempbuf_left -= 3;
|
|
|
|
idlist->next = (struct tempbuf_id_list *)&tempbuf[tempbuf_pos];
|
|
|
|
}
|
|
|
|
tempbuf_pos += sizeof(struct tempbuf_id_list);
|
|
|
|
|
|
|
|
idlist = idlist->next;
|
|
|
|
idlist->id = i;
|
|
|
|
idlist->next = NULL;
|
2007-03-10 14:34:56 +00:00
|
|
|
|
|
|
|
do_timed_yield();
|
2006-04-23 18:47:26 +00:00
|
|
|
}
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
qsort(index, tempbufidx, sizeof(struct tempbuf_searchidx), compare);
|
2006-09-26 11:23:18 +00:00
|
|
|
memset(lookup, 0, lookup_buffer_depth * sizeof(struct tempbuf_searchidx **));
|
2006-04-23 18:47:26 +00:00
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
for (i = 0; i < tempbufidx; i++)
|
|
|
|
{
|
2006-04-23 18:47:26 +00:00
|
|
|
struct tempbuf_id_list *idlist = &index[i].idlist;
|
|
|
|
|
|
|
|
/* Fix the lookup list. */
|
|
|
|
while (idlist != NULL)
|
|
|
|
{
|
|
|
|
if (idlist->id >= 0)
|
|
|
|
lookup[idlist->id] = &index[i];
|
|
|
|
idlist = idlist->next;
|
|
|
|
}
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
index[i].seek = lseek(fd, 0, SEEK_CUR);
|
2006-03-27 10:46:09 +00:00
|
|
|
length = strlen(index[i].str) + 1;
|
|
|
|
fe.tag_length = length;
|
2006-03-30 12:07:32 +00:00
|
|
|
fe.idx_id = index[i].idx_id;
|
2006-03-27 10:46:09 +00:00
|
|
|
|
2006-04-23 18:47:26 +00:00
|
|
|
/* Check the chunk alignment. */
|
|
|
|
if ((fe.tag_length + sizeof(struct tagfile_entry))
|
|
|
|
% TAGFILE_ENTRY_CHUNK_LENGTH)
|
|
|
|
{
|
|
|
|
fe.tag_length += TAGFILE_ENTRY_CHUNK_LENGTH -
|
|
|
|
((fe.tag_length + sizeof(struct tagfile_entry))
|
|
|
|
% TAGFILE_ENTRY_CHUNK_LENGTH);
|
|
|
|
}
|
|
|
|
|
2006-04-18 18:56:56 +00:00
|
|
|
#ifdef TAGCACHE_STRICT_ALIGN
|
2006-03-27 10:46:09 +00:00
|
|
|
/* Make sure the entry is long aligned. */
|
|
|
|
if (index[i].seek & 0x03)
|
|
|
|
{
|
|
|
|
logf("tempbuf_sort: alignment error!");
|
|
|
|
return -3;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-02-13 21:51:18 +00:00
|
|
|
if (ecwrite(fd, &fe, 1, tagfile_entry_ec, tc_stat.econ) !=
|
2006-03-26 11:33:42 +00:00
|
|
|
sizeof(struct tagfile_entry))
|
|
|
|
{
|
|
|
|
logf("tempbuf_sort: write error #1");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-03-27 10:46:09 +00:00
|
|
|
if (write(fd, index[i].str, length) != length)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
logf("tempbuf_sort: write error #2");
|
|
|
|
return -2;
|
|
|
|
}
|
2006-03-27 10:46:09 +00:00
|
|
|
|
|
|
|
/* Write some padding. */
|
2006-04-23 18:47:26 +00:00
|
|
|
if (fe.tag_length - length > 0)
|
|
|
|
write(fd, "XXXXXXXX", fe.tag_length - length);
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2006-04-18 18:56:56 +00:00
|
|
|
inline static struct tempbuf_searchidx* tempbuf_locate(int id)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-09-26 11:23:18 +00:00
|
|
|
if (id < 0 || id >= lookup_buffer_depth)
|
2006-04-23 18:47:26 +00:00
|
|
|
return NULL;
|
2006-04-18 18:56:56 +00:00
|
|
|
|
2006-04-23 18:47:26 +00:00
|
|
|
return lookup[id];
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-04-18 18:56:56 +00:00
|
|
|
inline static int tempbuf_find_location(int id)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
struct tempbuf_searchidx *entry;
|
|
|
|
|
|
|
|
entry = tempbuf_locate(id);
|
|
|
|
if (entry == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return entry->seek;
|
|
|
|
}
|
|
|
|
|
2006-10-04 09:05:01 +00:00
|
|
|
static bool build_numeric_indices(struct tagcache_header *h, int tmpfd)
|
2006-03-30 12:07:32 +00:00
|
|
|
{
|
2007-12-18 21:50:29 +00:00
|
|
|
struct master_header tcmh;
|
2006-03-30 12:07:32 +00:00
|
|
|
struct index_entry idx;
|
|
|
|
int masterfd;
|
|
|
|
int masterfd_pos;
|
2006-10-04 09:05:01 +00:00
|
|
|
struct temp_file_entry *entrybuf = (struct temp_file_entry *)tempbuf;
|
2006-03-30 12:07:32 +00:00
|
|
|
int max_entries;
|
2006-10-04 09:05:01 +00:00
|
|
|
int entries_processed = 0;
|
|
|
|
int i, j;
|
2007-12-18 21:50:29 +00:00
|
|
|
char buf[TAG_MAXLEN];
|
2006-03-30 12:07:32 +00:00
|
|
|
|
2006-10-04 09:05:01 +00:00
|
|
|
max_entries = tempbuf_size / sizeof(struct temp_file_entry) - 1;
|
2006-03-30 12:07:32 +00:00
|
|
|
|
2006-10-04 09:05:01 +00:00
|
|
|
logf("Building numeric indices...");
|
2006-03-30 12:07:32 +00:00
|
|
|
lseek(tmpfd, sizeof(struct tagcache_header), SEEK_SET);
|
|
|
|
|
2006-07-20 12:19:31 +00:00
|
|
|
if ( (masterfd = open_master_fd(&tcmh, true)) < 0)
|
2006-03-30 12:07:32 +00:00
|
|
|
return false;
|
|
|
|
|
2006-07-20 12:19:31 +00:00
|
|
|
masterfd_pos = lseek(masterfd, tcmh.tch.entry_count * sizeof(struct index_entry),
|
2006-03-30 12:07:32 +00:00
|
|
|
SEEK_CUR);
|
|
|
|
if (masterfd_pos == filesize(masterfd))
|
|
|
|
{
|
|
|
|
logf("we can't append!");
|
|
|
|
close(masterfd);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-10-04 09:05:01 +00:00
|
|
|
while (entries_processed < h->entry_count)
|
2006-03-30 12:07:32 +00:00
|
|
|
{
|
2007-02-25 20:41:51 +00:00
|
|
|
int count = MIN(h->entry_count - entries_processed, max_entries);
|
2006-10-04 09:05:01 +00:00
|
|
|
|
|
|
|
/* Read in as many entries as possible. */
|
|
|
|
for (i = 0; i < count; i++)
|
2006-03-30 12:07:32 +00:00
|
|
|
{
|
2007-12-18 21:50:29 +00:00
|
|
|
struct temp_file_entry *tfe = &entrybuf[i];
|
|
|
|
int datastart;
|
|
|
|
|
2006-10-04 09:05:01 +00:00
|
|
|
/* Read in numeric data. */
|
2007-12-18 21:50:29 +00:00
|
|
|
if (read(tmpfd, tfe, sizeof(struct temp_file_entry)) !=
|
2006-10-04 09:05:01 +00:00
|
|
|
sizeof(struct temp_file_entry))
|
|
|
|
{
|
|
|
|
logf("read fail #1");
|
|
|
|
close(masterfd);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-12-18 21:50:29 +00:00
|
|
|
datastart = lseek(tmpfd, 0, SEEK_CUR);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read string data from the following tags:
|
|
|
|
* - tag_filename
|
|
|
|
* - tag_artist
|
|
|
|
* - tag_album
|
|
|
|
* - tag_title
|
|
|
|
*
|
|
|
|
* A crc32 hash is calculated from the read data
|
|
|
|
* and stored back to the data offset field kept in memory.
|
|
|
|
*/
|
|
|
|
#define tmpdb_read_string_tag(tag) \
|
|
|
|
lseek(tmpfd, tfe->tag_offset[tag], SEEK_CUR); \
|
|
|
|
if ((unsigned long)tfe->tag_length[tag] > sizeof buf) \
|
|
|
|
{ \
|
|
|
|
logf("read fail: buffer overflow"); \
|
|
|
|
close(masterfd); \
|
|
|
|
return false; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
if (read(tmpfd, buf, tfe->tag_length[tag]) != \
|
|
|
|
tfe->tag_length[tag]) \
|
|
|
|
{ \
|
|
|
|
logf("read fail #2"); \
|
|
|
|
close(masterfd); \
|
|
|
|
return false; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
tfe->tag_offset[tag] = crc_32(buf, strlen(buf), 0xffffffff); \
|
|
|
|
lseek(tmpfd, datastart, SEEK_SET)
|
|
|
|
|
|
|
|
tmpdb_read_string_tag(tag_filename);
|
|
|
|
tmpdb_read_string_tag(tag_artist);
|
|
|
|
tmpdb_read_string_tag(tag_album);
|
|
|
|
tmpdb_read_string_tag(tag_title);
|
|
|
|
|
|
|
|
/* Seek to the end of the string data. */
|
|
|
|
lseek(tmpfd, tfe->data_length, SEEK_CUR);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Backup the master index position. */
|
|
|
|
masterfd_pos = lseek(masterfd, 0, SEEK_CUR);
|
|
|
|
lseek(masterfd, sizeof(struct master_header), SEEK_SET);
|
|
|
|
|
|
|
|
/* Check if we can resurrect some deleted runtime statistics data. */
|
|
|
|
for (i = 0; i < tcmh.tch.entry_count; i++)
|
|
|
|
{
|
|
|
|
/* Read the index entry. */
|
|
|
|
if (ecread(masterfd, &idx, 1, index_entry_ec, tc_stat.econ)
|
|
|
|
!= sizeof(struct index_entry))
|
|
|
|
{
|
|
|
|
logf("read fail #3");
|
|
|
|
close(masterfd);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Skip unless the entry is marked as being deleted
|
|
|
|
* or the data has already been resurrected.
|
|
|
|
*/
|
|
|
|
if (!(idx.flag & FLAG_DELETED) || idx.flag & FLAG_RESURRECTED)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Now try to match the entry. */
|
|
|
|
/**
|
|
|
|
* To succesfully match a song, the following conditions
|
|
|
|
* must apply:
|
|
|
|
*
|
|
|
|
* For numeric fields: tag_length
|
|
|
|
* - Full identical match is required
|
|
|
|
*
|
|
|
|
* If tag_filename matches, no further checking necessary.
|
|
|
|
*
|
|
|
|
* For string hashes: tag_artist, tag_album, tag_title
|
|
|
|
* - Two of these must match
|
|
|
|
*/
|
|
|
|
for (j = 0; j < count; j++)
|
|
|
|
{
|
|
|
|
struct temp_file_entry *tfe = &entrybuf[j];
|
|
|
|
|
|
|
|
/* Try to match numeric fields first. */
|
|
|
|
if (tfe->tag_offset[tag_length] != idx.tag_seek[tag_length])
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Now it's time to do the hash matching. */
|
|
|
|
if (tfe->tag_offset[tag_filename] != idx.tag_seek[tag_filename])
|
|
|
|
{
|
|
|
|
int match_count = 0;
|
|
|
|
|
|
|
|
/* No filename match, check if we can match two other tags. */
|
|
|
|
#define tmpdb_match(tag) \
|
|
|
|
if (tfe->tag_offset[tag] == idx.tag_seek[tag]) \
|
|
|
|
match_count++
|
|
|
|
|
|
|
|
tmpdb_match(tag_artist);
|
|
|
|
tmpdb_match(tag_album);
|
|
|
|
tmpdb_match(tag_title);
|
|
|
|
|
|
|
|
if (match_count < 2)
|
|
|
|
{
|
|
|
|
/* Still no match found, give up. */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* A match found, now copy & resurrect the statistical data. */
|
|
|
|
#define tmpdb_copy_tag(tag) \
|
|
|
|
tfe->tag_offset[tag] = idx.tag_seek[tag]
|
|
|
|
|
|
|
|
tmpdb_copy_tag(tag_playcount);
|
|
|
|
tmpdb_copy_tag(tag_rating);
|
|
|
|
tmpdb_copy_tag(tag_playtime);
|
|
|
|
tmpdb_copy_tag(tag_lastplayed);
|
|
|
|
tmpdb_copy_tag(tag_commitid);
|
|
|
|
|
|
|
|
/* Avoid processing this entry again. */
|
|
|
|
idx.flag |= FLAG_RESURRECTED;
|
|
|
|
|
|
|
|
lseek(masterfd, -sizeof(struct index_entry), SEEK_CUR);
|
|
|
|
if (ecwrite(masterfd, &idx, 1, index_entry_ec, tc_stat.econ)
|
|
|
|
!= sizeof(struct index_entry))
|
|
|
|
{
|
|
|
|
logf("masterfd writeback fail #1");
|
|
|
|
close(masterfd);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
logf("Entry resurrected");
|
|
|
|
}
|
2006-03-30 12:07:32 +00:00
|
|
|
}
|
|
|
|
|
2007-12-18 21:50:29 +00:00
|
|
|
|
|
|
|
/* Restore the master index position. */
|
|
|
|
lseek(masterfd, masterfd_pos, SEEK_SET);
|
|
|
|
|
2006-10-04 09:05:01 +00:00
|
|
|
/* Commit the data to the index. */
|
|
|
|
for (i = 0; i < count; i++)
|
2006-03-30 12:07:32 +00:00
|
|
|
{
|
2006-10-04 09:05:01 +00:00
|
|
|
int loc = lseek(masterfd, 0, SEEK_CUR);
|
|
|
|
|
2007-02-13 21:51:18 +00:00
|
|
|
if (ecread(masterfd, &idx, 1, index_entry_ec, tc_stat.econ)
|
|
|
|
!= sizeof(struct index_entry))
|
2006-10-04 09:05:01 +00:00
|
|
|
{
|
2007-12-18 21:50:29 +00:00
|
|
|
logf("read fail #3");
|
2006-10-04 09:05:01 +00:00
|
|
|
close(masterfd);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (j = 0; j < TAG_COUNT; j++)
|
|
|
|
{
|
2009-06-03 08:19:32 +00:00
|
|
|
if (!TAGCACHE_IS_NUMERIC(j))
|
2006-10-04 09:05:01 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
idx.tag_seek[j] = entrybuf[i].tag_offset[j];
|
|
|
|
}
|
|
|
|
idx.flag = entrybuf[i].flag;
|
|
|
|
|
2007-12-18 21:50:29 +00:00
|
|
|
if (idx.tag_seek[tag_commitid])
|
|
|
|
{
|
|
|
|
/* Data has been resurrected. */
|
|
|
|
idx.flag |= FLAG_DIRTYNUM;
|
|
|
|
}
|
|
|
|
else if (tc_stat.ready && current_tcmh.commitid > 0)
|
2007-02-25 20:41:51 +00:00
|
|
|
{
|
|
|
|
idx.tag_seek[tag_commitid] = current_tcmh.commitid;
|
|
|
|
idx.flag |= FLAG_DIRTYNUM;
|
|
|
|
}
|
|
|
|
|
2006-10-04 09:05:01 +00:00
|
|
|
/* Write back the updated index. */
|
|
|
|
lseek(masterfd, loc, SEEK_SET);
|
2007-02-13 21:51:18 +00:00
|
|
|
if (ecwrite(masterfd, &idx, 1, index_entry_ec, tc_stat.econ)
|
|
|
|
!= sizeof(struct index_entry))
|
2006-10-04 09:05:01 +00:00
|
|
|
{
|
|
|
|
logf("write fail");
|
|
|
|
close(masterfd);
|
|
|
|
return false;
|
|
|
|
}
|
2006-03-30 12:07:32 +00:00
|
|
|
}
|
2006-10-04 09:05:01 +00:00
|
|
|
|
|
|
|
entries_processed += count;
|
2007-03-18 09:50:53 +00:00
|
|
|
logf("%d/%ld entries processed", entries_processed, h->entry_count);
|
2006-03-30 12:07:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
close(masterfd);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2006-04-18 18:56:56 +00:00
|
|
|
|
2006-04-23 18:47:26 +00:00
|
|
|
/**
|
|
|
|
* Return values:
|
|
|
|
* > 0 success
|
|
|
|
* == 0 temporary failure
|
|
|
|
* < 0 fatal error
|
|
|
|
*/
|
|
|
|
static int build_index(int index_type, struct tagcache_header *h, int tmpfd)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
struct tagcache_header tch;
|
2006-07-20 12:19:31 +00:00
|
|
|
struct master_header tcmh;
|
2006-04-18 18:56:56 +00:00
|
|
|
struct index_entry idxbuf[IDX_BUF_DEPTH];
|
|
|
|
int idxbuf_pos;
|
2006-11-10 08:03:33 +00:00
|
|
|
char buf[TAG_MAXLEN+32];
|
2006-03-26 11:33:42 +00:00
|
|
|
int fd = -1, masterfd;
|
|
|
|
bool error = false;
|
|
|
|
int init;
|
|
|
|
int masterfd_pos;
|
|
|
|
|
|
|
|
logf("Building index: %d", index_type);
|
|
|
|
|
2006-07-22 07:09:57 +00:00
|
|
|
/* Check the number of entries we need to allocate ram for. */
|
|
|
|
commit_entry_count = h->entry_count + 1;
|
|
|
|
|
|
|
|
masterfd = open_master_fd(&tcmh, false);
|
|
|
|
if (masterfd >= 0)
|
|
|
|
{
|
|
|
|
commit_entry_count += tcmh.tch.entry_count;
|
|
|
|
close(masterfd);
|
|
|
|
}
|
2007-02-25 20:41:51 +00:00
|
|
|
else
|
|
|
|
remove_files(); /* Just to be sure we are clean. */
|
2006-09-26 11:23:18 +00:00
|
|
|
|
|
|
|
/* Open the index file, which contains the tag names. */
|
|
|
|
fd = open_tag_fd(&tch, index_type, true);
|
|
|
|
if (fd >= 0)
|
|
|
|
{
|
2007-03-18 09:50:53 +00:00
|
|
|
logf("tch.datasize=%ld", tch.datasize);
|
2006-09-26 11:23:18 +00:00
|
|
|
lookup_buffer_depth = 1 +
|
|
|
|
/* First part */ commit_entry_count +
|
|
|
|
/* Second part */ (tch.datasize / TAGFILE_ENTRY_CHUNK_LENGTH);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lookup_buffer_depth = 1 +
|
|
|
|
/* First part */ commit_entry_count +
|
|
|
|
/* Second part */ 0;
|
|
|
|
}
|
2006-07-22 07:09:57 +00:00
|
|
|
|
2007-03-18 09:50:53 +00:00
|
|
|
logf("lookup_buffer_depth=%ld", lookup_buffer_depth);
|
|
|
|
logf("commit_entry_count=%ld", commit_entry_count);
|
2006-09-26 11:23:18 +00:00
|
|
|
|
|
|
|
/* Allocate buffer for all index entries from both old and new
|
|
|
|
* tag files. */
|
2006-03-26 11:33:42 +00:00
|
|
|
tempbufidx = 0;
|
2006-07-22 07:09:57 +00:00
|
|
|
tempbuf_pos = commit_entry_count * sizeof(struct tempbuf_searchidx);
|
2006-09-26 11:23:18 +00:00
|
|
|
|
|
|
|
/* Allocate lookup buffer. The first portion of commit_entry_count
|
|
|
|
* contains the new tags in the temporary file and the second
|
|
|
|
* part for locating entries already in the db.
|
|
|
|
*
|
|
|
|
* New tags Old tags
|
|
|
|
* +---------+---------------------------+
|
|
|
|
* | index | position/ENTRY_CHUNK_SIZE | lookup buffer
|
|
|
|
* +---------+---------------------------+
|
|
|
|
*
|
|
|
|
* Old tags are inserted to a temporary buffer with position:
|
|
|
|
* tempbuf_insert(position/ENTRY_CHUNK_SIZE, ...);
|
|
|
|
* And new tags with index:
|
|
|
|
* tempbuf_insert(idx, ...);
|
|
|
|
*
|
|
|
|
* The buffer is sorted and written into tag file:
|
|
|
|
* tempbuf_sort(...);
|
|
|
|
* leaving master index locations messed up.
|
|
|
|
*
|
|
|
|
* That is fixed using the lookup buffer for old tags:
|
|
|
|
* new_seek = tempbuf_find_location(old_seek, ...);
|
|
|
|
* and for new tags:
|
|
|
|
* new_seek = tempbuf_find_location(idx);
|
|
|
|
*/
|
|
|
|
lookup = (struct tempbuf_searchidx **)&tempbuf[tempbuf_pos];
|
|
|
|
tempbuf_pos += lookup_buffer_depth * sizeof(void **);
|
|
|
|
memset(lookup, 0, lookup_buffer_depth * sizeof(void **));
|
|
|
|
|
|
|
|
/* And calculate the remaining data space used mainly for storing
|
|
|
|
* tag data (strings). */
|
2006-04-23 18:47:26 +00:00
|
|
|
tempbuf_left = tempbuf_size - tempbuf_pos - 8;
|
2006-07-22 07:09:57 +00:00
|
|
|
if (tempbuf_left - TAGFILE_ENTRY_AVG_LENGTH * commit_entry_count < 0)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
logf("Buffer way too small!");
|
2006-04-23 18:47:26 +00:00
|
|
|
return 0;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (fd >= 0)
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* If tag file contains unique tags (sorted index), we will load
|
|
|
|
* it entirely into memory so we can resort it later for use with
|
|
|
|
* chunked browsing.
|
|
|
|
*/
|
2009-06-03 08:19:32 +00:00
|
|
|
if (TAGCACHE_IS_SORTED(index_type))
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-04-18 18:56:56 +00:00
|
|
|
logf("loading tags...");
|
2006-03-26 11:33:42 +00:00
|
|
|
for (i = 0; i < tch.entry_count; i++)
|
|
|
|
{
|
|
|
|
struct tagfile_entry entry;
|
|
|
|
int loc = lseek(fd, 0, SEEK_CUR);
|
2006-09-26 11:23:18 +00:00
|
|
|
bool ret;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2007-02-13 21:51:18 +00:00
|
|
|
if (ecread(fd, &entry, 1, tagfile_entry_ec, tc_stat.econ)
|
2006-03-26 11:33:42 +00:00
|
|
|
!= sizeof(struct tagfile_entry))
|
|
|
|
{
|
2006-09-26 11:23:18 +00:00
|
|
|
logf("read error #7");
|
2006-03-26 11:33:42 +00:00
|
|
|
close(fd);
|
2006-04-23 18:47:26 +00:00
|
|
|
return -2;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (entry.tag_length >= (int)sizeof(buf))
|
|
|
|
{
|
2006-07-10 16:22:03 +00:00
|
|
|
logf("too long tag #3");
|
2006-03-26 11:33:42 +00:00
|
|
|
close(fd);
|
2006-04-23 18:47:26 +00:00
|
|
|
return -2;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (read(fd, buf, entry.tag_length) != entry.tag_length)
|
|
|
|
{
|
2006-09-26 11:23:18 +00:00
|
|
|
logf("read error #8");
|
2006-03-26 11:33:42 +00:00
|
|
|
close(fd);
|
2006-04-23 18:47:26 +00:00
|
|
|
return -2;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
2006-07-10 16:22:03 +00:00
|
|
|
/* Skip deleted entries. */
|
|
|
|
if (buf[0] == '\0')
|
|
|
|
continue;
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
/**
|
|
|
|
* Save the tag and tag id in the memory buffer. Tag id
|
|
|
|
* is saved so we can later reindex the master lookup
|
|
|
|
* table when the index gets resorted.
|
|
|
|
*/
|
2006-09-26 11:23:18 +00:00
|
|
|
ret = tempbuf_insert(buf, loc/TAGFILE_ENTRY_CHUNK_LENGTH
|
|
|
|
+ commit_entry_count, entry.idx_id,
|
2009-06-03 08:19:32 +00:00
|
|
|
TAGCACHE_IS_UNIQUE(index_type));
|
2006-09-26 11:23:18 +00:00
|
|
|
if (!ret)
|
|
|
|
{
|
|
|
|
close(fd);
|
|
|
|
return -3;
|
|
|
|
}
|
2007-03-10 14:34:56 +00:00
|
|
|
do_timed_yield();
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
2006-04-18 18:56:56 +00:00
|
|
|
logf("done");
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
tempbufidx = tch.entry_count;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Creating new index file to store the tags. No need to preload
|
|
|
|
* anything whether the index type is sorted or not.
|
|
|
|
*/
|
2006-07-23 14:28:12 +00:00
|
|
|
snprintf(buf, sizeof buf, TAGCACHE_FILE_INDEX, index_type);
|
2006-03-26 11:33:42 +00:00
|
|
|
fd = open(buf, O_WRONLY | O_CREAT | O_TRUNC);
|
|
|
|
if (fd < 0)
|
|
|
|
{
|
|
|
|
logf("%s open fail", buf);
|
2006-04-23 18:47:26 +00:00
|
|
|
return -2;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tch.magic = TAGCACHE_MAGIC;
|
|
|
|
tch.entry_count = 0;
|
|
|
|
tch.datasize = 0;
|
|
|
|
|
2007-02-13 21:51:18 +00:00
|
|
|
if (ecwrite(fd, &tch, 1, tagcache_header_ec, tc_stat.econ)
|
|
|
|
!= sizeof(struct tagcache_header))
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
logf("header write failed");
|
|
|
|
close(fd);
|
2006-04-23 18:47:26 +00:00
|
|
|
return -2;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Loading the tag lookup file as "master file". */
|
|
|
|
logf("Loading index file");
|
|
|
|
masterfd = open(TAGCACHE_FILE_MASTER, O_RDWR);
|
|
|
|
|
|
|
|
if (masterfd < 0)
|
|
|
|
{
|
2007-02-25 20:41:51 +00:00
|
|
|
logf("Creating new DB");
|
2006-03-26 11:33:42 +00:00
|
|
|
masterfd = open(TAGCACHE_FILE_MASTER, O_WRONLY | O_CREAT | O_TRUNC);
|
|
|
|
|
|
|
|
if (masterfd < 0)
|
|
|
|
{
|
2006-11-10 08:03:33 +00:00
|
|
|
logf("Failure to create index file (%s)", TAGCACHE_FILE_MASTER);
|
2006-03-26 11:33:42 +00:00
|
|
|
close(fd);
|
2006-04-23 18:47:26 +00:00
|
|
|
return -2;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Write the header (write real values later). */
|
2006-07-20 12:19:31 +00:00
|
|
|
memset(&tcmh, 0, sizeof(struct master_header));
|
|
|
|
tcmh.tch = *h;
|
|
|
|
tcmh.tch.entry_count = 0;
|
|
|
|
tcmh.tch.datasize = 0;
|
2007-02-25 20:41:51 +00:00
|
|
|
tcmh.dirty = true;
|
2007-02-13 21:51:18 +00:00
|
|
|
ecwrite(masterfd, &tcmh, 1, master_header_ec, tc_stat.econ);
|
2006-03-26 11:33:42 +00:00
|
|
|
init = true;
|
|
|
|
masterfd_pos = lseek(masterfd, 0, SEEK_CUR);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Master file already exists so we need to process the current
|
|
|
|
* file first.
|
|
|
|
*/
|
|
|
|
init = false;
|
|
|
|
|
2007-02-13 21:51:18 +00:00
|
|
|
if (ecread(masterfd, &tcmh, 1, master_header_ec, tc_stat.econ) !=
|
2006-07-20 12:19:31 +00:00
|
|
|
sizeof(struct master_header) || tcmh.tch.magic != TAGCACHE_MAGIC)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
logf("header error");
|
|
|
|
close(fd);
|
|
|
|
close(masterfd);
|
2006-04-23 18:47:26 +00:00
|
|
|
return -2;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If we reach end of the master file, we need to expand it to
|
|
|
|
* hold new tags. If the current index is not sorted, we can
|
|
|
|
* simply append new data to end of the file.
|
|
|
|
* However, if the index is sorted, we need to update all tag
|
|
|
|
* pointers in the master file for the current index.
|
|
|
|
*/
|
2006-07-20 12:19:31 +00:00
|
|
|
masterfd_pos = lseek(masterfd, tcmh.tch.entry_count * sizeof(struct index_entry),
|
2006-03-26 11:33:42 +00:00
|
|
|
SEEK_CUR);
|
|
|
|
if (masterfd_pos == filesize(masterfd))
|
|
|
|
{
|
|
|
|
logf("appending...");
|
|
|
|
init = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load new unique tags in memory to be sorted later and added
|
|
|
|
* to the master lookup file.
|
|
|
|
*/
|
2009-06-03 08:19:32 +00:00
|
|
|
if (TAGCACHE_IS_SORTED(index_type))
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
lseek(tmpfd, sizeof(struct tagcache_header), SEEK_SET);
|
|
|
|
/* h is the header of the temporary file containing new tags. */
|
2006-04-18 18:56:56 +00:00
|
|
|
logf("inserting new tags...");
|
2006-03-26 11:33:42 +00:00
|
|
|
for (i = 0; i < h->entry_count; i++)
|
|
|
|
{
|
|
|
|
struct temp_file_entry entry;
|
|
|
|
|
|
|
|
if (read(tmpfd, &entry, sizeof(struct temp_file_entry)) !=
|
|
|
|
sizeof(struct temp_file_entry))
|
|
|
|
{
|
2007-02-13 21:51:18 +00:00
|
|
|
logf("read fail #3");
|
2006-03-26 11:33:42 +00:00
|
|
|
error = true;
|
|
|
|
goto error_exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read data. */
|
|
|
|
if (entry.tag_length[index_type] >= (long)sizeof(buf))
|
|
|
|
{
|
|
|
|
logf("too long entry!");
|
|
|
|
error = true;
|
|
|
|
goto error_exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
lseek(tmpfd, entry.tag_offset[index_type], SEEK_CUR);
|
|
|
|
if (read(tmpfd, buf, entry.tag_length[index_type]) !=
|
|
|
|
entry.tag_length[index_type])
|
|
|
|
{
|
2007-02-13 21:51:18 +00:00
|
|
|
logf("read fail #4");
|
2006-03-26 11:33:42 +00:00
|
|
|
error = true;
|
|
|
|
goto error_exit;
|
|
|
|
}
|
2006-03-27 07:44:32 +00:00
|
|
|
|
2009-06-03 08:19:32 +00:00
|
|
|
if (TAGCACHE_IS_UNIQUE(index_type))
|
2006-04-23 18:47:26 +00:00
|
|
|
error = !tempbuf_insert(buf, i, -1, true);
|
2006-03-27 07:44:32 +00:00
|
|
|
else
|
2006-07-20 12:19:31 +00:00
|
|
|
error = !tempbuf_insert(buf, i, tcmh.tch.entry_count + i, false);
|
2006-03-27 07:44:32 +00:00
|
|
|
|
|
|
|
if (error)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
logf("insert error");
|
|
|
|
goto error_exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Skip to next. */
|
|
|
|
lseek(tmpfd, entry.data_length - entry.tag_offset[index_type] -
|
|
|
|
entry.tag_length[index_type], SEEK_CUR);
|
2007-03-10 14:34:56 +00:00
|
|
|
do_timed_yield();
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
2006-04-18 18:56:56 +00:00
|
|
|
logf("done");
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
/* Sort the buffer data and write it to the index file. */
|
|
|
|
lseek(fd, sizeof(struct tagcache_header), SEEK_SET);
|
2009-06-20 16:17:54 +00:00
|
|
|
/**
|
|
|
|
* We need to truncate the index file now. There can be junk left
|
|
|
|
* at the end of file (however, we _should_ always follow the
|
|
|
|
* entry_count and don't crash with that).
|
|
|
|
*/
|
|
|
|
ftruncate(fd, lseek(fd, 0, SEEK_CUR));
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
i = tempbuf_sort(fd);
|
|
|
|
if (i < 0)
|
|
|
|
goto error_exit;
|
|
|
|
logf("sorted %d tags", i);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Now update all indexes in the master lookup file.
|
|
|
|
*/
|
2006-04-18 18:56:56 +00:00
|
|
|
logf("updating indices...");
|
2006-07-20 12:19:31 +00:00
|
|
|
lseek(masterfd, sizeof(struct master_header), SEEK_SET);
|
|
|
|
for (i = 0; i < tcmh.tch.entry_count; i += idxbuf_pos)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-04-18 18:56:56 +00:00
|
|
|
int j;
|
2006-03-26 11:33:42 +00:00
|
|
|
int loc = lseek(masterfd, 0, SEEK_CUR);
|
2006-04-18 18:56:56 +00:00
|
|
|
|
2006-07-20 12:19:31 +00:00
|
|
|
idxbuf_pos = MIN(tcmh.tch.entry_count - i, IDX_BUF_DEPTH);
|
2006-04-18 18:56:56 +00:00
|
|
|
|
2007-02-13 21:51:18 +00:00
|
|
|
if (ecread(masterfd, idxbuf, idxbuf_pos, index_entry_ec, tc_stat.econ)
|
|
|
|
!= (int)sizeof(struct index_entry)*idxbuf_pos)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2007-02-13 21:51:18 +00:00
|
|
|
logf("read fail #5");
|
2006-03-26 11:33:42 +00:00
|
|
|
error = true;
|
|
|
|
goto error_exit ;
|
|
|
|
}
|
2006-04-18 18:56:56 +00:00
|
|
|
lseek(masterfd, loc, SEEK_SET);
|
|
|
|
|
|
|
|
for (j = 0; j < idxbuf_pos; j++)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-07-10 16:22:03 +00:00
|
|
|
if (idxbuf[j].flag & FLAG_DELETED)
|
|
|
|
{
|
2006-07-22 18:58:28 +00:00
|
|
|
/* We can just ignore deleted entries. */
|
2007-12-18 21:50:29 +00:00
|
|
|
// idxbuf[j].tag_seek[index_type] = 0;
|
2006-07-10 16:22:03 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2006-04-18 18:56:56 +00:00
|
|
|
idxbuf[j].tag_seek[index_type] = tempbuf_find_location(
|
2006-04-23 18:47:26 +00:00
|
|
|
idxbuf[j].tag_seek[index_type]/TAGFILE_ENTRY_CHUNK_LENGTH
|
2006-07-22 07:09:57 +00:00
|
|
|
+ commit_entry_count);
|
2006-04-18 18:56:56 +00:00
|
|
|
|
|
|
|
if (idxbuf[j].tag_seek[index_type] < 0)
|
|
|
|
{
|
2008-08-29 21:14:58 +00:00
|
|
|
logf("update error: %d/%d/%d",
|
2007-12-18 21:50:29 +00:00
|
|
|
idxbuf[j].flag, i+j, tcmh.tch.entry_count);
|
2006-04-18 18:56:56 +00:00
|
|
|
error = true;
|
|
|
|
goto error_exit;
|
|
|
|
}
|
2006-04-23 18:47:26 +00:00
|
|
|
|
2007-03-10 14:34:56 +00:00
|
|
|
do_timed_yield();
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
2006-04-18 18:56:56 +00:00
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
/* Write back the updated index. */
|
2007-02-13 21:51:18 +00:00
|
|
|
if (ecwrite(masterfd, idxbuf, idxbuf_pos,
|
|
|
|
index_entry_ec, tc_stat.econ) !=
|
2006-04-18 18:56:56 +00:00
|
|
|
(int)sizeof(struct index_entry)*idxbuf_pos)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
logf("write fail");
|
|
|
|
error = true;
|
|
|
|
goto error_exit;
|
|
|
|
}
|
|
|
|
}
|
2006-04-18 18:56:56 +00:00
|
|
|
logf("done");
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Walk through the temporary file containing the new tags.
|
|
|
|
*/
|
|
|
|
// build_normal_index(h, tmpfd, masterfd, idx);
|
2006-04-18 18:56:56 +00:00
|
|
|
logf("updating new indices...");
|
2006-03-26 11:33:42 +00:00
|
|
|
lseek(masterfd, masterfd_pos, SEEK_SET);
|
|
|
|
lseek(tmpfd, sizeof(struct tagcache_header), SEEK_SET);
|
|
|
|
lseek(fd, 0, SEEK_END);
|
2006-04-18 18:56:56 +00:00
|
|
|
for (i = 0; i < h->entry_count; i += idxbuf_pos)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-04-18 18:56:56 +00:00
|
|
|
int j;
|
|
|
|
|
|
|
|
idxbuf_pos = MIN(h->entry_count - i, IDX_BUF_DEPTH);
|
2006-03-26 11:33:42 +00:00
|
|
|
if (init)
|
|
|
|
{
|
2006-04-18 18:56:56 +00:00
|
|
|
memset(idxbuf, 0, sizeof(struct index_entry)*IDX_BUF_DEPTH);
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-04-18 18:56:56 +00:00
|
|
|
int loc = lseek(masterfd, 0, SEEK_CUR);
|
|
|
|
|
2007-02-13 21:51:18 +00:00
|
|
|
if (ecread(masterfd, idxbuf, idxbuf_pos, index_entry_ec, tc_stat.econ)
|
|
|
|
!= (int)sizeof(struct index_entry)*idxbuf_pos)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2007-02-13 21:51:18 +00:00
|
|
|
logf("read fail #6");
|
2006-03-26 11:33:42 +00:00
|
|
|
error = true;
|
|
|
|
break ;
|
|
|
|
}
|
2006-04-18 18:56:56 +00:00
|
|
|
lseek(masterfd, loc, SEEK_SET);
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Read entry headers. */
|
2006-04-18 18:56:56 +00:00
|
|
|
for (j = 0; j < idxbuf_pos; j++)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2009-06-03 08:19:32 +00:00
|
|
|
if (!TAGCACHE_IS_SORTED(index_type))
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-04-18 18:56:56 +00:00
|
|
|
struct temp_file_entry entry;
|
|
|
|
struct tagfile_entry fe;
|
|
|
|
|
|
|
|
if (read(tmpfd, &entry, sizeof(struct temp_file_entry)) !=
|
|
|
|
sizeof(struct temp_file_entry))
|
|
|
|
{
|
2007-02-13 21:51:18 +00:00
|
|
|
logf("read fail #7");
|
2006-04-18 18:56:56 +00:00
|
|
|
error = true;
|
|
|
|
break ;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read data. */
|
|
|
|
if (entry.tag_length[index_type] >= (int)sizeof(buf))
|
|
|
|
{
|
|
|
|
logf("too long entry!");
|
|
|
|
logf("length=%d", entry.tag_length[index_type]);
|
2007-03-20 13:53:23 +00:00
|
|
|
logf("pos=0x%02lx", lseek(tmpfd, 0, SEEK_CUR));
|
2006-04-18 18:56:56 +00:00
|
|
|
error = true;
|
|
|
|
break ;
|
|
|
|
}
|
|
|
|
|
|
|
|
lseek(tmpfd, entry.tag_offset[index_type], SEEK_CUR);
|
|
|
|
if (read(tmpfd, buf, entry.tag_length[index_type]) !=
|
|
|
|
entry.tag_length[index_type])
|
|
|
|
{
|
2007-02-13 21:51:18 +00:00
|
|
|
logf("read fail #8");
|
2007-03-18 09:50:53 +00:00
|
|
|
logf("offset=0x%02lx", entry.tag_offset[index_type]);
|
2006-04-18 18:56:56 +00:00
|
|
|
logf("length=0x%02x", entry.tag_length[index_type]);
|
|
|
|
error = true;
|
|
|
|
break ;
|
|
|
|
}
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-04-18 18:56:56 +00:00
|
|
|
/* Write to index file. */
|
|
|
|
idxbuf[j].tag_seek[index_type] = lseek(fd, 0, SEEK_CUR);
|
|
|
|
fe.tag_length = entry.tag_length[index_type];
|
2006-07-20 12:19:31 +00:00
|
|
|
fe.idx_id = tcmh.tch.entry_count + i + j;
|
2007-02-13 21:51:18 +00:00
|
|
|
ecwrite(fd, &fe, 1, tagfile_entry_ec, tc_stat.econ);
|
2006-04-18 18:56:56 +00:00
|
|
|
write(fd, buf, fe.tag_length);
|
|
|
|
tempbufidx++;
|
|
|
|
|
|
|
|
/* Skip to next. */
|
|
|
|
lseek(tmpfd, entry.data_length - entry.tag_offset[index_type] -
|
|
|
|
entry.tag_length[index_type], SEEK_CUR);
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
2006-04-18 18:56:56 +00:00
|
|
|
else
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-04-18 18:56:56 +00:00
|
|
|
/* Locate the correct entry from the sorted array. */
|
|
|
|
idxbuf[j].tag_seek[index_type] = tempbuf_find_location(i + j);
|
|
|
|
if (idxbuf[j].tag_seek[index_type] < 0)
|
|
|
|
{
|
2007-03-20 13:53:23 +00:00
|
|
|
logf("entry not found (%d)", j);
|
2006-04-18 18:56:56 +00:00
|
|
|
error = true;
|
|
|
|
break ;
|
|
|
|
}
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Write index. */
|
2007-02-13 21:51:18 +00:00
|
|
|
if (ecwrite(masterfd, idxbuf, idxbuf_pos,
|
|
|
|
index_entry_ec, tc_stat.econ) !=
|
2006-04-18 18:56:56 +00:00
|
|
|
(int)sizeof(struct index_entry)*idxbuf_pos)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
logf("tagcache: write fail #4");
|
|
|
|
error = true;
|
|
|
|
break ;
|
|
|
|
}
|
2006-04-16 17:32:54 +00:00
|
|
|
|
2007-03-10 14:34:56 +00:00
|
|
|
do_timed_yield();
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
2006-04-18 18:56:56 +00:00
|
|
|
logf("done");
|
|
|
|
|
2006-04-23 18:47:26 +00:00
|
|
|
/* Finally write the header. */
|
|
|
|
tch.magic = TAGCACHE_MAGIC;
|
|
|
|
tch.entry_count = tempbufidx;
|
|
|
|
tch.datasize = lseek(fd, 0, SEEK_END) - sizeof(struct tagcache_header);
|
|
|
|
lseek(fd, 0, SEEK_SET);
|
2007-02-13 21:51:18 +00:00
|
|
|
ecwrite(fd, &tch, 1, tagcache_header_ec, tc_stat.econ);
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-04-23 18:47:26 +00:00
|
|
|
if (index_type != tag_filename)
|
|
|
|
h->datasize += tch.datasize;
|
2007-03-18 09:50:53 +00:00
|
|
|
logf("s:%d/%ld/%ld", index_type, tch.datasize, h->datasize);
|
2006-03-26 11:33:42 +00:00
|
|
|
error_exit:
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
close(masterfd);
|
|
|
|
|
2006-04-23 18:47:26 +00:00
|
|
|
if (error)
|
|
|
|
return -2;
|
|
|
|
|
|
|
|
return 1;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool commit(void)
|
|
|
|
{
|
2006-07-20 12:19:31 +00:00
|
|
|
struct tagcache_header tch;
|
|
|
|
struct master_header tcmh;
|
2006-03-26 11:33:42 +00:00
|
|
|
int i, len, rc;
|
|
|
|
int tmpfd;
|
|
|
|
int masterfd;
|
2006-05-30 18:13:18 +00:00
|
|
|
#ifdef HAVE_DIRCACHE
|
|
|
|
bool dircache_buffer_stolen = false;
|
|
|
|
#endif
|
|
|
|
bool local_allocation = false;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
logf("committing tagcache");
|
|
|
|
|
2006-08-02 17:39:34 +00:00
|
|
|
while (write_lock)
|
|
|
|
sleep(1);
|
2006-09-26 11:23:18 +00:00
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
tmpfd = open(TAGCACHE_FILE_TEMP, O_RDONLY);
|
|
|
|
if (tmpfd < 0)
|
|
|
|
{
|
|
|
|
logf("nothing to commit");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
/* Load the header. */
|
|
|
|
len = sizeof(struct tagcache_header);
|
2006-07-20 12:19:31 +00:00
|
|
|
rc = read(tmpfd, &tch, len);
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-07-20 12:19:31 +00:00
|
|
|
if (tch.magic != TAGCACHE_MAGIC || rc != len)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
logf("incorrect header");
|
|
|
|
close(tmpfd);
|
|
|
|
remove(TAGCACHE_FILE_TEMP);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-07-20 12:19:31 +00:00
|
|
|
if (tch.entry_count == 0)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
logf("nothing to commit");
|
|
|
|
close(tmpfd);
|
|
|
|
remove(TAGCACHE_FILE_TEMP);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-09-26 11:23:18 +00:00
|
|
|
#ifdef HAVE_EEPROM_SETTINGS
|
|
|
|
remove(TAGCACHE_STATEFILE);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* At first be sure to unload the ramcache! */
|
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
2006-11-10 08:03:33 +00:00
|
|
|
tc_stat.ramcache = false;
|
2006-09-26 11:23:18 +00:00
|
|
|
#endif
|
|
|
|
|
2006-08-02 17:39:34 +00:00
|
|
|
read_lock++;
|
|
|
|
|
2006-04-16 17:32:54 +00:00
|
|
|
/* Try to steal every buffer we can :) */
|
2006-05-30 18:13:18 +00:00
|
|
|
if (tempbuf_size == 0)
|
|
|
|
local_allocation = true;
|
|
|
|
|
2006-04-16 17:32:54 +00:00
|
|
|
#ifdef HAVE_DIRCACHE
|
|
|
|
if (tempbuf_size == 0)
|
|
|
|
{
|
|
|
|
/* Try to steal the dircache buffer. */
|
|
|
|
tempbuf = dircache_steal_buffer(&tempbuf_size);
|
2006-05-28 09:59:24 +00:00
|
|
|
tempbuf_size &= ~0x03;
|
2006-05-30 18:13:18 +00:00
|
|
|
|
|
|
|
if (tempbuf_size > 0)
|
2006-05-31 06:07:28 +00:00
|
|
|
{
|
2006-05-30 18:13:18 +00:00
|
|
|
dircache_buffer_stolen = true;
|
2006-05-31 06:07:28 +00:00
|
|
|
}
|
2006-04-16 17:32:54 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-05-28 09:59:24 +00:00
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
2006-11-10 08:03:33 +00:00
|
|
|
if (tempbuf_size == 0 && tc_stat.ramcache_allocated > 0)
|
2006-05-28 09:59:24 +00:00
|
|
|
{
|
|
|
|
tempbuf = (char *)(hdr + 1);
|
2006-11-10 08:03:33 +00:00
|
|
|
tempbuf_size = tc_stat.ramcache_allocated - sizeof(struct ramcache_header) - 128;
|
2006-05-28 09:59:24 +00:00
|
|
|
tempbuf_size &= ~0x03;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-04-16 17:32:54 +00:00
|
|
|
/* And finally fail if there are no buffers available. */
|
2006-03-26 11:33:42 +00:00
|
|
|
if (tempbuf_size == 0)
|
|
|
|
{
|
|
|
|
logf("delaying commit until next boot");
|
2006-11-10 08:03:33 +00:00
|
|
|
tc_stat.commit_delayed = true;
|
2006-03-26 11:33:42 +00:00
|
|
|
close(tmpfd);
|
2006-08-02 17:39:34 +00:00
|
|
|
read_lock--;
|
2006-03-26 11:33:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-03-18 09:50:53 +00:00
|
|
|
logf("commit %ld entries...", tch.entry_count);
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2007-02-25 20:41:51 +00:00
|
|
|
/* Mark DB dirty so it will stay disabled if commit fails. */
|
|
|
|
current_tcmh.dirty = true;
|
|
|
|
update_master_header();
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
/* Now create the index files. */
|
2006-11-10 08:03:33 +00:00
|
|
|
tc_stat.commit_step = 0;
|
2006-07-20 12:19:31 +00:00
|
|
|
tch.datasize = 0;
|
2006-11-10 08:03:33 +00:00
|
|
|
tc_stat.commit_delayed = false;
|
2006-04-23 18:47:26 +00:00
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
for (i = 0; i < TAG_COUNT; i++)
|
|
|
|
{
|
2006-04-23 18:47:26 +00:00
|
|
|
int ret;
|
|
|
|
|
2009-06-03 08:19:32 +00:00
|
|
|
if (TAGCACHE_IS_NUMERIC(i))
|
2006-04-23 18:47:26 +00:00
|
|
|
continue;
|
2006-03-30 12:07:32 +00:00
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
tc_stat.commit_step++;
|
2006-07-20 12:19:31 +00:00
|
|
|
ret = build_index(i, &tch, tmpfd);
|
2006-04-23 18:47:26 +00:00
|
|
|
if (ret <= 0)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-05-28 09:59:24 +00:00
|
|
|
close(tmpfd);
|
2006-03-26 11:33:42 +00:00
|
|
|
logf("tagcache failed init");
|
2009-04-15 06:46:25 +00:00
|
|
|
if (ret == 0)
|
2006-11-10 08:03:33 +00:00
|
|
|
tc_stat.commit_delayed = true;
|
2009-04-15 06:46:25 +00:00
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
tc_stat.commit_step = 0;
|
2006-08-02 17:39:34 +00:00
|
|
|
read_lock--;
|
2006-03-26 11:33:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-02-25 20:41:51 +00:00
|
|
|
if (!build_numeric_indices(&tch, tmpfd))
|
|
|
|
{
|
|
|
|
logf("Failure to commit numeric indices");
|
|
|
|
close(tmpfd);
|
|
|
|
tc_stat.commit_step = 0;
|
|
|
|
read_lock--;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
close(tmpfd);
|
2009-04-15 06:46:25 +00:00
|
|
|
remove(TAGCACHE_FILE_TEMP);
|
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
tc_stat.commit_step = 0;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
/* Update the master index headers. */
|
2006-07-20 12:19:31 +00:00
|
|
|
if ( (masterfd = open_master_fd(&tcmh, true)) < 0)
|
2006-08-02 17:39:34 +00:00
|
|
|
{
|
|
|
|
read_lock--;
|
2006-03-26 11:33:42 +00:00
|
|
|
return false;
|
2006-08-02 17:39:34 +00:00
|
|
|
}
|
|
|
|
|
2006-07-20 12:19:31 +00:00
|
|
|
tcmh.tch.entry_count += tch.entry_count;
|
|
|
|
tcmh.tch.datasize = sizeof(struct master_header)
|
|
|
|
+ sizeof(struct index_entry) * tcmh.tch.entry_count
|
|
|
|
+ tch.datasize;
|
2007-02-25 20:41:51 +00:00
|
|
|
tcmh.dirty = false;
|
|
|
|
tcmh.commitid++;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
lseek(masterfd, 0, SEEK_SET);
|
2007-02-13 21:51:18 +00:00
|
|
|
ecwrite(masterfd, &tcmh, 1, master_header_ec, tc_stat.econ);
|
2006-03-26 11:33:42 +00:00
|
|
|
close(masterfd);
|
|
|
|
|
|
|
|
logf("tagcache committed");
|
2007-02-25 20:41:51 +00:00
|
|
|
tc_stat.ready = check_all_headers();
|
2007-03-08 08:20:30 +00:00
|
|
|
tc_stat.readyvalid = true;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-05-30 18:13:18 +00:00
|
|
|
if (local_allocation)
|
|
|
|
{
|
|
|
|
tempbuf = NULL;
|
|
|
|
tempbuf_size = 0;
|
|
|
|
}
|
|
|
|
|
2006-04-16 17:32:54 +00:00
|
|
|
#ifdef HAVE_DIRCACHE
|
|
|
|
/* Rebuild the dircache, if we stole the buffer. */
|
2006-05-30 18:13:18 +00:00
|
|
|
if (dircache_buffer_stolen)
|
|
|
|
dircache_build(0);
|
2006-04-16 17:32:54 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
|
|
|
/* Reload tagcache. */
|
2006-11-10 08:03:33 +00:00
|
|
|
if (tc_stat.ramcache_allocated > 0)
|
2006-04-16 17:32:54 +00:00
|
|
|
tagcache_start_scan();
|
|
|
|
#endif
|
|
|
|
|
2006-08-02 17:39:34 +00:00
|
|
|
read_lock--;
|
2006-07-23 15:35:53 +00:00
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void allocate_tempbuf(void)
|
|
|
|
{
|
|
|
|
/* Yeah, malloc would be really nice now :) */
|
2006-11-10 08:03:33 +00:00
|
|
|
#ifdef __PCTOOL__
|
|
|
|
tempbuf_size = 32*1024*1024;
|
|
|
|
tempbuf = malloc(tempbuf_size);
|
|
|
|
#else
|
2006-03-26 11:33:42 +00:00
|
|
|
tempbuf = (char *)(((long)audiobuf & ~0x03) + 0x04);
|
2006-03-26 17:48:12 +00:00
|
|
|
tempbuf_size = (long)audiobufend - (long)audiobuf - 4;
|
2006-03-26 11:33:42 +00:00
|
|
|
audiobuf += tempbuf_size;
|
2006-11-10 08:03:33 +00:00
|
|
|
#endif
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void free_tempbuf(void)
|
|
|
|
{
|
|
|
|
if (tempbuf_size == 0)
|
|
|
|
return ;
|
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
#ifdef __PCTOOL__
|
|
|
|
free(tempbuf);
|
|
|
|
#else
|
2006-03-26 11:33:42 +00:00
|
|
|
audiobuf -= tempbuf_size;
|
2006-11-10 08:03:33 +00:00
|
|
|
#endif
|
2006-03-26 11:33:42 +00:00
|
|
|
tempbuf = NULL;
|
|
|
|
tempbuf_size = 0;
|
|
|
|
}
|
|
|
|
|
2008-12-15 23:42:19 +00:00
|
|
|
#ifndef __PCTOOL__
|
|
|
|
|
2006-07-20 12:19:31 +00:00
|
|
|
static bool modify_numeric_entry(int masterfd, int idx_id, int tag, long data)
|
|
|
|
{
|
|
|
|
struct index_entry idx;
|
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
if (!tc_stat.ready)
|
2006-07-23 11:15:28 +00:00
|
|
|
return false;
|
|
|
|
|
2009-06-03 08:19:32 +00:00
|
|
|
if (!TAGCACHE_IS_NUMERIC(tag))
|
2006-07-20 12:19:31 +00:00
|
|
|
return false;
|
|
|
|
|
2006-07-24 15:35:46 +00:00
|
|
|
if (!get_index(masterfd, idx_id, &idx, false))
|
2006-07-20 12:19:31 +00:00
|
|
|
return false;
|
2006-07-15 17:36:25 +00:00
|
|
|
|
2006-07-20 12:19:31 +00:00
|
|
|
idx.tag_seek[tag] = data;
|
2006-07-23 15:35:53 +00:00
|
|
|
idx.flag |= FLAG_DIRTYNUM;
|
2006-07-20 12:19:31 +00:00
|
|
|
|
2006-07-23 15:35:53 +00:00
|
|
|
return write_index(masterfd, idx_id, &idx);
|
2006-07-20 12:19:31 +00:00
|
|
|
}
|
|
|
|
|
2007-07-21 17:35:19 +00:00
|
|
|
#if 0
|
2006-07-20 12:19:31 +00:00
|
|
|
bool tagcache_modify_numeric_entry(struct tagcache_search *tcs,
|
|
|
|
int tag, long data)
|
|
|
|
{
|
|
|
|
struct master_header myhdr;
|
|
|
|
|
|
|
|
if (tcs->masterfd < 0)
|
|
|
|
{
|
|
|
|
if ( (tcs->masterfd = open_master_fd(&myhdr, true)) < 0)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return modify_numeric_entry(tcs->masterfd, tcs->idx_id, tag, data);
|
2006-07-15 17:36:25 +00:00
|
|
|
}
|
2007-07-21 17:35:19 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define COMMAND_QUEUE_IS_EMPTY (command_queue_ridx == command_queue_widx)
|
|
|
|
|
|
|
|
static bool command_queue_is_full(void)
|
|
|
|
{
|
|
|
|
int next;
|
|
|
|
|
|
|
|
next = command_queue_widx + 1;
|
|
|
|
if (next >= TAGCACHE_COMMAND_QUEUE_LENGTH)
|
|
|
|
next = 0;
|
|
|
|
|
|
|
|
return (next == command_queue_ridx);
|
|
|
|
}
|
2008-12-15 23:42:19 +00:00
|
|
|
|
2009-10-20 21:54:44 +00:00
|
|
|
static void command_queue_sync_callback(void *data)
|
2007-07-21 17:35:19 +00:00
|
|
|
{
|
2009-10-20 21:54:44 +00:00
|
|
|
(void)data;
|
2007-07-21 17:35:19 +00:00
|
|
|
struct master_header myhdr;
|
|
|
|
int masterfd;
|
|
|
|
|
|
|
|
mutex_lock(&command_queue_mutex);
|
|
|
|
|
|
|
|
if ( (masterfd = open_master_fd(&myhdr, true)) < 0)
|
2009-10-20 21:54:44 +00:00
|
|
|
return;
|
2007-07-21 17:35:19 +00:00
|
|
|
|
|
|
|
while (command_queue_ridx != command_queue_widx)
|
|
|
|
{
|
|
|
|
struct tagcache_command_entry *ce = &command_queue[command_queue_ridx];
|
|
|
|
|
|
|
|
switch (ce->command)
|
|
|
|
{
|
|
|
|
case CMD_UPDATE_MASTER_HEADER:
|
|
|
|
{
|
|
|
|
close(masterfd);
|
|
|
|
update_master_header();
|
|
|
|
|
|
|
|
/* Re-open the masterfd. */
|
|
|
|
if ( (masterfd = open_master_fd(&myhdr, true)) < 0)
|
2009-10-20 21:54:44 +00:00
|
|
|
return;
|
2007-07-21 17:35:19 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case CMD_UPDATE_NUMERIC:
|
|
|
|
{
|
|
|
|
modify_numeric_entry(masterfd, ce->idx_id, ce->tag, ce->data);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (++command_queue_ridx >= TAGCACHE_COMMAND_QUEUE_LENGTH)
|
|
|
|
command_queue_ridx = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
close(masterfd);
|
|
|
|
|
2008-02-17 18:35:27 +00:00
|
|
|
tc_stat.queue_length = 0;
|
2007-07-21 17:35:19 +00:00
|
|
|
mutex_unlock(&command_queue_mutex);
|
2008-02-17 18:35:27 +00:00
|
|
|
}
|
|
|
|
|
2008-04-19 23:22:40 +00:00
|
|
|
static void run_command_queue(bool force)
|
2008-02-17 18:35:27 +00:00
|
|
|
{
|
|
|
|
if (COMMAND_QUEUE_IS_EMPTY)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (force || command_queue_is_full())
|
2009-10-20 21:54:44 +00:00
|
|
|
command_queue_sync_callback(NULL);
|
2008-02-17 18:35:27 +00:00
|
|
|
else
|
2008-11-01 16:14:28 +00:00
|
|
|
register_storage_idle_func(command_queue_sync_callback);
|
2007-07-21 17:35:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void queue_command(int cmd, long idx_id, int tag, long data)
|
|
|
|
{
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
int next;
|
|
|
|
|
|
|
|
mutex_lock(&command_queue_mutex);
|
|
|
|
next = command_queue_widx + 1;
|
|
|
|
if (next >= TAGCACHE_COMMAND_QUEUE_LENGTH)
|
|
|
|
next = 0;
|
|
|
|
|
|
|
|
/* Make sure queue is not full. */
|
|
|
|
if (next != command_queue_ridx)
|
|
|
|
{
|
|
|
|
struct tagcache_command_entry *ce = &command_queue[command_queue_widx];
|
|
|
|
|
|
|
|
ce->command = cmd;
|
|
|
|
ce->idx_id = idx_id;
|
|
|
|
ce->tag = tag;
|
|
|
|
ce->data = data;
|
|
|
|
|
|
|
|
command_queue_widx = next;
|
2008-02-17 18:35:27 +00:00
|
|
|
|
|
|
|
tc_stat.queue_length++;
|
|
|
|
|
2007-07-21 17:35:19 +00:00
|
|
|
mutex_unlock(&command_queue_mutex);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Queue is full, try again later... */
|
|
|
|
mutex_unlock(&command_queue_mutex);
|
|
|
|
sleep(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
long tagcache_increase_serial(void)
|
|
|
|
{
|
|
|
|
long old;
|
|
|
|
|
|
|
|
if (!tc_stat.ready)
|
|
|
|
return -2;
|
|
|
|
|
|
|
|
while (read_lock)
|
|
|
|
sleep(1);
|
|
|
|
|
|
|
|
old = current_tcmh.serial++;
|
|
|
|
queue_command(CMD_UPDATE_MASTER_HEADER, 0, 0, 0);
|
|
|
|
|
|
|
|
return old;
|
|
|
|
}
|
|
|
|
|
|
|
|
void tagcache_update_numeric(int idx_id, int tag, long data)
|
|
|
|
{
|
|
|
|
queue_command(CMD_UPDATE_NUMERIC, idx_id, tag, data);
|
|
|
|
}
|
2008-12-15 23:42:19 +00:00
|
|
|
#endif /* !__PCTOOL__ */
|
2007-07-21 17:35:19 +00:00
|
|
|
|
|
|
|
long tagcache_get_serial(void)
|
|
|
|
{
|
|
|
|
return current_tcmh.serial;
|
|
|
|
}
|
|
|
|
|
|
|
|
long tagcache_get_commitid(void)
|
|
|
|
{
|
|
|
|
return current_tcmh.commitid;
|
|
|
|
}
|
2006-07-15 17:36:25 +00:00
|
|
|
|
2006-07-16 15:04:46 +00:00
|
|
|
static bool write_tag(int fd, const char *tagstr, const char *datastr)
|
|
|
|
{
|
2007-02-25 19:01:32 +00:00
|
|
|
char buf[512];
|
2006-07-16 15:04:46 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
snprintf(buf, sizeof buf, "%s=\"", tagstr);
|
2008-04-19 23:48:13 +00:00
|
|
|
for (i = strlen(buf); i < (long)sizeof(buf)-4; i++)
|
2006-07-16 15:04:46 +00:00
|
|
|
{
|
|
|
|
if (*datastr == '\0')
|
|
|
|
break;
|
|
|
|
|
2008-04-19 23:48:13 +00:00
|
|
|
if (*datastr == '"' || *datastr == '\\')
|
|
|
|
buf[i++] = '\\';
|
2006-07-16 15:04:46 +00:00
|
|
|
|
|
|
|
buf[i] = *(datastr++);
|
|
|
|
}
|
|
|
|
|
|
|
|
strcpy(&buf[i], "\" ");
|
|
|
|
|
|
|
|
write(fd, buf, i + 2);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-12-15 23:42:19 +00:00
|
|
|
#ifndef __PCTOOL__
|
|
|
|
|
2006-07-20 12:19:31 +00:00
|
|
|
static bool read_tag(char *dest, long size,
|
|
|
|
const char *src, const char *tagstr)
|
|
|
|
{
|
|
|
|
int pos;
|
|
|
|
char current_tag[32];
|
|
|
|
|
|
|
|
while (*src != '\0')
|
|
|
|
{
|
|
|
|
/* Skip all whitespace */
|
|
|
|
while (*src == ' ')
|
|
|
|
src++;
|
|
|
|
|
|
|
|
if (*src == '\0')
|
|
|
|
break;
|
|
|
|
|
|
|
|
pos = 0;
|
|
|
|
/* Read in tag name */
|
|
|
|
while (*src != '=' && *src != ' ')
|
|
|
|
{
|
|
|
|
current_tag[pos] = *src;
|
|
|
|
src++;
|
|
|
|
pos++;
|
|
|
|
|
|
|
|
if (*src == '\0' || pos >= (long)sizeof(current_tag))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
current_tag[pos] = '\0';
|
|
|
|
|
|
|
|
/* Read in tag data */
|
|
|
|
|
|
|
|
/* Find the start. */
|
|
|
|
while (*src != '"' && *src != '\0')
|
|
|
|
src++;
|
|
|
|
|
|
|
|
if (*src == '\0' || *(++src) == '\0')
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Read the data. */
|
|
|
|
for (pos = 0; pos < size; pos++)
|
|
|
|
{
|
|
|
|
if (*src == '\0')
|
|
|
|
break;
|
|
|
|
|
2008-04-19 23:48:13 +00:00
|
|
|
if (*src == '\\')
|
2006-07-20 12:19:31 +00:00
|
|
|
{
|
2008-04-19 23:48:13 +00:00
|
|
|
dest[pos] = *(src+1);
|
2006-07-20 12:19:31 +00:00
|
|
|
src += 2;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
dest[pos] = *src;
|
|
|
|
|
|
|
|
if (*src == '"')
|
|
|
|
{
|
|
|
|
src++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*src == '\0')
|
|
|
|
break;
|
|
|
|
|
|
|
|
src++;
|
|
|
|
}
|
|
|
|
dest[pos] = '\0';
|
|
|
|
|
|
|
|
if (!strcasecmp(tagstr, current_tag))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-10-21 20:37:33 +00:00
|
|
|
static int parse_changelog_line(int line_n, const char *buf, void *parameters)
|
2006-07-20 12:19:31 +00:00
|
|
|
{
|
2006-07-23 15:35:53 +00:00
|
|
|
struct index_entry idx;
|
2006-11-10 08:03:33 +00:00
|
|
|
char tag_data[TAG_MAXLEN+32];
|
2006-07-20 12:19:31 +00:00
|
|
|
int idx_id;
|
2006-10-21 20:51:10 +00:00
|
|
|
long masterfd = (long)parameters;
|
2007-03-26 15:08:59 +00:00
|
|
|
const int import_tags[] = { tag_playcount, tag_rating, tag_playtime, tag_lastplayed,
|
2007-02-25 20:41:51 +00:00
|
|
|
tag_commitid };
|
2006-07-20 12:19:31 +00:00
|
|
|
int i;
|
2006-10-21 20:37:33 +00:00
|
|
|
(void)line_n;
|
2006-07-20 12:19:31 +00:00
|
|
|
|
|
|
|
if (*buf == '#')
|
2006-10-21 20:37:33 +00:00
|
|
|
return 0;
|
2006-07-20 12:19:31 +00:00
|
|
|
|
2006-10-24 17:39:06 +00:00
|
|
|
logf("%d/%s", line_n, buf);
|
2006-07-20 12:19:31 +00:00
|
|
|
if (!read_tag(tag_data, sizeof tag_data, buf, "filename"))
|
|
|
|
{
|
|
|
|
logf("filename missing");
|
|
|
|
logf("-> %s", buf);
|
2006-10-24 17:39:06 +00:00
|
|
|
return 0;
|
2006-07-20 12:19:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
idx_id = find_index(tag_data);
|
|
|
|
if (idx_id < 0)
|
|
|
|
{
|
|
|
|
logf("entry not found");
|
2006-10-24 17:39:06 +00:00
|
|
|
return 0;
|
2006-07-20 12:19:31 +00:00
|
|
|
}
|
|
|
|
|
2006-07-24 15:35:46 +00:00
|
|
|
if (!get_index(masterfd, idx_id, &idx, false))
|
2006-07-23 15:35:53 +00:00
|
|
|
{
|
|
|
|
logf("failed to retrieve index entry");
|
2006-10-24 17:39:06 +00:00
|
|
|
return 0;
|
2006-07-23 15:35:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Stop if tag has already been modified. */
|
|
|
|
if (idx.flag & FLAG_DIRTYNUM)
|
2006-10-24 17:39:06 +00:00
|
|
|
return 0;
|
2006-07-23 15:35:53 +00:00
|
|
|
|
|
|
|
logf("import: %s", tag_data);
|
|
|
|
|
|
|
|
idx.flag |= FLAG_DIRTYNUM;
|
2006-07-20 12:19:31 +00:00
|
|
|
for (i = 0; i < (long)(sizeof(import_tags)/sizeof(import_tags[0])); i++)
|
|
|
|
{
|
|
|
|
int data;
|
|
|
|
|
|
|
|
if (!read_tag(tag_data, sizeof tag_data, buf,
|
|
|
|
tagcache_tag_to_str(import_tags[i])))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
data = atoi(tag_data);
|
|
|
|
if (data < 0)
|
|
|
|
continue;
|
|
|
|
|
2006-07-23 15:35:53 +00:00
|
|
|
idx.tag_seek[import_tags[i]] = data;
|
2006-07-20 12:19:31 +00:00
|
|
|
|
2008-08-29 21:14:58 +00:00
|
|
|
if (import_tags[i] == tag_lastplayed && data >= current_tcmh.serial)
|
|
|
|
current_tcmh.serial = data + 1;
|
2007-02-25 20:41:51 +00:00
|
|
|
else if (import_tags[i] == tag_commitid && data >= current_tcmh.commitid)
|
|
|
|
current_tcmh.commitid = data + 1;
|
2006-07-20 12:19:31 +00:00
|
|
|
}
|
|
|
|
|
2006-10-21 20:37:33 +00:00
|
|
|
return write_index(masterfd, idx_id, &idx) ? 0 : -5;
|
2006-07-20 12:19:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool tagcache_import_changelog(void)
|
|
|
|
{
|
|
|
|
struct master_header myhdr;
|
2006-08-26 09:24:20 +00:00
|
|
|
struct tagcache_header tch;
|
2006-10-21 21:05:23 +00:00
|
|
|
int clfd;
|
|
|
|
long masterfd;
|
2006-09-23 10:29:14 +00:00
|
|
|
char buf[2048];
|
2006-07-20 12:19:31 +00:00
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
if (!tc_stat.ready)
|
2006-07-23 11:15:28 +00:00
|
|
|
return false;
|
|
|
|
|
2006-08-02 17:39:34 +00:00
|
|
|
while (read_lock)
|
|
|
|
sleep(1);
|
|
|
|
|
2006-07-20 12:19:31 +00:00
|
|
|
clfd = open(TAGCACHE_FILE_CHANGELOG, O_RDONLY);
|
|
|
|
if (clfd < 0)
|
|
|
|
{
|
|
|
|
logf("failure to open changelog");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( (masterfd = open_master_fd(&myhdr, true)) < 0)
|
|
|
|
{
|
|
|
|
close(clfd);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-08-02 17:39:34 +00:00
|
|
|
write_lock++;
|
|
|
|
|
2006-08-26 09:24:20 +00:00
|
|
|
filenametag_fd = open_tag_fd(&tch, tag_filename, false);
|
|
|
|
|
2006-10-24 17:39:06 +00:00
|
|
|
fast_readline(clfd, buf, sizeof buf, (long *)masterfd,
|
2006-10-21 20:37:33 +00:00
|
|
|
parse_changelog_line);
|
2006-07-20 12:19:31 +00:00
|
|
|
|
|
|
|
close(clfd);
|
|
|
|
close(masterfd);
|
|
|
|
|
2006-08-26 09:24:20 +00:00
|
|
|
if (filenametag_fd >= 0)
|
2009-06-20 16:17:54 +00:00
|
|
|
{
|
2006-08-26 09:24:20 +00:00
|
|
|
close(filenametag_fd);
|
2009-06-20 16:17:54 +00:00
|
|
|
filenametag_fd = -1;
|
|
|
|
}
|
2006-08-26 09:24:20 +00:00
|
|
|
|
2006-08-02 17:39:34 +00:00
|
|
|
write_lock--;
|
|
|
|
|
2007-02-25 20:41:51 +00:00
|
|
|
update_master_header();
|
2006-07-20 12:19:31 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2008-12-15 23:42:19 +00:00
|
|
|
|
|
|
|
#endif /* !__PCTOOL__ */
|
2006-07-20 12:19:31 +00:00
|
|
|
|
2006-07-16 15:04:46 +00:00
|
|
|
bool tagcache_create_changelog(struct tagcache_search *tcs)
|
|
|
|
{
|
2006-07-20 12:19:31 +00:00
|
|
|
struct master_header myhdr;
|
2006-07-16 15:04:46 +00:00
|
|
|
struct index_entry idx;
|
2006-11-10 08:03:33 +00:00
|
|
|
char buf[TAG_MAXLEN+32];
|
2006-07-16 15:04:46 +00:00
|
|
|
char temp[32];
|
|
|
|
int clfd;
|
|
|
|
int i, j;
|
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
if (!tc_stat.ready)
|
2006-07-23 11:15:28 +00:00
|
|
|
return false;
|
|
|
|
|
2006-07-16 15:04:46 +00:00
|
|
|
if (!tagcache_search(tcs, tag_filename))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Initialize the changelog */
|
|
|
|
clfd = open(TAGCACHE_FILE_CHANGELOG, O_WRONLY | O_CREAT | O_TRUNC);
|
|
|
|
if (clfd < 0)
|
|
|
|
{
|
|
|
|
logf("failure to open changelog");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tcs->masterfd < 0)
|
|
|
|
{
|
2006-07-20 12:19:31 +00:00
|
|
|
if ( (tcs->masterfd = open_master_fd(&myhdr, false)) < 0)
|
2006-07-16 15:04:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lseek(tcs->masterfd, 0, SEEK_SET);
|
2007-02-13 21:51:18 +00:00
|
|
|
ecread(tcs->masterfd, &myhdr, 1, master_header_ec, tc_stat.econ);
|
2006-07-16 15:04:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
write(clfd, "## Changelog version 1\n", 23);
|
|
|
|
|
2006-07-20 12:19:31 +00:00
|
|
|
for (i = 0; i < myhdr.tch.entry_count; i++)
|
2006-07-16 15:04:46 +00:00
|
|
|
{
|
2007-02-13 21:51:18 +00:00
|
|
|
if (ecread(tcs->masterfd, &idx, 1, index_entry_ec, tc_stat.econ)
|
2006-07-16 15:04:46 +00:00
|
|
|
!= sizeof(struct index_entry))
|
|
|
|
{
|
2006-09-26 11:23:18 +00:00
|
|
|
logf("read error #9");
|
2006-07-16 15:04:46 +00:00
|
|
|
tagcache_search_finish(tcs);
|
|
|
|
close(clfd);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Skip until the entry found has been modified. */
|
|
|
|
if (! (idx.flag & FLAG_DIRTYNUM) )
|
|
|
|
continue;
|
|
|
|
|
2007-02-10 12:09:28 +00:00
|
|
|
/* Skip deleted entries too. */
|
|
|
|
if (idx.flag & FLAG_DELETED)
|
|
|
|
continue;
|
|
|
|
|
2006-07-16 15:04:46 +00:00
|
|
|
/* Now retrieve all tags. */
|
2006-07-20 12:19:31 +00:00
|
|
|
for (j = 0; j < TAG_COUNT; j++)
|
2006-07-16 15:04:46 +00:00
|
|
|
{
|
2009-06-03 08:19:32 +00:00
|
|
|
if (TAGCACHE_IS_NUMERIC(j))
|
2006-07-16 15:04:46 +00:00
|
|
|
{
|
2006-07-20 12:19:31 +00:00
|
|
|
snprintf(temp, sizeof temp, "%d", idx.tag_seek[j]);
|
|
|
|
write_tag(clfd, tagcache_tag_to_str(j), temp);
|
2006-07-16 15:04:46 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2006-07-20 12:19:31 +00:00
|
|
|
tcs->type = j;
|
2006-10-24 16:20:48 +00:00
|
|
|
tagcache_retrieve(tcs, i, tcs->type, buf, sizeof buf);
|
2006-07-20 12:19:31 +00:00
|
|
|
write_tag(clfd, tagcache_tag_to_str(j), buf);
|
2006-07-16 15:04:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
write(clfd, "\n", 1);
|
2007-03-10 14:34:56 +00:00
|
|
|
do_timed_yield();
|
2006-07-16 15:04:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
close(clfd);
|
|
|
|
|
|
|
|
tagcache_search_finish(tcs);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-07-15 17:36:25 +00:00
|
|
|
static bool delete_entry(long idx_id)
|
|
|
|
{
|
2007-12-16 21:10:26 +00:00
|
|
|
int fd = -1;
|
2007-12-18 21:50:29 +00:00
|
|
|
int masterfd = -1;
|
2006-07-15 17:36:25 +00:00
|
|
|
int tag, i;
|
|
|
|
struct index_entry idx, myidx;
|
2006-07-20 12:19:31 +00:00
|
|
|
struct master_header myhdr;
|
2006-11-10 08:03:33 +00:00
|
|
|
char buf[TAG_MAXLEN+32];
|
2006-07-15 17:36:25 +00:00
|
|
|
int in_use[TAG_COUNT];
|
|
|
|
|
2007-03-18 09:50:53 +00:00
|
|
|
logf("delete_entry(): %ld", idx_id);
|
2006-09-26 11:23:18 +00:00
|
|
|
|
2006-07-15 17:36:25 +00:00
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
|
|
|
/* At first mark the entry removed from ram cache. */
|
2007-04-29 14:40:59 +00:00
|
|
|
if (tc_stat.ramcache)
|
2006-07-15 17:36:25 +00:00
|
|
|
hdr->indices[idx_id].flag |= FLAG_DELETED;
|
|
|
|
#endif
|
|
|
|
|
2007-12-18 21:50:29 +00:00
|
|
|
if ( (masterfd = open_master_fd(&myhdr, true) ) < 0)
|
2006-07-15 17:36:25 +00:00
|
|
|
return false;
|
2006-07-10 16:22:03 +00:00
|
|
|
|
2007-12-18 21:50:29 +00:00
|
|
|
lseek(masterfd, idx_id * sizeof(struct index_entry), SEEK_CUR);
|
|
|
|
if (ecread(masterfd, &myidx, 1, index_entry_ec, tc_stat.econ)
|
2006-07-10 16:22:03 +00:00
|
|
|
!= sizeof(struct index_entry))
|
|
|
|
{
|
2006-09-26 11:23:18 +00:00
|
|
|
logf("delete_entry(): read error");
|
2007-12-16 21:10:26 +00:00
|
|
|
goto cleanup;
|
2006-07-10 16:22:03 +00:00
|
|
|
}
|
|
|
|
|
2007-12-18 21:50:29 +00:00
|
|
|
if (myidx.flag & FLAG_DELETED)
|
2006-07-10 16:22:03 +00:00
|
|
|
{
|
2007-12-18 21:50:29 +00:00
|
|
|
logf("delete_entry(): already deleted!");
|
2007-12-16 21:10:26 +00:00
|
|
|
goto cleanup;
|
2006-07-10 16:22:03 +00:00
|
|
|
}
|
|
|
|
|
2007-12-18 21:50:29 +00:00
|
|
|
myidx.flag |= FLAG_DELETED;
|
2008-01-07 15:10:49 +00:00
|
|
|
lseek(masterfd, -sizeof(struct index_entry), SEEK_CUR);
|
|
|
|
if (ecwrite(masterfd, &myidx, 1, index_entry_ec, tc_stat.econ)
|
|
|
|
!= sizeof(struct index_entry))
|
|
|
|
{
|
|
|
|
logf("delete_entry(): write_error #1");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2006-07-10 16:22:03 +00:00
|
|
|
/* Now check which tags are no longer in use (if any) */
|
|
|
|
for (tag = 0; tag < TAG_COUNT; tag++)
|
|
|
|
in_use[tag] = 0;
|
|
|
|
|
2007-12-18 21:50:29 +00:00
|
|
|
lseek(masterfd, sizeof(struct master_header), SEEK_SET);
|
2006-07-20 12:19:31 +00:00
|
|
|
for (i = 0; i < myhdr.tch.entry_count; i++)
|
2006-07-10 16:22:03 +00:00
|
|
|
{
|
2007-04-29 14:40:59 +00:00
|
|
|
struct index_entry *idxp;
|
|
|
|
|
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
|
|
|
/* Use RAM DB if available for greater speed */
|
|
|
|
if (tc_stat.ramcache)
|
|
|
|
idxp = &hdr->indices[i];
|
|
|
|
else
|
|
|
|
#endif
|
2006-07-10 16:22:03 +00:00
|
|
|
{
|
2007-12-18 21:50:29 +00:00
|
|
|
if (ecread(masterfd, &idx, 1, index_entry_ec, tc_stat.econ)
|
2007-04-29 14:40:59 +00:00
|
|
|
!= sizeof(struct index_entry))
|
|
|
|
{
|
|
|
|
logf("delete_entry(): read error #2");
|
2007-12-16 21:10:26 +00:00
|
|
|
goto cleanup;
|
2007-04-29 14:40:59 +00:00
|
|
|
}
|
|
|
|
idxp = &idx;
|
2006-07-10 16:22:03 +00:00
|
|
|
}
|
|
|
|
|
2007-04-29 14:40:59 +00:00
|
|
|
if (idxp->flag & FLAG_DELETED)
|
2006-07-10 16:22:03 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
for (tag = 0; tag < TAG_COUNT; tag++)
|
|
|
|
{
|
2009-06-03 08:19:32 +00:00
|
|
|
if (TAGCACHE_IS_NUMERIC(tag))
|
2006-07-10 16:22:03 +00:00
|
|
|
continue;
|
|
|
|
|
2007-04-29 14:40:59 +00:00
|
|
|
if (idxp->tag_seek[tag] == myidx.tag_seek[tag])
|
2006-07-10 16:22:03 +00:00
|
|
|
in_use[tag]++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now delete all tags no longer in use. */
|
|
|
|
for (tag = 0; tag < TAG_COUNT; tag++)
|
|
|
|
{
|
2007-12-18 21:50:29 +00:00
|
|
|
struct tagcache_header tch;
|
|
|
|
int oldseek = myidx.tag_seek[tag];
|
|
|
|
|
2009-06-03 08:19:32 +00:00
|
|
|
if (TAGCACHE_IS_NUMERIC(tag))
|
2006-07-10 16:22:03 +00:00
|
|
|
continue;
|
|
|
|
|
2007-12-18 21:50:29 +00:00
|
|
|
/**
|
|
|
|
* Replace tag seek with a hash value of the field string data.
|
|
|
|
* That way runtime statistics of moved or altered files can be
|
|
|
|
* resurrected.
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
|
|
|
if (tc_stat.ramcache && tag != tag_filename)
|
|
|
|
{
|
|
|
|
struct tagfile_entry *tfe;
|
2008-04-24 08:51:54 +00:00
|
|
|
int32_t *seek = &hdr->indices[idx_id].tag_seek[tag];
|
2007-12-18 21:50:29 +00:00
|
|
|
|
|
|
|
tfe = (struct tagfile_entry *)&hdr->tags[tag][*seek];
|
|
|
|
*seek = crc_32(tfe->tag_data, strlen(tfe->tag_data), 0xffffffff);
|
|
|
|
myidx.tag_seek[tag] = *seek;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
struct tagfile_entry tfe;
|
|
|
|
|
|
|
|
/* Open the index file, which contains the tag names. */
|
|
|
|
if ((fd = open_tag_fd(&tch, tag, true)) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
/* Skip the header block */
|
|
|
|
lseek(fd, myidx.tag_seek[tag], SEEK_SET);
|
|
|
|
if (ecread(fd, &tfe, 1, tagfile_entry_ec, tc_stat.econ)
|
|
|
|
!= sizeof(struct tagfile_entry))
|
|
|
|
{
|
|
|
|
logf("delete_entry(): read error #3");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (read(fd, buf, tfe.tag_length) != tfe.tag_length)
|
|
|
|
{
|
|
|
|
logf("delete_entry(): read error #4");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
myidx.tag_seek[tag] = crc_32(buf, strlen(buf), 0xffffffff);
|
|
|
|
}
|
|
|
|
|
2006-07-10 16:22:03 +00:00
|
|
|
if (in_use[tag])
|
|
|
|
{
|
|
|
|
logf("in use: %d/%d", tag, in_use[tag]);
|
2007-12-18 21:50:29 +00:00
|
|
|
if (fd >= 0)
|
|
|
|
{
|
|
|
|
close(fd);
|
|
|
|
fd = -1;
|
|
|
|
}
|
2006-07-10 16:22:03 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2007-04-29 14:40:59 +00:00
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
|
|
|
/* Delete from ram. */
|
|
|
|
if (tc_stat.ramcache && tag != tag_filename)
|
|
|
|
{
|
2008-01-07 15:10:49 +00:00
|
|
|
struct tagfile_entry *tagentry = (struct tagfile_entry *)&hdr->tags[tag][oldseek];
|
2007-04-29 14:40:59 +00:00
|
|
|
tagentry->tag_data[0] = '\0';
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-07-10 16:22:03 +00:00
|
|
|
/* Open the index file, which contains the tag names. */
|
|
|
|
if (fd < 0)
|
|
|
|
{
|
2007-12-18 21:50:29 +00:00
|
|
|
if ((fd = open_tag_fd(&tch, tag, true)) < 0)
|
|
|
|
goto cleanup;
|
2006-07-10 16:22:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Skip the header block */
|
2007-12-18 21:50:29 +00:00
|
|
|
lseek(fd, oldseek + sizeof(struct tagfile_entry), SEEK_SET);
|
2006-10-15 11:01:18 +00:00
|
|
|
|
|
|
|
/* Debug, print 10 first characters of the tag
|
2006-07-10 16:22:03 +00:00
|
|
|
read(fd, buf, 10);
|
|
|
|
buf[10]='\0';
|
|
|
|
logf("TAG:%s", buf);
|
|
|
|
lseek(fd, -10, SEEK_CUR);
|
2006-10-15 11:01:18 +00:00
|
|
|
*/
|
2006-07-10 16:22:03 +00:00
|
|
|
|
|
|
|
/* Write first data byte in tag as \0 */
|
|
|
|
write(fd, "", 1);
|
|
|
|
|
|
|
|
/* Now tag data has been removed */
|
|
|
|
close(fd);
|
2007-12-18 21:50:29 +00:00
|
|
|
fd = -1;
|
2006-07-10 16:22:03 +00:00
|
|
|
}
|
|
|
|
|
2007-12-18 21:50:29 +00:00
|
|
|
/* Write index entry back into master index. */
|
|
|
|
lseek(masterfd, sizeof(struct master_header) +
|
|
|
|
(idx_id * sizeof(struct index_entry)), SEEK_SET);
|
|
|
|
if (ecwrite(masterfd, &myidx, 1, index_entry_ec, tc_stat.econ)
|
|
|
|
!= sizeof(struct index_entry))
|
|
|
|
{
|
2008-01-07 15:10:49 +00:00
|
|
|
logf("delete_entry(): write_error #2");
|
2007-12-18 21:50:29 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
close(masterfd);
|
|
|
|
|
2006-07-10 16:22:03 +00:00
|
|
|
return true;
|
2007-12-16 21:10:26 +00:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
if (fd >= 0)
|
|
|
|
close(fd);
|
2007-12-18 21:50:29 +00:00
|
|
|
if (masterfd >= 0)
|
|
|
|
close(masterfd);
|
|
|
|
|
2007-12-16 21:10:26 +00:00
|
|
|
return false;
|
2006-07-10 16:22:03 +00:00
|
|
|
}
|
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
#ifndef __PCTOOL__
|
2006-09-23 11:02:09 +00:00
|
|
|
/**
|
|
|
|
* Returns true if there is an event waiting in the queue
|
|
|
|
* that requires the current operation to be aborted.
|
|
|
|
*/
|
|
|
|
static bool check_event_queue(void)
|
|
|
|
{
|
2007-10-16 01:25:17 +00:00
|
|
|
struct queue_event ev;
|
2006-09-23 11:02:09 +00:00
|
|
|
|
|
|
|
queue_wait_w_tmo(&tagcache_queue, &ev, 0);
|
|
|
|
switch (ev.id)
|
|
|
|
{
|
|
|
|
case Q_STOP_SCAN:
|
|
|
|
case SYS_POWEROFF:
|
|
|
|
case SYS_USB_CONNECTED:
|
|
|
|
/* Put the event back into the queue. */
|
|
|
|
queue_post(&tagcache_queue, ev.id, ev.data);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2006-11-10 08:03:33 +00:00
|
|
|
#endif
|
2006-09-23 11:02:09 +00:00
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
|
|
|
static bool allocate_tagcache(void)
|
|
|
|
{
|
2006-08-02 17:39:34 +00:00
|
|
|
struct master_header tcmh;
|
2006-03-26 11:33:42 +00:00
|
|
|
int fd;
|
|
|
|
|
|
|
|
/* Load the header. */
|
2006-08-02 17:39:34 +00:00
|
|
|
if ( (fd = open_master_fd(&tcmh, false)) < 0)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
hdr = NULL;
|
|
|
|
return false;
|
|
|
|
}
|
2006-07-23 11:15:28 +00:00
|
|
|
|
|
|
|
close(fd);
|
|
|
|
|
2006-03-27 07:02:14 +00:00
|
|
|
/**
|
|
|
|
* Now calculate the required cache size plus
|
|
|
|
* some extra space for alignment fixes.
|
|
|
|
*/
|
2006-11-10 08:03:33 +00:00
|
|
|
tc_stat.ramcache_allocated = tcmh.tch.datasize + 128 + TAGCACHE_RESERVE +
|
2006-03-26 11:33:42 +00:00
|
|
|
sizeof(struct ramcache_header) + TAG_COUNT*sizeof(void *);
|
2006-11-10 08:03:33 +00:00
|
|
|
hdr = buffer_alloc(tc_stat.ramcache_allocated + 128);
|
2006-08-02 17:39:34 +00:00
|
|
|
memset(hdr, 0, sizeof(struct ramcache_header));
|
|
|
|
memcpy(&hdr->h, &tcmh, sizeof(struct master_header));
|
|
|
|
hdr->indices = (struct index_entry *)(hdr + 1);
|
2006-11-10 08:03:33 +00:00
|
|
|
logf("tagcache: %d bytes allocated.", tc_stat.ramcache_allocated);
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-08-15 22:54:06 +00:00
|
|
|
# ifdef HAVE_EEPROM_SETTINGS
|
2006-08-05 20:19:10 +00:00
|
|
|
static bool tagcache_dumpload(void)
|
|
|
|
{
|
|
|
|
struct statefile_header shdr;
|
|
|
|
int fd, rc;
|
|
|
|
long offpos;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
fd = open(TAGCACHE_STATEFILE, O_RDONLY);
|
|
|
|
if (fd < 0)
|
|
|
|
{
|
|
|
|
logf("no tagcache statedump");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check the statefile memory placement */
|
|
|
|
hdr = buffer_alloc(0);
|
|
|
|
rc = read(fd, &shdr, sizeof(struct statefile_header));
|
|
|
|
if (rc != sizeof(struct statefile_header)
|
|
|
|
/* || (long)hdr != (long)shdr.hdr */)
|
|
|
|
{
|
|
|
|
logf("incorrect statefile");
|
|
|
|
hdr = NULL;
|
|
|
|
close(fd);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
offpos = (long)hdr - (long)shdr.hdr;
|
|
|
|
|
|
|
|
/* Lets allocate real memory and load it */
|
2006-11-10 08:03:33 +00:00
|
|
|
hdr = buffer_alloc(shdr.tc_stat.ramcache_allocated);
|
|
|
|
rc = read(fd, hdr, shdr.tc_stat.ramcache_allocated);
|
2006-08-05 20:19:10 +00:00
|
|
|
close(fd);
|
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
if (rc != shdr.tc_stat.ramcache_allocated)
|
2006-08-05 20:19:10 +00:00
|
|
|
{
|
|
|
|
logf("read failure!");
|
|
|
|
hdr = NULL;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
memcpy(&tc_stat, &shdr.tc_stat, sizeof(struct tagcache_stat));
|
2006-08-05 20:19:10 +00:00
|
|
|
|
|
|
|
/* Now fix the pointers */
|
|
|
|
hdr->indices = (struct index_entry *)((long)hdr->indices + offpos);
|
|
|
|
for (i = 0; i < TAG_COUNT; i++)
|
|
|
|
hdr->tags[i] += offpos;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool tagcache_dumpsave(void)
|
|
|
|
{
|
|
|
|
struct statefile_header shdr;
|
|
|
|
int fd;
|
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
if (!tc_stat.ramcache)
|
2006-08-05 20:19:10 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
fd = open(TAGCACHE_STATEFILE, O_WRONLY | O_CREAT | O_TRUNC);
|
|
|
|
if (fd < 0)
|
|
|
|
{
|
|
|
|
logf("failed to create a statedump");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create the header */
|
|
|
|
shdr.hdr = hdr;
|
2006-11-10 08:03:33 +00:00
|
|
|
memcpy(&shdr.tc_stat, &tc_stat, sizeof(struct tagcache_stat));
|
2006-08-05 20:19:10 +00:00
|
|
|
write(fd, &shdr, sizeof(struct statefile_header));
|
|
|
|
|
|
|
|
/* And dump the data too */
|
2006-11-10 08:03:33 +00:00
|
|
|
write(fd, hdr, tc_stat.ramcache_allocated);
|
2006-08-05 20:19:10 +00:00
|
|
|
close(fd);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
static bool load_tagcache(void)
|
|
|
|
{
|
|
|
|
struct tagcache_header *tch;
|
2006-11-10 08:03:33 +00:00
|
|
|
long bytesleft = tc_stat.ramcache_allocated;
|
2006-03-26 11:33:42 +00:00
|
|
|
struct index_entry *idx;
|
|
|
|
int rc, fd;
|
|
|
|
char *p;
|
2006-07-12 12:50:26 +00:00
|
|
|
int i, tag;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-07-10 16:22:03 +00:00
|
|
|
# ifdef HAVE_DIRCACHE
|
|
|
|
while (dircache_is_initializing())
|
|
|
|
sleep(1);
|
2008-03-09 20:33:19 +00:00
|
|
|
|
|
|
|
dircache_set_appflag(DIRCACHE_APPFLAG_TAGCACHE);
|
2006-07-10 16:22:03 +00:00
|
|
|
# endif
|
|
|
|
|
2006-09-23 10:29:14 +00:00
|
|
|
logf("loading tagcache to ram...");
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
fd = open(TAGCACHE_FILE_MASTER, O_RDONLY);
|
|
|
|
if (fd < 0)
|
|
|
|
{
|
|
|
|
logf("tagcache open failed");
|
|
|
|
return false;
|
|
|
|
}
|
2006-04-16 17:32:54 +00:00
|
|
|
|
2007-02-13 21:51:18 +00:00
|
|
|
if (ecread(fd, &hdr->h, 1, master_header_ec, tc_stat.econ)
|
2006-07-20 12:19:31 +00:00
|
|
|
!= sizeof(struct master_header)
|
|
|
|
|| hdr->h.tch.magic != TAGCACHE_MAGIC)
|
2006-04-16 17:32:54 +00:00
|
|
|
{
|
|
|
|
logf("incorrect header");
|
|
|
|
return false;
|
|
|
|
}
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
idx = hdr->indices;
|
|
|
|
|
|
|
|
/* Load the master index table. */
|
2006-07-20 12:19:31 +00:00
|
|
|
for (i = 0; i < hdr->h.tch.entry_count; i++)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2007-02-13 21:51:18 +00:00
|
|
|
rc = ecread(fd, idx, 1, index_entry_ec, tc_stat.econ);
|
2006-03-26 11:33:42 +00:00
|
|
|
if (rc != sizeof(struct index_entry))
|
|
|
|
{
|
2006-09-26 11:23:18 +00:00
|
|
|
logf("read error #10");
|
2006-03-26 11:33:42 +00:00
|
|
|
close(fd);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bytesleft -= sizeof(struct index_entry);
|
2006-11-10 08:03:33 +00:00
|
|
|
if (bytesleft < 0 || ((long)idx - (long)hdr->indices) >= tc_stat.ramcache_allocated)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
logf("too big tagcache.");
|
|
|
|
close(fd);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
/* Load the tags. */
|
|
|
|
p = (char *)idx;
|
2006-07-12 12:50:26 +00:00
|
|
|
for (tag = 0; tag < TAG_COUNT; tag++)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
struct tagfile_entry *fe;
|
2006-11-10 08:03:33 +00:00
|
|
|
char buf[TAG_MAXLEN+32];
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2009-06-03 08:19:32 +00:00
|
|
|
if (TAGCACHE_IS_NUMERIC(tag))
|
2006-03-30 12:07:32 +00:00
|
|
|
continue ;
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
//p = ((void *)p+1);
|
|
|
|
p = (char *)((long)p & ~0x03) + 0x04;
|
2006-07-12 12:50:26 +00:00
|
|
|
hdr->tags[tag] = p;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
/* Check the header. */
|
|
|
|
tch = (struct tagcache_header *)p;
|
2006-07-23 11:15:28 +00:00
|
|
|
p += sizeof(struct tagcache_header);
|
|
|
|
|
|
|
|
if ( (fd = open_tag_fd(tch, tag, false)) < 0)
|
2006-03-26 11:33:42 +00:00
|
|
|
return false;
|
|
|
|
|
2006-07-12 12:50:26 +00:00
|
|
|
for (hdr->entry_count[tag] = 0;
|
|
|
|
hdr->entry_count[tag] < tch->entry_count;
|
|
|
|
hdr->entry_count[tag]++)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-07-10 16:22:03 +00:00
|
|
|
long pos;
|
|
|
|
|
2007-03-10 14:34:56 +00:00
|
|
|
if (do_timed_yield())
|
2006-09-23 10:29:14 +00:00
|
|
|
{
|
|
|
|
/* Abort if we got a critical event in queue */
|
|
|
|
if (check_event_queue())
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
fe = (struct tagfile_entry *)p;
|
2006-07-10 16:22:03 +00:00
|
|
|
pos = lseek(fd, 0, SEEK_CUR);
|
2007-02-13 21:51:18 +00:00
|
|
|
rc = ecread(fd, fe, 1, tagfile_entry_ec, tc_stat.econ);
|
2006-03-26 11:33:42 +00:00
|
|
|
if (rc != sizeof(struct tagfile_entry))
|
|
|
|
{
|
|
|
|
/* End of lookup table. */
|
2006-09-26 11:23:18 +00:00
|
|
|
logf("read error #11");
|
2006-03-26 11:33:42 +00:00
|
|
|
close(fd);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We have a special handling for the filename tags. */
|
2006-07-12 12:50:26 +00:00
|
|
|
if (tag == tag_filename)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-07-10 16:22:03 +00:00
|
|
|
# ifdef HAVE_DIRCACHE
|
2007-07-20 17:06:55 +00:00
|
|
|
const struct dirent *dc;
|
2006-07-10 16:22:03 +00:00
|
|
|
# endif
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-07-10 16:22:03 +00:00
|
|
|
// FIXME: This is wrong!
|
|
|
|
// idx = &hdr->indices[hdr->entry_count[i]];
|
|
|
|
idx = &hdr->indices[fe->idx_id];
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
if (fe->tag_length >= (long)sizeof(buf)-1)
|
|
|
|
{
|
2006-07-10 16:22:03 +00:00
|
|
|
read(fd, buf, 10);
|
|
|
|
buf[10] = '\0';
|
|
|
|
logf("TAG:%s", buf);
|
2006-03-26 11:33:42 +00:00
|
|
|
logf("too long filename");
|
|
|
|
close(fd);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = read(fd, buf, fe->tag_length);
|
|
|
|
if (rc != fe->tag_length)
|
|
|
|
{
|
2006-09-26 11:23:18 +00:00
|
|
|
logf("read error #12");
|
2006-03-26 11:33:42 +00:00
|
|
|
close(fd);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-07-12 08:58:18 +00:00
|
|
|
/* Check if the entry has already been removed */
|
|
|
|
if (idx->flag & FLAG_DELETED)
|
|
|
|
continue;
|
|
|
|
|
2006-07-12 12:50:26 +00:00
|
|
|
/* This flag must not be used yet. */
|
|
|
|
if (idx->flag & FLAG_DIRCACHE)
|
|
|
|
{
|
|
|
|
logf("internal error!");
|
|
|
|
close(fd);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (idx->tag_seek[tag] != pos)
|
|
|
|
{
|
|
|
|
logf("corrupt data structures!");
|
|
|
|
close(fd);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-07-10 16:22:03 +00:00
|
|
|
# ifdef HAVE_DIRCACHE
|
|
|
|
if (dircache_is_enabled())
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-07-10 16:22:03 +00:00
|
|
|
dc = dircache_get_entry_ptr(buf);
|
|
|
|
if (dc == NULL)
|
|
|
|
{
|
|
|
|
logf("Entry no longer valid.");
|
|
|
|
logf("-> %s", buf);
|
2009-07-04 23:20:51 +00:00
|
|
|
if (global_settings.tagcache_autoupdate)
|
|
|
|
delete_entry(fe->idx_id);
|
2006-07-10 16:22:03 +00:00
|
|
|
continue ;
|
|
|
|
}
|
|
|
|
|
|
|
|
idx->flag |= FLAG_DIRCACHE;
|
|
|
|
idx->tag_seek[tag_filename] = (long)dc;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
# endif
|
|
|
|
{
|
2008-01-13 19:13:37 +00:00
|
|
|
/* This will be very slow unless dircache is enabled
|
|
|
|
or target is flash based, but do it anyway for
|
|
|
|
consistency. */
|
2006-07-10 16:22:03 +00:00
|
|
|
/* Check if entry has been removed. */
|
|
|
|
if (global_settings.tagcache_autoupdate)
|
|
|
|
{
|
2008-01-13 19:13:37 +00:00
|
|
|
if (!file_exists(buf))
|
2006-07-10 16:22:03 +00:00
|
|
|
{
|
|
|
|
logf("Entry no longer valid.");
|
|
|
|
logf("-> %s", buf);
|
2006-07-12 06:59:08 +00:00
|
|
|
delete_entry(fe->idx_id);
|
2006-07-10 16:22:03 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
continue ;
|
|
|
|
}
|
2006-07-10 16:22:03 +00:00
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
bytesleft -= sizeof(struct tagfile_entry) + fe->tag_length;
|
|
|
|
if (bytesleft < 0)
|
|
|
|
{
|
2006-05-28 09:59:24 +00:00
|
|
|
logf("too big tagcache #2");
|
|
|
|
logf("tl: %d", fe->tag_length);
|
2007-03-18 09:50:53 +00:00
|
|
|
logf("bl: %ld", bytesleft);
|
2006-03-26 11:33:42 +00:00
|
|
|
close(fd);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
p = fe->tag_data;
|
|
|
|
rc = read(fd, fe->tag_data, fe->tag_length);
|
|
|
|
p += rc;
|
|
|
|
|
|
|
|
if (rc != fe->tag_length)
|
|
|
|
{
|
2006-09-26 11:23:18 +00:00
|
|
|
logf("read error #13");
|
2006-03-26 11:33:42 +00:00
|
|
|
logf("rc=0x%04x", rc); // 0x431
|
|
|
|
logf("len=0x%04x", fe->tag_length); // 0x4000
|
2007-03-20 13:53:23 +00:00
|
|
|
logf("pos=0x%04lx", lseek(fd, 0, SEEK_CUR)); // 0x433
|
2006-07-12 12:50:26 +00:00
|
|
|
logf("tag=0x%02x", tag); // 0x00
|
2006-03-26 11:33:42 +00:00
|
|
|
close(fd);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
tc_stat.ramcache_used = tc_stat.ramcache_allocated - bytesleft;
|
2006-03-26 11:33:42 +00:00
|
|
|
logf("tagcache loaded into ram!");
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2006-07-10 16:22:03 +00:00
|
|
|
#endif /* HAVE_TC_RAMCACHE */
|
|
|
|
|
|
|
|
static bool check_deleted_files(void)
|
|
|
|
{
|
2008-01-13 19:13:37 +00:00
|
|
|
int fd;
|
2006-11-10 08:03:33 +00:00
|
|
|
char buf[TAG_MAXLEN+32];
|
2006-07-10 16:22:03 +00:00
|
|
|
struct tagfile_entry tfe;
|
|
|
|
|
|
|
|
logf("reverse scan...");
|
|
|
|
snprintf(buf, sizeof buf, TAGCACHE_FILE_INDEX, tag_filename);
|
|
|
|
fd = open(buf, O_RDONLY);
|
|
|
|
|
|
|
|
if (fd < 0)
|
|
|
|
{
|
|
|
|
logf("%s open fail", buf);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
lseek(fd, sizeof(struct tagcache_header), SEEK_SET);
|
2007-02-13 21:51:18 +00:00
|
|
|
while (ecread(fd, &tfe, 1, tagfile_entry_ec, tc_stat.econ)
|
2006-11-10 08:03:33 +00:00
|
|
|
== sizeof(struct tagfile_entry)
|
|
|
|
#ifndef __PCTOOL__
|
|
|
|
&& !check_event_queue()
|
|
|
|
#endif
|
|
|
|
)
|
2006-07-10 16:22:03 +00:00
|
|
|
{
|
|
|
|
if (tfe.tag_length >= (long)sizeof(buf)-1)
|
|
|
|
{
|
|
|
|
logf("too long tag");
|
|
|
|
close(fd);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (read(fd, buf, tfe.tag_length) != tfe.tag_length)
|
|
|
|
{
|
2006-09-26 11:23:18 +00:00
|
|
|
logf("read error #14");
|
2006-07-10 16:22:03 +00:00
|
|
|
close(fd);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-11-19 19:11:30 +00:00
|
|
|
/* Check if the file has already deleted from the db. */
|
|
|
|
if (*buf == '\0')
|
|
|
|
continue;
|
|
|
|
|
2006-07-10 16:22:03 +00:00
|
|
|
/* Now check if the file exists. */
|
2008-01-13 19:13:37 +00:00
|
|
|
if (!file_exists(buf))
|
2006-07-10 16:22:03 +00:00
|
|
|
{
|
|
|
|
logf("Entry no longer valid.");
|
2007-02-13 21:51:18 +00:00
|
|
|
logf("-> %s / %d", buf, tfe.tag_length);
|
2006-07-10 16:22:03 +00:00
|
|
|
delete_entry(tfe.idx_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
logf("done");
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2009-06-30 17:39:03 +00:00
|
|
|
|
|
|
|
/* Note that this function must not be inlined, otherwise the whole point
|
|
|
|
* of having the code in a separate function is lost.
|
|
|
|
*/
|
|
|
|
static void __attribute__ ((noinline)) check_ignore(const char *dirname,
|
|
|
|
int *ignore, int *unignore)
|
|
|
|
{
|
|
|
|
char newpath[MAX_PATH];
|
|
|
|
|
|
|
|
/* check for a database.ignore file */
|
|
|
|
snprintf(newpath, MAX_PATH, "%s/database.ignore", dirname);
|
|
|
|
*ignore = file_exists(newpath);
|
|
|
|
/* check for a database.unignore file */
|
|
|
|
snprintf(newpath, MAX_PATH, "%s/database.unignore", dirname);
|
|
|
|
*unignore = file_exists(newpath);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-04 21:20:04 +00:00
|
|
|
static bool check_dir(const char *dirname, int add_files)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2007-07-20 17:06:55 +00:00
|
|
|
DIR *dir;
|
2006-03-26 11:33:42 +00:00
|
|
|
int len;
|
|
|
|
int success = false;
|
2008-02-04 21:20:04 +00:00
|
|
|
int ignore, unignore;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2007-07-20 17:06:55 +00:00
|
|
|
dir = opendir(dirname);
|
2006-03-26 11:33:42 +00:00
|
|
|
if (!dir)
|
|
|
|
{
|
2007-07-20 17:06:55 +00:00
|
|
|
logf("tagcache: opendir() failed");
|
2006-03-26 11:33:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-06-30 17:39:03 +00:00
|
|
|
/* check for a database.ignore and database.unignore */
|
|
|
|
check_ignore(dirname, &ignore, &unignore);
|
2008-02-04 21:20:04 +00:00
|
|
|
|
|
|
|
/* don't do anything if both ignore and unignore are there */
|
|
|
|
if (ignore != unignore)
|
|
|
|
add_files = unignore;
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
/* Recursively scan the dir. */
|
2006-11-10 08:03:33 +00:00
|
|
|
#ifdef __PCTOOL__
|
|
|
|
while (1)
|
|
|
|
#else
|
2006-09-23 10:29:14 +00:00
|
|
|
while (!check_event_queue())
|
2006-11-10 08:03:33 +00:00
|
|
|
#endif
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2007-07-20 17:06:55 +00:00
|
|
|
struct dirent *entry;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2007-07-20 17:06:55 +00:00
|
|
|
entry = readdir(dir);
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
if (entry == NULL)
|
|
|
|
{
|
|
|
|
success = true;
|
|
|
|
break ;
|
|
|
|
}
|
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
if (!strcmp((char *)entry->d_name, ".") ||
|
|
|
|
!strcmp((char *)entry->d_name, ".."))
|
2006-03-26 11:33:42 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
yield();
|
|
|
|
|
|
|
|
len = strlen(curpath);
|
2008-08-29 21:14:58 +00:00
|
|
|
snprintf(&curpath[len], sizeof(curpath) - len, "/%s",
|
2006-03-26 11:33:42 +00:00
|
|
|
entry->d_name);
|
|
|
|
|
|
|
|
processed_dir_count++;
|
|
|
|
if (entry->attribute & ATTR_DIRECTORY)
|
2008-02-04 21:20:04 +00:00
|
|
|
check_dir(curpath, add_files);
|
|
|
|
else if (add_files)
|
2007-10-21 11:06:30 +00:00
|
|
|
{
|
|
|
|
tc_stat.curentry = curpath;
|
2007-12-16 21:10:26 +00:00
|
|
|
|
|
|
|
/* Add a new entry to the temporary db file. */
|
|
|
|
add_tagcache(curpath, (entry->wrtdate << 16) | entry->wrttime
|
2006-07-10 16:22:03 +00:00
|
|
|
#if defined(HAVE_TC_RAMCACHE) && defined(HAVE_DIRCACHE)
|
2007-12-16 21:10:26 +00:00
|
|
|
, dir->internal_entry
|
2006-03-26 11:33:42 +00:00
|
|
|
#endif
|
2007-12-16 21:10:26 +00:00
|
|
|
);
|
2007-10-21 11:06:30 +00:00
|
|
|
|
|
|
|
/* Wait until current path for debug screen is read and unset. */
|
|
|
|
while (tc_stat.syncscreen && tc_stat.curentry != NULL)
|
|
|
|
yield();
|
|
|
|
|
|
|
|
tc_stat.curentry = NULL;
|
|
|
|
}
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
curpath[len] = '\0';
|
|
|
|
}
|
|
|
|
|
2007-07-20 17:06:55 +00:00
|
|
|
closedir(dir);
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2007-10-21 11:06:30 +00:00
|
|
|
void tagcache_screensync_event(void)
|
|
|
|
{
|
|
|
|
tc_stat.curentry = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void tagcache_screensync_enable(bool state)
|
|
|
|
{
|
|
|
|
tc_stat.syncscreen = state;
|
|
|
|
}
|
|
|
|
|
2008-05-03 16:23:37 +00:00
|
|
|
void tagcache_build(const char *path)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
|
|
|
struct tagcache_header header;
|
|
|
|
bool ret;
|
|
|
|
|
|
|
|
curpath[0] = '\0';
|
|
|
|
data_size = 0;
|
|
|
|
total_entry_count = 0;
|
|
|
|
processed_dir_count = 0;
|
|
|
|
|
2006-08-26 09:24:20 +00:00
|
|
|
#ifdef HAVE_DIRCACHE
|
|
|
|
while (dircache_is_initializing())
|
|
|
|
sleep(1);
|
|
|
|
#endif
|
|
|
|
|
2006-09-23 10:29:14 +00:00
|
|
|
logf("updating tagcache");
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
cachefd = open(TAGCACHE_FILE_TEMP, O_RDONLY);
|
|
|
|
if (cachefd >= 0)
|
|
|
|
{
|
|
|
|
logf("skipping, cache already waiting for commit");
|
|
|
|
close(cachefd);
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
|
|
|
cachefd = open(TAGCACHE_FILE_TEMP, O_RDWR | O_CREAT | O_TRUNC);
|
|
|
|
if (cachefd < 0)
|
|
|
|
{
|
2006-11-10 08:03:33 +00:00
|
|
|
logf("master file open failed: %s", TAGCACHE_FILE_TEMP);
|
2006-03-26 11:33:42 +00:00
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
2006-07-23 11:15:28 +00:00
|
|
|
filenametag_fd = open_tag_fd(&header, tag_filename, false);
|
|
|
|
|
2006-12-05 20:01:48 +00:00
|
|
|
cpu_boost(true);
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
logf("Scanning files...");
|
2006-03-26 11:33:42 +00:00
|
|
|
/* Scan for new files. */
|
|
|
|
memset(&header, 0, sizeof(struct tagcache_header));
|
|
|
|
write(cachefd, &header, sizeof(struct tagcache_header));
|
|
|
|
|
2006-11-10 09:52:46 +00:00
|
|
|
if (strcmp("/", path) != 0)
|
|
|
|
strcpy(curpath, path);
|
2008-02-04 21:20:04 +00:00
|
|
|
ret = check_dir(path, true);
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
/* Write the header. */
|
|
|
|
header.magic = TAGCACHE_MAGIC;
|
|
|
|
header.datasize = data_size;
|
|
|
|
header.entry_count = total_entry_count;
|
|
|
|
lseek(cachefd, 0, SEEK_SET);
|
|
|
|
write(cachefd, &header, sizeof(struct tagcache_header));
|
|
|
|
close(cachefd);
|
|
|
|
|
|
|
|
if (filenametag_fd >= 0)
|
|
|
|
{
|
|
|
|
close(filenametag_fd);
|
|
|
|
filenametag_fd = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ret)
|
|
|
|
{
|
|
|
|
logf("Aborted.");
|
2006-12-05 20:01:48 +00:00
|
|
|
cpu_boost(false);
|
2006-03-26 11:33:42 +00:00
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Commit changes to the database. */
|
2006-11-10 08:03:33 +00:00
|
|
|
#ifdef __PCTOOL__
|
|
|
|
allocate_tempbuf();
|
|
|
|
#endif
|
2006-03-26 11:33:42 +00:00
|
|
|
if (commit())
|
|
|
|
{
|
|
|
|
remove(TAGCACHE_FILE_TEMP);
|
|
|
|
logf("tagcache built!");
|
|
|
|
}
|
2006-11-10 08:03:33 +00:00
|
|
|
#ifdef __PCTOOL__
|
|
|
|
free_tempbuf();
|
|
|
|
#endif
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-09-23 10:29:14 +00:00
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
|
|
|
if (hdr)
|
|
|
|
{
|
|
|
|
/* Import runtime statistics if we just initialized the db. */
|
|
|
|
if (hdr->h.serial == 0)
|
|
|
|
queue_post(&tagcache_queue, Q_IMPORT_CHANGELOG, 0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-12-05 20:01:48 +00:00
|
|
|
cpu_boost(false);
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
|
|
|
static void load_ramcache(void)
|
|
|
|
{
|
|
|
|
if (!hdr)
|
|
|
|
return ;
|
|
|
|
|
2006-12-05 20:01:48 +00:00
|
|
|
cpu_boost(true);
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
/* At first we should load the cache (if exists). */
|
2006-11-10 08:03:33 +00:00
|
|
|
tc_stat.ramcache = load_tagcache();
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
if (!tc_stat.ramcache)
|
2006-07-23 17:31:35 +00:00
|
|
|
{
|
|
|
|
/* If loading failed, it must indicate some problem with the db
|
|
|
|
* so disable it entirely to prevent further issues. */
|
2006-11-10 08:03:33 +00:00
|
|
|
tc_stat.ready = false;
|
2006-03-26 11:33:42 +00:00
|
|
|
hdr = NULL;
|
2006-07-23 17:31:35 +00:00
|
|
|
}
|
2006-03-26 11:33:42 +00:00
|
|
|
|
2006-12-05 20:01:48 +00:00
|
|
|
cpu_boost(false);
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
2006-08-09 07:41:28 +00:00
|
|
|
|
|
|
|
void tagcache_unload_ramcache(void)
|
|
|
|
{
|
2006-11-10 08:03:33 +00:00
|
|
|
tc_stat.ramcache = false;
|
2006-08-09 07:41:28 +00:00
|
|
|
/* Just to make sure there is no statefile present. */
|
2006-08-11 10:13:16 +00:00
|
|
|
// remove(TAGCACHE_STATEFILE);
|
2006-08-09 07:41:28 +00:00
|
|
|
}
|
2006-03-26 11:33:42 +00:00
|
|
|
#endif
|
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
#ifndef __PCTOOL__
|
2006-03-26 11:33:42 +00:00
|
|
|
static void tagcache_thread(void)
|
|
|
|
{
|
2007-10-16 01:25:17 +00:00
|
|
|
struct queue_event ev;
|
2006-03-26 11:33:42 +00:00
|
|
|
bool check_done = false;
|
|
|
|
|
2006-04-12 10:31:24 +00:00
|
|
|
/* If the previous cache build/update was interrupted, commit
|
2006-04-16 17:32:54 +00:00
|
|
|
* the changes first in foreground. */
|
2006-12-05 20:01:48 +00:00
|
|
|
cpu_boost(true);
|
2006-04-12 10:31:24 +00:00
|
|
|
allocate_tempbuf();
|
|
|
|
commit();
|
|
|
|
free_tempbuf();
|
2006-04-23 18:47:26 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
2006-08-15 22:54:06 +00:00
|
|
|
# ifdef HAVE_EEPROM_SETTINGS
|
2006-08-05 20:19:10 +00:00
|
|
|
if (firmware_settings.initialized && firmware_settings.disk_clean)
|
|
|
|
check_done = tagcache_dumpload();
|
|
|
|
|
|
|
|
remove(TAGCACHE_STATEFILE);
|
|
|
|
# endif
|
|
|
|
|
2006-04-23 18:47:26 +00:00
|
|
|
/* Allocate space for the tagcache if found on disk. */
|
2006-11-10 08:03:33 +00:00
|
|
|
if (global_settings.tagcache_ram && !tc_stat.ramcache)
|
2006-04-23 18:47:26 +00:00
|
|
|
allocate_tagcache();
|
|
|
|
#endif
|
|
|
|
|
2006-12-05 20:01:48 +00:00
|
|
|
cpu_boost(false);
|
2006-11-10 08:03:33 +00:00
|
|
|
tc_stat.initialized = true;
|
2006-04-12 10:31:24 +00:00
|
|
|
|
2006-07-23 11:15:28 +00:00
|
|
|
/* Don't delay bootup with the header check but do it on background. */
|
|
|
|
sleep(HZ);
|
2006-11-10 08:03:33 +00:00
|
|
|
tc_stat.ready = check_all_headers();
|
2007-03-08 08:20:30 +00:00
|
|
|
tc_stat.readyvalid = true;
|
2006-07-20 12:19:31 +00:00
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
while (1)
|
|
|
|
{
|
2007-07-21 17:35:19 +00:00
|
|
|
run_command_queue(false);
|
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
queue_wait_w_tmo(&tagcache_queue, &ev, HZ);
|
|
|
|
|
|
|
|
switch (ev.id)
|
|
|
|
{
|
2006-07-23 15:35:53 +00:00
|
|
|
case Q_IMPORT_CHANGELOG:
|
|
|
|
tagcache_import_changelog();
|
|
|
|
break;
|
|
|
|
|
2006-07-10 16:22:03 +00:00
|
|
|
case Q_REBUILD:
|
|
|
|
remove_files();
|
2008-06-04 19:27:11 +00:00
|
|
|
remove(TAGCACHE_FILE_TEMP);
|
2008-05-03 16:23:37 +00:00
|
|
|
tagcache_build("/");
|
2006-07-10 16:22:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Q_UPDATE:
|
2008-05-03 16:23:37 +00:00
|
|
|
tagcache_build("/");
|
2006-09-26 11:23:18 +00:00
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
|
|
|
load_ramcache();
|
|
|
|
#endif
|
2006-07-10 16:22:03 +00:00
|
|
|
check_deleted_files();
|
2006-03-26 11:33:42 +00:00
|
|
|
break ;
|
|
|
|
|
2006-07-23 15:35:53 +00:00
|
|
|
case Q_START_SCAN:
|
|
|
|
check_done = false;
|
2006-03-26 11:33:42 +00:00
|
|
|
case SYS_TIMEOUT:
|
2006-11-10 08:03:33 +00:00
|
|
|
if (check_done || !tc_stat.ready)
|
2006-03-26 11:33:42 +00:00
|
|
|
break ;
|
|
|
|
|
2006-07-10 16:22:03 +00:00
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
2006-11-10 08:03:33 +00:00
|
|
|
if (!tc_stat.ramcache && global_settings.tagcache_ram)
|
2006-07-10 16:22:03 +00:00
|
|
|
{
|
2006-03-26 11:33:42 +00:00
|
|
|
load_ramcache();
|
2006-11-10 08:03:33 +00:00
|
|
|
if (tc_stat.ramcache && global_settings.tagcache_autoupdate)
|
2008-05-03 16:23:37 +00:00
|
|
|
tagcache_build("/");
|
2006-07-10 16:22:03 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
if (global_settings.tagcache_autoupdate)
|
|
|
|
{
|
2008-05-03 16:23:37 +00:00
|
|
|
tagcache_build("/");
|
2008-01-13 19:13:37 +00:00
|
|
|
|
|
|
|
/* This will be very slow unless dircache is enabled
|
|
|
|
or target is flash based, but do it anyway for
|
|
|
|
consistency. */
|
2007-10-21 11:06:30 +00:00
|
|
|
check_deleted_files();
|
2006-07-10 16:22:03 +00:00
|
|
|
}
|
2006-07-23 15:35:53 +00:00
|
|
|
|
2006-07-22 08:04:28 +00:00
|
|
|
logf("tagcache check done");
|
2006-09-16 16:18:11 +00:00
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
check_done = true;
|
|
|
|
break ;
|
|
|
|
|
|
|
|
case Q_STOP_SCAN:
|
|
|
|
break ;
|
|
|
|
|
|
|
|
case SYS_POWEROFF:
|
|
|
|
break ;
|
|
|
|
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
case SYS_USB_CONNECTED:
|
2006-04-16 17:32:54 +00:00
|
|
|
logf("USB: TagCache");
|
2006-03-26 11:33:42 +00:00
|
|
|
usb_acknowledge(SYS_USB_CONNECTED_ACK);
|
|
|
|
usb_wait_for_disconnect(&tagcache_queue);
|
|
|
|
break ;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-05 20:19:10 +00:00
|
|
|
bool tagcache_prepare_shutdown(void)
|
|
|
|
{
|
|
|
|
if (tagcache_get_commit_step() > 0)
|
|
|
|
return false;
|
|
|
|
|
2006-09-23 10:29:14 +00:00
|
|
|
tagcache_stop_scan();
|
|
|
|
while (read_lock || write_lock)
|
|
|
|
sleep(1);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void tagcache_shutdown(void)
|
|
|
|
{
|
2007-07-21 17:35:19 +00:00
|
|
|
/* Flush the command queue. */
|
|
|
|
run_command_queue(true);
|
|
|
|
|
2006-08-15 22:54:06 +00:00
|
|
|
#ifdef HAVE_EEPROM_SETTINGS
|
2006-11-10 08:03:33 +00:00
|
|
|
if (tc_stat.ramcache)
|
2006-08-05 20:19:10 +00:00
|
|
|
tagcache_dumpsave();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2006-04-23 18:47:26 +00:00
|
|
|
static int get_progress(void)
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-04-19 18:56:59 +00:00
|
|
|
int total_count = -1;
|
2006-03-26 11:33:42 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_DIRCACHE
|
|
|
|
if (dircache_is_enabled())
|
|
|
|
{
|
|
|
|
total_count = dircache_get_entry_count();
|
|
|
|
}
|
|
|
|
else
|
2006-07-10 16:22:03 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-11-10 08:03:33 +00:00
|
|
|
if (hdr && tc_stat.ramcache)
|
2006-07-20 12:19:31 +00:00
|
|
|
total_count = hdr->h.tch.entry_count;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (total_count < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return processed_dir_count * 100 / total_count;
|
|
|
|
}
|
|
|
|
|
2006-04-23 18:47:26 +00:00
|
|
|
struct tagcache_stat* tagcache_get_stat(void)
|
2006-04-19 18:56:59 +00:00
|
|
|
{
|
2006-11-10 08:03:33 +00:00
|
|
|
tc_stat.progress = get_progress();
|
|
|
|
tc_stat.processed_entries = processed_dir_count;
|
2006-04-23 18:47:26 +00:00
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
return &tc_stat;
|
2006-04-19 18:56:59 +00:00
|
|
|
}
|
2006-11-10 08:03:33 +00:00
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
void tagcache_start_scan(void)
|
|
|
|
{
|
|
|
|
queue_post(&tagcache_queue, Q_START_SCAN, 0);
|
|
|
|
}
|
|
|
|
|
2006-07-10 16:22:03 +00:00
|
|
|
bool tagcache_update(void)
|
|
|
|
{
|
2006-11-10 08:03:33 +00:00
|
|
|
if (!tc_stat.ready)
|
2006-07-20 12:19:31 +00:00
|
|
|
return false;
|
|
|
|
|
2006-07-10 16:22:03 +00:00
|
|
|
queue_post(&tagcache_queue, Q_UPDATE, 0);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-03-07 19:56:15 +00:00
|
|
|
bool tagcache_rebuild()
|
2006-03-26 11:33:42 +00:00
|
|
|
{
|
2006-07-10 16:22:03 +00:00
|
|
|
queue_post(&tagcache_queue, Q_REBUILD, 0);
|
2006-03-26 11:33:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void tagcache_stop_scan(void)
|
|
|
|
{
|
|
|
|
queue_post(&tagcache_queue, Q_STOP_SCAN, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_TC_RAMCACHE
|
|
|
|
bool tagcache_is_ramcache(void)
|
|
|
|
{
|
2006-11-10 08:03:33 +00:00
|
|
|
return tc_stat.ramcache;
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
#endif /* !__PCTOOL__ */
|
|
|
|
|
2006-04-23 18:47:26 +00:00
|
|
|
|
2006-03-26 11:33:42 +00:00
|
|
|
void tagcache_init(void)
|
|
|
|
{
|
2006-11-10 08:03:33 +00:00
|
|
|
memset(&tc_stat, 0, sizeof(struct tagcache_stat));
|
2007-02-25 20:41:51 +00:00
|
|
|
memset(¤t_tcmh, 0, sizeof(struct master_header));
|
2006-07-15 17:36:25 +00:00
|
|
|
filenametag_fd = -1;
|
2006-08-02 17:39:34 +00:00
|
|
|
write_lock = read_lock = 0;
|
2006-04-16 17:32:54 +00:00
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
#ifndef __PCTOOL__
|
2007-07-21 17:35:19 +00:00
|
|
|
mutex_init(&command_queue_mutex);
|
2006-09-16 16:18:11 +00:00
|
|
|
queue_init(&tagcache_queue, true);
|
2006-03-26 11:33:42 +00:00
|
|
|
create_thread(tagcache_thread, tagcache_stack,
|
2007-10-16 01:25:17 +00:00
|
|
|
sizeof(tagcache_stack), 0, tagcache_thread_name
|
2007-03-04 20:06:41 +00:00
|
|
|
IF_PRIO(, PRIORITY_BACKGROUND)
|
2007-10-16 01:25:17 +00:00
|
|
|
IF_COP(, CPU));
|
2006-11-10 08:03:33 +00:00
|
|
|
#else
|
|
|
|
tc_stat.initialized = true;
|
|
|
|
allocate_tempbuf();
|
|
|
|
commit();
|
|
|
|
free_tempbuf();
|
|
|
|
tc_stat.ready = check_all_headers();
|
|
|
|
#endif
|
2006-03-26 11:33:42 +00:00
|
|
|
}
|
|
|
|
|
2006-11-19 19:11:30 +00:00
|
|
|
#ifdef __PCTOOL__
|
|
|
|
void tagcache_reverse_scan(void)
|
|
|
|
{
|
|
|
|
logf("Checking for deleted files");
|
|
|
|
check_deleted_files();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-04-12 10:31:24 +00:00
|
|
|
bool tagcache_is_initialized(void)
|
|
|
|
{
|
2006-11-10 08:03:33 +00:00
|
|
|
return tc_stat.initialized;
|
2006-04-12 10:31:24 +00:00
|
|
|
}
|
2007-03-01 11:14:46 +00:00
|
|
|
bool tagcache_is_usable(void)
|
|
|
|
{
|
|
|
|
return tc_stat.initialized && tc_stat.ready;
|
|
|
|
}
|
2006-04-12 10:31:24 +00:00
|
|
|
int tagcache_get_commit_step(void)
|
|
|
|
{
|
2006-11-10 08:03:33 +00:00
|
|
|
return tc_stat.commit_step;
|
2006-04-12 10:31:24 +00:00
|
|
|
}
|
2007-03-07 19:56:15 +00:00
|
|
|
int tagcache_get_max_commit_step(void)
|
|
|
|
{
|
2009-06-03 08:19:32 +00:00
|
|
|
return (int)(SORTED_TAGS_COUNT)+1;
|
2007-03-07 19:56:15 +00:00
|
|
|
}
|
2006-03-26 11:33:42 +00:00
|
|
|
|