MagAO-X
Operations Applications Utilities Source
flatbuffer_log.hpp
Go to the documentation of this file.
1 /** \file flatbuffer_log.hpp
2  * \brief The MagAO-X logger flatbuffer log base 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_flatbuffer_log_hpp
11 #define logger_types_flatbuffer_log_hpp
12 
13 namespace MagAOX
14 {
15 namespace logger
16 {
17 
18 
19 ///Message type for resolving log messages with a f.b. builder.
20 /**
21  * \ingroup logger_types_basic
22  */
23 struct fbMessage
24 {
25  flatbuffers::FlatBufferBuilder builder;
26 };
27 
28 
29 ///Base class for logs consisting of a flatbuffer message.
30 /** Such logs are used to log arbitrary data structures using the flatbuffer protocol. Does not have eventCode or defaultLevel,
31  * so this can not be used as a log type directly.
32  *
33  *
34  * \ingroup logger_types_basic
35  */
37 {
38  ///Get the length of the message.
39  static flatlogs::msgLenT length( const fbMessage & msg /**< [in] the fbMessage type holding a FlatBufferBuilder */)
40  {
41  return msg.builder.GetSize();
42  }
43 
44  ///Format the buffer given the input message.
45  /** \todo this is an unneccesary memcpy from the FlatBufferBuilder, we need to figure out how to not do this.
46  */
47  static int format( void * msgBuffer, ///< [out] the buffer, must be pre-allocated to size length(msg)
48  const fbMessage & msg ///< [in] the message which contains a flatbuffer builder, from which the data are memcpy-ed.
49  )
50  {
51  uint8_t * cbuff = reinterpret_cast<uint8_t *>(msgBuffer);
52 
53  memcpy(cbuff, msg.builder.GetBufferPointer(), msg.builder.GetSize());
54 
55  return 0;
56  }
57 
58 };
59 
60 } //namespace logger
61 } //namespace MagAOX
62 
63 #endif //logger_types_flatbuffer_log_hpp
static int format(void *msgBuffer, const fbMessage &msg)
Format the buffer given the input message.
Base class for logs consisting of a flatbuffer message.
static flatlogs::msgLenT length(const fbMessage &msg)
Get the length of the message.
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.