GM6000 Digital Heater Controller Branch: main
SDX-1330
SubscriberComposer.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_SubscriberComposer_h_
2#define Cpl_Dm_SubscriberComposer_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#include "Cpl/Dm/Subscriber.h"
16
17///
18namespace Cpl {
19///
20namespace Dm {
21
22
23/** This template class is a composer pattern/class that manages the callback
24 function for a Model Point's Subscribers/Observers change notification
25
26 A Composer is a structural pattern that may be used to employ composition
27 when implementing an interface rather than using multiple inheritance. This
28 allows a single concrete object to receive the change notifications callbacks
29 from many Model Points.
30
31 Template Arguments:
32 CONTEXT - The class that implements the Callback function
33 MP - The concrete Model Point type.
34 */
35template <class CONTEXT, class MP>
37{
38public:
39 /** Define a callback method function for the Change Notification callback (See
40 Cpl::Dm::Subscriber<MP>::modelPointChanged for additional details)
41 */
42 typedef void (CONTEXT::*NotificationFunc_T)(MP& modelPointThatChanged, SubscriberApi& clientObserver );
43
44
45protected:
46 /// Class the implement the callback
47 CONTEXT& m_context;
48
49 /// Method (in my Context) to call for the change notification
51
52
53public:
54 /// Constructor
56 CONTEXT& context,
57 NotificationFunc_T notifyCallback );
58
59
60public:
61 /// See Cpl::Dm::Subscriber<MP>
62 void modelPointChanged( MP& modelPointThatChanged, SubscriberApi &clientObserver ) noexcept;
63
64};
65
66/////////////////////////////////////////////////////////////////////////////
67// INLINE IMPLEMENTAION
68/////////////////////////////////////////////////////////////////////////////
69template <class CONTEXT, class MP>
71 CONTEXT& context,
72 NotificationFunc_T notifyCallback )
73 : Subscriber<MP>( myEventLoop )
74 , m_context( context )
75 , m_notificationCb( notifyCallback )
76{
77}
78
79/////////////////
80template <class CONTEXT, class MP>
81void Cpl::Dm::SubscriberComposer<CONTEXT, MP>::modelPointChanged( MP& modelPointThatChanged, SubscriberApi& clientObserver ) noexcept
82{
83 // Notify context
84 return (m_context.*m_notificationCb)(modelPointThatChanged, clientObserver);
85}
86
87
88}; // end namespaces
89};
90#endif // end header latch
This class extends the Cpl::System::EventLoop class to support the asynchronous change notification g...
Definition EventLoop.h:44
This abstract class defines the Subscriber interface - for change notifications - to a Model Points d...
Definition SubscriberApi.h:34
This template class is a composer pattern/class that manages the callback function for a Model Point'...
Definition SubscriberComposer.h:37
SubscriberComposer(Cpl::Dm::EventLoop &myEventLoop, CONTEXT &context, NotificationFunc_T notifyCallback)
Constructor.
Definition SubscriberComposer.h:70
NotificationFunc_T m_notificationCb
Method (in my Context) to call for the change notification.
Definition SubscriberComposer.h:50
void modelPointChanged(MP &modelPointThatChanged, SubscriberApi &clientObserver) noexcept
See Cpl::Dm::Subscriber<MP>
Definition SubscriberComposer.h:81
CONTEXT & m_context
Class the implement the callback.
Definition SubscriberComposer.h:47
void(CONTEXT::* NotificationFunc_T)(MP &modelPointThatChanged, SubscriberApi &clientObserver)
Define a callback method function for the Change Notification callback (See Cpl::Dm::Subscriber<MP>::...
Definition SubscriberComposer.h:42
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