#pragma once #include #include "common.hpp" POLYBAR_NS enum class loglevel { NONE = 0, ERROR, WARNING, INFO, TRACE, }; loglevel parse_loglevel_name(string name); class logger { public: explicit logger(loglevel level); explicit logger(string level_name) : logger(parse_loglevel_name(level_name)) {} void verbosity(loglevel level); void verbosity(string level); /** * Output a trace message */ template #ifdef DEBUG_LOGGER void trace(string message, Args... args) const { output(loglevel::TRACE, message, args...); } #else #ifdef VERBOSE_TRACELOG #undef VERBOSE_TRACELOG #endif void trace(string, Args...) const { } #endif /** * Output extra verbose trace message */ template #ifdef VERBOSE_TRACELOG void trace_x(string message, Args... args) const { output(loglevel::TRACE, message, args...); } #else void trace_x(string, Args...) const { } #endif /** * Output an info message */ template void info(string message, Args... args) const { output(loglevel::INFO, message, args...); } /** * Output a warning message */ template void warn(string message, Args... args) const { output(loglevel::WARNING, message, args...); } /** * Output an error message */ template void err(string message, Args... args) const { output(loglevel::ERROR, message, args...); } protected: template decltype(auto) convert(T&& arg) const { return forward(arg); } /** * Convert string to const char* */ const char* convert(string arg) const { return arg.c_str(); } /** * Write the log message to the output channel * if the defined verbosity level allows it */ template void output(loglevel level, string format, Args... values) const { if (level > m_level) return; auto prefix = m_prefixes.find(level)->second; auto suffix = m_suffixes.find(level)->second; // silence the compiler #if defined(__clang__) #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wformat-security" #elif defined(__GNUC__) #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wformat-security" #endif dprintf(m_fd, (prefix + format + suffix + "\n").c_str(), convert(values)...); #if defined(__clang__) #pragma clang diagnostic pop #elif defined(__GNUC__) #pragma GCC diagnostic pop #endif } private: /** * Logger verbosity level */ loglevel m_level = loglevel::TRACE; /** * File descriptor used when writing the log messages */ int m_fd = STDERR_FILENO; /** * Loglevel specific prefixes */ // clang-format off map m_prefixes { {loglevel::TRACE, "polybar|trace "}, {loglevel::INFO, "polybar|info "}, {loglevel::WARNING, "polybar|warn "}, {loglevel::ERROR, "polybar|error "}, }; /** * Loglevel specific suffixes */ map m_suffixes { {loglevel::TRACE, ""}, {loglevel::INFO, ""}, {loglevel::WARNING, ""}, {loglevel::ERROR, ""}, }; // clang-format on }; namespace { /** * Configure injection module */ template di::injector configure_logger(loglevel level = loglevel::NONE) { auto instance = factory::generic_singleton(level); return di::make_injector(di::bind<>().to(instance)); } } POLYBAR_NS_END