diff --git a/.vscode/settings.json b/.vscode/settings.json index 75ddc7f..2331fa4 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -5,6 +5,8 @@ "fstream": "cpp", "*.tcc": "cpp", "ostream": "cpp", - "mutex": "cpp" + "mutex": "cpp", + "functional": "cpp", + "iomanip": "cpp" } } \ No newline at end of file diff --git a/README.md b/README.md index 014082f..b3f620c 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,12 @@ using namespace marcelb; */ log mylog("../log", Level::INFO); +// or use external writer callback (for occasional writing) + +log mylog("../example", [](string log, string path) { + cout << log << " " << path << endl; +}, Level::INFO) + /** * Put log in file */ diff --git a/lib/log.hpp b/lib/log.hpp index a13c1c2..064cec4 100644 --- a/lib/log.hpp +++ b/lib/log.hpp @@ -9,6 +9,7 @@ #include #include #include +#include #if _WIN32 typedef unsigned int uint; @@ -39,6 +40,7 @@ class log { uint day; string path; mutex io; + function extWriter; /** * Checking if the path is in the string dir directory @@ -83,8 +85,10 @@ class log { * optional: a bool variable if it keeps the file open, * and a bool variable if it prints log lines to the console */ - log (string _dir, Level loglevel = WARNING, bool _isKeepOpen = true, bool _printInConsole = false); + log (string _dir, Level _loglevel = WARNING, bool _isKeepOpen = true, bool _printInConsole = false); + + log (string _dir, function _extWriter, Level _loglevel = WARNING, bool _printInConsole = false); /** * Debug log line diff --git a/src/log.cpp b/src/log.cpp index 8d6867a..1103bb0 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -25,19 +25,35 @@ log::log(string _dir, Level _loglevel, bool _isKeepOpen, bool _printInConsole) { } +log::log (string _dir, function _extWriter, Level _loglevel, bool _printInConsole) { + dir = _dir; + loglevel = _loglevel; + extWriter = _extWriter; + printInConsole = _printInConsole; + setMoment(); + day = moment->tm_mday; + setPath(); +} + + bool log::isdir() { struct stat sb; return stat(dir.c_str(), &sb) == 0; } bool log::open() { + if (extWriter) { + return false; + } logfile = ofstream (path, ios_base::app); return logfile.is_open(); } void log::loose() { - logfile.close(); + if (!extWriter) { + logfile.close(); + } } void log::setMoment() { @@ -59,27 +75,31 @@ void log::put(string logline, Level _level) { setPrefix(logline, _level); if (day != moment->tm_mday) { - if (isKeepOpen && logfile.is_open()) { + if (!extWriter && isKeepOpen && logfile.is_open()) { loose(); } day = moment->tm_mday; setPath(); - if (isKeepOpen) { + if (!extWriter && isKeepOpen) { if (!open()) { throw string("[ERROR] Opening log file! "); } } } - if (!isKeepOpen || !logfile.is_open()) { + if (!extWriter && (!isKeepOpen || !logfile.is_open())) { if (!open()) { throw string("[ERROR] Opening log file! "); } } - logfile << logline << endl; + if (!extWriter) { + logfile << logline << endl; + } else { + extWriter(logline, path); + } - if (!isKeepOpen && logfile.is_open()) { + if (!extWriter && !isKeepOpen && logfile.is_open()) { loose(); } io.unlock(); diff --git a/test/test.cpp b/test/test.cpp index c2ebe73..a00f996 100644 --- a/test/test.cpp +++ b/test/test.cpp @@ -6,6 +6,9 @@ using namespace std; using namespace marcelb::logging; log mylog("../example", Level::INFO, false); +// log mylog("../example", [](string log, string path) { +// cout << log << " " << path << endl; +// }, Level::INFO); int main() { mylog.debug("Start debug loging");