1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxHashTable class
4 // Author: Julian Smart
5 // Modified by: VZ at 25.02.00: type safe hashes with WX_DECLARE_HASH()
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "hash.h"
21 #if !wxUSE_STL && WXWIN_COMPATIBILITY_2_4
22 #define wxUSE_OLD_HASH_TABLE 1
24 #define wxUSE_OLD_HASH_TABLE 0
28 #include "wx/object.h"
30 class WXDLLIMPEXP_BASE wxObject
;
32 #if wxUSE_OLD_HASH_TABLE
35 #if WXWIN_COMPATIBILITY_2_4
36 #include "wx/dynarray.h"
39 // the default size of the hash
40 #define wxHASH_SIZE_DEFAULT (1000)
43 * A hash table is an array of user-definable size with lists
44 * of data items hanging off the array positions. Usually there'll
45 * be a hit, so no search is required; otherwise we'll have to run down
46 * the list to find the desired item.
49 // ----------------------------------------------------------------------------
50 // this is the base class for object hashes: hash tables which contain
51 // pointers to objects
52 // ----------------------------------------------------------------------------
54 #if wxUSE_OLD_HASH_TABLE
56 class WXDLLIMPEXP_BASE wxHashTableBase
: public wxObject
61 void Create(wxKeyType keyType
= wxKEY_INTEGER
,
62 size_t size
= wxHASH_SIZE_DEFAULT
);
65 size_t GetSize() const { return m_hashSize
; }
66 size_t GetCount() const { return m_count
; }
68 void DeleteContents(bool flag
);
71 // find the node for (key, value)
72 wxNodeBase
*GetNode(long key
, long value
) const;
74 // the array of lists in which we store the values for given key hash
75 wxListBase
**m_hashTable
;
77 // the size of m_lists array
80 // the type of indexing we use
83 // the total number of elements in the hash
86 // should we delete our data?
87 bool m_deleteContents
;
90 // no copy ctor/assignment operator (yet)
91 DECLARE_NO_COPY_CLASS(wxHashTableBase
)
94 #else // if !wxUSE_OLD_HASH_TABLE
96 #if !defined(wxENUM_KEY_TYPE_DEFINED)
97 #define wxENUM_KEY_TYPE_DEFINED
114 class WXDLLIMPEXP_BASE wxHashTableBase_Node
116 friend class WXDLLIMPEXP_BASE wxHashTableBase
;
117 typedef class WXDLLIMPEXP_BASE wxHashTableBase_Node _Node
;
119 wxHashTableBase_Node( long key
, void* value
,
120 wxHashTableBase
* table
);
121 wxHashTableBase_Node( const wxChar
* key
, void* value
,
122 wxHashTableBase
* table
);
123 ~wxHashTableBase_Node();
125 long GetKeyInteger() const { return m_key
.integer
; }
126 const wxChar
* GetKeyString() const { return m_key
.string
; }
128 void* GetData() const { return m_value
; }
129 void SetData( void* data
) { m_value
= data
; }
132 _Node
* GetNext() const { return m_next
; }
135 // next node in the chain
136 wxHashTableBase_Node
* m_next
;
139 wxHashKeyValue m_key
;
144 // pointer to the hash containing the node, used to remove the
145 // node from the hash when the user deletes the node iterating
147 // TODO: move it to wxHashTable_Node (only wxHashTable supports
149 wxHashTableBase
* m_hashPtr
;
152 class WXDLLIMPEXP_BASE wxHashTableBase
157 friend class WXDLLIMPEXP_BASE wxHashTableBase_Node
;
159 typedef wxHashTableBase_Node Node
;
162 virtual ~wxHashTableBase() { };
164 void Create( wxKeyType keyType
= wxKEY_INTEGER
,
165 size_t size
= wxHASH_SIZE_DEFAULT
);
169 size_t GetSize() const { return m_size
; }
170 size_t GetCount() const { return m_count
; }
172 void DeleteContents( bool flag
) { m_deleteContents
= flag
; }
174 static long MakeKey(const wxChar
*string
);
177 void DoPut( long key
, long hash
, void* data
);
178 void DoPut( const wxChar
* key
, long hash
, void* data
);
179 void* DoGet( long key
, long hash
) const;
180 void* DoGet( const wxChar
* key
, long hash
) const;
181 void* DoDelete( long key
, long hash
);
182 void* DoDelete( const wxChar
* key
, long hash
);
185 // Remove the node from the hash, *only called from
186 // ~wxHashTable*_Node destructor
187 void DoRemoveNode( wxHashTableBase_Node
* node
);
189 // destroys data contained in the node if appropriate:
190 // deletes the key if it is a string and destrys
191 // the value if m_deleteContents is true
192 void DoDestroyNode( wxHashTableBase_Node
* node
);
194 // inserts a node in the table (at the end of the chain)
195 void DoInsertNode( size_t bucket
, wxHashTableBase_Node
* node
);
197 // removes a node from the table (fiven a pointer to the previous
198 // but does not delete it (only deletes its contents)
199 void DoUnlinkNode( size_t bucket
, wxHashTableBase_Node
* node
,
200 wxHashTableBase_Node
* prev
);
202 // unconditionally deletes node value (invoking the
203 // correct destructor)
204 virtual void DoDeleteContents( wxHashTableBase_Node
* node
) = 0;
210 // number of nodes (key/value pairs)
216 // key typ (INTEGER/STRING)
219 // delete contents when hash is cleared
220 bool m_deleteContents
;
223 DECLARE_NO_COPY_CLASS(wxHashTableBase
)
226 #endif // wxUSE_OLD_HASH_TABLE
230 #if WXWIN_COMPATIBILITY_2_4
232 // ----------------------------------------------------------------------------
233 // a hash table which stores longs
234 // ----------------------------------------------------------------------------
236 class WXDLLIMPEXP_BASE wxHashTableLong
: public wxObject
239 wxHashTableLong(size_t size
= wxHASH_SIZE_DEFAULT
)
241 virtual ~wxHashTableLong();
243 void Create(size_t size
= wxHASH_SIZE_DEFAULT
);
246 size_t GetSize() const { return m_hashSize
; }
247 size_t GetCount() const { return m_count
; }
249 void Put(long key
, long value
);
250 long Get(long key
) const;
251 long Delete(long key
);
254 void Init(size_t size
);
257 wxArrayLong
**m_values
,
260 // the size of array above
263 // the total number of elements in the hash
266 // not implemented yet
267 DECLARE_NO_COPY_CLASS(wxHashTableLong
)
270 // ----------------------------------------------------------------------------
271 // wxStringHashTable: a hash table which indexes strings with longs
272 // ----------------------------------------------------------------------------
274 class WXDLLIMPEXP_BASE wxStringHashTable
: public wxObject
277 wxStringHashTable(size_t sizeTable
= wxHASH_SIZE_DEFAULT
);
278 virtual ~wxStringHashTable();
280 // add a string associated with this key to the table
281 void Put(long key
, const wxString
& value
);
283 // get the string from the key: if not found, an empty string is returned
284 // and the wasFound is set to FALSE if not NULL
285 wxString
Get(long key
, bool *wasFound
= NULL
) const;
287 // remove the item, returning TRUE if the item was found and deleted
288 bool Delete(long key
) const;
294 wxArrayLong
**m_keys
;
295 wxArrayString
**m_values
;
297 // the size of array above
300 DECLARE_NO_COPY_CLASS(wxStringHashTable
)
303 #endif // WXWIN_COMPATIBILITY_2_4
307 // ----------------------------------------------------------------------------
308 // for compatibility only
309 // ----------------------------------------------------------------------------
311 #if !wxUSE_OLD_HASH_TABLE
313 class WXDLLIMPEXP_BASE wxHashTable_Node
: public wxHashTableBase_Node
315 friend class WXDLLIMPEXP_BASE wxHashTable
;
317 wxHashTable_Node( long key
, void* value
,
318 wxHashTableBase
* table
)
319 : wxHashTableBase_Node( key
, value
, table
) { }
320 wxHashTable_Node( const wxChar
* key
, void* value
,
321 wxHashTableBase
* table
)
322 : wxHashTableBase_Node( key
, value
, table
) { }
324 wxObject
* GetData() const
325 { return (wxObject
*)wxHashTableBase_Node::GetData(); }
326 void SetData( wxObject
* data
)
327 { wxHashTableBase_Node::SetData( data
); }
329 wxHashTable_Node
* GetNext() const
330 { return (wxHashTable_Node
*)wxHashTableBase_Node::GetNext(); }
333 // should inherit protectedly, but it is public for compatibility in
334 // order to publicly inherit from wxObject
335 class WXDLLIMPEXP_BASE wxHashTable
: public wxHashTableBase
337 typedef wxHashTableBase hash
;
339 typedef wxHashTable_Node Node
;
340 typedef wxHashTable_Node
* compatibility_iterator
;
342 wxHashTable( wxKeyType keyType
= wxKEY_INTEGER
,
343 size_t size
= wxHASH_SIZE_DEFAULT
)
344 : wxHashTableBase() { Create( keyType
, size
); BeginFind(); }
345 wxHashTable( const wxHashTable
& table
);
347 virtual ~wxHashTable() { Destroy(); }
349 const wxHashTable
& operator=( const wxHashTable
& );
351 // key and value are the same
352 void Put(long value
, wxObject
*object
)
353 { DoPut( value
, value
, object
); }
354 void Put(long hash
, long value
, wxObject
*object
)
355 { DoPut( value
, hash
, object
); }
356 void Put(const wxChar
*value
, wxObject
*object
)
357 { DoPut( value
, MakeKey( value
), object
); }
358 void Put(long hash
, const wxChar
*value
, wxObject
*object
)
359 { DoPut( value
, hash
, object
); }
361 // key and value are the same
362 wxObject
*Get(long value
) const
363 { return (wxObject
*)DoGet( value
, value
); }
364 wxObject
*Get(long hash
, long value
) const
365 { return (wxObject
*)DoGet( value
, hash
); }
366 wxObject
*Get(const wxChar
*value
) const
367 { return (wxObject
*)DoGet( value
, MakeKey( value
) ); }
368 wxObject
*Get(long hash
, const wxChar
*value
) const
369 { return (wxObject
*)DoGet( value
, hash
); }
371 // Deletes entry and returns data if found
372 wxObject
*Delete(long key
)
373 { return (wxObject
*)DoDelete( key
, key
); }
374 wxObject
*Delete(long hash
, long key
)
375 { return (wxObject
*)DoDelete( key
, hash
); }
376 wxObject
*Delete(const wxChar
*key
)
377 { return (wxObject
*)DoDelete( key
, MakeKey( key
) ); }
378 wxObject
*Delete(long hash
, const wxChar
*key
)
379 { return (wxObject
*)DoDelete( key
, hash
); }
381 // Construct your own integer key from a string, e.g. in case
382 // you need to combine it with something
383 long MakeKey(const wxChar
*string
) const
384 { return wxHashTableBase::MakeKey(string
); }
386 // Way of iterating through whole hash table (e.g. to delete everything)
387 // Not necessary, of course, if you're only storing pointers to
388 // objects maintained separately
389 void BeginFind() { m_curr
= NULL
; m_currBucket
= 0; }
392 void Clear() { wxHashTableBase::Clear(); }
394 size_t GetCount() const { return wxHashTableBase::GetCount(); }
396 virtual void DoDeleteContents( wxHashTableBase_Node
* node
);
399 void DoCopy( const wxHashTable
& copy
);
401 // searches the next node starting from bucket bucketStart and sets
402 // m_curr to it and m_currBucket to its bucket
403 void GetNextNode( size_t bucketStart
);
408 // bucket the current node belongs to
412 #else // if wxUSE_OLD_HASH_TABLE
414 class WXDLLIMPEXP_BASE wxHashTable
: public wxObject
418 typedef wxNode
* compatibility_iterator
;
421 int current_position
;
422 wxNode
*current_node
;
424 unsigned int key_type
;
427 wxHashTable(int the_key_type
= wxKEY_INTEGER
,
428 int size
= wxHASH_SIZE_DEFAULT
);
431 // copy ctor and assignment operator
432 wxHashTable(const wxHashTable
& table
) : wxObject()
434 wxHashTable
& operator=(const wxHashTable
& table
)
435 { Clear(); DoCopy(table
); return *this; }
437 void DoCopy(const wxHashTable
& table
);
441 bool Create(int the_key_type
= wxKEY_INTEGER
,
442 int size
= wxHASH_SIZE_DEFAULT
);
444 // Note that there are 2 forms of Put, Get.
445 // With a key and a value, the *value* will be checked
446 // when a collision is detected. Otherwise, if there are
447 // 2 items with a different value but the same key,
448 // we'll retrieve the WRONG ONE. So where possible,
449 // supply the required value along with the key.
450 // In fact, the value-only versions make a key, and still store
451 // the value. The use of an explicit key might be required
452 // e.g. when combining several values into one key.
453 // When doing that, it's highly likely we'll get a collision,
454 // e.g. 1 + 2 = 3, 2 + 1 = 3.
456 // key and value are NOT necessarily the same
457 void Put(long key
, long value
, wxObject
*object
);
458 void Put(long key
, const wxChar
*value
, wxObject
*object
);
460 // key and value are the same
461 void Put(long value
, wxObject
*object
);
462 void Put(const wxChar
*value
, wxObject
*object
);
464 // key and value not the same
465 wxObject
*Get(long key
, long value
) const;
466 wxObject
*Get(long key
, const wxChar
*value
) const;
468 // key and value are the same
469 wxObject
*Get(long value
) const;
470 wxObject
*Get(const wxChar
*value
) const;
472 // Deletes entry and returns data if found
473 wxObject
*Delete(long key
);
474 wxObject
*Delete(const wxChar
*key
);
476 wxObject
*Delete(long key
, int value
);
477 wxObject
*Delete(long key
, const wxChar
*value
);
479 // Construct your own integer key from a string, e.g. in case
480 // you need to combine it with something
481 long MakeKey(const wxChar
*string
) const;
483 // Way of iterating through whole hash table (e.g. to delete everything)
484 // Not necessary, of course, if you're only storing pointers to
485 // objects maintained separately
490 void DeleteContents(bool flag
);
493 // Returns number of nodes
494 size_t GetCount() const { return m_count
; }
497 size_t m_count
; // number of elements in the hashtable
498 bool m_deleteContents
;
500 DECLARE_DYNAMIC_CLASS(wxHashTable
)
503 #endif // wxUSE_OLD_HASH_TABLE
505 #if !wxUSE_OLD_HASH_TABLE
507 // defines a new type safe hash table which stores the elements of type eltype
508 // in lists of class listclass
509 #define _WX_DECLARE_HASH(eltype, dummy, hashclass, classexp) \
510 classexp hashclass : public wxHashTableBase \
513 hashclass(wxKeyType keyType = wxKEY_INTEGER, \
514 size_t size = wxHASH_SIZE_DEFAULT) \
515 : wxHashTableBase() { Create(keyType, size); } \
517 virtual ~hashclass() { Destroy(); } \
519 void Put(long key, eltype *data) { DoPut(key, key, (void*)data); } \
520 void Put(long hash, long key, eltype *data) \
521 { DoPut(key, hash, (void*)data); } \
522 eltype *Get(long key) const { return (eltype*)DoGet(key, key); } \
523 eltype *Get(long hash, long key) const \
524 { return (eltype*)DoGet(key, hash); } \
525 eltype *Delete(long key) { return (eltype*)DoDelete(key, key); } \
526 eltype *Delete(long hash, long key) \
527 { return (eltype*)DoDelete(key, hash); } \
529 virtual void DoDeleteContents( wxHashTableBase_Node* node ) \
530 { delete (eltype*)node->GetData(); } \
532 DECLARE_NO_COPY_CLASS(hashclass) \
535 #else // if wxUSE_OLD_HASH_TABLE
537 #define _WX_DECLARE_HASH(eltype, listclass, hashclass, classexp) \
538 classexp hashclass : public wxHashTableBase \
541 hashclass(wxKeyType keyType = wxKEY_INTEGER, \
542 size_t size = wxHASH_SIZE_DEFAULT) \
543 { Create(keyType, size); } \
545 ~hashclass() { Destroy(); } \
547 void Put(long key, long val, eltype *data) { DoPut(key, val, data); } \
548 void Put(long key, eltype *data) { DoPut(key, key, data); } \
550 eltype *Get(long key, long value) const \
552 wxNodeBase *node = GetNode(key, value); \
553 return node ? ((listclass::Node *)node)->GetData() : (eltype *)0; \
555 eltype *Get(long key) const { return Get(key, key); } \
557 eltype *Delete(long key, long value) \
561 wxNodeBase *node = GetNode(key, value); \
564 data = ((listclass::Node *)node)->GetData(); \
571 data = (eltype *)0; \
576 eltype *Delete(long key) { return Delete(key, key); } \
579 void DoPut(long key, long value, eltype *data) \
581 size_t slot = (size_t)abs((int)(key % (long)m_hashSize)); \
583 if ( !m_hashTable[slot] ) \
585 m_hashTable[slot] = new listclass(m_keyType); \
586 if ( m_deleteContents ) \
587 m_hashTable[slot]->DeleteContents(TRUE); \
590 ((listclass *)m_hashTable[slot])->Append(value, data); \
594 DECLARE_NO_COPY_CLASS(hashclass) \
597 #endif // wxUSE_OLD_HASH_TABLE
599 // this macro is to be used in the user code
600 #define WX_DECLARE_HASH(el, list, hash) \
601 _WX_DECLARE_HASH(el, list, hash, class)
603 // and this one does exactly the same thing but should be used inside the
605 #define WX_DECLARE_EXPORTED_HASH(el, list, hash) \
606 _WX_DECLARE_HASH(el, list, hash, class WXDLLEXPORT)
608 #define WX_DECLARE_USER_EXPORTED_HASH(el, list, hash, usergoo) \
609 _WX_DECLARE_HASH(el, list, hash, class usergoo)
611 // delete all hash elements
613 // NB: the class declaration of the hash elements must be visible from the
614 // place where you use this macro, otherwise the proper destructor may not
615 // be called (a decent compiler should give a warning about it, but don't
617 #define WX_CLEAR_HASH_TABLE(hash) \
619 (hash).BeginFind(); \
620 wxHashTable::compatibility_iterator it = (hash).Next(); \
623 delete it->GetData(); \
624 it = (hash).Next(); \