os/ossrv/compressionlibs/ziplib/test/oldezlib/inc/OldEZCompressor.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: COMPRESSOR.H
sl@0
    15
// Declaration for Compression class
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
#ifndef __EZLIB_EZCOMPRESSOR_H__
sl@0
    20
#define __EZLIB_EZCOMPRESSOR_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 CEZCompressor class provides in-memory compression functions, including integrity checks of the uncompressed data.
sl@0
    28
This version of the library supports only one compression method (deflation).  Compression can be done in a single step
sl@0
    29
(using CompressL()) if the buffers are large enough (for example if an input file is mmap'ed), or can be done by repeated calls
sl@0
    30
of the DeflateL() function.  The source data is compressed to the target buffer (both source and target contained within 
sl@0
    31
the buffer manager argument), and various other arguments distinguish the different compression settings.
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 CEZCompressor : public CEZZStream
sl@0
    40
	{
sl@0
    41
public:
sl@0
    42
	/** Compression strategy - used to tune the compression algorithm */
sl@0
    43
	enum TStrategy
sl@0
    44
		{
sl@0
    45
		/** Use for normal data */		
sl@0
    46
		EDefaultStrategy = Z_DEFAULT_STRATEGY, 
sl@0
    47
		
sl@0
    48
		/** Force Huffman encoding only (no string match) */
sl@0
    49
		EFiltered = Z_FILTERED, 
sl@0
    50
		
sl@0
    51
		/** Use for data produced by a filter (or predictor) */
sl@0
    52
		EHuffmanOnly = Z_HUFFMAN_ONLY
sl@0
    53
		};
sl@0
    54
sl@0
    55
	/** Compression levels */
sl@0
    56
	enum 
sl@0
    57
		{
sl@0
    58
		EDefaultCompression = Z_DEFAULT_COMPRESSION,
sl@0
    59
		ENoCompression = Z_NO_COMPRESSION,
sl@0
    60
		EBestSpeed = Z_BEST_SPEED,
sl@0
    61
		EBestCompression = Z_BEST_COMPRESSION
sl@0
    62
		};
sl@0
    63
sl@0
    64
	/** Window Bits - the base two logarithm of the window size (the size of the history buffer) */
sl@0
    65
	enum
sl@0
    66
		{
sl@0
    67
		EMaxWBits = MAX_WBITS
sl@0
    68
		};
sl@0
    69
sl@0
    70
	/** Memory level - specifies how much memory should be allocated for the internal compression state */
sl@0
    71
	enum
sl@0
    72
		{
sl@0
    73
		EDefMemLevel = MAX_MEM_LEVEL
sl@0
    74
		};
sl@0
    75
sl@0
    76
	/** Compression panic values */
sl@0
    77
	enum
sl@0
    78
		{
sl@0
    79
		EDeflateInitlialiserError = EUnexpected + 1,
sl@0
    80
		EDeflateTerminated
sl@0
    81
		};
sl@0
    82
sl@0
    83
	public:
sl@0
    84
		~CEZCompressor();
sl@0
    85
sl@0
    86
		IMPORT_C static CEZCompressor* NewLC(MEZBufferManager& aInit, TInt aLevel = EDefaultCompression,
sl@0
    87
			TInt aWindowBits = EMaxWBits, TInt aMemLevel = EDefMemLevel, TStrategy aStrategy = EDefaultStrategy);
sl@0
    88
		IMPORT_C static CEZCompressor* NewL(MEZBufferManager& aInit, TInt aLevel = EDefaultCompression,
sl@0
    89
			TInt aWindowBits = EMaxWBits, TInt aMemLevel = EDefMemLevel, TStrategy aStrategy = EDefaultStrategy);
sl@0
    90
		IMPORT_C static CEZCompressor* NewLC(MEZBufferManager& aInit, const TDesC8 &aDictionary, 
sl@0
    91
			TInt aLevel = EDefaultCompression, TInt aWindowBits = EMaxWBits, TInt aMemLevel = EDefMemLevel, 
sl@0
    92
			TStrategy aStrategy = EDefaultStrategy);
sl@0
    93
		IMPORT_C static CEZCompressor* NewL(MEZBufferManager& aInit, const TDesC8 &aDictionary,  
sl@0
    94
			TInt aLevel = EDefaultCompression, TInt aWindowBits = EMaxWBits, TInt aMemLevel = EDefMemLevel, 
sl@0
    95
			TStrategy aStrategy = EDefaultStrategy);
sl@0
    96
sl@0
    97
		IMPORT_C void ResetL(MEZBufferManager& aInit);
sl@0
    98
sl@0
    99
		IMPORT_C TBool DeflateL();
sl@0
   100
sl@0
   101
		IMPORT_C static void CompressL(TDes8 &aDestination, const TDesC8 &aSource, TInt aLevel = EDefaultCompression);
sl@0
   102
sl@0
   103
	private:
sl@0
   104
		enum TDeflationState
sl@0
   105
			{
sl@0
   106
			ENoFlush,
sl@0
   107
			EFinish,
sl@0
   108
			EFinalize,
sl@0
   109
			ETerminated
sl@0
   110
			};
sl@0
   111
sl@0
   112
	private:
sl@0
   113
		CEZCompressor(MEZBufferManager* aInit);
sl@0
   114
		void ConstructL(TInt aLevel, const TUint8* aDictionary, TInt aLength, TInt aWindowBits, TInt aMemLevel, TStrategy aStrategy);
sl@0
   115
		void ConstructL(TInt aLevel, TInt aWindowBits, TInt aMemLevel, TStrategy aStrategy);
sl@0
   116
sl@0
   117
	private:
sl@0
   118
		MEZBufferManager* iBufferInit;
sl@0
   119
		TDeflationState iDeflationState;
sl@0
   120
	};
sl@0
   121
} //namespace TOLDEZLIB
sl@0
   122
#endif
sl@0
   123
sl@0
   124