GM6000 Digital Heater Controller Branch: main
SDX-1330
Array.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_Mp_Array_h_
2#define Cpl_Dm_Mp_Array_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
19
20/** The number of Elements in the temporary array (that is allocated on the
21 STACK) when parsing the array elements in the fromJSON_() method.
22 */
23#ifndef OPTION_CPL_DM_MP_ARRAY_TEMP_ARRAY_NUM_ELEMENTS
24#define OPTION_CPL_DM_MP_ARRAY_TEMP_ARRAY_NUM_ELEMENTS 8
25#endif
26
27
28 ///
29namespace Cpl {
30///
31namespace Dm {
32///
33namespace Mp {
34
35
36
37/** This a mostly concrete class provides 'common' implementation for a Model
38 Point who's data is a array of elements
39
40 The toJSON()/fromJSON format is:
41 \code
42
43 { name:"<mpname>", type:"<mptypestring>", valid:true|false seqnum:nnnn, locked:true|false, val:{start:<firstIndex>,elems:[<elemN>,<elemN+1>,...]}}" }
44
45 \endcode
46
47 */
49{
50protected:
51 /// Meta data for read/write/copy operations
53 {
54 uint8_t* elemPtr; //!< Pointer to the 1st element in the array to read/write
55 size_t numElements; //!< Number of element to read/write
56 size_t elemIndex; //!< Starting array index
57 };
58
59protected:
60 /// Number of elements in the array
62
63 /// Size, in bytes, of an element
65
66protected:
67 /// Constructor: Invalid MP
69 const char* symbolicName,
70 void* myDataPtr,
71 size_t numElements,
72 size_t elementSize );
73
74
75 /** Constructor. Valid MP. Requires an initial value. If the 'initialValueSrcPtr'
76 pointer is set to zero, then the entire array will be initialized to
77 zero. Note: The array that 'initialValueSrcPtr' points to ' MUST contain
78 at least 'numElements' elements.
79 */
81 const char* symbolicName,
82 void* myDataPtr,
83 size_t numElements,
84 size_t elementSize,
85 void* initialValueSrcPtr );
86
87protected:
88 /** The caller can read a subset of array starting from the specified index
89 in the Model Point's array. Note: if srcIndex + dstNumElements exceeds
90 the size of the MP's data then the read operation will be truncated.
91 */
92 virtual bool readArrayElements( void* dstData, size_t dstNumElements, size_t srcIndex = 0, uint16_t* seqNumPtr = 0 ) const noexcept;
93
94 /** The caller can write a subset of array starting from the specified index
95 in the Model Point's array. Note: if dstIndex + srcNumElements exceeds
96 the size of the MP's data then the write operation will be truncated
97
98 NOTE: The application/caller is responsible for what a 'partial write'
99 means to the integrity of the MP's data. WARNING: Think before
100 doing a partial write! For example, if the MP is in the invalid
101 state and a partial write is done - then the MP's data/array is
102 only partially initialized AND then MP is now in the valid
103 state!
104 */
105 virtual uint16_t writeArrayElements( const void* srcData, size_t srcNumElements, size_t dstIndex = 0, Cpl::Dm::ModelPoint::LockRequest_T lockRequest = Cpl::Dm::ModelPoint::eNO_REQUEST ) noexcept;
106
107 /// Updates the MP with the valid-state/data from 'src'. Note: the src.lock state is NOT copied
108 virtual uint16_t copyArrayFrom( const ArrayBase_& src, Cpl::Dm::ModelPoint::LockRequest_T lockRequest = Cpl::Dm::ModelPoint::eNO_REQUEST ) noexcept;
109
110public:
111 /// Returns the number of element in the array. This method IS thread safe.
112 inline size_t getNumElements() const noexcept
113 {
114 return m_numElements;
115 }
116
117public:
118 /// See Cpl::Dm::ModelPoint
119 void copyDataTo_( void* dstData, size_t dstSize ) const noexcept;
120
121 /// See Cpl::Dm::ModelPoint
122 void copyDataFrom_( const void* srcData, size_t srcSize ) noexcept;
123
124 /// See Cpl::Dm::ModelPoint.
125 bool isDataEqual_( const void* otherData ) const noexcept;
126
127
128 /// See Cpl::Dm::Point.
129 size_t getInternalDataSize_() const noexcept;
130
131 /// See Cpl::Dm::ModelPoint.
132 bool importMetadata_( const void* srcDataStream, size_t& bytesConsumed ) noexcept;
133
134 /// See Cpl::Dm::ModelPoint.
135 bool exportMetadata_( void* dstDataStream, size_t& bytesAdded ) const noexcept;
136};
137
138/** This template class extends the implementation of ArrayBase_ to support
139 the toJSON() and fromJSON_() methods for numeric element types.
140
141 NOTES:
142 1) All methods in this class are NOT thread Safe unless explicitly
143 documented otherwise.
144*/
145template<class ELEMTYPE>
147{
148protected:
149 /// Constructor: Invalid MP
151 const char* symbolicName,
152 ELEMTYPE* myDataPtr,
153 size_t numElements )
154 :ArrayBase_( myModelBase, symbolicName, myDataPtr, numElements, sizeof( ELEMTYPE ) )
155 {
156 }
157
158
159 /** Constructor. Valid MP. Requires an initial value. If the 'srcData'
160 pointer is set to zero, then the entire array will be initialized to
161 zero. Note: 'srcData' MUST contain at least 'numElements' elements.
162 */
164 const char* symbolicName,
165 ELEMTYPE* myDataPtr,
166 size_t numElements,
167 ELEMTYPE* srcData )
168 :ArrayBase_( myModelBase, symbolicName, myDataPtr, numElements, sizeof( ELEMTYPE ), srcData )
169 {
170 }
171
172
173public:
174 /// Type safe read. See Cpl::Dm::ModelPoint
175 inline bool read( ELEMTYPE* dstArrray, size_t dstNumElements, size_t srcIndex = 0, uint16_t* seqNumPtr = 0 ) const noexcept
176 {
177 return ArrayBase_::readArrayElements( dstArrray, dstNumElements, srcIndex, seqNumPtr );
178 }
179
180 /// Type safe write. See Cpl::Dm::ModelPoint
181 inline uint16_t write( const ELEMTYPE* srcArray, size_t srcNumElements, size_t dstIndex = 0, Cpl::Dm::ModelPoint::LockRequest_T lockRequest = Cpl::Dm::ModelPoint::eNO_REQUEST ) noexcept
182 {
183 return ArrayBase_::writeArrayElements( srcArray, srcNumElements, dstIndex, lockRequest );
184 }
185
186public:
187 /** This method is used to read the MP contents and synchronize
188 the observer with the current MP contents. This method should ONLY be
189 used in the notification callback method and the 'observerToSync'
190 argument MUST be the argument provided by the callback method
191
192 Note: The observer will be subscribed for change notifications after
193 this call.
194 */
195 inline bool readAndSync( ELEMTYPE* dstArrray,
196 size_t dstNumElements,
197 SubscriberApi& observerToSync,
198 size_t srcIndex = 0 )
199 {
200 uint16_t seqNum;
201 bool result = read( dstArrray, dstNumElements, srcIndex, &seqNum );
202 ArrayBase_::attachSubscriber( observerToSync, seqNum );
203 return result;
204 }
205
206protected:
207 /// See Cpl::Dm::Point.
208 void setJSONVal( JsonDocument& doc ) noexcept
209 {
210 JsonObject obj = doc.createNestedObject( "val" );
211 obj["start"] = 0;
212 JsonArray arr = obj.createNestedArray( "elems" );
213 ELEMTYPE* elemPtr = (ELEMTYPE*) m_dataPtr;
214 for ( size_t i = 0; i < m_numElements; i++ )
215 {
216 arr.add( elemPtr[i] );
217 }
218 }
219
220public:
221 /// See Cpl::Dm::Point.
222 bool fromJSON_( JsonVariant& src, Cpl::Dm::ModelPoint::LockRequest_T lockRequest, uint16_t& retSequenceNumber, Cpl::Text::String* errorMsg ) noexcept
223 {
224 // Check for object
225 if ( src.is<JsonObject>() == false )
226 {
227 if ( errorMsg )
228 {
229 *errorMsg = "'val' key/value pair is NOT an JSON object";
230 }
231 return false;
232 }
233
234 // Check for embedded array
235 JsonArray elems = src["elems"];
236 if ( elems.isNull() )
237 {
238 if ( errorMsg )
239 {
240 *errorMsg = "'val' key/value pair is missing the embedded 'elems' array";
241 }
242 return false;
243 }
244
245 // Get starting index (note: if not present a default of '0' will be returned)
246 size_t startIdx = src["start"] | 0;
247
248 // Check for exceeding array limits
249 size_t numElements = elems.size();
250 if ( numElements + startIdx > m_numElements )
251 {
252 if ( errorMsg )
253 {
254 errorMsg->format( "Number of array elements ([%lu+%lu)] exceeds the MP's element count (%lu)", startIdx, numElements, m_numElements );
255 }
256 return false;
257 }
258
259 // Update the Model Point in 'M' elements at a time (helps to reduce 'noise' on the MP's sequence number)
260 size_t offset = 0;
261 while ( numElements )
262 {
263 // Attempt to parse the value key/value pair (as a simple numeric)
265 size_t idx;
266 for ( idx = 0; idx < numElements && idx < OPTION_CPL_DM_MP_ARRAY_TEMP_ARRAY_NUM_ELEMENTS; idx++ )
267 {
268 // Is the element syntacticly correct?
269 if ( elems[idx].is<ELEMTYPE>() == false )
270 {
271 if ( errorMsg )
272 {
273 errorMsg->format( "Failed parsing element[%lu]. Content of the MP is suspect!", offset );
274 }
275 return false;
276 }
277 tempArray[idx] = elems[idx + offset].as<ELEMTYPE>();
278 }
279 retSequenceNumber = ArrayBase_::writeArrayElements( tempArray, idx, startIdx + offset, lockRequest );
280 offset += idx;
281 numElements -= idx;
282 }
283
284 return true;
285 }
286};
287
288/** This mostly concrete template class implements an 'numeric Array' Model Point
289 with an element size of N. A child class is still required. The child classes
290 must provide the following:
291
292 getTypeAsText() method and a typedef for child specific 'Observer'
293*/
294template<class ELEMTYPE, int NUMELEMS, class MPTYPE>
295class NumericArray_ : public NumericArrayBase_<ELEMTYPE>
296{
297protected:
298 /// The data store the MP
299 ELEMTYPE m_data[NUMELEMS];
300
301protected:
302 /// Constructor: Invalid MP
304 const char* symbolicName )
305 :NumericArrayBase_<ELEMTYPE>( myModelBase, symbolicName, m_data, NUMELEMS )
306 {
307 }
308
309
310 /** Constructor. Valid MP. Requires an initial value. If the 'srcData'
311 pointer is set to zero, then the entire array will be initialized to
312 zero. Note: 'srcData' MUST contain at least 'numElements' elements.
313 */
315 const char* symbolicName,
316 ELEMTYPE* srcData )
317 :NumericArrayBase_<ELEMTYPE>( myModelBase, symbolicName, m_data, NUMELEMS, srcData )
318 {
319 }
320
321public:
322 /// Updates the MP's data/valid-state from 'src'.
323 inline uint16_t copyFrom( const MPTYPE& src, Cpl::Dm::ModelPoint::LockRequest_T lockRequest = Cpl::Dm::ModelPoint::eNO_REQUEST ) noexcept
324 {
325 return ArrayBase_::copyArrayFrom( src, lockRequest );
326 }
327
328 /// Type safe register observer
329 inline void attach( Cpl::Dm::Subscriber<MPTYPE>& observer, uint16_t initialSeqNumber = Cpl::Dm::ModelPoint::SEQUENCE_NUMBER_UNKNOWN ) noexcept
330 {
331 ArrayBase_::attachSubscriber( observer, initialSeqNumber );
332 }
333
334 /// Type safe un-register observer
335 inline void detach( Cpl::Dm::Subscriber<MPTYPE>& observer ) noexcept
336 {
337 ArrayBase_::detachSubscriber( observer );
338 }
339
340};
341
342//////////////////////////////////////////////////////////////////////////////
343/* The following classes provide concrete numeric Array types for basic types
344 */
345
346/// uint8_t Array
347template <int N>
348class ArrayUint8: public NumericArray_<uint8_t, N, ArrayUint8<N>>
349{
350public:
351 /// Constructor. Invalid Point
352 ArrayUint8( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName )
353 : Mp::NumericArray_<uint8_t, N, ArrayUint8<N>>( myModelBase, symbolicName )
354 {
355 }
356
357 /// Constructor. Valid Point. Requires an initial value. The array size of 'initialValueArray' must match 'N'
358 ArrayUint8( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName, uint8_t initialValueArray[] )
359 : Mp::NumericArray_<uint8_t, N, ArrayUint8<N>>( myModelBase, symbolicName, initialValueArray )
360 {
361 }
362
363 /// See Cpl::Dm::ModelPoint.
364 const char* getTypeAsText() const noexcept
365 {
366 return "Cpl::Dm::Mp::ArrayUint8";
367 }
368
369 /// Type safe subscriber
371};
372
373/// uint32_t Array
374template <int N>
375class ArrayUint32 : public NumericArray_<uint32_t, N, ArrayUint32<N>>
376{
377public:
378 /// Constructor. Invalid Point
379 ArrayUint32( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName )
380 : Mp::NumericArray_<uint32_t, N, ArrayUint32<N>>( myModelBase, symbolicName )
381 {
382 }
383
384 /// Constructor. Valid Point. Requires an initial value. The array size of 'initialValueArray' must match 'N'
385 ArrayUint32( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName, uint32_t initialValueArray[] )
386 : Mp::NumericArray_<uint32_t, N, ArrayUint32<N>>( myModelBase, symbolicName, initialValueArray )
387 {
388 }
389
390 /// See Cpl::Dm::ModelPoint.
391 const char* getTypeAsText() const noexcept
392 {
393 return "Cpl::Dm::Mp::ArrayUint32";
394 }
395
396 /// Type safe subscriber
398};
399
400/// uint64_t Array
401template <int N>
402class ArrayUint64 : public NumericArray_<uint64_t, N, ArrayUint64<N>>
403{
404public:
405 /// Constructor. Invalid Point
406 ArrayUint64( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName )
407 : Mp::NumericArray_<uint64_t, N, ArrayUint64<N>>( myModelBase, symbolicName )
408 {
409 }
410
411 /// Constructor. Valid Point. Requires an initial value. The array size of 'initialValueArray' must match 'N'
412 ArrayUint64( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName, uint64_t initialValueArray[] )
413 : Mp::NumericArray_<uint64_t, N, ArrayUint64<N>>( myModelBase, symbolicName, initialValueArray )
414 {
415 }
416
417 /// See Cpl::Dm::ModelPoint.
418 const char* getTypeAsText() const noexcept
419 {
420 return "Cpl::Dm::Mp::ArrayUint64";
421 }
422
423 /// Type safe subscriber
425};
426
427/// int8_t Array
428template <int N>
429class ArrayInt8 : public NumericArray_<int8_t, N, ArrayInt8<N>>
430{
431public:
432 /// Constructor. Invalid Point
433 ArrayInt8( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName )
434 : Mp::NumericArray_<int8_t, N, ArrayInt8<N>>( myModelBase, symbolicName )
435 {
436 }
437
438 /// Constructor. Valid Point. Requires an initial value. The array size of 'initialValueArray' must match 'N'
439 ArrayInt8( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName, int8_t initialValueArray[] )
440 : Mp::NumericArray_<int8_t, N, ArrayInt8<N>>( myModelBase, symbolicName, initialValueArray )
441 {
442 }
443
444 /// See Cpl::Dm::ModelPoint.
445 const char* getTypeAsText() const noexcept
446 {
447 return "Cpl::Dm::Mp::ArrayInt8";
448 }
449
450 /// Type safe subscriber
452};
453
454/// int32_t Array
455template <int N>
456class ArrayInt32 : public NumericArray_<int32_t, N, ArrayInt32<N>>
457{
458public:
459 /// Constructor. Invalid Point
460 ArrayInt32( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName )
461 : Mp::NumericArray_<int32_t, N, ArrayInt32<N>>( myModelBase, symbolicName )
462 {
463 }
464
465 /// Constructor. Valid Point. Requires an initial value. The array size of 'initialValueArray' must match 'N'
466 ArrayInt32( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName, int32_t initialValueArray[] )
467 : Mp::NumericArray_<int32_t, N, ArrayInt32<N>>( myModelBase, symbolicName, initialValueArray )
468 {
469 }
470
471 /// See Cpl::Dm::ModelPoint.
472 const char* getTypeAsText() const noexcept
473 {
474 return "Cpl::Dm::Mp::ArrayInt32";
475 }
476
477 /// Type safe subscriber
479};
480
481/// int64_t Array
482template <int N>
483class ArrayInt64 : public NumericArray_<int64_t, N, ArrayInt64<N>>
484{
485public:
486 /// Constructor. Invalid Point
487 ArrayInt64( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName )
488 : Mp::NumericArray_<int64_t, N, ArrayInt64<N>>( myModelBase, symbolicName )
489 {
490 }
491
492 /// Constructor. Valid Point. Requires an initial value. The array size of 'initialValueArray' must match 'N'
493 ArrayInt64( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName, int64_t initialValueArray[] )
494 : Mp::NumericArray_<int64_t, N, ArrayInt64<N>>( myModelBase, symbolicName, initialValueArray )
495 {
496 }
497
498 /// See Cpl::Dm::ModelPoint.
499 const char* getTypeAsText() const noexcept
500 {
501 return "Cpl::Dm::Mp::ArrayInt64";
502 }
503
504 /// Type safe subscriber
506};
507
508/// float Array
509template <int N>
510class ArrayFloat : public NumericArray_<float, N, ArrayFloat<N>>
511{
512public:
513 /// Constructor. Invalid Point
514 ArrayFloat( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName )
515 : Mp::NumericArray_<float, N, ArrayFloat<N>>( myModelBase, symbolicName )
516 {
517 }
518
519 /// Constructor. Valid Point. Requires an initial value. The array size of 'initialValueArray' must match 'N'
520 ArrayFloat( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName, float initialValueArray[] )
521 : Mp::NumericArray_<float, N, ArrayFloat<N>>( myModelBase, symbolicName, initialValueArray )
522 {
523 }
524
525 /// See Cpl::Dm::ModelPofloat.
526 const char* getTypeAsText() const noexcept
527 {
528 return "Cpl::Dm::Mp::ArrayFloat";
529 }
530
531 /// Type safe subscriber
533};
534
535/// double Array
536template <int N>
537class ArrayDouble : public NumericArray_<double, N, ArrayDouble<N>>
538{
539public:
540 /// Constructor. Invalid Point
541 ArrayDouble( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName )
542 : Mp::NumericArray_<double, N, ArrayDouble<N>>( myModelBase, symbolicName )
543 {
544 }
545
546 /// Constructor. Valid Point. Requires an initial value. The array size of 'initialValueArray' must match 'N'
547 ArrayDouble( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName, double initialValueArray[] )
548 : Mp::NumericArray_<double, N, ArrayDouble<N>>( myModelBase, symbolicName, initialValueArray )
549 {
550 }
551
552 /// See Cpl::Dm::ModelPodouble.
553 const char* getTypeAsText() const noexcept
554 {
555 return "Cpl::Dm::Mp::ArrayDouble";
556 }
557
558 /// Type safe subscriber
560};
561
562}; // end namespaces
563};
564};
565#endif // end header latch
#define OPTION_CPL_DM_MP_ARRAY_TEMP_ARRAY_NUM_ELEMENTS
The number of Elements in the temporary array (that is allocated on the STACK) when parsing the array...
Definition Array.h:24
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 * m_dataPtr
Reference to my Data.
Definition ModelPointCommon_.h:227
This mostly abstract class defines the interface for a Model Point.
Definition ModelPoint.h:46
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
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.
This a mostly concrete class provides 'common' implementation for a Model Point who's data is a array...
Definition Array.h:49
ArrayBase_(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, void *myDataPtr, size_t numElements, size_t elementSize, void *initialValueSrcPtr)
Constructor.
virtual uint16_t copyArrayFrom(const ArrayBase_ &src, Cpl::Dm::ModelPoint::LockRequest_T lockRequest=Cpl::Dm::ModelPoint::eNO_REQUEST) noexcept
Updates the MP with the valid-state/data from 'src'. Note: the src.lock state is NOT copied.
size_t elemIndex
Starting array index.
Definition Array.h:56
uint8_t * elemPtr
Pointer to the 1st element in the array to read/write.
Definition Array.h:54
size_t getNumElements() const noexcept
Returns the number of element in the array. This method IS thread safe.
Definition Array.h:112
void copyDataTo_(void *dstData, size_t dstSize) const noexcept
See Cpl::Dm::ModelPoint.
size_t m_numElements
Number of elements in the array.
Definition Array.h:61
bool exportMetadata_(void *dstDataStream, size_t &bytesAdded) const noexcept
See Cpl::Dm::ModelPoint.
size_t getInternalDataSize_() const noexcept
See Cpl::Dm::Point.
bool importMetadata_(const void *srcDataStream, size_t &bytesConsumed) noexcept
See Cpl::Dm::ModelPoint.
bool isDataEqual_(const void *otherData) const noexcept
See Cpl::Dm::ModelPoint.
size_t numElements
Number of element to read/write.
Definition Array.h:55
void copyDataFrom_(const void *srcData, size_t srcSize) noexcept
See Cpl::Dm::ModelPoint.
size_t m_elementSize
Size, in bytes, of an element.
Definition Array.h:64
virtual bool readArrayElements(void *dstData, size_t dstNumElements, size_t srcIndex=0, uint16_t *seqNumPtr=0) const noexcept
The caller can read a subset of array starting from the specified index in the Model Point's array.
ArrayBase_(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, void *myDataPtr, size_t numElements, size_t elementSize)
Constructor: Invalid MP.
virtual uint16_t writeArrayElements(const void *srcData, size_t srcNumElements, size_t dstIndex=0, Cpl::Dm::ModelPoint::LockRequest_T lockRequest=Cpl::Dm::ModelPoint::eNO_REQUEST) noexcept
The caller can write a subset of array starting from the specified index in the Model Point's array.
Meta data for read/write/copy operations.
Definition Array.h:53
double Array
Definition Array.h:538
const char * getTypeAsText() const noexcept
See Cpl::Dm::ModelPodouble.
Definition Array.h:553
ArrayDouble(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor. Invalid Point.
Definition Array.h:541
Cpl::Dm::Subscriber< ArrayDouble > Observer
Type safe subscriber.
Definition Array.h:559
ArrayDouble(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, double initialValueArray[])
Constructor. Valid Point. Requires an initial value. The array size of 'initialValueArray' must match...
Definition Array.h:547
float Array
Definition Array.h:511
Cpl::Dm::Subscriber< ArrayFloat > Observer
Type safe subscriber.
Definition Array.h:532
ArrayFloat(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, float initialValueArray[])
Constructor. Valid Point. Requires an initial value. The array size of 'initialValueArray' must match...
Definition Array.h:520
const char * getTypeAsText() const noexcept
See Cpl::Dm::ModelPofloat.
Definition Array.h:526
ArrayFloat(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor. Invalid Point.
Definition Array.h:514
int32_t Array
Definition Array.h:457
ArrayInt32(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor. Invalid Point.
Definition Array.h:460
const char * getTypeAsText() const noexcept
See Cpl::Dm::ModelPoint.
Definition Array.h:472
Cpl::Dm::Subscriber< ArrayInt32 > Observer
Type safe subscriber.
Definition Array.h:478
ArrayInt32(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, int32_t initialValueArray[])
Constructor. Valid Point. Requires an initial value. The array size of 'initialValueArray' must match...
Definition Array.h:466
int64_t Array
Definition Array.h:484
ArrayInt64(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor. Invalid Point.
Definition Array.h:487
ArrayInt64(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, int64_t initialValueArray[])
Constructor. Valid Point. Requires an initial value. The array size of 'initialValueArray' must match...
Definition Array.h:493
Cpl::Dm::Subscriber< ArrayInt64 > Observer
Type safe subscriber.
Definition Array.h:505
const char * getTypeAsText() const noexcept
See Cpl::Dm::ModelPoint.
Definition Array.h:499
int8_t Array
Definition Array.h:430
Cpl::Dm::Subscriber< ArrayInt8 > Observer
Type safe subscriber.
Definition Array.h:451
const char * getTypeAsText() const noexcept
See Cpl::Dm::ModelPoint.
Definition Array.h:445
ArrayInt8(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor. Invalid Point.
Definition Array.h:433
ArrayInt8(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, int8_t initialValueArray[])
Constructor. Valid Point. Requires an initial value. The array size of 'initialValueArray' must match...
Definition Array.h:439
uint32_t Array
Definition Array.h:376
ArrayUint32(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor. Invalid Point.
Definition Array.h:379
ArrayUint32(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, uint32_t initialValueArray[])
Constructor. Valid Point. Requires an initial value. The array size of 'initialValueArray' must match...
Definition Array.h:385
const char * getTypeAsText() const noexcept
See Cpl::Dm::ModelPoint.
Definition Array.h:391
Cpl::Dm::Subscriber< ArrayUint32 > Observer
Type safe subscriber.
Definition Array.h:397
uint64_t Array
Definition Array.h:403
Cpl::Dm::Subscriber< ArrayUint64 > Observer
Type safe subscriber.
Definition Array.h:424
const char * getTypeAsText() const noexcept
See Cpl::Dm::ModelPoint.
Definition Array.h:418
ArrayUint64(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, uint64_t initialValueArray[])
Constructor. Valid Point. Requires an initial value. The array size of 'initialValueArray' must match...
Definition Array.h:412
ArrayUint64(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor. Invalid Point.
Definition Array.h:406
uint8_t Array
Definition Array.h:349
const char * getTypeAsText() const noexcept
See Cpl::Dm::ModelPoint.
Definition Array.h:364
Cpl::Dm::Subscriber< ArrayUint8 > Observer
Type safe subscriber.
Definition Array.h:370
ArrayUint8(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, uint8_t initialValueArray[])
Constructor. Valid Point. Requires an initial value. The array size of 'initialValueArray' must match...
Definition Array.h:358
ArrayUint8(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor. Invalid Point.
Definition Array.h:352
This mostly concrete template class implements an 'numeric Array' Model Point with an element size of...
Definition Array.h:296
NumericArray_(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor: Invalid MP.
Definition Array.h:303
NumericArray_(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, ELEMTYPE *srcData)
Constructor.
Definition Array.h:314
void detach(Cpl::Dm::Subscriber< MPTYPE > &observer) noexcept
Type safe un-register observer.
Definition Array.h:335
void attach(Cpl::Dm::Subscriber< MPTYPE > &observer, uint16_t initialSeqNumber=Cpl::Dm::ModelPoint::SEQUENCE_NUMBER_UNKNOWN) noexcept
Type safe register observer.
Definition Array.h:329
uint16_t copyFrom(const MPTYPE &src, Cpl::Dm::ModelPoint::LockRequest_T lockRequest=Cpl::Dm::ModelPoint::eNO_REQUEST) noexcept
Updates the MP's data/valid-state from 'src'.
Definition Array.h:323
This template class extends the implementation of ArrayBase_ to support the toJSON() and fromJSON_() ...
Definition Array.h:147
bool read(ELEMTYPE *dstArrray, size_t dstNumElements, size_t srcIndex=0, uint16_t *seqNumPtr=0) const noexcept
Type safe read. See Cpl::Dm::ModelPoint.
Definition Array.h:175
void setJSONVal(JsonDocument &doc) noexcept
See Cpl::Dm::Point.
Definition Array.h:208
NumericArrayBase_(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, ELEMTYPE *myDataPtr, size_t numElements)
Constructor: Invalid MP.
Definition Array.h:150
bool fromJSON_(JsonVariant &src, Cpl::Dm::ModelPoint::LockRequest_T lockRequest, uint16_t &retSequenceNumber, Cpl::Text::String *errorMsg) noexcept
See Cpl::Dm::Point.
Definition Array.h:222
bool readAndSync(ELEMTYPE *dstArrray, size_t dstNumElements, SubscriberApi &observerToSync, size_t srcIndex=0)
This method is used to read the MP contents and synchronize the observer with the current MP contents...
Definition Array.h:195
NumericArrayBase_(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, ELEMTYPE *myDataPtr, size_t numElements, ELEMTYPE *srcData)
Constructor.
Definition Array.h:163
uint16_t write(const ELEMTYPE *srcArray, size_t srcNumElements, size_t dstIndex=0, Cpl::Dm::ModelPoint::LockRequest_T lockRequest=Cpl::Dm::ModelPoint::eNO_REQUEST) noexcept
Type safe write. See Cpl::Dm::ModelPoint.
Definition Array.h:181
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