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