os/persistentdata/persistentstorage/store/USTOR/UT_MAP.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 "UT_STD.H"
sl@0
    17
sl@0
    18
//#pragma message( __FILE__ " : Find helper function may be less code." )
sl@0
    19
sl@0
    20
const TInt KStoreMapGranularity=4;
sl@0
    21
sl@0
    22
EXPORT_C CStoreMap* CStoreMap::NewL(CStreamStore& aStore)
sl@0
    23
/** Allocates and constructs a store map associated with the specified store and 
sl@0
    24
returns a pointer to that store map.
sl@0
    25
sl@0
    26
The function leaves if it cannot complete successfully.
sl@0
    27
sl@0
    28
@param aStore A reference to the store associated with this store map.
sl@0
    29
@return A pointer to the new store map object. */
sl@0
    30
	{
sl@0
    31
	return new(ELeave) CStoreMap(aStore);
sl@0
    32
	}
sl@0
    33
sl@0
    34
EXPORT_C CStoreMap* CStoreMap::NewLC(CStreamStore& aStore)
sl@0
    35
/** Allocates and constructs a store map associated with the specified store, returns 
sl@0
    36
a pointer to that store map and puts the pointer onto the cleanup stack.
sl@0
    37
sl@0
    38
The function leaves if it cannot complete successfully.
sl@0
    39
sl@0
    40
Placing a pointer to this object onto the cleanup stack allows the object 
sl@0
    41
and allocated resources to be cleaned up if a subsequent leave occurs.
sl@0
    42
sl@0
    43
@param aStore A reference to the store associated with this store map.
sl@0
    44
@return A pointer to the new store map object. */
sl@0
    45
	{
sl@0
    46
	CStoreMap* map=NewL(aStore);
sl@0
    47
	CleanupStack::PushL(map);
sl@0
    48
	return map;
sl@0
    49
	}
sl@0
    50
sl@0
    51
EXPORT_C CStoreMap::CStoreMap(CStreamStore& aStore)
sl@0
    52
	: iArray(KStoreMapGranularity),iFree(KNullStreamId),iStore(&aStore)
sl@0
    53
	{}
sl@0
    54
sl@0
    55
EXPORT_C CStoreMap::~CStoreMap()
sl@0
    56
/** Frees resources owned by the object, prior to its destruction.
sl@0
    57
sl@0
    58
In particular, the destructor deletes all streams whose stream ids are currently 
sl@0
    59
held within the store map and then empties the store map. */
sl@0
    60
	{
sl@0
    61
	ResetAndDestroy();
sl@0
    62
	}
sl@0
    63
sl@0
    64
EXPORT_C void CStoreMap::BindL(TSwizzleC<TAny> aSwizzle,TStreamId anId)
sl@0
    65
/** Creates an entry in the store map to contain the specified stream id and an 
sl@0
    66
associated swizzle. On return from this function, the stream id is said to 
sl@0
    67
be bound to the swizzle.
sl@0
    68
sl@0
    69
If the store map already contains an entry with the same swizzle, then the 
sl@0
    70
new entry replaces the existing entry; in effect, knowledge of the original 
sl@0
    71
stream id associated with aSwizzle, is lost.
sl@0
    72
sl@0
    73
Callers of this function can pass any type of swizzle as the first parameter, 
sl@0
    74
i.e. any swizzle derived from TSwizzleCBase. The required TSwizzleC<TAny> 
sl@0
    75
object is constructed from the swizzle passed by the caller.
sl@0
    76
sl@0
    77
Note that in most applications, callers pass a general swizzle, i.e. an object 
sl@0
    78
of type TSwizzle<class T>, where T is the type of object represented by that 
sl@0
    79
swizzle.
sl@0
    80
sl@0
    81
@param aSwizzle Any swizzle derived from TSwizzleCBase.
sl@0
    82
@param anId The stream id to be bound to the swizzle. */
sl@0
    83
	{
sl@0
    84
	__ASSERT_DEBUG(aSwizzle!=NULL||anId==KNullStreamId,Panic(EStoreMapSwizzleMissing));
sl@0
    85
	if (aSwizzle==NULL)
sl@0
    86
		return;
sl@0
    87
//
sl@0
    88
	__ASSERT_DEBUG(anId!=KNullStreamId,Panic(EStoreMapIdMissing));
sl@0
    89
	__DEBUG(TSwizzleC<TAny> label=Label(anId));
sl@0
    90
	__ASSERT_DEBUG(label==NULL||label==aSwizzle,Panic(EStoreMapIntroducingAlias));
sl@0
    91
	TEntry entry;
sl@0
    92
	entry.swizzle=aSwizzle;
sl@0
    93
	TKeyArrayFix key(_FOFF(TEntry,swizzle),ECmpTUint32);
sl@0
    94
	TInt i;
sl@0
    95
	if (iArray.FindIsq(entry,key,i)==0)
sl@0
    96
		{
sl@0
    97
		iArray[i].id=anId;
sl@0
    98
		return;
sl@0
    99
		}
sl@0
   100
//
sl@0
   101
	__ASSERT_DEBUG(iFree==KNullStreamId,Panic(EStoreMapFreeIdPresent));
sl@0
   102
	iFree=entry.id=anId;
sl@0
   103
	iArray.InsertL(i,entry);
sl@0
   104
	iFree=KNullStreamId;
sl@0
   105
	}
