sl@0
|
1 |
// Copyright (c) 1999-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 |
// Declaration for CEZStream class.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __EZZSTREAM_H__
|
sl@0
|
19 |
#define __EZZSTREAM_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <e32base.h>
|
sl@0
|
22 |
#include <ezlib.h>
|
sl@0
|
23 |
#include <ezliberrorcodes.h>
|
sl@0
|
24 |
|
sl@0
|
25 |
/**
|
sl@0
|
26 |
Represents a zip stream
|
sl@0
|
27 |
|
sl@0
|
28 |
@publishedAll
|
sl@0
|
29 |
@released
|
sl@0
|
30 |
*/
|
sl@0
|
31 |
class CEZZStream : public CBase
|
sl@0
|
32 |
{
|
sl@0
|
33 |
public:
|
sl@0
|
34 |
/** stream panic values */
|
sl@0
|
35 |
enum
|
sl@0
|
36 |
{
|
sl@0
|
37 |
EStreamError = -Z_STREAM_ERROR,
|
sl@0
|
38 |
EDataError = -Z_DATA_ERROR,
|
sl@0
|
39 |
EBufError = -Z_BUF_ERROR,
|
sl@0
|
40 |
EVersionError = -Z_VERSION_ERROR,
|
sl@0
|
41 |
EUnexpected
|
sl@0
|
42 |
};
|
sl@0
|
43 |
public:
|
sl@0
|
44 |
IMPORT_C void SetInput(const TDesC8& aInputData);
|
sl@0
|
45 |
IMPORT_C void SetOutput(TDes8& aOutputData);
|
sl@0
|
46 |
|
sl@0
|
47 |
IMPORT_C TPtrC8 OutputDescriptor() const;
|
sl@0
|
48 |
IMPORT_C TInt TotalOut() const;
|
sl@0
|
49 |
IMPORT_C TInt TotalIn() const;
|
sl@0
|
50 |
IMPORT_C TInt32 Adler32() const;
|
sl@0
|
51 |
IMPORT_C TInt AvailIn() const;
|
sl@0
|
52 |
IMPORT_C TInt AvailOut() const;
|
sl@0
|
53 |
|
sl@0
|
54 |
IMPORT_C TInt Progress(TInt aTotalLength) const;
|
sl@0
|
55 |
|
sl@0
|
56 |
protected:
|
sl@0
|
57 |
CEZZStream();
|
sl@0
|
58 |
|
sl@0
|
59 |
|
sl@0
|
60 |
protected:
|
sl@0
|
61 |
z_stream iStream;
|
sl@0
|
62 |
|
sl@0
|
63 |
// This pointer is reset every time SetOutput is called. It maintains a pointer to the
|
sl@0
|
64 |
// start of the output buffer which is being written to. We cannot use iStream.next_out,
|
sl@0
|
65 |
// because zlib will modifify this during its deflate and inflate.
|
sl@0
|
66 |
|
sl@0
|
67 |
TUint8* iOutputPointer;
|
sl@0
|
68 |
TInt iOutputBufferLength;
|
sl@0
|
69 |
};
|
sl@0
|
70 |
|
sl@0
|
71 |
#endif
|