2006-07-13 21:20:34 +02:00
|
|
|
/* the Music Player Daemon (MPD)
|
2006-07-14 21:37:45 +02:00
|
|
|
* (c)2003-2006 by Warren Dukes (warren.dukes@gmail.com)
|
2006-07-13 21:20:34 +02:00
|
|
|
* This project's homepage is: http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2004-11-10 22:58:27 +01:00
|
|
|
#ifndef DB_UTILS_H
|
|
|
|
#define DB_UTILS_H
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "tag.h"
|
|
|
|
|
2006-12-11 21:14:33 +01:00
|
|
|
#define LOCATE_TAG_FILE_TYPE TAG_NUM_OF_ITEM_TYPES+10
|
|
|
|
#define LOCATE_TAG_ANY_TYPE TAG_NUM_OF_ITEM_TYPES+20
|
|
|
|
|
2004-11-10 22:58:27 +01:00
|
|
|
/* struct used for search, find, list queries */
|
|
|
|
typedef struct _LocateTagItem {
|
|
|
|
mpd_sint8 tagType;
|
|
|
|
/* what we are looking for */
|
2006-07-20 18:02:40 +02:00
|
|
|
char *needle;
|
2004-11-10 22:58:27 +01:00
|
|
|
} LocateTagItem;
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
int getLocateTagItemType(char *str);
|
2004-11-12 02:44:27 +01:00
|
|
|
|
2004-11-10 22:58:27 +01:00
|
|
|
/* returns NULL if not a known type */
|
2006-07-20 18:02:40 +02:00
|
|
|
LocateTagItem *newLocateTagItem(char *typeString, char *needle);
|
2004-11-10 22:58:27 +01:00
|
|
|
|
2004-11-12 02:44:27 +01:00
|
|
|
/* return number of items or -1 on error */
|
2006-07-20 18:02:40 +02:00
|
|
|
int newLocateTagItemArrayFromArgArray(char *argArray[], int numArgs,
|
|
|
|
LocateTagItem ** arrayRet);
|
2004-11-12 02:44:27 +01:00
|
|
|
|
|
|
|
void freeLocateTagItemArray(int count, LocateTagItem * array);
|
2004-11-10 22:58:27 +01:00
|
|
|
|
|
|
|
void freeLocateTagItem(LocateTagItem * item);
|
|
|
|
|
2006-07-30 05:43:38 +02:00
|
|
|
int printAllIn(int fd, char *name);
|
2004-11-10 22:58:27 +01:00
|
|
|
|
2006-07-30 05:43:38 +02:00
|
|
|
int addAllIn(int fd, char *name);
|
2004-11-10 22:58:27 +01:00
|
|
|
|
2006-11-20 16:37:58 +01:00
|
|
|
int addAllInToStoredPlaylist(int fd, char *name, char *utf8file);
|
|
|
|
|
2006-07-30 05:43:38 +02:00
|
|
|
int printInfoForAllIn(int fd, char *name);
|
2004-11-10 22:58:27 +01:00
|
|
|
|
2006-07-30 05:43:38 +02:00
|
|
|
int searchForSongsIn(int fd, char *name, int numItems,
|
2006-07-20 18:02:40 +02:00
|
|
|
LocateTagItem * items);
|
2004-11-10 22:58:27 +01:00
|
|
|
|
2006-07-30 05:43:38 +02:00
|
|
|
int findSongsIn(int fd, char *name, int numItems, LocateTagItem * items);
|
2004-11-10 22:58:27 +01:00
|
|
|
|
2006-07-30 05:43:38 +02:00
|
|
|
int countSongsIn(int fd, char *name);
|
2004-11-10 22:58:27 +01:00
|
|
|
|
2006-07-30 05:43:38 +02:00
|
|
|
unsigned long sumSongTimesIn(int fd, char *name);
|
2004-11-10 22:58:27 +01:00
|
|
|
|
2006-07-30 05:43:38 +02:00
|
|
|
int listAllUniqueTags(int fd, int type, int numConditiionals,
|
2006-07-20 18:02:40 +02:00
|
|
|
LocateTagItem * conditionals);
|
2004-11-10 22:58:27 +01:00
|
|
|
|
2006-08-20 02:50:44 +02:00
|
|
|
void printSavedMemoryFromFilenames(void);
|
2004-11-11 03:36:25 +01:00
|
|
|
|
2004-11-10 22:58:27 +01:00
|
|
|
#endif
|