GM6000 Digital Heater Controller Branch: main
SDX-1330
FatalError.h
Go to the documentation of this file.
1#ifndef Cpl_System_FatalError_h_
2#define Cpl_System_FatalError_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 <stddef.h>
17#include "colony_config.h"
18
19/** Specifies the default value used for the application exit code when
20 terminating due to a fatal error.
21 */
22#ifndef OPTION_CPL_SYSTEM_FATAL_ERROR_EXIT_CODE
23#define OPTION_CPL_SYSTEM_FATAL_ERROR_EXIT_CODE 2
24#endif
25
26
27///
28namespace Cpl {
29///
30namespace System {
31
32
33/** This class defines methods for handling fatal errors encountered by
34 an application. The implementation of the methods is platform
35 dependent.
36 */
38{
39public:
40 /** This function is used to process/log a FATAL error. The supplied error
41 message will be logged to a "storage media" along with other useful
42 info such as the current task, stack dump, etc. In addition, THE
43 APPLICATION AND/OR SYSTEM WILL BE "STOPPED". Stopped can mean the
44 application/system is exited, restarted, paused forever, etc. The
45 type of "storage media", additional info, stopped behavior, etc.
46 is defined by the selected/linked implementation.
47
48 NOTE: Applications, in general should NOT call this method - the
49 application should be DESIGNED to handle and recover from errors that it
50 encounters/detects.
51 */
52 static void log( const char* message );
53
54 /** Same as above, but "value" is also logged. This method allows additional
55 information to be logged without resulting to a string formating call
56 (which may not work since something really bad just happen).
57 */
58 static void log( const char* message, size_t value );
59
60 /// Printf style formatted message
61 static void logf( const char* format, ... );
62
63
64public:
65 /** Same as log(..) method, except NO "...other useful info
66 such as current task,..." is logged, AND the "storage media" is
67 restricted to 'media' that is ALWAYS available.
68
69 This allows routines that are supplying the extra info OR routines that
70 write to media to be able to log fatal errors WITHOUT creating a
71 recursive death loop.
72 */
73 static void logRaw( const char* message );
74
75 /// Same as log(..) method, except NO 'extra info' and restricted media
76 static void logRaw( const char* message, size_t value );
77};
78
79
80}; // end namespaces
81};
82#endif // end header latch
83
This class defines methods for handling fatal errors encountered by an application.
Definition FatalError.h:38
static void logRaw(const char *message, size_t value)
Same as log(..) method, except NO 'extra info' and restricted media.
static void logf(const char *format,...)
Printf style formatted message.
static void log(const char *message, size_t value)
Same as above, but "value" is also logged.
static void logRaw(const char *message)
Same as log(..) method, except NO "...other useful info such as current task,..." is logged,...
static void log(const char *message)
This function is used to process/log a FATAL error.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20