This concrete class implements an InputOutput stream using a Ring Buffer.
NOTES:
- Thread safe and read and write operations have blocking semantics.
- This is NOT shared memory across processes, i.e. assumes a SINGLE address space.
- Implementation is not necessarily efficient - it is more focused on clarity and robustness.
|
| InputOutput (void *rawMemory, unsigned memorySizeInBytes) |
| Constructor. The application supplies the Memory.
|
|
| ~InputOutput () |
| Destructor.
|
|
virtual void | reset () |
| This function will clear/reset-to-empty the internal ring buffer IF the instance is still opened.
|
|
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::Close. Note: Once closed() has been called, all of the write() method will return false;.
|
|
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.
|
|