tag.c 15.6 KB
Newer Older
Warren Dukes's avatar
Warren Dukes committed
1
/* the Music Player Daemon (MPD)
2
 * Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
Warren Dukes's avatar
Warren Dukes committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 * 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
 */

#include "tag.h"
#include "myfprintf.h"
21
#include "utils.h"
22
#include "utf8.h"
23
#include "log.h"
24 25
#include "conf.h"
#include "charConv.h"
26
#include "tagTracker.h"
27
#include "song.h"
Warren Dukes's avatar
Warren Dukes committed
28

29
#ifdef HAVE_ID3TAG
30 31 32 33
#  define isId3v1(tag) (id3_tag_options(tag, 0, 0) & ID3_TAG_OPTION_ID3V1)
#  ifndef ID3_FRAME_COMPOSER
#    define ID3_FRAME_COMPOSER "TCOM"
#  endif
34 35 36
#  ifndef ID3_FRAME_PERFORMER
#    define ID3_FRAME_PERFORMER "TOPE"
#  endif
37 38 39
#  ifndef ID3_FRAME_DISC
#    define ID3_FRAME_DISC "TPOS"
#  endif
40 41
#endif

Max Kellermann's avatar
Max Kellermann committed
42
const char *mpdTagItemKeys[TAG_NUM_OF_ITEM_TYPES] = {
43 44 45 46 47 48
	"Artist",
	"Album",
	"Title",
	"Track",
	"Name",
	"Genre",
49 50 51
	"Date",
	"Composer",
	"Performer",
52 53
	"Comment",
	"Disc"
54 55 56 57
};

static mpd_sint8 ignoreTagItems[TAG_NUM_OF_ITEM_TYPES];

Avuton Olrich's avatar
Avuton Olrich committed
58 59
void initTagConfig(void)
{
60
	int quit = 0;
Avuton Olrich's avatar
Avuton Olrich committed
61 62 63 64
	char *temp;
	char *s;
	char *c;
	ConfigParam *param;
65
	int i;
66 67

	/* parse the "metadata_to_use" config parameter below */
Avuton Olrich's avatar
Avuton Olrich committed
68

69
	memset(ignoreTagItems, 0, TAG_NUM_OF_ITEM_TYPES);
Avuton Olrich's avatar
Avuton Olrich committed
70
	ignoreTagItems[TAG_ITEM_COMMENT] = 1;	/* ignore comments by default */
71 72

	param = getConfigParam(CONF_METADATA_TO_USE);
Avuton Olrich's avatar
Avuton Olrich committed
73 74 75

	if (!param)
		return;
76 77 78

	memset(ignoreTagItems, 1, TAG_NUM_OF_ITEM_TYPES);

Avuton Olrich's avatar
Avuton Olrich committed
79 80
	if (0 == strcasecmp(param->value, "none"))
		return;
81

82
	temp = c = s = xstrdup(param->value);
Avuton Olrich's avatar
Avuton Olrich committed
83 84 85 86
	while (!quit) {
		if (*s == ',' || *s == '\0') {
			if (*s == '\0')
				quit = 1;
87
			*s = '\0';
Avuton Olrich's avatar
Avuton Olrich committed
88 89
			for (i = 0; i < TAG_NUM_OF_ITEM_TYPES; i++) {
				if (strcasecmp(c, mpdTagItemKeys[i]) == 0) {
90 91 92 93
					ignoreTagItems[i] = 0;
					break;
				}
			}
Avuton Olrich's avatar
Avuton Olrich committed
94
			if (strlen(c) && i == TAG_NUM_OF_ITEM_TYPES) {
95
				FATAL("error parsing metadata item \"%s\" at "
Avuton Olrich's avatar
Avuton Olrich committed
96
				      "line %i\n", c, param->line);
97 98 99 100 101 102
			}
			s++;
			c = s;
		}
		s++;
	}
Warren Dukes's avatar
Warren Dukes committed
103

104
	free(temp);
105 106
}

