MagAO-X
Operations Applications Utilities Source
string_log.hpp
Go to the documentation of this file.
1 /** \file string_log.hpp
2  * \brief The MagAO-X logger string_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_string_log_hpp
11 #define logger_types_string_log_hpp
12 
14 #include "flatbuffer_log.hpp"
15 
16 namespace MagAOX
17 {
18 
19 namespace logger
20 {
21 
22 
23 
24 /// Base class for logs consisting of a string message.
25 /** Does not have eventCode or defaultLevel, so this can not be used as a log type in logger.
26  *
27  * \ingroup logger_types_basic
28  */
29 struct string_log : public flatbuffer_log
30 {
31  ///The type of the message
32  struct messageT : public fbMessage
33  {
34  messageT( const char * msg )
35  {
36  auto _msg = builder.CreateString(msg);
37 
38  auto gs = CreateString_log_fb(builder, _msg);
39  builder.Finish(gs);
40  }
41 
42  messageT( const std::string & msg )
43  {
44  auto _msg = builder.CreateString(msg);
45 
46  auto gs = CreateString_log_fb(builder, _msg);
47  builder.Finish(gs);
48  }
49  };
50 
51  ///Get the message formatted for human consumption.
52  static std::string msgString( void * msgBuffer, /**< [in] Buffer containing the flatbuffer serialized message.*/
53  flatlogs::msgLenT len /**< [in] [unused] length of msgBuffer.*/
54  )
55  {
56  static_cast<void>(len);
57 
58  auto rgs = GetString_log_fb(msgBuffer);
59 
60  if(rgs->message() == nullptr) return "";
61  else return rgs->message()->c_str();
62  }
63 
64 };
65 
66 
67 
68 
69 } //namespace logger
70 } //namespace MagAOX
71 
72 #endif //logger_types_string_log_hpp
static std::string msgString(void *msgBuffer, flatlogs::msgLenT len)
Get the message formatted for human consumption.
Definition: string_log.hpp:52
Base class for logs consisting of a string message.
Definition: string_log.hpp:29
The MagAO-X logger flatbuffer log base type.
flatbuffers::Offset< String_log_fb > CreateString_log_fb(flatbuffers::FlatBufferBuilder &_fbb, flatbuffers::Offset< flatbuffers::String > message=0)
Base class for logs consisting of a flatbuffer message.
messageT(const std::string &msg)
Definition: string_log.hpp:42
const MagAOX::logger::String_log_fb * GetString_log_fb(const void *buf)
flatbuffers::FlatBufferBuilder builder
The type of the message.
Definition: string_log.hpp:32
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.