Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
| 2 | //===----------------------------------------------------------------------===// |
| 3 | // |
Howard Hinnant | f5256e1 | 2010-05-11 21:36:01 +0000 | [diff] [blame] | 4 | // The LLVM Compiler Infrastructure |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5 | // |
Howard Hinnant | b64f8b0 | 2010-11-16 22:09:02 +0000 | [diff] [blame] | 6 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 7 | // Source Licenses. See LICENSE.TXT for details. |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 8 | // |
| 9 | //===----------------------------------------------------------------------===// |
| 10 | |
| 11 | #ifndef _LIBCPP___MUTEX_BASE |
| 12 | #define _LIBCPP___MUTEX_BASE |
| 13 | |
| 14 | #include <__config> |
| 15 | #include <chrono> |
| 16 | #include <system_error> |
| 17 | #include <pthread.h> |
| 18 | |
Howard Hinnant | 08e1747 | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 19 | #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 20 | #pragma GCC system_header |
Howard Hinnant | 08e1747 | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 21 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 22 | |
| 23 | _LIBCPP_BEGIN_NAMESPACE_STD |
| 24 | |
Jonathan Roelofs | 8d86b2e | 2014-09-05 19:45:05 +0000 | [diff] [blame] | 25 | #ifndef _LIBCPP_HAS_NO_THREADS |
| 26 | |
Howard Hinnant | 83eade6 | 2013-03-06 23:30:19 +0000 | [diff] [blame] | 27 | class _LIBCPP_TYPE_VIS mutex |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 28 | { |
| 29 | pthread_mutex_t __m_; |
| 30 | |
| 31 | public: |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 32 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 384608e | 2012-07-07 20:01:52 +0000 | [diff] [blame] | 33 | #ifndef _LIBCPP_HAS_NO_CONSTEXPR |
Howard Hinnant | 5c90cba | 2012-09-11 16:10:20 +0000 | [diff] [blame] | 34 | constexpr mutex() _NOEXCEPT : __m_(PTHREAD_MUTEX_INITIALIZER) {} |
Howard Hinnant | 384608e | 2012-07-07 20:01:52 +0000 | [diff] [blame] | 35 | #else |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 36 | mutex() _NOEXCEPT {__m_ = (pthread_mutex_t)PTHREAD_MUTEX_INITIALIZER;} |
Howard Hinnant | 384608e | 2012-07-07 20:01:52 +0000 | [diff] [blame] | 37 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 38 | ~mutex(); |
| 39 | |
| 40 | private: |
| 41 | mutex(const mutex&);// = delete; |
| 42 | mutex& operator=(const mutex&);// = delete; |
| 43 | |
| 44 | public: |
| 45 | void lock(); |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 46 | bool try_lock() _NOEXCEPT; |
| 47 | void unlock() _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 48 | |
| 49 | typedef pthread_mutex_t* native_handle_type; |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 50 | _LIBCPP_INLINE_VISIBILITY native_handle_type native_handle() {return &__m_;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 51 | }; |
| 52 | |
Howard Hinnant | 83eade6 | 2013-03-06 23:30:19 +0000 | [diff] [blame] | 53 | struct _LIBCPP_TYPE_VIS defer_lock_t {}; |
| 54 | struct _LIBCPP_TYPE_VIS try_to_lock_t {}; |
| 55 | struct _LIBCPP_TYPE_VIS adopt_lock_t {}; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 56 | |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 57 | #if defined(_LIBCPP_HAS_NO_CONSTEXPR) || defined(_LIBCPP_BUILDING_MUTEX) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 58 | |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 59 | extern const defer_lock_t defer_lock; |
| 60 | extern const try_to_lock_t try_to_lock; |
| 61 | extern const adopt_lock_t adopt_lock; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 62 | |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 63 | #else |
| 64 | |
| 65 | constexpr defer_lock_t defer_lock = defer_lock_t(); |
| 66 | constexpr try_to_lock_t try_to_lock = try_to_lock_t(); |
| 67 | constexpr adopt_lock_t adopt_lock = adopt_lock_t(); |
| 68 | |
| 69 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 70 | |
| 71 | template <class _Mutex> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 72 | class _LIBCPP_TYPE_VIS_ONLY lock_guard |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 73 | { |
| 74 | public: |
| 75 | typedef _Mutex mutex_type; |
| 76 | |
| 77 | private: |
| 78 | mutex_type& __m_; |
| 79 | public: |
| 80 | |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 81 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 82 | explicit lock_guard(mutex_type& __m) |
| 83 | : __m_(__m) {__m_.lock();} |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 84 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 85 | lock_guard(mutex_type& __m, adopt_lock_t) |
| 86 | : __m_(__m) {} |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 87 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 88 | ~lock_guard() {__m_.unlock();} |
| 89 | |
| 90 | private: |
| 91 | lock_guard(lock_guard const&);// = delete; |
| 92 | lock_guard& operator=(lock_guard const&);// = delete; |
| 93 | }; |
| 94 | |
| 95 | template <class _Mutex> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 96 | class _LIBCPP_TYPE_VIS_ONLY unique_lock |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 97 | { |
| 98 | public: |
| 99 | typedef _Mutex mutex_type; |
| 100 | |
| 101 | private: |
| 102 | mutex_type* __m_; |
| 103 | bool __owns_; |
| 104 | |
| 105 | public: |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 106 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 107 | unique_lock() _NOEXCEPT : __m_(nullptr), __owns_(false) {} |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 108 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 109 | explicit unique_lock(mutex_type& __m) |
| 110 | : __m_(&__m), __owns_(true) {__m_->lock();} |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 111 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 112 | unique_lock(mutex_type& __m, defer_lock_t) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 113 | : __m_(&__m), __owns_(false) {} |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 114 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 115 | unique_lock(mutex_type& __m, try_to_lock_t) |
| 116 | : __m_(&__m), __owns_(__m.try_lock()) {} |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 117 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 118 | unique_lock(mutex_type& __m, adopt_lock_t) |
| 119 | : __m_(&__m), __owns_(true) {} |
| 120 | template <class _Clock, class _Duration> |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 121 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 122 | unique_lock(mutex_type& __m, const chrono::time_point<_Clock, _Duration>& __t) |
| 123 | : __m_(&__m), __owns_(__m.try_lock_until(__t)) {} |
| 124 | template <class _Rep, class _Period> |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 125 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 126 | unique_lock(mutex_type& __m, const chrono::duration<_Rep, _Period>& __d) |
| 127 | : __m_(&__m), __owns_(__m.try_lock_for(__d)) {} |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 128 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 129 | ~unique_lock() |
| 130 | { |
| 131 | if (__owns_) |
| 132 | __m_->unlock(); |
| 133 | } |
| 134 | |
| 135 | private: |
| 136 | unique_lock(unique_lock const&); // = delete; |
| 137 | unique_lock& operator=(unique_lock const&); // = delete; |
| 138 | |
| 139 | public: |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 140 | #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 141 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 142 | unique_lock(unique_lock&& __u) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 143 | : __m_(__u.__m_), __owns_(__u.__owns_) |
| 144 | {__u.__m_ = nullptr; __u.__owns_ = false;} |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 145 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 146 | unique_lock& operator=(unique_lock&& __u) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 147 | { |
| 148 | if (__owns_) |
| 149 | __m_->unlock(); |
| 150 | __m_ = __u.__m_; |
| 151 | __owns_ = __u.__owns_; |
| 152 | __u.__m_ = nullptr; |
| 153 | __u.__owns_ = false; |
| 154 | return *this; |
| 155 | } |
Howard Hinnant | ac417fa | 2010-11-28 19:41:07 +0000 | [diff] [blame] | 156 | |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 157 | #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 158 | |
| 159 | void lock(); |
| 160 | bool try_lock(); |
| 161 | |
| 162 | template <class _Rep, class _Period> |
| 163 | bool try_lock_for(const chrono::duration<_Rep, _Period>& __d); |
| 164 | template <class _Clock, class _Duration> |
| 165 | bool try_lock_until(const chrono::time_point<_Clock, _Duration>& __t); |
| 166 | |
| 167 | void unlock(); |
| 168 | |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 169 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 170 | void swap(unique_lock& __u) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 171 | { |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 172 | _VSTD::swap(__m_, __u.__m_); |
| 173 | _VSTD::swap(__owns_, __u.__owns_); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 174 | } |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 175 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 176 | mutex_type* release() _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 177 | { |
| 178 | mutex_type* __m = __m_; |
| 179 | __m_ = nullptr; |
| 180 | __owns_ = false; |
| 181 | return __m; |
| 182 | } |
| 183 | |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 184 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 185 | bool owns_lock() const _NOEXCEPT {return __owns_;} |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 186 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 7786188 | 2012-02-21 21:46:43 +0000 | [diff] [blame] | 187 | _LIBCPP_EXPLICIT |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 188 | operator bool () const _NOEXCEPT {return __owns_;} |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 189 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 190 | mutex_type* mutex() const _NOEXCEPT {return __m_;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 191 | }; |
| 192 | |
| 193 | template <class _Mutex> |
| 194 | void |
| 195 | unique_lock<_Mutex>::lock() |
| 196 | { |
| 197 | if (__m_ == nullptr) |
| 198 | __throw_system_error(EPERM, "unique_lock::lock: references null mutex"); |
| 199 | if (__owns_) |
| 200 | __throw_system_error(EDEADLK, "unique_lock::lock: already locked"); |
| 201 | __m_->lock(); |
| 202 | __owns_ = true; |
| 203 | } |
| 204 | |
| 205 | template <class _Mutex> |
| 206 | bool |
| 207 | unique_lock<_Mutex>::try_lock() |
| 208 | { |
| 209 | if (__m_ == nullptr) |
| 210 | __throw_system_error(EPERM, "unique_lock::try_lock: references null mutex"); |
| 211 | if (__owns_) |
| 212 | __throw_system_error(EDEADLK, "unique_lock::try_lock: already locked"); |
| 213 | __owns_ = __m_->try_lock(); |
| 214 | return __owns_; |
| 215 | } |
| 216 | |
| 217 | template <class _Mutex> |
| 218 | template <class _Rep, class _Period> |
| 219 | bool |
| 220 | unique_lock<_Mutex>::try_lock_for(const chrono::duration<_Rep, _Period>& __d) |
| 221 | { |
| 222 | if (__m_ == nullptr) |
| 223 | __throw_system_error(EPERM, "unique_lock::try_lock_for: references null mutex"); |
| 224 | if (__owns_) |
| 225 | __throw_system_error(EDEADLK, "unique_lock::try_lock_for: already locked"); |
| 226 | __owns_ = __m_->try_lock_for(__d); |
| 227 | return __owns_; |
| 228 | } |
| 229 | |
| 230 | template <class _Mutex> |
| 231 | template <class _Clock, class _Duration> |
| 232 | bool |
| 233 | unique_lock<_Mutex>::try_lock_until(const chrono::time_point<_Clock, _Duration>& __t) |
| 234 | { |
| 235 | if (__m_ == nullptr) |
| 236 | __throw_system_error(EPERM, "unique_lock::try_lock_until: references null mutex"); |
| 237 | if (__owns_) |
| 238 | __throw_system_error(EDEADLK, "unique_lock::try_lock_until: already locked"); |
| 239 | __owns_ = __m_->try_lock_until(__t); |
| 240 | return __owns_; |
| 241 | } |
| 242 | |
| 243 | template <class _Mutex> |
| 244 | void |
| 245 | unique_lock<_Mutex>::unlock() |
| 246 | { |
| 247 | if (!__owns_) |
| 248 | __throw_system_error(EPERM, "unique_lock::unlock: not locked"); |
| 249 | __m_->unlock(); |
| 250 | __owns_ = false; |
| 251 | } |
| 252 | |
| 253 | template <class _Mutex> |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 254 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 255 | void |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 256 | swap(unique_lock<_Mutex>& __x, unique_lock<_Mutex>& __y) _NOEXCEPT |
| 257 | {__x.swap(__y);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 258 | |
Marshall Clow | 239bc42 | 2013-12-23 22:14:27 +0000 | [diff] [blame] | 259 | //enum class cv_status |
| 260 | _LIBCPP_DECLARE_STRONG_ENUM(cv_status) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 261 | { |
Marshall Clow | 239bc42 | 2013-12-23 22:14:27 +0000 | [diff] [blame] | 262 | no_timeout, |
| 263 | timeout |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 264 | }; |
Marshall Clow | 239bc42 | 2013-12-23 22:14:27 +0000 | [diff] [blame] | 265 | _LIBCPP_DECLARE_STRONG_ENUM_EPILOG(cv_status) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 266 | |
Howard Hinnant | 83eade6 | 2013-03-06 23:30:19 +0000 | [diff] [blame] | 267 | class _LIBCPP_TYPE_VIS condition_variable |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 268 | { |
| 269 | pthread_cond_t __cv_; |
| 270 | public: |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 271 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 384608e | 2012-07-07 20:01:52 +0000 | [diff] [blame] | 272 | #ifndef _LIBCPP_HAS_NO_CONSTEXPR |
Howard Hinnant | 5c90cba | 2012-09-11 16:10:20 +0000 | [diff] [blame] | 273 | constexpr condition_variable() : __cv_(PTHREAD_COND_INITIALIZER) {} |
Howard Hinnant | 384608e | 2012-07-07 20:01:52 +0000 | [diff] [blame] | 274 | #else |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 275 | condition_variable() {__cv_ = (pthread_cond_t)PTHREAD_COND_INITIALIZER;} |
Howard Hinnant | 384608e | 2012-07-07 20:01:52 +0000 | [diff] [blame] | 276 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 277 | ~condition_variable(); |
| 278 | |
| 279 | private: |
| 280 | condition_variable(const condition_variable&); // = delete; |
| 281 | condition_variable& operator=(const condition_variable&); // = delete; |
| 282 | |
| 283 | public: |
Howard Hinnant | c8f7413 | 2012-07-21 16:32:53 +0000 | [diff] [blame] | 284 | void notify_one() _NOEXCEPT; |
| 285 | void notify_all() _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 286 | |
Marshall Clow | b076785 | 2014-03-26 02:45:04 +0000 | [diff] [blame] | 287 | void wait(unique_lock<mutex>& __lk) _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 288 | template <class _Predicate> |
| 289 | void wait(unique_lock<mutex>& __lk, _Predicate __pred); |
| 290 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 291 | template <class _Clock, class _Duration> |
| 292 | cv_status |
| 293 | wait_until(unique_lock<mutex>& __lk, |
| 294 | const chrono::time_point<_Clock, _Duration>& __t); |
| 295 | |
| 296 | template <class _Clock, class _Duration, class _Predicate> |
| 297 | bool |
| 298 | wait_until(unique_lock<mutex>& __lk, |
| 299 | const chrono::time_point<_Clock, _Duration>& __t, |
| 300 | _Predicate __pred); |
| 301 | |
| 302 | template <class _Rep, class _Period> |
| 303 | cv_status |
| 304 | wait_for(unique_lock<mutex>& __lk, |
| 305 | const chrono::duration<_Rep, _Period>& __d); |
| 306 | |
| 307 | template <class _Rep, class _Period, class _Predicate> |
| 308 | bool |
| 309 | wait_for(unique_lock<mutex>& __lk, |
| 310 | const chrono::duration<_Rep, _Period>& __d, |
| 311 | _Predicate __pred); |
| 312 | |
| 313 | typedef pthread_cond_t* native_handle_type; |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 314 | _LIBCPP_INLINE_VISIBILITY native_handle_type native_handle() {return &__cv_;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 315 | |
| 316 | private: |
| 317 | void __do_timed_wait(unique_lock<mutex>& __lk, |
Marshall Clow | b076785 | 2014-03-26 02:45:04 +0000 | [diff] [blame] | 318 | chrono::time_point<chrono::system_clock, chrono::nanoseconds>) _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 319 | }; |
Jonathan Roelofs | 8d86b2e | 2014-09-05 19:45:05 +0000 | [diff] [blame] | 320 | #endif // !_LIBCPP_HAS_NO_THREADS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 321 | |
| 322 | template <class _To, class _Rep, class _Period> |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 323 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 324 | typename enable_if |
| 325 | < |
| 326 | chrono::__is_duration<_To>::value, |
| 327 | _To |
| 328 | >::type |
| 329 | __ceil(chrono::duration<_Rep, _Period> __d) |
| 330 | { |
| 331 | using namespace chrono; |
| 332 | _To __r = duration_cast<_To>(__d); |
| 333 | if (__r < __d) |
| 334 | ++__r; |
| 335 | return __r; |
| 336 | } |
| 337 | |
Jonathan Roelofs | 8d86b2e | 2014-09-05 19:45:05 +0000 | [diff] [blame] | 338 | #ifndef _LIBCPP_HAS_NO_THREADS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 339 | template <class _Predicate> |
| 340 | void |
| 341 | condition_variable::wait(unique_lock<mutex>& __lk, _Predicate __pred) |
| 342 | { |
| 343 | while (!__pred()) |
| 344 | wait(__lk); |
| 345 | } |
| 346 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 347 | template <class _Clock, class _Duration> |
| 348 | cv_status |
| 349 | condition_variable::wait_until(unique_lock<mutex>& __lk, |
| 350 | const chrono::time_point<_Clock, _Duration>& __t) |
| 351 | { |
| 352 | using namespace chrono; |
Howard Hinnant | cf115d2 | 2012-08-30 19:14:33 +0000 | [diff] [blame] | 353 | wait_for(__lk, __t - _Clock::now()); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 354 | return _Clock::now() < __t ? cv_status::no_timeout : cv_status::timeout; |
| 355 | } |
| 356 | |
| 357 | template <class _Clock, class _Duration, class _Predicate> |
| 358 | bool |
| 359 | condition_variable::wait_until(unique_lock<mutex>& __lk, |
| 360 | const chrono::time_point<_Clock, _Duration>& __t, |
| 361 | _Predicate __pred) |
| 362 | { |
| 363 | while (!__pred()) |
| 364 | { |
| 365 | if (wait_until(__lk, __t) == cv_status::timeout) |
| 366 | return __pred(); |
| 367 | } |
| 368 | return true; |
| 369 | } |
| 370 | |
| 371 | template <class _Rep, class _Period> |
| 372 | cv_status |
| 373 | condition_variable::wait_for(unique_lock<mutex>& __lk, |
| 374 | const chrono::duration<_Rep, _Period>& __d) |
| 375 | { |
| 376 | using namespace chrono; |
Howard Hinnant | cf115d2 | 2012-08-30 19:14:33 +0000 | [diff] [blame] | 377 | if (__d <= __d.zero()) |
| 378 | return cv_status::timeout; |
| 379 | typedef time_point<system_clock, duration<long double, nano> > __sys_tpf; |
| 380 | typedef time_point<system_clock, nanoseconds> __sys_tpi; |
| 381 | __sys_tpf _Max = __sys_tpi::max(); |
Howard Hinnant | f8f8521 | 2010-11-20 19:16:30 +0000 | [diff] [blame] | 382 | system_clock::time_point __s_now = system_clock::now(); |
| 383 | steady_clock::time_point __c_now = steady_clock::now(); |
Howard Hinnant | cf115d2 | 2012-08-30 19:14:33 +0000 | [diff] [blame] | 384 | if (_Max - __d > __s_now) |
| 385 | __do_timed_wait(__lk, __s_now + __ceil<nanoseconds>(__d)); |
| 386 | else |
| 387 | __do_timed_wait(__lk, __sys_tpi::max()); |
Howard Hinnant | f8f8521 | 2010-11-20 19:16:30 +0000 | [diff] [blame] | 388 | return steady_clock::now() - __c_now < __d ? cv_status::no_timeout : |
| 389 | cv_status::timeout; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 390 | } |
| 391 | |
| 392 | template <class _Rep, class _Period, class _Predicate> |
Howard Hinnant | 333f50d | 2010-09-21 20:16:37 +0000 | [diff] [blame] | 393 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 394 | bool |
| 395 | condition_variable::wait_for(unique_lock<mutex>& __lk, |
| 396 | const chrono::duration<_Rep, _Period>& __d, |
| 397 | _Predicate __pred) |
| 398 | { |
Howard Hinnant | f8f8521 | 2010-11-20 19:16:30 +0000 | [diff] [blame] | 399 | return wait_until(__lk, chrono::steady_clock::now() + __d, |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 400 | _VSTD::move(__pred)); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 401 | } |
| 402 | |
Jonathan Roelofs | 8d86b2e | 2014-09-05 19:45:05 +0000 | [diff] [blame] | 403 | #endif // !_LIBCPP_HAS_NO_THREADS |
| 404 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 405 | _LIBCPP_END_NAMESPACE_STD |
| 406 | |
| 407 | #endif // _LIBCPP___MUTEX_BASE |