diff -r 000000000000 -r bde4ae8d615e os/persistentdata/persistentstorage/sql/SRC/Common/SqlMap.inl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/os/persistentdata/persistentstorage/sql/SRC/Common/SqlMap.inl Fri Jun 15 03:10:57 2012 +0200 @@ -0,0 +1,198 @@ +// Copyright (c) 2004-2010 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// RSqlMap template class implementation. +// //////////////////// TSqlPair implementation ////////////////////////////////// +// +// + +/** + + Initializes TSqlPair data members using the supplied parameter values. + + @param aKey Key part of TSqlPair object + @param aData Data part of TSqlPair object +*/ +template +TSqlPair::TSqlPair(const KEY& aKey, const DATA& aData) : + iKey(aKey), + iData(aData) + { + } + +/** +Initializes TSqlPair data members using the supplied parameter value. + +@param aKey Key part of TSqlPair object +*/ +template +TSqlPair::TSqlPair(const KEY& aKey) : + iKey(aKey) + { + } + +/** +Initializes TSqlPair data members with their default values. +*/ +template +TSqlPair::TSqlPair() + { + } + +/////////////////////////////////////////////////////////////////////////////////////////////////////////////// +/////////////////////// RSqlMap implementation /////////////////////////////////// +/////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/** +@param aOrder An object of TLinearOrder< TSqlPair > type, which will be used when +new elements are inserted into the collection (to determine their order). +@param aDestructor An object of TSqlPairDestructor type which will be used for the destruction of +KEY and DATA TSqlPair data members. +*/ +template +RSqlMap::RSqlMap(const TLinearOrder< TSqlPair >& aOrder, const DESTRUCTOR& aDestructor) : + iOrder(aOrder), + iDestructor(aDestructor) + { + } + +/** +Closes RSqlMap instance and destroys all RSqlMap data. +*/ +template +void RSqlMap::Close() + { + TInt idx = iSet.Count(); + while(--idx >= 0) + { + TSqlPair& pair = iSet[idx]; + iDestructor.Destroy(pair.iKey, pair.iData); + } + iSet.Close(); + } + +/** +This method will create and insert new (KEY, DATA, REFCNTR) pair in the map. + +RSqlMap class maintains a set of reference counted objects. +If an object with aKey key is already in the map, no insertion will occur, the reference counter +of the existing object will be incremented. + +@param aKey The key part of TSqlPair object, which will be inserted +@param aData The data part of TSqlPair object, which will be inserted + +@return System-wide error code if the insertion fails, reference counter value otherwise. +*/ +template +TInt RSqlMap::Insert(const KEY& aKey, const DATA& aData) + { + TInt idx = iSet.FindInOrder(TSqlPair(aKey), iOrder); + if(idx >= 0) + { + return iSet[idx].iRefCounter.Increment(); + } + else + { + TInt err = iSet.InsertInOrder(TSqlPair(aKey, aData), iOrder); + return err == KErrNone ? 1 : err; + } + } + +/** +This method removes an element with aKey key from the map. + +If there is no such element in the map, the debug verison of the method will panic. + +RSqlMap class maintains a set of reference counted objects. +If an object with aKey key is in the map, the reference counter of the object will be decremented. +If the object's reference counter reaches 0 then the object will be destroyed. + +@param aKey The key of TSqlPair object, which has to be removed from the collection. + +@panic 7 In _DEBUG mode if there is no entry with aKey key in the RSqlMap container. +*/ +template +void RSqlMap::Remove(const KEY& aKey) + { + TInt idx = iSet.FindInOrder(TSqlPair(aKey), iOrder); + if(idx != KErrNotFound) + { + TSqlPair& pair = iSet[idx]; + if(pair.iRefCounter.Decrement() == 0) + { + iDestructor.Destroy(pair.iKey, pair.iData); + iSet.Remove(idx); +#ifdef _DEBUG +//This is used prevent the failure of the resource allocation checking in debug mode. + if(iSet.Count() == 0) + { + iSet.Reset(); + } +#endif + } + return; + } + __ASSERT_DEBUG(EFalse, __SQLPANIC(ESqlPanicInternalError)); + } + +/** +This method performs a search for an element with aKey key in the map. +If such element exists, the method will return a pointer to it. +If not, then the method will return NULL. + +@param aKey The search key. + +@return A pointer to the found element or NULL. +*/ +template +TSqlPair* RSqlMap::Entry(const KEY& aKey) + { + TInt idx = iSet.FindInOrder(TSqlPair(aKey), iOrder); + return idx == KErrNotFound ? NULL : &iSet[idx]; + } + +/////////////////////////////////////////////////////////////////////////////////////////////////////////////// +/////////////////////// TSqlMapIterator implementation //////////////////////////////// +/////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/** +Initializes TSqlMapIterator instance. + +@param aMap A const reference to the RSqlMap object, which will be iterated. +*/ +template +TSqlMapIterator::TSqlMapIterator(const RSqlMap& aMap) : + iMap(aMap), + iIndex(0) + { + } + +/** +If iterator's current position is not beyond the end of the map, +the iterator will retrieve current map entry into aPair argument, advance iterator position +by 1 and return ETrue. + +Otherwise the iterator will return EFalse. + +@param aPair An output parameter, which references the location, where the next RSqlMap element will be stored. + +@return ETrue The next RSqlMap element successfully loaded into aPair parameter. This is not the + end of RSqlMap collection. +@return EFalse The next RSqlMap element successfully loaded into aPair parameter. This is the + end of RSqlMap collection. Do not call Next() anymore. +*/ +template +TBool TSqlMapIterator::Next(TSqlPair& aPair) const + { + return (iIndex < iMap.iSet.Count()) ? aPair = iMap.iSet[iIndex++], ETrue : EFalse; + }