MagAO-X
Operations Applications Utilities Source
state_change.hpp
Go to the documentation of this file.
1 /** \file state_change.hpp
2  * \brief The MagAO-X logger state_change 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_state_change_hpp
11 #define logger_types_state_change_hpp
12 
13 #include "../../app/stateCodes.hpp"
14 
16 #include "flatbuffer_log.hpp"
17 
18 namespace MagAOX
19 {
20 namespace logger
21 {
22 
23 
24 ///Application State Change
25 /** \ingroup logger_types
26  */
28 {
29  //The event code
31 
32  //The default level
34 
35  ///The type of the message
36  struct messageT : public fbMessage
37  {
38  messageT( int16_t from,
39  int16_t to
40  )
41  {
42  auto gs = CreateState_change_fb(builder, from, to);
43  builder.Finish(gs);
44  }
45  };
46 
47  /// Format the message for text output, including translation of state codes to text form.
48  /**
49  * \returns the message formatted as "State changed from UNINITIALIZED to INITIALIZED"
50  */
51  static std::string msgString( void * msgBuffer, /**< [in] Buffer containing the flatbuffer serialized message.*/
52  flatlogs::msgLenT len /**< [in] [unused] length of msgBuffer.*/
53  )
54  {
55  static_cast<void>(len);
56 
57  auto rgs = GetState_change_fb(msgBuffer);
58 
59  std::stringstream s;
60  s << "State changed from " << app::stateCodes::codeText(rgs->from()) << " to " << app::stateCodes::codeText(rgs->to());
61  return s.str();
62  }
63 };
64 
65 } //namespace logger
66 } //namespace MagAOX
67 
68 #endif //logger_types_state_change_hpp
static const flatlogs::logPrioT defaultLevel
const MagAOX::logger::State_change_fb * GetState_change_fb(const void *buf)
static std::string msgString(void *msgBuffer, flatlogs::msgLenT len)
Format the message for text output, including translation of state codes to text form.
static constexpr logPrioT LOG_INFO
Informational. The info log level is the lowest level recorded during normal operations.
Definition: logPriority.hpp:49
static std::string codeText(stateCodeT stateCode)
Get an ASCII string corresponding to an application stateCode.
Definition: stateCodes.hpp:62
static constexpr flatlogs::eventCodeT STATE_CHANGE
Definition: logCodes.hpp:13
The MagAO-X logger flatbuffer log base type.
Application State Change.
Base class for logs consisting of a flatbuffer message.
int8_t logPrioT
The type of the log priority code.
Definition: logDefs.hpp:19
static const flatlogs::eventCodeT eventCode
flatbuffers::FlatBufferBuilder builder
msgLen2T msgLenT
The type used to refer to the message length, regardless of length.
Definition: logDefs.hpp:67
messageT(int16_t from, int16_t to)
Message type for resolving log messages with a f.b. builder.
flatbuffers::Offset< State_change_fb > CreateState_change_fb(flatbuffers::FlatBufferBuilder &_fbb, int16_t from=0, int16_t to=0)
uint16_t eventCodeT
The type of an event code (16-bit unsigned int).
Definition: logDefs.hpp:38