GM6000 Digital Heater Controller Branch: main
SDX-1330
Dictionary.h
Go to the documentation of this file.
1#ifndef Cpl_Container_Dictionary_h_
2#define Cpl_Container_Dictionary_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
17
18///
19namespace Cpl {
20///
21namespace Container {
22
23
24/** This template class implements a Dictionary and/or Hash Table. Hash
25 Collisions are handled by a simple link list for each 'hash bucket'.
26
27 o The application is responsible for providing memory for the
28 Dictionary, i.e. must provide an array of DList<ITEM> where the
29 size of the array is the 'number of buckets' in the hash table.
30
31 o 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 and/or removed from the table.
34
35 o There is no limit to the number of items that can be
36 stored in the table. However, there is a performance
37 penalty as the ratio of items vs. table buckets increases.
38 Recommended size: For the default hash function use a prime
39 number. Here is a list of some useful primes:
40 67, 131, 257, 521, 1031, 2053, 4099, 8209, 16411
41
42 Template ARGS:
43 ITEM - Data type of the object stored in the dictionary. 'ITEM'
44 must be a sub-class of the Cpl::Container::DictItem base
45 class.
46 */
47
48template <class ITEM>
50{
51private:
52 /// Delegate operations to the generic table implementation
53 DHashTable_ m_table;
54
55
56public:
57 /// Constructor. Note: Client provides the memory for the table
58 Dictionary( DList<DictItem> buckets[], unsigned int numBuckets, HashFunc hfunc = Cpl::Container::hashFuncDefault )
59 : m_table( buckets, numBuckets, hfunc ) {}
60
61
62public: ///@name Operations to manage items in the Dictionary
63 ///@{
64 /** Inserts an item into the table.
65 */
66 void insert( ITEM& node );
67
68 /** Removes the node (if it exists) that has the matching key. Returns
69 the node removed from the table or 0 if no key match was found.
70 */
71 ITEM* remove( const Key& keyOfObjectToDelete );
72
73 /** Removes the specified item from the table. Returns true
74 when the node was found and removed; else false is
75 returned (i.e. node not exists in the table).
76 */
77 bool removeItem( ITEM& node );
78
79 /** Searches for a item with a matching key. Returns the node that
80 matches, else 0.
81 */
82 ITEM* find( const Key& keyToFind ) const;
83
84 /** Returns true if the specified item is in the Dictionary; else false
85 is returned.
86 */
87 bool isInDictionary( ITEM& node ) const;
88
89 /// Returns the first item in the table. Returns 0 if table is empty
90 ITEM* first() const;
91
92 /** Returns the next item in the table. Returns 0 if at the end-of-table
93 Note: There is NO ORDER of the items stored in the Dictionary!
94 */
95 ITEM* next( ITEM& current ) const;
96
97 /** Removes the first item in the list. Returns 0 if the list
98 is empty.
99 */
100 ITEM* getFirst();
101 ///@}
102
103
104public: ///@name Operations on the Dictionary itself
105 ///@{
106 /** Moves the content of the this Dictionary to the specified Dictionary.
107 */
108 void move( Dictionary<ITEM>& dst );
109
110 /** Empties the Dictionary. All references to the item(s) in the
111 dictionary are lost.
112 */
113 void clearTheDictionary();
114
115 /** Returns table stats. Caller provides the memory for the stats structure.
116
117 Note: The stats are not calculate/gathered until this method is called.
118 The duration of this call is directly related to the number of
119 items in the dictionary.
120 */
121 void stats( HashTableStats& tableInfo ) const;
122 ///@}
123
124
125private: ///@name Prevent the container from being copied
126 ///@{
127 /// Prevent access to the copy constructor -->Containers can not be copied!
128 Dictionary( const Dictionary& m );
129
130 /// Prevent access to the assignment operator -->Containers can not be copied!
131 const Dictionary& operator=( const Dictionary& m );
132 ///@}
133};
134
135
136/////////////////////////////////////////////////////////////////////////////
137// INLINE IMPLEMENTATION
138/////////////////////////////////////////////////////////////////////////////
139
140
141template <class ITEM>
143{
144 // clear the destination dictionary
145 dst.clearTheDictionary();
146
147 // Copy each item (so the debug info is correct)
148 ITEM* nextPtr;
149 while ( (nextPtr=getFirst()) )
150 {
151 dst.insert( *nextPtr );
152 }
153}
154
155template <class ITEM>
157{
158 // Drain dictionary so the debug traps work correctly
159 while ( getFirst() )
160 ;
161}
162
163template <class ITEM>
164void Dictionary<ITEM>::insert( ITEM& node )
165{
166 m_table.insert( node );
167}
168
169template <class ITEM>
170ITEM* Dictionary<ITEM>::remove( const Key& keyOfObjectToDelete )
171{
172 ITEM* nodePtr = find( keyOfObjectToDelete );
173 if ( nodePtr )
174 {
175 return (ITEM*) m_table.removeItem( *nodePtr );
176 }
177 return 0;
178}
179
180template <class ITEM>
182{
183 return m_table.removeItem( node ) != 0;
184}
185
186template <class ITEM>
188{
189 ITEM* nodePtr = first();
190 if ( nodePtr )
191 {
192 return (ITEM*) m_table.removeItem( *nodePtr );
193 }
194 return 0;
195}
196
197
198template <class ITEM>
199ITEM* Dictionary<ITEM>::find( const Key& keyToFind ) const
200{
201 return (ITEM*) m_table.find( keyToFind );
202}
203
204template <class ITEM>
205bool Dictionary<ITEM>::isInDictionary( ITEM& node ) const
206{
207 return node.isInContainer_( this );
208}
209
210template <class ITEM>
212{
213 return (ITEM*) m_table.first();
214}
215
216template <class ITEM>
217ITEM* Dictionary<ITEM>::next( ITEM& current ) const
218{
219 return (ITEM*) m_table.next( current );
220}
221
222template <class ITEM>
224{
225 m_table.tableStats( tableInfo );
226}
227
228
229}; // end namespaces
230};
231#endif // end header latch
This concrete class implements the core functionality for a Dictionary and/or Hash Table.
Definition DHashTable_.h:33
This template class implements a Doubly linked list which maintains the ordering imposed on it by the...
Definition DList.h:29
This template class implements a Dictionary and/or Hash Table.
Definition Dictionary.h:50
void stats(HashTableStats &tableInfo) const
Returns table stats.
Definition Dictionary.h:223
bool removeItem(ITEM &node)
Removes the specified item from the table.
Definition Dictionary.h:181
Dictionary(DList< DictItem > buckets[], unsigned int numBuckets, HashFunc hfunc=Cpl::Container::hashFuncDefault)
Constructor. Note: Client provides the memory for the table.
Definition Dictionary.h:58
ITEM * remove(const Key &keyOfObjectToDelete)
Removes the node (if it exists) that has the matching key.
Definition Dictionary.h:170
ITEM * first() const
Returns the first item in the table. Returns 0 if table is empty.
Definition Dictionary.h:211
ITEM * getFirst()
Removes the first item in the list.
Definition Dictionary.h:187
void move(Dictionary< ITEM > &dst)
Moves the content of the this Dictionary to the specified Dictionary.
Definition Dictionary.h:142
ITEM * next(ITEM &current) const
Returns the next item in the table.
Definition Dictionary.h:217
void clearTheDictionary()
Empties the Dictionary.
Definition Dictionary.h:156
ITEM * find(const Key &keyToFind) const
Searches for a item with a matching key.
Definition Dictionary.h:199
bool isInDictionary(ITEM &node) const
Returns true if the specified item is in the Dictionary; else false is returned.
Definition Dictionary.h:205
void insert(ITEM &node)
Inserts an item into the table.
Definition Dictionary.h:164
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