USB EPROM/Flash Programmer
Public Types | Public Member Functions | Static Public Member Functions | List of all members
QEpromFile Class Reference

QEpromFile Class. More...

#include <qepromfile.hpp>

Inheritance diagram for QEpromFile:
Inheritance graph

Public Types

enum  QEpromFileType { EpromFileBin , EpromFileSRec , EpromFileHex , EpromFileAtmel }
 Eprom File Types. More...
 

Public Member Functions

 QEpromFile (QObject *parent=nullptr)
 Constructor. More...
 
QByteArray read (const QString &filename, qint32 size)
 Reads data from a file. More...
 
bool write (QEpromFileType type, const QString &filename, const QByteArray &data)
 Writes data to a file. More...
 
virtual QString getFilename (void) const
 Gets the filename used to read or write the file. More...
 
virtual QEpromFileType getType (void) const
 Gets the type of the file opened/saved. More...
 

Static Public Member Functions

static QEpromFileType typeFromStr (const QString &src)
 Returns the type of the file, by string (file filter). More...
 
static bool isReadable (const QString &filename)
 Returns if file is readable in this format. More...
 

Detailed Description

QEpromFile Class.

The purpose of this class is to manage all EPROM File formats.

Member Enumeration Documentation

◆ QEpromFileType

enum QEpromFileType
inherited

Eprom File Types.

Enumerator
EpromFileBin 

Binary file (raw).

EpromFileSRec 

Motorola S-REC file.

EpromFileHex 

Intel Hex file.

EpromFileAtmel 

Atmel Generic file.

Constructor & Destructor Documentation

◆ QEpromFile()

QEpromFile ( QObject *  parent = nullptr)
explicit

Constructor.

Parameters
parentPointer to parent object (default = nullptr).

Member Function Documentation

◆ typeFromStr()

QEpromFile::QEpromFileType typeFromStr ( const QString &  src)
static

Returns the type of the file, by string (file filter).

Parameters
srcThe source string.
Returns
Type of the file.

◆ read()

QByteArray read ( const QString &  filename,
qint32  size 
)
virtual

Reads data from a file.

Parameters
filenameFilename (with path).
sizeSize of data to be read (in bytes). If file is smaller than this parameter, data is filled with 0xFF.
Returns
Byte array with data, or empty if an error occurs.

Implements QEpromFileBase.

◆ write()

bool write ( QEpromFile::QEpromFileType  type,
const QString &  filename,
const QByteArray &  data 
)
virtual

Writes data to a file.

Parameters
typeType of the file to write.
filenameFilename (with path).
dataData to write.
Returns
True if success, false otherwise.

Implements QEpromFileBase.

◆ isReadable()

bool isReadable ( const QString &  filename)
staticinherited

Returns if file is readable in this format.

Parameters
filenameFilename (with path).
Returns
True if success, false otherwise.

◆ getFilename()

QString getFilename ( void  ) const
virtualinherited

Gets the filename used to read or write the file.

Returns
The filename, or empty if file wasn't saved/opened yet.

◆ getType()

QEpromFileBase::QEpromFileType getType ( void  ) const
virtualinherited

Gets the type of the file opened/saved.

Returns
Type of the file.

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