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

This type implements range based for loop iterator semantics for DirStream. More...

#include <DirIterator.hxx>

Public Member Functions

 DirIterator (DirStream &dir, bool at_end)
 
bool operator== (const DirIterator &other) const
 
bool operator!= (const DirIterator &other) const
 
auto & operator++ ()
 
DirEntryoperator* ()
 

Protected Attributes

DirStreamm_dir
 
std::optional< DirEntrym_entry
 

Detailed Description

This type implements range based for loop iterator semantics for DirStream.

This type and the related begin(DirStream&) and end(DirStream&) functions allow to use range based for loops with DirStream objects.

Definition at line 13 of file DirIterator.hxx.

Constructor & Destructor Documentation

◆ DirIterator()

cosmos::DirIterator::DirIterator ( DirStream & dir,
bool at_end )
inlineexplicit

Definition at line 16 of file DirIterator.hxx.

16 :
17 m_dir{dir} {
18 if (!at_end)
19 m_entry = dir.nextEntry();
20 }

Member Function Documentation

◆ operator!=()

bool cosmos::DirIterator::operator!= ( const DirIterator & other) const
inline

Definition at line 32 of file DirIterator.hxx.

32 {
33 return !(*this == other);
34 }

◆ operator*()

DirEntry & cosmos::DirIterator::operator* ( )
inline

Definition at line 41 of file DirIterator.hxx.

41 {
42 return *m_entry;
43 }

◆ operator++()

auto & cosmos::DirIterator::operator++ ( )
inline

Definition at line 36 of file DirIterator.hxx.

36 {
37 m_entry = m_dir.nextEntry();
38 return *this;
39 }
std::optional< DirEntry > nextEntry()
Returns the next entry in the associated directory.

◆ operator==()

bool cosmos::DirIterator::operator== ( const DirIterator & other) const
inline

Definition at line 22 of file DirIterator.hxx.

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

Member Data Documentation

◆ m_dir

DirStream& cosmos::DirIterator::m_dir
protected

Definition at line 46 of file DirIterator.hxx.

◆ m_entry

std::optional<DirEntry> cosmos::DirIterator::m_entry
protected

Definition at line 47 of file DirIterator.hxx.


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