1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/sql/SRC/Common/SqlMap.inl Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,198 @@
1.4 +// Copyright (c) 2004-2010 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// RSqlMap template class implementation.
1.18 +// //////////////////// TSqlPair implementation //////////////////////////////////
1.19 +//
1.20 +//
1.21 +
1.22 +/**
1.23 +
1.24 + Initializes TSqlPair data members using the supplied parameter values.
1.25 +
1.26 + @param aKey Key part of TSqlPair object
1.27 + @param aData Data part of TSqlPair object
1.28 +*/
1.29 +template <class KEY, class DATA, class REFCNTR>
1.30 +TSqlPair<KEY, DATA, REFCNTR>::TSqlPair(const KEY& aKey, const DATA& aData) :
1.31 + iKey(aKey),
1.32 + iData(aData)
1.33 + {
1.34 + }
1.35 +
1.36 +/**
1.37 +Initializes TSqlPair data members using the supplied parameter value.
1.38 +
1.39 +@param aKey Key part of TSqlPair object
1.40 +*/
1.41 +template <class KEY, class DATA, class REFCNTR>
1.42 +TSqlPair<KEY, DATA, REFCNTR>::TSqlPair(const KEY& aKey) :
1.43 + iKey(aKey)
1.44 + {
1.45 + }
1.46 +
1.47 +/**
1.48 +Initializes TSqlPair data members with their default values.
1.49 +*/
1.50 +template <class KEY, class DATA, class REFCNTR>
1.51 +TSqlPair<KEY, DATA, REFCNTR>::TSqlPair()
1.52 + {
1.53 + }
1.54 +
1.55 +///////////////////////////////////////////////////////////////////////////////////////////////////////////////
1.56 +/////////////////////// RSqlMap implementation ///////////////////////////////////
1.57 +///////////////////////////////////////////////////////////////////////////////////////////////////////////////
1.58 +
1.59 +/**
1.60 +@param aOrder An object of TLinearOrder< TSqlPair<KEY, DATA, REFCNTR> > type, which will be used when
1.61 +new elements are inserted into the collection (to determine their order).
1.62 +@param aDestructor An object of TSqlPairDestructor<KEY, DATA> type which will be used for the destruction of
1.63 +KEY and DATA TSqlPair data members.
1.64 +*/
1.65 +template <class KEY, class DATA, class REFCNTR, class DESTRUCTOR>
1.66 +RSqlMap<KEY, DATA, REFCNTR, DESTRUCTOR>::RSqlMap(const TLinearOrder< TSqlPair<KEY, DATA, REFCNTR> >& aOrder, const DESTRUCTOR& aDestructor) :
1.67 + iOrder(aOrder),
1.68 + iDestructor(aDestructor)
1.69 + {
1.70 + }
1.71 +
1.72 +/**
1.73 +Closes RSqlMap instance and destroys all RSqlMap data.
1.74 +*/
1.75 +template <class KEY, class DATA, class REFCNTR, class DESTRUCTOR>
1.76 +void RSqlMap<KEY, DATA, REFCNTR, DESTRUCTOR>::Close()
1.77 + {
1.78 + TInt idx = iSet.Count();
1.79 + while(--idx >= 0)
1.80 + {
1.81 + TSqlPair<KEY, DATA, REFCNTR>& pair = iSet[idx];
1.82 + iDestructor.Destroy(pair.iKey, pair.iData);
1.83 + }
1.84 + iSet.Close();
1.85 + }
1.86 +
1.87 +/**
1.88 +This method will create and insert new (KEY, DATA, REFCNTR) pair in the map.
1.89 +
1.90 +RSqlMap class maintains a set of reference counted objects.
1.91 +If an object with aKey key is already in the map, no insertion will occur, the reference counter
1.92 +of the existing object will be incremented.
1.93 +
1.94 +@param aKey The key part of TSqlPair object, which will be inserted
1.95 +@param aData The data part of TSqlPair object, which will be inserted
1.96 +
1.97 +@return System-wide error code if the insertion fails, reference counter value otherwise.
1.98 +*/
1.99 +template <class KEY, class DATA, class REFCNTR, class DESTRUCTOR>
1.100 +TInt RSqlMap<KEY, DATA, REFCNTR, DESTRUCTOR>::Insert(const KEY& aKey, const DATA& aData)
1.101 + {
1.102 + TInt idx = iSet.FindInOrder(TSqlPair<KEY, DATA, REFCNTR>(aKey), iOrder);
1.103 + if(idx >= 0)
1.104 + {
1.105 + return iSet[idx].iRefCounter.Increment();
1.106 + }
1.107 + else
1.108 + {
1.109 + TInt err = iSet.InsertInOrder(TSqlPair<KEY, DATA, REFCNTR>(aKey, aData), iOrder);
1.110 + return err == KErrNone ? 1 : err;
1.111 + }
1.112 + }
1.113 +
1.114 +/**
1.115 +This method removes an element with aKey key from the map.
1.116 +
1.117 +If there is no such element in the map, the debug verison of the method will panic.
1.118 +
1.119 +RSqlMap class maintains a set of reference counted objects.
1.120 +If an object with aKey key is in the map, the reference counter of the object will be decremented.
1.121 +If the object's reference counter reaches 0 then the object will be destroyed.
1.122 +
1.123 +@param aKey The key of TSqlPair object, which has to be removed from the collection.
1.124 +
1.125 +@panic 7 In _DEBUG mode if there is no entry with aKey key in the RSqlMap container.
1.126 +*/
1.127 +template <class KEY, class DATA, class REFCNTR, class DESTRUCTOR>
1.128 +void RSqlMap<KEY, DATA, REFCNTR, DESTRUCTOR>::Remove(const KEY& aKey)
1.129 + {
1.130 + TInt idx = iSet.FindInOrder(TSqlPair<KEY, DATA, REFCNTR>(aKey), iOrder);
1.131 + if(idx != KErrNotFound)
1.132 + {
1.133 + TSqlPair<KEY, DATA, REFCNTR>& pair = iSet[idx];
1.134 + if(pair.iRefCounter.Decrement() == 0)
1.135 + {
1.136 + iDestructor.Destroy(pair.iKey, pair.iData);
1.137 + iSet.Remove(idx);
1.138 +#ifdef _DEBUG
1.139 +//This is used prevent the failure of the resource allocation checking in debug mode.
1.140 + if(iSet.Count() == 0)
1.141 + {
1.142 + iSet.Reset();
1.143 + }
1.144 +#endif
1.145 + }
1.146 + return;
1.147 + }
1.148 + __ASSERT_DEBUG(EFalse, __SQLPANIC(ESqlPanicInternalError));
1.149 + }
1.150 +
1.151 +/**
1.152 +This method performs a search for an element with aKey key in the map.
1.153 +If such element exists, the method will return a pointer to it.
1.154 +If not, then the method will return NULL.
1.155 +
1.156 +@param aKey The search key.
1.157 +
1.158 +@return A pointer to the found element or NULL.
1.159 +*/
1.160 +template <class KEY, class DATA, class REFCNTR, class DESTRUCTOR>
1.161 +TSqlPair<KEY, DATA, REFCNTR>* RSqlMap<KEY, DATA, REFCNTR, DESTRUCTOR>::Entry(const KEY& aKey)
1.162 + {
1.163 + TInt idx = iSet.FindInOrder(TSqlPair<KEY, DATA, REFCNTR>(aKey), iOrder);
1.164 + return idx == KErrNotFound ? NULL : &iSet[idx];
1.165 + }
1.166 +
1.167 +///////////////////////////////////////////////////////////////////////////////////////////////////////////////
1.168 +/////////////////////// TSqlMapIterator implementation ////////////////////////////////
1.169 +///////////////////////////////////////////////////////////////////////////////////////////////////////////////
1.170 +
1.171 +/**
1.172 +Initializes TSqlMapIterator instance.
1.173 +
1.174 +@param aMap A const reference to the RSqlMap object, which will be iterated.
1.175 +*/
1.176 +template <class KEY, class DATA, class REFCNTR, class DESTRUCTOR>
1.177 +TSqlMapIterator<KEY, DATA, REFCNTR, DESTRUCTOR>::TSqlMapIterator(const RSqlMap<KEY, DATA, REFCNTR, DESTRUCTOR>& aMap) :
1.178 + iMap(aMap),
1.179 + iIndex(0)
1.180 + {
1.181 + }
1.182 +
1.183 +/**
1.184 +If iterator's current position is not beyond the end of the map,
1.185 +the iterator will retrieve current map entry into aPair argument, advance iterator position
1.186 +by 1 and return ETrue.
1.187 +
1.188 +Otherwise the iterator will return EFalse.
1.189 +
1.190 +@param aPair An output parameter, which references the location, where the next RSqlMap element will be stored.
1.191 +
1.192 +@return ETrue The next RSqlMap element successfully loaded into aPair parameter. This is not the
1.193 + end of RSqlMap collection.
1.194 +@return EFalse The next RSqlMap element successfully loaded into aPair parameter. This is the
1.195 + end of RSqlMap collection. Do not call Next() anymore.
1.196 +*/
1.197 +template <class KEY, class DATA, class REFCNTR, class DESTRUCTOR>
1.198 +TBool TSqlMapIterator<KEY, DATA, REFCNTR, DESTRUCTOR>::Next(TSqlPair<KEY, DATA, REFCNTR>& aPair) const
1.199 + {
1.200 + return (iIndex < iMap.iSet.Count()) ? aPair = iMap.iSet[iIndex++], ETrue : EFalse;
1.201 + }