GM6000 Digital Heater Controller Branch: main
SDX-1330
String.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_Mp_String_h_
2#define Cpl_Dm_Mp_String_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
16
17
18 ///
19namespace Cpl {
20///
21namespace Dm {
22///
23namespace Mp {
24
25
26/** This mostly concrete class provides the base implementation for a Point
27 who's data is a null terminated string. The concrete child class is
28 responsible for providing the string storage and the attach/detach
29 methods.
30
31 The toJSON()/fromJSON format is:
32 \code
33
34 { name:"<mpname>", type:"<mptypestring>", valid:true|false seqnum:nnnn, locked:true|false, val:{maxLen:<len>,text:"<newvalue>" }
35
36 \endcode
37
38
39 NOTE: All methods in this class ARE thread Safe unless explicitly
40 documented otherwise.
41
42 NOTE: The MP's null terminator for the string storage IS imported/exported.
43 */
45{
46protected:
47 /** Constructor. Invalid MP.
48 */
50 const char* symbolicName,
51 char* myDataPtr,
52 size_t dataSizeInBytesIncludingNullTerminator );
53
54 /// Constructor. Valid MP. Requires an initial value
56 const char* symbolicName,
57 char* myDataPtr,
58 size_t dataSizeInBytesIncludingNullTerminator,
59 const char* initialValue );
60
61
62public:
63 /// Type safe read. See Cpl::Dm::ModelPoint
64 bool read( Cpl::Text::String& dstData, uint16_t* seqNumPtr=0 ) const noexcept;
65
66 /// Type safe read. See Cpl::Dm::ModelPoint
67 bool read( char* dstData, size_t dataSizeInBytesIncludingNullTerminator, uint16_t* seqNumPtr=0 ) const noexcept;
68
69 /// Type safe write of a null terminated string. See Cpl::Dm::ModelPoint
70 inline uint16_t write( const char* srcNullTerminatedString, LockRequest_T lockRequest = eNO_REQUEST ) noexcept
71 {
72 return write( srcNullTerminatedString, strlen( srcNullTerminatedString ), lockRequest );
73 }
74
75 /// Same as write(), except only writes at most 'srcLen' bytes
76 uint16_t write( const char* srcData, size_t dataSizeInBytesIncludingNullTerminator, LockRequest_T lockRequest = eNO_REQUEST ) noexcept;
77
78 /// Returns the maximum size WITHOUT the null terminator of the string storage
79 inline size_t getMaxLength() const noexcept
80 {
81 return m_dataSize - 1;
82 }
83
84 /// Updates the MP with the valid-state/data from 'src'. Note: the src.lock state is NOT copied
85 uint16_t copyFrom( const StringBase_& src, LockRequest_T lockRequest = eNO_REQUEST ) noexcept;
86
87 /// See Cpl::Dm::ModelPoint.
88 const char* getTypeAsText() const noexcept
89 {
90 return "Cpl::Dm::Mp::String";
91 }
92
93public:
94 /// See Cpl::Dm::Point.
95 bool fromJSON_( JsonVariant& src, LockRequest_T lockRequest, uint16_t& retSequenceNumber, Cpl::Text::String* errorMsg ) noexcept;
96
97 /// See Cpl::Dm::Point.
98 bool isDataEqual_( const void* otherData ) const noexcept;
99
100protected:
101 /// See Cpl::Dm::Point.
102 void setJSONVal( JsonDocument& doc ) noexcept;
103};
104
105
106/** This concrete template class provides the storage for a Point
107 who's data is a null terminated string.
108
109 Template Args:
110 S:= Max Size of the String WITHOUT the null terminator!
111 */
112template<int S>
113class String : public StringBase_
114{
115public:
116 /** Constructor. Invalid Point.
117 */
118 String( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName )
119 : StringBase_( myModelBase, symbolicName, m_data, sizeof( m_data ) )
120 {
121 }
122
123 /// Constructor. Valid Point. Requires an initial value
124 String( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName, const char* initialValue )
125 : StringBase_( myModelBase, symbolicName, m_data, sizeof( m_data ), initialValue )
126 {
127 }
128
129public:
130 /// Type safe subscriber
132
133 /// Type safe register observer
134 inline void attach( Observer& observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN ) noexcept
135 {
136 attachSubscriber( observer, initialSeqNumber );
137 }
138
139 /// Type safe un-register observer
140 inline void detach( Observer& observer ) noexcept
141 {
142 detachSubscriber( observer );
143 }
144
145 /** This method is used to read the MP contents and synchronize
146 the observer with the current MP contents. This method should ONLY be
147 used in the notification callback method and the 'observerToSync'
148 argument MUST be the argument provided by the callback method
149
150 Note: The observer will be subscribed for change notifications after
151 this call.
152 */
153 inline bool readAndSync( Cpl::Text::String& dstData, SubscriberApi& observerToSync )
154 {
155 uint16_t seqNum;
156 bool result = read( dstData, &seqNum );
157 attachSubscriber( observerToSync, seqNum );
158 return result;
159 }
160
161 /// Same as readAndSync() above, except using a raw char array
162 inline bool readAndSync( char* dstData, size_t dataSizeInBytesIncludingNullTerminator, SubscriberApi& observerToSync )
163 {
164 uint16_t seqNum;
165 bool result = read( dstData, dataSizeInBytesIncludingNullTerminator, &seqNum );
166 attachSubscriber( observerToSync, seqNum );
167 return result;
168 }
169
170
171protected:
172 /// The MP's raw storage
173 char m_data[S + 1];
174};
175
176
177}; // end namespaces
178};
179};
180#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.
size_t m_dataSize
Size of my data.
Definition ModelPointCommon_.h:230
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 mostly concrete class provides the base implementation for a Point who's data is a null terminat...
Definition String.h:45
size_t getMaxLength() const noexcept
Returns the maximum size WITHOUT the null terminator of the string storage.
Definition String.h:79
uint16_t write(const char *srcData, size_t dataSizeInBytesIncludingNullTerminator, LockRequest_T lockRequest=eNO_REQUEST) noexcept
Same as write(), except only writes at most 'srcLen' bytes.
bool read(Cpl::Text::String &dstData, uint16_t *seqNumPtr=0) const noexcept
Type safe read. See Cpl::Dm::ModelPoint.
bool fromJSON_(JsonVariant &src, LockRequest_T lockRequest, uint16_t &retSequenceNumber, Cpl::Text::String *errorMsg) noexcept
See Cpl::Dm::Point.
const char * getTypeAsText() const noexcept
See Cpl::Dm::ModelPoint.
Definition String.h:88
bool isDataEqual_(const void *otherData) const noexcept
See Cpl::Dm::Point.
uint16_t write(const char *srcNullTerminatedString, LockRequest_T lockRequest=eNO_REQUEST) noexcept
Type safe write of a null terminated string. See Cpl::Dm::ModelPoint.
Definition String.h:70
void setJSONVal(JsonDocument &doc) noexcept
See Cpl::Dm::Point.
uint16_t copyFrom(const StringBase_ &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.
StringBase_(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, char *myDataPtr, size_t dataSizeInBytesIncludingNullTerminator)
Constructor.
StringBase_(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, char *myDataPtr, size_t dataSizeInBytesIncludingNullTerminator, const char *initialValue)
Constructor. Valid MP. Requires an initial value.
This concrete template class provides the storage for a Point who's data is a null terminated string.
Definition String.h:114
String(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor.
Definition String.h:118
char m_data[S+1]
The MP's raw storage.
Definition String.h:173
Cpl::Dm::Subscriber< String > Observer
Type safe subscriber.
Definition String.h:131
bool readAndSync(Cpl::Text::String &dstData, SubscriberApi &observerToSync)
This method is used to read the MP contents and synchronize the observer with the current MP contents...
Definition String.h:153
String(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, const char *initialValue)
Constructor. Valid Point. Requires an initial value.
Definition String.h:124
bool readAndSync(char *dstData, size_t dataSizeInBytesIncludingNullTerminator, SubscriberApi &observerToSync)
Same as readAndSync() above, except using a raw char array.
Definition String.h:162
void attach(Observer &observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN) noexcept
Type safe register observer.
Definition String.h:134
void detach(Observer &observer) noexcept
Type safe un-register observer.
Definition String.h:140
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