MagAO-X
Operations Applications Utilities Source
pdu_outlet_state.hpp
Go to the documentation of this file.
1 /** \file pdu_outlet_state.hpp
2  * \brief The MagAO-X logger pdu_outlet_state 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_pdu_outlet_state_hpp
11 #define logger_types_pdu_outlet_state_hpp
12 
14 #include "flatbuffer_log.hpp"
15 
16 namespace MagAOX
17 {
18 namespace logger
19 {
20 
21 
22 ///Application State Change
23 /** \ingroup logger_types
24  */
26 {
27  //The event code
29 
30  //The default level
32 
33  ///The type of the message
34  struct messageT : public fbMessage
35  {
36  messageT( uint8_t outlet,
37  uint8_t state
38  )
39  {
40  auto gs = CreatePdu_outlet_state_fb(builder, outlet, state);
41  builder.Finish(gs);
42 
43  }
44  };
45 
46  /// Format the message for text output, including translation of state codes to text form.
47  /**
48  * \returns the message formatted as "State changed from UNINITIALIZED to INITIALIZED"
49  */
50  static std::string msgString(void * msgBuffer, flatlogs::msgLenT len)
51  {
52  static_cast<void>(len);
53 
54  auto rgs = GetPdu_outlet_state_fb(msgBuffer);
55 
56  std::stringstream s;
57  s << "Outlet: " << (int) rgs->outlet() << " ";
58  if(rgs->state())
59  {
60  s << "ON";
61  }
62  else
63  {
64  s << "OFF";
65  }
66 
67  return s.str();
68  }
69 };
70 
71 } //namespace logger
72 } //namespace MagAOX
73 
74 #endif //logger_types_pdu_outlet_state_hpp
static constexpr flatlogs::eventCodeT PDU_OUTLET_STATE
Definition: logCodes.hpp:20
flatbuffers::Offset< Pdu_outlet_state_fb > CreatePdu_outlet_state_fb(flatbuffers::FlatBufferBuilder &_fbb, uint8_t outlet=0, uint8_t state=0)
const MagAOX::logger::Pdu_outlet_state_fb * GetPdu_outlet_state_fb(const void *buf)
The MagAO-X logger flatbuffer log base type.
Application State Change.
static std::string msgString(void *msgBuffer, flatlogs::msgLenT len)
Format the message for text output, including translation of state codes to text form.
Base class for logs consisting of a flatbuffer message.
int8_t logPrioT
The type of the log priority code.
Definition: logDefs.hpp:19
messageT(uint8_t outlet, uint8_t state)
flatbuffers::FlatBufferBuilder builder
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 const flatlogs::eventCodeT eventCode
static const flatlogs::logPrioT defaultLevel
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