1#ifndef Cpl_Dm_Mp_RefCounter_h_
2#define Cpl_Dm_Mp_RefCounter_h_
83 inline bool read( uint32_t& dstData, uint16_t* seqNumPtr=0 ) const noexcept
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