![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This abstract class defines the interface for a Random Access Input File. More...
This abstract class defines the interface for a Random Access Input File.
NOTE: All the 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 <OutputApi.h>
Additional Inherited Members | |
![]() | |
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 bool | write (const void *buffer, int maxBytes, int &bytesWritten)=0 |
Writes the content of the buffer to the stream. | |
virtual void | flush ()=0 |
Forces all buffered data (if any) to be written to the stream media. | |
virtual | ~Output () |
Lets the make the destructor virtual. | |
![]() | |
virtual void | close ()=0 |
This method will close the stream. | |
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 bool | isEos ()=0 |
This method returns true if End-of-Stream was encountered on the stream. | |
virtual | ~IsEos () |
Lets the make the destructor virtual. | |
![]() | |
virtual bool | isEof ()=0 |
After a read/write operation this method returns true if the file pointer is at EOF. | |
virtual bool | length (unsigned long &length)=0 |
Returns the length, in bytes, of the file. | |
virtual bool | currentPos (unsigned long ¤tPos)=0 |
Returns the current file pointer offset, in bytes, from the top of the file. | |
virtual bool | setRelativePos (long deltaOffset)=0 |
Adjusts the current pointer offset by the specified delta (in bytes). | |
virtual bool | setAbsolutePos (unsigned long newoffset)=0 |
Sets the file pointer to the absolute specified offset (in bytes). | |
virtual bool | setToEof ()=0 |
Sets the file pointer to End-Of-File. | |
virtual | ~ObjectApi () |
Virtual destructor. | |
![]() | |
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. | |