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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
|
/**
* \file
* \brief Mutex class header
*
* \author Copyright (C) 2014-2015 Kamil Szczygiel http://www.distortec.com http://www.freddiechopin.info
*
* \par License
* This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not
* distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#ifndef INCLUDE_DISTORTOS_MUTEX_HPP_
#define INCLUDE_DISTORTOS_MUTEX_HPP_
#include "distortos/internal/synchronization/MutexControlBlock.hpp"
namespace distortos
{
/**
* \brief Mutex is the basic synchronization primitive
*
* Similar to std::mutex - http://en.cppreference.com/w/cpp/thread/mutex
* Similar to POSIX pthread_mutex_t -
* http://pubs.opengroup.org/onlinepubs/9699919799/functions/V2_chap02.html#tag_15_09 -> 2.9.3 Thread Mutexes
*
* \ingroup synchronization
*/
class Mutex
{
public:
/// mutex protocols
using Protocol = internal::MutexControlBlock::Protocol;
/// type used for counting recursive locks
using RecursiveLocksCount = uint16_t;
/// type of mutex
enum class Type : uint8_t
{
/// normal mutex, similar to PTHREAD_MUTEX_NORMAL
normal,
/// mutex with additional error checking, similar to PTHREAD_MUTEX_ERRORCHECK
errorChecking,
/// recursive mutex, similar to PTHREAD_MUTEX_RECURSIVE
recursive
};
/**
* \brief Gets the maximum number of recursive locks possible before returning EAGAIN
*
* \note Actual number of lock() operations possible is getMaxRecursiveLocks() + 1.
*
* \return maximum number of recursive locks possible before returning EAGAIN
*/
constexpr static RecursiveLocksCount getMaxRecursiveLocks()
{
return std::numeric_limits<RecursiveLocksCount>::max();
}
/**
* \brief Mutex constructor
*
* Similar to std::mutex::mutex() - http://en.cppreference.com/w/cpp/thread/mutex/mutex
* Similar to pthread_mutex_init() -
* http://pubs.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_init.html
*
* \param [in] type is the type of mutex, default - Type::normal
* \param [in] protocol is the mutex protocol, default - Protocol::none
* \param [in] priorityCeiling is the priority ceiling of mutex, ignored when protocol != Protocol::priorityProtect,
* default - 0
*/
constexpr explicit Mutex(const Type type = Type::normal, const Protocol protocol = Protocol::none,
const uint8_t priorityCeiling = {}) :
controlBlock_{protocol, priorityCeiling},
recursiveLocksCount_{},
type_{type}
{
}
/**
* \brief Locks the mutex.
*
* Similar to std::mutex::lock() - http://en.cppreference.com/w/cpp/thread/mutex/lock
* Similar to pthread_mutex_lock() -
* http://pubs.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_lock.html#
*
* If the mutex is already locked by another thread, the calling thread shall block until the mutex becomes
* available. This function shall return with the mutex in the locked state with the calling thread as its owner. If
* a thread attempts to relock a mutex that it has already locked, deadlock occurs.
*
* \return zero if the caller successfully locked the mutex, error code otherwise:
* - EAGAIN - the mutex could not be acquired because the maximum number of recursive locks for mutex has been
* exceeded;
* - EDEADLK - the mutex type is ErrorChecking and the current thread already owns the mutex;
* - EINVAL - the mutex was created with the protocol attribute having the value PriorityProtect and the calling
* thread's priority is higher than the mutex's current priority ceiling;
*/
int lock();
/**
* \brief Tries to lock the mutex.
*
* Similar to std::mutex::try_lock() - http://en.cppreference.com/w/cpp/thread/mutex/try_lock
* Similar to pthread_mutex_trylock() -
* http://pubs.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_lock.html#
*
* This function shall be equivalent to lock(), except that if the mutex is currently locked (by any thread,
* including the current thread), the call shall return immediately.
*
* \return zero if the caller successfully locked the mutex, error code otherwise:
* - EAGAIN - the mutex could not be acquired because the maximum number of recursive locks for mutex has been
* exceeded;
* - EBUSY - the mutex could not be acquired because it was already locked;
* - EINVAL - the mutex was created with the protocol attribute having the value PriorityProtect and the calling
* thread's priority is higher than the mutex's current priority ceiling;
*/
int tryLock();
/**
* \brief Tries to lock the mutex for given duration of time.
*
* Similar to std::timed_mutex::try_lock_for() - http://en.cppreference.com/w/cpp/thread/timed_mutex/try_lock_for
* Similar to pthread_mutex_timedlock() -
* http://pubs.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_timedlock.html#
*
* If the mutex is already locked, the calling thread shall block until the mutex becomes available as in lock()
* function. If the mutex cannot be locked without waiting for another thread to unlock the mutex, this wait shall
* be terminated when the specified timeout expires.
*
* Under no circumstance shall the function fail with a timeout if the mutex can be locked immediately. The validity
* of the duration parameter need not be checked if the mutex can be locked immediately.
*
* \param [in] duration is the duration after which the wait will be terminated without locking the mutex
*
* \return zero if the caller successfully locked the mutex, error code otherwise:
* - EAGAIN - the mutex could not be acquired because the maximum number of recursive locks for mutex has been
* exceeded;
* - EDEADLK - the mutex type is ErrorChecking and the current thread already owns the mutex;
* - EINVAL - the mutex was created with the protocol attribute having the value PriorityProtect and the calling
* thread's priority is higher than the mutex's current priority ceiling;
* - ETIMEDOUT - the mutex could not be locked before the specified timeout expired;
*/
int tryLockFor(TickClock::duration duration);
/**
* Tries to lock the mutex for given duration of time.
*
* Template variant of tryLockFor(TickClock::duration duration).
*
* \tparam Rep is type of tick counter
* \tparam Period is std::ratio type representing the tick period of the clock, in seconds
*
* \param [in] duration is the duration after which the wait will be terminated without locking the mutex
*
* \return zero if the caller successfully locked the mutex, error code otherwise:
* - EAGAIN - the mutex could not be acquired because the maximum number of recursive locks for mutex has been
* exceeded;
* - EDEADLK - the mutex type is ErrorChecking and the current thread already owns the mutex;
* - EINVAL - the mutex was created with the protocol attribute having the value PriorityProtect and the calling
* thread's priority is higher than the mutex's current priority ceiling;
* - ETIMEDOUT - the mutex could not be locked before the specified timeout expired;
*/
template<typename Rep, typename Period>
int tryLockFor(const std::chrono::duration<Rep, Period> duration)
{
return tryLockFor(std::chrono::duration_cast<TickClock::duration>(duration));
}
/**
* \brief Tries to lock the mutex until given time point.
*
* Similar to std::timed_mutex::try_lock_until() -
* http://en.cppreference.com/w/cpp/thread/timed_mutex/try_lock_until
* Similar to pthread_mutex_timedlock() -
* http://pubs.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_timedlock.html#
*
* If the mutex is already locked, the calling thread shall block until the mutex becomes available as in lock()
* function. If the mutex cannot be locked without waiting for another thread to unlock the mutex, this wait shall
* be terminated when the specified timeout expires.
*
* Under no circumstance shall the function fail with a timeout if the mutex can be locked immediately. The validity
* of the timePoint parameter need not be checked if the mutex can be locked immediately.
*
* \param [in] timePoint is the time point at which the wait will be terminated without locking the mutex
*
* \return zero if the caller successfully locked the mutex, error code otherwise:
* - EAGAIN - the mutex could not be acquired because the maximum number of recursive locks for mutex has been
* exceeded;
* - EDEADLK - the mutex type is ErrorChecking and the current thread already owns the mutex;
* - EINVAL - the mutex was created with the protocol attribute having the value PriorityProtect and the calling
* thread's priority is higher than the mutex's current priority ceiling;
* - ETIMEDOUT - the mutex could not be locked before the specified timeout expired;
*/
int tryLockUntil(TickClock::time_point timePoint);
/**
* \brief Tries to lock the mutex until given time point.
*
* Template variant of tryLockUntil(TickClock::time_point timePoint).
*
* \tparam Duration is a std::chrono::duration type used to measure duration
*
* \param [in] timePoint is the time point at which the wait will be terminated without locking the mutex
*
* \return zero if the caller successfully locked the mutex, error code otherwise:
* - EAGAIN - the mutex could not be acquired because the maximum number of recursive locks for mutex has been
* exceeded;
* - EDEADLK - the mutex type is ErrorChecking and the current thread already owns the mutex;
* - EINVAL - the mutex was created with the protocol attribute having the value PriorityProtect and the calling
* thread's priority is higher than the mutex's current priority ceiling;
* - ETIMEDOUT - the mutex could not be locked before the specified timeout expired;
*/
template<typename Duration>
int tryLockUntil(const std::chrono::time_point<TickClock, Duration> timePoint)
{
return tryLockUntil(std::chrono::time_point_cast<TickClock::duration>(timePoint));
}
/**
* \brief Unlocks the mutex.
*
* Similar to std::mutex::unlock() - http://en.cppreference.com/w/cpp/thread/mutex/unlock
* Similar to pthread_mutex_unlock() -
* http://pubs.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_lock.html#
*
* The mutex must be locked by the current thread, otherwise, the behavior is undefined. If there are threads
* blocked on this mutex, the highest priority waiting thread shall be unblocked, and if there is more than one
* highest priority thread blocked waiting, then the highest priority thread that has been waiting the longest shall
* be unblocked.
*
* \return zero if the caller successfully unlocked the mutex, error code otherwise:
* - EPERM - the mutex type is ErrorChecking or Recursive, and the current thread does not own the mutex;
*/
int unlock();
private:
/**
* \brief Internal version of tryLock().
*
* Internal version with no interrupt masking and additional code for ErrorChecking type (which is not required for
* tryLock()).
*
* \return zero if the caller successfully locked the mutex, error code otherwise:
* - EAGAIN - the mutex could not be acquired because the maximum number of recursive locks for mutex has been
* exceeded;
* - EBUSY - the mutex could not be acquired because it was already locked;
* - EDEADLK - the mutex type is ErrorChecking and the current thread already owns the mutex;
* - EINVAL - the mutex was created with the protocol attribute having the value PriorityProtect and the calling
* thread's priority is higher than the mutex's current priority ceiling;
*/
int tryLockInternal();
/// instance of control block
internal::MutexControlBlock controlBlock_;
/// number of recursive locks, used when mutex type is Recursive
RecursiveLocksCount recursiveLocksCount_;
/// type of mutex
Type type_;
};
} // namespace distortos
#endif // INCLUDE_DISTORTOS_MUTEX_HPP_
|