w32pthreads.h 9.16 KB
Newer Older
1 2 3 4 5 6
/*
 * Copyright (C) 2010-2011 x264 project
 *
 * Authors: Steven Walters <kemuri9@gmail.com>
 *          Pegasys Inc. <http://www.pegasys-inc.com>
 *
7
 * This file is part of FFmpeg.
8
 *
9
 * FFmpeg is free software; you can redistribute it and/or
10 11 12 13
 * 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.
 *
14
 * FFmpeg is distributed in the hope that it will be useful,
15 16 17 18 19
 * 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
20
 * License along with FFmpeg; if not, write to the Free Software
21 22 23 24 25 26 27 28
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

/**
 * @file
 * w32threads to pthreads wrapper
 */

29 30
#ifndef FFMPEG_COMPAT_W32PTHREADS_H
#define FFMPEG_COMPAT_W32PTHREADS_H
31 32 33 34 35 36 37 38 39 40 41

/* 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>

42
#include "libavutil/attributes.h"
43
#include "libavutil/common.h"
44 45
#include "libavutil/internal.h"
#include "libavutil/mem.h"
46

47
typedef struct pthread_t {
48 49 50 51 52 53 54 55 56 57
    void *handle;
    void *(*func)(void* arg);
    void *arg;
    void *ret;
} pthread_t;

/* the conditional variable api for windows 6.0+ uses critical sections and
 * not mutexes */
typedef CRITICAL_SECTION pthread_mutex_t;

58 59 60 61 62
/* This is the CONDITION_VARIABLE typedef for using Windows' native
 * conditional variables on kernels 6.0+. */
#if HAVE_CONDITION_VARIABLE_PTR
typedef CONDITION_VARIABLE pthread_cond_t;
#else
63
typedef struct pthread_cond_t {
64
    void *Ptr;
65
} pthread_cond_t;
66
#endif
67

68
#if _WIN32_WINNT >= 0x0600
69 70
#define InitializeCriticalSection(x) InitializeCriticalSectionEx(x, 0, 0)
#define WaitForSingleObject(a, b) WaitForSingleObjectEx(a, b, FALSE)
71
#endif
72

73
static av_unused unsigned __stdcall attribute_align_arg win32thread_worker(void *arg)
74 75 76 77 78 79
{
    pthread_t *h = arg;
    h->ret = h->func(h->arg);
    return 0;
}

80 81
static av_unused int pthread_create(pthread_t *thread, const void *unused_attr,
                                    void *(*start_routine)(void*), void *arg)
82 83 84 85 86 87 88 89
{
    thread->func   = start_routine;
    thread->arg    = arg;
    thread->handle = (void*)_beginthreadex(NULL, 0, win32thread_worker, thread,
                                           0, NULL);
    return !thread->handle;
}

90
static av_unused void pthread_join(pthread_t thread, void **value_ptr)
91 92 93 94 95 96 97 98 99
{
    DWORD ret = WaitForSingleObject(thread.handle, INFINITE);
    if (ret != WAIT_OBJECT_0)
        return;
    if (value_ptr)
        *value_ptr = thread.ret;
    CloseHandle(thread.handle);
}

100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
static inline int pthread_mutex_init(pthread_mutex_t *m, void* attr)
{
    InitializeCriticalSection(m);
    return 0;
}
static inline int pthread_mutex_destroy(pthread_mutex_t *m)
{
    DeleteCriticalSection(m);
    return 0;
}
static inline int pthread_mutex_lock(pthread_mutex_t *m)
{
    EnterCriticalSection(m);
    return 0;
}
static inline int pthread_mutex_unlock(pthread_mutex_t *m)
{
    LeaveCriticalSection(m);
    return 0;
}
120

121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
#if _WIN32_WINNT >= 0x0600
static inline int pthread_cond_init(pthread_cond_t *cond, const void *unused_attr)
{
    InitializeConditionVariable(cond);
    return 0;
}

/* native condition variables do not destroy */
static inline void pthread_cond_destroy(pthread_cond_t *cond)
{
    return;
}

static inline void pthread_cond_broadcast(pthread_cond_t *cond)
{
    WakeAllConditionVariable(cond);
}

static inline int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex)
{
    SleepConditionVariableCS(cond, mutex, INFINITE);
    return 0;
}

static inline void pthread_cond_signal(pthread_cond_t *cond)
{
    WakeConditionVariable(cond);
}

#else // _WIN32_WINNT < 0x0600
151 152
/* for pre-Windows 6.0 platforms we need to define and use our own condition
 * variable and api */
153
typedef struct  win32_cond_t {
154
    pthread_mutex_t mtx_broadcast;
155 156 157
    pthread_mutex_t mtx_waiter_count;
    volatile int waiter_count;
    HANDLE semaphore;
158
    HANDLE waiters_done;
159
    volatile int is_broadcast;
160 161
} win32_cond_t;

162 163 164 165 166 167 168
/* function pointers to conditional variable API on windows 6.0+ kernels */
static void (WINAPI *cond_broadcast)(pthread_cond_t *cond);
static void (WINAPI *cond_init)(pthread_cond_t *cond);
static void (WINAPI *cond_signal)(pthread_cond_t *cond);
static BOOL (WINAPI *cond_wait)(pthread_cond_t *cond, pthread_mutex_t *mutex,
                                DWORD milliseconds);

