-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathexample.cpp
99 lines (81 loc) · 3.29 KB
/
example.cpp
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
#include "babylon/logging/logger.h"
#include "gflags/gflags.h"
#include "glog/logging.h"
class BabylonLogSink : public ::google::LogSink {
public:
virtual void send(::google::LogSeverity glog_severity,
const char* full_filename, const char*, int line,
const ::google::LogMessageTime&, const char* message,
size_t message_len) noexcept override {
// severity mapping
static ::babylon::LogSeverity mapping[] = {
[::google::INFO] = ::babylon::LogSeverity::INFO,
[::google::WARNING] = ::babylon::LogSeverity::WARNING,
[::google::ERROR] = ::babylon::LogSeverity::FATAL,
[::google::FATAL] = ::babylon::LogSeverity::FATAL,
};
// root logger severity pre-check
auto severity = mapping[glog_severity];
auto& logger = ::babylon::LoggerManager::instance().get_root_logger();
if (logger.min_severity() > severity) {
return;
}
// write to root logger
auto& stream = logger.stream(severity, full_filename, line);
stream.begin();
stream.write(message, message_len);
stream.end();
}
};
class GLogStream : public ::babylon::LogStream {
public:
GLogStream() noexcept : LogStream(*reinterpret_cast<std::streambuf*>(0)) {}
virtual void do_begin() noexcept override {
// severity mapping
static ::google::LogSeverity mapping[] = {
[::babylon::LogSeverity::DEBUG] = ::google::INFO,
[::babylon::LogSeverity::INFO] = ::google::INFO,
[::babylon::LogSeverity::WARNING] = ::google::WARNING,
[::babylon::LogSeverity::FATAL] = ::google::FATAL,
};
// get underlying std::streambuf from glog. set to babylon::LogStream
auto& message = reinterpret_cast<::google::LogMessage&>(_message_storage);
new (&message)::google::LogMessage(file().data(), line(),
mapping[severity()]);
rdbuf(message.stream().rdbuf());
}
virtual void do_end() noexcept override {
// destruct google::LogMessage to flush
auto& message = reinterpret_cast<::google::LogMessage&>(_message_storage);
message.~LogMessage();
}
::std::aligned_storage<sizeof(::google::LogMessage),
alignof(::google::LogMessage)>::type _message_storage;
};
int main(int argc, char* argv[]) {
::gflags::ParseCommandLineFlags(&argc, &argv, true);
::gflags::SetCommandLineOption(
"stderrthreshold", ::std::to_string(::google::NUM_SEVERITIES).c_str());
::google::InitGoogleLogging(argv[0]);
// glog -> babylon sink -> babylon
BabylonLogSink sink;
::google::AddLogSink(&sink);
LOG(INFO) << "1 glog to babylon";
LOG(WARNING) << "2 glog to babylon";
LOG(ERROR) << "3 glog to babylon";
// LOG(FATAL) << "4 glog to babylon";
::google::RemoveLogSink(&sink);
::gflags::SetCommandLineOption("alsologtostderr", "true");
// babylon -> logger -> glog stream -> glog
::babylon::LoggerBuilder builder;
builder.set_log_stream_creator([] {
return ::std::make_unique<GLogStream>();
});
::babylon::LoggerManager::instance().set_root_builder(::std::move(builder));
::babylon::LoggerManager::instance().apply();
BABYLON_LOG(DEBUG) << "1 babylon to glog";
BABYLON_LOG(INFO) << "2 babylon to glog";
BABYLON_LOG(WARNING) << "3 babylon to glog";
// BABYLON_LOG(FATAL) << "4 babylon to glog";
return 0;
}