#pragma once #include #include #include #include "common.hpp" POLYBAR_NS enum class loglevel : uint8_t { NONE = 0, ERROR, WARNING, INFO, TRACE, }; class logger { public: using make_type = const logger&; static make_type make(loglevel level = loglevel::NONE); explicit logger(loglevel level); static loglevel parse_verbosity(const string& name, loglevel fallback = loglevel::NONE); void verbosity(loglevel&& level); #ifdef DEBUG_LOGGER // {{{ template void trace(string message, Args... args) const { output(loglevel::TRACE, message, args...); } #ifdef VERBOSE_TRACELOG template void trace_x(string message, Args... args) const { output(loglevel::TRACE, message, args...); } #else template void trace_x(Args...) const {} #endif #else template void trace(Args...) const {} template void trace_x(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; } #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, (m_prefixes.at(level) + format + m_suffixes.at(level) + "\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 */ std::map m_prefixes; /** * Loglevel specific suffixes */ std::map m_suffixes; }; POLYBAR_NS_END