FlacIOHandle.cxx 3 KB
Newer Older
1
/*
2
 * Copyright 2003-2016 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 * 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"
21
#include "FlacIOHandle.hxx"
22
#include "Log.hxx"
23
#include "Compiler.h"
24

25 26
#include <system_error>

27
#include <errno.h>
28
#include <stdio.h>
29 30

static size_t
31
FlacIORead(void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle)
32
{
33
	InputStream *is = (InputStream *)handle;
34 35 36 37 38 39 40 41

	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!) */

	while (p < end) {
42 43 44
		try {
			size_t nbytes = is->LockRead(p, end - p);
			if (nbytes == 0)
45 46 47
				/* end of file */
				break;

48 49 50 51 52 53 54 55 56 57 58 59 60 61
			p += nbytes;

#ifndef WIN32
		} catch (const std::system_error &e) {
			errno = e.code().category() == std::system_category()
				? e.code().value()
				/* just some random non-zero errno
				   value */
				: EINVAL;
			return 0;
#endif
		} catch (const std::runtime_error &) {
			/* just some random non-zero errno value */
			errno = EINVAL;
62 63 64 65 66 67 68 69 70 71 72
			return 0;
		}
	}

	/* libFLAC expects a clean errno after returning from the IO
	   callbacks (undocumented!) */
	errno = 0;
	return (p - p0) / size;
}

static int
73
FlacIOSeek(FLAC__IOHandle handle, FLAC__int64 _offset, int whence)
74
{
75
	InputStream *is = (InputStream *)handle;
76

77
	offset_type offset = _offset;
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
	switch (whence) {
	case SEEK_SET:
		break;

	case SEEK_CUR:
		offset += is->GetOffset();
		break;

	case SEEK_END:
		if (!is->KnownSize())
			return -1;

		offset += is->GetSize();
		break;

	default:
		return -1;
	}

97 98 99 100 101
	try {
		is->LockSeek(offset);
		return 0;
	} catch (const std::runtime_error &e) {
		LogError(e);
102 103
		return -1;
	}
104 105 106
}

static FLAC__int64
107
FlacIOTell(FLAC__IOHandle handle)
108
{
109
	InputStream *is = (InputStream *)handle;
110

111
	return is->GetOffset();
112 113 114
}

static int
115
FlacIOEof(FLAC__IOHandle handle)
116
{
117
	InputStream *is = (InputStream *)handle;
118

119
	return is->LockIsEOF();
120 121 122
}

static int
123
FlacIOClose(gcc_unused FLAC__IOHandle handle)
124 125
{
	/* no-op because the libFLAC caller is repsonsible for closing
126
	   the #InputStream */
127 128 129 130 131

	return 0;
}

const FLAC__IOCallbacks flac_io_callbacks = {
132
	FlacIORead,
133 134 135
	nullptr,
	nullptr,
	nullptr,
136 137
	FlacIOEof,
	FlacIOClose,
138 139 140
};

const FLAC__IOCallbacks flac_io_callbacks_seekable = {
141
	FlacIORead,
142
	nullptr,
143 144 145 146
	FlacIOSeek,
	FlacIOTell,
	FlacIOEof,
	FlacIOClose,
147
};