Update contrib.
1 // Copyright (c) 2005-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 the License "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 // e32/include/e32hashtab.h
18 #ifndef __E32HASHTAB_H__
19 #define __E32HASHTAB_H__
26 Defines a function type used by a THashFunction32 object.
28 A function of this type implements an algorithm for producing a 32 bit hash
33 typedef TUint32 (*TGeneralHashFunction32)(const TAny*);
40 A templated class which packages a function that calculates a 32 bit hash
41 value from a key of templated type.
43 A THashFunction32<T> object is constructed and passed as a parameter to
44 member functions of the hash table classes RHashSet<T>, RPtrHashSet<T>,
45 RHashMap<T,V> and RPtrHashMap<T,V>.
56 inline THashFunction32( TUint32 (*aHashFunc)(const T&) )
57 { iHashFunction = (TGeneralHashFunction32)aHashFunc; }
58 inline operator TGeneralHashFunction32() const
59 { return iHashFunction; }
60 inline TUint32 Hash(const T& aKey) const
61 { return (*iHashFunction)(&aKey); }
63 TGeneralHashFunction32 iHashFunction;
71 A set of common hashing functions for frequently occurring types.
81 IMPORT_C static TUint32 Integer(const TInt&);
82 IMPORT_C static TUint32 Des8(const TDesC8&);
83 IMPORT_C static TUint32 Des16(const TDesC16&);
84 IMPORT_C static TUint32 IntegerPtr(TInt* const &);
85 IMPORT_C static TUint32 Des8Ptr(TDesC8* const &);
86 IMPORT_C static TUint32 Des16Ptr(TDesC16* const &);
91 class THashTableIterBase;
96 Base class used in the derivation of RHashSet<T>, RPtrHashSet<T>,
97 RHashMap<K,V> and RPtrHashMap<K,V>.
99 This class provides a general hash table implementation using probe sequences
100 generated by pseudo-double hashing.
101 The class is internal and is not intended for use.
106 enum TDefaultSpecifier
108 EDefaultSpecifier_Normal,
112 template<class K, TDefaultSpecifier S>
116 inline static TGeneralHashFunction32 Hash();
117 inline static TGeneralIdentityRelation Id();
123 EEmpty=0, // entry is vacant
124 EDeleted=1, // entry has been deleted
125 EGen0=2, // entry is occupied, generation number 0
126 EGen1=3, // entry is occupied, generation number 1
133 inline void SetEmpty() {iHash=EEmpty;}
134 inline void SetDeleted() {iHash=EDeleted;}
135 inline TBool IsEmpty() const {return (iHash&EStateMask)==EEmpty;}
136 inline TBool IsDeleted() const {return (iHash&EStateMask)==EDeleted;}
137 inline TBool IsEmptyOrDeleted() const {return !(iHash&EOccupiedMask);}
139 TUint32 iHash; // bits 2-31 = 30 bit hash value, bits 0,1 = state
143 IMPORT_C RHashTableBase(TGeneralHashFunction32, TGeneralIdentityRelation, TInt aElementSize, TInt aKeyOffset);
144 IMPORT_C void Close();
145 IMPORT_C TAny* Find(const TAny* aKey, TInt aOffset=0) const;
146 IMPORT_C TAny* FindL(const TAny* aKey, TInt aOffset=0) const;
147 TInt Insert(const TAny* aKey, TAny*& aElement);
148 IMPORT_C TInt PtrInsert(const TAny* aKey, const TAny* aValue);
149 IMPORT_C void PtrInsertL(const TAny* aKey, const TAny* aValue);
150 IMPORT_C TInt ValueInsert(const TAny* aKey, TInt aKeySize, const TAny* aValue, TInt aValueOffset, TInt aValueSize);
151 IMPORT_C void ValueInsertL(const TAny* aKey, TInt aKeySize, const TAny* aValue, TInt aValueOffset, TInt aValueSize);
152 IMPORT_C TInt Remove(const TAny* aKey);
153 IMPORT_C TInt Count() const;
154 IMPORT_C TInt Reserve(TInt aCount);
155 IMPORT_C void ReserveL(TInt aCount);
156 IMPORT_C void ConsistencyCheck(TUint32* aDeleted=0, TUint32* aComparisons=0, TUint32 aChainLimit=0, TUint32* aChainInfo=0);
158 void SetThresholds();
159 TInt ExpandTable(TInt aNewIndexBits);
161 void ReformTable(TUint aNewIndexBits);
164 inline SElement* Element(TInt aIndex)
165 {return (SElement*)(((TUint8*)iElements) + aIndex*iElementSize);}
166 inline const SElement* ElementC(TInt aIndex) const
167 {return (const SElement*)(((TUint8*)iElements) + aIndex*iElementSize);}
168 inline TAny* GetKey(const SElement* aElement) const
169 {return iKeyOffset ? ((TUint8*)aElement + iKeyOffset) : (TAny*)((TUint32*)aElement)[1];}
171 TGeneralHashFunction32 iHashFunc; // generates the hash from a given key
172 TGeneralIdentityRelation iIdFunc; // compare two keys for equality
173 TUint8 iIndexBits; // number of bits used to index the table
174 TUint8 iGeneration; // 2 or 3, generation number used when traversing entire table
175 TUint8 iKeyOffset; // offset to key
178 TUint32 iCount; // number of valid entries
179 TUint32 iEmptyCount; // number of empty entries
180 TUint32 iLowerThreshold; // shrink if count drops below this
181 TUint32 iUpperThreshold; // expand if count rises above this
182 TUint32 iCleanThreshold; // clean table if count of empty entries falls below this
184 TInt iPad1; // expansion room
187 friend struct RHashTableBase::SElement;
188 friend class THashTableIterBase;
189 friend class HashTest;
196 TEMPLATE_SPECIALIZATION class RHashTableBase::Defaults<TInt*, RHashTableBase::EDefaultSpecifier_Normal>
199 inline static TGeneralHashFunction32 Hash();
200 inline static TGeneralIdentityRelation Id();
206 inline TGeneralHashFunction32 RHashTableBase::Defaults<TInt*, RHashTableBase::EDefaultSpecifier_Normal>::Hash()
207 {return (TGeneralHashFunction32)&DefaultHash::IntegerPtr;}
212 inline TGeneralIdentityRelation RHashTableBase::Defaults<TInt*, RHashTableBase::EDefaultSpecifier_Normal>::Id()
213 {return (TGeneralIdentityRelation)&DefaultIdentity::IntegerPtr;}
218 TEMPLATE_SPECIALIZATION class RHashTableBase::Defaults<TInt32*, RHashTableBase::EDefaultSpecifier_Normal>
221 inline static TGeneralHashFunction32 Hash();
222 inline static TGeneralIdentityRelation Id();
228 inline TGeneralHashFunction32 RHashTableBase::Defaults<TInt32*, RHashTableBase::EDefaultSpecifier_Normal>::Hash()
229 {return (TGeneralHashFunction32)&DefaultHash::IntegerPtr;}
234 inline TGeneralIdentityRelation RHashTableBase::Defaults<TInt32*, RHashTableBase::EDefaultSpecifier_Normal>::Id()
235 {return (TGeneralIdentityRelation)&DefaultIdentity::IntegerPtr;}
240 TEMPLATE_SPECIALIZATION class RHashTableBase::Defaults<TUint*, RHashTableBase::EDefaultSpecifier_Normal>
243 inline static TGeneralHashFunction32 Hash();
244 inline static TGeneralIdentityRelation Id();
249 inline TGeneralHashFunction32 RHashTableBase::Defaults<TUint*, RHashTableBase::EDefaultSpecifier_Normal>::Hash()
250 {return (TGeneralHashFunction32)&DefaultHash::IntegerPtr;}
255 inline TGeneralIdentityRelation RHashTableBase::Defaults<TUint*, RHashTableBase::EDefaultSpecifier_Normal>::Id()
256 {return (TGeneralIdentityRelation)&DefaultIdentity::IntegerPtr;}
262 TEMPLATE_SPECIALIZATION class RHashTableBase::Defaults<TUint32*, RHashTableBase::EDefaultSpecifier_Normal>
265 inline static TGeneralHashFunction32 Hash();
266 inline static TGeneralIdentityRelation Id();
271 inline TGeneralHashFunction32 RHashTableBase::Defaults<TUint32*, RHashTableBase::EDefaultSpecifier_Normal>::Hash()
272 {return (TGeneralHashFunction32)&DefaultHash::IntegerPtr;}
277 inline TGeneralIdentityRelation RHashTableBase::Defaults<TUint32*, RHashTableBase::EDefaultSpecifier_Normal>::Id()
278 {return (TGeneralIdentityRelation)&DefaultIdentity::IntegerPtr;}
283 TEMPLATE_SPECIALIZATION class RHashTableBase::Defaults<TDesC8*, RHashTableBase::EDefaultSpecifier_Normal>
286 inline static TGeneralHashFunction32 Hash();
287 inline static TGeneralIdentityRelation Id();
292 inline TGeneralHashFunction32 RHashTableBase::Defaults<TDesC8*, RHashTableBase::EDefaultSpecifier_Normal>::Hash()
293 {return (TGeneralHashFunction32)&DefaultHash::Des8Ptr;}
298 inline TGeneralIdentityRelation RHashTableBase::Defaults<TDesC8*, RHashTableBase::EDefaultSpecifier_Normal>::Id()
299 {return (TGeneralIdentityRelation)&DefaultIdentity::Des8Ptr;}
304 TEMPLATE_SPECIALIZATION class RHashTableBase::Defaults<TDesC16*, RHashTableBase::EDefaultSpecifier_Normal>
307 inline static TGeneralHashFunction32 Hash();
308 inline static TGeneralIdentityRelation Id();
313 inline TGeneralHashFunction32 RHashTableBase::Defaults<TDesC16*, RHashTableBase::EDefaultSpecifier_Normal>::Hash()
314 {return (TGeneralHashFunction32)&DefaultHash::Des16Ptr;}
319 inline TGeneralIdentityRelation RHashTableBase::Defaults<TDesC16*, RHashTableBase::EDefaultSpecifier_Normal>::Id()
320 {return (TGeneralIdentityRelation)&DefaultIdentity::Des16Ptr;}
325 TEMPLATE_SPECIALIZATION class RHashTableBase::Defaults<TInt, RHashTableBase::EDefaultSpecifier_Normal>
328 inline static TGeneralHashFunction32 Hash();
329 inline static TGeneralIdentityRelation Id();
335 inline TGeneralHashFunction32 RHashTableBase::Defaults<TInt, RHashTableBase::EDefaultSpecifier_Normal>::Hash()
336 {return (TGeneralHashFunction32)&DefaultHash::Integer;}
341 inline TGeneralIdentityRelation RHashTableBase::Defaults<TInt, RHashTableBase::EDefaultSpecifier_Normal>::Id()
342 {return (TGeneralIdentityRelation)&DefaultIdentity::Integer;}
347 TEMPLATE_SPECIALIZATION class RHashTableBase::Defaults<TInt32, RHashTableBase::EDefaultSpecifier_Normal>
350 inline static TGeneralHashFunction32 Hash();
351 inline static TGeneralIdentityRelation Id();
357 inline TGeneralHashFunction32 RHashTableBase::Defaults<TInt32, RHashTableBase::EDefaultSpecifier_Normal>::Hash()
358 {return (TGeneralHashFunction32)&DefaultHash::Integer;}
363 inline TGeneralIdentityRelation RHashTableBase::Defaults<TInt32, RHashTableBase::EDefaultSpecifier_Normal>::Id()
364 {return (TGeneralIdentityRelation)&DefaultIdentity::Integer;}
369 TEMPLATE_SPECIALIZATION class RHashTableBase::Defaults<TUint, RHashTableBase::EDefaultSpecifier_Normal>
372 inline static TGeneralHashFunction32 Hash();
373 inline static TGeneralIdentityRelation Id();
379 inline TGeneralHashFunction32 RHashTableBase::Defaults<TUint, RHashTableBase::EDefaultSpecifier_Normal>::Hash()
380 {return (TGeneralHashFunction32)&DefaultHash::Integer;}
385 inline TGeneralIdentityRelation RHashTableBase::Defaults<TUint, RHashTableBase::EDefaultSpecifier_Normal>::Id()
386 {return (TGeneralIdentityRelation)&DefaultIdentity::Integer;}
392 TEMPLATE_SPECIALIZATION class RHashTableBase::Defaults<TUint32, RHashTableBase::EDefaultSpecifier_Normal>
395 inline static TGeneralHashFunction32 Hash();
396 inline static TGeneralIdentityRelation Id();
402 inline TGeneralHashFunction32 RHashTableBase::Defaults<TUint32, RHashTableBase::EDefaultSpecifier_Normal>::Hash()
403 {return (TGeneralHashFunction32)&DefaultHash::Integer;}
408 inline TGeneralIdentityRelation RHashTableBase::Defaults<TUint32, RHashTableBase::EDefaultSpecifier_Normal>::Id()
409 {return (TGeneralIdentityRelation)&DefaultIdentity::Integer;}
415 TEMPLATE_SPECIALIZATION class RHashTableBase::Defaults<TDesC8, RHashTableBase::EDefaultSpecifier_Normal>
418 inline static TGeneralHashFunction32 Hash();
419 inline static TGeneralIdentityRelation Id();
425 inline TGeneralHashFunction32 RHashTableBase::Defaults<TDesC8, RHashTableBase::EDefaultSpecifier_Normal>::Hash()
426 {return (TGeneralHashFunction32)&DefaultHash::Des8;}
431 inline TGeneralIdentityRelation RHashTableBase::Defaults<TDesC8, RHashTableBase::EDefaultSpecifier_Normal>::Id()
432 {return (TGeneralIdentityRelation)&DefaultIdentity::Des8;}
438 TEMPLATE_SPECIALIZATION class RHashTableBase::Defaults<TDesC16, RHashTableBase::EDefaultSpecifier_Normal>
441 inline static TGeneralHashFunction32 Hash();
442 inline static TGeneralIdentityRelation Id();
448 inline TGeneralHashFunction32 RHashTableBase::Defaults<TDesC16, RHashTableBase::EDefaultSpecifier_Normal>::Hash()
449 {return (TGeneralHashFunction32)&DefaultHash::Des16;}
454 inline TGeneralIdentityRelation RHashTableBase::Defaults<TDesC16, RHashTableBase::EDefaultSpecifier_Normal>::Id()
455 {return (TGeneralIdentityRelation)&DefaultIdentity::Des16;}
463 Base class used in the derivation of THashSetIter<T>, TPtrHashSetIter<T>,
464 THashMapIter<K,V> and TPtrHashMapIter<K,V>.
466 This class provides iteration capability for the hash table classes derived
468 The class is internal and is not intended for use.
470 class THashTableIterBase
473 IMPORT_C THashTableIterBase(const RHashTableBase& aTable);
474 IMPORT_C void Reset();
475 IMPORT_C const TAny* Next(TInt aOffset=0);
476 IMPORT_C const TAny* Current(TInt aOffset=0) const;
477 IMPORT_C void RemoveCurrent();
479 const RHashTableBase& iTbl;
481 TInt iPad1; // expansion room
487 template <class T> class THashSetIter;
493 A templated class which implements an unordered extensional set of objects of
494 type T using a probe-sequence hash table. The objects are copied into the set
495 when they are added. A bitwise binary copy is used here, so the type T must
496 not implement a nontrivial copy constructor.
500 class RHashSet : public RHashTableBase
503 friend class THashSetIter<T>;
514 A class which allows iteration over the elements of a RHashSet<T> class.
516 The set being iterated over may not be modified while an iteration is in progress
517 or the iteration operations may malfunction or panic.
521 typedef THashSetIter<T> TIter;
524 Construct a set of objects of type T using a specified hash function and identity relation.
525 The set is initially empty.
527 @param aHash The hash function used to hash the objects of type T.
528 @param aIdentity The identity relation used to determine if two objects of type T
529 should be considered identical.
531 inline RHashSet(const THashFunction32<T>& aHash, const TIdentityRelation<T>& aIdentity)
532 : RHashTableBase(aHash, aIdentity, sizeof(SFullElement), _FOFF(SFullElement,iT))
537 Construct a set of objects of type T using a default hash function and identity relation.
538 The set is initially empty.
541 : RHashTableBase(Defaults<T,EDefaultSpecifier_Normal>::Hash(), Defaults<T,EDefaultSpecifier_Normal>::Id(), sizeof(SFullElement), _FOFF(SFullElement,iT))
546 Free all memory used by this set.
547 Returns the set to the same state it had following construction.
550 { RHashTableBase::Close(); }
554 Locate a specified element in the set.
556 @param aKey The object of type T to search for.
557 @return A pointer to the copy of the specified object in the set, if it
558 exists. The object may not be modified via this pointer.
559 NULL if the specified object is not a member of this set.
561 inline const T* Find(const T& aKey) const
562 { return (const T*)RHashTableBase::Find(&aKey, _FOFF(SFullElement,iT)); }
566 Locate a specified element in the set.
568 @param aKey The object of type T to search for.
569 @return A reference to the copy of the specified object in the set, if it
570 exists. The object may not be modified via this reference.
571 @leave KErrNotFound if the specified object is not a member of this set.
573 inline const T& FindL(const T& aKey) const
574 { return *(const T*)RHashTableBase::FindL(&aKey, _FOFF(SFullElement,iT)); }
578 Locate a specified element in the set.
580 @param aKey The object of type T to search for.
581 @return A pointer to the copy of the specified object in the set, if it
582 exists. The object may be modified via this pointer. Care should
583 be taken not to modify any parts of the object which are used by
584 either the hash function or the identity relation for this set.
585 If this is done the set may become inconsistent, resulting in
586 malfunctions and/or panics at a later time.
587 NULL if the specified object is not a member of this set.
589 inline T* Find(const T& aKey)
590 { return (T*)RHashTableBase::Find(&aKey, _FOFF(SFullElement,iT)); }
594 Locate a specified element in the set.
596 @param aKey The object of type T to search for.
597 @return A reference to the copy of the specified object in the set, if it
598 exists. The object may be modified via this reference. Care should
599 be taken not to modify any parts of the object which are used by
600 either the hash function or the identity relation for this set.
601 If this is done the set may become inconsistent, resulting in
602 malfunctions and/or panics at a later time.
603 @leave KErrNotFound if the specified object is not a member of this set.
605 inline T& FindL(const T& aKey)
606 { return *(T*)RHashTableBase::FindL(&aKey, _FOFF(SFullElement,iT)); }
610 Insert an element into the set.
612 If the specified object is not currently a member of the set, a copy of the
613 object is added to the set and KErrNone is returned.
614 If the specified object is currently a member of the set, the existing copy
615 of the object is replaced by the provided object and KErrNone is
617 In both cases the object is copied bitwise into the set.
619 @param aKey The object of type T to add to the set.
620 @return KErrNone if the object was added successfully.
621 KErrNoMemory if memory could not be allocated to store
624 inline TInt Insert(const T& aKey)
625 { return RHashTableBase::ValueInsert(&aKey, sizeof(T), 0, 0, 0); }
629 Insert an element into the set.
631 If the specified object is not currently a member of the set, a copy of the
632 object is added to the set and KErrNone is returned.
633 If the specified object is currently a member of the set, the existing copy
634 of the object is replaced by the provided object and KErrNone is
636 In both cases the object is copied bitwise into the set.
638 @param aKey The object of type T to add to the set.
639 @leave KErrNoMemory if memory could not be allocated to store
642 inline void InsertL(const T& aKey)
643 { RHashTableBase::ValueInsertL(&aKey, sizeof(T), 0, 0, 0); }
647 Remove an element from the set.
649 @param aKey The object to be removed.
650 @return KErrNone if the object was removed successfully.
651 KErrNotFound if the object was not present in the set.
653 inline TInt Remove(const T& aKey)
654 { return RHashTableBase::Remove(&aKey); }
658 Query the number of elements in the set.
660 @return The number of elements currently in the set.
662 inline TInt Count() const
663 { return RHashTableBase::Count(); }
667 Expand the set to accommodate a specified number of elements.
668 If the set already has enough space for the specified number of elements, no
669 action is taken. Any elements already in the set are retained.
671 @param aCount The number of elements for which space should be allocated.
672 @return KErrNone if the operation completed successfully.
673 @return KErrNoMemory if sufficient memory could not be allocated.
675 inline TInt Reserve(TInt aCount)
676 { return RHashTableBase::Reserve(aCount); }
680 Expand the set to accommodate a specified number of elements.
681 If the set already has enough space for the specified number of elements, no
682 action is taken. Any elements already in the set are retained.
684 @param aCount The number of elements for which space should be allocated.
685 @leave KErrNoMemory if sufficient memory could not be allocated.
687 inline void ReserveL(TInt aCount)
688 { RHashTableBase::ReserveL(aCount); }
697 A templated class which allows iteration over the elements of a RHashSet<T>
700 The set being iterated over may not be modified while an iteration is in progress
701 or the iteration operations may malfunction or panic.
706 class THashSetIter : public THashTableIterBase
719 Construct an iterator over the specified set.
720 The iterator starts at conceptual position one before the beginning of the list
723 @param aSet The set to be iterated over.
725 inline THashSetIter(const RHashSet<T>& aSet)
726 : THashTableIterBase(aSet)
731 Reset the iterator to its initial state.
733 @param aSet The set to be iterated over.
736 { THashTableIterBase::Reset(); }
740 Return the current position of the iterator.
742 @return A pointer to the set member corresponding to the current position of the
744 NULL if the iterator has just been constructed or reset, or if it has
745 previously reached the end of an iteration.
747 inline const T* Current() const
748 { return (const T*)THashTableIterBase::Current(_FOFF(SFullElement,iT)); }
752 Steps the iterator to the next position.
754 @return A pointer to the set member corresponding to the next position of the
756 NULL if the iterator has exhausted all the available set elements.
758 inline const T* Next()
759 { return (const T*)THashTableIterBase::Next(_FOFF(SFullElement,iT)); }
763 Removes the element at the current iterator position from the hash table.
764 If the iterator does not currently point to a valid element, no action is taken.
765 Note that the iterator position is not altered so it no longer points to a valid
766 element following the Remove(). It is illegal to call Current() on the iterator
767 after calling Remove() - the only legal operations are Reset() and Next().
770 inline void RemoveCurrent()
771 { THashTableIterBase::RemoveCurrent(); }
776 template <class T> class TPtrHashSetIter;
782 A templated class which implements an unordered extensional set of objects of
783 type T using a probe-sequence hash table. The objects are not copied into the set
784 when they are added; rather the set stores pointers to the contained objects.
788 class RPtrHashSet : public RHashTableBase
791 friend class TPtrHashSetIter<T>;
802 A class which allows iteration over the elements of a RPtrHashSet<T> class.
804 The set being iterated over may not be modified while an iteration is in progress
805 or the iteration operations may malfunction or panic.
807 @see TPtrHashSetIter<T>
809 typedef TPtrHashSetIter<T> TIter;
812 Construct a set of objects of type T using a specified hash function and identity relation.
813 The set is initially empty.
815 @param aHash The hash function used to hash the objects of type T.
816 @param aIdentity The identity relation used to determine if two objects of type T
817 should be considered identical.
819 inline RPtrHashSet(const THashFunction32<T>& aHash, const TIdentityRelation<T>& aIdentity)
820 : RHashTableBase(aHash, aIdentity, sizeof(SFullElement), 0)
825 Construct a set of objects of type T using a default hash function and identity relation.
826 The set is initially empty.
829 : RHashTableBase(Defaults<T,EDefaultSpecifier_Normal>::Hash(), Defaults<T,EDefaultSpecifier_Normal>::Id(), sizeof(SFullElement), 0)
834 Free all memory used by this set.
835 Returns the set to the same state it had following construction.
838 { RHashTableBase::Close(); }
842 Locate a specified element in the set.
844 @param aKey The object of type T to search for.
845 @return A pointer to the specified object, if it is in the set.
846 The object may not be modified via this pointer.
847 NULL if the specified object is not a member of this set.
849 inline const T* Find(const T& aKey) const
850 { return (const T*)RHashTableBase::Find(&aKey, -_FOFF(SFullElement,iT)); }
854 Locate a specified element in the set.
856 @param aKey The object of type T to search for.
857 @return A reference to the specified object, if it is in the set.
858 The object may not be modified via this reference.
859 @leave KErrNotFound if the specified object is not a member of this set.
861 inline const T& FindL(const T& aKey) const
862 { return *(const T*)RHashTableBase::FindL(&aKey, -_FOFF(SFullElement,iT)); }
866 Locate a specified element in the set.
868 @param aKey The object of type T to search for.
869 @return A pointer to the specified object, if it is in the set.
870 The object may be modified via this pointer. Care should
871 be taken not to modify any parts of the object which are used by
872 either the hash function or the identity relation for this set.
873 If this is done the set may become inconsistent, resulting in
874 malfunctions and/or panics at a later time.
875 NULL if the specified object is not a member of this set.
877 inline T* Find(const T& aKey)
878 { return (T*)RHashTableBase::Find(&aKey, -_FOFF(SFullElement,iT)); }
882 Locate a specified element in the set.
884 @param aKey The object of type T to search for.
885 @return A reference to the specified object, if it is in the set.
886 The object may be modified via this reference. Care should
887 be taken not to modify any parts of the object which are used by
888 either the hash function or the identity relation for this set.
889 If this is done the set may become inconsistent, resulting in
890 malfunctions and/or panics at a later time.
891 @leave KErrNotFound if the specified object is not a member of this set.
893 inline T& FindL(const T& aKey)
894 { return *(T*)RHashTableBase::FindL(&aKey, -_FOFF(SFullElement,iT)); }
898 Insert an element into the set.
900 If the specified object is not currently a member of the set, a pointer to the
901 object is added to the set and KErrNone is returned.
902 If the specified object is currently a member of the set, the existing pointer
903 to the object is replaced by the provided pointer and KErrNone is
905 In both cases only a pointer to the object is stored - the object is never copied.
907 @param aKey A pointer to the object of type T to add to the set.
908 @return KErrNone if the object was added successfully.
909 KErrNoMemory if memory could not be allocated to store
910 the pointer to the new object.
912 inline TInt Insert(const T* aKey)
913 { return RHashTableBase::PtrInsert(aKey, 0); }
917 Insert an element into the set.
919 If the specified object is not currently a member of the set, a pointer to the
920 object is added to the set and KErrNone is returned.
921 If the specified object is currently a member of the set, the existing pointer
922 to the object is replaced by the provided pointer and KErrNone is
924 In both cases only a pointer to the object is stored - the object is never copied.
926 @param aKey A pointer to the object of type T to add to the set.
927 @leave KErrNoMemory if memory could not be allocated to store the pointer to the new object.
929 inline void InsertL(const T* aKey)
930 { RHashTableBase::PtrInsertL(aKey, 0); }
934 Remove an element from the set.
936 @param aKey A pointer to the object to be removed.
937 @return KErrNone if the object was removed successfully.
938 KErrNotFound if the object was not present in the set.
940 inline TInt Remove(const T* aKey)
941 { return RHashTableBase::Remove(aKey); }
945 Query the number of elements in the set.
947 @return The number of elements currently in the set.
949 inline TInt Count() const
950 { return RHashTableBase::Count(); }
954 Expand the set to accommodate a specified number of elements.
955 If the set already has enough space for the specified number of elements, no
956 action is taken. Any elements already in the set are retained.
958 @param aCount The number of elements for which space should be allocated.
959 @return KErrNone if the operation completed successfully.
960 @return KErrNoMemory if sufficient memory could not be allocated.
962 inline TInt Reserve(TInt aCount)
963 { return RHashTableBase::Reserve(aCount); }
967 Expand the set to accommodate a specified number of elements.
968 If the set already has enough space for the specified number of elements, no
969 action is taken. Any elements already in the set are retained.
971 @param aCount The number of elements for which space should be allocated.
972 @leave KErrNoMemory if sufficient memory could not be allocated.
974 inline void ReserveL(TInt aCount)
975 { RHashTableBase::ReserveL(aCount); }
978 void ResetAndDestroy();
986 A templated class which allows iteration over the elements of a RPtrHashSet<T>
989 The set being iterated over may not be modified while an iteration is in progress
990 or the iteration operations may malfunction or panic.
995 class TPtrHashSetIter : public THashTableIterBase
1008 Construct an iterator over the specified set.
1009 The iterator starts at conceptual position one before the beginning of the list
1012 @param aSet The set to be iterated over.
1014 inline TPtrHashSetIter(const RPtrHashSet<T>& aSet)
1015 : THashTableIterBase(aSet)
1020 Reset the iterator to its initial state.
1022 @param aSet The set to be iterated over.
1025 { THashTableIterBase::Reset(); }
1029 Return the current position of the iterator.
1031 @return A pointer to the set member corresponding to the current position of the
1033 NULL if the iterator has just been constructed or reset, or if it has
1034 previously reached the end of an iteration.
1036 inline const T* Current() const
1037 { return (const T*)THashTableIterBase::Current(-_FOFF(SFullElement,iT)); }
1041 Steps the iterator to the next position.
1043 @return A pointer to the set member corresponding to the next position of the
1045 NULL if the iterator has exhausted all the available set elements.
1047 inline const T* Next()
1048 { return (const T*)THashTableIterBase::Next(-_FOFF(SFullElement,iT)); }
1052 Removes the element at the current iterator position from the hash table.
1053 If the iterator does not currently point to a valid element, no action is taken.
1054 Note that the iterator position is not altered so it no longer points to a valid
1055 element following the Remove(). It is illegal to call Current() on the iterator
1056 after calling Remove() - the only legal operations are Reset() and Next().
1059 inline void RemoveCurrent()
1060 { THashTableIterBase::RemoveCurrent(); }
1065 template <class K, class V> class THashMapIter;
1071 A templated class which implements an associative array with key type K and value type V,
1072 using a probe-sequence hash table. Both the key and value objects are copied into the
1073 table when they are added. A bitwise binary copy is used here, so neither of the types
1074 K and V may implement a nontrivial copy constructor.
1077 template <class K, class V>
1078 class RHashMap : public RHashTableBase
1081 friend class THashMapIter<K,V>;
1093 A class which allows iteration over the elements of a RHashMap<K,V> class.
1095 The array being iterated over may not be modified while an iteration is in progress
1096 or the iteration operations may malfunction or panic.
1098 @see THashMapIter<K,V>
1100 typedef THashMapIter<K,V> TIter;
1103 Construct an associative array of key-value pairs of type (K,V) using a
1104 specified hash function and identity relation.
1105 The array initially contains no key-value pairs.
1107 @param aHash The hash function used to hash the key objects of type K.
1108 @param aIdentity The identity relation used to determine if two key objects
1109 of type K should be considered identical.
1111 inline RHashMap(const THashFunction32<K>& aHash, const TIdentityRelation<K>& aIdentity)
1112 : RHashTableBase(aHash, aIdentity, sizeof(SFullElement), _FOFF(SFullElement,iK))
1117 Construct an associative array of key-value pairs of type (K,V) using a
1118 default hash function and identity relation.
1119 The array initially contains no key-value pairs.
1122 : RHashTableBase(Defaults<K,EDefaultSpecifier_Normal>::Hash(), Defaults<K,EDefaultSpecifier_Normal>::Id(), sizeof(SFullElement), _FOFF(SFullElement,iK))
1127 Free all memory used by this array.
1128 Returns the array to the same state it had following construction.
1131 { RHashTableBase::Close(); }
1135 Look up a specified key in the associative array and return a pointer to the
1136 corresponding value.
1138 @param aKey The key object of type K to look up.
1139 @return A pointer to the copy of the corresponding value object in the
1140 array, if the specified key object was found.
1141 The value object may not be modified via this pointer.
1142 NULL if the specified key object was not found.
1144 inline const V* Find(const K& aKey) const
1145 { return (const V*)RHashTableBase::Find(&aKey, _FOFF(SFullElement,iV)); }
1149 Look up a specified key in the associative array and return a pointer to the
1150 corresponding value.
1152 @param aKey The key object of type K to look up.
1153 @return A reference to the copy of the corresponding value object in the
1154 array, if the specified key object was found.
1155 The value object may not be modified via this reference.
1156 @leave KErrNotFound if the specified key object was not found.
1158 inline const V& FindL(const K& aKey) const
1159 { return *(const V*)RHashTableBase::FindL(&aKey, _FOFF(SFullElement,iV)); }
1163 Look up a specified key in the associative array and return a pointer to the
1164 corresponding value.
1166 @param aKey The key object of type K to look up.
1167 @return A pointer to the copy of the corresponding value object in the
1168 array, if the specified key object was found.
1169 The value object may be modified via this pointer.
1170 NULL if the specified key object was not found.
1172 inline V* Find(const K& aKey)
1173 { return (V*)RHashTableBase::Find(&aKey, _FOFF(SFullElement,iV)); }
1177 Look up a specified key in the associative array and return a pointer to the
1178 corresponding value.
1180 @param aKey The key object of type K to look up.
1181 @return A reference to the copy of the corresponding value object in the
1182 array, if the specified key object was found.
1183 The value object may be modified via this reference.
1184 @leave KErrNotFound if the specified key object was not found.
1186 inline V& FindL(const K& aKey)
1187 { return *(V*)RHashTableBase::FindL(&aKey, _FOFF(SFullElement,iV)); }
1191 Insert a key-value pair into the array.
1193 If the specified key object is not found in the array, a copy of the
1194 key object along with a copy of the value object are added to the array
1195 and KErrNone is returned.
1196 If the specified key object is found in the array, the existing copies
1197 of both the key and value objects are replaced by the provided objects
1198 and KErrNone is returned.
1199 In both cases the objects are copied bitwise into the array.
1201 @param aKey The key object of type K to add to the array.
1202 @param aValue The value object of type V to associate with aKey.
1203 @return KErrNone if the key-value pair was added successfully.
1204 KErrNoMemory if memory could not be allocated to store
1205 the copies of aKey and aValue.
1207 inline TInt Insert(const K& aKey, const V& aValue)
1208 { return RHashTableBase::ValueInsert(&aKey, sizeof(K), &aValue, _FOFF(SFullElement,iV), sizeof(V)); }
1212 Insert a key-value pair into the array.
1214 If the specified key object is not found in the array, a copy of the
1215 key object along with a copy of the value object are added to the array
1216 and KErrNone is returned.
1217 If the specified key object is found in the array, the existing copies
1218 of both the key and value objects are replaced by the provided objects
1219 and KErrNone is returned.
1220 In both cases the objects are copied bitwise into the array.
1222 @param aKey The key object of type K to add to the array.
1223 @param aValue The value object of type V to associate with aKey.
1224 @leave KErrNoMemory if memory could not be allocated to store the copies of aKey and aValue.
1226 inline void InsertL(const K& aKey, const V& aValue)
1227 { RHashTableBase::ValueInsertL(&aKey, sizeof(K), &aValue, _FOFF(SFullElement,iV), sizeof(V)); }
1231 Remove a key-value pair from the array.
1233 @param aKey The key to be removed.
1234 @return KErrNone if the key object and corresponding value object were
1235 removed successfully.
1236 KErrNotFound if the key object was not present in the array.
1238 inline TInt Remove(const K& aKey)
1239 { return RHashTableBase::Remove(&aKey); }
1243 Query the number of key-value pairs in the array.
1245 @return The number of key-value pairs currently in the array.
1247 inline TInt Count() const
1248 { return RHashTableBase::Count(); }
1252 Expand the array to accommodate a specified number of key-value pairs.
1253 If the set already has enough space for the specified number of elements, no
1254 action is taken. Any elements already in the set are retained.
1256 @param aCount The number of key-value pairs for which space should be allocated.
1257 @return KErrNone if the operation completed successfully.
1258 @return KErrNoMemory if sufficient memory could not be allocated.
1260 inline TInt Reserve(TInt aCount)
1261 { return RHashTableBase::Reserve(aCount); }
1265 Expand the array to accommodate a specified number of key-value pairs.
1266 If the set already has enough space for the specified number of elements, no
1267 action is taken. Any elements already in the set are retained.
1269 @param aCount The number of key-value pairs for which space should be allocated.
1270 @leave KErrNoMemory if sufficient memory could not be allocated.
1272 inline void ReserveL(TInt aCount)
1273 { RHashTableBase::ReserveL(aCount); }
1282 A templated class which allows iteration over the elements of a RHashMap<K,V>
1285 The array being iterated over may not be modified while an iteration is in progress
1286 or the iteration operations may malfunction or panic.
1290 template <class K, class V>
1291 class THashMapIter : public THashTableIterBase
1305 Construct an iterator over the specified associative array.
1306 The iterator starts at conceptual position one before the beginning of the list
1309 @param aMap The array to be iterated over.
1311 inline THashMapIter(const RHashMap<K,V>& aMap)
1312 : THashTableIterBase(aMap)
1317 Reset the iterator to its initial state.
1319 @param aSet The set to be iterated over.
1322 { THashTableIterBase::Reset(); }
1326 Return the key corresponding to the current position of the iterator.
1328 @return A pointer to the key object corresponding to the current position of the
1330 NULL if the iterator has just been constructed or reset, or if it has
1331 previously reached the end of an iteration.
1333 inline const K* CurrentKey() const
1334 { return (const K*)THashTableIterBase::Current(_FOFF(SFullElement,iK)); }
1338 Steps the iterator to the next position and returns the corresponding key.
1340 @return A pointer to the key object corresponding to the next position of the
1342 NULL if the iterator has exhausted all the available key-value pairs.
1344 inline const K* NextKey()
1345 { return (const K*)THashTableIterBase::Next(_FOFF(SFullElement,iK)); }
1349 Return the value corresponding to the current position of the iterator.
1351 @return A pointer to the value object corresponding to the current position of the
1353 NULL if the iterator has just been constructed or reset, or if it has
1354 previously reached the end of an iteration.
1356 inline V* CurrentValue()
1357 { return (V*)THashTableIterBase::Current(_FOFF(SFullElement,iV)); }
1361 Steps the iterator to the next position and returns the corresponding value.
1363 @return A pointer to the value object corresponding to the next position of the
1365 NULL if the iterator has exhausted all the available key-value pairs.
1367 inline const V* NextValue()
1368 { return (const V*)THashTableIterBase::Next(_FOFF(SFullElement,iV)); }
1372 Removes the element at the current iterator position from the hash table.
1373 If the iterator does not currently point to a valid element, no action is taken.
1374 Note that the iterator position is not altered so it no longer points to a valid
1375 element following the Remove(). It is illegal to call either CurrentKey() or
1376 CurrentValue() on the iterator after calling Remove() - the only legal
1377 operations are Reset(), NextKey() or NextValue().
1380 inline void RemoveCurrent()
1381 { THashTableIterBase::RemoveCurrent(); }
1386 template <class K, class V> class TPtrHashMapIter;
1392 A templated class which implements an associative array with key type K and value type V,
1393 using a probe-sequence hash table. Neither the key nor value objects are copied into the
1394 table when they are added - only pointers are stored.
1397 template <class K, class V>
1398 class RPtrHashMap : public RHashTableBase
1401 friend class TPtrHashMapIter<K,V>;
1412 A class which allows iteration over the elements of a RPtrHashMap<K,V> class.
1414 The array being iterated over may not be modified while an iteration is in progress
1415 or the iteration operations may malfunction or panic.
1417 @see TPtrHashMapIter<K,V>
1419 typedef TPtrHashMapIter<K,V> TIter;
1422 Construct an associative array of key-value pairs of type (K,V) using a
1423 specified hash function and identity relation.
1424 The array initially contains no key-value pairs.
1426 @param aHash The hash function used to hash the key objects of type K.
1427 @param aIdentity The identity relation used to determine if two key objects
1428 of type K should be considered identical.
1430 inline RPtrHashMap(const THashFunction32<K>& aHash, const TIdentityRelation<K>& aIdentity)
1431 : RHashTableBase(aHash, aIdentity, sizeof(SFullElement), 0)
1436 Construct an associative array of key-value pairs of type (K,V) using a
1437 default hash function and identity relation.
1438 The array initially contains no key-value pairs.
1440 inline RPtrHashMap()
1441 : RHashTableBase(Defaults<K,EDefaultSpecifier_Normal>::Hash(), Defaults<K,EDefaultSpecifier_Normal>::Id(), sizeof(SFullElement), 0)
1446 Free all memory used by this array.
1447 Returns the array to the same state it had following construction.
1450 { RHashTableBase::Close(); }
1454 Look up a specified key in the associative array and return a pointer to the
1455 corresponding value.
1457 @param aKey The key object of type K to look up.
1458 @return A pointer to corresponding value object if the specified key
1459 object was found. The value object may not be modified via
1461 NULL if the specified key object was not found.
1463 inline const V* Find(const K& aKey) const
1464 { return (const V*)RHashTableBase::Find(&aKey, -_FOFF(SFullElement,iV)); }
1468 Look up a specified key in the associative array and return a pointer to the
1469 corresponding value.
1471 @param aKey The key object of type K to look up.
1472 @return A reference to corresponding value object if the specified key
1473 object was found. The value object may not be modified via
1475 @leave KErrNotFound if the specified key object was not found.
1477 inline const V& FindL(const K& aKey) const
1478 { return *(const V*)RHashTableBase::FindL(&aKey, -_FOFF(SFullElement,iV)); }
1482 Look up a specified key in the associative array and return a pointer to the
1483 corresponding value.
1485 @param aKey The key object of type K to look up.
1486 @return A pointer to corresponding value object if the specified key
1487 object was found. The value object may be modified via
1489 NULL if the specified key object was not found.
1491 inline V* Find(const K& aKey)
1492 { return (V*)RHashTableBase::Find(&aKey, -_FOFF(SFullElement,iV)); }
1496 Look up a specified key in the associative array and return a pointer to the
1497 corresponding value.
1499 @param aKey The key object of type K to look up.
1500 @return A reference to corresponding value object if the specified key
1501 object was found. The value object may be modified via
1503 @leave KErrNotFound if the specified key object was not found.
1505 inline V& FindL(const K& aKey)
1506 { return *(V*)RHashTableBase::FindL(&aKey, -_FOFF(SFullElement,iV)); }
1510 Insert a key-value pair into the array.
1512 If the specified key object is not found in the array, a pointer to the
1513 key object along with a pointer to the value object are added to the array
1514 and KErrNone is returned.
1515 If the specified key object is found in the array, the existing pointers
1516 to both the key and value objects are replaced by the provided pointers
1517 and KErrNone is returned.
1518 In both cases only pointers are stored in the array - the objects themselves
1521 @param aKey A pointer to the key object of type K to add to the array.
1522 @param aValue A pointer to the value object of type V to associate with aKey.
1523 @return KErrNone if the key-value pair was added successfully.
1524 KErrNoMemory if memory could not be allocated to store
1525 the pointers aKey and aValue.
1527 inline TInt Insert(const K* aKey, const V* aValue)
1528 { return RHashTableBase::PtrInsert(aKey, aValue); }
1532 Insert a key-value pair into the array.
1534 If the specified key object is not found in the array, a pointer to the
1535 key object along with a pointer to the value object are added to the array
1536 and KErrNone is returned.
1537 If the specified key object is found in the array, the existing pointers
1538 to both the key and value objects are replaced by the provided pointers
1539 and KErrNone is returned.
1540 In both cases only pointers are stored in the array - the objects themselves
1543 @param aKey A pointer to the key object of type K to add to the array.
1544 @param aValue A pointer to the value object of type V to associate with aKey.
1545 @leave KErrNoMemory if memory could not be allocated to store the pointers aKey and aValue.
1547 inline void InsertL(const K* aKey, const V* aValue)
1548 { RHashTableBase::PtrInsertL(aKey, aValue); }
1552 Remove a key-value pair from the array.
1554 @param aKey A pointer to the key to be removed.
1555 @return KErrNone if the pointers to the key object and corresponding
1556 value object were removed successfully.
1557 KErrNotFound if the key object was not present in the array.
1559 inline TInt Remove(const K* aKey)
1560 { return RHashTableBase::Remove(aKey); }
1564 Query the number of key-value pairs in the array.
1566 @return The number of key-value pairs currently in the array.
1568 inline TInt Count() const
1569 { return RHashTableBase::Count(); }
1573 Expand the array to accommodate a specified number of key-value pairs.
1574 If the set already has enough space for the specified number of elements, no
1575 action is taken. Any elements already in the set are retained.
1577 @param aCount The number of key-value pairs for which space should be allocated.
1578 @return KErrNone if the operation completed successfully.
1579 @return KErrNoMemory if sufficient memory could not be allocated.
1581 inline TInt Reserve(TInt aCount)
1582 { return RHashTableBase::Reserve(aCount); }
1586 Expand the array to accommodate a specified number of key-value pairs.
1587 If the set already has enough space for the specified number of elements, no
1588 action is taken. Any elements already in the set are retained.
1590 @param aCount The number of key-value pairs for which space should be allocated.
1591 @leave KErrNoMemory if sufficient memory could not be allocated.
1593 inline void ReserveL(TInt aCount)
1594 { RHashTableBase::ReserveL(aCount); }
1597 void ResetAndDestroy();
1605 A templated class which allows iteration over the elements of a RPtrHashMap<K,V>
1608 The array being iterated over may not be modified while an iteration is in progress
1609 or the iteration operations may malfunction or panic.
1611 @see RPtrHashMap<K,V>
1613 template <class K, class V>
1614 class TPtrHashMapIter : public THashTableIterBase
1627 Construct an iterator over the specified associative array.
1628 The iterator starts at conceptual position one before the beginning of the list
1631 @param aMap The array to be iterated over.
1633 inline TPtrHashMapIter(const RPtrHashMap<K,V>& aMap)
1634 : THashTableIterBase(aMap)
1639 Reset the iterator to its initial state.
1641 @param aSet The set to be iterated over.
1644 { THashTableIterBase::Reset(); }
1648 Return the key corresponding to the current position of the iterator.
1650 @return A pointer to the key object corresponding to the current position of the
1652 NULL if the iterator has just been constructed or reset, or if it has
1653 previously reached the end of an iteration.
1655 inline const K* CurrentKey() const
1656 { return (const K*)THashTableIterBase::Current(-_FOFF(SFullElement,iK)); }
1660 Steps the iterator to the next position and returns the corresponding key.
1662 @return A pointer to the key object corresponding to the next position of the
1664 NULL if the iterator has exhausted all the available key-value pairs.
1666 inline const K* NextKey()
1667 { return (const K*)THashTableIterBase::Next(-_FOFF(SFullElement,iK)); }
1671 Return the value corresponding to the current position of the iterator.
1673 @return A pointer to the value object corresponding to the current position of the
1675 NULL if the iterator has just been constructed or reset, or if it has
1676 previously reached the end of an iteration.
1678 inline const V* CurrentValue() const
1679 { return (const V*)THashTableIterBase::Current(-_FOFF(SFullElement,iV)); }
1683 Steps the iterator to the next position and returns the corresponding value.
1685 @return A pointer to the value object corresponding to the next position of the
1687 NULL if the iterator has exhausted all the available key-value pairs.
1689 inline const V* NextValue()
1690 { return (const V*)THashTableIterBase::Next(-_FOFF(SFullElement,iV)); }
1694 Removes the element at the current iterator position from the hash table.
1695 If the iterator does not currently point to a valid element, no action is taken.
1696 Note that the iterator position is not altered so it no longer points to a valid
1697 element following the Remove(). It is illegal to call either CurrentKey() or
1698 CurrentValue() on the iterator after calling Remove() - the only legal
1699 operations are Reset(), NextKey() or NextValue().
1702 inline void RemoveCurrent()
1703 { THashTableIterBase::RemoveCurrent(); }
1709 Deletes all the objects of type T to which pointers are stored in this set.
1710 Then frees all the memory used by the set and returns the set to the same state
1711 as immediately following construction.
1714 void RPtrHashSet<T>::ResetAndDestroy()
1716 TPtrHashSetIter<T> iter(*this);
1719 p = (T*)iter.Next();
1727 Deletes all the key objects of type K and corresponding value objects of type V
1728 to which pointers are stored in this array.
1729 Then frees all the memory used by the array and returns the array to the same
1730 state as immediately following construction.
1732 template <class K, class V>
1733 void RPtrHashMap<K,V>::ResetAndDestroy()
1735 TPtrHashMapIter<K,V> iter(*this);
1739 p = (K*)iter.NextKey();
1740 q = (V*)iter.CurrentValue();