GM6000 Digital Heater Controller Branch: main
SDX-1330
ElapsedPrecisionTime.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_Mp_ElapsedPrecisionTime_h_
2#define Cpl_Dm_Mp_ElapsedPrecisionTime_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 Cpl {
21///
22namespace Dm {
23///
24namespace Mp {
25
26
27/** This class provides a concrete implementation for a Point who's data a
28 Cpl::System::ElapsedTime::Precision_T data structure
29
30 The toJSON/fromJSON() format is:
31 \code
32
33 { name:"<mpname>", type=:<mptypestring>", valid:true|false, seqnum:nnnn, locked:true|false, val:"DD HH:MM:SS.sss" }
34
35 Note: When writing a value, the 'DD' and 'sss' fields are optional.
36
37 \endcode
38
39
40 NOTE: All methods in this class ARE thread Safe unless explicitly
41 documented otherwise.
42 */
44{
45public:
46 /// Constructor. Invalid MP.
47 ElapsedPrecisionTime( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName )
48 :Cpl::Dm::ModelPointCommon_( myModelBase, symbolicName, &m_data, sizeof( m_data ), false )
49 {
50 }
51
52 /// Constructor. Valid MP. Requires an initial value
53 ElapsedPrecisionTime( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName, Cpl::System::ElapsedTime::Precision_T initialValue )
54 :Cpl::Dm::ModelPointCommon_( myModelBase, symbolicName, &m_data, sizeof( m_data ), true )
55 {
56 m_data = initialValue;
57 }
58
59public:
60 /// Type safe read. See Cpl::Dm::ModelPoint
61 inline bool read( Cpl::System::ElapsedTime::Precision_T& dstData, uint16_t* seqNumPtr=0 ) const noexcept
62 {
63 return readData( &dstData, sizeof( m_data ), seqNumPtr );
64 }
65
66 /// Type safe write. See Cpl::Dm::ModelPoint
67 inline uint16_t write( Cpl::System::ElapsedTime::Precision_T newValue, LockRequest_T lockRequest = eNO_REQUEST ) noexcept
68 {
69 return writeData( &newValue, sizeof( m_data ), lockRequest );
70 }
71
72 /// Updates the MP with the valid-state/data from 'src'. Note: the src.lock state is NOT copied
73 inline uint16_t copyFrom( const ElapsedPrecisionTime& src, LockRequest_T lockRequest = eNO_REQUEST ) noexcept
74 {
75 return copyDataAndStateFrom( src, lockRequest );
76 }
77
78public:
79 /// Type safe subscriber
81
82 /// Type safe register observer
83 void attach( Observer& observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN ) noexcept;
84
85 /// Type safe un-register observer
86 void detach( Observer& observer ) noexcept;
87
88 /// See Cpl::Dm::ModelPointCommon
89 inline bool readAndSync( Cpl::System::ElapsedTime::Precision_T& dstData, SubscriberApi& observerToSync )
90 {
91 return ModelPointCommon_::readAndSync( &dstData, sizeof( m_data ), observerToSync );
92 }
93
94public:
95 /// See Cpl::Dm::ModelPoint.
96 const char* getTypeAsText() const noexcept;
97
98 /// See Cpl::Dm::Point.
99 bool fromJSON_( JsonVariant& src, LockRequest_T lockRequest, uint16_t& retSequenceNumber, Cpl::Text::String* errorMsg ) noexcept;
100
101protected:
102 /// See Cpl::Dm::Point.
103 void setJSONVal( JsonDocument& doc ) noexcept;
104
105protected:
106 /// My data
107 Cpl::System::ElapsedTime::Precision_T m_data;
108};
109
110
111
112}; // end namespaces
113};
114};
115#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
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 class provides a concrete implementation for a Point who's data a Cpl::System::ElapsedTime::Prec...
Definition ElapsedPrecisionTime.h:44
ElapsedPrecisionTime(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, Cpl::System::ElapsedTime::Precision_T initialValue)
Constructor. Valid MP. Requires an initial value.
Definition ElapsedPrecisionTime.h:53
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.
Cpl::Dm::Subscriber< ElapsedPrecisionTime > Observer
Type safe subscriber.
Definition ElapsedPrecisionTime.h:80
void attach(Observer &observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN) noexcept
Type safe register observer.
const char * getTypeAsText() const noexcept
See Cpl::Dm::ModelPoint.
uint16_t copyFrom(const ElapsedPrecisionTime &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 ElapsedPrecisionTime.h:73
Cpl::System::ElapsedTime::Precision_T m_data
My data.
Definition ElapsedPrecisionTime.h:107
bool readAndSync(Cpl::System::ElapsedTime::Precision_T &dstData, SubscriberApi &observerToSync)
See Cpl::Dm::ModelPointCommon.
Definition ElapsedPrecisionTime.h:89
void detach(Observer &observer) noexcept
Type safe un-register observer.
bool read(Cpl::System::ElapsedTime::Precision_T &dstData, uint16_t *seqNumPtr=0) const noexcept
Type safe read. See Cpl::Dm::ModelPoint.
Definition ElapsedPrecisionTime.h:61
uint16_t write(Cpl::System::ElapsedTime::Precision_T newValue, LockRequest_T lockRequest=eNO_REQUEST) noexcept
Type safe write. See Cpl::Dm::ModelPoint.
Definition ElapsedPrecisionTime.h:67
ElapsedPrecisionTime(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor. Invalid MP.
Definition ElapsedPrecisionTime.h:47
This concrete template class provides the storage for a Point who's data is a null terminated string.
Definition String.h:114
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 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
Data type for time in seconds with a 'fractional' millisecond precision.
Definition ElapsedTime.h:35