2012-06-16 13:46:42 +02:00
|
|
|
/*
|
2014-01-13 22:30:36 +01:00
|
|
|
* Copyright (C) 2003-2014 The Music Player Daemon Project
|
2012-06-16 13:46:42 +02: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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* \file
|
|
|
|
*
|
|
|
|
* This file contains functions used by the DSF and DSDIFF decoders.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2013-07-28 12:20:50 +02:00
|
|
|
#include "DsdLib.hxx"
|
2014-01-24 00:02:24 +01:00
|
|
|
#include "../DecoderAPI.hxx"
|
2014-01-24 16:18:21 +01:00
|
|
|
#include "input/InputStream.hxx"
|
2013-09-04 23:46:20 +02:00
|
|
|
#include "tag/TagId3.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2012-06-16 13:46:42 +02:00
|
|
|
|
2013-07-30 20:11:57 +02:00
|
|
|
#include <string.h>
|
2012-06-16 13:46:42 +02:00
|
|
|
|
2012-10-27 11:42:34 +02:00
|
|
|
#ifdef HAVE_ID3TAG
|
|
|
|
#include <id3tag.h>
|
|
|
|
#endif
|
|
|
|
|
2012-06-16 13:46:42 +02:00
|
|
|
bool
|
2013-10-28 23:12:48 +01:00
|
|
|
DsdId::Equals(const char *s) const
|
2012-06-16 13:46:42 +02:00
|
|
|
{
|
2013-07-28 12:20:50 +02:00
|
|
|
assert(s != nullptr);
|
2013-10-28 23:12:48 +01:00
|
|
|
assert(strlen(s) == sizeof(value));
|
2012-06-16 13:46:42 +02:00
|
|
|
|
2013-10-28 23:12:48 +01:00
|
|
|
return memcmp(value, s, sizeof(value)) == 0;
|
2012-06-16 13:46:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-10-23 22:08:59 +02:00
|
|
|
dsdlib_read(Decoder *decoder, InputStream &is,
|
2012-06-16 13:46:42 +02:00
|
|
|
void *data, size_t length)
|
|
|
|
{
|
|
|
|
size_t nbytes = decoder_read(decoder, is, data, length);
|
|
|
|
return nbytes == length;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Skip the #input_stream to the specified offset.
|
|
|
|
*/
|
|
|
|
bool
|
2013-10-23 22:08:59 +02:00
|
|
|
dsdlib_skip_to(Decoder *decoder, InputStream &is,
|
2013-10-17 09:43:55 +02:00
|
|
|
int64_t offset)
|
2012-06-16 13:46:42 +02:00
|
|
|
{
|
2013-10-23 22:08:59 +02:00
|
|
|
if (is.IsSeekable())
|
2014-05-22 10:10:16 +02:00
|
|
|
return is.Seek(offset, IgnoreError());
|
2012-06-16 13:46:42 +02:00
|
|
|
|
2013-10-23 22:08:59 +02:00
|
|
|
if (is.GetOffset() > offset)
|
2012-06-16 13:46:42 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
char buffer[8192];
|
2013-10-23 22:08:59 +02:00
|
|
|
while (is.GetOffset() < offset) {
|
2012-06-16 13:46:42 +02:00
|
|
|
size_t length = sizeof(buffer);
|
2013-10-23 22:08:59 +02:00
|
|
|
if (offset - is.GetOffset() < (int64_t)length)
|
|
|
|
length = offset - is.GetOffset();
|
2012-06-16 13:46:42 +02:00
|
|
|
|
|
|
|
size_t nbytes = decoder_read(decoder, is, buffer, length);
|
|
|
|
if (nbytes == 0)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-10-23 22:08:59 +02:00
|
|
|
assert(is.GetOffset() == offset);
|
2012-06-16 13:46:42 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Skip some bytes from the #input_stream.
|
|
|
|
*/
|
|
|
|
bool
|
2013-10-23 22:08:59 +02:00
|
|
|
dsdlib_skip(Decoder *decoder, InputStream &is,
|
2013-10-17 09:43:55 +02:00
|
|
|
int64_t delta)
|
2012-06-16 13:46:42 +02:00
|
|
|
{
|
|
|
|
assert(delta >= 0);
|
|
|
|
|
|
|
|
if (delta == 0)
|
|
|
|
return true;
|
|
|
|
|
2013-10-23 22:08:59 +02:00
|
|
|
if (is.IsSeekable())
|
2014-05-22 10:10:16 +02:00
|
|
|
return is.Seek(is.GetOffset() + delta, IgnoreError());
|
2012-06-16 13:46:42 +02:00
|
|
|
|
|
|
|
char buffer[8192];
|
|
|
|
while (delta > 0) {
|
|
|
|
size_t length = sizeof(buffer);
|
2013-10-17 09:43:55 +02:00
|
|
|
if ((int64_t)length > delta)
|
2012-06-16 13:46:42 +02:00
|
|
|
length = delta;
|
|
|
|
|
|
|
|
size_t nbytes = decoder_read(decoder, is, buffer, length);
|
|
|
|
if (nbytes == 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
delta -= nbytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-10-27 11:42:34 +02:00
|
|
|
#ifdef HAVE_ID3TAG
|
|
|
|
void
|
2013-10-23 22:08:59 +02:00
|
|
|
dsdlib_tag_id3(InputStream &is,
|
2012-10-27 11:42:34 +02:00
|
|
|
const struct tag_handler *handler,
|
2013-10-17 09:43:55 +02:00
|
|
|
void *handler_ctx, int64_t tagoffset)
|
2012-10-27 11:42:34 +02:00
|
|
|
{
|
|
|
|
assert(tagoffset >= 0);
|
|
|
|
|
|
|
|
if (tagoffset == 0)
|
|
|
|
return;
|
|
|
|
|
2013-07-28 12:20:50 +02:00
|
|
|
if (!dsdlib_skip_to(nullptr, is, tagoffset))
|
2012-10-27 11:42:34 +02:00
|
|
|
return;
|
|
|
|
|
2013-07-28 12:20:50 +02:00
|
|
|
struct id3_tag *id3_tag = nullptr;
|
2012-10-27 11:42:34 +02:00
|
|
|
id3_length_t count;
|
|
|
|
|
|
|
|
/* Prevent broken files causing problems */
|
2013-10-23 22:08:59 +02:00
|
|
|
const auto size = is.GetSize();
|
|
|
|
const auto offset = is.GetOffset();
|
2013-01-24 19:14:40 +01:00
|
|
|
if (offset >= size)
|
2012-10-27 11:42:34 +02:00
|
|
|
return;
|
|
|
|
|
2013-01-24 19:14:40 +01:00
|
|
|
count = size - offset;
|
2012-10-27 11:42:34 +02:00
|
|
|
|
|
|
|
/* Check and limit id3 tag size to prevent a stack overflow */
|
|
|
|
if (count == 0 || count > 4096)
|
|
|
|
return;
|
|
|
|
|
|
|
|
id3_byte_t dsdid3[count];
|
|
|
|
id3_byte_t *dsdid3data;
|
|
|
|
dsdid3data = dsdid3;
|
|
|
|
|
2013-07-28 12:20:50 +02:00
|
|
|
if (!dsdlib_read(nullptr, is, dsdid3data, count))
|
2012-10-27 11:42:34 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
id3_tag = id3_tag_parse(dsdid3data, count);
|
2013-07-28 12:20:50 +02:00
|
|
|
if (id3_tag == nullptr)
|
2012-10-27 11:42:34 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
scan_id3_tag(id3_tag, handler, handler_ctx);
|
|
|
|
|
|
|
|
id3_tag_delete(id3_tag);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|