169
static av_unused int pthread_cond_init(pthread_cond_t *cond, const void *unused_attr)
170 171
{
    win32_cond_t *win32_cond = NULL;
172
    if (cond_init) {
173
        cond_init(cond);
174
        return 0;
175 176 177 178 179
    }

    /* non native condition variables */
    win32_cond = av_mallocz(sizeof(win32_cond_t));
    if (!win32_cond)
180
        return ENOMEM;
181
    cond->Ptr = win32_cond;
182 183
    win32_cond->semaphore = CreateSemaphore(NULL, 0, 0x7fffffff, NULL);
    if (!win32_cond->semaphore)
184
        return ENOMEM;
185
    win32_cond->waiters_done = CreateEvent(NULL, TRUE, FALSE, NULL);
186
    if (!win32_cond->waiters_done)
187
        return ENOMEM;
188 189

    pthread_mutex_init(&win32_cond->mtx_waiter_count, NULL);
190
    pthread_mutex_init(&win32_cond->mtx_broadcast, NULL);
191
    return 0;
192 193
}

194
static av_unused void pthread_cond_destroy(pthread_cond_t *cond)
195
{
196
    win32_cond_t *win32_cond = cond->Ptr;
197
    /* native condition variables do not destroy */
198
    if (cond_init)
199 200 201 202
        return;

    /* non native condition variables */
    CloseHandle(win32_cond->semaphore);
203
    CloseHandle(win32_cond->waiters_done);
204
    pthread_mutex_destroy(&win32_cond->mtx_waiter_count);
205
    pthread_mutex_destroy(&win32_cond->mtx_broadcast);
206
    av_freep(&win32_cond);
207
    cond->Ptr = NULL;
208 209
}

210
static av_unused void pthread_cond_broadcast(pthread_cond_t *cond)
211
{
212
    win32_cond_t *win32_cond = cond->Ptr;
213 214
    int have_waiter;

215
    if (cond_broadcast) {
216 217 218 219 220
        cond_broadcast(cond);
        return;
    }

    /* non native condition variables */
221
    pthread_mutex_lock(&win32_cond->mtx_broadcast);
222
    pthread_mutex_lock(&win32_cond->mtx_waiter_count);
223 224
    have_waiter = 0;

225
    if (win32_cond->waiter_count) {
226 227
        win32_cond->is_broadcast = 1;
        have_waiter = 1;
228
    }
229 230 231 232 233

    if (have_waiter) {
        ReleaseSemaphore(win32_cond->semaphore, win32_cond->waiter_count, NULL);
        pthread_mutex_unlock(&win32_cond->mtx_waiter_count);
        WaitForSingleObject(win32_cond->waiters_done, INFINITE);
234
        ResetEvent(win32_cond->waiters_done);
235 236 237 238
        win32_cond->is_broadcast = 0;
    } else
        pthread_mutex_unlock(&win32_cond->mtx_waiter_count);
    pthread_mutex_unlock(&win32_cond->mtx_broadcast);
239 240
}

241
static av_unused int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex)
242
{
243
    win32_cond_t *win32_cond = cond->Ptr;
244
    int last_waiter;
245
    if (cond_wait) {
246
        cond_wait(cond, mutex, INFINITE);
247
        return 0;
248 249 250
    }

    /* non native condition variables */
251
    pthread_mutex_lock(&win32_cond->mtx_broadcast);
252 253 254
    pthread_mutex_lock(&win32_cond->mtx_waiter_count);
    win32_cond->waiter_count++;
    pthread_mutex_unlock(&win32_cond->mtx_waiter_count);
255
    pthread_mutex_unlock(&win32_cond->mtx_broadcast);
256

257
    // unlock the external mutex
258 259
    pthread_mutex_unlock(mutex);
    WaitForSingleObject(win32_cond->semaphore, INFINITE);
260 261 262

    pthread_mutex_lock(&win32_cond->mtx_waiter_count);
    win32_cond->waiter_count--;
263
    last_waiter = !win32_cond->waiter_count || !win32_cond->is_broadcast;
264 265 266 267 268 269 270
    pthread_mutex_unlock(&win32_cond->mtx_waiter_count);

    if (last_waiter)
        SetEvent(win32_cond->waiters_done);

    // lock the external mutex
    return pthread_mutex_lock(mutex);
271 272
}

273
static av_unused void pthread_cond_signal(pthread_cond_t *cond)
274
{
275
    win32_cond_t *win32_cond = cond->Ptr;
276
    int have_waiter;
277
    if (cond_signal) {
278 279 280 281
        cond_signal(cond);
        return;
    }

282 283
    pthread_mutex_lock(&win32_cond->mtx_broadcast);

284 285
    /* non-native condition variables */
    pthread_mutex_lock(&win32_cond->mtx_waiter_count);
286
    have_waiter = win32_cond->waiter_count;
287
    pthread_mutex_unlock(&win32_cond->mtx_waiter_count);
288

289
    if (have_waiter) {
290
        ReleaseSemaphore(win32_cond->semaphore, 1, NULL);
291 292 293 294 295
        WaitForSingleObject(win32_cond->waiters_done, INFINITE);
        ResetEvent(win32_cond->waiters_done);
    }

    pthread_mutex_unlock(&win32_cond->mtx_broadcast);
296
}
297
#endif
298

299
static av_unused void w32thread_init(void)
300
{
301
#if _WIN32_WINNT < 0x0600
302 303 304 305 306 307 308 309 310 311
    HANDLE kernel_dll = GetModuleHandle(TEXT("kernel32.dll"));
    /* if one is available, then they should all be available */
    cond_init      =
        (void*)GetProcAddress(kernel_dll, "InitializeConditionVariable");
    cond_broadcast =
        (void*)GetProcAddress(kernel_dll, "WakeAllConditionVariable");
    cond_signal    =
        (void*)GetProcAddress(kernel_dll, "WakeConditionVariable");
    cond_wait      =
        (void*)GetProcAddress(kernel_dll, "SleepConditionVariableCS");
312 313
#endif

314 315
}

316
#endif /* FFMPEG_COMPAT_W32PTHREADS_H */