GM6000 Digital Heater Controller Branch: main
SDX-1330
DHashTable_.h
Go to the documentation of this file.
1#ifndef Cpl_Container_DHashTable_x_h_
2#define Cpl_Container_DHashTable_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"
19#include "Cpl/Container/DList.h"
20
21
22///
23namespace Cpl {
24///
25namespace Container {
26
27
28/** This concrete class implements the core functionality for a Dictionary
29 and/or Hash Table. The class requires the application to supply the memory
30 and hash function (a default function is available) for the hash table.
31 */
33{
34private:
35 /// Array of hash buckets
36 DList<DictItem>* m_buckets;
37
38 /// Number of hash buckets
39 unsigned int m_numBuckets;
40
41 /// Pointer to the hashing function
42 HashFunc m_hashFunc;
43
44 /// Number of items in the table
45 unsigned long m_numItems;
46
47public:
48 /// Constructor
49 DHashTable_( DList<DictItem> buckets[], unsigned int numBuckets, HashFunc func = Cpl::Container::hashFuncDefault )
50 : m_buckets( buckets )
51 , m_numBuckets( numBuckets )
52 , m_hashFunc( func )
53 , m_numItems( 0 )
54 {
55 }
56
57
58public:
59 /// See Cpl::Container::HashTable_
60 inline void insert( DictItem& node ) { HashTable_::insert( node, m_buckets, m_numBuckets, m_hashFunc, m_numItems ); }
61
62 /// See Cpl::Container::HashTable_
63 inline DictItem* removeItem( DictItem& nodeToDelete ) { return HashTable_::removeItem( nodeToDelete, m_buckets, m_numBuckets, m_hashFunc, m_numItems ); }
64
65 /// See Cpl::Container::HashTable_
66 inline DictItem* find( const Key& keyToFind ) const { return HashTable_::find( keyToFind, m_buckets, m_numBuckets, m_hashFunc ); }
67
68 /// See Cpl::Container::HashTable_
69 inline DictItem* first() const { return HashTable_::first( m_buckets, m_numBuckets, m_hashFunc, m_numItems ); }
70
71 /// See Cpl::Container::HashTable_
72 inline DictItem* next( DictItem& current ) const { return HashTable_::next( current, m_buckets, m_numBuckets, m_hashFunc ); }
73
74
75public:
76 /// See Cpl::Container::HashTable_
77 inline void tableStats( HashTableStats& tableInfo ) const { HashTable_::tableStats( tableInfo, m_buckets, m_numBuckets, m_hashFunc, m_numItems ); }
78};
79
80
81}; // end namespaces
82};
83#endif // end header latch
This concrete class implements the core functionality for a Dictionary and/or Hash Table.
Definition DHashTable_.h:33
DictItem * removeItem(DictItem &nodeToDelete)
See Cpl::Container::HashTable_.
Definition DHashTable_.h:63
void tableStats(HashTableStats &tableInfo) const
See Cpl::Container::HashTable_.
Definition DHashTable_.h:77
void insert(DictItem &node)
See Cpl::Container::HashTable_.
Definition DHashTable_.h:60
DHashTable_(DList< DictItem > buckets[], unsigned int numBuckets, HashFunc func=Cpl::Container::hashFuncDefault)
Constructor.
Definition DHashTable_.h:49
DictItem * first() const
See Cpl::Container::HashTable_.
Definition DHashTable_.h:69
DictItem * find(const Key &keyToFind) const
See Cpl::Container::HashTable_.
Definition DHashTable_.h:66
DictItem * next(DictItem &current) const
See Cpl::Container::HashTable_.
Definition DHashTable_.h:72
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
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
unsigned int hashFuncDefault(const void *keystart, unsigned keylen, unsigned int maxBuckets) noexcept
Default hash function.
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