libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::AddressInfoIterator Struct Reference

Helper class to iterate over AddressInfoList. More...

#include <AddressInfoIterator.hxx>

Public Member Functions

 AddressInfoIterator (const AddressInfo *pos)
 
auto & operator++ ()
 
const AddressInfooperator* ()
 
bool operator== (const AddressInfoIterator &other) const
 
bool operator!= (const AddressInfoIterator &other) const
 

Protected Attributes

const AddressInfom_pos = nullptr
 

Detailed Description

Helper class to iterate over AddressInfoList.

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

The end of the list is marked by a nullptr ai_next field in AddressInfo.

Definition at line 18 of file AddressInfoIterator.hxx.

Constructor & Destructor Documentation

◆ AddressInfoIterator() [1/2]

cosmos::AddressInfoIterator::AddressInfoIterator ( )
inline

Definition at line 21 of file AddressInfoIterator.hxx.

21{}

◆ AddressInfoIterator() [2/2]

cosmos::AddressInfoIterator::AddressInfoIterator ( const AddressInfo * pos)
inlineexplicit

Definition at line 23 of file AddressInfoIterator.hxx.

23 :
24 m_pos{pos}
25 {}

Member Function Documentation

◆ operator!=()

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

Definition at line 49 of file AddressInfoIterator.hxx.

49 {
50 return !(*this == other);
51 }

◆ operator*()

const AddressInfo & cosmos::AddressInfoIterator::operator* ( )
inline

Definition at line 37 of file AddressInfoIterator.hxx.

37 {
38 if (!m_pos) {
39 cosmos_throw (RuntimeError("Attempt to dereference an invalid AddressInfoIterator"));
40 }
41
42 return *m_pos;
43 }

◆ operator++()

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

Definition at line 27 of file AddressInfoIterator.hxx.

27 {
28 if (!m_pos) {
29 cosmos_throw (RuntimeError("Attempt to increment past the end() AddressInfoIterator"));
30 }
31
32 m_pos = m_pos->next();
33
34 return *this;
35 }
const AddressInfo * next() const
Returns the next entry in the list.

◆ operator==()

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

Definition at line 45 of file AddressInfoIterator.hxx.

45 {
46 return m_pos == other.m_pos;
47 }

Member Data Documentation

◆ m_pos

const AddressInfo* cosmos::AddressInfoIterator::m_pos = nullptr
protected

Definition at line 55 of file AddressInfoIterator.hxx.


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