GM6000 Digital Heater Controller Branch: main
SDX-1330
Item.h
Go to the documentation of this file.
1#ifndef Cpl_Container_Item_h_
2#define Cpl_Container_Item_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
15
16///
17namespace Cpl {
18///
19namespace Container {
20
21
22
23/** This class is used by the Container classes to implement a various types
24 of singly linked containers.
25
26 Note: Client code, i.e. application code that needs to define a
27 'containerized' class only needs to inherit from this
28 interface. The Client code SHOULD/SHALL NOT access any of its
29 members or methods! These members/methods are intended to ONLY be
30 accessible by the container classes.
31 */
32class Item
33{
34public:
35 /// The link field.
37
38 /** Debug field. This member is used to trap when there is an attempt
39 to insert a item into a container when it is already in a container
40 */
42
43protected:
44 /// Constructor
46
47 /** Constructor used ONLY with the child class MapItem: -->special
48 constructor to allow a Map to be statically allocated. Only the Map
49 itself should ever use this constructor -->not intended for Items in a
50 Map
51 */
52 Item( const char* /* ignoreThisParameter_usedToCreateAUniqueConstructor */ ) {}
53
54
55public:
56 /** Helper method to trap when inserting an item in multiple containers.
57 A fatal error will be generated if 'Item' is attempted to be put into
58 more than on container.
59
60 Notes:
61 o The method returns false when there is error - which is ONLY
62 usefully during unittesting when the invoking a FatalError
63 does NOT terminate the application.
64 */
65 bool insert_( void* newContainerPtr );
66
67 /** Returns 'true' if the instance is in the specified container.
68 */
69 bool isInContainer_( const void* containerPtr ) const noexcept;
70
71
72 /** Helper method to do the proper 'clean-up' for the
73 multiple-containers-error-trap when removing an item from a container.
74 */
75 static void remove_( Item* itemPtr ) noexcept;
76
77};
78
79/** This class is used by the Container classes
80 to implement a various types of DOUBLY linked
81 containers.
82
83 Note: Client code, i.e. application code that needs to define a
84 'containerized' class only needs to inherit from this
85 interface. The Client code SHOULD/SHALL NOT access any of its
86 members or methods! These members/methods are intended to ONLY be
87 accessible by the container classes.
88 */
89
90class ExtendedItem : public Item
91{
92public:
93 /// The previous link field.
95
96protected:
97 /// Constructor
99
100 /** Constructor used ONLY with the child class MapItem: -->special
101 constructor to allow a Map to be statically allocated. Only the Map
102 itself should ever use this constructor -->not intended for Items in a
103 Map
104 */
105 ExtendedItem( const char* ignoreThisParameter_usedToCreateAUniqueConstructor ):Item( ignoreThisParameter_usedToCreateAUniqueConstructor ) {}
106
107};
108
109
110/** This template class defines wrapper class - that is makes a reference
111 'listable'. This class is useful when the Application needs to put a
112 single entity into multiple containers.
113
114 Template Arguments:
115 REFITEM - The type of the Reference being wrapped.
116 ITEMTYPE - The Item/Container type
117
118
119 */
120template <class REFITEM, class ITEMTYPE>
121class ReferenceItem : public ITEMTYPE
122{
123public:
124 /// Reference to the item that is being 'containerized'
125 REFITEM & m_reference;
126
127 /// Constructor
128 ReferenceItem( REFITEM& item ): ITEMTYPE(), m_reference( item ) {}
129
130 /** Constructor used ONLY with the child class MapItem: -->special
131 constructor to allow a Map to be statically allocated. Only the Map
132 itself should ever use this constructor -->not intended for Items in a
133 Map
134 */
135 ReferenceItem( REFITEM& item, const char* ignoreThisParameter_usedToCreateAUniqueConstructor ): ITEMTYPE( ignoreThisParameter_usedToCreateAUniqueConstructor ), m_reference( item ) {}
136};
137
138}; // end namespaces
139};
140#endif // end header latch
141
This class is used by the Container classes to implement a various types of DOUBLY linked containers.
Definition Item.h:91
void * m_prevPtr_
The previous link field.
Definition Item.h:94
ExtendedItem(const char *ignoreThisParameter_usedToCreateAUniqueConstructor)
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be stati...
Definition Item.h:105
ExtendedItem()
Constructor.
Definition Item.h:98
This class is used by the Container classes to implement a various types of singly linked containers.
Definition Item.h:33
void * m_inListPtr_
Debug field.
Definition Item.h:41
Item(const char *)
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be stati...
Definition Item.h:52
bool insert_(void *newContainerPtr)
Helper method to trap when inserting an item in multiple containers.
void * m_nextPtr_
The link field.
Definition Item.h:36
Item()
Constructor.
Definition Item.h:45
static void remove_(Item *itemPtr) noexcept
Helper method to do the proper 'clean-up' for the multiple-containers-error-trap when removing an ite...
bool isInContainer_(const void *containerPtr) const noexcept
Returns 'true' if the instance is in the specified container.
This template class defines wrapper class - that is makes a reference 'listable'.
Definition Item.h:122
REFITEM & m_reference
Reference to the item that is being 'containerized'.
Definition Item.h:125
ReferenceItem(REFITEM &item)
Constructor.
Definition Item.h:128
ReferenceItem(REFITEM &item, const char *ignoreThisParameter_usedToCreateAUniqueConstructor)
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be stati...
Definition Item.h:135
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20