1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxHashMap class
4 // Author: Mattia Barbon
8 // Copyright: (c) Mattia Barbon
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_HASHMAP_H_
13 #define _WX_HASHMAP_H_
15 #include "wx/string.h"
18 // In wxUSE_STD_CONTAINERS build we prefer to use the standard hash map class
19 // but it can be either in non-standard hash_map header (old g++ and some other
20 // STL implementations) or in C++0x standard unordered_map which can in turn be
21 // available either in std::tr1 or std namespace itself
23 // To summarize: if std::unordered_map is available use it, otherwise use tr1
24 // and finally fall back to non-standard hash_map
26 #if (defined(HAVE_EXT_HASH_MAP) || defined(HAVE_HASH_MAP)) \
27 && (defined(HAVE_GNU_CXX_HASH_MAP) || defined(HAVE_STD_HASH_MAP))
28 #define HAVE_STL_HASH_MAP
31 #if wxUSE_STD_CONTAINERS && \
32 (defined(HAVE_STD_UNORDERED_MAP) || defined(HAVE_TR1_UNORDERED_MAP))
34 #if defined(HAVE_STD_UNORDERED_MAP)
35 #include <unordered_map>
36 #define WX_HASH_MAP_NAMESPACE std
37 #elif defined(HAVE_TR1_UNORDERED_MAP)
38 #include <tr1/unordered_map>
39 #define WX_HASH_MAP_NAMESPACE std::tr1
42 #define _WX_DECLARE_HASH_MAP( KEY_T, VALUE_T, HASH_T, KEY_EQ_T, CLASSNAME, CLASSEXP ) \
43 typedef WX_HASH_MAP_NAMESPACE::unordered_map< KEY_T, VALUE_T, HASH_T, KEY_EQ_T > CLASSNAME
45 #elif wxUSE_STD_CONTAINERS && defined(HAVE_STL_HASH_MAP)
47 #if defined(HAVE_EXT_HASH_MAP)
48 #include <ext/hash_map>
49 #elif defined(HAVE_HASH_MAP)
53 #if defined(HAVE_GNU_CXX_HASH_MAP)
54 #define WX_HASH_MAP_NAMESPACE __gnu_cxx
55 #elif defined(HAVE_STD_HASH_MAP)
56 #define WX_HASH_MAP_NAMESPACE std
59 #define _WX_DECLARE_HASH_MAP( KEY_T, VALUE_T, HASH_T, KEY_EQ_T, CLASSNAME, CLASSEXP ) \
60 typedef WX_HASH_MAP_NAMESPACE::hash_map< KEY_T, VALUE_T, HASH_T, KEY_EQ_T > CLASSNAME
62 #else // !wxUSE_STD_CONTAINERS || no std::{hash,unordered}_map class available
64 #define wxNEEDS_WX_HASH_MAP
67 typedef int ptrdiff_t;
69 #include <stddef.h> // for ptrdiff_t
73 struct WXDLLIMPEXP_BASE _wxHashTable_NodeBase
75 _wxHashTable_NodeBase() : m_next(NULL
) {}
77 _wxHashTable_NodeBase
* m_next
;
80 // wxDECLARE_NO_COPY_CLASS(_wxHashTable_NodeBase);
81 // without rewriting the macros, which require a public copy constructor.
85 class WXDLLIMPEXP_BASE _wxHashTableBase2
88 typedef void (*NodeDtor
)(_wxHashTable_NodeBase
*);
89 typedef unsigned long (*BucketFromNode
)(_wxHashTableBase2
*,_wxHashTable_NodeBase
*);
90 typedef _wxHashTable_NodeBase
* (*ProcessNode
)(_wxHashTable_NodeBase
*);
92 static _wxHashTable_NodeBase
* DummyProcessNode(_wxHashTable_NodeBase
* node
);
93 static void DeleteNodes( size_t buckets
, _wxHashTable_NodeBase
** table
,
95 static _wxHashTable_NodeBase
* GetFirstNode( size_t buckets
,
96 _wxHashTable_NodeBase
** table
)
98 for( size_t i
= 0; i
< buckets
; ++i
)
104 // as static const unsigned prime_count = 31 but works with all compilers
105 enum { prime_count
= 31 };
106 static const unsigned long ms_primes
[prime_count
];
108 // returns the first prime in ms_primes greater than n
109 static unsigned long GetNextPrime( unsigned long n
);
111 // returns the first prime in ms_primes smaller than n
112 // ( or ms_primes[0] if n is very small )
113 static unsigned long GetPreviousPrime( unsigned long n
);
115 static void CopyHashTable( _wxHashTable_NodeBase
** srcTable
,
116 size_t srcBuckets
, _wxHashTableBase2
* dst
,
117 _wxHashTable_NodeBase
** dstTable
,
118 BucketFromNode func
, ProcessNode proc
);
120 static void** AllocTable( size_t sz
)
122 return (void **)calloc(sz
, sizeof(void*));
124 static void FreeTable(void *table
)
130 #define _WX_DECLARE_HASHTABLE( VALUE_T, KEY_T, HASH_T, KEY_EX_T, KEY_EQ_T,\
131 PTROPERATOR, CLASSNAME, CLASSEXP, \
132 SHOULD_GROW, SHOULD_SHRINK ) \
133 CLASSEXP CLASSNAME : protected _wxHashTableBase2 \
136 typedef KEY_T key_type; \
137 typedef VALUE_T value_type; \
138 typedef HASH_T hasher; \
139 typedef KEY_EQ_T key_equal; \
141 typedef size_t size_type; \
142 typedef ptrdiff_t difference_type; \
143 typedef value_type* pointer; \
144 typedef const value_type* const_pointer; \
145 typedef value_type& reference; \
146 typedef const value_type& const_reference; \
147 /* should these be protected? */ \
148 typedef const KEY_T const_key_type; \
149 typedef const VALUE_T const_mapped_type; \
151 typedef KEY_EX_T key_extractor; \
152 typedef CLASSNAME Self; \
154 _wxHashTable_NodeBase** m_table; \
155 size_t m_tableBuckets; \
158 key_equal m_equals; \
159 key_extractor m_getKey; \
161 struct Node:public _wxHashTable_NodeBase \
164 Node( const value_type& value ) \
165 : m_value( value ) {} \
166 Node* next() { return static_cast<Node*>(m_next); } \
168 value_type m_value; \
172 static void DeleteNode( _wxHashTable_NodeBase* node ) \
174 delete static_cast<Node*>(node); \
178 /* forward iterator */ \
186 Iterator() : m_node(NULL), m_ht(NULL) {} \
187 Iterator( Node* node, const Self* ht ) \
188 : m_node(node), m_ht(const_cast<Self*>(ht)) {} \
189 bool operator ==( const Iterator& it ) const \
190 { return m_node == it.m_node; } \
191 bool operator !=( const Iterator& it ) const \
192 { return m_node != it.m_node; } \
194 Node* GetNextNode() \
196 size_type bucket = GetBucketForNode(m_ht,m_node); \
197 for( size_type i = bucket + 1; i < m_ht->m_tableBuckets; ++i ) \
199 if( m_ht->m_table[i] ) \
200 return static_cast<Node*>(m_ht->m_table[i]); \
207 Node* next = m_node->next(); \
208 m_node = next ? next : GetNextNode(); \
211 friend class Iterator; \
214 CLASSEXP iterator : public Iterator \
217 iterator() : Iterator() {} \
218 iterator( Node* node, Self* ht ) : Iterator( node, ht ) {} \
219 iterator& operator++() { PlusPlus(); return *this; } \
220 iterator operator++(int) { iterator it=*this;PlusPlus();return it; } \
221 reference operator *() const { return m_node->m_value; } \
222 PTROPERATOR(pointer) \
225 CLASSEXP const_iterator : public Iterator \
228 const_iterator() : Iterator() {} \
229 const_iterator(iterator i) : Iterator(i) {} \
230 const_iterator( Node* node, const Self* ht ) \
231 : Iterator(node, const_cast<Self*>(ht)) {} \
232 const_iterator& operator++() { PlusPlus();return *this; } \
233 const_iterator operator++(int) { const_iterator it=*this;PlusPlus();return it; } \
234 const_reference operator *() const { return m_node->m_value; } \
235 PTROPERATOR(const_pointer) \
238 CLASSNAME( size_type sz = 10, const hasher& hfun = hasher(), \
239 const key_equal& k_eq = key_equal(), \
240 const key_extractor& k_ex = key_extractor() ) \
241 : m_tableBuckets( GetNextPrime( (unsigned long) sz ) ), \
247 m_table = (_wxHashTable_NodeBase**)AllocTable(m_tableBuckets); \
250 CLASSNAME( const Self& ht ) \
252 m_tableBuckets( 0 ), \
253 m_items( ht.m_items ), \
254 m_hasher( ht.m_hasher ), \
255 m_equals( ht.m_equals ), \
256 m_getKey( ht.m_getKey ) \
261 const Self& operator=( const Self& ht ) \
266 m_hasher = ht.m_hasher; \
267 m_equals = ht.m_equals; \
268 m_getKey = ht.m_getKey; \
269 m_items = ht.m_items; \
279 FreeTable(m_table); \
282 hasher hash_funct() { return m_hasher; } \
283 key_equal key_eq() { return m_equals; } \
285 /* removes all elements from the hash table, but does not */ \
286 /* shrink it ( perhaps it should ) */ \
289 DeleteNodes(m_tableBuckets, m_table, DeleteNode); \
293 size_type size() const { return m_items; } \
294 size_type max_size() const { return size_type(-1); } \
295 bool empty() const { return size() == 0; } \
297 const_iterator end() const { return const_iterator(NULL, this); } \
298 iterator end() { return iterator(NULL, this); } \
299 const_iterator begin() const \
300 { return const_iterator(static_cast<Node*>(GetFirstNode(m_tableBuckets, m_table)), this); } \
302 { return iterator(static_cast<Node*>(GetFirstNode(m_tableBuckets, m_table)), this); } \
304 size_type erase( const const_key_type& key ) \
306 _wxHashTable_NodeBase** node = GetNodePtr(key); \
312 _wxHashTable_NodeBase* temp = (*node)->m_next; \
313 delete static_cast<Node*>(*node); \
315 if( SHOULD_SHRINK( m_tableBuckets, m_items ) ) \
316 ResizeTable( GetPreviousPrime( (unsigned long) m_tableBuckets ) - 1 ); \
321 static size_type GetBucketForNode( Self* ht, Node* node ) \
323 return ht->m_hasher( ht->m_getKey( node->m_value ) ) \
324 % ht->m_tableBuckets; \
326 static Node* CopyNode( Node* node ) { return new Node( *node ); } \
328 Node* GetOrCreateNode( const value_type& value, bool& created ) \
330 const const_key_type& key = m_getKey( value ); \
331 size_t bucket = m_hasher( key ) % m_tableBuckets; \
332 Node* node = static_cast<Node*>(m_table[bucket]); \
336 if( m_equals( m_getKey( node->m_value ), key ) ) \
341 node = node->next(); \
344 return CreateNode( value, bucket); \
346 Node * CreateNode( const value_type& value, size_t bucket ) \
348 Node* node = new Node( value ); \
349 node->m_next = m_table[bucket]; \
350 m_table[bucket] = node; \
352 /* must be after the node is inserted */ \
354 if( SHOULD_GROW( m_tableBuckets, m_items ) ) \
355 ResizeTable( m_tableBuckets ); \
359 void CreateNode( const value_type& value ) \
361 CreateNode(value, m_hasher( m_getKey(value) ) % m_tableBuckets ); \
364 /* returns NULL if not found */ \
365 _wxHashTable_NodeBase** GetNodePtr(const const_key_type& key) const \
367 size_t bucket = m_hasher( key ) % m_tableBuckets; \
368 _wxHashTable_NodeBase** node = &m_table[bucket]; \
372 if (m_equals(m_getKey(static_cast<Node*>(*node)->m_value), key)) \
374 node = &(*node)->m_next; \
380 /* returns NULL if not found */ \
381 /* expressing it in terms of GetNodePtr is 5-8% slower :-( */ \
382 Node* GetNode( const const_key_type& key ) const \
384 size_t bucket = m_hasher( key ) % m_tableBuckets; \
385 Node* node = static_cast<Node*>(m_table[bucket]); \
389 if( m_equals( m_getKey( node->m_value ), key ) ) \
391 node = node->next(); \
397 void ResizeTable( size_t newSize ) \
399 newSize = GetNextPrime( (unsigned long)newSize ); \
400 _wxHashTable_NodeBase** srcTable = m_table; \
401 size_t srcBuckets = m_tableBuckets; \
402 m_table = (_wxHashTable_NodeBase**)AllocTable( newSize ); \
403 m_tableBuckets = newSize; \
405 CopyHashTable( srcTable, srcBuckets, \
407 (BucketFromNode)GetBucketForNode,\
408 (ProcessNode)&DummyProcessNode ); \
409 FreeTable(srcTable); \
412 /* this must be called _after_ m_table has been cleaned */ \
413 void HashCopy( const Self& ht ) \
415 ResizeTable( ht.size() ); \
416 CopyHashTable( ht.m_table, ht.m_tableBuckets, \
417 (_wxHashTableBase2*)this, \
419 (BucketFromNode)GetBucketForNode, \
420 (ProcessNode)CopyNode ); \
424 // defines an STL-like pair class CLASSNAME storing two fields: first of type
425 // KEY_T and second of type VALUE_T
426 #define _WX_DECLARE_PAIR( KEY_T, VALUE_T, CLASSNAME, CLASSEXP ) \
430 typedef KEY_T first_type; \
431 typedef VALUE_T second_type; \
433 typedef VALUE_T t2; \
434 typedef const KEY_T const_t1; \
435 typedef const VALUE_T const_t2; \
437 CLASSNAME(const const_t1& f, const const_t2& s) \
438 : first(const_cast<t1&>(f)), second(const_cast<t2&>(s)) {} \
444 // defines the class CLASSNAME returning the key part (of type KEY_T) from a
445 // pair of type PAIR_T
446 #define _WX_DECLARE_HASH_MAP_KEY_EX( KEY_T, PAIR_T, CLASSNAME, CLASSEXP ) \
449 typedef KEY_T key_type; \
450 typedef PAIR_T pair_type; \
451 typedef const key_type const_key_type; \
452 typedef const pair_type const_pair_type; \
453 typedef const_key_type& const_key_reference; \
454 typedef const_pair_type& const_pair_reference; \
457 const_key_reference operator()( const_pair_reference pair ) const { return pair.first; }\
459 /* the dummy assignment operator is needed to suppress compiler */ \
460 /* warnings from hash table class' operator=(): gcc complains about */ \
461 /* "statement with no effect" without it */ \
462 CLASSNAME& operator=(const CLASSNAME&) { return *this; } \
465 // grow/shrink predicates
466 inline bool never_grow( size_t, size_t ) { return false; }
467 inline bool never_shrink( size_t, size_t ) { return false; }
468 inline bool grow_lf70( size_t buckets
, size_t items
)
470 return float(items
)/float(buckets
) >= 0.85;
473 #endif // various hash map implementations
475 // ----------------------------------------------------------------------------
476 // hashing and comparison functors
477 // ----------------------------------------------------------------------------
479 // NB: implementation detail: all of these classes must have dummy assignment
480 // operators to suppress warnings about "statement with no effect" from gcc
481 // in the hash table class assignment operator (where they're assigned)
483 #ifndef wxNEEDS_WX_HASH_MAP
486 class WXDLLIMPEXP_BASE wxIntegerHash
488 WX_HASH_MAP_NAMESPACE::hash
<long> longHash
;
489 WX_HASH_MAP_NAMESPACE::hash
<unsigned long> ulongHash
;
490 WX_HASH_MAP_NAMESPACE::hash
<int> intHash
;
491 WX_HASH_MAP_NAMESPACE::hash
<unsigned int> uintHash
;
492 WX_HASH_MAP_NAMESPACE::hash
<short> shortHash
;
493 WX_HASH_MAP_NAMESPACE::hash
<unsigned short> ushortHash
;
495 #ifdef wxHAS_LONG_LONG_T_DIFFERENT_FROM_LONG
496 // hash<wxLongLong_t> ought to work but doesn't on some compilers
497 #if (!defined SIZEOF_LONG_LONG && SIZEOF_LONG == 4) \
498 || (defined SIZEOF_LONG_LONG && SIZEOF_LONG_LONG == SIZEOF_LONG * 2)
499 size_t longlongHash( wxLongLong_t x
) const
501 return longHash( wx_truncate_cast(long, x
) ) ^
502 longHash( wx_truncate_cast(long, x
>> (sizeof(long) * 8)) );
504 #elif defined SIZEOF_LONG_LONG && SIZEOF_LONG_LONG == SIZEOF_LONG
505 WX_HASH_MAP_NAMESPACE::hash
<long> longlongHash
;
507 WX_HASH_MAP_NAMESPACE::hash
<wxLongLong_t
> longlongHash
;
509 #endif // wxHAS_LONG_LONG_T_DIFFERENT_FROM_LONG
513 size_t operator()( long x
) const { return longHash( x
); }
514 size_t operator()( unsigned long x
) const { return ulongHash( x
); }
515 size_t operator()( int x
) const { return intHash( x
); }
516 size_t operator()( unsigned int x
) const { return uintHash( x
); }
517 size_t operator()( short x
) const { return shortHash( x
); }
518 size_t operator()( unsigned short x
) const { return ushortHash( x
); }
519 #ifdef wxHAS_LONG_LONG_T_DIFFERENT_FROM_LONG
520 size_t operator()( wxLongLong_t x
) const { return longlongHash(x
); }
521 size_t operator()( wxULongLong_t x
) const { return longlongHash(x
); }
522 #endif // wxHAS_LONG_LONG_T_DIFFERENT_FROM_LONG
524 wxIntegerHash
& operator=(const wxIntegerHash
&) { return *this; }
527 #else // wxNEEDS_WX_HASH_MAP
530 class WXDLLIMPEXP_BASE wxIntegerHash
534 unsigned long operator()( long x
) const { return (unsigned long)x
; }
535 unsigned long operator()( unsigned long x
) const { return x
; }
536 unsigned long operator()( int x
) const { return (unsigned long)x
; }
537 unsigned long operator()( unsigned int x
) const { return x
; }
538 unsigned long operator()( short x
) const { return (unsigned long)x
; }
539 unsigned long operator()( unsigned short x
) const { return x
; }
540 #ifdef wxHAS_LONG_LONG_T_DIFFERENT_FROM_LONG
541 wxULongLong_t
operator()( wxLongLong_t x
) const { return static_cast<wxULongLong_t
>(x
); }
542 wxULongLong_t
operator()( wxULongLong_t x
) const { return x
; }
543 #endif // wxHAS_LONG_LONG_T_DIFFERENT_FROM_LONG
545 wxIntegerHash
& operator=(const wxIntegerHash
&) { return *this; }
548 #endif // !wxNEEDS_WX_HASH_MAP/wxNEEDS_WX_HASH_MAP
550 class WXDLLIMPEXP_BASE wxIntegerEqual
554 bool operator()( long a
, long b
) const { return a
== b
; }
555 bool operator()( unsigned long a
, unsigned long b
) const { return a
== b
; }
556 bool operator()( int a
, int b
) const { return a
== b
; }
557 bool operator()( unsigned int a
, unsigned int b
) const { return a
== b
; }
558 bool operator()( short a
, short b
) const { return a
== b
; }
559 bool operator()( unsigned short a
, unsigned short b
) const { return a
== b
; }
560 #ifdef wxHAS_LONG_LONG_T_DIFFERENT_FROM_LONG
561 bool operator()( wxLongLong_t a
, wxLongLong_t b
) const { return a
== b
; }
562 bool operator()( wxULongLong_t a
, wxULongLong_t b
) const { return a
== b
; }
563 #endif // wxHAS_LONG_LONG_T_DIFFERENT_FROM_LONG
565 wxIntegerEqual
& operator=(const wxIntegerEqual
&) { return *this; }
569 class WXDLLIMPEXP_BASE wxPointerHash
574 #ifdef wxNEEDS_WX_HASH_MAP
575 wxUIntPtr
operator()( const void* k
) const { return wxPtrToUInt(k
); }
577 size_t operator()( const void* k
) const { return (size_t)k
; }
580 wxPointerHash
& operator=(const wxPointerHash
&) { return *this; }
583 class WXDLLIMPEXP_BASE wxPointerEqual
587 bool operator()( const void* a
, const void* b
) const { return a
== b
; }
589 wxPointerEqual
& operator=(const wxPointerEqual
&) { return *this; }
592 // wxString, char*, wchar_t*
593 class WXDLLIMPEXP_BASE wxStringHash
597 unsigned long operator()( const wxString
& x
) const
598 { return stringHash( x
.wx_str() ); }
599 unsigned long operator()( const wchar_t* x
) const
600 { return stringHash( x
); }
601 unsigned long operator()( const char* x
) const
602 { return stringHash( x
); }
604 #if WXWIN_COMPATIBILITY_2_8
605 static unsigned long wxCharStringHash( const wxChar
* x
)
606 { return stringHash(x
); }
608 static unsigned long charStringHash( const char* x
)
609 { return stringHash(x
); }
611 #endif // WXWIN_COMPATIBILITY_2_8
613 static unsigned long stringHash( const wchar_t* );
614 static unsigned long stringHash( const char* );
616 wxStringHash
& operator=(const wxStringHash
&) { return *this; }
619 class WXDLLIMPEXP_BASE wxStringEqual
623 bool operator()( const wxString
& a
, const wxString
& b
) const
625 bool operator()( const wxChar
* a
, const wxChar
* b
) const
626 { return wxStrcmp( a
, b
) == 0; }
628 bool operator()( const char* a
, const char* b
) const
629 { return strcmp( a
, b
) == 0; }
630 #endif // wxUSE_UNICODE
632 wxStringEqual
& operator=(const wxStringEqual
&) { return *this; }
635 #ifdef wxNEEDS_WX_HASH_MAP
637 #define wxPTROP_NORMAL(pointer) \
638 pointer operator ->() const { return &(m_node->m_value); }
639 #define wxPTROP_NOP(pointer)
641 #define _WX_DECLARE_HASH_MAP( KEY_T, VALUE_T, HASH_T, KEY_EQ_T, CLASSNAME, CLASSEXP ) \
642 _WX_DECLARE_PAIR( KEY_T, VALUE_T, CLASSNAME##_wxImplementation_Pair, CLASSEXP ) \
643 _WX_DECLARE_HASH_MAP_KEY_EX( KEY_T, CLASSNAME##_wxImplementation_Pair, CLASSNAME##_wxImplementation_KeyEx, CLASSEXP ) \
644 _WX_DECLARE_HASHTABLE( CLASSNAME##_wxImplementation_Pair, KEY_T, HASH_T, \
645 CLASSNAME##_wxImplementation_KeyEx, KEY_EQ_T, wxPTROP_NORMAL, \
646 CLASSNAME##_wxImplementation_HashTable, CLASSEXP, grow_lf70, never_shrink ) \
647 CLASSEXP CLASSNAME:public CLASSNAME##_wxImplementation_HashTable \
650 typedef VALUE_T mapped_type; \
651 _WX_DECLARE_PAIR( iterator, bool, Insert_Result, CLASSEXP ) \
653 wxEXPLICIT CLASSNAME( size_type hint = 100, hasher hf = hasher(), \
654 key_equal eq = key_equal() ) \
655 : CLASSNAME##_wxImplementation_HashTable( hint, hf, eq, \
656 CLASSNAME##_wxImplementation_KeyEx() ) {} \
658 mapped_type& operator[]( const const_key_type& key ) \
661 return GetOrCreateNode( \
662 CLASSNAME##_wxImplementation_Pair( key, mapped_type() ), \
663 created)->m_value.second; \
666 const_iterator find( const const_key_type& key ) const \
668 return const_iterator( GetNode( key ), this ); \
671 iterator find( const const_key_type& key ) \
673 return iterator( GetNode( key ), this ); \
676 Insert_Result insert( const value_type& v ) \
679 Node *node = GetOrCreateNode( \
680 CLASSNAME##_wxImplementation_Pair( v.first, v.second ), \
682 return Insert_Result(iterator(node, this), created); \
685 size_type erase( const key_type& k ) \
686 { return CLASSNAME##_wxImplementation_HashTable::erase( k ); } \
687 void erase( const iterator& it ) { erase( (*it).first ); } \
689 /* count() == 0 | 1 */ \
690 size_type count( const const_key_type& key ) \
692 /* explicit cast needed to suppress CodeWarrior warnings */ \
693 return (size_type)(GetNode( key ) ? 1 : 0); \
697 #endif // wxNEEDS_WX_HASH_MAP
699 // these macros are to be used in the user code
700 #define WX_DECLARE_HASH_MAP( KEY_T, VALUE_T, HASH_T, KEY_EQ_T, CLASSNAME) \
701 _WX_DECLARE_HASH_MAP( KEY_T, VALUE_T, HASH_T, KEY_EQ_T, CLASSNAME, class )
703 #define WX_DECLARE_STRING_HASH_MAP( VALUE_T, CLASSNAME ) \
704 _WX_DECLARE_HASH_MAP( wxString, VALUE_T, wxStringHash, wxStringEqual, \
707 #define WX_DECLARE_VOIDPTR_HASH_MAP( VALUE_T, CLASSNAME ) \
708 _WX_DECLARE_HASH_MAP( void*, VALUE_T, wxPointerHash, wxPointerEqual, \
711 // and these do exactly the same thing but should be used inside the
713 #define WX_DECLARE_HASH_MAP_WITH_DECL( KEY_T, VALUE_T, HASH_T, KEY_EQ_T, CLASSNAME, DECL) \
714 _WX_DECLARE_HASH_MAP( KEY_T, VALUE_T, HASH_T, KEY_EQ_T, CLASSNAME, DECL )
716 #define WX_DECLARE_EXPORTED_HASH_MAP( KEY_T, VALUE_T, HASH_T, KEY_EQ_T, CLASSNAME) \
717 WX_DECLARE_HASH_MAP_WITH_DECL( KEY_T, VALUE_T, HASH_T, KEY_EQ_T, \
718 CLASSNAME, class WXDLLIMPEXP_CORE )
720 #define WX_DECLARE_STRING_HASH_MAP_WITH_DECL( VALUE_T, CLASSNAME, DECL ) \
721 _WX_DECLARE_HASH_MAP( wxString, VALUE_T, wxStringHash, wxStringEqual, \
724 #define WX_DECLARE_EXPORTED_STRING_HASH_MAP( VALUE_T, CLASSNAME ) \
725 WX_DECLARE_STRING_HASH_MAP_WITH_DECL( VALUE_T, CLASSNAME, \
726 class WXDLLIMPEXP_CORE )
728 #define WX_DECLARE_VOIDPTR_HASH_MAP_WITH_DECL( VALUE_T, CLASSNAME, DECL ) \
729 _WX_DECLARE_HASH_MAP( void*, VALUE_T, wxPointerHash, wxPointerEqual, \
732 #define WX_DECLARE_EXPORTED_VOIDPTR_HASH_MAP( VALUE_T, CLASSNAME ) \
733 WX_DECLARE_VOIDPTR_HASH_MAP_WITH_DECL( VALUE_T, CLASSNAME, \
734 class WXDLLIMPEXP_CORE )
736 // delete all hash elements
738 // NB: the class declaration of the hash elements must be visible from the
739 // place where you use this macro, otherwise the proper destructor may not
740 // be called (a decent compiler should give a warning about it, but don't
742 #define WX_CLEAR_HASH_MAP(type, hashmap) \
744 type::iterator it, en; \
745 for( it = (hashmap).begin(), en = (hashmap).end(); it != en; ++it ) \
750 //---------------------------------------------------------------------------
751 // Declarations of common hashmap classes
753 WX_DECLARE_HASH_MAP_WITH_DECL( long, long, wxIntegerHash
, wxIntegerEqual
,
754 wxLongToLongHashMap
, class WXDLLIMPEXP_BASE
);
756 WX_DECLARE_STRING_HASH_MAP_WITH_DECL( wxString
, wxStringToStringHashMap
,
757 class WXDLLIMPEXP_BASE
);
759 WX_DECLARE_STRING_HASH_MAP_WITH_DECL( wxUIntPtr
, wxStringToNumHashMap
,
760 class WXDLLIMPEXP_BASE
);
763 #endif // _WX_HASHMAP_H_