![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This concrete class implements a Line Writer stream using a previously opened Output stream. More...
This concrete class implements a Line Writer stream using a previously opened Output stream.
NOTE: The LineWriter class does NOT provide any multi-thread mechanisms and/or protections. In addition, using an instance of the AtomicOutputApi interface as the underlying Output stream will NOT make output of the println() calls atomic! The intended way to have an 'Atomic' LineWriter is to use the AtomicOutput callback mechanism (i.e. requestOutputs()) and within the callback create the desired LineWriter using the supplied Output stream.
#include <LineWriter.h>
Public Member Functions | |
LineWriter (Output &stream, const char *newline=NewLine::standard()) | |
Constructor. | |
bool | print (const char *srcstring) |
See LineWriterApi. | |
bool | println (const char *srcstring) |
See LineWriterApi. | |
bool | println () |
See LineWriterApi. | |
bool | print (const char *srcstring, int numbytes) |
See LineWriterApi. | |
bool | println (const char *srcstring, int numbytes) |
See LineWriterApi. | |
bool | print (Cpl::Text::String &formatBuffer, const char *format,...) |
See LineWriterApi. | |
bool | println (Cpl::Text::String &formatBuffer, const char *format,...) |
See LineWriterApi. | |
bool | vprint (Cpl::Text::String &formatBuffer, const char *format, va_list ap) |
See LineWriterApi. | |
bool | vprintln (Cpl::Text::String &formatBuffer, const char *format, va_list ap) |
See LineWriterApi. | |
void | flush () |
See LineWriterApi. | |
void | close () |
See LineWriterApi. | |
![]() | |
virtual | ~LineWriterApi () |
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. | |
Protected Attributes | |
Output & | m_stream |
Data source. | |
const char * | m_newline |
Newline. | |
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. | |
Cpl::Io::LineWriter::LineWriter | ( | Output & | stream, |
const char * | newline = NewLine::standard() |
||
) |
Constructor.
|
virtual |
See LineWriterApi.
Implements Cpl::Io::LineWriterApi.
|
virtual |
See LineWriterApi.
Implements Cpl::Io::LineWriterApi.
|
virtual |
See LineWriterApi.
Implements Cpl::Io::LineWriterApi.
|
virtual |
See LineWriterApi.
Implements Cpl::Io::LineWriterApi.
|
virtual |
See LineWriterApi.
Implements Cpl::Io::LineWriterApi.
|
virtual |
See LineWriterApi.
Implements Cpl::Io::LineWriterApi.
|
virtual |
See LineWriterApi.
Implements Cpl::Io::LineWriterApi.
|
virtual |
See LineWriterApi.
Implements Cpl::Io::LineWriterApi.
|
virtual |
See LineWriterApi.
Implements Cpl::Io::LineWriterApi.
|
virtual |
See LineWriterApi.
Implements Cpl::Io::LineWriterApi.
|
virtual |
See LineWriterApi.
Implements Cpl::Io::LineWriterApi.
|
protected |
Newline.
|
protected |
Data source.