2004-11-10 22:58:27 +01:00
|
|
|
#ifndef DB_UTILS_H
|
|
|
|
#define DB_UTILS_H
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "tag.h"
|
|
|
|
|
|
|
|
/* struct used for search, find, list queries */
|
|
|
|
typedef struct _LocateTagItem {
|
|
|
|
mpd_sint8 tagType;
|
|
|
|
/* what we are looking for */
|
|
|
|
char * needle;
|
|
|
|
} LocateTagItem;
|
|
|
|
|
|
|
|
/* returns NULL if not a known type */
|
|
|
|
LocateTagItem * newLocateTagItem(char * typeString, char * needle);
|
|
|
|
|
|
|
|
int getLocateTagItemType(char * str);
|
|
|
|
|
|
|
|
void freeLocateTagItem(LocateTagItem * item);
|
|
|
|
|
|
|
|
int printAllIn(FILE * fp, char * name);
|
|
|
|
|
|
|
|
int addAllIn(FILE * fp, char * name);
|
|
|
|
|
|
|
|
int printInfoForAllIn(FILE * fp, char * name);
|
|
|
|
|
|
|
|
int searchForSongsIn(FILE * fp, char * name, LocateTagItem * item);
|
|
|
|
|
|
|
|
int findSongsIn(FILE * fp, char * name, LocateTagItem * item);
|
|
|
|
|
|
|
|
int countSongsIn(FILE * fp, char * name);
|
|
|
|
|
|
|
|
unsigned long sumSongTimesIn(FILE * fp, char * name);
|
|
|
|
|
|
|
|
int listAllUniqueTags(FILE * fp, int type, int numConditiionals,
|
|
|
|
LocateTagItem * conditionals);
|
|
|
|
|
2004-11-11 03:36:25 +01:00
|
|
|
void printSavedMemoryFromFilenames();
|
|
|
|
|
2004-11-11 06:25:05 +01:00
|
|
|
void printSavedMemoryFromDirectoryNames();
|
|
|
|
|
2004-11-10 22:58:27 +01:00
|
|
|
#endif
|