GM6000 Digital Heater Controller Branch: main
SDX-1330
ManagerApi.h
Go to the documentation of this file.
1#ifndef Cpl_MApp_ManagerApi_h_
2#define Cpl_MApp_ManagerApi_h_
3/*-----------------------------------------------------------------------------
4* COPYRIGHT_HEADER_TO_BE_FILLED_LATER
5*----------------------------------------------------------------------------*/
6/** @file */
7
8
9#include "Cpl/MApp/MAppApi.h"
10#include "Cpl/Text/String.h"
11
12///
13namespace Cpl {
14///
15namespace MApp {
16
17
18/** This abstract class defines the "manager" interface to for starting,
19 stopping, etc. individual MApp instances.
20
21 NOTE: ALL of the following method can ONLY be called from a different thread
22 than where the MApp instances execute! This is because synchronous
23 ITC is (assumed to be) used for the implementation.
24 */
26{
27public:
28 /** This method is used to the specified MApp. If a MApp is currently executing,
29 that MApp will be stopped before the new MApp is started. If the specified
30 MApp name is not found false is returned; else true is returned.
31
32 NOTE: If the client has no 'optionalArgs' to pass to the MApp instance,
33 it must provide an empty/blank null terminated string, i.e can
34 NOT pass a nullptr.
35 */
36 virtual bool startMApp( const char* mappName, char* optionalArgs ) noexcept = 0;
37
38 /** This method is used to stop the specified running MApp. If the MApp
39 is currently not in the started state, then the method does nothing
40 and false is returned; else true is returned.
41 */
42 virtual bool stopMApp( const char* mappName ) noexcept = 0;
43
44 /** This method is used to stop ALL currently started MApp instances.
45 */
46 virtual void stopAllMApps() noexcept = 0;
47
48public:
49 /** This method returns a list of started MApps. If the number of started
50 MApps exceeded the provided buffer space false is returned; else
51 return true is returned. The number of instances found is returned via
52 'numElemsFound'.
53
54 NOTE: There is no order to the returned instances.
55 */
56 virtual bool getAvailableMApps( Cpl::MApp::MAppApi* dstList[], size_t dstMaxElements, size_t& numElemsFound ) noexcept = 0;
57
58
59 /** This method returns a list of started MApps. If the number of started
60 MApps exceeded the provided buffer space false is returned; else
61 return true is returned. The number of instances found is returned via
62 'numElemsFound'.
63
64 NOTE: There is no order to the returned instances.
65 */
66 virtual bool getStartedMApps( Cpl::MApp::MAppApi* dstList[], size_t dstMaxElements, size_t& numElemsFound ) noexcept = 0;
67
68 /** This method returns a pointer to the named MApp instance. If no such
69 MApp exists, a null pointer is returned;
70 */
71 virtual Cpl::MApp::MAppApi* lookUpMApp( const char* mappName ) noexcept = 0;
72
73
74public:
75 /// Virtual destructor
76 virtual ~ManagerApi() {}
77};
78
79}; // end namespaces
80};
81#endif // end header latch
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
virtual bool getAvailableMApps(Cpl::MApp::MAppApi *dstList[], size_t dstMaxElements, size_t &numElemsFound) noexcept=0
This method returns a list of started MApps.
virtual Cpl::MApp::MAppApi * lookUpMApp(const char *mappName) noexcept=0
This method returns a pointer to the named MApp instance.
virtual void stopAllMApps() noexcept=0
This method is used to stop ALL currently started MApp instances.
virtual bool startMApp(const char *mappName, char *optionalArgs) noexcept=0
This method is used to the specified MApp.
virtual bool getStartedMApps(Cpl::MApp::MAppApi *dstList[], size_t dstMaxElements, size_t &numElemsFound) noexcept=0
This method returns a list of started MApps.
virtual bool stopMApp(const char *mappName) noexcept=0
This method is used to stop the specified running MApp.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20