tag.c 15.5 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"
28
#include "os_compat.h"
Warren Dukes's avatar
Warren Dukes committed
29

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

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

static mpd_sint8 ignoreTagItems[TAG_NUM_OF_ITEM_TYPES];

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

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

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

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

	if (!param)
		return;
77 78 79

	memset(ignoreTagItems, 1, TAG_NUM_OF_ITEM_TYPES);

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

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

105
	free(temp);
106 107
}

108 109 110 111 112 113 114 115 116 117
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]);
	}
}

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

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

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

Warren Dukes's avatar
Warren Dukes committed
131
#ifdef HAVE_ID3TAG
132 133 134 135
/* 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)
{
136
    id3_utf8_t *utf8;
137 138 139 140
    id3_latin1_t *isostr;
	char *encoding;

    if (type == TAG_ITEM_GENRE)
Max Kellermann's avatar
Max Kellermann committed
141
	    ucs4 = id3_genre_name(ucs4);
142 143
    /* use encoding field here? */
    if (is_id3v1 &&
Max Kellermann's avatar
Max Kellermann committed
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
	(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);
159
    } else {
Max Kellermann's avatar
Max Kellermann committed
160 161 162 163
	    utf8 = id3_ucs4_utf8duplicate(ucs4);
	    if (mpd_unlikely(!utf8)) {
		    return NULL;
	    }
164 165 166 167
    }
    return utf8;
}

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

	frame = id3_tag_findframe(tag, id, 0);
178 179 180 181 182 183 184 185 186
	/* 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
187
		return mpdTag;
188
	}
Warren Dukes's avatar
Warren Dukes committed
189

190 191 192 193 194 195 196 197 198 199 200 201 202 203
	/* 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
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
		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;
226

Max Kellermann's avatar
Max Kellermann committed
227 228 229 230 231 232 233 234 235 236 237
				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 */
238 239 240
	else if(!strcmp(ID3_FRAME_COMMENT, id))
	{
		/* A comment frame is different... */
Max Kellermann's avatar
Max Kellermann committed
241
	/* 1st: encoding
242 243 244 245 246 247 248 249 250 251 252 253 254 255
         * 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
256 257 258
					utf8 = processID3FieldString(isId3v1(tag),ucs4, type);
					if(utf8)
					{
259 260 261 262 263 264
						if (mpdTag == NULL)
							mpdTag = newMpdTag();
						addItemToMpdTag(mpdTag, type, (char *)utf8);
						free(utf8);
					}
				}
265
			}
Max Kellermann's avatar
Max Kellermann committed
266 267 268 269
			else
			{
				DEBUG(__FILE__": 4th field in comment frame differs from expected, got '%i': ignoring\n",field->type);
			}
270
		}
Max Kellermann's avatar
Max Kellermann committed
271 272 273 274 275
		else
		{
			DEBUG(__FILE__": Invalid 'comments' tag, got '%i' fields instead of 4\n", frame->nfields);
		}
	}
276 277 278 279
	/* Unsupported */
	else {
		DEBUG(__FILE__": Unsupported tag type requrested\n");
		return mpdTag;
280
	}
Warren Dukes's avatar
Warren Dukes committed
281

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

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

291 292 293 294 295 296
	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);
297
	ret = getID3Info(tag, ID3_FRAME_COMPOSER, TAG_ITEM_COMPOSER, ret);
298
	ret = getID3Info(tag, ID3_FRAME_PERFORMER, TAG_ITEM_PERFORMER, ret);
299
	ret = getID3Info(tag, ID3_FRAME_COMMENT, TAG_ITEM_COMMENT, ret);
300
	ret = getID3Info(tag, ID3_FRAME_DISC, TAG_ITEM_DISC, ret);
Warren Dukes's avatar
Warren Dukes committed
301

302 303 304 305 306
	return ret;
}
#endif

#ifdef HAVE_ID3TAG
Avuton Olrich's avatar
Avuton Olrich committed
307 308
static int fillBuffer(void *buf, size_t size, FILE * stream,
		      long offset, int whence)
309
{
310
	if (fseek(stream, offset, whence) != 0) return 0;
311 312 313 314 315 316 317 318 319 320 321
	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);
322
	if (bufsize <= 0) return 0;
323 324 325 326 327
	return id3_tag_query(buf, bufsize);
}
#endif

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

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

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

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

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

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

	free(tagBuf);

360 361 362 363 364
	return tag;
}
#endif

#ifdef HAVE_ID3TAG
Avuton Olrich's avatar
Avuton Olrich committed
365
static struct id3_tag *findId3TagFromBeginning(FILE * stream)
366
{
Avuton Olrich's avatar
Avuton Olrich committed
367 368 369
	struct id3_tag *tag;
	struct id3_tag *seektag;
	struct id3_frame *frame;
370 371 372 373 374 375 376 377
	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);
378 379 380
		return NULL;
	}

381 382 383 384
	/* 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
385 386
		if (seek < 0)
			break;
387 388 389

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

		/* 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
403
static struct id3_tag *findId3TagFromEnd(FILE * stream)
404
{
Avuton Olrich's avatar
Avuton Olrich committed
405 406
	struct id3_tag *tag;
	struct id3_tag *v1tag;
407 408 409 410 411 412 413
	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
414 415
	if (tagsize >= 0)
		return v1tag;
416 417 418

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

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

425 426 427 428
	return tag;
}
#endif

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

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

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

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

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

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

	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
479
	const char *apeItems[7] = {
480 481 482 483 484 485 486 487 488
		"title",
		"artist",
		"album",
		"comment",
		"genre",
		"track",
		"year"
	};

Avuton Olrich's avatar
Avuton Olrich committed
489
	int tagItems[7] = {
490 491 492 493 494 495 496 497 498 499
		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
500 501
	if (!fp)
		return NULL;
502 503

	/* determine if file has an apeV2 tag */
Avuton Olrich's avatar
Avuton Olrich committed
504 505
	if (fseek(fp, 0, SEEK_END))
		goto fail;
Max Kellermann's avatar
Max Kellermann committed
506
	size = (size_t)ftell(fp);
Avuton Olrich's avatar
Avuton Olrich committed
507 508 509 510 511 512 513 514
	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;
515

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

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

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

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

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

		/* we only care about utf-8 text tags */
Avuton Olrich's avatar
Avuton Olrich committed
556 557 558 559 560 561 562
		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);
563 564 565 566 567 568
				}
			}
		}
		p += size;
		tagLen -= size;
	}
Avuton Olrich's avatar
Avuton Olrich committed
569

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

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

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

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

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

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

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

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

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

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

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

	tag->numOfItems = 0;

	tag->time = -1;
638 639
}

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

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

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

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

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

661
	return ret;
662 663
}

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

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

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

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

Avuton Olrich's avatar
Avuton Olrich committed
679 680 681 682
	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)) {
683 684 685
			return 0;
		}
	}
686

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

#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; \
	} \
}

Avuton Olrich's avatar
Avuton Olrich committed
700
static void appendToTagItems(MpdTag * tag, int type, char *value, int len)
701 702
{
	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
}

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

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

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