diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-11-10 21:53:51 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-11-10 21:53:51 +0000 |
commit | de4d9ea6d609485b86c373fa8d60e5c24a6b11d1 (patch) | |
tree | 758ff423481b4c58df55fbab4b3137378587d4a2 /src/dbUtils.h | |
parent | 021a0915c2bc6e62bda3e45a89c95266f3b2da47 (diff) | |
download | mpd-de4d9ea6d609485b86c373fa8d60e5c24a6b11d1.tar.gz mpd-de4d9ea6d609485b86c373fa8d60e5c24a6b11d1.tar.xz mpd-de4d9ea6d609485b86c373fa8d60e5c24a6b11d1.zip |
forgot to add these filessvn/r2562-metadata-handling-rewrite
git-svn-id: https://svn.musicpd.org/mpd/branches/r2562-metadata-handling-rewrite@2588 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/dbUtils.h')
-rw-r--r-- | src/dbUtils.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/dbUtils.h b/src/dbUtils.h new file mode 100644 index 000000000..d0f084701 --- /dev/null +++ b/src/dbUtils.h @@ -0,0 +1,42 @@ +#ifndef DB_UTILS_H +#define DB_UTILS_H + +#include <stdio.h> + +#include "tag.h" + +#define LOCATE_TAG_FILE_TYPE TAG_NUM_OF_ITEM_TYPES+10 +#define LOCATE_TAG_FILE_KEY "filename" + +/* 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); + +#endif |