libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
Mutex.cxx
1// cosmos
2#include <cosmos/error/UsageError.hxx>
3#include <cosmos/private/Initable.hxx>
4#include <cosmos/thread/Mutex.hxx>
5
6namespace cosmos {
7
8namespace {
9
10#ifndef NDEBUG
11constexpr bool DEBUG_MUTEX = true;
12#else
13constexpr bool DEBUG_MUTEX = false;
14#endif
15
17class MutexAttr :
18 public Initable {
19public: // functions
20 MutexAttr() : Initable(InitPrio::MUTEX_ATTR) {}
21
22 pthread_mutexattr_t* getAttr() {
23 if (!libInitialized()) {
24 cosmos_throw (UsageError("libcosmos was not initialized"));
25 }
26 return DEBUG_MUTEX ? &m_attr : nullptr;
27 }
28
29protected: // functions
30
31 void libInit() override {
32 if (!DEBUG_MUTEX)
33 return;
34
35 auto res = ::pthread_mutexattr_init(&m_attr);
36 if (auto err = Errno{res}; err != Errno::NO_ERROR) {
37 cosmos_throw (ApiError("pthread_mutexattr_init()", err));
38 }
39
40 res = ::pthread_mutexattr_settype(
41 &m_attr, PTHREAD_MUTEX_ERRORCHECK
42 );
43
44 if (auto err = Errno{res}; err != Errno::NO_ERROR) {
45 cosmos_throw (ApiError("pthread_mutexattr_settype()", err));
46 }
47 }
48
49 void libExit() override {
50 if (!DEBUG_MUTEX)
51 return;
52 (void)::pthread_mutexattr_destroy(&m_attr);
53 }
54
55protected: // data
56
57 pthread_mutexattr_t m_attr;
58};
59
60MutexAttr g_attr;
61
62} // anon ns
63
65 auto res = ::pthread_mutex_init(&m_pmutex, g_attr.getAttr());
66 if (auto err = Errno{res}; err != Errno::NO_ERROR) {
67 cosmos_throw (ApiError("pthread_mutex_init()", err));
68 }
69}
70
71} // end ns
Specialized exception type used when system APIs fail.
Definition ApiError.hxx:18
Mutex()
Create a non-recursive Mutex.
Definition Mutex.cxx:64
Errno
Strong enum type representing errno error constants.
Definition errno.hxx:29