GM6000 Digital Heater Controller Branch: main
SDX-1330
Requests.h
Go to the documentation of this file.
1#ifndef Cpl_MApp_Requests_h_
2#define Cpl_MApp_Requests_h_
3/*-----------------------------------------------------------------------------
4* COPYRIGHT_HEADER_TO_BE_FILLED_LATER
5*----------------------------------------------------------------------------*/
6/** @file */
7
8
11#include "Cpl/Itc/SAP.h"
12#include "Cpl/MApp/MAppApi.h"
13
14///
15namespace Cpl {
16///
17namespace MApp {
18
19
20/** This abstract class define ITC message type and payload for the application
21 to start a MApp
22 */
24{
25public:
26 /// SAP for this API
28
29public:
30 /// Payload for Message: GetLaMApp
31 class Payload
32 {
33 public:
34 /// INPUT: The name of the MApp to run
35 const char* mappName;
36
37 /// INPUT: Optional 'command line' arguments for the MApp
38 char* mappArgs;
39
40 /** OUTPUT: results
41 true = MApp was found and started
42 false = no such MApp
43 */
44 bool success;
45
46 public:
47 /// Constructor.
48 Payload( const char* name, char* args )
49 :mappName( name ), mappArgs( args), success( false )
50 {
51 }
52 };
53
54
55public:
56 /// Message Type: Start
58
59 /// Request: Start message
60 virtual void request( StartMAppMsg& msg ) = 0;
61
62public:
63 /// Virtual Destructor
64 virtual ~StartMAppRequest() {}
65};
66
67
68
69////////////////////////////////////////////////////////////////////////////////
70/** This abstract class define ITC message type and payload for the application
71 to stop the current MApp
72 */
74{
75public:
76 /// SAP for this API
78
79public:
80 /// Payload for Message: StopMApp
81 class Payload
82 {
83 public:
84 /// INPUT: The name of the MApp to stop
85 const char* mappName;
86
87 /** OUTPUT: results
88 true = the MApp was stopped
89 false = the specified MApp was not the started state
90 */
91 bool success;
92
93 public:
94 /// Constructor.
95 Payload( const char* name )
96 :mappName( name ), success( false )
97 {
98 }
99 };
100
101public:
102 /// Message Type: Stop
104
105 /// Request: Stop message
106 virtual void request( StopMAppMsg& msg ) = 0;
107
108public:
109 /// Virtual Destructor
110 virtual ~StopMAppRequest() {}
111};
112
113////////////////////////////////////////////////////////////////////////////////
114/** This abstract class define ITC message type and payload for the application
115 to stop the current MApp
116 */
118{
119public:
120 /// SAP for this API
122
123public:
124 /// Payload for Message: StopMApp (No actual Data -->just a type name)
126 {
127 public:
128 /// Constructor.
130 {
131 }
132 };
133
134public:
135 /// Message Type: Stop
137
138 /// Request: Stop message
139 virtual void request( StopAllMAppMsg& msg ) = 0;
140
141public:
142 /// Virtual Destructor
144};
145
146
147////////////////////////////////////////////////////////////////////////////////
148/** This abstract class define ITC message type and payload for the application
149 to get list of all of the MApps instances.
150
151 */
153{
154public:
155 /// SAP for this API
157
158public:
159 /// Payload for Message:
161 {
162 public:
163 /// INPUT/OUTPUT: Memory to store the returned list
165
166 /// INPUT/OUTPUT: Maximum number of elements that can be stored in 'dstList'. Set to zero for the 'overflow' error case
168
169 /// OUTPUT: Number of items returned
171
172 public:
173 /// Constructor.
174 Payload( Cpl::MApp::MAppApi** list, size_t maxElems ) : dstList( list ), dstMaxElements( maxElems ), numElements(0) {}
175 };
176
177public:
178 /// Message Type: GetAvailable
180
181 /// Request: GetAvailable message
182 virtual void request( GetAvailableMAppMsg& msg ) = 0;
183
184public:
185 /// Virtual Destructor
187};
188
189
190////////////////////////////////////////////////////////////////////////////////
191/** This abstract class define ITC message type and payload for the application
192 to Get a list of started MApp instances
193
194 */
196{
197public:
198 /// SAP for this API
200
201public:
202 /// Payload for Message:
204 {
205 public:
206 /// INPUT/OUTPUT: Memory to store the returned list
208
209 /// INPUT/OUTPUT: Maximum number of elements that can be stored in 'dstList'. Set to zero for the 'overflow' error case
211
212 /// OUTPUT: Number of items returned
214
215 public:
216 /// Constructor.
217 Payload( Cpl::MApp::MAppApi** list, size_t maxElems ) : dstList( list ), dstMaxElements( maxElems ), numElements( 0 ) {}
218 };
219
220public:
221 /// Message Type: GetStarted
223
224 /// Request: GetStarted message
225 virtual void request( GetStartedMAppMsg& msg ) = 0;
226
227public:
228 /// Virtual Destructor
230};
231
232////////////////////////////////////////////////////////////////////////////////
233/** This abstract class define ITC message type and payload for the application
234 to look-up a MApp by name
235
236 */
238{
239public:
240 /// SAP for this API
242
243public:
244 /// Payload for Message:
246 {
247 public:
248 /// INPUT: Name of the MApp instance to lookup
249 const char* name;
250
251 /// OUTPUT: Found instance (or null if not found)
253
254 public:
255 /// Constructor.
256 Payload( const char* nameToLookup ): name(nameToLookup), foundInstance(nullptr) {}
257 };
258
259public:
260 /// Message Type: Lookup
262
263 /// Request: Lookup message
264 virtual void request( LookupMAppMsg& msg ) = 0;
265
266public:
267 /// Virtual Destructor
269};
270
271
272}; // end namespaces
273};
274#endif // end header latch
This template class represents a service request message to a particular server.
Definition RequestMessage.h:34
This concrete template class represents the interface to a ITC Service Access Point (SAP).
Definition SAP.h:30
Payload for Message:
Definition Requests.h:161
size_t numElements
OUTPUT: Number of items returned.
Definition Requests.h:170
Payload(Cpl::MApp::MAppApi **list, size_t maxElems)
Constructor.
Definition Requests.h:174
size_t dstMaxElements
INPUT/OUTPUT: Maximum number of elements that can be stored in 'dstList'. Set to zero for the 'overfl...
Definition Requests.h:167
Cpl::MApp::MAppApi ** dstList
INPUT/OUTPUT: Memory to store the returned list.
Definition Requests.h:164
This abstract class define ITC message type and payload for the application to get list of all of the...
Definition Requests.h:153
virtual void request(GetAvailableMAppMsg &msg)=0
Request: GetAvailable message.
Cpl::Itc::SAP< GetAvailableMAppRequest > SAP
SAP for this API.
Definition Requests.h:156
virtual ~GetAvailableMAppRequest()
Virtual Destructor.
Definition Requests.h:186
Cpl::Itc::RequestMessage< GetAvailableMAppRequest, Payload > GetAvailableMAppMsg
Message Type: GetAvailable.
Definition Requests.h:179
Payload for Message:
Definition Requests.h:204
Payload(Cpl::MApp::MAppApi **list, size_t maxElems)
Constructor.
Definition Requests.h:217
Cpl::MApp::MAppApi ** dstList
INPUT/OUTPUT: Memory to store the returned list.
Definition Requests.h:207
size_t dstMaxElements
INPUT/OUTPUT: Maximum number of elements that can be stored in 'dstList'. Set to zero for the 'overfl...
Definition Requests.h:210
size_t numElements
OUTPUT: Number of items returned.
Definition Requests.h:213
This abstract class define ITC message type and payload for the application to Get a list of started ...
Definition Requests.h:196
Cpl::Itc::SAP< GetStartedMAppRequest > SAP
SAP for this API.
Definition Requests.h:199
Cpl::Itc::RequestMessage< GetStartedMAppRequest, Payload > GetStartedMAppMsg
Message Type: GetStarted.
Definition Requests.h:222
virtual ~GetStartedMAppRequest()
Virtual Destructor.
Definition Requests.h:229
virtual void request(GetStartedMAppMsg &msg)=0
Request: GetStarted message.
Payload for Message:
Definition Requests.h:246
Payload(const char *nameToLookup)
Constructor.
Definition Requests.h:256
const char * name
INPUT: Name of the MApp instance to lookup.
Definition Requests.h:249
MAppApi * foundInstance
OUTPUT: Found instance (or null if not found)
Definition Requests.h:252
This abstract class define ITC message type and payload for the application to look-up a MApp by name...
Definition Requests.h:238
virtual void request(LookupMAppMsg &msg)=0
Request: Lookup message.
Cpl::Itc::RequestMessage< LookupMAppRequest, Payload > LookupMAppMsg
Message Type: Lookup.
Definition Requests.h:261
Cpl::Itc::SAP< LookupMAppRequest > SAP
SAP for this API.
Definition Requests.h:241
virtual ~LookupMAppRequest()
Virtual Destructor.
Definition Requests.h:268
This abstract class defines the interface for a Micro Application (MApp).
Definition MAppApi.h:37
Payload for Message: GetLaMApp.
Definition Requests.h:32
const char * mappName
INPUT: The name of the MApp to run.
Definition Requests.h:35
char * mappArgs
INPUT: Optional 'command line' arguments for the MApp.
Definition Requests.h:38
Payload(const char *name, char *args)
Constructor.
Definition Requests.h:48
bool success
OUTPUT: results true = MApp was found and started false = no such MApp.
Definition Requests.h:44
This abstract class define ITC message type and payload for the application to start a MApp.
Definition Requests.h:24
Cpl::Itc::RequestMessage< StartMAppRequest, Payload > StartMAppMsg
Message Type: Start.
Definition Requests.h:57
virtual ~StartMAppRequest()
Virtual Destructor.
Definition Requests.h:64
Cpl::Itc::SAP< StartMAppRequest > SAP
SAP for this API.
Definition Requests.h:27
virtual void request(StartMAppMsg &msg)=0
Request: Start message.
Payload for Message: StopMApp (No actual Data -->just a type name)
Definition Requests.h:126
Payload()
Constructor.
Definition Requests.h:129
This abstract class define ITC message type and payload for the application to stop the current MApp.
Definition Requests.h:118
Cpl::Itc::RequestMessage< StopAllMAppRequest, Payload > StopAllMAppMsg
Message Type: Stop.
Definition Requests.h:136
virtual ~StopAllMAppRequest()
Virtual Destructor.
Definition Requests.h:143
Cpl::Itc::SAP< StopAllMAppRequest > SAP
SAP for this API.
Definition Requests.h:121
virtual void request(StopAllMAppMsg &msg)=0
Request: Stop message.
Payload for Message: StopMApp.
Definition Requests.h:82
bool success
OUTPUT: results true = the MApp was stopped false = the specified MApp was not the started state.
Definition Requests.h:91
Payload(const char *name)
Constructor.
Definition Requests.h:95
const char * mappName
INPUT: The name of the MApp to stop.
Definition Requests.h:85
This abstract class define ITC message type and payload for the application to stop the current MApp.
Definition Requests.h:74
Cpl::Itc::RequestMessage< StopMAppRequest, Payload > StopMAppMsg
Message Type: Stop.
Definition Requests.h:103
Cpl::Itc::SAP< StopMAppRequest > SAP
SAP for this API.
Definition Requests.h:77
virtual void request(StopMAppMsg &msg)=0
Request: Stop message.
virtual ~StopMAppRequest()
Virtual Destructor.
Definition Requests.h:110
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20