2012-10-04 07:09:31 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2003-2012 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2013-05-05 14:19:04 +02:00
|
|
|
#include "FlacIOHandle.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2013-10-15 09:21:13 +02:00
|
|
|
#include "Compiler.h"
|
2012-10-04 07:09:31 +02:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
static size_t
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacIORead(void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle)
|
2012-10-04 07:09:31 +02:00
|
|
|
{
|
|
|
|
input_stream *is = (input_stream *)handle;
|
|
|
|
|
|
|
|
uint8_t *const p0 = (uint8_t *)ptr, *p = p0,
|
|
|
|
*const end = p0 + size * nmemb;
|
|
|
|
|
|
|
|
/* libFLAC is very picky about short reads, and expects the IO
|
|
|
|
callback to fill the whole buffer (undocumented!) */
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
2012-10-04 07:09:31 +02:00
|
|
|
while (p < end) {
|
2013-09-05 00:06:31 +02:00
|
|
|
size_t nbytes = is->LockRead(p, end - p, error);
|
2012-10-04 07:09:31 +02:00
|
|
|
if (nbytes == 0) {
|
2013-08-10 18:02:44 +02:00
|
|
|
if (!error.IsDefined())
|
2012-10-04 07:09:31 +02:00
|
|
|
/* end of file */
|
|
|
|
break;
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
if (error.IsDomain(errno_domain))
|
|
|
|
errno = error.GetCode();
|
2012-10-04 07:09:31 +02:00
|
|
|
else
|
|
|
|
/* just some random non-zero
|
|
|
|
errno value */
|
|
|
|
errno = EINVAL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
p += nbytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* libFLAC expects a clean errno after returning from the IO
|
|
|
|
callbacks (undocumented!) */
|
|
|
|
errno = 0;
|
|
|
|
return (p - p0) / size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacIOSeek(FLAC__IOHandle handle, FLAC__int64 offset, int whence)
|
2012-10-04 07:09:31 +02:00
|
|
|
{
|
|
|
|
input_stream *is = (input_stream *)handle;
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
2013-09-05 00:06:31 +02:00
|
|
|
return is->LockSeek(offset, whence, error) ? 0 : -1;
|
2012-10-04 07:09:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static FLAC__int64
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacIOTell(FLAC__IOHandle handle)
|
2012-10-04 07:09:31 +02:00
|
|
|
{
|
|
|
|
input_stream *is = (input_stream *)handle;
|
|
|
|
|
|
|
|
return is->offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacIOEof(FLAC__IOHandle handle)
|
2012-10-04 07:09:31 +02:00
|
|
|
{
|
|
|
|
input_stream *is = (input_stream *)handle;
|
|
|
|
|
2013-09-05 00:06:31 +02:00
|
|
|
return is->LockIsEOF();
|
2012-10-04 07:09:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacIOClose(gcc_unused FLAC__IOHandle handle)
|
2012-10-04 07:09:31 +02:00
|
|
|
{
|
|
|
|
/* no-op because the libFLAC caller is repsonsible for closing
|
|
|
|
the #input_stream */
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const FLAC__IOCallbacks flac_io_callbacks = {
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacIORead,
|
2012-10-04 07:09:31 +02:00
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacIOEof,
|
|
|
|
FlacIOClose,
|
2012-10-04 07:09:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const FLAC__IOCallbacks flac_io_callbacks_seekable = {
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacIORead,
|
2012-10-04 07:09:31 +02:00
|
|
|
nullptr,
|
2013-05-05 14:19:04 +02:00
|
|
|
FlacIOSeek,
|
|
|
|
FlacIOTell,
|
|
|
|
FlacIOEof,
|
|
|
|
FlacIOClose,
|
2012-10-04 07:09:31 +02:00
|
|
|
};
|