| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466 |
- /**
- * OpenAL cross platform audio library
- * Copyright (C) 2011 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., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- * Or go to http://www.gnu.org/copyleft/lgpl.html
- */
- #include "config.h"
- #include <stdlib.h>
- #ifdef HAVE_DLFCN_H
- #include <dlfcn.h>
- #endif
- #if defined(HAVE_GUIDDEF_H) || defined(HAVE_INITGUID_H)
- #define INITGUID
- #include <windows.h>
- #ifdef HAVE_GUIDDEF_H
- #include <guiddef.h>
- #else
- #include <initguid.h>
- #endif
- DEFINE_GUID(KSDATAFORMAT_SUBTYPE_PCM, 0x00000001, 0x0000, 0x0010, 0x80,0x00, 0x00,0xaa,0x00,0x38,0x9b,0x71);
- DEFINE_GUID(KSDATAFORMAT_SUBTYPE_IEEE_FLOAT, 0x00000003, 0x0000, 0x0010, 0x80,0x00, 0x00,0xaa,0x00,0x38,0x9b,0x71);
- DEFINE_GUID(IID_IDirectSoundNotify, 0xb0210783, 0x89cd, 0x11d0, 0xaf,0x08, 0x00,0xa0,0xc9,0x25,0xcd,0x16);
- DEFINE_GUID(CLSID_MMDeviceEnumerator, 0xbcde0395, 0xe52f, 0x467c, 0x8e,0x3d, 0xc4,0x57,0x92,0x91,0x69,0x2e);
- DEFINE_GUID(IID_IMMDeviceEnumerator, 0xa95664d2, 0x9614, 0x4f35, 0xa7,0x46, 0xde,0x8d,0xb6,0x36,0x17,0xe6);
- DEFINE_GUID(IID_IAudioClient, 0x1cb9ad4c, 0xdbfa, 0x4c32, 0xb1,0x78, 0xc2,0xf5,0x68,0xa7,0x03,0xb2);
- DEFINE_GUID(IID_IAudioRenderClient, 0xf294acfc, 0x3146, 0x4483, 0xa7,0xbf, 0xad,0xdc,0xa7,0xc2,0x60,0xe2);
- #ifdef HAVE_MMDEVAPI
- #include <devpropdef.h>
- DEFINE_DEVPROPKEY(DEVPKEY_Device_FriendlyName, 0xa45c254e, 0xdf1c, 0x4efd, 0x80,0x20, 0x67,0xd1,0x46,0xa8,0x50,0xe0, 14);
- #endif
- #endif
- #include "alMain.h"
- #ifdef _WIN32
- void pthread_once(pthread_once_t *once, void (*callback)(void))
- {
- LONG ret;
- while((ret=InterlockedExchange(once, 1)) == 1)
- sched_yield();
- if(ret == 0)
- callback();
- InterlockedExchange(once, 2);
- }
- int pthread_key_create(pthread_key_t *key, void (*callback)(void*))
- {
- *key = TlsAlloc();
- if(callback)
- InsertUIntMapEntry(&TlsDestructor, *key, callback);
- return 0;
- }
- int pthread_key_delete(pthread_key_t key)
- {
- InsertUIntMapEntry(&TlsDestructor, key, NULL);
- TlsFree(key);
- return 0;
- }
- void *pthread_getspecific(pthread_key_t key)
- { return TlsGetValue(key); }
- int pthread_setspecific(pthread_key_t key, void *val)
- {
- TlsSetValue(key, val);
- return 0;
- }
- void *LoadLib(const char *name)
- { return LoadLibraryA(name); }
- void CloseLib(void *handle)
- { FreeLibrary((HANDLE)handle); }
- void *GetSymbol(void *handle, const char *name)
- {
- void *ret;
- ret = (void*)GetProcAddress((HANDLE)handle, name);
- if(ret == NULL)
- ERR("Failed to load %s\n", name);
- return ret;
- }
- WCHAR *strdupW(const WCHAR *str)
- {
- const WCHAR *n;
- WCHAR *ret;
- size_t len;
- n = str;
- while(*n) n++;
- len = n - str;
- ret = calloc(sizeof(WCHAR), len+1);
- if(ret != NULL)
- memcpy(ret, str, sizeof(WCHAR)*len);
- return ret;
- }
- #else
- void InitializeCriticalSection(CRITICAL_SECTION *cs)
- {
- pthread_mutexattr_t attrib;
- int ret;
- ret = pthread_mutexattr_init(&attrib);
- assert(ret == 0);
- ret = pthread_mutexattr_settype(&attrib, PTHREAD_MUTEX_RECURSIVE);
- #ifdef HAVE_PTHREAD_NP_H
- if(ret != 0)
- ret = pthread_mutexattr_setkind_np(&attrib, PTHREAD_MUTEX_RECURSIVE);
- #endif
- assert(ret == 0);
- ret = pthread_mutex_init(cs, &attrib);
- assert(ret == 0);
- pthread_mutexattr_destroy(&attrib);
- }
- void DeleteCriticalSection(CRITICAL_SECTION *cs)
- {
- int ret;
- ret = pthread_mutex_destroy(cs);
- assert(ret == 0);
- }
- void EnterCriticalSection(CRITICAL_SECTION *cs)
- {
- int ret;
- ret = pthread_mutex_lock(cs);
- assert(ret == 0);
- }
- void LeaveCriticalSection(CRITICAL_SECTION *cs)
- {
- int ret;
- ret = pthread_mutex_unlock(cs);
- assert(ret == 0);
- }
- /* NOTE: This wrapper isn't quite accurate as it returns an ALuint, as opposed
- * to the expected DWORD. Both are defined as unsigned 32-bit types, however.
- * Additionally, Win32 is supposed to measure the time since Windows started,
- * as opposed to the actual time. */
- ALuint timeGetTime(void)
- {
- #if _POSIX_TIMERS > 0
- struct timespec ts;
- int ret = -1;
- #if defined(_POSIX_MONOTONIC_CLOCK) && (_POSIX_MONOTONIC_CLOCK >= 0)
- #if _POSIX_MONOTONIC_CLOCK == 0
- static int hasmono = 0;
- if(hasmono > 0 || (hasmono == 0 &&
- (hasmono=sysconf(_SC_MONOTONIC_CLOCK)) > 0))
- #endif
- ret = clock_gettime(CLOCK_MONOTONIC, &ts);
- #endif
- if(ret != 0)
- ret = clock_gettime(CLOCK_REALTIME, &ts);
- assert(ret == 0);
- return ts.tv_nsec/1000000 + ts.tv_sec*1000;
- #else
- struct timeval tv;
- int ret;
- ret = gettimeofday(&tv, NULL);
- assert(ret == 0);
- return tv.tv_usec/1000 + tv.tv_sec*1000;
- #endif
- }
- void Sleep(ALuint t)
- {
- struct timespec tv, rem;
- tv.tv_nsec = (t*1000000)%1000000000;
- tv.tv_sec = t/1000;
- while(nanosleep(&tv, &rem) == -1 && errno == EINTR)
- tv = rem;
- }
- #ifdef HAVE_DLFCN_H
- void *LoadLib(const char *name)
- {
- const char *err;
- void *handle;
- dlerror();
- handle = dlopen(name, RTLD_NOW);
- if((err=dlerror()) != NULL)
- handle = NULL;
- return handle;
- }
- void CloseLib(void *handle)
- { dlclose(handle); }
- void *GetSymbol(void *handle, const char *name)
- {
- const char *err;
- void *sym;
- dlerror();
- sym = dlsym(handle, name);
- if((err=dlerror()) != NULL)
- {
- WARN("Failed to load %s: %s\n", name, err);
- sym = NULL;
- }
- return sym;
- }
- #endif
- #endif
- void al_print(const char *func, const char *fmt, ...)
- {
- char str[256];
- int i;
- i = snprintf(str, sizeof(str), "AL lib: %s: ", func);
- if(i < (int)sizeof(str) && i > 0)
- {
- va_list ap;
- va_start(ap, fmt);
- vsnprintf(str+i, sizeof(str)-i, fmt, ap);
- va_end(ap);
- }
- str[sizeof(str)-1] = 0;
- fprintf(LogFile, "%s", str);
- fflush(LogFile);
- }
- void SetRTPriority(void)
- {
- ALboolean failed = AL_FALSE;
- #ifdef _WIN32
- if(RTPrioLevel > 0)
- failed = !SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_TIME_CRITICAL);
- #elif defined(HAVE_PTHREAD_SETSCHEDPARAM) && !defined(__OpenBSD__)
- if(RTPrioLevel > 0)
- {
- struct sched_param param;
- /* Use the minimum real-time priority possible for now (on Linux this
- * should be 1 for SCHED_RR) */
- param.sched_priority = sched_get_priority_min(SCHED_RR);
- failed = !!pthread_setschedparam(pthread_self(), SCHED_RR, ¶m);
- }
- #else
- /* Real-time priority not available */
- failed = (RTPrioLevel>0);
- #endif
- if(failed)
- ERR("Failed to set priority level for thread\n");
- }
- static void Lock(volatile ALenum *l)
- {
- while(ExchangeInt(l, AL_TRUE) == AL_TRUE)
- sched_yield();
- }
- static void Unlock(volatile ALenum *l)
- {
- ExchangeInt(l, AL_FALSE);
- }
- void RWLockInit(RWLock *lock)
- {
- lock->read_count = 0;
- lock->write_count = 0;
- lock->read_lock = AL_FALSE;
- lock->read_entry_lock = AL_FALSE;
- lock->write_lock = AL_FALSE;
- }
- void ReadLock(RWLock *lock)
- {
- Lock(&lock->read_entry_lock);
- Lock(&lock->read_lock);
- if(IncrementRef(&lock->read_count) == 1)
- Lock(&lock->write_lock);
- Unlock(&lock->read_lock);
- Unlock(&lock->read_entry_lock);
- }
- void ReadUnlock(RWLock *lock)
- {
- if(DecrementRef(&lock->read_count) == 0)
- Unlock(&lock->write_lock);
- }
- void WriteLock(RWLock *lock)
- {
- if(IncrementRef(&lock->write_count) == 1)
- Lock(&lock->read_lock);
- Lock(&lock->write_lock);
- }
- void WriteUnlock(RWLock *lock)
- {
- Unlock(&lock->write_lock);
- if(DecrementRef(&lock->write_count) == 0)
- Unlock(&lock->read_lock);
- }
- void InitUIntMap(UIntMap *map, ALsizei limit)
- {
- map->array = NULL;
- map->size = 0;
- map->maxsize = 0;
- map->limit = limit;
- RWLockInit(&map->lock);
- }
- void ResetUIntMap(UIntMap *map)
- {
- WriteLock(&map->lock);
- free(map->array);
- map->array = NULL;
- map->size = 0;
- map->maxsize = 0;
- WriteUnlock(&map->lock);
- }
- ALenum InsertUIntMapEntry(UIntMap *map, ALuint key, ALvoid *value)
- {
- ALsizei pos = 0;
- WriteLock(&map->lock);
- if(map->size > 0)
- {
- ALsizei low = 0;
- ALsizei high = map->size - 1;
- while(low < high)
- {
- ALsizei mid = low + (high-low)/2;
- if(map->array[mid].key < key)
- low = mid + 1;
- else
- high = mid;
- }
- if(map->array[low].key < key)
- low++;
- pos = low;
- }
- if(pos == map->size || map->array[pos].key != key)
- {
- if(map->size == map->limit)
- {
- WriteUnlock(&map->lock);
- return AL_OUT_OF_MEMORY;
- }
- if(map->size == map->maxsize)
- {
- ALvoid *temp = NULL;
- ALsizei newsize;
- newsize = (map->maxsize ? (map->maxsize<<1) : 4);
- if(newsize >= map->maxsize)
- temp = realloc(map->array, newsize*sizeof(map->array[0]));
- if(!temp)
- {
- WriteUnlock(&map->lock);
- return AL_OUT_OF_MEMORY;
- }
- map->array = temp;
- map->maxsize = newsize;
- }
- if(pos < map->size)
- memmove(&map->array[pos+1], &map->array[pos],
- (map->size-pos)*sizeof(map->array[0]));
- map->size++;
- }
- map->array[pos].key = key;
- map->array[pos].value = value;
- WriteUnlock(&map->lock);
- return AL_NO_ERROR;
- }
- ALvoid *RemoveUIntMapKey(UIntMap *map, ALuint key)
- {
- ALvoid *ptr = NULL;
- WriteLock(&map->lock);
- if(map->size > 0)
- {
- ALsizei low = 0;
- ALsizei high = map->size - 1;
- while(low < high)
- {
- ALsizei mid = low + (high-low)/2;
- if(map->array[mid].key < key)
- low = mid + 1;
- else
- high = mid;
- }
- if(map->array[low].key == key)
- {
- ptr = map->array[low].value;
- if(low < map->size-1)
- memmove(&map->array[low], &map->array[low+1],
- (map->size-1-low)*sizeof(map->array[0]));
- map->size--;
- }
- }
- WriteUnlock(&map->lock);
- return ptr;
- }
- ALvoid *LookupUIntMapKey(UIntMap *map, ALuint key)
- {
- ALvoid *ptr = NULL;
- ReadLock(&map->lock);
- if(map->size > 0)
- {
- ALsizei low = 0;
- ALsizei high = map->size - 1;
- while(low < high)
- {
- ALsizei mid = low + (high-low)/2;
- if(map->array[mid].key < key)
- low = mid + 1;
- else
- high = mid;
- }
- if(map->array[low].key == key)
- ptr = map->array[low].value;
- }
- ReadUnlock(&map->lock);
- return ptr;
- }
|