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