r5sdk/r5dev/thirdparty/spdlog/sinks/callback_sink.h

57 lines
1.7 KiB
C
Raw Normal View History

2023-09-17 20:37:44 +02:00
// Copyright(c) 2015-present, Gabi Melman & spdlog contributors.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
#pragma once
#include <spdlog/details/null_mutex.h>
#include <spdlog/details/synchronous_factory.h>
2024-02-04 13:43:17 +01:00
#include <spdlog/sinks/base_sink.h>
2023-09-17 20:37:44 +02:00
#include <mutex>
#include <string>
namespace spdlog {
// callbacks type
typedef std::function<void(const details::log_msg &msg)> custom_log_callback;
namespace sinks {
/*
* Trivial callback sink, gets a callback function and calls it on each log
*/
2024-02-04 13:43:17 +01:00
template <typename Mutex>
class callback_sink final : public base_sink<Mutex> {
2023-09-17 20:37:44 +02:00
public:
explicit callback_sink(const custom_log_callback &callback)
2024-02-04 13:43:17 +01:00
: callback_{callback} {}
2023-09-17 20:37:44 +02:00
protected:
2024-02-04 13:43:17 +01:00
void sink_it_(const details::log_msg &msg) override { callback_(msg); }
2023-09-17 20:37:44 +02:00
void flush_() override{};
private:
custom_log_callback callback_;
};
using callback_sink_mt = callback_sink<std::mutex>;
using callback_sink_st = callback_sink<details::null_mutex>;
2024-02-04 13:43:17 +01:00
} // namespace sinks
2023-09-17 20:37:44 +02:00
//
// factory functions
//
2024-02-04 13:43:17 +01:00
template <typename Factory = spdlog::synchronous_factory>
inline std::shared_ptr<logger> callback_logger_mt(const std::string &logger_name,
const custom_log_callback &callback) {
2023-09-17 20:37:44 +02:00
return Factory::template create<sinks::callback_sink_mt>(logger_name, callback);
}
2024-02-04 13:43:17 +01:00
template <typename Factory = spdlog::synchronous_factory>
inline std::shared_ptr<logger> callback_logger_st(const std::string &logger_name,
const custom_log_callback &callback) {
2023-09-17 20:37:44 +02:00
return Factory::template create<sinks::callback_sink_st>(logger_name, callback);
}
2024-02-04 13:43:17 +01:00
} // namespace spdlog