1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
#pragma once
#include "../Base.h"
#include "../Format.h"
#include "../String.h"
#include "../concurrent/ConcurrentQueue.h"
#include <memory>
#include <mutex>
#include <thread>
#include <utility>
#include <vector>
namespace cru::log {
enum class LogLevel { Debug, Info, Warn, Error };
struct CRU_BASE_API LogInfo {
LogInfo(LogLevel level, String tag, String message)
: level(level), tag(std::move(tag)), message(std::move(message)) {}
CRU_DEFAULT_COPY(LogInfo)
CRU_DEFAULT_MOVE(LogInfo)
~LogInfo() = default;
LogLevel level;
String tag;
String message;
};
struct CRU_BASE_API ILogTarget : virtual Interface {
// Write the string s. LogLevel is just a helper. It has no effect on the
// content to write.
virtual void Write(LogLevel level, StringView s) = 0;
};
class CRU_BASE_API Logger : public Object {
public:
static Logger* GetInstance();
public:
Logger();
CRU_DELETE_COPY(Logger)
CRU_DELETE_MOVE(Logger)
~Logger() override;
public:
void AddLogTarget(std::unique_ptr<ILogTarget> source);
void RemoveLogTarget(ILogTarget* source);
public:
void Log(LogLevel level, String tag, String message) {
Log(LogInfo(level, std::move(tag), std::move(message)));
}
void Log(LogInfo log_info);
template <typename... Args>
void FormatLog(LogLevel level, String tag, StringView format,
Args&&... args) {
Log(level, std::move(tag), Format(format, std::forward<Args>(args)...));
}
private:
concurrent::ConcurrentQueue<LogInfo> log_queue_;
std::mutex target_list_mutex_;
std::vector<std::unique_ptr<ILogTarget>> target_list_;
std::thread log_thread_;
};
class CRU_BASE_API LoggerCppStream : public Object2 {
public:
explicit LoggerCppStream(Logger* logger, LogLevel level, String tag);
~LoggerCppStream() override = default;
LoggerCppStream WithLevel(LogLevel level) const;
LoggerCppStream WithTag(String tag) const;
private:
void Consume(StringView str);
public:
LoggerCppStream& operator<<(StringView str) {
this->Consume(str);
return *this;
}
template <typename T>
LoggerCppStream& operator<<(T&& arg) {
this->Consume(ToString(std::forward<T>(arg)));
return *this;
}
private:
Logger* logger_;
LogLevel level_;
String tag_;
};
} // namespace cru::log
#define CRU_LOG_TAG_DEBUG(...) \
cru::log::Logger::GetInstance()->FormatLog(cru::log::LogLevel::Debug, \
kLogTag, __VA_ARGS__)
#define CRU_LOG_TAG_INFO(...) \
cru::log::Logger::GetInstance()->FormatLog(cru::log::LogLevel::Info, \
kLogTag, __VA_ARGS__)
#define CRU_LOG_TAG_WARN(...) \
cru::log::Logger::GetInstance()->FormatLog(cru::log::LogLevel::Warn, \
kLogTag, __VA_ARGS__)
#define CRU_LOG_TAG_ERROR(...) \
cru::log::Logger::GetInstance()->FormatLog(cru::log::LogLevel::Error, \
kLogTag, __VA_ARGS__)
|