CIRCT  20.0.0git
Public Member Functions | Static Public Member Functions | Private Attributes | List of all members
esi::MessageData Class Reference

A logical chunk of data representing serialized data. More...

#include <Common.h>

Collaboration diagram for esi::MessageData:
Collaboration graph
[legend]

Public Member Functions

 MessageData ()=default
 Adopts the data vector buffer. More...
 
 MessageData (std::vector< uint8_t > &data)
 
 MessageData (const uint8_t *data, size_t size)
 
 ~MessageData ()=default
 
const uint8_t * getBytes () const
 
size_t getSize () const
 Get the size of the data in bytes. More...
 
template<typename T >
const T * as () const
 Cast to a type. More...
 
std::string toHex () const
 Convert the data to a hex string. More...
 

Static Public Member Functions

template<typename T >
static MessageData from (T &t)
 Cast from a type to its raw bytes. More...
 

Private Attributes

std::vector< uint8_t > data
 

Detailed Description

A logical chunk of data representing serialized data.

Currently, just a wrapper for a vector of bytes, which is not efficient in terms of memory copying. This will change in the future as will the API.

Definition at line 103 of file Common.h.

Constructor & Destructor Documentation

◆ MessageData() [1/3]

esi::MessageData::MessageData ( )
default

Adopts the data vector buffer.

Referenced by from().

◆ MessageData() [2/3]

esi::MessageData::MessageData ( std::vector< uint8_t > &  data)
inline

Definition at line 107 of file Common.h.

◆ MessageData() [3/3]

esi::MessageData::MessageData ( const uint8_t *  data,
size_t  size 
)
inline

Definition at line 108 of file Common.h.

◆ ~MessageData()

esi::MessageData::~MessageData ( )
default

Member Function Documentation

◆ as()

template<typename T >
const T* esi::MessageData::as ( ) const
inline

Cast to a type.

Throws if the size of the data does not match the size of the message. The lifetime of the resulting pointer is tied to the lifetime of this object.

Definition at line 119 of file Common.h.

References data.

◆ from()

template<typename T >
static MessageData esi::MessageData::from ( T &  t)
inlinestatic

Cast from a type to its raw bytes.

Definition at line 129 of file Common.h.

References MessageData().

◆ getBytes()

const uint8_t* esi::MessageData::getBytes ( ) const
inline

Definition at line 111 of file Common.h.

References data.

Referenced by log(), and sv2cCosimserverEpTryGet().

◆ getSize()

size_t esi::MessageData::getSize ( ) const
inline

Get the size of the data in bytes.

Definition at line 113 of file Common.h.

References data.

Referenced by log(), and sv2cCosimserverEpTryGet().

◆ toHex()

std::string MessageData::toHex ( ) const

Convert the data to a hex string.

Definition at line 22 of file Common.cpp.

References data.

Member Data Documentation

◆ data

std::vector<uint8_t> esi::MessageData::data
private

Definition at line 137 of file Common.h.

Referenced by as(), getBytes(), getSize(), and toHex().


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