libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
types.hxx
Go to the documentation of this file.
1#pragma once
2
3// C++
4#include <iosfwd>
5#include <string>
6
7// Linux
8#include <signal.h>
9#include <stdlib.h>
10#include <unistd.h>
11
12// cosmos
13#include <cosmos/dso_export.h>
14#include <cosmos/error/errno.hxx>
15#include <cosmos/types.hxx>
16
23namespace cosmos {
24
25enum class ProcessID : pid_t {
26 INVALID = -1,
28 SELF = 0,
30 CHILD = 0
31};
32
33enum class ProcessGroupID : pid_t {
34 INVALID = -1,
35 SELF = 0
36};
37
39
43enum class ExitStatus : int {
44 INVALID = -1,
45 SUCCESS = EXIT_SUCCESS,
46 FAILURE = EXIT_FAILURE,
47};
48
50enum class SignalNr : int {
51 // using some longer identifiers here to avoid symbol clashes with C library preprocessor defines
52 // in some cases also for better readability
53 NONE = 0, // it's unclear from docs what a good invalid signal number might be, but 0 is not used ATM
54 HANGUP = SIGHUP,
55 INTERRUPT = SIGINT,
56 QUIT = SIGQUIT,
57 ILL = SIGILL,
58 TRAP = SIGTRAP,
59 SYS_TRAP = SIGTRAP | 0x80,
60 ABORT = SIGABRT,
61 IOT = ABORT,
62 BUS = SIGBUS,
63 FPE = SIGFPE,
64 KILL = SIGKILL,
65 USR1 = SIGUSR1,
66 SEGV = SIGSEGV,
67 USR2 = SIGUSR2,
68 PIPE = SIGPIPE,
69 ALARM = SIGALRM,
70 TERMINATE = SIGTERM,
71 STACK_FAULT = SIGSTKFLT,
72 CHILD = SIGCHLD,
73 CONT = SIGCONT,
74 STOP = SIGSTOP,
75 TERM_STOP = SIGTSTP,
76 TERM_INPUT = SIGTTIN,
77 TERM_OUTPUT = SIGTTOU,
78 URGENT = SIGURG,
79 CPU_EXCEEDED = SIGXCPU,
80 FS_EXCEEDED = SIGXFSZ,
81 VIRTUAL_ALARM = SIGVTALRM,
82 PROFILING = SIGPROF,
83 WIN_CHANGED = SIGWINCH,
84 IO_EVENT = SIGIO,
85 POLL = IO_EVENT,
86 POWER = SIGPWR,
87 BAD_SYS = SIGSYS,
88#if 0
89 LOST = SIGLOST,
90 EMT = SIGEMT,
91#endif
92 MAXIMUM = _NSIG
93};
94
96class COSMOS_API Signal {
97public: // functions
98
100 constexpr explicit Signal(const SignalNr sig) : m_sig{sig} {}
101
102 constexpr Signal(const Signal &o) { *this = o; }
103
104 constexpr Signal& operator=(const Signal &o) { m_sig = o.m_sig; return *this; }
105
106 bool operator==(const Signal &o) const { return m_sig == o.m_sig; }
107 bool operator!=(const Signal &o) const { return !(*this == o); }
108
109 bool operator<(const Signal &o) const { return m_sig < o.m_sig; }
110 bool operator<=(const Signal &o) const { return m_sig <= o.m_sig; }
111 bool operator>(const Signal &o) const { return m_sig > o.m_sig; }
112 bool operator>=(const Signal &o) const { return m_sig >= o.m_sig; }
113
115 SignalNr raw() const { return m_sig; }
116
118 std::string name() const;
119
120 bool valid() const {
121 return m_sig != SignalNr::NONE;
122 }
123
124protected: // data
125
127 SignalNr m_sig = SignalNr::NONE;
128};
129
130} // end ns
131
133COSMOS_API std::ostream& operator<<(std::ostream &o, const cosmos::Signal sig);
135COSMOS_API std::ostream& operator<<(std::ostream &o, const cosmos::ExitStatus status);
Represents a POSIX signal number and offers a minimal API around it.
Definition types.hxx:96
constexpr Signal(const SignalNr sig)
Creates a Signal object for the given primitive signal number.
Definition types.hxx:100
SignalNr raw() const
Returns the primitive signal number stored in this object.
Definition types.hxx:115
SignalNr m_sig
The raw signal number.
Definition types.hxx:127
COSMOS_API std::ostream & operator<<(std::ostream &o, const cosmos::FileMode mode)
Outputs a friendly version of the FileMode information onto the stream.
ProcessID
Definition types.hxx:25
@ SELF
In a number of system calls zero refers to the calling thread.
ExitStatus
Represents an exit status code from a child process.
Definition types.hxx:43
SignalNr
A primitive signal number specification.
Definition types.hxx:50