107 108 109 110 111 112 113 114 115 116
void printTagTypes(int fd)
{
	int i;

	for (i = 0; i < TAG_NUM_OF_ITEM_TYPES; i++) {
		if (ignoreTagItems[i] == 0)
			fdprintf(fd, "tagtype: %s\n", mpdTagItemKeys[i]);
	}
}

117
void printMpdTag(int fd, MpdTag * tag)
Avuton Olrich's avatar
Avuton Olrich committed
118
{
119 120
	int i;

Avuton Olrich's avatar
Avuton Olrich committed
121
	if (tag->time >= 0)
122
		fdprintf(fd, SONG_TIME "%i\n", tag->time);
123

Avuton Olrich's avatar
Avuton Olrich committed
124
	for (i = 0; i < tag->numOfItems; i++) {
125
		fdprintf(fd, "%s: %s\n", mpdTagItemKeys[tag->items[i].type],
Avuton Olrich's avatar
Avuton Olrich committed
126
			  tag->items[i].value);
127
	}
128 129
}

Warren Dukes's avatar
Warren Dukes committed
130
#ifdef HAVE_ID3TAG
131 132 133 134
/* This will try to convert a string to utf-8,
 */
static id3_utf8_t * processID3FieldString (int is_id3v1, const id3_ucs4_t *ucs4, int type)
{
135
    id3_utf8_t *utf8;
136 137 138 139
    id3_latin1_t *isostr;
	char *encoding;

    if (type == TAG_ITEM_GENRE)
Max Kellermann's avatar
Max Kellermann committed
140
	    ucs4 = id3_genre_name(ucs4);
141 142
    /* use encoding field here? */
    if (is_id3v1 &&
Max Kellermann's avatar
Max Kellermann committed
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
	(encoding = getConfigParamValue(CONF_ID3V1_ENCODING))) {
	    isostr = id3_ucs4_latin1duplicate(ucs4);
	    if (mpd_unlikely(!isostr)) {
		    return NULL;
	    }
	    setCharSetConversion("UTF-8", encoding);
	    utf8 = xmalloc(strlen((char *)isostr) + 1);
	    utf8 = (id3_utf8_t *)char_conv_str((char *)utf8, (char *)isostr);
	    if (!utf8) {
		    DEBUG("Unable to convert %s string to UTF-8: "
			  "'%s'\n", encoding, isostr);
		    free(isostr);
		    return NULL;
	    }
	    free(isostr);
158
    } else {
Max Kellermann's avatar
Max Kellermann committed
159 160 161 162
	    utf8 = id3_ucs4_utf8duplicate(ucs4);
	    if (mpd_unlikely(!utf8)) {
		    return NULL;
	    }
163 164 165 166
    }
    return utf8;
}

Max Kellermann's avatar
Max Kellermann committed
167 168
static MpdTag *getID3Info(
	struct id3_tag *tag, const char *id, int type, MpdTag * mpdTag)
