2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2012-07-10 12:21:19 +02:00
|
|
|
|
|
|
|
#ifndef LOGGER_H
|
|
|
|
#define LOGGER_H
|
|
|
|
|
2022-09-08 12:09:25 +02:00
|
|
|
#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"
|
2013-06-06 11:26:30 +02:00
|
|
|
#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,
|
2022-09-08 12:09:25 +02:00
|
|
|
LogCritical,
|
|
|
|
|
|
|
|
// Just for internal comparision
|
|
|
|
LogNothing,
|
2014-10-19 14:21:12 +02:00
|
|
|
};
|
|
|
|
|
2012-07-10 12:51:53 +02:00
|
|
|
/**
|
2013-11-19 07:14:04 +01:00
|
|
|
* A log entry.
|
2012-07-10 12:51:53 +02:00
|
|
|
*
|
|
|
|
* @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
|
|
|
};
|
|
|
|
|
2012-07-10 12:51:53 +02:00
|
|
|
/**
|
2013-06-06 11:26:30 +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
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
static String SeverityToString(LogSeverity severity);
|
|
|
|
static LogSeverity StringToSeverity(const String& severity);
|
2012-07-13 09:03:22 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
LogSeverity GetMinSeverity() const;
|
2012-07-10 12:21:19 +02:00
|
|
|
|
2013-06-06 11:26:30 +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;
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
virtual void Flush() = 0;
|
2014-08-07 08:34:38 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static std::set<Logger::Ptr> GetLoggers();
|
2013-06-06 11:26:30 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static void DisableConsoleLog();
|
|
|
|
static void EnableConsoleLog();
|
|
|
|
static bool IsConsoleLogEnabled();
|
2021-04-08 13:49:53 +02:00
|
|
|
static void DisableEarlyLogging();
|
|
|
|
static bool IsEarlyLoggingEnabled();
|
2018-05-03 11:35:29 +02:00
|
|
|
static void DisableTimestamp();
|
|
|
|
static void EnableTimestamp();
|
2018-01-04 04:25:35 +01:00
|
|
|
static bool IsTimestampEnabled();
|
2013-12-16 17:05:23 +01:00
|
|
|
|
2014-05-23 18:05:04 +02:00
|
|
|
static void SetConsoleLogSeverity(LogSeverity logSeverity);
|
2018-01-04 04:25:35 +01:00
|
|
|
static LogSeverity GetConsoleLogSeverity();
|
2014-05-23 18:05:04 +02:00
|
|
|
|
2022-09-08 12:09:25 +02:00
|
|
|
static inline
|
|
|
|
LogSeverity GetMinLogSeverity()
|
|
|
|
{
|
|
|
|
return m_MinLogSeverity.load();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetSeverity(const String& value, bool suppress_events = false, const Value& cookie = Empty) override;
|
2018-01-11 07:08:09 +01:00
|
|
|
void ValidateSeverity(const Lazy<String>& lvalue, const ValidationUtils& utils) final;
|
2016-04-21 13:50:47 +02:00
|
|
|
|
2013-03-01 12:07:52 +01:00
|
|
|
protected:
|
2018-01-04 05:12:56 +01:00
|
|
|
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:
|
2022-09-08 12:09:25 +02:00
|
|
|
static void UpdateMinLogSeverity();
|
|
|
|
|
2021-02-02 10:16:04 +01:00
|
|
|
static std::mutex m_Mutex;
|
2013-06-06 11:26:30 +02:00
|
|
|
static std::set<Logger::Ptr> m_Loggers;
|
2013-12-16 17:05:23 +01:00
|
|
|
static bool m_ConsoleLogEnabled;
|
2021-04-08 13:49:53 +02:00
|
|
|
static std::atomic<bool> m_EarlyLoggingEnabled;
|
2014-10-31 22:01:36 +01:00
|
|
|
static bool m_TimestampEnabled;
|
2014-05-23 18:05:04 +02:00
|
|
|
static LogSeverity m_ConsoleLogSeverity;
|
2022-09-08 12:09:25 +02:00
|
|
|
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:
|
2018-01-04 04:25:35 +01:00
|
|
|
Log() = delete;
|
2018-01-03 06:01:02 +01:00
|
|
|
Log(const Log& other) = delete;
|
|
|
|
Log& operator=(const Log& rhs) = delete;
|
2014-10-19 17:52:17 +02:00
|
|
|
|
2018-01-04 08:54:18 +01:00
|
|
|
Log(LogSeverity severity, String facility, const String& message);
|
|
|
|
Log(LogSeverity severity, String facility);
|
2014-10-19 17:52:17 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
~Log();
|
2014-10-19 17:52:17 +02:00
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
Log& operator<<(const T& val)
|
|
|
|
{
|
|
|
|
m_Buffer << val;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2018-01-03 06:01:02 +01:00
|
|
|
Log& operator<<(const char *val);
|
|
|
|
|
2014-10-19 17:52:17 +02:00
|
|
|
private:
|
|
|
|
LogSeverity m_Severity;
|
|
|
|
String m_Facility;
|
|
|
|
std::ostringstream m_Buffer;
|
2022-09-08 12:09:25 +02:00
|
|
|
bool m_IsNoOp;
|
2014-10-19 17:52:17 +02:00
|
|
|
};
|
|
|
|
|
2018-01-03 06:01:02 +01: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 */
|