os/ossrv/compressionlibs/ziplib/test/oldezlib/EZLib/zstream.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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 "OldEZstream.h"
sl@0
    17
using namespace TOLDEZLIB;
sl@0
    18
sl@0
    19
CEZZStream::CEZZStream() : iOutputPointer(NULL), iOutputBufferLength(0)
sl@0
    20
	{
sl@0
    21
sl@0
    22
	}
sl@0
    23
sl@0
    24
/**
sl@0
    25
Set the stream's input buffer
sl@0
    26
sl@0
    27
@param aInputData the input buffer for this stream
sl@0
    28
*/
sl@0
    29
EXPORT_C void CEZZStream::SetInput(const TDesC8& aInputData)
sl@0
    30
	{	
sl@0
    31
	iStream.avail_in = aInputData.Size();
sl@0
    32
	iStream.next_in = STATIC_CAST(Bytef* ,CONST_CAST(TUint8 *,aInputData.Ptr()));
sl@0
    33
	}
sl@0
    34
sl@0
    35
/**
sl@0
    36
Set the stream's output buffer
sl@0
    37
sl@0
    38
@param aOutputData the output buffer for this stream
sl@0
    39
*/
sl@0
    40
EXPORT_C void CEZZStream::SetOutput(TDes8& aOutputData)
sl@0
    41
	{
sl@0
    42
	iOutputPointer = STATIC_CAST(Bytef* ,CONST_CAST(TUint8 *,aOutputData.Ptr()));
sl@0
    43
	iOutputBufferLength = aOutputData.MaxSize();
sl@0
    44
	iStream.avail_out = iOutputBufferLength;
sl@0
    45
	iStream.next_out = iOutputPointer;
sl@0
    46
	}
sl@0
    47
sl@0
    48
/**
sl@0
    49
Return the progress of the current operation - that is the percentage of bytes written / read
sl@0
    50
sl@0
    51
@param aTotalLength the total number of bytes to read / write
sl@0
    52
@return the progress as a percentage - the number of bytes written / read out of the total target
sl@0
    53
*/
sl@0
    54
EXPORT_C TInt CEZZStream::Progress(TInt aTotalLength) const
sl@0
    55
	{
sl@0
    56
	return (aTotalLength == 0) ? 100 : ((iStream.total_in  * 100) / aTotalLength);
sl@0
    57
	}
sl@0
    58
sl@0
    59
/**
sl@0
    60
Return the total number of bytes output so far
sl@0
    61
sl@0
    62
@return the total number of bytes output so far
sl@0
    63
*/
sl@0
    64
EXPORT_C TInt CEZZStream::TotalOut() const
sl@0
    65
	{
sl@0
    66
	return iStream.total_out;
sl@0
    67
	}
sl@0
    68
sl@0
    69
/**
sl@0
    70
Return the total number of input bytes read so far
sl@0
    71
sl@0
    72
@return the total number of input bytes read so far
sl@0
    73
*/
sl@0
    74
EXPORT_C TInt CEZZStream::TotalIn() const
sl@0
    75
	{
sl@0
    76
	return iStream.total_in;
sl@0
    77
	}
sl@0
    78
sl@0
    79
/**
sl@0
    80
Return the value of the uncompressed data
sl@0
    81
sl@0
    82
@return the value of the uncompressed data
sl@0
    83
*/
sl@0
    84
EXPORT_C TInt32 CEZZStream::Adler32() const
sl@0
    85
	{
sl@0
    86
	return iStream.adler;
sl@0
    87
	}
sl@0
    88
sl@0
    89
/**
sl@0
    90
Return the number of bytes available at the next input byte
sl@0
    91
sl@0
    92
@return the number of bytes available at the next input byte
sl@0
    93
*/
sl@0
    94
EXPORT_C TInt CEZZStream::AvailIn() const
sl@0
    95
	{
sl@0
    96
	return iStream.avail_in;
sl@0
    97
	}
sl@0
    98
sl@0
    99
/**
sl@0
   100
Return the remaining free space at next output byte target
sl@0
   101
sl@0
   102
@return the remaining free space at next output byte target
sl@0
   103
*/
sl@0
   104
EXPORT_C TInt CEZZStream::AvailOut() const
sl@0
   105
	{
sl@0
   106
	return iStream.avail_out;
sl@0
   107
	}
sl@0
   108
sl@0
   109
/**
sl@0
   110
Return a decriptor pointer to the output buffer
sl@0
   111
sl@0
   112
@return a decriptor pointer to the output buffer
sl@0
   113
*/
sl@0
   114
EXPORT_C TPtrC8 CEZZStream::OutputDescriptor() const
sl@0
   115
	{
sl@0
   116
	return TPtrC8(iOutputPointer,iOutputBufferLength - iStream.avail_out);
sl@0
   117
	}
sl@0
   118