srsLTE/lib/src/srslog/srslog.cpp

415 lines
12 KiB
C++
Raw Normal View History

/**
*
* \section COPYRIGHT
*
2021-03-19 03:45:56 -07:00
* Copyright 2013-2021 Software Radio Systems Limited
*
* 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.
*
*/
2021-03-19 03:45:56 -07:00
#include "srsran/srslog/srslog.h"
2020-12-10 09:10:49 -08:00
#include "formatters/json_formatter.h"
#include "sinks/file_sink.h"
#include "srslog_instance.h"
using namespace srslog;
/// Returns a copy of the input string with any occurrences of the '#' character
/// removed.
static std::string remove_sharp_chars(const std::string& s)
{
std::string result(s);
result.erase(std::remove(result.begin(), result.end(), '#'), result.end());
return result;
}
/// Generic argument function that fetches a log channel from the repository.
template <typename... Args>
2020-12-10 09:10:49 -08:00
static log_channel& fetch_log_channel_helper(const std::string& id,
Args&&... args)
{
return srslog_instance::get().get_channel_repo().emplace(
2020-12-10 09:10:49 -08:00
std::piecewise_construct,
std::forward_as_tuple(id),
std::forward_as_tuple(id, std::forward<Args>(args)...));
}
///
/// Log channel management function implementations.
///
log_channel* srslog::find_log_channel(const std::string& id)
{
return srslog_instance::get().get_channel_repo().find(id);
}
log_channel& srslog::fetch_log_channel(const std::string& id)
{
assert(!id.empty() && "Empty id string");
2020-12-10 09:10:49 -08:00
std::string clean_id = remove_sharp_chars(id);
srslog_instance& instance = srslog_instance::get();
2020-12-10 09:10:49 -08:00
return fetch_log_channel_helper(
clean_id, instance.get_default_sink(), instance.get_backend());
}
2020-12-10 09:10:49 -08:00
log_channel& srslog::fetch_log_channel(const std::string& id,
sink& s,
log_channel_config config)
{
assert(!id.empty() && "Empty id string");
2020-12-10 09:10:49 -08:00
std::string clean_id = remove_sharp_chars(id);
srslog_instance& instance = srslog_instance::get();
2020-12-10 09:10:49 -08:00
return fetch_log_channel_helper(
clean_id, s, instance.get_backend(), std::move(config));
}
///
/// Formatter management functions.
///
void srslog::set_default_log_formatter(std::unique_ptr<log_formatter> f)
{
srslog_instance::get().set_default_formatter(std::move(f));
}
std::unique_ptr<log_formatter> srslog::get_default_log_formatter()
{
return srslog_instance::get().get_default_formatter();
}
std::unique_ptr<log_formatter> srslog::create_text_formatter()
{
return std::unique_ptr<log_formatter>(new text_formatter);
}
std::unique_ptr<log_formatter> srslog::create_json_formatter()
{
return std::unique_ptr<log_formatter>(new json_formatter);
}
///
/// Sink management function implementations.
///
void srslog::set_default_sink(sink& s)
{
srslog_instance::get().set_default_sink(s);
}
sink& srslog::get_default_sink()
{
return srslog_instance::get().get_default_sink();
}
sink* srslog::find_sink(const std::string& id)
{
2020-12-10 09:10:49 -08:00
auto ptr = srslog_instance::get().get_sink_repo().find(id);
return (ptr) ? ptr->get() : nullptr;
}
2020-12-10 09:10:49 -08:00
sink& srslog::fetch_stdout_sink(const std::string& id,
std::unique_ptr<log_formatter> f)
{
2020-12-10 09:10:49 -08:00
assert(!id.empty() && "Empty id string");
auto& s = srslog_instance::get().get_sink_repo().emplace(
std::piecewise_construct,
std::forward_as_tuple(id),
std::forward_as_tuple(
new stream_sink(sink_stream_type::stdout, std::move(f))));
return *s;
}
2020-12-10 09:10:49 -08:00
sink& srslog::fetch_stderr_sink(const std::string& id,
std::unique_ptr<log_formatter> f)
{
2020-12-10 09:10:49 -08:00
assert(!id.empty() && "Empty id string");
auto& s = srslog_instance::get().get_sink_repo().emplace(
std::piecewise_construct,
std::forward_as_tuple(id),
std::forward_as_tuple(
new stream_sink(sink_stream_type::stderr, std::move(f))));
return *s;
}
2020-12-10 09:10:49 -08:00
sink& srslog::fetch_file_sink(const std::string& path,
size_t max_size,
std::unique_ptr<log_formatter> f)
{
assert(!path.empty() && "Empty path string");
2020-12-10 09:10:49 -08:00
//:TODO: GCC5 or lower versions emits an error if we use the new() expression
// directly, use redundant piecewise_construct instead.
auto& s = srslog_instance::get().get_sink_repo().emplace(
std::piecewise_construct,
std::forward_as_tuple(path),
std::forward_as_tuple(new file_sink(path, max_size, std::move(f))));
return *s;
}
bool srslog::install_custom_sink(const std::string& id, std::unique_ptr<sink> s)
{
assert(!id.empty() && "Empty path string");
sink* input_sink = s.get();
sink* returned_sink =
srslog_instance::get().get_sink_repo().emplace(id, std::move(s)).get();
// Successful insertion occurs when the returned object is the same one as the
// input object.
return input_sink == returned_sink;
}
///
/// Framework configuration and control function implementations.
///
void srslog::init()
{
srslog_instance::get().get_backend().start();
}
void srslog::flush()
{
srslog_instance& instance = srslog_instance::get();
// Nothing to do when the backend is not running yet.
if (!instance.get_backend().is_running()) {
return;
}
// The backend will set this shared variable when done.
detail::shared_variable<bool> completion_flag(false);
2020-12-10 09:10:49 -08:00
auto sink_ptrs = instance.get_sink_repo().contents();
std::vector<sink*> sinks;
sinks.reserve(sink_ptrs.size());
for (const auto& s : sink_ptrs) {
sinks.push_back(s->get());
}
detail::log_entry cmd;
cmd.flush_cmd = std::unique_ptr<detail::flush_backend_cmd>(
2020-12-10 09:10:49 -08:00
new detail::flush_backend_cmd{completion_flag, std::move(sinks)});
2021-01-28 03:17:18 -08:00
// Make sure the flush command gets into the backend, otherwise we will be
// stuck waiting forever for the command to succeed.
while (!instance.get_backend().push(std::move(cmd))) {
}
// Block the caller thread until we are signaled that the flush is completed.
while (!completion_flag) {
std::this_thread::sleep_for(std::chrono::microseconds(100));
}
}
void srslog::set_error_handler(error_handler handler)
{
srslog_instance::get().set_error_handler(std::move(handler));
}
///
/// Logger management function implementations.
///
detail::any* srslog::detail::find_logger(const std::string& id)
{
return srslog_instance::get().get_logger_repo().find(id);
}
2020-12-10 09:10:49 -08:00
detail::any* srslog::detail::fetch_logger(const std::string& id,
detail::any&& logger)
{
assert(!id.empty() && "Empty id string");
2020-12-10 09:10:49 -08:00
return &srslog_instance::get().get_logger_repo().emplace(id,
std::move(logger));
}
/// Builds a logger name out of the id and tag.
static std::string build_logger_name(const std::string& id, char tag)
{
return fmt::format("{}#{}", id, tag);
}
/// Fetches a logger with all its log channels.
2020-12-10 09:10:49 -08:00
static basic_logger& fetch_basic_logger_helper(const std::string& id,
sink& s,
bool should_print_context)
{
static constexpr char basic_logger_chan_tags[] = {'E', 'W', 'I', 'D'};
srslog_instance& instance = srslog_instance::get();
// User created log channels cannot have ids with a # character, encode the
// ids here with a # to ensure all channels are unique.
2020-12-10 09:10:49 -08:00
log_channel& error = fetch_log_channel_helper(
build_logger_name(id, basic_logger_chan_tags[0]),
s,
instance.get_backend(),
log_channel_config{id, basic_logger_chan_tags[0], should_print_context});
log_channel& warning = fetch_log_channel_helper(
build_logger_name(id, basic_logger_chan_tags[1]),
s,
instance.get_backend(),
log_channel_config{id, basic_logger_chan_tags[1], should_print_context});
log_channel& info = fetch_log_channel_helper(
build_logger_name(id, basic_logger_chan_tags[2]),
s,
instance.get_backend(),
log_channel_config{id, basic_logger_chan_tags[2], should_print_context});
log_channel& debug = fetch_log_channel_helper(
build_logger_name(id, basic_logger_chan_tags[3]),
s,
instance.get_backend(),
log_channel_config{id, basic_logger_chan_tags[3], should_print_context});
return fetch_logger<basic_logger>(id, error, warning, info, debug);
}
2020-12-10 09:10:49 -08:00
basic_logger& srslog::fetch_basic_logger(const std::string& id,
bool should_print_context)
{
assert(!id.empty() && "Empty id string");
2020-12-10 09:10:49 -08:00
return fetch_basic_logger_helper(
id, srslog_instance::get().get_default_sink(), should_print_context);
}
2020-12-10 09:10:49 -08:00
basic_logger& srslog::fetch_basic_logger(const std::string& id,
sink& s,
bool should_print_context)
{
assert(!id.empty() && "Empty id string");
return fetch_basic_logger_helper(id, s, should_print_context);
}
///
/// Deprecated functions to be removed.
///
/// Creates and registers a log channel. Returns a pointer to the newly created
/// channel on success, otherwise nullptr.
2020-12-10 09:10:49 -08:00
static log_channel* create_and_register_log_channel(const std::string& id,
sink& s)
{
assert(!id.empty() && "Empty id string");
srslog_instance& instance = srslog_instance::get();
auto& p = instance.get_channel_repo().emplace(
2020-12-10 09:10:49 -08:00
std::piecewise_construct,
std::forward_as_tuple(id),
std::forward_as_tuple(id, s, instance.get_backend()));
return &p;
}
2020-12-10 09:10:49 -08:00
static log_channel* create_and_register_log_channel(const std::string& id,
log_channel_config config,
sink& s)
{
assert(!id.empty() && "Empty id string");
srslog_instance& instance = srslog_instance::get();
2020-12-10 09:10:49 -08:00
auto& p = instance.get_channel_repo().emplace(
std::piecewise_construct,
std::forward_as_tuple(id),
std::forward_as_tuple(id, s, instance.get_backend(), std::move(config)));
return &p;
}
/// Returns true if the input string contains a sharp character, otherwise
/// returns false.
static bool contains_sharp_char(const std::string& s)
{
return s.find('#') != std::string::npos;
}
log_channel* srslog::create_log_channel(const std::string& id, sink& s)
{
if (contains_sharp_char(id)) {
return nullptr;
}
return create_and_register_log_channel(id, s);
}
sink* srslog::create_stdout_sink(const std::string& name)
{
2020-12-10 09:10:49 -08:00
return srslog_instance::get().get_sink_repo().find("stdout")->get();
}
sink* srslog::create_stderr_sink(const std::string& name)
{
2020-12-10 09:10:49 -08:00
return srslog_instance::get().get_sink_repo().find("stderr")->get();
}
sink* srslog::create_file_sink(const std::string& path, size_t max_size)
{
2020-12-10 09:10:49 -08:00
//:TODO: GCC5 or lower versions emits an error if we use the new() expression
// directly, use redundant piecewise_construct instead.
return srslog_instance::get()
.get_sink_repo()
.emplace(std::piecewise_construct,
std::forward_as_tuple(path),
std::forward_as_tuple(new file_sink(
path,
max_size,
std::unique_ptr<log_formatter>(new text_formatter))))
.get();
}
2020-12-10 09:10:49 -08:00
basic_logger* srslog::create_basic_logger(const std::string& id,
sink& s,
bool should_print_context)
{
assert(!id.empty() && "Empty id string");
static constexpr char basic_logger_chan_tags[] = {'E', 'W', 'I', 'D'};
auto& logger_repo = srslog_instance::get().get_logger_repo();
// Nothing to do when the logger already exists.
if (logger_repo.find(id)) {
return nullptr;
}
// User created log channels cannot have ids with a # character, encode the
// ids here with a # to ensure all channel creations will be successful
// without any id clashes.
log_channel* error = create_and_register_log_channel(
2020-12-10 09:10:49 -08:00
build_logger_name(id, basic_logger_chan_tags[0]),
{id, basic_logger_chan_tags[0], should_print_context},
s);
assert(error && "Could not create channel");
log_channel* warning = create_and_register_log_channel(
2020-12-10 09:10:49 -08:00
build_logger_name(id, basic_logger_chan_tags[1]),
{id, basic_logger_chan_tags[1], should_print_context},
s);
assert(warning && "Could not create channel");
log_channel* info = create_and_register_log_channel(
2020-12-10 09:10:49 -08:00
build_logger_name(id, basic_logger_chan_tags[2]),
{id, basic_logger_chan_tags[2], should_print_context},
s);
assert(info && "Could not create channel");
log_channel* debug = create_and_register_log_channel(
2020-12-10 09:10:49 -08:00
build_logger_name(id, basic_logger_chan_tags[3]),
{id, basic_logger_chan_tags[3], should_print_context},
s);
assert(debug && "Could not create channel");
return create_logger<basic_logger>(id, *error, *warning, *info, *debug);
}