First public contribution.
1 // Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // EZLib: COMPRESSOR.H
15 // Declaration for Compression class
19 #ifndef __EZLIB_EZCOMPRESSOR_H__
20 #define __EZLIB_EZCOMPRESSOR_H__
23 #include "OldEZstream.h"
24 #include "OldEZBufman.h"
27 The CEZCompressor class provides in-memory compression functions, including integrity checks of the uncompressed data.
28 This version of the library supports only one compression method (deflation). Compression can be done in a single step
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
30 of the DeflateL() function. The source data is compressed to the target buffer (both source and target contained within
31 the buffer manager argument), and various other arguments distinguish the different compression settings.
39 class CEZCompressor : public CEZZStream
42 /** Compression strategy - used to tune the compression algorithm */
45 /** Use for normal data */
46 EDefaultStrategy = Z_DEFAULT_STRATEGY,
48 /** Force Huffman encoding only (no string match) */
49 EFiltered = Z_FILTERED,
51 /** Use for data produced by a filter (or predictor) */
52 EHuffmanOnly = Z_HUFFMAN_ONLY
55 /** Compression levels */
58 EDefaultCompression = Z_DEFAULT_COMPRESSION,
59 ENoCompression = Z_NO_COMPRESSION,
60 EBestSpeed = Z_BEST_SPEED,
61 EBestCompression = Z_BEST_COMPRESSION
64 /** Window Bits - the base two logarithm of the window size (the size of the history buffer) */
70 /** Memory level - specifies how much memory should be allocated for the internal compression state */
73 EDefMemLevel = MAX_MEM_LEVEL
76 /** Compression panic values */
79 EDeflateInitlialiserError = EUnexpected + 1,
86 IMPORT_C static CEZCompressor* NewLC(MEZBufferManager& aInit, TInt aLevel = EDefaultCompression,
87 TInt aWindowBits = EMaxWBits, TInt aMemLevel = EDefMemLevel, TStrategy aStrategy = EDefaultStrategy);
88 IMPORT_C static CEZCompressor* NewL(MEZBufferManager& aInit, TInt aLevel = EDefaultCompression,
89 TInt aWindowBits = EMaxWBits, TInt aMemLevel = EDefMemLevel, TStrategy aStrategy = EDefaultStrategy);
90 IMPORT_C static CEZCompressor* NewLC(MEZBufferManager& aInit, const TDesC8 &aDictionary,
91 TInt aLevel = EDefaultCompression, TInt aWindowBits = EMaxWBits, TInt aMemLevel = EDefMemLevel,
92 TStrategy aStrategy = EDefaultStrategy);
93 IMPORT_C static CEZCompressor* NewL(MEZBufferManager& aInit, const TDesC8 &aDictionary,
94 TInt aLevel = EDefaultCompression, TInt aWindowBits = EMaxWBits, TInt aMemLevel = EDefMemLevel,
95 TStrategy aStrategy = EDefaultStrategy);
97 IMPORT_C void ResetL(MEZBufferManager& aInit);
99 IMPORT_C TBool DeflateL();
101 IMPORT_C static void CompressL(TDes8 &aDestination, const TDesC8 &aSource, TInt aLevel = EDefaultCompression);
113 CEZCompressor(MEZBufferManager* aInit);
114 void ConstructL(TInt aLevel, const TUint8* aDictionary, TInt aLength, TInt aWindowBits, TInt aMemLevel, TStrategy aStrategy);
115 void ConstructL(TInt aLevel, TInt aWindowBits, TInt aMemLevel, TStrategy aStrategy);
118 MEZBufferManager* iBufferInit;
119 TDeflationState iDeflationState;
121 } //namespace TOLDEZLIB