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