-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCompoundFile.cpp
479 lines (434 loc) · 13.5 KB
/
CompoundFile.cpp
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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
#include "CompoundFile.h"
#include <iostream>
using namespace CompoundFile;
QCompoundFile::QCompoundFile():
FileName(""),
FATs(0),
DirectoryEntries(0),
MiniFATs(0),
DIFATs(0)
{
}
QCompoundFile::QCompoundFile(QString file):
FileName(file),
FATs(0),
DirectoryEntries(0),
MiniFATs(0),
DIFATs(0)
{
this->Open(file);
}
QCompoundFile::~QCompoundFile()
{
this->Close();
}
bool QCompoundFile::Open(QString file)
{
FileName=file;
FileHandle.setFileName(FileName);
FileHandle.open(QIODevice::ReadOnly);
this->ReadHeader();
this->LoadFatSectorIds();
this->LoadFAT();
this->LoadMiniFAT();
this->LoadDirectoryEntries();
return true;
}
void QCompoundFile::Close( )
{
if(FileHandle.isOpen()) FileHandle.close();
}
RESULTCODE QCompoundFile::ReadHeader()
{
QDataStream _stream(&FileHandle);
_stream.device()->seek(0);
RESULTCODE code=_header.FromStream(_stream);
if(code!=SUCCESS) return code;
BytesPerSector = (1 << _header.SectorShift); //
BytesPerMiniSector = (1<< _header.MiniSectorShift); //
if(BytesPerSector%4 || BytesPerSector%128) return SECTOR_NOT_SUPPORT;
SECTIDsPerSector = BytesPerSector/4;
DirectoryEntriesPerSector = BytesPerSector/128;
if(!( _header.ByteOrder == 0xFFFE || _header.ByteOrder == 0xFEFF)) return BYTEORDER_NOT_SUPPORT;
ByteOrder = _header.ByteOrder== 0xFFFE?QDataStream::LittleEndian:QDataStream::BigEndian;
return SUCCESS;
}
/*
#ifdef _DEBUGCOMPDOC
void QCompoundFile::PRINT_HEADER()
{
QFile _f("C:/doc/header.txt");
_f.open(QIODevice::WriteOnly);
QTextStream qs(&_f);
//qs.setByteOrder(ByteOrder);
qs << _header.HeaderSignature <<'\n'
<< _header.HeaderCLSID <<'\n'
<< _header.MinorVersion <<'\n'
<< _header.MajorVersion <<'\n'
<< _header.ByteOrder <<'\n'
<< _header.SectorShift <<'\n'
<< _header.MiniSectorShift <<'\n'
<< _header.Reserved2Bytes1st <<'\n'
<< _header.Reserved4Bytes2nd <<'\n'
<< _header.NumberofDirectorySectors <<'\n'
<< _header.NumberofFATSectors <<'\n'
<< _header.FirstDirectorySectorLocation <<'\n'
<< _header.TransactionSignatureNumber <<'\n'
<< _header.MiniStreamCutoffSize <<'\n'
<< _header.FirstMiniFATSectorLocation <<'\n'
<< _header.NumberofMiniFATSectors <<'\n'
<< _header.FirstDIFATSectorLocation <<'\n'
<< _header.NumberofDIFATSectors <<'\n';
for(int i=0;i<109;i++)
qs << _header.DIFATinHeader[i] <<'\n';
}
void QCompoundFile::PRINT_SECTOR()
{
QFile _f("C:/doc/sector0.txt");
_f.open(QIODevice::WriteOnly);
QDataStream qs(&_f);
QByteArray _bytes;
//ReadOneSector(0,_bytes);
ReadSectorChains(_header.FirstDirectorySectorLocation,_bytes);
qs.writeRawData(_bytes.data(),_bytes.count());
}
void QCompoundFile::PRINT_FATSECTID()
{
QFile _f("C:/doc/difs.txt");
_f.open(QIODevice::WriteOnly);
QTextStream qs(&_f);
// qs.setByteOrder(ByteOrder);
for(int i=0;i<DIFATs.count();i++)
qs << DIFATs[i]<<'\n';
qs << "number of difs:" << DIFATs.count();
}
void QCompoundFile::PRINT_FAT()
{
QFile _f("C:/doc/fat.txt");
_f.open(QIODevice::WriteOnly);
QTextStream qs(&_f);
//qs.setByteOrder(ByteOrder);
qint32 p;
//p=_header.FirstDirectorySectorLocation;
for(int i=0;i<FATs.count(); i++)
{
p=FATs[i];qs <<i<<":"<< p << '\n';
}
}
void QCompoundFile::PRINT_MINIFAT()
{
QFile _f("C:/doc/minifat.txt");
_f.open(QIODevice::WriteOnly);
QDataStream qs(&_f);
qs.setByteOrder(ByteOrder);
for(int i=0;i<MiniFATs.count(); i++)
qs << FATs[i];
}
void QCompoundFile::PRINT_DIRENTRIES()
{
QFile _f("C:/doc/de.txt");
_f.open(QIODevice::WriteOnly);
QTextStream qs(&_f);
//qs.setByteOrder(ByteOrder);
for(int i=0;i<DirectoryEntries.count(); i++)
{
qs << DirectoryEntries[i].DirectoryEntryName
<< '\n'
<< DirectoryEntries[i].DirectoryEntryNameLength
<< '\n'
<< DirectoryEntries[i].ObjectType
<< '\n'
<< DirectoryEntries[i].StartingSectorLocation
<< '\n'
<< DirectoryEntries[i].StreamSize
<< '\n'
<< DirectoryEntries[i].Path
<< "\n===========================\n";
}
}
void QCompoundFile::PRINT_DATA()
{
QFile _f("C:/doc/data.txt");
_f.open(QIODevice::WriteOnly);
QTextStream qs(&_f);
QByteArray data;
ReadStream(QString::fromAscii("Workbook"),QString::fromAscii("/"),data);
qs << data;
}
#endif
*/
QCompoundFile::Header::Header():
HeaderSignature(OLE2MAGICTAG),
HeaderCLSID(0),
MinorVersion(0x003E),
MajorVersion(0x0003),
ByteOrder(0xFFFE),
SectorShift(9),
MiniSectorShift(6),
Reserved2Bytes1st(0),
Reserved4Bytes2nd(0),
NumberofDirectorySectors(0),
NumberofFATSectors(0),
FirstDirectorySectorLocation(ENDOFCHAIN),
TransactionSignatureNumber(0),
MiniStreamCutoffSize(0x1000),
FirstMiniFATSectorLocation(ENDOFCHAIN),
NumberofMiniFATSectors(0),
FirstDIFATSectorLocation(ENDOFCHAIN),
NumberofDIFATSectors(0)
{
DIFATinHeader.fill(FREESECT,109);
}
RESULTCODE QCompoundFile::Header::FromStream(QDataStream& buf)
{
buf.setByteOrder(QDataStream::LittleEndian);
buf >> HeaderSignature
>> HeaderCLSID
>> MinorVersion
>> MajorVersion
>> ByteOrder
>> SectorShift
>> MiniSectorShift
>> Reserved2Bytes1st
>> Reserved4Bytes2nd
>> NumberofDirectorySectors
>> NumberofFATSectors
>> FirstDirectorySectorLocation
>> TransactionSignatureNumber
>> MiniStreamCutoffSize
>> FirstMiniFATSectorLocation
>> NumberofMiniFATSectors
>> FirstDIFATSectorLocation
>> NumberofDIFATSectors;
for(int i=0;i<109;i++)
buf >> DIFATinHeader[i];
if(HeaderSignature!=OLE2MAGICTAG) return NOT_COMPOUND_FILE;
return SUCCESS;
}
QCompoundFile::DirectoryEntry::DirectoryEntry():
DirectoryEntryName(""),
DirectoryEntryNameLength(0),
ObjectType(STGTY_STORAGE),
ColorFlag(DE_BLACK),
LeftSiblingID(-1),
RightSiblingID(-1),
ChildID(-1),
DirectoryEntryCLSID(0),
StateBits(0),
CreationTime(0),
ModifiedTime(0),
StartingSectorLocation(ENDOFCHAIN),
StreamSize(0),
Path("")
{
}
RESULTCODE QCompoundFile::DirectoryEntry::FromStream(QDataStream& buf)
{
quint16 qc;
for(int i=0;i<32;i++)
{
buf >> qc;
DirectoryEntryName.append(qc);
}
buf >> DirectoryEntryNameLength
>> ObjectType
>> ColorFlag
>> LeftSiblingID
>> RightSiblingID
>> ChildID
>> DirectoryEntryCLSID
>> StateBits
>> CreationTime
>> ModifiedTime
>> StartingSectorLocation
>> StreamSize;
//>> _dptPropType;
DirectoryEntryName=DirectoryEntryName.left((DirectoryEntryNameLength>>1)-1);
return SUCCESS;
}
//Read a single Sector
bool QCompoundFile::ReadOneSector(qint32 sectID, QByteArray& bytes)
{
FileHandle.seek((1 + sectID) * BytesPerSector);
bytes=FileHandle.read(BytesPerSector);
return true;
}
// read a chains of Sectors
int QCompoundFile::ReadSectorChains(qint32 startSectID,QByteArray& bytes)
{
qint32 next=startSectID;
QByteArray tmparray;
int count=0;
while(next >=0)
{
ReadOneSector(next,tmparray);
bytes+=tmparray;
count++;
next = FATs[next];
}
return count*BytesPerSector;
}
int QCompoundFile::ReadSectorChains(qint32 startSectID,QFile& file)
{
QDataStream qs(&file);
qs.setByteOrder(ByteOrder);
qint32 next=startSectID;
QByteArray tmparray;
int count=0;
while(next >=0)
{
ReadOneSector(next,tmparray);
qs.writeRawData(tmparray.data(),tmparray.count());
count++;
next = FATs[next];
}
return count*BytesPerSector;
}
// load Fat Sector Ids both in header and extend Difs
bool QCompoundFile::LoadFatSectorIds()
{
for(int i=0;i<109;i++)
{
if(FREESECT == _header.DIFATinHeader[i]) break;
DIFATs.push_back(_header.DIFATinHeader[i]);
}
qint32 next = _header.FirstDIFATSectorLocation; //can't use quint32,if,then compare not working
qint32 id;
while(next >= 0) //in the specification it says,dif chain teminated by ENDOFCHAIN,but some software make FREESECT
{
QByteArray difArray;
ReadOneSector(next,difArray);
QDataStream qs(difArray);
qs.setByteOrder(ByteOrder);
for(int i=0;i<SECTIDsPerSector-1;i++)
{
qs >> id;
if(id < 0) break;
DIFATs.push_back(id);
}
qs>>next; // need to test with very big file
}
return true;
}
bool QCompoundFile::LoadFAT()
{
QByteArray fatArray;
for(int i=0;i<DIFATs.count();i++)
{
fatArray.clear();
ReadOneSector(DIFATs[i],fatArray);
QDataStream qs(fatArray);
qs.setByteOrder(ByteOrder);
qint32 id;
for(int sec=0;sec<SECTIDsPerSector;sec++)
{
qs >> id;
FATs.push_back(id);
}
}
return true;
}
bool QCompoundFile::LoadMiniFAT()
{
QByteArray minifatArray;
ReadSectorChains(_header.FirstMiniFATSectorLocation,minifatArray);
QDataStream qs(minifatArray);
qs.setByteOrder(ByteOrder);
quint32 id;
while(!qs.atEnd())
{
qs >> id;
MiniFATs.push_back(id);
}
return true;
}
bool QCompoundFile::LoadDirectoryEntries()
{
QByteArray dirSectors;
ReadSectorChains(_header.FirstDirectorySectorLocation,dirSectors);
LoadOneDirectoryEntry(0,"",dirSectors);
return true;
}
bool QCompoundFile::LoadOneDirectoryEntry(qint32 did,QString path,QByteArray sectors)
{
QByteArray tArray;
tArray = sectors.mid(did*128,128);
QDataStream qs(tArray);
qs.setByteOrder(ByteOrder);
DirectoryEntry de;
de.FromStream(qs);
de.DID=did;
de.Path=path;
if(de.ObjectType!=STGTY_INVALID)
{
DirectoryEntries.append(de);
}
if(de.LeftSiblingID>0) LoadOneDirectoryEntry(de.LeftSiblingID,path,sectors);
if(de.ChildID>0)
{
if(did == 0)
LoadOneDirectoryEntry(de.ChildID,"/",sectors);
else
{
QString tpath=path;
tpath.append(de.DirectoryEntryName);
tpath.append("/");
LoadOneDirectoryEntry(de.ChildID,tpath,sectors);
}
}
if(de.RightSiblingID>0) LoadOneDirectoryEntry(de.RightSiblingID,path,sectors);
return true;
}
bool QCompoundFile::ReadStream(QString streamName,QString storage, QByteArray& data)
{
DirectoryEntry* de = NULL;
for(int i=0;i<DirectoryEntries.count();i++)
{
if( DirectoryEntries[i].DirectoryEntryName.compare(streamName) == 0 && DirectoryEntries[i].Path == storage )
{de = &DirectoryEntries[i]; break;}
}
if(de!=NULL)
{
if(de->StreamSize>BytesPerMiniSector)
{
if(de->StreamSize!= ReadSectorChains(de->StartingSectorLocation,data))
{
std::cout << "Incorrect data size!.....";
return false;
}
}
else
{
//to be implemented
}
}
else
{
//to be implemented
}
return true;
}
bool QCompoundFile::ReadStream(QString streamName,QString storage,QFile& tFile)
{
DirectoryEntry* de = NULL;
for(int i=0;i<DirectoryEntries.count();i++)
{
if( DirectoryEntries[i].DirectoryEntryName.compare(streamName) == 0 && DirectoryEntries[i].Path == storage )
de = &DirectoryEntries[i];
}
if(de!=NULL)
{
if(de->StreamSize>BytesPerMiniSector)
{
ReadSectorChains(de->StartingSectorLocation,tFile);
}
else
{
//to be implemented
}
}
else
{
}
return true;
}