2009-02-28 16:44:41 +01:00
|
|
|
/*
|
2015-01-01 19:48:13 +01:00
|
|
|
* Copyright (C) 2003-2015 The Music Player Daemon Project
|
2009-02-28 16:44:41 +01:00
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2009-02-28 16:44:41 +01:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-07-28 20:31:27 +02:00
|
|
|
#include "ApeTag.hxx"
|
|
|
|
#include "ApeLoader.hxx"
|
2013-07-30 20:11:57 +02:00
|
|
|
#include "Tag.hxx"
|
2013-07-29 07:37:52 +02:00
|
|
|
#include "TagTable.hxx"
|
2013-07-29 07:32:36 +02:00
|
|
|
#include "TagHandler.hxx"
|
2013-10-26 15:14:54 +02:00
|
|
|
#include "fs/Path.hxx"
|
2015-09-30 22:03:01 +02:00
|
|
|
#include "util/StringView.hxx"
|
2009-02-28 16:44:41 +01:00
|
|
|
|
2013-10-15 22:25:32 +02:00
|
|
|
#include <string>
|
2013-09-04 23:53:50 +02:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
2012-09-25 09:37:16 +02:00
|
|
|
const struct tag_table ape_tags[] = {
|
2012-02-11 10:34:21 +01:00
|
|
|
{ "year", TAG_DATE },
|
2013-07-28 20:31:27 +02:00
|
|
|
{ nullptr, TAG_NUM_OF_ITEM_TYPES }
|
2009-07-19 17:59:35 +02:00
|
|
|
};
|
|
|
|
|
2013-10-20 13:32:59 +02:00
|
|
|
static TagType
|
2010-05-31 08:22:53 +02:00
|
|
|
tag_ape_name_parse(const char *name)
|
|
|
|
{
|
2013-10-20 13:32:59 +02:00
|
|
|
TagType type = tag_table_lookup_i(ape_tags, name);
|
2010-05-31 08:24:05 +02:00
|
|
|
if (type == TAG_NUM_OF_ITEM_TYPES)
|
|
|
|
type = tag_name_parse_i(name);
|
|
|
|
|
|
|
|
return type;
|
2010-05-31 08:22:53 +02:00
|
|
|
}
|
|
|
|
|
2013-10-26 15:57:09 +02:00
|
|
|
/**
|
|
|
|
* Invoke the given callback for each string inside the given range.
|
|
|
|
* The strings are separated by null bytes, but the last one may not
|
|
|
|
* be terminated.
|
|
|
|
*/
|
|
|
|
template<typename C>
|
|
|
|
static void
|
|
|
|
ForEachValue(const char *value, const char *end, C &&callback)
|
|
|
|
{
|
|
|
|
while (true) {
|
|
|
|
const char *n = (const char *)memchr(value, 0, end - value);
|
|
|
|
if (n == nullptr)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (n > value)
|
|
|
|
callback(value);
|
|
|
|
|
|
|
|
value = n + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (value < end) {
|
|
|
|
const std::string value2(value, end);
|
|
|
|
callback(value2.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-29 18:44:03 +02:00
|
|
|
/**
|
|
|
|
* @return true if the item was recognized
|
|
|
|
*/
|
|
|
|
static bool
|
2012-02-11 19:12:02 +01:00
|
|
|
tag_ape_import_item(unsigned long flags,
|
2015-09-30 22:03:01 +02:00
|
|
|
const char *key, StringView value,
|
2012-02-11 19:12:02 +01:00
|
|
|
const struct tag_handler *handler, void *handler_ctx)
|
2009-07-19 17:59:36 +02:00
|
|
|
{
|
|
|
|
/* we only care about utf-8 text tags */
|
|
|
|
if ((flags & (0x3 << 1)) != 0)
|
2012-07-29 18:44:03 +02:00
|
|
|
return false;
|
2009-07-19 17:59:36 +02:00
|
|
|
|
2015-09-30 22:03:01 +02:00
|
|
|
const auto begin = value.begin();
|
|
|
|
const auto end = value.end();
|
2013-10-26 16:00:05 +02:00
|
|
|
|
|
|
|
if (handler->pair != nullptr)
|
2015-09-30 22:03:01 +02:00
|
|
|
ForEachValue(begin, end, [handler, handler_ctx,
|
2013-10-26 16:00:05 +02:00
|
|
|
key](const char *_value) {
|
|
|
|
handler->pair(key, _value, handler_ctx);
|
|
|
|
});
|
2012-02-11 19:24:51 +01:00
|
|
|
|
2013-10-20 13:32:59 +02:00
|
|
|
TagType type = tag_ape_name_parse(key);
|
2010-05-30 22:39:09 +02:00
|
|
|
if (type == TAG_NUM_OF_ITEM_TYPES)
|
2012-07-29 18:44:03 +02:00
|
|
|
return false;
|
2010-11-24 08:59:04 +01:00
|
|
|
|
2015-09-30 22:03:01 +02:00
|
|
|
ForEachValue(begin, end, [handler, handler_ctx,
|
|
|
|
type](const char *_value) {
|
2012-02-11 19:12:02 +01:00
|
|
|
tag_handler_invoke_tag(handler, handler_ctx,
|
2013-10-26 15:57:09 +02:00
|
|
|
type, _value);
|
|
|
|
});
|
2012-07-29 18:44:03 +02:00
|
|
|
|
2013-10-26 15:52:49 +02:00
|
|
|
return true;
|
2009-07-19 17:59:36 +02:00
|
|
|
}
|
|
|
|
|
2012-02-11 19:12:02 +01:00
|
|
|
bool
|
2013-10-26 15:14:54 +02:00
|
|
|
tag_ape_scan2(Path path_fs,
|
2012-02-11 19:12:02 +01:00
|
|
|
const struct tag_handler *handler, void *handler_ctx)
|
|
|
|
{
|
2013-07-28 20:31:27 +02:00
|
|
|
bool recognized = false;
|
|
|
|
|
|
|
|
auto callback = [handler, handler_ctx, &recognized]
|
|
|
|
(unsigned long flags, const char *key,
|
2015-09-30 22:03:01 +02:00
|
|
|
StringView value) {
|
2013-07-28 20:31:27 +02:00
|
|
|
recognized |= tag_ape_import_item(flags, key, value,
|
|
|
|
handler, handler_ctx);
|
|
|
|
return true;
|
2012-02-11 19:12:02 +01:00
|
|
|
};
|
|
|
|
|
2013-07-28 20:31:27 +02:00
|
|
|
return tag_ape_scan(path_fs, callback) && recognized;
|
2012-02-11 19:12:02 +01:00
|
|
|
}
|