GM6000 Digital Heater Controller Branch: main
SDX-1330
BitArray16.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_Mp_BitArray_h_
2#define Cpl_Dm_Mp_BitArray_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/Dm/Mp/Numeric.h"
18#include "Cpl/Text/format.h"
19#include "Cpl/Text/atob.h"
20
21
22///
23namespace Cpl {
24///
25namespace Dm {
26///
27namespace Mp {
28
29
30/** This template class provides a concrete implementation for a Point who's
31 data is a a bit array of N bits. The underlying storage of the bit array is
32 16 bit unsigned integers. A side effect of this storage
33 mechanism the bit ordering in the JSON 'val' string is dependent on the
34 target platform's Endian architecture.
35
36 The toJSON()/fromJSON format is:
37 \code
38
39 { name:"<mpname>", type:"<mptypestring>", valid:true|false, seqnum:nnnn, locked:true|false, val:"<bits>" }
40
41 where <bits> is a string of N digits ('1' or '0') where the left most digit is
42 is the MSb of byte[0] and the right most digit is the LSb of byte[N].
43 Whether byte[0] is the MSB or LSB is dependent on the big/little Endian
44 architecture of the target platform.
45
46 For example a 16bit Array (as binary hex: dataword[0]=0x30, dataword[1]=0x09)
47
48 val:"0011000000001001"
49
50 \endcode
51
52 NOTE: All methods in this class ARE thread Safe unless explicitly
53 documented otherwise.
54
55 */
56class BitArray16 : public BitArray_<uint16_t, BitArray16>
57{
58public:
59 /** Constructor. Invalid MP.
60 */
61 BitArray16( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName )
62 : BitArray_<uint16_t, BitArray16>( myModelBase, symbolicName )
63 {
64 }
65
66 /// Constructor. Valid MP. Requires an initial value
67 BitArray16( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName, uint16_t initialValue )
68 : BitArray_<uint16_t, BitArray16>( myModelBase, symbolicName, initialValue )
69 {
70 }
71
72public:
73 /// Type safe subscriber
75
76
77public:
78 /// See Cpl::Dm::ModelPoint.
79 const char* getTypeAsText() const noexcept
80 {
81 return "Cpl::Dm::Mp::BitArray16";
82 }
83};
84
85
86
87}; // end namespaces
88};
89};
90#endif // end header latch
This file contains a collection of methods that wrap the standard C library functions for converting ...
This concrete class implements a simple Model Database.
Definition ModelDatabase.h:56
This template class provides a concrete implementation for a Point who's data is a a bit array of N b...
Definition BitArray16.h:57
BitArray16(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor.
Definition BitArray16.h:61
const char * getTypeAsText() const noexcept
See Cpl::Dm::ModelPoint.
Definition BitArray16.h:79
BitArray16(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, uint16_t initialValue)
Constructor. Valid MP. Requires an initial value.
Definition BitArray16.h:67
Cpl::Dm::Subscriber< BitArray16 > Observer
Type safe subscriber.
Definition BitArray16.h:74
This template class extends the Numeric<> class to provide bit operation on the numeric value.
Definition Numeric.h:193
This template class defines a type safe Subscriber.
Definition Subscriber.h:82
This file contains some general purpose string formatting functions.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20