![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This concrete class represents the C-library 'stdin' stream. More...
This concrete class represents the C-library 'stdin' stream.
NOTE: Many instances of this class may be created - even though there is only ONE stdin. This is OK because all instance reference the systems/platform 'stdin'
NOTE: stdin under Windoze is problematic with how the available() method is implemented. See the win32/Input.cpp file for more details. There is partial work-around for the issue. It can be enabled be defining the following in colony_confi.h: USE_CPL_IO_STDIO_WIN32_STDIN_CONSOLE_HACK
#include <StdIn.h>
Public Member Functions | |
StdIn () | |
Constructor. | |
void | close () |
Overriding inherited behavior so as to NOT close the actual native stream. | |
![]() | |
Input_ (int fd) | |
Constructor. | |
Input_ (void *handle) | |
Constructor. | |
Input_ (Cpl::Io::Descriptor streamfd) | |
Constructor. | |
Input_ (void) | |
Constructor. | |
~Input_ (void) | |
Destructor. | |
void | activate (int fd) |
Activates and/or resets the underlying 'fd' for the stream. | |
void | activate (void *handle) |
Activates and/or resets the underlying 'handle' for the stream. | |
void | activate (Cpl::Io::Descriptor streamfd) |
Activates and/or resets the underlying 'streamfd' for the stream. | |
bool | isOpened () |
This method returns true if the file was successfully open and/or is still opened (i.e. | |
bool | read (void *buffer, int numBytes, int &bytesRead) |
See Cpl::Io::Input. | |
bool | available () |
See Cpl::Io::Input. | |
bool | isEos () |
See Cpl::Io::IsEos. | |
![]() | |
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. | |
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::Descriptor | m_inFd |
Stream Handle. | |
bool | m_inEos |
Cache end-of-stream status. | |
Cpl::Io::Stdio::StdIn::StdIn | ( | ) |
Constructor.
|
virtual |
Overriding inherited behavior so as to NOT close the actual native stream.
In general closing stdin/stdout/stderr is bad thing.
Reimplemented from Cpl::Io::Stdio::Input_.