os/ossrv/compressionlibs/ziplib/test/oldezlib/inc/OldEZCompressor.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/compressionlibs/ziplib/test/oldezlib/inc/OldEZCompressor.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,124 @@
     1.4 +// Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// EZLib: COMPRESSOR.H
    1.18 +// Declaration for Compression class
    1.19 +// 
    1.20 +//
    1.21 +
    1.22 +#ifndef __EZLIB_EZCOMPRESSOR_H__
    1.23 +#define __EZLIB_EZCOMPRESSOR_H__
    1.24 +
    1.25 +#include <e32base.h>
    1.26 +#include "OldEZstream.h"
    1.27 +#include "OldEZBufman.h"
    1.28 +
    1.29 +/**
    1.30 +The CEZCompressor class provides in-memory compression functions, including integrity checks of the uncompressed data.
    1.31 +This version of the library supports only one compression method (deflation).  Compression can be done in a single step
    1.32 +(using CompressL()) if the buffers are large enough (for example if an input file is mmap'ed), or can be done by repeated calls
    1.33 +of the DeflateL() function.  The source data is compressed to the target buffer (both source and target contained within 
    1.34 +the buffer manager argument), and various other arguments distinguish the different compression settings.
    1.35 +
    1.36 +@publishedAll
    1.37 +@released
    1.38 +*/
    1.39 +namespace TOLDEZLIB
    1.40 +{
    1.41 +	
    1.42 +class CEZCompressor : public CEZZStream
    1.43 +	{
    1.44 +public:
    1.45 +	/** Compression strategy - used to tune the compression algorithm */
    1.46 +	enum TStrategy
    1.47 +		{
    1.48 +		/** Use for normal data */		
    1.49 +		EDefaultStrategy = Z_DEFAULT_STRATEGY, 
    1.50 +		
    1.51 +		/** Force Huffman encoding only (no string match) */
    1.52 +		EFiltered = Z_FILTERED, 
    1.53 +		
    1.54 +		/** Use for data produced by a filter (or predictor) */
    1.55 +		EHuffmanOnly = Z_HUFFMAN_ONLY
    1.56 +		};
    1.57 +
    1.58 +	/** Compression levels */
    1.59 +	enum 
    1.60 +		{
    1.61 +		EDefaultCompression = Z_DEFAULT_COMPRESSION,
    1.62 +		ENoCompression = Z_NO_COMPRESSION,
    1.63 +		EBestSpeed = Z_BEST_SPEED,
    1.64 +		EBestCompression = Z_BEST_COMPRESSION
    1.65 +		};
    1.66 +
    1.67 +	/** Window Bits - the base two logarithm of the window size (the size of the history buffer) */
    1.68 +	enum
    1.69 +		{
    1.70 +		EMaxWBits = MAX_WBITS
    1.71 +		};
    1.72 +
    1.73 +	/** Memory level - specifies how much memory should be allocated for the internal compression state */
    1.74 +	enum
    1.75 +		{
    1.76 +		EDefMemLevel = MAX_MEM_LEVEL
    1.77 +		};
    1.78 +
    1.79 +	/** Compression panic values */
    1.80 +	enum
    1.81 +		{
    1.82 +		EDeflateInitlialiserError = EUnexpected + 1,
    1.83 +		EDeflateTerminated
    1.84 +		};
    1.85 +
    1.86 +	public:
    1.87 +		~CEZCompressor();
    1.88 +
    1.89 +		IMPORT_C static CEZCompressor* NewLC(MEZBufferManager& aInit, TInt aLevel = EDefaultCompression,
    1.90 +			TInt aWindowBits = EMaxWBits, TInt aMemLevel = EDefMemLevel, TStrategy aStrategy = EDefaultStrategy);
    1.91 +		IMPORT_C static CEZCompressor* NewL(MEZBufferManager& aInit, TInt aLevel = EDefaultCompression,
    1.92 +			TInt aWindowBits = EMaxWBits, TInt aMemLevel = EDefMemLevel, TStrategy aStrategy = EDefaultStrategy);
    1.93 +		IMPORT_C static CEZCompressor* NewLC(MEZBufferManager& aInit, const TDesC8 &aDictionary, 
    1.94 +			TInt aLevel = EDefaultCompression, TInt aWindowBits = EMaxWBits, TInt aMemLevel = EDefMemLevel, 
    1.95 +			TStrategy aStrategy = EDefaultStrategy);
    1.96 +		IMPORT_C static CEZCompressor* NewL(MEZBufferManager& aInit, const TDesC8 &aDictionary,  
    1.97 +			TInt aLevel = EDefaultCompression, TInt aWindowBits = EMaxWBits, TInt aMemLevel = EDefMemLevel, 
    1.98 +			TStrategy aStrategy = EDefaultStrategy);
    1.99 +
   1.100 +		IMPORT_C void ResetL(MEZBufferManager& aInit);
   1.101 +
   1.102 +		IMPORT_C TBool DeflateL();
   1.103 +
   1.104 +		IMPORT_C static void CompressL(TDes8 &aDestination, const TDesC8 &aSource, TInt aLevel = EDefaultCompression);
   1.105 +
   1.106 +	private:
   1.107 +		enum TDeflationState
   1.108 +			{
   1.109 +			ENoFlush,
   1.110 +			EFinish,
   1.111 +			EFinalize,
   1.112 +			ETerminated
   1.113 +			};
   1.114 +
   1.115 +	private:
   1.116 +		CEZCompressor(MEZBufferManager* aInit);
   1.117 +		void ConstructL(TInt aLevel, const TUint8* aDictionary, TInt aLength, TInt aWindowBits, TInt aMemLevel, TStrategy aStrategy);
   1.118 +		void ConstructL(TInt aLevel, TInt aWindowBits, TInt aMemLevel, TStrategy aStrategy);
   1.119 +
   1.120 +	private:
   1.121 +		MEZBufferManager* iBufferInit;
   1.122 +		TDeflationState iDeflationState;
   1.123 +	};
   1.124 +} //namespace TOLDEZLIB
   1.125 +#endif
   1.126 +
   1.127 +