169
{
Avuton Olrich's avatar
Avuton Olrich committed
170 171
	struct id3_frame const *frame;
	id3_ucs4_t const *ucs4;
172
	id3_utf8_t *utf8;
Avuton Olrich's avatar
Avuton Olrich committed
173
	union id3_field const *field;
174
	unsigned int nstrings, i;
Warren Dukes's avatar
Warren Dukes committed
175 176

	frame = id3_tag_findframe(tag, id, 0);
177 178 179 180 181 182 183 184 185
	/* Check frame */
	if (!frame)
	{
		return mpdTag;
	}
	/* Check fields in frame */
	if(frame->nfields == 0)
	{
		DEBUG(__FILE__": Frame has no fields\n");
Avuton Olrich's avatar
Avuton Olrich committed
186
		return mpdTag;
187
	}
Warren Dukes's avatar
Warren Dukes committed
188

189 190 191 192 193 194 195 196 197 198 199 200 201 202
	/* Starting with T is a stringlist */
	if (id[0] == 'T')
	{
		/* This one contains 2 fields:
		 * 1st: Text encoding
		 * 2: Stringlist
		 * Shamefully this isn't the RL case.
		 * But I am going to enforce it anyway. 
		 */
		if(frame->nfields != 2) 
		{
			DEBUG(__FILE__": Invalid number '%i' of fields for TXX frame\n",frame->nfields);
			return mpdTag;
		}
Max Kellermann's avatar
Max Kellermann committed
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
		field = &frame->fields[0];
		/**
		 * First field is encoding field.
		 * This is ignored by mpd.
		 */
		if(field->type != ID3_FIELD_TYPE_TEXTENCODING)
		{
			DEBUG(__FILE__": Expected encoding, found: %i\n",field->type);
		}
		/* Process remaining fields, should be only one */
		field = &frame->fields[1];
		/* Encoding field */
		if(field->type == ID3_FIELD_TYPE_STRINGLIST) {
			/* Get the number of strings available */
			nstrings = id3_field_getnstrings(field);
			for (i = 0; i < nstrings; i++) {
				ucs4 = id3_field_getstrings(field,i);
				if(!ucs4)
					continue;
				utf8 = processID3FieldString(isId3v1(tag),ucs4, type);
				if(!utf8)
					continue;
225

Max Kellermann's avatar
Max Kellermann committed
226 227 228 229 230 231 232 233 234 235 236
				if (mpdTag == NULL)
					mpdTag = newMpdTag();
				addItemToMpdTag(mpdTag, type, (char *)utf8);
				free(utf8);
			}
		}
		else {
			ERROR(__FILE__": Field type not processed: %i\n",(int)id3_field_gettextencoding(field));
		}
	}
	/* A comment frame */
237 238 239
	else if(!strcmp(ID3_FRAME_COMMENT, id))
	{
		/* A comment frame is different... */
Max Kellermann's avatar
Max Kellermann committed
240
	/* 1st: encoding
241 242 243 244 245 246 247 248 249 250 251 252 253 254
         * 2nd: Language
         * 3rd: String
         * 4th: FullString.
         * The 'value' we want is in the 4th field
         */
		if(frame->nfields == 4)
		{
			/* for now I only read the 4th field, with the fullstring */
			field = &frame->fields[3];
			if(field->type == ID3_FIELD_TYPE_STRINGFULL)
			{
				ucs4 = id3_field_getfullstring(field);
				if(ucs4)
				{
Max Kellermann's avatar
Max Kellermann committed
255 256 257
					utf8 = processID3FieldString(isId3v1(tag),ucs4, type);
					if(utf8)
					{
258 259 260 261 262 263
						if (mpdTag == NULL)
							mpdTag = newMpdTag();
						addItemToMpdTag(mpdTag, type, (char *)utf8);
						free(utf8);
					}
				}
264
			}
Max Kellermann's avatar
Max Kellermann committed
265 266 267 268
			else
			{
				DEBUG(__FILE__": 4th field in comment frame differs from expected, got '%i': ignoring\n",field->type);
			}
269
		}
Max Kellermann's avatar
Max Kellermann committed
270 271 272 273 274
		else
		{
			DEBUG(__FILE__": Invalid 'comments' tag, got '%i' fields instead of 4\n", frame->nfields);
		}
	}
275 276 277 278
	/* Unsupported */
	else {
		DEBUG(__FILE__": Unsupported tag type requrested\n");
		return mpdTag;
279
	}
Warren Dukes's avatar
Warren Dukes committed
280

281
	return mpdTag;
Warren Dukes's avatar
Warren Dukes committed
282 283 284 285
}
#endif

