sl@0
|
1 |
// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#ifndef __EZLIB_GZIP_H__
|
sl@0
|
17 |
#define __EZLIB_GZIP_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#include "OldEZDecompressor.h"
|
sl@0
|
20 |
#include "OldEZCompressor.h"
|
sl@0
|
21 |
#include "OldEZFilebuffer.h"
|
sl@0
|
22 |
|
sl@0
|
23 |
|
sl@0
|
24 |
namespace TOLDEZLIB
|
sl@0
|
25 |
{
|
sl@0
|
26 |
|
sl@0
|
27 |
/**
|
sl@0
|
28 |
The TEZGZipHeader class encapsulates a zip file header, which is written to the start of the zip
|
sl@0
|
29 |
file to store various settings of the archive
|
sl@0
|
30 |
|
sl@0
|
31 |
@publishedAll
|
sl@0
|
32 |
@released
|
sl@0
|
33 |
*/
|
sl@0
|
34 |
class TEZGZipHeader
|
sl@0
|
35 |
{
|
sl@0
|
36 |
|
sl@0
|
37 |
public:
|
sl@0
|
38 |
IMPORT_C TEZGZipHeader();
|
sl@0
|
39 |
IMPORT_C ~TEZGZipHeader();
|
sl@0
|
40 |
|
sl@0
|
41 |
public:
|
sl@0
|
42 |
TUint8 iId1;
|
sl@0
|
43 |
TUint8 iId2;
|
sl@0
|
44 |
TUint8 iCompressionMethod;
|
sl@0
|
45 |
TUint8 iFlags;
|
sl@0
|
46 |
TInt32 iTime;
|
sl@0
|
47 |
TUint8 iExtraFlags;
|
sl@0
|
48 |
TUint8 iOs;
|
sl@0
|
49 |
TInt16 iXlen;
|
sl@0
|
50 |
HBufC8* iExtra;
|
sl@0
|
51 |
HBufC8* iFname;
|
sl@0
|
52 |
HBufC8* iComment;
|
sl@0
|
53 |
TInt16 iCrc;
|
sl@0
|
54 |
};
|
sl@0
|
55 |
|
sl@0
|
56 |
/**
|
sl@0
|
57 |
The TEZGZipTrailer class encapsulates a zip file trailer, which uses a CRC (cyclic redundancy check) to
|
sl@0
|
58 |
confirm the validity of the unpacked archive
|
sl@0
|
59 |
|
sl@0
|
60 |
@publishedAll
|
sl@0
|
61 |
@released
|
sl@0
|
62 |
*/
|
sl@0
|
63 |
class TEZGZipTrailer
|
sl@0
|
64 |
{
|
sl@0
|
65 |
public:
|
sl@0
|
66 |
IMPORT_C TEZGZipTrailer();
|
sl@0
|
67 |
IMPORT_C TEZGZipTrailer(TInt32 aCrc, TInt32 aSize);
|
sl@0
|
68 |
public:
|
sl@0
|
69 |
TInt32 iCrc32;
|
sl@0
|
70 |
TInt32 iSize;
|
sl@0
|
71 |
};
|
sl@0
|
72 |
|
sl@0
|
73 |
/**
|
sl@0
|
74 |
The EZGZipFile class handles writing / reading of headers and trailers to / from zip files
|
sl@0
|
75 |
|
sl@0
|
76 |
@publishedAll
|
sl@0
|
77 |
@released
|
sl@0
|
78 |
*/
|
sl@0
|
79 |
class EZGZipFile
|
sl@0
|
80 |
{
|
sl@0
|
81 |
public:
|
sl@0
|
82 |
|
sl@0
|
83 |
/** Zip file error codes */
|
sl@0
|
84 |
enum { ENotGZipFile = KEZlibErrNotGZipFile,
|
sl@0
|
85 |
EInvalidCompressionMethod = KEZlibErrInvalidCompression,
|
sl@0
|
86 |
EBadGZipHeader= KEZlibErrBadGZipHeader,
|
sl@0
|
87 |
EBadGZipTrailer = KEZlibErrBadGZipTrailer,
|
sl@0
|
88 |
EBadGZipCrc = KEZlibErrBadGZipCrc };
|
sl@0
|
89 |
/** Flags to determine which part of the header / trailer is being written */
|
sl@0
|
90 |
enum { EFText = 0, EFHcrc = 1, EFExtra = 2, EFName = 3, EFComment = 4};
|
sl@0
|
91 |
|
sl@0
|
92 |
public:
|
sl@0
|
93 |
IMPORT_C static void ReadHeaderL(RFile &aFile, TEZGZipHeader &aHeader);
|
sl@0
|
94 |
IMPORT_C static void WriteHeaderL(RFile &aFile, TEZGZipHeader &aHeader);
|
sl@0
|
95 |
IMPORT_C static void ReadTrailerL(RFile &aFile, TEZGZipTrailer &aTrailer);
|
sl@0
|
96 |
IMPORT_C static void WriteTrailerL(RFile &aFile, TEZGZipTrailer &aTrailer);
|
sl@0
|
97 |
IMPORT_C static void LocateAndReadTrailerL(RFs &aRfs, const TDesC &aFname, TEZGZipTrailer &aTrailer);
|
sl@0
|
98 |
IMPORT_C static TBool IsGzipFile(RFs &aRfs, const TDesC &aFname);
|
sl@0
|
99 |
IMPORT_C static TBool IsGzipFileL(RFs &aRfs, const TDesC &aFname);
|
sl@0
|
100 |
|
sl@0
|
101 |
private:
|
sl@0
|
102 |
static void ReadStringIntoDescriptorL(RFile &aFile, HBufC8 **aDes);
|
sl@0
|
103 |
|
sl@0
|
104 |
public:
|
sl@0
|
105 |
/** First of the header ID pair */
|
sl@0
|
106 |
static const TUint8 ID1;
|
sl@0
|
107 |
/** Second of the header ID pair */
|
sl@0
|
108 |
static const TUint8 ID2;
|
sl@0
|
109 |
};
|
sl@0
|
110 |
|
sl@0
|
111 |
/**
|
sl@0
|
112 |
The CEZFileToGzipBM manages the input and output buffers for compression
|
sl@0
|
113 |
|
sl@0
|
114 |
@publishedAll
|
sl@0
|
115 |
@released
|
sl@0
|
116 |
*/
|
sl@0
|
117 |
NONSHARABLE_CLASS(CEZFileToGzipBM) : public CEZFileBufferManager
|
sl@0
|
118 |
{
|
sl@0
|
119 |
public:
|
sl@0
|
120 |
|
sl@0
|
121 |
static CEZFileToGzipBM* NewLC(RFile &aInput, RFile &aOutput, TInt aBufferSize);
|
sl@0
|
122 |
static CEZFileToGzipBM* NewL(RFile &aInput, RFile &aOutput, TInt aBufferSize);
|
sl@0
|
123 |
|
sl@0
|
124 |
/**
|
sl@0
|
125 |
Initialise the stream with input and output buffers and starts reading
|
sl@0
|
126 |
|
sl@0
|
127 |
@param aZStream the stream to initialise
|
sl@0
|
128 |
*/
|
sl@0
|
129 |
virtual void InitializeL(CEZZStream &aZStream);
|
sl@0
|
130 |
|
sl@0
|
131 |
/**
|
sl@0
|
132 |
Set the stream's input buffer and starts reading
|
sl@0
|
133 |
|
sl@0
|
134 |
@param aZStream the steam whose input buffer to set
|
sl@0
|
135 |
*/
|
sl@0
|
136 |
virtual void NeedInputL(CEZZStream &aZStream);
|
sl@0
|
137 |
|
sl@0
|
138 |
/**
|
sl@0
|
139 |
Return the CRC - used for checking validity of the archive
|
sl@0
|
140 |
|
sl@0
|
141 |
@return the CRC value
|
sl@0
|
142 |
*/
|
sl@0
|
143 |
TInt32 Crc() const { return iCrc; } ;
|
sl@0
|
144 |
|
sl@0
|
145 |
private:
|
sl@0
|
146 |
CEZFileToGzipBM(RFile &aInput, RFile &aOutput);
|
sl@0
|
147 |
private:
|
sl@0
|
148 |
TInt32 iCrc;
|
sl@0
|
149 |
};
|
sl@0
|
150 |
|
sl@0
|
151 |
/**
|
sl@0
|
152 |
The CEZGzipToFileBM class manages the input and output buffers for de-compression
|
sl@0
|
153 |
|
sl@0
|
154 |
@publishedAll
|
sl@0
|
155 |
@released
|
sl@0
|
156 |
*/
|
sl@0
|
157 |
NONSHARABLE_CLASS(CEZGzipToFileBM) : public CEZFileBufferManager
|
sl@0
|
158 |
{
|
sl@0
|
159 |
public:
|
sl@0
|
160 |
|
sl@0
|
161 |
static CEZGzipToFileBM* NewLC(RFile &aInput, RFile &aOutput, TInt aBufferSize);
|
sl@0
|
162 |
static CEZGzipToFileBM* NewL(RFile &aInput, RFile &aOutput, TInt aBufferSize);
|
sl@0
|
163 |
|
sl@0
|
164 |
/**
|
sl@0
|
165 |
Finish writing to the stream
|
sl@0
|
166 |
|
sl@0
|
167 |
@param aZStream the stream to complete writing to
|
sl@0
|
168 |
*/
|
sl@0
|
169 |
virtual void FinalizeL(CEZZStream &aZStream);
|
sl@0
|
170 |
|
sl@0
|
171 |
/**
|
sl@0
|
172 |
Set the stream's output buffer and start writing
|
sl@0
|
173 |
|
sl@0
|
174 |
@param aZStream the steam whose output buffer to set
|
sl@0
|
175 |
*/
|
sl@0
|
176 |
virtual void NeedOutputL(CEZZStream &aZStream);
|
sl@0
|
177 |
|
sl@0
|
178 |
/**
|
sl@0
|
179 |
Return the CRC - used for checking validity of the archive
|
sl@0
|
180 |
|
sl@0
|
181 |
@return the CRC value
|
sl@0
|
182 |
*/
|
sl@0
|
183 |
TInt32 Crc() const { return iCrc; } ;
|
sl@0
|
184 |
|
sl@0
|
185 |
private:
|
sl@0
|
186 |
CEZGzipToFileBM(RFile &aInput, RFile &aOutput);
|
sl@0
|
187 |
private:
|
sl@0
|
188 |
TInt32 iCrc;
|
sl@0
|
189 |
};
|
sl@0
|
190 |
|
sl@0
|
191 |
|
sl@0
|
192 |
/**
|
sl@0
|
193 |
A CEZGZipToFile object allows de-compression of a compressed file.
|
sl@0
|
194 |
The name of the compressed file is passed into the constructor along with a target file
|
sl@0
|
195 |
to contain the uncompressed data. The file is uncompressed by calling the InflateL() function.
|
sl@0
|
196 |
|
sl@0
|
197 |
@publishedAll
|
sl@0
|
198 |
@released
|
sl@0
|
199 |
*/
|
sl@0
|
200 |
class CEZGZipToFile : public CBase
|
sl@0
|
201 |
{
|
sl@0
|
202 |
public:
|
sl@0
|
203 |
~CEZGZipToFile();
|
sl@0
|
204 |
|
sl@0
|
205 |
IMPORT_C static CEZGZipToFile* NewLC(RFs &aRfs, const TDesC &aGzFileName, RFile &aOutput, TInt aBufferSize = 0x8000);
|
sl@0
|
206 |
IMPORT_C static CEZGZipToFile* NewL(RFs &aRfs, const TDesC &aGzFileName, RFile &aOutput, TInt aBufferSize = 0x8000);
|
sl@0
|
207 |
|
sl@0
|
208 |
IMPORT_C void ResetL(RFs &aRfs, const TDesC &aGzFileName, RFile &aOutput, TInt aBufferSize = 0x8000);
|
sl@0
|
209 |
|
sl@0
|
210 |
IMPORT_C TBool InflateL();
|
sl@0
|
211 |
|
sl@0
|
212 |
private:
|
sl@0
|
213 |
CEZGZipToFile();
|
sl@0
|
214 |
void ConstructL(RFs &aRfs, const TDesC &aGzFileName, RFile &aOutput, TInt aBufferSize);
|
sl@0
|
215 |
void InitialiseBufManL(RFs &aRfs, const TDesC &aGzFileName, RFile &aOutput, TInt aBufferSize);
|
sl@0
|
216 |
private:
|
sl@0
|
217 |
CEZDecompressor *iDecompressor;
|
sl@0
|
218 |
CEZGzipToFileBM *iBufferManager;
|
sl@0
|
219 |
TEZGZipTrailer iTrailer;
|
sl@0
|
220 |
RFile iGZipFile;
|
sl@0
|
221 |
TEZGZipHeader iHeader;
|
sl@0
|
222 |
};
|
sl@0
|
223 |
|
sl@0
|
224 |
/**
|
sl@0
|
225 |
A CEZFileToGZip object allows compression of an uncompressed file to a zip file.
|
sl@0
|
226 |
The uncompressed source file is passed into the constructor along with the name of the target
|
sl@0
|
227 |
zip file. The file is compressed by calling the DeflateL() function.
|
sl@0
|
228 |
|
sl@0
|
229 |
@publishedAll
|
sl@0
|
230 |
@released
|
sl@0
|
231 |
*/
|
sl@0
|
232 |
class CEZFileToGZip : public CBase
|
sl@0
|
233 |
{
|
sl@0
|
234 |
public:
|
sl@0
|
235 |
~CEZFileToGZip();
|
sl@0
|
236 |
|
sl@0
|
237 |
IMPORT_C static CEZFileToGZip* NewLC(RFs &aRfs, const TDesC &aGzFileName, RFile &aInput, TInt aBufferSize = 0x8000);
|
sl@0
|
238 |
IMPORT_C static CEZFileToGZip* NewL(RFs &aRfs, const TDesC &aGzFileName, RFile &aInput, TInt aBufferSize = 0x8000);
|
sl@0
|
239 |
|
sl@0
|
240 |
IMPORT_C void ResetL(RFs &aRfs, const TDesC &aGzFileName, RFile &aInput, TInt aBufferSize = 0x8000);
|
sl@0
|
241 |
|
sl@0
|
242 |
IMPORT_C TBool DeflateL();
|
sl@0
|
243 |
|
sl@0
|
244 |
private:
|
sl@0
|
245 |
CEZFileToGZip();
|
sl@0
|
246 |
void ConstructL(RFs &aRfs, const TDesC &aGzFileName, RFile &aInput, TInt aBufferSize);
|
sl@0
|
247 |
void InitialiseBufManL(RFs &aRfs, const TDesC &aGzFileName, RFile &aInput, TInt aBufferSize);
|
sl@0
|
248 |
private:
|
sl@0
|
249 |
CEZCompressor *iCompressor;
|
sl@0
|
250 |
CEZFileToGzipBM *iBufferManager;
|
sl@0
|
251 |
TInt iUncompressedDataSize;
|
sl@0
|
252 |
RFile iGZipFile;
|
sl@0
|
253 |
TEZGZipHeader iHeader;
|
sl@0
|
254 |
};
|
sl@0
|
255 |
|
sl@0
|
256 |
}// namespace TOLDEZLIB
|
sl@0
|
257 |
#endif
|