GM6000 Digital Heater Controller Branch: main
SDX-1330
MpAlert.h
Go to the documentation of this file.
1#ifndef Ajax_Dm_MpAlert_h_
2#define Ajax_Dm_MpAlert_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/Type/Alert.h"
17
18
19
20///
21namespace Ajax {
22///
23namespace Dm {
24
25
26/** This class provides a concrete implementation for a basic Alert that has
27 following attributes:
28
29 - Tracks the 'user acknowledgeable' state
30 - Associates a priority level (relative to other instances) to the Alert
31
32 The MP's valid/invalid state is used to indicate that the Alert is
33 raised/lowered respectively
34
35 The toJSON() method is a read/modify operation, i.e. omitted key/value
36 fields in the 'val' object are NOT updated.
37
38 The toJSON()/fromJSON format is:
39 \code
40
41 { name:"<mpname>", type:"<mptypestring>", valid:true|false, seqnum:nnnn, locked:true|false,
42 val:{"name":"<AlertEnum>, "priority":nn} }
43
44 \endcode
45
46 The Alert MP does NOT really have any run-time modifiable fields - it uses
47 valid/invalid state for active/inactive state of the Alert. To set an Alert MP
48 to the valid/active-alert -->set the "val" field to true, e.g.:
49 { name:"alertApple", val:true }
50
51 NOTE: All methods in this class ARE thread Safe unless explicitly
52 documented otherwise.
53 */
55{
56public:
57 /** The MP's Data container.
58 */
59 struct Data
60 {
61 Ajax::Type::Alert name; //!< Identifies the Alert instance
62 uint8_t priority; //!< Priority of the alarm. Zero is highest, 255 is the lowest
63
64 /// Constructor (to ensure any pad bytes get zero'd)
66 {
67 memset( (void*) this, 0, sizeof( Data ) );
68 }
69
70 /// Constructor (to ensure any pad bytes get zero'd)
71 Data( Ajax::Type::Alert alertName, uint8_t priority )
72 {
73 memset( (void*) this, 0, sizeof( Data ) );
74 this->name = alertName;
75 this->priority = priority;
76 }
77
78 /// Constructor (to ensure any pad bytes get zero'd)
79 Data( Data& other )
80 {
81 memcpy( (void*) this, &other, sizeof( Data ) );
82 }
83 };
84
85protected:
86 /// Storage for the MP's data
88
89public:
90 /** Constructor (MP in the invalid state)
91 */
93 const char* symbolicName,
94 Ajax::Type::Alert alertIdentifer,
95 uint8_t priority );
96
97public:
98 /// Type safe read. See Cpl::Dm::ModelPoint
99 inline bool read( Data& dstData, uint16_t* seqNumPtr=0 ) const noexcept
100 {
101 return readData( &dstData, sizeof( Data ), seqNumPtr );
102 }
103
104 /// Type safe write. See Cpl::Dm::ModelPoint
105 inline uint16_t write( const Data& srcData, LockRequest_T lockRequest = eNO_REQUEST ) noexcept
106 {
107 return writeData( &srcData, sizeof( Data ), lockRequest );
108 }
109
110 /// Sets the Alert state
111 uint16_t raiseAlert( LockRequest_T lockRequest = eNO_REQUEST ) noexcept;
112
113 /// Clears/lowers the Alert.
114 uint16_t lowerAlert( LockRequest_T lockRequest = eNO_REQUEST ) noexcept
115 {
116 return setInvalid();
117 }
118
119public:
120 /// Updates the MP with the valid-state/data from 'src'. Note: the src.lock state is NOT copied
121 inline uint16_t copyFrom( const MpAlert& src, LockRequest_T lockRequest = eNO_REQUEST ) noexcept
122 {
123 return copyDataAndStateFrom( src, lockRequest );
124 }
125
126public:
127 /// Type safe subscriber
129
130 /// Type safe register observer
131 void attach( Observer& observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN ) noexcept;
132
133 /// Type safe un-register observer
134 void detach( Observer& observer ) noexcept;
135
136 /// See Cpl::Dm::ModelPointCommon
137 inline bool readAndSync( Data& dstData, Cpl::Dm::SubscriberApi& observerToSync )
138 {
139 return ModelPointCommon_::readAndSync( &dstData, sizeof( Data ), observerToSync );
140 }
141
142public:
143 /// See Cpl::Dm::ModelPoint.
144 const char* getTypeAsText() const noexcept;
145
146 /// See Cpl::Dm::Point.
147 bool fromJSON_( JsonVariant& src, LockRequest_T lockRequest, uint16_t& retSequenceNumber, Cpl::Text::String* errorMsg ) noexcept;
148
149protected:
150 /// See Cpl::Dm::Point.
151 void setJSONVal( JsonDocument& doc ) noexcept;
152
153 /// Set valid default values when the MP is invalidated
154 void hookSetInvalid() noexcept;
155};
156
157
158
159}; // end namespaces
160};
161#endif // end header latch
This class provides a concrete implementation for a basic Alert that has following attributes:
Definition MpAlert.h:55
Data m_data
Storage for the MP's data.
Definition MpAlert.h:87
uint16_t lowerAlert(LockRequest_T lockRequest=eNO_REQUEST) noexcept
Clears/lowers the Alert.
Definition MpAlert.h:114
bool read(Data &dstData, uint16_t *seqNumPtr=0) const noexcept
Type safe read. See Cpl::Dm::ModelPoint.
Definition MpAlert.h:99
void hookSetInvalid() noexcept
Set valid default values when the MP is invalidated.
uint16_t raiseAlert(LockRequest_T lockRequest=eNO_REQUEST) noexcept
Sets the Alert state.
bool fromJSON_(JsonVariant &src, LockRequest_T lockRequest, uint16_t &retSequenceNumber, Cpl::Text::String *errorMsg) noexcept
See Cpl::Dm::Point.
MpAlert(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, Ajax::Type::Alert alertIdentifer, uint8_t priority)
Constructor (MP in the invalid state)
Cpl::Dm::Subscriber< MpAlert > Observer
Type safe subscriber.
Definition MpAlert.h:128
const char * getTypeAsText() const noexcept
See Cpl::Dm::ModelPoint.
uint16_t copyFrom(const MpAlert &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 MpAlert.h:121
void attach(Observer &observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN) noexcept
Type safe register observer.
bool readAndSync(Data &dstData, Cpl::Dm::SubscriberApi &observerToSync)
See Cpl::Dm::ModelPointCommon.
Definition MpAlert.h:137
void setJSONVal(JsonDocument &doc) noexcept
See Cpl::Dm::Point.
uint16_t write(const Data &srcData, LockRequest_T lockRequest=eNO_REQUEST) noexcept
Type safe write. See Cpl::Dm::ModelPoint.
Definition MpAlert.h:105
void detach(Observer &observer) noexcept
Type safe un-register observer.
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
uint16_t setInvalid(LockRequest_T lockRequest=eNO_REQUEST) noexcept
See Cpl::Dm::ModelPoint.
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 MpAlert.h:60
Data()
Constructor (to ensure any pad bytes get zero'd)
Definition MpAlert.h:65
Ajax::Type::Alert name
Identifies the Alert instance.
Definition MpAlert.h:61
Data(Ajax::Type::Alert alertName, uint8_t priority)
Constructor (to ensure any pad bytes get zero'd)
Definition MpAlert.h:71
uint8_t priority
Priority of the alarm.
Definition MpAlert.h:62
Data(Data &other)
Constructor (to ensure any pad bytes get zero'd)
Definition MpAlert.h:79