mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.5 KiB
C
52 lines
1.5 KiB
C
4 years ago
|
/**
|
||
|
*
|
||
|
* \section COPYRIGHT
|
||
|
*
|
||
4 years ago
|
* Copyright 2013-2021 Software Radio Systems Limited
|
||
4 years ago
|
*
|
||
|
* By using this file, you agree to the terms and conditions set
|
||
|
* forth in the LICENSE file which can be found at the top level of
|
||
|
* the distribution.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef SRSLOG_DETAIL_LOG_ENTRY_METADATA_H
|
||
|
#define SRSLOG_DETAIL_LOG_ENTRY_METADATA_H
|
||
|
|
||
4 years ago
|
#include "srsran/srslog/bundled/fmt/printf.h"
|
||
4 years ago
|
#include <chrono>
|
||
|
|
||
|
namespace srslog {
|
||
|
|
||
4 years ago
|
/// This type is used to store small strings without doing any memory allocation.
|
||
|
using small_str_buffer = fmt::basic_memory_buffer<char, 64>;
|
||
|
|
||
4 years ago
|
namespace detail {
|
||
|
|
||
|
/// This structure gives the user a way to log generic information as a context.
|
||
|
//:TODO: legacy struct, will get replaced by the new context framework.
|
||
|
struct log_context {
|
||
|
/// Generic context value.
|
||
|
uint32_t value;
|
||
|
/// When true, the context value will be printed in the log entry.
|
||
|
bool enabled;
|
||
|
};
|
||
|
|
||
|
/// Metadata fields carried for each log entry.
|
||
|
struct log_entry_metadata {
|
||
4 years ago
|
std::chrono::high_resolution_clock::time_point tp;
|
||
|
log_context context;
|
||
|
const char* fmtstring;
|
||
4 years ago
|
fmt::dynamic_format_arg_store<fmt::printf_context> store;
|
||
4 years ago
|
std::string log_name;
|
||
|
char log_tag;
|
||
|
small_str_buffer small_str;
|
||
|
std::vector<uint8_t> hex_dump;
|
||
4 years ago
|
};
|
||
|
|
||
|
} // namespace detail
|
||
|
|
||
|
} // namespace srslog
|
||
|
|
||
|
#endif // SRSLOG_DETAIL_LOG_ENTRY_METADATA_H
|