1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/compressionlibs/ziplib/test/oldezlib/inc/OldEZFilebuffer.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,68 @@
1.4 +// Copyright (c) 1999-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 +// EZLib: FILEBUFFER.H
1.18 +// Declaration for FileBufferManager class which facilitates the aynchronous compression and
1.19 +// decompression of data streams.
1.20 +//
1.21 +//
1.22 +
1.23 +#ifndef __EZLIB_EZFILEBUFFERMANAGER_H__
1.24 +#define __EZLIB_EZFILEBUFFERMANAGER_H__
1.25 +
1.26 +#include <e32base.h>
1.27 +#include <f32file.h>
1.28 +
1.29 +#include "OldEZBufman.h"
1.30 +
1.31 +/**
1.32 +Concrete class to manage the input and output buffers for compression and de-compression
1.33 +
1.34 +@publishedAll
1.35 +@released
1.36 +*/
1.37 +namespace TOLDEZLIB
1.38 +{
1.39 +
1.40 +class CEZFileBufferManager : public CBase, public MEZBufferManager
1.41 + {
1.42 +public:
1.43 +
1.44 + enum { EBadInitialization = 1 };
1.45 +
1.46 +public:
1.47 + ~CEZFileBufferManager();
1.48 + IMPORT_C static CEZFileBufferManager* NewLC(RFile &aInput, RFile &aOutput, TInt aBufferSize = 0x8000);
1.49 + IMPORT_C static CEZFileBufferManager* NewL(RFile &aInput, RFile &aOutput, TInt aBufferSize = 0x8000);
1.50 +
1.51 + void InitializeL(CEZZStream &aZStream);
1.52 + void NeedInputL(CEZZStream &aZStream);
1.53 + void NeedOutputL(CEZZStream &aZStream);
1.54 + void FinalizeL(CEZZStream &aZStream);
1.55 +
1.56 +protected:
1.57 + void ConstructL(TInt aBufferSize);
1.58 + CEZFileBufferManager(RFile &aInput, RFile &aOutput);
1.59 +
1.60 +protected:
1.61 + RFile &iInputFile;
1.62 + RFile &iOutputFile;
1.63 + TInt iBufferSize;
1.64 + TUint8* iInputBuffer;
1.65 + TUint8* iOutputBuffer;
1.66 + TPtr8 iInputDescriptor; // always points to start of the input Buffer
1.67 + TPtr8 iOutputDescriptor; // always points to start of the output Buffer
1.68 + };
1.69 +
1.70 +} // namespace TOLDEZLIB
1.71 +#endif