GM6000 Digital Heater Controller Branch: main
SDX-1330
Enum_.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_Mp_Enum_h_
2#define Cpl_Dm_Mp_Enum_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
17
18///
19namespace Cpl {
20///
21namespace Dm {
22///
23namespace Mp {
24
25/** This template class provides a mostly concrete implementation for a Model
26 Point who's data is a BETTER_ENUM type. The child classes must provide the
27 following:
28
29 getTypeAsText() method and a typedef for child specific 'Observer'
30
31 NOTES:
32 1) All methods in this class are NOT thread Safe unless explicitly
33 documented otherwise.
34 */
35template<class BETTERENUM_TYPE, class MPTYPE>
37{
38protected:
39 /// The element's value
40 BETTERENUM_TYPE m_data;
41
42public:
43 /// Constructor: Invalid MP
44 Enum_( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName )
45 : Cpl::Dm::ModelPointCommon_( myModelBase, symbolicName, &m_data, sizeof( m_data ), false )
46 , m_data( BETTERENUM_TYPE::_from_index_unchecked( 0 ) )
47 {
48 }
49
50 /// Constructor: Valid MP (requires initial value)
51 Enum_( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName, BETTERENUM_TYPE initialValue )
52 : Cpl::Dm::ModelPointCommon_( myModelBase, symbolicName, &m_data, sizeof( m_data ), true )
53 , m_data( BETTERENUM_TYPE::_from_index_unchecked( 0 ) )
54 {
55 m_data = initialValue;
56 }
57
58public:
59 /// Type safe read. See Cpl::Dm::ModelPoint
60 inline bool read( BETTERENUM_TYPE& dstData, uint16_t* seqNumPtr = 0 ) const noexcept
61 {
62 return readData( &dstData, sizeof( BETTERENUM_TYPE ), seqNumPtr );
63 }
64
65 /// Type safe write. See Cpl::Dm::ModelPoint
66 inline uint16_t write( BETTERENUM_TYPE newValue, Cpl::Dm::ModelPoint::LockRequest_T lockRequest = Cpl::Dm::ModelPoint::eNO_REQUEST ) noexcept
67 {
68 return writeData( &newValue, sizeof( BETTERENUM_TYPE ), lockRequest );
69 }
70
71 /// Updates the MP with the valid-state/data from 'src'. Note: the src.lock state is NOT copied
72 inline uint16_t copyFrom( const MPTYPE& src, LockRequest_T lockRequest = eNO_REQUEST ) noexcept
73 {
74 return copyDataAndStateFrom( src, lockRequest );
75 }
76
77 /// Type safe register observer
78 inline void attach( Cpl::Dm::Subscriber<MPTYPE>& observer, uint16_t initialSeqNumber = SEQUENCE_NUMBER_UNKNOWN ) noexcept
79 {
80 attachSubscriber( observer, initialSeqNumber );
81 }
82
83 /// Type safe un-register observer
84 inline void detach( Cpl::Dm::Subscriber<MPTYPE>& observer ) noexcept
85 {
86 detachSubscriber( observer );
87 }
88
89 /// See Cpl::Dm::ModelPointCommon
90 inline bool readAndSync( BETTERENUM_TYPE& dstData, SubscriberApi& observerToSync )
91 {
92 return ModelPointCommon_::readAndSync( &dstData, sizeof( BETTERENUM_TYPE ), observerToSync );
93 }
94
95protected:
96 /// See Cpl::Dm::Point.
97 void setJSONVal( JsonDocument& doc ) noexcept
98 {
99 doc["val"] = (char*) m_data._to_string();
100 }
101
102public:
103 /// See Cpl::Dm::Point.
104 bool fromJSON_( JsonVariant& src, Cpl::Dm::ModelPoint::LockRequest_T lockRequest, uint16_t& retSequenceNumber, Cpl::Text::String* errorMsg ) noexcept
105 {
106 // Get the enum string
107 const char* newValue = src;
108 if ( newValue == nullptr )
109 {
110 if ( errorMsg )
111 {
112 *errorMsg = "Invalid syntax for the 'val' key/value pair";
113 }
114 return false;
115 }
116
117 // Convert the text to an enum value
118 auto maybeValue = BETTERENUM_TYPE::_from_string_nothrow( newValue );
119 if ( !maybeValue )
120 {
121 if ( errorMsg )
122 {
123 errorMsg->format( "Invalid enum value (%s)", newValue );
124 }
125 return false;
126 }
127
128 retSequenceNumber = write( *maybeValue, lockRequest );
129 return true;
130 }
131};
132
133
134
135}; // end namespaces
136};
137};
138#endif // end header latch
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
void attachSubscriber(SubscriberApi &observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN) noexcept
See Cpl::Dm::ModelPoint.
void detachSubscriber(SubscriberApi &observer) noexcept
See Cpl::Dm::ModelPoint.
bool readAndSync(void *dstData, size_t dstSize, SubscriberApi &observerToSync)
This method is used to read the MP contents and synchronize the observer with the current MP contents...
Definition ModelPointCommon_.h:93
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 template class provides a mostly concrete implementation for a Model Point who's data is a BETTE...
Definition Enum_.h:37
Enum_(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor: Invalid MP.
Definition Enum_.h:44
bool readAndSync(BETTERENUM_TYPE &dstData, SubscriberApi &observerToSync)
See Cpl::Dm::ModelPointCommon.
Definition Enum_.h:90
uint16_t copyFrom(const MPTYPE &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 Enum_.h:72
BETTERENUM_TYPE m_data
The element's value.
Definition Enum_.h:40
uint16_t write(BETTERENUM_TYPE newValue, Cpl::Dm::ModelPoint::LockRequest_T lockRequest=Cpl::Dm::ModelPoint::eNO_REQUEST) noexcept
Type safe write. See Cpl::Dm::ModelPoint.
Definition Enum_.h:66
void setJSONVal(JsonDocument &doc) noexcept
See Cpl::Dm::Point.
Definition Enum_.h:97
bool fromJSON_(JsonVariant &src, Cpl::Dm::ModelPoint::LockRequest_T lockRequest, uint16_t &retSequenceNumber, Cpl::Text::String *errorMsg) noexcept
See Cpl::Dm::Point.
Definition Enum_.h:104
void attach(Cpl::Dm::Subscriber< MPTYPE > &observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN) noexcept
Type safe register observer.
Definition Enum_.h:78
void detach(Cpl::Dm::Subscriber< MPTYPE > &observer) noexcept
Type safe un-register observer.
Definition Enum_.h:84
Enum_(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, BETTERENUM_TYPE initialValue)
Constructor: Valid MP (requires initial value)
Definition Enum_.h:51
bool read(BETTERENUM_TYPE &dstData, uint16_t *seqNumPtr=0) const noexcept
Type safe read. See Cpl::Dm::ModelPoint.
Definition Enum_.h:60
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
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