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