Device for writing o standard error. More...
#include <console.hpp>
Public Member Functions | |
EConsole () | |
Default constructor. More... | |
const Error & | error () const |
Returns the most recent error status. More... | |
void | flush () |
Flush the internal buffer. More... | |
bool | open () |
Dummy handle to satisfy the output device concept. More... | |
long | write (const char &c) |
Write a character to the buffer. More... | |
long | write (const char *s, unsigned long n) |
Write a character string to the buffer. More... | |
virtual | ~EConsole () |
Private Attributes | |
devices::CharStringBuffer | buffer |
Error | error_handler |
Device for writing o standard error.
Device for writing to standard error. Do not use this directly, it serves only as the device handle for the console stream classes.
Definition at line 126 of file console.hpp.
|
inline |
Default constructor.
Definition at line 133 of file console.hpp.
|
inlinevirtual |
Definition at line 134 of file console.hpp.
|
inline |
Returns the most recent error status.
Use this to check on the status of the object after a method has been called. Mostly this is here to serve as a graceful fallback for when exceptions are disabled.
Definition at line 188 of file console.hpp.
void ecl::EConsole::flush | ( | ) |
Flush the internal buffer.
Flushes the userspace buffers to standard output.
StandardException | : throws if flushing returned an error [debug mode only]. |
Definition at line 85 of file console.cpp.
|
inline |
Dummy handle to satisfy the output device concept.
For console devices this does nothing - the standard output is always open. It is just a dummy handle built to ensure the output device concept is satisfied.
Definition at line 147 of file console.hpp.
long ecl::EConsole::write | ( | const char & | c | ) |
Write a character to the buffer.
Write a character to the buffer. It will automatically flush if the buffer exceeds its capacity.
c | : the character to write. |
StandardException | : throws if writing returned an error [debug mode only]. |
Definition at line 64 of file console.cpp.
long ecl::EConsole::write | ( | const char * | s, |
unsigned long | n | ||
) |
Write a character string to the buffer.
Write a character string to the buffer. It will automatically flush if the buffer exceeds its capacity.
s | : points to the beginning of the character string |
n | : the number of characters to write. |
StandardException | : throws if flushing returned an error [debug mode only]. |
Definition at line 73 of file console.cpp.
|
private |
Definition at line 191 of file console.hpp.
|
private |
Definition at line 192 of file console.hpp.