icinga2/lib/base/logger.hpp

150 lines
3.4 KiB
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2012-07-10 12:21:19 +02:00
#ifndef LOGGER_H
#define LOGGER_H
#include "base/atomic.hpp"
2014-05-25 16:23:35 +02:00
#include "base/i2-base.hpp"
2018-01-18 13:50:38 +01:00
#include "base/logger-ti.hpp"
#include <set>
2021-02-02 10:44:02 +01:00
#include <sstream>
2012-07-10 12:21:19 +02:00
2013-03-16 21:18:53 +01:00
namespace icinga
2012-07-10 12:21:19 +02:00
{
2014-10-19 14:21:12 +02:00
/**
* Log severity.
*
* @ingroup base
*/
enum LogSeverity
{
LogDebug,
LogNotice,
LogInformation,
LogWarning,
LogCritical,
// Just for internal comparision
LogNothing,
2014-10-19 14:21:12 +02:00
};
/**
2013-11-19 07:14:04 +01:00
* A log entry.
*
* @ingroup base
*/
2012-07-10 12:21:19 +02:00
struct LogEntry {
2012-09-17 14:47:43 +02:00
double Timestamp; /**< The timestamp when this log entry was created. */
LogSeverity Severity; /**< The severity of this log entry. */
String Facility; /**< The facility this log entry belongs to. */
String Message; /**< The log entry's message. */
2012-07-10 12:21:19 +02:00
};
/**
* A log provider.
2012-09-17 13:35:55 +02:00
*
* @ingroup base
*/
2017-12-31 07:22:16 +01:00
class Logger : public ObjectImpl<Logger>
2012-07-10 12:21:19 +02:00
{
public:
2014-11-03 00:44:04 +01:00
DECLARE_OBJECT(Logger);
2012-07-10 12:21:19 +02:00
static String SeverityToString(LogSeverity severity);
static LogSeverity StringToSeverity(const String& severity);
LogSeverity GetMinSeverity() const;
2012-07-10 12:21:19 +02:00
/**
* Processes the log entry and writes it to the log that is
* represented by this ILogger object.
*
* @param entry The log entry that is to be processed.
*/
virtual void ProcessLogEntry(const LogEntry& entry) = 0;
virtual void Flush() = 0;
static std::set<Logger::Ptr> GetLoggers();
static void DisableConsoleLog();
static void EnableConsoleLog();
static bool IsConsoleLogEnabled();
static void DisableEarlyLogging();
static bool IsEarlyLoggingEnabled();
static void DisableTimestamp();
static void EnableTimestamp();
static bool IsTimestampEnabled();
static void SetConsoleLogSeverity(LogSeverity logSeverity);
static LogSeverity GetConsoleLogSeverity();
static inline
LogSeverity GetMinLogSeverity()
{
return m_MinLogSeverity.load();
}
void SetSeverity(const String& value, bool suppress_events = false, const Value& cookie = Empty) override;
void ValidateSeverity(const Lazy<String>& lvalue, const ValidationUtils& utils) final;
2013-03-01 12:07:52 +01:00
protected:
void Start(bool runtimeCreated) override;
void Stop(bool runtimeRemoved) override;
2013-03-01 12:07:52 +01:00
2012-07-10 12:21:19 +02:00
private:
static void UpdateMinLogSeverity();
2021-02-02 10:16:04 +01:00
static std::mutex m_Mutex;
static std::set<Logger::Ptr> m_Loggers;
static bool m_ConsoleLogEnabled;
static std::atomic<bool> m_EarlyLoggingEnabled;
static bool m_TimestampEnabled;
static LogSeverity m_ConsoleLogSeverity;
static std::mutex m_UpdateMinLogSeverityMutex;
static Atomic<LogSeverity> m_MinLogSeverity;
2012-07-10 12:21:19 +02:00
};
2014-10-19 17:52:17 +02:00
class Log
{
public:
Log() = delete;
Log(const Log& other) = delete;
Log& operator=(const Log& rhs) = delete;
2014-10-19 17:52:17 +02:00
Log(LogSeverity severity, String facility, const String& message);
Log(LogSeverity severity, String facility);
2014-10-19 17:52:17 +02:00
~Log();
2014-10-19 17:52:17 +02:00
template<typename T>
Log& operator<<(const T& val)
{
m_Buffer << val;
return *this;
}
Log& operator<<(const char *val);
2014-10-19 17:52:17 +02:00
private:
LogSeverity m_Severity;
String m_Facility;
std::ostringstream m_Buffer;
bool m_IsNoOp;
2014-10-19 17:52:17 +02:00
};
extern template Log& Log::operator<<(const Value&);
extern template Log& Log::operator<<(const String&);
extern template Log& Log::operator<<(const std::string&);
extern template Log& Log::operator<<(const bool&);
extern template Log& Log::operator<<(const unsigned int&);
extern template Log& Log::operator<<(const int&);
extern template Log& Log::operator<<(const unsigned long&);
extern template Log& Log::operator<<(const long&);
extern template Log& Log::operator<<(const double&);
2012-07-10 12:21:19 +02:00
}
#endif /* LOGGER_H */