tag_ape.c 2.92 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2011 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13
 * 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.
14 15 16 17
 *
 * 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.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 19
 */

20
#include "config.h"
21 22
#include "tag_ape.h"
#include "tag.h"
23
#include "tag_table.h"
24
#include "tag_handler.h"
25
#include "ape.h"
26

27
const struct tag_table ape_tags[] = {
28 29 30
	{ "album artist", TAG_ALBUM_ARTIST },
	{ "year", TAG_DATE },
	{ NULL, TAG_NUM_OF_ITEM_TYPES }
31 32
};

33 34 35
static enum tag_type
tag_ape_name_parse(const char *name)
{
36
	enum tag_type type = tag_table_lookup_i(ape_tags, name);
37 38 39 40
	if (type == TAG_NUM_OF_ITEM_TYPES)
		type = tag_name_parse_i(name);

	return type;
41 42
}

43 44 45 46
/**
 * @return true if the item was recognized
 */
static bool
47 48 49
tag_ape_import_item(unsigned long flags,
		    const char *key, const char *value, size_t value_length,
		    const struct tag_handler *handler, void *handler_ctx)
50 51 52
{
	/* we only care about utf-8 text tags */
	if ((flags & (0x3 << 1)) != 0)
53
		return false;
54

55 56
	tag_handler_invoke_pair(handler, handler_ctx, key, value);

57
	enum tag_type type = tag_ape_name_parse(key);
58
	if (type == TAG_NUM_OF_ITEM_TYPES)
59
		return false;
60

61
	bool recognized = false;
62 63 64 65 66
	const char *end = value + value_length;
	while (true) {
		/* multiple values are separated by null bytes */
		const char *n = memchr(value, 0, end - value);
		if (n != NULL) {
67
			if (n > value) {
68 69
				tag_handler_invoke_tag(handler, handler_ctx,
						       type, value);
70 71 72
				recognized = true;
			}

73 74
			value = n + 1;
		} else {
75 76 77 78
			char *p = g_strndup(value, end - value);
			tag_handler_invoke_tag(handler, handler_ctx,
					       type, p);
			g_free(p);
79
			recognized = true;
80 81 82
			break;
		}
	}
83 84

	return recognized;
85 86
}

87
struct tag_ape_ctx {
88 89
	const struct tag_handler *handler;
	void *handler_ctx;
90 91

	bool recognized;
92
};
93

94 95 96 97 98
static bool
tag_ape_callback(unsigned long flags, const char *key,
		 const char *value, size_t value_length, void *_ctx)
{
	struct tag_ape_ctx *ctx = _ctx;
99

100 101
	ctx->recognized |= tag_ape_import_item(flags, key, value, value_length,
					       ctx->handler, ctx->handler_ctx);
102 103
	return true;
}
104

105 106 107 108 109 110 111
bool
tag_ape_scan2(const char *path_fs,
	      const struct tag_handler *handler, void *handler_ctx)
{
	struct tag_ape_ctx ctx = {
		.handler = handler,
		.handler_ctx = handler_ctx,
112
		.recognized = false,
113 114
	};

115 116
	return tag_ape_scan(path_fs, tag_ape_callback, &ctx) &&
		ctx.recognized;
117
}