2012-10-16 10:41:54 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
|
|
|
* Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) *
|
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2013-03-16 21:18:53 +01:00
|
|
|
#include "base/streamlogger.h"
|
2013-03-18 11:02:18 +01:00
|
|
|
#include "base/utility.h"
|
2013-03-16 21:18:53 +01:00
|
|
|
#include "base/objectlock.h"
|
2013-03-18 11:02:18 +01:00
|
|
|
#include <boost/thread/thread.hpp>
|
2013-03-16 21:18:53 +01:00
|
|
|
#include <fstream>
|
2013-03-17 22:14:40 +01:00
|
|
|
#include <iostream>
|
2012-07-10 15:14:45 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
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.
|
|
|
|
*/
|
2013-06-06 11:26:30 +02:00
|
|
|
StreamLogger::StreamLogger(const Dictionary::Ptr& serializedUpdate)
|
|
|
|
: Logger(serializedUpdate), m_Stream(NULL), m_OwnsStream(false), m_Tty(false)
|
2012-07-10 15:14:45 +02:00
|
|
|
{ }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Destructor for the StreamLogger class.
|
|
|
|
*/
|
|
|
|
StreamLogger::~StreamLogger(void)
|
|
|
|
{
|
|
|
|
if (m_OwnsStream)
|
|
|
|
delete m_Stream;
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
|
2012-07-10 15:14:45 +02:00
|
|
|
m_Stream = stream;
|
2013-06-06 11:26:30 +02:00
|
|
|
m_OwnsStream = ownsStream;
|
|
|
|
m_Tty = IsTty(*stream);
|
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.
|
2013-02-01 14:12:24 +01:00
|
|
|
* @param tty Whether the output stream is a TTY.
|
2012-07-10 15:14:45 +02:00
|
|
|
* @param entry The log entry.
|
|
|
|
*/
|
2013-03-16 21:18:53 +01:00
|
|
|
void StreamLogger::ProcessLogEntry(std::ostream& stream, bool tty, const LogEntry& entry)
|
2012-07-10 15:14:45 +02:00
|
|
|
{
|
2013-02-28 10:27:33 +01: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);
|
|
|
|
|
2013-02-01 14:12:24 +01:00
|
|
|
if (tty) {
|
|
|
|
switch (entry.Severity) {
|
|
|
|
case LogWarning:
|
2013-02-01 15:44:03 +01:00
|
|
|
stream << "\x1b[1;33m"; // yellow;
|
2013-02-01 14:12:24 +01:00
|
|
|
break;
|
|
|
|
case LogCritical:
|
2013-02-01 15:44:03 +01:00
|
|
|
stream << "\x1b[1;31m"; // red
|
2013-02-01 14:12:24 +01:00
|
|
|
break;
|
2013-02-01 19:02:07 +01:00
|
|
|
default:
|
|
|
|
break;
|
2013-02-01 14:12:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-25 18:36:15 +01:00
|
|
|
stream << "[" << timestamp << "] <" << Utility::GetThreadName() << "> "
|
2012-07-13 09:03:22 +02:00
|
|
|
<< Logger::SeverityToString(entry.Severity) << "/" << entry.Facility << ": "
|
2013-02-08 09:40:19 +01:00
|
|
|
<< entry.Message;
|
2013-02-01 14:12:24 +01:00
|
|
|
|
|
|
|
if (tty)
|
|
|
|
stream << "\x1b[0m"; // clear colors
|
2013-02-08 09:40:19 +01:00
|
|
|
|
|
|
|
stream << std::endl;
|
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)
|
|
|
|
{
|
2013-02-01 14:12:24 +01:00
|
|
|
ProcessLogEntry(*m_Stream, m_Tty, entry);
|
2012-08-14 12:51:51 +02:00
|
|
|
}
|
|
|
|
|
2013-03-02 09:07:47 +01:00
|
|
|
/**
|
2013-03-22 12:02:20 +01:00
|
|
|
* Checks whether the specified stream is a terminal.
|
|
|
|
*
|
|
|
|
* @param stream The stream.
|
|
|
|
* @returns true if the stream is a terminal, false otherwise.
|
2013-03-02 09:07:47 +01:00
|
|
|
*/
|
2013-03-16 21:18:53 +01:00
|
|
|
bool StreamLogger::IsTty(std::ostream& stream)
|
2013-02-01 14:12:24 +01:00
|
|
|
{
|
|
|
|
#ifndef _WIN32
|
|
|
|
/* Eww... */
|
|
|
|
if (stream == std::cout)
|
|
|
|
return isatty(fileno(stdout));
|
|
|
|
|
|
|
|
if (stream == std::cerr)
|
|
|
|
return isatty(fileno(stderr));
|
|
|
|
#endif /*_ WIN32 */
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|