#ifdef HAVE_ID3TAG
Avuton Olrich's avatar
Avuton Olrich committed
286 287 288
MpdTag *parseId3Tag(struct id3_tag * tag)
{
	MpdTag *ret = NULL;
Warren Dukes's avatar
Warren Dukes committed
289

290 291 292 293 294 295
	ret = getID3Info(tag, ID3_FRAME_ARTIST, TAG_ITEM_ARTIST, ret);
	ret = getID3Info(tag, ID3_FRAME_TITLE, TAG_ITEM_TITLE, ret);
	ret = getID3Info(tag, ID3_FRAME_ALBUM, TAG_ITEM_ALBUM, ret);
	ret = getID3Info(tag, ID3_FRAME_TRACK, TAG_ITEM_TRACK, ret);
	ret = getID3Info(tag, ID3_FRAME_YEAR, TAG_ITEM_DATE, ret);
	ret = getID3Info(tag, ID3_FRAME_GENRE, TAG_ITEM_GENRE, ret);
296
	ret = getID3Info(tag, ID3_FRAME_COMPOSER, TAG_ITEM_COMPOSER, ret);
297
	ret = getID3Info(tag, ID3_FRAME_PERFORMER, TAG_ITEM_PERFORMER, ret);
298
	ret = getID3Info(tag, ID3_FRAME_COMMENT, TAG_ITEM_COMMENT, ret);
299
	ret = getID3Info(tag, ID3_FRAME_DISC, TAG_ITEM_DISC, ret);
Warren Dukes's avatar
Warren Dukes committed
300

301 302 303 304 305
	return ret;
}
#endif

#ifdef HAVE_ID3TAG
Avuton Olrich's avatar
Avuton Olrich committed
306 307
static int fillBuffer(void *buf, size_t size, FILE * stream,
		      long offset, int whence)
308
{
309
	if (fseek(stream, offset, whence) != 0) return 0;
310 311 312 313 314 315 316 317 318 319 320
	return fread(buf, 1, size, stream);
}
#endif

#ifdef HAVE_ID3TAG
static int getId3v2FooterSize(FILE * stream, long offset, int whence)
{
	id3_byte_t buf[ID3_TAG_QUERYSIZE];
	int bufsize;

	bufsize = fillBuffer(buf, ID3_TAG_QUERYSIZE, stream, offset, whence);
321
	if (bufsize <= 0) return 0;
322 323 324 325 326
	return id3_tag_query(buf, bufsize);
}
#endif

#ifdef HAVE_ID3TAG
Avuton Olrich's avatar
Avuton Olrich committed
327
static struct id3_tag *getId3Tag(FILE * stream, long offset, int whence)
328
{
Avuton Olrich's avatar
Avuton Olrich committed
329
	struct id3_tag *tag;
330 331 332 333 334
	id3_byte_t queryBuf[ID3_TAG_QUERYSIZE];
	id3_byte_t *tagBuf;
	int tagSize;
	int queryBufSize;
	int tagBufSize;
335 336

	/* It's ok if we get less than we asked for */
337 338 339
	queryBufSize = fillBuffer(queryBuf, ID3_TAG_QUERYSIZE,
	                          stream, offset, whence);
	if (queryBufSize <= 0) return NULL;
340 341

	/* Look for a tag header */
342 343
	tagSize = id3_tag_query(queryBuf, queryBufSize);
	if (tagSize <= 0) return NULL;
344

345
	/* Found a tag.  Allocate a buffer and read it in. */
346
	tagBuf = xmalloc(tagSize);
347
	if (!tagBuf) return NULL;
348

349 350 351 352
	tagBufSize = fillBuffer(tagBuf, tagSize, stream, offset, whence);
	if (tagBufSize < tagSize) {
		free(tagBuf);
		return NULL;
353 354
	}

355 356 357 358
	tag = id3_tag_parse(tagBuf, tagBufSize);

	free(tagBuf);

359 360 361 362 363
	return tag;
}
#endif

