// // Copyright(c) 2018 Gabi Melman. // Distributed under the MIT License (http://opensource.org/licenses/MIT) // #pragma once // // Async logging using global thread pool // All loggers created here share same global thread pool. // Each log message is pushed to a queue along withe a shared pointer to the logger. // If a logger deleted while having pending messages in the queue, it's actual destruction will defer // until all its messages are processed by the thread pool. // This is because each message in the queue holds a shared_ptr to the originating logger. #include "spdlog/async_logger.h" #include "spdlog/details/registry.h" #include "spdlog/details/thread_pool.h" #include namespace spdlog { // async logger factory - creates async loggers backed with thread pool. // if a global thread pool doesn't already exist, create it with default queue size of 8192 items and single thread. struct create_async { template static std::shared_ptr create(const std::string &logger_name, SinkArgs &&... args) { using details::registry; std::lock_guard lock(registry::instance().tp_mutex()); auto tp = registry::instance().get_thread_pool(); if (tp == nullptr) { tp = std::make_shared(8192, 1); registry::instance().set_thread_pool(tp); } auto sink = std::make_shared(std::forward(args)...); auto new_logger = std::make_shared(logger_name, std::move(sink), std::move(tp), async_overflow_policy::block_retry); registry::instance().register_and_init(new_logger); return new_logger; } }; template inline std::shared_ptr create_async_logger(const std::string &logger_name, SinkArgs &&... sink_args) { return create_async::create(logger_name, std::forward(sink_args)...); } // set global thread pool. inline void init_thread_pool(size_t q_size, size_t thread_count) { using details::registry; using details::thread_pool; auto tp = std::make_shared(q_size, thread_count); registry::instance().set_thread_pool(std::move(tp)); } } // namespace spdlog