mpd/src/IcyMetaDataParser.cxx

282 lines
5.4 KiB
C++
Raw Normal View History

/*
2019-06-17 11:17:30 +02:00
* Copyright 2003-2019 The Music Player Daemon Project
* 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
2013-01-10 22:33:16 +01:00
#include "IcyMetaDataParser.hxx"
2017-02-08 08:26:58 +01:00
#include "tag/Builder.hxx"
#include "util/AllocatedString.hxx"
2015-09-30 22:03:01 +02:00
#include "util/StringView.hxx"
2019-07-05 09:59:00 +02:00
#include <algorithm>
#include <assert.h>
#include <string.h>
#ifdef HAVE_ICU_CONVERTER
void
IcyMetaDataParser::SetCharset(const char *charset)
{
icu_converter = IcuConverter::Create(charset);
}
#endif
void
2017-12-20 15:05:14 +01:00
IcyMetaDataParser::Reset() noexcept
{
2013-01-10 22:33:16 +01:00
if (!IsDefined())
return;
2013-01-10 22:33:16 +01:00
if (data_rest == 0 && meta_size > 0)
delete[] meta_data;
tag.reset();
2013-01-10 22:33:16 +01:00
data_rest = data_size;
meta_size = 0;
}
size_t
2017-12-20 15:05:14 +01:00
IcyMetaDataParser::Data(size_t length) noexcept
{
assert(length > 0);
2013-01-10 22:33:16 +01:00
if (!IsDefined())
return length;
2013-01-10 22:33:16 +01:00
if (data_rest == 0)
return 0;
2013-01-10 22:33:16 +01:00
if (length >= data_rest) {
length = data_rest;
data_rest = 0;
} else
2013-01-10 22:33:16 +01:00
data_rest -= length;
return length;
}
static void
icy_add_item(TagBuilder &tag, TagType type, StringView value) noexcept
{
if (value.size >= 2 && value.front() == '\'' && value.back() == '\'') {
/* strip the single quotes */
++value.data;
value.size -= 2;
}
if (value.size > 0)
tag.AddItem(type, value);
}
static void
2017-12-20 15:05:14 +01:00
icy_parse_tag_item(TagBuilder &tag,
#ifdef HAVE_ICU_CONVERTER
const IcuConverter *icu_converter,
#endif
2017-12-20 15:05:14 +01:00
const char *name, const char *value) noexcept
{
if (strcmp(name, "StreamTitle") == 0) {
#ifdef HAVE_ICU_CONVERTER
if (icu_converter != nullptr) {
try {
icy_add_item(tag, TAG_TITLE,
icu_converter->ToUTF8(value).c_str());
} catch (...) {
}
return;
}
#endif
icy_add_item(tag, TAG_TITLE, value);
}
}
/**
* Find a single quote that is followed by a semicolon (or by the end
* of the string). If that fails, return the first single quote. If
* that also fails, return #end.
*/
static char *
2017-12-20 15:05:14 +01:00
find_end_quote(char *p, char *const end) noexcept
{
char *fallback = std::find(p, end, '\'');
if (fallback >= end - 1 || fallback[1] == ';')
return fallback;
p = fallback + 1;
while (true) {
p = std::find(p, end, '\'');
if (p == end)
return fallback;
if (p == end - 1 || p[1] == ';')
return p;
++p;
}
}
static std::unique_ptr<Tag>
icy_parse_tag(
#ifdef HAVE_ICU_CONVERTER
const IcuConverter *icu_converter,
#endif
char *p, char *const end) noexcept
{
assert(p != nullptr);
assert(end != nullptr);
assert(p <= end);
TagBuilder tag;
while (p != end) {
const char *const name = p;
char *eq = std::find(p, end, '=');
if (eq == end)
break;
*eq = 0;
p = eq + 1;
if (*p != '\'') {
/* syntax error; skip to the next semicolon,
try to recover */
char *semicolon = std::find(p, end, ';');
if (semicolon == end)
break;
p = semicolon + 1;
continue;
}
++p;
const char *const value = p;
char *quote = find_end_quote(p, end);
if (quote == end)
break;
*quote = 0;
p = quote + 1;
icy_parse_tag_item(tag,
#ifdef HAVE_ICU_CONVERTER
icu_converter,
#endif
name, value);
char *semicolon = std::find(p, end, ';');
if (semicolon == end)
break;
p = semicolon + 1;
}
return tag.CommitNew();
}
size_t
2017-12-20 15:05:14 +01:00
IcyMetaDataParser::Meta(const void *data, size_t length) noexcept
{
2013-01-10 22:33:16 +01:00
const unsigned char *p = (const unsigned char *)data;
2013-01-10 22:33:16 +01:00
assert(IsDefined());
assert(data_rest == 0);
assert(length > 0);
2013-01-10 22:33:16 +01:00
if (meta_size == 0) {
/* read meta_size from the first byte of a meta
block */
2013-01-10 22:33:16 +01:00
meta_size = *p++ * 16;
if (meta_size == 0) {
/* special case: no metadata */
2013-01-10 22:33:16 +01:00
data_rest = data_size;
return 1;
}
/* 1 byte was consumed (must be re-added later for the
return value */
--length;
/* initialize metadata reader, allocate enough
memory (+1 for the null terminator) */
2013-01-10 22:33:16 +01:00
meta_position = 0;
meta_data = new char[meta_size + 1];
}
2013-01-10 22:33:16 +01:00
assert(meta_position < meta_size);
2013-01-10 22:33:16 +01:00
if (length > meta_size - meta_position)
length = meta_size - meta_position;
2013-01-10 22:33:16 +01:00
memcpy(meta_data + meta_position, p, length);
meta_position += length;
if (p != data)
/* re-add the first byte (which contained meta_size) */
++length;
2013-01-10 22:33:16 +01:00
if (meta_position == meta_size) {
/* parse */
tag = icy_parse_tag(
#ifdef HAVE_ICU_CONVERTER
icu_converter.get(),
#endif
meta_data, meta_data + meta_size);
delete[] meta_data;
/* change back to normal data mode */
2013-01-10 22:33:16 +01:00
meta_size = 0;
data_rest = data_size;
}
return length;
}
size_t
2017-12-20 15:05:14 +01:00
IcyMetaDataParser::ParseInPlace(void *data, size_t length) noexcept
{
uint8_t *const dest0 = (uint8_t *)data;
uint8_t *dest = dest0;
const uint8_t *src = dest0;
while (length > 0) {
size_t chunk = Data(length);
if (chunk > 0) {
memmove(dest, src, chunk);
dest += chunk;
src += chunk;
length -= chunk;
if (length == 0)
break;
}
chunk = Meta(src, length);
if (chunk > 0) {
src += chunk;
length -= chunk;
}
}
return dest - dest0;
}