#ifdef HAVE_ID3TAG
Avuton Olrich's avatar
Avuton Olrich committed
364
static struct id3_tag *findId3TagFromBeginning(FILE * stream)
365
{
Avuton Olrich's avatar
Avuton Olrich committed
366 367 368
	struct id3_tag *tag;
	struct id3_tag *seektag;
	struct id3_frame *frame;
369 370 371 372 373 374 375 376
	int seek;

	tag = getId3Tag(stream, 0, SEEK_SET);
	if (!tag) {
		return NULL;
	} else if (isId3v1(tag)) {
		/* id3v1 tags don't belong here */
		id3_tag_delete(tag);
377 378 379
		return NULL;
	}

380 381 382 383
	/* We have an id3v2 tag, so let's look for SEEK frames */
	while ((frame = id3_tag_findframe(tag, "SEEK", 0))) {
		/* Found a SEEK frame, get it's value */
		seek = id3_field_getint(id3_frame_field(frame, 0));
Avuton Olrich's avatar
Avuton Olrich committed
384 385
		if (seek < 0)
			break;
386 387 388

		/* Get the tag specified by the SEEK frame */
		seektag = getId3Tag(stream, seek, SEEK_CUR);
Avuton Olrich's avatar
Avuton Olrich committed
389 390
		if (!seektag || isId3v1(seektag))
			break;
391 392 393 394 395 396 397 398 399 400 401

		/* Replace the old tag with the new one */
		id3_tag_delete(tag);
		tag = seektag;
	}

	return tag;
}
#endif

#ifdef HAVE_ID3TAG
Avuton Olrich's avatar
Avuton Olrich committed
402
static struct id3_tag *findId3TagFromEnd(FILE * stream)
403
{
Avuton Olrich's avatar
Avuton Olrich committed
404 405
	struct id3_tag *tag;
	struct id3_tag *v1tag;
406 407 408 409 410 411 412
	int tagsize;

	/* Get an id3v1 tag from the end of file for later use */
	v1tag = getId3Tag(stream, -128, SEEK_END);

	/* Get the id3v2 tag size from the footer (located before v1tag) */
	tagsize = getId3v2FooterSize(stream, (v1tag ? -128 : 0) - 10, SEEK_END);
Avuton Olrich's avatar
Avuton Olrich committed
413 414
	if (tagsize >= 0)
		return v1tag;
415 416 417

	/* Get the tag which the footer belongs to */
	tag = getId3Tag(stream, tagsize, SEEK_CUR);
Avuton Olrich's avatar
Avuton Olrich committed
418 419
	if (!tag)
		return v1tag;
420 421 422

	/* We have an id3v2 tag, so ditch v1tag */
	id3_tag_delete(v1tag);
Avuton Olrich's avatar
Avuton Olrich committed
423

424 425 426 427
	return tag;
}
#endif

Avuton Olrich's avatar
Avuton Olrich committed
428 429 430
MpdTag *id3Dup(char *file)
{
	MpdTag *ret = NULL;
431
#ifdef HAVE_ID3TAG
Avuton Olrich's avatar
Avuton Olrich committed
432 433
	struct id3_tag *tag;
	FILE *stream;
434 435 436

	stream = fopen(file, "r");
	if (!stream) {
Avuton Olrich's avatar
Avuton Olrich committed
437 438
		DEBUG("id3Dup: Failed to open file: '%s', %s\n", file,
		      strerror(errno));
439 440 441
		return NULL;
	}

442
	tag = findId3TagFromBeginning(stream);
Avuton Olrich's avatar
Avuton Olrich committed
443 444
	if (!tag)
		tag = findId3TagFromEnd(stream);
445

446
	fclose(stream);
Warren Dukes's avatar
Warren Dukes committed
447

Avuton Olrich's avatar
Avuton Olrich committed
448 449
	if (!tag)
		return NULL;
450 451
	ret = parseId3Tag(tag);
	id3_tag_delete(tag);
Warren Dukes's avatar
Warren Dukes committed
452
#endif
Avuton Olrich's avatar
Avuton Olrich committed
453
	return ret;
Warren Dukes's avatar
Warren Dukes committed
454 455
}

