MRPT
1.9.9
|
The write end-point in a pipe created with mrpt::synch::CPipe.
Use the method CStream::Write() of the base class CStream for blocking writing.
#include <mrpt/io/CPipe.h>
Public Types | |
enum | TSeekOrigin { sFromBeginning = 0, sFromCurrent = 1, sFromEnd = 2 } |
Used in CStream::Seek. More... | |
Public Member Functions | |
CPipeWriteEndPoint (const std::string &serialized) | |
De-serializes one end-point description, for example, from a parent process. More... | |
size_t | Read (void *Buffer, size_t Count) override |
Write-only pipe: read launches exception. More... | |
std::string | serialize () |
Converts the end-point into a string suitable for reconstruction at a child process. More... | |
bool | isOpen () const |
Returns false if the pipe was closed due to some error. More... | |
void | close () |
Closes the pipe (normally not needed to be called by users, automatically done at destructor) More... | |
size_t | Write (const void *Buffer, size_t Count) override |
Introduces a pure virtual method responsible for writing to the stream. More... | |
uint64_t | Seek (int64_t of, CStream::TSeekOrigin o=sFromBeginning) override |
Without effect in this class. More... | |
uint64_t | getTotalBytesCount () const override |
Without effect in this class. More... | |
uint64_t | getPosition () const override |
Without effect in this class. 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... | |
virtual int | printf (const char *fmt,...) MRPT_printf_format_check(2 |
Writes a string to the stream in a textual form. More... | |
template<typename CONTAINER_TYPE > | |
virtual int void | printf_vector (const char *fmt, const CONTAINER_TYPE &V, char separator=',') |
Prints a vector in the format [A,B,C,...] using CStream::printf, and the fmt string for each vector element T . More... | |
bool | getline (std::string &out_str) |
Reads from the stream until a ' ' character is found ('' characters are ignored). More... | |
Public Attributes | |
unsigned int | timeout_read_start_us {0} |
(Default=0) Timeout for read operations: microseconds (us) to wait for the first byte. More... | |
unsigned int | timeout_read_between_us {0} |
(Default=0) Timeout between burst reads operations: microseconds (us) to wait between two partial reads inside one large read. More... | |
Protected Attributes | |
void * | m_pipe_file |
Private Member Functions | |
CPipeWriteEndPoint () | |
Friends | |
class | CPipe |
|
inherited |
Used in CStream::Seek.
Enumerator | |
---|---|
sFromBeginning | |
sFromCurrent | |
sFromEnd |
Definition at line 32 of file io/CStream.h.
|
explicit |
|
inherited |
Closes the pipe (normally not needed to be called by users, automatically done at destructor)
Definition at line 56 of file CPipe.cpp.
References mrpt::io::CPipeBaseEndPoint::m_pipe_file.
Referenced by mrpt::io::CPipeBaseEndPoint::Read(), and mrpt::io::CPipeBaseEndPoint::~CPipeBaseEndPoint().
|
inherited |
Reads from the stream until a '
' character is found ('' characters are ignored).
Definition at line 69 of file CStream.cpp.
|
overridevirtualinherited |
Without effect in this class.
Implements mrpt::io::CStream.
|
overridevirtualinherited |
Without effect in this class.
Implements mrpt::io::CStream.
|
inlineinherited |
Returns false if the pipe was closed due to some error.
Definition at line 93 of file CPipe.h.
References mrpt::io::CPipeBaseEndPoint::m_pipe_file.
|
virtualinherited |
Writes a string to the stream in a textual form.
Definition at line 30 of file CStream.cpp.
References MRPT_END, MRPT_START, and mrpt::system::os::vsnprintf().
Referenced by mrpt::hmtslam::CTopLCDetector_GridMatching::computeTopologicalObservationModel(), mrpt::apps::MonteCarloLocalization_Base::do_pf_localization(), mrpt::io::CStream::printf_vector(), mrpt::apps::CGridMapAlignerApp::run(), mrpt::apps::RBPF_SLAM_App_Base::run(), and mrpt::apps::ICP_SLAM_App_Base::run().
|
inlineinherited |
Prints a vector in the format [A,B,C,...] using CStream::printf, and the fmt string for each vector element T
.
CONTAINER_TYPE | can be any vector<T>, deque<T> or alike. |
Definition at line 102 of file io/CStream.h.
References mrpt::io::CStream::printf().
Referenced by mrpt::hmtslam::CTopLCDetector_GridMatching::computeTopologicalObservationModel().
|
inlineoverridevirtual |
Write-only pipe: read launches exception.
Reimplemented from mrpt::io::CPipeBaseEndPoint.
|
inlinevirtualinherited |
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::comms::CInterfaceFTDI.
Definition at line 62 of file io/CStream.h.
References mrpt::io::CStream::Read().
|
overridevirtualinherited |
Without effect in this class.
Implements mrpt::io::CStream.
|
inherited |
Converts the end-point into a string suitable for reconstruction at a child process.
This invalidates this object, since only one real end-point can exist at once.
Definition at line 102 of file CPipe.cpp.
References ASSERTMSG_, mrpt::io::CPipeBaseEndPoint::m_pipe_file, and mrpt::to_string().
|
overridevirtualinherited |
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.
Implements mrpt::io::CStream.
Reimplemented in mrpt::io::CPipeReadEndPoint.
Definition at line 218 of file CPipe.cpp.
References ASSERTMSG_, and mrpt::io::CPipeBaseEndPoint::m_pipe_file.
|
protectedinherited |
Definition at line 100 of file CPipe.h.
Referenced by mrpt::io::CPipeBaseEndPoint::close(), mrpt::io::CPipeBaseEndPoint::CPipeBaseEndPoint(), mrpt::io::CPipe::initializePipe(), mrpt::io::CPipeBaseEndPoint::isOpen(), mrpt::io::CPipeBaseEndPoint::Read(), mrpt::io::CPipeBaseEndPoint::serialize(), and mrpt::io::CPipeBaseEndPoint::Write().
|
inherited |
(Default=0) Timeout between burst reads operations: microseconds (us) to wait between two partial reads inside one large read.
0 means infinite timeout.
Definition at line 90 of file CPipe.h.
Referenced by mrpt::io::CPipeBaseEndPoint::Read().
|
inherited |
(Default=0) Timeout for read operations: microseconds (us) to wait for the first byte.
0 means infinite timeout.
Definition at line 86 of file CPipe.h.
Referenced by mrpt::io::CPipeBaseEndPoint::Read().
Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: c7a3bec24 Sun Mar 29 18:33:13 2020 +0200 at dom mar 29 18:50:38 CEST 2020 |