libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
DirIterator.hxx
1#pragma once
2
3// cosmos
4#include <cosmos/fs/DirStream.hxx>
5
6namespace cosmos {
7
9
14public: // functions
15
16 explicit DirIterator(DirStream &dir, bool at_end) :
17 m_dir{dir} {
18 if (!at_end)
19 m_entry = dir.nextEntry();
20 }
21
22 bool operator==(const DirIterator &other) const {
23 if (m_entry.has_value() != other.m_entry.has_value())
24 return false;
25 else if (!m_entry.has_value())
26 // both are at the end
27 return true;
28
29 return m_entry->inode() == other.m_entry->inode();
30 }
31
32 bool operator!=(const DirIterator &other) const {
33 return !(*this == other);
34 }
35
36 auto& operator++() {
37 m_entry = m_dir.nextEntry();
38 return *this;
39 }
40
41 DirEntry& operator*() {
42 return *m_entry;
43 }
44
45protected: // data
46 DirStream &m_dir;
47 std::optional<DirEntry> m_entry;
48};
49
50inline DirIterator end(DirStream &dir) {
51 return DirIterator{dir, true};
52}
53
55
63inline DirIterator begin(DirStream &dir) {
64 if (!dir.isOpen())
65 return end(dir);
66
67 // make sure we really start from the beginning.
68 dir.rewind();
69
70 return DirIterator{dir, false};
71}
72
73} // end ns
A single directory entry as returned from DirStream::nextEntry().
Definition DirEntry.hxx:23
This type implements range based for loop iterator semantics for DirStream.
Access directory contents in the file system.
Definition DirStream.hxx:30
std::optional< DirEntry > nextEntry()
Returns the next entry in the associated directory.