Main MRPT website > C++ reference for MRPT 1.5.3
Modules | Functions
Non-CStream serialization functions (in #include <mrpt/utils/CSerializable.h>)

Detailed Description

Collaboration diagram for Non-CStream serialization functions (in #include <mrpt/utils/CSerializable.h>):

Modules

 Serialization functions for ZMQ (v3 or above) (in #include <mrpt/utils/serialization_zmq.h>)
 

Functions

std::string BASE_IMPEXP mrpt::utils::ObjectToString (const CSerializable *o)
 Used to pass MRPT objects into a CORBA-like object (strings). More...
 
void BASE_IMPEXP mrpt::utils::StringToObject (const std::string &str, CSerializablePtr &obj)
 Used to pass CORBA-like objects (strings) into a MRPT object. More...
 
void BASE_IMPEXP mrpt::utils::ObjectToOctetVector (const CSerializable *o, vector_byte &out_vector)
 Converts (serializes) an MRPT object into an array of bytes. More...
 
void BASE_IMPEXP mrpt::utils::OctetVectorToObject (const vector_byte &in_data, CSerializablePtr &obj)
 Converts back (de-serializes) a sequence of binary data into a MRPT object, without prior information about the object's class. More...
 
void BASE_IMPEXP mrpt::utils::ObjectToRawString (const CSerializable *o, std::string &out_str)
 Converts (serializes) an MRPT object into an array of bytes within a std::string, without codifying to avoid NULL characters. More...
 
void BASE_IMPEXP mrpt::utils::RawStringToObject (const std::string &in_str, CSerializablePtr &obj)
 Converts back (de-serializes) a sequence of binary data within a std::string into a MRPT object, without prior information about the object's class. More...
 

Function Documentation

◆ ObjectToOctetVector()

void BASE_IMPEXP mrpt::utils::ObjectToOctetVector ( const CSerializable o,
vector_byte out_vector 
)

Converts (serializes) an MRPT object into an array of bytes.

Parameters
oThe object to be serialized.
out_vectorThe vector which at return will contain the data. Size will be set automatically.
See also
OctetVectorToObject, ObjectToString

Referenced by mrpt::utils::CSerializable::writeToMatlab().

◆ ObjectToRawString()

void BASE_IMPEXP mrpt::utils::ObjectToRawString ( const CSerializable o,
std::string &  out_str 
)

Converts (serializes) an MRPT object into an array of bytes within a std::string, without codifying to avoid NULL characters.

This is therefore more efficient than ObjectToString

Parameters
oThe object to be serialized.
out_vectorThe string which at return will contain the data. Size will be set automatically.
See also
RawStringToObject, ObjectToOctetVector

Referenced by mrpt::utils::CSerializable::writeToMatlab().

◆ ObjectToString()

std::string BASE_IMPEXP mrpt::utils::ObjectToString ( const CSerializable o)

Used to pass MRPT objects into a CORBA-like object (strings).

See doc about "Integration with BABEL".

Parameters
oThe object to be serialized.
Returns
The string containing the binay version of object.
See also
StringToObject, Integration with BABEL

Referenced by mrpt::utils::CSerializable::writeToMatlab().

◆ OctetVectorToObject()

void BASE_IMPEXP mrpt::utils::OctetVectorToObject ( const vector_byte in_data,
CSerializablePtr &  obj 
)

Converts back (de-serializes) a sequence of binary data into a MRPT object, without prior information about the object's class.

Parameters
in_dataThe serialized input data representing the object.
objThe newly created object will be stored in this smart pointer.
Exceptions
NoneOn any internal exception, this function returns a NULL pointer.
See also
ObjectToOctetVector, StringToObject

Referenced by mrpt::utils::CSerializable::writeToMatlab().

◆ RawStringToObject()

void BASE_IMPEXP mrpt::utils::RawStringToObject ( const std::string &  in_str,
CSerializablePtr &  obj 
)

Converts back (de-serializes) a sequence of binary data within a std::string into a MRPT object, without prior information about the object's class.

Parameters
in_dataThe serialized input data representing the object.
objThe newly created object will be stored in this smart pointer.
Exceptions
NoneOn any internal exception, this function returns a NULL pointer.
See also
ObjectToRawString

Referenced by mrpt::utils::CSerializable::writeToMatlab().

◆ StringToObject()

void BASE_IMPEXP mrpt::utils::StringToObject ( const std::string &  str,
CSerializablePtr &  obj 
)

Used to pass CORBA-like objects (strings) into a MRPT object.

Parameters
strAn string generated with ObjectToString
objA currently empty pointer, where a pointer to the newly created object will be stored.
Exceptions
NoneOn any internal exception, this function returns NULL.
See also
ObjectToString, Integration with BABEL

Referenced by mrpt::utils::CSerializable::writeToMatlab().




Page generated by Doxygen 1.8.13 for MRPT 1.5.3 at Tue Oct 31 07:27:35 UTC 2017