MagAO-X
Operations Applications Utilities Source
empty_log.hpp
Go to the documentation of this file.
1 /** \file empty_log.hpp
2  * \brief The MagAO-X logger empty 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_empty_log_hpp
11 #define logger_types_empty_log_hpp
12 
13 
14 namespace MagAOX
15 {
16 namespace logger
17 {
18 
19 
20 ///Empty type for resolving logs with no message.
21 /**
22  * \ingroup logger_types_basic
23  */
25 {
26 };
27 
28 
29 ///Base class for logs consisting of an empty message.
30 /** Such logs are used to log events. 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  */
36 template<class derivedT>
37 struct empty_log
38 {
39  ///The type of the message
41 
42  ///Get the length of the message.
43  static flatlogs::msgLenT length( const messageT & msg)
44  {
45  static_cast<void>(msg);
46 
47  return 0;
48  }
49 
50  ///Format the buffer given a message -- a no-op since the message is an emptyMessage.
51  /**
52  * \returns 0
53  */
54  static int format( void * msgBuffer, ///< [out] the buffer, which is ignored.
55  const messageT & msg ///< [in] an emptyMessage.
56  )
57  {
58  static_cast<void>(msgBuffer);
59  static_cast<void>(msg);
60 
61  return 0;
62  }
63 
64  ///Extract the message from a buffer -- a no-op since it is an emptyMessage.
65  /**
66  * \returns 0
67  */
68  static int extract( messageT & msg, ///< [out] an emptyMessage to which nothing is done.
69  void * msgBuffer, ///< [in] the empty buffer. Is ignored.
70  flatlogs::msgLenT len ///< [in] ignored length of the empty buffer.
71  )
72  {
73  static_cast<void>(msg);
74  static_cast<void>(msgBuffer);
75  static_cast<void>(len);
76 
77 
78  return 0;
79  }
80 
81  static std::string msgString( void * msgBuffer, flatlogs::msgLenT len)//messageT & msg /**< [in] [unused] the empty message */)
82  {
83  static_cast<void>(msgBuffer);
84  static_cast<void>(len);
85 
86  return derivedT::msg();
87  }
88 };
89 
90 } //namespace logger
91 } //namespace MagAOX
92 
93 #endif //logger_types_empty_log_hpp
Base class for logs consisting of an empty message.
Definition: empty_log.hpp:37
static flatlogs::msgLenT length(const messageT &msg)
Get the length of the message.
Definition: empty_log.hpp:43
static std::string msgString(void *msgBuffer, flatlogs::msgLenT len)
Definition: empty_log.hpp:81
static int extract(messageT &msg, void *msgBuffer, flatlogs::msgLenT len)
Extract the message from a buffer – a no-op since it is an emptyMessage.
Definition: empty_log.hpp:68
emptyMessage messageT
The type of the message.
Definition: empty_log.hpp:40
static int format(void *msgBuffer, const messageT &msg)
Format the buffer given a message – a no-op since the message is an emptyMessage.
Definition: empty_log.hpp:54
Empty type for resolving logs with no message.
Definition: empty_log.hpp:24
msgLen2T msgLenT
The type used to refer to the message length, regardless of length.
Definition: logDefs.hpp:67