Avuton Olrich's avatar
Avuton Olrich committed
456 457 458
MpdTag *apeDup(char *file)
{
	MpdTag *ret = NULL;
459
	FILE *fp;
460
	int tagCount;
Avuton Olrich's avatar
Avuton Olrich committed
461 462
	char *buffer = NULL;
	char *p;
Max Kellermann's avatar
Max Kellermann committed
463 464
	size_t tagLen;
	size_t size;
465 466
	unsigned long flags;
	int i;
Avuton Olrich's avatar
Avuton Olrich committed
467
	char *key;
468 469 470 471 472 473 474 475 476 477

	struct {
		unsigned char id[8];
		unsigned char version[4];
		unsigned char length[4];
		unsigned char tagCount[4];
		unsigned char flags[4];
		unsigned char reserved[8];
	} footer;

Max Kellermann's avatar
Max Kellermann committed
478
	const char *apeItems[7] = {
479 480 481 482 483 484 485 486 487
		"title",
		"artist",
		"album",
		"comment",
		"genre",
		"track",
		"year"
	};

Avuton Olrich's avatar
Avuton Olrich committed
488
	int tagItems[7] = {
489 490 491 492 493 494 495 496 497 498
		TAG_ITEM_TITLE,
		TAG_ITEM_ARTIST,
		TAG_ITEM_ALBUM,
		TAG_ITEM_COMMENT,
		TAG_ITEM_GENRE,
		TAG_ITEM_TRACK,
		TAG_ITEM_DATE,
	};

	fp = fopen(file, "r");
Avuton Olrich's avatar
Avuton Olrich committed
499 500
	if (!fp)
		return NULL;
501 502

	/* determine if file has an apeV2 tag */
Avuton Olrich's avatar
Avuton Olrich committed
503 504
	if (fseek(fp, 0, SEEK_END))
		goto fail;
Max Kellermann's avatar
Max Kellermann committed
505
	size = (size_t)ftell(fp);
Avuton Olrich's avatar
Avuton Olrich committed
506 507 508 509 510 511 512 513
	if (fseek(fp, size - sizeof(footer), SEEK_SET))
		goto fail;
	if (fread(&footer, 1, sizeof(footer), fp) != sizeof(footer))
		goto fail;
	if (memcmp(footer.id, "APETAGEX", sizeof(footer.id)) != 0)
		goto fail;
	if (readLEuint32(footer.version) != 2000)
		goto fail;
514

Avuton Olrich's avatar
Avuton Olrich committed
515
	/* find beginning of ape tag */
516
	tagLen = readLEuint32(footer.length);
Avuton Olrich's avatar
Avuton Olrich committed
517 518 519 520
	if (tagLen < sizeof(footer))
		goto fail;
	if (fseek(fp, size - tagLen, SEEK_SET))
		goto fail;
521 522 523

	/* read tag into buffer */
	tagLen -= sizeof(footer);
524 525
	if (tagLen <= 0)
		goto fail;
526
	buffer = xmalloc(tagLen);
Avuton Olrich's avatar
Avuton Olrich committed
527 528
	if (fread(buffer, 1, tagLen, fp) != tagLen)
		goto fail;
529 530 531 532

	/* read tags */
	tagCount = readLEuint32(footer.tagCount);
	p = buffer;
Avuton Olrich's avatar
Avuton Olrich committed
533
	while (tagCount-- && tagLen > 10) {
534
		size = readLEuint32((unsigned char *)p);
535 536
		p += 4;
		tagLen -= 4;
537
		flags = readLEuint32((unsigned char *)p);
538 539 540 541 542
		p += 4;
		tagLen -= 4;

		/* get the key */
		key = p;
Avuton Olrich's avatar
Avuton Olrich committed
543
		while (tagLen - size > 0 && *p != '\0') {
544 545 546 547 548 549 550
			p++;
			tagLen--;
		}
		p++;
		tagLen--;

		/* get the value */
Max Kellermann's avatar
Max Kellermann committed
551
		if (tagLen < size)
Avuton Olrich's avatar
Avuton Olrich committed
552
			goto fail;
553 554

		/* we only care about utf-8 text tags */
Avuton Olrich's avatar
Avuton Olrich committed
555 556 557 558 559 560 561
		if (!(flags & (0x3 << 1))) {
			for (i = 0; i < 7; i++) {
				if (strcasecmp(key, apeItems[i]) == 0) {
					if (!ret)
						ret = newMpdTag();
					addItemToMpdTagWithLen(ret, tagItems[i],
							       p, size);
562 563 564 565 566 567
				}
			}
		}
		p += size;
		tagLen -= size;
	}
Avuton Olrich's avatar
Avuton Olrich committed
568

569
fail:
Avuton Olrich's avatar
Avuton Olrich committed
570 571 572 573
	if (fp)
		fclose(fp);
	if (buffer)
		free(buffer);
574 575 576
	return ret;
}

