Gromacs
2018.7
|
#include <gromacs/utility/filestream.h>
Text input stream implementation for reading from stdin
.
Implementations for the TextInputStream methods throw FileIOError on any I/O error.
Public Member Functions | |
bool | isInteractive () const |
Returns whether stdin is an interactive terminal. More... | |
virtual bool | readLine (std::string *line) |
Reads a line (with newline included) from the stream. More... | |
virtual void | close () |
Closes the stream. More... | |
Static Public Member Functions | |
static StandardInputStream & | instance () |
Returns a stream for accessing stdin . More... | |
|
inlinevirtual |
Closes the stream.
It is not allowed to read from a stream after it has been closed. See TextOutputStream::close() for rationale for a close() method separate from the destructor. For input, failures during close should be rare, but it is clearer to keep the interface symmetric.
Implements gmx::TextInputStream.
|
static |
Returns a stream for accessing stdin
.
Does not throw.
bool gmx::StandardInputStream::isInteractive | ( | ) | const |
Returns whether stdin
is an interactive terminal.
Only works on Unix, otherwise always returns true.
Does not throw.
|
virtual |
Reads a line (with newline included) from the stream.
[out] | line | String to receive the line. |
false
if nothing was read because the stream ended.On error or when false
is returned, line
will be empty.
Implements gmx::TextInputStream.