Public Member Functions | |
Istream (std::istream &is, const word &streamName, writeFormat wf=ASCII) | |
virtual | ~Istream ()=default |
virtual const word & | name () const |
Return the name of the stream. More... | |
virtual word & | name () |
Return non-const access to the name of the stream. More... | |
virtual ios_base::fmtflags | flags () const |
Return flags of stream. More... | |
Istream & | get (char &c) |
int | peek () |
Istream & | getLine (word &str, char delim='\n') |
std::streamsize | getLine (std::nullptr_t, char delim='\n') |
Istream & | putback (const char c) |
virtual iIstream & | read (token &t) override |
virtual iIstream & | read (char &c) override |
virtual iIstream & | read (word &str) override |
virtual iIstream & | readString (word &str) override |
virtual iIstream & | read (int64 &) override |
virtual iIstream & | read (int32 &) override |
virtual iIstream & | read (int16 &) override |
virtual iIstream & | read (int8 &) override |
virtual iIstream & | read (label &) override |
virtual iIstream & | read (uint32 &) override |
virtual iIstream & | read (uint16 &) override |
virtual iIstream & | read (float &val) override |
virtual iIstream & | read (double &val) override |
iIstream & | read (char *buffer, std::streamsize count) override |
virtual void | rewind () |
virtual ios_base::fmtflags | flags (const ios_base::fmtflags flags) |
Set flags of stream. More... | |
virtual std::istream & | stdStream () |
virtual const std::istream & | stdStream () const |
![]() | |
iIstream () | |
iIstream (writeFormat wf) | |
iIstream (const iIstream &)=default | |
virtual | ~iIstream ()=default |
void | putBack (const token &tok) |
bool | getBack (token &tok) |
bool | peekBack (token &tok) |
void | resetPutBack () |
virtual bool | findToken (const word &w) |
virtual bool | findTokenResume (const word &w) |
search for all tokesn after the current file position and find the first word token tbat matchs w More... | |
virtual bool | findTokenSilent (const word &w, int32 limitLine=100) |
virtual bool | findTokenResumeSilent (const word &w, int32 limitLine=100) |
search for all tokesn after the current file position and find the first word token tbat matchs w More... | |
virtual bool | findTokenAndNext (const word &w, word &nextW, bool checkEndStatement=true) |
virtual bool | findTokenAndNextSilent (const word &w, word &nextW, int32 limitLine=100) |
template<typename T > | |
bool | findKeywordAndVal (const word &keyword, T &val, bool checkEndStatement=true) |
template<typename T > | |
T | lookupData (const word &keyword) |
template<typename T > | |
T | lookupDataOrSet (const word &keyword, const T &setVal) |
template<typename T > | |
bool | nextData (const word &keyword, T &data) |
bool | readBegin (const char *funcName) |
bool | readEnd (const char *funcName) |
bool | readBeginSquare (const char *funcName) |
bool | readEndSquare (const char *funcName) |
char | readBeginList (const char *funcName) |
char | readEndList (const char *funcName) |
char | readEndStatement (const char *funcName) |
iIstream & | operator() () const |
![]() | |
IOstream () | |
Default. More... | |
IOstream (writeFormat wF) | |
Construct and set write format. More... | |
IOstream (const IOstream &)=default | |
Copy. More... | |
virtual | ~IOstream ()=default |
Destructor. More... | |
virtual bool | check (const char *operation) const |
Check IOstream status for given operation. More... | |
bool | fatalCheck (const char *operation) const |
Check IOstream status for given operation. More... | |
bool | opened () const |
Return true if stream has been opened. More... | |
bool | closed () const |
Return true if stream is closed. More... | |
bool | isBinary () const |
Return true if stream format is binray. More... | |
bool | good () const |
Return true if next operation might succeed. More... | |
bool | eof () const |
Return true if end of input seen. More... | |
bool | fail () const |
Return true if next operation will fail. More... | |
bool | bad () const |
Return true if stream is corrupted. More... | |
operator bool () const | |
Return true if the stream has not failed. More... | |
bool | operator! () const |
Return true if the stream has failed. More... | |
int32 | lineNumber () const |
Const access to the current stream line number. More... | |
int32 & | lineNumber () |
Non-const access to the current stream line number. More... | |
int32 | lineNumber (const int32 num) |
Set the stream line number return the previous value. More... | |
void | setEof () |
Set stream to have reached eof. More... | |
void | setFail () |
Set stream to have failed. More... | |
void | setBad () |
Set stream to be bad. More... | |
ios_base::fmtflags | setf (const ios_base::fmtflags f) |
Set flags of stream. More... | |
ios_base::fmtflags | setf (const ios_base::fmtflags f, const ios_base::fmtflags mask) |
Set flags of given field of stream. More... | |
void | unsetf (const ios_base::fmtflags f) |
Unset flags of stream. More... | |
Private Member Functions | |
char | nextValid () |
void | readWordToken (token &t) |
Istream & | readVariable (word &str) |
void | operator= (const Istream &)=delete |
Private Attributes | |
word | name_ |
std::istream & | is_ |
Additional Inherited Members | |
![]() | |
enum | streamAccess : char { CLOSED = 0, OPENED } |
enum | writeFormat : char { ASCII = 0, BINARY } |
![]() | |
static unsigned int | defaultPrecision () |
Return the default precision. More... | |
static unsigned int | defaultPrecision (unsigned int prec) |
Reset the default precision return the previous value. More... | |
![]() | |
static unsigned int | precision_ = 6 |
Default precision, only works for ASCII. More... | |
![]() | |
void | setOpened () |
Set stream opened. More... | |
void | setClosed () |
Set stream closed. More... | |
void | setState (ios_base::iostate state) |
Set stream state. More... | |
void | setWriteFormat (writeFormat wF) |
void | setGood () |
Set stream to be good. More... | |
![]() | |
streamAccess | openClosed_ |
Is stream open or closed. More... | |
writeFormat | writeFormat_ = ASCII |
write format More... | |
ios_base::iostate | ioState_ |
state More... | |
int32 | lineNumber_ |
The file line. More... | |
![]() | |
static word | staticName_ |
Name for any generic stream - normally treat as readonly. More... | |
Definition at line 38 of file Istream.hpp.
Istream | ( | std::istream & | is, |
const word & | streamName, | ||
writeFormat | wf = ASCII |
||
) |
Definition at line 308 of file Istream.cpp.
|
virtualdefault |
|
private |
Definition at line 53 of file Istream.cpp.
References IOstream::bad(), Istream::get(), IOstream::good(), and Istream::putback().
|
private |
Definition at line 131 of file Istream.cpp.
References token::setBad().
|
private |
Definition at line 145 of file Istream.cpp.
References token::BEGIN_BLOCK, token::BEGIN_LIST, token::DOLLAR, token::END_BLOCK, token::END_LIST, pFlow::endl(), errLen, fatalExit, ioErrorInFile, pFlow::nl, and warningInFunction.
|
privatedelete |
|
inlinevirtual |
Return the name of the stream.
Reimplemented from IOstream.
Definition at line 77 of file Istream.hpp.
References Istream::name_.
Referenced by dictionary::dictionary(), property::property(), and stlFile::read().
|
inlinevirtual |
Return non-const access to the name of the stream.
Reimplemented from IOstream.
Definition at line 83 of file Istream.hpp.
References Istream::name_.
|
virtual |
pFlow::Istream & get | ( | char & | c | ) |
Definition at line 329 of file Istream.cpp.
References Istream::get().
Referenced by Istream::get(), and Istream::nextValid().
int peek | ( | ) |
Definition at line 343 of file Istream.cpp.
pFlow::Istream & getLine | ( | word & | str, |
char | delim = '\n' |
||
) |
Definition at line 349 of file Istream.cpp.
std::streamsize getLine | ( | std::nullptr_t | , |
char | delim = '\n' |
||
) |
Definition at line 363 of file Istream.cpp.
References pFlow::count(), and pFlow::algorithms::KOKKOS::max().
pFlow::Istream & putback | ( | const char | c | ) |
Definition at line 379 of file Istream.cpp.
Referenced by Istream::nextValid().
|
overridevirtual |
Implements iIstream.
Definition at line 396 of file Istream.cpp.
References token::BEGIN_BLOCK, token::BEGIN_LIST, token::BEGIN_SQR, token::BEGIN_STRING, token::COLON, token::COMMA, token::DIVIDE, token::DOLLAR, token::END_BLOCK, token::END_LIST, token::END_SQR, token::END_STATEMENT, fatalExit, iIstream::getBack(), ioErrorInFile, token::lineNumber(), pFlow::readInt64(), pFlow::readReal(), token::setBad(), token::setType(), and token::SUBTRACT.
|
overridevirtual |
Implements iIstream.
Definition at line 595 of file Istream.cpp.
|
overridevirtual |
Implements iIstream.
Definition at line 602 of file Istream.cpp.
References token::BEGIN_LIST, token::END_LIST, pFlow::endl(), errLen, fatalExit, ioErrorInFile, pFlow::nl, pFlow::validWord(), and warningInFunction.
|
overridevirtual |
Implements iIstream.
Definition at line 684 of file Istream.cpp.
References token::BEGIN_STRING, token::END_STRING, errLen, fatalExit, ioErrorInFile, and token::NL.
|
overridevirtual |
Implements iIstream.
Definition at line 786 of file Istream.cpp.
|
overridevirtual |
Implements iIstream.
Definition at line 793 of file Istream.cpp.
|
overridevirtual |
Implements iIstream.
Definition at line 800 of file Istream.cpp.
|
overridevirtual |
Implements iIstream.
Definition at line 807 of file Istream.cpp.
|
overridevirtual |
Implements iIstream.
Definition at line 814 of file Istream.cpp.
|
overridevirtual |
Implements iIstream.
Definition at line 821 of file Istream.cpp.
|
overridevirtual |
Implements iIstream.
Definition at line 828 of file Istream.cpp.
|
overridevirtual |
Implements iIstream.
Definition at line 835 of file Istream.cpp.
|
overridevirtual |
Implements iIstream.
Definition at line 843 of file Istream.cpp.
|
overridevirtual |
Implements iIstream.
Definition at line 851 of file Istream.cpp.
References pFlow::count(), fatalErrorInFunction, and fatalExit.
|
virtual |
Implements iIstream.
Definition at line 871 of file Istream.cpp.
|
virtual |
|
inlinevirtual |
Definition at line 165 of file Istream.hpp.
References Istream::is_.
|
inlinevirtual |
Definition at line 171 of file Istream.hpp.
References Istream::is_.
|
private |
Definition at line 44 of file Istream.hpp.
Referenced by Istream::name().
|
private |
Definition at line 46 of file Istream.hpp.
Referenced by Istream::stdStream().