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

FileReader is a helper class to read a file. More...

#include <FileReader.h>

Public Types

Public Member Functions

bool readFile (const QString &filePath, const QByteArray &encoding, qint64 maxSize, EolMode eolMode=TextMode)
 Read a entire file.
 
QString stringData () const
 Get string data.
 
Mdt::Error lastError () const
 Get last error.
 
void setAutoCommitError (bool autoCommit)
 Set auto commit of errors. More...
 

Detailed Description

FileReader is a helper class to read a file.

Reading a file can be done easily by using QFile and QTextStream, but adding some error checking introduces additionnal code every time. File reader does some checks for common cases and fills a error, avaibale in lastError().

Typical usage:

#include <Mdt/PlainText/FileReader.h>
#include <Mdt/ErrorDialog.h>
// In your function
FileReader reader;
QString filePath = "/some/path/to/file.txt";
if(!reader.readFile(filePath, "UTF-8",2*1024*1024)){
ErrorDialog dialog(reader.lastError());
dialog.exec();
return;
}

Definition at line 56 of file FileReader.h.

Member Enumeration Documentation

EOL mode.

Enumerator
TextMode 

While reading, end of lines are translated to '
'.

BinaryMode 

While reading, the end of line are left as they are.

Definition at line 62 of file FileReader.h.

Member Function Documentation

void Mdt::PlainText::FileReader::setAutoCommitError ( bool  autoCommit)

Set auto commit of errors.

If autoCommit is true, a error that occurs will be committed, else not. By default, error is not commited automatically.

See also
Mdt::Error::commit()

Definition at line 108 of file FileReader.cpp.


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