1#ifndef Cpl_Dm_Mp_Numeric_h_
2#define Cpl_Dm_Mp_Numeric_h_
26#if INTPTR_MAX == INT32_MAX
28#define PRINTF_SIZET_FMT "%lx"
30#define PRINTF_SIZET_TYPE unsigned long
32#elif INTPTR_MAX == INT64_MAX
34#define PRINTF_SIZET_FMT "%llx"
36#define PRINTF_SIZET_TYPE unsigned long long
38#error "Environment not 32 or 64-bit."
42#ifndef OPTION_CPL_DM_MP_BITARRAY_IS_LITTLE_ENDIAN
43#define OPTION_CPL_DM_MP_BITARRAY_IS_LITTLE_ENDIAN true
62template<
class ELEMTYPE,
class MPTYPE>
85 inline bool read( ELEMTYPE& dstData, uint16_t* seqNumPtr = 0 ) const noexcept
100 uint16_t result =
write(
m_data + incSize, lockRequest );
109 uint16_t result =
write(
m_data - decSize, lockRequest );
149 if ( src.is<ELEMTYPE>() )
151 retSequenceNumber =
write( src.as<ELEMTYPE>(), lockRequest );
156 *errorMsg =
"Invalid syntax for the 'val' key/value pair";
191template <
class WORDSIZE,
class MPTYPE>
197 :
Numeric<WORDSIZE, MPTYPE>( myModelBase, symbolicName )
203 :
Numeric<WORDSIZE, MPTYPE>( myModelBase, symbolicName, initialValue )
281 if ( src.is<
const char*>() )
283 const char* val = src.as<
const char*>();
294 *errorMsg =
"Invalid syntax for the 'val' key/value pair";
308template <
class MPTYPE>
314 :
Numeric<size_t, MPTYPE>( myModelBase, symbolicName )
320 :
Numeric<size_t, MPTYPE>( myModelBase, symbolicName, (size_t) initialValue )
336 if ( src.is<
const char*>() )
338 const char* val = src.as<
const char*>();
339 unsigned long long value = 0;
349 *errorMsg =
"Invalid syntax for the 'val' key/value pair";
#define PRINTF_SIZET_FMT
Hack to get around that NOT all compilers support the "%llx" notation for printf.
Definition Numeric.h:28
#define PRINTF_SIZET_TYPE
type for max integer
Definition Numeric.h:30
#define OPTION_CPL_DM_MP_BITARRAY_IS_LITTLE_ENDIAN
Endianess of a Bit array. For little endian set to true; else set to false.
Definition Numeric.h:43
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
void lock_() noexcept
This method has 'PACKAGE Scope' in that is should only be called by other classes in the Cpl::Dm name...
void unlock_() noexcept
This method has 'PACKAGE Scope' in that is should only be called by other classes in the Cpl::Dm name...
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.
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
ModelDatabase & m_modelDatabase
Reference to the containing Model Base.
Definition ModelPointCommon_.h:224
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 template class extends the Numeric<> class to provide bit operation on the numeric value.
Definition Numeric.h:193
bool fromJSON_(JsonVariant &src, Cpl::Dm::ModelPoint::LockRequest_T lockRequest, uint16_t &retSequenceNumber, Cpl::Text::String *errorMsg) noexcept
See Cpl::Dm::Point.
Definition Numeric.h:279
uint16_t setBit(uint8_t bitPosition, Cpl::Dm::ModelPoint::LockRequest_T lockRequest=Cpl::Dm::ModelPoint::eNO_REQUEST) noexcept
Atomic operation to set the zero indexed bit to a 1.
Definition Numeric.h:209
uint16_t flipBit(uint8_t bitPosition, Cpl::Dm::ModelPoint::LockRequest_T lockRequest=Cpl::Dm::ModelPoint::eNO_REQUEST) noexcept
Atomic operation to toggle the zero indexed bit.
Definition Numeric.h:227
uint16_t clearBitsByMask(uint16_t bitMask, Cpl::Dm::ModelPoint::LockRequest_T lockRequest=Cpl::Dm::ModelPoint::eNO_REQUEST) noexcept
Atomic operation to clear ONLY the bits as specified by the bit mask.
Definition Numeric.h:238
BitArray_(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, WORDSIZE initialValue)
Constructor. Valid MP. Requires an initial value.
Definition Numeric.h:202
uint16_t clearBit(uint8_t bitPosition, Cpl::Dm::ModelPoint::LockRequest_T lockRequest=Cpl::Dm::ModelPoint::eNO_REQUEST) noexcept
Atomic operation to set the zero indexed bit to a 0.
Definition Numeric.h:218
void setJSONVal(JsonDocument &doc) noexcept
See Cpl::Dm::Point.
Definition Numeric.h:268
BitArray_(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor. Invalid MP.
Definition Numeric.h:196
uint16_t flipBitsByMask(uint16_t bitMask, Cpl::Dm::ModelPoint::LockRequest_T lockRequest=Cpl::Dm::ModelPoint::eNO_REQUEST) noexcept
Atomic operation to flip/toggle ONLY the bits as specified the bit mask.
Definition Numeric.h:256
uint16_t setBitsByMask(uint16_t bitMask, Cpl::Dm::ModelPoint::LockRequest_T lockRequest=Cpl::Dm::ModelPoint::eNO_REQUEST) noexcept
Atomic operation to set the bits specified by the bit mask.
Definition Numeric.h:247
This template class provides a mostly concrete implementation for a Model Point who's data is a C num...
Definition Numeric.h:64
uint16_t write(ELEMTYPE newValue, Cpl::Dm::ModelPoint::LockRequest_T lockRequest=Cpl::Dm::ModelPoint::eNO_REQUEST) noexcept
Type safe write. See Cpl::Dm::ModelPoint.
Definition Numeric.h:91
bool fromJSON_(JsonVariant &src, Cpl::Dm::ModelPoint::LockRequest_T lockRequest, uint16_t &retSequenceNumber, Cpl::Text::String *errorMsg) noexcept
See Cpl::Dm::Point.
Definition Numeric.h:147
bool read(ELEMTYPE &dstData, uint16_t *seqNumPtr=0) const noexcept
Type safe read. See Cpl::Dm::ModelPoint.
Definition Numeric.h:85
bool readAndSync(ELEMTYPE &dstData, SubscriberApi &observerToSync)
See Cpl::Dm::ModelPointCommon.
Definition Numeric.h:133
Numeric(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor: Invalid MP.
Definition Numeric.h:71
uint16_t decrement(ELEMTYPE decSize=1, Cpl::Dm::ModelPoint::LockRequest_T lockRequest=Cpl::Dm::ModelPoint::eNO_REQUEST) noexcept
Atomic decrement.
Definition Numeric.h:106
Numeric(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, ELEMTYPE initialValue)
Constructor: Valid MP (requires initial value)
Definition Numeric.h:77
uint16_t copyFrom(const MPTYPE &src, 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.
Definition Numeric.h:115
void setJSONVal(JsonDocument &doc) noexcept
See Cpl::Dm::Point.
Definition Numeric.h:140
ELEMTYPE m_data
The element's value.
Definition Numeric.h:67
uint16_t increment(ELEMTYPE incSize=1, Cpl::Dm::ModelPoint::LockRequest_T lockRequest=Cpl::Dm::ModelPoint::eNO_REQUEST) noexcept
Atomic increment.
Definition Numeric.h:97
void attach(Cpl::Dm::Subscriber< MPTYPE > &observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN) noexcept
Type safe register observer.
Definition Numeric.h:121
void detach(Cpl::Dm::Subscriber< MPTYPE > &observer) noexcept
Type safe un-register observer.
Definition Numeric.h:127
This template class extends the implementation of Numeric<> class to support the pointers instead of ...
Definition Numeric.h:310
Pointer_(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, void *initialValue)
Constructor. Valid MP. Requires an initial value.
Definition Numeric.h:319
bool fromJSON_(JsonVariant &src, Cpl::Dm::ModelPoint::LockRequest_T lockRequest, uint16_t &retSequenceNumber, Cpl::Text::String *errorMsg) noexcept
See Cpl::Dm::Point.
Definition Numeric.h:334
void setJSONVal(JsonDocument &doc) noexcept
See Cpl::Dm::Point.
Definition Numeric.h:326
Pointer_(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor. Invalid MP.
Definition Numeric.h:313
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 template class represents a NULL terminated string of a specific length.
Definition FString.h:38
const char * getString() const
See Cpl::Text::String.
void format(const char *format,...)
See Cpl::Text::String.
This abstract class defines the operations that can be before on a NULL terminated string.
Definition String.h:40
long asciiBinaryToBuffer(void *dstBinary, const char *srcString, size_t dstMaxLen, bool reverse=false)
This method will convert an 'ASCII BINARY' string to an equivalent binary buffer, i....
bool a2ull(unsigned long long &convertedValue, const char *string, int base=10, const char *validStopChars=0, const char **endptr=0)
This method is the same as a2i() except that it converts unsigned long long integer.
bool bufferToAsciiBinary(const void *binaryData, int len, Cpl::Text::String &destString, bool appendToString=false, bool reverse=false)
This method converts the binary buffer to a single string that is ASCII BINARY.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20