2005-04-28 14:06:20 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 by Michiel van der Kolk
|
|
|
|
*
|
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.
|
2005-04-28 14:06:20 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2005-05-11 00:12:33 +00:00
|
|
|
struct dbglobals {
|
|
|
|
int playcountmin;
|
|
|
|
int playcountmax;
|
|
|
|
int gotplaycountlimits;
|
|
|
|
int currententryindex;
|
|
|
|
};
|
|
|
|
|
2006-02-18 20:51:34 +00:00
|
|
|
struct dbentry {
|
2005-05-11 00:12:33 +00:00
|
|
|
int loadedfiledata,
|
|
|
|
loadedsongdata,
|
|
|
|
loadedrundbdata,
|
|
|
|
loadedalbumname,
|
|
|
|
loadedartistname;
|
|
|
|
char *filename;
|
2005-07-01 17:29:44 +00:00
|
|
|
long hash,rundbhash;
|
|
|
|
long songentry,rundbfe;
|
2005-05-11 00:12:33 +00:00
|
|
|
long rundbentry;
|
|
|
|
short year;
|
|
|
|
short bitrate;
|
2005-07-01 17:29:44 +00:00
|
|
|
short rating;
|
2005-05-11 00:12:33 +00:00
|
|
|
long playcount;
|
2005-07-01 17:29:44 +00:00
|
|
|
long lastplayed;
|
|
|
|
short voladj;
|
2005-05-11 00:12:33 +00:00
|
|
|
char *title;
|
|
|
|
char *genre;
|
|
|
|
long artistoffset;
|
|
|
|
long albumoffset;
|
|
|
|
char *artistname;
|
|
|
|
char *albumname;
|
2005-06-05 23:00:42 +00:00
|
|
|
long playtime;
|
|
|
|
short track;
|
|
|
|
short samplerate;
|
2005-04-28 12:33:38 +00:00
|
|
|
};
|
|
|
|
|
2006-02-18 20:51:34 +00:00
|
|
|
extern struct dbentry *currententry;
|
2005-05-11 00:12:33 +00:00
|
|
|
extern struct dbglobals dbglobal;
|
2005-04-28 12:33:38 +00:00
|
|
|
|
|
|
|
int database_init(void);
|
|
|
|
void loadentry(int filerecord);
|
|
|
|
void loadsongdata(void);
|
|
|
|
void loadrundbdata(void);
|
|
|
|
void loadartistname(void);
|
|
|
|
void loadalbumname(void);
|
|
|
|
char *getfilename(int entry);
|