2016-08-22 22:09:23 +03:00
|
|
|
//
|
|
|
|
// Copyright(c) 2015 Gabi Melman.
|
|
|
|
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
|
|
|
//
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-07-21 23:48:07 +03:00
|
|
|
// Very fast asynchronous logger (millions of logs per second on an average
|
|
|
|
// desktop)
|
|
|
|
// Uses pre allocated lockfree queue for maximum throughput even under large
|
|
|
|
// number of threads.
|
2016-08-22 22:09:23 +03:00
|
|
|
// Creates a single back thread to pop messages from the queue and log them.
|
|
|
|
//
|
|
|
|
// Upon each log write the logger:
|
|
|
|
// 1. Checks if its log level is enough to log the message
|
2018-07-21 23:48:07 +03:00
|
|
|
// 2. Push a new copy of the message to a queue (or block the caller until
|
|
|
|
// space is available in the queue)
|
2016-08-22 22:09:23 +03:00
|
|
|
// 3. will throw spdlog_ex upon log exceptions
|
2018-07-21 23:48:07 +03:00
|
|
|
// Upon destruction, logs all remaining messages in the queue before
|
|
|
|
// destructing..
|
2016-08-22 22:09:23 +03:00
|
|
|
|
2018-04-29 01:31:09 +03:00
|
|
|
#include "spdlog/common.h"
|
|
|
|
#include "spdlog/logger.h"
|
2016-08-22 22:09:23 +03:00
|
|
|
|
|
|
|
#include <chrono>
|
|
|
|
#include <memory>
|
2018-03-09 15:26:33 +02:00
|
|
|
#include <string>
|
2018-04-14 04:16:05 +03:00
|
|
|
|
2018-03-09 15:26:33 +02:00
|
|
|
namespace spdlog {
|
2018-07-20 23:20:48 +03:00
|
|
|
|
|
|
|
// Async overflow policy - block by default.
|
|
|
|
enum class async_overflow_policy
|
|
|
|
{
|
|
|
|
block, // Block until message can be enqueued
|
2018-07-21 23:48:07 +03:00
|
|
|
overrun_oldest // Discard oldest message in the queue if full when trying to
|
|
|
|
// add new item.
|
2018-07-20 23:20:48 +03:00
|
|
|
};
|
|
|
|
|
2018-03-09 15:26:33 +02:00
|
|
|
namespace details {
|
2018-04-14 03:34:57 +03:00
|
|
|
class thread_pool;
|
2016-08-22 22:09:23 +03:00
|
|
|
}
|
|
|
|
|
2018-09-26 14:33:37 +03:00
|
|
|
class async_logger final : public std::enable_shared_from_this<async_logger>, public logger
|
2016-08-22 22:09:23 +03:00
|
|
|
{
|
2018-04-14 03:34:57 +03:00
|
|
|
friend class details::thread_pool;
|
|
|
|
|
2016-08-22 22:09:23 +03:00
|
|
|
public:
|
2018-07-14 16:21:53 +03:00
|
|
|
template<typename It>
|
2018-10-04 02:06:39 +03:00
|
|
|
async_logger(std::string logger_name, It begin, It end, std::weak_ptr<details::thread_pool> tp,
|
2018-07-08 00:53:50 +03:00
|
|
|
async_overflow_policy overflow_policy = async_overflow_policy::block);
|
2016-08-22 22:09:23 +03:00
|
|
|
|
2018-08-13 10:30:02 +03:00
|
|
|
async_logger(std::string logger_name, sinks_init_list sinks_list, std::weak_ptr<details::thread_pool> tp,
|
2018-07-08 00:53:50 +03:00
|
|
|
async_overflow_policy overflow_policy = async_overflow_policy::block);
|
2016-08-22 22:09:23 +03:00
|
|
|
|
2018-07-19 15:00:05 +03:00
|
|
|
async_logger(std::string logger_name, sink_ptr single_sink, std::weak_ptr<details::thread_pool> tp,
|
2018-07-08 00:53:50 +03:00
|
|
|
async_overflow_policy overflow_policy = async_overflow_policy::block);
|
2017-03-28 01:54:33 +03:00
|
|
|
|
2018-08-25 17:35:20 +03:00
|
|
|
std::shared_ptr<logger> clone(std::string new_name) override;
|
|
|
|
|
2016-08-22 22:09:23 +03:00
|
|
|
protected:
|
2018-10-05 14:23:37 +03:00
|
|
|
void sink_it_(details::log_msg &msg) override;
|
2018-06-10 22:59:17 +03:00
|
|
|
void flush_() override;
|
2018-04-14 03:34:57 +03:00
|
|
|
|
2018-09-27 00:47:09 +03:00
|
|
|
void backend_log_(const details::log_msg &incoming_log_msg);
|
2018-06-10 22:59:17 +03:00
|
|
|
void backend_flush_();
|
2016-08-22 22:09:23 +03:00
|
|
|
|
|
|
|
private:
|
2018-06-10 22:59:17 +03:00
|
|
|
std::weak_ptr<details::thread_pool> thread_pool_;
|
|
|
|
async_overflow_policy overflow_policy_;
|
2016-08-22 22:09:23 +03:00
|
|
|
};
|
2018-03-09 15:26:33 +02:00
|
|
|
} // namespace spdlog
|
2016-08-22 22:09:23 +03:00
|
|
|
|
2017-11-11 13:44:27 +01:00
|
|
|
#include "details/async_logger_impl.h"
|