1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
//=========================================================================//
// //
// PonyProg - Serial Device Programmer //
// //
// Copyright (C) 1997-2021 Claudio Lanconelli //
// //
// http://ponyprog.sourceforge.net //
// //
//-------------------------------------------------------------------------//
// //
// This program is free software; you can redistribute it and/or //
// modify it under the terms of the GNU General Public License //
// as published by the Free Software Foundation; either version2 of //
// the License, or (at your option) any later version. //
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU //
// General Public License for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program (see LICENSE); if not, write to the //
// Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. //
// //
//=========================================================================//
#ifndef _FILEBUF_H
#define _FILEBUF_H
#include <QString>
#include <QFile>
// #include <stdio.h>
#include "types.h"
#include "globals.h"
class e2AppWinInfo;
class FileBuf
{
public:
FileBuf(e2AppWinInfo *wininfo = 0);
virtual ~FileBuf();
void SetAWInfo(e2AppWinInfo *wininfo);
void SetFileName(const QString &name); //ok
QString GetFileName(); //ok
virtual int Load(int loadtype = ALL_TYPE, long relocation_offset = 0) = 0;
virtual int Save(int savetype = ALL_TYPE, long relocation_offset = 0) = 0;
FileType GetFileType() const
{
return file_type;
}
// void SetBlockSize(int blksize)
// { awi->SetBlockSize(blksize); }
int GetBlockSize() const;
int GetNoOfBlock() const;
void SetNoOfBlock(int no_blk);
long GetEEpromType() const;
int GetEEpromPriType() const;
int GetEEpromSubType() const;
void SetEEpromType(int pritype, int subtype);
void SetEEpromType(unsigned long id);
QString GetStringID();
void SetStringID(const QString &s);
QString GetComment();
void SetComment(const QString &s);
int GetRollOver() const;
void SetRollOver(int rlv);
long GetSplitted() const;
void SetSplitted(long spl);
uint32_t GetLockBits() const;
void SetLockBits(uint32_t bits);
uint32_t GetFuseBits() const;
void SetFuseBits(uint32_t bits);
// uint16_t GetCRC() const
// { return awi->GetCRC(); }
void SetCRC(uint16_t c);
protected:
uint8_t *GetBufPtr() const;
long GetBufSize() const;
e2AppWinInfo *GetAWInfo();
long GetFileSize(QFile &fh);
FileType file_type; //Identificativo del tipo di file (E2P, INTEL, ...)
// Informazioni addizionali sull'eeprom che vengono salvate nel file
private:
e2AppWinInfo *awi; //puntatore alla AppWinInfo che contiene questo FileBuffer
};
#endif
|