1#ifndef Ajax_Dm_MpAlertSummary_h_
2#define Ajax_Dm_MpAlertSummary_h_
60 memset( (
void*)
this, 0,
sizeof(
Data ) );
75 inline bool read(
Data& dstData, uint16_t* seqNumPtr=0 ) const noexcept
106 return ModelPointCommon_::readAndSync( &dstData,
sizeof(
Data ), observerToSync );
This class provides a concrete implementation for an Alert Summary.
Definition MpAlertSummary.h:48
bool fromJSON_(JsonVariant &src, LockRequest_T lockRequest, uint16_t &retSequenceNumber, Cpl::Text::String *errorMsg) noexcept
See Cpl::Dm::Point.
void attach(Observer &observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN) noexcept
Type safe register observer.
void detach(Observer &observer) noexcept
Type safe un-register observer.
MpAlertSummary(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor (MP in the invalid state)
Cpl::Dm::Subscriber< MpAlertSummary > Observer
Type safe subscriber.
Definition MpAlertSummary.h:95
bool readAndSync(Data &dstData, Cpl::Dm::SubscriberApi &observerToSync)
See Cpl::Dm::ModelPointCommon.
Definition MpAlertSummary.h:104
uint16_t write(const Data &srcData, LockRequest_T lockRequest=eNO_REQUEST) noexcept
Type safe write. See Cpl::Dm::ModelPoint.
Definition MpAlertSummary.h:81
uint16_t copyFrom(const MpAlertSummary &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 MpAlertSummary.h:88
const char * getTypeAsText() const noexcept
See Cpl::Dm::ModelPoint.
void setJSONVal(JsonDocument &doc) noexcept
See Cpl::Dm::Point.
Data m_data
Storage for the MP's data.
Definition MpAlertSummary.h:66
bool read(Data &dstData, uint16_t *seqNumPtr=0) const noexcept
Type safe read. See Cpl::Dm::ModelPoint.
Definition MpAlertSummary.h:75
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
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.
uint16_t writeData(const void *srcData, size_t srcSize, LockRequest_T lockRequest=eNO_REQUEST) 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 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 'Ajax' namespace is the root name space all GM6000 application specific source code.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
The MP's Data container.
Definition MpAlertSummary.h:53
unsigned count
Number of currently active Alerts.
Definition MpAlertSummary.h:54
Ajax::Type::Alert activeAlerts[Ajax::Type::Alert::NUM_ALERTS]
Sorted (by priority) list of active Alerts.
Definition MpAlertSummary.h:55
Data()
Constructor (to ensure any pad bytes get zero'd)
Definition MpAlertSummary.h:58