libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
File.hxx
1#pragma once
2
3// C++
4#include <optional>
5
6// cosmos
7#include <cosmos/SysString.hxx>
8#include <cosmos/fs/DirFD.hxx>
9#include <cosmos/fs/FDFile.hxx>
10
11namespace cosmos {
12
14
23class COSMOS_API File :
24 public FDFile {
25public: // functions
26
27 File() = default;
28
30 File(const SysString path, const OpenMode mode) :
31 File{path, mode, OpenFlags{OpenFlag::CLOEXEC}} {}
32
34
39 File(const SysString path, const OpenMode mode, const OpenFlags flags,
40 const std::optional<FileMode> fmode = {}) {
41 open(path, mode, flags, fmode);
42 }
43
45
48 File(const DirFD dir_fd, const SysString path, const OpenMode mode,
49 const OpenFlags flags, const std::optional<FileMode> fmode = {}) {
50 open(dir_fd, path, mode, flags, fmode);
51 }
52
54 File(const FileDescriptor fd, const AutoCloseFD auto_close) :
55 FDFile{fd, auto_close}
56 {}
57
58 using FDFile::open;
59
61 void open(const SysString path, const OpenMode mode) {
62 return open(path, mode, {OpenFlag::CLOEXEC});
63 }
64
66
70 void open(const SysString path, const OpenMode mode,
71 const OpenFlags flags, const std::optional<FileMode> fmode = {});
72
74 void open(const DirFD dir_fd, const SysString path, const OpenMode mode) {
75 open(dir_fd, path, mode, {OpenFlag::CLOEXEC});
76 }
77
79
82 void open(const DirFD dir_fd, const SysString path, const OpenMode mode,
83 const OpenFlags flags, const std::optional<FileMode> fmode = {});
84};
85
86} // end ns
A typesafe bit mask representation using class enums.
Definition BitMask.hxx:19
A specialized FileDescriptor for directory objects.
Definition DirFD.hxx:17
File objects that are opened from existing FileDescriptor objects.
Definition FDFile.hxx:16
Thin Wrapper around OS file descriptors.
File objects that are opened by pathname.
Definition File.hxx:24
void open(const SysString path, const OpenMode mode)
Definition File.hxx:61
File(const FileDescriptor fd, const AutoCloseFD auto_close)
Wrap the given file descriptor applying the specified auto-close behaviour.
Definition File.hxx:54
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.
Definition File.hxx:48
void open(const DirFD dir_fd, const SysString path, const OpenMode mode)
Definition File.hxx:74
File(const SysString path, const OpenMode mode)
Open a file without special flags (close-on-exec will be set).
Definition File.hxx:30
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.
Definition File.hxx:39
OpenFlag
Strong enum type wrapper for file descriptor settings on top of the basic OpenMode....
Definition types.hxx:59
OpenMode
Strong enum type wrapper for the basic open() mode flag.
Definition types.hxx:52
Wrapper type around a C-style string for use with system APIs.
Definition SysString.hxx:33