libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
PosixThread.hxx
1#pragma once
2
3// C++
4#include <functional>
5#include <optional>
6#include <string>
7#include <string_view>
8
9// cosmos
10#include <cosmos/thread/pthread.hxx>
11#include <cosmos/time/types.hxx>
12
13namespace cosmos {
14
16
52class COSMOS_API PosixThread {
53
54 // forbid copy-assignment
55 PosixThread(const PosixThread&) = delete;
56 PosixThread& operator=(const PosixThread&) = delete;
57
58public: // types
59
63 using Entry = std::function<void (void)>;
64
65public: // functions
66
68
73 PosixThread() noexcept {}
74
76
90 PosixThread(PosixEntry entry, pthread::ThreadArg arg, const std::string_view name = {});
91
93
96 explicit PosixThread(Entry entry, const std::string_view name = {});
97
98 PosixThread(PosixThread &&other) noexcept;
99
100 PosixThread& operator=(PosixThread &&other) noexcept;
101
102 virtual ~PosixThread();
103
105 bool joinable() const {
106 return m_pthread.has_value();
107 }
108
110
122 pthread::ExitValue join();
123
125
132 std::optional<pthread::ExitValue> tryJoin();
133
135
146 std::optional<pthread::ExitValue> joinTimed(const RealTime ts);
147
149
159 void detach();
160
162
170 const std::string& name() const { return m_name; }
171
173
183 pthread::ID id() const { return pthread::ID{*m_pthread}; }
184
186 bool isCallerThread() const {
187 return id() == pthread::get_id();
188 }
189
191 void kill(const Signal sig) {
192 pthread::kill(id(), sig);
193 }
194
195protected: // functions
196
197 std::string buildName(const std::string_view name, size_t nr) const;
198
199 void assertJoinConditions();
200
201 void reset();
202
203protected: // data
204
206 std::optional<pthread_t> m_pthread;
207
209 std::string m_name;
210};
211
212} // end ns
A class representing a basic POSIX thread.
pthread::ID id() const
Returns an opaque thread ID object for the thread represented by this object.
std::optional< pthread_t > m_pthread
POSIX thread handle.
void kill(const Signal sig)
Wrapper around cosmos::pthread::kill().
const std::string & name() const
Returns a friendly name for the thread.
PosixThread() noexcept
Creates an empty thread object.
std::function< pthread::ExitValue(pthread::ThreadArg)> PosixEntry
POSIX style entry function with a single input parameter and return value.
std::function< void(void)> Entry
Entry function without parameters for use with member functions or lambdas.
bool joinable() const
Returns whether a thread is attached to this object (and needs to be joined).
bool isCallerThread() const
Returns whether the caller itself is the associated thread.
std::string m_name
Friendly name of the thread.
Represents a POSIX signal number and offers a minimal API around it.
Definition types.hxx:96
A C++ wrapper around the POSIX struct timespec coupled to a specific CLOCK type.
Definition types.hxx:57
POSIX thread IDs for comparison of different threads objects.
Definition pthread.hxx:22
ExitValue
An integer or pointer return value from a pthread.
Definition pthread.hxx:46
ThreadArg
An integer or pointer value supplied to a pthread's entry function.
Definition pthread.hxx:49