GM6000 Digital Heater Controller Branch: main
SDX-1330
EventLoop.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_EventLoop_h_
2#define Cpl_Dm_EventLoop_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
16#include "Cpl/System/Thread.h"
17#include "Cpl/Container/DList.h"
20
21
22///
23namespace Cpl {
24///
25namespace Dm {
26
27/** This class extends the Cpl::System::EventLoop class to support the
28 asynchronous change notification generated from Model Points.
29
30 The order of processing is:
31
32 1. Event Flags are processed. Events are processed in LSb order.
33 2. The timers and their callbacks (if any timers have expired) are
34 processed.
35 3. A single Model Point Change notification (if there is one pending) is
36 processed.
37 4. The loop is repeated until there are no expired timers, no event
38 flags, and no MP change notifications - at which point the thread
39 blocks and wait for any of the above asynchronous actions to wake up
40 the thread.
41
42 */
44{
45protected:
46 /// List of pending Model Point Change Notifications
48
49
50public:
51 /** Constructor. The argument 'timingTickInMsec' specifies the timing
52 resolution that will be used for Cpl::Timer::Local Timers.
53
54 NOTE: A value of zero for 'timingTickInMsec' will disable support
55 for Local Timers.
56 */
57 EventLoop( unsigned long timingTickInMsec = OPTION_CPL_SYSTEM_EVENT_LOOP_TIMEOUT_PERIOD,
58 Cpl::System::SharedEventHandlerApi* eventHandler = 0 ) noexcept;
59
60public:
61 /// See Cpl::System::Runnable
62 void appRun();
63
64
65public:
66 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
67 by other classes in the Cpl::Dm namespace. The Application should
68 NEVER call this method.
69
70 This method is used add a new 'change notification' to its list
71 of pending change notifications. Calling this method when the
72 subscriber is already registered for change notification will cause
73 a FATAL ERROR.
74
75 This method IS thread safe.
76
77 NOTE: The requirements and/or semantics of Model Point subscription is
78 that Subscriptions, Notifications, and Cancel-of-Subscriptions
79 all happen in a SINGLE thread and that thread is the 'Subscribers'
80 thread.
81 */
82 void addPendingChangingNotification_( SubscriberApi& subscriber ) noexcept;
83
84 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
85 by other classes in the Cpl::Dm namespace. The Application should
86 NEVER call this method.
87
88 This method is used remove a pending 'change notification' from its list
89 of pending change notifications. It is okay to call this method even if
90 the Subscriber is not current registered for change notifications.
91
92 This method IS thread safe.
93
94 NOTE: The requirements and/or semantics of Model Point subscription is
95 that Subscriptions, Notifications, and Cancel-of-Subscriptions
96 all happen in a SINGLE thread and that thread is the 'Subscribers'
97 thread.
98 */
100
101
102protected:
103 /** This method returns true if there is at least one pending change
104 notification.
105
106 This method IS thread safe.
107 */
109
110 /// This helper method processes pending change notifications
111 virtual void processChangeNotifications() noexcept;
112};
113
114}; // end namespaces
115};
116#endif // end header latch
#define OPTION_CPL_SYSTEM_EVENT_LOOP_TIMEOUT_PERIOD
Specifies the default timeout period for waiting on a event.
Definition EventLoop.h:26
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This class extends the Cpl::System::EventLoop class to support the asynchronous change notification g...
Definition EventLoop.h:44
virtual void processChangeNotifications() noexcept
This helper method processes pending change notifications.
void addPendingChangingNotification_(SubscriberApi &subscriber) noexcept
This method has PACKAGE Scope, i.e.
void appRun()
See Cpl::System::Runnable.
bool isPendingPendingChangingNotifications() noexcept
This method returns true if there is at least one pending change notification.
void removePendingChangingNotification_(SubscriberApi &subscriber) noexcept
This method has PACKAGE Scope, i.e.
Cpl::Container::DList< SubscriberApi > m_pendingMpNotifications
List of pending Model Point Change Notifications.
Definition EventLoop.h:47
EventLoop(unsigned long timingTickInMsec=OPTION_CPL_SYSTEM_EVENT_LOOP_TIMEOUT_PERIOD, Cpl::System::SharedEventHandlerApi *eventHandler=0) noexcept
Constructor.
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 concrete class is a Runnable object that provides a event driven execution model for a thread.
Definition EventLoop.h:52
This abstract class defines the interface for a Shared Event Handler.
Definition SharedEventHandler.h:30
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20