GM6000 Digital Heater Controller Branch: main
SDX-1330
Subscriber.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_Subscriber_h_
2#define Cpl_Dm_Subscriber_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
17#include "Cpl/Dm/ModelPoint.h"
18#include "Cpl/Dm/EventLoop.h"
19#include <stdint.h>
20
21///
22namespace Cpl {
23///
24namespace Dm {
25
26
27
28/** This mostly concrete class defines the Subscriber interface - for change
29 notifications - to a Model Points data/state
30 */
32{
33protected:
34 /// Internal state of the subscriber. Note: The state is actual managed by the Model Point
36
37 /// Pointer to the Model Point the instance is subscribed to
39
40 /// Reference to subscriber's EventFlag/Mailbox server
42
43 /// Sequence number of the subscriber
44 uint16_t m_seqNumber;
45
46public:
47 /// Constructor
49
50public:
51 /// See Cpl::Dm::SubscriberApi
53
54 /// See Cpl::Dm::SubscriberApi
55 void setModelPoint_( ModelPoint* modelPoint ) noexcept;
56
57 /// See Cpl::Dm::SubscriberApi
59
60 /// See Cpl::Dm::SubscriberApi
61 int getState_() const noexcept;
62
63 /// See Cpl::Dm::SubscriberApi
64 void setState_( int newState ) noexcept;
65
66 /// See Cpl::Dm::SubscriberApi
67 uint16_t getSequenceNumber_() const noexcept;
68
69 /// See Cpl::Dm::SubscriberApi
70 void setSequenceNumber_( uint16_t newSeqNumber ) noexcept;
71};
72
73/////////////////////////////////////////////////////////////////////////////
74
75/** This template class defines a type safe Subscriber
76
77 Template Arguments:
78 MP - The concrete Model Point Type
79 */
80template <class MP>
82{
83public:
84 /// Type safe change notification. See Cpl::Dm::SubscriberApi
85 virtual void modelPointChanged( MP& modelPointThatChanged, SubscriberApi& clientObserver ) noexcept = 0;
86
87public:
88 /// Constructor
89 Subscriber( Cpl::Dm::EventLoop& myEventLoop ):SubscriberBase(myEventLoop) {}
90
91protected:
92 /// See Cpl::Dm::SubscriberApi
93 void genericModelPointChanged_( ModelPoint& modelPointThatChanged, SubscriberApi& clientObserver ) noexcept { modelPointChanged( *((MP*) &modelPointThatChanged), clientObserver ); }
94};
95
96
97
98}; // end namespaces
99};
100#endif // end header latch
This class extends the Cpl::System::EventLoop class to support the asynchronous change notification g...
Definition EventLoop.h:44
This mostly abstract class defines the interface for a Model Point.
Definition ModelPoint.h:46
This class has PACKAGE Scope, i.e.
Definition NotificationApi_.h:30
This abstract class defines the Subscriber interface - for change notifications - to a Model Points d...
Definition SubscriberApi.h:34
This mostly concrete class defines the Subscriber interface - for change notifications - to a Model P...
Definition Subscriber.h:32
ModelPoint * getModelPoint_() noexcept
See Cpl::Dm::SubscriberApi.
uint16_t m_seqNumber
Sequence number of the subscriber.
Definition Subscriber.h:44
Cpl::Dm::EventLoop & m_eventLoopHdl
Reference to subscriber's EventFlag/Mailbox server.
Definition Subscriber.h:41
int getState_() const noexcept
See Cpl::Dm::SubscriberApi.
ModelPoint * m_point
Pointer to the Model Point the instance is subscribed to.
Definition Subscriber.h:38
void setModelPoint_(ModelPoint *modelPoint) noexcept
See Cpl::Dm::SubscriberApi.
void setState_(int newState) noexcept
See Cpl::Dm::SubscriberApi.
void setSequenceNumber_(uint16_t newSeqNumber) noexcept
See Cpl::Dm::SubscriberApi.
NotificationApi_ * getNotificationApi_() const noexcept
See Cpl::Dm::SubscriberApi.
uint16_t getSequenceNumber_() const noexcept
See Cpl::Dm::SubscriberApi.
int m_state
Internal state of the subscriber. Note: The state is actual managed by the Model Point.
Definition Subscriber.h:35
SubscriberBase(Cpl::Dm::EventLoop &myEventLoop)
Constructor.
This template class defines a type safe Subscriber.
Definition Subscriber.h:82
void genericModelPointChanged_(ModelPoint &modelPointThatChanged, SubscriberApi &clientObserver) noexcept
See Cpl::Dm::SubscriberApi.
Definition Subscriber.h:93
virtual void modelPointChanged(MP &modelPointThatChanged, SubscriberApi &clientObserver) noexcept=0
Type safe change notification. See Cpl::Dm::SubscriberApi.
Subscriber(Cpl::Dm::EventLoop &myEventLoop)
Constructor.
Definition Subscriber.h:89
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20