GM6000 Digital Heater Controller Branch: main
SDX-1330
Void.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_Mp_Void_h_
2#define Cpl_Dm_Mp_Void_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 "Cpl/Dm/Mp/Numeric.h"
17
18///
19namespace Cpl {
20///
21namespace Dm {
22///
23namespace Mp {
24
25
26/** This class provides a concrete implementation for a Point who's data is a
27 void pointer.
28
29 On general principle there should NOT be model point type that is generic
30 (it goes against the whole 'model-points-are-type-safe' thingy). HOWEVER,
31 there are some cases where it is desirable to have MP contain a pointer -
32 where the actual definition of what that pointer points to is 'not visible'
33
34 Shorter version: DO NOT USE THIS MODEL POINT TYPE UNLESS YOU HAVE NO
35 ALTERNATIVE. Not wanting to take the time to create a new model point type
36 (with test code) is NOT an acceptable excuse for using this model point
37 type.
38
39 The toJSON()/fromJSON format is:
40 \code
41
42 { name:"<mpname>", type:"<mptypestring>", valid:true|false, seqnum:nnnn, locked:true|false, val:"<hexvalue>" }
43
44 \endcode
45
46 NOTE: All methods in this class ARE thread Safe unless explicitly
47 documented otherwise.
48 */
49class Void : public Pointer_<Void>
50{
51public:
52 /// Constructor. Invalid MP.
53 Void( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName )
54 :Pointer_<Void>( myModelBase, symbolicName )
55 {
56 }
57
58 /// Constructor. Valid MP. Requires an initial value
59 Void( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName, void* initialValue )
60 : Pointer_<Void>( myModelBase, symbolicName, initialValue )
61 {
62 }
63
64
65public:
66 /// Type safe read. See Cpl::Dm::ModelPoint
67 inline bool read( void*& dstData, uint16_t* seqNumPtr = 0 ) const noexcept
68 {
69 return readData( &dstData, sizeof( void* ), seqNumPtr );
70 }
71
72 /// Type safe write. See Cpl::Dm::ModelPoint
73 inline uint16_t write( void* newValue, Cpl::Dm::ModelPoint::LockRequest_T lockRequest = Cpl::Dm::ModelPoint::eNO_REQUEST ) noexcept
74 {
75 return writeData( &newValue, sizeof( void* ), lockRequest );
76 }
77
78public:
79 /// Type safe subscriber
81
82 /// See Cpl::Dm::ModelPointCommon
83 inline bool readAndSync( void*& dstData, SubscriberApi& observerToSync )
84 {
85 return ModelPointCommon_::readAndSync( &dstData, sizeof( void* ), observerToSync );
86 }
87
88 /// See Cpl::Dm::ModelPoint.
89 const char* getTypeAsText() const noexcept
90 {
91 return "Cpl::Dm::Mp::Void";
92 }
93};
94
95
96
97}; // end namespaces
98};
99};
100#endif // end header latch
This concrete class implements a simple Model Database.
Definition ModelDatabase.h:56
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
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
This template class extends the implementation of Numeric<> class to support the pointers instead of ...
Definition Numeric.h:310
This class provides a concrete implementation for a Point who's data is a void pointer.
Definition Void.h:50
bool readAndSync(void *&dstData, SubscriberApi &observerToSync)
See Cpl::Dm::ModelPointCommon.
Definition Void.h:83
const char * getTypeAsText() const noexcept
See Cpl::Dm::ModelPoint.
Definition Void.h:89
Void(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor. Invalid MP.
Definition Void.h:53
uint16_t write(void *newValue, Cpl::Dm::ModelPoint::LockRequest_T lockRequest=Cpl::Dm::ModelPoint::eNO_REQUEST) noexcept
Type safe write. See Cpl::Dm::ModelPoint.
Definition Void.h:73
Cpl::Dm::Subscriber< Void > Observer
Type safe subscriber.
Definition Void.h:80
Void(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, void *initialValue)
Constructor. Valid MP. Requires an initial value.
Definition Void.h:59
bool read(void *&dstData, uint16_t *seqNumPtr=0) const noexcept
Type safe read. See Cpl::Dm::ModelPoint.
Definition Void.h:67
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
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20