1#ifndef Cpl_Dm_ModelPointBase_h_
2#define Cpl_Dm_ModelPointBase_h_
36 const char* symbolicName,
38 size_t dataSizeInBytes,
39 bool isValid =
false );
70 size_t exportData(
void* dstDataStream,
size_t maxDstLength, uint16_t* retSequenceNumber = 0,
bool includeLockedState = false ) const noexcept;
73 size_t importData( const
void* srcDataStream,
size_t srcLength, uint16_t* retSequenceNumber = 0,
bool includeLockedState = false ) noexcept;
82 bool toJSON(
char* dst,
size_t dstSize,
bool& truncated,
bool verbose=true,
bool pretty=false ) noexcept;
96 bool result =
readData( dstData, dstSize , &seqNum );
121 bool readData(
void* dstData,
size_t dstSize, uint16_t* seqNumPtr=0 ) const noexcept;
204 virtual JsonDocument&
beginJSON(
bool isValid,
bool locked, uint16_t seqnum,
bool verbose=true ) noexcept;
207 virtual
void endJSON(
char* dst,
size_t dstSize,
bool& truncated,
bool verbose=true,
bool pretty=false ) 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
ModelPointCommon_(ModelDatabase &myModelBase, const char *symbolicName, void *myDataPtr, size_t dataSizeInBytes, bool isValid=false)
Constructor.
void attachSubscriber(SubscriberApi &observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN) noexcept
See Cpl::Dm::ModelPoint.
void copyDataTo_(void *dstData, size_t dstSize) const noexcept
See Cpl::Dm::ModelPoint.
bool m_valid
valid/invalid state
Definition ModelPointCommon_.h:239
size_t getExternalSize(bool includeLockedState=false) const noexcept
See Cpl::Dm::ModelPoint.
uint16_t setInvalid(LockRequest_T lockRequest=eNO_REQUEST) noexcept
See Cpl::Dm::ModelPoint.
Cpl::Container::DList< SubscriberApi > m_subscribers
List of Active Subscribers.
Definition ModelPointCommon_.h:218
virtual JsonDocument & beginJSON(bool isValid, bool locked, uint16_t seqnum, bool verbose=true) noexcept
Helper method when converting MP to a JSON string.
virtual void endJSON(char *dst, size_t dstSize, bool &truncated, bool verbose=true, bool pretty=false) noexcept
Helper method when converting MP to a JSON string.
virtual void transitionToNotifyPending(SubscriberApi &subscriber) noexcept
Helper FSM method.
void genericAttach(SubscriberApi &observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN) noexcept
See Cpl::Dm::ModelPoint.
void detachSubscriber(SubscriberApi &observer) noexcept
See Cpl::Dm::ModelPoint.
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
const char * m_name
The model point's symbolic name.
Definition ModelPointCommon_.h:221
virtual bool testAndUpdateLock(LockRequest_T lockRequest) noexcept
Internal helper method that manages testing and updating the locked state.
bool isLocked() const noexcept
See Cpl::Dm::ModelPoint.
ModelDatabase & m_modelDatabase
Reference to the containing Model Base.
Definition ModelPointCommon_.h:224
bool isNotValid(uint16_t *seqNumPtr=0) const noexcept
See Cpl::Dm::ModelPoint.
void copyDataFrom_(const void *srcData, size_t srcSize) noexcept
See Cpl::Dm::ModelPoint.
virtual void advanceSequenceNumber() noexcept
Internal helper method that advances/updates the Model Point's sequence number.
bool isNotValidAndSync(SubscriberApi &observerToSync)
This method is used to test the validate state of the MP and synchronize the observer with the curren...
Definition ModelPointCommon_.h:110
uint16_t getSequenceNumber() const noexcept
See Cpl::Dm::ModelPoint.
void genericDetach(SubscriberApi &observer) noexcept
See Cpl::Dm::ModelPoint.
virtual void processChangeNotifications() noexcept
Internal helper method that handles generating change notifications when the Model Point's data/state...
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.
uint16_t m_seqNum
Sequence number used for tracking changes in the Point data.
Definition ModelPointCommon_.h:233
uint16_t touch() noexcept
See Cpl::Dm::ModelPoint.
const char * getName() const noexcept
See Cpl::Dm::ModelPoint.
virtual void transitionToSubscribed(SubscriberApi &subscriber) noexcept
Helper FSM method.
uint16_t setLockState(LockRequest_T lockRequest) noexcept
See Cpl::Dm::ModelPoint.
size_t m_dataSize
Size of my data.
Definition ModelPointCommon_.h:230
const void * getImportExportDataPointer_() const noexcept
See Cpl::Dm::ModelPoint.
size_t getInternalDataSize_() const noexcept
See Cpl::Dm::ModelPoint.
size_t getSize() const noexcept
See Cpl::Dm::ModelPoint. This method IS thread safe.
virtual void hookSetInvalid() noexcept
Helper method that a child a class can override to change behavior when an MP is set to the invalid s...
bool toJSON(char *dst, size_t dstSize, bool &truncated, bool verbose=true, bool pretty=false) noexcept
See Cpl::Dm::ModelPoint.
void processSubscriptionEvent_(SubscriberApi &subscriber, Event_T event) noexcept
See Cpl::Dm::ModelPoint.
bool isDataEqual_(const void *otherData) const noexcept
See Cpl::Dm::ModelPoint. Note: This implementation does NOT work if the any of the data content are f...
bool readData(void *dstData, size_t dstSize, uint16_t *seqNumPtr=0) const noexcept
See Cpl::Dm::ModelPoint.
size_t exportData(void *dstDataStream, size_t maxDstLength, uint16_t *retSequenceNumber=0, bool includeLockedState=false) const noexcept
See Cpl::Dm::ModelPoint. Note: The implementation does NOT account for Endianess, i....
bool m_locked
Locked state.
Definition ModelPointCommon_.h:236
uint16_t writeData(const void *srcData, size_t srcSize, LockRequest_T lockRequest=eNO_REQUEST) noexcept
See Cpl::Dm::ModelPoint.
void * m_dataPtr
Reference to my Data.
Definition ModelPointCommon_.h:227
size_t importData(const void *srcDataStream, size_t srcLength, uint16_t *retSequenceNumber=0, bool includeLockedState=false) noexcept
See Cpl::Dm::ModelPoint. Note: The implementation does NOT account for Endianess, i....
virtual void processDataUpdated() noexcept
Internal helper method that completes the data update process as well as ensuring any change notifica...
This mostly abstract class defines the interface for a Model Point.
Definition ModelPoint.h:46
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
Event_T
Subscriber events.
Definition ModelPoint.h:365
This abstract class defines the Subscriber interface - for change notifications - to a Model Points d...
Definition SubscriberApi.h:34
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20