GM6000 Digital Heater Controller Branch: main
SDX-1330
Manager.h
Go to the documentation of this file.
1#ifndef Cpl_MApp_Manager_h_
2#define Cpl_MApp_Manager_h_
3/*-----------------------------------------------------------------------------
4* COPYRIGHT_HEADER_TO_BE_FILLED_LATER
5*----------------------------------------------------------------------------*/
6/** @file */
7
8
9#include "Cpl/Itc/CloseSync.h"
11#include "Cpl/MApp/ManagerApi.h"
12#include "Cpl/MApp/Requests.h"
13#include "Cpl/Container/Map.h"
14
15///
16namespace Cpl {
17///
18namespace MApp {
19
20
21/** This concrete class implements the MApp Manager. The MApp Manager is
22 the 'public facing' entity that is responsible for starting, stopping, etc.
23 MApp instances.
24 */
25class Manager:
26 public ManagerApi,
28 public StartMAppRequest,
29 public StopMAppRequest,
30 public StopAllMAppRequest,
34{
35public:
36 /// Constructor
38 Cpl::Container::Map<MAppApi>& listOfMApps );
39
40 /// Destructor
42
43public:
44 /// Perform the in-thread initialization of the service
46
47 /// Performs the in-thread shutdown of the service
49
50
51public:
52 /// See Cpl::MApp::MAppApi
53 bool startMApp( const char* name, char* args ) noexcept;
54
55 /// See Cpl::MApp::MAppApi
56 bool stopMApp( const char* name ) noexcept;
57
58 /// See Cpl::MApp::MAppApi
59 void stopAllMApps() noexcept;
60
61 /// See Cpl::MApp::MAppApi
62 bool getAvailableMApps( Cpl::MApp::MAppApi* dstList[], size_t dstMaxElements, size_t& numElemsFound ) noexcept;
63
64 /// See Cpl::MApp::MAppApi
65 bool getStartedMApps( Cpl::MApp::MAppApi* dstList[], size_t dstMaxElements, size_t& numElemsFound ) noexcept;
66
67 /// See Cpl::MApp::MAppApi
68 Cpl::MApp::MAppApi* lookUpMApp( const char* mappName ) noexcept;
69
70
71public:
72 /// Set Cpl::MApp::Requests
73 void request( StartMAppMsg& msg );
74
75 /// Set Cpl::MApp::Requests
76 void request( StopMAppMsg& msg );
77
78 /// Set Cpl::MApp::Requests
79 void request( StopAllMAppMsg& msg );
80
81 /// Set Cpl::MApp::Requests
83
84 /// Set Cpl::MApp::Requests
86
87 /// Set Cpl::MApp::Requests
88 void request( LookupMAppMsg& msg );
89
90protected:
91 /// List of inactive MApps
92 Cpl::Container::Map<MAppApi>& m_inactiveMApps;
93
94 /// List of started MApps
95 Cpl::Container::Map<MAppApi> m_startedMApps;
96
97 /// My open/close state
99};
100
101}; // end namespaces
102};
103#endif // end header latch
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 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
This abstract class define ITC message type and payload for the application to get list of all of the...
Definition Requests.h:153
This abstract class define ITC message type and payload for the application to Get a list of started ...
Definition Requests.h:196
This abstract class define ITC message type and payload for the application to look-up a MApp by name...
Definition Requests.h:238
This abstract class defines the interface for a Micro Application (MApp).
Definition MAppApi.h:37
This abstract class defines the "manager" interface to for starting, stopping, etc.
Definition ManagerApi.h:26
This concrete class implements the MApp Manager.
Definition Manager.h:34
void stopAllMApps() noexcept
See Cpl::MApp::MAppApi.
bool getAvailableMApps(Cpl::MApp::MAppApi *dstList[], size_t dstMaxElements, size_t &numElemsFound) noexcept
See Cpl::MApp::MAppApi.
Manager(Cpl::Dm::MailboxServer &myMbox, Cpl::Container::Map< MAppApi > &listOfMApps)
Constructor.
~Manager()
Destructor.
Definition Manager.h:41
Cpl::Container::Map< MAppApi > & m_inactiveMApps
List of inactive MApps.
Definition Manager.h:92
bool m_opened
My open/close state.
Definition Manager.h:98
bool getStartedMApps(Cpl::MApp::MAppApi *dstList[], size_t dstMaxElements, size_t &numElemsFound) noexcept
See Cpl::MApp::MAppApi.
bool stopMApp(const char *name) noexcept
See Cpl::MApp::MAppApi.
void request(Cpl::Itc::CloseRequest::CloseMsg &msg)
Performs the in-thread shutdown of the service.
Cpl::Container::Map< MAppApi > m_startedMApps
List of started MApps.
Definition Manager.h:95
bool startMApp(const char *name, char *args) noexcept
See Cpl::MApp::MAppApi.
Cpl::MApp::MAppApi * lookUpMApp(const char *mappName) noexcept
See Cpl::MApp::MAppApi.
void request(Cpl::Itc::OpenRequest::OpenMsg &msg)
Perform the in-thread initialization of the service.
This abstract class define ITC message type and payload for the application to start a MApp.
Definition Requests.h:24
This abstract class define ITC message type and payload for the application to stop the current MApp.
Definition Requests.h:118
This abstract class define ITC message type and payload for the application to stop the current MApp.
Definition Requests.h:74
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20