libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::MessageHeaderBase< MSGHDR > Class Template Reference

Base class for SendMessageHeader and ReceiveMessageHeader. More...

#include <message_header.hxx>

Public Member Functions

 MessageHeaderBase ()
 Create a MSGHDR initialized to all zeroes and with default flags applied.
 
void clear ()
 Clear the complete system call structure with zeroes.
 
void setIOFlags (const MessageFlags flags)
 Set the flags used for sending or receiving data.
 

Protected Member Functions

void resetAddress ()
 Reset the address portion of the msghdr struct.
 
template<typename IOVEC >
void setIov (IOVEC &iovec)
 Set the msg_iov fields of the msghdr struct based on the given iovector object.
 
MessageFlags ioFlags () const
 Returns the currently set MessageFlags for send/receive.
 

Protected Attributes

MSGHDR m_header
 The low level struct msghdr
 
MessageFlags m_io_flags
 The currently configured send/receive flags.
 

Detailed Description

template<typename MSGHDR>
class cosmos::MessageHeaderBase< MSGHDR >

Base class for SendMessageHeader and ReceiveMessageHeader.

Since the struct msghdr has quite different uses for sending vs. receiving, we split up the libcosmos wrappers into two different types. This base class shares common semantics between the two.

MSGHDR is the actual struct msghdr to be used, since we remodelled msghdr as msghdr_const for the SendMessageHeader case.

Definition at line 56 of file message_header.hxx.

Constructor & Destructor Documentation

◆ MessageHeaderBase()

template<typename MSGHDR >
cosmos::MessageHeaderBase< MSGHDR >::MessageHeaderBase ( )
inline

Create a MSGHDR initialized to all zeroes and with default flags applied.

Definition at line 60 of file message_header.hxx.

60 {
61 clear();
62 // by default mark file descriptor received via unix domain
63 // sockets CLOEXEC.
64 setIOFlags(MessageFlags{MessageFlag::CLOEXEC});
65 }
void setIOFlags(const MessageFlags flags)
Set the flags used for sending or receiving data.
void clear()
Clear the complete system call structure with zeroes.

Member Function Documentation

◆ clear()

template<typename MSGHDR >
void cosmos::MessageHeaderBase< MSGHDR >::clear ( )
inline

Clear the complete system call structure with zeroes.

Definition at line 68 of file message_header.hxx.

68 {
69 std::memset(&m_header, 0, sizeof(m_header));
70 }
MSGHDR m_header
The low level struct msghdr

◆ ioFlags()

template<typename MSGHDR >
MessageFlags cosmos::MessageHeaderBase< MSGHDR >::ioFlags ( ) const
inlineprotected

Returns the currently set MessageFlags for send/receive.

Definition at line 108 of file message_header.hxx.

108 {
109 return m_io_flags;
110 }
MessageFlags m_io_flags
The currently configured send/receive flags.

◆ resetAddress()

template<typename MSGHDR >
void cosmos::MessageHeaderBase< MSGHDR >::resetAddress ( )
inlineprotected

Reset the address portion of the msghdr struct.

Definition at line 90 of file message_header.hxx.

90 {
91 m_header.msg_name = nullptr;
92 m_header.msg_namelen = 0;
93 }

◆ setIOFlags()

template<typename MSGHDR >
void cosmos::MessageHeaderBase< MSGHDR >::setIOFlags ( const MessageFlags flags)
inline

Set the flags used for sending or receiving data.

This corresponds to the flags argument in sendmsg() and recvmsg(). The msg_flags field in msghdr is actually not used as an input parameter in these system calls, only as an output parameter in recvmsg().

We keep these flags as an extension to struct msghdr in MessageHeaderBase to avoid having to add additional parameters to Socket::sendMessage() and Socket::receiveMessage().

Definition at line 83 of file message_header.hxx.

83 {
84 m_io_flags = flags;
85 }

◆ setIov()

template<typename MSGHDR >
template<typename IOVEC >
void cosmos::MessageHeaderBase< MSGHDR >::setIov ( IOVEC & iovec)
inlineprotected

Set the msg_iov fields of the msghdr struct based on the given iovector object.

Definition at line 97 of file message_header.hxx.

97 {
98 if (iovec.empty()) {
99 m_header.msg_iov = nullptr;
100 m_header.msg_iovlen = 0;
101 } else {
102 m_header.msg_iov = iovec.raw();
103 m_header.msg_iovlen = iovec.size();
104 }
105 }

Member Data Documentation

◆ m_header

template<typename MSGHDR >
MSGHDR cosmos::MessageHeaderBase< MSGHDR >::m_header
protected

The low level struct msghdr

Definition at line 115 of file message_header.hxx.

◆ m_io_flags

template<typename MSGHDR >
MessageFlags cosmos::MessageHeaderBase< MSGHDR >::m_io_flags
protected

The currently configured send/receive flags.

Definition at line 117 of file message_header.hxx.


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