-
Notifications
You must be signed in to change notification settings - Fork 247
/
base_lock.h
142 lines (113 loc) · 3.4 KB
/
base_lock.h
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
WINRT_EXPORT namespace winrt
{
struct slim_condition_variable;
struct slim_mutex
{
slim_mutex(slim_mutex const&) = delete;
slim_mutex& operator=(slim_mutex const&) = delete;
slim_mutex() noexcept = default;
void lock() noexcept
{
WINRT_IMPL_AcquireSRWLockExclusive(&m_lock);
}
void lock_shared() noexcept
{
WINRT_IMPL_AcquireSRWLockShared(&m_lock);
}
bool try_lock() noexcept
{
return 0 != WINRT_IMPL_TryAcquireSRWLockExclusive(&m_lock);
}
bool try_lock_shared() noexcept
{
return 0 != WINRT_IMPL_TryAcquireSRWLockShared(&m_lock);
}
void unlock() noexcept
{
WINRT_IMPL_ReleaseSRWLockExclusive(&m_lock);
}
void unlock_shared() noexcept
{
WINRT_IMPL_ReleaseSRWLockShared(&m_lock);
}
private:
friend slim_condition_variable;
auto get() noexcept
{
return &m_lock;
}
impl::srwlock m_lock{};
};
struct slim_lock_guard
{
explicit slim_lock_guard(slim_mutex& m) noexcept :
m_mutex(m)
{
m_mutex.lock();
}
slim_lock_guard(slim_lock_guard const&) = delete;
~slim_lock_guard() noexcept
{
m_mutex.unlock();
}
private:
slim_mutex& m_mutex;
};
struct slim_shared_lock_guard
{
explicit slim_shared_lock_guard(slim_mutex& m) noexcept :
m_mutex(m)
{
m_mutex.lock_shared();
}
slim_shared_lock_guard(slim_shared_lock_guard const&) = delete;
~slim_shared_lock_guard() noexcept
{
m_mutex.unlock_shared();
}
private:
slim_mutex& m_mutex;
};
struct slim_condition_variable
{
slim_condition_variable(slim_condition_variable const&) = delete;
slim_condition_variable const& operator=(slim_condition_variable const&) = delete;
slim_condition_variable() noexcept = default;
template <typename T>
void wait(slim_mutex& x, T predicate)
{
while (!predicate())
{
WINRT_VERIFY(WINRT_IMPL_SleepConditionVariableSRW(&m_cv, x.get(), 0xFFFFFFFF /*INFINITE*/, 0));
}
}
template <typename T>
bool wait_for(slim_mutex& x, std::chrono::high_resolution_clock::duration const timeout, T predicate)
{
auto const until = std::chrono::high_resolution_clock::now() + timeout;
while (!predicate())
{
auto const milliseconds = std::chrono::duration_cast<std::chrono::milliseconds>(until - std::chrono::high_resolution_clock::now()).count();
if (milliseconds <= 0)
{
return false;
}
if (!WINRT_IMPL_SleepConditionVariableSRW(&m_cv, x.get(), static_cast<uint32_t>(milliseconds), 0))
{
return predicate();
}
}
return true;
}
void notify_one() noexcept
{
WINRT_IMPL_WakeConditionVariable(&m_cv);
}
void notify_all() noexcept
{
WINRT_IMPL_WakeAllConditionVariable(&m_cv);
}
private:
impl::condition_variable m_cv{};
};
}