9#include <cosmos/SysString.hxx>
10#include <cosmos/error/ApiError.hxx>
11#include <cosmos/error/UsageError.hxx>
12#include <cosmos/fs/DirEntry.hxx>
13#include <cosmos/fs/DirFD.hxx>
14#include <cosmos/fs/filesystem.hxx>
15#include <cosmos/utils.hxx>
84 void open(
const DirFD fd);
97 auto isOpen()
const {
return m_stream !=
nullptr; }
115 requireOpenStream(
"tell");
117 auto ret = ::telldir(m_stream);
120 cosmos_throw (
ApiError(
"telldir()"));
131 requireOpenStream(
"seek");
133 ::seekdir(m_stream, to_integral(pos));
138 ::rewinddir(m_stream);
152 std::optional<DirEntry> nextEntry();
158 void requireOpenStream(
const std::string_view context)
const {
160 cosmos_throw (
UsageError(std::string(context) +
" on unassociated DirStream instance"));
166 DIR *m_stream =
nullptr;
172#include <cosmos/fs/DirIterator.hxx>
Specialized exception type used when system APIs fail.
DirPos
strong type for representing directory stream positions
A specialized FileDescriptor for directory objects.
Access directory contents in the file system.
DirStream()=default
Creates an object not associated with a directory.
DirEntry::DirPos tell() const
Returns the current position in the directory iteration.
void rewind()
Rewind the directory stream to the beginning.
DirStream(const DirFD fd, const SysString subpath)
Open the directory subpath relative to fd.
void seek(const DirEntry::DirPos pos)
Adjust the directory iterator to the given position.
DirStream(const SysString path)
Create a DirStream object operating on the directory at the given path location.
DirStream(const DirFD fd)
Create a DirStream using the given file descriptor.
auto isOpen() const
Indicates whether currently a directory is associated with this object.
Strong template type to wrap boolean values in a named type.
Exception type for logical usage errors within the application.
FileNum
Primitive file descriptor.
Wrapper type around a C-style string for use with system APIs.