SndioOutputPlugin.cxx 4.17 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2017 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 * 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"
#include "SndioOutputPlugin.hxx"
#include "../OutputAPI.hxx"
#include "../Wrapper.hxx"
#include "util/Domain.hxx"
#include "Log.hxx"

27 28 29 30 31
/* work around a C++ incompatibility if the sndio API is emulated by
   libroar: libroar's "struct roar_service_stream" has a member named
   "new", which is an illegal identifier in C++ */
#define new new_

32 33
#include <sndio.h>

34 35 36
/* undo the libroar workaround */
#undef new

37 38
#include <stdexcept>

39 40 41 42 43
#ifndef SIO_DEVANY
/* this macro is missing in libroar-dev 1.0~beta2-3 (Debian Wheezy) */
#define SIO_DEVANY "default"
#endif

44 45
static constexpr unsigned MPD_SNDIO_BUFFER_TIME_MS = 250;

46 47
static constexpr Domain sndio_output_domain("sndio_output");

48 49 50
class SndioOutput {
	friend struct AudioOutputWrapper<SndioOutput>;
	AudioOutput base;
51 52
	const char *const device;
	const unsigned buffer_time; /* in ms */
53
	struct sio_hdl *hdl;
54 55

public:
56
	SndioOutput(const ConfigBlock &block);
57

58
	static SndioOutput *Create(const ConfigBlock &block);
59

60
	void Open(AudioFormat &audio_format);
61
	void Close();
62
	size_t Play(const void *chunk, size_t size);
63 64 65
	void Cancel();
};

66 67 68 69 70
SndioOutput::SndioOutput(const ConfigBlock &block)
	:base(sndio_output_plugin, block),
	 device(block.GetBlockValue("device", SIO_DEVANY)),
	 buffer_time(block.GetBlockValue("buffer_time",
					 MPD_SNDIO_BUFFER_TIME_MS))
71 72 73 74
{
}

SndioOutput *
75
SndioOutput::Create(const ConfigBlock &block)
76
{
77
	return new SndioOutput(block);
78 79
}

80 81 82
static bool
sndio_test_default_device()
{
83 84
	auto *hdl = sio_open(SIO_DEVANY, SIO_PLAY, 0);
	if (!hdl) {
85
		FormatError(sndio_output_domain,
86
			    "Error opening default sndio device");
87 88 89
		return false;
	}

90
	sio_close(hdl);
91 92 93
	return true;
}

94 95
void
SndioOutput::Open(AudioFormat &audio_format)
96 97 98 99
{
	struct sio_par par;
	unsigned bits, rate, chans;

100 101
	hdl = sio_open(device, SIO_PLAY, 0);
	if (!hdl)
102
		throw std::runtime_error("Failed to open default sndio device");
103 104 105 106 107

	switch (audio_format.format) {
	case SampleFormat::S16:
		bits = 16;
		break;
108 109 110
	case SampleFormat::S24_P32:
		bits = 24;
		break;
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
	case SampleFormat::S32:
		bits = 32;
		break;
	default:
		audio_format.format = SampleFormat::S16;
		bits = 16;
		break;
	}

	rate = audio_format.sample_rate;
	chans = audio_format.channels;

	sio_initpar(&par);
	par.bits = bits;
	par.rate = rate;
	par.pchan = chans;
	par.sig = 1;
	par.le = SIO_LE_NATIVE;
129
	par.appbufsz = rate * buffer_time / 1000;
130

131 132 133
	if (!sio_setpar(hdl, &par) ||
	    !sio_getpar(hdl, &par)) {
		sio_close(hdl);
134
		throw std::runtime_error("Failed to set/get audio params");
135 136 137 138 139 140 141 142
	}

	if (par.bits != bits ||
	    par.rate < rate * 995 / 1000 ||
	    par.rate > rate * 1005 / 1000 ||
	    par.pchan != chans ||
	    par.sig != 1 ||
	    par.le != SIO_LE_NATIVE) {
143
		sio_close(hdl);
144
		throw std::runtime_error("Requested audio params cannot be satisfied");
145 146
	}

147 148
	if (!sio_start(hdl)) {
		sio_close(hdl);
149
		throw std::runtime_error("Failed to start audio device");
150 151 152 153 154 155
	}
}

void
SndioOutput::Close()
{
156
	sio_close(hdl);
157 158 159
}

size_t
160
SndioOutput::Play(const void *chunk, size_t size)
161
{
162
	size_t n;
163

164 165
	n = sio_write(hdl, chunk, size);
	if (n == 0 && sio_eof(hdl) != 0)
166
		throw std::runtime_error("sndio write failed");
167
	return n;
168 169 170 171 172 173
}

typedef AudioOutputWrapper<SndioOutput> Wrapper;

const struct AudioOutputPlugin sndio_output_plugin = {
	"sndio",
174
	sndio_test_default_device,
175 176 177 178 179 180
	&Wrapper::Init,
	&Wrapper::Finish,
	nullptr,
	nullptr,
	&Wrapper::Open,
	&Wrapper::Close,
181
	nullptr,
182 183 184
	nullptr,
	&Wrapper::Play,
	nullptr,
185
	nullptr,
186 187 188
	nullptr,
	nullptr,
};