First public contribution.
1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 #include <ezdecompressor.h>
20 #include <ezcompressor.h>
21 #include <ezfilebuffer.h>
24 The TEZGZipHeader class encapsulates a zip file header, which is written to the start of the zip
25 file to store various settings of the archive
34 IMPORT_C TEZGZipHeader();
35 IMPORT_C ~TEZGZipHeader();
40 TUint8 iCompressionMethod;
53 The TEZGZipTrailer class encapsulates a zip file trailer, which uses a CRC (cyclic redundancy check) to
54 confirm the validity of the unpacked archive
62 IMPORT_C TEZGZipTrailer();
63 IMPORT_C TEZGZipTrailer(TInt32 aCrc, TInt32 aSize);
70 The EZGZipFile class handles writing / reading of headers and trailers to / from zip files
79 /** Zip file error codes */
80 enum { ENotGZipFile = KEZlibErrNotGZipFile,
81 EInvalidCompressionMethod = KEZlibErrInvalidCompression,
82 EBadGZipHeader= KEZlibErrBadGZipHeader,
83 EBadGZipTrailer = KEZlibErrBadGZipTrailer,
84 EBadGZipCrc = KEZlibErrBadGZipCrc };
85 /** Flags to determine which part of the header / trailer is being written */
86 enum { EFText = 0, EFHcrc = 1, EFExtra = 2, EFName = 3, EFComment = 4};
89 IMPORT_C static void ReadHeaderL(RFile &aFile, TEZGZipHeader &aHeader);
90 IMPORT_C static void WriteHeaderL(RFile &aFile, TEZGZipHeader &aHeader);
91 IMPORT_C static void ReadTrailerL(RFile &aFile, TEZGZipTrailer &aTrailer);
92 IMPORT_C static void WriteTrailerL(RFile &aFile, TEZGZipTrailer &aTrailer);
93 IMPORT_C static void LocateAndReadTrailerL(RFs &aRfs, const TDesC &aFname, TEZGZipTrailer &aTrailer);
94 IMPORT_C static TBool IsGzipFile(RFs &aRfs, const TDesC &aFname);
95 IMPORT_C static TBool IsGzipFileL(RFs &aRfs, const TDesC &aFname);
98 static void ReadStringIntoDescriptorL(RFile &aFile, HBufC8 **aDes);
101 /** First of the header ID pair */
102 static const TUint8 ID1;
103 /** Second of the header ID pair */
104 static const TUint8 ID2;
108 The CEZFileToGzipBM manages the input and output buffers for compression
113 NONSHARABLE_CLASS(CEZFileToGzipBM) : public CEZFileBufferManager
117 static CEZFileToGzipBM* NewLC(RFile &aInput, RFile &aOutput, TInt aBufferSize);
118 static CEZFileToGzipBM* NewL(RFile &aInput, RFile &aOutput, TInt aBufferSize);
121 Initialise the stream with input and output buffers and starts reading
123 @param aZStream the stream to initialise
125 virtual void InitializeL(CEZZStream &aZStream);
128 Set the stream's input buffer and starts reading
130 @param aZStream the steam whose input buffer to set
132 virtual void NeedInputL(CEZZStream &aZStream);
135 Return the CRC - used for checking validity of the archive
137 @return the CRC value
139 TInt32 Crc() const { return iCrc; } ;
142 CEZFileToGzipBM(RFile &aInput, RFile &aOutput);
148 The CEZGzipToFileBM class manages the input and output buffers for de-compression
153 NONSHARABLE_CLASS(CEZGzipToFileBM) : public CEZFileBufferManager
157 static CEZGzipToFileBM* NewLC(RFile &aInput, RFile &aOutput, TInt aBufferSize);
158 static CEZGzipToFileBM* NewL(RFile &aInput, RFile &aOutput, TInt aBufferSize);
161 Finish writing to the stream
163 @param aZStream the stream to complete writing to
165 virtual void FinalizeL(CEZZStream &aZStream);
168 Set the stream's output buffer and start writing
170 @param aZStream the steam whose output buffer to set
172 virtual void NeedOutputL(CEZZStream &aZStream);
175 Return the CRC - used for checking validity of the archive
177 @return the CRC value
179 TInt32 Crc() const { return iCrc; } ;
182 CEZGzipToFileBM(RFile &aInput, RFile &aOutput);
189 A CEZGZipToFile object allows de-compression of a compressed file.
190 The name of the compressed file is passed into the constructor along with a target file
191 to contain the uncompressed data. The file is uncompressed by calling the InflateL() function.
196 class CEZGZipToFile : public CBase
201 IMPORT_C static CEZGZipToFile* NewLC(RFs &aRfs, const TDesC &aGzFileName, RFile &aOutput, TInt aBufferSize = 0x8000);
202 IMPORT_C static CEZGZipToFile* NewL(RFs &aRfs, const TDesC &aGzFileName, RFile &aOutput, TInt aBufferSize = 0x8000);
204 IMPORT_C void ResetL(RFs &aRfs, const TDesC &aGzFileName, RFile &aOutput, TInt aBufferSize = 0x8000);
206 IMPORT_C TBool InflateL();
210 void ConstructL(RFs &aRfs, const TDesC &aGzFileName, RFile &aOutput, TInt aBufferSize);
211 void InitialiseBufManL(RFs &aRfs, const TDesC &aGzFileName, RFile &aOutput, TInt aBufferSize);
213 CEZDecompressor *iDecompressor;
214 CEZGzipToFileBM *iBufferManager;
215 TEZGZipTrailer iTrailer;
217 TEZGZipHeader iHeader;
221 A CEZFileToGZip object allows compression of an uncompressed file to a zip file.
222 The uncompressed source file is passed into the constructor along with the name of the target
223 zip file. The file is compressed by calling the DeflateL() function.
228 class CEZFileToGZip : public CBase
233 IMPORT_C static CEZFileToGZip* NewLC(RFs &aRfs, const TDesC &aGzFileName, RFile &aInput, TInt aBufferSize = 0x8000);
234 IMPORT_C static CEZFileToGZip* NewL(RFs &aRfs, const TDesC &aGzFileName, RFile &aInput, TInt aBufferSize = 0x8000);
236 IMPORT_C void ResetL(RFs &aRfs, const TDesC &aGzFileName, RFile &aInput, TInt aBufferSize = 0x8000);
238 IMPORT_C TBool DeflateL();
242 void ConstructL(RFs &aRfs, const TDesC &aGzFileName, RFile &aInput, TInt aBufferSize);
243 void InitialiseBufManL(RFs &aRfs, const TDesC &aGzFileName, RFile &aInput, TInt aBufferSize);
245 CEZCompressor *iCompressor;
246 CEZFileToGzipBM *iBufferManager;
247 TInt iUncompressedDataSize;
249 TEZGZipHeader iHeader;