os/ossrv/compressionlibs/ziplib/test/oldezlib/EZLib/compressor.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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 "OldEZCompressor.h"
sl@0
    17
sl@0
    18
using namespace TOLDEZLIB;
sl@0
    19
sl@0
    20
CEZCompressor::CEZCompressor(MEZBufferManager* aInit) : 
sl@0
    21
		iBufferInit(aInit)
sl@0
    22
	{
sl@0
    23
	
sl@0
    24
	}
sl@0
    25
sl@0
    26
CEZCompressor::~CEZCompressor()
sl@0
    27
	{
sl@0
    28
		// Note that deflateEnd may have already been called by zlib if for example and alloc failure
sl@0
    29
		// occurred in deflateInit2.  However there is no harm in calling deflateEnd twice.
sl@0
    30
sl@0
    31
		deflateEnd(&iStream);		
sl@0
    32
	}
sl@0
    33
sl@0
    34
/**
sl@0
    35
Creates a new CEZCompressor object and leaves it on the CleanupStack
sl@0
    36
sl@0
    37
@param aInit buffer manager to handle both input and output buffers
sl@0
    38
@param aLevel compression levels
sl@0
    39
@param aWindowBits the base two logarithm of the window size (the size of the history buffer).  It should 
sl@0
    40
be in the range 8..15 for this version of the library. Larger values of this parameter result in better 
sl@0
    41
compression at the expense of memory usage.
sl@0
    42
@param aMemLevel specifies how much memory should be allocated for the internal compression state.  
sl@0
    43
memLevel=1 uses minimum memory but is slow and reduces compression ratio; memLevel=9 uses maximum memory
sl@0
    44
for optimal speed.
sl@0
    45
@param aStrategy compression strategy - used to tune the compression algorithm.  The strategy parameter only affects 
sl@0
    46
the compression ratio but not the correctness of the compressed output even if it is not set appropriately
sl@0
    47
@see TStrategy
sl@0
    48
@return the new CEZCompressor object (on the CleanupStack)
sl@0
    49
*/
sl@0
    50
EXPORT_C CEZCompressor *CEZCompressor::NewLC(MEZBufferManager& aInit, TInt aLevel, TInt aWindowBits, 
sl@0
    51
									 TInt aMemLevel, TStrategy aStrategy)
sl@0
    52
	{
sl@0
    53
	CEZCompressor* deflater = new (ELeave) CEZCompressor(&aInit);
sl@0
    54
	CleanupStack::PushL(deflater);
sl@0
    55
	deflater->ConstructL(aLevel,aWindowBits,aMemLevel,aStrategy);
sl@0
    56
	return deflater;
sl@0
    57
	}
sl@0
    58
sl@0
    59
/**
sl@0
    60
Creates a new CEZCompressor object
sl@0
    61
sl@0
    62
@param aInit buffer manager to handle both input and output buffers
sl@0
    63
@param aLevel compression levels
sl@0
    64
@param aWindowBits the base two logarithm of the window size (the size of the history buffer).  It should 
sl@0
    65
be in the range 8..15 for this version of the library. Larger values of this parameter result in better 
sl@0
    66
compression at the expense of memory usage.
sl@0
    67
@param aMemLevel specifies how much memory should be allocated for the internal compression state.  
sl@0
    68
memLevel=1 uses minimum memory but is slow and reduces compression ratio; memLevel=9 uses maximum memory
sl@0
    69
for optimal speed.
sl@0
    70
@param aStrategy compression strategy - used to tune the compression algorithm.  The strategy parameter only affects 
sl@0
    71
the compression ratio but not the correctness of the compressed output even if it is not set appropriately
sl@0
    72
@see TStrategy
sl@0
    73
@return the new CEZCompressor object
sl@0
    74
*/
sl@0
    75
EXPORT_C CEZCompressor* CEZCompressor::NewL(MEZBufferManager& aInit, TInt aLevel, TInt aWindowBits, 
sl@0
    76
									TInt aMemLevel, TStrategy aStrategy)
sl@0
    77
	{
sl@0
    78
	CEZCompressor* deflater = new (ELeave) CEZCompressor(&aInit);
sl@0
    79
	CleanupStack::PushL(deflater);
sl@0
    80
	deflater->ConstructL(aLevel,aWindowBits,aMemLevel,aStrategy);
sl@0
    81
	CleanupStack::Pop();
sl@0
    82
	return deflater;
sl@0
    83
	}
sl@0
    84
sl@0
    85
