openal-soft/Alc/backends/solaris.cpp

302 lines
8.0 KiB
C++
Raw Normal View History

2008-09-07 14:34:14 -07:00
/**
* OpenAL cross platform audio library
* Copyright (C) 1999-2007 by authors.
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2008-09-07 14:34:14 -07:00
* Or go to http://www.gnu.org/copyleft/lgpl.html
*/
#include "config.h"
2018-11-15 22:23:29 -08:00
#include "backends/solaris.h"
2008-09-07 14:34:14 -07:00
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/time.h>
2008-09-07 14:34:14 -07:00
#include <sys/stat.h>
#include <fcntl.h>
#include <stdlib.h>
#include <stdio.h>
#include <memory.h>
#include <unistd.h>
#include <errno.h>
2018-12-24 09:58:48 -08:00
#include <poll.h>
2008-09-07 14:34:14 -07:00
#include <math.h>
2012-09-14 02:14:29 -07:00
#include <thread>
2018-12-29 03:11:06 -08:00
#include <functional>
2008-09-07 14:34:14 -07:00
#include "alMain.h"
2012-09-14 02:14:29 -07:00
#include "alu.h"
#include "alconfig.h"
2013-10-27 08:14:13 -07:00
#include "threads.h"
#include "vector.h"
2013-10-28 12:05:33 -07:00
#include "compat.h"
2008-09-07 14:34:14 -07:00
#include <sys/audioio.h>
2008-09-07 14:34:14 -07:00
namespace {
constexpr ALCchar solaris_device[] = "Solaris Default";
const char *solaris_driver = "/dev/audio";
struct SolarisBackend final : public BackendBase {
SolarisBackend(ALCdevice *device) noexcept : BackendBase{device} { }
~SolarisBackend() override;
int mixerProc();
ALCenum open(const ALCchar *name) override;
ALCboolean reset() override;
ALCboolean start() override;
void stop() override;
int mFd{-1};
al::vector<ALubyte> mBuffer;
std::atomic<bool> mKillNow{true};
std::thread mThread;
2008-09-07 14:34:14 -07:00
DEF_NEWDEL(SolarisBackend)
};
2008-09-07 14:34:14 -07:00
SolarisBackend::~SolarisBackend()
{
if(mFd != -1)
close(mFd);
mFd = -1;
}
int SolarisBackend::mixerProc()
{
SetRTPriority();
althrd_setname(MIXER_THREAD_NAME);
const int frame_size{mDevice->frameSizeFromFmt()};
2009-09-15 18:19:00 -07:00
lock();
while(!mKillNow.load(std::memory_order_acquire) &&
mDevice->Connected.load(std::memory_order_acquire))
2008-09-07 14:34:14 -07:00
{
2018-12-24 09:58:48 -08:00
pollfd pollitem{};
pollitem.fd = mFd;
2018-12-24 09:58:48 -08:00
pollitem.events = POLLOUT;
unlock();
2018-12-24 09:58:48 -08:00
int pret{poll(&pollitem, 1, 1000)};
lock();
2018-12-24 09:58:48 -08:00
if(pret < 0)
{
2018-12-24 09:58:48 -08:00
if(errno == EINTR || errno == EAGAIN)
continue;
2018-12-24 09:58:48 -08:00
ERR("poll failed: %s\n", strerror(errno));
aluHandleDisconnect(mDevice, "Failed to wait for playback buffer: %s",
strerror(errno));
break;
}
2018-12-24 09:58:48 -08:00
else if(pret == 0)
{
2018-12-24 09:58:48 -08:00
WARN("poll timeout\n");
continue;
}
2008-09-07 14:34:14 -07:00
ALubyte *write_ptr{mBuffer.data()};
size_t to_write{mBuffer.size()};
aluMixData(mDevice, write_ptr, to_write/frame_size);
while(to_write > 0 && !mKillNow.load(std::memory_order_acquire))
2008-09-07 14:34:14 -07:00
{
ssize_t wrote{write(mFd, write_ptr, to_write)};
2009-08-26 21:49:38 -07:00
if(wrote < 0)
{
if(errno == EAGAIN || errno == EWOULDBLOCK || errno == EINTR)
continue;
ERR("write failed: %s\n", strerror(errno));
aluHandleDisconnect(mDevice, "Failed to write playback samples: %s",
strerror(errno));
break;
2009-08-26 21:49:38 -07:00
}
to_write -= wrote;
write_ptr += wrote;
2008-09-07 14:34:14 -07:00
}
}
unlock();
2008-09-07 14:34:14 -07:00
return 0;
}
ALCenum SolarisBackend::open(const ALCchar *name)
2008-09-07 14:34:14 -07:00
{
if(!name)
name = solaris_device;
else if(strcmp(name, solaris_device) != 0)
return ALC_INVALID_VALUE;
2008-09-07 14:34:14 -07:00
mFd = ::open(solaris_driver, O_WRONLY);
if(mFd == -1)
2008-09-07 14:34:14 -07:00
{
2012-02-29 21:45:44 -08:00
ERR("Could not open %s: %s\n", solaris_driver, strerror(errno));
return ALC_INVALID_VALUE;
2008-09-07 14:34:14 -07:00
}
mDevice->DeviceName = name;
return ALC_NO_ERROR;
}
ALCboolean SolarisBackend::reset()
{
audio_info_t info;
2008-09-07 14:34:14 -07:00
AUDIO_INITINFO(&info);
info.play.sample_rate = mDevice->Frequency;
if(mDevice->FmtChans != DevFmtMono)
mDevice->FmtChans = DevFmtStereo;
ALsizei numChannels{mDevice->channelsFromFmt()};
info.play.channels = numChannels;
switch(mDevice->FmtType)
2008-09-07 14:34:14 -07:00
{
case DevFmtByte:
info.play.precision = 8;
info.play.encoding = AUDIO_ENCODING_LINEAR;
break;
case DevFmtUByte:
2008-09-07 14:34:14 -07:00
info.play.precision = 8;
info.play.encoding = AUDIO_ENCODING_LINEAR8;
break;
case DevFmtUShort:
case DevFmtInt:
case DevFmtUInt:
case DevFmtFloat:
mDevice->FmtType = DevFmtShort;
2009-08-16 13:16:41 -07:00
/* fall-through */
case DevFmtShort:
2008-09-07 14:34:14 -07:00
info.play.precision = 16;
info.play.encoding = AUDIO_ENCODING_LINEAR;
break;
}
ALsizei frameSize{numChannels * mDevice->bytesFromFmt()};
info.play.buffer_size = mDevice->BufferSize * frameSize;
2008-09-07 14:34:14 -07:00
if(ioctl(mFd, AUDIO_SETINFO, &info) < 0)
2008-09-07 14:34:14 -07:00
{
2011-07-13 01:43:00 -07:00
ERR("ioctl failed: %s\n", strerror(errno));
2008-09-07 14:34:14 -07:00
return ALC_FALSE;
}
if(mDevice->channelsFromFmt() != (ALsizei)info.play.channels)
2008-09-07 14:34:14 -07:00
{
ERR("Failed to set %s, got %u channels instead\n", DevFmtChannelsString(mDevice->FmtChans),
info.play.channels);
2008-09-07 14:34:14 -07:00
return ALC_FALSE;
}
if(!((info.play.precision == 8 && info.play.encoding == AUDIO_ENCODING_LINEAR8 && mDevice->FmtType == DevFmtUByte) ||
(info.play.precision == 8 && info.play.encoding == AUDIO_ENCODING_LINEAR && mDevice->FmtType == DevFmtByte) ||
(info.play.precision == 16 && info.play.encoding == AUDIO_ENCODING_LINEAR && mDevice->FmtType == DevFmtShort) ||
(info.play.precision == 32 && info.play.encoding == AUDIO_ENCODING_LINEAR && mDevice->FmtType == DevFmtInt)))
2008-09-07 14:34:14 -07:00
{
ERR("Could not set %s samples, got %d (0x%x)\n", DevFmtTypeString(mDevice->FmtType),
2012-02-29 21:45:44 -08:00
info.play.precision, info.play.encoding);
2008-09-07 14:34:14 -07:00
return ALC_FALSE;
}
mDevice->Frequency = info.play.sample_rate;
mDevice->BufferSize = info.play.buffer_size / frameSize;
mDevice->UpdateSize = mDevice->BufferSize / 2;
2008-09-07 14:34:14 -07:00
SetDefaultChannelOrder(mDevice);
mBuffer.resize(mDevice->UpdateSize * mDevice->frameSizeFromFmt());
std::fill(mBuffer.begin(), mBuffer.end(), 0);
return ALC_TRUE;
}
ALCboolean SolarisBackend::start()
{
try {
mKillNow.store(false, std::memory_order_release);
mThread = std::thread{std::mem_fn(&SolarisBackend::mixerProc), this};
return ALC_TRUE;
}
catch(std::exception& e) {
ERR("Could not create playback thread: %s\n", e.what());
}
catch(...) {
}
return ALC_FALSE;
2008-09-07 14:34:14 -07:00
}
void SolarisBackend::stop()
2008-09-07 14:34:14 -07:00
{
if(mKillNow.exchange(true, std::memory_order_acq_rel) || !mThread.joinable())
return;
mThread.join();
if(ioctl(mFd, AUDIO_DRAIN) < 0)
2011-07-13 01:43:00 -07:00
ERR("Error draining device: %s\n", strerror(errno));
}
} // namespace
2018-11-15 22:23:29 -08:00
BackendFactory &SolarisBackendFactory::getFactory()
{
2018-11-15 22:23:29 -08:00
static SolarisBackendFactory factory{};
return factory;
2009-08-16 13:16:41 -07:00
}
2018-11-15 22:23:29 -08:00
bool SolarisBackendFactory::init()
2008-09-07 14:34:14 -07:00
{
2018-11-12 23:06:31 -08:00
ConfigValueStr(nullptr, "solaris", "device", &solaris_driver);
2018-11-15 22:23:29 -08:00
return true;
2008-09-07 14:34:14 -07:00
}
2009-08-26 23:45:00 -07:00
2018-12-29 01:38:26 -08:00
bool SolarisBackendFactory::querySupport(BackendType type)
{ return type == BackendType::Playback; }
void SolarisBackendFactory::probe(DevProbe type, std::string *outnames)
{
2011-06-14 04:02:58 -07:00
switch(type)
{
2019-03-19 00:24:54 -07:00
case DevProbe::Playback:
2012-02-29 21:45:44 -08:00
{
#ifdef HAVE_STAT
struct stat buf;
if(stat(solaris_driver, &buf) == 0)
#endif
outnames->append(solaris_device, sizeof(solaris_device));
2012-02-29 21:45:44 -08:00
}
break;
2019-03-19 00:24:54 -07:00
case DevProbe::Capture:
2011-06-14 04:02:58 -07:00
break;
}
}
2018-12-29 02:16:16 -08:00
BackendPtr SolarisBackendFactory::createBackend(ALCdevice *device, BackendType type)
{
2018-12-29 01:38:26 -08:00
if(type == BackendType::Playback)
2018-12-29 02:16:16 -08:00
return BackendPtr{new SolarisBackend{device}};
2018-11-12 23:06:31 -08:00
return nullptr;
}