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