GM6000 Digital Heater Controller Branch: main
SDX-1330
MapItem.h
Go to the documentation of this file.
1#ifndef Cpl_Container_MapItem_h_
2#define Cpl_Container_MapItem_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 abstract class represents a item that can be contained in
25 an Map (aka a sorted list implemented using an AVL tree). The client
26 sub-class is required to implement the 'getKey()' method (from the
27 parent class DictItem).
28
29 NOTE: A MapItem can also be contained in a SList and/or a DList
30 (but obviously not at the same time).
31 */
32class MapItem : public DictItem
33{
34
35protected:
36 /// Magic values for balance status
37 enum Balance_T { eLEFT_=-1, eEVEN_=0, eRIGHT_=1 };
38
39protected:
40 /// Link field to the parent node.
42
43 /// I am the root node
45
46 /// Balance status
48
49protected:
50 /// Constructor
51 MapItem() { initialize( 0 ); }
52
53 /** Constructor -->special constructor to allow a Map to be
54 statically allocated. Only the Sorted List itself should ever
55 use this constructor -->not intended for Items in the list
56 */
57 MapItem( const char* ignoreThisParameter_usedToCreateAUniqueConstructor ):DictItem( ignoreThisParameter_usedToCreateAUniqueConstructor ) {}
58
59
60 /// Initialize the node when being inserted in the tree
61 inline void initialize( MapItem* parent ) { m_parentPtr_=parent; m_is_NOT_root_=true; m_balance_=eEVEN_; m_nextPtr_=0; m_prevPtr_=0; }
62
63
64protected: // Helper methods
65
66 /// Get tree connection/pointer
67 inline MapItem* getParent() const { return (MapItem*) m_parentPtr_; }
68
69 /// Set tree connection/pointer
70 inline void setParent( MapItem* n ) { m_parentPtr_ = n; }
71
72 /// Get tree connection/pointer
73 inline MapItem* getLeft() const { return (MapItem*) m_prevPtr_; };
74
75 /// Set tree connection/pointer
76 inline void setLeft( MapItem* n ) { m_prevPtr_ = n; }
77
78 /// Get tree connection/pointer
79 inline MapItem* getRight() const { return (MapItem*) m_nextPtr_; };
80
81 /// Set tree connection/pointer
82 inline void setRight( MapItem* n ) { m_nextPtr_ = n; }
83
84
85 // Allow the AVL Tree class access to my data members
86 friend class AvlTree_;
87
88};
89
90}; // end namespaces
91};
92#endif // end header latch
93
This concrete class implements the core functionality of for AVL Binary tree (i.e.
Definition AvlTree_.h:46
This abstract class represents a item that can be contained in Dictionary.
Definition DictItem.h:34
void * m_prevPtr_
The previous link field.
Definition Item.h:94
void * m_nextPtr_
The link field.
Definition Item.h:36
This abstract class represents a item that can be contained in an Map (aka a sorted list implemented ...
Definition MapItem.h:33
MapItem * getLeft() const
Get tree connection/pointer.
Definition MapItem.h:73
void initialize(MapItem *parent)
Initialize the node when being inserted in the tree.
Definition MapItem.h:61
MapItem * getRight() const
Get tree connection/pointer.
Definition MapItem.h:79
MapItem()
Constructor.
Definition MapItem.h:51
MapItem * getParent() const
Get tree connection/pointer.
Definition MapItem.h:67
Balance_T
Magic values for balance status.
Definition MapItem.h:37
MapItem(const char *ignoreThisParameter_usedToCreateAUniqueConstructor)
Constructor -->special constructor to allow a Map to be statically allocated.
Definition MapItem.h:57
Balance_T m_balance_
Balance status.
Definition MapItem.h:47
void * m_parentPtr_
Link field to the parent node.
Definition MapItem.h:41
bool m_is_NOT_root_
I am the root node.
Definition MapItem.h:44
void setLeft(MapItem *n)
Set tree connection/pointer.
Definition MapItem.h:76
void setParent(MapItem *n)
Set tree connection/pointer.
Definition MapItem.h:70
void setRight(MapItem *n)
Set tree connection/pointer.
Definition MapItem.h:82
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20