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

Helper class to iterate over InterfaceEnumerator. More...

#include <InterfaceIterator.hxx>

Public Member Functions

 InterfaceIterator (const InterfaceInfo *pos)
 
auto & operator++ ()
 
const InterfaceInfooperator* ()
 
bool operator== (const InterfaceIterator &other) const
 
bool operator!= (const InterfaceIterator &other) const
 

Protected Attributes

const InterfaceInfom_pos = &M_END
 

Static Protected Attributes

static constexpr InterfaceInfo M_END = InterfaceInfo{}
 

Detailed Description

Helper class to iterate over InterfaceEnumerator.

InterfaceEnumerator holds a list of structures allocated in libc. This iterator is able to iterate over the list. Usually you don't need to use it explicitly, a range based for loop used on InterfaceEnumerator will use it automatically.

The end of the array is marked by a nullptr if_name and zero if_index. We keep such an element in the M_END member, which serves as the end() iterator in InterfaceEnumerator.

Definition at line 20 of file InterfaceIterator.hxx.

Constructor & Destructor Documentation

◆ InterfaceIterator() [1/2]

cosmos::InterfaceIterator::InterfaceIterator ( )
inlineconstexpr

Definition at line 23 of file InterfaceIterator.hxx.

23{}

◆ InterfaceIterator() [2/2]

cosmos::InterfaceIterator::InterfaceIterator ( const InterfaceInfo * pos)
inline

Definition at line 25 of file InterfaceIterator.hxx.

25 :
26 m_pos{pos ? pos : &M_END}
27 {}

Member Function Documentation

◆ operator!=()

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

Definition at line 57 of file InterfaceIterator.hxx.

57 {
58 return !(*this == other);
59 }

◆ operator*()

const InterfaceInfo & cosmos::InterfaceIterator::operator* ( )
inline

Definition at line 39 of file InterfaceIterator.hxx.

39 {
40 if (!m_pos || m_pos->if_name == nullptr) {
41 cosmos_throw (RuntimeError("Attempt to dereference invalid InterfaceIterator"));
42 }
43
44 return *m_pos;
45 }

◆ operator++()

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

Definition at line 29 of file InterfaceIterator.hxx.

29 {
30 if (m_pos && m_pos->if_name != nullptr) {
31 m_pos++;
32 } else {
33 cosmos_throw (RuntimeError("Attempt to increment InterfaceIterator past the end"));
34 }
35
36 return *this;
37 }

◆ operator==()

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

Definition at line 47 of file InterfaceIterator.hxx.

47 {
48 if (m_pos == other.m_pos)
49 return true;
50 else if (!m_pos || !other.m_pos)
51 return false;
52
53 return m_pos->if_name == other.m_pos->if_name &&
54 m_pos->if_index == other.m_pos->if_index;
55 }

Member Data Documentation

◆ M_END

InterfaceInfo cosmos::InterfaceIterator::M_END = InterfaceInfo{}
staticconstexprprotected

Definition at line 63 of file InterfaceIterator.hxx.

63{};

◆ m_pos

const InterfaceInfo* cosmos::InterfaceIterator::m_pos = &M_END
protected

Definition at line 65 of file InterfaceIterator.hxx.


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