![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This abstract class defines a interface for a stream line reader. More...
This abstract class defines a interface for a stream line reader.
A line reader allows the client to read one line at time from the stream. A line is consider a stream of ASCII character terminated by '
' a.k.a newline. The actual newline character(s) are handled by the interface and the client is not aware of the actual newline implementation.
#include <LineReaderApi.h>
Public Member Functions | |
virtual bool | readln (Cpl::Text::String &destString)=0 |
Reads a single line from the stream. | |
virtual bool | available ()=0 |
Returns true if there is data available to be read from the stream. | |
virtual void | close ()=0 |
Closes the reader and the underlying input stream. | |
virtual | ~LineReaderApi () |
Lets the make the destructor virtual. | |
![]() | |
bool | insert_ (void *newContainerPtr) |
Helper method to trap when inserting an item in multiple containers. | |
bool | isInContainer_ (const void *containerPtr) const noexcept |
Returns 'true' if the instance is in the specified container. | |
Additional Inherited Members | |
![]() | |
static void | remove_ (Item *itemPtr) noexcept |
Helper method to do the proper 'clean-up' for the multiple-containers-error-trap when removing an item from a container. | |
![]() | |
void * | m_nextPtr_ |
The link field. | |
void * | m_inListPtr_ |
Debug field. | |
![]() | |
Item () | |
Constructor. | |
Item (const char *) | |
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated. | |
|
inlinevirtual |
Lets the make the destructor virtual.
|
pure virtual |
Returns true if there is data available to be read from the stream.
NOTE: The implementation of this method is VERY PLATFORM dependent! If your code uses it - it may not be portable to all platforms. If a platform does not/can not support this method it is guaranteed to return 'true'
Implemented in Cpl::Io::LineReader.
|
pure virtual |
Closes the reader and the underlying input stream.
Implemented in Cpl::Io::LineReader.
|
pure virtual |
Reads a single line from the stream.
If the line is greater than the will fit in 'destString', the line content is truncated. The next subsequent readln() reads the next line (NOT the truncated characters!). The '
' character is NOT copied into 'destString' but is replaced with '\0'. Returns true if successful, or false if End-of-Stream was encountered.
NOTE: This call will not return until a newline character is encounter!
Implemented in Cpl::Io::LineReader.