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 |
// @internalComponent
|
sl@0
|
15 |
// @prototype
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef GZIPBUFMGR_H
|
sl@0
|
19 |
#define GZIPBUFMGR_H
|
sl@0
|
20 |
|
sl@0
|
21 |
//-----------------------------------------------------------------------------
|
sl@0
|
22 |
#include <e32base.h>
|
sl@0
|
23 |
#include <ezbufman.h>
|
sl@0
|
24 |
#include <ezgzip.h>
|
sl@0
|
25 |
#include <s32mem.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
//-----------------------------------------------------------------------------
|
sl@0
|
28 |
class CGzipStream;
|
sl@0
|
29 |
class RMemReadStream;
|
sl@0
|
30 |
|
sl@0
|
31 |
//-----------------------------------------------------------------------------
|
sl@0
|
32 |
class GZipBufMgr : public MEZBufferManager
|
sl@0
|
33 |
{
|
sl@0
|
34 |
public:
|
sl@0
|
35 |
// Constructor and Destructor
|
sl@0
|
36 |
static GZipBufMgr* NewL(TPtrC8 in);
|
sl@0
|
37 |
virtual ~GZipBufMgr();
|
sl@0
|
38 |
|
sl@0
|
39 |
// Overridden virtual methods from MEZBufferManager
|
sl@0
|
40 |
void InitializeL(CEZZStream &aZStream);
|
sl@0
|
41 |
void NeedInputL(CEZZStream &aZStream);
|
sl@0
|
42 |
void NeedOutputL(CEZZStream &aZStream);
|
sl@0
|
43 |
void FinalizeL(CEZZStream &aZStream);
|
sl@0
|
44 |
|
sl@0
|
45 |
// Public methods
|
sl@0
|
46 |
void ReadGZipHeaderL(TEZGZipHeader& aHeader);
|
sl@0
|
47 |
void ReadStringIntoDescriptorL(RMemReadStream& aMem, HBufC8 **aDes) const;
|
sl@0
|
48 |
void SetGZipBuffer(TPtrC8 data);
|
sl@0
|
49 |
|
sl@0
|
50 |
private:
|
sl@0
|
51 |
void ConstructL();
|
sl@0
|
52 |
GZipBufMgr(TPtrC8 in);
|
sl@0
|
53 |
|
sl@0
|
54 |
// Always points to start of the input Buffer
|
sl@0
|
55 |
TPtrC8 iInput;
|
sl@0
|
56 |
|
sl@0
|
57 |
// Always points to start of the output Buffer
|
sl@0
|
58 |
TPtr8 iOutputDes;
|
sl@0
|
59 |
HBufC8* iOutput;
|
sl@0
|
60 |
|
sl@0
|
61 |
// Used by the virtual methods from MEZBufferManager
|
sl@0
|
62 |
TBool iNeedInput;
|
sl@0
|
63 |
TBool iNeedOutput;
|
sl@0
|
64 |
TBool iFinalized;
|
sl@0
|
65 |
|
sl@0
|
66 |
// Marks the start of the data, after the header
|
sl@0
|
67 |
TUint iOffset;
|
sl@0
|
68 |
|
sl@0
|
69 |
// Magic GZip numbers
|
sl@0
|
70 |
TUint8 iID1;
|
sl@0
|
71 |
TUint8 iID2;
|
sl@0
|
72 |
};
|
sl@0
|
73 |
|
sl@0
|
74 |
#endif // GZIPBUFMGR_H
|