MagAO-X
Operations Applications Utilities Source
software_log.hpp
Go to the documentation of this file.
1 /** \file software_log.hpp
2  * \brief The MagAO-X logger software_log log type.
3  * \author Jared R. Males (jaredmales@gmail.com)
4  *
5  * \ingroup logger_types_files
6  *
7  * History:
8  * - 2018-08-18 created by JRM
9  */
10 #ifndef logger_types_software_log_hpp
11 #define logger_types_software_log_hpp
12 
14 #include "flatbuffer_log.hpp"
15 
16 namespace MagAOX
17 {
18 namespace logger
19 {
20 
21 ///Base class for software logs
22 /** Such logs are used to log software status, warnings, and errors. Does not have defaultLevel, so this can not be used as a log type in logger.
23  *
24  * \includedoc sw_logs.dox.inc
25  *
26  *
27  * \ingroup logger_types__basic
28  */
30 {
31  ///The event code
33 
34  ///The type of the message
35  struct messageT : public fbMessage
36  {
37  /// C'tor with full specification.
38  messageT( const char * file, ///< [in] The file of the error, should always be \c \_\_FILE\_\_
39  const uint32_t line, ///< [in] The line number of the error, should always be \c \_\_LINE\_\_
40  const int32_t code_errno, ///< [in] The errno code at the time of the log entry. Only errno should be passed here, so strerror can be used later.
41  const int32_t code_other, ///< [in] Some other error code, such as a return value or library code.
42  const char * expl ///< [in] explanatory text about the software event
43  )
44  {
45  auto _file = builder.CreateString(file);
46  auto _expl = builder.CreateString(expl);
47 
48  auto gs = CreateSoftware_log_fb(builder, _file, line, code_errno, code_other, _expl);
49  builder.Finish(gs);
50  }
51 
52  /// C'tor with full specification, overloaded for a std::string in explanation.
53  /** \overload
54  */
55  messageT( const char * file, ///< [in] The file of the error, should always be \c \_\_FILE\_\_
56  const uint32_t line, ///< [in] The line number of the error, should always be \c \_\_LINE\_\_
57  const int32_t code_errno, ///< [in] The errno code at the time of the log entry. Only errno should be passed here, so strerror can be used later.
58  const int32_t code_other, ///< [in] Some other error code, such as a return value or library code.
59  const std::string & expl ///< [in] explanatory text about the software event
60  )
61  {
62  auto _file = builder.CreateString(file);
63  auto _expl = builder.CreateString(expl);
64 
65  auto gs = CreateSoftware_log_fb(builder, _file, line, code_errno, code_other, _expl);
66  builder.Finish(gs);
67  }
68 
69  /// C'tor for errno only -- code explanation can be looked up later.
70  messageT( const char * file, ///< [in] The file of the error, should always be \c \_\_FILE\_\_
71  const uint32_t line, ///< [in] The line number of the error, should always be \c \_\_LINE\_\_
72  const int32_t code_errno ///< [in] The errno code at the time of the log entry. Only errno should be passed here, so strerror can be used later.
73  )
74  {
75  auto _file = builder.CreateString(file);
76 
77  auto gs = CreateSoftware_log_fb(builder, _file, line, code_errno, 0, 0);
78  builder.Finish(gs);
79  }
80 
81  /// C'tor for errno with additional explanation.
82  messageT( const char * file, ///< [in] The file of the error, should always be \c \_\_FILE\_\_
83  const uint32_t line, ///< [in] The line number of the error, should always be \c \_\_LINE\_\_
84  const int32_t code_errno, ///< [in] The errno code at the time of the log entry. Only errno should be passed here, so strerror can be used later.
85  const char * expl ///< [in] explanatory text about the software event
86  )
87  {
88  auto _file = builder.CreateString(file);
89  auto _expl = builder.CreateString(expl);
90 
91  auto gs = CreateSoftware_log_fb(builder, _file, line, code_errno, 0, _expl);
92  builder.Finish(gs);
93  }
94 
95  /// C'tor for errno with additional explanation, std::string overload.
96  messageT( const char * file, ///< [in] The file of the error, should always be \c \_\_FILE\_\_
97  const uint32_t line, ///< [in] The line number of the error, should always be \c \_\_LINE\_\_
98  const int32_t code_errno, ///< [in] The errno code at the time of the log entry. Only errno should be passed here, so strerror can be used later.
99  const std::string & expl ///< [in] explanatory text about the software event
100  )
101  {
102  auto _file = builder.CreateString(file);
103  auto _expl = builder.CreateString(expl);
104 
105  auto gs = CreateSoftware_log_fb(builder, _file, line, code_errno, 0, _expl);
106  builder.Finish(gs);
107  }
108 
109  /// C'tor with no codes, just the explanation.
110  messageT( const char * file, ///< [in] The file of the error, should always be \c \_\_FILE\_\_
111  const uint32_t line, ///< [in] The line number of the error, should always be \c \_\_LINE\_\_
112  const std::string & expl ///< [in] explanatory text about the software event
113  )
114  {
115  auto _file = builder.CreateString(file);
116  auto _expl = builder.CreateString(expl);
117 
118  auto gs = CreateSoftware_log_fb(builder, _file, line, 0,0,_expl);
119  builder.Finish(gs);
120  }
121 
122  /// C'tor for a trace log, only the file and line.
123  messageT( const char * file, ///< [in] The file of the error, should always be \c \_\_FILE\_\_
124  const uint32_t line ///< [in] The line number of the error, should always be \c \_\_LINE\_\_
125  )
126  {
127  auto _file = builder.CreateString(file);
128 
129  auto gs = CreateSoftware_log_fb(builder, _file, line, 0,0,0);
130  builder.Finish(gs);
131  }
132 
133 
134  };
135 
136 
137  ///Get the message formatted for human consumption.
138  static std::string msgString( void * msgBuffer, /**< [in] Buffer containing the flatbuffer serialized message.*/
139  flatlogs::msgLenT len /**< [in] [unused] length of msgBuffer.*/
140  )
141  {
142 
143  static_cast<void>(len);
144 
145  auto rgs = GetSoftware_log_fb(msgBuffer);
146 
147  std::string ret = "SW FILE: ";
148  ret += rgs->file()->c_str();
149  ret += " LINE: ";
150  ret += mx::ioutils::convertToString(rgs->line());
151  if(rgs->errnoCode())
152  {
153  ret += " ERRNO: ";
154  ret += mx::ioutils::convertToString(rgs->errnoCode());
155  }
156  if(rgs->otherCode())
157  {
158  ret += " OTHER CODE: ";
159  ret += mx::ioutils::convertToString(rgs->otherCode());
160  }
161 
162  if(rgs->explanation())
163  {
164  ret += " >";
165  ret += rgs->explanation()->c_str();
166  }
167  return ret;
168  }
169 };
170 
171 
172 ///Software EMERGENCY log entry
173 /** This should only be used for a system-wide emergency requiring operator or automatic shutdown. Not for a process specific problem.
174  * \includedoc sw_logs.dox.inc
175  * \ingroup logger_types
176  */
178 {
179  ///The default level
181 };
182 
183 ///Software ALERT log entry
184 /** This should only be used for a system-wide emergency requiring operator or automatic action. Not for a process specific problem.
185  * \includedoc sw_logs.dox.inc
186  * \ingroup logger_types
187  */
189 {
190  ///The default level
192 };
193 
194 ///Software CRITICAL log entry
195 /** This should only be used if the process is going to shutdown.
196  * \includedoc sw_logs.dox.inc
197  * \ingroup logger_types
198  */
200 {
201  ///The default level
203 };
204 
205 ///Software ERR log entry
206 /** Used to record and error that the process will attempt to recover from.
207  * \includedoc sw_logs.dox.inc
208  * \ingroup logger_types
209  */
211 {
212  ///The default level
214 };
215 
216 ///Software WARN log entry
217 /** Used to record an abnormal condition.
218  * \includedoc sw_logs.dox.inc
219  * \ingroup logger_types
220  */
222 {
223  ///The default level
225 };
226 
227 ///Software NOTICE log entry
228 /** Used to record a normal but signficant event or condition.
229  * \includedoc sw_logs.dox.inc
230  * \ingroup logger_types
231  */
233 {
234  ///The default level
236 };
237 
238 ///Software INFO log entry
239 /** \includedoc sw_logs.dox.inc
240  * Used to record a normal event or condition. This is the lowest priority used in normal operations.
241  * \ingroup logger_types
242  */
244 {
245  ///The default level
246  static const flatlogs::logPrioT defaultLevel = flatlogs::logPrio::LOG_INFO;
247 };
248 
249 ///Software DEBUG log entry
250 /** \includedoc sw_logs.dox.inc
251  * \ingroup logger_types
252  */
254 {
255  ///The default level
257 };
258 
259 ///Software DEBUG2 log entry
260 /** \includedoc sw_logs.dox.inc
261  * \ingroup logger_types
262  */
264 {
265  ///The default level
267 };
268 
269 } //namespace logger
270 } //namespace MagAOX
271 
272 #endif //logger_types_software_log_hpp
Software ALERT log entry.
const MagAOX::logger::Software_log_fb * GetSoftware_log_fb(const void *buf)
static constexpr logPrioT LOG_INFO
Informational. The info log level is the lowest level recorded during normal operations.
Definition: logPriority.hpp:49
Base class for software logs.
static constexpr logPrioT LOG_WARNING
A condition has occurred which may become an error, but the process continues.
Definition: logPriority.hpp:43
Software NOTICE log entry.
messageT(const char *file, const uint32_t line, const std::string &expl)
C&#39;tor with no codes, just the explanation.
Software CRITICAL log entry.
messageT(const char *file, const uint32_t line, const int32_t code_errno, const int32_t code_other, const char *expl)
C&#39;tor with full specification.
flatbuffers::Offset< Software_log_fb > CreateSoftware_log_fb(flatbuffers::FlatBufferBuilder &_fbb, flatbuffers::Offset< flatbuffers::String > file=0, uint32_t line=0, int32_t errnoCode=0, int32_t otherCode=0, flatbuffers::Offset< flatbuffers::String > explanation=0)
Software DEBUG2 log entry.
static constexpr logPrioT LOG_ERROR
An error has occured which the software will attempt to correct.
Definition: logPriority.hpp:40
static constexpr logPrioT LOG_DEBUG2
Used for debugging, providing a 2nd level.
Definition: logPriority.hpp:55
Software ERR log entry.
messageT(const char *file, const uint32_t line)
C&#39;tor for a trace log, only the file and line.
messageT(const char *file, const uint32_t line, const int32_t code_errno, const int32_t code_other, const std::string &expl)
C&#39;tor with full specification, overloaded for a std::string in explanation.
Software INFO log entry.
The MagAO-X logger flatbuffer log base type.
static const flatlogs::eventCodeT eventCode
The event code.
Base class for logs consisting of a flatbuffer message.
static constexpr flatlogs::eventCodeT SOFTWARE_LOG
Definition: logCodes.hpp:14
Software WARN log entry.
int8_t logPrioT
The type of the log priority code.
Definition: logDefs.hpp:19
static constexpr logPrioT LOG_ALERT
This should only be used if some action is required by operators to keep the system safe...
Definition: logPriority.hpp:34
static constexpr logPrioT LOG_EMERGENCY
Normal operations of the entire system should be shut down immediately.
Definition: logPriority.hpp:31
flatbuffers::FlatBufferBuilder builder
messageT(const char *file, const uint32_t line, const int32_t code_errno, const char *expl)
C&#39;tor for errno with additional explanation.
messageT(const char *file, const uint32_t line, const int32_t code_errno)
C&#39;tor for errno only – code explanation can be looked up later.
messageT(const char *file, const uint32_t line, const int32_t code_errno, const std::string &expl)
C&#39;tor for errno with additional explanation, std::string overload.
static constexpr logPrioT LOG_CRITICAL
The process can not continue and will shut down (fatal)
Definition: logPriority.hpp:37
Software EMERGENCY log entry.
msgLen2T msgLenT
The type used to refer to the message length, regardless of length.
Definition: logDefs.hpp:67
Message type for resolving log messages with a f.b. builder.
static constexpr logPrioT LOG_DEBUG
Used for debugging.
Definition: logPriority.hpp:52
uint16_t eventCodeT
The type of an event code (16-bit unsigned int).
Definition: logDefs.hpp:38
static constexpr logPrioT LOG_NOTICE
A normal but significant condition.
Definition: logPriority.hpp:46
static std::string msgString(void *msgBuffer, flatlogs::msgLenT len)
Get the message formatted for human consumption.
Software DEBUG log entry.