mirror of
https://github.com/encounter/aurora.git
synced 2026-03-30 10:57:39 -07:00
60 lines
1.7 KiB
C++
60 lines
1.7 KiB
C++
#pragma once
|
|
|
|
#include <aurora/aurora.h>
|
|
|
|
#include <fmt/base.h>
|
|
#include <fmt/format.h>
|
|
|
|
#include <cstdlib>
|
|
#include <string_view>
|
|
|
|
namespace aurora {
|
|
void log_internal(AuroraLogLevel level, const char* module, const char* message, unsigned int len) noexcept;
|
|
|
|
extern AuroraConfig g_config;
|
|
|
|
struct Module {
|
|
const char* name;
|
|
explicit Module(const char* name) noexcept : name(name) {}
|
|
|
|
template <typename... T>
|
|
void report(const AuroraLogLevel level, fmt::format_string<T...> fmt, T&&... args) noexcept {
|
|
if (g_config.logLevel > level) return;
|
|
|
|
auto message = fmt::format(fmt, std::forward<T>(args)...);
|
|
log_internal(level, name, message.c_str(), static_cast<unsigned int>(message.size()));
|
|
}
|
|
|
|
template <typename... T>
|
|
void debug(fmt::format_string<T...> fmt, T&&... args) noexcept {
|
|
report(LOG_DEBUG, fmt, std::forward<T>(args)...);
|
|
}
|
|
|
|
template <typename... T>
|
|
void info(fmt::format_string<T...> fmt, T&&... args) noexcept {
|
|
report(LOG_INFO, fmt, std::forward<T>(args)...);
|
|
}
|
|
|
|
template <typename... T>
|
|
void warn(fmt::format_string<T...> fmt, T&&... args) noexcept {
|
|
report(LOG_WARNING, fmt, std::forward<T>(args)...);
|
|
}
|
|
|
|
template <typename... T>
|
|
void error(fmt::format_string<T...> fmt, T&&... args) noexcept {
|
|
report(LOG_ERROR, fmt, std::forward<T>(args)...);
|
|
}
|
|
|
|
template <typename... T>
|
|
[[noreturn]] void fatal(fmt::format_string<T...> fmt, T&&... args) noexcept {
|
|
report(LOG_FATAL, fmt, std::forward<T>(args)...);
|
|
std::abort();
|
|
}
|
|
};
|
|
} // namespace aurora
|
|
|
|
template <>
|
|
struct fmt::formatter<AuroraLogLevel> : formatter<std::string_view> {
|
|
auto format(AuroraLogLevel level, format_context& ctx) const -> format_context::iterator;
|
|
};
|