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