Update contrib.
1 // Copyright (c) 2003-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.
16 #include "OldEZCompressor.h"
18 using namespace TOLDEZLIB;
20 CEZCompressor::CEZCompressor(MEZBufferManager* aInit) :
26 CEZCompressor::~CEZCompressor()
28 // Note that deflateEnd may have already been called by zlib if for example and alloc failure
29 // occurred in deflateInit2. However there is no harm in calling deflateEnd twice.
35 Creates a new CEZCompressor object and leaves it on the CleanupStack
37 @param aInit buffer manager to handle both input and output buffers
38 @param aLevel compression levels
39 @param aWindowBits the base two logarithm of the window size (the size of the history buffer). It should
40 be in the range 8..15 for this version of the library. Larger values of this parameter result in better
41 compression at the expense of memory usage.
42 @param aMemLevel specifies how much memory should be allocated for the internal compression state.
43 memLevel=1 uses minimum memory but is slow and reduces compression ratio; memLevel=9 uses maximum memory
45 @param aStrategy compression strategy - used to tune the compression algorithm. The strategy parameter only affects
46 the compression ratio but not the correctness of the compressed output even if it is not set appropriately
48 @return the new CEZCompressor object (on the CleanupStack)
50 EXPORT_C CEZCompressor *CEZCompressor::NewLC(MEZBufferManager& aInit, TInt aLevel, TInt aWindowBits,
51 TInt aMemLevel, TStrategy aStrategy)
53 CEZCompressor* deflater = new (ELeave) CEZCompressor(&aInit);
54 CleanupStack::PushL(deflater);
55 deflater->ConstructL(aLevel,aWindowBits,aMemLevel,aStrategy);
60 Creates a new CEZCompressor object
62 @param aInit buffer manager to handle both input and output buffers
63 @param aLevel compression levels
64 @param aWindowBits the base two logarithm of the window size (the size of the history buffer). It should
65 be in the range 8..15 for this version of the library. Larger values of this parameter result in better
66 compression at the expense of memory usage.
67 @param aMemLevel specifies how much memory should be allocated for the internal compression state.
68 memLevel=1 uses minimum memory but is slow and reduces compression ratio; memLevel=9 uses maximum memory
70 @param aStrategy compression strategy - used to tune the compression algorithm. The strategy parameter only affects
71 the compression ratio but not the correctness of the compressed output even if it is not set appropriately
73 @return the new CEZCompressor object
75 EXPORT_C CEZCompressor* CEZCompressor::NewL(MEZBufferManager& aInit, TInt aLevel, TInt aWindowBits,
76 TInt aMemLevel, TStrategy aStrategy)
78 CEZCompressor* deflater = new (ELeave) CEZCompressor(&aInit);
79 CleanupStack::PushL(deflater);
80 deflater->ConstructL(aLevel,aWindowBits,aMemLevel,aStrategy);
86 Overload of CEZCompressor constructor takes aDictionary argument
88 @param aInit buffer manager to handle both input and output buffers
89 @param aDictionary used to initialize the compression dictionary from the given byte sequence
90 without producing any compressed output. The compressor and decompressor must use exactly the same dictionary.
91 The dictionary should consist of strings (byte sequences) that are likely to be encountered later in the data to be compressed,
92 with the most commonly used strings preferably put towards the end of the dictionary. Using a dictionary is most useful
93 when the data to be compressed is short and can be predicted with good accuracy; the data can then be compressed better than
94 with the default empty dictionary.
95 @param aLevel compression level
96 @param aWindowBits the base two logarithm of the window size (the size of the history buffer). It should
97 be in the range 8..15 for this version of the library. Larger values of this parameter result in better
98 compression at the expense of memory usage.
99 @param aMemLevel specifies how much memory should be allocated for the internal compression state.
100 memLevel=1 uses minimum memory but is slow and reduces compression ratio; memLevel=9 uses maximum memory
102 @param aStrategy compression strategy - used to tune the compression algorithm. The strategy parameter only affects
103 the compression ratio but not the correctness of the compressed output even if it is not set appropriately
105 @return the new CEZCompressor object (on the CleanupStack)
107 EXPORT_C CEZCompressor* CEZCompressor::NewLC(MEZBufferManager& aInit, const TDesC8& aDictionary,
108 TInt aLevel, TInt aWindowBits, TInt aMemLevel, TStrategy aStrategy)
110 CEZCompressor* deflater = new (ELeave) CEZCompressor(&aInit);
111 CleanupStack::PushL(deflater);
112 deflater->ConstructL(aLevel,aDictionary.Ptr(),aDictionary.Size(),aWindowBits,aMemLevel,aStrategy);
117 Overload of CEZCompressor constructor takes aDictionary argument
119 @param aInit buffer manager to handle both input and output buffers
120 @param aDictionary used to initialize the compression dictionary from the given byte sequence
121 without producing any compressed output. The compressor and decompressor must use exactly the same dictionary.
122 The dictionary should consist of strings (byte sequences) that are likely to be encountered later in the data to be compressed,
123 with the most commonly used strings preferably put towards the end of the dictionary. Using a dictionary is most useful
124 when the data to be compressed is short and can be predicted with good accuracy; the data can then be compressed better than
125 with the default empty dictionary.
126 @param aLevel compression level
127 @param aWindowBits the base two logarithm of the window size (the size of the history buffer). It should
128 be in the range 8..15 for this version of the library. Larger values of this parameter result in better
129 compression at the expense of memory usage.
130 @param aMemLevel specifies how much memory should be allocated for the internal compression state.
131 memLevel=1 uses minimum memory but is slow and reduces compression ratio; memLevel=9 uses maximum memory
133 @param aStrategy compression strategy - used to tune the compression algorithm. The strategy parameter only affects
134 the compression ratio but not the correctness of the compressed output even if it is not set appropriately
136 @return the new CEZCompressor object
138 EXPORT_C CEZCompressor* CEZCompressor::NewL(MEZBufferManager& aInit, const TDesC8& aDictionary,
139 TInt aLevel, TInt aWindowBits, TInt aMemLevel, TStrategy aStrategy)
141 CEZCompressor* deflater = new (ELeave) CEZCompressor(&aInit);
142 CleanupStack::PushL(deflater);
143 deflater->ConstructL(aLevel,aDictionary.Ptr(),aDictionary.Size(),aWindowBits,aMemLevel,aStrategy);
149 Resets the current compression operation, with the new buffer manager
151 @param aInit new buffer manager to handle the new input and output buffers
152 @leave ... Any of the system wide error codes
154 EXPORT_C void CEZCompressor::ResetL(MEZBufferManager& aInit)
156 iBufferInit = &aInit;
157 iBufferInit->InitializeL(*this);
158 if (deflateReset(&iStream) == Z_STREAM_ERROR)
159 User::Leave(KEZlibErrStream);
160 iDeflationState = ENoFlush;
164 Compress the data to the buffer in stages, return value indicates if the compression has finalised
165 or if further calls are necessary
167 @leave KEZlibErrStream There is a problem with the stream
168 @leave KEZlibErrBuf There is a problem with the buffer
169 @leave KEZlibErrUnexpected Unexpected programming error
170 @leave ... Any of the System wide error codes
171 @return ETrue if the function must be called again, EFalse if compression is finalised
173 EXPORT_C TBool CEZCompressor::DeflateL()
176 TBool callAgain = ETrue;
178 switch (iDeflationState)
181 err = deflate(&iStream,Z_NO_FLUSH);
186 User::Leave(KEZlibErrStream);
190 if (iStream.avail_in == 0)
191 iBufferInit->NeedInputL(*this);
193 if (iStream.avail_out == 0)
194 iBufferInit->NeedOutputL(*this);
198 // this is probably ok we have just run out of input.
200 iDeflationState = EFinish;
205 // there's something wrong with this code if we get here !
207 User::Leave(KEZlibErrUnexpected);
214 err = deflate(&iStream,Z_FINISH);
219 User::Leave(KEZlibErrStream);
223 User::Leave(KEZlibErrBuf);
227 if (iStream.avail_in == 0)
228 iBufferInit->NeedInputL(*this);
230 if (iStream.avail_out == 0)
231 iBufferInit->NeedOutputL(*this);
235 iDeflationState = EFinalize;
239 // there's something wrong with this code if we get here !
241 User::Leave(KEZlibErrUnexpected);
248 iBufferInit->FinalizeL(*this);
250 iDeflationState = ETerminated;
254 User::Leave(KEZlibErrDeflateTerminated);
260 void CEZCompressor::ConstructL(TInt aLevel, const TUint8 *aDictionary, TInt aLength,
261 TInt aWindowBits, TInt aMemLevel, TStrategy aStrategy)
263 ConstructL(aLevel,aWindowBits,aMemLevel,aStrategy);
264 if (deflateSetDictionary(&iStream,STATIC_CAST(const Bytef *,aDictionary),aLength) ==
266 User::Leave(KEZlibErrStream); // This should never happen.
269 void CEZCompressor::ConstructL(TInt aLevel, TInt aWindowBits, TInt aMemLevel, TStrategy aStrategy)
271 // don't need to assert the validity of aWindowBits, aMemLevel & aStrategy as deflateInit2 will
274 iStream.zalloc = Z_NULL;
275 iStream.zfree = Z_NULL;
276 iStream.opaque = Z_NULL;
278 iBufferInit->InitializeL(*this);
280 TInt err = deflateInit2(&iStream,aLevel,Z_DEFLATED,aWindowBits,aMemLevel, STATIC_CAST(int,aStrategy));
281 if (err == Z_STREAM_ERROR)
282 User::Leave(KEZlibErrStream);
283 else if (err == Z_MEM_ERROR)
284 User::LeaveNoMemory();
286 iDeflationState = ENoFlush;
290 Compresses the data in the given buffer
292 @param aDestination the target buffer for the compressed data
293 @param aSource the buffer containing the data to be compressed
294 @param aLevel the level of compression
295 @leave KEZLibErrBuf There is a problem with the buffer
296 @leave KEZLIbErrStream There is a problem with the stream
297 @leave ... Any of the system wide error codes
299 EXPORT_C void CEZCompressor::CompressL(TDes8 &aDestination, const TDesC8 &aSource,
302 Bytef* destinationBuffer = STATIC_CAST(Bytef* ,CONST_CAST(TUint8* ,aDestination.Ptr()));
303 const Bytef* sourceBuffer = STATIC_CAST(const Bytef* ,aSource.Ptr());
304 uLongf dl = aDestination.MaxSize();
305 TInt err = compress2(destinationBuffer,&dl,sourceBuffer,aSource.Size(),aLevel);
307 if (err == Z_MEM_ERROR)
308 User::LeaveNoMemory();
309 else if (err == Z_BUF_ERROR)
310 User::Leave(KEZlibErrBuf);
311 else if (err == Z_STREAM_ERROR)
312 User::Leave(KEZlibErrStream);
314 aDestination.SetLength(dl);