7#include <cosmos/formatting.hxx>
8#include <cosmos/private/cosmos.hxx>
9#include <cosmos/fs/filesystem.hxx>
10#include <cosmos/fs/DirStream.hxx>
17 }
catch (
const std::exception &ex) {
19 sprintf(
"%s: failed to close directory stream", __FUNCTION__),
29 auto ret = closedir(m_stream);
33 cosmos_throw (
ApiError(
"closedir()"));
47 O_RDONLY | O_CLOEXEC | O_DIRECTORY | (follow_links ? O_NOFOLLOW : 0)
53 cosmos_throw (
ApiError(
"open(O_DIRECTORY)"));
71 open(duplicate.raw());
75 m_stream = ::fdopendir(to_integral(
fd));
78 cosmos_throw (
ApiError(
"fdopendir()"));
84 const OpenFlags flags{OpenFlag::DIRECTORY};
85 auto fd = fs::open_at(dir_fd, subpath, OpenMode::READ_ONLY, flags);
88 m_stream = ::fdopendir(to_integral(
fd.
raw()));
91 cosmos_throw (
ApiError(
"fdopendir()"));
96 requireOpenStream(__FUNCTION__);
97 auto fd = dirfd(m_stream);
108 requireOpenStream(__FUNCTION__);
120 const auto entry = readdir(m_stream);
127 cosmos_throw(
ApiError(
"readdir()"));
Specialized exception type used when system APIs fail.
A typesafe bit mask representation using class enums.
A single directory entry as returned from DirStream::nextEntry().
A specialized FileDescriptor for directory objects.
~DirStream()
Closes the underlying directory object, if currently open.
void open(const DirFD fd)
Associate with the directory represented by the given file descriptor.
DirFD fd() const
Return the file descriptor associated with the current DirStream object.
std::optional< DirEntry > nextEntry()
Returns the next entry in the associated directory.
void close()
Close the currently associated directory.
void close()
Explicitly close the contained FD.
FileNum raw() const
Returns the primitive file descriptor contained in the object.
void duplicate(const FileDescriptor new_fd, const CloseOnExec cloexec=CloseOnExec{true}) const
Get a duplicate file descriptor that will further be known as new_fd.
Strong template type to wrap boolean values in a named type.
void reset_errno()
Resets the currently set errno to indicate no error.
bool is_errno_set()
Checks whether currently an errno is set.
FileNum
Primitive file descriptor.
Wrapper type around a C-style string for use with system APIs.