Multi diag tools
Public Member Functions | List of all members
Mdt::PlainText::CsvFileParser Class Reference

CSV parser that acts on a file as input. More...

#include <CsvFileParser.h>

Public Member Functions

 CsvFileParser ()
 Default constructor.
 
void setCsvSettings (const CsvParserSettings &settings)
 Set CSV settings. More...
 
bool openFile (const QFileInfo &fileInfo, const QByteArray &encoding)
 Open CSV file. More...
 
bool isOpen () const
 Check if a CSV file is open.
 
void closeFile ()
 Close CSV file.
 
bool atEnd () const
 Check about end of file. More...
 
Mdt::Expected< StringRecord > readLine ()
 Read one line in CSV file. More...
 
Mdt::Expected< StringRecordList > readAll ()
 Read the entire CSV file. More...
 
Mdt::Error lastError () const
 Get last error.
 

Detailed Description

CSV parser that acts on a file as input.

Note
Some part of this API documentation refers to following standards:

Definition at line 48 of file CsvFileParser.h.

Member Function Documentation

bool Mdt::PlainText::CsvFileParser::atEnd ( ) const

Check about end of file.

If no file is open, this function returns allways true

Definition at line 82 of file CsvFileParser.cpp.

bool Mdt::PlainText::CsvFileParser::openFile ( const QFileInfo &  fileInfo,
const QByteArray &  encoding 
)

Open CSV file.

Parameters
fileInfoPath to CSV file that must be open
encodingEncoding name of the CSV file format. Will use QTextCodec::codecForName() to get apropriate codec.
Returns
false if CSV file could not be open, or no codec could be found for given encoding, true if all goes well.

Definition at line 47 of file CsvFileParser.cpp.

Expected< StringRecordList > Mdt::PlainText::CsvFileParser::readAll ( )

Read the entire CSV file.

Precondition
CSV settings must be set before calling this function
See also
setCsvSettings()

Definition at line 108 of file CsvFileParser.cpp.

Expected< StringRecord > Mdt::PlainText::CsvFileParser::readLine ( )

Read one line in CSV file.

Precondition
CSV settings must be set before calling this function
See also
setCsvSettings()

Definition at line 87 of file CsvFileParser.cpp.

void Mdt::PlainText::CsvFileParser::setCsvSettings ( const CsvParserSettings settings)

Set CSV settings.

Precondition
settings must be valid
No file must currently be open

Definition at line 39 of file CsvFileParser.cpp.


The documentation for this class was generated from the following files: