1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/compressionlibs/ziplib/test/oldezlib/EZLib/FileBuffer.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,106 @@
1.4 +// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include "OldEZFilebuffer.h"
1.20 +#include "OldEZstream.h"
1.21 +
1.22 +using namespace TOLDEZLIB;
1.23 +
1.24 +_LIT(KFileBuffer,"FileBuffer");
1.25 +
1.26 +void CEZFileBufferManager::ConstructL(TInt aBufferSize)
1.27 + {
1.28 + __ASSERT_ALWAYS(aBufferSize > 0, User::Panic(KFileBuffer, EBadInitialization));
1.29 +
1.30 + iBufferSize = aBufferSize;
1.31 +
1.32 + iInputBuffer = new (ELeave) TUint8[iBufferSize];
1.33 + iOutputBuffer = new (ELeave) TUint8[iBufferSize];
1.34 +
1.35 + iInputDescriptor.Set(iInputBuffer,0,iBufferSize);
1.36 + iOutputDescriptor.Set(iOutputBuffer,0,iBufferSize);
1.37 + }
1.38 +
1.39 +CEZFileBufferManager::~CEZFileBufferManager()
1.40 + {
1.41 + delete[] iInputBuffer;
1.42 + delete[] iOutputBuffer;
1.43 + }
1.44 +
1.45 +CEZFileBufferManager::CEZFileBufferManager(RFile &aInput, RFile &aOutput) :
1.46 + iInputFile(aInput), iOutputFile(aOutput), iInputDescriptor(NULL,0), iOutputDescriptor(NULL,0)
1.47 + {
1.48 +
1.49 + }
1.50 +
1.51 +/**
1.52 +Creates a new CEZFileBufferManager object and leave it on the CleanupStack
1.53 +
1.54 +@param aInput the input file
1.55 +@param aOutput the output file
1.56 +@param aBufferSize the required size of the buffers
1.57 +@return the new CEZFileBufferManager object, on the CleanupStack
1.58 +*/
1.59 +EXPORT_C CEZFileBufferManager* CEZFileBufferManager::NewLC(RFile &aInput, RFile &aOutput, TInt aBufferSize)
1.60 + {
1.61 + CEZFileBufferManager *fb = new (ELeave) CEZFileBufferManager(aInput,aOutput);
1.62 + CleanupStack::PushL(fb);
1.63 + fb->ConstructL(aBufferSize);
1.64 + return fb;
1.65 + }
1.66 +
1.67 +/**
1.68 +Creates a new CEZFileBufferManager object
1.69 +
1.70 +@param aInput the input file
1.71 +@param aOutput the output file
1.72 +@param aBufferSize the required size of the buffers
1.73 +@return the new CEZFileBufferManager object
1.74 +*/
1.75 +EXPORT_C CEZFileBufferManager* CEZFileBufferManager::NewL(RFile &aInput, RFile &aOutput, TInt aBufferSize)
1.76 + {
1.77 + CEZFileBufferManager *fb = new (ELeave) CEZFileBufferManager(aInput,aOutput);
1.78 + CleanupStack::PushL(fb);
1.79 + fb->ConstructL(aBufferSize);
1.80 + CleanupStack::Pop();
1.81 + return fb;
1.82 + }
1.83 +
1.84 +
1.85 +void CEZFileBufferManager::InitializeL(CEZZStream &aZStream)
1.86 + {
1.87 + User::LeaveIfError(iInputFile.Read(iInputDescriptor));
1.88 + aZStream.SetInput(iInputDescriptor);
1.89 + aZStream.SetOutput(iOutputDescriptor);
1.90 + }
1.91 +
1.92 +void CEZFileBufferManager::NeedInputL(CEZZStream &aZStream)
1.93 + {
1.94 + User::LeaveIfError(iInputFile.Read(iInputDescriptor));
1.95 + aZStream.SetInput(iInputDescriptor);
1.96 + }
1.97 +
1.98 +void CEZFileBufferManager::NeedOutputL(CEZZStream &aZStream)
1.99 + {
1.100 + TPtrC8 od = aZStream.OutputDescriptor();
1.101 + User::LeaveIfError(iOutputFile.Write(od));
1.102 + aZStream.SetOutput(iOutputDescriptor);
1.103 + }
1.104 +
1.105 +void CEZFileBufferManager::FinalizeL(CEZZStream &aZStream)
1.106 + {
1.107 + TPtrC8 od = aZStream.OutputDescriptor();
1.108 + User::LeaveIfError(iOutputFile.Write(od));
1.109 + }