1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #ifndef _LIBCPP___MUTEX_UNIQUE_LOCK_H
10 #define _LIBCPP___MUTEX_UNIQUE_LOCK_H
12 #include <__chrono/duration.h>
13 #include <__chrono/time_point.h>
15 #include <__memory/addressof.h>
16 #include <__mutex/tag_types.h>
17 #include <__system_error/system_error.h>
18 #include <__utility/swap.h>
21 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
22 # pragma GCC system_header
25 #ifndef _LIBCPP_HAS_NO_THREADS
27 _LIBCPP_BEGIN_NAMESPACE_STD
29 template <class _Mutex
>
30 class _LIBCPP_TEMPLATE_VIS unique_lock
{
32 typedef _Mutex mutex_type
;
39 _LIBCPP_HIDE_FROM_ABI
unique_lock() _NOEXCEPT
: __m_(nullptr), __owns_(false) {}
40 _LIBCPP_HIDE_FROM_ABI
explicit unique_lock(mutex_type
& __m
) : __m_(std::addressof(__m
)), __owns_(true) {
44 _LIBCPP_HIDE_FROM_ABI
unique_lock(mutex_type
& __m
, defer_lock_t
) _NOEXCEPT
45 : __m_(std::addressof(__m
)),
48 _LIBCPP_HIDE_FROM_ABI
unique_lock(mutex_type
& __m
, try_to_lock_t
)
49 : __m_(std::addressof(__m
)), __owns_(__m
.try_lock()) {}
51 _LIBCPP_HIDE_FROM_ABI
unique_lock(mutex_type
& __m
, adopt_lock_t
) : __m_(std::addressof(__m
)), __owns_(true) {}
53 template <class _Clock
, class _Duration
>
54 _LIBCPP_HIDE_FROM_ABI
unique_lock(mutex_type
& __m
, const chrono::time_point
<_Clock
, _Duration
>& __t
)
55 : __m_(std::addressof(__m
)), __owns_(__m
.try_lock_until(__t
)) {}
57 template <class _Rep
, class _Period
>
58 _LIBCPP_HIDE_FROM_ABI
unique_lock(mutex_type
& __m
, const chrono::duration
<_Rep
, _Period
>& __d
)
59 : __m_(std::addressof(__m
)), __owns_(__m
.try_lock_for(__d
)) {}
61 _LIBCPP_HIDE_FROM_ABI
~unique_lock() {
66 unique_lock(unique_lock
const&) = delete;
67 unique_lock
& operator=(unique_lock
const&) = delete;
69 _LIBCPP_HIDE_FROM_ABI
unique_lock(unique_lock
&& __u
) _NOEXCEPT
: __m_(__u
.__m_
), __owns_(__u
.__owns_
) {
74 _LIBCPP_HIDE_FROM_ABI unique_lock
& operator=(unique_lock
&& __u
) _NOEXCEPT
{
79 __owns_
= __u
.__owns_
;
88 template <class _Rep
, class _Period
>
89 bool try_lock_for(const chrono::duration
<_Rep
, _Period
>& __d
);
91 template <class _Clock
, class _Duration
>
92 bool try_lock_until(const chrono::time_point
<_Clock
, _Duration
>& __t
);
96 _LIBCPP_HIDE_FROM_ABI
void swap(unique_lock
& __u
) _NOEXCEPT
{
97 std::swap(__m_
, __u
.__m_
);
98 std::swap(__owns_
, __u
.__owns_
);
101 _LIBCPP_HIDE_FROM_ABI mutex_type
* release() _NOEXCEPT
{
102 mutex_type
* __m
= __m_
;
108 _LIBCPP_HIDE_FROM_ABI
bool owns_lock() const _NOEXCEPT
{ return __owns_
; }
109 _LIBCPP_HIDE_FROM_ABI
explicit operator bool() const _NOEXCEPT
{ return __owns_
; }
110 _LIBCPP_HIDE_FROM_ABI mutex_type
* mutex() const _NOEXCEPT
{ return __m_
; }
112 _LIBCPP_CTAD_SUPPORTED_FOR_TYPE(unique_lock
);
114 template <class _Mutex
>
115 void unique_lock
<_Mutex
>::lock() {
117 __throw_system_error(EPERM
, "unique_lock::lock: references null mutex");
119 __throw_system_error(EDEADLK
, "unique_lock::lock: already locked");
124 template <class _Mutex
>
125 bool unique_lock
<_Mutex
>::try_lock() {
127 __throw_system_error(EPERM
, "unique_lock::try_lock: references null mutex");
129 __throw_system_error(EDEADLK
, "unique_lock::try_lock: already locked");
130 __owns_
= __m_
->try_lock();
134 template <class _Mutex
>
135 template <class _Rep
, class _Period
>
136 bool unique_lock
<_Mutex
>::try_lock_for(const chrono::duration
<_Rep
, _Period
>& __d
) {
138 __throw_system_error(EPERM
, "unique_lock::try_lock_for: references null mutex");
140 __throw_system_error(EDEADLK
, "unique_lock::try_lock_for: already locked");
141 __owns_
= __m_
->try_lock_for(__d
);
145 template <class _Mutex
>
146 template <class _Clock
, class _Duration
>
147 bool unique_lock
<_Mutex
>::try_lock_until(const chrono::time_point
<_Clock
, _Duration
>& __t
) {
149 __throw_system_error(EPERM
, "unique_lock::try_lock_until: references null mutex");
151 __throw_system_error(EDEADLK
, "unique_lock::try_lock_until: already locked");
152 __owns_
= __m_
->try_lock_until(__t
);
156 template <class _Mutex
>
157 void unique_lock
<_Mutex
>::unlock() {
159 __throw_system_error(EPERM
, "unique_lock::unlock: not locked");
164 template <class _Mutex
>
165 inline _LIBCPP_HIDE_FROM_ABI
void swap(unique_lock
<_Mutex
>& __x
, unique_lock
<_Mutex
>& __y
) _NOEXCEPT
{
169 _LIBCPP_END_NAMESPACE_STD
171 #endif // _LIBCPP_HAS_NO_THREADS
173 #endif // _LIBCPP___MUTEX_UNIQUE_LOCK_H