1#ifndef Cpl_Dm_Model_Point_h_
2#define Cpl_Dm_Model_Point_h_
16#include "colony_config.h"
20#include "Cpl/Json/Arduino.h"
74 virtual const char*
getName() const noexcept = 0;
84 virtual uint16_t
touch() noexcept = 0;
88 virtual
size_t getSize() const noexcept = 0;
96 virtual
bool isNotValid( uint16_t* seqNumPtr=0 ) const noexcept = 0;
149 bool pretty = false ) noexcept = 0;
209 uint16_t* retSequenceNumber=0,
210 bool includeLockedState =
false ) const noexcept = 0;
233 uint16_t* retSequenceNumber=0,
234 bool includeLockedState = false ) noexcept = 0;
284 virtual
bool readData(
void* dstData,
size_t dstSize, uint16_t* seqNumPtr=0 ) const noexcept = 0;
402 virtual void copyDataFrom_(
const void* srcData,
size_t srcSize )
noexcept = 0;
421 virtual void copyDataTo_(
void* dstData,
size_t dstSize )
const noexcept = 0;
477 virtual
bool exportMetadata_(
void* dstDataStream,
size_t& bytesAdded ) const noexcept { bytesAdded = 0;
return true; }
497 virtual bool importMetadata_(
const void* srcDataStream,
size_t& bytesConsumed )
noexcept { bytesConsumed = 0;
return true; }
512 uint16_t& retSequenceNumber,
This class is used by the Container classes to implement a various types of singly linked containers.
Definition Item.h:33
This mostly abstract class defines the interface for a Model Point.
Definition ModelPoint.h:46
virtual uint16_t setInvalid(LockRequest_T lockRequest=eNO_REQUEST) noexcept=0
This method is used to mark the element's data as invalid.
virtual bool isDataEqual_(const void *otherData) const noexcept=0
This method has PACKAGE Scope, i.e.
virtual bool isLocked() const noexcept=0
This method returns true if the Model Point is in the locked state.
virtual bool isNotValid(uint16_t *seqNumPtr=0) const noexcept=0
This method returns true when the MP data is invalid.
virtual void genericDetach(SubscriberApi &observer) noexcept=0
This is method is used to detach a GENERIC Subscriber from a Model Point.
LockRequest_T
Options related to the Model Point's locked state.
Definition ModelPoint.h:50
@ eUNLOCK
Request to unlock the MP.
Definition ModelPoint.h:53
@ eNO_REQUEST
No change in the MP's lock state is requested.
Definition ModelPoint.h:51
@ eLOCK
Request to lock the MP.
Definition ModelPoint.h:52
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
virtual bool toJSON(char *dst, size_t dstSize, bool &truncated, bool verbose=true, bool pretty=false) noexcept=0
This method converts the Model Point's data to JSON string and copies the resultant string into 'dst'...
virtual uint16_t touch() noexcept=0
This method does NOT alter the MP's data or state, but unconditionally triggers the MP change notific...
virtual void setJSONVal(JsonDocument &doc) noexcept=0
This method converts the MP data to a JSON key/value pair.
virtual void detachSubscriber(SubscriberApi &observer) noexcept=0
This method is used to detach a Subscriber from a Model Point.
virtual uint16_t getSequenceNumber() const noexcept=0
This method returns the Model Point's current sequence number.
virtual void processSubscriptionEvent_(SubscriberApi &subscriber, Event_T event) noexcept=0
This method has PACKAGE Scope, i.e.
virtual bool exportMetadata_(void *dstDataStream, size_t &bytesAdded) const noexcept
This method has PACKAGE Scope, i.e.
Definition ModelPoint.h:477
virtual void copyDataTo_(void *dstData, size_t dstSize) const noexcept=0
This method has PACKAGE Scope, i.e.
virtual size_t importData(const void *srcDataStream, size_t srcLength, uint16_t *retSequenceNumber=0, bool includeLockedState=false) noexcept=0
This method is used to populate the Model Point's data content from the a raw data stream/pointer.
uint16_t removeLock() noexcept
Short hand for unconditionally removing the lock from the MP.
Definition ModelPoint.h:185
virtual const void * getImportExportDataPointer_() const noexcept=0
This method has PACKAGE Scope, i.e.
virtual uint16_t writeData(const void *srcData, size_t srcSize, LockRequest_T lockRequest=eNO_REQUEST) noexcept=0
This method writes the caller Point instance to the Model Point's internal data.
virtual ~ModelPoint()
Virtual destructor to make the compiler happy.
Definition ModelPoint.h:525
virtual void attachSubscriber(SubscriberApi &observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN) noexcept=0
This method is used to attach a subscriber to a Model Point.
virtual size_t getExternalSize(bool includeLockedState=false) const =0
Returns the size, in bytes, of the element's data content.
virtual const char * getTypeAsText() const noexcept=0
This method returns a string identifier for the Model Point's data type.
virtual bool importMetadata_(const void *srcDataStream, size_t &bytesConsumed) noexcept
This method has PACKAGE Scope, i.e.
Definition ModelPoint.h:497
virtual void genericAttach(SubscriberApi &observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN) noexcept=0
This method is used to subscribe to on-change notification in a GENERIC manner.
virtual size_t exportData(void *dstDataStream, size_t maxDstLength, uint16_t *retSequenceNumber=0, bool includeLockedState=false) const noexcept=0
This method is used to export the Model Point's instance data content to a raw data stream.
virtual bool readData(void *dstData, size_t dstSize, uint16_t *seqNumPtr=0) const noexcept=0
This method copies the Model Point's content to the caller's Point instance.
virtual size_t getSize() const noexcept=0
This method returns the RAM size, in bytes, of the Model Point's data.
virtual bool fromJSON_(JsonVariant &src, LockRequest_T lockRequest, uint16_t &retSequenceNumber, Cpl::Text::String *errorMsg) noexcept=0
This method has PACKAGE Scope, i.e.
virtual void copyDataFrom_(const void *srcData, size_t srcSize) noexcept=0
This method has PACKAGE Scope, i.e.
virtual size_t getInternalDataSize_() const noexcept=0
This method has PACKAGE Scope, i.e.
virtual const char * getName() const noexcept=0
This method returns the Model Point's name as a null terminated string.
uint16_t applyLock() noexcept
Short hand for putting the MP into the locked state.
Definition ModelPoint.h:188
virtual uint16_t setLockState(LockRequest_T lockRequest) noexcept=0
This updates the lock state of the Model Point.
Event_T
Subscriber events.
Definition ModelPoint.h:365
@ eDATA_CHANGED
The model point's data/state has change a pending change notification is needed.
Definition ModelPoint.h:368
@ eATTACH
The Application is requesting to subscribe to a model point.
Definition ModelPoint.h:366
@ eNOTIFYING
The subscriber's change notification callback is being called.
Definition ModelPoint.h:369
@ eNOTIFY_COMPLETE
The subscriber's change notification callback has been completed.
Definition ModelPoint.h:370
@ eDETACH
The Application is requesting to un-subscribe from the model point.
Definition ModelPoint.h:367
This abstract class defines the Subscriber interface - for change notifications - to a Model Points d...
Definition SubscriberApi.h:34
This abstract class defines the operations that can be before on a NULL terminated string.
Definition String.h:40
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20