libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
SigSet.hxx
1#pragma once
2
3// Linux
4#include <signal.h>
5
6// cosmos
7#include <cosmos/proc/types.hxx>
8#include <cosmos/utils.hxx>
9
10namespace cosmos {
11
13
25class SigSet {
26public: // types
27
28 struct fill_t {};
29
30 static constexpr fill_t filled{};
31
32public: // functions
33
35 SigSet() {}
37 explicit SigSet(const fill_t) { fill(); }
39 explicit SigSet(const std::initializer_list<Signal> &siglist) {
40 for (auto &sig: siglist) {
41 set(sig);
42 }
43 }
44
46 void clear() { ::sigemptyset(&m_set); }
48 void fill() { ::sigfillset(&m_set); }
49
51 bool isSet(const Signal s) const { return ::sigismember(&m_set, to_integral(s.raw())); }
53 void set(const Signal s) { ::sigaddset(&m_set, to_integral(s.raw())); }
55 void del(const Signal s) { ::sigdelset(&m_set, to_integral(s.raw())); }
56
58 sigset_t* raw() { return &m_set; }
59 const sigset_t* raw() const { return &m_set; }
60
61protected: // data
62
63 sigset_t m_set{};
64};
65
66} // end ns
A bit set of signal numbers for use in system calls.
Definition SigSet.hxx:25
void del(const Signal s)
Removes the given signal from the set.
Definition SigSet.hxx:55
bool isSet(const Signal s) const
Returns whether the given signal is set.
Definition SigSet.hxx:51
void clear()
Clears all signals in the set.
Definition SigSet.hxx:46
SigSet()
Creates an empty signal set.
Definition SigSet.hxx:35
SigSet(const std::initializer_list< Signal > &siglist)
Creates a signal set with the given list of signals set.
Definition SigSet.hxx:39
sigset_t * raw()
Returns a pointer to the raw sigset_t data structure for use in API calls.
Definition SigSet.hxx:58
SigSet(const fill_t)
Creates a fully set signal set.
Definition SigSet.hxx:37
void set(const Signal s)
Sets the given signal in the set.
Definition SigSet.hxx:53
void fill()
Sets all signals in the set.
Definition SigSet.hxx:48
Represents a POSIX signal number and offers a minimal API around it.
Definition types.hxx:96
SignalNr raw() const
Returns the primitive signal number stored in this object.
Definition types.hxx:115