2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2012-07-10 06:21:19 -04:00
|
|
|
|
|
|
|
|
#ifndef LOGGER_H
|
|
|
|
|
#define LOGGER_H
|
|
|
|
|
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/i2-base.hpp"
|
2018-01-18 07:50:38 -05:00
|
|
|
#include "base/logger-ti.hpp"
|
2013-06-06 05:26:30 -04:00
|
|
|
#include <set>
|
2021-02-02 04:44:02 -05:00
|
|
|
#include <sstream>
|
2012-07-10 06:21:19 -04:00
|
|
|
|
2013-03-16 16:18:53 -04:00
|
|
|
namespace icinga
|
2012-07-10 06:21:19 -04:00
|
|
|
{
|
|
|
|
|
|
2014-10-19 08:21:12 -04:00
|
|
|
/**
|
|
|
|
|
* Log severity.
|
|
|
|
|
*
|
|
|
|
|
* @ingroup base
|
|
|
|
|
*/
|
|
|
|
|
enum LogSeverity
|
|
|
|
|
{
|
|
|
|
|
LogDebug,
|
|
|
|
|
LogNotice,
|
|
|
|
|
LogInformation,
|
|
|
|
|
LogWarning,
|
|
|
|
|
LogCritical
|
|
|
|
|
};
|
|
|
|
|
|
2012-07-10 06:51:53 -04:00
|
|
|
/**
|
2013-11-19 01:14:04 -05:00
|
|
|
* A log entry.
|
2012-07-10 06:51:53 -04:00
|
|
|
*
|
|
|
|
|
* @ingroup base
|
|
|
|
|
*/
|
2012-07-10 06:21:19 -04:00
|
|
|
struct LogEntry {
|
2012-09-17 08:47:43 -04: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 06:21:19 -04:00
|
|
|
};
|
|
|
|
|
|
2012-07-10 06:51:53 -04:00
|
|
|
/**
|
2013-06-06 05:26:30 -04:00
|
|
|
* A log provider.
|
2012-09-17 07:35:55 -04:00
|
|
|
*
|
|
|
|
|
* @ingroup base
|
|
|
|
|
*/
|
2017-12-31 01:22:16 -05:00
|
|
|
class Logger : public ObjectImpl<Logger>
|
2012-07-10 06:21:19 -04:00
|
|
|
{
|
|
|
|
|
public:
|
2014-11-02 18:44:04 -05:00
|
|
|
DECLARE_OBJECT(Logger);
|
2012-07-10 06:21:19 -04:00
|
|
|
|
2012-08-02 03:38:08 -04:00
|
|
|
static String SeverityToString(LogSeverity severity);
|
|
|
|
|
static LogSeverity StringToSeverity(const String& severity);
|
2012-07-13 03:03:22 -04:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
LogSeverity GetMinSeverity() const;
|
2012-07-10 06:21:19 -04:00
|
|
|
|
2013-06-06 05:26:30 -04: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-03 22:25:35 -05:00
|
|
|
virtual void Flush() = 0;
|
2014-08-07 02:34:38 -04:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
static std::set<Logger::Ptr> GetLoggers();
|
2013-06-06 05:26:30 -04:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
static void DisableConsoleLog();
|
|
|
|
|
static void EnableConsoleLog();
|
|
|
|
|
static bool IsConsoleLogEnabled();
|
2021-04-08 07:49:53 -04:00
|
|
|
static void DisableEarlyLogging();
|
|
|
|
|
static bool IsEarlyLoggingEnabled();
|
2018-05-03 05:35:29 -04:00
|
|
|
static void DisableTimestamp();
|
|
|
|
|
static void EnableTimestamp();
|
2018-01-03 22:25:35 -05:00
|
|
|
static bool IsTimestampEnabled();
|
2013-12-16 11:05:23 -05:00
|
|
|
|
2014-05-23 12:05:04 -04:00
|
|
|
static void SetConsoleLogSeverity(LogSeverity logSeverity);
|
2018-01-03 22:25:35 -05:00
|
|
|
static LogSeverity GetConsoleLogSeverity();
|
2014-05-23 12:05:04 -04:00
|
|
|
|
2018-01-11 01:08:09 -05:00
|
|
|
void ValidateSeverity(const Lazy<String>& lvalue, const ValidationUtils& utils) final;
|
2016-04-21 07:50:47 -04:00
|
|
|
|
2013-03-01 06:07:52 -05:00
|
|
|
protected:
|
2018-01-03 23:12:56 -05:00
|
|
|
void Start(bool runtimeCreated) override;
|
|
|
|
|
void Stop(bool runtimeRemoved) override;
|
2013-03-01 06:07:52 -05:00
|
|
|
|
2012-07-10 06:21:19 -04:00
|
|
|
private:
|
2021-02-02 04:16:04 -05:00
|
|
|
static std::mutex m_Mutex;
|
2013-06-06 05:26:30 -04:00
|
|
|
static std::set<Logger::Ptr> m_Loggers;
|
2013-12-16 11:05:23 -05:00
|
|
|
static bool m_ConsoleLogEnabled;
|
2021-04-08 07:49:53 -04:00
|
|
|
static std::atomic<bool> m_EarlyLoggingEnabled;
|
2014-10-31 17:01:36 -04:00
|
|
|
static bool m_TimestampEnabled;
|
2014-05-23 12:05:04 -04:00
|
|
|
static LogSeverity m_ConsoleLogSeverity;
|
2012-07-10 06:21:19 -04:00
|
|
|
};
|
|
|
|
|
|
2014-10-19 11:52:17 -04:00
|
|
|
class Log
|
|
|
|
|
{
|
|
|
|
|
public:
|
2018-01-03 22:25:35 -05:00
|
|
|
Log() = delete;
|
2018-01-03 00:01:02 -05:00
|
|
|
Log(const Log& other) = delete;
|
|
|
|
|
Log& operator=(const Log& rhs) = delete;
|
2014-10-19 11:52:17 -04:00
|
|
|
|
2018-01-04 02:54:18 -05:00
|
|
|
Log(LogSeverity severity, String facility, const String& message);
|
|
|
|
|
Log(LogSeverity severity, String facility);
|
2014-10-19 11:52:17 -04:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
~Log();
|
2014-10-19 11:52:17 -04:00
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
|
Log& operator<<(const T& val)
|
|
|
|
|
{
|
|
|
|
|
m_Buffer << val;
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-03 00:01:02 -05:00
|
|
|
Log& operator<<(const char *val);
|
|
|
|
|
|
2014-10-19 11:52:17 -04:00
|
|
|
private:
|
|
|
|
|
LogSeverity m_Severity;
|
|
|
|
|
String m_Facility;
|
|
|
|
|
std::ostringstream m_Buffer;
|
|
|
|
|
};
|
|
|
|
|
|
2018-01-03 00:01:02 -05: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 06:21:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* LOGGER_H */
|