GM6000 Digital Heater Controller Branch: main
SDX-1330
List of all members | Public Member Functions | Protected Member Functions
Cpl::Dm::Mp::BitArray_< WORDSIZE, MPTYPE > Class Template Reference

This template class extends the Numeric<> class to provide bit operation on the numeric value. More...

Detailed Description

template<class WORDSIZE, class MPTYPE>
class Cpl::Dm::Mp::BitArray_< WORDSIZE, MPTYPE >

This template class extends the Numeric<> class to provide bit operation on the numeric value.

The datatype of the numeric MUST be an integer type.

The underlying storage of the bit array is N bit integers. A side effect of this storage mechanism the bit ordering in the JSON 'val' string is dependent on the target platform's Endian architecture.

The toJSON()/fromJSON format is:

{ name:"<mpname>", type:"<mptypestring>", valid:true|false, seqnum:nnnn, locked:true|false, val:"<bits>" }
where <bits> is a string of N digits ('1' or '0') where the left most digit is
is the MSb of byte[0] and the right most digit is the LSb of byte[N].
Whether byte[0] is the MSB or LSB is dependent on the big/little Endian
architecture of the target platform.
For example a 16bit Array (as binary hex: dataword[0]=0x30, dataword[1]=0x09)
val:"0011000000001001"

NOTE: All methods in this class ARE thread Safe unless explicitly documented otherwise.

#include <Numeric.h>

Inheritance diagram for Cpl::Dm::Mp::BitArray_< WORDSIZE, MPTYPE >:
[legend]
Collaboration diagram for Cpl::Dm::Mp::BitArray_< WORDSIZE, MPTYPE >:
[legend]

Public Member Functions

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.
 
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.
 
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.
 
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.

 
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.
 
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.
 
bool fromJSON_ (JsonVariant &src, Cpl::Dm::ModelPoint::LockRequest_T lockRequest, uint16_t &retSequenceNumber, Cpl::Text::String *errorMsg) noexcept
 See Cpl::Dm::Point.

 
- Public Member Functions inherited from Cpl::Dm::Mp::Numeric< WORDSIZE, MPTYPE >
bool read (WORDSIZE &dstData, uint16_t *seqNumPtr=0) const noexcept
 Type safe read. See Cpl::Dm::ModelPoint.
 
uint16_t write (WORDSIZE newValue, Cpl::Dm::ModelPoint::LockRequest_T lockRequest=Cpl::Dm::ModelPoint::eNO_REQUEST) noexcept
 Type safe write. See Cpl::Dm::ModelPoint.
 
uint16_t increment (WORDSIZE incSize=1, Cpl::Dm::ModelPoint::LockRequest_T lockRequest=Cpl::Dm::ModelPoint::eNO_REQUEST) noexcept
 Atomic increment.
 
uint16_t decrement (WORDSIZE decSize=1, Cpl::Dm::ModelPoint::LockRequest_T lockRequest=Cpl::Dm::ModelPoint::eNO_REQUEST) noexcept
 Atomic decrement.
 
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.
 
void attach (Cpl::Dm::Subscriber< MPTYPE > &observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN) noexcept
 Type safe register observer.
 
void detach (Cpl::Dm::Subscriber< MPTYPE > &observer) noexcept
 Type safe un-register observer.
 
bool readAndSync (WORDSIZE &dstData, SubscriberApi &observerToSync)
 See Cpl::Dm::ModelPointCommon.
 
bool fromJSON_ (JsonVariant &src, Cpl::Dm::ModelPoint::LockRequest_T lockRequest, uint16_t &retSequenceNumber, Cpl::Text::String *errorMsg) noexcept
 See Cpl::Dm::Point.

 
- Public Member Functions inherited from Cpl::Dm::ModelPointCommon_
const char * getName () const noexcept
 See Cpl::Dm::ModelPoint.
 
size_t getSize () const noexcept
 See Cpl::Dm::ModelPoint. This method IS thread safe.
 
uint16_t getSequenceNumber () const noexcept
 See Cpl::Dm::ModelPoint.
 
uint16_t touch () noexcept
 See Cpl::Dm::ModelPoint.
 
