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 "OldEZFilebuffer.h"
|
sl@0
|
17 |
#include "OldEZstream.h"
|
sl@0
|
18 |
|
sl@0
|
19 |
using namespace TOLDEZLIB;
|
sl@0
|
20 |
|
sl@0
|
21 |
_LIT(KFileBuffer,"FileBuffer");
|
sl@0
|
22 |
|
sl@0
|
23 |
void CEZFileBufferManager::ConstructL(TInt aBufferSize)
|
sl@0
|
24 |
{
|
sl@0
|
25 |
__ASSERT_ALWAYS(aBufferSize > 0, User::Panic(KFileBuffer, EBadInitialization));
|
sl@0
|
26 |
|
sl@0
|
27 |
iBufferSize = aBufferSize;
|
sl@0
|
28 |
|
sl@0
|
29 |
iInputBuffer = new (ELeave) TUint8[iBufferSize];
|
sl@0
|
30 |
iOutputBuffer = new (ELeave) TUint8[iBufferSize];
|
sl@0
|
31 |
|
sl@0
|
32 |
iInputDescriptor.Set(iInputBuffer,0,iBufferSize);
|
sl@0
|
33 |
iOutputDescriptor.Set(iOutputBuffer,0,iBufferSize);
|
sl@0
|
34 |
}
|
sl@0
|
35 |
|
sl@0
|
36 |
CEZFileBufferManager::~CEZFileBufferManager()
|
sl@0
|
37 |
{
|
sl@0
|
38 |
delete[] iInputBuffer;
|
sl@0
|
39 |
delete[] iOutputBuffer;
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
CEZFileBufferManager::CEZFileBufferManager(RFile &aInput, RFile &aOutput) :
|
sl@0
|
43 |
iInputFile(aInput), iOutputFile(aOutput), iInputDescriptor(NULL,0), iOutputDescriptor(NULL,0)
|
sl@0
|
44 |
{
|
sl@0
|
45 |
|
sl@0
|
46 |
}
|
sl@0
|
47 |
|
sl@0
|
48 |
/**
|
sl@0
|
49 |
Creates a new CEZFileBufferManager object and leave it on the CleanupStack
|
sl@0
|
50 |
|
sl@0
|
51 |
@param aInput the input file
|
sl@0
|
52 |
@param aOutput the output file
|
sl@0
|
53 |
@param aBufferSize the required size of the buffers
|
sl@0
|
54 |
@return the new CEZFileBufferManager object, on the CleanupStack
|
sl@0
|
55 |
*/
|
sl@0
|
56 |
EXPORT_C CEZFileBufferManager* CEZFileBufferManager::NewLC(RFile &aInput, RFile &aOutput, TInt aBufferSize)
|
sl@0
|
57 |
{
|
sl@0
|
58 |
CEZFileBufferManager *fb = new (ELeave) CEZFileBufferManager(aInput,aOutput);
|
sl@0
|
59 |
CleanupStack::PushL(fb);
|
sl@0
|
60 |
fb->ConstructL(aBufferSize);
|
sl@0
|
61 |
return fb;
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
/**
|
sl@0
|
65 |
Creates a new CEZFileBufferManager object
|
sl@0
|
66 |
|
sl@0
|
67 |
@param aInput the input file
|
sl@0
|
68 |
@param aOutput the output file
|
sl@0
|
69 |
@param aBufferSize the required size of the buffers
|
sl@0
|
70 |
@return the new CEZFileBufferManager object
|
sl@0
|
71 |
*/
|
sl@0
|
72 |
EXPORT_C CEZFileBufferManager* CEZFileBufferManager::NewL(RFile &aInput, RFile &aOutput, TInt aBufferSize)
|
sl@0
|
73 |
{
|
sl@0
|
74 |
CEZFileBufferManager *fb = new (ELeave) CEZFileBufferManager(aInput,aOutput);
|
sl@0
|
75 |
CleanupStack::PushL(fb);
|
sl@0
|
76 |
fb->ConstructL(aBufferSize);
|
sl@0
|
77 |
CleanupStack::Pop();
|
sl@0
|
78 |
return fb;
|
sl@0
|
79 |
}
|
sl@0
|
80 |
|
sl@0
|
81 |
|
sl@0
|
82 |
void CEZFileBufferManager::InitializeL(CEZZStream &aZStream)
|
sl@0
|
83 |
{
|
sl@0
|
84 |
User::LeaveIfError(iInputFile.Read(iInputDescriptor));
|
sl@0
|
85 |
aZStream.SetInput(iInputDescriptor);
|
sl@0
|
86 |
aZStream.SetOutput(iOutputDescriptor);
|
sl@0
|
87 |
}
|
sl@0
|
88 |
|
sl@0
|
89 |
void CEZFileBufferManager::NeedInputL(CEZZStream &aZStream)
|
sl@0
|
90 |
{
|
sl@0
|
91 |
User::LeaveIfError(iInputFile.Read(iInputDescriptor));
|
sl@0
|
92 |
aZStream.SetInput(iInputDescriptor);
|
sl@0
|
93 |
}
|
sl@0
|
94 |
|
sl@0
|
95 |
void CEZFileBufferManager::NeedOutputL(CEZZStream &aZStream)
|
sl@0
|
96 |
{
|
sl@0
|
97 |
TPtrC8 od = aZStream.OutputDescriptor();
|
sl@0
|
98 |
User::LeaveIfError(iOutputFile.Write(od));
|
sl@0
|
99 |
aZStream.SetOutput(iOutputDescriptor);
|
sl@0
|
100 |
}
|
sl@0
|
101 |
|
sl@0
|
102 |
void CEZFileBufferManager::FinalizeL(CEZZStream &aZStream)
|
sl@0
|
103 |
{
|
sl@0
|
104 |
TPtrC8 od = aZStream.OutputDescriptor();
|
sl@0
|
105 |
User::LeaveIfError(iOutputFile.Write(od));
|
sl@0
|
106 |
}
|