![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This concrete class defines a platform independent implementation of an InputOutput stream used by the Listener and Connector interfaces. More...
This concrete class defines a platform independent implementation of an InputOutput stream used by the Listener and Connector interfaces.
Note: Platform independent is this context is that application can instantiate an instance of this class without any platform specific #include
statements. However, the actual implementation IS platform specific.
#include <InputOutput.h>
Public Member Functions | |
InputOutput () | |
Constructor. | |
InputOutput (Cpl::Io::Descriptor fd) | |
Constructor. | |
~InputOutput (void) | |
Destructor. | |
void | activate (Cpl::Io::Descriptor fd) |
Activates the stream, i.e. | |
bool | read (void *buffer, int numBytes, int &bytesRead) |
See Cpl::Io::Input. | |
bool | available () |
See Cpl::Io::Input. | |
bool | write (const void *buffer, int maxBytes, int &bytesWritten) |
See Cpl::Io::Output. | |
void | flush () |
See Cpl::Io::Output. | |
bool | isEos () |
See Cpl::Io::IsEos. | |
void | close () |
See Cpl::Io::Output. | |
Cpl::Io::Descriptor | getDescriptor () |
USE THIS METHOD WITH CAUTION. | |
![]() | |
virtual bool | read (char &c) |
Reads a single byte from the stream. | |
virtual bool | read (Cpl::Text::String &destString) |
Reads N bytes into the String's internal buffer. | |
virtual | ~Input () |
Lets the make the destructor virtual. | |
![]() | |
virtual | ~Close () |
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. | |
![]() | |
virtual | ~IsEos () |
Lets the make the destructor virtual. | |
![]() | |
virtual bool | write (char c) |
Writes a single byte to the stream. | |
virtual bool | write (const char *string) |
Writes a string to the stream. | |
virtual bool | write (const Cpl::Text::String &string) |
Writes a string to the stream. | |
virtual bool | write (Cpl::Text::String &formatBuffer, const char *format,...) |
Formatted write to the stream. | |
virtual bool | vwrite (Cpl::Text::String &formatBuffer, const char *format, va_list ap) |
Same as write( String& formatBuffer, const char* format,...), except that it is called with a va_list instead of a variable number of arguments. | |
virtual bool | write (const void *buffer, int numBytes) |
Writes the content of the buffer to the stream. | |
virtual | ~Output () |
Lets the make the destructor virtual. | |
Protected Attributes | |
Cpl::Io::Descriptor | m_fd |
Protocol Control Block. | |
bool | m_eos |
End-of-Stream status. | |
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::Tcp::InputOutput::InputOutput | ( | ) |
Constructor.
No 'fd' provided -->the instance MUST be activated prior to use.
Cpl::Io::Tcp::InputOutput::InputOutput | ( | Cpl::Io::Descriptor | fd | ) |
Constructor.
'fd' is a PCB of a existing/opened TCP connection
Cpl::Io::Tcp::InputOutput::~InputOutput | ( | void | ) |
Destructor.
void Cpl::Io::Tcp::InputOutput::activate | ( | Cpl::Io::Descriptor | fd | ) |
Activates the stream, i.e.
initializes the instance's underlying PCB. If the instance's 'fd' is not in the closed state when this method is called a fatal error is generated.
|
virtual |
See Cpl::Io::Input.
Implements Cpl::Io::Input.
|
virtual |
See Cpl::Io::Output.
Implements Cpl::Io::Close.
|
virtual |
See Cpl::Io::Output.
Implements Cpl::Io::Output.
|
inline |
USE THIS METHOD WITH CAUTION.
This method returns the Stream's internal 'file descriptor'
|
virtual |
See Cpl::Io::IsEos.
Implements Cpl::Io::IsEos.
|
virtual |
See Cpl::Io::Input.
Implements Cpl::Io::Input.
|
virtual |
See Cpl::Io::Output.
Implements Cpl::Io::Output.
|
protected |
End-of-Stream status.
|
protected |
Protocol Control Block.