uint16_t setInvalid (LockRequest_T lockRequest=eNO_REQUEST) noexcept
 See Cpl::Dm::ModelPoint.
 
bool isNotValid (uint16_t *seqNumPtr=0) const noexcept
 See Cpl::Dm::ModelPoint.
 
bool isLocked () const noexcept
 See Cpl::Dm::ModelPoint.
 
uint16_t setLockState (LockRequest_T lockRequest) noexcept
 See Cpl::Dm::ModelPoint.
 
size_t getExternalSize (bool includeLockedState=false) const noexcept
 See Cpl::Dm::ModelPoint.
 
size_t exportData (void *dstDataStream, size_t maxDstLength, uint16_t *retSequenceNumber=0, bool includeLockedState=false) const noexcept
 See Cpl::Dm::ModelPoint. Note: The implementation does NOT account for Endianess, i.e. assumes the 'platform' is the same for export/import.
 
size_t importData (const void *srcDataStream, size_t srcLength, uint16_t *retSequenceNumber=0, bool includeLockedState=false) noexcept
 See Cpl::Dm::ModelPoint. Note: The implementation does NOT account for Endianess, i.e. assumes the 'platform' is the same for export/import.
 
void genericAttach (SubscriberApi &observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN) noexcept
 See Cpl::Dm::ModelPoint.
 
void genericDetach (SubscriberApi &observer) noexcept
 See Cpl::Dm::ModelPoint.
 
bool toJSON (char *dst, size_t dstSize, bool &truncated, bool verbose=true, bool pretty=false) noexcept
 See Cpl::Dm::ModelPoint.
 
bool isNotValidAndSync (SubscriberApi &observerToSync)
 This method is used to test the validate state of the MP and synchronize the observer with the current MP contents.
 
void processSubscriptionEvent_ (SubscriberApi &subscriber, Event_T event) noexcept
 See Cpl::Dm::ModelPoint.
 
- Public Member Functions inherited from Cpl::Dm::ModelPoint
virtual const char * getTypeAsText () const noexcept=0
 This method returns a string identifier for the Model Point's data type.
 
uint16_t removeLock () noexcept
 Short hand for unconditionally removing the lock from the MP.
 
uint16_t applyLock () noexcept
 Short hand for putting the MP into the locked state.
 
virtual bool exportMetadata_ (void *dstDataStream, size_t &bytesAdded) const noexcept
 This method has PACKAGE Scope, i.e.
 
virtual bool importMetadata_ (const void *srcDataStream, size_t &bytesConsumed) noexcept
 This method has PACKAGE Scope, i.e.
 
virtual ~ModelPoint ()
 Virtual destructor to make the compiler happy.
 
- Public Member Functions inherited from Cpl::Container::Item
bool insert_ (void *newContainerPtr)
 Helper method to trap when inserting an item in multiple containers.
 
bool isInContainer_ (const void *containerPtr) const noexcept
 Returns 'true' if the instance is in the specified container.
 

