2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2012-10-16 04:41:54 -04:00
|
|
|
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/streamlogger.hpp"
|
2018-01-18 07:50:38 -05:00
|
|
|
#include "base/streamlogger-ti.cpp"
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/utility.hpp"
|
|
|
|
|
#include "base/objectlock.hpp"
|
2014-10-17 03:45:46 -04:00
|
|
|
#include "base/console.hpp"
|
2013-03-17 17:14:40 -04:00
|
|
|
#include <iostream>
|
2012-07-10 09:14:45 -04:00
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
2013-11-08 10:07:21 -05:00
|
|
|
REGISTER_TYPE(StreamLogger);
|
2013-11-08 05:17:46 -05:00
|
|
|
|
2021-02-02 04:16:04 -05:00
|
|
|
std::mutex StreamLogger::m_Mutex;
|
2013-02-19 06:17:31 -05:00
|
|
|
|
2015-08-20 11:18:48 -04:00
|
|
|
void StreamLogger::Stop(bool runtimeRemoved)
|
2014-04-27 17:40:37 -04:00
|
|
|
{
|
2015-08-20 11:18:48 -04:00
|
|
|
ObjectImpl<StreamLogger>::Stop(runtimeRemoved);
|
2014-04-27 17:40:37 -04:00
|
|
|
|
|
|
|
|
// make sure we flush the log data on shutdown, even if we don't call the destructor
|
|
|
|
|
if (m_Stream)
|
|
|
|
|
m_Stream->flush();
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-10 09:14:45 -04:00
|
|
|
/**
|
|
|
|
|
* Destructor for the StreamLogger class.
|
|
|
|
|
*/
|
2018-01-03 22:25:35 -05:00
|
|
|
StreamLogger::~StreamLogger()
|
2012-07-10 09:14:45 -04:00
|
|
|
{
|
2015-02-28 02:43:49 -05:00
|
|
|
if (m_FlushLogTimer)
|
2023-04-13 10:19:58 -04:00
|
|
|
m_FlushLogTimer->Stop(true);
|
2015-02-28 02:43:49 -05:00
|
|
|
|
2018-11-08 09:51:58 -05:00
|
|
|
if (m_Stream && m_OwnsStream)
|
2012-07-10 09:14:45 -04:00
|
|
|
delete m_Stream;
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
void StreamLogger::FlushLogTimerHandler()
|
2013-10-21 08:09:14 -04:00
|
|
|
{
|
2014-08-07 02:34:38 -04:00
|
|
|
Flush();
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
void StreamLogger::Flush()
|
2014-08-07 02:34:38 -04:00
|
|
|
{
|
2020-05-15 09:33:37 -04:00
|
|
|
ObjectLock oLock (this);
|
|
|
|
|
|
2014-08-07 02:34:38 -04:00
|
|
|
if (m_Stream)
|
|
|
|
|
m_Stream->flush();
|
2013-10-21 08:09:14 -04:00
|
|
|
}
|
|
|
|
|
|
2013-06-06 05:26:30 -04:00
|
|
|
void StreamLogger::BindStream(std::ostream *stream, bool ownsStream)
|
2012-07-10 09:14:45 -04:00
|
|
|
{
|
2013-03-02 03:07:47 -05:00
|
|
|
ObjectLock olock(this);
|
|
|
|
|
|
2018-11-08 09:51:58 -05:00
|
|
|
if (m_Stream && m_OwnsStream)
|
2014-05-22 05:22:30 -04:00
|
|
|
delete m_Stream;
|
|
|
|
|
|
2012-07-10 09:14:45 -04:00
|
|
|
m_Stream = stream;
|
2013-06-06 05:26:30 -04:00
|
|
|
m_OwnsStream = ownsStream;
|
2014-10-31 17:01:36 -04:00
|
|
|
|
2019-04-18 06:23:50 -04:00
|
|
|
if (!m_FlushLogTimer) {
|
2023-03-21 05:30:15 -04:00
|
|
|
m_FlushLogTimer = Timer::Create();
|
2019-04-18 06:23:50 -04:00
|
|
|
m_FlushLogTimer->SetInterval(1);
|
2021-01-18 08:29:05 -05:00
|
|
|
m_FlushLogTimer->OnTimerExpired.connect([this](const Timer * const&) { FlushLogTimerHandler(); });
|
2019-04-18 06:23:50 -04:00
|
|
|
m_FlushLogTimer->Start();
|
|
|
|
|
}
|
2012-07-10 09:14:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Processes a log entry and outputs it to a stream.
|
|
|
|
|
*
|
2012-08-14 06:51:51 -04:00
|
|
|
* @param stream The output stream.
|
2012-07-10 09:14:45 -04:00
|
|
|
* @param entry The log entry.
|
|
|
|
|
*/
|
2014-10-17 03:45:46 -04:00
|
|
|
void StreamLogger::ProcessLogEntry(std::ostream& stream, const LogEntry& entry)
|
2012-07-10 09:14:45 -04:00
|
|
|
{
|
2013-09-18 18:05:56 -04:00
|
|
|
String timestamp = Utility::FormatDateTime("%Y-%m-%d %H:%M:%S %z", entry.Timestamp);
|
2012-07-10 09:14:45 -04:00
|
|
|
|
2021-02-02 04:16:04 -05:00
|
|
|
std::unique_lock<std::mutex> lock(m_Mutex);
|
2013-02-19 17:02:08 -05:00
|
|
|
|
2014-10-31 17:01:36 -04:00
|
|
|
if (Logger::IsTimestampEnabled())
|
|
|
|
|
stream << "[" << timestamp << "] ";
|
2014-05-12 04:27:01 -04:00
|
|
|
|
2014-10-20 07:15:37 -04:00
|
|
|
int color;
|
2014-10-17 03:45:46 -04:00
|
|
|
|
|
|
|
|
switch (entry.Severity) {
|
2014-10-18 20:39:45 -04:00
|
|
|
case LogDebug:
|
|
|
|
|
color = Console_ForegroundCyan;
|
|
|
|
|
break;
|
2014-10-17 03:45:46 -04:00
|
|
|
case LogNotice:
|
|
|
|
|
color = Console_ForegroundBlue;
|
|
|
|
|
break;
|
|
|
|
|
case LogInformation:
|
|
|
|
|
color = Console_ForegroundGreen;
|
|
|
|
|
break;
|
|
|
|
|
case LogWarning:
|
2014-10-20 07:15:37 -04:00
|
|
|
color = Console_ForegroundYellow | Console_Bold;
|
2014-10-17 03:45:46 -04:00
|
|
|
break;
|
|
|
|
|
case LogCritical:
|
2014-10-20 07:15:37 -04:00
|
|
|
color = Console_ForegroundRed | Console_Bold;
|
2014-10-17 03:45:46 -04:00
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return;
|
2013-02-01 08:12:24 -05:00
|
|
|
}
|
|
|
|
|
|
2014-10-17 03:45:46 -04:00
|
|
|
stream << ConsoleColorTag(color);
|
|
|
|
|
stream << Logger::SeverityToString(entry.Severity);
|
|
|
|
|
stream << ConsoleColorTag(Console_Normal);
|
2014-05-12 04:27:01 -04:00
|
|
|
stream << "/" << entry.Facility << ": " << entry.Message << "\n";
|
2012-07-10 09:14:45 -04:00
|
|
|
}
|
2012-08-14 06:51:51 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Processes a log entry and outputs it to a stream.
|
|
|
|
|
*
|
|
|
|
|
* @param entry The log entry.
|
|
|
|
|
*/
|
|
|
|
|
void StreamLogger::ProcessLogEntry(const LogEntry& entry)
|
|
|
|
|
{
|
2014-10-17 03:45:46 -04:00
|
|
|
ProcessLogEntry(*m_Stream, entry);
|
2012-08-14 06:51:51 -04:00
|
|
|
}
|