Inherits SimObject.
Inherited by FileStreamObject.
Copies stream contents from current position
- Parameters
-
- Returns
- Returns true on success, and false otherwise.
- Returns
- Returns the current position in the stream as an integer or zero if failed
const char* getStatus |
( |
| ) |
|
Gets the current status of the StreamObject
- Returns
- The current status as a string (Ok, IOError, EOS, IllegalCall, Closed, UnknownError, Invalid)
Get the size of the stream
- Returns
- The size of the stream as an integer
Test for end of file stream (identical to isEOS()
- Returns
- Returns true if at the end of the stream, false otherwise.
- See also
- isEOS
Test for end of stream
- Returns
- Returns true if at the end of the stream, false otherwise.
Read the stream until '\' or EOS
- Returns
- A string containing the read line or an empty string if failed
const char* readLongString |
( |
maxLength |
| ) |
|
Reads a string of provided length from the stream buffer.
- Parameters
-
The | maximum length to read in |
- Returns
- The requested string
const char* readString |
( |
| ) |
|
Reads a string from a stream buffer
- Returns
- The string or an empty string if failed.
const char* readSTString |
( |
| ) |
|
Read a String and insert it into a StringTable
- Parameters
-
caseSensitive | A boolean representing whether the parser should ignore case or not (default false) |
- Returns
- Returns the string, or empty string if failed
Boolean setPosition |
( |
newPosition |
| ) |
|
Resets the current stream position
- Parameters
-
- Returns
- Returns true if succeeded, flase otherwise
Writes a line of text to the stream buffer
- Parameters
-
- Returns
- No return value.
void writeLongString |
( |
maxLength |
, |
|
|
string |
|
|
) |
| |
Writes a string to buffer or provided length
- Parameters
-
maxLength | The maximum length to write |
string | The string to write |
- Returns
- No return value
void writeString |
( |
string |
| ) |
|
Write a string to the stream buffer
- Parameters
-
string | The string to write |
maxLength | The maximum length to write (default 255). |
- Returns
- No return value.