openal-soft/Alc/backends/solaris.cpp

337 lines
9.8 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>
#include <math.h>
2012-09-14 02:14:29 -07:00
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"
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
2018-11-12 23:06:31 -08:00
struct ALCsolarisBackend final : public ALCbackend {
2018-11-26 14:31:54 -08:00
int fd{-1};
2008-09-07 14:34:14 -07:00
2018-11-26 14:31:54 -08:00
ALubyte *mix_data{nullptr};
int data_size{0};
2013-10-27 08:14:13 -07:00
2018-11-26 17:31:04 -08:00
std::atomic<ALenum> mKillNow{AL_TRUE};
althrd_t thread;
2018-11-12 23:06:31 -08:00
};
static int ALCsolarisBackend_mixerProc(void *ptr);
static void ALCsolarisBackend_Construct(ALCsolarisBackend *self, ALCdevice *device);
static void ALCsolarisBackend_Destruct(ALCsolarisBackend *self);
static ALCenum ALCsolarisBackend_open(ALCsolarisBackend *self, const ALCchar *name);
static ALCboolean ALCsolarisBackend_reset(ALCsolarisBackend *self);
static ALCboolean ALCsolarisBackend_start(ALCsolarisBackend *self);
static void ALCsolarisBackend_stop(ALCsolarisBackend *self);
static DECLARE_FORWARD2(ALCsolarisBackend, ALCbackend, ALCenum, captureSamples, void*, ALCuint)
static DECLARE_FORWARD(ALCsolarisBackend, ALCbackend, ALCuint, availableSamples)
static DECLARE_FORWARD(ALCsolarisBackend, ALCbackend, ClockLatency, getClockLatency)
static DECLARE_FORWARD(ALCsolarisBackend, ALCbackend, void, lock)
static DECLARE_FORWARD(ALCsolarisBackend, ALCbackend, void, unlock)
DECLARE_DEFAULT_ALLOCATORS(ALCsolarisBackend)
DEFINE_ALCBACKEND_VTABLE(ALCsolarisBackend);
static const ALCchar solaris_device[] = "Solaris Default";
static const char *solaris_driver = "/dev/audio";
2008-09-07 14:34:14 -07:00
static void ALCsolarisBackend_Construct(ALCsolarisBackend *self, ALCdevice *device)
2008-09-07 14:34:14 -07:00
{
2018-11-12 23:06:31 -08:00
new (self) ALCsolarisBackend{};
ALCbackend_Construct(STATIC_CAST(ALCbackend, self), device);
SET_VTABLE2(ALCsolarisBackend, ALCbackend, self);
}
static void ALCsolarisBackend_Destruct(ALCsolarisBackend *self)
{
if(self->fd != -1)
close(self->fd);
self->fd = -1;
free(self->mix_data);
2018-11-12 23:06:31 -08:00
self->mix_data = nullptr;
self->data_size = 0;
ALCbackend_Destruct(STATIC_CAST(ALCbackend, self));
2018-11-12 23:06:31 -08:00
self->~ALCsolarisBackend();
}
static int ALCsolarisBackend_mixerProc(void *ptr)
{
2018-11-12 23:06:31 -08:00
ALCsolarisBackend *self = static_cast<ALCsolarisBackend*>(ptr);
ALCdevice *device = STATIC_CAST(ALCbackend, self)->mDevice;
struct timeval timeout;
ALubyte *write_ptr;
ALint frame_size;
ALint to_write;
ssize_t wrote;
fd_set wfds;
int sret;
2008-09-07 14:34:14 -07:00
SetRTPriority();
althrd_setname(MIXER_THREAD_NAME);
frame_size = FrameSizeFromDevFmt(device->FmtChans, device->FmtType, device->mAmbiOrder);
2009-09-15 18:19:00 -07:00
ALCsolarisBackend_lock(self);
2018-11-26 17:31:04 -08:00
while(!self->mKillNow.load(std::memory_order_acquire) &&
ATOMIC_LOAD(&device->Connected, almemory_order_acquire))
2008-09-07 14:34:14 -07:00
{
FD_ZERO(&wfds);
FD_SET(self->fd, &wfds);
timeout.tv_sec = 1;
timeout.tv_usec = 0;
ALCsolarisBackend_unlock(self);
2018-11-12 23:06:31 -08:00
sret = select(self->fd+1, nullptr, &wfds, nullptr, &timeout);
ALCsolarisBackend_lock(self);
if(sret < 0)
{
if(errno == EINTR)
continue;
ERR("select failed: %s\n", strerror(errno));
aluHandleDisconnect(device, "Failed to wait for playback buffer: %s", strerror(errno));
break;
}
else if(sret == 0)
{
WARN("select timeout\n");
continue;
}
2008-09-07 14:34:14 -07:00
write_ptr = self->mix_data;
to_write = self->data_size;
aluMixData(device, write_ptr, to_write/frame_size);
2018-11-26 17:31:04 -08:00
while(to_write > 0 && !self->mKillNow.load())
2008-09-07 14:34:14 -07:00
{
wrote = write(self->fd, 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(device, "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
}
}
ALCsolarisBackend_unlock(self);
2008-09-07 14:34:14 -07:00
return 0;
}
static ALCenum ALCsolarisBackend_open(ALCsolarisBackend *self, const ALCchar *name)
2008-09-07 14:34:14 -07:00
{
ALCdevice *device;
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
self->fd = open(solaris_driver, O_WRONLY);
if(self->fd == -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
}
device = STATIC_CAST(ALCbackend,self)->mDevice;
2018-11-18 18:45:45 -08:00
device->DeviceName = name;
return ALC_NO_ERROR;
}
static ALCboolean ALCsolarisBackend_reset(ALCsolarisBackend *self)
{
ALCdevice *device = STATIC_CAST(ALCbackend,self)->mDevice;
audio_info_t info;
2017-01-18 07:13:23 -08:00
ALsizei frameSize;
ALsizei numChannels;
2008-09-07 14:34:14 -07:00
AUDIO_INITINFO(&info);
info.play.sample_rate = device->Frequency;
if(device->FmtChans != DevFmtMono)
device->FmtChans = DevFmtStereo;
numChannels = ChannelsFromDevFmt(device->FmtChans, device->mAmbiOrder);
info.play.channels = numChannels;
switch(device->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:
device->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;
}
frameSize = numChannels * BytesFromDevFmt(device->FmtType);
info.play.buffer_size = device->UpdateSize*device->NumUpdates * frameSize;
2008-09-07 14:34:14 -07:00
if(ioctl(self->fd, 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(ChannelsFromDevFmt(device->FmtChans, device->mAmbiOrder) != (ALsizei)info.play.channels)
2008-09-07 14:34:14 -07:00
{
ERR("Failed to set %s, got %u channels instead\n", DevFmtChannelsString(device->FmtChans), info.play.channels);
2008-09-07 14:34:14 -07:00
return ALC_FALSE;
}
2012-02-29 21:45:44 -08:00
if(!((info.play.precision == 8 && info.play.encoding == AUDIO_ENCODING_LINEAR8 && device->FmtType == DevFmtUByte) ||
(info.play.precision == 8 && info.play.encoding == AUDIO_ENCODING_LINEAR && device->FmtType == DevFmtByte) ||
(info.play.precision == 16 && info.play.encoding == AUDIO_ENCODING_LINEAR && device->FmtType == DevFmtShort) ||
(info.play.precision == 32 && info.play.encoding == AUDIO_ENCODING_LINEAR && device->FmtType == DevFmtInt)))
2008-09-07 14:34:14 -07:00
{
2012-02-29 21:45:44 -08:00
ERR("Could not set %s samples, got %d (0x%x)\n", DevFmtTypeString(device->FmtType),
info.play.precision, info.play.encoding);
2008-09-07 14:34:14 -07:00
return ALC_FALSE;
}
device->Frequency = info.play.sample_rate;
device->UpdateSize = (info.play.buffer_size/device->NumUpdates) + 1;
2008-09-07 14:34:14 -07:00
SetDefaultChannelOrder(device);
free(self->mix_data);
self->data_size = device->UpdateSize * FrameSizeFromDevFmt(
device->FmtChans, device->FmtType, device->mAmbiOrder
);
2018-11-12 23:06:31 -08:00
self->mix_data = static_cast<ALubyte*>(calloc(1, self->data_size));
return ALC_TRUE;
}
static ALCboolean ALCsolarisBackend_start(ALCsolarisBackend *self)
{
2018-11-26 17:31:04 -08:00
self->mKillNow.store(AL_FALSE);
if(althrd_create(&self->thread, ALCsolarisBackend_mixerProc, self) != althrd_success)
2008-09-07 14:34:14 -07:00
return ALC_FALSE;
return ALC_TRUE;
}
static void ALCsolarisBackend_stop(ALCsolarisBackend *self)
2008-09-07 14:34:14 -07:00
{
int res;
2018-11-26 17:31:04 -08:00
if(self->mKillNow.exchange(AL_TRUE))
return;
althrd_join(self->thread, &res);
2008-09-07 14:34:14 -07:00
if(ioctl(self->fd, AUDIO_DRAIN) < 0)
2011-07-13 01:43:00 -07:00
ERR("Error draining device: %s\n", strerror(errno));
}
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-11-15 22:23:29 -08:00
bool SolarisBackendFactory::querySupport(ALCbackend_Type type)
{ return (type == ALCbackend_Playback); }
2018-11-15 22:23:29 -08:00
void SolarisBackendFactory::probe(enum DevProbe type, std::string *outnames)
{
2011-06-14 04:02:58 -07:00
switch(type)
{
case ALL_DEVICE_PROBE:
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;
2011-06-14 04:02:58 -07:00
case CAPTURE_DEVICE_PROBE:
break;
}
}
2018-11-15 22:23:29 -08:00
ALCbackend *SolarisBackendFactory::createBackend(ALCdevice *device, ALCbackend_Type type)
{
if(type == ALCbackend_Playback)
{
ALCsolarisBackend *backend;
NEW_OBJ(backend, ALCsolarisBackend)(device);
2018-11-12 23:06:31 -08:00
if(!backend) return nullptr;
return STATIC_CAST(ALCbackend, backend);
}
2018-11-12 23:06:31 -08:00
return nullptr;
}