2019-06-04 00:09:16 +03:00
|
|
|
// Copyright(c) 2015-present, Gabi Melman & spdlog contributors.
|
2016-08-22 20:54:18 +03:00
|
|
|
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2024-07-03 21:51:11 +02:00
|
|
|
#include <spdlog/details/null_mutex.h>
|
|
|
|
|
#include <spdlog/sinks/base_sink.h>
|
2024-11-29 13:40:40 +02:00
|
|
|
#include <syslog.h>
|
2016-08-22 20:54:18 +03:00
|
|
|
|
|
|
|
|
#include <array>
|
|
|
|
|
#include <string>
|
2025-01-05 02:17:31 +02:00
|
|
|
#include <mutex>
|
2016-08-22 20:54:18 +03:00
|
|
|
|
2018-03-17 12:47:46 +02:00
|
|
|
namespace spdlog {
|
2018-04-20 13:20:19 +03:00
|
|
|
namespace sinks {
|
|
|
|
|
/**
|
|
|
|
|
* Sink that write to syslog using the `syscall()` library call.
|
|
|
|
|
*/
|
2023-09-25 02:35:55 +03:00
|
|
|
template <typename Mutex>
|
2024-12-06 19:21:42 +02:00
|
|
|
class syslog_sink final : public base_sink<Mutex> {
|
2018-04-20 13:20:19 +03:00
|
|
|
public:
|
2025-01-05 02:17:31 +02:00
|
|
|
syslog_sink(std::string ident = "", int syslog_option = 0, int syslog_facility = LOG_USER, bool enable_formatting=false)
|
2023-09-25 16:19:10 +03:00
|
|
|
: enable_formatting_{enable_formatting},
|
|
|
|
|
syslog_levels_{{/* spdlog::level::trace */ LOG_DEBUG,
|
2023-09-25 02:35:55 +03:00
|
|
|
/* spdlog::level::debug */ LOG_DEBUG,
|
|
|
|
|
/* spdlog::level::info */ LOG_INFO,
|
|
|
|
|
/* spdlog::level::warn */ LOG_WARNING,
|
|
|
|
|
/* spdlog::level::err */ LOG_ERR,
|
|
|
|
|
/* spdlog::level::critical */ LOG_CRIT,
|
2023-09-25 16:19:10 +03:00
|
|
|
/* spdlog::level::off */ LOG_INFO}},
|
|
|
|
|
ident_{std::move(ident)} {
|
2018-04-20 13:20:19 +03:00
|
|
|
// set ident to be program name if empty
|
2018-06-10 22:59:17 +03:00
|
|
|
::openlog(ident_.empty() ? nullptr : ident_.c_str(), syslog_option, syslog_facility);
|
2018-04-20 13:20:19 +03:00
|
|
|
}
|
2018-02-24 23:56:56 +01:00
|
|
|
|
2023-09-25 02:35:55 +03:00
|
|
|
~syslog_sink() override { ::closelog(); }
|
2016-08-22 20:54:18 +03:00
|
|
|
|
2018-04-20 13:20:19 +03:00
|
|
|
syslog_sink(const syslog_sink &) = delete;
|
|
|
|
|
syslog_sink &operator=(const syslog_sink &) = delete;
|
2016-08-22 20:54:18 +03:00
|
|
|
|
2018-07-14 16:21:53 +03:00
|
|
|
protected:
|
2023-09-25 02:35:55 +03:00
|
|
|
void sink_it_(const details::log_msg &msg) override {
|
2019-06-19 00:52:38 +03:00
|
|
|
string_view_t payload;
|
2019-09-13 11:38:24 +03:00
|
|
|
memory_buf_t formatted;
|
2023-09-25 02:35:55 +03:00
|
|
|
if (enable_formatting_) {
|
2019-06-27 23:56:37 +03:00
|
|
|
base_sink<Mutex>::formatter_->format(msg, formatted);
|
2019-06-19 00:52:38 +03:00
|
|
|
payload = string_view_t(formatted.data(), formatted.size());
|
2023-09-25 02:35:55 +03:00
|
|
|
} else {
|
2019-06-19 00:52:38 +03:00
|
|
|
payload = msg.payload;
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-10 02:19:16 +03:00
|
|
|
size_t length = payload.size();
|
|
|
|
|
// limit to max int
|
2023-09-25 02:35:55 +03:00
|
|
|
if (length > static_cast<size_t>(std::numeric_limits<int>::max())) {
|
2019-07-15 01:31:31 +03:00
|
|
|
length = static_cast<size_t>(std::numeric_limits<int>::max());
|
2019-07-10 02:19:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::syslog(syslog_prio_from_level(msg), "%.*s", static_cast<int>(length), payload.data());
|
2018-04-20 13:20:19 +03:00
|
|
|
}
|
2016-08-22 20:54:18 +03:00
|
|
|
|
2018-07-14 16:21:53 +03:00
|
|
|
void flush_() override {}
|
2019-06-19 00:52:38 +03:00
|
|
|
bool enable_formatting_ = false;
|
2016-08-22 20:54:18 +03:00
|
|
|
|
2018-04-20 13:20:19 +03:00
|
|
|
//
|
|
|
|
|
// Simply maps spdlog's log level to syslog priority level.
|
|
|
|
|
//
|
2024-07-03 21:51:11 +02:00
|
|
|
virtual int syslog_prio_from_level(const details::log_msg &msg) const {
|
2024-11-25 09:19:28 +02:00
|
|
|
return syslog_levels_.at(static_cast<levels_array::size_type>(msg.log_level));
|
2018-04-20 13:20:19 +03:00
|
|
|
}
|
2023-10-24 08:49:01 +13:00
|
|
|
|
|
|
|
|
using levels_array = std::array<int, 7>;
|
|
|
|
|
levels_array syslog_levels_;
|
2024-07-03 21:51:11 +02:00
|
|
|
|
|
|
|
|
private:
|
2023-10-24 08:49:01 +13:00
|
|
|
// must store the ident because the man says openlog might use the pointer as
|
|
|
|
|
// is and not a string copy
|
|
|
|
|
const std::string ident_;
|
2018-04-20 13:20:19 +03:00
|
|
|
};
|
2018-07-14 16:21:53 +03:00
|
|
|
|
|
|
|
|
using syslog_sink_mt = syslog_sink<std::mutex>;
|
|
|
|
|
using syslog_sink_st = syslog_sink<details::null_mutex>;
|
|
|
|
|
|
2025-01-05 02:17:31 +02:00
|
|
|
} // namespace sinks
|
2023-09-25 16:40:05 +03:00
|
|
|
} // namespace spdlog
|