sl@0
   106
sl@0
   107
EXPORT_C void CStoreMap::Unbind(TSwizzleC<TAny> aSwizzle)
sl@0
   108
/** Deletes the first entry from the store map corresponding to the specified swizzle.
sl@0
   109
sl@0
   110
On return from this function, the swizzle is said to be unbound and knowledge 
sl@0
   111
of the associated stream id is lost.
sl@0
   112
sl@0
   113
Callers of this function can pass any type of swizzle as the parameter, i.e. 
sl@0
   114
any swizzle derived from TSwizzleCBase. The required TSwizzleC<TAny> object 
sl@0
   115
is constructed from the swizzle passed by the caller.
sl@0
   116
sl@0
   117
Notes:
sl@0
   118
sl@0
   119
In most applications, callers pass a general swizzle, i.e. an object of type 
sl@0
   120
TSwizzle<class T>, where T is the type of object represented by that swizzle.
sl@0
   121
sl@0
   122
If no matching entry can be found in the store map, then the store map remains 
sl@0
   123
unaltered.
sl@0
   124
sl@0
   125
@param aSwizzle Any swizzle derived from TSwizzleCBase. */
sl@0
   126
	{
sl@0
   127
	TEntry entry;
sl@0
   128
	entry.swizzle=aSwizzle;
sl@0
   129
	TKeyArrayFix key(_FOFF(TEntry,swizzle),ECmpTUint32);
sl@0
   130
	TInt i;
sl@0
   131
	if (iArray.FindIsq(entry,key,i)==0)
sl@0
   132
		iArray.Delete(i);
sl@0
   133
	}
sl@0
   134
sl@0
   135
EXPORT_C void CStoreMap::Forget(TStreamId anId)
sl@0
   136
/** Deletes an entry from the store map. The entry selected is the first one whose 
sl@0
   137
stream id matches the specified stream id.
sl@0
   138
sl@0
   139
On return from this function, the stream id is said to be forgotten and knowledge 
sl@0
   140
of that stream id is lost.
sl@0
   141
sl@0
   142
@param anId The stream id used to identify the entry in the store map to be 
sl@0
   143
deleted. */
sl@0
   144
	{
sl@0
   145
	if (anId==iFree)
sl@0
   146
		{
sl@0
   147
		iFree=KNullStreamId;
sl@0
   148
		return;
sl@0
   149
		}
sl@0
   150
//
sl@0
   151
	TEntry entry;
sl@0
   152
	entry.id=anId;
sl@0
   153
	TKeyArrayFix key(_FOFF(TEntry,id),ECmpTUint32);
sl@0
   154
	TInt i;
sl@0
   155
	if (iArray.Find(entry,key,i)==0)
sl@0
   156
		iArray.Delete(i);
sl@0
   157
	}
sl@0
   158
sl@0
   159
EXPORT_C void CStoreMap::Reset()
sl@0
   160
/** Deletes all entries from the store map.
sl@0
   161
sl@0
   162
It is important that this function is called before deleting the store map, 
sl@0
   163
as the destructor attempts to delete all streams whose stream ids are held 
sl@0
   164
within the map. */
sl@0
   165
	{
sl@0
   166
	iFree=KNullStreamId;
sl@0
   167
	iArray.Reset();
sl@0
   168
	}
