mirror of https://github.com/PurpleI2P/i2pd.git
hagen
9 years ago
2 changed files with 274 additions and 243 deletions
@ -1,133 +1,155 @@ |
|||||||
#include <boost/date_time/posix_time/posix_time.hpp> |
/*
|
||||||
#include "Log.h" |
* Copyright (c) 2013-2016, The PurpleI2P Project |
||||||
|
* |
||||||
|
* This file is part of Purple i2pd project and licensed under BSD3 |
||||||
|
* |
||||||
|
* See full license text in LICENSE file at top of project tree |
||||||
|
*/ |
||||||
|
|
||||||
Log * g_Log = nullptr; |
#include "Log.h" |
||||||
|
|
||||||
static const char * g_LogLevelStr[eNumLogLevels] = |
namespace i2p { |
||||||
{ |
namespace log { |
||||||
|
Log logger; |
||||||
|
/**
|
||||||
|
* @enum Maps our loglevel to their symbolic name |
||||||
|
*/ |
||||||
|
static const char * g_LogLevelStr[eNumLogLevels] = |
||||||
|
{ |
||||||
"error", // eLogError
|
"error", // eLogError
|
||||||
"warn", // eLogWarning
|
"warn", // eLogWarn
|
||||||
"info", // eLogInfo
|
"info", // eLogInfo
|
||||||
"debug" // eLogDebug
|
"debug" // eLogDebug
|
||||||
}; |
}; |
||||||
#ifndef _WIN32 |
|
||||||
/** convert LogLevel enum to syslog priority level */ |
|
||||||
static int ToSyslogLevel(LogLevel lvl) |
|
||||||
{ |
|
||||||
switch (lvl) { |
|
||||||
case eLogError: |
|
||||||
return LOG_ERR; |
|
||||||
case eLogWarning: |
|
||||||
return LOG_WARNING; |
|
||||||
case eLogInfo: |
|
||||||
return LOG_INFO; |
|
||||||
case eLogDebug: |
|
||||||
return LOG_DEBUG; |
|
||||||
default: |
|
||||||
// WTF? invalid log level?
|
|
||||||
return LOG_CRIT; |
|
||||||
} |
|
||||||
} |
|
||||||
#endif |
|
||||||
|
|
||||||
void LogMsg::Process() |
|
||||||
{ |
|
||||||
#ifndef _WIN32 |
#ifndef _WIN32 |
||||||
if (log && log->SyslogEnabled()) { |
/**
|
||||||
// only log to syslog
|
* @brief Maps our log levels to syslog one |
||||||
syslog(ToSyslogLevel(level), "%s", s.str().c_str()); |
* @return syslog priority LOG_*, as defined in syslog.h |
||||||
return; |
*/ |
||||||
|
static inline int GetSyslogPrio (enum LogLevel l) { |
||||||
|
int priority = LOG_DEBUG; |
||||||
|
switch (l) { |
||||||
|
case eLogError : priority = LOG_ERR; break; |
||||||
|
case eLogWarning : priority = LOG_WARNING; break; |
||||||
|
case eLogInfo : priority = LOG_INFO; break; |
||||||
|
case eLogDebug : priority = LOG_DEBUG; break; |
||||||
|
default : priority = LOG_DEBUG; break; |
||||||
|
} |
||||||
|
return priority; |
||||||
} |
} |
||||||
#endif |
#endif |
||||||
auto stream = log ? log->GetLogStream () : nullptr; |
|
||||||
auto& output = stream ? *stream : std::cout; |
|
||||||
if (log) |
|
||||||
output << log->GetTimestamp (); |
|
||||||
else |
|
||||||
output << boost::posix_time::second_clock::local_time().time_of_day (); |
|
||||||
output << "/" << g_LogLevelStr[level] << " - "; |
|
||||||
output << s.str(); |
|
||||||
} |
|
||||||
|
|
||||||
const std::string& Log::GetTimestamp () |
Log::Log(): |
||||||
{ |
m_Destination(eLogStdout), m_MinLevel(eLogInfo), |
||||||
#if (__GNUC__ == 4) && (__GNUC_MINOR__ <= 6) && !defined(__clang__) |
m_LogStream (nullptr), m_Logfile(""), m_IsReady(false) |
||||||
auto ts = std::chrono::monotonic_clock::now (); |
|
||||||
#else |
|
||||||
auto ts = std::chrono::steady_clock::now (); |
|
||||||
#endif |
|
||||||
if (ts > m_LastTimestampUpdate + std::chrono::milliseconds (500)) // 0.5 second
|
|
||||||
{ |
{ |
||||||
m_LastTimestampUpdate = ts; |
|
||||||
m_Timestamp = boost::posix_time::to_simple_string (boost::posix_time::second_clock::local_time().time_of_day ()); |
|
||||||
} |
} |
||||||
return m_Timestamp; |
|
||||||
} |
|
||||||
|
|
||||||
void Log::Flush () |
Log::~Log () |
||||||
{ |
|
||||||
if (m_LogStream) |
|
||||||
m_LogStream->flush(); |
|
||||||
} |
|
||||||
|
|
||||||
void Log::SetLogFile (const std::string& fullFilePath, bool truncate) |
|
||||||
{ |
|
||||||
m_FullFilePath = fullFilePath; |
|
||||||
auto mode = std::ofstream::out | std::ofstream::binary; |
|
||||||
mode |= truncate ? std::ofstream::trunc : std::ofstream::app; |
|
||||||
auto logFile = std::make_shared<std::ofstream> (fullFilePath, mode); |
|
||||||
if (logFile->is_open ()) |
|
||||||
{ |
{ |
||||||
SetLogStream (logFile); |
switch (m_Destination) { |
||||||
LogPrint(eLogInfo, "Log: will send messages to ", fullFilePath); |
#ifndef _WIN32 |
||||||
|
case eLogSyslog : |
||||||
|
closelog(); |
||||||
|
break; |
||||||
|
#endif |
||||||
|
case eLogFile: |
||||||
|
case eLogStream: |
||||||
|
m_LogStream->flush(); |
||||||
|
break; |
||||||
|
default: |
||||||
|
/* do nothing */ |
||||||
|
break; |
||||||
} |
} |
||||||
} |
Process(); |
||||||
|
|
||||||
void Log::ReopenLogFile () |
|
||||||
{ |
|
||||||
if (m_FullFilePath.length () > 0) |
|
||||||
{ |
|
||||||
SetLogFile (m_FullFilePath, false); // don't truncate
|
|
||||||
LogPrint(eLogInfo, "Log: file ", m_FullFilePath, " reopen"); |
|
||||||
} |
} |
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
void Log::SetLogLevel (const std::string& level) |
void Log::SetLogLevel (const std::string& level) { |
||||||
{ |
|
||||||
if (level == "error") { m_MinLevel = eLogError; } |
if (level == "error") { m_MinLevel = eLogError; } |
||||||
else if (level == "warn") { m_MinLevel = eLogWarning; } |
else if (level == "warn") { m_MinLevel = eLogWarning; } |
||||||
else if (level == "info") { m_MinLevel = eLogInfo; } |
else if (level == "info") { m_MinLevel = eLogInfo; } |
||||||
else if (level == "debug") { m_MinLevel = eLogDebug; } |
else if (level == "debug") { m_MinLevel = eLogDebug; } |
||||||
else { |
else { |
||||||
LogPrint(eLogError, "Log: Unknown loglevel: ", level); |
LogPrint(eLogError, "Log: unknown loglevel: ", level); |
||||||
return; |
return; |
||||||
} |
} |
||||||
LogPrint(eLogInfo, "Log: min msg level set to ", level); |
LogPrint(eLogInfo, "Log: min messages level set to ", level); |
||||||
} |
} |
||||||
|
|
||||||
void Log::SetLogStream (std::shared_ptr<std::ostream> logStream) |
const char * Log::TimeAsString(std::time_t t) { |
||||||
{ |
if (t != m_LastTimestamp) { |
||||||
m_LogStream = logStream; |
strftime(m_LastDateTime, sizeof(m_LastDateTime), "%H:%M:%S", localtime(&t)); |
||||||
} |
m_LastTimestamp = t; |
||||||
|
} |
||||||
|
return m_LastDateTime; |
||||||
|
} |
||||||
|
|
||||||
void Log::StartSyslog(const std::string & ident, const int facility) |
void Log::Process() { |
||||||
{ |
std::unique_lock<std::mutex> l(m_OutputLock); |
||||||
|
while (1) { |
||||||
|
auto msg = m_Queue.GetNextWithTimeout (1); |
||||||
|
if (!msg) |
||||||
|
break; |
||||||
|
switch (m_Destination) { |
||||||
#ifndef _WIN32 |
#ifndef _WIN32 |
||||||
m_Ident = ident; |
case eLogSyslog: |
||||||
openlog(m_Ident.c_str(), LOG_PID, facility); |
syslog(GetSyslogPrio(msg->level), "%s", msg->text.c_str()); |
||||||
|
break; |
||||||
#endif |
#endif |
||||||
} |
case eLogFile: |
||||||
|
case eLogStream: |
||||||
|
*m_LogStream << TimeAsString(msg->timestamp) << "/" << g_LogLevelStr[msg->level] << " - " << msg->text << std::endl; |
||||||
|
break; |
||||||
|
default: |
||||||
|
std::cout << TimeAsString(msg->timestamp) << "/" << g_LogLevelStr[msg->level] << " - " << msg->text << std::endl; |
||||||
|
break; |
||||||
|
} // switch
|
||||||
|
} // while
|
||||||
|
} |
||||||
|
|
||||||
|
void Log::Append(std::shared_ptr<i2p::log::LogMsg> & msg) { |
||||||
|
m_Queue.Put(msg); |
||||||
|
if (!m_IsReady) |
||||||
|
return; |
||||||
|
Process(); |
||||||
|
} |
||||||
|
|
||||||
|
void Log::SendTo (const std::string& path) { |
||||||
|
auto flags = std::ofstream::out | std::ofstream::app; |
||||||
|
auto os = std::make_shared<std::ofstream> (path, flags); |
||||||
|
if (os->is_open ()) { |
||||||
|
m_Logfile = path; |
||||||
|
m_Destination = eLogFile; |
||||||
|
m_LogStream = os; |
||||||
|
m_IsReady = true; |
||||||
|
return; |
||||||
|
} |
||||||
|
LogPrint(eLogError, "Log: can't open file ", path); |
||||||
|
} |
||||||
|
|
||||||
|
void Log::SendTo (std::shared_ptr<std::ostream> os) { |
||||||
|
m_Destination = eLogStream; |
||||||
|
m_IsReady = true; |
||||||
|
m_LogStream = os; |
||||||
|
} |
||||||
|
|
||||||
void Log::StopSyslog() |
|
||||||
{ |
|
||||||
#ifndef _WIN32 |
#ifndef _WIN32 |
||||||
closelog(); |
void Log::SendTo(const char *name, int facility) { |
||||||
m_Ident.clear(); |
m_Destination = eLogSyslog; |
||||||
|
m_LogStream = nullptr; |
||||||
|
m_IsReady = true; |
||||||
|
openlog(name, LOG_CONS | LOG_PID, facility); |
||||||
|
} |
||||||
#endif |
#endif |
||||||
} |
|
||||||
|
|
||||||
bool Log::SyslogEnabled() |
void Log::Reopen() { |
||||||
{ |
if (m_Destination == eLogFile) |
||||||
return m_Ident.size() > 0; |
SendTo(m_Logfile); |
||||||
} |
} |
||||||
|
|
||||||
|
Log & Logger() { |
||||||
|
return logger; |
||||||
|
} |
||||||
|
} // log
|
||||||
|
} // i2p
|
||||||
|
Loading…
Reference in new issue