A class for tokenized reading of lines, that can be attached to open file handles.
There might be other reference to the the file handle.
Construct an AttachedFileReader_t
If the argument echo_lines is present, then the read lines are
echoed to the unit echo_lines. If the argument is not present,
the echoing is switched off.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| integer, | intent(in) | :: | file_id | |||
| integer, | intent(in), | optional | :: | echo_lines | ||
| character(len=*), | intent(in), | optional | :: | file_name | ||
| integer, | intent(in), | optional | :: | current_line |
Close the file.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(FileReader_t), | intent(inout) | :: | this | |||
| logical, | intent(in), | optional | :: | delete |
Return if the next line can be read. It is written to the out-argument.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(FileReader_t), | intent(inout) | :: | this | |||
| type(TokenIterator_t), | intent(out) | :: | tokenized_line | |||
| logical, | intent(in) | :: | skip_empty |
Rewind the file
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(FileReader_t), | intent(inout) | :: | this |
Set the unit where to echo lines.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(FileReader_t), | intent(inout) | :: | this | |||
| integer, | intent(in), | optional | :: | echo_lines |
Return the current line (if defined)
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(FileReader_t), | intent(in) | :: | this |
Return the file name (if defined)
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(FileReader_t), | intent(in) | :: | this |