compat/w32pthreads.h
27237d52
 /*
  * Copyright (C) 2010-2011 x264 project
  *
  * Authors: Steven Walters <kemuri9@gmail.com>
  *          Pegasys Inc. <http://www.pegasys-inc.com>
  *
a4d3757b
  * This file is part of FFmpeg.
27237d52
  *
a4d3757b
  * FFmpeg is free software; you can redistribute it and/or
27237d52
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
a4d3757b
  * FFmpeg is distributed in the hope that it will be useful,
27237d52
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
a4d3757b
  * License along with FFmpeg; if not, write to the Free Software
27237d52
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /**
  * @file
  * w32threads to pthreads wrapper
  */
 
180f9a09
 #ifndef COMPAT_W32PTHREADS_H
 #define COMPAT_W32PTHREADS_H
27237d52
 
 /* Build up a pthread-like API using underlying Windows API. Have only static
  * methods so as to not conflict with a potentially linked in pthread-win32
  * library.
  * As most functions here are used without checking return values,
  * only implement return values as necessary. */
 
 #define WIN32_LEAN_AND_MEAN
 #include <windows.h>
 #include <process.h>
fc6fde22
 #include <time.h>
27237d52
 
6baeadd1
 #include "libavutil/attributes.h"
0f03563d
 #include "libavutil/common.h"
11928d24
 #include "libavutil/internal.h"
 #include "libavutil/mem.h"
fc6fde22
 #include "libavutil/time.h"
0f03563d
 
e4cbf752
 typedef struct pthread_t {
27237d52
     void *handle;
     void *(*func)(void* arg);
     void *arg;
     void *ret;
 } pthread_t;
 
9b121dfc
 /* use light weight mutex/condition variable API for Windows Vista and later */
 typedef SRWLOCK pthread_mutex_t;
0c069493
 typedef CONDITION_VARIABLE pthread_cond_t;
9b121dfc
 
 #define PTHREAD_MUTEX_INITIALIZER SRWLOCK_INIT
 #define PTHREAD_COND_INITIALIZER CONDITION_VARIABLE_INIT
27237d52
 
428b0578
 #define InitializeCriticalSection(x) InitializeCriticalSectionEx(x, 0, 0)
 #define WaitForSingleObject(a, b) WaitForSingleObjectEx(a, b, FALSE)
27237d52
 
0830e911
 #define PTHREAD_CANCEL_ENABLE 1
 #define PTHREAD_CANCEL_DISABLE 0
 
6baeadd1
 static av_unused unsigned __stdcall attribute_align_arg win32thread_worker(void *arg)
27237d52
 {
bceb3d0f
     pthread_t *h = (pthread_t*)arg;
27237d52
     h->ret = h->func(h->arg);
     return 0;
 }
 
6baeadd1
 static av_unused int pthread_create(pthread_t *thread, const void *unused_attr,
                                     void *(*start_routine)(void*), void *arg)
27237d52
 {
     thread->func   = start_routine;
     thread->arg    = arg;
0861862b
 #if HAVE_WINRT
     thread->handle = (void*)CreateThread(NULL, 0, win32thread_worker, thread,
                                            0, NULL);
 #else
27237d52
     thread->handle = (void*)_beginthreadex(NULL, 0, win32thread_worker, thread,
                                            0, NULL);
0861862b
 #endif
27237d52
     return !thread->handle;
 }
 
ae58abea
 static av_unused int pthread_join(pthread_t thread, void **value_ptr)
27237d52
 {
     DWORD ret = WaitForSingleObject(thread.handle, INFINITE);
ae58abea
     if (ret != WAIT_OBJECT_0) {
         if (ret == WAIT_ABANDONED)
             return EINVAL;
         else
             return EDEADLK;
     }
27237d52
     if (value_ptr)
         *value_ptr = thread.ret;
     CloseHandle(thread.handle);
ae58abea
     return 0;
27237d52
 }
 
81486312
 static inline int pthread_mutex_init(pthread_mutex_t *m, void* attr)
 {
9b121dfc
     InitializeSRWLock(m);
81486312
     return 0;
 }
 static inline int pthread_mutex_destroy(pthread_mutex_t *m)
 {
9b121dfc
     /* Unlocked SWR locks use no resources */
81486312
     return 0;
 }
 static inline int pthread_mutex_lock(pthread_mutex_t *m)
 {
9b121dfc
     AcquireSRWLockExclusive(m);
81486312
     return 0;
 }
 static inline int pthread_mutex_unlock(pthread_mutex_t *m)
 {
9b121dfc
     ReleaseSRWLockExclusive(m);
81486312
     return 0;
 }
27237d52
 
b22693b0
 typedef INIT_ONCE pthread_once_t;
 #define PTHREAD_ONCE_INIT INIT_ONCE_STATIC_INIT
 
 static av_unused int pthread_once(pthread_once_t *once_control, void (*init_routine)(void))
 {
     BOOL pending = FALSE;
     InitOnceBeginInitialize(once_control, 0, &pending, NULL);
     if (pending)
         init_routine();
     InitOnceComplete(once_control, 0, NULL);
     return 0;
 }
 
8c6992bf
 static inline int pthread_cond_init(pthread_cond_t *cond, const void *unused_attr)
 {
     InitializeConditionVariable(cond);
     return 0;
 }
 
 /* native condition variables do not destroy */
ae58abea
 static inline int pthread_cond_destroy(pthread_cond_t *cond)
8c6992bf
 {
ae58abea
     return 0;
8c6992bf
 }
 
ae58abea
 static inline int pthread_cond_broadcast(pthread_cond_t *cond)
8c6992bf
 {
     WakeAllConditionVariable(cond);
ae58abea
     return 0;
8c6992bf
 }
 
 static inline int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex)
 {
9b121dfc
     SleepConditionVariableSRW(cond, mutex, INFINITE, 0);
8c6992bf
     return 0;
 }
 
fc6fde22
 static inline int pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex,
                                          const struct timespec *abstime)
 {
     int64_t abs_milli = abstime->tv_sec * 1000LL + abstime->tv_nsec / 1000000;
     DWORD t = av_clip64(abs_milli - av_gettime() / 1000, 0, UINT32_MAX);
 
     if (!SleepConditionVariableSRW(cond, mutex, t, 0)) {
         DWORD err = GetLastError();
         if (err == ERROR_TIMEOUT)
             return ETIMEDOUT;
         else
             return EINVAL;
     }
     return 0;
 }
 
ae58abea
 static inline int pthread_cond_signal(pthread_cond_t *cond)
8c6992bf
 {
     WakeConditionVariable(cond);
ae58abea
     return 0;
8c6992bf
 }
 
0830e911
 static inline int pthread_setcancelstate(int state, int *oldstate)
 {
     return 0;
 }
 
180f9a09
 #endif /* COMPAT_W32PTHREADS_H */