icinga2/lib/base/logger.cpp

203 lines
5.5 KiB
C++
Raw Normal View History

2012-07-10 12:21:19 +02:00
/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
2012-07-10 12:21:19 +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/application.hpp"
#include "base/streamlogger.hpp"
#include "base/logger.hpp"
#include "base/dynamictype.hpp"
#include "base/utility.hpp"
#include "base/objectlock.hpp"
#include "base/context.hpp"
#include "base/scriptvariable.hpp"
2013-03-16 21:18:53 +01:00
#include <boost/foreach.hpp>
2013-03-17 22:14:40 +01:00
#include <iostream>
2012-07-10 12:21:19 +02:00
using namespace icinga;
REGISTER_TYPE(Logger);
INITIALIZE_ONCE(&Logger::StaticInitialize);
std::set<Logger::Ptr> Logger::m_Loggers;
boost::mutex Logger::m_Mutex;
bool Logger::m_ConsoleLogEnabled = true;
LogSeverity Logger::m_ConsoleLogSeverity = LogInformation;
2012-07-10 12:21:19 +02:00
void Logger::StaticInitialize(void)
{
ScriptVariable::Set("LogDebug", LogDebug, true, true);
ScriptVariable::Set("LogNotice", LogNotice, true, true);
ScriptVariable::Set("LogInformation", LogInformation, true, true);
ScriptVariable::Set("LogWarning", LogWarning, true, true);
ScriptVariable::Set("LogCritical", LogCritical, true, true);
}
/**
2012-09-17 13:35:55 +02:00
* Constructor for the Logger class.
*/
2013-03-01 12:07:52 +01:00
void Logger::Start(void)
{
DynamicObject::Start();
boost::mutex::scoped_lock lock(m_Mutex);
m_Loggers.insert(GetSelf());
}
void Logger::Stop(void)
{
boost::mutex::scoped_lock lock(m_Mutex);
m_Loggers.erase(GetSelf());
}
2013-03-01 12:07:52 +01:00
std::set<Logger::Ptr> Logger::GetLoggers(void)
{
boost::mutex::scoped_lock lock(m_Mutex);
return m_Loggers;
}
2012-07-10 12:21:19 +02:00
/**
* Writes a message to the application's log.
*
* @param severity The message severity.
* @param facility The log facility.
* @param message The message.
*/
2013-03-16 21:18:53 +01:00
void icinga::Log(LogSeverity severity, const String& facility,
const String& message)
2012-07-10 12:21:19 +02:00
{
LogEntry entry;
entry.Timestamp = Utility::GetTime();
2012-07-10 12:21:19 +02:00
entry.Severity = severity;
entry.Facility = facility;
entry.Message = message;
if (severity >= LogWarning) {
ContextTrace context;
if (context.GetLength() > 0) {
std::ostringstream trace;
trace << context;
entry.Message += "\nContext:" + trace.str();
}
}
BOOST_FOREACH(const Logger::Ptr& logger, Logger::GetLoggers()) {
ObjectLock llock(logger);
if (!logger->IsActive())
continue;
2013-02-18 23:44:24 +01:00
if (entry.Severity >= logger->GetMinSeverity())
logger->ProcessLogEntry(entry);
2012-07-10 12:21:19 +02:00
}
if (Logger::IsConsoleLogEnabled() && entry.Severity >= Logger::GetConsoleLogSeverity()) {
2013-02-01 14:12:24 +01:00
static bool tty = StreamLogger::IsTty(std::cout);
StreamLogger::ProcessLogEntry(std::cout, tty, entry);
}
2012-07-10 12:21:19 +02:00
}
/**
* Retrieves the minimum severity for this logger.
*
* @returns The minimum severity.
*/
LogSeverity Logger::GetMinSeverity(void) const
{
2013-10-26 09:41:45 +02:00
String severity = GetSeverity();
if (severity.IsEmpty())
return LogInformation;
else {
LogSeverity ls = LogInformation;
try {
ls = Logger::StringToSeverity(severity);
} catch (std::exception&) { /* use the default level */ }
return ls;
}
}
2012-09-14 14:41:17 +02:00
/**
* Converts a severity enum value to a string.
*
* @param severity The severity value.
*/
String Logger::SeverityToString(LogSeverity severity)
{
switch (severity) {
case LogDebug:
return "debug";
case LogNotice:
return "notice";
case LogInformation:
return "information";
case LogWarning:
return "warning";
case LogCritical:
return "critical";
default:
Log(LogCritical, "Logger", "Invalid severity.");
2013-03-16 21:18:53 +01:00
BOOST_THROW_EXCEPTION(std::invalid_argument("Invalid severity."));
}
}
2012-09-14 14:41:17 +02:00
/**
* Converts a string to a severity enum value.
*
* @param severity The severity.
*/
LogSeverity Logger::StringToSeverity(const String& severity)
{
if (severity == "debug")
return LogDebug;
else if (severity == "notice")
return LogNotice;
else if (severity == "information")
return LogInformation;
else if (severity == "warning")
return LogWarning;
else if (severity == "critical")
return LogCritical;
else {
Log(LogCritical, "Logger", "Invalid severity: '" + severity + "'.");
2013-03-16 21:18:53 +01:00
BOOST_THROW_EXCEPTION(std::invalid_argument("Invalid severity: " + severity));
}
}
void Logger::DisableConsoleLog(void)
{
m_ConsoleLogEnabled = false;
}
bool Logger::IsConsoleLogEnabled(void)
{
return m_ConsoleLogEnabled;
}
void Logger::SetConsoleLogSeverity(LogSeverity logSeverity)
{
m_ConsoleLogSeverity = logSeverity;
}
LogSeverity Logger::GetConsoleLogSeverity(void)
{
return m_ConsoleLogSeverity;
}