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.
16 #ifndef __EZLIB_GZIP_H__
17 #define __EZLIB_GZIP_H__
19 #include "OldEZDecompressor.h"
20 #include "OldEZCompressor.h"
21 #include "OldEZFilebuffer.h"
28 The TEZGZipHeader class encapsulates a zip file header, which is written to the start of the zip
29 file to store various settings of the archive
38 IMPORT_C TEZGZipHeader();
39 IMPORT_C ~TEZGZipHeader();
44 TUint8 iCompressionMethod;
57 The TEZGZipTrailer class encapsulates a zip file trailer, which uses a CRC (cyclic redundancy check) to
58 confirm the validity of the unpacked archive
66 IMPORT_C TEZGZipTrailer();
67 IMPORT_C TEZGZipTrailer(TInt32 aCrc, TInt32 aSize);
74 The EZGZipFile class handles writing / reading of headers and trailers to / from zip files
83 /** Zip file error codes */
84 enum { ENotGZipFile = KEZlibErrNotGZipFile,
85 EInvalidCompressionMethod = KEZlibErrInvalidCompression,
86 EBadGZipHeader= KEZlibErrBadGZipHeader,
87 EBadGZipTrailer = KEZlibErrBadGZipTrailer,
88 EBadGZipCrc = KEZlibErrBadGZipCrc };
89 /** Flags to determine which part of the header / trailer is being written */
90 enum { EFText = 0, EFHcrc = 1, EFExtra = 2, EFName = 3, EFComment = 4};
93 IMPORT_C static void ReadHeaderL(RFile &aFile, TEZGZipHeader &aHeader);
94 IMPORT_C static void WriteHeaderL(RFile &aFile, TEZGZipHeader &aHeader);
95 IMPORT_C static void ReadTrailerL(RFile &aFile, TEZGZipTrailer &aTrailer);
96 IMPORT_C static void WriteTrailerL(RFile &aFile, TEZGZipTrailer &aTrailer);
97 IMPORT_C static void LocateAndReadTrailerL(RFs &aRfs, const TDesC &aFname, TEZGZipTrailer &aTrailer);
98 IMPORT_C static TBool IsGzipFile(RFs &aRfs, const TDesC &aFname);
99 IMPORT_C static TBool IsGzipFileL(RFs &aRfs, const TDesC &aFname);
102 static void ReadStringIntoDescriptorL(RFile &aFile, HBufC8 **aDes);
105 /** First of the header ID pair */
106 static const TUint8 ID1;
107 /** Second of the header ID pair */
108 static const TUint8 ID2;
112 The CEZFileToGzipBM manages the input and output buffers for compression
117 NONSHARABLE_CLASS(CEZFileToGzipBM) : public CEZFileBufferManager
121 static CEZFileToGzipBM* NewLC(RFile &aInput, RFile &aOutput, TInt aBufferSize);
122 static CEZFileToGzipBM* NewL(RFile &aInput, RFile &aOutput, TInt aBufferSize);
125 Initialise the stream with input and output buffers and starts reading
127 @param aZStream the stream to initialise
129 virtual void InitializeL(CEZZStream &aZStream);
132 Set the stream's input buffer and starts reading
134 @param aZStream the steam whose input buffer to set
136 virtual void NeedInputL(CEZZStream &aZStream);
139 Return the CRC - used for checking validity of the archive
141 @return the CRC value
143 TInt32 Crc() const { return iCrc; } ;
146 CEZFileToGzipBM(RFile &aInput, RFile &aOutput);
152 The CEZGzipToFileBM class manages the input and output buffers for de-compression
157 NONSHARABLE_CLASS(CEZGzipToFileBM) : public CEZFileBufferManager
161 static CEZGzipToFileBM* NewLC(RFile &aInput, RFile &aOutput, TInt aBufferSize);
162 static CEZGzipToFileBM* NewL(RFile &aInput, RFile &aOutput, TInt aBufferSize);
165 Finish writing to the stream
167 @param aZStream the stream to complete writing to
169 virtual void FinalizeL(CEZZStream &aZStream);
172 Set the stream's output buffer and start writing
174 @param aZStream the steam whose output buffer to set
176 virtual void NeedOutputL(CEZZStream &aZStream);
179 Return the CRC - used for checking validity of the archive
181 @return the CRC value
183 TInt32 Crc() const { return iCrc; } ;
186 CEZGzipToFileBM(RFile &aInput, RFile &aOutput);
193 A CEZGZipToFile object allows de-compression of a compressed file.
194 The name of the compressed file is passed into the constructor along with a target file
195 to contain the uncompressed data. The file is uncompressed by calling the InflateL() function.
200 class CEZGZipToFile : public CBase
205 IMPORT_C static CEZGZipToFile* NewLC(RFs &aRfs, const TDesC &aGzFileName, RFile &aOutput, TInt aBufferSize = 0x8000);
206 IMPORT_C static CEZGZipToFile* NewL(RFs &aRfs, const TDesC &aGzFileName, RFile &aOutput, TInt aBufferSize = 0x8000);
208 IMPORT_C void ResetL(RFs &aRfs, const TDesC &aGzFileName, RFile &aOutput, TInt aBufferSize = 0x8000);
210 IMPORT_C TBool InflateL();
214 void ConstructL(RFs &aRfs, const TDesC &aGzFileName, RFile &aOutput, TInt aBufferSize);
215 void InitialiseBufManL(RFs &aRfs, const TDesC &aGzFileName, RFile &aOutput, TInt aBufferSize);
217 CEZDecompressor *iDecompressor;
218 CEZGzipToFileBM *iBufferManager;
219 TEZGZipTrailer iTrailer;
221 TEZGZipHeader iHeader;
225 A CEZFileToGZip object allows compression of an uncompressed file to a zip file.
226 The uncompressed source file is passed into the constructor along with the name of the target
227 zip file. The file is compressed by calling the DeflateL() function.
232 class CEZFileToGZip : public CBase
237 IMPORT_C static CEZFileToGZip* NewLC(RFs &aRfs, const TDesC &aGzFileName, RFile &aInput, TInt aBufferSize = 0x8000);
238 IMPORT_C static CEZFileToGZip* NewL(RFs &aRfs, const TDesC &aGzFileName, RFile &aInput, TInt aBufferSize = 0x8000);
240 IMPORT_C void ResetL(RFs &aRfs, const TDesC &aGzFileName, RFile &aInput, TInt aBufferSize = 0x8000);
242 IMPORT_C TBool DeflateL();
246 void ConstructL(RFs &aRfs, const TDesC &aGzFileName, RFile &aInput, TInt aBufferSize);
247 void InitialiseBufManL(RFs &aRfs, const TDesC &aGzFileName, RFile &aInput, TInt aBufferSize);
249 CEZCompressor *iCompressor;
250 CEZFileToGzipBM *iBufferManager;
251 TInt iUncompressedDataSize;
253 TEZGZipHeader iHeader;
256 }// namespace TOLDEZLIB