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