In the LGF file extra sections can be placed, which contain any data in arbitrary format. Such sections can be read with this class. A reading rule can be added to the class with two different functions. With the sectionLines()
function a functor can process the section line-by-line, while with the sectionStream()
member the section can be read from an input stream.
#include <lemon/lgf_reader.h>
Public Member Functions | |
SectionReader (std::istream &is) | |
Constructor. | |
SectionReader (const std::string &fn) | |
Constructor. | |
SectionReader (const char *fn) | |
Constructor. | |
~SectionReader () | |
Destructor. | |
Section Readers | |
template<typename Functor > | |
SectionReader & | sectionLines (const std::string &type, Functor functor) |
Add a section processor with line oriented reading. | |
template<typename Functor > | |
SectionReader & | sectionStream (const std::string &type, Functor functor) |
Add a section processor with stream oriented reading. | |
Execution of the Reader | |
void | run () |
Start the batch processing. | |
Related Functions | |
(Note that these are not member functions.) | |
SectionReader | sectionReader (std::istream &is) |
Return a SectionReader class. | |
SectionReader | sectionReader (const std::string &fn) |
Return a SectionReader class. | |
SectionReader | sectionReader (const char *fn) |
Return a SectionReader class. | |
|
inline |
Construct a section reader, which reads from the given input stream.
|
inline |
Construct a section reader, which reads from the given file.
|
inline |
Construct a section reader, which reads from the given file.
|
inline |
The first parameter is the type descriptor of the section, the second is a functor, which takes just one std::string
parameter. At the reading process, each line of the section will be given to the functor object. However, the empty lines and the comment lines are filtered out, and the leading whitespaces are trimmed from each processed string.
For example, let's see a section, which contain several integers, which should be inserted into a vector.
The functor is implemented as a struct:
|
inline |
The first parameter is the type of the section, the second is a functor, which takes an std::istream&
and an int&
parameter, the latter regard to the line number of stream. The functor can read the input while the section go on, and the line number should be modified accordingly.
|
inline |
This function starts the batch processing.
|
related |
This function just returns a SectionReader class.
|
related |
This function just returns a SectionReader class.