GM6000 Digital Heater Controller Branch: main
SDX-1330
HashTable_.h
Go to the documentation of this file.
1#ifndef Cpl_Container_HashTable_x_h_
2#define Cpl_Container_HashTable_x_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
16#include "Cpl/Container/Hash.h"
17#include "Cpl/Container/DList.h"
18
19
20///
21namespace Cpl {
22///
23namespace Container {
24
25
26/** This concrete provides a collection of functions used by the 'Hash Table'
27 classes. This class is not intended to be used directly by clients.
28
29 Key collisions are handled by a simple link list for each 'hash bucket'.
30
31 NOTE: This is no checking for duplicate keys. You can insert multiple
32 items with duplicates keys, but there is no guaranty on how
33 those items are found in searches or removed from the table.
34 */
36{
37public:
38 /** Inserts an item into the table.
39 */
40 static void insert( DictItem& node,
41 DList<DictItem>* buckets,
42 unsigned int numBuckets,
43 HashFunc hashFunc,
44 unsigned long& numItems ) noexcept;
45
46
47 /** Removes the specified item from the table. Returns the
48 node removed. If the remove fails (i.e. node does
49 not exist in the table), then 0 is returned.
50 */
51 static DictItem* removeItem( DictItem& nodeToDelete,
52 DList<DictItem>* buckets,
53 unsigned int numBuckets,
54 HashFunc hashFunc,
55 unsigned long& numItems ) noexcept;
56
57 /** Searches for a item with a matching key. Returns the node that
58 matches, else 0.
59 */
60 static DictItem* find( const Key& keyToFind,
61 DList<DictItem>* buckets,
62 unsigned int numBuckets,
63 HashFunc hashFunc ) noexcept;
64
65 /// Returns the first item in the table. Returns 0 if table is empty
66 static DictItem* first( DList<DictItem>* buckets,
67 unsigned int numBuckets,
68 HashFunc hashFunc,
69 unsigned long numItems ) noexcept;
70
71 /// Returns the next item in the table. Returns 0 if at the end-of-table
72 static DictItem* next( DictItem& current,
73 DList<DictItem>* buckets,
74 unsigned int numBuckets,
75 HashFunc hashFunc ) noexcept;
76
77
78public:
79 /** Returns table stats. Caller provides the memory for the stats structure.
80
81 Note: The stats are not calculate/gathered until this method is called.
82 The duration of this call is directly related to the number of
83 items in the hash table.
84 */
85 static void tableStats( HashTableStats& tableInfo,
86 DList<DictItem>* buckets,
87 unsigned int numBuckets,
88 HashFunc hashFunc,
89 unsigned long numItems ) noexcept;
90};
91
92
93}; // end namespaces
94};
95#endif // end header latch
This template class implements a Doubly linked list which maintains the ordering imposed on it by the...
Definition DList.h:29
This abstract class represents a item that can be contained in Dictionary.
Definition DictItem.h:34
This concrete provides a collection of functions used by the 'Hash Table' classes.
Definition HashTable_.h:36
static void tableStats(HashTableStats &tableInfo, DList< DictItem > *buckets, unsigned int numBuckets, HashFunc hashFunc, unsigned long numItems) noexcept
Returns table stats.
static DictItem * removeItem(DictItem &nodeToDelete, DList< DictItem > *buckets, unsigned int numBuckets, HashFunc hashFunc, unsigned long &numItems) noexcept
Removes the specified item from the table.
static void insert(DictItem &node, DList< DictItem > *buckets, unsigned int numBuckets, HashFunc hashFunc, unsigned long &numItems) noexcept
Inserts an item into the table.
static DictItem * next(DictItem &current, DList< DictItem > *buckets, unsigned int numBuckets, HashFunc hashFunc) noexcept
Returns the next item in the table. Returns 0 if at the end-of-table.
static DictItem * first(DList< DictItem > *buckets, unsigned int numBuckets, HashFunc hashFunc, unsigned long numItems) noexcept
Returns the first item in the table. Returns 0 if table is empty.
static DictItem * find(const Key &keyToFind, DList< DictItem > *buckets, unsigned int numBuckets, HashFunc hashFunc) noexcept
Searches for a item with a matching key.
This abstract class defines the interface that a contained object must support if it has comparable k...
Definition Key.h:32
unsigned int(* HashFunc)(const void *keystart, unsigned keylen, unsigned int maxBuckets)
This type defines the function signature for the hashing function that operates on a key stored in co...
Definition Hash.h:23
This struct defines what usage/stats can be retrieved from a Hash table.
Definition Hash.h:29
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20