os/persistentdata/persistentstorage/store/UMEM/UM_STOR.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) 1998-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 "UM_STD.H"
sl@0
    17
sl@0
    18
const TUint32 KFirstStreamIdValue=KNullStreamIdValue+1;
sl@0
    19
const TInt KBufStoreGranularity=4;
sl@0
    20
sl@0
    21
EXPORT_C CBufStore* CBufStore::NewL(TInt anExpandSize)
sl@0
    22
/** Allocates and constructs a new in-memory store and returns a pointer to it.
sl@0
    23
sl@0
    24
@param anExpandSize The granularity of the buffers used in the implementation 
sl@0
    25
of the store. Each stream is contained in a separate CBufSeg buffer.
sl@0
    26
@return A pointer to the memory store object. */
sl@0
    27
	{
sl@0
    28
	return new(ELeave) CBufStore(anExpandSize);
sl@0
    29
	}
sl@0
    30
sl@0
    31
EXPORT_C CBufStore* CBufStore::NewLC(TInt anExpandSize)
sl@0
    32
/** Allocates and constructs a new in-memory store and returns a pointer to it, 
sl@0
    33
putting a pointer to the object onto the cleanup stack.
sl@0
    34
sl@0
    35
Putting a pointer to the object on the cleanup stack allows the object and 
sl@0
    36
allocated resources to be cleaned up if a subsequent leave occurs.
sl@0
    37
sl@0
    38
@param anExpandSize The granularity of the buffers used in the implementation 
sl@0
    39
of the store. Each stream is contained in a separate CBufSeg buffer.
sl@0
    40
@return A pointer to the memory store object. */
sl@0
    41
	{
sl@0
    42
	CBufStore* store=NewL(anExpandSize);
sl@0
    43
	CleanupStack::PushL(store);
sl@0
    44
	return store;
sl@0
    45
	}
sl@0
    46
sl@0
    47
EXPORT_C CBufStore::CBufStore(TInt anExpandSize)
sl@0
    48
//
sl@0
    49
// Construct a buffer store.
sl@0
    50
//
sl@0
    51
	: iBufArray(KBufStoreGranularity),iExpandSize(anExpandSize)
sl@0
    52
	{}
sl@0
    53
sl@0
    54
EXPORT_C CBufStore::~CBufStore()
sl@0
    55
/** Frees resources owned by the object, prior to its destruction. */
sl@0
    56
	{
sl@0
    57
	for (TInt i=0,n=iBufArray.Count(); i<n; i++)
sl@0
    58
		delete iBufArray[i];
sl@0
    59
	}
sl@0
    60
sl@0
    61
EXPORT_C TStreamId CBufStore::DoExtendL()
sl@0
    62
//
sl@0
    63
// Create a new buffer slot.
sl@0
    64
//
sl@0
    65
	{
sl@0
    66
	iBufArray.AppendL((CBufSeg*)NULL);
sl@0
    67
	return TStreamId(iBufArray.Count()-1+KFirstStreamIdValue);
sl@0
    68
	}
sl@0
    69
sl@0
    70
EXPORT_C void CBufStore::DoDeleteL(TStreamId anId)
sl@0
    71
//
sl@0
    72
// Delete the buffer at anId.
sl@0
    73
//
sl@0
    74
	{
sl@0
    75
	TInt i=anId.Value()-KFirstStreamIdValue;
sl@0
    76
	if (i<0||i>=iBufArray.Count())
sl@0
    77
		__LEAVE(KErrNotFound);
sl@0
    78
//
sl@0
    79
	CBufSeg*& buf=iBufArray[i];
sl@0
    80
	delete buf;
sl@0
    81
	buf=NULL;
sl@0
    82
	}
sl@0
    83
sl@0
    84
EXPORT_C MStreamBuf* CBufStore::DoReadL(TStreamId anId) const
sl@0
    85
//
sl@0
    86
// Open a stream for reading from the buffer at anId.
sl@0
    87
//
sl@0
    88
	{
sl@0
    89
	return HBufBuf::NewL(BufL(anId),0,HBufBuf::ERead);
sl@0
    90
	}
sl@0
    91
sl@0
    92
EXPORT_C MStreamBuf* CBufStore::DoCreateL(TStreamId& anId)
sl@0
    93
//
sl@0
    94
// Create a new buffer and open a stream for writing to it.
sl@0
    95
//
sl@0
    96
	{
sl@0
    97
	anId=DoExtendL();
sl@0
    98
	return HBufBuf::NewL(BufL(anId),0,HBufBuf::ERead|HBufBuf::EWrite);
sl@0
    99
	}
sl@0
   100
sl@0
   101
EXPORT_C MStreamBuf* CBufStore::DoWriteL(TStreamId anId)
sl@0
   102
//
sl@0
   103
// Open a stream for writing to the buffer at anId.
sl@0
   104
//
sl@0
   105
	{
sl@0
   106
	return HBufBuf::NewL(BufL(anId),0,HBufBuf::ERead|HBufBuf::EWrite);
sl@0
   107
	}
sl@0
   108
sl@0
   109
EXPORT_C MStreamBuf* CBufStore::DoReplaceL(TStreamId anId)
sl@0
   110
//
sl@0
   111
// Open a truncating stream for writing to the buffer at anId.
sl@0
   112
//
sl@0
   113
	{
sl@0
   114
	return HBufBuf::NewL(BufL(anId),0,HBufBuf::ERead|HBufBuf::ETruncate);
sl@0
   115
	}
sl@0
   116
sl@0
   117
CBufSeg& CBufStore::BufL(TStreamId anId) const
sl@0
   118
//
sl@0
   119
// Return this buffer store's buffer at anId.
sl@0
   120
//
sl@0
   121
	{
sl@0
   122
	TInt i=anId.Value()-KFirstStreamIdValue;
sl@0
   123
	if (i<0||i>=iBufArray.Count())
sl@0
   124
		__LEAVE(KErrNotFound);
sl@0
   125
//
sl@0
   126
	CBufSeg*& buf=CONST_CAST(CArrayFixFlat<CBufSeg*>&,iBufArray)[i];
sl@0
   127
	if (buf==NULL)
sl@0
   128
		buf=CBufSeg::NewL(iExpandSize);
sl@0
   129
	return *buf;
sl@0
   130
	}
sl@0
   131