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

A single directory entry as returned from DirStream::nextEntry(). More...

#include <DirEntry.hxx>

Public Types

enum class  DirPos : off_t
 strong type for representing directory stream positions More...
 
enum class  Type : unsigned char {
  BLOCK_DEVICE = DT_BLK , CHAR_DEVICE = DT_CHR , DIRECTORY = DT_DIR , FIFO = DT_FIFO ,
  SYMLINK = DT_LNK , REGULAR = DT_REG , UNIX_SOCKET = DT_SOCK , UNKNOWN = DT_UNKNOWN
}
 Strong enum type expressing the dir entry file type. More...
 

Public Member Functions

auto raw () const
 
Inode inode () const
 Returns the inode of the directory entry.
 
DirPos dirPos () const
 Returns the position of this entry in its associated DirStream object.
 
size_t nameLength () const
 Returns the length of the directory entry name.
 
auto type () const
 Returns the file type of this directory entry.
 
const char * name () const
 
std::string_view view () const
 
auto isDotEntry () const
 Returns whether this entry is a "dot file entry" i.e. "." or "..".
 

Protected Member Functions

 DirEntry (const struct dirent *entry)
 

Protected Attributes

const struct dirent * m_entry
 

Friends

class DirStream
 
class DirIterator
 

Detailed Description

A single directory entry as returned from DirStream::nextEntry().

The stored data is only valid as long as the DirStream object it was returned from is valid and as long as DirStream::nextEntry() isn't called again.

Definition at line 23 of file DirEntry.hxx.

Member Enumeration Documentation

◆ DirPos

enum class cosmos::DirEntry::DirPos : off_t
strong

strong type for representing directory stream positions

This type is opaque and should never be interpreted by clients of this class. It is only obtained from tell() and passed back into seek().

Definition at line 35 of file DirEntry.hxx.

35: off_t {};

◆ Type

enum class cosmos::DirEntry::Type : unsigned char
strong

Strong enum type expressing the dir entry file type.

Definition at line 38 of file DirEntry.hxx.

38 : unsigned char {
39 BLOCK_DEVICE = DT_BLK,
40 CHAR_DEVICE = DT_CHR,
41 DIRECTORY = DT_DIR,
42 FIFO = DT_FIFO,
43 SYMLINK = DT_LNK,
44 REGULAR = DT_REG,
45 UNIX_SOCKET = DT_SOCK,
46 UNKNOWN = DT_UNKNOWN
47 };
@ DIRECTORY
Require the path to refer to a directory.

Constructor & Destructor Documentation

◆ DirEntry()

cosmos::DirEntry::DirEntry ( const struct dirent * entry)
inlineexplicitprotected

Definition at line 52 of file DirEntry.hxx.

53 : m_entry{entry}
54 {}

Member Function Documentation

◆ dirPos()

DirPos cosmos::DirEntry::dirPos ( ) const
inline

Returns the position of this entry in its associated DirStream object.

This is the same as DirStream::tell(), it can be used in DirStream::seek() at a later time to return to the original position.

Definition at line 74 of file DirEntry.hxx.

74{ return DirPos{m_entry->d_off}; }
DirPos
strong type for representing directory stream positions
Definition DirEntry.hxx:35

◆ inode()

Inode cosmos::DirEntry::inode ( ) const
inline

Returns the inode of the directory entry.

The inode is an opaque unique ID for the file system object on the file system it resides on.

Definition at line 66 of file DirEntry.hxx.

66{ return Inode{m_entry->d_ino}; }
Inode
A unique file number for a file on a block device.
Definition types.hxx:44

◆ isDotEntry()

auto cosmos::DirEntry::isDotEntry ( ) const
inline

Returns whether this entry is a "dot file entry" i.e. "." or "..".

Definition at line 118 of file DirEntry.hxx.

118 {
119 auto name = this->name();
120 if (name[0] != '.')
121 return false;
122 else if (name[1] == '\0')
123 return true;
124 else if (name[1] != '.')
125 return false;
126
127 return name[2] == '\0';
128 }

◆ name()

const char * cosmos::DirEntry::name ( ) const
inline

Definition at line 113 of file DirEntry.hxx.

113{ return m_entry->d_name; }

◆ nameLength()

size_t cosmos::DirEntry::nameLength ( ) const
inline

Returns the length of the directory entry name.

In pure POSIX the length of the name can only be determined using strlen(). This Linux specific information makes it easier and more efficient to determine the length.

The returned length is the number of characters in the entry name excluding the null terminator.

Definition at line 85 of file DirEntry.hxx.

85 {
86 // this actually involves padding, so look from a 8-byte
87 // offset from the end forwards, still faster for long strings.
88 auto len = m_entry->d_reclen - offsetof(struct dirent, d_name) - 1;
89
90 len = len < 8 ? 0 : len - 8;
91 auto endp = name() + len;
92
93 for (size_t i = 0; i < 8; i++) {
94 if (*(endp++) == '\0')
95 return endp - name() - 1;
96 }
97
98 // unclear how this should ever happen
99 return std::strlen(this->name());
100 }

◆ raw()

auto cosmos::DirEntry::raw ( ) const
inline

Definition at line 59 of file DirEntry.hxx.

59{ return m_entry; }

◆ type()

auto cosmos::DirEntry::type ( ) const
inline

Returns the file type of this directory entry.

For increased efficiency the file type of directory entries can be delivered directly with the DirStream readdir() data. This is not supported by all underlying file systems, however. Therefore be prepared to receive Type::UNKNOWN at all times in which case you will need to perform an explicit fstatat() or similar call to obtain the required information.

Definition at line 111 of file DirEntry.hxx.

111{ return Type{m_entry->d_type}; }
Type
Strong enum type expressing the dir entry file type.
Definition DirEntry.hxx:38

◆ view()

std::string_view cosmos::DirEntry::view ( ) const
inline

Definition at line 115 of file DirEntry.hxx.

115{ return std::string_view{m_entry->d_name, nameLength()}; }
size_t nameLength() const
Returns the length of the directory entry name.
Definition DirEntry.hxx:85

Friends And Related Symbol Documentation

◆ DirIterator

friend class DirIterator
friend

Definition at line 25 of file DirEntry.hxx.

◆ DirStream

friend class DirStream
friend

Definition at line 24 of file DirEntry.hxx.

Member Data Documentation

◆ m_entry

const struct dirent* cosmos::DirEntry::m_entry
protected

Definition at line 132 of file DirEntry.hxx.


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