Update to 6762
[qball-mpd.git] / src / .svn / text-base / tag.h.svn-base
blob9723facdd1c586be27e4289dafb7dbfeb59bf5e0
1 /* the Music Player Daemon (MPD)
2  * Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
3  * This project's homepage is: http://www.musicpd.org
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
19 #ifndef TAG_H
20 #define TAG_H
22 #include "../config.h"
24 #include "mpd_types.h"
26 #include <string.h>
28 #include <stdio.h>
29 #ifdef HAVE_ID3TAG
30 #include <id3tag.h>
31 #endif
33 #define TAG_ITEM_ARTIST         0
34 #define TAG_ITEM_ALBUM          1
35 #define TAG_ITEM_TITLE          2
36 #define TAG_ITEM_TRACK          3
37 #define TAG_ITEM_NAME           4
38 #define TAG_ITEM_GENRE          5
39 #define TAG_ITEM_DATE           6
40 #define TAG_ITEM_COMPOSER       7
41 #define TAG_ITEM_PERFORMER      8
42 #define TAG_ITEM_COMMENT        9
43 #define TAG_ITEM_DISC      10
45 #define TAG_NUM_OF_ITEM_TYPES   11
47 extern char *mpdTagItemKeys[];
49 typedef struct _MpdTagItem {
50         mpd_sint8 type;
51         char *value;
52 } MpdTagItem;
54 typedef struct _MpdTag {
55         int time;
56         MpdTagItem *items;
57         mpd_uint8 numOfItems;
58 } MpdTag;
60 #ifdef HAVE_ID3TAG
61 MpdTag *parseId3Tag(struct id3_tag *);
62 #endif
64 MpdTag *apeDup(char *file);
66 MpdTag *id3Dup(char *file);
68 MpdTag *newMpdTag(void);
70 void initTagConfig(void);
72 void clearItemsFromMpdTag(MpdTag * tag, int itemType);
74 void freeMpdTag(MpdTag * tag);
76 void addItemToMpdTagWithLen(MpdTag * tag, int itemType, char *value, int len);
78 #define addItemToMpdTag(tag, itemType, value) \
79                 addItemToMpdTagWithLen(tag, itemType, value, strlen(value))
81 void printTagTypes(int fd);
83 void printMpdTag(int fd, MpdTag * tag);
85 MpdTag *mpdTagDup(MpdTag * tag);
87 int mpdTagsAreEqual(MpdTag * tag1, MpdTag * tag2);
89 #endif