1#ifndef Cpl_Dm_Mp_String_h_
2#define Cpl_Dm_Mp_String_h_
50 const char* symbolicName,
52 size_t dataSizeInBytesIncludingNullTerminator );
56 const char* symbolicName,
58 size_t dataSizeInBytesIncludingNullTerminator,
59 const char* initialValue );
67 bool read(
char* dstData,
size_t dataSizeInBytesIncludingNullTerminator, uint16_t* seqNumPtr=0 ) const noexcept;
72 return write( srcNullTerminatedString, strlen( srcNullTerminatedString ), lockRequest );
90 return "Cpl::Dm::Mp::String";
156 bool result =
read( dstData, &seqNum );
165 bool result =
read( dstData, dataSizeInBytesIncludingNullTerminator, &seqNum );
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 attachSubscriber(SubscriberApi &observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN) noexcept
See Cpl::Dm::ModelPoint.
void detachSubscriber(SubscriberApi &observer) noexcept
See Cpl::Dm::ModelPoint.
size_t m_dataSize
Size of my data.
Definition ModelPointCommon_.h:230
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 mostly concrete class provides the base implementation for a Point who's data is a null terminat...
Definition String.h:45
size_t getMaxLength() const noexcept
Returns the maximum size WITHOUT the null terminator of the string storage.
Definition String.h:79
uint16_t write(const char *srcData, size_t dataSizeInBytesIncludingNullTerminator, LockRequest_T lockRequest=eNO_REQUEST) noexcept
Same as write(), except only writes at most 'srcLen' bytes.
bool read(Cpl::Text::String &dstData, uint16_t *seqNumPtr=0) const noexcept
Type safe read. See Cpl::Dm::ModelPoint.
bool fromJSON_(JsonVariant &src, LockRequest_T lockRequest, uint16_t &retSequenceNumber, Cpl::Text::String *errorMsg) noexcept
See Cpl::Dm::Point.
const char * getTypeAsText() const noexcept
See Cpl::Dm::ModelPoint.
Definition String.h:88
bool isDataEqual_(const void *otherData) const noexcept
See Cpl::Dm::Point.
uint16_t write(const char *srcNullTerminatedString, LockRequest_T lockRequest=eNO_REQUEST) noexcept
Type safe write of a null terminated string. See Cpl::Dm::ModelPoint.
Definition String.h:70
void setJSONVal(JsonDocument &doc) noexcept
See Cpl::Dm::Point.
uint16_t copyFrom(const StringBase_ &src, LockRequest_T lockRequest=eNO_REQUEST) noexcept
Updates the MP with the valid-state/data from 'src'. Note: the src.lock state is NOT copied.
StringBase_(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, char *myDataPtr, size_t dataSizeInBytesIncludingNullTerminator)
Constructor.
StringBase_(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, char *myDataPtr, size_t dataSizeInBytesIncludingNullTerminator, const char *initialValue)
Constructor. Valid MP. Requires an initial value.
This concrete template class provides the storage for a Point who's data is a null terminated string.
Definition String.h:114
String(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor.
Definition String.h:118
char m_data[S+1]
The MP's raw storage.
Definition String.h:173
Cpl::Dm::Subscriber< String > Observer
Type safe subscriber.
Definition String.h:131
bool readAndSync(Cpl::Text::String &dstData, SubscriberApi &observerToSync)
This method is used to read the MP contents and synchronize the observer with the current MP contents...
Definition String.h:153
String(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, const char *initialValue)
Constructor. Valid Point. Requires an initial value.
Definition String.h:124
bool readAndSync(char *dstData, size_t dataSizeInBytesIncludingNullTerminator, SubscriberApi &observerToSync)
Same as readAndSync() above, except using a raw char array.
Definition String.h:162
void attach(Observer &observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN) noexcept
Type safe register observer.
Definition String.h:134
void detach(Observer &observer) noexcept
Type safe un-register observer.
Definition String.h:140
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