1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/compressionlibs/ziplib/test/oldezlib/EZLib/zstream.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,118 @@
1.4 +// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include "OldEZstream.h"
1.20 +using namespace TOLDEZLIB;
1.21 +
1.22 +CEZZStream::CEZZStream() : iOutputPointer(NULL), iOutputBufferLength(0)
1.23 + {
1.24 +
1.25 + }
1.26 +
1.27 +/**
1.28 +Set the stream's input buffer
1.29 +
1.30 +@param aInputData the input buffer for this stream
1.31 +*/
1.32 +EXPORT_C void CEZZStream::SetInput(const TDesC8& aInputData)
1.33 + {
1.34 + iStream.avail_in = aInputData.Size();
1.35 + iStream.next_in = STATIC_CAST(Bytef* ,CONST_CAST(TUint8 *,aInputData.Ptr()));
1.36 + }
1.37 +
1.38 +/**
1.39 +Set the stream's output buffer
1.40 +
1.41 +@param aOutputData the output buffer for this stream
1.42 +*/
1.43 +EXPORT_C void CEZZStream::SetOutput(TDes8& aOutputData)
1.44 + {
1.45 + iOutputPointer = STATIC_CAST(Bytef* ,CONST_CAST(TUint8 *,aOutputData.Ptr()));
1.46 + iOutputBufferLength = aOutputData.MaxSize();
1.47 + iStream.avail_out = iOutputBufferLength;
1.48 + iStream.next_out = iOutputPointer;
1.49 + }
1.50 +
1.51 +/**
1.52 +Return the progress of the current operation - that is the percentage of bytes written / read
1.53 +
1.54 +@param aTotalLength the total number of bytes to read / write
1.55 +@return the progress as a percentage - the number of bytes written / read out of the total target
1.56 +*/
1.57 +EXPORT_C TInt CEZZStream::Progress(TInt aTotalLength) const
1.58 + {
1.59 + return (aTotalLength == 0) ? 100 : ((iStream.total_in * 100) / aTotalLength);
1.60 + }
1.61 +
1.62 +/**
1.63 +Return the total number of bytes output so far
1.64 +
1.65 +@return the total number of bytes output so far
1.66 +*/
1.67 +EXPORT_C TInt CEZZStream::TotalOut() const
1.68 + {
1.69 + return iStream.total_out;
1.70 + }
1.71 +
1.72 +/**
1.73 +Return the total number of input bytes read so far
1.74 +
1.75 +@return the total number of input bytes read so far
1.76 +*/
1.77 +EXPORT_C TInt CEZZStream::TotalIn() const
1.78 + {
1.79 + return iStream.total_in;
1.80 + }
1.81 +
1.82 +/**
1.83 +Return the value of the uncompressed data
1.84 +
1.85 +@return the value of the uncompressed data
1.86 +*/
1.87 +EXPORT_C TInt32 CEZZStream::Adler32() const
1.88 + {
1.89 + return iStream.adler;
1.90 + }
1.91 +
1.92 +/**
1.93 +Return the number of bytes available at the next input byte
1.94 +
1.95 +@return the number of bytes available at the next input byte
1.96 +*/
1.97 +EXPORT_C TInt CEZZStream::AvailIn() const
1.98 + {
1.99 + return iStream.avail_in;
1.100 + }
1.101 +
1.102 +/**
1.103 +Return the remaining free space at next output byte target
1.104 +
1.105 +@return the remaining free space at next output byte target
1.106 +*/
1.107 +EXPORT_C TInt CEZZStream::AvailOut() const
1.108 + {
1.109 + return iStream.avail_out;
1.110 + }
1.111 +
1.112 +/**
1.113 +Return a decriptor pointer to the output buffer
1.114 +
1.115 +@return a decriptor pointer to the output buffer
1.116 +*/
1.117 +EXPORT_C TPtrC8 CEZZStream::OutputDescriptor() const
1.118 + {
1.119 + return TPtrC8(iOutputPointer,iOutputBufferLength - iStream.avail_out);
1.120 + }
1.121 +