libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
Directory.hxx
1#pragma once
2
3// cosmos
4#include <cosmos/fs/DirFD.hxx>
5#include <cosmos/fs/types.hxx>
6#include <cosmos/SysString.hxx>
7
8namespace cosmos {
9
11
20class COSMOS_API Directory {
21public: // functions
22
23 Directory() = default;
24
25 explicit Directory(DirFD fd, const AutoCloseFD auto_close) {
26 open(fd, auto_close);
27 }
28
29
31 explicit Directory(const SysString path, const OpenMode mode = OpenMode::READ_ONLY) :
32 Directory{path, mode, {OpenFlag::CLOEXEC}} {}
33
35
38 explicit Directory(const SysString path, const OpenMode mode, const OpenFlags flags) {
39 open(path, mode, flags);
40 }
41
43 Directory(const DirFD dir_fd, const SysString path, const OpenMode mode = OpenMode::READ_ONLY) :
44 Directory{dir_fd, path, mode, {OpenFlag::CLOEXEC}} {}
45
47 Directory(const DirFD dir_fd, const SysString path, const OpenMode mode,
48 const OpenFlags flags) {
49 open(dir_fd, path, mode, flags);
50 }
51
52 // Prevent copying due to the DirFD ownership.
53 Directory(const Directory&) = delete;
54 Directory& operator=(const Directory&) = delete;
55
56 Directory(Directory &&other) noexcept {
57 *this = std::move(other);
58 }
59
60 Directory& operator=(Directory &&other) noexcept {
61 m_auto_close = other.m_auto_close;
62 m_fd = other.m_fd;
63
64 other.m_auto_close = AutoCloseFD{true};
65 other.m_fd.reset();
66 return *this;
67 }
68
69 virtual ~Directory();
70
72 void open(const SysString path, const OpenMode mode = OpenMode::READ_ONLY) {
73 return open(path, mode, {OpenFlag::CLOEXEC});
74 }
75
77
82 void open(const SysString path, const OpenMode mode, OpenFlags flags);
83
85 void open(const DirFD dir_fd, const SysString path, const OpenMode mode) {
86 open(dir_fd, path, mode, {OpenFlag::CLOEXEC});
87 }
88
90 void open(const DirFD dir_fd, const SysString path, const OpenMode mode,
91 const OpenFlags flags);
92
94
103 void open(DirFD fd, const AutoCloseFD auto_close) {
104 m_fd = fd;
105 m_auto_close = auto_close;
106 }
107
108 bool isOpen() const { return m_fd.valid(); }
109
111
117 void close() {
118 if (!isOpen())
119 return;
120
121 if (m_auto_close) {
122 m_fd.close();
123 } else {
124 m_fd.reset();
125 }
126
127 m_auto_close = AutoCloseFD{true};
128 }
129
130 DirFD fd() const { return m_fd; }
131
132 // \see fs::unlink_file_at()
133 inline void unlinkFileAt(const SysString path) const;
134
135 // \see fs::make_dir_at()
136 inline void makeDirAt(const SysString path, const FileMode mode) const;
137
138 // \see fs::remove_dir_at()
139 inline void removeDirAt(const SysString path) const;
140
141 // \see fs::read_symlink_at()
142 inline std::string readSymlinkAt(const SysString path) const;
143
144 // \see fs::make_symlink_at()
145 inline void makeSymlinkAt(const SysString target, const SysString path) const;
146
147protected: // data
148
149 AutoCloseFD m_auto_close;
150 DirFD m_fd;
151};
152
153} // end ns
154
155// only include this here, because of dependency issues
156#include <cosmos/fs/filesystem.hxx>
157
158namespace cosmos {
159
160void Directory::unlinkFileAt(const SysString path) const {
161 fs::unlink_file_at(m_fd, path);
162}
163
164void Directory::makeDirAt(const SysString path, const FileMode mode) const {
165 fs::make_dir_at(m_fd, path, mode);
166}
167
168void Directory::removeDirAt(const SysString path) const {
169 fs::remove_dir_at(m_fd, path);
170}
171
172std::string Directory::readSymlinkAt(const SysString path) const {
173 return fs::read_symlink_at(m_fd, path);
174}
175
176void Directory::makeSymlinkAt(const SysString target, const SysString path) const {
177 fs::make_symlink_at(target, m_fd, path);
178}
179
180} // end ns
A typesafe bit mask representation using class enums.
Definition BitMask.hxx:19
A specialized FileDescriptor for directory objects.
Definition DirFD.hxx:17
Representation of open directory file descriptors.
Definition Directory.hxx:20
Directory(const SysString path, const OpenMode mode, const OpenFlags flags)
Open a directory by path using the given mode and flags.
Definition Directory.hxx:38
Directory(const SysString path, const OpenMode mode=OpenMode::READ_ONLY)
Open a directory by path without special flags (close-on-exec will be set).
Definition Directory.hxx:31
Directory(const DirFD dir_fd, const SysString path, const OpenMode mode, const OpenFlags flags)
Open a directory by path relative to dir_fd using the given mode and flags.
Definition Directory.hxx:47
void open(const SysString path, const OpenMode mode=OpenMode::READ_ONLY)
Open a directory by path without special flags (close-on-exec will be set).
Definition Directory.hxx:72
void open(DirFD fd, const AutoCloseFD auto_close)
Takes the already open directory file descriptor fd and operators on it.
void open(const DirFD dir_fd, const SysString path, const OpenMode mode)
Open a directory by path relative to dir_fd using the given mode and default flags.
Definition Directory.hxx:85
Directory(const DirFD dir_fd, const SysString path, const OpenMode mode=OpenMode::READ_ONLY)
Open a directory by path relative to dir_fd using the given mode and default flags.
Definition Directory.hxx:43
void close()
Close the current dir object.
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