spdlog/include/spdlog/sinks/syslog_sink.h

81 lines
2.4 KiB
C
Raw Normal View History

2016-08-22 13:54:18 -04:00
//
// Copyright(c) 2015 Gabi Melman.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
//
#pragma once
2018-04-28 18:31:09 -04:00
#include "spdlog/common.h"
2016-08-22 13:54:18 -04:00
2018-04-28 18:31:09 -04:00
#include "spdlog/details/log_msg.h"
#include "spdlog/sinks/sink.h"
2016-08-22 13:54:18 -04:00
#include <array>
#include <string>
#include <syslog.h>
2018-03-17 06:47:46 -04:00
namespace spdlog {
2018-04-20 06:20:19 -04:00
namespace sinks {
/**
* Sink that write to syslog using the `syscall()` library call.
*
* Locking is not needed, as `syslog()` itself is thread-safe.
*/
class syslog_sink : public sink
{
public:
//
syslog_sink(const std::string &ident = "", int syslog_option = 0, int syslog_facility = LOG_USER)
: _ident(ident)
{
_priorities[static_cast<size_t>(level::trace)] = LOG_DEBUG;
_priorities[static_cast<size_t>(level::debug)] = LOG_DEBUG;
_priorities[static_cast<size_t>(level::info)] = LOG_INFO;
_priorities[static_cast<size_t>(level::warn)] = LOG_WARNING;
_priorities[static_cast<size_t>(level::err)] = LOG_ERR;
_priorities[static_cast<size_t>(level::critical)] = LOG_CRIT;
_priorities[static_cast<size_t>(level::off)] = LOG_INFO;
2016-08-22 13:54:18 -04:00
2018-04-20 06:20:19 -04:00
// set ident to be program name if empty
::openlog(_ident.empty() ? nullptr : _ident.c_str(), syslog_option, syslog_facility);
}
2018-02-24 17:56:56 -05:00
2018-04-20 06:20:19 -04:00
~syslog_sink() override
{
::closelog();
}
2016-08-22 13:54:18 -04:00
2018-04-20 06:20:19 -04:00
syslog_sink(const syslog_sink &) = delete;
syslog_sink &operator=(const syslog_sink &) = delete;
2016-08-22 13:54:18 -04:00
2018-04-20 06:20:19 -04:00
void log(const details::log_msg &msg) override
{
::syslog(syslog_prio_from_level(msg), "%s", msg.raw.str().c_str());
}
2016-08-22 13:54:18 -04:00
2018-04-20 06:20:19 -04:00
void flush() override {}
2016-08-22 13:54:18 -04:00
2018-04-20 06:20:19 -04:00
private:
std::array<int, 7> _priorities;
// must store the ident because the man says openlog might use the pointer as is and not a string copy
const std::string _ident;
2016-08-22 13:54:18 -04:00
2018-04-20 06:20:19 -04:00
//
// Simply maps spdlog's log level to syslog priority level.
//
int syslog_prio_from_level(const details::log_msg &msg) const
{
return _priorities[static_cast<size_t>(msg.level)];
}
};
} // namespace sinks
2018-04-19 19:57:05 -04:00
2018-04-20 06:20:19 -04:00
// Create and register a syslog logger
template<typename Factory = default_factory>
inline std::shared_ptr<logger> syslog_logger(
const std::string &logger_name, const std::string &syslog_ident = "", int syslog_option = 0, int syslog_facility = (1 << 3))
{
return Factory::template create<sinks::syslog_sink>(logger_name, syslog_ident, syslog_option, syslog_facility);
}
2018-03-17 06:47:46 -04:00
} // namespace spdlog