spdlog/include/spdlog/details/async_logger_impl.h

117 lines
2.8 KiB
C
Raw Normal View History

2016-09-02 22:06:00 +08:00
//
// Copyright(c) 2015 Gabi Melman.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
//
#pragma once
2018-04-14 08:34:57 +08:00
// async logger implementation
// uses a thread pool to perform the actual logging
2016-09-02 22:06:00 +08:00
2018-04-14 08:34:57 +08:00
#include "../details/thread_pool.h"
2016-09-02 22:06:00 +08:00
#include <chrono>
#include <memory>
2018-03-09 21:26:33 +08:00
#include <string>
2016-09-02 22:06:00 +08:00
2018-03-16 23:13:50 +08:00
template<class It>
2018-04-14 08:34:57 +08:00
inline spdlog::async_logger::async_logger(const std::string &logger_name, const It &begin, const It &end,
std::weak_ptr<details::thread_pool> tp, async_overflow_policy overflow_policy)
2018-03-09 21:26:33 +08:00
: logger(logger_name, begin, end)
2018-04-14 08:34:57 +08:00
, _thread_pool(tp)
, _overflow_policy(overflow_policy)
2016-09-02 22:06:00 +08:00
{
}
2018-04-14 08:34:57 +08:00
inline spdlog::async_logger::async_logger(const std::string &logger_name, sinks_init_list sinks_list,
std::weak_ptr<details::thread_pool> tp, async_overflow_policy overflow_policy)
: async_logger(logger_name, sinks_list.begin(), sinks_list.end(), tp, overflow_policy)
2016-09-02 22:06:00 +08:00
{
2018-03-09 21:26:33 +08:00
}
2016-09-02 22:06:00 +08:00
2018-04-14 08:34:57 +08:00
inline spdlog::async_logger::async_logger(
const std::string &logger_name, sink_ptr single_sink, std::weak_ptr<details::thread_pool> tp, async_overflow_policy overflow_policy)
: async_logger(logger_name, {single_sink}, tp, overflow_policy)
2018-03-09 21:26:33 +08:00
{
}
2016-09-02 22:06:00 +08:00
2018-04-14 08:34:57 +08:00
// send the log message to the thread pool
inline void spdlog::async_logger::_sink_it(details::log_msg &msg)
2018-04-20 18:20:19 +08:00
{
2018-04-14 08:34:57 +08:00
#if defined(SPDLOG_ENABLE_MESSAGE_COUNTER)
2018-04-20 18:20:19 +08:00
_incr_msg_counter(msg);
2018-04-14 08:34:57 +08:00
#endif
2018-04-20 18:20:19 +08:00
if (auto pool_ptr = _thread_pool.lock())
{
pool_ptr->post_log(shared_from_this(), std::move(msg), _overflow_policy);
}
else
{
throw spdlog_ex("async log: thread pool doens't exist anymore");
}
}
2018-04-14 08:34:57 +08:00
// send flush request to the thread pool
inline void spdlog::async_logger::_flush()
2016-09-02 22:06:00 +08:00
{
2018-04-14 08:34:57 +08:00
if (auto pool_ptr = _thread_pool.lock())
{
pool_ptr->post_flush(shared_from_this(), _overflow_policy);
}
else
{
throw spdlog_ex("async flush: thread pool doens't exist anymore");
}
2016-09-02 22:06:00 +08:00
}
2018-04-14 08:34:57 +08:00
//
// backend functions - called from the thread pool to do the actual job
//
inline void spdlog::async_logger::_backend_log(details::log_msg &incoming_log_msg)
2016-09-02 22:06:00 +08:00
{
2018-04-14 08:34:57 +08:00
try
{
_formatter->format(incoming_log_msg);
for (auto &s : _sinks)
{
if (s->should_log(incoming_log_msg.level))
{
s->log(incoming_log_msg);
}
}
}
catch (const std::exception &ex)
{
_err_handler(ex.what());
}
catch (...)
{
_err_handler("Unknown exception in async logger " + _name);
}
2018-04-20 18:20:19 +08:00
if (_should_flush(incoming_log_msg))
{
_backend_flush();
}
2016-09-02 22:06:00 +08:00
}
2018-04-14 08:34:57 +08:00
inline void spdlog::async_logger::_backend_flush()
2016-09-02 22:06:00 +08:00
{
try
{
2018-04-14 08:34:57 +08:00
for (auto &sink : _sinks)
{
2018-04-14 08:34:57 +08:00
sink->flush();
}
2016-09-02 22:06:00 +08:00
}
catch (const std::exception &ex)
{
_err_handler(ex.what());
}
2018-03-09 21:26:33 +08:00
catch (...)
{
2018-04-14 08:34:57 +08:00
_err_handler("Unknown exception in async logger " + _name);
}
2016-09-02 22:06:00 +08:00
}