API
telem_temps.hpp
Go to the documentation of this file.
1 /** \file telem_temps.hpp
2  * \brief The MagAO-X logger telem_temps 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_telem_temps_hpp
11 #define logger_types_telem_temps_hpp
12 
13 #include "generated/telem_temps_generated.h"
14 #include "flatbuffer_log.hpp"
15 
16 namespace MagAOX
17 {
18 namespace logger
19 {
20 
21 
22 /// Log entry recording electronics rack temperature
23 /** \ingroup logger_types
24  */
25 struct telem_temps : public flatbuffer_log
26 {
27  ///The event code
28  static const flatlogs::eventCodeT eventCode = eventCodes::TELEM_TEMPS;
29 
30  ///The default level
32 
33  static timespec lastRecord; ///< The time of the last time this log was recorded. Used by the telemetry system.
34 
35  ///The type of the input message
36  struct messageT : public fbMessage
37  {
38  ///Construct from components
39  messageT( const std::vector<float> & temps ///<[in] vector of temperatures
40  )
41  {
42  auto _temps = builder.CreateVector(temps);
43  auto fp = CreateTelem_temps_fb(builder, _temps);
44 
45  builder.Finish(fp);
46  }
47 
48  };
49 
50  static bool verify( flatlogs::bufferPtrT & logBuff, ///< [in] Buffer containing the flatbuffer serialized message.
51  flatlogs::msgLenT len ///< [in] length of msgBuffer.
52  )
53  {
54  auto verifier = flatbuffers::Verifier( static_cast<uint8_t*>(flatlogs::logHeader::messageBuffer(logBuff)), static_cast<size_t>(len));
55  return VerifyTelem_temps_fbBuffer(verifier);
56  }
57 
58  ///Get the message formatte for human consumption.
59  static std::string msgString( void * msgBuffer, /**< [in] Buffer containing the flatbuffer serialized message.*/
60  flatlogs::msgLenT len /**< [in] [unused] length of msgBuffer.*/
61  )
62  {
63  static_cast<void>(len);
64 
65  auto fbs = GetTelem_temps_fb(msgBuffer);
66 
67  std::string msg = "[temps] ";
68 
69 
70  if( fbs->temps() )
71  {
72  for(size_t i=0; i< fbs->temps()->size(); ++i)
73  {
74  msg += " ";
75  msg += std::to_string(fbs->temps()->Get(i));
76  }
77  }
78 
79  return msg;
80 
81  }
82 
83 }; //telem_temps
84 
85 
86 
87 } //namespace logger
88 } //namespace MagAOX
89 
90 #endif //logger_types_telem_temps_hpp
91 
The MagAO-X logger flatbuffer log base type.
uint16_t eventCodeT
The type of an event code (16-bit unsigned int).
Definition: logDefs.hpp:40
msgLen2T msgLenT
The type used to refer to the message length, regardless of length.
Definition: logDefs.hpp:69
int8_t logPrioT
The type of the log priority code.
Definition: logDefs.hpp:21
static void * messageBuffer(bufferPtrT &logBuffer)
Get the message buffer address.
Definition: logHeader.hpp:621
std::shared_ptr< char > bufferPtrT
The log entry buffer smart pointer.
Definition: logHeader.hpp:58
std::stringstream msg
Definition: dm.hpp:24
constexpr static logPrioT LOG_TELEM
A telemetry recording.
Definition: logPriority.hpp:58
Message type for resolving log messages with a f.b. builder.
flatbuffers::FlatBufferBuilder builder
Base class for logs consisting of a flatbuffer message.
The type of the input message.
Definition: telem_temps.hpp:37
messageT(const std::vector< float > &temps)
Construct from components.
Definition: telem_temps.hpp:39
Log entry recording electronics rack temperature.
Definition: telem_temps.hpp:26
static timespec lastRecord
The time of the last time this log was recorded. Used by the telemetry system.
Definition: telem_temps.hpp:33
static bool verify(flatlogs::bufferPtrT &logBuff, flatlogs::msgLenT len)
Definition: telem_temps.hpp:50
static const flatlogs::eventCodeT eventCode
The event code.
Definition: telem_temps.hpp:28
static std::string msgString(void *msgBuffer, flatlogs::msgLenT len)
Get the message formatte for human consumption.
Definition: telem_temps.hpp:59
static const flatlogs::logPrioT defaultLevel
The default level.
Definition: telem_temps.hpp:31