lokinet/include/llarp/logger.hpp

174 lines
4.0 KiB
C++
Raw Normal View History

2018-05-27 14:04:30 +00:00
#ifndef LLARP_LOGGER_HPP
#define LLARP_LOGGER_HPP
2018-07-24 06:15:29 +00:00
#include <llarp/time.h>
#include <ctime>
#include <iomanip>
2018-05-27 14:04:30 +00:00
#include <iostream>
#include <llarp/threading.hpp>
2018-05-27 14:04:30 +00:00
#include <sstream>
#include <string>
#ifdef _WIN32
#define VC_EXTRALEAN
#include <windows.h>
#endif
2018-08-06 04:35:00 +00:00
#ifdef ANDROID
#include <android/log.h>
#endif
2018-05-27 14:04:30 +00:00
namespace llarp
{
2018-06-23 14:52:15 +00:00
// probably will need to move out of llarp namespace for c api
2018-05-27 14:04:30 +00:00
enum LogLevel
{
eLogDebug,
eLogInfo,
eLogWarn,
eLogError
};
struct Logger
{
std::string nodeName;
2018-06-06 21:23:57 +00:00
LogLevel minlevel = eLogInfo;
2018-07-24 06:20:05 +00:00
std::ostream& out;
2018-08-12 17:22:29 +00:00
llarp::util::Mutex access;
Logger() : Logger(std::cout, "unnamed")
2018-07-24 06:20:05 +00:00
{
#ifdef _WIN32
DWORD mode_flags;
HANDLE fd1 = GetStdHandle(STD_OUTPUT_HANDLE);
GetConsoleMode(fd1, &mode_flags);
// since release SDKs don't have ANSI escape support yet
mode_flags |= 0x0004;
SetConsoleMode(fd1, mode_flags);
#endif
2018-07-24 06:20:05 +00:00
}
Logger(std::ostream& o, const std::string& name) : nodeName(name), out(o)
2018-07-24 06:20:05 +00:00
{
}
};
extern Logger _glog;
void
SetLogLevel(LogLevel lvl);
2018-05-27 14:04:30 +00:00
/** internal */
template < typename TArg >
void
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
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)...);
}
2018-08-18 14:01:21 +00:00
static inline std::string
thread_id_string()
{
auto tid = std::this_thread::get_id();
std::hash< std::thread::id > h;
uint16_t id = h(tid) % 1000;
return std::to_string(id);
}
2018-05-27 14:04:30 +00:00
/** internal */
template < typename... TArgs >
void
_Log(LogLevel lvl, const char* fname, int lineno, TArgs&&... args) noexcept
2018-05-27 14:04:30 +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-08-06 04:42:22 +00:00
#ifdef ANDROID
2018-08-12 17:22:29 +00:00
int loglev = -1;
2018-08-06 04:42:22 +00:00
switch(lvl)
{
case eLogDebug:
ss << "[DBG] ";
2018-08-12 17:22:29 +00:00
loglev = ANDROID_LOG_DEBUG;
2018-08-06 04:42:22 +00:00
break;
case eLogInfo:
ss << "[NFO] ";
2018-08-12 17:22:29 +00:00
loglev = ANDROID_LOG_INFO;
2018-08-06 04:42:22 +00:00
break;
case eLogWarn:
ss << "[WRN] ";
2018-08-12 17:22:29 +00:00
loglev = ANDROID_LOG_WARN;
2018-08-06 04:42:22 +00:00
break;
case eLogError:
ss << "[ERR] ";
2018-08-12 17:22:29 +00:00
loglev = ANDROID_LOG_ERROR;
2018-08-06 04:42:22 +00:00
break;
}
#else
2018-05-27 14:04:30 +00:00
switch(lvl)
{
case eLogDebug:
ss << (char)27 << "[0m";
2018-05-27 14:04:30 +00:00
ss << "[DBG] ";
break;
case eLogInfo:
ss << (char)27 << "[1m";
2018-05-27 14:04:30 +00:00
ss << "[NFO] ";
break;
case eLogWarn:
ss << (char)27 << "[1;33m";
2018-05-27 14:04:30 +00:00
ss << "[WRN] ";
break;
case eLogError:
ss << (char)27 << "[1;31m";
2018-05-27 14:04:30 +00:00
ss << "[ERR] ";
break;
}
2018-08-06 04:42:22 +00:00
#endif
std::string tag = fname;
2018-08-18 14:01:21 +00:00
ss << _glog.nodeName << " (" << thread_id_string() << ") "
<< llarp_time_now_ms() << " " << tag << ":" << lineno;
2018-06-06 12:46:26 +00:00
ss << "\t";
2018-05-27 14:04:30 +00:00
LogAppend(ss, std::forward< TArgs >(args)...);
2018-08-06 04:42:22 +00:00
#ifndef ANDROID
ss << (char)27 << "[0;0m";
2018-08-06 05:01:27 +00:00
#endif
{
2018-08-06 04:35:00 +00:00
#ifdef ANDROID
2018-08-12 17:22:29 +00:00
tag = "LOKINET|" + tag;
__android_log_write(ANDROID_LOG_INFO, tag.c_str(), ss.str().c_str());
2018-08-06 04:35:00 +00:00
#else
2018-08-12 17:22:29 +00:00
llarp::util::Lock lock(_glog.access);
_glog.out << ss.str() << std::endl;
2018-06-06 21:23:57 +00:00
#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
#define LogDebug(x, ...) \
_Log(llarp::eLogDebug, LOG_TAG, __LINE__, x, ##__VA_ARGS__)
#define LogInfo(x, ...) \
_Log(llarp::eLogInfo, LOG_TAG, __LINE__, x, ##__VA_ARGS__)
#define LogWarn(x, ...) \
_Log(llarp::eLogWarn, LOG_TAG, __LINE__, x, ##__VA_ARGS__)
#define LogError(x, ...) \
_Log(llarp::eLogError, LOG_TAG, __LINE__, x, ##__VA_ARGS__)
#define LogDebugTag(tag, x, ...) \
_Log(llarp::eLogDebug, tag, __LINE__, x, ##__VA_ARGS__)
#define LogInfoTag(tag, x, ...) \
_Log(llarp::eLogInfo, tag, __LINE__, x, ##__VA_ARGS__)
#define LogWarnTag(tag, x, ...) \
_Log(llarp::eLogWarn, tag, __LINE__, x, ##__VA_ARGS__)
#define LogErrorTag(tag, x, ...) \
_Log(llarp::eLogError, tag, __LINE__, x, ##__VA_ARGS__)
2018-07-30 22:35:54 +00:00
2018-08-01 22:10:38 +00:00
#ifndef LOG_TAG
#define LOG_TAG "default"
#endif
2018-05-27 14:04:30 +00:00
#endif