GM6000 Digital Heater Controller Branch: main
SDX-1330
Summary.h
Go to the documentation of this file.
1#ifndef Ajax_Alerts_Summary_h_
2#define Ajax_Alerts_Summary_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-2023 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
16#include "Cpl/Itc/CloseSync.h"
17#include "Ajax/Dm/MpAlert.h"
19#include "Cpl/Memory/Aligned.h"
20
21///
22namespace Ajax
23{
24///
25namespace Alerts
26{
27
28
29/** This class manages the content of the Alert Summary model point
30 */
32{
33public:
34 /// Convenience type
36
37 /// Type for allocating memory for Alert Observer composer instances
39
40public:
41 /** Constructor. Note: The number of elements in the two array argument
42 MUST equal Ajax::Type::Alert::NUM_ALERTS
43 */
45 Ajax::Dm::MpAlert* alertList[] );
46
47public:
48 /// Starts the component
49 void request( OpenMsg& msg );
50
51 /// Shutdowns the component
52 void request( CloseMsg& msg );
53
54protected:
55 /// Change notification: Alerts
56 void alertChanged( Ajax::Dm::MpAlert& mpThatChanged, Cpl::Dm::SubscriberApi& clientObserver ) noexcept;
57
58
59protected:
60 /// Observer for change notifications
61 AlertComposerMemory m_observers[Ajax::Type::Alert::NUM_ALERTS];
62
63 /// Array of Alert Model Point pointers.
65
66 /// Reference to the Event loop (needed when constructing Observers)
68
69 /// open/close state
71};
72
73} // end namespaces
74}
75#endif // end header latch
76
This class manages the content of the Alert Summary model point.
Definition Summary.h:32
Ajax::Dm::MpAlert ** m_alertList
Array of Alert Model Point pointers.
Definition Summary.h:64
bool m_opened
open/close state
Definition Summary.h:70
void alertChanged(Ajax::Dm::MpAlert &mpThatChanged, Cpl::Dm::SubscriberApi &clientObserver) noexcept
Change notification: Alerts.
Cpl::Dm::SubscriberComposer< Summary, Ajax::Dm::MpAlert > AlertObserver
Convenience type.
Definition Summary.h:35
void request(CloseMsg &msg)
Shutdowns the component.
Summary(Cpl::Dm::MailboxServer &myMbox, Ajax::Dm::MpAlert *alertList[])
Constructor.
AlertComposerMemory m_observers[Ajax::Type::Alert::NUM_ALERTS]
Observer for change notifications.
Definition Summary.h:61
Cpl::Memory::AlignedClass< AlertObserver > AlertComposerMemory
Type for allocating memory for Alert Observer composer instances.
Definition Summary.h:38
void request(OpenMsg &msg)
Starts the component.
Cpl::Dm::EventLoop & m_eventLoop
Reference to the Event loop (needed when constructing Observers)
Definition Summary.h:67
This class provides a concrete implementation for a basic Alert that has following attributes:
Definition MpAlert.h:55
This class extends the Cpl::System::EventLoop class to support the asynchronous change notification g...
Definition EventLoop.h:44
This class extends the Cpl::Dm::EventLoop and Cpl::Itc:Mailbox classes to support the asynchronous ch...
Definition MailboxServer.h:43
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
This partially concrete class implements the synchronous ITC close call for the CloseApi.
Definition CloseSync.h:34
This template class represents a service request message to a particular server.
Definition RequestMessage.h:34
The 'Ajax' namespace is the root name space all GM6000 application specific source code.
This type is used to create a memory block that is large enough to hold the memory footprint of ONE i...
Definition Aligned.h:47