You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spdlog/lite/spdlite.cpp

156 lines
3.6 KiB
C++

7 years ago
//
// Copyright(c) 2019-present spdlog
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
//
7 years ago
#include "spdlite.h"
7 years ago
#include "spdlog/spdlog.h"
static spdlog::level::level_enum to_spdlog_level(spdlite::level level)
7 years ago
{
7 years ago
return static_cast<spdlog::level::level_enum>(level);
7 years ago
}
static spdlite::level to_lite_level(spdlog::level::level_enum level)
7 years ago
{
return static_cast<spdlite::level>(level);
7 years ago
}
spdlite::logger::logger(std::shared_ptr<spdlog::logger> impl)
7 years ago
{
impl_ = std::move(impl);
}
7 years ago
void spdlite::logger::set_impl(std::shared_ptr<spdlog::logger> impl)
{
impl_ = std::move(impl);
}
bool spdlite::logger::should_log(spdlite::level level) const SPDLOG_NOEXCEPT
7 years ago
{
7 years ago
auto spd_level = to_spdlog_level(level);
7 years ago
return impl_->should_log(spd_level); // TODO avoid the call using local level member?
7 years ago
}
void spdlite::logger::log(spdlite::level lvl, const string_view_t &sv)
7 years ago
{
auto spd_level = to_spdlog_level(lvl);
impl_->log(spd_level, sv);
7 years ago
}
void spdlite::logger::log_printf(spdlite::level lvl, const char *format, va_list args)
7 years ago
{
7 years ago
char buffer[256];
7 years ago
auto size = vsnprintf(buffer, sizeof(buffer), format, args);
if (size < 0)
{
size = snprintf(buffer, sizeof(buffer), "invalid format (%s)", format);
}
log(lvl, string_view_t{buffer, static_cast<size_t>(size)});
}
void spdlite::logger::trace_printf(const char *format, ...)
{
va_list args;
7 years ago
va_start(args, format);
log_printf(spdlite::level::trace, format, args);
7 years ago
va_end(args);
}
void spdlite::logger::debug_printf(const char *format, ...)
{
va_list args;
7 years ago
va_start(args, format);
log_printf(spdlite::level::debug, format, args);
7 years ago
va_end(args);
}
void spdlite::logger::info_printf(const char *format, ...)
{
va_list args;
7 years ago
va_start(args, format);
log_printf(spdlite::level::info, format, args);
7 years ago
va_end(args);
7 years ago
}
void spdlite::logger::warn_printf(const char *format, ...)
{
va_list args;
7 years ago
va_start(args, format);
log_printf(spdlite::level::warn, format, args);
7 years ago
va_end(args);
}
void spdlite::logger::error_printf(const char *format, ...)
{
va_list args;
7 years ago
va_start(args, format);
log_printf(spdlite::level::err, format, args);
7 years ago
va_end(args);
}
void spdlite::logger::critical_printf(const char *format, ...)
{
va_list args;
7 years ago
va_start(args, format);
log_printf(spdlite::level::critical, format, args);
7 years ago
va_end(args);
}
void spdlite::logger::set_level(spdlite::level level) noexcept
7 years ago
{
auto spd_level = to_spdlog_level(level);
impl_->set_level(spd_level);
}
spdlite::level spdlite::logger::level() const noexcept
7 years ago
{
return to_lite_level(impl_->level());
}
std::string spdlite::logger::name() const noexcept
7 years ago
{
return impl_->name();
}
void spdlite::logger::flush()
7 years ago
{
impl_->flush();
}
void spdlite::logger::flush_on(spdlite::level level)
7 years ago
{
auto spd_level = to_spdlog_level(level);
impl_->flush_on(spd_level);
}
spdlite::level spdlite::logger::flush_level() const noexcept
7 years ago
{
return to_lite_level(impl_->flush_level());
}
// pattern
void spdlite::logger::set_pattern(std::string pattern) noexcept
7 years ago
{
impl_->set_pattern(std::move(pattern));
}
spdlite::logger spdlite::logger::clone(std::string logger_name)
{
return spdlite::logger(impl_->clone(std::move(logger_name)));
}
void spdlite::logger::log_formatted_(spdlite::level lvl, const fmt::memory_buffer &formatted)
{
auto spd_level = to_spdlog_level(lvl);
impl_->log(spd_level, spdlog::details::fmt_helper::to_string_view(formatted));
}
7 years ago
spdlite::logger &spdlite::logger::default_logger()
{
static spdlite::logger default_inst_ = spdlite::logger(spdlog::default_logger());
return default_inst_;
}