libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
ProcessFile.hxx
1#pragma once
2
3// C++
4#include <optional>
5
6// cosmos
7#include <cosmos/BitMask.hxx>
8#include <cosmos/proc/pidfd.h>
9#include <cosmos/proc/PidFD.hxx>
10#include <cosmos/proc/process.hxx>
11#include <cosmos/proc/signal.hxx>
12#include <cosmos/proc/types.hxx>
13
14namespace cosmos {
15
17
22class COSMOS_API ProcessFile {
23public: // types
24
25 enum class OpenFlag : unsigned int {
26 NONBLOCK = PIDFD_NONBLOCK
27 };
28
30
31public: // functions
32
34
43 explicit ProcessFile(const ProcessID pid, const OpenFlags flags = OpenFlags{});
44
46
52 explicit ProcessFile(const PidFD fd) :
53 m_fd{fd}
54 {}
55
56 /* non-copyable and move semantics */
57
58 ProcessFile(const ProcessFile&) = delete;
59 ProcessFile& operator=(const ProcessFile&) = delete;
60
61 ProcessFile(ProcessFile &&other) noexcept {
62 *this = std::move(other);
63 }
64
65 ProcessFile& operator=(ProcessFile &&other) noexcept {
66 m_fd = other.m_fd;
67 other.m_fd.reset();
68 return *this;
69 }
70
71 ~ProcessFile();
72
74 bool open() const {
75 return m_fd.valid();
76 }
77
78 void close() {
79 m_fd.close();
80 }
81
83
88 PidFD fd() const { return m_fd; }
89
91 void sendSignal(const Signal sig) const {
92 signal::send(m_fd, sig);
93 }
94
96
116 FileDescriptor dupFD(const FileNum targetfd) const;
117
119
122 std::optional<ChildData> wait(const WaitFlags flags = WaitFlags{WaitFlag::WAIT_FOR_EXITED}) {
123 return proc::wait(m_fd, flags);
124 }
125
126protected: // data
127
128 PidFD m_fd;
129};
130
131} // end ns
A typesafe bit mask representation using class enums.
Definition BitMask.hxx:19
Thin Wrapper around OS file descriptors.
A specialized FileDescriptor for pidfds.
Definition PidFD.hxx:36
Wrapper around a PidFD.
PidFD fd() const
Returns the raw PidFD file descriptor.
void sendSignal(const Signal sig) const
Send a signal to the represented process.
ProcessFile(const PidFD fd)
Wraps the given PidFD and takes ownership of it.
std::optional< ChildData > wait(const WaitFlags flags=WaitFlags{WaitFlag::WAIT_FOR_EXITED})
Wait for the child process to exit.
bool open() const
Returns whether a pidfd is currently open.
Represents a POSIX signal number and offers a minimal API around it.
Definition types.hxx:96
FileNum
Primitive file descriptor.
Definition types.hxx:32
@ NONBLOCK
Attempt to open the file in non-blocking mode causing I/O operations not to block.
ProcessID
Definition types.hxx:25