GM6000 Digital Heater Controller Branch: main
SDX-1330
Map.h
Go to the documentation of this file.
1#ifndef Cpl_Container_Map_h_
2#define Cpl_Container_Map_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/** This template class implements an Map using an AVL Binary tree
24 (i.e. a sorted list with fast searches, inserts, and deletes).
25
26 Template ARGS:
27 ITEM - Data type of the object stored in the Map. 'ITEM' must
28 be a sub-class of the Cpl::Container::MapItem base
29 class.
30 */
31
32template <class ITEM>
33class Map
34{
35private:
36 /// Delegate operations to the generic tree implementation
37 AvlTree_ m_tree;
38
39public:
40 ///Constructor.
41 Map() noexcept {}
42
43 /** This is a special constructor for when the Map is
44 statically declared (i.e. it is initialized as part of
45 C++ startup BEFORE main() is executed. C/C++ guarantees
46 that all statically declared data will be initialized
47 to zero by default (see r.8.4 in C++ Programming Language,
48 Second Edition). Since the head & tail pointers are
49 initialized to zero - then the C/C++ default is OK. Why
50 do I care about all this? Because if you attempt to build
51 static list(s), then the order of when the Map is
52 constructed vs. when the static elements are added to the
53 list is a problem! To avoid this problem, a alternate
54 constructor that does NOT initialize the head & tail pointers
55 is provided. It assumes that the pointers are already set
56 zero because the list is "static". Whew!
57 */
58 Map( const char* ignoreThisParameter_usedToCreateAUniqueConstructor );
59
60public: ///@name Operations to manage items in the Map
61 ///@{
62 /** Inserts an item into the tree. If the node is successfully inserted,
63 then the method return true. If the tree already contains a node
64 with the same key, then the method returns false.
65 */
66 bool insert( ITEM& node );
67
68 /** Removes the node (if it exists) that has the matching key. Returns
69 the node removed from the tree or 0 if no key match was found.
70 */
71 ITEM* remove( const Key& keyOfItemToDelete );
72
73 /** Removes the specified item from the tree. Returns true
74 when the node was found and removed; else false is
75 returned (i.e. node not exists in the tree).
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 map; else false
85 is returned.
86 */
87 bool isInMap( ITEM& node ) const;
88
89 /// Returns the first item in the tree. Returns 0 if tree is empty
90 ITEM* first() const;
91
92 /// Returns the last item in the tree. Returns 0 if tree is empty
93 ITEM* last() const;
94
95 /// Returns the next item in the tree. Returns 0 if at the end-of-tree
96 ITEM* next( ITEM& current ) const;
97
98 /// Returns the previous item in the tree. Returns 0 if at the start-of-tree
99 ITEM* previous( ITEM& current ) const;
100
101 /** Removes the first item in the list. Returns 0 if the list
102 is empty.
103 */
104 ITEM* getFirst();
105
106 /** Removes the last item in the list. Returns 0 if the list
107 is empty.
108 */
109 ITEM* getLast();
110 ///@}
111
112
113public: ///@name Operations on the Map itself
114 ///@{
115 /** Moves the content of the this Map to the specified Map.
116 */
117 void move( Map<ITEM>& dst );
118
119 /** Empties the Map. All references to the item(s) in the
120 Map are lost.
121 */
123 ///@}
124
125
126private: ///@name Prevent the container from being copied
127 ///@{
128 /// Prevent access to the copy constructor -->Containers can not be copied!
129 Map( const Map& m );
130
131 /// Prevent access to the assignment operator -->Containers can not be copied!
132 const Map& operator=( const Map& m );
133 ///@}
134};
135
136
137/////////////////////////////////////////////////////////////////////////////
138// INLINE IMPLEMENTAION
139/////////////////////////////////////////////////////////////////////////////
140
141template <class ITEM>
142Map<ITEM>::Map( const char* ignoreThisParameter_usedToCreateAUniqueConstructor )
143 :m_tree( ignoreThisParameter_usedToCreateAUniqueConstructor )
144{
145}
146
147
148template <class ITEM>
150{
151 // clear the destination map
152 dst.clearTheMap();
153
154 // Copy each item (so the debug info is correct)
155 ITEM* nextPtr;
156 while ( (nextPtr=getFirst()) )
157 {
158 dst.insert( *nextPtr );
159 }
160}
161
162template <class ITEM>
164{
165 // Drain map so the debug traps work correctly
166 while ( getFirst() )
167 ;
168}
169
170
171template <class ITEM>
172bool Map<ITEM>::insert( ITEM& node )
173{
174 return m_tree.insert( node );
175}
176
177
178template <class ITEM>
179ITEM* Map<ITEM>::remove( const Key& keyOfItemToDelete )
180{
181 ITEM* nodePtr = find( keyOfItemToDelete );
182 if ( nodePtr )
183 {
184 return (ITEM*) m_tree.removeItem( *nodePtr );
185 }
186 return 0;
187}
188
189template <class ITEM>
190bool Map<ITEM>::removeItem( ITEM& node )
191{
192 return m_tree.removeItem( node ) != 0;
193}
194
195template <class ITEM>
197{
198 ITEM* nodePtr = first();
199 if ( nodePtr )
200 {
201 return (ITEM*) m_tree.removeItem( *nodePtr );
202 }
203 return 0;
204}
205
206template <class ITEM>
208{
209 ITEM* nodePtr = last();
210 if ( nodePtr )
211 {
212 return (ITEM*) m_tree.removeItem( *nodePtr );
213 }
214 return 0;
215}
216
217template <class ITEM>
218ITEM* Map<ITEM>::find( const Key& keyToFind ) const
219{
220 return (ITEM*) m_tree.find( keyToFind );
221}
222
223template <class ITEM>
224bool Map<ITEM>::isInMap( ITEM& node ) const
225{
226 return node.isInContainer_( this );
227}
228
229template <class ITEM>
231{
232 return (ITEM*) m_tree.first();
233}
234
235template <class ITEM>
237{
238 return (ITEM*) m_tree.last();
239}
240
241template <class ITEM>
242ITEM* Map<ITEM>::next( ITEM& current ) const
243{
244 return (ITEM*) m_tree.next( current );
245}
246
247template <class ITEM>
248ITEM* Map<ITEM>::previous( ITEM& current ) const
249{
250 return (ITEM*) m_tree.previous( current );
251}
252
253
254
255}; // end namespaces
256};
257#endif // end header latch
This concrete class implements the core functionality of for AVL Binary tree (i.e.
Definition AvlTree_.h:46
This abstract class defines the interface that a contained object must support if it has comparable k...
Definition Key.h:32
This template class implements an Map using an AVL Binary tree (i.e.
Definition Map.h:34
ITEM * getLast()
Removes the last item in the list.
Definition Map.h:207
bool removeItem(ITEM &node)
Removes the specified item from the tree.
Definition Map.h:190
Map(const char *ignoreThisParameter_usedToCreateAUniqueConstructor)
This is a special constructor for when the Map is statically declared (i.e.
Definition Map.h:142
void move(Map< ITEM > &dst)
Moves the content of the this Map to the specified Map.
Definition Map.h:149
ITEM * remove(const Key &keyOfItemToDelete)
Removes the node (if it exists) that has the matching key.
Definition Map.h:179
ITEM * next(ITEM &current) const
Returns the next item in the tree. Returns 0 if at the end-of-tree.
Definition Map.h:242
bool isInMap(ITEM &node) const
Returns true if the specified item is in the map; else false is returned.
Definition Map.h:224
ITEM * last() const
Returns the last item in the tree. Returns 0 if tree is empty.
Definition Map.h:236
ITEM * find(const Key &keyToFind) const
Searches for a item with a matching key.
Definition Map.h:218
bool insert(ITEM &node)
Inserts an item into the tree.
Definition Map.h:172
Map() noexcept
Constructor.
Definition Map.h:41
ITEM * previous(ITEM &current) const
Returns the previous item in the tree. Returns 0 if at the start-of-tree.
Definition Map.h:248
ITEM * getFirst()
Removes the first item in the list.
Definition Map.h:196
void clearTheMap()
Empties the Map.
Definition Map.h:163
ITEM * first() const
Returns the first item in the tree. Returns 0 if tree is empty.
Definition Map.h:230
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20