GM6000 Digital Heater Controller Branch: main
SDX-1330
MAppApi.h
Go to the documentation of this file.
1#ifndef Cpl_MApp_MAppApi_h_
2#define Cpl_MApp_MAppApi_h_
3/*-----------------------------------------------------------------------------
4* COPYRIGHT_HEADER_TO_BE_FILLED_LATER
5*----------------------------------------------------------------------------*/
6/** @file */
7
8
9#include "colony_config.h"
11
12
13/// CPL Trace Section identifier for a common trace output section
14#ifndef OPTION_CPL_MAPP_TRACE_SECTION
15#define OPTION_CPL_MAPP_TRACE_SECTION "MApp"
16#endif
17
18///
19namespace Cpl {
20///
21namespace MApp {
22
23
24/** This abstract class defines the interface for a Micro Application (MApp).
25 A MApp is essentially a 'mini-application' that performs a series of steps
26 and typically reports its output using the CPL_SYSTEM_TRACE_MSG() method.
27
28 Multiple MApp instances can be executing at the same. However, all MApps
29 execute in a single/same thread.
30
31 The following are the 'thread safety' requirements for a MApp:
32 o Data can safely be exchanged via Model Points
33 o The application can safely pass initial settings, configuration,
34 options when the MApp is started
35 */
37{
38public:
39 /** This method returns the MApp name. The MApp name must an printable
40 ASCII string with NO whitespace. The name is used to uniquely
41 identify the individual MApp
42 */
43 virtual const char* getName() const noexcept = 0;
44
45 /** This method returns brief description/summary of what the MApp does.
46 Typically this information will be displayed on the Debug console to
47 aid the user on how to execute the MApp. The content/verbosity of the
48 text is MApp specific.
49 */
50 virtual const char* getDescription() const noexcept = 0;
51
52 /** This method returns help for the MApp (optional) command line arguments.
53 Typically this information will be displayed on the Debug console to
54 aid the user on how to execute the MApp. The content/verbosity of the
55 text is MApp specific.
56 */
57 virtual const char* getUsage() const noexcept = 0;
58
59public:
60 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
61 by other classes in the Cpl::MApp namespace. The Application should
62 NEVER call this method.
63
64 This method is used to perform any needed initialization on start-up of
65 Application. This method is called when the MApp Manager is opened.
66
67 This method MUST be called in the thread that the MApp executes in.
68 */
69 virtual void intialize_() noexcept = 0;
70
71 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
72 by other classes in the Cpl::MApp namespace. The Application should
73 NEVER call this method.
74
75 This method is used to perform any needed shutdown when the application
76 is shutdown. This method is called when the MApp Manager is closed.
77
78 This method MUST be called in the thread that the MApp executes in.
79 */
80 virtual void shutdown_() noexcept = 0;
81
82
83public:
84 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
85 by other classes in the Cpl::MApp namespace. The Application should
86 NEVER call this method, instead the Application must call the Manager
87 to start a MApp.
88
89 If the client has no 'optionalArgs' to pass to the MApp instance - it must
90 provide an empty/blank null terminated string, i.e can NOT pass a nullptr.
91
92 This method is used to start a MApp. If the MApp is unable to start then
93 false is returned; else true is returned.
94
95 This method MUST be called in the thread that the MApp executes in.
96
97 Note: The MApp is allowed to perform destructive parsing on 'optionalArgs',
98 however it must honor the string len of 'optionalArgs'
99 */
100 virtual bool start_( char* optionalArgs ) noexcept = 0;
101
102 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
103 by other classes in the Cpl::MApp namespace. The Application should
104 NEVER call this method, instead the Application must call the Manager
105 to stop a MApp.
106
107 This method is used to stop a MApp.
108 */
109 virtual void stop_() noexcept = 0;
110
111public:
112 /// Virtual destructor
113 virtual ~MAppApi() {}
114};
115
116}; // end namespaces
117};
118#endif // end header latch
This abstract class represents a item that can be contained in an Map (aka a sorted list implemented ...
Definition MapItem.h:33
This abstract class defines the interface for a Micro Application (MApp).
Definition MAppApi.h:37
virtual void intialize_() noexcept=0
This method has PACKAGE Scope, i.e.
virtual void stop_() noexcept=0
This method has PACKAGE Scope, i.e.
virtual void shutdown_() noexcept=0
This method has PACKAGE Scope, i.e.
virtual const char * getUsage() const noexcept=0
This method returns help for the MApp (optional) command line arguments.
virtual const char * getName() const noexcept=0
This method returns the MApp name.
virtual const char * getDescription() const noexcept=0
This method returns brief description/summary of what the MApp does.
virtual bool start_(char *optionalArgs) noexcept=0
This method has PACKAGE Scope, i.e.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20