ES-DE/es-core/src/Log.h

73 lines
1.8 KiB
C
Raw Normal View History

// SPDX-License-Identifier: MIT
//
// ES-DE
// Log.h
//
2021-11-15 19:47:00 +00:00
// Log output.
// This class is thread safe.
//
#ifndef ES_CORE_LOG_H
#define ES_CORE_LOG_H
#include "utils/FileSystemUtil.h"
2021-11-15 19:47:00 +00:00
#include <fstream>
#include <iomanip>
#include <iostream>
#include <map>
2022-06-22 05:06:20 +00:00
#include <mutex>
#include <sstream>
2017-11-01 22:21:10 +00:00
2023-11-20 21:52:33 +00:00
#if defined(__ANDROID__)
#include <android/log.h>
#endif
#define LOG(level) \
if (level > Log::getReportingLevel()) \
; \
else \
Log().get(level)
enum LogLevel {
LogError,
LogWarning,
LogInfo,
LogDebug
};
class Log
{
public:
~Log();
std::ostringstream& get(LogLevel level = LogInfo);
2022-06-22 05:06:20 +00:00
static LogLevel getReportingLevel();
static void setReportingLevel(LogLevel level);
2022-11-04 11:55:00 +00:00
// These functions are not thread safe.
static void init();
static void open();
2022-06-22 05:06:20 +00:00
static void flush();
static void close();
protected:
2021-11-15 19:47:00 +00:00
std::ostringstream mOutStringStream;
private:
std::map<LogLevel, std::string> mLogLevelMap {// Log level indicators.
{LogError, "Error"},
{LogWarning, "Warn"},
{LogInfo, "Info"},
{LogDebug, "Debug"}};
2022-01-29 17:16:30 +00:00
static inline std::ofstream sFile;
static inline LogLevel sReportingLevel = LogInfo;
static inline std::mutex sLogMutex;
static inline std::filesystem::path sLogPath;
2021-11-15 19:47:00 +00:00
LogLevel mMessageLevel;
};
#endif // ES_CORE_LOG_H