GM6000 Digital Heater Controller Branch: main
SDX-1330
MpAlertSummary.h
Go to the documentation of this file.
1#ifndef Ajax_Dm_MpAlertSummary_h_
2#define Ajax_Dm_MpAlertSummary_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-2023 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
16#include "Ajax/Dm/MpAlert.h"
17
18
19///
20namespace Ajax {
21///
22namespace Dm {
23
24
25/** This class provides a concrete implementation for an Alert Summary
26
27 The toJSON() method is a read/modify operation, i.e. omitted key/value
28 fields in the 'val' object are NOT updated.
29
30 The toJSON()/fromJSON format is:
31 \code
32
33 { name:"<mpname>", type:"<mptypestring>", valid:true|false, seqnum:nnnn, locked:true|false,
34 val:{"count":1, active:["<alertEnum>",...]} }
35
36
37 NOTE: When writing the 'val' object to the MP, ONLY the 'active' field is
38 written and the 'count' field is derived from the list count. For
39 example:
40 {name:"<mpname>,val:["<alertEnum>", ...]}
41
42 \endcode
43
44 NOTE: All methods in this class ARE thread Safe unless explicitly
45 documented otherwise.
46 */
48{
49public:
50 /** The MP's Data container.
51 */
52 struct Data
53 {
54 unsigned count; //!< Number of currently active Alerts
55 Ajax::Type::Alert activeAlerts[Ajax::Type::Alert::NUM_ALERTS]; //!< Sorted (by priority) list of active Alerts
56
57 /// Constructor (to ensure any pad bytes get zero'd)
59 {
60 memset( (void*) this, 0, sizeof( Data ) );
61 }
62 };
63
64protected:
65 /// Storage for the MP's data
67
68public:
69 /** Constructor (MP in the invalid state)
70 */
71 MpAlertSummary( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName );
72
73public:
74 /// Type safe read. See Cpl::Dm::ModelPoint
75 inline bool read( Data& dstData, uint16_t* seqNumPtr=0 ) const noexcept
76 {
77 return readData( &dstData, sizeof( Data ), seqNumPtr );
78 }
79
80 /// Type safe write. See Cpl::Dm::ModelPoint
81 inline uint16_t write( const Data& srcData, LockRequest_T lockRequest = eNO_REQUEST ) noexcept
82 {
83 return writeData( &srcData, sizeof( Data ), lockRequest );
84 }
85
86public:
87 /// Updates the MP with the valid-state/data from 'src'. Note: the src.lock state is NOT copied
88 inline uint16_t copyFrom( const MpAlertSummary& src, LockRequest_T lockRequest = eNO_REQUEST ) noexcept
89 {
90 return copyDataAndStateFrom( src, lockRequest );
91 }
92
93public:
94 /// Type safe subscriber
96
97 /// Type safe register observer
98 void attach( Observer& observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN ) noexcept;
99
100 /// Type safe un-register observer
101 void detach( Observer& observer ) noexcept;
102
103 /// See Cpl::Dm::ModelPointCommon
104 inline bool readAndSync( Data& dstData, Cpl::Dm::SubscriberApi& observerToSync )
105 {
106 return ModelPointCommon_::readAndSync( &dstData, sizeof( Data ), observerToSync );
107 }
108
109public:
110 /// See Cpl::Dm::ModelPoint.
111 const char* getTypeAsText() const noexcept;
112
113 /// See Cpl::Dm::Point.
114 bool fromJSON_( JsonVariant& src, LockRequest_T lockRequest, uint16_t& retSequenceNumber, Cpl::Text::String* errorMsg ) noexcept;
115
116protected:
117 /// See Cpl::Dm::Point.
118 void setJSONVal( JsonDocument& doc ) noexcept;
119};
120
121
122
123}; // end namespaces
124};
125#endif // end header latch
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