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