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

Helper type for iterating over ControlMessage instances received in a ReceiveMessageHeader. More...

#include <message_header.hxx>

Public Member Functions

 ControlMessageIterator ()
 Create an invalid (end) iterator.
 
 ControlMessageIterator (const ReceiveMessageHeader &header)
 Create an iterator pointing to the first ControlMessage of header.
 
auto & operator++ ()
 Advance to the next ControlMessage, or to the end of the range.
 
bool operator== (const ControlMessageIterator &other) const
 
bool operator!= (const ControlMessageIterator &other) const
 
const ControlMessageoperator* ()
 Access the current ControlMessage the iterator points to.
 

Protected Attributes

const cmsghdr * m_pos = nullptr
 
const ReceiveMessageHeaderm_header = nullptr
 

Detailed Description

Helper type for iterating over ControlMessage instances received in a ReceiveMessageHeader.

Definition at line 330 of file message_header.hxx.

Constructor & Destructor Documentation

◆ ControlMessageIterator() [1/2]

cosmos::ReceiveMessageHeader::ControlMessageIterator::ControlMessageIterator ( )
inline

Create an invalid (end) iterator.

Definition at line 334 of file message_header.hxx.

334{}

◆ ControlMessageIterator() [2/2]

cosmos::ReceiveMessageHeader::ControlMessageIterator::ControlMessageIterator ( const ReceiveMessageHeader & header)
inlineexplicit

Create an iterator pointing to the first ControlMessage of header.

If there is no ControlMessage in header then an invalid (end) iterator is the result.

Definition at line 341 of file message_header.hxx.

341 :
342 m_pos{CMSG_FIRSTHDR(&header.m_header)},
343 m_header{&header} {
344 }

Member Function Documentation

◆ operator!=()

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

Definition at line 363 of file message_header.hxx.

363 {
364 return !(*this == other);
365 }

◆ operator*()

const ControlMessage & cosmos::ReceiveMessageHeader::ControlMessageIterator::operator* ( )
inline

Access the current ControlMessage the iterator points to.

Definition at line 368 of file message_header.hxx.

368 {
369 if (!m_pos) {
370 cosmos_throw (RuntimeError("Attempt to dereference an invalid ControlMessageIterator"));
371 }
372
373 return *reinterpret_cast<const ControlMessage*>(m_pos);
374 }

◆ operator++()

auto & cosmos::ReceiveMessageHeader::ControlMessageIterator::operator++ ( )
inline

Advance to the next ControlMessage, or to the end of the range.

Definition at line 347 of file message_header.hxx.

347 {
348 if (m_pos) {
349 const msghdr *hdr = m_header->rawHeader();
350 const cmsghdr *chdr = m_pos;
351 m_pos = CMSG_NXTHDR(const_cast<msghdr*>(hdr), const_cast<cmsghdr*>(chdr));
352 } else {
353 cosmos_throw (RuntimeError("Attempt to increment ControlMessageIterator past the end"));
354 }
355
356 return *this;
357 }

◆ operator==()

bool cosmos::ReceiveMessageHeader::ControlMessageIterator::operator== ( const ControlMessageIterator & other) const
inline

Definition at line 359 of file message_header.hxx.

359 {
360 return m_pos == other.m_pos;
361 }

Member Data Documentation

◆ m_header

const ReceiveMessageHeader* cosmos::ReceiveMessageHeader::ControlMessageIterator::m_header = nullptr
protected

Definition at line 379 of file message_header.hxx.

◆ m_pos

const cmsghdr* cosmos::ReceiveMessageHeader::ControlMessageIterator::m_pos = nullptr
protected

Definition at line 378 of file message_header.hxx.


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