i2pd/Log.cpp

85 lines
2.1 KiB
C++
Raw Normal View History

2014-08-17 09:35:09 +04:00
#include <boost/date_time/posix_time/posix_time.hpp>
#include "Log.h"
2013-12-10 17:00:13 +04:00
2014-07-02 21:48:45 +04:00
Log * g_Log = nullptr;
2014-10-28 23:36:17 +03:00
static const char * g_LogLevelStr[eNumLogLevels] =
{
"error", // eLogError
"warn", // eLogWarning
"info", // eLogInfo
"debug" // eLogDebug
};
void LogMsg::Process()
{
2016-02-04 20:36:58 +03:00
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();
2014-04-23 20:49:02 +04:00
}
const std::string& Log::GetTimestamp ()
{
2015-11-20 18:02:54 +03:00
#if (__GNUC__ == 4) && (__GNUC_MINOR__ <= 6) && !defined(__clang__)
2015-05-07 02:18:00 +03:00
auto ts = std::chrono::monotonic_clock::now ();
#else
auto ts = std::chrono::steady_clock::now ();
2015-05-07 02:18:00 +03:00
#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;
}
2014-04-23 20:49:02 +04:00
void Log::Flush ()
{
if (m_LogStream)
m_LogStream->flush();
2014-04-23 20:49:02 +04:00
}
2014-04-24 19:10:46 +04:00
void Log::SetLogFile (const std::string& fullFilePath)
{
2016-02-04 21:53:38 +03:00
m_FullFilePath = fullFilePath;
2016-02-04 20:36:58 +03:00
auto logFile = std::make_shared<std::ofstream> (fullFilePath, std::ofstream::out | std::ofstream::binary | std::ofstream::trunc);
if (logFile->is_open ())
{
SetLogStream (logFile);
2015-12-18 17:08:35 +03:00
LogPrint(eLogInfo, "Log: will send messages to ", fullFilePath);
}
}
2016-02-04 21:53:38 +03:00
void Log::ReopenLogFile ()
{
if (m_FullFilePath.length () > 0)
{
SetLogFile (m_FullFilePath);
LogPrint(eLogInfo, "Log: file ", m_FullFilePath, " reopen");
}
}
2015-12-28 03:00:00 +03:00
void Log::SetLogLevel (const std::string& level)
{
if (level == "error") { m_MinLevel = eLogError; }
else if (level == "warn") { m_MinLevel = eLogWarning; }
else if (level == "info") { m_MinLevel = eLogInfo; }
else if (level == "debug") { m_MinLevel = eLogDebug; }
else {
LogPrint(eLogError, "Log: Unknown loglevel: ", level);
return;
}
2016-02-04 20:36:58 +03:00
LogPrint(eLogInfo, "Log: min msg level set to ", level);
2015-12-28 03:00:00 +03:00
}
2016-02-04 20:36:58 +03:00
void Log::SetLogStream (std::shared_ptr<std::ostream> logStream)
{
m_LogStream = logStream;
2014-04-24 19:10:46 +04:00
}