CIRCT  19.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...
 

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 86 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 90 of file Common.h.

◆ MessageData() [3/3]

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

Definition at line 91 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 102 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 112 of file Common.h.

References MessageData().

◆ getBytes()

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

Definition at line 94 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 96 of file Common.h.

References data.

Referenced by log(), and sv2cCosimserverEpTryGet().

Member Data Documentation

◆ data

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

Definition at line 117 of file Common.h.

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


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