12 #ifndef flatlogs_logHeader_hpp 13 #define flatlogs_logHeader_hpp 75 constexpr
static size_t MAX_LEN0 = std::numeric_limits<msgLen0T>::max() ;
78 constexpr
static size_t MAX_LEN1 = std::numeric_limits<msgLen1T>::max();
104 } __attribute__((packed));
115 static int logLevel( bufferPtrT & logBuffer,
134 static int eventCode( bufferPtrT & logBuffer,
161 static int timespec( bufferPtrT & logBuffer,
171 static size_t lenSize( bufferPtrT & logBuffer );
190 static int msgLen( bufferPtrT & logBuffer,
226 static size_t headerSize( bufferPtrT & logBuffer );
242 static size_t totalSize( bufferPtrT & logBuffer );
267 template<
typename logT>
268 static int createLog( bufferPtrT & logBuffer,
270 const typename logT::messageT & msg,
285 bufferPtrT & logBuffer
343 if(len0 < MAX_LEN0-1)
return sizeof(
msgLen0T);
345 if(len0 == MAX_LEN0-1)
356 if(msgSz < MAX_LEN0-1)
return sizeof(
msgLen0T);
382 if( msgLen < MAX_LEN0-1 )
388 if(msgLen < MAX_LEN1)
418 if(len0 < MAX_LEN0-1)
return len0;
420 if(len0 == MAX_LEN0-1)
444 return logBuffer.get() +
headerSize(logBuffer);
447 template<
typename logT>
450 const typename logT::messageT & msg,
457 lvl = logT::defaultLevel;
462 msgLenT len = logT::length(msg);
485 bufferPtrT & logBuffer
506 #endif //flatlogs_logHeader_hpp static msgLen0T msgLen0(bufferPtrT &logBuffer)
Extract the short message length of a log entry message.
static size_t lenSize(bufferPtrT &logBuffer)
Get the size in bytes of the length field for an existing logBuffer.
uint8_t msgLen0T
The type used for the short message length.
A fixed-width timespec structure and utilities.
static int eventCode(bufferPtrT &logBuffer, const eventCodeT &ec)
Set the event code of a log entry.
uint16_t msgLen1T
The type used for intermediate message length.
uint32_t secT
The type used for seconds.
static int logLevel(bufferPtrT &logBuffer, const logPrioT &lvl)
Set the level of a log entry in a logBuffer header.
static size_t totalSize(bufferPtrT &logBuffer)
Get the total size of the log entry, including the message buffer.
int8_t logPrioT
The type of the log priority code.
static int extractBasicLog(logPrioT &lvl, eventCodeT &ec, timespecX &ts, msgLenT &len, bufferPtrT &logBuffer)
Extract the basic details of a log entry.
The MagAO-X logger log priority levels.
static timespecX timespec(bufferPtrT &logBuffer)
Extract the timespec of a log entry.
std::shared_ptr< char > bufferPtrT
The log entry buffer smart pointer.
static msgLen1T msgLen1(bufferPtrT &logBuffer)
Extract the medium message length of a log entry message.
Type definitions for the flatlogs format.
uint32_t nanosecT
The type used for nanoseconds.
static int msgLen(bufferPtrT &logBuffer, const msgLenT &msgLen)
Set the message length of a log entry message.
msgLen2T msgLenT
The type used to refer to the message length, regardless of length.
static constexpr logPrioT LOG_DEFAULT
Used to denote "use the default level for this log type".
uint16_t eventCodeT
The type of an event code (16-bit unsigned int).
A fixed-width timespec structure.
static size_t headerSize(bufferPtrT &logBuffer)
Get the size of the header, including the variable size length field, for an existing logBuffer...
uint64_t msgLen2T
The type used for long message length.
static void * messageBuffer(bufferPtrT &logBuffer)
Get the message buffer address.