GM6000 Digital Heater Controller Branch: main
SDX-1330
FHashTable_.h
Go to the documentation of this file.
1#ifndef Cpl_Container_FHashTable_x_h_
2#define Cpl_Container_FHashTable_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. All of the memory for the class is statically allocated
30
31 The hash function is 'fixed' to the default hash function
32
33 Template args:
34 N:= The number of hash buckets
35 */
36template<int N>
38{
39protected:
40 /// Struct to allocate Memory for array of hash buckets
41 struct MemDList
42 {
43 void* m_ptrs[2];
44 };
45
46 /// Memory for an array of hash buckets
48
49 /// Number of items in the table
50 unsigned long m_numItems;
51
52public:
53 /// Constructor
55 : m_numItems( 0 )
56 {
57 // Brute force initialize the Bucket member
58 memset( m_memBuckets, 0, sizeof( m_memBuckets ) );
59 }
60
61 /// Constructor when statically allocating the instance
62 FHashTable_( const char* ignoreThisParameter_usedToCreateAUniqueConstructor)
63 {
64 // Do nothing since by definition I am in the BSS segment and everything is already zeroed by C runtime code
65 }
66
67public:
68 /// See Cpl::Container::HashTable_
70
71 /// See Cpl::Container::HashTable_
72 inline DictItem* removeItem( DictItem& nodeToDelete ) { return HashTable_::removeItem( nodeToDelete, (DList<DictItem>*)m_memBuckets, N, hashFuncDefault, m_numItems ); }
73
74 /// See Cpl::Container::HashTable_
75 inline DictItem* find( const Key& keyToFind ) const { return HashTable_::find( keyToFind, (DList<DictItem>*)m_memBuckets, N, hashFuncDefault ); }
76
77 /// See Cpl::Container::HashTable_
79
80 /// See Cpl::Container::HashTable_
81 inline DictItem* next( DictItem& current ) const { return HashTable_::next( current, (DList<DictItem>*)m_memBuckets, N, hashFuncDefault ); }
82
83
84public:
85 /// See Cpl::Container::HashTable_
87};
88
89
90}; // end namespaces
91};
92#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 class implements the core functionality for a Dictionary and/or Hash Table.
Definition FHashTable_.h:38
FHashTable_()
Constructor.
Definition FHashTable_.h:54
unsigned long m_numItems
Number of items in the table.
Definition FHashTable_.h:50
FHashTable_(const char *ignoreThisParameter_usedToCreateAUniqueConstructor)
Constructor when statically allocating the instance.
Definition FHashTable_.h:62
MemDList m_memBuckets[N]
Memory for an array of hash buckets.
Definition FHashTable_.h:47
DictItem * next(DictItem &current) const
See Cpl::Container::HashTable_.
Definition FHashTable_.h:81
DictItem * find(const Key &keyToFind) const
See Cpl::Container::HashTable_.
Definition FHashTable_.h:75
DictItem * first() const
See Cpl::Container::HashTable_.
Definition FHashTable_.h:78
void tableStats(HashTableStats &tableInfo) const
See Cpl::Container::HashTable_.
Definition FHashTable_.h:86
DictItem * removeItem(DictItem &nodeToDelete)
See Cpl::Container::HashTable_.
Definition FHashTable_.h:72
void insert(DictItem &node)
See Cpl::Container::HashTable_.
Definition FHashTable_.h:69
Struct to allocate Memory for array of hash buckets.
Definition FHashTable_.h:42
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 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