Public Member Functions | Public Attributes | List of all members
driver_svh::ArrayBuilder Class Reference

#include <ByteOrderConversion.h>

Public Member Functions

template<typename T >
void appendWithoutConversion (const T &data)
 add data without any byte conversion More...
 
template<typename T >
void appendWithoutConversion (const std::vector< T > &data)
 add data in vectors without any byte conversion More...
 
 ArrayBuilder (size_t array_size=1)
 
template<typename T >
ArrayBuilderoperator<< (const T &data)
 Write any type into ArrayBuilder, convert to LittleEndian in process. More...
 
template<typename T >
ArrayBuilderoperator<< (const std::vector< T > &data)
 
template<typename T >
ArrayBuilderoperator>> (T &data)
 Read a generic data type from the array builder, Endianess is converted to system architecture. More...
 
template<typename T >
ArrayBuilderoperator>> (std::vector< T > &data)
 Read a vectors from the array builder, Endianess is converted to system architecture. More...
 
template<typename T >
readBack ()
 
void reset (size_t array_size=1)
 Resets the Arraybuilder to initial state, all values will be deleted. More...
 

Public Attributes

std::vector< uint8_t > array
 array of template type TArray More...
 
size_t read_pos
 current read position in array More...
 
size_t write_pos
 current write position in array More...
 

Detailed Description

template class holding an array and the current index for write commands. Can be used to easily create an array for low level byte streams

The arraybuilder is intended to be used as a conversion queue for low level byte streams. Arbitrary data can be written into the arraybuider by calling the << operator. During this write operation the data will be convertet into a little endian representation regardles of the source architecture. This can be used when a Little Endian byte stream (i.e. for a serial device) is composed of several data types. Example: To send 1 int and to floats via bytestream in little endian ending: ArrayBuilder ab; ab << int << float1 << float2; send(ab.array); To read out values from the arraybuilder you can simply use the << operator. This will automatically convert the little endian representation to the byte order of the host system.

NOTE: As the arraybuilder converts the data during write and read operations the raw data that is read out from the stream has to be appended without any conversion (use appendWithoutConversion). (TODO: Is there a better Solution to this?)

Definition at line 146 of file ByteOrderConversion.h.

Constructor & Destructor Documentation

◆ ArrayBuilder()

driver_svh::ArrayBuilder::ArrayBuilder ( size_t  array_size = 1)
inline

Definition at line 149 of file ByteOrderConversion.h.

Member Function Documentation

◆ appendWithoutConversion() [1/2]

template<typename T >
void driver_svh::ArrayBuilder::appendWithoutConversion ( const T &  data)
inline

add data without any byte conversion

Definition at line 173 of file ByteOrderConversion.h.

◆ appendWithoutConversion() [2/2]

template<typename T >
void driver_svh::ArrayBuilder::appendWithoutConversion ( const std::vector< T > &  data)
inline

add data in vectors without any byte conversion

Definition at line 188 of file ByteOrderConversion.h.

◆ operator<<() [1/2]

template<typename T >
ArrayBuilder & driver_svh::ArrayBuilder::operator<< ( const T &  data)

Write any type into ArrayBuilder, convert to LittleEndian in process.

Definition at line 224 of file ByteOrderConversion.h.

◆ operator<<() [2/2]

template<typename T >
ArrayBuilder & driver_svh::ArrayBuilder::operator<< ( const std::vector< T > &  data)

Write vectors into ArrayBuilder, each element is written seperately and convert to LittleEndian in process

Definition at line 240 of file ByteOrderConversion.h.

◆ operator>>() [1/2]

template<typename T >
ArrayBuilder & driver_svh::ArrayBuilder::operator>> ( T &  data)

Read a generic data type from the array builder, Endianess is converted to system architecture.

Read arbitrary types from the arraybuilder, endianess is converted during readout.

Definition at line 257 of file ByteOrderConversion.h.

◆ operator>>() [2/2]

template<typename T >
ArrayBuilder & driver_svh::ArrayBuilder::operator>> ( std::vector< T > &  data)

Read a vectors from the array builder, Endianess is converted to system architecture.

Read a vectors from the array builder, Endianess is converted to system architecture, vector has to be initualized

Definition at line 266 of file ByteOrderConversion.h.

◆ readBack()

template<typename T >
T driver_svh::ArrayBuilder::readBack ( )

Read out the last data without removing it from the stream NOTE: This is only implemented for base types

Definition at line 281 of file ByteOrderConversion.h.

◆ reset()

void driver_svh::ArrayBuilder::reset ( size_t  array_size = 1)

Resets the Arraybuilder to initial state, all values will be deleted.

Parameters
array_sizesize the array is supposed to have after reset

Definition at line 82 of file ByteOrderConversion.cpp.

Member Data Documentation

◆ array

std::vector<uint8_t> driver_svh::ArrayBuilder::array

array of template type TArray

Definition at line 163 of file ByteOrderConversion.h.

◆ read_pos

size_t driver_svh::ArrayBuilder::read_pos

current read position in array

Definition at line 160 of file ByteOrderConversion.h.

◆ write_pos

size_t driver_svh::ArrayBuilder::write_pos

current write position in array

Definition at line 157 of file ByteOrderConversion.h.


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


schunk_svh_library
Author(s): Georg Heppner, Lars Pfotzer, Felix Exner, Johannes Mangler, Stefan Scherzinger, Pascal Becker
autogenerated on Fri Apr 14 2023 02:26:23