GM6000 Digital Heater Controller Branch: main
SDX-1330
ModelPoint.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_Model_Point_h_
2#define Cpl_Dm_Model_Point_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
16#include "colony_config.h"
17#include "Cpl/Container/Item.h"
18#include "Cpl/Text/String.h"
20#include "Cpl/Json/Arduino.h"
21#include <stddef.h>
22#include <stdint.h>
23
24
25 ///
26namespace Cpl {
27///
28namespace Dm {
29
30
31/** This mostly abstract class defines the interface for a Model Point. A
32 Model Point contains an instance of a Point's data and is responsible for
33 managing thread safe access to the 'Point'. The intent of a Model point is
34 that it is the Application's canonical source for a 'Point'
35
36 NOTES:
37 1) The concrete leaf classes are responsible for ensuring type
38 safety.
39 2) All methods are atomic, i.e. a protected by the Model Base's mutex.
40 This means that all methods will block if there is a call in-progress
41 to ANY Model Point in a given Model Data Base.
42 3) All methods in this class ARE thread Safe unless explicitly
43 documented otherwise.
44 */
46{
47public:
48 /// Options related to the Model Point's locked state
50 {
51 eNO_REQUEST, //!< No change in the MP's lock state is requested
52 eLOCK, //!< Request to lock the MP. If the MP is already lock - the request is ignored and the update operation silent fails
53 eUNLOCK, //!< Request to unlock the MP. If the MP is already unlocked - the request is ignored and the update operation is completed
54 };
55
56
57public:
58 /** Magic value to use when registering for a change notification and
59 application does not 'know' the current sequence number value of the
60 Model Point.
61 */
62 static const uint16_t SEQUENCE_NUMBER_UNKNOWN;
63
64
65public:
66 /** This method returns the Model Point's name as a null terminated string.
67
68 Note: Model Point names are assumed to be unique. However, it is
69 responsibility of the Application to enforce this constraint. If
70 names are not unique then the look-up by Model Point name
71 functionality will fail. No other functionality depends on have
72 unique names.
73 */
74 virtual const char* getName() const noexcept = 0;
75
76 /** This method returns the Model Point's current sequence number.
77 */
78 virtual uint16_t getSequenceNumber() const noexcept = 0;
79
80 /** This method does NOT alter the MP's data or state, but unconditionally
81 triggers the MP change notification(s). The method returns the Model
82 Point's sequence number after the method completes.
83 */
84 virtual uint16_t touch() noexcept = 0;
85
86 /** This method returns the RAM size, in bytes, of the Model Point's data.
87 */
88 virtual size_t getSize() const noexcept = 0;
89
90
91public:
92 /** This method returns true when the MP data is invalid. The method
93 optionally returns the Point's sequence number via the argument
94 'seqNumPtr'.
95 */
96 virtual bool isNotValid( uint16_t* seqNumPtr=0 ) const noexcept = 0;
97
98 /** This method is used to mark the element's data as invalid.
99
100 The method returns the Model Point's sequence number after updating
101 the valid state.
102
103 Notes:
104 1) Any write operation will set the Model Point's state to valid.
105 2) Change Notification(s) will ONLY be triggered when there is valid to
106 invalid state transition (i.e. if the Model Point is already in
107 the invalid state - no change notification will be triggered).
108 3) If the Model Point is locked then the invalidate operation...
109 a) If lockRequest == eNO_REQUEST, the operation silently fails, i.e.
110 nothing is done. OR
111 b) If lockRequest != eNO_REQUEST, the operation is performed and the
112 the new lock state is applied
113 */
114 virtual uint16_t setInvalid( LockRequest_T lockRequest = eNO_REQUEST ) noexcept = 0;
115
116public:
117 /** This method converts the Model Point's data to JSON string and
118 copies the resultant string into 'dst'. If the Model Point's data
119 cannot be represented as a JSON object then the contents of 'dst' is
120 set to an empty string and the method returns false; else the method
121 returns true. The format of the string is specific to the concrete leaf class.
122 However, it is strongly recommended that the output of this method be
123 the same format that is expected for the fromJSON() method.
124
125 NOTE: If the converted string is larger than the memory allocated by
126 'dst' then the string result in 'dst' will be truncated. The
127 caller is required to check 'truncated' flag for the truncated
128 scenario.
129
130
131 The general output format:
132 \code
133
134 { name:"<mpname>", type:"<mptypestring>", valid:true|false, seqnum:nnnn, locked:true|false, val:<value> }
135
136 Notes:
137 - The MP is in the valid state if/when the 'valid' value is true
138 - The 'val' key/value pair is omitted if the MP is in the invalid state
139 - The 'val' key/value pair can be a single element, an object, or
140 array. etc. -- it is specific to the concrete MP type/class.
141
142
143 \endcode
144 */
145 virtual bool toJSON( char* dst,
146 size_t dstSize,
147 bool& truncated,
148 bool verbose = true,
149 bool pretty = false ) noexcept = 0;
150
151
152 /** This method returns a string identifier for the Model Point's data type.
153 This value IS GUARANTEED to be unique (within an Application). The
154 format of the string is the Model Point's fully qualified namespace and
155 class type as a string. For example, the for Cpl::Dm::Mp::Uint32 Model
156 Point the function would return "Cpl::Dm::Mp::Uint32"
157
158 Note: The type string can contain additional information, but adding
159 a '-' character followed by the extra info. For example:
160 "Cpl::Dm::Mp::Uint32-hex"
161 */
162 virtual const char* getTypeAsText() const noexcept = 0;
163
164public:
165 /** This method returns true if the Model Point is in the locked state.
166 In the locked state - ALL WRITE/UPDATE OPERATIONS (except for changing
167 the locked state) are silently ignored/dropped.
168 */
169 virtual bool isLocked() const noexcept = 0;
170
171 /** This updates the lock state of the Model Point. Model Points support
172 the concept of a client 'locking' the MP's data value. When a MP's
173 data has been locked - any attempted writes/updated operation to the
174 MP will SILENTLY fail. The Application uses the 'eUNLOCK' lock request
175 to remove the locked state from the MP's data.
176
177 This method never triggers change notification(s).
178
179 The method returns the MP's sequence number at the time of when then
180 lock request was applied.
181 */
182 virtual uint16_t setLockState( LockRequest_T lockRequest ) noexcept = 0;
183
184 /// Short hand for unconditionally removing the lock from the MP
185 inline uint16_t removeLock() noexcept { return setLockState( eUNLOCK ); }
186
187 /// Short hand for putting the MP into the locked state
188 inline uint16_t applyLock() noexcept { return setLockState( eLOCK ); }
189
190
191public:
192 /** This method is used to export the Model Point's instance data content
193 to a raw data stream. It is the responsibility of the caller to ensure
194 that there is sufficient memory available for the data being exported.
195 The method returns the number of bytes exported.
196
197 When the 'includeLockedState' argument is set to true, the method
198 export's the MP's locked state (in addition to the MP's value and
199 valid state).
200
201 If the number of returns bytes equals zero then the export operation
202 encountered an error.
203
204 The method optionally return the Model Point's sequence number at the
205 time of the export.
206 */
207 virtual size_t exportData( void* dstDataStream,
208 size_t maxDstLength,
209 uint16_t* retSequenceNumber=0,
210 bool includeLockedState = false ) const noexcept = 0;
211
212 /** This method is used to populate the Model Point's data content from the
213 a raw data stream/pointer. It is the responsibility of the caller to
214 ensure that the data stream is appropriate for element type and that
215 the data stream content was originally created by the corresponding
216 export() method. The method returns the number of bytes consumed from
217 the data stream.
218
219 When the 'includeLockedState' argument is set to true, the method
220 imports's the MP's locked state (in addition to the MP's value and
221 valid state).
222
223 If the number of returns bytes equals zero then the import operation
224 encountered an error.
225
226 The method optionally return the Model Point's sequence number once the
227 import has completed.
228
229 The method ALWAYS triggers a change notification(s) for the Model Point
230 */
231 virtual size_t importData( const void* srcDataStream,
232 size_t srcLength,
233 uint16_t* retSequenceNumber=0,
234 bool includeLockedState = false ) noexcept = 0;
235
236 /** Returns the size, in bytes, of the element's data content.
237
238 When 'includeLockedState is set to true, the 'externalSize' includes
239 space for the MP's locked state; else the returned size only includes
240 space for the MP's value and valid state..
241
242 NOTE: The size returned is the size of the Point data WHEN it
243 is being exported/imported - this is NOT the value of
244 the size of the Point's internal storage use for the
245 data content.
246 */
247 virtual size_t getExternalSize( bool includeLockedState = false ) const = 0;
248
249
250public:
251 /** This method is used to subscribe to on-change notification in a GENERIC
252 manner. This means the on-change callback notification WILL NOT be type
253 specific. USE WITH CAUTION - using type specific callbacks is the
254 preferred usage.
255
256 See the attach() method below for additional details of subscribing
257 */
258 virtual void genericAttach( SubscriberApi& observer,
259 uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN ) noexcept = 0;
260
261 /** This is method is used to detach a GENERIC Subscriber from a Model Point.
262
263 See the detach() method below for additional details of subscribing
264 */
265 virtual void genericDetach( SubscriberApi& observer ) noexcept = 0;
266
267
268protected:
269 /** This method copies the Model Point's content to the caller's Point
270 instance. The method returns the Model Point's valid state. The
271 MP's sequence number is optionally return if 'seqNumPtr' is set to
272 a non-zero value.
273
274 If the method returns false then the MP's the data is invalid and the
275 contents of 'dst' is meaningless.
276
277 Notes:
278 1) The assumption is that Model Point's internal data and 'dstData' are
279 of the same type.
280 2) The data size of the 'dstSize' is ALWAYS honored when coping the
281 data from the Model Point
282 3) The Model Point's sequence number is not changed.
283 */
284 virtual bool readData( void* dstData, size_t dstSize, uint16_t* seqNumPtr=0 ) const noexcept = 0;
285
286 /** This method writes the caller Point instance to the Model Point's
287 internal data. The method returns the Model Point's sequence number
288 after the method completes.
289
290 Model Point supports the concept of a client 'locking' the MP's data
291 value. When a MP's data has been locked - all attempted writes to the
292 MP - with lockRequest == eNO_REQUEST - will SILENTLY fail. The
293 Application uses the removeLock() method or the 'eUNLOCK' lock request
294 to remove the locked state from the MP's data. The application can
295 also updated the value of MP when it is locked state by setting
296 lockRequest == eLOCK.
297
298 Notes:
299 1) The assumption is that Model Point's internal data and 'srcData' are
300 of the same type.
301 2) The data size of the Model Points data instance is ALWAYS honored
302 when coping the data from 'srcData'
303 */
304 virtual uint16_t writeData( const void* srcData,
305 size_t srcSize,
306 LockRequest_T lockRequest = eNO_REQUEST ) noexcept = 0;
307
308
309protected:
310 /** This method is used to attach a subscriber to a Model Point. Once
311 attached the Subscriber will receive a change notification (aka a
312 callback) every time the Model Point's data/state changes. Once, a
313 Subscriber is attached - it will stay attached to the application
314 calls detach().
315
316 There is no limit to the number of Subscribers that can attach to
317 a Model Point.
318
319 The attach() method can be called even if the Subscriber is already
320 attached. When this happens, the attach process is 'restarted', i.e.
321 the 'initialSeqNumber' is used for the Subscriber's sequence number.
322
323 The change-detect mechanism uses a sequence number. Each Model Point
324 and each Subscriber has sequence number. When the Subscriber's sequence
325 number does not equals the Model Point's sequence number - the Subscriber
326 receives a change notification and the Subscriber's sequence number is
327 updated to match the Model Point's sequence number at the time of
328 change notification. When a Subscriber attaches to Model Point with
329 an the 'seqNumber' argument set to SEQUENCE_NUMBER_UNKNOWN, the
330 Subscriber will get an 'immediate' change notification.
331
332 The callbacks for the Change Notifications are called as part of the
333 Data Model's Mailbox server. As part of the asynchronous processing (timers,
334 ITC, EventFlags, etc.) of the Data Model Mailbox server will also process
335 all pending Change Notification and invoke the call backs. What does
336 that all mean? The Change notifications are "local" to the Subscriber's
337 thread very similar to how the Cpl::Timers work. It also means that
338 no change notification callback will be called till the Mailbox server
339 loops back to the "top" of its forever loop.
340
341 NOTE: The Change Notification mechanism does NOT guarantee that a
342 client will receive a notification for EVERY change to a Model
343 Point (i.e. 'fast edges' could/will be missed). What is guaranteed
344 is that once a Model Point's value has 'settle' all registered
345 subscribers will have received change notification for the Model
346 Point's current value.
347 */
348 virtual void attachSubscriber( SubscriberApi& observer,
349 uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN ) noexcept = 0;
350
351 /** This method is used to detach a Subscriber from a Model Point. See the
352 attach() method for more details about the Subscription/Change
353 Notification mechanism.
354
355 The detach() method can be called even if the Subscriber is NOT
356 currently attached. The detach() method can be called within the
357 Change Notification callback.
358 */
359 virtual void detachSubscriber( SubscriberApi& observer ) noexcept = 0;
360
361
362public:
363 /// Subscriber events
365 {
366 eATTACH, //!< The Application is requesting to subscribe to a model point
367 eDETACH, //!< The Application is requesting to un-subscribe from the model point
368 eDATA_CHANGED, //!< The model point's data/state has change a pending change notification is needed
369 eNOTIFYING, //!< The subscriber's change notification callback is being called
370 eNOTIFY_COMPLETE //!< The subscriber's change notification callback has been completed
371 };
372
373 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
374 by other classes in the Cpl::Dm namespace. The Application should
375 NEVER call this method.
376
377 This method is used by Model Point to process events related to the
378 subscription/change-notification process
379
380 This method is Thread Safe
381 */
382 virtual void processSubscriptionEvent_( SubscriberApi& subscriber,
383 Event_T event ) noexcept =0;
384
385
386public:
387 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
388 by other classes in the Cpl::Dm namespace. The Application should
389 NEVER call this method.
390
391 This method is used to unconditionally update the Model Point's data.
392
393 This method is NOT Thread Safe.
394
395 Notes:
396 1) The assumption is that Model Point Data instance and 'src' are the
397 of the same type.
398 2) The internal data size of the Model Point instance is ALWAYS honored
399 when coping the data from 'src'
400 3) The Model Point's sequence number is not changed.
401 */
402 virtual void copyDataFrom_( const void* srcData, size_t srcSize ) noexcept = 0;
403
404
405 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
406 by other classes in the Cpl::Dm namespace. The Application should
407 NEVER call this method.
408
409 This method is used update's the caller's 'Point Data' with the Model
410 Point's data.
411
412 This method is NOT Thread Safe.
413
414 Notes:
415 1) The assumption is that Model Point Data instance and 'dst' are the
416 of the same type.
417 2) The 'dstSize' of the destination ALWAYS honored when coping the
418 Model Point's data to 'dst'
419 3) The Model Point's sequence number is not changed.
420 */
421 virtual void copyDataTo_( void* dstData, size_t dstSize ) const noexcept = 0;
422
423 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
424 by other classes in the Cpl::Dm namespace. The Application should
425 NEVER call this method.
426
427 This method is NOT Thread Safe.
428
429 This method compares the Model Point's data to the data of 'other' Model
430 Point and returns true if the data of both points are the same. It is
431 assumed that Model Point instance and 'other' are the of the same leaf
432 class type.
433 */
434 virtual bool isDataEqual_( const void* otherData ) const noexcept = 0;
435
436 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
437 by other classes in the Cpl::Dm namespace. The Application should
438 NEVER call this method.
439
440 This method is NOT Thread Safe.
441
442 This method returns a pointer to the Model Point's data for Import/Export
443 operations. BE VERY CAREFULL on how the pointer is used!
444 */
445 virtual const void* getImportExportDataPointer_() const noexcept = 0;
446
447 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
448 by other classes in the Cpl::Dm namespace. The Application should
449 NEVER call this method.
450
451 This method is NOT Thread Safe.
452
453 This method returns the "internal size" of the Model Point's data point.
454 This length (when applicable) INCLUDES ANY 'META/EXTRA' DATA that is
455 NOT the valid/locked meta-data - but is used with the internal
456 import()/export() methods.
457 */
458 virtual size_t getInternalDataSize_() const noexcept = 0;
459
460 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
461 by other classes in the Cpl::Dm namespace. The Application should
462 NEVER call this method.
463
464 This method is NOT Thread Safe.
465
466 This method is used to export meta data when exporting a model
467 point. If there is error in exporting the metadata false is returned;
468 else true is returned.
469
470 A default implementation is provided that always returns true, i.e. for
471 model points that do not have metadata.
472
473 NOTE: The overall size of the destination has been validated with respect
474 holding both the Model Point's metadata and the data - so the
475 no 'dstLength' argument is passed/provided.
476 */
477 virtual bool exportMetadata_( void* dstDataStream, size_t& bytesAdded ) const noexcept { bytesAdded = 0; return true; }
478
479 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
480 by other classes in the Cpl::Dm namespace. The Application should
481 NEVER call this method.
482
483 This method is NOT Thread Safe.
484
485 This method is used to import meta data when importing a model
486 point. If the incoming meta data is 'not-valid/not-compatible' then
487 false is returned and the import operation will fail; else true is
488 returned.
489
490 A default implementation is provided that always returns true, i.e. for
491 model points that do not have metadata
492
493 NOTE: The overall size of the source has been validated with respect
494 containing both the Model Point's metadata and the data - so the
495 no 'srcLength' argument is passed/provided.
496 */
497 virtual bool importMetadata_( const void* srcDataStream, size_t& bytesConsumed ) noexcept { bytesConsumed = 0; return true; }
498
499
500 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
501 by other classes in the Cpl::Dm namespace. The Application should
502 NEVER call this method.
503
504 This method attempts to convert JSON object 'src' to its binary format
505 and copies the result to the Model Point's internal data. The expected
506 format of the JSON string is specific to the concrete leaf class.
507
508 See Cpl::Dm::ModelDatabaseApi::fromJSON() method for JSON format.
509 */
510 virtual bool fromJSON_( JsonVariant& src,
511 LockRequest_T lockRequest,
512 uint16_t& retSequenceNumber,
513 Cpl::Text::String* errorMsg ) noexcept = 0;
514
515
516protected:
517 /** This method converts the MP data to a JSON key/value pair. The key
518 must be 'val' This method is only called when the MP data is valid
519 */
520 virtual void setJSONVal( JsonDocument& doc ) noexcept = 0;
521
522
523public:
524 /// Virtual destructor to make the compiler happy
525 virtual ~ModelPoint() {}
526};
527
528
529
530}; // end namespaces
531};
532#endif // end header latch
This class is used by the Container classes to implement a various types of singly linked containers.
Definition Item.h:33
This mostly abstract class defines the interface for a Model Point.
Definition ModelPoint.h:46
virtual uint16_t setInvalid(LockRequest_T lockRequest=eNO_REQUEST) noexcept=0
This method is used to mark the element's data as invalid.
virtual bool isDataEqual_(const void *otherData) const noexcept=0
This method has PACKAGE Scope, i.e.
virtual bool isLocked() const noexcept=0
This method returns true if the Model Point is in the locked state.
virtual bool isNotValid(uint16_t *seqNumPtr=0) const noexcept=0
This method returns true when the MP data is invalid.
virtual void genericDetach(SubscriberApi &observer) noexcept=0
This is method is used to detach a GENERIC Subscriber from a Model Point.
LockRequest_T
Options related to the Model Point's locked state.
Definition ModelPoint.h:50
@ eUNLOCK
Request to unlock the MP.
Definition ModelPoint.h:53
@ eNO_REQUEST
No change in the MP's lock state is requested.
Definition ModelPoint.h:51
@ eLOCK
Request to lock the MP.
Definition ModelPoint.h:52
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
virtual bool toJSON(char *dst, size_t dstSize, bool &truncated, bool verbose=true, bool pretty=false) noexcept=0
This method converts the Model Point's data to JSON string and copies the resultant string into 'dst'...
virtual uint16_t touch() noexcept=0
This method does NOT alter the MP's data or state, but unconditionally triggers the MP change notific...
virtual void setJSONVal(JsonDocument &doc) noexcept=0
This method converts the MP data to a JSON key/value pair.
virtual void detachSubscriber(SubscriberApi &observer) noexcept=0
This method is used to detach a Subscriber from a Model Point.
virtual uint16_t getSequenceNumber() const noexcept=0
This method returns the Model Point's current sequence number.
virtual void processSubscriptionEvent_(SubscriberApi &subscriber, Event_T event) noexcept=0
This method has PACKAGE Scope, i.e.
virtual bool exportMetadata_(void *dstDataStream, size_t &bytesAdded) const noexcept
This method has PACKAGE Scope, i.e.
Definition ModelPoint.h:477
virtual void copyDataTo_(void *dstData, size_t dstSize) const noexcept=0
This method has PACKAGE Scope, i.e.
virtual size_t importData(const void *srcDataStream, size_t srcLength, uint16_t *retSequenceNumber=0, bool includeLockedState=false) noexcept=0
This method is used to populate the Model Point's data content from the a raw data stream/pointer.
uint16_t removeLock() noexcept
Short hand for unconditionally removing the lock from the MP.
Definition ModelPoint.h:185
virtual const void * getImportExportDataPointer_() const noexcept=0
This method has PACKAGE Scope, i.e.
virtual uint16_t writeData(const void *srcData, size_t srcSize, LockRequest_T lockRequest=eNO_REQUEST) noexcept=0
This method writes the caller Point instance to the Model Point's internal data.
virtual ~ModelPoint()
Virtual destructor to make the compiler happy.
Definition ModelPoint.h:525
virtual void attachSubscriber(SubscriberApi &observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN) noexcept=0
This method is used to attach a subscriber to a Model Point.
virtual size_t getExternalSize(bool includeLockedState=false) const =0
Returns the size, in bytes, of the element's data content.
virtual const char * getTypeAsText() const noexcept=0
This method returns a string identifier for the Model Point's data type.
virtual bool importMetadata_(const void *srcDataStream, size_t &bytesConsumed) noexcept
This method has PACKAGE Scope, i.e.
Definition ModelPoint.h:497
virtual void genericAttach(SubscriberApi &observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN) noexcept=0
This method is used to subscribe to on-change notification in a GENERIC manner.
virtual size_t exportData(void *dstDataStream, size_t maxDstLength, uint16_t *retSequenceNumber=0, bool includeLockedState=false) const noexcept=0
This method is used to export the Model Point's instance data content to a raw data stream.
virtual bool readData(void *dstData, size_t dstSize, uint16_t *seqNumPtr=0) const noexcept=0
This method copies the Model Point's content to the caller's Point instance.
virtual size_t getSize() const noexcept=0
This method returns the RAM size, in bytes, of the Model Point's data.
virtual bool fromJSON_(JsonVariant &src, LockRequest_T lockRequest, uint16_t &retSequenceNumber, Cpl::Text::String *errorMsg) noexcept=0
This method has PACKAGE Scope, i.e.
virtual void copyDataFrom_(const void *srcData, size_t srcSize) noexcept=0
This method has PACKAGE Scope, i.e.
virtual size_t getInternalDataSize_() const noexcept=0
This method has PACKAGE Scope, i.e.
virtual const char * getName() const noexcept=0
This method returns the Model Point's name as a null terminated string.
uint16_t applyLock() noexcept
Short hand for putting the MP into the locked state.
Definition ModelPoint.h:188
virtual uint16_t setLockState(LockRequest_T lockRequest) noexcept=0
This updates the lock state of the Model Point.
Event_T
Subscriber events.
Definition ModelPoint.h:365
@ eDATA_CHANGED
The model point's data/state has change a pending change notification is needed.
Definition ModelPoint.h:368
@ eATTACH
The Application is requesting to subscribe to a model point.
Definition ModelPoint.h:366
@ eNOTIFYING
The subscriber's change notification callback is being called.
Definition ModelPoint.h:369
@ eNOTIFY_COMPLETE
The subscriber's change notification callback has been completed.
Definition ModelPoint.h:370
@ eDETACH
The Application is requesting to un-subscribe from the model point.
Definition ModelPoint.h:367
This abstract class defines the Subscriber interface - for change notifications - to a Model Points d...
Definition SubscriberApi.h:34
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