GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1#ifndef Ajax_ScreeMgr_Api_h_
2#define Ajax_ScreeMgr_Api_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
15#include "colony_config.h"
17#include "Cpl/Itc/CloseSync.h"
23#include "Cpl/Dm/Mp/Bool.h"
25#include "Cpl/System/Timer.h"
27#include "Cpl/Container/DList.h"
28#include "Cpl/Container/Item.h"
29
30
31
32/** The timer count down time, in milliseconds for the 20Hz tick timer
33 */
34#ifndef OPTION_AJAX_SCREEN_MGR_TICK_TIME_MS
35#define OPTION_AJAX_SCREEN_MGR_TICK_TIME_MS 50
36#endif
37
38/** Size of the Navigation Stack. The 'total depth' (from the User perspective)
39 is the stack is N+2 screen depth including the Home Screen
40 */
41#ifndef OPTION_AJAX_SCREEN_MGR_NAV_STACK_SIZE
42#define OPTION_AJAX_SCREEN_MGR_NAV_STACK_SIZE 3
43#endif
44
45///
46namespace Ajax {
47///
48namespace ScreenMgr {
49
50/** This class implements the Screen Manager. The screen manager is responsible
51 for navigation mechanics and handling of the Splash, Shutting-Down, and
52 Error-Halt screens
53
54 The Screen Manager is required to execute in the UI thread
55 */
56class Api : public Cpl::Itc::CloseSync, public Navigation
57{
58public:
59 /// Type for 'elements' in the Navigation Stack
61 {
62 public:
63 /// Constructor
65
66 /// Screen Pointer
68 };
69
70public:
71 /** Constructor. THe application is responsible for populating the
72 'freeMemoryForNavigationStack' with 'NullScreen' instances. The
73 number of elements in the list determines the depth of the navigation
74 stack.
75 */
77 MpScreenApiPtr& homeScreenMP,
78 MpStaticScreenApiPtr& haltUiMP,
79 Cpl::Dm::Mp::Bool& displaySleepRequestMP,
80 MpStaticScreenApiPtr& shutdownMP,
81 DisplayApi& display,
82 NavigationElement memoryForNavigationStack[],
83 size_t numElementsInNavigtationStackArray,
85
86public:
87 /** Starts/initializes the manager. The open() must pass a non-null
88 pointer to the splash screen (StaticScreenApi*) as the 'args' parameter.
89 */
90 void request( OpenMsg& msg );
91
92 /// Shutdowns the manager
93 void request( CloseMsg& msg );
94
95public:
96 /// See Ajax::ScreenMgr::Navigation
97 void push( ScreenApi& newScreen ) noexcept;
98
99 /// See Ajax::ScreenMgr::Navigation
100 void pop( unsigned count=1 ) noexcept;
101
102 /// See Ajax::ScreenMgr::Navigation
103 void popTo( ScreenApi& returnToScreen ) noexcept;
104
105 /// See Ajax::ScreenMgr::Navigation
106 void popToHome() noexcept;
107
108 /// See Ajax::ScreenMgr::Navigation
110
111 /// See Ajax::ScreenMgr::Navigation
113
114protected:
115 /// MP Change notification
116 void homeScreenMp_changed( MpScreenApiPtr& modelPointThatChanged, Cpl::Dm::SubscriberApi& clientObserver ) noexcept;
117
118 /// MP Change notification
119 void haltUiMp_changed( MpStaticScreenApiPtr& modelPointThatChanged, Cpl::Dm::SubscriberApi& clientObserver ) noexcept;
120
121 /// MP Change notification
122 void sleepRequestMp_changed( Cpl::Dm::Mp::Bool& modelPointThatChanged, Cpl::Dm::SubscriberApi& clientObserver ) noexcept;
123
124 /// MP Change notification
125 void shutdownMp_changed( MpStaticScreenApiPtr& modelPointThatChanged, Cpl::Dm::SubscriberApi& clientObserver ) noexcept;
126
127 /// MP Change notification
128 void eventQueueCountMp_changed( Cpl::Dm::Mp::Uint32& modelPointThatChanged, Cpl::Dm::SubscriberApi& clientObserver ) noexcept;
129
130 /// 20Hz timer expired
131 void timerExpired( void );
132
133protected:
134 /// Helper method
135 void transitionToHaltScreen() noexcept;
136
137protected:
138 /// Subscriber
139 Cpl::Dm::SubscriberComposer<Api, MpScreenApiPtr> m_obHomeScreenMP;
140
141 /// Subscriber
142 Cpl::Dm::SubscriberComposer<Api, MpStaticScreenApiPtr> m_obHaltUimMP;
143
144 /// Subscriber
145 Cpl::Dm::SubscriberComposer<Api, Cpl::Dm::Mp::Bool> m_obSleepReqMP;
146
147 /// Subscriber
149
150 /// Subscriber
151 Cpl::Dm::SubscriberComposer<Api, Cpl::Dm::Mp::Uint32> m_obEventQueueCountMP;
152
153 /// 20Hz tick timer
154 Cpl::System::TimerComposer<Api> m_timer;
155
156 /// Home screen MP
158
159 /// Halt screen MP
161
162 /// Sleep request MP (true:= turn off the display)
164
165 /// Shutdown request MP
167
168 /// Current Home Screen Handle
170
171 /// Handle to the 'display'
173
174 /// Thread safe Event queue
175 Cpl::Container::RingBufferMP<AjaxScreenMgrEvent_T>& m_eventQueue;
176
177 /// Free 'memory' for the navigation stack
179
180 /// The Navigation stack
182
183 /// Current Screen
185
186 /// Timer marker of last Tick call
188
189 /// Pending transition to the error screen
191
192 /// The UI is halted (due to an application error)
194
195 /// Shutdown flag
197
198 /// My open state
200};
201
202
203} // end namespaces
204}
205#endif // end header latch
206
#define AjaxScreenMgrEvent_T
Application specific type for Events.
Definition Event.h:21
Type for 'elements' in the Navigation Stack.
Definition Api.h:61
NavigationElement()
Constructor.
Definition Api.h:64
ScreenApi * m_screenPtr
Screen Pointer.
Definition Api.h:67
This class implements the Screen Manager.
Definition Api.h:57
Cpl::Dm::SubscriberComposer< Api, MpStaticScreenApiPtr > m_obHaltUimMP
Subscriber.
Definition Api.h:142
Cpl::Dm::SubscriberComposer< Api, Cpl::Dm::Mp::Uint32 > m_obEventQueueCountMP
Subscriber.
Definition Api.h:151
void homeScreenMp_changed(MpScreenApiPtr &modelPointThatChanged, Cpl::Dm::SubscriberApi &clientObserver) noexcept
MP Change notification.
void request(OpenMsg &msg)
Starts/initializes the manager.
bool m_shuttingDown
Shutdown flag.
Definition Api.h:196
Cpl::System::TimerComposer< Api > m_timer
20Hz tick timer
Definition Api.h:154
Cpl::Dm::SubscriberComposer< Api, Cpl::Dm::Mp::Bool > m_obSleepReqMP
Subscriber.
Definition Api.h:145
ScreenApi * m_curScreenHdl
Current Screen.
Definition Api.h:184
StaticScreenApi * m_pendingHaltScr
Pending transition to the error screen.
Definition Api.h:190
Cpl::Dm::Mp::Bool & m_mpDisplaySleepRequest
Sleep request MP (true:= turn off the display)
Definition Api.h:163
void shutdownMp_changed(MpStaticScreenApiPtr &modelPointThatChanged, Cpl::Dm::SubscriberApi &clientObserver) noexcept
MP Change notification.
uint32_t m_timerMarker
Timer marker of last Tick call.
Definition Api.h:187
void popTo(ScreenApi &returnToScreen) noexcept
See Ajax::ScreenMgr::Navigation.
Cpl::Dm::SubscriberComposer< Api, MpStaticScreenApiPtr > m_obShutdownReqMP
Subscriber.
Definition Api.h:148
void eventQueueCountMp_changed(Cpl::Dm::Mp::Uint32 &modelPointThatChanged, Cpl::Dm::SubscriberApi &clientObserver) noexcept
MP Change notification.
bool m_halted
The UI is halted (due to an application error)
Definition Api.h:193
Cpl::Container::RingBufferMP< AjaxScreenMgrEvent_T > & m_eventQueue
Thread safe Event queue.
Definition Api.h:175
void transitionToHaltScreen() noexcept
Helper method.
Api(Cpl::Dm::MailboxServer &uiMbox, MpScreenApiPtr &homeScreenMP, MpStaticScreenApiPtr &haltUiMP, Cpl::Dm::Mp::Bool &displaySleepRequestMP, MpStaticScreenApiPtr &shutdownMP, DisplayApi &display, NavigationElement memoryForNavigationStack[], size_t numElementsInNavigtationStackArray, Cpl::Container::RingBufferMP< AjaxScreenMgrEvent_T > &eventRingBuffer)
Constructor.
MpStaticScreenApiPtr & m_mpHaltUi
Halt screen MP.
Definition Api.h:160
Cpl::Dm::SubscriberComposer< Api, MpScreenApiPtr > m_obHomeScreenMP
Subscriber.
Definition Api.h:139
bool isCurrentScreenHaltError() noexcept
See Ajax::ScreenMgr::Navigation.
void haltUiMp_changed(MpStaticScreenApiPtr &modelPointThatChanged, Cpl::Dm::SubscriberApi &clientObserver) noexcept
MP Change notification.
bool m_opened
My open state.
Definition Api.h:199
MpScreenApiPtr & m_mpHomeScreen
Home screen MP.
Definition Api.h:157
Cpl::Container::DList< NavigationElement > m_freeStackMemoryList
Free 'memory' for the navigation stack.
Definition Api.h:178
void popToHome() noexcept
See Ajax::ScreenMgr::Navigation.
Cpl::Container::DList< NavigationElement > m_navigationStack
The Navigation stack.
Definition Api.h:181
MpStaticScreenApiPtr & m_mpShutdownScreen
Shutdown request MP.
Definition Api.h:166
DisplayApi & m_display
Handle to the 'display'.
Definition Api.h:172
void request(CloseMsg &msg)
Shutdowns the manager.
void sleepRequestMp_changed(Cpl::Dm::Mp::Bool &modelPointThatChanged, Cpl::Dm::SubscriberApi &clientObserver) noexcept
MP Change notification.
ScreenApi * m_homeScreenHdl
Current Home Screen Handle.
Definition Api.h:169
void timerExpired(void)
20Hz timer expired
ScreenApi * getCurrentScreen() noexcept
See Ajax::ScreenMgr::Navigation.
void push(ScreenApi &newScreen) noexcept
See Ajax::ScreenMgr::Navigation.
void pop(unsigned count=1) noexcept
See Ajax::ScreenMgr::Navigation.
This class defines the Screen Manager's interface to Graphic library.
Definition DisplayApi.h:29
This class provides a concrete implementation for a Point who's data is a ScreenApi pointer.
Definition MpScreenApiPtr.h:41
This class provides a concrete implementation for a Point who's data is a StaticScreenApi pointer.
Definition MpStaticScreenApiPtr.h:42
This class defines the interface - used by ScreenApi instances - to navigate to other screen instance...
Definition Navigation.h:27
This class defines the interface for a 'Screen'.
Definition ScreenApi.h:31
This class defines interface for Screens that only contain static data.
Definition StaticScreenApi.h:31
This class is used by the Container classes to implement a various types of DOUBLY linked containers.
Definition Item.h:91
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This class extends the Cpl::Dm::EventLoop and Cpl::Itc:Mailbox classes to support the asynchronous ch...
Definition MailboxServer.h:43
This class provides a concrete implementation for a Point who's data is a bool.
Definition Bool.h:40
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.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20