os/ossrv/compressionlibs/ziplib/test/oldezlib/inc/OldEZDecompressor.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
// EZLib: DECOMPRESSOR.H
sl@0
    15
// Declaration for Decompression class
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
#ifndef __EZLIB_EZDECOMPRESSOR_H__
sl@0
    20
#define __EZLIB_EZDECOMPRESSOR_H__
sl@0
    21
sl@0
    22
#include <e32base.h>
sl@0
    23
#include "OldEZstream.h"
sl@0
    24
#include "OldEZBufman.h"
sl@0
    25
sl@0
    26
/**
sl@0
    27
The CEZDecompressor class provides in-memory de-compression functions, including integrity checks of the compressed data.
sl@0
    28
This version of the library supports only one compression / de-compression method (deflation / inflation).  De-compression
sl@0
    29
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
    30
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
    31
and target contained within the buffer manager argument).
sl@0
    32
sl@0
    33
@publishedAll
sl@0
    34
@released
sl@0
    35
*/
sl@0
    36
namespace TOLDEZLIB
sl@0
    37
{
sl@0
    38
	
sl@0
    39
class CEZDecompressor : public CEZZStream
sl@0
    40
	{
sl@0
    41
public:
sl@0
    42
	/** Decompression panic values */
sl@0
    43
	enum 
sl@0
    44
		{
sl@0
    45
		EInflateInitlialiserError = EUnexpected + 1,
sl@0
    46
		EInflateVersionError,
sl@0
    47
		EInflateTerminated,
sl@0
    48
		EInflateDictionaryError
sl@0
    49
		};
sl@0
    50
		
sl@0
    51
	/** Window Bits - the base two logarithm of the window size (the size of the history buffer) */
sl@0
    52
	enum
sl@0
    53
		{
sl@0
    54
		EMaxWBits = MAX_WBITS
sl@0
    55
		};
sl@0
    56
sl@0
    57
public:
sl@0
    58
	~CEZDecompressor();
sl@0
    59
sl@0
    60
	IMPORT_C static CEZDecompressor* NewLC(MEZBufferManager& aInit, TInt aWindowBits = EMaxWBits);
sl@0
    61
	IMPORT_C static CEZDecompressor* NewL(MEZBufferManager& aInit, TInt aWindowBits = EMaxWBits);
sl@0
    62
sl@0
    63
	IMPORT_C static CEZDecompressor* NewLC(MEZBufferManager& aInit, const TDesC8& aDictionary, TInt aWindowBits = EMaxWBits);
sl@0
    64
	IMPORT_C static CEZDecompressor* NewL(MEZBufferManager& aInit, const TDesC8& aDictionary, TInt aWindowBits = EMaxWBits);
sl@0
    65
sl@0
    66
sl@0
    67
	IMPORT_C void ResetL(MEZBufferManager& aInit);
sl@0
    68
	IMPORT_C TBool InflateL();
sl@0
    69
sl@0
    70
	IMPORT_C static void DecompressL(TDes8 &aDestination, const TDesC8 &aSource);
sl@0
    71
sl@0
    72
	private:
sl@0
    73
		enum TInflationState
sl@0
    74
			{
sl@0
    75
			ENoFlush,
sl@0
    76
			EFinalize,
sl@0
    77
			ETerminated
sl@0
    78
			};
sl@0
    79
sl@0
    80
	private:
sl@0
    81
		void SetDictionaryL();
sl@0
    82
		CEZDecompressor(MEZBufferManager* aInit);
sl@0
    83
		CEZDecompressor(MEZBufferManager* aInit, const TUint8 *aDictionary, TInt aLength);
sl@0
    84
		void ConstructL(TInt aWindowBits);
sl@0
    85
sl@0
    86
	private:
sl@0
    87
		MEZBufferManager* iBufferInit;
sl@0
    88
		TInflationState iInflationState;
sl@0
    89
		const TUint8* iDictionary;
sl@0
    90
		TInt iDictionaryLength;
sl@0
    91
	};
sl@0
    92
sl@0
    93
} //namespace TOLDEZLIB
sl@0
    94
#endif
sl@0
    95
sl@0
    96