11#include <cosmos/BitMask.hxx>
12#include <cosmos/fs/types.hxx>
13#include <cosmos/proc/types.hxx>
14#include <cosmos/thread/thread.hxx>
15#include <cosmos/utils.hxx>
22using CloseOnExec = NamedBool<struct cloexec_t, true>;
50 SHRINK = F_SEAL_SHRINK,
53 FUTURE_WRITE = F_SEAL_FUTURE_WRITE
92 using RawType =
decltype(f_owner_ex::type);
97 enum class Type : std::underlying_type<RawType>::type {
99 PROCESS = F_OWNER_PID,
113 explicit Owner(ProcessGroupID pgid) {
117 explicit Owner(ThreadID tid) {
122 return Type{m_raw.type};
126 return type() == Type::THREAD;
130 return type() == Type::PROCESS;
133 bool isPGID()
const {
134 return type() == Type::GROUP;
139 return m_raw.pid != 0 && (isTID() || isPID() || isPGID());
143 m_raw.type = (RawType)-1;
147 void set(ProcessID pid) {
148 m_raw.type =
static_cast<RawType
>(Type::PROCESS);
149 m_raw.pid = to_integral(pid);
152 void set(ProcessGroupID pgid) {
153 m_raw.type =
static_cast<RawType
>(Type::GROUP);
154 m_raw.pid = to_integral(pgid);
157 void set(ThreadID tid) {
158 m_raw.type =
static_cast<RawType
>(Type::THREAD);
159 m_raw.pid = to_integral(tid);
162 std::optional<ProcessID> asPID()
const {
163 return isPID() ? std::make_optional(ProcessID{m_raw.pid}) : std::nullopt;
166 std::optional<ProcessGroupID> asPGID()
const {
167 return isPGID() ? std::make_optional(ProcessGroupID{m_raw.pid}) : std::nullopt;
170 std::optional<ThreadID> asTID()
const {
171 return isTID() ? std::make_optional(ThreadID{m_raw.pid}) : std::nullopt;
189 constexpr FileDescriptor() =
default;
191 explicit constexpr FileDescriptor(FileNum fd) :
195 bool valid()
const {
return m_fd != FileNum::INVALID; }
196 bool invalid()
const {
return !valid(); }
212 void reset() { m_fd = FileNum::INVALID; }
255 FileDescriptor duplicate(
256 const FileNum lowest = FileNum{0},
257 const CloseOnExec cloexec = CloseOnExec{
true})
const;
260 DescFlags getFlags()
const;
263 void setFlags(
const DescFlags flags);
267 setFlags({on_off ? DescFlag::CLOEXEC : DescFlag::NONE});
271 std::tuple<OpenMode, OpenFlags> getStatusFlags()
const;
279 void setStatusFlags(
const OpenFlags flags);
324 void addSeals(
const SealFlags flags);
327 SealFlags getSeals()
const;
330 int getPipeSize()
const;
338 int setPipeSize(
const int new_size);
344 return m_fd == other.m_fd;
347 bool operator!=(
const FileDescriptor &other)
const {
348 return !(*
this == other);
366 bool getLock(FileLock &lock)
const;
380 bool setLock(
const FileLock &lock)
const;
390 void setLockWait(
const FileLock &lock)
const;
393 bool getOFDLock(FileLock &lock)
const;
396 bool setOFDLock(
const FileLock &lock)
const;
399 void setOFDLockWait(
const FileLock &lock)
const;
409 void getOwner(Owner &owner)
const;
417 void setOwner(
const Owner owner);
436 std::optional<Signal> getSignal()
const;
448 void setSignal(std::optional<Signal> sig);
466 LeaseType getLease()
const;
524 void setLease(
const LeaseType lease);
528 int fcntl(
int cmd)
const;
530 template <
typename T>
531 int fcntl(
int cmd, T val)
const;
535 FileNum m_fd = FileNum::INVALID;
539extern COSMOS_API FileDescriptor stdout;
541extern COSMOS_API FileDescriptor stderr;
543extern COSMOS_API FileDescriptor stdin;
A typesafe bit mask representation using class enums.
Thin Wrapper around OS file descriptors.
LeaseType
Different request types for managing file leases.
DescFlag
Configurable per file-descriptors flags.
FileNum raw() const
Returns the primitive file descriptor contained in the object.
void setFD(const FileNum fd)
Assigns a new primitive file descriptor to the object.
SealFlag
Flags used in addSeals().
bool valid() const
Returns whether currently a valid file descriptor number is assigned.
void reset()
Invalidates the stored file descriptor.
void setCloseOnExec(bool on_off)
convenience wrapper around setFlags to change CLOEXEC setting
Strong template type to wrap boolean values in a named type.
@ THREAD
The child shares the same thread group as the parent. Thread groups are used to implement thread sema...
FileNum
Primitive file descriptor.
Information about file owner settings.
Type
Strong owner type differentation.