GM6000 Digital Heater Controller Branch: main
SDX-1330
RefCounter.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_Mp_RefCounter_h_
2#define Cpl_Dm_Mp_RefCounter_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
17
18///
19namespace Cpl {
20///
21namespace Dm {
22///
23namespace Mp {
24
25
26/** This class provides a concrete implementation for a Point who's data is 32
27 bit unsigned reference counter. A reference counter can be increment or
28 decremented. When incremented, the value is clamped at 2^32 -1 (not allowed
29 to overflow). When decremented, the value is clamped at zero (not allowed
30 to underflow). In addition, change notifications are only generated on the
31 following transitions:
32
33 1) Invalid state to the Valid state
34 2) Valid state to the Invalid state
35 3) Transition to zero
36 4) Transition from zero to value greater than zero
37
38 The toJSON/fromJSON() format is:
39 \code
40
41 { name:"<mpname>", type:"<mptypestring>", valid:true|false, seqnum:nnnn, locked:true|false, val:"<act><numvalue>" }
42 { name:"<mpname>", type:"<mptypestring>", valid:true|false, seqnum:nnnn, locked:true|false, val:numvalue> }
43
44 where <act> can be:
45 "+" -->increment the counter
46 "-" -->decrement the counter
47
48 NOTE: The value for the "val" key/value pair is a STRING, NOT a numeric
49
50 Examples:
51 toJSON():
52 { name:"mp_visitors", type:"Cpl::Dm::Mp::RefCounter", valid:true, seqnum:12, locked:false, val:12 }
53
54 fromJSON():
55 { name:"mp_visitors", val:"+2" } // Increments the point by 2
56 { name:"mp_visitors", val:"-1" } // Decrements the point by 1
57 { name:"mp_visitors", val:0 } // Resets the counter to zero
58
59 \endcode
60
61
62 NOTE: All methods in this class ARE thread Safe unless explicitly
63 documented otherwise.
64 */
66{
67public:
68 /// Constructor. Invalid MP.
69 RefCounter( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName );
70
71 /// Constructor. Valid MP. Requires an initial value
72 RefCounter( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName, uint32_t initialValue );
73
74
75public:
76 /// Increments the counter. Note: The counter is protected from overflowing
77 virtual uint16_t increment( uint32_t incrementAmount=1, LockRequest_T lockRequest = eNO_REQUEST ) noexcept;
78
79 /// Decrements the counter. Note: The counter is protected from underflowing
80 virtual uint16_t decrement( uint32_t decrementAmount=1, LockRequest_T lockRequest = eNO_REQUEST ) noexcept;
81
82 /// Type safe read. See Cpl::Dm::ModelPoint
83 inline bool read( uint32_t& dstData, uint16_t* seqNumPtr=0 ) const noexcept
84 {
85 return readData( &dstData, sizeof( m_data ), seqNumPtr );
86 }
87
88 /// Resets the counter to zero (or to a specific value)
89 virtual uint16_t reset( uint32_t newValue=0, LockRequest_T lockRequest = eNO_REQUEST ) noexcept;
90
91 /// Updates the MP with the valid-state/data from 'src'. Note: the src.lock state is NOT copied
92 inline uint16_t copyFrom( const RefCounter& src, LockRequest_T lockRequest = eNO_REQUEST ) noexcept
93 {
94 return copyDataAndStateFrom( src, lockRequest );
95 }
96
97 /// See Cpl::Dm::ModelPoint.
98 const char* getTypeAsText() const noexcept;
99
100public:
101 /// Type safe subscriber
103
104 /// Type safe register observer
105 void attach( Observer& observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN ) noexcept;
106
107 /// Type safe un-register observer
108 void detach( Observer& observer ) noexcept;
109
110 /// See Cpl::Dm::Point.
111 bool fromJSON_( JsonVariant& src, LockRequest_T lockRequest, uint16_t& retSequenceNumber, Cpl::Text::String* errorMsg ) noexcept;
112
113 /// See Cpl::Dm::ModelPointCommon
114 inline bool readAndSync( uint32_t& dstData, SubscriberApi& observerToSync )
115 {
116 return ModelPointCommon_::readAndSync( &dstData, sizeof( m_data ), observerToSync );
117 }
118
119protected:
120 /// See Cpl::Dm::Point.
121 void setJSONVal( JsonDocument& doc ) noexcept;
122
123 /// Helper method for only generating change notification on certain transitions
124 void updateAndCheckForChangeNotification( uint32_t newValue );
125
126
127protected:
128 /// My data
129 uint32_t m_data;
130};
131
132
133
134}; // end namespaces
135};
136};
137#endif // end header latch
This concrete class implements a simple Model Database.
Definition ModelDatabase.h:56
This concrete class provide common infrastructure for a Model Point.
Definition ModelPointCommon_.h:32
bool readAndSync(void *dstData, size_t dstSize, SubscriberApi &observerToSync)
This method is used to read the MP contents and synchronize the observer with the current MP contents...
Definition ModelPointCommon_.h:93
virtual uint16_t copyDataAndStateFrom(const ModelPointCommon_ &src, LockRequest_T lockRequest) noexcept
Updates the MP with the valid-state/data from 'src'. Note: the src.lock state is NOT copied.
bool readData(void *dstData, size_t dstSize, uint16_t *seqNumPtr=0) const noexcept
See Cpl::Dm::ModelPoint.
LockRequest_T
Options related to the Model Point's locked state.
Definition ModelPoint.h:50
@ eNO_REQUEST
No change in the MP's lock state is requested.
Definition ModelPoint.h:51
static const uint16_t SEQUENCE_NUMBER_UNKNOWN
Magic value to use when registering for a change notification and application does not 'know' the cur...
Definition ModelPoint.h:62
This class provides a concrete implementation for a Point who's data is 32 bit unsigned reference cou...
Definition RefCounter.h:66
RefCounter(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, uint32_t initialValue)
Constructor. Valid MP. Requires an initial value.
bool fromJSON_(JsonVariant &src, LockRequest_T lockRequest, uint16_t &retSequenceNumber, Cpl::Text::String *errorMsg) noexcept
See Cpl::Dm::Point.
void setJSONVal(JsonDocument &doc) noexcept
See Cpl::Dm::Point.
bool readAndSync(uint32_t &dstData, SubscriberApi &observerToSync)
See Cpl::Dm::ModelPointCommon.
Definition RefCounter.h:114
void updateAndCheckForChangeNotification(uint32_t newValue)
Helper method for only generating change notification on certain transitions.
uint16_t copyFrom(const RefCounter &src, LockRequest_T lockRequest=eNO_REQUEST) noexcept
Updates the MP with the valid-state/data from 'src'. Note: the src.lock state is NOT copied.
Definition RefCounter.h:92
RefCounter(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor. Invalid MP.
const char * getTypeAsText() const noexcept
See Cpl::Dm::ModelPoint.
uint32_t m_data
My data.
Definition RefCounter.h:129
virtual uint16_t reset(uint32_t newValue=0, LockRequest_T lockRequest=eNO_REQUEST) noexcept
Resets the counter to zero (or to a specific value)
void attach(Observer &observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN) noexcept
Type safe register observer.
virtual uint16_t decrement(uint32_t decrementAmount=1, LockRequest_T lockRequest=eNO_REQUEST) noexcept
Decrements the counter. Note: The counter is protected from underflowing.
void detach(Observer &observer) noexcept
Type safe un-register observer.
bool read(uint32_t &dstData, uint16_t *seqNumPtr=0) const noexcept
Type safe read. See Cpl::Dm::ModelPoint.
Definition RefCounter.h:83
virtual uint16_t increment(uint32_t incrementAmount=1, LockRequest_T lockRequest=eNO_REQUEST) noexcept
Increments the counter. Note: The counter is protected from overflowing.
This concrete template class provides the storage for a Point who's data is a null terminated string.
Definition String.h:114
This abstract class defines the Subscriber interface - for change notifications - to a Model Points d...
Definition SubscriberApi.h:34
This template class defines a type safe Subscriber.
Definition Subscriber.h:82
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20