MagAO-X
Operations Applications Utilities Source
logStdFormat.hpp
Go to the documentation of this file.
1 /** \file logStdFormat.hpp
2  * \brief Standard formating of log entries for readable output.
3  * \author Jared R. Males (jaredmales@gmail.com)
4  *
5  * \ingroup flatlogs_files
6  *
7  * History:
8  * - 2017-12-24 created by JRM
9  * - 2018-08-18 moved to flatlogs
10  */
11 
12 #ifndef flatlogs_logStdFormat_hpp
13 #define flatlogs_logStdFormat_hpp
14 
15 #include "logHeader.hpp"
16 #include "logPriority.hpp"
17 
18 namespace flatlogs
19 {
20 
21 /// Worker function that formats a log into the standard text representation.
22 /** \todo change to using a std::ios as input instead of only using std::cout
23  *
24  * \ingroup logformat
25  */
26 template<typename logT>
27 void stdFormat( bufferPtrT & logBuffer /**< [in] the binary log buffer */)
28 {
29  logPrioT prio;
30  eventCodeT ec;
31  timespecX ts;
32  msgLenT len;
33 
34  logHeader::extractBasicLog( prio, ec, ts, len, logBuffer);
35 
36  std::cout << ts.ISO8601DateTimeStrX() << " " << priorityString(prio) << " " << logT::msgString(logHeader::messageBuffer(logBuffer) , len);
37 }
38 
39 } //namespace flatlogs
40 
41 #endif //flatlogs_logStdFormat_hpp
std::string priorityString(logPrioT &prio)
Get the string representation of a log priority.
Definition: logPriority.hpp:68
std::string ISO8601DateTimeStrX()
Get a date-time string in ISO 8601 format for timespecX.
Definition: timespecX.hpp:135
void stdFormat(bufferPtrT &logBuffer)
Worker function that formats a log into the standard text representation.
int8_t logPrioT
The type of the log priority code.
Definition: logDefs.hpp:19
static int extractBasicLog(logPrioT &lvl, eventCodeT &ec, timespecX &ts, msgLenT &len, bufferPtrT &logBuffer)
Extract the basic details of a log entry.
Definition: logHeader.hpp:481
The MagAO-X logger log priority levels.
std::shared_ptr< char > bufferPtrT
The log entry buffer smart pointer.
Definition: logHeader.hpp:57
msgLen2T msgLenT
The type used to refer to the message length, regardless of length.
Definition: logDefs.hpp:67
The flatlogs buffer header format.
uint16_t eventCodeT
The type of an event code (16-bit unsigned int).
Definition: logDefs.hpp:38
A fixed-width timespec structure.
Definition: timespecX.hpp:31
static void * messageBuffer(bufferPtrT &logBuffer)
Get the message buffer address.
Definition: logHeader.hpp:442