|
|
|
@ -20,6 +20,10 @@
|
|
|
|
|
#include "spdlog/common.h"
|
|
|
|
|
#include "spdlog/details/log_msg.h"
|
|
|
|
|
|
|
|
|
|
#ifdef SPDLOG_WCHAR_TO_UTF8_SUPPORT
|
|
|
|
|
#include "spdlog/details/os.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <vector>
|
|
|
|
@ -52,254 +56,241 @@ public:
|
|
|
|
|
template<typename... Args>
|
|
|
|
|
void log(source_loc loc, level::level_enum lvl, const char *fmt, const Args &... args)
|
|
|
|
|
{
|
|
|
|
|
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");
|
|
|
|
|
}
|
|
|
|
|
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");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
|
void log(level::level_enum lvl, const char *fmt, const Args &... args)
|
|
|
|
|
{
|
|
|
|
|
log(source_loc{}, lvl, fmt, args...);
|
|
|
|
|
log(source_loc{}, lvl, fmt, args...);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void log(source_loc loc, level::level_enum lvl, const char *msg);
|
|
|
|
|
void log(level::level_enum lvl, const char *msg);
|
|
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
|
void trace(const char *fmt, const Args &... args)
|
|
|
|
|
{
|
|
|
|
|
log(level::trace, fmt, args...);
|
|
|
|
|
log(level::trace, fmt, args...);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
|
void debug(const char *fmt, const Args &... args)
|
|
|
|
|
{
|
|
|
|
|
log(level::debug, fmt, args...);
|
|
|
|
|
log(level::debug, fmt, args...);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
|
void info(const char *fmt, const Args &... args)
|
|
|
|
|
{
|
|
|
|
|
log(level::info, fmt, args...);
|
|
|
|
|
log(level::info, fmt, args...);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
|
void warn(const char *fmt, const Args &... args)
|
|
|
|
|
{
|
|
|
|
|
log(level::warn, fmt, args...);
|
|
|
|
|
log(level::warn, fmt, args...);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
|
void error(const char *fmt, const Args &... args)
|
|
|
|
|
{
|
|
|
|
|
log(level::err, fmt, args...);
|
|
|
|
|
log(level::err, fmt, args...);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
|
void critical(const char *fmt, const Args &... args)
|
|
|
|
|
{
|
|
|
|
|
log(level::critical, fmt, args...);
|
|
|
|
|
log(level::critical, fmt, args...);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef SPDLOG_WCHAR_TO_UTF8_SUPPORT
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
|
#error SPDLOG_WCHAR_TO_UTF8_SUPPORT only supported on windows
|
|
|
|
|
#else
|
|
|
|
|
inline void wbuf_to_utf8buf(const fmt::wmemory_buffer &wbuf, fmt::memory_buffer &target)
|
|
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
|
void log(level::level_enum lvl, const T &msg)
|
|
|
|
|
{
|
|
|
|
|
int wbuf_size = static_cast<int>(wbuf.size());
|
|
|
|
|
if (wbuf_size == 0)
|
|
|
|
|
log(source_loc{}, lvl, msg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 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)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
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");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
auto result_size = ::WideCharToMultiByte(CP_UTF8, 0, wbuf.data(), wbuf_size, NULL, 0, NULL, NULL);
|
|
|
|
|
// 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)
|
|
|
|
|
{
|
|
|
|
|
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");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (result_size > 0)
|
|
|
|
|
template<typename T>
|
|
|
|
|
void trace(const T &msg)
|
|
|
|
|
{
|
|
|
|
|
target.resize(result_size);
|
|
|
|
|
::WideCharToMultiByte(CP_UTF8, 0, wbuf.data(), wbuf_size, &target.data()[0], result_size, NULL, NULL);
|
|
|
|
|
log(level::trace, msg);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
|
void debug(const T &msg)
|
|
|
|
|
{
|
|
|
|
|
throw spdlog::spdlog_ex(fmt::format("WideCharToMultiByte failed. Last error: {}", ::GetLastError()));
|
|
|
|
|
log(level::debug, msg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
|
void info(const T &msg)
|
|
|
|
|
{
|
|
|
|
|
log(level::info, msg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
|
void log(source_loc source, level::level_enum lvl, const wchar_t *fmt, const Args &... args)
|
|
|
|
|
template<typename T>
|
|
|
|
|
void warn(const T &msg)
|
|
|
|
|
{
|
|
|
|
|
if (!should_log(lvl))
|
|
|
|
|
log(level::warn, msg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
|
void error(const T &msg)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
log(level::err, msg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
template<typename T>
|
|
|
|
|
void critical(const T &msg)
|
|
|
|
|
{
|
|
|
|
|
// 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);
|
|
|
|
|
log(level::critical, msg);
|
|
|
|
|
}
|
|
|
|
|
SPDLOG_CATCH_AND_HANDLE
|
|
|
|
|
|
|
|
|
|
#ifdef SPDLOG_WCHAR_TO_UTF8_SUPPORT
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
|
#error SPDLOG_WCHAR_TO_UTF8_SUPPORT only supported on windows
|
|
|
|
|
#else
|
|
|
|
|
template<typename... Args>
|
|
|
|
|
void log(source_loc source, level::level_enum lvl, const wchar_t *fmt, const Args &... args)
|
|
|
|
|
{
|
|
|
|
|
if (!should_log(lvl))
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
// format to wmemory_buffer and convert to utf8
|
|
|
|
|
fmt::wmemory_buffer wbuf;
|
|
|
|
|
fmt::format_to(wbuf, fmt, args...);
|
|
|
|
|
fmt::memory_buffer buf;
|
|
|
|
|
details::os::wbuf_to_utf8buf(wbuf, buf);
|
|
|
|
|
details::log_msg log_msg(source, &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");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
|
void log(level::level_enum lvl, const wchar_t *fmt, const Args &... args)
|
|
|
|
|
{
|
|
|
|
|
log(source_loc{}, lvl, fmt, args...);
|
|
|
|
|
log(source_loc{}, lvl, fmt, args...);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
|
void trace(const wchar_t *fmt, const Args &... args)
|
|
|
|
|
{
|
|
|
|
|
log(level::trace, fmt, args...);
|
|
|
|
|
log(level::trace, fmt, args...);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
|
void debug(const wchar_t *fmt, const Args &... args)
|
|
|
|
|
{
|
|
|
|
|
log(level::debug, fmt, args...);
|
|
|
|
|
log(level::debug, fmt, args...);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
|
void info(const wchar_t *fmt, const Args &... args)
|
|
|
|
|
{
|
|
|
|
|
log(level::info, fmt, args...);
|
|
|
|
|
log(level::info, fmt, args...);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
|
void warn(const wchar_t *fmt, const Args &... args)
|
|
|
|
|
{
|
|
|
|
|
log(level::warn, fmt, args...);
|
|
|
|
|
log(level::warn, fmt, args...);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
|
void error(const wchar_t *fmt, const Args &... args)
|
|
|
|
|
{
|
|
|
|
|
log(level::err, fmt, args...);
|
|
|
|
|
log(level::err, fmt, args...);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
|
void critical(const wchar_t *fmt, const Args &... args)
|
|
|
|
|
{
|
|
|
|
|
log(level::critical, fmt, args...);
|
|
|
|
|
log(level::critical, fmt, args...);
|
|
|
|
|
}
|
|
|
|
|
#endif // _WIN32
|
|
|
|
|
#endif // SPDLOG_WCHAR_TO_UTF8_SUPPORT
|
|
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
|
void log(level::level_enum lvl, const T &msg)
|
|
|
|
|
{
|
|
|
|
|
log(source_loc{}, lvl, msg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 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)
|
|
|
|
|
{
|
|
|
|
|
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");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 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)
|
|
|
|
|
{
|
|
|
|
|
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");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
|
void trace(const T &msg)
|
|
|
|
|
{
|
|
|
|
|
log(level::trace, msg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
|
void debug(const T &msg)
|
|
|
|
|
{
|
|
|
|
|
log(level::debug, msg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
|
void info(const T &msg)
|
|
|
|
|
{
|
|
|
|
|
log(level::info, msg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
|
void warn(const T &msg)
|
|
|
|
|
{
|
|
|
|
|
log(level::warn, msg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
|
void error(const T &msg)
|
|
|
|
|
{
|
|
|
|
|
log(level::err, msg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
|
void critical(const T &msg)
|
|
|
|
|
{
|
|
|
|
|
log(level::critical, msg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool should_log(level::level_enum msg_level) const;
|
|
|
|
|
|
|
|
|
|
void set_level(level::level_enum log_level);
|
|
|
|
@ -350,6 +341,8 @@ public:
|
|
|
|
|
spdlog::level_t level_{spdlog::logger::default_level()};
|
|
|
|
|
spdlog::level_t flush_level_{level::off};
|
|
|
|
|
void (*custom_err_handler_)(const std::string &msg) {nullptr};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
} // namespace spdlog
|
|
|
|
|
|
|
|
|
|