/**
sl@0
    86
Overload of CEZCompressor constructor takes aDictionary argument
sl@0
    87
sl@0
    88
@param aInit buffer manager to handle both input and output buffers
sl@0
    89
@param aDictionary used to initialize the compression dictionary from the given byte sequence
sl@0
    90
without producing any compressed output.  The compressor and decompressor must use exactly the same dictionary.  
sl@0
    91
The dictionary should consist of strings (byte sequences) that are likely to be encountered later in the data to be compressed, 
sl@0
    92
with the most commonly used strings preferably put towards the end of the dictionary. Using a dictionary is most useful 
sl@0
    93
when the data to be compressed is short and can be predicted with good accuracy; the data can then be compressed better than 
sl@0
    94
with the default empty dictionary.
sl@0
    95
@param aLevel compression level
sl@0
    96
@param aWindowBits the base two logarithm of the window size (the size of the history buffer).  It should 
sl@0
    97
be in the range 8..15 for this version of the library. Larger values of this parameter result in better 
sl@0
    98
compression at the expense of memory usage.
sl@0
    99
@param aMemLevel specifies how much memory should be allocated for the internal compression state.  
sl@0
   100
memLevel=1 uses minimum memory but is slow and reduces compression ratio; memLevel=9 uses maximum memory
sl@0
   101
for optimal speed.
sl@0
   102
@param aStrategy compression strategy - used to tune the compression algorithm.  The strategy parameter only affects 
sl@0
   103
the compression ratio but not the correctness of the compressed output even if it is not set appropriately
sl@0
   104
@see TStrategy
sl@0
   105
@return the new CEZCompressor object (on the CleanupStack)
sl@0
   106
*/
sl@0
   107
EXPORT_C CEZCompressor* CEZCompressor::NewLC(MEZBufferManager& aInit, const TDesC8& aDictionary, 
sl@0
   108
				TInt aLevel, TInt aWindowBits, TInt aMemLevel, TStrategy aStrategy)
sl@0
   109
	{
sl@0
   110
	CEZCompressor* deflater = new (ELeave) CEZCompressor(&aInit);
sl@0
   111
	CleanupStack::PushL(deflater);
sl@0
   112
	deflater->ConstructL(aLevel,aDictionary.Ptr(),aDictionary.Size(),aWindowBits,aMemLevel,aStrategy);
sl@0
   113
	return deflater;	
sl@0
   114
	}
sl@0
   115
sl@0
   116
/**
sl@0
   117
Overload of CEZCompressor constructor takes aDictionary argument
sl@0
   118
sl@0
   119
@param aInit buffer manager to handle both input and output buffers
sl@0
   120
@param aDictionary used to initialize the compression dictionary from the given byte sequence
sl@0
   121
without producing any compressed output.  The compressor and decompressor must use exactly the same dictionary.  
sl@0
   122
The dictionary should consist of strings (byte sequences) that are likely to be encountered later in the data to be compressed, 
sl@0
   123
with the most commonly used strings preferably put towards the end of the dictionary. Using a dictionary is most useful 
sl@0
   124
when the data to be compressed is short and can be predicted with good accuracy; the data can then be compressed better than 
sl@0
   125
with the default empty dictionary.   
sl@0
   126
@param aLevel compression level
sl@0
   127
@param aWindowBits the base two logarithm of the window size (the size of the history buffer).  It should 
sl@0
   128
be in the range 8..15 for this version of the library. Larger values of this parameter result in better 
sl@0
   129
compression at the expense of memory usage.
sl@0
   130
@param aMemLevel specifies how much memory should be allocated for the internal compression state.  
sl@0
   131
memLevel=1 uses minimum memory but is slow and reduces compression ratio; memLevel=9 uses maximum memory
sl@0
   132
for optimal speed.
sl@0
   133
@param aStrategy compression strategy - used to tune the compression algorithm.  The strategy parameter only affects 
sl@0
   134
the compression ratio but not the correctness of the compressed output even if it is not set appropriately
sl@0
   135
@see TStrategy
sl@0
   136
@return the new CEZCompressor object
sl@0
   137
*/
sl@0
   138
EXPORT_C CEZCompressor* CEZCompressor::NewL(MEZBufferManager& aInit, const TDesC8& aDictionary,  
sl@0
   139
			TInt aLevel, TInt aWindowBits, TInt aMemLevel, TStrategy aStrategy)
