7#include <cosmos/SysString.hxx>
8#include <cosmos/fs/DirFD.hxx>
9#include <cosmos/fs/FDFile.hxx>
40 const std::optional<FileMode> fmode = {}) {
41 open(path, mode, flags, fmode);
49 const OpenFlags flags,
const std::optional<FileMode> fmode = {}) {
50 open(dir_fd, path, mode, flags, fmode);
62 return open(path, mode, {OpenFlag::CLOEXEC});
71 const OpenFlags flags,
const std::optional<FileMode> fmode = {});
75 open(dir_fd, path, mode, {OpenFlag::CLOEXEC});
83 const OpenFlags flags,
const std::optional<FileMode> fmode = {});
A typesafe bit mask representation using class enums.
A specialized FileDescriptor for directory objects.
File objects that are opened from existing FileDescriptor objects.
Thin Wrapper around OS file descriptors.
File objects that are opened by pathname.
void open(const SysString path, const OpenMode mode)
File(const FileDescriptor fd, const AutoCloseFD auto_close)
Wrap the given file descriptor applying the specified auto-close behaviour.
File(const DirFD dir_fd, const SysString path, const OpenMode mode, const OpenFlags flags, const std::optional< FileMode > fmode={})
Open the given path relative to the given directory file descriptor dir_fd.
void open(const DirFD dir_fd, const SysString path, const OpenMode mode)
File(const SysString path, const OpenMode mode)
Open a file without special flags (close-on-exec will be set).
File(const SysString path, const OpenMode mode, const OpenFlags flags, const std::optional< FileMode > fmode={})
Open a file using specific OpenFlags, potentially creating it first using the given fmode.
OpenFlag
Strong enum type wrapper for file descriptor settings on top of the basic OpenMode....
OpenMode
Strong enum type wrapper for the basic open() mode flag.
Wrapper type around a C-style string for use with system APIs.