This repository was archived by the owner on Dec 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlatch_darwin.cpp
146 lines (128 loc) · 4.79 KB
/
latch_darwin.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
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
#include "latch_darwin.h"
#include <cerrno>
#include <chrono>
#include <mutex>
#include <system_error>
#include <sys/time.h>
using std::system_category;
using std::system_error;
/**
* @brief RAII for `pthread_mutexattr_t`
* @see pthread_mutexattr_t
*/
struct _Mutex_attr_t final {
pthread_mutexattr_t impl{};
_Mutex_attr_t() noexcept(false) {
if (auto ec = pthread_mutexattr_init(&impl))
throw system_error{ec, system_category(), "pthread_mutexattr_init"};
if (auto ec = pthread_mutexattr_settype(&impl, //
PTHREAD_MUTEX_ERRORCHECK))
throw system_error{ec, system_category(),
"pthread_mutexattr_settype"};
// see pthread.h in /ndk/sysroot/usr/include
// general POSIX or NDK high version
#if !defined(__ANDROID_API__) || \
(defined(__ANDROID_API__) && __ANDROID_API__ >= 28)
if (auto ec = pthread_mutexattr_setprotocol(&impl, //
PTHREAD_PRIO_NONE))
throw system_error{ec, system_category(),
"pthread_mutexattr_setprotocol"};
#endif
}
~_Mutex_attr_t() noexcept(false) {
if (auto ec = pthread_mutexattr_destroy(&impl))
throw system_error{ec, system_category(),
"pthread_mutexattr_destroy"};
}
pthread_mutexattr_t* native() {
return &impl;
}
};
_Pthread_mutex_t::_Pthread_mutex_t() noexcept(false) : impl{} {
_Mutex_attr_t attr{};
if (auto ec = pthread_mutex_init(&impl, attr.native()))
throw system_error{ec, system_category(), "pthread_mutex_init"};
}
_Pthread_mutex_t::~_Pthread_mutex_t() noexcept(false) {
if (auto ec = pthread_mutex_destroy(&impl))
throw system_error{ec, system_category(), "pthread_mutex_destroy"};
}
void _Pthread_mutex_t::lock() noexcept(false) {
if (auto ec = pthread_mutex_lock(&impl))
throw system_error{ec, system_category(), "pthread_mutex_lock"};
}
void _Pthread_mutex_t::unlock() noexcept(false) {
if (auto ec = pthread_mutex_unlock(&impl))
throw system_error{ec, system_category(), "pthread_mutex_unlock"};
}
bool _Pthread_mutex_t::try_lock() noexcept {
return pthread_mutex_trylock(&impl) == 0;
}
_Pthread_cond_t::_Pthread_cond_t() noexcept(false) : impl{} {
if (auto ec = pthread_cond_init(&impl, nullptr))
throw system_error{ec, system_category(), "pthread_cond_init"};
}
_Pthread_cond_t::~_Pthread_cond_t() noexcept(false) {
if (auto ec = pthread_cond_destroy(&impl))
throw system_error{ec, system_category(), "pthread_cond_destroy"};
}
int32_t _Pthread_cond_t::notify_one() noexcept {
return pthread_cond_signal(&impl);
}
int32_t _Pthread_cond_t::notify_all() noexcept {
return pthread_cond_broadcast(&impl);
}
int32_t _Pthread_cond_t::wait(_Pthread_mutex_t& mtx) {
std::lock_guard lck{mtx};
return pthread_cond_wait(&impl, mtx.native());
}
int32_t _Pthread_cond_t::wait_for(_Pthread_mutex_t& mtx,
const timespec& until) {
std::lock_guard lck{mtx};
return pthread_cond_timedwait(&impl, mtx.native(), &until);
}
namespace std {
latch::latch(ptrdiff_t expected) noexcept(false)
: counter{expected}, mtx{}, cv{} {
}
void latch::arrive_and_wait(ptrdiff_t update) noexcept(false) {
count_down(update);
wait();
}
void latch::count_down(ptrdiff_t update) noexcept(false) {
if (counter < update)
throw system_error{EINVAL, system_category(),
"update is greater than counter"};
counter -= update;
if (counter > 0)
return;
if (const auto ec = cv.notify_all())
throw system_error{ec, system_category(), "pthread_cond_broadcast"};
}
bool latch::try_wait() const noexcept {
using namespace std::chrono;
// if counter equals zero, returns immediately
if (counter == 0)
return true;
// The sleep time is random-picked for ease of debugging
const auto sleep_time = 1000ms;
// pthread_cond_timedwait requires abs-time
const auto end_time = system_clock::now().time_since_epoch() + sleep_time;
const timespec until{
.tv_sec = duration_cast<seconds>(end_time).count(),
.tv_nsec = duration_cast<nanoseconds>(end_time).count() % 1'000'000,
};
if (const auto ec = cv.wait_for(mtx, until))
errno = ec;
return counter == 0;
}
void latch::wait() const noexcept(false) {
// Since latch doesn't provide interface for waiting with timeout,
// the code can wait more when the counter reached 0
while (try_wait() == false) {
if (errno == ETIMEDOUT) // this might be a spurious wakeup
continue;
throw system_error{errno, system_category(), "pthread_cond_timedwait"};
}
}
} // namespace std