1
0
mirror of https://github.com/gabime/spdlog.git synced 2025-04-01 02:42:41 +08:00
spdlog/include/spdlog/sinks/udp_sink.h

69 lines
1.7 KiB
C
Raw Normal View History

// Copyright(c) 2015-present, Gabi Melman & spdlog contributors.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
#pragma once
2023-09-28 05:42:16 +08:00
#include "../common.h"
#include "../details/null_mutex.h"
#include "./base_sink.h"
#ifdef _WIN32
2023-09-28 05:42:16 +08:00
#include "../details/udp_client-windows.h"
#else
2023-09-28 05:42:16 +08:00
#include "../details/udp_client.h"
#endif
#include <chrono>
#include <functional>
2023-09-25 07:35:55 +08:00
#include <mutex>
#include <string>
// Simple udp client sink
2021-09-04 07:36:49 +08:00
// Sends formatted log via udp
namespace spdlog {
namespace sinks {
2023-09-25 07:35:55 +08:00
struct udp_sink_config {
std::string server_host;
uint16_t server_port;
udp_sink_config(std::string host, uint16_t port)
2023-09-25 21:19:10 +08:00
: server_host{std::move(host)},
server_port{port} {}
};
2023-09-25 07:35:55 +08:00
template <typename Mutex>
class udp_sink : public spdlog::sinks::base_sink<Mutex> {
public:
// host can be hostname or ip address
explicit udp_sink(udp_sink_config sink_config)
2023-09-25 07:35:55 +08:00
: client_{sink_config.server_host, sink_config.server_port} {}
~udp_sink() override = default;
protected:
2023-09-25 07:35:55 +08:00
void sink_it_(const spdlog::details::log_msg &msg) override {
spdlog::memory_buf_t formatted;
spdlog::sinks::base_sink<Mutex>::formatter_->format(msg, formatted);
client_.send(formatted.data(), formatted.size());
}
2021-11-17 05:44:35 +08:00
void flush_() override {}
details::udp_client client_;
};
using udp_sink_mt = udp_sink<std::mutex>;
using udp_sink_st = udp_sink<spdlog::details::null_mutex>;
2023-09-25 21:40:05 +08:00
} // namespace sinks
//
// factory functions
//
2023-09-25 07:35:55 +08:00
template <typename Factory = spdlog::synchronous_factory>
2024-01-13 15:37:32 +08:00
inline std::shared_ptr<logger> udp_logger_mt(const std::string &logger_name, sinks::udp_sink_config skin_config) {
return Factory::template create<sinks::udp_sink_mt>(logger_name, skin_config);
}
2023-09-25 21:40:05 +08:00
} // namespace spdlog