2009-03-16 09:55:10 +01:00
|
|
|
/*
|
2017-01-03 20:48:59 +01:00
|
|
|
* Copyright 2003-2017 The Music Player Daemon Project
|
2009-03-16 09:55:10 +01: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.
|
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-04-17 01:08:35 +02:00
|
|
|
#include "SolarisOutputPlugin.hxx"
|
2014-01-23 23:49:50 +01:00
|
|
|
#include "../OutputAPI.hxx"
|
2017-08-10 08:56:56 +02:00
|
|
|
#include "system/FileDescriptor.hxx"
|
2016-11-09 11:18:19 +01:00
|
|
|
#include "system/Error.hxx"
|
2009-03-16 09:55:10 +01:00
|
|
|
|
|
|
|
#include <sys/stropts.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2011-09-19 07:39:27 +02:00
|
|
|
#ifdef __sun
|
|
|
|
#include <sys/audio.h>
|
|
|
|
#else
|
|
|
|
|
|
|
|
/* some fake declarations that allow build this plugin on systems
|
|
|
|
other than Solaris, just to see if it compiles */
|
|
|
|
|
|
|
|
#define AUDIO_GETINFO 0
|
|
|
|
#define AUDIO_SETINFO 0
|
|
|
|
#define AUDIO_ENCODING_LINEAR 0
|
|
|
|
|
|
|
|
struct audio_info {
|
|
|
|
struct {
|
|
|
|
unsigned sample_rate, channels, precision, encoding;
|
|
|
|
} play;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2017-08-09 16:58:44 +02:00
|
|
|
class SolarisOutput final : AudioOutput {
|
2009-03-16 09:55:10 +01:00
|
|
|
/* configuration */
|
2016-11-09 11:18:19 +01:00
|
|
|
const char *const device;
|
2009-03-16 09:55:10 +01:00
|
|
|
|
2017-08-10 08:56:56 +02:00
|
|
|
FileDescriptor fd;
|
2013-04-17 01:08:35 +02:00
|
|
|
|
2016-11-09 11:18:19 +01:00
|
|
|
explicit SolarisOutput(const ConfigBlock &block)
|
2017-08-09 16:58:44 +02:00
|
|
|
:AudioOutput(0),
|
2016-11-09 11:18:19 +01:00
|
|
|
device(block.GetBlockValue("device", "/dev/audio")) {}
|
2017-01-25 10:29:42 +01:00
|
|
|
|
2017-01-25 10:33:38 +01:00
|
|
|
public:
|
2017-08-09 16:58:44 +02:00
|
|
|
static AudioOutput *Create(EventLoop &, const ConfigBlock &block) {
|
2017-01-25 10:29:42 +01:00
|
|
|
return new SolarisOutput(block);
|
|
|
|
}
|
|
|
|
|
2017-08-09 16:58:44 +02:00
|
|
|
private:
|
|
|
|
void Open(AudioFormat &audio_format) override;
|
|
|
|
void Close() noexcept override;
|
2017-01-25 10:29:42 +01:00
|
|
|
|
2017-08-09 16:58:44 +02:00
|
|
|
size_t Play(const void *chunk, size_t size) override;
|
|
|
|
void Cancel() noexcept override;
|
2009-03-16 09:55:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static bool
|
|
|
|
solaris_output_test_default_device(void)
|
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
return stat("/dev/audio", &st) == 0 && S_ISCHR(st.st_mode) &&
|
|
|
|
access("/dev/audio", W_OK) == 0;
|
|
|
|
}
|
|
|
|
|
2017-01-25 10:29:42 +01:00
|
|
|
void
|
|
|
|
SolarisOutput::Open(AudioFormat &audio_format)
|
2009-03-16 09:55:10 +01:00
|
|
|
{
|
|
|
|
struct audio_info info;
|
2017-08-10 08:56:56 +02:00
|
|
|
int ret;
|
2009-03-16 09:55:10 +01:00
|
|
|
|
|
|
|
/* support only 16 bit mono/stereo for now; nothing else has
|
|
|
|
been tested */
|
2013-08-03 21:00:50 +02:00
|
|
|
audio_format.format = SampleFormat::S16;
|
2009-03-16 09:55:10 +01:00
|
|
|
|
|
|
|
/* open the device in non-blocking mode */
|
|
|
|
|
2017-08-10 08:56:56 +02:00
|
|
|
if (!fd.Open(device, O_WRONLY|O_NONBLOCK))
|
2016-11-09 11:18:19 +01:00
|
|
|
throw FormatErrno("Failed to open %s",
|
2017-01-25 10:29:42 +01:00
|
|
|
device);
|
2009-03-16 09:55:10 +01:00
|
|
|
|
|
|
|
/* restore blocking mode */
|
|
|
|
|
2017-08-10 08:56:56 +02:00
|
|
|
fd.SetBlocking();
|
2009-03-16 09:55:10 +01:00
|
|
|
|
|
|
|
/* configure the audio device */
|
|
|
|
|
2017-08-10 08:56:56 +02:00
|
|
|
ret = ioctl(fd.Get(), AUDIO_GETINFO, &info);
|
2009-03-16 09:55:10 +01:00
|
|
|
if (ret < 0) {
|
2016-11-09 11:18:19 +01:00
|
|
|
const int e = errno;
|
2017-08-10 08:56:56 +02:00
|
|
|
fd.Close();
|
2016-11-09 11:18:19 +01:00
|
|
|
throw MakeErrno(e, "AUDIO_GETINFO failed");
|
2009-03-16 09:55:10 +01:00
|
|
|
}
|
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
info.play.sample_rate = audio_format.sample_rate;
|
|
|
|
info.play.channels = audio_format.channels;
|
2009-11-10 17:11:34 +01:00
|
|
|
info.play.precision = 16;
|
2009-03-16 09:55:10 +01:00
|
|
|
info.play.encoding = AUDIO_ENCODING_LINEAR;
|
|
|
|
|
2017-08-10 08:56:56 +02:00
|
|
|
ret = ioctl(fd.Get(), AUDIO_SETINFO, &info);
|
2009-03-16 09:55:10 +01:00
|
|
|
if (ret < 0) {
|
2016-11-09 11:18:19 +01:00
|
|
|
const int e = errno;
|
2017-08-10 08:56:56 +02:00
|
|
|
fd.Close();
|
2016-11-09 11:18:19 +01:00
|
|
|
throw MakeErrno(e, "AUDIO_SETINFO failed");
|
2009-03-16 09:55:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-25 10:29:42 +01:00
|
|
|
void
|
2017-08-09 16:58:44 +02:00
|
|
|
SolarisOutput::Close() noexcept
|
2009-03-16 09:55:10 +01:00
|
|
|
{
|
2017-08-10 08:56:56 +02:00
|
|
|
fd.Close();
|
2009-03-16 09:55:10 +01:00
|
|
|
}
|
|
|
|
|
2017-01-25 10:29:42 +01:00
|
|
|
size_t
|
|
|
|
SolarisOutput::Play(const void *chunk, size_t size)
|
2009-03-16 09:55:10 +01:00
|
|
|
{
|
2017-08-10 08:56:56 +02:00
|
|
|
ssize_t nbytes = fd.Write(chunk, size);
|
2016-11-09 11:18:19 +01:00
|
|
|
if (nbytes <= 0)
|
|
|
|
throw MakeErrno("Write failed");
|
2009-03-16 09:55:10 +01:00
|
|
|
|
|
|
|
return nbytes;
|
|
|
|
}
|
|
|
|
|
2017-01-25 10:29:42 +01:00
|
|
|
void
|
2017-08-09 16:58:44 +02:00
|
|
|
SolarisOutput::Cancel() noexcept
|
2009-03-16 09:55:10 +01:00
|
|
|
{
|
2017-08-10 08:56:56 +02:00
|
|
|
ioctl(fd.Get(), I_FLUSH);
|
2009-03-16 09:55:10 +01:00
|
|
|
}
|
|
|
|
|
2014-01-28 11:22:27 +01:00
|
|
|
const struct AudioOutputPlugin solaris_output_plugin = {
|
2013-04-17 01:08:35 +02:00
|
|
|
"solaris",
|
|
|
|
solaris_output_test_default_device,
|
2017-08-09 16:58:44 +02:00
|
|
|
&SolarisOutput::Create,
|
2013-04-17 01:08:35 +02:00
|
|
|
nullptr,
|
2009-03-16 09:55:10 +01:00
|
|
|
};
|