GM6000 Digital Heater Controller Branch: main
SDX-1330
Stack.h
Go to the documentation of this file.
1#ifndef Cpl_Container_Stack_h_
2#define Cpl_Container_Stack_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#include <stdint.h>
16
17
18///
19namespace Cpl {
20///
21namespace Container {
22
23
24/** This template class implements a Stack that has a fixed depth and stores
25 copies of the data items.
26
27 Template Args:
28 ITEM:= Type of the data stored in the Stack
29 */
30template <class ITEM>
31class Stack
32{
33private:
34 /// Current number of items in the stack
35 unsigned m_count;
36
37 /// Maximum number of items in that the stack can hold
38 unsigned m_maxItems;
39
40 /// Memory for the Elements
41 ITEM* m_elements;
42
43
44
45public:
46 /** Constructor. The application is responsible for providing the memory
47 for the Stack. The argument ''maxElements' is the number of items that
48 will fit in the memory allocated by 'memoryForElements' - it is NOT
49 the number of bytes of 'memoryForElements'.
50 */
51 Stack( unsigned maxElements, ITEM memoryForElements[] ) noexcept;
52
53
54public:
55 /** Adds an item to the top of the stack. Returns true if successful;
56 else false is returned (e.g. on stack overflow).
57 */
58 bool push( const ITEM src ) noexcept;
59
60
61 /** Removes the top item of the stack. If the stack is empty,
62 the method returns false and no value is returned.
63 */
64 bool pop( ITEM& dst ) noexcept;
65
66 /** Removes AND discards the top item of the stack. If the stack is empty,
67 the method returns false and no value is returned.
68 */
69 bool pop() noexcept;
70
71 /** Returns the item on the top of the Stack. If the stack is empty,
72 the method returns false and no value is returned.
73 */
75
76 /** Returns a POINTER to the top item of the Stack. If the stack is empty,
77 the method returns a null pointer. The pointer is valid until the next
78 push or pop operation.
79
80 NOTE: The application CAN modify the item in place on the Stack. Use
81 this power wisely!
82 */
84
85public:
86 /** This method returns true if the Stack is empty
87 */
88 bool isEmpty( void ) const noexcept;
89
90 /** This method returns true if the Stack is full
91 */
92 bool isFull( void ) const noexcept;
93
94
95 /** This method returns the current number of items in
96 the Stack
97 */
98 unsigned getNumItems( void ) const noexcept;
99
100
101 /** This method returns the maximum number of items that
102 can be stored in the Stack.
103 */
104 unsigned getMaxItems( void ) const noexcept;
105
106public:
107 /** Empties the Stack. All references to the item(s) in the stack are
108 lost.
109 */
111
112
113
114private:
115 /// Prevent access to the copy constructor -->Containers can not be copied!
116 Stack( const Stack& m );
117
118 /// Prevent access to the assignment operator -->Containers can not be copied!
120
121};
122
123/////////////////////////////////////////////////////////////////////////////
124// INLINE IMPLEMENTAION
125/////////////////////////////////////////////////////////////////////////////
126
127
130 :m_count( 0 ), m_maxItems( maxElements ), m_elements( memoryForElements )
131{
132}
133
134
135template <class ITEM>
137{
138 m_count = 0;
139}
140
141
142template <class ITEM>
143inline bool Stack<ITEM>::push( const ITEM item ) noexcept
144{
145 if ( isFull() )
146 {
147 return false;
148 }
149
150 m_elements[m_count++] = item;
151 return true;
152}
153
154
155template <class ITEM>
156inline bool Stack<ITEM>::pop( ITEM& dst ) noexcept
157{
158 if ( isEmpty() )
159 {
160 return false;
161 }
162
163 dst = m_elements[--m_count];
164 return true;
165}
166
167template <class ITEM>
169{
170 if ( isEmpty() )
171 {
172 return false;
173 }
174
175 --m_count;
176 return true;
177}
178
179template <class ITEM>
180inline bool Stack<ITEM>::peekTop( ITEM& dst ) const noexcept
181{
182 if ( isEmpty() )
183 {
184 return false;
185 }
186
187 dst = m_elements[m_count - 1];
188 return true;
189}
190
191template <class ITEM>
193{
194 if ( isEmpty() )
195 {
196 return nullptr;
197 }
198
199 return &(m_elements[m_count - 1]);
200}
201
202
203template <class ITEM>
204inline bool Stack<ITEM>::isEmpty( void ) const noexcept
205{
206 return m_count == 0;
207}
208
209template <class ITEM>
210inline bool Stack<ITEM>::isFull( void ) const noexcept
211{
212 return m_count == m_maxItems;
213}
214
215template <class ITEM>
216inline unsigned Stack<ITEM>::getNumItems( void ) const noexcept
217{
218 return m_count;
219}
220
221template <class ITEM>
222inline unsigned Stack<ITEM>::getMaxItems( void ) const noexcept
223{
224 return m_maxItems;
225}
226
227
228
229}; // end namespaces
230};
231#endif // end header latch
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This template class implements a Stack that has a fixed depth and stores copies of the data items.
Definition Stack.h:32
Stack(unsigned maxElements, ITEM memoryForElements[]) noexcept
Constructor.
Definition Stack.h:129
unsigned getMaxItems(void) const noexcept
This method returns the maximum number of items that can be stored in the Stack.
Definition Stack.h:222
void clearTheStack() noexcept
Empties the Stack.
Definition Stack.h:136
bool pop(ITEM &dst) noexcept
Removes the top item of the stack.
Definition Stack.h:156
bool isFull(void) const noexcept
This method returns true if the Stack is full.
Definition Stack.h:210
unsigned getNumItems(void) const noexcept
This method returns the current number of items in the Stack.
Definition Stack.h:216
bool pop() noexcept
Removes AND discards the top item of the stack.
Definition Stack.h:168
bool push(const ITEM src) noexcept
Adds an item to the top of the stack.
Definition Stack.h:143
ITEM * peekTop() noexcept
Returns a POINTER to the top item of the Stack.
Definition Stack.h:192
bool isEmpty(void) const noexcept
This method returns true if the Stack is empty.
Definition Stack.h:204
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20