spdlog/include/spdlog/logger-inl.h

246 lines
6.6 KiB
C
Raw Permalink Normal View History

2019-06-03 17:09:16 -04:00
// Copyright(c) 2015-present, Gabi Melman & spdlog contributors.
2019-05-11 13:06:17 -04:00
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
#pragma once
2019-05-12 17:09:00 -04:00
#ifndef SPDLOG_HEADER_ONLY
#include "spdlog/logger.h"
#endif
2019-04-05 09:44:17 -04:00
#include "spdlog/sinks/sink.h"
2019-08-26 12:59:16 -04:00
#include "spdlog/details/backtracer.h"
2019-04-05 09:44:17 -04:00
#include "spdlog/details/pattern_formatter.h"
#include <cstdio>
namespace spdlog {
2019-04-05 09:44:17 -04:00
2019-06-18 10:05:27 -04:00
// public methods
SPDLOG_INLINE logger::logger(const logger &other)
: name_(other.name_)
, sinks_(other.sinks_)
, level_(other.level_.load(std::memory_order_relaxed))
, flush_level_(other.flush_level_.load(std::memory_order_relaxed))
, custom_err_handler_(other.custom_err_handler_)
2019-09-03 11:20:27 -04:00
, tracer_(other.tracer_)
2019-09-04 18:25:00 -04:00
{}
2019-06-18 10:05:27 -04:00
2019-08-25 11:05:47 -04:00
SPDLOG_INLINE logger::logger(logger &&other) SPDLOG_NOEXCEPT : name_(std::move(other.name_)),
sinks_(std::move(other.sinks_)),
level_(other.level_.load(std::memory_order_relaxed)),
flush_level_(other.flush_level_.load(std::memory_order_relaxed)),
custom_err_handler_(std::move(other.custom_err_handler_)),
2019-08-26 12:59:16 -04:00
tracer_(std::move(other.tracer_))
2019-08-25 10:24:17 -04:00
2019-06-18 10:05:27 -04:00
{}
2019-08-18 10:45:09 -04:00
SPDLOG_INLINE logger &logger::operator=(logger other) SPDLOG_NOEXCEPT
2019-06-18 10:05:27 -04:00
{
this->swap(other);
return *this;
}
2019-08-18 10:45:09 -04:00
SPDLOG_INLINE void logger::swap(spdlog::logger &other) SPDLOG_NOEXCEPT
2019-06-18 10:05:27 -04:00
{
name_.swap(other.name_);
sinks_.swap(other.sinks_);
// swap level_
2019-09-07 13:11:35 -04:00
auto other_level = other.level_.load();
auto my_level = level_.exchange(other_level);
other.level_.store(my_level);
2019-06-18 10:05:27 -04:00
// swap flush level_
2019-09-07 13:11:35 -04:00
other_level = other.flush_level_.load();
my_level = flush_level_.exchange(other_level);
other.flush_level_.store(my_level);
2019-06-18 10:05:27 -04:00
custom_err_handler_.swap(other.custom_err_handler_);
2019-09-04 18:25:00 -04:00
std::swap(tracer_, other.tracer_);
2019-06-18 10:05:27 -04:00
}
SPDLOG_INLINE void swap(logger &a, logger &b)
{
a.swap(b);
}
SPDLOG_INLINE bool logger::should_log(level::level_enum msg_level) const
{
return msg_level >= level_.load(std::memory_order_relaxed);
}
SPDLOG_INLINE void logger::set_level(level::level_enum log_level)
{
2019-08-26 12:59:16 -04:00
level_.store(log_level);
2019-06-18 10:05:27 -04:00
}
SPDLOG_INLINE level::level_enum logger::level() const
{
return static_cast<level::level_enum>(level_.load(std::memory_order_relaxed));
}
SPDLOG_INLINE const std::string &logger::name() const
{
return name_;
}
// set formatting for the sinks in this logger.
// each sink will get a seperate instance of the formatter object.
SPDLOG_INLINE void logger::set_formatter(std::unique_ptr<formatter> f)
{
for (auto it = sinks_.begin(); it != sinks_.end(); ++it)
2019-04-05 09:44:17 -04:00
{
2019-06-18 10:05:27 -04:00
if (std::next(it) == sinks_.end())
{
2019-06-18 10:05:27 -04:00
// last element - we can be move it.
(*it)->set_formatter(std::move(f));
}
2019-06-18 10:05:27 -04:00
else
{
2019-06-18 10:05:27 -04:00
(*it)->set_formatter(f->clone());
}
}
2019-06-18 10:05:27 -04:00
}
2019-06-18 10:05:27 -04:00
SPDLOG_INLINE void logger::set_pattern(std::string pattern, pattern_time_type time_type)
{
auto new_formatter = details::make_unique<pattern_formatter>(std::move(pattern), time_type);
set_formatter(std::move(new_formatter));
}
2019-04-05 09:44:17 -04:00
2019-08-25 10:24:17 -04:00
// create new backtrace sink and move to it all our child sinks
SPDLOG_INLINE void logger::enable_backtrace(size_t n_messages)
2019-08-22 19:28:52 -04:00
{
tracer_.enable(n_messages);
2019-08-25 10:24:17 -04:00
}
// restore orig sinks and level and delete the backtrace sink
SPDLOG_INLINE void logger::disable_backtrace()
{
tracer_.disable();
2019-08-22 19:28:52 -04:00
}
SPDLOG_INLINE void logger::dump_backtrace()
{
2019-08-25 16:55:35 -04:00
dump_backtrace_();
}
2019-06-18 10:05:27 -04:00
// flush functions
SPDLOG_INLINE void logger::flush()
{
flush_();
2019-06-18 10:05:27 -04:00
}
2019-04-05 09:44:17 -04:00
2019-06-18 10:05:27 -04:00
SPDLOG_INLINE void logger::flush_on(level::level_enum log_level)
{
flush_level_.store(log_level);
}
2019-04-05 09:44:17 -04:00
2019-06-18 10:05:27 -04:00
SPDLOG_INLINE level::level_enum logger::flush_level() const
{
return static_cast<level::level_enum>(flush_level_.load(std::memory_order_relaxed));
}
2019-04-05 09:44:17 -04:00
2019-06-18 10:05:27 -04:00
// sinks
SPDLOG_INLINE const std::vector<sink_ptr> &logger::sinks() const
{
return sinks_;
}
SPDLOG_INLINE std::vector<sink_ptr> &logger::sinks()
{
return sinks_;
}
// error handler
SPDLOG_INLINE void logger::set_error_handler(err_handler handler)
{
custom_err_handler_ = handler;
}
2019-08-28 18:05:23 -04:00
// create new logger with same sinks and configuration.
SPDLOG_INLINE std::shared_ptr<logger> logger::clone(std::string logger_name)
{
auto cloned = std::make_shared<logger>(*this);
cloned->name_ = std::move(logger_name);
return cloned;
}
2019-06-18 10:05:27 -04:00
// protected methods
SPDLOG_INLINE void logger::sink_it_(const details::log_msg &msg)
2019-06-18 10:05:27 -04:00
{
for (auto &sink : sinks_)
{
if (msg.level.forced || sink->should_log(msg.level.value))
2019-04-05 09:44:17 -04:00
{
SPDLOG_TRY
{
sink->log(msg);
}
SPDLOG_LOGGER_CATCH()
2019-04-05 09:44:17 -04:00
}
}
2019-06-18 10:05:27 -04:00
if (should_flush_(msg))
{
2019-06-18 10:05:27 -04:00
flush_();
}
2019-06-18 10:05:27 -04:00
}
2019-06-18 10:05:27 -04:00
SPDLOG_INLINE void logger::flush_()
{
for (auto &sink : sinks_)
{
SPDLOG_TRY
{
sink->flush();
}
SPDLOG_LOGGER_CATCH()
}
2019-06-18 10:05:27 -04:00
}
2019-08-25 16:55:35 -04:00
SPDLOG_INLINE void logger::dump_backtrace_()
{
2019-08-26 12:59:16 -04:00
using details::log_msg;
if (tracer_)
2019-08-25 16:55:35 -04:00
{
sink_it_(log_msg{name(), level::forceable{level::info, false}, "****************** Backtrace Start ******************"});
2019-09-30 18:56:02 -04:00
tracer_.foreach_pop([this](const log_msg &msg) { this->sink_it_(msg); });
sink_it_(log_msg{name(), level::forceable{level::info, false}, "****************** Backtrace End ********************"});
2019-08-25 16:55:35 -04:00
}
}
2019-06-18 10:05:27 -04:00
SPDLOG_INLINE bool logger::should_flush_(const details::log_msg &msg)
{
auto flush_level = flush_level_.load(std::memory_order_relaxed);
return (msg.level.value >= flush_level) && (msg.level.value != level::off);
2019-06-18 10:05:27 -04:00
}
2019-06-18 10:05:27 -04:00
SPDLOG_INLINE void logger::err_handler_(const std::string &msg)
{
if (custom_err_handler_)
2019-04-05 09:44:17 -04:00
{
2019-06-18 10:05:27 -04:00
custom_err_handler_(msg);
2019-04-05 09:44:17 -04:00
}
2019-06-18 10:05:27 -04:00
else
2019-04-05 09:44:17 -04:00
{
using std::chrono::system_clock;
static std::mutex mutex;
static std::chrono::system_clock::time_point last_report_time;
static size_t err_counter = 0;
std::lock_guard<std::mutex> lk{mutex};
auto now = system_clock::now();
err_counter++;
2019-07-18 07:26:36 -04:00
if (now - last_report_time < std::chrono::seconds(1))
{
return;
}
last_report_time = now;
auto tm_time = details::os::localtime(system_clock::to_time_t(now));
2019-06-18 10:05:27 -04:00
char date_buf[64];
std::strftime(date_buf, sizeof(date_buf), "%Y-%m-%d %H:%M:%S", &tm_time);
fprintf(stderr, "[*** LOG ERROR #%04zu ***] [%s] [%s] {%s}\n", err_counter, date_buf, name().c_str(), msg.c_str());
2019-04-05 09:44:17 -04:00
}
2019-06-18 10:05:27 -04:00
}
2019-06-18 18:24:06 -04:00
} // namespace spdlog