sl@0
|
1 |
// Copyright (c) 2003-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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include <ezdecompressor.h>
|
sl@0
|
17 |
#include "libzcore.h"
|
sl@0
|
18 |
#include <e32debug.h>
|
sl@0
|
19 |
|
sl@0
|
20 |
CEZDecompressor::~CEZDecompressor()
|
sl@0
|
21 |
{
|
sl@0
|
22 |
|
sl@0
|
23 |
// Note inflateEnd may already have been called by zlib if an error occured during inflation.
|
sl@0
|
24 |
// However nothing bad will happen if it gets called twice.
|
sl@0
|
25 |
|
sl@0
|
26 |
inflateEnd_r(&iStream);
|
sl@0
|
27 |
}
|
sl@0
|
28 |
|
sl@0
|
29 |
CEZDecompressor::CEZDecompressor(MEZBufferManager* aInit,const TUint8 *aDictionary, TInt aLength) :
|
sl@0
|
30 |
iBufferInit(aInit), iDictionary(aDictionary), iDictionaryLength(aLength)
|
sl@0
|
31 |
{
|
sl@0
|
32 |
|
sl@0
|
33 |
}
|
sl@0
|
34 |
|
sl@0
|
35 |
CEZDecompressor::CEZDecompressor(MEZBufferManager* aInit) :
|
sl@0
|
36 |
iBufferInit(aInit), iDictionary(NULL), iDictionaryLength(-1)
|
sl@0
|
37 |
{
|
sl@0
|
38 |
|
sl@0
|
39 |
}
|
sl@0
|
40 |
|
sl@0
|
41 |
|
sl@0
|
42 |
void CEZDecompressor::ConstructL(TInt aWindowBits)
|
sl@0
|
43 |
{
|
sl@0
|
44 |
iStream.zalloc = Z_NULL;
|
sl@0
|
45 |
iStream.zfree = Z_NULL;
|
sl@0
|
46 |
iStream.opaque = Z_NULL;
|
sl@0
|
47 |
|
sl@0
|
48 |
iBufferInit->InitializeL(*this);
|
sl@0
|
49 |
|
sl@0
|
50 |
TInt err = inflateInit2_r(&iStream,aWindowBits);
|
sl@0
|
51 |
if (err == Z_VERSION_ERROR)
|
sl@0
|
52 |
User::Leave(KEZlibErrVersion);
|
sl@0
|
53 |
else if (err == Z_MEM_ERROR)
|
sl@0
|
54 |
User::LeaveNoMemory();
|
sl@0
|
55 |
|
sl@0
|
56 |
iInflationState = ENoFlush;
|
sl@0
|
57 |
}
|
sl@0
|
58 |
|
sl@0
|
59 |
/**
|
sl@0
|
60 |
Creates a new CEZDecompressor object and leaves it on the CleanupStack
|
sl@0
|
61 |
|
sl@0
|
62 |
@param aInit buffer manager to handle both input and output buffers
|
sl@0
|
63 |
@param aWindowBits the base two logarithm of the window size (the size of the history buffer). It should
|
sl@0
|
64 |
be in the range 8..15 for this version of the library. Larger values of this parameter result in better
|
sl@0
|
65 |
compression at the expense of memory usage.
|
sl@0
|
66 |
@return the new CEZDecompressor object (on the CleanupStack)
|
sl@0
|
67 |
*/
|
sl@0
|
68 |
EXPORT_C CEZDecompressor* CEZDecompressor::NewLC(MEZBufferManager& aInit, TInt aWindowBits)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
CEZDecompressor *inf = new (ELeave) CEZDecompressor(&aInit);
|
sl@0
|
71 |
CleanupStack::PushL(inf);
|
sl@0
|
72 |
inf->ConstructL(aWindowBits);
|
sl@0
|
73 |
return inf;
|
sl@0
|
74 |
}
|
sl@0
|
75 |
|
sl@0
|
76 |
/**
|
sl@0
|
77 |
Creates a new CEZDecompressor object
|
sl@0
|
78 |
|
sl@0
|
79 |
@param aInit buffer manager to handle both input and output buffers
|
sl@0
|
80 |
@param aWindowBits the base two logarithm of the window size (the size of the history buffer). It should
|
sl@0
|
81 |
be in the range 8..15 for this version of the library. Larger values of this parameter result in better
|
sl@0
|
82 |
compression at the expense of memory usage.
|
sl@0
|
83 |
@return the new CEZDecompressor object
|
sl@0
|
84 |
*/
|
sl@0
|
85 |
EXPORT_C CEZDecompressor* CEZDecompressor::NewL(MEZBufferManager& aInit, TInt aWindowBits)
|
sl@0
|
86 |
{
|
sl@0
|
87 |
CEZDecompressor *inf = new (ELeave) CEZDecompressor(&aInit);
|
sl@0
|
88 |
CleanupStack::PushL(inf);
|
sl@0
|
89 |
inf->ConstructL(aWindowBits);
|
sl@0
|
90 |
CleanupStack::Pop();
|
sl@0
|
91 |
return inf;
|
sl@0
|
92 |
}
|
sl@0
|
93 |
|
sl@0
|
94 |
/**
|
sl@0
|
95 |
Overload of CEZDecompressor constructor takes aDictionary argument
|
sl@0
|
96 |
|
sl@0
|
97 |
@param aInit buffer manager to handle both input and output buffers
|
sl@0
|
98 |
@param aDictionary used to initialize the de-compression dictionary from the given byte sequence. The compressor and
|
sl@0
|
99 |
decompressor must use exactly the same dictionary.
|
sl@0
|
100 |
@param aWindowBits the base two logarithm of the window size (the size of the history buffer). It should
|
sl@0
|
101 |
be in the range 8..15 for this version of the library. Larger values of this parameter result in better
|
sl@0
|
102 |
compression at the expense of memory usage.
|
sl@0
|
103 |
@return the new CEZDecompressor object (on the CleanupStack)
|
sl@0
|
104 |
*/
|
sl@0
|
105 |
EXPORT_C CEZDecompressor* CEZDecompressor::NewLC(MEZBufferManager& aInit, const TDesC8& aDictionary, TInt aWindowBits)
|
sl@0
|
106 |
{
|
sl@0
|
107 |
CEZDecompressor *inf = new (ELeave) CEZDecompressor(&aInit,aDictionary.Ptr(),aDictionary.Size());
|
sl@0
|
108 |
CleanupStack::PushL(inf);
|
sl@0
|
109 |
inf->ConstructL(aWindowBits);
|
sl@0
|
110 |
return inf;
|
sl@0
|
111 |
}
|
sl@0
|
112 |
|
sl@0
|
113 |
/**
|
sl@0
|
114 |
Overload of CEZDecompressor constructor takes aDictionary argument
|
sl@0
|
115 |
|
sl@0
|
116 |
@param aInit buffer manager to handle both input and output buffers
|
sl@0
|
117 |
@param aDictionary used to initialize the de-compression dictionary from the given byte sequence. The compressor and
|
sl@0
|
118 |
decompressor must use exactly the same dictionary.
|
sl@0
|
119 |
@param aWindowBits the base two logarithm of the window size (the size of the history buffer). It should
|
sl@0
|
120 |
be in the range 8..15 for this version of the library. Larger values of this parameter result in better
|
sl@0
|
121 |
compression at the expense of memory usage.
|
sl@0
|
122 |
@return the new CEZDecompressor object
|
sl@0
|
123 |
*/
|
sl@0
|
124 |
EXPORT_C CEZDecompressor* CEZDecompressor::NewL(MEZBufferManager& aInit, const TDesC8& aDictionary, TInt aWindowBits)
|
sl@0
|
125 |
{
|
sl@0
|
126 |
CEZDecompressor *inf = new (ELeave) CEZDecompressor(&aInit,aDictionary.Ptr(),aDictionary.Size());
|
sl@0
|
127 |
CleanupStack::PushL(inf);
|
sl@0
|
128 |
inf->ConstructL(aWindowBits);
|
sl@0
|
129 |
CleanupStack::Pop();
|
sl@0
|
130 |
return inf;
|
sl@0
|
131 |
}
|
sl@0
|
132 |
|
sl@0
|
133 |
/**
|
sl@0
|
134 |
Resets the current de-compression operation, with the new buffer manager
|
sl@0
|
135 |
|
sl@0
|
136 |
@param aInit new buffer manager to handle the new input and output buffers
|
sl@0
|
137 |
@leave KEZlibErrStream There is a problem with the stream
|
sl@0
|
138 |
@leave ... Any of the System wide error codes
|
sl@0
|
139 |
*/
|
sl@0
|
140 |
EXPORT_C void CEZDecompressor::ResetL(MEZBufferManager& aInit)
|
sl@0
|
141 |
{
|
sl@0
|
142 |
iBufferInit = &aInit;
|
sl@0
|
143 |
iBufferInit->InitializeL(*this);
|
sl@0
|
144 |
if (inflateReset_r(&iStream) == Z_STREAM_ERROR)
|
sl@0
|
145 |
User::Leave(KEZlibErrStream);
|
sl@0
|
146 |
iInflationState = ENoFlush;
|
sl@0
|
147 |
}
|
sl@0
|
148 |
|
sl@0
|
149 |
/**
|
sl@0
|
150 |
De-compress the data to the buffer in stages, return value indicates if the de-compression has finalised
|
sl@0
|
151 |
or if further calls are necessary
|
sl@0
|
152 |
|
sl@0
|
153 |
@leave KEZlibErrStream There is a problem with the stream
|
sl@0
|
154 |
@leave KEZlibErrBuf There is a problem with the buffer
|
sl@0
|
155 |
@leave KEZlibErrData There is a problem with the data
|
sl@0
|
156 |
@leave KEZlibErrUnexpected Unexpected programming error
|
sl@0
|
157 |
@leave ... Any of the System wide error codes
|
sl@0
|
158 |
@return ETrue if the function must be called again, EFalse if compression is finalised
|
sl@0
|
159 |
*/
|
sl@0
|
160 |
EXPORT_C TBool CEZDecompressor::InflateL()
|
sl@0
|
161 |
{
|
sl@0
|
162 |
TInt err;
|
sl@0
|
163 |
TBool callAgain = ETrue;
|
sl@0
|
164 |
|
sl@0
|
165 |
switch (iInflationState)
|
sl@0
|
166 |
{
|
sl@0
|
167 |
case ENoFlush:
|
sl@0
|
168 |
err = inflate_r(&iStream,Z_NO_FLUSH);
|
sl@0
|
169 |
|
sl@0
|
170 |
switch (err)
|
sl@0
|
171 |
{
|
sl@0
|
172 |
case Z_STREAM_ERROR:
|
sl@0
|
173 |
User::Leave(KEZlibErrStream);
|
sl@0
|
174 |
|
sl@0
|
175 |
break;
|
sl@0
|
176 |
|
sl@0
|
177 |
case Z_OK:
|
sl@0
|
178 |
if (iStream.avail_in == 0)
|
sl@0
|
179 |
iBufferInit->NeedInputL(*this);
|
sl@0
|
180 |
|
sl@0
|
181 |
if (iStream.avail_out == 0)
|
sl@0
|
182 |
iBufferInit->NeedOutputL(*this);
|
sl@0
|
183 |
break;
|
sl@0
|
184 |
|
sl@0
|
185 |
case Z_BUF_ERROR:
|
sl@0
|
186 |
User::Leave(KEZlibErrBuf);
|
sl@0
|
187 |
break;
|
sl@0
|
188 |
|
sl@0
|
189 |
case Z_NEED_DICT:
|
sl@0
|
190 |
SetDictionaryL();
|
sl@0
|
191 |
break;
|
sl@0
|
192 |
|
sl@0
|
193 |
case Z_STREAM_END:
|
sl@0
|
194 |
iInflationState = EFinalize;
|
sl@0
|
195 |
break;
|
sl@0
|
196 |
|
sl@0
|
197 |
case Z_MEM_ERROR:
|
sl@0
|
198 |
User::LeaveNoMemory();
|
sl@0
|
199 |
break;
|
sl@0
|
200 |
|
sl@0
|
201 |
case Z_DATA_ERROR:
|
sl@0
|
202 |
User::Leave(KEZlibErrData);
|
sl@0
|
203 |
break;
|
sl@0
|
204 |
|
sl@0
|
205 |
default:
|
sl@0
|
206 |
|
sl@0
|
207 |
// there's something wrong with this code if we get here !
|
sl@0
|
208 |
|
sl@0
|
209 |
User::Leave(KEZlibErrUnexpected);
|
sl@0
|
210 |
break;
|
sl@0
|
211 |
}
|
sl@0
|
212 |
break;
|
sl@0
|
213 |
|
sl@0
|
214 |
case EFinalize:
|
sl@0
|
215 |
iBufferInit->FinalizeL(*this);
|
sl@0
|
216 |
callAgain = EFalse;
|
sl@0
|
217 |
iInflationState = ETerminated;
|
sl@0
|
218 |
break;
|
sl@0
|
219 |
|
sl@0
|
220 |
case ETerminated:
|
sl@0
|
221 |
User::Leave(KEZlibErrInflateTerminated);
|
sl@0
|
222 |
}
|
sl@0
|
223 |
|
sl@0
|
224 |
return callAgain;
|
sl@0
|
225 |
}
|
sl@0
|
226 |
|
sl@0
|
227 |
void CEZDecompressor::SetDictionaryL()
|
sl@0
|
228 |
{
|
sl@0
|
229 |
if(!iDictionary || iDictionaryLength < 0)
|
sl@0
|
230 |
{
|
sl@0
|
231 |
User::Leave(KEZlibErrData);
|
sl@0
|
232 |
}
|
sl@0
|
233 |
|
sl@0
|
234 |
TInt err = inflateSetDictionary_r(&iStream,STATIC_CAST(const Bytef*,iDictionary),iDictionaryLength);
|
sl@0
|
235 |
|
sl@0
|
236 |
if (err == Z_DATA_ERROR)
|
sl@0
|
237 |
User::Leave(KEZlibErrInflateDictionary);
|
sl@0
|
238 |
else if (err == Z_STREAM_ERROR)
|
sl@0
|
239 |
User::Leave(KEZlibErrInflateDictionary);
|
sl@0
|
240 |
|
sl@0
|
241 |
}
|
sl@0
|
242 |
|
sl@0
|
243 |
/**
|
sl@0
|
244 |
De-compresses the data in the given buffer
|
sl@0
|
245 |
|
sl@0
|
246 |
@param aDestination the target buffer for the de-compressed data
|
sl@0
|
247 |
@param aSource the buffer containing the compressed data
|
sl@0
|
248 |
@leave KEZLibErrBuf There is a problem with the buffer
|
sl@0
|
249 |
@leave KEZLIbErrData There is a problem with the data
|
sl@0
|
250 |
@leave ... Any of the system wide error codes
|
sl@0
|
251 |
*/
|
sl@0
|
252 |
EXPORT_C void CEZDecompressor::DecompressL(TDes8 &aDestination, const TDesC8 &aSource)
|
sl@0
|
253 |
{
|
sl@0
|
254 |
uLongf dl = aDestination.MaxSize();
|
sl@0
|
255 |
Bytef *destinationBuffer = STATIC_CAST(Bytef* , CONST_CAST(TUint8* ,aDestination.Ptr()));
|
sl@0
|
256 |
const Bytef* sourceBuffer = STATIC_CAST(const Bytef* ,aSource.Ptr());
|
sl@0
|
257 |
TInt err = uncompress_r(destinationBuffer,&dl,sourceBuffer,aSource.Size());
|
sl@0
|
258 |
|
sl@0
|
259 |
if (err == Z_MEM_ERROR)
|
sl@0
|
260 |
User::LeaveNoMemory();
|
sl@0
|
261 |
else if (err == Z_BUF_ERROR)
|
sl@0
|
262 |
User::Leave(KEZlibErrBuf);
|
sl@0
|
263 |
else if (err == Z_DATA_ERROR)
|
sl@0
|
264 |
User::Leave(KEZlibErrData);
|
sl@0
|
265 |
|
sl@0
|
266 |
aDestination.SetLength(dl);
|
sl@0
|
267 |
}
|
sl@0
|
268 |
|
sl@0
|
269 |
|
sl@0
|
270 |
|
sl@0
|
271 |
|