John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 1 | /* |
Yaowu Xu | 9c01aa1 | 2016-09-01 14:32:49 -0700 | [diff] [blame] | 2 | * Copyright (c) 2016, Alliance for Open Media. All rights reserved |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 3 | * |
Yaowu Xu | 9c01aa1 | 2016-09-01 14:32:49 -0700 | [diff] [blame] | 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. |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 10 | */ |
Ehsan Akhgari | 45bac0c | 2013-12-09 12:05:38 -0500 | [diff] [blame] | 11 | |
James Zern | e1cbb13 | 2018-08-22 14:10:36 -0700 | [diff] [blame] | 12 | #ifndef AOM_AOM_PORTS_AOM_ONCE_H_ |
| 13 | #define AOM_AOM_PORTS_AOM_ONCE_H_ |
Ehsan Akhgari | 45bac0c | 2013-12-09 12:05:38 -0500 | [diff] [blame] | 14 | |
Tom Finegan | 60e653d | 2018-05-22 11:34:58 -0700 | [diff] [blame] | 15 | #include "config/aom_config.h" |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 16 | |
Ralph Giles | 2635573 | 2015-11-13 12:56:34 -0800 | [diff] [blame] | 17 | /* Implement a function wrapper to guarantee initialization |
| 18 | * thread-safety for library singletons. |
| 19 | * |
Wan-Teh Chang | 5396c55 | 2018-06-29 10:33:50 -0700 | [diff] [blame] | 20 | * NOTE: This function uses static locks, and can only be |
Ralph Giles | 2635573 | 2015-11-13 12:56:34 -0800 | [diff] [blame] | 21 | * used with one common argument per compilation unit. So |
| 22 | * |
| 23 | * file1.c: |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 24 | * aom_once(foo); |
Ralph Giles | 2635573 | 2015-11-13 12:56:34 -0800 | [diff] [blame] | 25 | * ... |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 26 | * aom_once(foo); |
Ralph Giles | 2635573 | 2015-11-13 12:56:34 -0800 | [diff] [blame] | 27 | * |
Wan-Teh Chang | 5396c55 | 2018-06-29 10:33:50 -0700 | [diff] [blame] | 28 | * file2.c: |
| 29 | * aom_once(bar); |
Ralph Giles | 2635573 | 2015-11-13 12:56:34 -0800 | [diff] [blame] | 30 | * |
| 31 | * will ensure foo() and bar() are each called only once, but in |
| 32 | * |
| 33 | * file1.c: |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 34 | * aom_once(foo); |
| 35 | * aom_once(bar): |
Ralph Giles | 2635573 | 2015-11-13 12:56:34 -0800 | [diff] [blame] | 36 | * |
| 37 | * bar() will never be called because the lock is used up |
| 38 | * by the call to foo(). |
| 39 | */ |
| 40 | |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 41 | #if CONFIG_MULTITHREAD && defined(_WIN32) |
| 42 | #include <windows.h> |
| 43 | #include <stdlib.h> |
Ralph Giles | 2635573 | 2015-11-13 12:56:34 -0800 | [diff] [blame] | 44 | /* Declare a per-compilation-unit state variable to track the progress |
| 45 | * of calling func() only once. This must be at global scope because |
| 46 | * local initializers are not thread-safe in MSVC prior to Visual |
| 47 | * Studio 2015. |
| 48 | * |
Wan-Teh Chang | 5396c55 | 2018-06-29 10:33:50 -0700 | [diff] [blame] | 49 | * As a static, aom_once_state will be zero-initialized as program start. |
Ralph Giles | 2635573 | 2015-11-13 12:56:34 -0800 | [diff] [blame] | 50 | */ |
Wan-Teh Chang | 5396c55 | 2018-06-29 10:33:50 -0700 | [diff] [blame] | 51 | static LONG aom_once_state; |
| 52 | static void aom_once(void (*func)(void)) { |
| 53 | /* Try to advance aom_once_state from its initial value of 0 to 1. |
clang-format | 05ce850 | 2016-08-10 18:23:43 -0700 | [diff] [blame] | 54 | * Only one thread can succeed in doing so. |
| 55 | */ |
Wan-Teh Chang | 5396c55 | 2018-06-29 10:33:50 -0700 | [diff] [blame] | 56 | if (InterlockedCompareExchange(&aom_once_state, 1, 0) == 0) { |
| 57 | /* We're the winning thread, having set aom_once_state to 1. |
clang-format | 05ce850 | 2016-08-10 18:23:43 -0700 | [diff] [blame] | 58 | * Call our function. */ |
| 59 | func(); |
Wan-Teh Chang | 5396c55 | 2018-06-29 10:33:50 -0700 | [diff] [blame] | 60 | /* Now advance aom_once_state to 2, unblocking any other threads. */ |
| 61 | InterlockedIncrement(&aom_once_state); |
Ralph Giles | 2635573 | 2015-11-13 12:56:34 -0800 | [diff] [blame] | 62 | return; |
clang-format | 05ce850 | 2016-08-10 18:23:43 -0700 | [diff] [blame] | 63 | } |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 64 | |
clang-format | 05ce850 | 2016-08-10 18:23:43 -0700 | [diff] [blame] | 65 | /* We weren't the winning thread, but we want to block on |
| 66 | * the state variable so we don't return before func() |
| 67 | * has finished executing elsewhere. |
| 68 | * |
Wan-Teh Chang | 5396c55 | 2018-06-29 10:33:50 -0700 | [diff] [blame] | 69 | * Try to advance aom_once_state from 2 to 2, which is only possible |
clang-format | 05ce850 | 2016-08-10 18:23:43 -0700 | [diff] [blame] | 70 | * after the winning thead advances it from 1 to 2. |
| 71 | */ |
Wan-Teh Chang | 5396c55 | 2018-06-29 10:33:50 -0700 | [diff] [blame] | 72 | while (InterlockedCompareExchange(&aom_once_state, 2, 2) != 2) { |
clang-format | 05ce850 | 2016-08-10 18:23:43 -0700 | [diff] [blame] | 73 | /* State isn't yet 2. Try again. |
| 74 | * |
| 75 | * We are used for singleton initialization functions, |
| 76 | * which should complete quickly. Contention will likewise |
| 77 | * be rare, so it's worthwhile to use a simple but cpu- |
| 78 | * intensive busy-wait instead of successive backoff, |
| 79 | * waiting on a kernel object, or another heavier-weight scheme. |
| 80 | * |
| 81 | * We can at least yield our timeslice. |
| 82 | */ |
| 83 | Sleep(0); |
| 84 | } |
| 85 | |
Wan-Teh Chang | 5396c55 | 2018-06-29 10:33:50 -0700 | [diff] [blame] | 86 | /* We've seen aom_once_state advance to 2, so we know func() |
| 87 | * has been called. And we've left aom_once_state as we found it, |
clang-format | 05ce850 | 2016-08-10 18:23:43 -0700 | [diff] [blame] | 88 | * so other threads will have the same experience. |
| 89 | * |
| 90 | * It's safe to return now. |
| 91 | */ |
| 92 | return; |
| 93 | } |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 94 | |
KO Myung-Hun | f9f996b | 2014-07-26 14:53:59 +0900 | [diff] [blame] | 95 | #elif CONFIG_MULTITHREAD && defined(__OS2__) |
| 96 | #define INCL_DOS |
| 97 | #include <os2.h> |
Wan-Teh Chang | 5396c55 | 2018-06-29 10:33:50 -0700 | [diff] [blame] | 98 | static void aom_once(void (*func)(void)) { |
clang-format | 05ce850 | 2016-08-10 18:23:43 -0700 | [diff] [blame] | 99 | static int done; |
KO Myung-Hun | f9f996b | 2014-07-26 14:53:59 +0900 | [diff] [blame] | 100 | |
clang-format | 05ce850 | 2016-08-10 18:23:43 -0700 | [diff] [blame] | 101 | /* If the initialization is complete, return early. */ |
| 102 | if (done) return; |
KO Myung-Hun | f9f996b | 2014-07-26 14:53:59 +0900 | [diff] [blame] | 103 | |
clang-format | 05ce850 | 2016-08-10 18:23:43 -0700 | [diff] [blame] | 104 | /* Causes all other threads in the process to block themselves |
| 105 | * and give up their time slice. |
| 106 | */ |
| 107 | DosEnterCritSec(); |
KO Myung-Hun | f9f996b | 2014-07-26 14:53:59 +0900 | [diff] [blame] | 108 | |
clang-format | 05ce850 | 2016-08-10 18:23:43 -0700 | [diff] [blame] | 109 | if (!done) { |
| 110 | func(); |
| 111 | done = 1; |
| 112 | } |
KO Myung-Hun | f9f996b | 2014-07-26 14:53:59 +0900 | [diff] [blame] | 113 | |
clang-format | 05ce850 | 2016-08-10 18:23:43 -0700 | [diff] [blame] | 114 | /* Restores normal thread dispatching for the current process. */ |
| 115 | DosExitCritSec(); |
KO Myung-Hun | f9f996b | 2014-07-26 14:53:59 +0900 | [diff] [blame] | 116 | } |
| 117 | |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 118 | #elif CONFIG_MULTITHREAD && HAVE_PTHREAD_H |
| 119 | #include <pthread.h> |
Wan-Teh Chang | 5396c55 | 2018-06-29 10:33:50 -0700 | [diff] [blame] | 120 | static void aom_once(void (*func)(void)) { |
clang-format | 05ce850 | 2016-08-10 18:23:43 -0700 | [diff] [blame] | 121 | static pthread_once_t lock = PTHREAD_ONCE_INIT; |
| 122 | pthread_once(&lock, func); |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 123 | } |
| 124 | |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 125 | #else |
Wan-Teh Chang | 5396c55 | 2018-06-29 10:33:50 -0700 | [diff] [blame] | 126 | /* Default version that performs no synchronization. */ |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 127 | |
Wan-Teh Chang | 5396c55 | 2018-06-29 10:33:50 -0700 | [diff] [blame] | 128 | static void aom_once(void (*func)(void)) { |
clang-format | 05ce850 | 2016-08-10 18:23:43 -0700 | [diff] [blame] | 129 | static int done; |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 130 | |
clang-format | 05ce850 | 2016-08-10 18:23:43 -0700 | [diff] [blame] | 131 | if (!done) { |
| 132 | func(); |
| 133 | done = 1; |
| 134 | } |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 135 | } |
| 136 | #endif |
Ehsan Akhgari | 45bac0c | 2013-12-09 12:05:38 -0500 | [diff] [blame] | 137 | |
James Zern | e1cbb13 | 2018-08-22 14:10:36 -0700 | [diff] [blame] | 138 | #endif // AOM_AOM_PORTS_AOM_ONCE_H_ |