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-01-25 10:29:42 +01:00
|
|
|
#include "../Wrapper.hxx"
|
2013-08-07 10:31:31 +02:00
|
|
|
#include "system/fd_util.h"
|
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-01-25 10:33:38 +01:00
|
|
|
class SolarisOutput {
|
|
|
|
friend struct AudioOutputWrapper<SolarisOutput>;
|
|
|
|
|
2014-01-28 11:34:09 +01:00
|
|
|
AudioOutput base;
|
2011-09-16 23:31:48 +02:00
|
|
|
|
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
|
|
|
|
|
|
|
int fd;
|
2013-04-17 01:08:35 +02:00
|
|
|
|
2016-11-09 11:18:19 +01:00
|
|
|
explicit SolarisOutput(const ConfigBlock &block)
|
|
|
|
:base(solaris_output_plugin, block),
|
|
|
|
device(block.GetBlockValue("device", "/dev/audio")) {}
|
2017-01-25 10:29:42 +01:00
|
|
|
|
2017-01-25 10:33:38 +01:00
|
|
|
public:
|
2017-01-25 09:47:43 +01:00
|
|
|
static SolarisOutput *Create(EventLoop &, const ConfigBlock &block) {
|
2017-01-25 10:29:42 +01:00
|
|
|
return new SolarisOutput(block);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Open(AudioFormat &audio_format);
|
|
|
|
void Close();
|
|
|
|
|
|
|
|
size_t Play(const void *chunk, size_t size);
|
|
|
|
void Cancel();
|
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;
|
|
|
|
int ret, flags;
|
|
|
|
|
|
|
|
/* 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-01-25 10:29:42 +01:00
|
|
|
fd = open_cloexec(device, O_WRONLY|O_NONBLOCK, 0);
|
|
|
|
if (fd < 0)
|
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-01-25 10:29:42 +01:00
|
|
|
flags = fcntl(fd, F_GETFL);
|
2009-03-16 09:55:10 +01:00
|
|
|
if (flags > 0 && (flags & O_NONBLOCK) != 0)
|
2017-01-25 10:29:42 +01:00
|
|
|
fcntl(fd, F_SETFL, flags & ~O_NONBLOCK);
|
2009-03-16 09:55:10 +01:00
|
|
|
|
|
|
|
/* configure the audio device */
|
|
|
|
|
2017-01-25 10:29:42 +01:00
|
|
|
ret = ioctl(fd, 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-01-25 10:29:42 +01:00
|
|
|
close(fd);
|
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-01-25 10:29:42 +01:00
|
|
|
ret = ioctl(fd, 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-01-25 10:29:42 +01:00
|
|
|
close(fd);
|
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
|
|
|
|
SolarisOutput::Close()
|
2009-03-16 09:55:10 +01:00
|
|
|
{
|
2017-01-25 10:29:42 +01:00
|
|
|
close(fd);
|
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-01-25 10:29:42 +01:00
|
|
|
ssize_t nbytes = write(fd, 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
|
|
|
|
SolarisOutput::Cancel()
|
2009-03-16 09:55:10 +01:00
|
|
|
{
|
2017-01-25 10:29:42 +01:00
|
|
|
ioctl(fd, I_FLUSH);
|
2009-03-16 09:55:10 +01:00
|
|
|
}
|
|
|
|
|
2017-01-25 10:29:42 +01:00
|
|
|
typedef AudioOutputWrapper<SolarisOutput> Wrapper;
|
|
|
|
|
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-01-25 10:29:42 +01:00
|
|
|
&Wrapper::Init,
|
|
|
|
&Wrapper::Finish,
|
2013-04-17 01:08:35 +02:00
|
|
|
nullptr,
|
|
|
|
nullptr,
|
2017-01-25 10:29:42 +01:00
|
|
|
&Wrapper::Open,
|
|
|
|
&Wrapper::Close,
|
2013-04-17 01:08:35 +02:00
|
|
|
nullptr,
|
|
|
|
nullptr,
|
2017-01-25 10:29:42 +01:00
|
|
|
&Wrapper::Play,
|
2013-04-17 01:08:35 +02:00
|
|
|
nullptr,
|
2017-01-25 10:29:42 +01:00
|
|
|
&Wrapper::Cancel,
|
2013-04-17 01:08:35 +02:00
|
|
|
nullptr,
|
|
|
|
nullptr,
|
2009-03-16 09:55:10 +01:00
|
|
|
};
|