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
6
namespace
cosmos {
7
9
13
class
DirIterator
{
14
public
:
// 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
45
protected
:
// data
46
DirStream
&m_dir;
47
std::optional<DirEntry> m_entry;
48
};
49
50
inline
DirIterator
end(
DirStream
&dir) {
51
return
DirIterator
{dir,
true
};
52
}
53
55
63
inline
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
cosmos::DirEntry
A single directory entry as returned from DirStream::nextEntry().
Definition
DirEntry.hxx:23
cosmos::DirIterator
This type implements range based for loop iterator semantics for DirStream.
Definition
DirIterator.hxx:13
cosmos::DirStream
Access directory contents in the file system.
Definition
DirStream.hxx:30
cosmos::DirStream::nextEntry
std::optional< DirEntry > nextEntry()
Returns the next entry in the associated directory.
Definition
DirStream.cxx:107
include
fs
DirIterator.hxx
Generated by
1.12.0