libcosmos
Linux C++ System Programming Library
|
Representation of open directory file descriptors. More...
#include <Directory.hxx>
Public Member Functions | |
Directory (DirFD fd, const AutoCloseFD auto_close) | |
Directory (const SysString path, const OpenMode mode=OpenMode::READ_ONLY) | |
Open a directory by path without special flags (close-on-exec will be set). | |
Directory (const SysString path, const OpenMode mode, const OpenFlags flags) | |
Open a directory by path using the given mode and flags. | |
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. | |
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. | |
Directory (const Directory &)=delete | |
Directory & | operator= (const Directory &)=delete |
Directory (Directory &&other) noexcept | |
Directory & | operator= (Directory &&other) noexcept |
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). | |
void | open (const SysString path, const OpenMode mode, OpenFlags flags) |
Open a directory by path using the given mode and flags. | |
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. | |
void | open (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. | |
void | open (DirFD fd, const AutoCloseFD auto_close) |
Takes the already open directory file descriptor fd and operators on it. | |
bool | isOpen () const |
void | close () |
Close the current dir object. | |
DirFD | fd () const |
void | unlinkFileAt (const SysString path) const |
void | makeDirAt (const SysString path, const FileMode mode) const |
void | removeDirAt (const SysString path) const |
std::string | readSymlinkAt (const SysString path) const |
void | makeSymlinkAt (const SysString target, const SysString path) const |
Protected Attributes | |
AutoCloseFD | m_auto_close |
DirFD | m_fd |
Representation of open directory file descriptors.
This is similar to the File class but dedicated to opening Directory nodes. This class is not intended for access directory contents, use DirStream for this instead.
This type mainly exists to express situations when only directory file descriptors are acceptable, like in the context of the various openat like APIs.
Definition at line 20 of file Directory.hxx.
|
inlineexplicit |
Definition at line 25 of file Directory.hxx.
|
inlineexplicit |
Open a directory by path without special flags (close-on-exec will be set).
Definition at line 31 of file Directory.hxx.
|
inlineexplicit |
Open a directory by path using the given mode and flags.
Definition at line 38 of file Directory.hxx.
|
inline |
Open a directory by path relative to dir_fd
using the given mode and default flags.
Definition at line 43 of file Directory.hxx.
|
inline |
Open a directory by path relative to dir_fd
using the given mode and flags.
Definition at line 47 of file Directory.hxx.
|
inlinenoexcept |
Definition at line 56 of file Directory.hxx.
|
virtual |
Definition at line 10 of file Directory.cxx.
|
inline |
Close the current dir object.
If currently no dir is open then this does nothing. If currently an external DirFD is wrapped and auto-close is not set then only the object's state will be invalidated. Otherwise the referenced file descriptor will also be closed on OS-level.
Definition at line 117 of file Directory.hxx.
|
inline |
Definition at line 130 of file Directory.hxx.
|
inline |
Definition at line 108 of file Directory.hxx.
Definition at line 164 of file Directory.hxx.
Definition at line 176 of file Directory.hxx.
|
inline |
Open a directory by path relative to dir_fd
using the given mode and default flags.
Definition at line 85 of file Directory.hxx.
void cosmos::Directory::open | ( | 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 at line 27 of file Directory.cxx.
Open a directory by path using the given mode and flags.
The OpenFlag::DIRECTORY flag will implicitly be set in flags
, since this is required to ensure that the resulting file descriptor will refer to a directory.
Definition at line 19 of file Directory.cxx.
|
inline |
Open a directory by path without special flags (close-on-exec will be set).
Definition at line 72 of file Directory.hxx.
|
inline |
Takes the already open directory file descriptor fd and operators on it.
The caller is responsible for invalidating fd
, if desired, and that the file descriptor is not used in conflicting ways.
The parameter auto_close
determines whether the File object will take ownership of the file descriptor, or not. If so then the file descriptor is closed on OS level if deemed necessary by the implementation.
Definition at line 103 of file Directory.hxx.
Definition at line 60 of file Directory.hxx.
|
inline |
Definition at line 172 of file Directory.hxx.
|
inline |
Definition at line 168 of file Directory.hxx.
|
inline |
Definition at line 160 of file Directory.hxx.
|
protected |
Definition at line 149 of file Directory.hxx.
|
protected |
Definition at line 150 of file Directory.hxx.