libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
InterfaceIterator.hxx
1#pragma once
2
3// cosmos
4#include <cosmos/error/RuntimeError.hxx>
5#include <cosmos/net/InterfaceInfo.hxx>
6
7namespace cosmos {
8
10
21public: // functions
22
23 constexpr InterfaceIterator() {}
24
26 m_pos{pos ? pos : &M_END}
27 {}
28
29 auto& operator++() {
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 }
38
39 const InterfaceInfo& operator*() {
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 }
46
47 bool operator==(const InterfaceIterator &other) const {
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 }
56
57 bool operator!=(const InterfaceIterator &other) const {
58 return !(*this == other);
59 }
60
61protected: // data
62
63 static constexpr InterfaceInfo M_END = InterfaceInfo{};
64
65 const InterfaceInfo *m_pos = &M_END;
66};
67
68} // end ns
Helper class to iterate over InterfaceEnumerator.
Exception type for generic runtime errors.
Network interface name to index mapping info.