libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
SubProc.hxx
1#pragma once
2
3// C++
4#include <chrono>
5#include <optional>
6
7// cosmos
8#include <cosmos/proc/PidFD.hxx>
9#include <cosmos/proc/process.hxx>
10#include <cosmos/types.hxx>
11
12namespace cosmos {
13
15
30class COSMOS_API SubProc {
32 SubProc(const SubProc &other) = delete;
33 SubProc& operator=(const SubProc &other) = delete;
34
35public: // functions
36
38 SubProc() = default;
39
40 ~SubProc();
41
43
50 SubProc(SubProc &&other) noexcept {
51 *this = std::move(other);
52 }
53
54 SubProc& operator=(SubProc &&other) noexcept;
55
57
62 auto running() const { return m_child_fd.valid(); }
63
65
77 ChildData wait(const WaitFlags flags = WaitFlags{WaitFlag::WAIT_FOR_EXITED});
78
80
86 std::optional<ChildData> waitTimed(const IntervalTime max,
87 const WaitFlags flags = WaitFlags{WaitFlag::WAIT_FOR_EXITED});
88
90 void kill(const Signal signal);
91
93 ProcessID pid() const { return m_pid; }
94
96
105 PidFD pidFD() const { return m_child_fd; }
106
107protected: // functions
108
109 friend class ChildCloner;
110
112 SubProc(const ProcessID pid, const PidFD pidfd) :
113 m_pid{pid}, m_child_fd{pidfd}
114 {}
115
116 void reset();
117
118protected: // data
119
121 ProcessID m_pid = ProcessID::INVALID;
122
125};
126
127} // end ns
A typesafe bit mask representation using class enums.
Definition BitMask.hxx:19
Sub process creation facility.
A specialized FileDescriptor for pidfds.
Definition PidFD.hxx:36
Represents a child process created via ChildCloner.
Definition SubProc.hxx:30
auto running() const
Returns whether a child process is still active.
Definition SubProc.hxx:62
SubProc(SubProc &&other) noexcept
Implements move-semantics.
Definition SubProc.hxx:50
PidFD pidFD() const
Returns a pidfd referring to the currently running child.
Definition SubProc.hxx:105
ProcessID pid() const
Returns the PID of the currently running child process or ProcessID::INVALID.
Definition SubProc.hxx:93
SubProc()=default
Creates an empty sub process without state.
PidFD m_child_fd
Pidfd referring to the active child, if any.
Definition SubProc.hxx:124
SubProc(const ProcessID pid, const PidFD pidfd)
Wraps the given process ID and pidfd.
Definition SubProc.hxx:112
ProcessID
Definition types.hxx:25
Additional data found in SigInfo with SIGCHILD.
Definition SigInfo.hxx:321