GM6000 Digital Heater Controller Branch: main
SDX-1330
MockScreen.h
Go to the documentation of this file.
1#ifndef Ajax_ScreenMgr_NullScreen_h_
2#define Ajax_ScreenMgr_NullScreen_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
17
18///
19namespace Ajax {
20///
21namespace ScreenMgr {
22
23
24/** This class implements a 'Mock' ScreenApi instances. The intended usage
25 is for unit tests
26 */
27class MockScreen : public ScreenApi
28{
29public:
30 /// Constructor
31 MockScreen( const char* name )
32 : m_name( name )
33 , m_enterCount( 0 )
34 , m_exitCount( 0 )
35 , m_sleepCount( 0 )
36 , m_wakeCount( 0 )
37 , m_dispatchCount( 0 )
38 , m_tickCount( 0 )
39 , m_refreshCount( 0 )
40 , m_lastTimeStamp( { 0,0 } )
41 , m_refreshResult( true )
42 , m_tickResult( false )
43 {
44 }
45
46 /// Screen name
47 const char* m_name;
48 /// Call counter
49 unsigned m_enterCount;
50 /// Call counter
51 unsigned m_exitCount;
52 /// Call counter
53 unsigned m_sleepCount;
54 /// Call counter
55 unsigned m_wakeCount;
56 /// Call counter
58 /// Call counter
59 unsigned m_tickCount;
60 /// Call counter
62 /// Last Event
64 /// Last Timestamp
66 /// Return value for refresh
68 /// Return value for tick
70
71public:
72 /// See Ajax::ScreenMgr::ScreenApi
73 void enter( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept
74 {
76 m_lastTimeStamp = currentElapsedTime;
77 }
78
79 /// See Ajax::ScreenMgr::ScreenApi
80 void exit( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept
81 {
83 m_lastTimeStamp = currentElapsedTime;
84 }
85
86 /// See Ajax::ScreenMgr::ScreenApi
87 void sleep( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept
88 {
90 m_lastTimeStamp = currentElapsedTime;
91 }
92
93 /// See Ajax::ScreenMgr::ScreenApi
94 void wake( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept
95 {
97 m_lastTimeStamp = currentElapsedTime;
98 }
99
100 /// See Ajax::ScreenMgr::ScreenApi
101 void dispatch( AjaxScreenMgrEvent_T event, Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept
102 {
104 m_lastEvent = event;
105 m_lastTimeStamp = currentElapsedTime;
106 }
107
108 /// See Ajax::ScreenMgr::ScreenApi
109 bool tick( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept
110 {
111 m_tickCount++;
112 m_lastTimeStamp = currentElapsedTime;
113 return m_tickResult;
114 }
115
116 /// See Ajax::ScreenMgr::ScreenApi
117 bool refresh( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept
118 {
120 m_lastTimeStamp = currentElapsedTime;
121 return m_refreshResult;
122 }
123};
124
125/** This class implements a 'Mock' StaticScreenApi instances. The intended usage
126 is for unit tests
127 */
129{
130public:
131 /// Constructor
132 MockStaticScreen( const char* name )
133 : m_name( name )
134 , m_paintCount( 0 )
135 , m_lastTimeStamp( { 0,0 } )
136 {
137 }
138
139 /// Screen name
140 const char* m_name;
141 /// Call counter
142 unsigned m_paintCount;
143 /// Last Timestamp
145
146public:
147 /// See Ajax::ScreenMgr::ScreenApi
148 void paint( Cpl::System::ElapsedTime::Precision_T currentElapsedTime ) noexcept
149 {
150 m_paintCount++;
151 m_lastTimeStamp = currentElapsedTime;
152 }
153};
154
155} // end namespaces
156}
157#endif // end header latch
158
#define AjaxScreenMgrEvent_T
Application specific type for Events.
Definition Event.h:21
This class implements a 'Mock' ScreenApi instances.
Definition MockScreen.h:28
const char * m_name
Screen name.
Definition MockScreen.h:47
void sleep(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
Definition MockScreen.h:87
void wake(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
Definition MockScreen.h:94
Cpl::System::ElapsedTime::Precision_T m_lastTimeStamp
Last Timestamp.
Definition MockScreen.h:65
void dispatch(AjaxScreenMgrEvent_T event, Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
Definition MockScreen.h:101
MockScreen(const char *name)
Constructor.
Definition MockScreen.h:31
bool m_tickResult
Return value for tick.
Definition MockScreen.h:69
unsigned m_wakeCount
Call counter.
Definition MockScreen.h:55
AjaxScreenMgrEvent_T m_lastEvent
Last Event.
Definition MockScreen.h:63
unsigned m_sleepCount
Call counter.
Definition MockScreen.h:53
unsigned m_enterCount
Call counter.
Definition MockScreen.h:49
unsigned m_refreshCount
Call counter.
Definition MockScreen.h:61
bool refresh(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
Definition MockScreen.h:117
bool tick(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
Definition MockScreen.h:109
unsigned m_dispatchCount
Call counter.
Definition MockScreen.h:57
void exit(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
Definition MockScreen.h:80
unsigned m_exitCount
Call counter.
Definition MockScreen.h:51
unsigned m_tickCount
Call counter.
Definition MockScreen.h:59
void enter(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
Definition MockScreen.h:73
bool m_refreshResult
Return value for refresh.
Definition MockScreen.h:67
This class implements a 'Mock' StaticScreenApi instances.
Definition MockScreen.h:129
MockStaticScreen(const char *name)
Constructor.
Definition MockScreen.h:132
Cpl::System::ElapsedTime::Precision_T m_lastTimeStamp
Last Timestamp.
Definition MockScreen.h:144
unsigned m_paintCount
Call counter.
Definition MockScreen.h:142
void paint(Cpl::System::ElapsedTime::Precision_T currentElapsedTime) noexcept
See Ajax::ScreenMgr::ScreenApi.
Definition MockScreen.h:148
const char * m_name
Screen name.
Definition MockScreen.h:140
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
The 'Ajax' namespace is the root name space all GM6000 application specific source code.
Data type for time in seconds with a 'fractional' millisecond precision.
Definition ElapsedTime.h:35