GM6000 Digital Heater Controller Branch: main
SDX-1330
MpScreenApiPtr.h
Go to the documentation of this file.
1#ifndef Ajax_ScreenMgr_MpScreenApiPtr_h_
2#define Ajax_ScreenMgr_MpScreenApiPtr_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 Ajax {
20///
21namespace ScreenMgr {
22
23/** Forward reference for a ScreenApi pointer (breaks undesired dependencies)
24 */
25class ScreenApi;
26
27/** This class provides a concrete implementation for a Point who's data is a
28 ScreenApi pointer.
29
30 The toJSON()/fromJSON format is:
31 \code
32
33 { name:"<mpname>", type:"<mptypestring>", valid:true|false, seqnum:nnnn, locked:true|false, val:"<hexvalue>" }
34
35 \endcode
36
37 NOTE: All methods in this class ARE thread Safe unless explicitly
38 documented otherwise.
39 */
40class MpScreenApiPtr : public Cpl::Dm::Mp::Pointer_<MpScreenApiPtr>
41{
42public:
43 /// Constructor. Invalid MP.
44 MpScreenApiPtr( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName )
45 :Pointer_<MpScreenApiPtr>( myModelBase, symbolicName )
46 {
47 }
48
49 /// Constructor. Valid MP. Requires an initial value
50 MpScreenApiPtr( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName, void* initialValue )
51 : Pointer_<MpScreenApiPtr>( myModelBase, symbolicName, initialValue )
52 {
53 }
54
55
56public:
57 /// Type safe read. See Cpl::Dm::ModelPoint
58 inline bool read( ScreenApi*& dstData, uint16_t* seqNumPtr = 0 ) const noexcept
59 {
60 return readData( &dstData, sizeof( void* ), seqNumPtr );
61 }
62
63 /// Type safe write. See Cpl::Dm::ModelPoint
64 inline uint16_t write( ScreenApi* newValue, Cpl::Dm::ModelPoint::LockRequest_T lockRequest = Cpl::Dm::ModelPoint::eNO_REQUEST ) noexcept
65 {
66 return writeData( &newValue, sizeof( void* ), lockRequest );
67 }
68
69public:
70 /// Type safe subscriber
72
73 /// See Cpl::Dm::ModelPointCommon
74 inline bool readAndSync( ScreenApi*& dstData, Cpl::Dm::SubscriberApi& observerToSync )
75 {
76 return ModelPointCommon_::readAndSync( &dstData, sizeof( void* ), observerToSync );
77 }
78
79 /// See Cpl::Dm::ModelPoint.
80 const char* getTypeAsText() const noexcept
81 {
82 return "Ajax::ScreenMgr::MpScreenApiPtr";
83 }
84};
85
86
87
88} // end namespaces
89}
90#endif // end header latch
This class provides a concrete implementation for a Point who's data is a ScreenApi pointer.
Definition MpScreenApiPtr.h:41
MpScreenApiPtr(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor. Invalid MP.
Definition MpScreenApiPtr.h:44
bool read(ScreenApi *&dstData, uint16_t *seqNumPtr=0) const noexcept
Type safe read. See Cpl::Dm::ModelPoint.
Definition MpScreenApiPtr.h:58
uint16_t write(ScreenApi *newValue, Cpl::Dm::ModelPoint::LockRequest_T lockRequest=Cpl::Dm::ModelPoint::eNO_REQUEST) noexcept
Type safe write. See Cpl::Dm::ModelPoint.
Definition MpScreenApiPtr.h:64
MpScreenApiPtr(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, void *initialValue)
Constructor. Valid MP. Requires an initial value.
Definition MpScreenApiPtr.h:50
const char * getTypeAsText() const noexcept
See Cpl::Dm::ModelPoint.
Definition MpScreenApiPtr.h:80
bool readAndSync(ScreenApi *&dstData, Cpl::Dm::SubscriberApi &observerToSync)
See Cpl::Dm::ModelPointCommon.
Definition MpScreenApiPtr.h:74
Cpl::Dm::Subscriber< MpScreenApiPtr > Observer
Type safe subscriber.
Definition MpScreenApiPtr.h:71
This class defines the interface for a 'Screen'.
Definition ScreenApi.h:31
This concrete class implements a simple Model Database.
Definition ModelDatabase.h:56
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
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
The 'Ajax' namespace is the root name space all GM6000 application specific source code.