-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrhexFileHandler.cpp
More file actions
131 lines (105 loc) · 2.67 KB
/
frhexFileHandler.cpp
File metadata and controls
131 lines (105 loc) · 2.67 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*
* Frhex - Hexadecimal Editor
* Copyright (C) 2011 Filipe Rinaldi - filipe.rinaldi@gmail.com
*
* 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 version 2
* of the License, or 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; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <QMessageBox>
#include "frhexFileHandler.h"
#include "frhexModel.h"
FrhexFileHandler::FrhexFileHandler(const QString filename)
{
mName = filename;
mSize = 0;
}
FrhexFileHandler::~FrhexFileHandler()
{
}
bool FrhexFileHandler::open(void)
{
mFile.setFileName(mName);
if (!mFile.exists())
return false;
if (!mFile.open(QIODevice::ReadWrite))
return false;
mSize = mFile.size();
return true;
}
bool FrhexFileHandler::read(qint64 address, quint8 *value, int size, Endianness endianness)
{
int sizeToRead;
if (address >= mSize)
return false;
memset(value, 0, 4);
if ((mSize - address) < size)
sizeToRead = mSize - address;
else
sizeToRead = size;
if (!mReadFromFile(value, address, sizeToRead))
return false;
/*
* Apply byte order
*/
if (endianness == DATA_LITTLE_ENDIAN) {
quint8 tmp;
switch(size) {
case 2:
tmp = value[0];
value[0] = value[1];
value[1] = tmp;
break;
case 4:
tmp = value[0];
value[0] = value[3];
value[3] = tmp;
tmp = value[1];
value[1] = value[2];
value[2] = tmp;
break;
default:
return false;
}
}
return true;
}
bool FrhexFileHandler::write(qint64 address, quint8 value)
{
if (address < mSize) {
QMessageBox msgBox(QMessageBox::Critical, "Save to file", "Not implemented");
msgBox.exec();
return true;
}
else
return false;
}
bool FrhexFileHandler::mReadFromFile(quint8 *data, qint64 address, qint64 count)
{
qint64 totalDataRead = 0;
if (!mFile.seek(address))
return false;
while( totalDataRead < count ) {
qint64 dataRead = 0;
dataRead = mFile.read( reinterpret_cast<char*>(&data[totalDataRead]), count - totalDataRead);
if ( dataRead == -1 )
return false;
totalDataRead += dataRead;
}
Q_ASSERT_X(totalDataRead == count, __FUNCTION__, "Reading file failed.");
return true;
}
qint64 FrhexFileHandler::getSize(void)
{
return mSize;
}