2012-10-16 10:41:54 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2018-01-02 12:06:00 +01:00
|
|
|
* Copyright (C) 2012-2018 Icinga Development Team (https://www.icinga.com/) *
|
2012-10-16 10:41:54 +02:00
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/streamlogger.hpp"
|
2015-03-28 11:04:42 +01:00
|
|
|
#include "base/streamlogger.tcpp"
|
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
|
|
|
|
2013-02-19 12:17:31 +01:00
|
|
|
boost::mutex StreamLogger::m_Mutex;
|
|
|
|
|
2012-07-10 15:14:45 +02:00
|
|
|
/**
|
|
|
|
* Constructor for the StreamLogger class.
|
|
|
|
*/
|
2015-03-02 10:09:21 +01:00
|
|
|
StreamLogger::StreamLogger(void)
|
2017-12-14 15:37:20 +01:00
|
|
|
: m_Stream(nullptr), m_OwnsStream(false)
|
2015-03-02 10:09:21 +01:00
|
|
|
{ }
|
2012-07-10 15:14:45 +02: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.
|
|
|
|
*/
|
|
|
|
StreamLogger::~StreamLogger(void)
|
|
|
|
{
|
2015-02-28 08:43:49 +01:00
|
|
|
if (m_FlushLogTimer)
|
|
|
|
m_FlushLogTimer->Stop();
|
|
|
|
|
2012-07-10 15:14:45 +02:00
|
|
|
if (m_OwnsStream)
|
|
|
|
delete m_Stream;
|
|
|
|
}
|
|
|
|
|
2013-10-21 14:09:14 +02:00
|
|
|
void StreamLogger::FlushLogTimerHandler(void)
|
|
|
|
{
|
2014-08-07 08:34:38 +02:00
|
|
|
Flush();
|
|
|
|
}
|
|
|
|
|
|
|
|
void StreamLogger::Flush(void)
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
|
2014-05-22 11:22:30 +02:00
|
|
|
if (m_OwnsStream)
|
|
|
|
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
|
|
|
|
2014-11-08 21:17:16 +01:00
|
|
|
m_FlushLogTimer = new Timer();
|
2013-10-21 14:15:21 +02:00
|
|
|
m_FlushLogTimer->SetInterval(1);
|
2017-11-21 11:52:55 +01:00
|
|
|
m_FlushLogTimer->OnTimerExpired.connect(std::bind(&StreamLogger::FlushLogTimerHandler, this));
|
2013-10-21 14:15:21 +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
|
|
|
|
2013-02-19 23:02:08 +01:00
|
|
|
boost::mutex::scoped_lock lock(m_Mutex);
|
|
|
|
|
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
|
|
|
}
|