-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfiles.cc
More file actions
283 lines (219 loc) · 5.86 KB
/
files.cc
File metadata and controls
283 lines (219 loc) · 5.86 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
#include <QDebug>
#include <QtCrypto>
#include <QFile>
#include <QByteArray>
#include <QPair>
#include <QObject>
#include <QString>
#include <QVariant>
#include <QFileInfo>
#include <files.hh>
/*
* We have to take a lot of care while hashing because
* the data() member of the ByteArray returns a \0 terminated
* string. The padding should *not* affect the result of
* the way we do hashing.
*
* We have to always specify the number of bytes we want to hash
* and the number of bytes we read from the data buffer into
* the stream.
*/
FileStore::FileStore()
{
}
/*
* Given a list of files returned by the user, index
* their information.
*/
void
FileStore::IndexFiles(const QStringList& inputFiles)
{
for(int i = 0; i < inputFiles.count(); ++i)
IndexSingleFile(inputFiles[i]);
}
/*
* Index the information of a single file.
*/
void
FileStore::IndexSingleFile(const QString& inputFile)
{
QFile file(inputFile);
if (!file.open(QIODevice::ReadOnly)){
qDebug() << "File store: file " << inputFile << " not found.";
return;
}
QDataStream fileStream(&file);
HashBlocks(fileStream, inputFile, 0);
/*
QList<QVariant> fileHash = ConvertBytes(HashFinalBlock(HashBlocks(fileStream)));
qDebug() << "Hashed " << inputFile << ". Num levels = " << fileHash.count();
QMap<QString, QVariant> fileDetails;
fileDetails["size"] = size;
fileDetails["hash"] = fileHash;
if (files.contains(inputFile)){
qDebug() << "File " << inputFile << " already exists.";
files.remove(inputFile);
}
files[inputFile] = fileDetails;
*/
}
QList<QVariant>
FileStore::ConvertStrings(const QList<QString>&strings)
{
QList<QVariant> ret;
int i;
for(i = 0; i < strings.count(); ++i){
QVariant stringAsVariant(strings[i]);
ret << stringAsVariant;
}
return ret;
}
QList<QVariant>
FileStore::ConvertBytes(const QList<QByteArray>&bytes)
{
QList<QVariant> ret;
int i;
for(i = 0; i < bytes.count(); ++i){
QVariant bytesAsVariant(bytes[i]);
ret << bytesAsVariant;
}
return ret;
}
/*
* Recursively hash the blocks of a file along
* with the meta list.
*/
void
FileStore::HashBlocks(QDataStream& s, const QString& fileName, quint32 level)
{
char data[BLOCK_SIZE];
int numRead;
QByteArray result;
// QDataStream resultStream(&result, QIODevice::Append);
int count = 0;
while((numRead = s.readRawData(data, BLOCK_SIZE)) != -1){
QByteArray hash = Hash(data, numRead);
MapBlock(hash, data, numRead, fileName, level);
result += hash;
++count;
if (numRead < BLOCK_SIZE)
break;
}
qDebug() << "Hashed " << count << " blocks";
qDebug() << "num hashes = " << (result.size() / 32);
if (result.size() % 32 != 0){
qDebug() << "Hash result is not a multiple of 32";
*((int *)NULL) = 1;
}
if (result.size() > BLOCK_SIZE){
QDataStream resultROStream(&result, QIODevice::ReadOnly);
HashBlocks(resultROStream, fileName, level+1);
}
// We need to add one more master block.
else {
QByteArray hash = Hash(result.data(), result.size());
MapBlock(hash, result.data(), result.size(), fileName, level+1);
MapMaster(hash, level+1, fileName);
qDebug() << hash << " done";
qDebug() << hash.size();
}
}
QByteArray
FileStore::Hash(const char *data, int size)
{
QCA::Hash shaHash("sha256");
shaHash.update(data, size);
QByteArray temp = shaHash.final().toByteArray();
if (temp.size() != HASH_SIZE){
qDebug() << "Unexpected hash size";
*((int *)NULL) = 1;
}
return temp;
}
quint32
FileStore::ConvertHash(const QByteArray& arr)
{
bool ok;
QString hashAsString = QCA::arrayToHex(arr);
qDebug() << hashAsString;
quint32 hash = hashAsString.toUInt(&ok, 16);
if (!ok){
qDebug() << "Couldn't convert hash to uint";
*((int *)NULL) = 1;
}
return hash;
}
void
FileStore::MapMaster(QByteArray hash,
quint32 level,
const QString& fileName)
{
QFileInfo fileInfo(fileName);
QMap<QString, QVariant> val;
val["fullname"] = fileName;
val["level"] = level;
val["block"] = hash;
fileMeta.insertMulti(fileInfo.fileName(), val);
}
void
FileStore::MapBlock(QByteArray hash,
const char *data,
int size,
const QString& fileName,
quint32 level)
{
QByteArray block(data, size);
QFileInfo fileInfo(fileName);
QMap<QString, QVariant> val;
val["fullname"] = fileName;
val["filename"] = fileInfo.fileName();
val["block"] = block;
val["level"] = level;
blockMap[hash] = val;
}
bool
FileStore::Search(const QString& query, QMap<QString, QVariant> *ret)
{
qDebug() << "FileStore: got search request for " << query;
bool isPresent = false;
QList<QString> keys = fileMeta.keys();
QList<QString> retFiles;
QList<QByteArray> retBlocks;
for(int i = 0; i < keys.count(); ++i){
if(Match(query, keys[i])){
isPresent = true;
QList<QMap<QString, QVariant> > vals = fileMeta.values(keys[i]);
qDebug() << "FileStore: found something";
for(int j = 0; j < vals.count(); ++j){
retFiles.append(keys[i]);
retBlocks.append(vals[j]["block"].toByteArray());
}
}
}
(*ret)["MatchNames"] = ConvertStrings(retFiles);
(*ret)["MatchIDs"] = ConvertBytes(retBlocks);
(*ret)["SearchReply"] = query;
return isPresent;
}
bool
FileStore::Match(const QString& query, const QString& key)
{
QStringList keyWords = query.split(" ", QString::SkipEmptyParts);
for(int i = 0; i < keyWords.count(); ++i)
if (key.contains(keyWords[i]))
return true;
return false;
}
bool
FileStore::ReturnBlock(QByteArray index, QByteArray *ptr, QByteArray *indexPtr)
{
if (!blockMap.contains(index)){
return false;
}
else{
QMap<QString, QVariant> value = blockMap[index];
*ptr = value["block"].toByteArray();
*indexPtr = index;
return true;
}
}