libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
AddressInfoIterator.hxx
1#pragma once
2
3// cosmos
4#include <cosmos/error/RuntimeError.hxx>
5#include <cosmos/net/AddressInfo.hxx>
6
7namespace cosmos {
8
10
19public: // functions
20
22
23 explicit AddressInfoIterator(const AddressInfo *pos) :
24 m_pos{pos}
25 {}
26
27 auto& operator++() {
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 }
36
37 const AddressInfo& operator*() {
38 if (!m_pos) {
39 cosmos_throw (RuntimeError("Attempt to dereference an invalid AddressInfoIterator"));
40 }
41
42 return *m_pos;
43 }
44
45 bool operator==(const AddressInfoIterator &other) const {
46 return m_pos == other.m_pos;
47 }
48
49 bool operator!=(const AddressInfoIterator &other) const {
50 return !(*this == other);
51 }
52
53protected: // data
54
55 const AddressInfo *m_pos = nullptr;
56};
57
58} // end ns
A single name resolution result entry as found in AddressInfoList.
const AddressInfo * next() const
Returns the next entry in the list.
Exception type for generic runtime errors.
Helper class to iterate over AddressInfoList.