Log/Log.cpp

223 lines
5.3 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 <iostream> // std::ostream, std::cout, std::cin
2022-09-05 00:01:31 +02:00
#include <memory> // std::unique_ptr
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) {
2022-09-04 23:45:04 +02:00
*os << sbuf;
os->put('\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
2022-09-04 23:45:04 +02:00
os->put('\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;
}
};
2022-09-05 00:01:31 +02:00
static std::vector<std::unique_ptr<Output>> outputs;
2019-06-01 23:51:14 +02:00
void log(Level lvl, std::stringbuf* strb) {
2022-09-05 00:01:31 +02:00
for (auto&& out : outputs) {
2019-06-01 23:51:14 +02:00
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} {
for(auto metafunc : entryMetaFunctions) {
metafunc(ss, *this);
}
2019-06-01 23:51:14 +02:00
}
Entry::~Entry() {
log(lvl, ss.rdbuf());
2019-06-01 23:51:14 +02:00
}
std::vector<Entry::MetaFunction> entryMetaFunctions;
std::ostream& defaultEntryMetaTime(std::ostream& os, const Entry& e) {
(void) e; // unused
2019-06-01 23:51:14 +02:00
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
char buf[24];
std::strftime(buf, sizeof(buf), "[%Y-%m-%d %H:%M:%S]", &tm);
return os << buf;
}
std::ostream& defaultEntryMetaLevel(std::ostream& os, const Entry& e) {
static const char* LevelTag[] = {
"", "[FATAL]", "[ERROR]", "[WARN ]", "[NOTE ]", "[INFO ]", "[DEBUG]", "[TRACE]"
};
return os << LevelTag[static_cast<int>(e.getLevel())];
2019-06-01 23:51:14 +02:00
}
void init() {
// add default console logger
if (outputs.empty())
2022-09-05 00:01:31 +02:00
outputs.push_back(std::unique_ptr<Output>(new ConsoleOutput()));
// set default entry metadata printing functions
auto space = [](std::ostream& os, const Entry& e) -> std::ostream& {
(void) e;
2022-09-04 23:45:04 +02:00
return os.put(' ');
};
entryMetaFunctions = {
defaultEntryMetaTime,
defaultEntryMetaLevel,
space
};
2019-06-01 23:51:14 +02:00
}
void stop() {
outputs.clear();
2019-06-01 23:51:14 +02:00
}
void addLogfile(const std::string& filename, Level max, bool truncate) {
2022-09-05 00:01:31 +02:00
outputs.push_back(std::unique_ptr<Output>(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) {
2022-09-05 00:01:31 +02:00
outputs.push_back(std::unique_ptr<Output>(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) {
2022-09-05 00:01:31 +02:00
dynamic_cast<ConsoleOutput&>(*outputs.at(0)).setColoredOutput(enabled); // has to exist
}
} // namespace Log