2018-05-27 14:04:30 +00:00
|
|
|
#ifndef LLARP_LOGGER_HPP
|
|
|
|
#define LLARP_LOGGER_HPP
|
|
|
|
|
2018-05-28 13:49:44 +00:00
|
|
|
#include <ctime>
|
|
|
|
#include <iomanip>
|
2018-05-27 14:04:30 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
2018-06-01 17:47:37 +00:00
|
|
|
#include <string>
|
2018-05-27 14:04:30 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
enum LogLevel
|
|
|
|
{
|
|
|
|
eLogDebug,
|
|
|
|
eLogInfo,
|
|
|
|
eLogWarn,
|
|
|
|
eLogError
|
|
|
|
};
|
|
|
|
|
2018-05-28 13:49:44 +00:00
|
|
|
struct Logger
|
|
|
|
{
|
2018-06-06 21:23:57 +00:00
|
|
|
LogLevel minlevel = eLogInfo;
|
2018-05-28 13:49:44 +00:00
|
|
|
std::ostream& out = std::cout;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern Logger _glog;
|
|
|
|
|
|
|
|
void
|
|
|
|
SetLogLevel(LogLevel lvl);
|
2018-05-27 14:04:30 +00:00
|
|
|
|
|
|
|
/** internal */
|
|
|
|
template < typename TArg >
|
|
|
|
void
|
2018-06-01 17:47:37 +00:00
|
|
|
LogAppend(std::stringstream& ss, TArg&& arg) noexcept
|
2018-05-27 14:04:30 +00:00
|
|
|
{
|
|
|
|
ss << std::forward< TArg >(arg);
|
|
|
|
}
|
|
|
|
/** internal */
|
|
|
|
template < typename TArg, typename... TArgs >
|
|
|
|
void
|
2018-06-01 17:47:37 +00:00
|
|
|
LogAppend(std::stringstream& ss, TArg&& arg, TArgs&&... args) noexcept
|
2018-05-27 14:04:30 +00:00
|
|
|
{
|
|
|
|
LogAppend(ss, std::forward< TArg >(arg));
|
|
|
|
LogAppend(ss, std::forward< TArgs >(args)...);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** internal */
|
|
|
|
template < typename... TArgs >
|
|
|
|
void
|
2018-06-01 17:47:37 +00:00
|
|
|
_Log(LogLevel lvl, const char* fname, TArgs&&... args) noexcept
|
2018-05-27 14:04:30 +00:00
|
|
|
{
|
2018-05-28 13:49:44 +00:00
|
|
|
if(_glog.minlevel > lvl)
|
2018-05-27 14:04:30 +00:00
|
|
|
return;
|
|
|
|
|
2018-06-06 12:46:26 +00:00
|
|
|
std::stringstream ss;
|
2018-05-27 14:04:30 +00:00
|
|
|
switch(lvl)
|
|
|
|
{
|
|
|
|
case eLogDebug:
|
2018-05-28 13:49:44 +00:00
|
|
|
ss << (char)27 << "[0m";
|
2018-05-27 14:04:30 +00:00
|
|
|
ss << "[DBG] ";
|
|
|
|
break;
|
|
|
|
case eLogInfo:
|
2018-05-28 13:49:44 +00:00
|
|
|
ss << (char)27 << "[1m";
|
2018-05-27 14:04:30 +00:00
|
|
|
ss << "[NFO] ";
|
|
|
|
break;
|
|
|
|
case eLogWarn:
|
2018-05-28 13:49:44 +00:00
|
|
|
ss << (char)27 << "[1;33m";
|
2018-05-27 14:04:30 +00:00
|
|
|
ss << "[WRN] ";
|
|
|
|
break;
|
|
|
|
case eLogError:
|
2018-05-28 13:49:44 +00:00
|
|
|
ss << (char)27 << "[1;31m";
|
2018-05-27 14:04:30 +00:00
|
|
|
ss << "[ERR] ";
|
|
|
|
break;
|
|
|
|
}
|
2018-06-06 12:46:26 +00:00
|
|
|
std::time_t t;
|
|
|
|
std::time(&t);
|
2018-06-01 17:47:37 +00:00
|
|
|
std::string tag = fname;
|
|
|
|
auto pos = tag.rfind('/');
|
|
|
|
if(pos != std::string::npos)
|
|
|
|
tag = tag.substr(pos + 1);
|
2018-06-06 12:46:26 +00:00
|
|
|
ss << std::put_time(std::localtime(&t), "%F %T") << " " << tag;
|
|
|
|
auto sz = tag.size() % 8;
|
|
|
|
while(sz--)
|
|
|
|
ss << " ";
|
|
|
|
ss << "\t";
|
2018-05-27 14:04:30 +00:00
|
|
|
LogAppend(ss, std::forward< TArgs >(args)...);
|
2018-05-28 13:49:44 +00:00
|
|
|
ss << (char)27 << "[0;0m";
|
|
|
|
_glog.out << ss.str() << std::endl;
|
2018-06-06 21:23:57 +00:00
|
|
|
#ifdef SHADOW_TESTNET
|
|
|
|
_glog.out << "\n" << std::flush;
|
|
|
|
#endif
|
2018-05-27 14:04:30 +00:00
|
|
|
}
|
2018-06-20 12:34:48 +00:00
|
|
|
} // namespace llarp
|
2018-05-27 14:04:30 +00:00
|
|
|
|
2018-06-01 17:47:37 +00:00
|
|
|
#define Debug(x, ...) _Log(llarp::eLogDebug, __FILE__, x, ##__VA_ARGS__)
|
|
|
|
#define Info(x, ...) _Log(llarp::eLogInfo, __FILE__, x, ##__VA_ARGS__)
|
|
|
|
#define Warn(x, ...) _Log(llarp::eLogWarn, __FILE__, x, ##__VA_ARGS__)
|
|
|
|
#define Error(x, ...) _Log(llarp::eLogError, __FILE__, x, ##__VA_ARGS__)
|
|
|
|
|
2018-05-27 14:04:30 +00:00
|
|
|
#endif
|