Log/Log.cpp

174 lines
4.0 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
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) {
std::ostream* os = getOs(lvl);
if (os) {
*os << sbuf << std::endl;
}
};
virtual void setLogLevel(Level lvl) { lvl_max = lvl; }
protected:
Level lvl_max = 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
};
// 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
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[lvl] << sbuf << "\x1B[0m";
else
*os << sbuf;
2019-06-01 23:51:14 +02:00
*os << std::endl;
}
}
2019-06-01 23:51:14 +02:00
virtual std::ostream* getOs(Level lvl) {
// out of scope?
if (!lvl || 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)
: Output(lvl_max), filename(filename), ofs(filename, std::ofstream::out | std::ofstream::app) {}
FileOutput(const std::string& filename, Level lvl_min, Level lvl_max)
: Output(lvl_max),
filename(filename),
ofs(filename, std::ofstream::out | std::ofstream::app),
lvl_min(lvl_min) {}
private:
std::string filename;
std::ofstream ofs;
Level lvl_min = FATAL;
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);
}
}
/*
* 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] "};
// get current date/time
auto now = std::chrono::system_clock::now();
std::time_t now_c = std::chrono::system_clock::to_time_t(now);
// datetime
ss << "[" << std::put_time(std::localtime(&now_c), "%F %T") << "]";
// log level
ss << LevelTag[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) {
outputs.push_back(new FileOutput(filename, max));
2019-06-01 23:51:14 +02:00
}
void addLogfile(const std::string& filename, Level min, Level max) {
outputs.push_back(new FileOutput(filename, min, max));
}
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