QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
|
A ring buffer log stored in a fixed QUICKCPPLIB_RINGBUFFER_LOG_DEFAULT_ENTRIES_NDEBUG/QUICKCPPLIB_RINGBUFFER_LOG_DEFAULT_ENTRIES_DEBUG std::array recording monotonic counter (8 bytes), high resolution clock time stamp (8 bytes), stack backtrace or func (40 bytes), level (1 byte), 191 bytes of char message. Each record is 256 bytes, therefore the ring buffer wraps after 256/4096 entries by default. More...
#include "ringbuffer_log.hpp"
Public Types | |
using | value_type = simple_ringbuffer_log_policy_detail::value_type |
Item logged in this log. | |
using | container_type = std::array< value_type, max_items > |
Container for storing log. | |
Static Public Attributes | |
static constexpr size_t | max_items = Bytes / sizeof(value_type) |
Maximum items of this value_type in this log. | |
A ring buffer log stored in a fixed QUICKCPPLIB_RINGBUFFER_LOG_DEFAULT_ENTRIES_NDEBUG/QUICKCPPLIB_RINGBUFFER_LOG_DEFAULT_ENTRIES_DEBUG std::array recording monotonic counter (8 bytes), high resolution clock time stamp (8 bytes), stack backtrace or func (40 bytes), level (1 byte), 191 bytes of char message. Each record is 256 bytes, therefore the ring buffer wraps after 256/4096 entries by default.
Bytes | The size of the ring buffer |
using quickcpplib::_xxx::ringbuffer_log::simple_ringbuffer_log_policy< Bytes >::value_type = simple_ringbuffer_log_policy_detail::value_type |
Item logged in this log.
using quickcpplib::_xxx::ringbuffer_log::simple_ringbuffer_log_policy< Bytes >::container_type = std::array<value_type, max_items> |
Container for storing log.
|
staticconstexpr |
Maximum items of this value_type in this log.