MagAO-X
Operations Applications Utilities Source
git_state.hpp
Go to the documentation of this file.
1 /** \file git_state.hpp
2  * \brief The MagAO-X logger git_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_git_state_hpp
11 #define logger_types_git_state_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  */
25 struct git_state : public flatbuffer_log
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 std::string & repoName, ///< [in] the name of the repo
39  const std::string & sha1, ///< [in] the SHA1 hash of the repo
40  const bool modified ///< [in] the modified status (true or false)
41  )
42  {
43  auto _repoName = builder.CreateString(repoName);
44  auto _sha1 = builder.CreateString(sha1);
45 
46  uint8_t _modified = modified;
47 
48  auto gs = CreateGit_state_fb(builder, _repoName, _sha1, _modified);
49  builder.Finish(gs);
50 
51  }
52 
53  };
54 
55  ///Get the message formatte for human consumption.
56  static std::string msgString( void * msgBuffer, /**< [in] Buffer containing the flatbuffer serialized message.*/
57  flatlogs::msgLenT len /**< [in] [unused] length of msgBuffer.*/
58  )
59  {
60  static_cast<void>(len);
61 
62  auto rgs = GetGit_state_fb(msgBuffer);
63 
64  std::string str;
65  if( rgs->repo()) str = rgs->repo()->c_str();
66 
67  str += " GIT: ";
68 
69  if( rgs->sha1()) str += rgs->sha1()->c_str();
70 
71  if(rgs->modified() > 0) str+= " MODIFIED";
72 
73  return str;
74  }
75 
76  /// Access the repo name field
77  static std::string repoName( void * msgBuffer /**< [in] Buffer containing the flatbuffer serialized message.*/ )
78  {
79  auto rgs = GetGit_state_fb(msgBuffer);
80 
81  if(rgs->repo()) return std::string(rgs->repo()->c_str());
82  else return "";
83  }
84 
85  /// Access the modified field
86  static bool modified( void * msgBuffer /**< [in] Buffer containing the flatbuffer serialized message.*/ )
87  {
88  auto rgs = GetGit_state_fb(msgBuffer);
89 
90  if(rgs->modified() > 0) return true;
91  else return false;
92  }
93 
94 }; //git_state
95 
96 
97 } //namespace logger
98 } //namespace MagAOX
99 
100 #endif //logger_types_git_state_hpp
101 
const MagAOX::logger::Git_state_fb * GetGit_state_fb(const void *buf)
static constexpr logPrioT LOG_INFO
Informational. The info log level is the lowest level recorded during normal operations.
Definition: logPriority.hpp:49
static const flatlogs::logPrioT defaultLevel
The default level.
Definition: git_state.hpp:31
The MagAO-X logger flatbuffer log base type.
flatbuffers::Offset< Git_state_fb > CreateGit_state_fb(flatbuffers::FlatBufferBuilder &_fbb, flatbuffers::Offset< flatbuffers::String > repo=0, flatbuffers::Offset< flatbuffers::String > sha1=0, uint8_t modified=0)
static std::string repoName(void *msgBuffer)
Access the repo name field.
Definition: git_state.hpp:77
static std::string msgString(void *msgBuffer, flatlogs::msgLenT len)
Get the message formatte for human consumption.
Definition: git_state.hpp:56
Base class for logs consisting of a flatbuffer message.
int8_t logPrioT
The type of the log priority code.
Definition: logDefs.hpp:19
messageT(const std::string &repoName, const std::string &sha1, const bool modified)
Construct from components.
Definition: git_state.hpp:38
Log entry recording the build-time git state.
Definition: git_state.hpp:25
flatbuffers::FlatBufferBuilder builder
The type of the input message.
Definition: git_state.hpp:35
static const flatlogs::eventCodeT eventCode
The event code.
Definition: git_state.hpp:28
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 bool modified(void *msgBuffer)
Access the modified field.
Definition: git_state.hpp:86
uint16_t eventCodeT
The type of an event code (16-bit unsigned int).
Definition: logDefs.hpp:38
static constexpr flatlogs::eventCodeT GIT_STATE
Definition: logCodes.hpp:10