Log/Log.cpp

208 lines
4.9 KiB
C++
Raw Normal View History

2019-06-01 23:51:14 +02:00
#include "Log.h"
#include <chrono> // date/time
#include <fstream> // ofstream (logging to file)
#include <iomanip> // std::put_time
#include <iostream> // std::ostream, std::cout, std::cin
#include <vector> // list of outputs
2020-11-02 23:51:44 +01:00
#if LOG_USEMUTEX == 1
#include <mutex>
#endif
namespace Log {
2019-06-01 23:51:14 +02:00
/*
* abstract class Output
* default implementations
*/
2019-06-01 23:51:14 +02:00
// abstract base class for a log sink
class Output {
public:
Output() {}
Output(Level lvl_max) : lvl_max(lvl_max) {}
virtual ~Output() {}
virtual void log(Level lvl, std::stringbuf* sbuf) {
2020-11-02 23:51:44 +01:00
//aquire lock
#if LOG_USEMUTEX == 1
std::unique_lock<std::mutex> lock(ostreamLock);
#endif
2020-12-14 19:37:39 +01:00
std::ostream* os = getOs(lvl);
if (os) {
*os << sbuf << '\n';
}
};
virtual void setLogLevel(Level lvl) { lvl_max = lvl; }
protected:
Level lvl_max = Level::info;
// returns the correct ostream for the given log-level
// or returns nullptr if no ostream is set/enabled for this level
virtual std::ostream* getOs(Level lvl) = 0; // abstract
2020-11-02 23:51:44 +01:00
#if LOG_USEMUTEX == 1
std::mutex ostreamLock; //used for both streams
#endif
};
// logging to stdout/stderr
class ConsoleOutput : public Output {
public:
ConsoleOutput() : Output() {}
virtual bool setColoredOutput(bool enabled) {
// TODO: check the terminal's compatibility for colors
coloredOutput = enabled;
return true;
}
2019-06-01 23:51:14 +02:00
private:
std::ostream* osStd = &std::cout;
std::ostream* osErr = &std::cerr;
bool coloredOutput;
virtual void log(Level lvl, std::stringbuf* sbuf) {
// off fatal error warn note info debug trace
static const char* color_codes[] = {"", "1;31;40m", "31m", "33m", "96m", "32m", "0m", "0m"};
2019-06-01 23:51:14 +02:00
2020-11-02 23:51:44 +01:00
//aquire lock
#if LOG_USEMUTEX == 1
std::unique_lock<std::mutex> lock(ostreamLock);
#endif
std::ostream* os = getOs(lvl);
2019-06-01 23:51:14 +02:00
if (os) {
// print colors if enabled
if (coloredOutput)
*os << "\x1B[" << color_codes[static_cast<int>(lvl)] << sbuf << "\x1B[0m";
else
*os << sbuf;
2019-06-01 23:51:14 +02:00
*os << '\n';
}
}
2019-06-01 23:51:14 +02:00
virtual std::ostream* getOs(Level lvl) {
// out of scope?
if (lvl == Level::off || lvl > lvl_max)
return nullptr;
2019-06-01 23:51:14 +02:00
// stderr for fatal, error, warn
if (lvl <= Level::warn)
return osErr;
else
return osStd;
}
};
class FileOutput : public Output {
public:
FileOutput(const std::string& filename, Level lvl_max, bool truncate)
: Output(lvl_max), filename(filename), ofs(filename, truncate ? std::ostream::trunc : std::ostream::app) {}
FileOutput(const std::string& filename, Level lvl_min, Level lvl_max, bool truncate)
: Output(lvl_max),
filename(filename),
ofs(filename, truncate ? std::ostream::trunc : std::ostream::app),
lvl_min(lvl_min) {}
private:
std::string filename;
std::ofstream ofs;
Level lvl_min = Level::fatal;
2020-11-02 23:51:44 +01:00
#if LOG_USEMUTEX == 1
std::mutex ostreamLock; //used for both streams
#endif
virtual std::ostream* getOs(Level lvl) {
if (lvl_min <= lvl && lvl <= lvl_max)
return &ofs;
return nullptr;
}
};
static std::vector<Output*> outputs;
2019-06-01 23:51:14 +02:00
void log(Level lvl, std::stringbuf* strb) {
2019-06-01 23:51:14 +02:00
for (Output* out : outputs) {
out->log(lvl, strb);
// reset stringbuffer read pointer to the beginning
strb->pubseekpos(0);
}
}
LeveledSink fatal(Level::fatal);
LeveledSink error(Level::error);
LeveledSink warn(Level::warn);
LeveledSink note(Level::note);
LeveledSink info(Level::info);
LeveledSink debug(Level::debug);
LeveledSink trace(Level::trace);
2020-09-23 21:02:31 +02:00
2019-06-01 23:51:14 +02:00
/*
* class Entry
2019-06-01 23:51:14 +02:00
*/
Entry::Entry(Level lvl) : lvl(lvl) {
addMetadataHeader();
2019-06-01 23:51:14 +02:00
}
Entry::~Entry() {
log(lvl, ss.rdbuf());
2019-06-01 23:51:14 +02:00
}
void Entry::addMetadataHeader() {
2019-06-01 23:51:14 +02:00
static const char* LevelTag[] = {"", "[FATAL] ", "[ERROR] ", "[WARN ] ",
"[NOTE ] ", "[INFO ] ", "[DEBUG] ", "[TRACE] "};
// datetime
using namespace std::chrono;
auto now = system_clock::to_time_t(system_clock::now());
auto tm = *std::localtime(&now);
// MinGW doesn't support the ISO8601 formatting characters like "%F" and "%T"
// ref: https://sourceforge.net/p/mingw-w64/bugs/793/
// Therefore, use a more verbose time string
ss << "[" << std::put_time(&tm, "%Y-%m-%d %H:%M:%S") << "]";
// log level
ss << LevelTag[static_cast<int>(lvl)];
2019-06-01 23:51:14 +02:00
}
void init() {
// add default console logger
if (outputs.empty())
outputs.push_back(new ConsoleOutput());
2019-06-01 23:51:14 +02:00
}
void stop() {
for (auto output : outputs)
delete output;
outputs.clear();
2019-06-01 23:51:14 +02:00
}
void addLogfile(const std::string& filename, Level max, bool truncate) {
outputs.push_back(new FileOutput(filename, max, truncate));
2019-06-01 23:51:14 +02:00
}
void addLogfile(const std::string& filename, Level min, Level max, bool truncate) {
outputs.push_back(new FileOutput(filename, min, max, truncate));
}
2019-06-01 23:51:14 +02:00
void setConsoleLogLevel(Level lvl) {
outputs.at(0)->setLogLevel(lvl); // has to exist
}
2019-06-01 23:51:14 +02:00
void setColoredOutput(bool enabled) {
((ConsoleOutput*) outputs.at(0))->setColoredOutput(enabled); // has to exist
}
LeveledSink::LeveledSink(Level level) : level(level) {}
} // namespace Log