2#include <cosmos/error/ApiError.hxx>
3#include <cosmos/error/UsageError.hxx>
4#include <cosmos/io/Poller.hxx>
5#include <cosmos/private/cosmos.hxx>
6#include <cosmos/proc/process.hxx>
7#include <cosmos/proc/signal.hxx>
8#include <cosmos/proc/SubProc.hxx>
14 fatal_error(
"destroying SubProc while child process still running");
22void SubProc::reset() {
23 m_pid = ProcessID::INVALID;
29 if (flags[WaitFlag::NO_HANG]) {
30 cosmos_throw (
UsageError(
"cannot use NO_HANG with SubProc, use waitTimed() instead"));
35 if (!flags[WaitFlag::LEAVE_INFO] && (child->exited() || child->signaled())) {
43 if (err.
errnum() == Errno::NO_CHILD) {
60 if (poller.
wait(max).empty()) {
69 fatal_error(
"moving into SubProc object with still running child process");
72 m_child_fd = other.m_child_fd;
73 other.m_pid = ProcessID::INVALID;
74 other.m_child_fd.reset();
Specialized exception type used when system APIs fail.
auto errnum() const
Returns the plain errno stored in the exception.
A typesafe bit mask representation using class enums.
void close()
Explicitly close the contained FD.
Efficient file descriptor I/O event polling.
std::vector< PollEvent > wait(const std::optional< IntervalTime > timeout={})
Wait for one of the monitored events to be ready.
void addFD(const FileDescriptor fd, const MonitorFlags flags)
Start monitoring the given file descriptor using the given settings.
@ INPUT
Monitor for read() operation becoming possible.
Represents a POSIX signal number and offers a minimal API around it.
Represents a child process created via ChildCloner.
auto running() const
Returns whether a child process is still active.
void kill(const Signal signal)
Send the specified signal to the child process.
ChildData wait(const WaitFlags flags=WaitFlags{WaitFlag::WAIT_FOR_EXITED})
Performs a blocking wait until the child process exits.
std::optional< ChildData > waitTimed(const IntervalTime max, const WaitFlags flags=WaitFlags{WaitFlag::WAIT_FOR_EXITED})
Wait for sub process exit within a timeout in milliseconds.
PidFD m_child_fd
Pidfd referring to the active child, if any.
ProcessID m_pid
The pid of the child process, if any.
A C++ wrapper around the POSIX struct timespec coupled to a specific CLOCK type.
Exception type for logical usage errors within the application.
Additional data found in SigInfo with SIGCHILD.