2016-05-25 16:34:52 +02:00
|
|
|
/*
|
2017-05-09 15:44:46 +02:00
|
|
|
* The copyright in this software is being made available under the 2-clauses
|
|
|
|
* BSD License, included below. This software may be subject to other third
|
2016-05-25 16:34:52 +02:00
|
|
|
* party and contributor rights, including patent rights, and no such rights
|
|
|
|
* are granted under this license.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2016, Even Rouault
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#ifdef MUTEX_win32
|
|
|
|
|
|
|
|
/* Some versions of x86_64-w64-mingw32-gc -m32 resolve InterlockedCompareExchange() */
|
|
|
|
/* as __sync_val_compare_and_swap_4 but fails to link it. As this protects against */
|
|
|
|
/* a rather unlikely race, skip it */
|
|
|
|
#if !(defined(__MINGW32__) && defined(__i386__))
|
|
|
|
#define HAVE_INTERLOCKED_COMPARE_EXCHANGE 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <windows.h>
|
2016-08-11 21:50:46 +02:00
|
|
|
#include <process.h>
|
2016-05-25 16:34:52 +02:00
|
|
|
|
2017-09-07 17:52:59 +02:00
|
|
|
#include "opj_includes.h"
|
|
|
|
|
2016-05-25 16:34:52 +02:00
|
|
|
OPJ_BOOL OPJ_CALLCONV opj_has_thread_support(void)
|
|
|
|
{
|
|
|
|
return OPJ_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
int OPJ_CALLCONV opj_get_num_cpus(void)
|
|
|
|
{
|
|
|
|
SYSTEM_INFO info;
|
|
|
|
DWORD dwNum;
|
|
|
|
GetSystemInfo(&info);
|
|
|
|
dwNum = info.dwNumberOfProcessors;
|
2017-05-09 15:44:46 +02:00
|
|
|
if (dwNum < 1) {
|
2016-05-25 16:34:52 +02:00
|
|
|
return 1;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2016-05-25 16:34:52 +02:00
|
|
|
return (int)dwNum;
|
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
struct opj_mutex_t {
|
2016-05-25 16:34:52 +02:00
|
|
|
CRITICAL_SECTION cs;
|
|
|
|
};
|
|
|
|
|
|
|
|
opj_mutex_t* opj_mutex_create(void)
|
|
|
|
{
|
|
|
|
opj_mutex_t* mutex = (opj_mutex_t*) opj_malloc(sizeof(opj_mutex_t));
|
2017-05-09 15:44:46 +02:00
|
|
|
if (!mutex) {
|
2016-05-25 16:34:52 +02:00
|
|
|
return NULL;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2016-05-25 16:34:52 +02:00
|
|
|
InitializeCriticalSectionAndSpinCount(&(mutex->cs), 4000);
|
|
|
|
return mutex;
|
|
|
|
}
|
|
|
|
|
|
|
|
void opj_mutex_lock(opj_mutex_t* mutex)
|
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
EnterCriticalSection(&(mutex->cs));
|
2016-05-25 16:34:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void opj_mutex_unlock(opj_mutex_t* mutex)
|
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
LeaveCriticalSection(&(mutex->cs));
|
2016-05-25 16:34:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void opj_mutex_destroy(opj_mutex_t* mutex)
|
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
if (!mutex) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
DeleteCriticalSection(&(mutex->cs));
|
|
|
|
opj_free(mutex);
|
2016-05-25 16:34:52 +02:00
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
struct opj_cond_waiter_list_t {
|
2016-05-25 16:34:52 +02:00
|
|
|
HANDLE hEvent;
|
|
|
|
struct opj_cond_waiter_list_t* next;
|
|
|
|
};
|
|
|
|
typedef struct opj_cond_waiter_list_t opj_cond_waiter_list_t;
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
struct opj_cond_t {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_mutex_t *internal_mutex;
|
|
|
|
opj_cond_waiter_list_t *waiter_list;
|
|
|
|
};
|
|
|
|
|
|
|
|
static DWORD TLSKey = 0;
|
|
|
|
static volatile LONG inTLSLockedSection = 0;
|
|
|
|
static volatile int TLSKeyInit = OPJ_FALSE;
|
|
|
|
|
|
|
|
opj_cond_t* opj_cond_create(void)
|
|
|
|
{
|
|
|
|
opj_cond_t* cond = (opj_cond_t*) opj_malloc(sizeof(opj_cond_t));
|
2017-05-09 15:44:46 +02:00
|
|
|
if (!cond) {
|
2016-05-25 16:34:52 +02:00
|
|
|
return NULL;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2016-05-25 16:34:52 +02:00
|
|
|
|
|
|
|
/* Make sure that the TLS key is allocated in a thread-safe way */
|
|
|
|
/* We cannot use a global mutex/critical section since its creation itself would not be */
|
|
|
|
/* thread-safe, so use InterlockedCompareExchange trick */
|
2017-05-09 15:44:46 +02:00
|
|
|
while (OPJ_TRUE) {
|
2016-05-25 16:34:52 +02:00
|
|
|
|
|
|
|
#if HAVE_INTERLOCKED_COMPARE_EXCHANGE
|
2017-05-09 15:44:46 +02:00
|
|
|
if (InterlockedCompareExchange(&inTLSLockedSection, 1, 0) == 0)
|
2016-05-25 16:34:52 +02:00
|
|
|
#endif
|
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
if (!TLSKeyInit) {
|
2016-05-25 16:34:52 +02:00
|
|
|
TLSKey = TlsAlloc();
|
|
|
|
TLSKeyInit = OPJ_TRUE;
|
|
|
|
}
|
|
|
|
#if HAVE_INTERLOCKED_COMPARE_EXCHANGE
|
|
|
|
InterlockedCompareExchange(&inTLSLockedSection, 0, 1);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if (TLSKey == TLS_OUT_OF_INDEXES) {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_free(cond);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
cond->internal_mutex = opj_mutex_create();
|
2017-05-09 15:44:46 +02:00
|
|
|
if (cond->internal_mutex == NULL) {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_free(cond);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
cond->waiter_list = NULL;
|
|
|
|
return cond;
|
|
|
|
}
|
|
|
|
|
|
|
|
void opj_cond_wait(opj_cond_t* cond, opj_mutex_t* mutex)
|
|
|
|
{
|
|
|
|
opj_cond_waiter_list_t* item;
|
2017-05-09 15:44:46 +02:00
|
|
|
HANDLE hEvent = (HANDLE) TlsGetValue(TLSKey);
|
|
|
|
if (hEvent == NULL) {
|
2016-05-25 16:34:52 +02:00
|
|
|
hEvent = CreateEvent(NULL, /* security attributes */
|
|
|
|
0, /* manual reset = no */
|
|
|
|
0, /* initial state = unsignaled */
|
|
|
|
NULL /* no name */);
|
|
|
|
assert(hEvent);
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
TlsSetValue(TLSKey, hEvent);
|
2016-05-25 16:34:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Insert the waiter into the waiter list of the condition */
|
|
|
|
opj_mutex_lock(cond->internal_mutex);
|
|
|
|
|
|
|
|
item = (opj_cond_waiter_list_t*)opj_malloc(sizeof(opj_cond_waiter_list_t));
|
|
|
|
assert(item != NULL);
|
|
|
|
|
|
|
|
item->hEvent = hEvent;
|
|
|
|
item->next = cond->waiter_list;
|
|
|
|
|
|
|
|
cond->waiter_list = item;
|
|
|
|
|
|
|
|
opj_mutex_unlock(cond->internal_mutex);
|
|
|
|
|
|
|
|
/* Release the client mutex before waiting for the event being signaled */
|
|
|
|
opj_mutex_unlock(mutex);
|
|
|
|
|
|
|
|
/* Ideally we would check that we do not get WAIT_FAILED but it is hard */
|
|
|
|
/* to report a failure. */
|
|
|
|
WaitForSingleObject(hEvent, INFINITE);
|
|
|
|
|
|
|
|
/* Reacquire the client mutex */
|
|
|
|
opj_mutex_lock(mutex);
|
|
|
|
}
|
|
|
|
|
|
|
|
void opj_cond_signal(opj_cond_t* cond)
|
|
|
|
{
|
|
|
|
opj_cond_waiter_list_t* psIter;
|
|
|
|
|
|
|
|
/* Signal the first registered event, and remove it from the list */
|
|
|
|
opj_mutex_lock(cond->internal_mutex);
|
|
|
|
|
|
|
|
psIter = cond->waiter_list;
|
2017-05-09 15:44:46 +02:00
|
|
|
if (psIter != NULL) {
|
2016-05-25 16:34:52 +02:00
|
|
|
SetEvent(psIter->hEvent);
|
|
|
|
cond->waiter_list = psIter->next;
|
|
|
|
opj_free(psIter);
|
|
|
|
}
|
|
|
|
|
|
|
|
opj_mutex_unlock(cond->internal_mutex);
|
|
|
|
}
|
|
|
|
|
|
|
|
void opj_cond_destroy(opj_cond_t* cond)
|
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
if (!cond) {
|
|
|
|
return;
|
|
|
|
}
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_mutex_destroy(cond->internal_mutex);
|
|
|
|
assert(cond->waiter_list == NULL);
|
|
|
|
opj_free(cond);
|
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
struct opj_thread_t {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_thread_fn thread_fn;
|
|
|
|
void* user_data;
|
|
|
|
HANDLE hThread;
|
|
|
|
};
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
unsigned int __stdcall opj_thread_callback_adapter(void *info)
|
2016-05-25 16:34:52 +02:00
|
|
|
{
|
|
|
|
opj_thread_t* thread = (opj_thread_t*) info;
|
|
|
|
HANDLE hEvent = NULL;
|
2016-08-11 21:50:46 +02:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
thread->thread_fn(thread->user_data);
|
2016-05-25 16:34:52 +02:00
|
|
|
|
|
|
|
/* Free the handle possible allocated by a cond */
|
2017-05-09 15:44:46 +02:00
|
|
|
while (OPJ_TRUE) {
|
2016-05-25 16:34:52 +02:00
|
|
|
/* Make sure TLSKey is not being created just at that moment... */
|
|
|
|
#if HAVE_INTERLOCKED_COMPARE_EXCHANGE
|
2017-05-09 15:44:46 +02:00
|
|
|
if (InterlockedCompareExchange(&inTLSLockedSection, 1, 0) == 0)
|
2016-05-25 16:34:52 +02:00
|
|
|
#endif
|
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
if (TLSKeyInit) {
|
|
|
|
hEvent = (HANDLE) TlsGetValue(TLSKey);
|
2016-05-25 16:34:52 +02:00
|
|
|
}
|
|
|
|
#if HAVE_INTERLOCKED_COMPARE_EXCHANGE
|
|
|
|
InterlockedCompareExchange(&inTLSLockedSection, 0, 1);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
if (hEvent) {
|
2016-05-25 16:34:52 +02:00
|
|
|
CloseHandle(hEvent);
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2016-05-25 16:34:52 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
opj_thread_t* opj_thread_create(opj_thread_fn thread_fn, void* user_data)
|
2016-05-25 16:34:52 +02:00
|
|
|
{
|
|
|
|
opj_thread_t* thread;
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
assert(thread_fn);
|
2016-05-25 16:34:52 +02:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
thread = (opj_thread_t*) opj_malloc(sizeof(opj_thread_t));
|
|
|
|
if (!thread) {
|
2016-05-25 16:34:52 +02:00
|
|
|
return NULL;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2016-05-25 16:34:52 +02:00
|
|
|
thread->thread_fn = thread_fn;
|
|
|
|
thread->user_data = user_data;
|
|
|
|
|
2016-08-11 21:50:46 +02:00
|
|
|
thread->hThread = (HANDLE)_beginthreadex(NULL, 0,
|
2017-05-09 15:44:46 +02:00
|
|
|
opj_thread_callback_adapter, thread, 0, NULL);
|
2016-05-25 16:34:52 +02:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if (thread->hThread == NULL) {
|
|
|
|
opj_free(thread);
|
2016-05-25 16:34:52 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return thread;
|
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
void opj_thread_join(opj_thread_t* thread)
|
2016-05-25 16:34:52 +02:00
|
|
|
{
|
|
|
|
WaitForSingleObject(thread->hThread, INFINITE);
|
2017-05-09 15:44:46 +02:00
|
|
|
CloseHandle(thread->hThread);
|
2016-05-25 16:34:52 +02:00
|
|
|
|
|
|
|
opj_free(thread);
|
|
|
|
}
|
|
|
|
|
|
|
|
#elif MUTEX_pthread
|
|
|
|
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2017-09-07 17:52:59 +02:00
|
|
|
/* Moved after all system includes, and in particular pthread.h, so as to */
|
|
|
|
/* avoid poisoning issuing with malloc() use in pthread.h with ulibc (#1013) */
|
|
|
|
#include "opj_includes.h"
|
|
|
|
|
2016-05-25 16:34:52 +02:00
|
|
|
OPJ_BOOL OPJ_CALLCONV opj_has_thread_support(void)
|
|
|
|
{
|
|
|
|
return OPJ_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
int OPJ_CALLCONV opj_get_num_cpus(void)
|
|
|
|
{
|
|
|
|
#ifdef _SC_NPROCESSORS_ONLN
|
|
|
|
return (int)sysconf(_SC_NPROCESSORS_ONLN);
|
|
|
|
#else
|
|
|
|
return 1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
struct opj_mutex_t {
|
2016-05-25 16:34:52 +02:00
|
|
|
pthread_mutex_t mutex;
|
|
|
|
};
|
|
|
|
|
|
|
|
opj_mutex_t* opj_mutex_create(void)
|
|
|
|
{
|
2016-09-14 00:12:43 +02:00
|
|
|
opj_mutex_t* mutex = (opj_mutex_t*) opj_calloc(1U, sizeof(opj_mutex_t));
|
2017-05-09 15:44:46 +02:00
|
|
|
if (mutex != NULL) {
|
|
|
|
if (pthread_mutex_init(&mutex->mutex, NULL) != 0) {
|
2016-09-14 00:12:43 +02:00
|
|
|
opj_free(mutex);
|
|
|
|
mutex = NULL;
|
|
|
|
}
|
|
|
|
}
|
2016-05-25 16:34:52 +02:00
|
|
|
return mutex;
|
|
|
|
}
|
|
|
|
|
|
|
|
void opj_mutex_lock(opj_mutex_t* mutex)
|
|
|
|
{
|
|
|
|
pthread_mutex_lock(&(mutex->mutex));
|
|
|
|
}
|
|
|
|
|
|
|
|
void opj_mutex_unlock(opj_mutex_t* mutex)
|
|
|
|
{
|
|
|
|
pthread_mutex_unlock(&(mutex->mutex));
|
|
|
|
}
|
|
|
|
|
|
|
|
void opj_mutex_destroy(opj_mutex_t* mutex)
|
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
if (!mutex) {
|
|
|
|
return;
|
|
|
|
}
|
2016-05-25 16:34:52 +02:00
|
|
|
pthread_mutex_destroy(&(mutex->mutex));
|
|
|
|
opj_free(mutex);
|
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
struct opj_cond_t {
|
2016-05-25 16:34:52 +02:00
|
|
|
pthread_cond_t cond;
|
|
|
|
};
|
|
|
|
|
|
|
|
opj_cond_t* opj_cond_create(void)
|
|
|
|
{
|
|
|
|
opj_cond_t* cond = (opj_cond_t*) opj_malloc(sizeof(opj_cond_t));
|
2017-05-09 15:44:46 +02:00
|
|
|
if (!cond) {
|
2016-05-25 16:34:52 +02:00
|
|
|
return NULL;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
|
|
|
if (pthread_cond_init(&(cond->cond), NULL) != 0) {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_free(cond);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return cond;
|
|
|
|
}
|
|
|
|
|
|
|
|
void opj_cond_wait(opj_cond_t* cond, opj_mutex_t* mutex)
|
|
|
|
{
|
|
|
|
pthread_cond_wait(&(cond->cond), &(mutex->mutex));
|
|
|
|
}
|
|
|
|
|
|
|
|
void opj_cond_signal(opj_cond_t* cond)
|
|
|
|
{
|
|
|
|
int ret = pthread_cond_signal(&(cond->cond));
|
|
|
|
(void)ret;
|
|
|
|
assert(ret == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void opj_cond_destroy(opj_cond_t* cond)
|
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
if (!cond) {
|
|
|
|
return;
|
|
|
|
}
|
2016-05-25 16:34:52 +02:00
|
|
|
pthread_cond_destroy(&(cond->cond));
|
|
|
|
opj_free(cond);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
struct opj_thread_t {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_thread_fn thread_fn;
|
|
|
|
void* user_data;
|
|
|
|
pthread_t thread;
|
|
|
|
};
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
static void* opj_thread_callback_adapter(void* info)
|
2016-05-25 16:34:52 +02:00
|
|
|
{
|
|
|
|
opj_thread_t* thread = (opj_thread_t*) info;
|
2017-05-09 15:44:46 +02:00
|
|
|
thread->thread_fn(thread->user_data);
|
2016-05-25 16:34:52 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
opj_thread_t* opj_thread_create(opj_thread_fn thread_fn, void* user_data)
|
2016-05-25 16:34:52 +02:00
|
|
|
{
|
|
|
|
pthread_attr_t attr;
|
|
|
|
opj_thread_t* thread;
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
assert(thread_fn);
|
2016-05-25 16:34:52 +02:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
thread = (opj_thread_t*) opj_malloc(sizeof(opj_thread_t));
|
|
|
|
if (!thread) {
|
2016-05-25 16:34:52 +02:00
|
|
|
return NULL;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2016-05-25 16:34:52 +02:00
|
|
|
thread->thread_fn = thread_fn;
|
|
|
|
thread->user_data = user_data;
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
pthread_attr_init(&attr);
|
|
|
|
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
|
|
|
|
if (pthread_create(&(thread->thread), &attr,
|
|
|
|
opj_thread_callback_adapter, (void *) thread) != 0) {
|
|
|
|
opj_free(thread);
|
2016-05-25 16:34:52 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return thread;
|
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
void opj_thread_join(opj_thread_t* thread)
|
2016-05-25 16:34:52 +02:00
|
|
|
{
|
|
|
|
void* status;
|
2017-05-09 15:44:46 +02:00
|
|
|
pthread_join(thread->thread, &status);
|
2016-05-25 16:34:52 +02:00
|
|
|
|
|
|
|
opj_free(thread);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
/* Stub implementation */
|
|
|
|
|
2017-09-07 17:52:59 +02:00
|
|
|
#include "opj_includes.h"
|
|
|
|
|
2016-05-25 16:34:52 +02:00
|
|
|
OPJ_BOOL OPJ_CALLCONV opj_has_thread_support(void)
|
|
|
|
{
|
|
|
|
return OPJ_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
int OPJ_CALLCONV opj_get_num_cpus(void)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
opj_mutex_t* opj_mutex_create(void)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void opj_mutex_lock(opj_mutex_t* mutex)
|
|
|
|
{
|
|
|
|
(void) mutex;
|
|
|
|
}
|
|
|
|
|
|
|
|
void opj_mutex_unlock(opj_mutex_t* mutex)
|
|
|
|
{
|
|
|
|
(void) mutex;
|
|
|
|
}
|
|
|
|
|
|
|
|
void opj_mutex_destroy(opj_mutex_t* mutex)
|
|
|
|
{
|
|
|
|
(void) mutex;
|
|
|
|
}
|
|
|
|
|
|
|
|
opj_cond_t* opj_cond_create(void)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void opj_cond_wait(opj_cond_t* cond, opj_mutex_t* mutex)
|
|
|
|
{
|
|
|
|
(void) cond;
|
|
|
|
(void) mutex;
|
|
|
|
}
|
|
|
|
|
|
|
|
void opj_cond_signal(opj_cond_t* cond)
|
|
|
|
{
|
|
|
|
(void) cond;
|
|
|
|
}
|
|
|
|
|
|
|
|
void opj_cond_destroy(opj_cond_t* cond)
|
|
|
|
{
|
|
|
|
(void) cond;
|
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
opj_thread_t* opj_thread_create(opj_thread_fn thread_fn, void* user_data)
|
2016-05-25 16:34:52 +02:00
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
(void) thread_fn;
|
2016-05-25 16:34:52 +02:00
|
|
|
(void) user_data;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
void opj_thread_join(opj_thread_t* thread)
|
2016-05-25 16:34:52 +02:00
|
|
|
{
|
|
|
|
(void) thread;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
typedef struct {
|
2016-05-25 16:34:52 +02:00
|
|
|
int key;
|
|
|
|
void* value;
|
|
|
|
opj_tls_free_func opj_free_func;
|
|
|
|
} opj_tls_key_val_t;
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
struct opj_tls_t {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_tls_key_val_t* key_val;
|
|
|
|
int key_val_count;
|
|
|
|
};
|
|
|
|
|
|
|
|
static opj_tls_t* opj_tls_new(void)
|
|
|
|
{
|
|
|
|
return (opj_tls_t*) opj_calloc(1, sizeof(opj_tls_t));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void opj_tls_destroy(opj_tls_t* tls)
|
|
|
|
{
|
|
|
|
int i;
|
2017-05-09 15:44:46 +02:00
|
|
|
if (!tls) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (i = 0; i < tls->key_val_count; i++) {
|
|
|
|
if (tls->key_val[i].opj_free_func) {
|
2016-05-25 16:34:52 +02:00
|
|
|
tls->key_val[i].opj_free_func(tls->key_val[i].value);
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2016-05-25 16:34:52 +02:00
|
|
|
}
|
|
|
|
opj_free(tls->key_val);
|
|
|
|
opj_free(tls);
|
|
|
|
}
|
|
|
|
|
|
|
|
void* opj_tls_get(opj_tls_t* tls, int key)
|
|
|
|
{
|
|
|
|
int i;
|
2017-05-09 15:44:46 +02:00
|
|
|
for (i = 0; i < tls->key_val_count; i++) {
|
|
|
|
if (tls->key_val[i].key == key) {
|
2016-05-25 16:34:52 +02:00
|
|
|
return tls->key_val[i].value;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2016-05-25 16:34:52 +02:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
OPJ_BOOL opj_tls_set(opj_tls_t* tls, int key, void* value,
|
|
|
|
opj_tls_free_func opj_free_func)
|
2016-05-25 16:34:52 +02:00
|
|
|
{
|
|
|
|
opj_tls_key_val_t* new_key_val;
|
|
|
|
int i;
|
2017-05-09 15:44:46 +02:00
|
|
|
|
2016-09-14 00:12:43 +02:00
|
|
|
if (tls->key_val_count == INT_MAX) {
|
|
|
|
return OPJ_FALSE;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
for (i = 0; i < tls->key_val_count; i++) {
|
|
|
|
if (tls->key_val[i].key == key) {
|
|
|
|
if (tls->key_val[i].opj_free_func) {
|
2016-05-25 16:34:52 +02:00
|
|
|
tls->key_val[i].opj_free_func(tls->key_val[i].value);
|
2016-09-14 00:12:43 +02:00
|
|
|
}
|
2016-05-25 16:34:52 +02:00
|
|
|
tls->key_val[i].value = value;
|
|
|
|
tls->key_val[i].opj_free_func = opj_free_func;
|
|
|
|
return OPJ_TRUE;
|
|
|
|
}
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
new_key_val = (opj_tls_key_val_t*) opj_realloc(tls->key_val,
|
|
|
|
((size_t)tls->key_val_count + 1U) * sizeof(opj_tls_key_val_t));
|
|
|
|
if (!new_key_val) {
|
2016-05-25 16:34:52 +02:00
|
|
|
return OPJ_FALSE;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2016-05-25 16:34:52 +02:00
|
|
|
tls->key_val = new_key_val;
|
|
|
|
new_key_val[tls->key_val_count].key = key;
|
|
|
|
new_key_val[tls->key_val_count].value = value;
|
|
|
|
new_key_val[tls->key_val_count].opj_free_func = opj_free_func;
|
|
|
|
tls->key_val_count ++;
|
|
|
|
return OPJ_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
typedef struct {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_job_fn job_fn;
|
|
|
|
void *user_data;
|
|
|
|
} opj_worker_thread_job_t;
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
typedef struct {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_thread_pool_t *tp;
|
|
|
|
opj_thread_t *thread;
|
|
|
|
int marked_as_waiting;
|
|
|
|
|
|
|
|
opj_mutex_t *mutex;
|
|
|
|
opj_cond_t *cond;
|
|
|
|
} opj_worker_thread_t;
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
typedef enum {
|
2016-05-25 16:34:52 +02:00
|
|
|
OPJWTS_OK,
|
|
|
|
OPJWTS_STOP,
|
|
|
|
OPJWTS_ERROR
|
|
|
|
} opj_worker_thread_state;
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
struct opj_job_list_t {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_worker_thread_job_t* job;
|
|
|
|
struct opj_job_list_t* next;
|
|
|
|
};
|
|
|
|
typedef struct opj_job_list_t opj_job_list_t;
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
struct opj_worker_thread_list_t {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_worker_thread_t* worker_thread;
|
|
|
|
struct opj_worker_thread_list_t* next;
|
|
|
|
};
|
|
|
|
typedef struct opj_worker_thread_list_t opj_worker_thread_list_t;
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
struct opj_thread_pool_t {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_worker_thread_t* worker_threads;
|
|
|
|
int worker_threads_count;
|
|
|
|
opj_cond_t* cond;
|
|
|
|
opj_mutex_t* mutex;
|
|
|
|
volatile opj_worker_thread_state state;
|
|
|
|
opj_job_list_t* job_queue;
|
|
|
|
volatile int pending_jobs_count;
|
|
|
|
opj_worker_thread_list_t* waiting_worker_thread_list;
|
|
|
|
int waiting_worker_thread_count;
|
|
|
|
opj_tls_t* tls;
|
|
|
|
int signaling_threshold;
|
|
|
|
};
|
|
|
|
|
|
|
|
static OPJ_BOOL opj_thread_pool_setup(opj_thread_pool_t* tp, int num_threads);
|
2017-05-09 15:44:46 +02:00
|
|
|
static opj_worker_thread_job_t* opj_thread_pool_get_next_job(
|
|
|
|
opj_thread_pool_t* tp,
|
|
|
|
opj_worker_thread_t* worker_thread,
|
|
|
|
OPJ_BOOL signal_job_finished);
|
2016-05-25 16:34:52 +02:00
|
|
|
|
|
|
|
opj_thread_pool_t* opj_thread_pool_create(int num_threads)
|
|
|
|
{
|
|
|
|
opj_thread_pool_t* tp;
|
|
|
|
|
|
|
|
tp = (opj_thread_pool_t*) opj_calloc(1, sizeof(opj_thread_pool_t));
|
2017-05-09 15:44:46 +02:00
|
|
|
if (!tp) {
|
2016-05-25 16:34:52 +02:00
|
|
|
return NULL;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2016-05-25 16:34:52 +02:00
|
|
|
tp->state = OPJWTS_OK;
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if (num_threads <= 0) {
|
2016-05-25 16:34:52 +02:00
|
|
|
tp->tls = opj_tls_new();
|
2017-05-09 15:44:46 +02:00
|
|
|
if (!tp->tls) {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_free(tp);
|
|
|
|
tp = NULL;
|
|
|
|
}
|
|
|
|
return tp;
|
|
|
|
}
|
|
|
|
|
|
|
|
tp->mutex = opj_mutex_create();
|
2017-05-09 15:44:46 +02:00
|
|
|
if (!tp->mutex) {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_free(tp);
|
|
|
|
return NULL;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
if (!opj_thread_pool_setup(tp, num_threads)) {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_thread_pool_destroy(tp);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return tp;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void opj_worker_thread_function(void* user_data)
|
|
|
|
{
|
|
|
|
opj_worker_thread_t* worker_thread;
|
|
|
|
opj_thread_pool_t* tp;
|
|
|
|
opj_tls_t* tls;
|
|
|
|
OPJ_BOOL job_finished = OPJ_FALSE;
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
worker_thread = (opj_worker_thread_t*) user_data;
|
2016-05-25 16:34:52 +02:00
|
|
|
tp = worker_thread->tp;
|
|
|
|
tls = opj_tls_new();
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
while (OPJ_TRUE) {
|
|
|
|
opj_worker_thread_job_t* job = opj_thread_pool_get_next_job(tp, worker_thread,
|
|
|
|
job_finished);
|
|
|
|
if (job == NULL) {
|
2016-05-25 16:34:52 +02:00
|
|
|
break;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2016-05-25 16:34:52 +02:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if (job->job_fn) {
|
2016-05-25 16:34:52 +02:00
|
|
|
job->job_fn(job->user_data, tls);
|
|
|
|
}
|
|
|
|
opj_free(job);
|
|
|
|
job_finished = OPJ_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
opj_tls_destroy(tls);
|
|
|
|
}
|
|
|
|
|
|
|
|
static OPJ_BOOL opj_thread_pool_setup(opj_thread_pool_t* tp, int num_threads)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
OPJ_BOOL bRet = OPJ_TRUE;
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
assert(num_threads > 0);
|
2016-05-25 16:34:52 +02:00
|
|
|
|
|
|
|
tp->cond = opj_cond_create();
|
2017-05-09 15:44:46 +02:00
|
|
|
if (tp->cond == NULL) {
|
2016-05-25 16:34:52 +02:00
|
|
|
return OPJ_FALSE;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2016-05-25 16:34:52 +02:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
tp->worker_threads = (opj_worker_thread_t*) opj_calloc((size_t)num_threads,
|
|
|
|
sizeof(opj_worker_thread_t));
|
|
|
|
if (tp->worker_threads == NULL) {
|
2016-05-25 16:34:52 +02:00
|
|
|
return OPJ_FALSE;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2016-05-25 16:34:52 +02:00
|
|
|
tp->worker_threads_count = num_threads;
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
for (i = 0; i < num_threads; i++) {
|
2016-05-25 16:34:52 +02:00
|
|
|
tp->worker_threads[i].tp = tp;
|
|
|
|
|
|
|
|
tp->worker_threads[i].mutex = opj_mutex_create();
|
2017-05-09 15:44:46 +02:00
|
|
|
if (tp->worker_threads[i].mutex == NULL) {
|
2016-05-25 16:34:52 +02:00
|
|
|
tp->worker_threads_count = i;
|
|
|
|
bRet = OPJ_FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
tp->worker_threads[i].cond = opj_cond_create();
|
2017-05-09 15:44:46 +02:00
|
|
|
if (tp->worker_threads[i].cond == NULL) {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_mutex_destroy(tp->worker_threads[i].mutex);
|
|
|
|
tp->worker_threads_count = i;
|
|
|
|
bRet = OPJ_FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
tp->worker_threads[i].marked_as_waiting = OPJ_FALSE;
|
|
|
|
|
|
|
|
tp->worker_threads[i].thread = opj_thread_create(opj_worker_thread_function,
|
2017-05-09 15:44:46 +02:00
|
|
|
&(tp->worker_threads[i]));
|
|
|
|
if (tp->worker_threads[i].thread == NULL) {
|
2018-10-18 11:45:45 +02:00
|
|
|
opj_mutex_destroy(tp->worker_threads[i].mutex);
|
|
|
|
opj_cond_destroy(tp->worker_threads[i].cond);
|
2016-05-25 16:34:52 +02:00
|
|
|
tp->worker_threads_count = i;
|
|
|
|
bRet = OPJ_FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait all threads to be started */
|
|
|
|
/* printf("waiting for all threads to be started\n"); */
|
|
|
|
opj_mutex_lock(tp->mutex);
|
2018-10-18 11:45:45 +02:00
|
|
|
while (tp->waiting_worker_thread_count < tp->worker_threads_count) {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_cond_wait(tp->cond, tp->mutex);
|
|
|
|
}
|
|
|
|
opj_mutex_unlock(tp->mutex);
|
|
|
|
/* printf("all threads started\n"); */
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if (tp->state == OPJWTS_ERROR) {
|
2016-05-25 16:34:52 +02:00
|
|
|
bRet = OPJ_FALSE;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2016-05-25 16:34:52 +02:00
|
|
|
|
|
|
|
return bRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
void opj_waiting()
|
|
|
|
{
|
|
|
|
printf("waiting!\n");
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
static opj_worker_thread_job_t* opj_thread_pool_get_next_job(
|
|
|
|
opj_thread_pool_t* tp,
|
|
|
|
opj_worker_thread_t* worker_thread,
|
|
|
|
OPJ_BOOL signal_job_finished)
|
2016-05-25 16:34:52 +02:00
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
while (OPJ_TRUE) {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_job_list_t* top_job_iter;
|
|
|
|
|
|
|
|
opj_mutex_lock(tp->mutex);
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if (signal_job_finished) {
|
2016-05-25 16:34:52 +02:00
|
|
|
signal_job_finished = OPJ_FALSE;
|
|
|
|
tp->pending_jobs_count --;
|
|
|
|
/*printf("tp=%p, remaining jobs: %d\n", tp, tp->pending_jobs_count);*/
|
2017-05-09 15:44:46 +02:00
|
|
|
if (tp->pending_jobs_count <= tp->signaling_threshold) {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_cond_signal(tp->cond);
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2016-05-25 16:34:52 +02:00
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if (tp->state == OPJWTS_STOP) {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_mutex_unlock(tp->mutex);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
top_job_iter = tp->job_queue;
|
2017-05-09 15:44:46 +02:00
|
|
|
if (top_job_iter) {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_worker_thread_job_t* job;
|
|
|
|
tp->job_queue = top_job_iter->next;
|
|
|
|
|
|
|
|
job = top_job_iter->job;
|
|
|
|
opj_mutex_unlock(tp->mutex);
|
|
|
|
opj_free(top_job_iter);
|
|
|
|
return job;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* opj_waiting(); */
|
2017-05-09 15:44:46 +02:00
|
|
|
if (!worker_thread->marked_as_waiting) {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_worker_thread_list_t* item;
|
|
|
|
|
|
|
|
worker_thread->marked_as_waiting = OPJ_TRUE;
|
|
|
|
tp->waiting_worker_thread_count ++;
|
|
|
|
assert(tp->waiting_worker_thread_count <= tp->worker_threads_count);
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
item = (opj_worker_thread_list_t*) opj_malloc(sizeof(opj_worker_thread_list_t));
|
|
|
|
if (item == NULL) {
|
2016-05-25 16:34:52 +02:00
|
|
|
tp->state = OPJWTS_ERROR;
|
|
|
|
opj_cond_signal(tp->cond);
|
|
|
|
|
|
|
|
opj_mutex_unlock(tp->mutex);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
item->worker_thread = worker_thread;
|
|
|
|
item->next = tp->waiting_worker_thread_list;
|
|
|
|
tp->waiting_worker_thread_list = item;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* printf("signaling that worker thread is ready\n"); */
|
|
|
|
opj_cond_signal(tp->cond);
|
|
|
|
|
|
|
|
opj_mutex_lock(worker_thread->mutex);
|
|
|
|
opj_mutex_unlock(tp->mutex);
|
|
|
|
|
|
|
|
/* printf("waiting for job\n"); */
|
2017-05-09 15:44:46 +02:00
|
|
|
opj_cond_wait(worker_thread->cond, worker_thread->mutex);
|
2016-05-25 16:34:52 +02:00
|
|
|
|
|
|
|
opj_mutex_unlock(worker_thread->mutex);
|
|
|
|
/* printf("got job\n"); */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
OPJ_BOOL opj_thread_pool_submit_job(opj_thread_pool_t* tp,
|
|
|
|
opj_job_fn job_fn,
|
|
|
|
void* user_data)
|
|
|
|
{
|
|
|
|
opj_worker_thread_job_t* job;
|
|
|
|
opj_job_list_t* item;
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if (tp->mutex == NULL) {
|
|
|
|
job_fn(user_data, tp->tls);
|
2016-05-25 16:34:52 +02:00
|
|
|
return OPJ_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
job = (opj_worker_thread_job_t*)opj_malloc(sizeof(opj_worker_thread_job_t));
|
2017-05-09 15:44:46 +02:00
|
|
|
if (job == NULL) {
|
2016-05-25 16:34:52 +02:00
|
|
|
return OPJ_FALSE;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2016-05-25 16:34:52 +02:00
|
|
|
job->job_fn = job_fn;
|
|
|
|
job->user_data = user_data;
|
|
|
|
|
|
|
|
item = (opj_job_list_t*) opj_malloc(sizeof(opj_job_list_t));
|
2017-05-09 15:44:46 +02:00
|
|
|
if (item == NULL) {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_free(job);
|
|
|
|
return OPJ_FALSE;
|
|
|
|
}
|
|
|
|
item->job = job;
|
|
|
|
|
|
|
|
opj_mutex_lock(tp->mutex);
|
|
|
|
|
|
|
|
tp->signaling_threshold = 100 * tp->worker_threads_count;
|
2017-05-09 15:44:46 +02:00
|
|
|
while (tp->pending_jobs_count > tp->signaling_threshold) {
|
2016-05-25 16:34:52 +02:00
|
|
|
/* printf("%d jobs enqueued. Waiting\n", tp->pending_jobs_count); */
|
|
|
|
opj_cond_wait(tp->cond, tp->mutex);
|
|
|
|
/* printf("...%d jobs enqueued.\n", tp->pending_jobs_count); */
|
|
|
|
}
|
|
|
|
|
|
|
|
item->next = tp->job_queue;
|
|
|
|
tp->job_queue = item;
|
|
|
|
tp->pending_jobs_count ++;
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if (tp->waiting_worker_thread_list) {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_worker_thread_t* worker_thread;
|
|
|
|
opj_worker_thread_list_t* next;
|
|
|
|
opj_worker_thread_list_t* to_opj_free;
|
|
|
|
|
|
|
|
worker_thread = tp->waiting_worker_thread_list->worker_thread;
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
assert(worker_thread->marked_as_waiting);
|
2016-05-25 16:34:52 +02:00
|
|
|
worker_thread->marked_as_waiting = OPJ_FALSE;
|
|
|
|
|
|
|
|
next = tp->waiting_worker_thread_list->next;
|
|
|
|
to_opj_free = tp->waiting_worker_thread_list;
|
|
|
|
tp->waiting_worker_thread_list = next;
|
|
|
|
tp->waiting_worker_thread_count --;
|
|
|
|
|
|
|
|
opj_mutex_lock(worker_thread->mutex);
|
|
|
|
opj_mutex_unlock(tp->mutex);
|
|
|
|
opj_cond_signal(worker_thread->cond);
|
|
|
|
opj_mutex_unlock(worker_thread->mutex);
|
|
|
|
|
|
|
|
opj_free(to_opj_free);
|
2017-05-09 15:44:46 +02:00
|
|
|
} else {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_mutex_unlock(tp->mutex);
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2016-05-25 16:34:52 +02:00
|
|
|
|
|
|
|
return OPJ_TRUE;
|
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
void opj_thread_pool_wait_completion(opj_thread_pool_t* tp,
|
|
|
|
int max_remaining_jobs)
|
2016-05-25 16:34:52 +02:00
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
if (tp->mutex == NULL) {
|
2016-05-25 16:34:52 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if (max_remaining_jobs < 0) {
|
2016-05-25 16:34:52 +02:00
|
|
|
max_remaining_jobs = 0;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_mutex_lock(tp->mutex);
|
|
|
|
tp->signaling_threshold = max_remaining_jobs;
|
2017-05-09 15:44:46 +02:00
|
|
|
while (tp->pending_jobs_count > max_remaining_jobs) {
|
2016-05-25 16:34:52 +02:00
|
|
|
/*printf("tp=%p, jobs before wait = %d, max_remaining_jobs = %d\n", tp, tp->pending_jobs_count, max_remaining_jobs);*/
|
|
|
|
opj_cond_wait(tp->cond, tp->mutex);
|
|
|
|
/*printf("tp=%p, jobs after wait = %d\n", tp, tp->pending_jobs_count);*/
|
|
|
|
}
|
|
|
|
opj_mutex_unlock(tp->mutex);
|
|
|
|
}
|
|
|
|
|
|
|
|
int opj_thread_pool_get_thread_count(opj_thread_pool_t* tp)
|
|
|
|
{
|
|
|
|
return tp->worker_threads_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
void opj_thread_pool_destroy(opj_thread_pool_t* tp)
|
|
|
|
{
|
2017-05-09 15:44:46 +02:00
|
|
|
if (!tp) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (tp->cond) {
|
2016-05-25 16:34:52 +02:00
|
|
|
int i;
|
|
|
|
opj_thread_pool_wait_completion(tp, 0);
|
|
|
|
|
2016-09-08 09:43:36 +02:00
|
|
|
opj_mutex_lock(tp->mutex);
|
2016-05-25 16:34:52 +02:00
|
|
|
tp->state = OPJWTS_STOP;
|
2016-09-08 09:43:36 +02:00
|
|
|
opj_mutex_unlock(tp->mutex);
|
2016-05-25 16:34:52 +02:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
for (i = 0; i < tp->worker_threads_count; i++) {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_mutex_lock(tp->worker_threads[i].mutex);
|
|
|
|
opj_cond_signal(tp->worker_threads[i].cond);
|
|
|
|
opj_mutex_unlock(tp->worker_threads[i].mutex);
|
|
|
|
opj_thread_join(tp->worker_threads[i].thread);
|
|
|
|
opj_cond_destroy(tp->worker_threads[i].cond);
|
|
|
|
opj_mutex_destroy(tp->worker_threads[i].mutex);
|
|
|
|
}
|
|
|
|
|
|
|
|
opj_free(tp->worker_threads);
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
while (tp->waiting_worker_thread_list != NULL) {
|
2016-05-25 16:34:52 +02:00
|
|
|
opj_worker_thread_list_t* next = tp->waiting_worker_thread_list->next;
|
2017-05-09 15:44:46 +02:00
|
|
|
opj_free(tp->waiting_worker_thread_list);
|
2016-05-25 16:34:52 +02:00
|
|
|
tp->waiting_worker_thread_list = next;
|
|
|
|
}
|
|
|
|
|
|
|
|
opj_cond_destroy(tp->cond);
|
|
|
|
}
|
|
|
|
opj_mutex_destroy(tp->mutex);
|
|
|
|
opj_tls_destroy(tp->tls);
|
|
|
|
opj_free(tp);
|
|
|
|
}
|