GM6000 Digital Heater Controller Branch: main
SDX-1330
RingBufferMP.h
Go to the documentation of this file.
1#ifndef Cpl_Container_RingBuffer_MP_h_
2#define Cpl_Container_RingBuffer_MP_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#include "Cpl/Dm/Mp/Uint32.h"
17
18
19///
20namespace Cpl {
21///
22namespace Container {
23
24
25/** This template class implements a THREAD SAFE Ring Buffer AND it maintains/reports
26 the number of elements stored in the ring buffer via a Model Point. The
27 size of the ring buffer is limited by number of bits in platform's 'unsigned'
28 data type.
29
30 Template Args:
31 ITEM:= Type of the data stored in the Ring Buffer
32 */
33template <class ITEM>
34class RingBufferMP : public RingBufferMT<ITEM>
35{
36public:
37 /** Constructor. The application is responsible for providing the memory
38 for the Ring Buffer. The argument ''maxElements' is the number of
39 items that will fit in the memory allocated by 'memoryForElements' - it
40 is NOT the number of bytes of 'memoryForElements'.
41 */
42 RingBufferMP( unsigned maxElements, ITEM memoryForElements[], Cpl::Dm::Mp::Uint32& mpElementCount ) noexcept
45 {
46 // NOTE: I would really like to initialize the model point here in the constructor - BUT
47 // if this class is statically created/allocated - that is problem because the CPL
48 // Services may or may not be initialized/working. So the work-around is to
49 // attempt a lazy initialization of the elementCount model point.
50 }
51
52
53
54public:
55 /// See Cpl::Container::RingBuffer.
56 bool remove( ITEM& dst ) noexcept
57 {
59 if ( result )
60 {
62 }
63 return result;
64 }
65
66 /// Extends remove() to expose/return the MP's sequence number on the update
67 bool remove( ITEM& dst, uint16_t& seqNum ) noexcept
68 {
70 if ( result )
71 {
73 }
74 return result;
75 }
76
77 /// See Cpl::Container::RingBuffer.
78 bool add( const ITEM& item ) noexcept
79 {
80 bool result = RingBufferMT<ITEM>::add( item );
81 if ( result )
82 {
84 }
85 return result;
86 }
87
88 /// Extends add() to expose/return the MP's sequence number on the update
89 bool add( const ITEM& item, uint16_t& seqNum ) noexcept
90 {
91 bool result = RingBufferMT<ITEM>::add( item );
92 if ( result )
93 {
95 }
96 return result;
97 }
98
99public:
100 /// See Cpl::Container::RingBuffer.
102 {
105 }
106
107 /// Extends add() to expose/return the MP's sequence number on the update
109 {
112 }
113
114protected:
115 /// helper method to increment the MP
117 {
118 // Increment the count -->but do a 'lazy initialization' to the MP if was not previously initialized
120 {
121 return m_mpElementCount.write( 1 );
122 }
124 }
125
126 /// helper method to decrement the MP
128 {
129 // Decrement the count -->but do a 'lazy initialization' to the MP if was not previously initialized
131 {
132 return m_mpElementCount.write( 0 );
133 }
135 }
136
137private:
138 /// Prevent access to the copy constructor -->Containers can not be copied!
139 RingBufferMP( const RingBufferMP& m );
140
141 /// Prevent access to the assignment operator -->Containers can not be copied!
142 const RingBufferMP& operator=( const RingBufferMP& m );
143
144public:
145 /// Model point to report my element count. NOTE: Public access is allowed to simply the application subscribing/accessing the MP
147};
148
149
150
151}; // end namespaces
152};
153#endif // end header latch
This template class implements a THREAD SAFE Ring Buffer AND it maintains/reports the number of eleme...
Definition RingBufferMP.h:35
bool add(const ITEM &item, uint16_t &seqNum) noexcept
Extends add() to expose/return the MP's sequence number on the update.
Definition RingBufferMP.h:89
uint16_t incrementMp() noexcept
helper method to increment the MP
Definition RingBufferMP.h:116
bool add(const ITEM &item) noexcept
See Cpl::Container::RingBuffer.
Definition RingBufferMP.h:78
bool remove(ITEM &dst) noexcept
See Cpl::Container::RingBuffer.
Definition RingBufferMP.h:56
void clearTheBuffer(uint16_t &seqNum) noexcept
Extends add() to expose/return the MP's sequence number on the update.
Definition RingBufferMP.h:108
Cpl::Dm::Mp::Uint32 & m_mpElementCount
Model point to report my element count. NOTE: Public access is allowed to simply the application subs...
Definition RingBufferMP.h:146
void clearTheBuffer() noexcept
See Cpl::Container::RingBuffer.
Definition RingBufferMP.h:101
bool remove(ITEM &dst, uint16_t &seqNum) noexcept
Extends remove() to expose/return the MP's sequence number on the update.
Definition RingBufferMP.h:67
uint16_t decrementMp() noexcept
helper method to decrement the MP
Definition RingBufferMP.h:127
RingBufferMP(unsigned maxElements, ITEM memoryForElements[], Cpl::Dm::Mp::Uint32 &mpElementCount) noexcept
Constructor.
Definition RingBufferMP.h:42
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
bool remove(ITEM &dst) noexcept
See Cpl::Container::RingBuffer.
Definition RingBufferMT.h:46
bool add(const ITEM &item) noexcept
See Cpl::Container::RingBuffer.
Definition RingBufferMT.h:49
void clearTheBuffer() noexcept
See Cpl::Container::RingBuffer.
Definition RingBufferMT.h:134
bool isNotValid(uint16_t *seqNumPtr=0) const noexcept
See Cpl::Dm::ModelPoint.
uint16_t write(ELEMTYPE newValue, Cpl::Dm::ModelPoint::LockRequest_T lockRequest=Cpl::Dm::ModelPoint::eNO_REQUEST) noexcept
Type safe write. See Cpl::Dm::ModelPoint.
Definition Numeric.h:91
uint16_t decrement(ELEMTYPE decSize=1, Cpl::Dm::ModelPoint::LockRequest_T lockRequest=Cpl::Dm::ModelPoint::eNO_REQUEST) noexcept
Atomic decrement.
Definition Numeric.h:106
uint16_t increment(ELEMTYPE incSize=1, Cpl::Dm::ModelPoint::LockRequest_T lockRequest=Cpl::Dm::ModelPoint::eNO_REQUEST) noexcept
Atomic increment.
Definition Numeric.h:97
This class provides a concrete implementation for a Point who's data is a uint32_t.
Definition Uint32.h:43
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20