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.
18 CEZZStream::CEZZStream() : iOutputPointer(NULL), iOutputBufferLength(0)
24 Set the stream's input buffer
26 @param aInputData the input buffer for this stream
28 EXPORT_C void CEZZStream::SetInput(const TDesC8& aInputData)
30 iStream.avail_in = aInputData.Size();
31 iStream.next_in = STATIC_CAST(Bytef* ,CONST_CAST(TUint8 *,aInputData.Ptr()));
35 Set the stream's output buffer
37 @param aOutputData the output buffer for this stream
39 EXPORT_C void CEZZStream::SetOutput(TDes8& aOutputData)
41 iOutputPointer = STATIC_CAST(Bytef* ,CONST_CAST(TUint8 *,aOutputData.Ptr()));
42 iOutputBufferLength = aOutputData.MaxSize();
43 iStream.avail_out = iOutputBufferLength;
44 iStream.next_out = iOutputPointer;
48 Return the progress of the current operation - that is the percentage of bytes written / read
50 @param aTotalLength the total number of bytes to read / write
51 @return the progress as a percentage - the number of bytes written / read out of the total target
53 EXPORT_C TInt CEZZStream::Progress(TInt aTotalLength) const
55 return (aTotalLength == 0) ? 100 : ((iStream.total_in * 100) / aTotalLength);
59 Return the total number of bytes output so far
61 @return the total number of bytes output so far
63 EXPORT_C TInt CEZZStream::TotalOut() const
65 return iStream.total_out;
69 Return the total number of input bytes read so far
71 @return the total number of input bytes read so far
73 EXPORT_C TInt CEZZStream::TotalIn() const
75 return iStream.total_in;
79 Return the value of the uncompressed data
81 @return the value of the uncompressed data
83 EXPORT_C TInt32 CEZZStream::Adler32() const
89 Return the number of bytes available at the next input byte
91 @return the number of bytes available at the next input byte
93 EXPORT_C TInt CEZZStream::AvailIn() const
95 return iStream.avail_in;
99 Return the remaining free space at next output byte target
101 @return the remaining free space at next output byte target
103 EXPORT_C TInt CEZZStream::AvailOut() const
105 return iStream.avail_out;
109 Return a decriptor pointer to the output buffer
111 @return a decriptor pointer to the output buffer
113 EXPORT_C TPtrC8 CEZZStream::OutputDescriptor() const
115 return TPtrC8(iOutputPointer,iOutputBufferLength - iStream.avail_out);