This base class is used to provide a unified interface to files,memory buffers,..Please see the derived classes.
This class is largely inspired by Borland VCL "TStream" class.
Apart of the "VCL like" methods, operators ">>" and "<<" have been defined so that simple types (int,bool,char,float,char *,std::string,...) can be directly written and read to and from any CStream easily. Please, it is recomendable to read CSerializable documentation also.
#include <mrpt/utils/CStream.h>
Public Types | |
enum | TSeekOrigin { sFromBeginning = 0, sFromCurrent = 1, sFromEnd = 2 } |
Used in CStream::Seek. More... | |
Public Member Functions | |
CStream () | |
virtual | ~CStream () |
size_t | ReadBuffer (void *Buffer, size_t Count) |
Reads a block of bytes from the stream into Buffer. More... | |
template<typename T > | |
size_t | ReadBufferFixEndianness (T *ptr, size_t ElementCount) |
Reads a sequence of elemental datatypes, taking care of reordering their bytes from the MRPT stream standard (little endianness) to the format of the running architecture. More... | |
virtual size_t | ReadBufferImmediate (void *Buffer, size_t Count) |
Reads a block of bytes from the stream into Buffer, and returns the amound of bytes actually read, without waiting for more extra bytes to arrive (just those already enqued in the stream). More... | |
void | WriteBuffer (const void *Buffer, size_t Count) |
Writes a block of bytes to the stream from Buffer. More... | |
template<typename T > | |
void | WriteBufferFixEndianness (const T *ptr, size_t ElementCount) |
Writes a sequence of elemental datatypes, taking care of reordering their bytes from the running architecture to MRPT stream standard (little endianness). More... | |
size_t | CopyFrom (CStream *Source, size_t Count) |
Copies a specified number of bytes from one stream to another. More... | |
virtual uint64_t | Seek (uint64_t Offset, CStream::TSeekOrigin Origin=sFromBeginning)=0 |
Introduces a pure virtual method for moving to a specified position in the streamed resource. More... | |
virtual uint64_t | getTotalBytesCount ()=0 |
Returns the total amount of bytes in the stream. More... | |
virtual uint64_t | getPosition ()=0 |
Method for getting the current cursor position, where 0 is the first byte and TotalBytesCount-1 the last one. More... | |
void | WriteObject (const CSerializable *o) |
Writes an object to the stream. More... | |
CSerializablePtr | ReadObject () |
Reads an object from stream, its class determined at runtime, and returns a smart pointer to the object. More... | |
void | ReadObject (CSerializable *existingObj) |
Reads an object from stream, where its class must be the same as the supplied object, where the loaded object will be stored in. More... | |
CStream & | operator<< (const CSerializablePtr &pObj) |
Write an object to a stream in the binary MRPT format. More... | |
CStream & | operator<< (const CSerializable &obj) |
Write an object to a stream in the binary MRPT format. More... | |
CStream & | operator>> (CSerializablePtr &pObj) |
CStream & | operator>> (CSerializable &obj) |
virtual int | printf (const char *fmt,...) MRPT_printf_format_check(2 |
Writes a string to the stream in a textual form. More... | |
template<typename T > | |
virtual int void | printf_vector (const char *fmt, const std::vector< T > &V) |
Prints a vector in the format [A,B,C,...] using CStream::printf, and the fmt string for each vector element. More... | |
void | sendMessage (const utils::CMessage &msg) |
Send a message to the device. More... | |
bool | receiveMessage (utils::CMessage &msg) |
Tries to receive a message from the device. More... | |
bool | getline (std::string &out_str) |
Reads from the stream until a ' ' character is found ('' characters are ignored). More... | |
Protected Member Functions | |
virtual size_t | Read (void *Buffer, size_t Count)=0 |
Introduces a pure virtual method responsible for reading from the stream. More... | |
virtual size_t | Write (const void *Buffer, size_t Count)=0 |
Introduces a pure virtual method responsible for writing to the stream. More... | |
Used in CStream::Seek.
Enumerator | |
---|---|
sFromBeginning | |
sFromCurrent | |
sFromEnd |
|
virtual |
size_t mrpt::utils::CStream::CopyFrom | ( | CStream * | Source, |
size_t | Count | ||
) |
Copies a specified number of bytes from one stream to another.
bool mrpt::utils::CStream::getline | ( | std::string & | out_str | ) |
Reads from the stream until a '
' character is found ('' characters are ignored).
|
pure virtual |
Method for getting the current cursor position, where 0 is the first byte and TotalBytesCount-1 the last one.
Implemented in mrpt::hwdrivers::CSerialPort, mrpt::hwdrivers::CInterfaceFTDI, mrpt::utils::CClientTCPSocket, mrpt::utils::CFileStream, mrpt::synch::CPipeBaseEndPoint, mrpt::utils::CMemoryStream, mrpt::utils::CFileOutputStream, mrpt::utils::CFileInputStream, mrpt::utils::CFileGZInputStream, and mrpt::utils::CStdOutStream.
|
pure virtual |
Returns the total amount of bytes in the stream.
Implemented in mrpt::hwdrivers::CSerialPort, mrpt::hwdrivers::CInterfaceFTDI, mrpt::utils::CClientTCPSocket, mrpt::utils::CFileStream, mrpt::synch::CPipeBaseEndPoint, mrpt::utils::CMemoryStream, mrpt::utils::CFileOutputStream, mrpt::utils::CFileInputStream, mrpt::utils::CFileGZInputStream, and mrpt::utils::CStdOutStream.
CStream& mrpt::utils::CStream::operator<< | ( | const CSerializablePtr & | pObj | ) |
Write an object to a stream in the binary MRPT format.
CStream& mrpt::utils::CStream::operator<< | ( | const CSerializable & | obj | ) |
Write an object to a stream in the binary MRPT format.
CStream& mrpt::utils::CStream::operator>> | ( | CSerializablePtr & | pObj | ) |
CStream& mrpt::utils::CStream::operator>> | ( | CSerializable & | obj | ) |
|
virtual |
Writes a string to the stream in a textual form.
Referenced by mrpt::bayes::TKF_options::dumpToTextStream(), mrpt::slam::COctoMapBase< OCTREE, OCTREE_NODE >::TInsertionOptions::dumpToTextStream(), and mrpt::slam::COctoMapBase< OCTREE, OCTREE_NODE >::TLikelihoodOptions::dumpToTextStream().
|
inline |
Prints a vector in the format [A,B,C,...] using CStream::printf, and the fmt string for each vector element.
|
protectedpure virtual |
Introduces a pure virtual method responsible for reading from the stream.
Implemented in mrpt::hwdrivers::CInterfaceFTDI, mrpt::hwdrivers::CSerialPort, mrpt::synch::CPipeBaseEndPoint, mrpt::utils::CClientTCPSocket, mrpt::utils::CFileStream, mrpt::utils::CFileGZInputStream, mrpt::utils::CStdOutStream, mrpt::utils::CMemoryStream, mrpt::utils::CFileInputStream, and mrpt::utils::CFileOutputStream.
size_t mrpt::utils::CStream::ReadBuffer | ( | void * | Buffer, |
size_t | Count | ||
) |
Reads a block of bytes from the stream into Buffer.
std::exception | On any error, or if ZERO bytes are read. |
|
inline |
Reads a sequence of elemental datatypes, taking care of reordering their bytes from the MRPT stream standard (little endianness) to the format of the running architecture.
ElementCount | The number of elements (not bytes) to read. |
ptr | A pointer to the first output element in an array (or std::vector<>, etc...). |
std::exception | On any error, or if ZERO bytes are read. |
Definition at line 90 of file CStream.h.
References mrpt::mrpt::utils::reverseBytesInPlace().
Referenced by mrpt::math::operator>>().
|
inlinevirtual |
Reads a block of bytes from the stream into Buffer, and returns the amound of bytes actually read, without waiting for more extra bytes to arrive (just those already enqued in the stream).
Note that this method will fallback to ReadBuffer() in most CStream classes but in some hardware-related classes.
std::exception | On any error, or if ZERO bytes are read. |
Reimplemented in mrpt::hwdrivers::CInterfaceFTDI.
CSerializablePtr mrpt::utils::CStream::ReadObject | ( | ) |
Reads an object from stream, its class determined at runtime, and returns a smart pointer to the object.
std::exception | On I/O error or undefined class. |
mrpt::utils::CExceptionEOF | On an End-Of-File condition found at a correct place: an EOF that abruptly finishes in the middle of one object raises a plain std::exception instead. |
Referenced by mrpt::math::operator>>().
void mrpt::utils::CStream::ReadObject | ( | CSerializable * | existingObj | ) |
Reads an object from stream, where its class must be the same as the supplied object, where the loaded object will be stored in.
std::exception | On I/O error or different class found. |
mrpt::utils::CExceptionEOF | On an End-Of-File condition found at a correct place: an EOF that abruptly finishes in the middle of one object raises a plain std::exception instead. |
bool mrpt::utils::CStream::receiveMessage | ( | utils::CMessage & | msg | ) |
Tries to receive a message from the device.
std::exception | On communication errors |
|
pure virtual |
Introduces a pure virtual method for moving to a specified position in the streamed resource.
he Origin parameter indicates how to interpret the Offset parameter. Origin should be one of the following values:
Implemented in mrpt::utils::CClientTCPSocket, mrpt::utils::CFileStream, mrpt::utils::CFileGZInputStream, mrpt::utils::CMemoryStream, mrpt::utils::CFileOutputStream, mrpt::utils::CFileInputStream, and mrpt::utils::CStdOutStream.
void mrpt::utils::CStream::sendMessage | ( | const utils::CMessage & | msg | ) |
Send a message to the device.
Note that only the low byte from the "type" field will be used.
For frames of size < 255 the frame format is an array of bytes in this order:
For frames of size > 255 the frame format is an array of bytes in this order:
std::exception | On communication errors |
|
protectedpure virtual |
Introduces a pure virtual method responsible for writing to the stream.
Write attempts to write up to Count bytes to Buffer, and returns the number of bytes actually written.
Implemented in mrpt::hwdrivers::CInterfaceFTDI, mrpt::hwdrivers::CSerialPort, mrpt::synch::CPipeBaseEndPoint, mrpt::utils::CClientTCPSocket, mrpt::utils::CFileStream, mrpt::utils::CFileGZInputStream, mrpt::utils::CStdOutStream, mrpt::utils::CMemoryStream, mrpt::utils::CFileInputStream, and mrpt::utils::CFileOutputStream.
void mrpt::utils::CStream::WriteBuffer | ( | const void * | Buffer, |
size_t | Count | ||
) |
Writes a block of bytes to the stream from Buffer.
std::exception | On any error |
|
inline |
Writes a sequence of elemental datatypes, taking care of reordering their bytes from the running architecture to MRPT stream standard (little endianness).
ElementCount | The number of elements (not bytes) to write. |
ptr | A pointer to the first input element in an array (or std::vector<>, etc...). Example of usage: vector<float> vec = ... uint32_t N = vec.size(); s << N if (N) s.WriteBufferFixEndianness<float>(&vec[0],N); |
std::exception | On any error |
void mrpt::utils::CStream::WriteObject | ( | const CSerializable * | o | ) |
Writes an object to the stream.
Page generated by Doxygen 1.8.14 for MRPT 1.1.0 SVN: at lun oct 28 00:54:49 CET 2019 | Hosted on: |