]>
Commit | Line | Data |
---|---|---|
0508ba2a | 1 | ///////////////////////////////////////////////////////////////////////////// |
a4f24526 | 2 | // Name: hashmap.h |
0508ba2a MB |
3 | // Purpose: wxHashMap class |
4 | // Author: Mattia Barbon | |
376e1129 | 5 | // Modified by: |
0508ba2a MB |
6 | // Created: 29/01/2002 |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Mattia Barbon | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_HASHMAP_H_ | |
13 | #define _WX_HASHMAP_H_ | |
14 | ||
af49c4b8 | 15 | #if defined(__GNUG__) && !defined(__APPLE__) |
0508ba2a MB |
16 | #pragma interface "hashmap.h" |
17 | #endif | |
18 | ||
a4f24526 | 19 | #include "wx/string.h" |
0508ba2a | 20 | |
8e0a317c VZ |
21 | #include <stddef.h> // for ptrdiff_t |
22 | ||
0508ba2a | 23 | // private |
ac6e54ee | 24 | struct WXDLLEXPORT _wxHashTable_NodeBase |
0508ba2a MB |
25 | { |
26 | _wxHashTable_NodeBase() : m_nxt(0) {} | |
27 | ||
28 | _wxHashTable_NodeBase* m_nxt; | |
22f3361e VZ |
29 | |
30 | // Cannot do this: | |
31 | // DECLARE_NO_COPY_CLASS(_wxHashTable_NodeBase) | |
32 | // without rewriting the macros, which require a public copy constructor. | |
0508ba2a MB |
33 | }; |
34 | ||
35 | // private | |
ac6e54ee | 36 | class WXDLLEXPORT _wxHashTableBase2 |
0508ba2a MB |
37 | { |
38 | public: | |
39 | typedef void (*NodeDtor)(_wxHashTable_NodeBase*); | |
376e1129 | 40 | typedef unsigned long (*BucketFromNode)(_wxHashTableBase2*,_wxHashTable_NodeBase*); |
0508ba2a MB |
41 | typedef _wxHashTable_NodeBase* (*ProcessNode)(_wxHashTable_NodeBase*); |
42 | protected: | |
43 | static _wxHashTable_NodeBase* DummyProcessNode(_wxHashTable_NodeBase* node); | |
44 | static void DeleteNodes( size_t buckets, _wxHashTable_NodeBase** table, | |
45 | NodeDtor dtor ); | |
46 | static _wxHashTable_NodeBase* GetFirstNode( size_t buckets, | |
47 | _wxHashTable_NodeBase** table ) | |
48 | { | |
49 | for( size_t i = 0; i < buckets; ++i ) | |
50 | if( table[i] ) | |
51 | return table[i]; | |
52 | return 0; | |
53 | } | |
54 | ||
376e1129 | 55 | // as static const unsigned prime_count = 31 but works with all compilers |
0508ba2a | 56 | enum { prime_count = 31 }; |
376e1129 | 57 | static const unsigned long ms_primes[prime_count]; |
0508ba2a | 58 | |
376e1129 | 59 | // returns the first prime in ms_primes greater than n |
0508ba2a MB |
60 | static unsigned long GetNextPrime( unsigned long n ); |
61 | ||
376e1129 VZ |
62 | // returns the first prime in ms_primes smaller than n |
63 | // ( or ms_primes[0] if n is very small ) | |
0508ba2a MB |
64 | static unsigned long GetPreviousPrime( unsigned long n ); |
65 | ||
66 | static void CopyHashTable( _wxHashTable_NodeBase** srcTable, | |
67 | size_t srcBuckets, _wxHashTableBase2* dst, | |
68 | _wxHashTable_NodeBase** dstTable, | |
69 | BucketFromNode func, ProcessNode proc ); | |
70 | ||
2b5f62a0 | 71 | static void** AllocTable( size_t sz ) |
0508ba2a | 72 | { |
2b5f62a0 | 73 | return (void **)calloc(sz, sizeof(void*)); |
0508ba2a MB |
74 | } |
75 | }; | |
76 | ||
77 | #define _WX_DECLARE_HASHTABLE( VALUE_T, KEY_T, HASH_T, KEY_EX_T, KEY_EQ_T, CLASSNAME, CLASSEXP, SHOULD_GROW, SHOULD_SHRINK ) \ | |
376e1129 | 78 | CLASSEXP CLASSNAME : protected _wxHashTableBase2 \ |
0508ba2a MB |
79 | { \ |
80 | public: \ | |
81 | typedef KEY_T key_type; \ | |
82 | typedef VALUE_T value_type; \ | |
83 | typedef HASH_T hasher; \ | |
84 | typedef KEY_EQ_T key_equal; \ | |
85 | \ | |
86 | typedef size_t size_type; \ | |
87 | typedef ptrdiff_t difference_type; \ | |
88 | typedef value_type* pointer; \ | |
89 | typedef const value_type* const_pointer; \ | |
90 | typedef value_type& reference; \ | |
91 | typedef const value_type& const_reference; \ | |
92 | /* should these be protected? */ \ | |
93 | typedef const KEY_T const_key_type; \ | |
94 | typedef const VALUE_T const_mapped_type; \ | |
bc850f29 | 95 | public: \ |
0508ba2a MB |
96 | struct Node; \ |
97 | typedef KEY_EX_T key_extractor; \ | |
98 | typedef CLASSNAME Self; \ | |
bc850f29 | 99 | protected: \ |
0508ba2a MB |
100 | Node** m_table; \ |
101 | size_t m_tableBuckets; \ | |
102 | size_t m_items; \ | |
103 | hasher m_hasher; \ | |
104 | key_equal m_equals; \ | |
105 | key_extractor m_getKey; \ | |
bc850f29 | 106 | public: \ |
0508ba2a MB |
107 | struct Node:public _wxHashTable_NodeBase \ |
108 | { \ | |
109 | public: \ | |
110 | Node( const value_type& value ) \ | |
111 | : m_value( value ) {} \ | |
112 | Node* m_next() { return (Node*)this->m_nxt; } \ | |
113 | \ | |
114 | value_type m_value; \ | |
115 | }; \ | |
116 | \ | |
117 | struct Iterator; \ | |
607f710e | 118 | friend struct Iterator; \ |
bc850f29 | 119 | protected: \ |
0508ba2a MB |
120 | static void DeleteNode( _wxHashTable_NodeBase* node ) \ |
121 | { \ | |
122 | delete (Node*)node; \ | |
123 | } \ | |
bc850f29 | 124 | public: \ |
0508ba2a MB |
125 | /* */ \ |
126 | /* forward iterator */ \ | |
127 | /* */ \ | |
128 | struct Iterator \ | |
129 | { \ | |
130 | Node* m_node; \ | |
131 | Self* m_ht; \ | |
132 | \ | |
133 | Iterator() : m_node(0), m_ht(0) {} \ | |
134 | Iterator( Node* node, const Self* ht ) \ | |
135 | : m_node(node), m_ht((Self*)ht) {} \ | |
136 | bool operator ==( const Iterator& it ) const \ | |
137 | { return m_node == it.m_node; } \ | |
138 | bool operator !=( const Iterator& it ) const \ | |
139 | { return m_node != it.m_node; } \ | |
140 | protected: \ | |
141 | Node* GetNextNode() \ | |
142 | { \ | |
376e1129 | 143 | size_type bucket = GetBucketForNode(m_ht,m_node); \ |
0508ba2a MB |
144 | for( size_type i = bucket + 1; i < m_ht->m_tableBuckets; ++i ) \ |
145 | { \ | |
146 | if( m_ht->m_table[i] ) \ | |
147 | return m_ht->m_table[i]; \ | |
148 | } \ | |
149 | return 0; \ | |
150 | } \ | |
151 | \ | |
152 | void PlusPlus() \ | |
153 | { \ | |
154 | Node* next = m_node->m_next(); \ | |
376e1129 | 155 | m_node = next ? next : GetNextNode(); \ |
0508ba2a MB |
156 | } \ |
157 | }; \ | |
158 | \ | |
159 | public: \ | |
160 | struct iterator:public Iterator \ | |
161 | { \ | |
162 | iterator() : Iterator() {} \ | |
163 | iterator( Node* node, Self* ht ) : Iterator( node, ht ) {} \ | |
164 | iterator& operator++() { PlusPlus(); return *this; } \ | |
165 | iterator operator++(int) { iterator it=*this;PlusPlus();return it; } \ | |
166 | reference operator *() const { return m_node->m_value; } \ | |
167 | pointer operator ->() const { return &(m_node->m_value); } \ | |
168 | }; \ | |
169 | \ | |
170 | struct const_iterator:public Iterator \ | |
171 | { \ | |
172 | const_iterator() : Iterator() {} \ | |
173 | const_iterator( Node* node, const Self* ht ) \ | |
174 | : Iterator( node, (Self*)ht ) {} \ | |
175 | const_iterator& operator++() { PlusPlus();return *this; } \ | |
176 | const_iterator operator++(int) { const_iterator it=*this;PlusPlus();return it; } \ | |
177 | const_reference operator *() const { return m_node->m_value; } \ | |
178 | const_pointer operator ->() const { return &(m_node->m_value); } \ | |
179 | }; \ | |
180 | \ | |
2b5f62a0 | 181 | CLASSNAME( size_type sz = 10, const hasher& hfun = hasher(), \ |
0508ba2a MB |
182 | const key_equal& k_eq = key_equal(), \ |
183 | const key_extractor& k_ex = key_extractor() ) \ | |
083f7497 | 184 | : m_tableBuckets( GetNextPrime( (unsigned long) sz ) ), \ |
0508ba2a MB |
185 | m_items( 0 ), \ |
186 | m_hasher( hfun ), \ | |
187 | m_equals( k_eq ), \ | |
188 | m_getKey( k_ex ) \ | |
189 | { \ | |
190 | m_table = (Node**)AllocTable( m_tableBuckets ); \ | |
191 | } \ | |
192 | \ | |
193 | CLASSNAME( const Self& ht ) \ | |
194 | : m_table( 0 ), \ | |
195 | m_tableBuckets( 0 ), \ | |
196 | m_items( ht.m_items ), \ | |
197 | m_hasher( ht.m_hasher ), \ | |
198 | m_equals( ht.m_equals ), \ | |
199 | m_getKey( ht.m_getKey ) \ | |
200 | { \ | |
201 | HashCopy( ht ); \ | |
202 | } \ | |
203 | \ | |
204 | const Self& operator=( const Self& ht ) \ | |
205 | { \ | |
206 | clear(); \ | |
207 | m_hasher = ht.m_hasher; \ | |
208 | m_equals = ht.m_equals; \ | |
209 | m_getKey = ht.m_getKey; \ | |
210 | m_items = ht.m_items; \ | |
211 | HashCopy( ht ); \ | |
376e1129 | 212 | return *this; \ |
0508ba2a MB |
213 | } \ |
214 | \ | |
215 | ~CLASSNAME() \ | |
216 | { \ | |
217 | clear(); \ | |
218 | \ | |
376e1129 | 219 | free(m_table); \ |
0508ba2a MB |
220 | } \ |
221 | \ | |
222 | hasher hash_funct() { return m_hasher; } \ | |
223 | key_equal key_eq() { return m_equals; } \ | |
224 | \ | |
225 | /* removes all elements from the hash table, but does not */ \ | |
226 | /* shrink it ( perhaps it should ) */ \ | |
2b5f62a0 VZ |
227 | void clear() \ |
228 | { \ | |
229 | DeleteNodes( m_tableBuckets, (_wxHashTable_NodeBase**)m_table, \ | |
230 | DeleteNode ); \ | |
231 | m_items = 0; \ | |
232 | } \ | |
0508ba2a MB |
233 | \ |
234 | size_type size() const { return m_items; } \ | |
235 | size_type max_size() const { return size_type(-1); } \ | |
236 | bool empty() const { return size() == 0; } \ | |
237 | \ | |
238 | const_iterator end() const { return const_iterator( 0, this ); } \ | |
239 | iterator end() { return iterator( 0, this ); } \ | |
240 | const_iterator begin() const \ | |
241 | { return const_iterator( (Node*)GetFirstNode( m_tableBuckets, (_wxHashTable_NodeBase**)m_table ), this ); }; \ | |
242 | iterator begin() \ | |
243 | { return iterator( (Node*)GetFirstNode( m_tableBuckets, (_wxHashTable_NodeBase**)m_table ), this ); }; \ | |
244 | \ | |
245 | size_type erase( const const_key_type& key ) \ | |
246 | { \ | |
247 | Node** node = GetNodePtr( key ); \ | |
248 | \ | |
249 | if( !node ) \ | |
250 | return 0; \ | |
251 | \ | |
252 | --m_items; \ | |
253 | Node* temp = (*node)->m_next(); \ | |
254 | delete *node; \ | |
255 | (*node) = temp; \ | |
256 | if( SHOULD_SHRINK( m_tableBuckets, m_items ) ) \ | |
083f7497 | 257 | ResizeTable( GetPreviousPrime( (unsigned long) m_tableBuckets ) - 1 ); \ |
0508ba2a MB |
258 | return 1; \ |
259 | } \ | |
260 | \ | |
261 | protected: \ | |
262 | static size_type GetBucketForNode( Self* ht, Node* node ) \ | |
263 | { \ | |
264 | return ht->m_hasher( ht->m_getKey( node->m_value ) ) \ | |
265 | % ht->m_tableBuckets; \ | |
266 | } \ | |
267 | static Node* CopyNode( Node* node ) { return new Node( *node ); } \ | |
268 | \ | |
269 | Node* GetOrCreateNode( const value_type& value ) \ | |
270 | { \ | |
271 | const const_key_type& key = m_getKey( value ); \ | |
272 | size_t bucket = m_hasher( key ) % m_tableBuckets; \ | |
273 | Node* node = m_table[bucket]; \ | |
274 | \ | |
275 | while( node ) \ | |
276 | { \ | |
277 | if( m_equals( m_getKey( node->m_value ), key ) ) \ | |
278 | return node; \ | |
279 | node = node->m_next(); \ | |
280 | } \ | |
281 | \ | |
282 | node = new Node( value ); \ | |
283 | node->m_nxt = m_table[bucket]; \ | |
284 | m_table[bucket] = node; \ | |
285 | \ | |
286 | /* must be after the node is inserted */ \ | |
287 | ++m_items; \ | |
288 | if( SHOULD_GROW( m_tableBuckets, m_items ) ) \ | |
289 | ResizeTable( m_tableBuckets ); \ | |
290 | \ | |
291 | return node; \ | |
292 | } \ | |
293 | \ | |
294 | /* returns NULL if not found */ \ | |
295 | Node** GetNodePtr( const const_key_type& key ) const \ | |
296 | { \ | |
297 | unsigned long hash = m_hasher( key ); \ | |
298 | Node** node = &m_table[hash % m_tableBuckets]; \ | |
299 | \ | |
300 | while( *node ) \ | |
301 | { \ | |
302 | if( m_equals( m_getKey( (*node)->m_value ), key ) ) \ | |
303 | return node; \ | |
304 | node = (Node**)&(*node)->m_nxt; \ | |
305 | } \ | |
306 | \ | |
307 | return 0; \ | |
308 | } \ | |
309 | \ | |
310 | /* returns NULL if not found */ \ | |
311 | /* expressing it in terms of GetNodePtr is 5-8% slower :-( */ \ | |
312 | Node* GetNode( const const_key_type& key ) const \ | |
313 | { \ | |
314 | unsigned long hash = m_hasher( key ); \ | |
315 | Node* node = m_table[hash % m_tableBuckets]; \ | |
316 | \ | |
317 | while( node ) \ | |
318 | { \ | |
319 | if( m_equals( m_getKey( node->m_value ), key ) ) \ | |
320 | return node; \ | |
321 | node = node->m_next(); \ | |
322 | } \ | |
323 | \ | |
324 | return 0; \ | |
325 | } \ | |
326 | \ | |
327 | void ResizeTable( size_t newSize ) \ | |
328 | { \ | |
083f7497 | 329 | newSize = GetNextPrime( (unsigned long)newSize ); \ |
0508ba2a MB |
330 | Node** srcTable = m_table; \ |
331 | size_t srcBuckets = m_tableBuckets; \ | |
332 | m_table = (Node**)AllocTable( newSize ); \ | |
333 | m_tableBuckets = newSize; \ | |
334 | \ | |
335 | CopyHashTable( (_wxHashTable_NodeBase**)srcTable, srcBuckets, \ | |
336 | this, (_wxHashTable_NodeBase**)m_table, \ | |
1c157205 | 337 | (BucketFromNode)GetBucketForNode,\ |
0508ba2a | 338 | (ProcessNode)&DummyProcessNode ); \ |
376e1129 | 339 | free(srcTable); \ |
0508ba2a MB |
340 | } \ |
341 | \ | |
342 | /* this must be called _after_ m_table has been cleaned */ \ | |
343 | void HashCopy( const Self& ht ) \ | |
344 | { \ | |
345 | ResizeTable( ht.size() ); \ | |
346 | CopyHashTable( (_wxHashTable_NodeBase**)ht.m_table, ht.m_tableBuckets,\ | |
347 | (_wxHashTableBase2*)this, \ | |
348 | (_wxHashTable_NodeBase**)m_table, \ | |
1c157205 MB |
349 | (BucketFromNode)GetBucketForNode, \ |
350 | (ProcessNode)CopyNode ); \ | |
0508ba2a MB |
351 | } \ |
352 | }; | |
353 | ||
376e1129 VZ |
354 | // defines an STL-like pair class CLASSNAME storing two fields: first of type |
355 | // KEY_T and second of type VALUE_T | |
0508ba2a MB |
356 | #define _WX_DECLARE_PAIR( KEY_T, VALUE_T, CLASSNAME, CLASSEXP ) \ |
357 | CLASSEXP CLASSNAME \ | |
358 | { \ | |
359 | public: \ | |
360 | typedef KEY_T t1; \ | |
361 | typedef VALUE_T t2; \ | |
362 | typedef const KEY_T const_t1; \ | |
363 | typedef const VALUE_T const_t2; \ | |
364 | \ | |
365 | CLASSNAME( const const_t1& f, const const_t2& s ):first(t1(f)),second(t2(s)) {} \ | |
366 | CLASSNAME( const const_t1& f ):first(t1(f)),second(t2()) {} \ | |
367 | \ | |
368 | t1 first; \ | |
369 | t2 second; \ | |
370 | }; | |
371 | ||
376e1129 VZ |
372 | // defines the class CLASSNAME returning the key part (of type KEY_T) from a |
373 | // pair of type PAIR_T | |
0508ba2a MB |
374 | #define _WX_DECLARE_HASH_MAP_KEY_EX( KEY_T, PAIR_T, CLASSNAME, CLASSEXP ) \ |
375 | CLASSEXP CLASSNAME \ | |
376 | { \ | |
95197553 MB |
377 | typedef KEY_T key_type; \ |
378 | typedef PAIR_T pair_type; \ | |
379 | typedef const key_type const_key_type; \ | |
380 | typedef const pair_type const_pair_type; \ | |
381 | typedef const_key_type& const_key_reference; \ | |
382 | typedef const_pair_type& const_pair_reference; \ | |
0508ba2a | 383 | public: \ |
376e1129 | 384 | CLASSNAME() { } \ |
95197553 | 385 | const_key_reference operator()( const_pair_reference pair ) const { return pair.first; }\ |
376e1129 VZ |
386 | \ |
387 | /* the dummy assignment operator is needed to suppress compiler */ \ | |
388 | /* warnings from hash table class' operator=(): gcc complains about */ \ | |
389 | /* "statement with no effect" without it */ \ | |
390 | CLASSNAME& operator=(const CLASSNAME&) { return *this; } \ | |
0508ba2a MB |
391 | }; |
392 | ||
393 | // grow/shrink predicates | |
394 | inline bool never_grow( size_t, size_t ) { return FALSE; } | |
395 | inline bool never_shrink( size_t, size_t ) { return FALSE; } | |
396 | inline bool grow_lf70( size_t buckets, size_t items ) | |
397 | { | |
398 | return float(items)/float(buckets) >= 0.85; | |
399 | } | |
400 | ||
376e1129 VZ |
401 | // ---------------------------------------------------------------------------- |
402 | // hashing and comparison functors | |
403 | // ---------------------------------------------------------------------------- | |
404 | ||
405 | // NB: implementation detail: all of these classes must have dummy assignment | |
406 | // operators to suppress warnings about "statement with no effect" from gcc | |
407 | // in the hash table class assignment operator (where they're assigned) | |
408 | ||
0508ba2a | 409 | // integer types |
ac6e54ee | 410 | class WXDLLEXPORT wxIntegerHash |
0508ba2a MB |
411 | { |
412 | public: | |
376e1129 | 413 | wxIntegerHash() { } |
0508ba2a MB |
414 | unsigned long operator()( long x ) const { return (unsigned long)x; } |
415 | unsigned long operator()( unsigned long x ) const { return x; } | |
416 | unsigned long operator()( int x ) const { return (unsigned long)x; } | |
417 | unsigned long operator()( unsigned int x ) const { return x; } | |
376e1129 VZ |
418 | unsigned long operator()( short x ) const { return (unsigned long)x; } |
419 | unsigned long operator()( unsigned short x ) const { return x; } | |
420 | ||
421 | wxIntegerHash& operator=(const wxIntegerHash&) { return *this; } | |
0508ba2a MB |
422 | }; |
423 | ||
ac6e54ee | 424 | class WXDLLEXPORT wxIntegerEqual |
0508ba2a MB |
425 | { |
426 | public: | |
376e1129 | 427 | wxIntegerEqual() { } |
0508ba2a | 428 | bool operator()( long a, long b ) const { return a == b; } |
376e1129 | 429 | bool operator()( unsigned long a, unsigned long b ) const { return a == b; } |
0508ba2a | 430 | bool operator()( int a, int b ) const { return a == b; } |
376e1129 VZ |
431 | bool operator()( unsigned int a, unsigned int b ) const { return a == b; } |
432 | bool operator()( short a, short b ) const { return a == b; } | |
433 | bool operator()( unsigned short a, unsigned short b ) const { return a == b; } | |
434 | ||
435 | wxIntegerEqual& operator=(const wxIntegerEqual&) { return *this; } | |
0508ba2a MB |
436 | }; |
437 | ||
438 | // pointers | |
ac6e54ee | 439 | class WXDLLEXPORT wxPointerHash |
0508ba2a MB |
440 | { |
441 | public: | |
376e1129 VZ |
442 | wxPointerHash() { } |
443 | ||
444 | // TODO: this might not work well on architectures with 64 bit pointers but | |
445 | // 32 bit longs, we should use % ULONG_MAX there | |
083f7497 | 446 | unsigned long operator()( const void* k ) const { return (unsigned long)wxPtrToULong(k); } |
376e1129 VZ |
447 | |
448 | wxPointerHash& operator=(const wxPointerHash&) { return *this; } | |
0508ba2a MB |
449 | }; |
450 | ||
ac6e54ee | 451 | class WXDLLEXPORT wxPointerEqual |
0508ba2a MB |
452 | { |
453 | public: | |
376e1129 VZ |
454 | wxPointerEqual() { } |
455 | bool operator()( const void* a, const void* b ) const { return a == b; } | |
456 | ||
457 | wxPointerEqual& operator=(const wxPointerEqual&) { return *this; } | |
0508ba2a MB |
458 | }; |
459 | ||
460 | // wxString, char*, wxChar* | |
ac6e54ee | 461 | class WXDLLEXPORT wxStringHash |
0508ba2a MB |
462 | { |
463 | public: | |
376e1129 | 464 | wxStringHash() {} |
0508ba2a MB |
465 | unsigned long operator()( const wxString& x ) const |
466 | { return wxCharStringHash( x.c_str() ); } | |
467 | unsigned long operator()( const wxChar* x ) const | |
468 | { return wxCharStringHash( x ); } | |
469 | static unsigned long wxCharStringHash( const wxChar* ); | |
470 | #if wxUSE_UNICODE | |
471 | unsigned long operator()( const char* x ) const | |
472 | { return charStringHash( x ); } | |
473 | static unsigned long charStringHash( const char* ); | |
376e1129 VZ |
474 | #endif // wxUSE_UNICODE |
475 | ||
476 | wxStringHash& operator=(const wxStringHash&) { return *this; } | |
0508ba2a MB |
477 | }; |
478 | ||
ac6e54ee | 479 | class WXDLLEXPORT wxStringEqual |
0508ba2a MB |
480 | { |
481 | public: | |
376e1129 | 482 | wxStringEqual() {} |
0508ba2a MB |
483 | bool operator()( const wxString& a, const wxString& b ) const |
484 | { return a == b; } | |
485 | bool operator()( const wxChar* a, const wxChar* b ) const | |
486 | { return wxStrcmp( a, b ) == 0; } | |
487 | #if wxUSE_UNICODE | |
488 | bool operator()( const char* a, const char* b ) const | |
489 | { return strcmp( a, b ) == 0; } | |
376e1129 VZ |
490 | #endif // wxUSE_UNICODE |
491 | ||
492 | wxStringEqual& operator=(const wxStringEqual&) { return *this; } | |
0508ba2a MB |
493 | }; |
494 | ||
495 | #define _WX_DECLARE_HASH_MAP( KEY_T, VALUE_T, HASH_T, KEY_EQ_T, CLASSNAME, CLASSEXP ) \ | |
496 | _WX_DECLARE_PAIR( KEY_T, VALUE_T, CLASSNAME##_wxImplementation_Pair, CLASSEXP ) \ | |
497 | _WX_DECLARE_HASH_MAP_KEY_EX( KEY_T, CLASSNAME##_wxImplementation_Pair, CLASSNAME##_wxImplementation_KeyEx, CLASSEXP ) \ | |
498 | _WX_DECLARE_HASHTABLE( CLASSNAME##_wxImplementation_Pair, KEY_T, HASH_T, CLASSNAME##_wxImplementation_KeyEx, KEY_EQ_T, CLASSNAME##_wxImplementation_HashTable, CLASSEXP, grow_lf70, never_shrink ) \ | |
499 | CLASSEXP CLASSNAME:public CLASSNAME##_wxImplementation_HashTable \ | |
500 | { \ | |
501 | public: \ | |
502 | typedef VALUE_T mapped_type; \ | |
503 | \ | |
504 | CLASSNAME( size_type hint = 100, hasher hf = hasher(), key_equal eq = key_equal() ) \ | |
505 | : CLASSNAME##_wxImplementation_HashTable( hint, hf, eq, CLASSNAME##_wxImplementation_KeyEx() ) {} \ | |
506 | \ | |
507 | mapped_type& operator[]( const const_key_type& key ) \ | |
508 | { \ | |
509 | return GetOrCreateNode( CLASSNAME##_wxImplementation_Pair( key ) )->m_value.second; \ | |
510 | } \ | |
511 | \ | |
512 | const_iterator find( const const_key_type& key ) const \ | |
513 | { \ | |
514 | return const_iterator( GetNode( key ), this ); \ | |
515 | } \ | |
516 | \ | |
517 | iterator find( const const_key_type& key ) \ | |
518 | { \ | |
519 | return iterator( GetNode( key ), this ); \ | |
520 | } \ | |
521 | \ | |
522 | void insert( const value_type& v ) { (*this)[v.first] = v.second; } \ | |
523 | \ | |
524 | size_type erase( const key_type& k ) \ | |
525 | { return CLASSNAME##_wxImplementation_HashTable::erase( k ); } \ | |
526 | void erase( const iterator& it ) { erase( it->first ); } \ | |
527 | void erase( const const_iterator& it ) { erase( it->first ); } \ | |
528 | \ | |
529 | /* count() == 0 | 1 */ \ | |
530 | size_type count( const const_key_type& key ) \ | |
531 | { return GetNode( key ) ? 1 : 0; } \ | |
d86939c4 | 532 | } |
0508ba2a MB |
533 | |
534 | // these macros are to be used in the user code | |
535 | #define WX_DECLARE_HASH_MAP( KEY_T, VALUE_T, HASH_T, KEY_EQ_T, CLASSNAME) \ | |
536 | _WX_DECLARE_HASH_MAP( KEY_T, VALUE_T, HASH_T, KEY_EQ_T, CLASSNAME, class ) | |
537 | ||
538 | #define WX_DECLARE_STRING_HASH_MAP( VALUE_T, CLASSNAME ) \ | |
539 | _WX_DECLARE_HASH_MAP( wxString, VALUE_T, wxStringHash, wxStringEqual, \ | |
d86939c4 | 540 | CLASSNAME, class ) |
0508ba2a MB |
541 | |
542 | #define WX_DECLARE_VOIDPTR_HASH_MAP( VALUE_T, CLASSNAME ) \ | |
543 | _WX_DECLARE_HASH_MAP( void*, VALUE_T, wxPointerHash, wxPointerEqual, \ | |
d86939c4 | 544 | CLASSNAME, class ) |
0508ba2a MB |
545 | |
546 | // and these do exactly the same thing but should be used inside the | |
547 | // library | |
548 | #define WX_DECLARE_EXPORTED_HASH_MAP( KEY_T, VALUE_T, HASH_T, KEY_EQ_T, CLASSNAME) \ | |
549 | _WX_DECLARE_HASH_MAP( KEY_T, VALUE_T, HASH_T, KEY_EQ_T, CLASSNAME, class WXDLLEXPORT ) | |
550 | ||
551 | #define WX_DECLARE_EXPORTED_STRING_HASH_MAP( VALUE_T, CLASSNAME ) \ | |
552 | _WX_DECLARE_HASH_MAP( wxString, VALUE_T, wxStringHash, wxStringEqual, \ | |
d86939c4 | 553 | CLASSNAME, class WXDLLEXPORT ) |
0508ba2a MB |
554 | |
555 | #define WX_DECLARE_EXPORTED_VOIDPTR_HASH_MAP( VALUE_T, CLASSNAME ) \ | |
556 | _WX_DECLARE_HASH_MAP( void*, VALUE_T, wxPointerHash, wxPointerEqual, \ | |
d86939c4 | 557 | CLASSNAME, class WXDLLEXPORT ) |
0508ba2a | 558 | |
376e1129 | 559 | #endif // _WX_HASHMAP_H_ |
0508ba2a | 560 |