libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
Condition.hxx
1#pragma once
2
3// Linux
4#include <pthread.h>
5
6// C++
7#include <cassert>
8
9// cosmos
10#include <cosmos/thread/Mutex.hxx>
11#include <cosmos/time/types.hxx>
12
13namespace cosmos {
14
16
33class COSMOS_API Condition {
34 // disallow copy-assignment
35 Condition(const Condition&) = delete;
36 Condition& operator=(const Condition&) = delete;
37
38public: // types
39
41 enum class WaitTimedRes {
42 TIMED_OUT,
43 SIGNALED
44 };
45
46public: // functions
47
49
55 explicit Condition(Mutex &lock);
56
57 ~Condition() {
58 const auto destroy_res = ::pthread_cond_destroy(&m_pcond);
59
60 assert (!destroy_res);
61 (void)destroy_res;
62 }
63
65
71 void wait() const {
72 auto res = ::pthread_cond_wait(&m_pcond, &(m_lock.m_pmutex));
73
74 if (auto err = Errno{res}; err != Errno::NO_ERROR) {
75 cosmos_throw (ApiError("pthread_cond_wait()", Errno{err}));
76 }
77 }
78
80
90 auto res = ::pthread_cond_timedwait(&m_pcond, &(m_lock.m_pmutex), &ts);
91
92 switch(Errno{res}) {
93 default: cosmos_throw (ApiError("pthread_cond_timedwait()", Errno{res})); return WaitTimedRes::TIMED_OUT; /* just to silence compiler warning */
94 case Errno::NO_ERROR: return WaitTimedRes::SIGNALED;
95 case Errno::TIMEDOUT: return WaitTimedRes::TIMED_OUT;
96 }
97 }
98
100
108 void signal() {
109 auto res = ::pthread_cond_signal(&m_pcond);
110
111 if (auto err = Errno{res}; err != Errno::NO_ERROR) {
112 cosmos_throw (ApiError("pthread_cond_signal()", err));
113 }
114 }
115
117
124 void broadcast() {
125 auto res = ::pthread_cond_broadcast(&m_pcond);
126
127 if (auto err = Errno{res}; err != Errno::NO_ERROR) {
128 cosmos_throw (ApiError("pthread_cond_broadcast()", err));
129 }
130 }
131
132 Mutex& mutex() { return m_lock; }
133
134protected: // data
135
136 // mutable to allow const semantics in wait*()
137 mutable pthread_cond_t m_pcond;
138 Mutex &m_lock;
139};
140
143 public Mutex,
144 public Condition {
145public: // functions
146
148 Condition{static_cast<Mutex&>(*this)}
149 {}
150};
151
152} // end ns
Specialized exception type used when system APIs fail.
Definition ApiError.hxx:18
An aggregate of a Mutex and a Condition coupled together for typical Condition usage.
A class to represent a pthread condition.
Definition Condition.hxx:33
void signal()
Signal and unblock one waiting thread.
WaitTimedRes
Strong type to express waitTimed() results.
Definition Condition.hxx:41
WaitTimedRes waitTimed(const MonotonicTime ts) const
Wait for the Condition to be signaled with timeout.
Definition Condition.hxx:89
void broadcast()
Signal and unblock all waiting threads.
void wait() const
Wait for the Condition to be signaled.
Definition Condition.hxx:71
A class to represent a pthread mutex.
Definition Mutex.hxx:25
A C++ wrapper around the POSIX struct timespec coupled to a specific CLOCK type.
Definition types.hxx:57
Errno
Strong enum type representing errno error constants.
Definition errno.hxx:29