![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This concrete class provides a platform independent 'standard' implementation of an InputOutputFileApi object. More...
This concrete class provides a platform independent 'standard' implementation of an InputOutputFileApi object.
NOTE: All the read/write operations return 'false' if an error occurred, this INCLUDES the end-of-file condition (which is error when dealing with streams). To differentiate between a true error and EOF, the client must call isEof().
#include <InputOutput.h>
Public Member Functions | |
InputOutput (const char *fileName, bool forceCreate=true, bool forceEmptyFile=false, bool readOnly=false) | |
Constructor -->Opens the file (note: readOnly takes precedence over the other flags) | |
InputOutput (Cpl::Io::Descriptor streamfd) | |
Constructor. 'streamfd' is a the file descriptor of a existing/opened file. | |
~InputOutput () | |
Destructor -->Will insure the file gets closed. | |
bool | isOpened () |
This method returns true if the Input AND Output streams where successfully open and/or is still opened (i.e. | |
Cpl::Io::InputOutput & | getStream () |
See Cpl::Io::File::InputOutputApi. | |
bool | read (char &c) |
See Cpl::Io::Input. | |
bool | read (Cpl::Text::String &destString) |
See Cpl::Io::Input. | |
bool | read (void *buffer, int numBytes, int &bytesRead) |
See Cpl::Io::Input. | |
bool | available () |
See Cpl::Io::Input. | |
bool | write (char c) |
See Cpl::Io::Output. | |
bool | write (const char *string) |
See Cpl::Io::Output. | |
bool | write (const Cpl::Text::String &string) |
See Cpl::Io::Output. | |
bool | write (Cpl::Text::String &formatBuffer, const char *format,...) |
See Cpl::Io::Output. | |
bool | vwrite (Cpl::Text::String &formatBuffer, const char *format, va_list ap) |
See Cpl::Io::Output. | |
bool | write (const void *buffer, int maxBytes) |
See Cpl::Io::Output. | |
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 (is equivalent to isEof()) | |
void | close () |
See Cpl::Io::Close. | |
bool | isEof () |
See Cpl::Io::File::ObjectApi. | |
bool | length (unsigned long &len) |
See Cpl::Io::File::ObjectApi. | |
bool | currentPos (unsigned long &curPosition) |
See Cpl::Io::File::ObjectApi. | |
bool | setRelativePos (long deltaOffset) |
See Cpl::Io::File::ObjectApi. | |
bool | setAbsolutePos (unsigned long newoffset) |
See Cpl::Io::File::ObjectApi. | |
bool | setToEof () |
See Cpl::Io::File::ObjectApi. | |
![]() | |
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 | ~ObjectApi () |
Virtual destructor. | |
![]() | |
virtual | ~Output () |
Lets the make the destructor virtual. | |
Protected Attributes | |
Cpl::Io::Stdio::InputOutput_ | m_stream |
Handles all of the reads/writes. | |
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::File::InputOutput::InputOutput | ( | const char * | fileName, |
bool | forceCreate = true , |
||
bool | forceEmptyFile = false , |
||
bool | readOnly = false |
||
) |
Constructor -->Opens the file (note: readOnly takes precedence over the other flags)
Cpl::Io::File::InputOutput::InputOutput | ( | Cpl::Io::Descriptor | streamfd | ) |
Constructor. 'streamfd' is a the file descriptor of a existing/opened file.
Cpl::Io::File::InputOutput::~InputOutput | ( | ) |
Destructor -->Will insure the file gets closed.
|
virtual |
See Cpl::Io::Input.
Implements Cpl::Io::Input.
|
virtual |
See Cpl::Io::Close.
Implements Cpl::Io::Close.
|
virtual |
Implements Cpl::Io::File::ObjectApi.
|
virtual |
See Cpl::Io::Output.
Implements Cpl::Io::Output.
|
virtual |
See Cpl::Io::File::InputOutputApi.
Implements Cpl::Io::File::InputOutputApi.
|
virtual |
Implements Cpl::Io::File::ObjectApi.
|
virtual |
See Cpl::Io::IsEos (is equivalent to isEof())
Implements Cpl::Io::IsEos.
bool Cpl::Io::File::InputOutput::isOpened | ( | ) |
This method returns true if the Input AND Output streams where successfully open and/or is still opened (i.e.
close() has not been called). Note: it is okay to call other methods in the class if the file is not open - i.e. nothing 'bad' will happen and the method will return 'failed' status (when appropriate).
|
virtual |
Implements Cpl::Io::File::ObjectApi.
|
virtual |
See Cpl::Io::Input.
Reimplemented from Cpl::Io::Input.
|
virtual |
See Cpl::Io::Input.
Reimplemented from Cpl::Io::Input.
|
virtual |
See Cpl::Io::Input.
Implements Cpl::Io::Input.
|
virtual |
Implements Cpl::Io::File::ObjectApi.
|
virtual |
Implements Cpl::Io::File::ObjectApi.
|
virtual |
Implements Cpl::Io::File::ObjectApi.
|
virtual |
See Cpl::Io::Output.
Reimplemented from Cpl::Io::Output.
|
virtual |
See Cpl::Io::Output.
Reimplemented from Cpl::Io::Output.
|
virtual |
See Cpl::Io::Output.
Reimplemented from Cpl::Io::Output.
|
virtual |
See Cpl::Io::Output.
Reimplemented from Cpl::Io::Output.
|
virtual |
See Cpl::Io::Output.
Reimplemented from Cpl::Io::Output.
|
virtual |
See Cpl::Io::Output.
Implements Cpl::Io::Output.
|
virtual |
See Cpl::Io::Output.
Reimplemented from Cpl::Io::Output.
|
protected |
Handles all of the reads/writes.