Update contrib.
1 // Copyright (c) 2004-2010 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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // RSqlMap template class declaration.
21 #include "SqlAssert.h"
24 template <class KEY, class DATA, class REFCNTR, class DESTRUCTOR> class RSqlMap;
27 (KEY, DATA, REFCNTR) template pair class used by RSqlMap template class.
29 The class has 3 template arguments:
30 - KEY - the key part of the pair object;
31 - DATA - the data part of the pair object;
32 - REFCNTR - the reference counting part of the pair object;
33 REFCNTR class has to provide "TInt Increment()" and "TInt Decrement()" methods.
40 template <class KEY, class DATA, class REFCNTR>
41 NONSHARABLE_STRUCT(TSqlPair)
43 TSqlPair(const KEY& aKey, const DATA& aData);
44 TSqlPair(const KEY& aKey);
54 TSqlMapIterator class. It describes an object which can be used as a
55 forward, read-only iterator for RSqlMap containers.
57 The class has 4 template arguments:
58 - KEY - the key part of the pair object;
59 - DATA - the data part of the pair object;
60 - REFCNTR - the reference counting part of the pair object;
61 REFCNTR class has to provide "TInt Increment()" and "TInt Decrement()" methods.
62 - DESTRUCTOR - the KEY and DATA objects destroying part of the pair object;
63 DESTRUCTOR class has to provide "void Destroy(KEY& aKey, DATA& aData)" method.
70 template <class KEY, class DATA, class REFCNTR, class DESTRUCTOR>
71 NONSHARABLE_CLASS(TSqlMapIterator)
74 TSqlMapIterator(const RSqlMap<KEY, DATA, REFCNTR, DESTRUCTOR>& aMap);
75 TBool Next(TSqlPair<KEY, DATA, REFCNTR>& aPair) const;
78 const RSqlMap<KEY, DATA, REFCNTR, DESTRUCTOR>& iMap;
84 RSqlMap template class describes an object that controls an ordered sequence of reference counted entries.
85 Each entry has a key of type KEY and an associated with it data of type DATA.
87 The class has 4 template arguments:
88 - KEY - the key part of the pair object;
89 - DATA - the data part of the pair object;
90 - REFCNTR - the reference counting part of the pair object;
91 REFCNTR class has to provide "TInt Increment()" and "TInt Decrement()" methods.
92 - DESTRUCTOR - the KEY and DATA objects destroying part of the pair object;
93 DESTRUCTOR class has to provide "void Destroy(KEY& aKey, DATA& aData)" method.
95 The algorithm for determining the order of two entries is provided by a TLinearOrder
96 object, supplied by the client of RSqlMap during RSqlMap instance construction
97 (RSqlMap constructor, aOrder argument).
104 template <class KEY, class DATA, class REFCNTR, class DESTRUCTOR>
105 NONSHARABLE_CLASS(RSqlMap)
107 friend class TSqlMapIterator<KEY, DATA, REFCNTR, DESTRUCTOR>;
110 RSqlMap(const TLinearOrder< TSqlPair<KEY, DATA, REFCNTR> >& aOrder, const DESTRUCTOR& aDestructor);
112 TInt Insert(const KEY& aKey, const DATA& aData);
113 void Remove(const KEY& aKey);
114 TSqlPair<KEY, DATA, REFCNTR>* Entry(const KEY& aKey);
117 TLinearOrder< TSqlPair<KEY, DATA, REFCNTR> > iOrder;
118 RArray< TSqlPair<KEY, DATA, REFCNTR> > iSet;
119 DESTRUCTOR iDestructor;
123 #include "SqlMap.inl"