polybar/include/components/logger.hpp

161 lines
3.4 KiB
C++
Raw Normal View History

2016-06-15 03:32:35 +00:00
#pragma once
#include <cstdio>
#include <map>
#include <string>
2016-12-23 04:18:58 +00:00
#include <thread>
#include <utility>
2016-06-15 03:32:35 +00:00
#include "common.hpp"
#include "settings.hpp"
2016-06-15 03:32:35 +00:00
2017-01-11 04:10:51 +00:00
#ifndef STDOUT_FILENO
#define STDOUT_FILENO 1
#endif
#ifndef STDERR_FILENO
#define STDERR_FILENO 2
#endif
2016-11-19 05:22:44 +00:00
POLYBAR_NS
2016-06-15 03:32:35 +00:00
2017-01-19 10:11:28 +00:00
enum class loglevel {
2016-06-15 03:32:35 +00:00
NONE = 0,
ERROR,
WARNING,
NOTICE,
2016-06-15 03:32:35 +00:00
INFO,
TRACE,
};
class logger {
public:
2016-12-09 08:40:46 +00:00
using make_type = const logger&;
static make_type make(loglevel level = loglevel::NONE);
2016-12-09 08:02:47 +00:00
2016-11-02 19:22:45 +00:00
explicit logger(loglevel level);
2016-06-15 03:32:35 +00:00
2016-12-09 11:22:58 +00:00
static loglevel parse_verbosity(const string& name, loglevel fallback = loglevel::NONE);
void verbosity(loglevel level);
2016-06-15 03:32:35 +00:00
#ifdef DEBUG_LOGGER // {{{
2016-06-15 03:32:35 +00:00
template <typename... Args>
void trace(const string& message, Args&&... args) const {
output(loglevel::TRACE, message, std::forward<Args>(args)...);
2016-06-15 03:32:35 +00:00
}
2017-01-19 04:38:42 +00:00
#ifdef DEBUG_LOGGER_VERBOSE
template <typename... Args>
void trace_x(const string& message, Args&&... args) const {
output(loglevel::TRACE, message, std::forward<Args>(args)...);
}
#else
template <typename... Args>
void trace_x(Args&&...) const {}
#endif
#else
template <typename... Args>
void trace(Args&&...) const {}
template <typename... Args>
void trace_x(Args&&...) const {}
#endif // }}}
2016-06-15 03:32:35 +00:00
/**
* Output an info message
*/
template <typename... Args>
void info(const string& message, Args&&... args) const {
output(loglevel::INFO, message, std::forward<Args>(args)...);
2016-06-15 03:32:35 +00:00
}
/**
* Output a notice
*/
template <typename... Args>
void notice(const string& message, Args&&... args) const {
output(loglevel::NOTICE, message, std::forward<Args>(args)...);
}
2016-06-15 03:32:35 +00:00
/**
* Output a warning message
*/
template <typename... Args>
void warn(const string& message, Args&&... args) const {
output(loglevel::WARNING, message, std::forward<Args>(args)...);
2016-06-15 03:32:35 +00:00
}
/**
* Output an error message
*/
template <typename... Args>
void err(const string& message, Args&&... args) const {
output(loglevel::ERROR, message, std::forward<Args>(args)...);
2016-06-15 03:32:35 +00:00
}
protected:
template <typename T>
decltype(auto) convert(T&& arg) const {
return forward<T>(arg);
}
2016-06-15 03:32:35 +00:00
/**
2016-12-23 04:18:58 +00:00
* Convert string
2016-06-15 03:32:35 +00:00
*/
const char* convert(string& arg) const;
const char* convert(const string& arg) const;
2016-12-23 04:18:58 +00:00
/**
* Convert thread id
*/
size_t convert(std::thread::id arg) const;
2016-06-15 03:32:35 +00:00
/**
* Write the log message to the output channel
* if the defined verbosity level allows it
*/
template <typename... Args>
void output(loglevel level, const string& format, Args&&... values) const {
if (level > m_level) {
2016-06-15 03:32:35 +00:00
return;
}
2016-06-15 03:32:35 +00:00
#if defined(__clang__) // {{{
2016-06-15 03:32:35 +00:00
#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__) // {{{
2016-06-15 03:32:35 +00:00
#pragma clang diagnostic pop
#elif defined(__GNUC__)
#pragma GCC diagnostic pop
#endif // }}}
2016-06-15 03:32:35 +00:00
}
private:
/**
* Logger verbosity level
*/
loglevel m_level{loglevel::TRACE};
2016-06-15 03:32:35 +00:00
/**
* File descriptor used when writing the log messages
*/
int m_fd{STDERR_FILENO};
2016-06-15 03:32:35 +00:00
/**
* Loglevel specific prefixes
*/
std::map<loglevel, string> m_prefixes;
2016-06-15 03:32:35 +00:00
/**
* Loglevel specific suffixes
*/
std::map<loglevel, string> m_suffixes;
2016-06-15 03:32:35 +00:00
};
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END