2016-09-02 22:06:00 +08:00
|
|
|
//
|
2018-04-14 08:34:57 +08:00
|
|
|
// Copyright(c) 2015-2108 Gabi Melman.
|
2016-09-02 22:06:00 +08:00
|
|
|
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
|
|
|
//
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-07-22 04:48:07 +08:00
|
|
|
// Thread safe logger (except for set_pattern(..), set_formatter(..) and
|
|
|
|
// set_error_handler())
|
2016-09-02 22:06:00 +08:00
|
|
|
// Has name, log level, vector of std::shared sink pointers and formatter
|
|
|
|
// Upon each log write the logger:
|
2018-06-24 06:32:39 +08:00
|
|
|
// 1. Checks if its log level is enough to log the message and if yes:
|
|
|
|
// 2. Call the underlying sinks to do the job.
|
2018-07-22 04:48:07 +08:00
|
|
|
// 3. Each sink use its own private copy of a formatter to format the message
|
|
|
|
// and send to its destination.
|
2018-06-24 06:32:39 +08:00
|
|
|
//
|
2018-07-22 04:48:07 +08:00
|
|
|
// The use of private formatter per sink provides the opportunity to cache some
|
2019-04-05 21:44:17 +08:00
|
|
|
// formatted data, and support for different format per sink.
|
|
|
|
|
2018-04-29 06:31:09 +08:00
|
|
|
#include "spdlog/common.h"
|
2019-04-05 21:44:17 +08:00
|
|
|
#include "spdlog/details/log_msg.h"
|
|
|
|
|
2016-09-02 22:06:00 +08:00
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
2018-03-09 21:26:33 +08:00
|
|
|
#include <vector>
|
2016-09-02 22:06:00 +08:00
|
|
|
|
2019-04-06 04:05:46 +08:00
|
|
|
namespace spdlog {
|
|
|
|
class logger
|
2016-09-02 22:06:00 +08:00
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
public:
|
2019-04-05 21:44:17 +08:00
|
|
|
template<typename It>
|
|
|
|
logger(std::string name, It begin, It end)
|
|
|
|
: name_(std::move(name))
|
2019-04-06 04:05:46 +08:00
|
|
|
, sinks_(begin, end)
|
2019-04-05 18:26:33 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
logger(std::string name, sink_ptr single_sink)
|
|
|
|
: logger(std::move(name), {std::move(single_sink)})
|
2019-04-05 18:26:33 +08:00
|
|
|
{
|
|
|
|
}
|
2019-04-05 21:44:17 +08:00
|
|
|
logger(std::string name, sinks_init_list sinks)
|
|
|
|
: logger(std::move(name), sinks.begin(), sinks.end())
|
2019-04-05 18:26:33 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
virtual ~logger() = default;
|
2019-04-05 18:26:33 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
logger(const logger &) = delete;
|
|
|
|
logger &operator=(const logger &) = delete;
|
2018-11-23 00:47:50 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
template<typename... Args>
|
|
|
|
void log(source_loc loc, level::level_enum lvl, const char *fmt, const Args &... args)
|
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
if (!should_log(lvl))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
fmt::memory_buffer buf;
|
|
|
|
fmt::format_to(buf, fmt, args...);
|
|
|
|
details::log_msg log_msg(loc, &name_, lvl, string_view_t(buf.data(), buf.size()));
|
|
|
|
sink_it_(log_msg);
|
|
|
|
}
|
|
|
|
catch (const std::exception &ex)
|
|
|
|
{
|
|
|
|
err_handler_(ex.what());
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
err_handler_("Unknown exception in logger");
|
|
|
|
}
|
2019-04-05 21:44:17 +08:00
|
|
|
}
|
2018-11-23 00:47:50 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
template<typename... Args>
|
|
|
|
void log(level::level_enum lvl, const char *fmt, const Args &... args)
|
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
log(source_loc{}, lvl, fmt, args...);
|
2019-04-05 21:44:17 +08:00
|
|
|
}
|
|
|
|
void log(source_loc loc, level::level_enum lvl, const char *msg);
|
|
|
|
void log(level::level_enum lvl, const char *msg);
|
2018-03-16 23:35:56 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
template<typename... Args>
|
|
|
|
void trace(const char *fmt, const Args &... args)
|
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
log(level::trace, fmt, args...);
|
2019-04-05 21:44:17 +08:00
|
|
|
}
|
2018-03-16 23:35:56 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
template<typename... Args>
|
|
|
|
void debug(const char *fmt, const Args &... args)
|
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
log(level::debug, fmt, args...);
|
2019-04-05 21:44:17 +08:00
|
|
|
}
|
2018-03-16 23:35:56 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
template<typename... Args>
|
|
|
|
void info(const char *fmt, const Args &... args)
|
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
log(level::info, fmt, args...);
|
2019-04-05 21:44:17 +08:00
|
|
|
}
|
2018-03-16 23:35:56 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
template<typename... Args>
|
|
|
|
void warn(const char *fmt, const Args &... args)
|
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
log(level::warn, fmt, args...);
|
2019-04-05 21:44:17 +08:00
|
|
|
}
|
2018-03-16 23:35:56 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
template<typename... Args>
|
|
|
|
void error(const char *fmt, const Args &... args)
|
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
log(level::err, fmt, args...);
|
2019-04-05 21:44:17 +08:00
|
|
|
}
|
2019-04-05 18:26:33 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
template<typename... Args>
|
|
|
|
void critical(const char *fmt, const Args &... args)
|
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
log(level::critical, fmt, args...);
|
2019-04-05 21:44:17 +08:00
|
|
|
}
|
2017-06-29 15:51:44 +08:00
|
|
|
|
2018-07-11 04:53:00 +08:00
|
|
|
#ifdef SPDLOG_WCHAR_TO_UTF8_SUPPORT
|
2018-10-04 07:20:47 +08:00
|
|
|
#ifndef _WIN32
|
|
|
|
#error SPDLOG_WCHAR_TO_UTF8_SUPPORT only supported on windows
|
|
|
|
#else
|
2019-04-05 21:44:17 +08:00
|
|
|
inline void wbuf_to_utf8buf(const fmt::wmemory_buffer &wbuf, fmt::memory_buffer &target)
|
2019-04-05 18:26:33 +08:00
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
int wbuf_size = static_cast<int>(wbuf.size());
|
|
|
|
if (wbuf_size == 0)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2019-04-05 18:26:33 +08:00
|
|
|
|
2019-04-06 04:05:46 +08:00
|
|
|
auto result_size = ::WideCharToMultiByte(CP_UTF8, 0, wbuf.data(), wbuf_size, NULL, 0, NULL, NULL);
|
2019-04-05 18:26:33 +08:00
|
|
|
|
2019-04-06 04:05:46 +08:00
|
|
|
if (result_size > 0)
|
|
|
|
{
|
|
|
|
target.resize(result_size);
|
|
|
|
::WideCharToMultiByte(CP_UTF8, 0, wbuf.data(), wbuf_size, &target.data()[0], result_size, NULL, NULL);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw spdlog::spdlog_ex(fmt::format("WideCharToMultiByte failed. Last error: {}", ::GetLastError()));
|
|
|
|
}
|
2019-04-05 18:26:33 +08:00
|
|
|
}
|
2019-04-05 21:44:17 +08:00
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
void log(source_loc source, level::level_enum lvl, const wchar_t *fmt, const Args &... args)
|
2019-04-05 18:26:33 +08:00
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
if (!should_log(lvl))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// format to wmemory_buffer and convert to utf8
|
|
|
|
using details::fmt_helper::to_string_view;
|
|
|
|
fmt::wmemory_buffer wbuf;
|
|
|
|
fmt::format_to(wbuf, fmt, args...);
|
|
|
|
fmt::memory_buffer buf;
|
|
|
|
wbuf_to_utf8buf(wbuf, buf);
|
|
|
|
details::log_msg log_msg(source, &name_, lvl, to_string_view(buf));
|
|
|
|
sink_it_(log_msg);
|
|
|
|
}
|
|
|
|
SPDLOG_CATCH_AND_HANDLE
|
2019-04-05 18:26:33 +08:00
|
|
|
}
|
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
template<typename... Args>
|
|
|
|
void log(level::level_enum lvl, const wchar_t *fmt, const Args &... args)
|
2019-04-05 18:26:33 +08:00
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
log(source_loc{}, lvl, fmt, args...);
|
2019-04-05 18:26:33 +08:00
|
|
|
}
|
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
template<typename... Args>
|
|
|
|
void trace(const wchar_t *fmt, const Args &... args)
|
2019-04-05 18:26:33 +08:00
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
log(level::trace, fmt, args...);
|
2019-04-05 18:26:33 +08:00
|
|
|
}
|
2018-03-16 23:35:56 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
template<typename... Args>
|
|
|
|
void debug(const wchar_t *fmt, const Args &... args)
|
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
log(level::debug, fmt, args...);
|
2019-04-05 21:44:17 +08:00
|
|
|
}
|
2018-03-16 23:35:56 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
template<typename... Args>
|
|
|
|
void info(const wchar_t *fmt, const Args &... args)
|
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
log(level::info, fmt, args...);
|
2019-04-05 21:44:17 +08:00
|
|
|
}
|
2018-03-16 23:35:56 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
template<typename... Args>
|
|
|
|
void warn(const wchar_t *fmt, const Args &... args)
|
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
log(level::warn, fmt, args...);
|
2019-04-05 21:44:17 +08:00
|
|
|
}
|
2018-03-16 23:35:56 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
template<typename... Args>
|
|
|
|
void error(const wchar_t *fmt, const Args &... args)
|
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
log(level::err, fmt, args...);
|
2019-04-05 21:44:17 +08:00
|
|
|
}
|
2018-03-16 23:35:56 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
template<typename... Args>
|
|
|
|
void critical(const wchar_t *fmt, const Args &... args)
|
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
log(level::critical, fmt, args...);
|
2019-04-05 21:44:17 +08:00
|
|
|
}
|
2018-10-04 07:20:47 +08:00
|
|
|
#endif // _WIN32
|
2017-04-01 23:37:16 +08:00
|
|
|
#endif // SPDLOG_WCHAR_TO_UTF8_SUPPORT
|
2018-03-17 18:49:45 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
template<typename T>
|
|
|
|
void log(level::level_enum lvl, const T &msg)
|
2019-04-05 18:26:33 +08:00
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
log(source_loc{}, lvl, msg);
|
2019-04-05 18:26:33 +08:00
|
|
|
}
|
2019-04-05 21:44:17 +08:00
|
|
|
|
|
|
|
// T can be statically converted to string_view
|
|
|
|
template<class T, typename std::enable_if<std::is_convertible<T, spdlog::string_view_t>::value, T>::type * = nullptr>
|
|
|
|
void log(source_loc loc, level::level_enum lvl, const T &msg)
|
2019-04-05 18:26:33 +08:00
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
if (!should_log(lvl))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
try
|
|
|
|
{
|
|
|
|
details::log_msg log_msg(loc, &name_, lvl, msg);
|
|
|
|
sink_it_(log_msg);
|
|
|
|
}
|
|
|
|
catch (const std::exception &ex)
|
|
|
|
{
|
|
|
|
err_handler_(ex.what());
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
err_handler_("Unknown exception in logger");
|
|
|
|
}
|
2019-04-05 18:26:33 +08:00
|
|
|
}
|
2018-11-23 00:47:50 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
// T cannot be statically converted to string_view
|
|
|
|
template<class T, typename std::enable_if<!std::is_convertible<T, spdlog::string_view_t>::value, T>::type * = nullptr>
|
|
|
|
void log(source_loc loc, level::level_enum lvl, const T &msg)
|
2019-04-05 18:26:33 +08:00
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
if (!should_log(lvl))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
try
|
|
|
|
{
|
|
|
|
using details::fmt_helper::to_string_view;
|
|
|
|
fmt::memory_buffer buf;
|
|
|
|
fmt::format_to(buf, "{}", msg);
|
|
|
|
details::log_msg log_msg(loc, &name_, lvl, to_string_view(buf));
|
|
|
|
sink_it_(log_msg);
|
|
|
|
}
|
|
|
|
catch (const std::exception &ex)
|
|
|
|
{
|
|
|
|
err_handler_(ex.what());
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
err_handler_("Unknown exception in logger");
|
|
|
|
}
|
2019-04-05 18:26:33 +08:00
|
|
|
}
|
2019-04-05 21:44:17 +08:00
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
void trace(const T &msg)
|
2019-04-05 18:26:33 +08:00
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
log(level::trace, msg);
|
2019-04-05 18:26:33 +08:00
|
|
|
}
|
2018-03-16 23:35:56 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
template<typename T>
|
|
|
|
void debug(const T &msg)
|
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
log(level::debug, msg);
|
2019-04-05 21:44:17 +08:00
|
|
|
}
|
2016-09-02 22:06:00 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
template<typename T>
|
|
|
|
void info(const T &msg)
|
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
log(level::info, msg);
|
2019-04-05 21:44:17 +08:00
|
|
|
}
|
2019-04-05 18:26:33 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
template<typename T>
|
|
|
|
void warn(const T &msg)
|
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
log(level::warn, msg);
|
2019-04-05 21:44:17 +08:00
|
|
|
}
|
2019-04-05 18:26:33 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
template<typename T>
|
|
|
|
void error(const T &msg)
|
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
log(level::err, msg);
|
2019-04-05 21:44:17 +08:00
|
|
|
}
|
2019-04-05 18:26:33 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
template<typename T>
|
|
|
|
void critical(const T &msg)
|
|
|
|
{
|
2019-04-06 04:05:46 +08:00
|
|
|
log(level::critical, msg);
|
2019-04-05 21:44:17 +08:00
|
|
|
}
|
2019-04-05 18:26:33 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
bool should_log(level::level_enum msg_level) const;
|
2019-04-05 18:26:33 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
void set_level(level::level_enum log_level);
|
2018-07-23 05:13:52 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
static level::level_enum default_level();
|
2019-04-05 18:26:33 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
level::level_enum level() const;
|
2018-07-23 05:13:52 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
const std::string &name() const;
|
2019-04-05 18:26:33 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
// set formatting for the sinks in this logger.
|
|
|
|
// each sink will get a seperate instance of the formatter object.
|
|
|
|
void set_formatter(std::unique_ptr<formatter> f);
|
2019-04-05 18:26:33 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
void set_pattern(std::string pattern, pattern_time_type time_type = pattern_time_type::local);
|
2016-09-02 22:06:00 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
// flush functions
|
|
|
|
void flush();
|
|
|
|
void flush_on(level::level_enum log_level);
|
|
|
|
level::level_enum flush_level() const;
|
2019-04-05 18:26:33 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
// sinks
|
|
|
|
const std::vector<sink_ptr> &sinks() const;
|
2018-07-23 05:13:52 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
std::vector<sink_ptr> &sinks();
|
2019-04-05 18:26:33 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
// error handler
|
2019-04-06 04:05:46 +08:00
|
|
|
void set_error_handler(void (*handler)(const std::string& msg));
|
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
// create new logger with same sinks and configuration.
|
|
|
|
virtual std::shared_ptr<logger> clone(std::string logger_name);
|
2016-09-02 22:06:00 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
protected:
|
|
|
|
virtual void sink_it_(details::log_msg &msg);
|
2019-04-05 18:26:33 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
virtual void flush_();
|
|
|
|
bool should_flush_(const details::log_msg &msg);
|
2019-04-05 18:26:33 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
// default error handler.
|
|
|
|
// print the error to stderr with the max rate of 1 message/minute.
|
2019-04-06 04:05:46 +08:00
|
|
|
void err_handler_(const std::string &msg);
|
2019-04-05 18:26:33 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
// increment the message count (only if defined(SPDLOG_ENABLE_MESSAGE_COUNTER))
|
|
|
|
void incr_msg_counter_(details::log_msg &msg);
|
2016-09-02 22:06:00 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
const std::string name_;
|
|
|
|
std::vector<sink_ptr> sinks_;
|
|
|
|
spdlog::level_t level_{spdlog::logger::default_level()};
|
|
|
|
spdlog::level_t flush_level_{level::off};
|
2019-04-06 04:05:46 +08:00
|
|
|
void (*custom_err_handler_)(const std::string &msg) {nullptr};
|
|
|
|
};
|
2018-03-09 21:26:33 +08:00
|
|
|
} // namespace spdlog
|
2016-09-02 22:06:00 +08:00
|
|
|
|
2019-04-05 21:44:17 +08:00
|
|
|
#ifdef SPDLOG_HEADER_ONLY
|
|
|
|
#include "../src/logger.cpp"
|
|
|
|
#endif // SPDLOG_HEADER_ONLY
|