sl@0
   140
	{
sl@0
   141
	CEZCompressor* deflater = new (ELeave) CEZCompressor(&aInit);
sl@0
   142
	CleanupStack::PushL(deflater);
sl@0
   143
	deflater->ConstructL(aLevel,aDictionary.Ptr(),aDictionary.Size(),aWindowBits,aMemLevel,aStrategy);
sl@0
   144
	CleanupStack::Pop();
sl@0
   145
	return deflater;	
sl@0
   146
	}
sl@0
   147
sl@0
   148
/**
sl@0
   149
Resets the current compression operation, with the new buffer manager
sl@0
   150
sl@0
   151
@param aInit new buffer manager to handle the new input and output buffers
sl@0
   152
@leave ... Any of the system wide error codes
sl@0
   153
*/
sl@0
   154
EXPORT_C void CEZCompressor::ResetL(MEZBufferManager& aInit)
sl@0
   155
	{
sl@0
   156
	iBufferInit = &aInit;
sl@0
   157
	iBufferInit->InitializeL(*this);
sl@0
   158
	if (deflateReset(&iStream) == Z_STREAM_ERROR)		
sl@0
   159
		User::Leave(KEZlibErrStream);
sl@0
   160
	iDeflationState = ENoFlush;
sl@0
   161
	}
sl@0
   162
sl@0
   163
/**
sl@0
   164
Compress the data to the buffer in stages, return value indicates if the compression has finalised 
sl@0
   165
or if further calls are necessary
sl@0
   166
sl@0
   167
@leave KEZlibErrStream There is a problem with the stream
sl@0
   168
@leave KEZlibErrBuf There is a problem with the buffer
sl@0
   169
@leave KEZlibErrUnexpected Unexpected programming error
sl@0
   170
@leave ... Any of the System wide error codes
sl@0
   171
@return ETrue if the function must be called again, EFalse if compression is finalised
sl@0
   172
*/
sl@0
   173
EXPORT_C TBool CEZCompressor::DeflateL()
sl@0
   174
	{
sl@0
   175
	TInt err;
sl@0
   176
	TBool callAgain = ETrue;
sl@0
   177
	
sl@0
   178
	switch (iDeflationState)
sl@0
   179
		{
sl@0
   180
	case ENoFlush:
sl@0
   181
			err = deflate(&iStream,Z_NO_FLUSH);
sl@0
   182
		
sl@0
   183
			switch (err)
sl@0
   184
				{
sl@0
   185
			case Z_STREAM_ERROR:
sl@0
   186
				User::Leave(KEZlibErrStream);
sl@0
   187
				break;
sl@0
   188
sl@0
   189
			case Z_OK:
sl@0
   190
				if (iStream.avail_in == 0)
sl@0
   191
					iBufferInit->NeedInputL(*this);
sl@0
   192
				
sl@0
   193
				if (iStream.avail_out == 0)
sl@0
   194
					iBufferInit->NeedOutputL(*this);
sl@0
   195
				break;
sl@0
   196
sl@0
   197
			case Z_BUF_ERROR:  
sl@0
   198
				// this is probably ok we have just run out of input.
sl@0
   199
sl@0
   200
				iDeflationState = EFinish;
sl@0
   201
				break;
sl@0
   202
sl@0
   203
			default:
sl@0
   204
sl@0
   205
				// there's something wrong with this code if we get here !
sl@0
   206
				
sl@0
   207
				User::Leave(KEZlibErrUnexpected);
sl@0
   208
				break;
sl@0
   209
				}
sl@0
   210
sl@0
   211
			break;
sl@0
   212
sl@0
   213
	case EFinish:
sl@0
   214
		err = deflate(&iStream,Z_FINISH);
sl@0
   215
		
sl@0
   216
		switch (err)
sl@0
   217
			{
sl@0
   218
		case Z_STREAM_ERROR:				
sl@0
   219
				User::Leave(KEZlibErrStream);
sl@0
   220
				break;
sl@0
   221
sl@0
   222
		case Z_BUF_ERROR:
sl@0
   223
				User::Leave(KEZlibErrBuf);
sl@0
   224
				break;
sl@0
   225
sl@0
   226
		case Z_OK:
sl@0
   227
				if (iStream.avail_in == 0)
sl@0
   228
					iBufferInit->NeedInputL(*this);
sl@0
   229
				
sl@0
   230
				if (iStream.avail_out == 0)
sl@0
   231
					iBufferInit->NeedOutputL(*this);
sl@0
   232
				break;
sl@0
   233
sl@0
   234
		case Z_STREAM_END:
sl@0
   235
				iDeflationState = EFinalize;
sl@0
   236
				break;
sl@0
   237
			
sl@0
   238
		default:
sl@0
   239
				// there's something wrong with this code if we get here !
sl@0
   240
sl@0
   241
				User::Leave(KEZlibErrUnexpected);
sl@0
   242
				break;
sl@0
   243
			}
sl@0
   244
sl@0
   245
		break;
sl@0
   246
sl@0
   247
	case EFinalize:
sl@0
   248
		iBufferInit->FinalizeL(*this);
sl@0
   249
		callAgain = EFalse;
sl@0
   250
		iDeflationState = ETerminated;
sl@0
   251
		break;
sl@0
   252
sl@0
   253
	case ETerminated:
sl@0
   254
		User::Leave(KEZlibErrDeflateTerminated);
sl@0
   255
		}
sl@0
   256
sl@0
   257
	return callAgain;
sl@0
   258
	}