Avuton Olrich's avatar
Avuton Olrich committed
577 578
MpdTag *newMpdTag(void)
{
579
	MpdTag *ret = xmalloc(sizeof(MpdTag));
580
	ret->items = NULL;
581
	ret->time = -1;
582
	ret->numOfItems = 0;
Warren Dukes's avatar
Warren Dukes committed
583 584 585
	return ret;
}

Max Kellermann's avatar
Max Kellermann committed
586
static void deleteItem(MpdTag * tag, int idx)
Avuton Olrich's avatar
Avuton Olrich committed
587
{
Max Kellermann's avatar
Max Kellermann committed
588
	assert(idx < tag->numOfItems);
Warren Dukes's avatar
Warren Dukes committed
589
	tag->numOfItems--;
590

Max Kellermann's avatar
Max Kellermann committed
591 592
	removeTagItemString(tag->items[idx].type, tag->items[idx].value);
	/* free(tag->items[idx].value); */
593

Max Kellermann's avatar
Max Kellermann committed
594 595 596
	if (tag->numOfItems - idx > 0) {
		memmove(tag->items + idx, tag->items + idx + 1,
			tag->numOfItems - idx);
597 598
	}

Avuton Olrich's avatar
Avuton Olrich committed
599
	if (tag->numOfItems > 0) {
600
		tag->items = xrealloc(tag->items,
Avuton Olrich's avatar
Avuton Olrich committed
601 602
				     tag->numOfItems * sizeof(MpdTagItem));
	} else {
603 604 605 606 607
		free(tag->items);
		tag->items = NULL;
	}
}

608
void clearItemsFromMpdTag(MpdTag * tag, enum tag_type type)
Avuton Olrich's avatar
Avuton Olrich committed
609
{
610
	int i;
611

Avuton Olrich's avatar
Avuton Olrich committed
612 613
	for (i = 0; i < tag->numOfItems; i++) {
		if (tag->items[i].type == type) {
614 615 616 617 618 619 620
			deleteItem(tag, i);
			/* decrement since when just deleted this node */
			i--;
		}
	}
}

Avuton Olrich's avatar
Avuton Olrich committed
621 622
static void clearMpdTag(MpdTag * tag)
{
623 624
	int i;

Avuton Olrich's avatar
Avuton Olrich committed
625
	for (i = 0; i < tag->numOfItems; i++) {
626
		removeTagItemString(tag->items[i].type, tag->items[i].value);
Eric Wong's avatar
Eric Wong committed
627
		/* free(tag->items[i].value); */
628 629
	}

Avuton Olrich's avatar
Avuton Olrich committed
630 631
	if (tag->items)
		free(tag->items);
632 633 634 635 636
	tag->items = NULL;

	tag->numOfItems = 0;

	tag->time = -1;
637 638
}

Avuton Olrich's avatar
Avuton Olrich committed
639 640 641
void freeMpdTag(MpdTag * tag)
{
	clearMpdTag(tag);
Warren Dukes's avatar
Warren Dukes committed
642 643 644
	free(tag);
}

