-
Notifications
You must be signed in to change notification settings - Fork 51
/
zipreader.cpp
131 lines (109 loc) · 3.61 KB
/
zipreader.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
/** Copyright (c) 2013, Sean Kasun */
#include <zlib.h>
#include "zipreader.h"
ZipReader::ZipReader(const QString filename)
: f(filename)
{}
bool ZipReader::open()
{
if (!f.open(QIODevice::ReadOnly))
return false;
// locate end of central directory record
qint64 ziplen = f.size();
qint64 maxECDlen = 0xffff + 22; // max comment len + ECD
if (maxECDlen > ziplen) // zip is shorter?
maxECDlen = ziplen;
f.seek(ziplen - maxECDlen); // ECD must be after this
QByteArray data = f.read(maxECDlen);
const quint8 *p = (const quint8 *)data.constData();
bool found = false;
// now scan this data for the ECD signature
for (qint64 i = 0; i < maxECDlen - 20; i++, p++) {
if (p[0] == 0x50 && p[1] == 0x4b && p[2] == 0x05 && p[3] == 0x06) {
found = true;
break;
}
}
if (!found) {
// no ecd found, probably not a zip
f.close();
return false;
}
// awesome, now to find the central directory
qint32 cdnum = p[0xa] | (p[0xb] << 8);
qint32 cdsize = p[0xc] | (p[0xd] << 8) | (p[0xe] << 16) | (p[0xf] << 24);
qint64 cdoffset = p[0x10] | (p[0x11] << 8) | (p[0x12] << 16) |
(p[0x13] << 24);
f.seek(cdoffset);
data = f.read(cdsize);
p = (const quint8 *)data.constData();
// loop through all the files
for (int i = 0; i < cdnum; i++) {
if (p[0] != 0x50 || p[1] != 0x4b || p[2] != 0x01 || p[3] != 0x02) {
// not a central file header?
f.close(); // screw this zip
return false;
}
qint16 namelen = p[0x1c] | (p[0x1d] << 8);
qint16 extralen = p[0x1e] | (p[0x1f] << 8);
qint16 commentlen = p[0x20] | (p[0x21] << 8);
QString key = QString::fromUtf8(reinterpret_cast<const char *>(p + 0x2e),
namelen);
ZipFileHeader &zfh = files[key];
zfh.compressed = p[0x14] | (p[0x15] << 8) | (p[0x16] << 16) |
(p[0x17] << 24);
zfh.uncompressed = p[0x18] | (p[0x19] << 8) | (p[0x1a] << 16) |
(p[0x1b] << 24);
zfh.compression = p[0xa] | (p[0xb] << 8);
zfh.offset = p[0x2a] | (p[0x2b] << 8) | (p[0x2c] << 16) | (p[0x2d] << 24);
p += 0x2e + namelen + extralen + commentlen; // next file
}
return true;
}
QByteArray ZipReader::get(const QString filename)
{
if (!files.contains(filename))
return QByteArray();
ZipFileHeader &zfh = files[filename];
if (zfh.compression != 0 && zfh.compression != 8) // unsupported compression
return QByteArray();
f.seek(zfh.offset);
QByteArray lfh = f.read(0x1e); // read local file header
const quint8 *p = (const quint8 *)lfh.constData();
// make sure we got a local file header
if (p[0] != 0x50 || p[1] != 0x4b || p[2] != 0x03 || p[3] != 0x04)
return QByteArray();
qint32 namelen = p[0x1a] | (p[0x1b] << 8);
qint32 extralen = p[0x1c] | (p[0x1d] << 8);
f.seek(zfh.offset + namelen + extralen + 0x1e); // skip header
QByteArray comp = f.read(zfh.compressed);
if (zfh.compression == 0) // no compression
return comp;
QByteArray result;
z_stream strm;
static const int CHUNK_SIZE = 8192;
char out[CHUNK_SIZE];
strm.zalloc = Z_NULL;
strm.zfree = Z_NULL;
strm.opaque = Z_NULL;
strm.avail_in = comp.size();
strm.next_in = reinterpret_cast<Bytef *>(comp.data());
inflateInit2(&strm, -MAX_WBITS);
do {
strm.avail_out = CHUNK_SIZE;
strm.next_out = reinterpret_cast<Bytef *>(out);
inflate(&strm, Z_NO_FLUSH);
result.append(out, CHUNK_SIZE - strm.avail_out);
} while (strm.avail_out == 0);
inflateEnd(&strm);
return result;
}
QStringList ZipReader::getFileList() const
{
return QStringList(files.keys());
}
void ZipReader::close()
{
files.clear(); // erase all headers
f.close();
}