blob: 0ae8f2f49d469edcab19a15a2c7b8ae758ff2b6a [file] [log] [blame]
Yaowu Xu9c01aa12016-09-01 14:32:49 -07001/*
2 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
3 *
4 * This source code is subject to the terms of the BSD 2 Clause License and
5 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6 * was not distributed with this source code in the LICENSE file, you can
7 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
8 * Media Patent License 1.0 was not distributed with this source code in the
9 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
10 */
James Zern183b77d2013-07-30 22:46:58 -070011//
12// Multi-threaded worker
13//
14// Original source:
Johann2967bf32016-06-22 16:08:10 -070015// https://chromium.googlesource.com/webm/libwebp
James Zern183b77d2013-07-30 22:46:58 -070016
Yaowu Xuf883b422016-08-30 14:01:10 -070017#ifndef AOM_THREAD_H_
18#define AOM_THREAD_H_
James Zern183b77d2013-07-30 22:46:58 -070019
Yaowu Xuf883b422016-08-30 14:01:10 -070020#include "./aom_config.h"
James Zern183b77d2013-07-30 22:46:58 -070021
James Zern40aa9102014-01-18 12:16:11 -080022#ifdef __cplusplus
James Zern183b77d2013-07-30 22:46:58 -070023extern "C" {
24#endif
25
hkuangdd88f482015-02-05 13:59:15 -080026// Set maximum decode threads to be 8 due to the limit of frame buffers
27// and not enough semaphores in the emulation layer on windows.
28#define MAX_DECODE_THREADS 8
29
James Zern183b77d2013-07-30 22:46:58 -070030#if CONFIG_MULTITHREAD
31
James Zernd167a1a2015-02-10 12:47:14 -080032#if defined(_WIN32) && !HAVE_PTHREAD_H
clang-format3a992f82016-08-10 17:02:06 -070033#include <errno.h> // NOLINT
Yunqing Wang903801f2013-12-27 15:25:54 -080034#include <process.h> // NOLINT
Jim Bankoskic52d8542013-10-01 15:19:39 -070035#include <windows.h> // NOLINT
James Zern183b77d2013-07-30 22:46:58 -070036typedef HANDLE pthread_t;
37typedef CRITICAL_SECTION pthread_mutex_t;
Johann2967bf32016-06-22 16:08:10 -070038
39#if _WIN32_WINNT >= 0x0600 // Windows Vista / Server 2008 or greater
40#define USE_WINDOWS_CONDITION_VARIABLE
41typedef CONDITION_VARIABLE pthread_cond_t;
42#else
James Zern183b77d2013-07-30 22:46:58 -070043typedef struct {
44 HANDLE waiting_sem_;
45 HANDLE received_sem_;
46 HANDLE signal_event_;
47} pthread_cond_t;
Johann2967bf32016-06-22 16:08:10 -070048#endif // _WIN32_WINNT >= 0x600
49
50#ifndef WINAPI_FAMILY_PARTITION
51#define WINAPI_PARTITION_DESKTOP 1
52#define WINAPI_FAMILY_PARTITION(x) x
53#endif
54
55#if !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
56#define USE_CREATE_THREAD
57#endif
James Zern183b77d2013-07-30 22:46:58 -070058
Yunqing Wang903801f2013-12-27 15:25:54 -080059//------------------------------------------------------------------------------
60// simplistic pthread emulation layer
James Zern183b77d2013-07-30 22:46:58 -070061
Yunqing Wang903801f2013-12-27 15:25:54 -080062// _beginthreadex requires __stdcall
63#define THREADFN unsigned int __stdcall
64#define THREAD_RETURN(val) (unsigned int)((DWORD_PTR)val)
65
Johann2967bf32016-06-22 16:08:10 -070066#if _WIN32_WINNT >= 0x0501 // Windows XP or greater
67#define WaitForSingleObject(obj, timeout) \
68 WaitForSingleObjectEx(obj, timeout, FALSE /*bAlertable*/)
69#endif
70
clang-format3a992f82016-08-10 17:02:06 -070071static INLINE int pthread_create(pthread_t *const thread, const void *attr,
72 unsigned int(__stdcall *start)(void *),
73 void *arg) {
Yunqing Wang903801f2013-12-27 15:25:54 -080074 (void)attr;
Johann2967bf32016-06-22 16:08:10 -070075#ifdef USE_CREATE_THREAD
clang-format3a992f82016-08-10 17:02:06 -070076 *thread = CreateThread(NULL, /* lpThreadAttributes */
77 0, /* dwStackSize */
78 start, arg, 0, /* dwStackSize */
79 NULL); /* lpThreadId */
Johann2967bf32016-06-22 16:08:10 -070080#else
clang-format3a992f82016-08-10 17:02:06 -070081 *thread = (pthread_t)_beginthreadex(NULL, /* void *security */
82 0, /* unsigned stack_size */
83 start, arg, 0, /* unsigned initflag */
84 NULL); /* unsigned *thrdaddr */
Johann2967bf32016-06-22 16:08:10 -070085#endif
Yunqing Wang903801f2013-12-27 15:25:54 -080086 if (*thread == NULL) return 1;
87 SetThreadPriority(*thread, THREAD_PRIORITY_ABOVE_NORMAL);
88 return 0;
89}
90
clang-format3a992f82016-08-10 17:02:06 -070091static INLINE int pthread_join(pthread_t thread, void **value_ptr) {
Yunqing Wang903801f2013-12-27 15:25:54 -080092 (void)value_ptr;
93 return (WaitForSingleObject(thread, INFINITE) != WAIT_OBJECT_0 ||
94 CloseHandle(thread) == 0);
95}
96
97// Mutex
98static INLINE int pthread_mutex_init(pthread_mutex_t *const mutex,
clang-format3a992f82016-08-10 17:02:06 -070099 void *mutexattr) {
Yunqing Wang903801f2013-12-27 15:25:54 -0800100 (void)mutexattr;
Johann2967bf32016-06-22 16:08:10 -0700101#if _WIN32_WINNT >= 0x0600 // Windows Vista / Server 2008 or greater
102 InitializeCriticalSectionEx(mutex, 0 /*dwSpinCount*/, 0 /*Flags*/);
103#else
Yunqing Wang903801f2013-12-27 15:25:54 -0800104 InitializeCriticalSection(mutex);
Johann2967bf32016-06-22 16:08:10 -0700105#endif
Yunqing Wang903801f2013-12-27 15:25:54 -0800106 return 0;
107}
108
109static INLINE int pthread_mutex_trylock(pthread_mutex_t *const mutex) {
110 return TryEnterCriticalSection(mutex) ? 0 : EBUSY;
111}
112
113static INLINE int pthread_mutex_lock(pthread_mutex_t *const mutex) {
114 EnterCriticalSection(mutex);
115 return 0;
116}
117
118static INLINE int pthread_mutex_unlock(pthread_mutex_t *const mutex) {
119 LeaveCriticalSection(mutex);
120 return 0;
121}
122
123static INLINE int pthread_mutex_destroy(pthread_mutex_t *const mutex) {
124 DeleteCriticalSection(mutex);
125 return 0;
126}
127
128// Condition
129static INLINE int pthread_cond_destroy(pthread_cond_t *const condition) {
130 int ok = 1;
Johann2967bf32016-06-22 16:08:10 -0700131#ifdef USE_WINDOWS_CONDITION_VARIABLE
132 (void)condition;
133#else
Yunqing Wang903801f2013-12-27 15:25:54 -0800134 ok &= (CloseHandle(condition->waiting_sem_) != 0);
135 ok &= (CloseHandle(condition->received_sem_) != 0);
136 ok &= (CloseHandle(condition->signal_event_) != 0);
Johann2967bf32016-06-22 16:08:10 -0700137#endif
Yunqing Wang903801f2013-12-27 15:25:54 -0800138 return !ok;
139}
140
141static INLINE int pthread_cond_init(pthread_cond_t *const condition,
clang-format3a992f82016-08-10 17:02:06 -0700142 void *cond_attr) {
Yunqing Wang903801f2013-12-27 15:25:54 -0800143 (void)cond_attr;
Johann2967bf32016-06-22 16:08:10 -0700144#ifdef USE_WINDOWS_CONDITION_VARIABLE
145 InitializeConditionVariable(condition);
146#else
hkuangdd88f482015-02-05 13:59:15 -0800147 condition->waiting_sem_ = CreateSemaphore(NULL, 0, MAX_DECODE_THREADS, NULL);
148 condition->received_sem_ = CreateSemaphore(NULL, 0, MAX_DECODE_THREADS, NULL);
Yunqing Wang903801f2013-12-27 15:25:54 -0800149 condition->signal_event_ = CreateEvent(NULL, FALSE, FALSE, NULL);
clang-format3a992f82016-08-10 17:02:06 -0700150 if (condition->waiting_sem_ == NULL || condition->received_sem_ == NULL ||
Yunqing Wang903801f2013-12-27 15:25:54 -0800151 condition->signal_event_ == NULL) {
152 pthread_cond_destroy(condition);
153 return 1;
154 }
Johann2967bf32016-06-22 16:08:10 -0700155#endif
Yunqing Wang903801f2013-12-27 15:25:54 -0800156 return 0;
157}
158
159static INLINE int pthread_cond_signal(pthread_cond_t *const condition) {
160 int ok = 1;
Johann2967bf32016-06-22 16:08:10 -0700161#ifdef USE_WINDOWS_CONDITION_VARIABLE
162 WakeConditionVariable(condition);
163#else
Yunqing Wang903801f2013-12-27 15:25:54 -0800164 if (WaitForSingleObject(condition->waiting_sem_, 0) == WAIT_OBJECT_0) {
165 // a thread is waiting in pthread_cond_wait: allow it to be notified
166 ok = SetEvent(condition->signal_event_);
167 // wait until the event is consumed so the signaler cannot consume
168 // the event via its own pthread_cond_wait.
169 ok &= (WaitForSingleObject(condition->received_sem_, INFINITE) !=
170 WAIT_OBJECT_0);
171 }
Johann2967bf32016-06-22 16:08:10 -0700172#endif
Yunqing Wang903801f2013-12-27 15:25:54 -0800173 return !ok;
174}
175
176static INLINE int pthread_cond_wait(pthread_cond_t *const condition,
177 pthread_mutex_t *const mutex) {
178 int ok;
Johann2967bf32016-06-22 16:08:10 -0700179#ifdef USE_WINDOWS_CONDITION_VARIABLE
180 ok = SleepConditionVariableCS(condition, mutex, INFINITE);
181#else
Yunqing Wang903801f2013-12-27 15:25:54 -0800182 // note that there is a consumer available so the signal isn't dropped in
183 // pthread_cond_signal
clang-format3a992f82016-08-10 17:02:06 -0700184 if (!ReleaseSemaphore(condition->waiting_sem_, 1, NULL)) return 1;
Yunqing Wang903801f2013-12-27 15:25:54 -0800185 // now unlock the mutex so pthread_cond_signal may be issued
186 pthread_mutex_unlock(mutex);
187 ok = (WaitForSingleObject(condition->signal_event_, INFINITE) ==
188 WAIT_OBJECT_0);
189 ok &= ReleaseSemaphore(condition->received_sem_, 1, NULL);
190 pthread_mutex_lock(mutex);
Johann2967bf32016-06-22 16:08:10 -0700191#endif
Yunqing Wang903801f2013-12-27 15:25:54 -0800192 return !ok;
193}
KO Myung-Hun14e8ade2016-05-22 13:57:07 +0900194#elif defined(__OS2__)
195#define INCL_DOS
clang-format3a992f82016-08-10 17:02:06 -0700196#include <os2.h> // NOLINT
KO Myung-Hun14e8ade2016-05-22 13:57:07 +0900197
clang-format3a992f82016-08-10 17:02:06 -0700198#include <errno.h> // NOLINT
199#include <stdlib.h> // NOLINT
200#include <sys/builtin.h> // NOLINT
KO Myung-Hun14e8ade2016-05-22 13:57:07 +0900201
202#define pthread_t TID
203#define pthread_mutex_t HMTX
204
205typedef struct {
206 HEV event_sem_;
207 HEV ack_sem_;
208 volatile unsigned wait_count_;
209} pthread_cond_t;
210
211//------------------------------------------------------------------------------
212// simplistic pthread emulation layer
213
214#define THREADFN void *
215#define THREAD_RETURN(val) (val)
216
217typedef struct {
clang-format3a992f82016-08-10 17:02:06 -0700218 void *(*start_)(void *);
219 void *arg_;
KO Myung-Hun14e8ade2016-05-22 13:57:07 +0900220} thread_arg;
221
clang-format3a992f82016-08-10 17:02:06 -0700222static void thread_start(void *arg) {
KO Myung-Hun14e8ade2016-05-22 13:57:07 +0900223 thread_arg targ = *(thread_arg *)arg;
224 free(arg);
225
226 targ.start_(targ.arg_);
227}
228
clang-format3a992f82016-08-10 17:02:06 -0700229static INLINE int pthread_create(pthread_t *const thread, const void *attr,
230 void *(*start)(void *), void *arg) {
KO Myung-Hun14e8ade2016-05-22 13:57:07 +0900231 int tid;
232 thread_arg *targ = (thread_arg *)malloc(sizeof(*targ));
233 if (targ == NULL) return 1;
234
235 (void)attr;
236
237 targ->start_ = start;
238 targ->arg_ = arg;
239 tid = (pthread_t)_beginthread(thread_start, NULL, 1024 * 1024, targ);
240 if (tid == -1) {
241 free(targ);
242 return 1;
243 }
244
245 *thread = tid;
246 return 0;
247}
248
clang-format3a992f82016-08-10 17:02:06 -0700249static INLINE int pthread_join(pthread_t thread, void **value_ptr) {
KO Myung-Hun14e8ade2016-05-22 13:57:07 +0900250 (void)value_ptr;
251 return DosWaitThread(&thread, DCWW_WAIT) != 0;
252}
253
254// Mutex
255static INLINE int pthread_mutex_init(pthread_mutex_t *const mutex,
clang-format3a992f82016-08-10 17:02:06 -0700256 void *mutexattr) {
KO Myung-Hun14e8ade2016-05-22 13:57:07 +0900257 (void)mutexattr;
258 return DosCreateMutexSem(NULL, mutex, 0, FALSE) != 0;
259}
260
261static INLINE int pthread_mutex_trylock(pthread_mutex_t *const mutex) {
262 return DosRequestMutexSem(*mutex, SEM_IMMEDIATE_RETURN) == 0 ? 0 : EBUSY;
263}
264
265static INLINE int pthread_mutex_lock(pthread_mutex_t *const mutex) {
266 return DosRequestMutexSem(*mutex, SEM_INDEFINITE_WAIT) != 0;
267}
268
269static INLINE int pthread_mutex_unlock(pthread_mutex_t *const mutex) {
270 return DosReleaseMutexSem(*mutex) != 0;
271}
272
273static INLINE int pthread_mutex_destroy(pthread_mutex_t *const mutex) {
274 return DosCloseMutexSem(*mutex) != 0;
275}
276
277// Condition
278static INLINE int pthread_cond_destroy(pthread_cond_t *const condition) {
279 int ok = 1;
280 ok &= DosCloseEventSem(condition->event_sem_) == 0;
281 ok &= DosCloseEventSem(condition->ack_sem_) == 0;
282 return !ok;
283}
284
285static INLINE int pthread_cond_init(pthread_cond_t *const condition,
clang-format3a992f82016-08-10 17:02:06 -0700286 void *cond_attr) {
KO Myung-Hun14e8ade2016-05-22 13:57:07 +0900287 int ok = 1;
288 (void)cond_attr;
289
clang-format3a992f82016-08-10 17:02:06 -0700290 ok &=
291 DosCreateEventSem(NULL, &condition->event_sem_, DCE_POSTONE, FALSE) == 0;
KO Myung-Hun14e8ade2016-05-22 13:57:07 +0900292 ok &= DosCreateEventSem(NULL, &condition->ack_sem_, DCE_POSTONE, FALSE) == 0;
293 if (!ok) {
294 pthread_cond_destroy(condition);
295 return 1;
296 }
297 condition->wait_count_ = 0;
298 return 0;
299}
300
301static INLINE int pthread_cond_signal(pthread_cond_t *const condition) {
302 int ok = 1;
303
304 if (!__atomic_cmpxchg32(&condition->wait_count_, 0, 0)) {
305 ok &= DosPostEventSem(condition->event_sem_) == 0;
306 ok &= DosWaitEventSem(condition->ack_sem_, SEM_INDEFINITE_WAIT) == 0;
307 }
308
309 return !ok;
310}
311
312static INLINE int pthread_cond_broadcast(pthread_cond_t *const condition) {
313 int ok = 1;
314
315 while (!__atomic_cmpxchg32(&condition->wait_count_, 0, 0))
clang-format3a992f82016-08-10 17:02:06 -0700316 ok &= pthread_cond_signal(condition) == 0;
KO Myung-Hun14e8ade2016-05-22 13:57:07 +0900317
318 return !ok;
319}
320
321static INLINE int pthread_cond_wait(pthread_cond_t *const condition,
322 pthread_mutex_t *const mutex) {
323 int ok = 1;
324
325 __atomic_increment(&condition->wait_count_);
326
327 ok &= pthread_mutex_unlock(mutex) == 0;
328
329 ok &= DosWaitEventSem(condition->event_sem_, SEM_INDEFINITE_WAIT) == 0;
330
331 __atomic_decrement(&condition->wait_count_);
332
333 ok &= DosPostEventSem(condition->ack_sem_) == 0;
334
335 pthread_mutex_lock(mutex);
336
337 return !ok;
338}
clang-format3a992f82016-08-10 17:02:06 -0700339#else // _WIN32
340#include <pthread.h> // NOLINT
341#define THREADFN void *
342#define THREAD_RETURN(val) val
Yunqing Wang903801f2013-12-27 15:25:54 -0800343#endif
James Zern183b77d2013-07-30 22:46:58 -0700344
Yunqing Wang903801f2013-12-27 15:25:54 -0800345#endif // CONFIG_MULTITHREAD
James Zern183b77d2013-07-30 22:46:58 -0700346
347// State of the worker thread object
348typedef enum {
clang-format3a992f82016-08-10 17:02:06 -0700349 NOT_OK = 0, // object is unusable
350 OK, // ready to work
351 WORK // busy finishing the current task
Yaowu Xuf883b422016-08-30 14:01:10 -0700352} AVxWorkerStatus;
James Zern183b77d2013-07-30 22:46:58 -0700353
354// Function to be called by the worker thread. Takes two opaque pointers as
355// arguments (data1 and data2), and should return false in case of error.
Yaowu Xuf883b422016-08-30 14:01:10 -0700356typedef int (*AVxWorkerHook)(void *, void *);
James Zern183b77d2013-07-30 22:46:58 -0700357
James Zerne656f442014-06-19 21:14:51 -0700358// Platform-dependent implementation details for the worker.
Yaowu Xuf883b422016-08-30 14:01:10 -0700359typedef struct AVxWorkerImpl AVxWorkerImpl;
James Zerne656f442014-06-19 21:14:51 -0700360
361// Synchronization object used to launch job in the worker thread
James Zern183b77d2013-07-30 22:46:58 -0700362typedef struct {
Yaowu Xuf883b422016-08-30 14:01:10 -0700363 AVxWorkerImpl *impl_;
364 AVxWorkerStatus status_;
365 AVxWorkerHook hook; // hook to call
clang-format3a992f82016-08-10 17:02:06 -0700366 void *data1; // first argument passed to 'hook'
367 void *data2; // second argument passed to 'hook'
368 int had_error; // return value of the last call to 'hook'
Yaowu Xuf883b422016-08-30 14:01:10 -0700369} AVxWorker;
James Zern183b77d2013-07-30 22:46:58 -0700370
James Zerne656f442014-06-19 21:14:51 -0700371// The interface for all thread-worker related functions. All these functions
372// must be implemented.
373typedef struct {
374 // Must be called first, before any other method.
Yaowu Xuf883b422016-08-30 14:01:10 -0700375 void (*init)(AVxWorker *const worker);
James Zerne656f442014-06-19 21:14:51 -0700376 // Must be called to initialize the object and spawn the thread. Re-entrant.
377 // Will potentially launch the thread. Returns false in case of error.
Yaowu Xuf883b422016-08-30 14:01:10 -0700378 int (*reset)(AVxWorker *const worker);
James Zerne656f442014-06-19 21:14:51 -0700379 // Makes sure the previous work is finished. Returns true if worker->had_error
380 // was not set and no error condition was triggered by the working thread.
Yaowu Xuf883b422016-08-30 14:01:10 -0700381 int (*sync)(AVxWorker *const worker);
James Zerne656f442014-06-19 21:14:51 -0700382 // Triggers the thread to call hook() with data1 and data2 arguments. These
383 // hook/data1/data2 values can be changed at any time before calling this
384 // function, but not be changed afterward until the next call to Sync().
Yaowu Xuf883b422016-08-30 14:01:10 -0700385 void (*launch)(AVxWorker *const worker);
James Zerne656f442014-06-19 21:14:51 -0700386 // This function is similar to launch() except that it calls the
387 // hook directly instead of using a thread. Convenient to bypass the thread
Yaowu Xuf883b422016-08-30 14:01:10 -0700388 // mechanism while still using the AVxWorker structs. sync() must
James Zerne656f442014-06-19 21:14:51 -0700389 // still be called afterward (for error reporting).
Yaowu Xuf883b422016-08-30 14:01:10 -0700390 void (*execute)(AVxWorker *const worker);
James Zerne656f442014-06-19 21:14:51 -0700391 // Kill the thread and terminate the object. To use the object again, one
392 // must call reset() again.
Yaowu Xuf883b422016-08-30 14:01:10 -0700393 void (*end)(AVxWorker *const worker);
394} AVxWorkerInterface;
James Zerne656f442014-06-19 21:14:51 -0700395
396// Install a new set of threading functions, overriding the defaults. This
397// should be done before any workers are started, i.e., before any encoding or
398// decoding takes place. The contents of the interface struct are copied, it
399// is safe to free the corresponding memory after this call. This function is
400// not thread-safe. Return false in case of invalid pointer or methods.
Yaowu Xuf883b422016-08-30 14:01:10 -0700401int aom_set_worker_interface(const AVxWorkerInterface *const winterface);
James Zerne656f442014-06-19 21:14:51 -0700402
403// Retrieve the currently set thread worker interface.
Yaowu Xuf883b422016-08-30 14:01:10 -0700404const AVxWorkerInterface *aom_get_worker_interface(void);
James Zern183b77d2013-07-30 22:46:58 -0700405
406//------------------------------------------------------------------------------
407
James Zern40aa9102014-01-18 12:16:11 -0800408#ifdef __cplusplus
clang-format3a992f82016-08-10 17:02:06 -0700409} // extern "C"
James Zern183b77d2013-07-30 22:46:58 -0700410#endif
411
Yaowu Xuf883b422016-08-30 14:01:10 -0700412#endif // AOM_THREAD_H_