Protected Member Functions

 BitArray_ (Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
 Constructor. Invalid MP.
 
 BitArray_ (Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, WORDSIZE initialValue)
 Constructor. Valid MP. Requires an initial value.
 
void setJSONVal (JsonDocument &doc) noexcept
 See Cpl::Dm::Point.

 
- Protected Member Functions inherited from Cpl::Dm::Mp::Numeric< WORDSIZE, MPTYPE >
 Numeric (Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
 Constructor: Invalid MP.
 
 Numeric (Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, WORDSIZE initialValue)
 Constructor: Valid MP (requires initial value)
 
void setJSONVal (JsonDocument &doc) noexcept
 See Cpl::Dm::Point.

 
- Protected Member Functions inherited from Cpl::Dm::ModelPointCommon_
 ModelPointCommon_ (ModelDatabase &myModelBase, const char *symbolicName, void *myDataPtr, size_t dataSizeInBytes, bool isValid=false)
 Constructor.
 
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.
 
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.
 
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.
 
void attachSubscriber (SubscriberApi &observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN) noexcept
 See Cpl::Dm::ModelPoint.
 
void detachSubscriber (SubscriberApi &observer) noexcept
 See Cpl::Dm::ModelPoint.
 
void copyDataTo_ (void *dstData, size_t dstSize) const noexcept
 See Cpl::Dm::ModelPoint.
 
void copyDataFrom_ (const void *srcData, size_t srcSize) noexcept
 See Cpl::Dm::ModelPoint.
 
bool isDataEqual_ (const void *otherData) const noexcept
 See Cpl::Dm::ModelPoint. Note: This implementation does NOT work if the any of the data content are floats/double data types.
 
const void * getImportExportDataPointer_ () const noexcept
 See Cpl::Dm::ModelPoint.

 
size_t getInternalDataSize_ () const noexcept
 See Cpl::Dm::ModelPoint.

 
virtual void processDataUpdated () noexcept
 Internal helper method that completes the data update process as well as ensuring any change notifications get generated.
 
virtual void processChangeNotifications () noexcept
 Internal helper method that handles generating change notifications when the Model Point's data/state has changed.
 
virtual void advanceSequenceNumber () noexcept
 Internal helper method that advances/updates the Model Point's sequence number.
 
virtual bool testAndUpdateLock (LockRequest_T lockRequest) noexcept
 Internal helper method that manages testing and updating the locked state.
 
virtual void transitionToNotifyPending (SubscriberApi &subscriber) noexcept
 Helper FSM method.
 
virtual void transitionToSubscribed (SubscriberApi &subscriber) noexcept
 Helper FSM method.
 
virtual JsonDocument & beginJSON (bool isValid, bool locked, uint16_t seqnum, bool verbose=true) noexcept
 Helper method when converting MP to a JSON string.
 
virtual void endJSON (char *dst, size_t dstSize, bool &truncated, bool verbose=true, bool pretty=false) noexcept
 Helper method when converting MP to a JSON string.
 
virtual void hookSetInvalid () noexcept
 Helper method that a child a class can override to change behavior when an MP is set to the invalid state.
 
- Protected Member Functions inherited from Cpl::Container::Item
 Item ()
 Constructor.
 
 Item (const char *)
 Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated.
 

Additional Inherited Members

- Public Types inherited from Cpl::Dm::ModelPoint
enum  LockRequest_T { eNO_REQUEST , eLOCK , eUNLOCK }
 Options related to the Model Point's locked state. More...
 
enum  Event_T {
  eATTACH , eDETACH , eDATA_CHANGED , eNOTIFYING ,
  eNOTIFY_COMPLETE
}
 Subscriber events. More...
 
- Static Public Member Functions inherited from Cpl::Container::Item
static void remove_ (Item *itemPtr) noexcept
 Helper method to do the proper 'clean-up' for the multiple-containers-error-trap when removing an item from a container.
 
- Public Attributes inherited from Cpl::Container::Item
voidm_nextPtr_
 The link field.
 
voidm_inListPtr_
 Debug field.
 
- Static Public Attributes inherited from Cpl::Dm::ModelPoint
static const uint16_t SEQUENCE_NUMBER_UNKNOWN
 Magic value to use when registering for a change notification and application does not 'know' the current sequence number value of the Model Point.
 
- Protected Attributes inherited from Cpl::Dm::Mp::Numeric< WORDSIZE, MPTYPE >
WORDSIZE m_data
 The element's value.
 
- Protected Attributes inherited from Cpl::Dm::ModelPointCommon_
Cpl::Container::DList< SubscriberApim_subscribers
 List of Active Subscribers.
 
const char * m_name
 The model point's symbolic name.
 
ModelDatabasem_modelDatabase
 Reference to the containing Model Base.
 
void * m_dataPtr
 Reference to my Data.
 
size_t m_dataSize
 Size of my data.
 
uint16_t m_seqNum
 Sequence number used for tracking changes in the Point data.
 
bool m_locked
 Locked state.
 
bool m_valid
 valid/invalid state
 

Constructor & Destructor Documentation

◆ BitArray_() [1/2]

template<class WORDSIZE , class MPTYPE >
Cpl::Dm::Mp::BitArray_< WORDSIZE, MPTYPE >::BitArray_ ( Cpl::Dm::ModelDatabase myModelBase,
const char *  symbolicName 
)
inlineprotected

Constructor. Invalid MP.

◆ BitArray_() [2/2]

template<class WORDSIZE , class MPTYPE >
Cpl::Dm::Mp::BitArray_< WORDSIZE, MPTYPE >::BitArray_ ( Cpl::Dm::ModelDatabase myModelBase,
const char *  symbolicName,
WORDSIZE  initialValue 
)
inlineprotected

Constructor. Valid MP. Requires an initial value.

Member Function Documentation

◆ clearBit()

template<class WORDSIZE , class MPTYPE >
uint16_t Cpl::Dm::Mp::BitArray_< WORDSIZE, MPTYPE >::clearBit ( uint8_t  bitPosition,
Cpl::Dm::ModelPoint::LockRequest_T  lockRequest = Cpl::Dm::ModelPoint::eNO_REQUEST 
)
inlinenoexcept

Atomic operation to set the zero indexed bit to a 0.

◆ clearBitsByMask()

template<class WORDSIZE , class MPTYPE >
uint16_t Cpl::Dm::Mp::BitArray_< WORDSIZE, MPTYPE >::clearBitsByMask ( uint16_t  bitMask,
Cpl::Dm::ModelPoint::LockRequest_T  lockRequest = Cpl::Dm::ModelPoint::eNO_REQUEST 
)
inlinenoexcept

Atomic operation to clear ONLY the bits as specified by the bit mask.

◆ flipBit()

template<class WORDSIZE , class MPTYPE >
uint16_t Cpl::Dm::Mp::BitArray_< WORDSIZE, MPTYPE >::flipBit ( uint8_t  bitPosition,
Cpl::Dm::ModelPoint::LockRequest_T  lockRequest = Cpl::Dm::ModelPoint::eNO_REQUEST 
)
inlinenoexcept

Atomic operation to toggle the zero indexed bit.

◆ flipBitsByMask()

template<class WORDSIZE , class MPTYPE >
uint16_t Cpl::Dm::Mp::BitArray_< WORDSIZE, MPTYPE >::flipBitsByMask ( uint16_t  bitMask,
Cpl::Dm::ModelPoint::LockRequest_T  lockRequest = Cpl::Dm::ModelPoint::eNO_REQUEST 
)
inlinenoexcept

Atomic operation to flip/toggle ONLY the bits as specified the bit mask.

◆ fromJSON_()

template<class WORDSIZE , class MPTYPE >
bool Cpl::Dm::Mp::BitArray_< WORDSIZE, MPTYPE >::fromJSON_ ( JsonVariant &  src,
Cpl::Dm::ModelPoint::LockRequest_T  lockRequest,
uint16_t &  retSequenceNumber,
Cpl::Text::String errorMsg 
)
inlinevirtualnoexcept

See Cpl::Dm::Point.

Implements Cpl::Dm::ModelPoint.

◆ setBit()

template<class WORDSIZE , class MPTYPE >
uint16_t Cpl::Dm::Mp::BitArray_< WORDSIZE, MPTYPE >::setBit ( uint8_t  bitPosition,
Cpl::Dm::ModelPoint::LockRequest_T  lockRequest = Cpl::Dm::ModelPoint::eNO_REQUEST 
)
inlinenoexcept

Atomic operation to set the zero indexed bit to a 1.

◆ setBitsByMask()

template<class WORDSIZE , class MPTYPE >
uint16_t Cpl::Dm::Mp::BitArray_< WORDSIZE, MPTYPE >::setBitsByMask ( uint16_t  bitMask,
Cpl::Dm::ModelPoint::LockRequest_T  lockRequest = Cpl::Dm::ModelPoint::eNO_REQUEST 
)
inlinenoexcept

Atomic operation to set the bits specified by the bit mask.

◆ setJSONVal()

template<class WORDSIZE , class MPTYPE >
void Cpl::Dm::Mp::BitArray_< WORDSIZE, MPTYPE >::setJSONVal ( JsonDocument &  doc)
inlineprotectedvirtualnoexcept

See Cpl::Dm::Point.

Implements Cpl::Dm::ModelPoint.


The documentation for this class was generated from the following file: