2014-10-28 00:36:00 -07:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-16 21:38:14 -08:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-10-28 00:36:00 -07:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-04-27 13:10:37 -07:00
|
|
|
#include <utility>
|
2015-08-02 09:55:31 -07:00
|
|
|
#include "common/assert.h"
|
2016-09-20 23:52:38 -07:00
|
|
|
#include "common/logging/backend.h"
|
2015-05-11 22:19:44 -07:00
|
|
|
#include "common/logging/filter.h"
|
2014-10-28 00:36:00 -07:00
|
|
|
#include "common/logging/log.h"
|
|
|
|
#include "common/logging/text_formatter.h"
|
2018-03-22 03:21:29 -07:00
|
|
|
#include "common/string_util.h"
|
2014-10-28 00:36:00 -07:00
|
|
|
|
|
|
|
namespace Log {
|
|
|
|
|
|
|
|
/// Macro listing all log classes. Code should define CLS and SUB as desired before invoking this.
|
2016-09-17 17:38:01 -07:00
|
|
|
#define ALL_LOG_CLASSES() \
|
|
|
|
CLS(Log) \
|
|
|
|
CLS(Common) \
|
|
|
|
SUB(Common, Filesystem) \
|
|
|
|
SUB(Common, Memory) \
|
|
|
|
CLS(Core) \
|
2017-10-22 21:13:12 -07:00
|
|
|
SUB(Core, ARM) \
|
2016-09-17 17:38:01 -07:00
|
|
|
SUB(Core, Timing) \
|
|
|
|
CLS(Config) \
|
|
|
|
CLS(Debug) \
|
|
|
|
SUB(Debug, Emulated) \
|
|
|
|
SUB(Debug, GPU) \
|
|
|
|
SUB(Debug, Breakpoint) \
|
|
|
|
SUB(Debug, GDBStub) \
|
|
|
|
CLS(Kernel) \
|
|
|
|
SUB(Kernel, SVC) \
|
|
|
|
CLS(Service) \
|
2018-02-04 13:40:12 -08:00
|
|
|
SUB(Service, ACC) \
|
2018-02-04 19:55:45 -08:00
|
|
|
SUB(Service, Audio) \
|
2018-02-04 13:58:12 -08:00
|
|
|
SUB(Service, AM) \
|
2018-02-19 23:27:32 -08:00
|
|
|
SUB(Service, AOC) \
|
2018-02-04 19:39:47 -08:00
|
|
|
SUB(Service, APM) \
|
2018-05-28 06:36:38 -07:00
|
|
|
SUB(Service, BCAT) \
|
2018-03-20 06:55:20 -07:00
|
|
|
SUB(Service, Fatal) \
|
2018-02-19 14:31:54 -08:00
|
|
|
SUB(Service, Friend) \
|
2016-09-17 17:38:01 -07:00
|
|
|
SUB(Service, FS) \
|
|
|
|
SUB(Service, HID) \
|
2018-02-04 19:41:55 -08:00
|
|
|
SUB(Service, LM) \
|
2018-06-05 02:19:29 -07:00
|
|
|
SUB(Service, MM) \
|
2018-03-29 18:06:51 -07:00
|
|
|
SUB(Service, NFP) \
|
2018-02-04 19:35:42 -08:00
|
|
|
SUB(Service, NIFM) \
|
2018-02-14 18:43:11 -08:00
|
|
|
SUB(Service, NS) \
|
2018-01-23 20:18:23 -08:00
|
|
|
SUB(Service, NVDRV) \
|
2018-02-04 19:44:00 -08:00
|
|
|
SUB(Service, PCTL) \
|
2018-04-26 14:19:34 -07:00
|
|
|
SUB(Service, PREPO) \
|
2018-02-04 19:55:45 -08:00
|
|
|
SUB(Service, SET) \
|
|
|
|
SUB(Service, SM) \
|
2018-03-21 23:54:16 -07:00
|
|
|
SUB(Service, SPL) \
|
2018-03-22 23:32:50 -07:00
|
|
|
SUB(Service, SSL) \
|
2018-02-04 19:59:52 -08:00
|
|
|
SUB(Service, Time) \
|
2018-02-04 19:26:44 -08:00
|
|
|
SUB(Service, VI) \
|
2016-09-17 17:38:01 -07:00
|
|
|
CLS(HW) \
|
|
|
|
SUB(HW, Memory) \
|
|
|
|
SUB(HW, LCD) \
|
|
|
|
SUB(HW, GPU) \
|
2017-01-01 04:58:02 -08:00
|
|
|
SUB(HW, AES) \
|
2018-01-16 22:09:33 -08:00
|
|
|
CLS(IPC) \
|
2016-09-17 17:38:01 -07:00
|
|
|
CLS(Frontend) \
|
|
|
|
CLS(Render) \
|
|
|
|
SUB(Render, Software) \
|
|
|
|
SUB(Render, OpenGL) \
|
|
|
|
CLS(Audio) \
|
|
|
|
SUB(Audio, DSP) \
|
|
|
|
SUB(Audio, Sink) \
|
2017-01-20 11:52:32 -08:00
|
|
|
CLS(Input) \
|
2017-07-07 12:34:15 -07:00
|
|
|
CLS(Network) \
|
2017-06-27 19:29:00 -07:00
|
|
|
CLS(Loader) \
|
|
|
|
CLS(WebService)
|
2014-10-28 00:36:00 -07:00
|
|
|
|
|
|
|
// GetClassName is a macro defined by Windows.h, grrr...
|
2015-05-11 22:19:44 -07:00
|
|
|
const char* GetLogClassName(Class log_class) {
|
2014-10-28 00:36:00 -07:00
|
|
|
switch (log_class) {
|
2016-09-17 17:38:01 -07:00
|
|
|
#define CLS(x) \
|
|
|
|
case Class::x: \
|
|
|
|
return #x;
|
|
|
|
#define SUB(x, y) \
|
|
|
|
case Class::x##_##y: \
|
|
|
|
return #x "." #y;
|
2014-10-28 00:36:00 -07:00
|
|
|
ALL_LOG_CLASSES()
|
|
|
|
#undef CLS
|
|
|
|
#undef SUB
|
2016-09-17 17:38:01 -07:00
|
|
|
case Class::Count:
|
|
|
|
UNREACHABLE();
|
2014-10-28 00:36:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-11 22:19:44 -07:00
|
|
|
const char* GetLevelName(Level log_level) {
|
2016-09-17 17:38:01 -07:00
|
|
|
#define LVL(x) \
|
|
|
|
case Level::x: \
|
|
|
|
return #x
|
2014-10-28 00:36:00 -07:00
|
|
|
switch (log_level) {
|
|
|
|
LVL(Trace);
|
|
|
|
LVL(Debug);
|
|
|
|
LVL(Info);
|
|
|
|
LVL(Warning);
|
|
|
|
LVL(Error);
|
|
|
|
LVL(Critical);
|
2016-09-17 17:38:01 -07:00
|
|
|
case Level::Count:
|
|
|
|
UNREACHABLE();
|
2014-10-28 00:36:00 -07:00
|
|
|
}
|
|
|
|
#undef LVL
|
|
|
|
}
|
|
|
|
|
2016-09-17 17:38:01 -07:00
|
|
|
Entry CreateEntry(Class log_class, Level log_level, const char* filename, unsigned int line_nr,
|
2018-03-22 03:21:29 -07:00
|
|
|
const char* function, std::string message) {
|
2014-10-28 00:36:00 -07:00
|
|
|
using std::chrono::duration_cast;
|
2018-01-16 22:09:33 -08:00
|
|
|
using std::chrono::steady_clock;
|
2014-10-28 00:36:00 -07:00
|
|
|
|
|
|
|
static steady_clock::time_point time_origin = steady_clock::now();
|
|
|
|
|
|
|
|
Entry entry;
|
|
|
|
entry.timestamp = duration_cast<std::chrono::microseconds>(steady_clock::now() - time_origin);
|
|
|
|
entry.log_class = log_class;
|
|
|
|
entry.log_level = log_level;
|
2018-03-22 03:21:29 -07:00
|
|
|
entry.filename = Common::TrimSourcePath(filename);
|
|
|
|
entry.line_num = line_nr;
|
|
|
|
entry.function = function;
|
|
|
|
entry.message = std::move(message);
|
2014-10-28 00:36:00 -07:00
|
|
|
|
2016-06-25 11:26:21 -07:00
|
|
|
return entry;
|
2014-10-28 00:36:00 -07:00
|
|
|
}
|
|
|
|
|
2015-05-11 22:19:44 -07:00
|
|
|
static Filter* filter = nullptr;
|
2015-03-06 10:15:02 -08:00
|
|
|
|
|
|
|
void SetFilter(Filter* new_filter) {
|
|
|
|
filter = new_filter;
|
|
|
|
}
|
|
|
|
|
2018-04-05 21:42:09 -07:00
|
|
|
void FmtLogMessageImpl(Class log_class, Level log_level, const char* filename,
|
|
|
|
unsigned int line_num, const char* function, const char* format,
|
|
|
|
const fmt::format_args& args) {
|
2018-03-22 03:21:29 -07:00
|
|
|
if (filter && !filter->CheckMessage(log_class, log_level))
|
|
|
|
return;
|
|
|
|
Entry entry =
|
2018-04-02 19:31:54 -07:00
|
|
|
CreateEntry(log_class, log_level, filename, line_num, function, fmt::vformat(format, args));
|
2014-10-28 00:36:00 -07:00
|
|
|
|
2015-05-11 22:19:44 -07:00
|
|
|
PrintColoredMessage(entry);
|
2014-10-28 00:36:00 -07:00
|
|
|
}
|
2018-01-19 23:48:02 -08:00
|
|
|
} // namespace Log
|