sl@0
   259
sl@0
   260
void CEZCompressor::ConstructL(TInt aLevel, const TUint8 *aDictionary, TInt aLength, 
sl@0
   261
						   TInt aWindowBits, TInt aMemLevel, TStrategy aStrategy)
sl@0
   262
	{
sl@0
   263
	ConstructL(aLevel,aWindowBits,aMemLevel,aStrategy);
sl@0
   264
	if (deflateSetDictionary(&iStream,STATIC_CAST(const Bytef *,aDictionary),aLength) == 
sl@0
   265
			Z_STREAM_ERROR)
sl@0
   266
		User::Leave(KEZlibErrStream);  // This should never happen.
sl@0
   267
	}
sl@0
   268
	
sl@0
   269
void CEZCompressor::ConstructL(TInt aLevel, TInt aWindowBits, TInt aMemLevel, TStrategy aStrategy)
sl@0
   270
	{
sl@0
   271
	// don't need to assert the validity of aWindowBits, aMemLevel & aStrategy as deflateInit2 will
sl@0
   272
	// do this for us.
sl@0
   273
sl@0
   274
	iStream.zalloc = Z_NULL;
sl@0
   275
	iStream.zfree = Z_NULL;
sl@0
   276
	iStream.opaque = Z_NULL;
sl@0
   277
sl@0
   278
	iBufferInit->InitializeL(*this);
sl@0
   279
sl@0
   280
	TInt err = deflateInit2(&iStream,aLevel,Z_DEFLATED,aWindowBits,aMemLevel, STATIC_CAST(int,aStrategy));
sl@0
   281
	if (err == Z_STREAM_ERROR)
sl@0
   282
		User::Leave(KEZlibErrStream);
sl@0
   283
	else if (err == Z_MEM_ERROR)
sl@0
   284
		User::LeaveNoMemory();
sl@0
   285
sl@0
   286
	iDeflationState = ENoFlush;
sl@0
   287
	}
sl@0
   288
sl@0
   289
/**
sl@0
   290
Compresses the data in the given buffer
sl@0
   291
sl@0
   292
@param aDestination the target buffer for the compressed data
sl@0
   293
@param aSource the buffer containing the data to be compressed
sl@0
   294
@param aLevel the level of compression
sl@0
   295
@leave KEZLibErrBuf There is a problem with the buffer
sl@0
   296
@leave KEZLIbErrStream There is a problem with the stream
sl@0
   297
@leave ... Any of the system wide error codes
sl@0
   298
*/
sl@0
   299
EXPORT_C void CEZCompressor::CompressL(TDes8 &aDestination, const TDesC8 &aSource, 
sl@0
   300
										TInt aLevel)
sl@0
   301
	{
sl@0
   302
	Bytef* destinationBuffer = STATIC_CAST(Bytef* ,CONST_CAST(TUint8* ,aDestination.Ptr()));
sl@0
   303
	const Bytef* sourceBuffer = STATIC_CAST(const Bytef* ,aSource.Ptr());
sl@0
   304
	uLongf dl = aDestination.MaxSize();
sl@0
   305
	TInt err = compress2(destinationBuffer,&dl,sourceBuffer,aSource.Size(),aLevel);
sl@0
   306
sl@0
   307
	if (err == Z_MEM_ERROR) 
sl@0
   308
		User::LeaveNoMemory();
sl@0
   309
	else if (err == Z_BUF_ERROR)
sl@0
   310
		User::Leave(KEZlibErrBuf);
sl@0
   311
	else if (err == Z_STREAM_ERROR)
sl@0
   312
		User::Leave(KEZlibErrStream);
sl@0
   313
sl@0
   314
	aDestination.SetLength(dl);
sl@0
   315
	}