2012-07-10 15:14:45 +02:00
|
|
|
#include "i2-base.h"
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor for the StreamLogger class.
|
|
|
|
*/
|
2012-07-27 16:05:02 +02:00
|
|
|
StreamLogger::StreamLogger(void)
|
|
|
|
: ILogger(), m_Stream(NULL), m_OwnsStream(false)
|
2012-07-10 15:14:45 +02:00
|
|
|
{ }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor for the StreamLogger class.
|
|
|
|
*
|
|
|
|
* @param stream The stream.
|
|
|
|
*/
|
2012-07-27 16:05:02 +02:00
|
|
|
StreamLogger::StreamLogger(ostream *stream)
|
|
|
|
: ILogger(), m_Stream(stream), m_OwnsStream(false)
|
2012-07-10 15:14:45 +02:00
|
|
|
{ }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Destructor for the StreamLogger class.
|
|
|
|
*/
|
|
|
|
StreamLogger::~StreamLogger(void)
|
|
|
|
{
|
|
|
|
if (m_OwnsStream)
|
|
|
|
delete m_Stream;
|
|
|
|
}
|
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
void StreamLogger::OpenFile(const String& filename)
|
2012-07-10 15:14:45 +02:00
|
|
|
{
|
|
|
|
ofstream *stream = new ofstream();
|
|
|
|
|
|
|
|
try {
|
2012-08-02 09:38:08 +02:00
|
|
|
stream->open(filename.CStr(), ofstream::out | ofstream::trunc);
|
2012-07-10 15:14:45 +02:00
|
|
|
|
|
|
|
if (!stream->good())
|
2012-07-17 20:41:06 +02:00
|
|
|
throw_exception(runtime_error("Could not open logfile '" + filename + "'"));
|
2012-07-23 08:57:19 +02:00
|
|
|
} catch (...) {
|
2012-07-10 15:14:45 +02:00
|
|
|
delete stream;
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_Stream = stream;
|
|
|
|
m_OwnsStream = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2012-08-14 12:51:51 +02:00
|
|
|
void StreamLogger::ProcessLogEntry(std::ostream& stream, const LogEntry& entry)
|
2012-07-10 15:14:45 +02:00
|
|
|
{
|
|
|
|
char timestamp[100];
|
|
|
|
|
2012-07-25 12:59:17 +02:00
|
|
|
time_t ts = entry.Timestamp;
|
|
|
|
tm tmnow = *localtime(&ts);
|
2012-07-10 15:14:45 +02:00
|
|
|
|
2012-09-25 09:01:24 +02:00
|
|
|
strftime(timestamp, sizeof(timestamp), "%Y/%m/%d %H:%M:%S %z", &tmnow);
|
2012-07-10 15:14:45 +02:00
|
|
|
|
2012-08-14 12:51:51 +02:00
|
|
|
stream << "[" << timestamp << "] "
|
2012-07-13 09:03:22 +02:00
|
|
|
<< Logger::SeverityToString(entry.Severity) << "/" << entry.Facility << ": "
|
2012-07-10 15:14:45 +02:00
|
|
|
<< entry.Message << std::endl;
|
|
|
|
}
|
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)
|
|
|
|
{
|
|
|
|
ProcessLogEntry(*m_Stream, entry);
|
|
|
|
}
|
|
|
|
|