libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::Directory Class Reference

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
 
Directoryoperator= (const Directory &)=delete
 
 Directory (Directory &&other) noexcept
 
Directoryoperator= (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
 

Detailed Description

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.

Constructor & Destructor Documentation

◆ Directory() [1/6]

cosmos::Directory::Directory ( DirFD fd,
const AutoCloseFD auto_close )
inlineexplicit

Definition at line 25 of file Directory.hxx.

25 {
26 open(fd, auto_close);
27 }
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

◆ Directory() [2/6]

cosmos::Directory::Directory ( const SysString path,
const OpenMode mode = OpenMode::READ_ONLY )
inlineexplicit

Open a directory by path without special flags (close-on-exec will be set).

Definition at line 31 of file Directory.hxx.

31 :
32 Directory{path, mode, {OpenFlag::CLOEXEC}} {}

◆ Directory() [3/6]

cosmos::Directory::Directory ( const SysString path,
const OpenMode mode,
const OpenFlags flags )
inlineexplicit

Open a directory by path using the given mode and flags.

See also
open(const std::SysString, const OpenMode, const OpenFlags)

Definition at line 38 of file Directory.hxx.

38 {
39 open(path, mode, flags);
40 }

◆ Directory() [4/6]

cosmos::Directory::Directory ( const DirFD dir_fd,
const SysString path,
const OpenMode mode = OpenMode::READ_ONLY )
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.

43 :
44 Directory{dir_fd, path, mode, {OpenFlag::CLOEXEC}} {}

◆ Directory() [5/6]

cosmos::Directory::Directory ( const DirFD dir_fd,
const SysString path,
const OpenMode mode,
const OpenFlags flags )
inline

Open a directory by path relative to dir_fd using the given mode and flags.

Definition at line 47 of file Directory.hxx.

48 {
49 open(dir_fd, path, mode, flags);
50 }

◆ Directory() [6/6]

cosmos::Directory::Directory ( Directory && other)
inlinenoexcept

Definition at line 56 of file Directory.hxx.

56 {
57 *this = std::move(other);
58 }

◆ ~Directory()

cosmos::Directory::~Directory ( )
virtual

Definition at line 10 of file Directory.cxx.

10 {
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}
void close()
Close the current dir object.
FileNum raw() const
Returns the primitive file descriptor contained in the object.

Member Function Documentation

◆ close()

void cosmos::Directory::close ( )
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.

117 {
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 }
void close()
Explicitly close the contained FD.
void reset()
Invalidates the stored file descriptor.
NamedBool< struct close_file_t, true > AutoCloseFD
Strong boolean type for expressing the responsibility to close file descriptors.
Definition types.hxx:29

◆ fd()

DirFD cosmos::Directory::fd ( ) const
inline

Definition at line 130 of file Directory.hxx.

130{ return m_fd; }

◆ isOpen()

bool cosmos::Directory::isOpen ( ) const
inline

Definition at line 108 of file Directory.hxx.

108{ return m_fd.valid(); }
bool valid() const
Returns whether currently a valid file descriptor number is assigned.

◆ makeDirAt()

void cosmos::Directory::makeDirAt ( const SysString path,
const FileMode mode ) const
inline

Definition at line 164 of file Directory.hxx.

164 {
165 fs::make_dir_at(m_fd, path, mode);
166}

◆ makeSymlinkAt()

void cosmos::Directory::makeSymlinkAt ( const SysString target,
const SysString path ) const
inline

Definition at line 176 of file Directory.hxx.

176 {
177 fs::make_symlink_at(target, m_fd, path);
178}

◆ open() [1/5]

void cosmos::Directory::open ( const DirFD dir_fd,
const SysString path,
const OpenMode mode )
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.

85 {
86 open(dir_fd, path, mode, {OpenFlag::CLOEXEC});
87 }

◆ open() [2/5]

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.

27 {
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}

◆ open() [3/5]

void cosmos::Directory::open ( const SysString path,
const OpenMode mode,
OpenFlags flags )

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.

19 {
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}

◆ open() [4/5]

void cosmos::Directory::open ( const SysString path,
const OpenMode mode = OpenMode::READ_ONLY )
inline

Open a directory by path without special flags (close-on-exec will be set).

Definition at line 72 of file Directory.hxx.

72 {
73 return open(path, mode, {OpenFlag::CLOEXEC});
74 }

◆ open() [5/5]

void cosmos::Directory::open ( DirFD fd,
const AutoCloseFD auto_close )
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.

103 {
104 m_fd = fd;
105 m_auto_close = auto_close;
106 }

◆ operator=()

Directory & cosmos::Directory::operator= ( Directory && other)
inlinenoexcept

Definition at line 60 of file Directory.hxx.

60 {
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 }

◆ readSymlinkAt()

std::string cosmos::Directory::readSymlinkAt ( const SysString path) const
inline

Definition at line 172 of file Directory.hxx.

172 {
173 return fs::read_symlink_at(m_fd, path);
174}

◆ removeDirAt()

void cosmos::Directory::removeDirAt ( const SysString path) const
inline

Definition at line 168 of file Directory.hxx.

168 {
169 fs::remove_dir_at(m_fd, path);
170}

◆ unlinkFileAt()

void cosmos::Directory::unlinkFileAt ( const SysString path) const
inline

Definition at line 160 of file Directory.hxx.

160 {
161 fs::unlink_file_at(m_fd, path);
162}

Member Data Documentation

◆ m_auto_close

AutoCloseFD cosmos::Directory::m_auto_close
protected

Definition at line 149 of file Directory.hxx.

◆ m_fd

DirFD cosmos::Directory::m_fd
protected

Definition at line 150 of file Directory.hxx.


The documentation for this class was generated from the following files: