MagAO-X
Operations Applications Utilities Source
fxngen_params.hpp
Go to the documentation of this file.
1 /** \file fxngen_params.hpp
2  * \brief The MagAO-X logger fxngen_params log type.
3  * \author Jared R. Males (jaredmales@gmail.com)
4  *
5  * \ingroup logger_types_files
6  *
7  * History:
8  * - 2018-09-06 created by JRM
9  */
10 #ifndef logger_types_fxngen_params_hpp
11 #define logger_types_fxngen_params_hpp
12 
14 #include "flatbuffer_log.hpp"
15 
16 namespace MagAOX
17 {
18 namespace logger
19 {
20 
21 
22 /// Log entry recording the build-time git state.
23 /** \ingroup logger_types
24  */
26 {
27  ///The event code
29 
30  ///The default level
32 
33 
34  ///The type of the input message
35  struct messageT : public fbMessage
36  {
37  ///Construct from components
38  messageT( const uint8_t & C1outp, ///< [in] Channel 1 output status
39  const double & C1freq, ///< [in] Channel 1 frequency [Hz]
40  const double & C1vpp, ///< [in] Channel 1 P2P voltage [V]
41  const double & C1ofst, ///< [in] Channel 1 offset [V]
42  const double & C1phse, ///< [in] Channel 1 phase [deg]
43  const std::string & C1wvtp, ///< [in] Channel 1 wavetype (SINE or DC)
44  const uint8_t & C2outp, ///< [in] Channel 2 output status
45  const double & C2freq, ///< [in] Channel 2 frequency [Hz]
46  const double & C2vpp, ///< [in] Channel 2 P2P voltage [V]
47  const double & C2ofst, ///< [in] Channel 2 offset [V]
48  const double & C2phse, ///< [in] Channel 2 phase [deg]
49  const std::string & C2wvtp ///< [in] Channel 2 wavetype (SINE or DC)
50  )
51  {
52  uint8_t _C1wvtp = 3, _C2wvtp = 3;
53 
54 
55  if(C1wvtp == "DC") _C1wvtp = 0;
56  else if(C1wvtp == "SINE") _C1wvtp = 1;
57 
58  if(C2wvtp == "DC") _C2wvtp = 0;
59  else if(C2wvtp == "SINE") _C2wvtp = 1;
60 
61 
62  auto fp = CreateFxngen_params_fb(builder, C1outp, C1freq, C1vpp, C1ofst, C1phse, _C1wvtp, C2outp, C2freq, C2vpp, C2ofst, C2phse, _C2wvtp);
63  builder.Finish(fp);
64 
65  }
66 
67  };
68 
69  ///Get the message formatte for human consumption.
70  static std::string msgString( void * msgBuffer, /**< [in] Buffer containing the flatbuffer serialized message.*/
71  flatlogs::msgLenT len /**< [in] [unused] length of msgBuffer.*/
72  )
73  {
74  static_cast<void>(len);
75 
76  auto fbs = GetFxngen_params_fb(msgBuffer);
77 
78  std::string msg = "Ch 1: ";
79 
80  if(fbs->C1wvtp() == 0) msg += "DC ";
81  else if(fbs->C1wvtp() == 1) msg += "SINE ";
82  else msg += "UNK ";
83 
84  if(fbs->C1outp() == 0) msg += "OFF ";
85  else if(fbs->C1outp() == 1) msg += "ON ";
86  else msg += "UNK ";
87 
88  msg += std::to_string(fbs->C1freq()) + " Hz ";
89  msg += std::to_string(fbs->C1vpp()) + " Vp2p ";
90  msg += std::to_string(fbs->C1ofst()) + " V ";
91  msg += std::to_string(fbs->C1phse()) + " deg ";
92 
93  msg += " | Ch 2: ";
94 
95  if(fbs->C2wvtp() == 0) msg += "DC ";
96  else if(fbs->C2wvtp() == 1) msg += "SINE ";
97  else msg += "UNK ";
98 
99  if(fbs->C2outp() == 0) msg += "OFF ";
100  else if(fbs->C2outp() == 1) msg += "ON ";
101  else msg += "UNK ";
102 
103  msg += std::to_string(fbs->C2freq()) + " Hz ";
104  msg += std::to_string(fbs->C2vpp()) + " Vp2p ";
105  msg += std::to_string(fbs->C2ofst()) + " V ";
106  msg += std::to_string(fbs->C2phse()) + " deg ";
107 
108  return msg;
109 
110  }
111 
112 }; //fxngen_params
113 
114 
115 } //namespace logger
116 } //namespace MagAOX
117 
118 #endif //logger_types_fxngen_params_hpp
119 
static std::string msgString(void *msgBuffer, flatlogs::msgLenT len)
Get the message formatte for human consumption.
static constexpr logPrioT LOG_INFO
Informational. The info log level is the lowest level recorded during normal operations.
Definition: logPriority.hpp:49
The type of the input message.
static const flatlogs::eventCodeT eventCode
The event code.
flatbuffers::Offset< Fxngen_params_fb > CreateFxngen_params_fb(flatbuffers::FlatBufferBuilder &_fbb, uint8_t C1outp=0, double C1freq=0.0, double C1vpp=0.0, double C1ofst=0.0, double C1phse=0.0, uint8_t C1wvtp=0, uint8_t C2outp=0, double C2freq=0.0, double C2vpp=0.0, double C2ofst=0.0, double C2phse=0.0, uint8_t C2wvtp=0)
The MagAO-X logger flatbuffer log base type.
Base class for logs consisting of a flatbuffer message.
int8_t logPrioT
The type of the log priority code.
Definition: logDefs.hpp:19
Log entry recording the build-time git state.
static constexpr flatlogs::eventCodeT FXNGEN_PARAMS
Definition: logCodes.hpp:21
messageT(const uint8_t &C1outp, const double &C1freq, const double &C1vpp, const double &C1ofst, const double &C1phse, const std::string &C1wvtp, const uint8_t &C2outp, const double &C2freq, const double &C2vpp, const double &C2ofst, const double &C2phse, const std::string &C2wvtp)
Construct from components.
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.
uint16_t eventCodeT
The type of an event code (16-bit unsigned int).
Definition: logDefs.hpp:38
const MagAOX::logger::Fxngen_params_fb * GetFxngen_params_fb(const void *buf)
static const flatlogs::logPrioT defaultLevel
The default level.