sl@0
   169
sl@0
   170
EXPORT_C void CStoreMap::ResetAndDestroy()
sl@0
   171
/** Deletes all streams whose ids are held within the store map, and then empties 
sl@0
   172
the store map. */
sl@0
   173
	{
sl@0
   174
	iStore->Delete(iFree);
sl@0
   175
	for (TIterator iter=Begin(),end=End();iter!=end;++iter)
sl@0
   176
		{
sl@0
   177
		const TEntry& entry=*iter;
sl@0
   178
		iStore->Delete(entry.id);
sl@0
   179
		}
sl@0
   180
	Reset();
sl@0
   181
	}
sl@0
   182
sl@0
   183
EXPORT_C TStreamId CStoreMap::At(TSwizzleC<TAny> aSwizzle) const
sl@0
   184
/** Returns the stream id of the first entry the store map matching the specified 
sl@0
   185
swizzle.
sl@0
   186
sl@0
   187
Callers of this function can pass any type of swizzle as the first parameter, 
sl@0
   188
i.e. any swizzle derived from TSwizzleCBase. The required TSwizzleC<TAny> 
sl@0
   189
object is constructed from the swizzle passed by the caller.
sl@0
   190
sl@0
   191
@param aSwizzle Any type of swizzle derived from TSwizzleCBase.
sl@0
   192
@return The required streamid.KNullStreamId, if no matching entry can be found. */
sl@0
   193
	{
sl@0
   194
	TEntry entry;
sl@0
   195
	entry.swizzle=aSwizzle;
sl@0
   196
	TKeyArrayFix key(_FOFF(TEntry,swizzle),ECmpTUint32);
sl@0
   197
	TInt i;
sl@0
   198
	if (iArray.FindIsq(entry,key,i)!=0)
sl@0
   199
		return KNullStreamId;
sl@0
   200
//
sl@0
   201
	return iArray[i].id;
sl@0
   202
	}
sl@0
   203
sl@0
   204
EXPORT_C TSwizzleC<TAny> CStoreMap::Label(TStreamId anId) const
sl@0
   205
/** Returns the swizzle in the store map assocated with the specified stream id.
sl@0
   206
sl@0
   207
@param anId The id of the stream
sl@0
   208
@return The associated swizzle. If there is no matching swizzle, then this 
sl@0
   209
is an uninitialized swizzle. */
sl@0
   210
	{
sl@0
   211
	TEntry entry;
sl@0
   212
	entry.id=anId;
sl@0
   213
	TKeyArrayFix key(_FOFF(TEntry,id),ECmpTUint32);
sl@0
   214
	TInt i;
sl@0
   215
	if (iArray.Find(entry,key,i)!=0)
sl@0
   216
		return NULL;
sl@0
   217
//
sl@0
   218
	return iArray[i].swizzle;
sl@0
   219
	}
sl@0
   220
sl@0
   221
EXPORT_C CStoreMap::TIterator CStoreMap::Begin() const
sl@0
   222
//
sl@0
   223
// Return the starting iterator for map iteration.
sl@0
   224
//
sl@0
   225
	{
sl@0
   226
	return (iArray.Count()==0)?NULL:&iArray[0];
sl@0
   227
	}
sl@0
   228
sl@0
   229
EXPORT_C CStoreMap::TIterator CStoreMap::End() const
sl@0
   230
//
sl@0
   231
// Return the end iterator for map iteration.
sl@0
   232
//
sl@0
   233
	{
sl@0
   234
	return Begin()+iArray.Count();
sl@0
   235
	}
sl@0
   236
sl@0
   237
void CStoreMap::ExternalizeL(const TStreamRef& aRef,RWriteStream& aStream) const
sl@0
   238
//
sl@0
   239
// Write the stream id bound to aRef to aStream.
sl@0
   240
//
sl@0
   241
	{
sl@0
   242
	TSwizzleC<TAny> swizzle=aRef;
sl@0
   243
	TStreamId id=At(swizzle);
sl@0
   244
	if (id==KNullStreamId&&swizzle!=NULL)
sl@0
   245
		__LEAVE(KErrNotFound);
sl@0
   246
//
sl@0
   247
	aStream<<id;
sl@0
   248
	}
sl@0
   249