GM6000 Digital Heater Controller Branch: main
SDX-1330
SharedEventHandler.h
Go to the documentation of this file.
1#ifndef Cpl_System_SharedEventHandler_h_
2#define Cpl_System_SharedEventHandler_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
18
19 ///
20namespace Cpl {
21///
22namespace System {
23
24
25/** This abstract class defines the interface for a Shared Event Handler.
26 A Shared Event Handler is used to have function table instead of a hard
27 coded switch() statement for handling/processing event flags notification.
28 */
30{
31public:
32 /// Definition of event flag callback functions
33 typedef void (*EventCallbackFunc_T)( void* context );
34
35 /** Define a callback entry (i.e. provide a 'context' pointer for
36 the callback
37 */
38 typedef struct
39 {
40 EventCallbackFunc_T callbackFunc; //!< Callback function pointer
41 void* context; //!< Context for the callback. The callback function is required to 'understand' the actual type of the context pointer being passed to it.
43
44public:
45 /** This method 'dispatches' the processing associated with the specified
46 Event based the list/array of callback functions.
47 */
48 virtual void processEventFlag( uint8_t eventNumber ) noexcept = 0;
49
50public:
51 /// Virtual destructor
53};
54
55
56
57/** This template concrete class is a 'strategy class' in that in provides most
58 of work needed for a Runnable object to support a list of callback functions
59 for handling event-signally - instead of hard coded switch statement
60 in its processEventFlag() method.
61
62 Template Arg: N - the max number of callbacks supported.
63 */
64template <int N>
66{
67
68public:
69 /** Constructor. The 'myCallbacks' argument is an an array of callback
70 entries pointers. The order of array maps directly to the Event flag
71 number, i.e. index 0 is the callback function for Event Flag 0. If no
72 callback is supported for a particular Event Fla/Index use a zero (or
73 nullptr) for the .callbackFunc field/value for the array entry.
74 */
75 SharedEventHandler( EventCallback_T( &myCallbacks )[N] )
76 :m_callbacks( myCallbacks )
77 {
78 }
79
80
81public:
82 /** This method 'dispatches' the processing associated with the specified
83 Event based the list/array of callback functions.
84 */
85 void processEventFlag( uint8_t eventNumber ) noexcept
86 {
87 if ( eventNumber >= N || m_callbacks[eventNumber].callbackFunc == 0 )
88 {
89 return;
90 }
91
92 ( m_callbacks[eventNumber].callbackFunc )( m_callbacks[eventNumber].context );
93 }
94
95protected:
96 /// Reference to my callback functions
98};
99
100}; // end namespaces
101};
102#endif // end header latch
This abstract class defines the interface for a Shared Event Handler.
Definition SharedEventHandler.h:30
virtual ~SharedEventHandlerApi()
Virtual destructor.
Definition SharedEventHandler.h:52
void(* EventCallbackFunc_T)(void *context)
Definition of event flag callback functions.
Definition SharedEventHandler.h:33
EventCallbackFunc_T callbackFunc
Callback function pointer.
Definition SharedEventHandler.h:40
void * context
Context for the callback.
Definition SharedEventHandler.h:41
virtual void processEventFlag(uint8_t eventNumber) noexcept=0
This method 'dispatches' the processing associated with the specified Event based the list/array of c...
Define a callback entry (i.e.
Definition SharedEventHandler.h:39
This template concrete class is a 'strategy class' in that in provides most of work needed for a Runn...
Definition SharedEventHandler.h:66
void processEventFlag(uint8_t eventNumber) noexcept
This method 'dispatches' the processing associated with the specified Event based the list/array of c...
Definition SharedEventHandler.h:85
EventCallback_T(& m_callbacks)[N]
Reference to my callback functions.
Definition SharedEventHandler.h:97
SharedEventHandler(EventCallback_T(&myCallbacks)[N])
Constructor.
Definition SharedEventHandler.h:75
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20