os/persistentdata/persistentstorage/dbms/Inc2/D32Map.inl
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/dbms/Inc2/D32Map.inl	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,196 @@
     1.4 +// Copyright (c) 2004-2009 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 +// RMap template class implementation.
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +/**
    1.22 + 
    1.23 + Template function that compares two objects of type TPair<KEY, DATA> and
    1.24 + returns {negative, 0, positive} depending on the comparison result.
    1.25 + In order the comparison to work, the KEY template parameter has to have
    1.26 + "-" operation defined - either native or overloaded "-" operator.
    1.27 + Used by RMap<KEY, DATA> template class.
    1.28 + Note: This template function works only on objects, which have defined a "-" operation.
    1.29 + @param aLeft The first TPair<KEY, DATA> to be compared
    1.30 + @param aRight The second TPair<KEY, DATA> to be compared
    1.31 + @return An integer value, which is:
    1.32 + 0, if the objects are equal;
    1.33 + negative number, the first object is bigger than the second object
    1.34 + positive number, the first object is smaller than the second object
    1.35 + @internalComponent
    1.36 +*/
    1.37 +template <class KEY, class DATA>
    1.38 +TInt Compare(const TPair<KEY, DATA>& aLeft, const TPair<KEY, DATA>& aRight)
    1.39 +	{
    1.40 +	return aRight.iKey - aLeft.iKey;
    1.41 +	}
    1.42 +
    1.43 +/**
    1.44 +@param aKey Key part of TPair object
    1.45 +@param aData Data part of TPair object
    1.46 +*/
    1.47 +template <class KEY, class DATA> 
    1.48 +TPair<KEY, DATA>::TPair(const KEY& aKey, const DATA& aData) :
    1.49 +	iKey(aKey),
    1.50 +	iData(aData)
    1.51 +	{
    1.52 +	}
    1.53 +
    1.54 +/**
    1.55 +@param aKey Key part of TPair object
    1.56 +*/
    1.57 +template <class KEY, class DATA> 
    1.58 +TPair<KEY, DATA>::TPair(const KEY& aKey) :
    1.59 +	iKey(aKey)
    1.60 +	{
    1.61 +	}
    1.62 +
    1.63 +/**
    1.64 +*/
    1.65 +template <class KEY, class DATA> 
    1.66 +TPair<KEY, DATA>::TPair()
    1.67 +	{
    1.68 +	}
    1.69 +
    1.70 +/**
    1.71 +@param aOrder An object of TLinearOrder< TPair<KEY, DATA> type, which will be used when
    1.72 +new elements are inserted into the collection.
    1.73 +*/
    1.74 +template <class KEY, class DATA> 
    1.75 +RMap<KEY, DATA>::RMap(const TLinearOrder< TPair<KEY, DATA> >& aOrder) :
    1.76 +	iOrder(aOrder)
    1.77 +	{
    1.78 +	}
    1.79 +
    1.80 +/**
    1.81 +Closes RMap instance and destroy all RMap data.
    1.82 +*/
    1.83 +template <class KEY, class DATA> 
    1.84 +void RMap<KEY, DATA>::Close()
    1.85 +	{
    1.86 +	iCol.Close();
    1.87 +	}
    1.88 +
    1.89 +/**
    1.90 +This method will create and insert new (KEY, DATA) pair in the map.
    1.91 +If the operation fails, the method will return some of system wide error codes.
    1.92 +RMap instance does not allow duplicated TPair objects in the collection.
    1.93 +Actually it dependes on the supplied in the constructor aOrder instance.
    1.94 +@param aKey The key part of TPair object, which will be inserted
    1.95 +@param aData The data part of TPair object, which will be inserted
    1.96 +@return KErrNone if successful, otherwise one of the system-wide error codes
    1.97 +*/
    1.98 +template <class KEY, class DATA> 
    1.99 +TInt RMap<KEY, DATA>::Insert(const KEY& aKey, const DATA& aData)
   1.100 +	{
   1.101 +	return iCol.InsertInOrder(TPair<KEY, DATA>(aKey, aData), iOrder);
   1.102 +	}
   1.103 +
   1.104 +/**
   1.105 +This method removes an element with aKey key from the map.
   1.106 +If there is no such element in the map, the debug verison of the method will panic.
   1.107 +The destructor of the object, which is about to be removed, is not called.
   1.108 +@param aKey The key of TPair object, which has to be removed from the collection.
   1.109 +*/
   1.110 +template <class KEY, class DATA> 
   1.111 +void RMap<KEY, DATA>::Remove(const KEY& aKey)
   1.112 +	{
   1.113 +	TInt index = iCol.FindInOrder(TPair<KEY, DATA>(aKey), iOrder);
   1.114 +	index != KErrNotFound ? iCol.Remove(index) : __ASSERT(0);
   1.115 +	}
   1.116 +
   1.117 +/**
   1.118 +This method performs a search for an element with aKey key in the map.
   1.119 +If such element exists, the method will return a const reference to the element's data.
   1.120 +If not, then the method will panic.
   1.121 +@param aKey The key of TPair object, a reference to which DATA will be returned
   1.122 +@return A const reference to the matching DATA object.
   1.123 +*/
   1.124 +template <class KEY, class DATA> 
   1.125 +const DATA& RMap<KEY, DATA>::operator[](const KEY& aKey) const
   1.126 +	{
   1.127 +	TInt index = iCol.FindInOrder(TPair<KEY, DATA>(aKey), iOrder);
   1.128 +	__ASSERT_ALWAYS(index != KErrNotFound, User::Invariant());
   1.129 +	return iCol[index].iData;
   1.130 +	}
   1.131 +
   1.132 +/**
   1.133 +This method performs a search for an element with aKey key in the map.
   1.134 +If such element exists, the method will set the element's data in aData parameter and
   1.135 +return KErrNone.
   1.136 +If not, then the method will return KErrNotFound.
   1.137 +@param aKey The key of TPair object, a reference to which DATA will be returned in aData
   1.138 +            parameter, if found
   1.139 +@param aData An output parameter, it references the location, where the found data will be stored.
   1.140 +@return KErrNone An element with aKey key exists in the map, the data part is stored in aData.
   1.141 +@return KErrNotFound No map element with aKey key found.
   1.142 +*/
   1.143 +template <class KEY, class DATA> 
   1.144 +TInt RMap<KEY, DATA>::Find(const KEY& aKey, DATA& aData) const
   1.145 +	{
   1.146 +	TInt index = iCol.FindInOrder(TPair<KEY, DATA>(aKey), iOrder);
   1.147 +	if(index != KErrNotFound)
   1.148 +		{
   1.149 +		aData = iCol[index].iData;
   1.150 +		}
   1.151 +	return index;
   1.152 +	}
   1.153 +
   1.154 +/**
   1.155 +This method returns the number of elements in the map.
   1.156 +@return Map elements count.
   1.157 +*/
   1.158 +template <class KEY, class DATA> 
   1.159 +TInt RMap<KEY, DATA>::Count() const
   1.160 +	{
   1.161 +	return iCol.Count();
   1.162 +	}
   1.163 +
   1.164 +/**
   1.165 +Initializes TMapIterator instance.
   1.166 +@param aMap A const reference to the RMap object, which will be iterated.
   1.167 +*/
   1.168 +template <class KEY, class DATA> 
   1.169 +TMapIterator<KEY, DATA>::TMapIterator(const RMap<KEY, DATA>& aMap) :
   1.170 +	iMap(aMap),
   1.171 +	iIndex(0)
   1.172 +	{
   1.173 +	}
   1.174 +
   1.175 +/**
   1.176 +Resets TMapIterator iterator for a new scan from the beginning of the controlled map sequence.
   1.177 +*/
   1.178 +template <class KEY, class DATA> 
   1.179 +void TMapIterator<KEY, DATA>::Reset()
   1.180 +	{
   1.181 +	iIndex = 0;
   1.182 +	}
   1.183 +
   1.184 +/**
   1.185 +If iterator's current position is not beyond the end of the map,
   1.186 +the iterator will retrieve current map entry into aPair argument, advance iterator position
   1.187 +by 1 and return ETrue. 
   1.188 +Otherwise the iterator will return EFalse.
   1.189 +@param aPair An output parameter, which references the location, where the next RMap element will be stored.
   1.190 +@return ETrue The next RMap element successfully loaded into aPair parameter. This is not the 
   1.191 +              end of RMap collection.
   1.192 +@return EFalse The next RMap element successfully loaded into aPair parameter. This is the 
   1.193 +              end of RMap collection. Do not call Next() anymore.
   1.194 +*/
   1.195 +template <class KEY, class DATA> 
   1.196 +TBool TMapIterator<KEY, DATA>::Next(TPair<KEY, DATA>& aPair) const
   1.197 +	{
   1.198 +	return (iIndex < iMap.iCol.Count()) ? aPair = iMap.iCol[iIndex++], ETrue : EFalse;
   1.199 +	}