2019-03-23 07:31:57 -04:00
|
|
|
//
|
2019-03-23 10:39:05 -04:00
|
|
|
// Copyright(c) 2015-present Gabi Melman.
|
|
|
|
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
|
|
|
|
2019-03-23 10:15:58 -04:00
|
|
|
#pragma once
|
2019-03-23 07:31:57 -04:00
|
|
|
|
|
|
|
#include <memory>
|
2019-03-23 10:15:58 -04:00
|
|
|
#include <string>
|
2019-03-23 07:31:57 -04:00
|
|
|
#include "spdlog/fmt/fmt.h"
|
|
|
|
|
2019-03-23 10:39:05 -04:00
|
|
|
//
|
|
|
|
// enable/disable log calls at compile time according to global level.
|
|
|
|
//
|
|
|
|
// define SPDLITE_ACTIVE_LEVEL to one of those (before including lite.h):
|
|
|
|
|
|
|
|
#define SPDLITE_LEVEL_TRACE 0
|
|
|
|
#define SPDLITE_LEVEL_DEBUG 1
|
|
|
|
#define SPDLITE_LEVEL_INFO 2
|
|
|
|
#define SPDLITE_LEVEL_WARN 3
|
|
|
|
#define SPDLITE_LEVEL_ERROR 4
|
|
|
|
#define SPDLITE_LEVEL_CRITICAL 5
|
|
|
|
#define SPDLITE_LEVEL_OFF 6
|
|
|
|
|
2019-03-23 17:13:38 -04:00
|
|
|
#define SPDLITE_LOGGER_CALL(logger, level, ...) logger.log(level, __VA_ARGS__)
|
2019-03-23 13:34:50 -04:00
|
|
|
|
2019-03-23 10:39:05 -04:00
|
|
|
#if SPDLITE_ACTIVE_LEVEL <= SPDLITE_LEVEL_TRACE
|
2019-03-23 18:31:55 -04:00
|
|
|
#define SPDLITE_LOGGER_TRACE(logger, ...) SPDLITE_LOGGER_CALL(logger, spdlog::lite::level::trace, __VA_ARGS__)
|
2019-03-23 10:39:05 -04:00
|
|
|
#define SPDLITE_TRACE(...) SPDLITE_LOGGER_TRACE(spdlog::lite::default_logger(), __VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#define SPDLITE_LOGGER_TRACE(logger, ...) (void)0
|
|
|
|
#define SPDLITE_TRACE(...) (void)0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if SPDLITE_ACTIVE_LEVEL <= SPDLITE_LEVEL_DEBUG
|
|
|
|
#define SPDLITE_LOGGER_DEBUG(logger, ...) SPDLITE_LOGGER_CALL(logger, spdlog::lite::level::debug, __VA_ARGS__)
|
|
|
|
#define SPDLITE_DEBUG(...) SPDLITE_LOGGER_DEBUG(spdlog::lite::default_logger(), __VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#define SPDLITE_LOGGER_DEBUG(logger, ...) (void)0
|
|
|
|
#define SPDLITE_DEBUG(...) (void)0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if SPDLITE_ACTIVE_LEVEL <= SPDLITE_LEVEL_INFO
|
|
|
|
#define SPDLITE_LOGGER_INFO(logger, ...) SPDLITE_LOGGER_CALL(logger, spdlog::lite::level::info, __VA_ARGS__)
|
|
|
|
#define SPDLITE_INFO(...) SPDLITE_LOGGER_INFO(spdlog::lite::default_logger(), __VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#define SPDLITE_LOGGER_INFO(logger, ...) (void)0
|
|
|
|
#define SPDLITE_INFO(...) (void)0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if SPDLITE_ACTIVE_LEVEL <= SPDLITE_LEVEL_WARN
|
|
|
|
#define SPDLITE_LOGGER_WARN(logger, ...) SPDLITE_LOGGER_CALL(logger, spdlog::lite::level::warn, __VA_ARGS__)
|
|
|
|
#define SPDLITE_WARN(...) SPDLITE_LOGGER_WARN(spdlog::lite::default_logger(), __VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#define SPDLITE_LOGGER_WARN(logger, ...) (void)0
|
|
|
|
#define SPDLITE_WARN(...) (void)0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if SPDLITE_ACTIVE_LEVEL <= SPDLITE_LEVEL_ERROR
|
|
|
|
#define SPDLITE_LOGGER_ERROR(logger, ...) SPDLITE_LOGGER_CALL(logger, spdlog::lite::level::err, __VA_ARGS__)
|
|
|
|
#define SPDLITE_ERROR(...) SPDLITE_LOGGER_ERROR(spdlog::lite::default_logger(), __VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#define SPDLITE_LOGGER_ERROR(logger, ...) (void)0
|
|
|
|
#define SPDLITE_ERROR(...) (void)0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if SPDLITE_ACTIVE_LEVEL <= SPDLITE_LEVEL_CRITICAL
|
|
|
|
#define SPDLITE_LOGGER_CRITICAL(logger, ...) SPDLITE_LOGGER_CALL(logger, spdlog::lite::level::critical, __VA_ARGS__)
|
|
|
|
#define SPDLITE_CRITICAL(...) SPDLITE_LOGGER_CRITICAL(spdlog::lite::default_logger(), __VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#define SPDLITE_LOGGER_CRITICAL(logger, ...) (void)0
|
|
|
|
#define SPDLITE_CRITICAL(...) (void)0
|
|
|
|
#endif
|
|
|
|
|
2019-03-23 07:31:57 -04:00
|
|
|
namespace spdlog {
|
2019-03-23 10:39:32 -04:00
|
|
|
class logger;
|
|
|
|
|
|
|
|
namespace lite {
|
2019-03-23 14:06:49 -04:00
|
|
|
|
|
|
|
// string_view type - either std::string_view or fmt::string_view (pre c++17)
|
|
|
|
#if defined(FMT_USE_STD_STRING_VIEW)
|
2019-03-23 17:13:38 -04:00
|
|
|
using string_view_t = std::string_view;
|
2019-03-23 14:06:49 -04:00
|
|
|
#else
|
2019-03-23 17:13:38 -04:00
|
|
|
using string_view_t = fmt::string_view;
|
2019-03-23 14:06:49 -04:00
|
|
|
#endif
|
|
|
|
|
2019-03-23 10:39:32 -04:00
|
|
|
enum class level
|
|
|
|
{
|
|
|
|
trace = SPDLITE_LEVEL_TRACE,
|
|
|
|
debug = SPDLITE_LEVEL_DEBUG,
|
|
|
|
info = SPDLITE_LEVEL_INFO,
|
|
|
|
warn = SPDLITE_LEVEL_WARN,
|
|
|
|
err = SPDLITE_LEVEL_ERROR,
|
|
|
|
critical = SPDLITE_LEVEL_CRITICAL,
|
|
|
|
off = SPDLITE_LEVEL_OFF
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class logger
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
logger() = default;
|
|
|
|
|
2019-03-23 13:34:50 -04:00
|
|
|
explicit logger(std::shared_ptr<spdlog::logger> impl);
|
2019-03-23 10:39:32 -04:00
|
|
|
logger(const logger &) = default;
|
|
|
|
logger(logger &&) = default;
|
|
|
|
logger &operator=(const logger &) = default;
|
|
|
|
|
|
|
|
~logger() = default;
|
|
|
|
|
|
|
|
bool should_log(spdlog::lite::level lvl) const noexcept;
|
|
|
|
|
|
|
|
template<typename... Args>
|
2019-03-23 18:30:08 -04:00
|
|
|
void log(spdlog::lite::level lvl, const char *fmt, const Args &... args)
|
2019-03-23 10:39:32 -04:00
|
|
|
{
|
|
|
|
if (!should_log(lvl))
|
2019-03-23 10:15:58 -04:00
|
|
|
{
|
2019-03-23 10:39:32 -04:00
|
|
|
return;
|
2019-03-23 10:15:58 -04:00
|
|
|
}
|
2019-03-23 10:39:32 -04:00
|
|
|
fmt::memory_buffer formatted_buf;
|
|
|
|
fmt::format_to(formatted_buf, fmt, args...);
|
2019-03-23 18:30:08 -04:00
|
|
|
log_formatted_(lvl, formatted_buf);
|
2019-03-23 10:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-23 18:30:08 -04:00
|
|
|
// log string view
|
|
|
|
void log(spdlog::lite::level lvl, const string_view_t &sv);
|
|
|
|
void log_printf(spdlog::lite::level lvl, const char* format, va_list args);
|
|
|
|
|
|
|
|
//
|
2019-03-23 17:13:38 -04:00
|
|
|
// trace
|
2019-03-23 18:30:08 -04:00
|
|
|
//
|
2019-03-23 17:13:38 -04:00
|
|
|
void trace(const char *msg)
|
|
|
|
{
|
2019-03-23 18:30:08 -04:00
|
|
|
log(spdlog::lite::level::trace, string_view_t(msg));
|
2019-03-23 17:13:38 -04:00
|
|
|
}
|
2019-03-23 14:06:49 -04:00
|
|
|
|
2019-03-23 10:39:32 -04:00
|
|
|
template<typename... Args>
|
|
|
|
void trace(const char *fmt, const Args &... args)
|
|
|
|
{
|
|
|
|
log(spdlog::lite::level::trace, fmt, args...);
|
|
|
|
}
|
|
|
|
|
2019-03-23 18:30:08 -04:00
|
|
|
void trace_f(const char *printf_format, ...);
|
|
|
|
|
|
|
|
//
|
2019-03-23 17:13:38 -04:00
|
|
|
// debug
|
2019-03-23 18:30:08 -04:00
|
|
|
//
|
2019-03-23 17:13:38 -04:00
|
|
|
void debug(const char *msg)
|
2019-03-23 14:06:49 -04:00
|
|
|
{
|
2019-03-23 18:30:08 -04:00
|
|
|
log(spdlog::lite::level::debug, string_view_t(msg));
|
2019-03-23 14:06:49 -04:00
|
|
|
}
|
|
|
|
|
2019-03-23 10:39:32 -04:00
|
|
|
template<typename... Args>
|
|
|
|
void debug(const char *fmt, const Args &... args)
|
|
|
|
{
|
|
|
|
log(spdlog::lite::level::debug, fmt, args...);
|
|
|
|
}
|
|
|
|
|
2019-03-23 18:30:08 -04:00
|
|
|
void debug_f(const char *printf_format, ...);
|
|
|
|
|
|
|
|
//
|
2019-03-23 17:13:38 -04:00
|
|
|
// info
|
2019-03-23 18:30:08 -04:00
|
|
|
//
|
2019-03-23 17:13:38 -04:00
|
|
|
void info(const char *msg)
|
2019-03-23 14:06:49 -04:00
|
|
|
{
|
2019-03-23 18:30:08 -04:00
|
|
|
log(spdlog::lite::level::info, string_view_t(msg));
|
2019-03-23 14:06:49 -04:00
|
|
|
}
|
|
|
|
|
2019-03-23 10:39:32 -04:00
|
|
|
template<typename... Args>
|
|
|
|
void info(const char *fmt, const Args &... args)
|
|
|
|
{
|
|
|
|
log(spdlog::lite::level::info, fmt, args...);
|
|
|
|
}
|
|
|
|
|
2019-03-23 18:30:08 -04:00
|
|
|
void info_f(const char *printf_format, ...);
|
|
|
|
|
|
|
|
//
|
2019-03-23 17:13:38 -04:00
|
|
|
// warn
|
2019-03-23 18:30:08 -04:00
|
|
|
//
|
2019-03-23 17:13:38 -04:00
|
|
|
void warn(const char *msg)
|
2019-03-23 14:06:49 -04:00
|
|
|
{
|
2019-03-23 18:30:08 -04:00
|
|
|
log(spdlog::lite::level::warn, string_view_t(msg));
|
2019-03-23 14:06:49 -04:00
|
|
|
}
|
|
|
|
|
2019-03-23 10:39:32 -04:00
|
|
|
template<typename... Args>
|
|
|
|
void warn(const char *fmt, const Args &... args)
|
|
|
|
{
|
|
|
|
log(spdlog::lite::level::warn, fmt, args...);
|
|
|
|
}
|
|
|
|
|
2019-03-23 18:30:08 -04:00
|
|
|
void warn_f(const char *printf_format, ...);
|
|
|
|
|
|
|
|
//
|
2019-03-23 17:13:38 -04:00
|
|
|
// error
|
2019-03-23 18:30:08 -04:00
|
|
|
//
|
2019-03-23 17:13:38 -04:00
|
|
|
void error(const char *msg)
|
2019-03-23 14:06:49 -04:00
|
|
|
{
|
2019-03-23 18:30:08 -04:00
|
|
|
log(spdlog::lite::level::err, string_view_t(msg));
|
2019-03-23 14:06:49 -04:00
|
|
|
}
|
|
|
|
|
2019-03-23 18:30:08 -04:00
|
|
|
|
2019-03-23 10:39:32 -04:00
|
|
|
template<typename... Args>
|
|
|
|
void error(const char *fmt, const Args &... args)
|
|
|
|
{
|
|
|
|
log(spdlog::lite::level::err, fmt, args...);
|
|
|
|
}
|
|
|
|
|
2019-03-23 18:30:08 -04:00
|
|
|
void error_f(const char *printf_format, ...);
|
|
|
|
|
|
|
|
//
|
2019-03-23 17:13:38 -04:00
|
|
|
// critical
|
2019-03-23 18:30:08 -04:00
|
|
|
//
|
2019-03-23 17:13:38 -04:00
|
|
|
void critical(const char *msg)
|
2019-03-23 14:06:49 -04:00
|
|
|
{
|
2019-03-23 18:30:08 -04:00
|
|
|
log(spdlog::lite::level::critical, string_view_t(msg));
|
2019-03-23 14:06:49 -04:00
|
|
|
}
|
|
|
|
|
2019-03-23 10:39:32 -04:00
|
|
|
template<typename... Args>
|
|
|
|
void critical(const char *fmt, const Args &... args)
|
|
|
|
{
|
|
|
|
log(spdlog::lite::level::critical, fmt, args...);
|
|
|
|
}
|
|
|
|
|
2019-03-23 18:30:08 -04:00
|
|
|
void critical_f(const char *printf_format, ...);
|
|
|
|
|
|
|
|
//
|
|
|
|
// setters/getters
|
|
|
|
//
|
2019-03-23 10:39:32 -04:00
|
|
|
std::string name() const;
|
|
|
|
void set_level(lite::level level);
|
|
|
|
lite::level get_level() const;
|
2019-03-23 18:30:08 -04:00
|
|
|
|
|
|
|
//
|
|
|
|
// flush
|
|
|
|
//
|
2019-03-23 10:39:32 -04:00
|
|
|
void flush();
|
|
|
|
void flush_on(spdlog::lite::level log_level);
|
|
|
|
spdlog::lite::level flush_level() const;
|
|
|
|
void set_pattern(std::string pattern);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
std::shared_ptr<spdlog::logger> impl_;
|
2019-03-23 18:30:08 -04:00
|
|
|
void log_formatted_(spdlog::lite::level lvl, const fmt::memory_buffer &formatted);
|
|
|
|
|
2019-03-23 10:39:32 -04:00
|
|
|
};
|
2019-03-23 13:34:50 -04:00
|
|
|
|
2019-03-23 10:39:32 -04:00
|
|
|
spdlog::lite::logger &default_logger();
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
void trace(const char *fmt, const Args &... args)
|
|
|
|
{
|
|
|
|
default_logger().trace(fmt, args...);
|
|
|
|
}
|
2019-03-23 14:06:49 -04:00
|
|
|
|
2019-03-23 10:39:32 -04:00
|
|
|
template<typename... Args>
|
|
|
|
void debug(const char *fmt, const Args &... args)
|
|
|
|
{
|
|
|
|
default_logger().debug(fmt, args...);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
void info(const char *fmt, const Args &... args)
|
|
|
|
{
|
|
|
|
default_logger().info(fmt, args...);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
void warn(const char *fmt, const Args &... args)
|
|
|
|
{
|
|
|
|
default_logger().warn(fmt, args...);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
void error(const char *fmt, const Args &... args)
|
|
|
|
{
|
|
|
|
default_logger().error(fmt, args...);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
void critical(const char *fmt, const Args &... args)
|
|
|
|
{
|
|
|
|
default_logger().critical(fmt, args...);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace lite
|
|
|
|
|
|
|
|
// factory to create lite logger
|
|
|
|
// implement it in a dedicated compilation unit for fast compiles
|
|
|
|
spdlog::lite::logger create_lite(void *ctx = nullptr);
|
2019-03-23 10:15:58 -04:00
|
|
|
|
|
|
|
} // namespace spdlog
|