spdlog/include/spdlog/details/async_logger_impl.h

94 lines
3.1 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
// Async Logger implementation
// Use an async_sink (queue per logger) to perform the logging in a worker thread
#include "../async_logger.h"
2018-03-09 21:26:33 +08:00
#include "../details/async_log_helper.h"
2016-09-02 22:06:00 +08:00
#include <chrono>
2018-03-09 21:26:33 +08:00
#include <functional>
2016-09-02 22:06:00 +08:00
#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-03-09 21:26:33 +08:00
inline spdlog::async_logger::async_logger(const std::string &logger_name, const It &begin, const It &end, size_t queue_size,
const async_overflow_policy overflow_policy, const std::function<void()> &worker_warmup_cb,
const std::chrono::milliseconds &flush_interval_ms, const std::function<void()> &worker_teardown_cb)
: logger(logger_name, begin, end)
, _async_log_helper(new details::async_log_helper(
_formatter, _sinks, queue_size, _err_handler, overflow_policy, worker_warmup_cb, flush_interval_ms, worker_teardown_cb))
2016-09-02 22:06:00 +08:00
{
}
2018-03-09 21:26:33 +08:00
inline spdlog::async_logger::async_logger(const std::string &logger_name, sinks_init_list sinks_list, size_t queue_size,
const async_overflow_policy overflow_policy, const std::function<void()> &worker_warmup_cb,
const std::chrono::milliseconds &flush_interval_ms, const std::function<void()> &worker_teardown_cb)
: async_logger(logger_name, sinks_list.begin(), sinks_list.end(), queue_size, overflow_policy, worker_warmup_cb, flush_interval_ms,
worker_teardown_cb)
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-03-09 21:26:33 +08:00
inline spdlog::async_logger::async_logger(const std::string &logger_name, sink_ptr single_sink, size_t queue_size,
const async_overflow_policy overflow_policy, const std::function<void()> &worker_warmup_cb,
const std::chrono::milliseconds &flush_interval_ms, const std::function<void()> &worker_teardown_cb)
: async_logger(
logger_name, {std::move(single_sink)}, queue_size, overflow_policy, worker_warmup_cb, flush_interval_ms, worker_teardown_cb)
{
}
2016-09-02 22:06:00 +08:00
inline void spdlog::async_logger::flush()
{
2016-09-03 06:35:10 +08:00
_async_log_helper->flush(true);
2016-09-02 22:06:00 +08:00
}
// Error handler
inline void spdlog::async_logger::set_error_handler(spdlog::log_err_handler err_handler)
{
2017-03-28 07:08:18 +08:00
_err_handler = err_handler;
_async_log_helper->set_error_handler(err_handler);
}
inline spdlog::log_err_handler spdlog::async_logger::error_handler()
{
2017-03-28 07:08:18 +08:00
return _err_handler;
}
2016-09-02 22:06:00 +08:00
inline void spdlog::async_logger::_set_formatter(spdlog::formatter_ptr msg_formatter)
{
_formatter = msg_formatter;
_async_log_helper->set_formatter(_formatter);
}
2018-03-09 21:26:33 +08:00
inline void spdlog::async_logger::_set_pattern(const std::string &pattern, pattern_time_type pattern_time)
2016-09-02 22:06:00 +08:00
{
_formatter = std::make_shared<pattern_formatter>(pattern, pattern_time);
2016-09-02 22:06:00 +08:00
_async_log_helper->set_formatter(_formatter);
}
2018-03-09 21:26:33 +08:00
inline void spdlog::async_logger::_sink_it(details::log_msg &msg)
2016-09-02 22:06:00 +08:00
{
try
{
2017-05-21 07:45:08 +08:00
#if defined(SPDLOG_ENABLE_MESSAGE_COUNTER)
2017-10-13 00:48:04 +08:00
_incr_msg_counter(msg);
2017-05-21 07:45:08 +08:00
#endif
2016-09-02 22:06:00 +08:00
_async_log_helper->log(msg);
if (_should_flush_on(msg))
2016-09-03 06:35:10 +08:00
_async_log_helper->flush(false); // do async 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 (...)
{
_err_handler("Unknown exception in logger " + _name);
throw;
}
2016-09-02 22:06:00 +08:00
}