libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
Directory.cxx
1// cosmos
2#include <cosmos/error/FileError.hxx>
3#include <cosmos/formatting.hxx>
4#include <cosmos/fs/Directory.hxx>
5#include <cosmos/fs/filesystem.hxx>
6#include <cosmos/private/cosmos.hxx>
7
8namespace cosmos {
9
10Directory::~Directory() {
11 const auto orig_fd = m_fd.raw();
12 try {
13 this->close();
14 } catch (const std::exception &e) {
15 noncritical_error(sprintf("%s: failed to close fd(%d)", __FUNCTION__, to_integral(orig_fd)), e);
16 }
17}
18
19void Directory::open(const SysString path, const OpenMode mode, OpenFlags flags) {
20
21 m_auto_close = AutoCloseFD{true};
22 flags.set(OpenFlag::DIRECTORY);
23 auto fd = fs::open(path, mode, flags, {});
24 m_fd = DirFD{fd.raw()};
25}
26
27void Directory::open(const DirFD dir_fd, const SysString path, const OpenMode mode, OpenFlags flags) {
28 m_auto_close = AutoCloseFD{true};
29 flags.set(OpenFlag::DIRECTORY);
30
31 auto fd = fs::open_at(dir_fd, path, mode, flags, {});
32 m_fd = DirFD{fd.raw()};
33}
34
35} // end ns
A typesafe bit mask representation using class enums.
Definition BitMask.hxx:19
BitMask & set(const All)
Sets all bits it the set.
Definition BitMask.hxx:77
A specialized FileDescriptor for directory objects.
Definition DirFD.hxx:17
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 close()
Close the current dir object.
FileNum raw() const
Returns the primitive file descriptor contained in the 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