GM6000 Digital Heater Controller Branch: main
SDX-1330
Shutdown.h
Go to the documentation of this file.
1#ifndef Cpl_System_Shutdown_h_
2#define Cpl_System_Shutdown_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-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15
16#include "colony_config.h"
17#include "Cpl/Container/Item.h"
18
19
20/** Specifies the default value used for the application exit code when
21 terminating 'successfully'
22 */
23#ifndef OPTION_CPL_SYSTEM_SHUTDOWN_SUCCESS_ERROR_CODE
24#define OPTION_CPL_SYSTEM_SHUTDOWN_SUCCESS_ERROR_CODE 0
25#endif
26
27
28 /** Specifies the default value used for the application exit code when
29 terminating 'on a failure'
30 */
31#ifndef OPTION_CPL_SYSTEM_SHUTDOWN_FAILURE_ERROR_CODE
32#define OPTION_CPL_SYSTEM_SHUTDOWN_FAILURE_ERROR_CODE 1
33#endif
34
35
36 ///
37namespace Cpl {
38///
39namespace System {
40
41
42/** This class defines methods for forcibly terminating the application.
43 How gracefully (or not) the shutdown is dependent on the actual platform
44 implementation. In addition, what 'shutdown' means is also platform
45 dependent, e.g. on an embedded platform it may invoke a reboot and/or
46 restart of the application.
47
48 Since this is a forcibly shutdown there are no guaranties with respect to
49 releasing resources.
50
51 The interface does provide for callback method(s) to be called on shutdown.
52 These methods are guaranteed to be called (or at least attempted to be
53 called in the case of true code failure).
54 */
56{
57public:
58 /** This call defines the callback interface that is used when the
59 application is shutdown
60 */
62 {
63 public:
64 /** This method is called when the application is shutting down. The
65 method is passed 'exit_code' which is the exit code provided by the
66 application when called the Shutdown interface. The return value
67 from the handler will be used as the application shutdown exit code.
68 To leave the exit code unaltered - return the passed in 'exit_code'.
69
70 Notes:
71
72 o The final exit code is the serialized 'sum' of the all of the
73 shutdown handlers.
74 o The notify() method is called in the thread context that
75 initiated the shutdown.
76 */
77 virtual int notify( int exit_code ) = 0;
78
79 public:
80 /// Ensure the destructor is virtual
81 virtual ~Handler() {}
82
83 };
84
85
86public:
87 /** This function will force a shutdown of the application with a
88 'success' exit code. What 'forced' means is dependent on the
89 actual platform. All registered callback methods will be called
90 before exiting the application.
91 */
92 static int success( void );
93
94 /** This function will force a shutdown of the application with a 'failure'
95 exit code. The caller can optional specify an exit code. What 'forced'
96 means is dependent on the actual platform. All registered callback
97 methods will be called before exiting the application. The returned
98 value - assuming the method actually returns - will be the 'final'
99 exit code (the passed in exit_code can be alter by registered Shutdown
100 Handlers).
101
102 Note: The recommended approach for exiting the application due to an
103 error is to use the Cpl::System::FatalError interface so that
104 the 'why' of the failure has the potential for being captured.
105 */
107
108
109public:
110 /** This method is used to register a callback method that will be called
111 when success() or failure() is called and before the application exits.
112 There is NO guaranteed order on when the register callback methods
113 (when there is multiple register callbacks) will be called OR with
114 respect to application code running. The only guarantee is that the
115 callbacks will be called AFTER the above methods are called and BEFORE
116 the application shutdown.
117
118 During shutdown, the 'notify()' method of 'instanceToRegister'
119 is called.
120 */
121 static void registerHandler( Shutdown::Handler& instanceToRegister );
122
123
124public:
125 /** This COMPONENT Scoped method. The application SHOULD not directly
126 access this method (unless you are REALLY REALLY REALLY sure you
127 know what you are doing).
128
129 Helper method used to notify registered shutdown handlers
130 */
131 static int notifyShutdownHandlers_( int exit_code );
132
133};
134
135
136}; // end namespaces
137};
138#endif // end header latch
139
#define OPTION_CPL_SYSTEM_SHUTDOWN_FAILURE_ERROR_CODE
Specifies the default value used for the application exit code when terminating 'on a failure'.
Definition Shutdown.h:32
This class is used by the Container classes to implement a various types of singly linked containers.
Definition Item.h:33
This call defines the callback interface that is used when the application is shutdown.
Definition Shutdown.h:62
virtual ~Handler()
Ensure the destructor is virtual.
Definition Shutdown.h:81
virtual int notify(int exit_code)=0
This method is called when the application is shutting down.
This class defines methods for forcibly terminating the application.
Definition Shutdown.h:56
static int failure(int exit_code=OPTION_CPL_SYSTEM_SHUTDOWN_FAILURE_ERROR_CODE)
This function will force a shutdown of the application with a 'failure' exit code.
static void registerHandler(Shutdown::Handler &instanceToRegister)
This method is used to register a callback method that will be called when success() or failure() is ...
static int success(void)
This function will force a shutdown of the application with a 'success' exit code.
static int notifyShutdownHandlers_(int exit_code)
This COMPONENT Scoped method.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20