os/ossrv/compressionlibs/ziplib/inc/ezdecompressor.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) 1999-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
// Declaration for Decompression class
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __EZDECOMPRESSOR_H__
sl@0
    19
#define __EZDECOMPRESSOR_H__
sl@0
    20
sl@0
    21
#include <e32base.h>
sl@0
    22
#include <ezstream.h>
sl@0
    23
#include <ezbufman.h>
sl@0
    24
sl@0
    25
/**
sl@0
    26
The CEZDecompressor class provides in-memory de-compression functions, including integrity checks of the compressed data.
sl@0
    27
This version of the library supports only one compression / de-compression method (deflation / inflation).  De-compression
sl@0
    28
can be done in a single step (using DecompressL()) if the buffers are large enough (for example if an input file is mmap'ed),
sl@0
    29
or can be done by repeated calls of the InflateL() function.  The source data is de-compressed to the target buffer (both source 
sl@0
    30
and target contained within the buffer manager argument).
sl@0
    31
sl@0
    32
Note: In this version of the library a windowBits value of 8 is unsupported due to a problem with the window size being 
sl@0
    33
set to 256 bytes. Although a value of 8 will be accepted by the CEZCompressor constructors, as it is being changed 
sl@0
    34
internally by Zlib from 8 to 9, it will not be possible to use the same value for decompression. This is because the 
sl@0
    35
Zlib functions called by the CEZDecompressor constructors do not make the same change internally and as a result a 
sl@0
    36
KEZlibErrData is returned when calling InflateL(). It is therefore advised that for this version of the library 
sl@0
    37
windowBits of 9 is used in place of 8.
sl@0
    38
sl@0
    39
@publishedAll
sl@0
    40
@released
sl@0
    41
*/
sl@0
    42
class CEZDecompressor : public CEZZStream
sl@0
    43
	{
sl@0
    44
public:
sl@0
    45
	/** Decompression panic values */
sl@0
    46
	enum 
sl@0
    47
		{
sl@0
    48
		EInflateInitlialiserError = EUnexpected + 1,
sl@0
    49
		EInflateVersionError,
sl@0
    50
		EInflateTerminated,
sl@0
    51
		EInflateDictionaryError
sl@0
    52
		};
sl@0
    53
		
sl@0
    54
	/** Window Bits - the base two logarithm of the window size (the size of the history buffer) */
sl@0
    55
	enum
sl@0
    56
		{
sl@0
    57
		EMaxWBits = MAX_WBITS
sl@0
    58
		};
sl@0
    59
sl@0
    60
public:
sl@0
    61
	~CEZDecompressor();
sl@0
    62
sl@0
    63
	IMPORT_C static CEZDecompressor* NewLC(MEZBufferManager& aInit, TInt aWindowBits = EMaxWBits);
sl@0
    64
	IMPORT_C static CEZDecompressor* NewL(MEZBufferManager& aInit, TInt aWindowBits = EMaxWBits);
sl@0
    65
sl@0
    66
	IMPORT_C static CEZDecompressor* NewLC(MEZBufferManager& aInit, const TDesC8& aDictionary, TInt aWindowBits = EMaxWBits);
sl@0
    67
	IMPORT_C static CEZDecompressor* NewL(MEZBufferManager& aInit, const TDesC8& aDictionary, TInt aWindowBits = EMaxWBits);
sl@0
    68
sl@0
    69
sl@0
    70
	IMPORT_C void ResetL(MEZBufferManager& aInit);
sl@0
    71
	IMPORT_C TBool InflateL();
sl@0
    72
sl@0
    73
	IMPORT_C static void DecompressL(TDes8 &aDestination, const TDesC8 &aSource);
sl@0
    74
	
sl@0
    75
	private:
sl@0
    76
		enum TInflationState
sl@0
    77
			{
sl@0
    78
			ENoFlush,
sl@0
    79
			EFinalize,
sl@0
    80
			ETerminated
sl@0
    81
			};
sl@0
    82
sl@0
    83
	private:
sl@0
    84
		void SetDictionaryL();
sl@0
    85
		CEZDecompressor(MEZBufferManager* aInit);
sl@0
    86
		CEZDecompressor(MEZBufferManager* aInit, const TUint8 *aDictionary, TInt aLength);
sl@0
    87
		void ConstructL(TInt aWindowBits);
sl@0
    88
sl@0
    89
	private:
sl@0
    90
		MEZBufferManager* iBufferInit;
sl@0
    91
		TInflationState iInflationState;
sl@0
    92
		const TUint8* iDictionary;
sl@0
    93
		TInt iDictionaryLength;
sl@0
    94
	};
sl@0
    95
sl@0
    96
#endif
sl@0
    97
sl@0
    98