libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
DirEntry.hxx
1#pragma once
2
3// C++
4#include <cstring>
5#include <string_view>
6
7// Linux
8#include <dirent.h>
9#include <stddef.h>
10
11// cosmos
12#include <cosmos/dso_export.h>
13#include <cosmos/fs/types.hxx>
14
15namespace cosmos {
16
18
23class COSMOS_API DirEntry {
24 friend class DirStream;
25 friend class DirIterator;
26
27public: // types
28
30
35 enum class DirPos : off_t {};
36
38 enum class Type : 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 };
48
49protected: // functions
50
51 // Only allow the Directory type to create this.
52 explicit DirEntry(const struct dirent *entry)
53 : m_entry{entry}
54 {}
55
56
57public: // functions
58
59 auto raw() const { return m_entry; }
60
62
66 Inode inode() const { return Inode{m_entry->d_ino}; }
67
69
74 DirPos dirPos() const { return DirPos{m_entry->d_off}; }
75
77
85 size_t nameLength() const {
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 }
101
103
111 auto type() const { return Type{m_entry->d_type}; }
112
113 const char* name() const { return m_entry->d_name; }
114
115 std::string_view view() const { return std::string_view{m_entry->d_name, nameLength()}; }
116
118 auto isDotEntry() const {
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 }
129
130protected: // data
131
132 const struct dirent *m_entry;
133};
134
135} // end ns
A single directory entry as returned from DirStream::nextEntry().
Definition DirEntry.hxx:23
auto isDotEntry() const
Returns whether this entry is a "dot file entry" i.e. "." or "..".
Definition DirEntry.hxx:118
Inode inode() const
Returns the inode of the directory entry.
Definition DirEntry.hxx:66
Type
Strong enum type expressing the dir entry file type.
Definition DirEntry.hxx:38
auto type() const
Returns the file type of this directory entry.
Definition DirEntry.hxx:111
DirPos
strong type for representing directory stream positions
Definition DirEntry.hxx:35
DirPos dirPos() const
Returns the position of this entry in its associated DirStream object.
Definition DirEntry.hxx:74
size_t nameLength() const
Returns the length of the directory entry name.
Definition DirEntry.hxx:85
This type implements range based for loop iterator semantics for DirStream.
Access directory contents in the file system.
Definition DirStream.hxx:30
@ DIRECTORY
Require the path to refer to a directory.
Inode
A unique file number for a file on a block device.
Definition types.hxx:44