2014-10-28 07:36:00 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-10-28 07:36:00 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <algorithm>
|
2015-05-12 05:19:44 +00:00
|
|
|
#include <array>
|
|
|
|
#include <cstdio>
|
2014-10-28 07:36:00 +00:00
|
|
|
|
2015-08-02 16:55:31 +00:00
|
|
|
#include "common/assert.h"
|
2015-05-12 05:19:44 +00:00
|
|
|
#include "common/common_funcs.h" // snprintf compatibility define
|
2014-10-28 07:36:00 +00:00
|
|
|
#include "common/logging/backend.h"
|
2015-05-12 05:19:44 +00:00
|
|
|
#include "common/logging/filter.h"
|
2014-10-28 07:36:00 +00: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.
|
|
|
|
#define ALL_LOG_CLASSES() \
|
|
|
|
CLS(Log) \
|
|
|
|
CLS(Common) \
|
|
|
|
SUB(Common, Filesystem) \
|
|
|
|
SUB(Common, Memory) \
|
|
|
|
CLS(Core) \
|
|
|
|
SUB(Core, ARM11) \
|
2015-01-06 01:17:49 +00:00
|
|
|
SUB(Core, Timing) \
|
2014-10-28 07:36:00 +00:00
|
|
|
CLS(Config) \
|
|
|
|
CLS(Debug) \
|
|
|
|
SUB(Debug, Emulated) \
|
|
|
|
SUB(Debug, GPU) \
|
|
|
|
SUB(Debug, Breakpoint) \
|
2015-09-02 12:56:38 +00:00
|
|
|
SUB(Debug, GDBStub) \
|
2014-10-28 07:36:00 +00:00
|
|
|
CLS(Kernel) \
|
|
|
|
SUB(Kernel, SVC) \
|
|
|
|
CLS(Service) \
|
|
|
|
SUB(Service, SRV) \
|
2016-03-01 17:41:40 +00:00
|
|
|
SUB(Service, FRD) \
|
2014-10-28 07:36:00 +00:00
|
|
|
SUB(Service, FS) \
|
2015-02-17 23:15:04 +00:00
|
|
|
SUB(Service, ERR) \
|
2014-10-28 07:36:00 +00:00
|
|
|
SUB(Service, APT) \
|
|
|
|
SUB(Service, GSP) \
|
|
|
|
SUB(Service, AC) \
|
2015-06-11 22:12:16 +00:00
|
|
|
SUB(Service, AM) \
|
2014-10-28 07:36:00 +00:00
|
|
|
SUB(Service, PTM) \
|
2015-02-13 01:46:11 +00:00
|
|
|
SUB(Service, LDR) \
|
2016-02-14 11:53:32 +00:00
|
|
|
SUB(Service, NDM) \
|
2015-03-08 01:54:16 +00:00
|
|
|
SUB(Service, NIM) \
|
|
|
|
SUB(Service, NWM) \
|
2015-11-23 22:17:28 +00:00
|
|
|
SUB(Service, CAM) \
|
2016-03-31 09:21:02 +00:00
|
|
|
SUB(Service, CECD) \
|
2014-10-28 07:36:00 +00:00
|
|
|
SUB(Service, CFG) \
|
|
|
|
SUB(Service, DSP) \
|
2016-04-02 21:05:20 +00:00
|
|
|
SUB(Service, DLP) \
|
2014-10-28 07:36:00 +00:00
|
|
|
SUB(Service, HID) \
|
2014-12-09 04:52:27 +00:00
|
|
|
SUB(Service, SOC) \
|
2016-02-21 11:48:28 +00:00
|
|
|
SUB(Service, IR) \
|
2015-05-22 02:27:48 +00:00
|
|
|
SUB(Service, Y2R) \
|
2014-10-28 07:36:00 +00:00
|
|
|
CLS(HW) \
|
|
|
|
SUB(HW, Memory) \
|
2014-10-13 05:40:26 +00:00
|
|
|
SUB(HW, LCD) \
|
2014-10-28 07:36:00 +00:00
|
|
|
SUB(HW, GPU) \
|
|
|
|
CLS(Frontend) \
|
|
|
|
CLS(Render) \
|
|
|
|
SUB(Render, Software) \
|
|
|
|
SUB(Render, OpenGL) \
|
2016-02-21 13:13:52 +00:00
|
|
|
CLS(Audio) \
|
|
|
|
SUB(Audio, DSP) \
|
2016-04-27 09:57:29 +00:00
|
|
|
SUB(Audio, Sink) \
|
2014-10-28 07:36:00 +00:00
|
|
|
CLS(Loader)
|
|
|
|
|
|
|
|
// GetClassName is a macro defined by Windows.h, grrr...
|
2015-05-12 05:19:44 +00:00
|
|
|
const char* GetLogClassName(Class log_class) {
|
2014-10-28 07:36:00 +00:00
|
|
|
switch (log_class) {
|
|
|
|
#define CLS(x) case Class::x: return #x;
|
|
|
|
#define SUB(x, y) case Class::x##_##y: return #x "." #y;
|
|
|
|
ALL_LOG_CLASSES()
|
|
|
|
#undef CLS
|
|
|
|
#undef SUB
|
2015-08-15 19:39:45 +00:00
|
|
|
case Class::Count:
|
|
|
|
UNREACHABLE();
|
2014-10-28 07:36:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-12 05:19:44 +00:00
|
|
|
const char* GetLevelName(Level log_level) {
|
2014-10-28 07:36:00 +00:00
|
|
|
#define LVL(x) case Level::x: return #x
|
|
|
|
switch (log_level) {
|
|
|
|
LVL(Trace);
|
|
|
|
LVL(Debug);
|
|
|
|
LVL(Info);
|
|
|
|
LVL(Warning);
|
|
|
|
LVL(Error);
|
|
|
|
LVL(Critical);
|
2015-08-02 16:55:31 +00:00
|
|
|
case Level::Count:
|
2015-08-02 22:30:24 +00:00
|
|
|
UNREACHABLE();
|
2014-10-28 07:36:00 +00:00
|
|
|
}
|
|
|
|
#undef LVL
|
|
|
|
}
|
|
|
|
|
|
|
|
Entry CreateEntry(Class log_class, Level log_level,
|
|
|
|
const char* filename, unsigned int line_nr, const char* function,
|
|
|
|
const char* format, va_list args) {
|
|
|
|
using std::chrono::steady_clock;
|
|
|
|
using std::chrono::duration_cast;
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
snprintf(formatting_buffer.data(), formatting_buffer.size(), "%s:%s:%u", filename, function, line_nr);
|
|
|
|
entry.location = std::string(formatting_buffer.data());
|
|
|
|
|
|
|
|
vsnprintf(formatting_buffer.data(), formatting_buffer.size(), format, args);
|
|
|
|
entry.message = std::string(formatting_buffer.data());
|
|
|
|
|
|
|
|
return std::move(entry);
|
|
|
|
}
|
|
|
|
|
2015-05-12 05:19:44 +00:00
|
|
|
static Filter* filter = nullptr;
|
2015-03-06 18:15:02 +00:00
|
|
|
|
|
|
|
void SetFilter(Filter* new_filter) {
|
|
|
|
filter = new_filter;
|
|
|
|
}
|
|
|
|
|
2014-10-28 07:36:00 +00: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 05:19:44 +00:00
|
|
|
if (filter != nullptr && !filter->CheckMessage(log_class, log_level))
|
2015-03-06 18:15:02 +00:00
|
|
|
return;
|
|
|
|
|
2014-10-28 07:36:00 +00:00
|
|
|
va_list args;
|
|
|
|
va_start(args, format);
|
|
|
|
Entry entry = CreateEntry(log_class, log_level,
|
|
|
|
filename, line_nr, function, format, args);
|
|
|
|
va_end(args);
|
|
|
|
|
2015-05-12 05:19:44 +00:00
|
|
|
PrintColoredMessage(entry);
|
2014-10-28 07:36:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|