GM6000 Digital Heater Controller Branch: main
SDX-1330
MpFlcConfig.h
Go to the documentation of this file.
1#ifndef Ajax_Dm_MpFlcConfig_h_
2#define Ajax_Dm_MpFlcConfig_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-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15
18
19///
20namespace Ajax {
21///
22namespace Dm {
23
24
25/** This class provides a concrete implementation for a Point who's data a
26 Ajax::Heating::Flc::Config_t data structure
27
28 The toJSON/fromJSON() format is:
29 \code
30
31 { name:"<mpname>", type=:<mptypestring>", valid:true|false, seqnum:nnnn, locked:true|false,
32 val:{ "outScalar":nnn, "maxY": nnn, "errScalar":nnn, "dErrScalar":nnn, "outK":[n,n,n,n,n] }
33 }
34
35 \endcode
36
37
38 NOTE: All methods in this class ARE thread Safe unless explicitly
39 documented otherwise.
40 */
42{
43public:
44 /// Constructor. Invalid MP.
45 MpFlcConfig( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName )
46 :Cpl::Dm::ModelPointCommon_( myModelBase, symbolicName, &m_data, sizeof( m_data ), false )
47 {
48 }
49
50 /// Constructor. Valid MP. Requires an initial value
51 MpFlcConfig( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName, Ajax::Heating::Flc::Config_T initialValue )
52 :Cpl::Dm::ModelPointCommon_( myModelBase, symbolicName, &m_data, sizeof( m_data ), true )
53 {
54 m_data = initialValue;
55 }
56
57public:
58 /// Type safe read. See Cpl::Dm::ModelPoint
59 inline bool read( Ajax::Heating::Flc::Config_T& dstData, uint16_t* seqNumPtr=0 ) const noexcept
60 {
61 return readData( &dstData, sizeof( m_data ), seqNumPtr );
62 }
63
64 /// Type safe write. See Cpl::Dm::ModelPoint
65 inline uint16_t write( Ajax::Heating::Flc::Config_T newValue, LockRequest_T lockRequest = eNO_REQUEST ) noexcept
66 {
67 return writeData( &newValue, sizeof( m_data ), lockRequest );
68 }
69
70 /// Updates the MP with the valid-state/data from 'src'. Note: the src.lock state is NOT copied
71 inline uint16_t copyFrom( const MpFlcConfig& src, LockRequest_T lockRequest = eNO_REQUEST ) noexcept
72 {
73 return copyDataAndStateFrom( src, lockRequest );
74 }
75
76public:
77 /// Type safe subscriber
79
80 /// Type safe register observer
81 void attach( Observer& observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN ) noexcept;
82
83 /// Type safe un-register observer
84 void detach( Observer& observer ) noexcept;
85
86 /// See Cpl::Dm::ModelPointCommon
87 inline bool readAndSync( Ajax::Heating::Flc::Config_T& dstData, Cpl::Dm::SubscriberApi& observerToSync )
88 {
89 return ModelPointCommon_::readAndSync( &dstData, sizeof( m_data ), observerToSync );
90 }
91
92public:
93 /// See Cpl::Dm::ModelPoint.
94 const char* getTypeAsText() const noexcept;
95
96 /// See Cpl::Dm::Point.
97 bool fromJSON_( JsonVariant& src, LockRequest_T lockRequest, uint16_t& retSequenceNumber, Cpl::Text::String* errorMsg ) noexcept;
98
99protected:
100 /// See Cpl::Dm::Point.
101 void setJSONVal( JsonDocument& doc ) noexcept;
102
103protected:
104 /// My data
105 Ajax::Heating::Flc::Config_T m_data;
106};
107
108
109
110}; // end namespaces
111};
112#endif // end header latch
This class provides a concrete implementation for a Point who's data a Ajax::Heating::Flc::Config_t d...
Definition MpFlcConfig.h:42
void setJSONVal(JsonDocument &doc) noexcept
See Cpl::Dm::Point.
bool fromJSON_(JsonVariant &src, LockRequest_T lockRequest, uint16_t &retSequenceNumber, Cpl::Text::String *errorMsg) noexcept
See Cpl::Dm::Point.
uint16_t write(Ajax::Heating::Flc::Config_T newValue, LockRequest_T lockRequest=eNO_REQUEST) noexcept
Type safe write. See Cpl::Dm::ModelPoint.
Definition MpFlcConfig.h:65
MpFlcConfig(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor. Invalid MP.
Definition MpFlcConfig.h:45
uint16_t copyFrom(const MpFlcConfig &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 MpFlcConfig.h:71
bool read(Ajax::Heating::Flc::Config_T &dstData, uint16_t *seqNumPtr=0) const noexcept
Type safe read. See Cpl::Dm::ModelPoint.
Definition MpFlcConfig.h:59
Ajax::Heating::Flc::Config_T m_data
My data.
Definition MpFlcConfig.h:105
MpFlcConfig(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, Ajax::Heating::Flc::Config_T initialValue)
Constructor. Valid MP. Requires an initial value.
Definition MpFlcConfig.h:51
Cpl::Dm::Subscriber< MpFlcConfig > Observer
Type safe subscriber.
Definition MpFlcConfig.h:78
void detach(Observer &observer) noexcept
Type safe un-register observer.
bool readAndSync(Ajax::Heating::Flc::Config_T &dstData, Cpl::Dm::SubscriberApi &observerToSync)
See Cpl::Dm::ModelPointCommon.
Definition MpFlcConfig.h:87
void attach(Observer &observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN) noexcept
Type safe register observer.
const char * getTypeAsText() const noexcept
See Cpl::Dm::ModelPoint.
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.
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
Struct defines the geometry of the input membership function.
Definition Config.h:34