1// <condition_variable> -*- C++ -*-
3// Copyright (C) 2008-2022 Free Software Foundation, Inc.
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
8// Free Software Foundation; either version 3, or (at your option)
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
16// Under Section 7 of GPL version 3, you are granted additional
17// permissions described in the GCC Runtime Library Exception, version
18// 3.1, as published by the Free Software Foundation.
20// You should have received a copy of the GNU General Public License and
21// a copy of the GCC Runtime Library Exception along with this program;
22// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23// <http://www.gnu.org/licenses/>.
25/** @file include/condition_variable
26 * This is a Standard C++ Library header.
29#ifndef _GLIBCXX_CONDITION_VARIABLE
30#define _GLIBCXX_CONDITION_VARIABLE 1
32#pragma GCC system_header
34#if __cplusplus < 201103L
35# include <bits/c++0x_warning.h>
38#include <bits/chrono.h>
39#include <bits/std_mutex.h>
40#include <bits/unique_lock.h>
41#include <bits/alloc_traits.h>
42#include <bits/shared_ptr.h>
43#include <bits/cxxabi_forced.h>
45#if __cplusplus > 201703L
49#if defined(_GLIBCXX_HAS_GTHREADS)
51namespace std _GLIBCXX_VISIBILITY(default)
53_GLIBCXX_BEGIN_NAMESPACE_VERSION
56 * @defgroup condition_variables Condition Variables
57 * @ingroup concurrency
59 * Classes for condition_variable support.
64 enum class cv_status { no_timeout, timeout };
66 /// condition_variable
67 class condition_variable
69 using steady_clock = chrono::steady_clock;
70 using system_clock = chrono::system_clock;
71#ifdef _GLIBCXX_USE_PTHREAD_COND_CLOCKWAIT
72 using __clock_t = steady_clock;
74 using __clock_t = system_clock;
80 typedef __gthread_cond_t* native_handle_type;
82 condition_variable() noexcept;
83 ~condition_variable() noexcept;
85 condition_variable(const condition_variable&) = delete;
86 condition_variable& operator=(const condition_variable&) = delete;
89 notify_one() noexcept;
92 notify_all() noexcept;
95 wait(unique_lock<mutex>& __lock);
97 template<typename _Predicate>
99 wait(unique_lock<mutex>& __lock, _Predicate __p)
105#ifdef _GLIBCXX_USE_PTHREAD_COND_CLOCKWAIT
106 template<typename _Duration>
108 wait_until(unique_lock<mutex>& __lock,
109 const chrono::time_point<steady_clock, _Duration>& __atime)
110 { return __wait_until_impl(__lock, __atime); }
113 template<typename _Duration>
115 wait_until(unique_lock<mutex>& __lock,
116 const chrono::time_point<system_clock, _Duration>& __atime)
117 { return __wait_until_impl(__lock, __atime); }
119 template<typename _Clock, typename _Duration>
121 wait_until(unique_lock<mutex>& __lock,
122 const chrono::time_point<_Clock, _Duration>& __atime)
124#if __cplusplus > 201703L
125 static_assert(chrono::is_clock_v<_Clock>);
127 using __s_dur = typename __clock_t::duration;
128 const typename _Clock::time_point __c_entry = _Clock::now();
129 const __clock_t::time_point __s_entry = __clock_t::now();
130 const auto __delta = __atime - __c_entry;
131 const auto __s_atime = __s_entry +
132 chrono::__detail::ceil<__s_dur>(__delta);
134 if (__wait_until_impl(__lock, __s_atime) == cv_status::no_timeout)
135 return cv_status::no_timeout;
136 // We got a timeout when measured against __clock_t but
137 // we need to check against the caller-supplied clock
138 // to tell whether we should return a timeout.
139 if (_Clock::now() < __atime)
140 return cv_status::no_timeout;
141 return cv_status::timeout;
144 template<typename _Clock, typename _Duration, typename _Predicate>
146 wait_until(unique_lock<mutex>& __lock,
147 const chrono::time_point<_Clock, _Duration>& __atime,
151 if (wait_until(__lock, __atime) == cv_status::timeout)
156 template<typename _Rep, typename _Period>
158 wait_for(unique_lock<mutex>& __lock,
159 const chrono::duration<_Rep, _Period>& __rtime)
161 using __dur = typename steady_clock::duration;
162 return wait_until(__lock,
163 steady_clock::now() +
164 chrono::__detail::ceil<__dur>(__rtime));
167 template<typename _Rep, typename _Period, typename _Predicate>
169 wait_for(unique_lock<mutex>& __lock,
170 const chrono::duration<_Rep, _Period>& __rtime,
173 using __dur = typename steady_clock::duration;
174 return wait_until(__lock,
175 steady_clock::now() +
176 chrono::__detail::ceil<__dur>(__rtime),
182 { return _M_cond.native_handle(); }
185#ifdef _GLIBCXX_USE_PTHREAD_COND_CLOCKWAIT
186 template<typename _Dur>
188 __wait_until_impl(unique_lock<mutex>& __lock,
189 const chrono::time_point<steady_clock, _Dur>& __atime)
191 auto __s = chrono::time_point_cast<chrono::seconds>(__atime);
192 auto __ns = chrono::duration_cast<chrono::nanoseconds>(__atime - __s);
194 __gthread_time_t __ts =
196 static_cast<std::time_t>(__s.time_since_epoch().count()),
197 static_cast<long>(__ns.count())
200 _M_cond.wait_until(*__lock.mutex(), CLOCK_MONOTONIC, __ts);
202 return (steady_clock::now() < __atime
203 ? cv_status::no_timeout : cv_status::timeout);
207 template<typename _Dur>
209 __wait_until_impl(unique_lock<mutex>& __lock,
210 const chrono::time_point<system_clock, _Dur>& __atime)
212 auto __s = chrono::time_point_cast<chrono::seconds>(__atime);
213 auto __ns = chrono::duration_cast<chrono::nanoseconds>(__atime - __s);
215 __gthread_time_t __ts =
217 static_cast<std::time_t>(__s.time_since_epoch().count()),
218 static_cast<long>(__ns.count())
221 _M_cond.wait_until(*__lock.mutex(), __ts);
223 return (system_clock::now() < __atime
224 ? cv_status::no_timeout : cv_status::timeout);
229 notify_all_at_thread_exit(condition_variable&, unique_lock<mutex>);
231 struct __at_thread_exit_elt
233 __at_thread_exit_elt* _M_next;
234 void (*_M_cb)(void*);
237 inline namespace _V2 {
239 /// condition_variable_any
240 // Like above, but mutex is not required to have try_lock.
241 class condition_variable_any
243#ifdef _GLIBCXX_USE_PTHREAD_COND_CLOCKWAIT
244 using __clock_t = chrono::steady_clock;
246 using __clock_t = chrono::system_clock;
248 condition_variable _M_cond;
249 shared_ptr<mutex> _M_mutex;
251 // scoped unlock - unlocks in ctor, re-locks in dtor
252 template<typename _Lock>
255 explicit _Unlock(_Lock& __lk) : _M_lock(__lk) { __lk.unlock(); }
257#pragma GCC diagnostic push
258#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
259 ~_Unlock() noexcept(false)
261 if (uncaught_exception())
265 __catch(const __cxxabiv1::__forced_unwind&)
266 { __throw_exception_again; }
273#pragma GCC diagnostic pop
275 _Unlock(const _Unlock&) = delete;
276 _Unlock& operator=(const _Unlock&) = delete;
282 condition_variable_any() : _M_mutex(std::make_shared<mutex>()) { }
283 ~condition_variable_any() = default;
285 condition_variable_any(const condition_variable_any&) = delete;
286 condition_variable_any& operator=(const condition_variable_any&) = delete;
289 notify_one() noexcept
291 lock_guard<mutex> __lock(*_M_mutex);
292 _M_cond.notify_one();
296 notify_all() noexcept
298 lock_guard<mutex> __lock(*_M_mutex);
299 _M_cond.notify_all();
302 template<typename _Lock>
306 shared_ptr<mutex> __mutex = _M_mutex;
307 unique_lock<mutex> __my_lock(*__mutex);
308 _Unlock<_Lock> __unlock(__lock);
309 // *__mutex must be unlocked before re-locking __lock so move
310 // ownership of *__mutex lock to an object with shorter lifetime.
311 unique_lock<mutex> __my_lock2(std::move(__my_lock));
312 _M_cond.wait(__my_lock2);
316 template<typename _Lock, typename _Predicate>
318 wait(_Lock& __lock, _Predicate __p)
324 template<typename _Lock, typename _Clock, typename _Duration>
326 wait_until(_Lock& __lock,
327 const chrono::time_point<_Clock, _Duration>& __atime)
329 shared_ptr<mutex> __mutex = _M_mutex;
330 unique_lock<mutex> __my_lock(*__mutex);
331 _Unlock<_Lock> __unlock(__lock);
332 // *__mutex must be unlocked before re-locking __lock so move
333 // ownership of *__mutex lock to an object with shorter lifetime.
334 unique_lock<mutex> __my_lock2(std::move(__my_lock));
335 return _M_cond.wait_until(__my_lock2, __atime);
338 template<typename _Lock, typename _Clock,
339 typename _Duration, typename _Predicate>
341 wait_until(_Lock& __lock,
342 const chrono::time_point<_Clock, _Duration>& __atime,
346 if (wait_until(__lock, __atime) == cv_status::timeout)
351 template<typename _Lock, typename _Rep, typename _Period>
353 wait_for(_Lock& __lock, const chrono::duration<_Rep, _Period>& __rtime)
354 { return wait_until(__lock, __clock_t::now() + __rtime); }
356 template<typename _Lock, typename _Rep,
357 typename _Period, typename _Predicate>
359 wait_for(_Lock& __lock,
360 const chrono::duration<_Rep, _Period>& __rtime, _Predicate __p)
361 { return wait_until(__lock, __clock_t::now() + __rtime, std::move(__p)); }
363#ifdef __cpp_lib_jthread
364 template <class _Lock, class _Predicate>
365 bool wait(_Lock& __lock,
369 if (__stoken.stop_requested())
374 std::stop_callback __cb(__stoken, [this] { notify_all(); });
375 shared_ptr<mutex> __mutex = _M_mutex;
378 unique_lock<mutex> __my_lock(*__mutex);
379 if (__stoken.stop_requested())
383 // *__mutex must be unlocked before re-locking __lock so move
384 // ownership of *__mutex lock to an object with shorter lifetime.
385 _Unlock<_Lock> __unlock(__lock);
386 unique_lock<mutex> __my_lock2(std::move(__my_lock));
387 _M_cond.wait(__my_lock2);
392 template <class _Lock, class _Clock, class _Duration, class _Predicate>
393 bool wait_until(_Lock& __lock,
395 const chrono::time_point<_Clock, _Duration>& __abs_time,
398 if (__stoken.stop_requested())
403 std::stop_callback __cb(__stoken, [this] { notify_all(); });
404 shared_ptr<mutex> __mutex = _M_mutex;
409 unique_lock<mutex> __my_lock(*__mutex);
410 if (__stoken.stop_requested())
414 _Unlock<_Lock> __u(__lock);
415 unique_lock<mutex> __my_lock2(std::move(__my_lock));
416 const auto __status = _M_cond.wait_until(__my_lock2, __abs_time);
417 __stop = (__status == std::cv_status::timeout) || __stoken.stop_requested();
427 template <class _Lock, class _Rep, class _Period, class _Predicate>
428 bool wait_for(_Lock& __lock,
430 const chrono::duration<_Rep, _Period>& __rel_time,
433 auto __abst = std::chrono::steady_clock::now() + __rel_time;
434 return wait_until(__lock,
442 } // end inline namespace
444 /// @} group condition_variables
445_GLIBCXX_END_NAMESPACE_VERSION
448#endif // _GLIBCXX_HAS_GTHREADS
450#endif // _GLIBCXX_CONDITION_VARIABLE