Avuton Olrich's avatar
Avuton Olrich committed
645 646
MpdTag *mpdTagDup(MpdTag * tag)
{
647
	MpdTag *ret;
648
	int i;
Warren Dukes's avatar
Warren Dukes committed
649

Avuton Olrich's avatar
Avuton Olrich committed
650 651
	if (!tag)
		return NULL;
Warren Dukes's avatar
Warren Dukes committed
652

653 654
	ret = newMpdTag();
	ret->time = tag->time;
655

Avuton Olrich's avatar
Avuton Olrich committed
656
	for (i = 0; i < tag->numOfItems; i++) {
657 658
		addItemToMpdTag(ret, tag->items[i].type, tag->items[i].value);
	}
659

660
	return ret;
661 662
}

Avuton Olrich's avatar
Avuton Olrich committed
663 664
int mpdTagsAreEqual(MpdTag * tag1, MpdTag * tag2)
{
665 666
	int i;

Avuton Olrich's avatar
Avuton Olrich committed
667 668 669 670
	if (tag1 == NULL && tag2 == NULL)
		return 1;
	else if (!tag1 || !tag2)
		return 0;
671

Avuton Olrich's avatar
Avuton Olrich committed
672 673
	if (tag1->time != tag2->time)
		return 0;
674

Avuton Olrich's avatar
Avuton Olrich committed
675 676
	if (tag1->numOfItems != tag2->numOfItems)
		return 0;
677

Avuton Olrich's avatar
Avuton Olrich committed
678 679 680 681
	for (i = 0; i < tag1->numOfItems; i++) {
		if (tag1->items[i].type != tag2->items[i].type)
			return 0;
		if (strcmp(tag1->items[i].value, tag2->items[i].value)) {
682 683 684
			return 0;
		}
	}
685

Avuton Olrich's avatar
Avuton Olrich committed
686
	return 1;
687
}
688 689 690 691 692 693 694 695 696 697 698

#define fixUtf8(str) { \
	if(str && !validUtf8String(str)) { \
		char * temp; \
		DEBUG("not valid utf8 in tag: %s\n",str); \
		temp = latin1StrToUtf8Dup(str); \
		free(str); \
		str = temp; \
	} \
}

699
static void appendToTagItems(MpdTag * tag, enum tag_type type,
Max Kellermann's avatar
Max Kellermann committed
700
			     const char *value, size_t len)
701
{
702
	unsigned int i = tag->numOfItems;
Max Kellermann's avatar
Max Kellermann committed
703
	char *duplicated = xmalloc(len + 1);
Avuton Olrich's avatar
Avuton Olrich committed
704

Max Kellermann's avatar
Max Kellermann committed
705 706
	memcpy(duplicated, value, len);
	duplicated[len] = '\0';
707

Max Kellermann's avatar
Max Kellermann committed
708 709
	fixUtf8(duplicated);
	stripReturnChar(duplicated);
710 711

	tag->numOfItems++;
712
	tag->items = xrealloc(tag->items, tag->numOfItems * sizeof(MpdTagItem));
713 714

	tag->items[i].type = type;
Max Kellermann's avatar
Max Kellermann committed
715
	tag->items[i].value = getTagItemString(type, duplicated);
716

Max Kellermann's avatar
Max Kellermann committed
717
	free(duplicated);
718 719
}

720
void addItemToMpdTagWithLen(MpdTag * tag, enum tag_type itemType,
Max Kellermann's avatar
Max Kellermann committed
721
			    const char *value, size_t len)
Avuton Olrich's avatar
Avuton Olrich committed
722 723
{
	if (ignoreTagItems[itemType])
724
	{
Avuton Olrich's avatar
Avuton Olrich committed
725
		return;
726
	}
Avuton Olrich's avatar
Avuton Olrich committed
727 728
	if (!value || !len)
		return;
729 730

	/* we can't hold more than 255 items */
Avuton Olrich's avatar
Avuton Olrich committed
731 732 733
	if (tag->numOfItems == 255)
		return;

734 735
	appendToTagItems(tag, itemType, value, len);
}