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.
|
|
|
|
|
2018-07-02 17:10:41 +00:00
|
|
|
#include <algorithm>
|
2018-07-20 19:31:25 +00:00
|
|
|
#include <atomic>
|
2018-07-02 17:10:41 +00:00
|
|
|
#include <chrono>
|
2018-07-14 18:47:14 +00:00
|
|
|
#include <climits>
|
2018-07-02 17:10:41 +00:00
|
|
|
#include <condition_variable>
|
|
|
|
#include <memory>
|
2018-07-20 19:31:25 +00:00
|
|
|
#include <mutex>
|
2018-07-02 17:10:41 +00:00
|
|
|
#include <thread>
|
2018-07-20 19:31:25 +00:00
|
|
|
#include <vector>
|
2018-07-02 17:10:41 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <share.h> // For _SH_DENYWR
|
|
|
|
#else
|
|
|
|
#define _SH_DENYWR 0
|
|
|
|
#endif
|
2015-08-02 16:55:31 +00:00
|
|
|
#include "common/assert.h"
|
2016-09-21 06:52:38 +00:00
|
|
|
#include "common/logging/backend.h"
|
2014-10-28 07:36:00 +00:00
|
|
|
#include "common/logging/log.h"
|
|
|
|
#include "common/logging/text_formatter.h"
|
2018-03-22 10:21:29 +00:00
|
|
|
#include "common/string_util.h"
|
2018-07-02 17:10:41 +00:00
|
|
|
#include "common/threadsafe_queue.h"
|
2014-10-28 07:36:00 +00:00
|
|
|
|
|
|
|
namespace Log {
|
|
|
|
|
2018-07-02 17:10:41 +00:00
|
|
|
/**
|
|
|
|
* Static state as a singleton.
|
|
|
|
*/
|
|
|
|
class Impl {
|
|
|
|
public:
|
|
|
|
static Impl& Instance() {
|
|
|
|
static Impl backend;
|
|
|
|
return backend;
|
|
|
|
}
|
|
|
|
|
|
|
|
Impl(Impl const&) = delete;
|
|
|
|
const Impl& operator=(Impl const&) = delete;
|
|
|
|
|
|
|
|
void PushEntry(Entry e) {
|
|
|
|
std::lock_guard<std::mutex> lock(message_mutex);
|
|
|
|
message_queue.Push(std::move(e));
|
|
|
|
message_cv.notify_one();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AddBackend(std::unique_ptr<Backend> backend) {
|
|
|
|
std::lock_guard<std::mutex> lock(writing_mutex);
|
|
|
|
backends.push_back(std::move(backend));
|
|
|
|
}
|
|
|
|
|
2018-07-20 19:27:17 +00:00
|
|
|
void RemoveBackend(std::string_view backend_name) {
|
2018-07-02 17:10:41 +00:00
|
|
|
std::lock_guard<std::mutex> lock(writing_mutex);
|
2018-07-20 19:27:17 +00:00
|
|
|
const auto it =
|
|
|
|
std::remove_if(backends.begin(), backends.end(),
|
|
|
|
[&backend_name](const auto& i) { return backend_name == i->GetName(); });
|
2018-07-02 17:10:41 +00:00
|
|
|
backends.erase(it, backends.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
const Filter& GetGlobalFilter() const {
|
|
|
|
return filter;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetGlobalFilter(const Filter& f) {
|
|
|
|
filter = f;
|
|
|
|
}
|
|
|
|
|
2018-07-20 19:27:17 +00:00
|
|
|
Backend* GetBackend(std::string_view backend_name) {
|
|
|
|
const auto it =
|
|
|
|
std::find_if(backends.begin(), backends.end(),
|
|
|
|
[&backend_name](const auto& i) { return backend_name == i->GetName(); });
|
2018-07-02 17:10:41 +00:00
|
|
|
if (it == backends.end())
|
|
|
|
return nullptr;
|
|
|
|
return it->get();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Impl() {
|
|
|
|
backend_thread = std::thread([&] {
|
|
|
|
Entry entry;
|
|
|
|
auto write_logs = [&](Entry& e) {
|
|
|
|
std::lock_guard<std::mutex> lock(writing_mutex);
|
|
|
|
for (const auto& backend : backends) {
|
|
|
|
backend->Write(e);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
while (true) {
|
2018-07-14 17:57:13 +00:00
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lock(message_mutex);
|
|
|
|
message_cv.wait(lock, [&] { return !running || message_queue.Pop(entry); });
|
|
|
|
}
|
2018-07-02 17:10:41 +00:00
|
|
|
if (!running) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
write_logs(entry);
|
|
|
|
}
|
|
|
|
// Drain the logging queue. Only writes out up to MAX_LOGS_TO_WRITE to prevent a case
|
|
|
|
// where a system is repeatedly spamming logs even on close.
|
2018-07-14 18:47:14 +00:00
|
|
|
const int MAX_LOGS_TO_WRITE = filter.IsDebug() ? INT_MAX : 100;
|
2018-07-02 17:10:41 +00:00
|
|
|
int logs_written = 0;
|
|
|
|
while (logs_written++ < MAX_LOGS_TO_WRITE && message_queue.Pop(entry)) {
|
|
|
|
write_logs(entry);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
~Impl() {
|
|
|
|
running = false;
|
|
|
|
message_cv.notify_one();
|
|
|
|
backend_thread.join();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::atomic_bool running{true};
|
|
|
|
std::mutex message_mutex, writing_mutex;
|
|
|
|
std::condition_variable message_cv;
|
|
|
|
std::thread backend_thread;
|
|
|
|
std::vector<std::unique_ptr<Backend>> backends;
|
|
|
|
Common::MPSCQueue<Log::Entry> message_queue;
|
|
|
|
Filter filter;
|
|
|
|
};
|
|
|
|
|
|
|
|
void ConsoleBackend::Write(const Entry& entry) {
|
|
|
|
PrintMessage(entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ColorConsoleBackend::Write(const Entry& entry) {
|
|
|
|
PrintColoredMessage(entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
// _SH_DENYWR allows read only access to the file for other programs.
|
|
|
|
// It is #defined to 0 on other platforms
|
|
|
|
FileBackend::FileBackend(const std::string& filename)
|
|
|
|
: file(filename, "w", _SH_DENYWR), bytes_written(0) {}
|
|
|
|
|
|
|
|
void FileBackend::Write(const Entry& entry) {
|
|
|
|
// prevent logs from going over the maximum size (in case its spamming and the user doesn't
|
|
|
|
// know)
|
|
|
|
constexpr size_t MAX_BYTES_WRITTEN = 50 * 1024L * 1024L;
|
|
|
|
if (!file.IsOpen() || bytes_written > MAX_BYTES_WRITTEN) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
bytes_written += file.WriteString(FormatLogMessage(entry) + '\n');
|
|
|
|
if (entry.log_level >= Level::Error) {
|
|
|
|
file.Flush();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-28 07:36:00 +00:00
|
|
|
/// Macro listing all log classes. Code should define CLS and SUB as desired before invoking this.
|
2016-09-18 00:38:01 +00:00
|
|
|
#define ALL_LOG_CLASSES() \
|
|
|
|
CLS(Log) \
|
|
|
|
CLS(Common) \
|
|
|
|
SUB(Common, Filesystem) \
|
|
|
|
SUB(Common, Memory) \
|
|
|
|
CLS(Core) \
|
2017-10-23 04:13:12 +00:00
|
|
|
SUB(Core, ARM) \
|
2016-09-18 00:38:01 +00: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 21:40:12 +00:00
|
|
|
SUB(Service, ACC) \
|
2018-02-05 03:55:45 +00:00
|
|
|
SUB(Service, Audio) \
|
2018-02-04 21:58:12 +00:00
|
|
|
SUB(Service, AM) \
|
2018-02-20 07:27:32 +00:00
|
|
|
SUB(Service, AOC) \
|
2018-02-05 03:39:47 +00:00
|
|
|
SUB(Service, APM) \
|
2018-05-28 13:36:38 +00:00
|
|
|
SUB(Service, BCAT) \
|
2018-08-01 19:40:55 +00:00
|
|
|
SUB(Service, BPC) \
|
2018-07-29 00:59:09 +00:00
|
|
|
SUB(Service, BTM) \
|
2018-08-01 20:24:03 +00:00
|
|
|
SUB(Service, Capture) \
|
2018-03-20 13:55:20 +00:00
|
|
|
SUB(Service, Fatal) \
|
2018-07-31 11:20:42 +00:00
|
|
|
SUB(Service, FGM) \
|
2018-02-19 22:31:54 +00:00
|
|
|
SUB(Service, Friend) \
|
2016-09-18 00:38:01 +00:00
|
|
|
SUB(Service, FS) \
|
|
|
|
SUB(Service, HID) \
|
2018-07-27 18:01:17 +00:00
|
|
|
SUB(Service, LBL) \
|
2018-07-26 05:16:08 +00:00
|
|
|
SUB(Service, LDN) \
|
2018-02-05 03:41:55 +00:00
|
|
|
SUB(Service, LM) \
|
2018-07-27 19:39:30 +00:00
|
|
|
SUB(Service, Mii) \
|
2018-06-05 09:19:29 +00:00
|
|
|
SUB(Service, MM) \
|
2018-07-27 21:32:45 +00:00
|
|
|
SUB(Service, NCM) \
|
2018-07-27 18:32:39 +00:00
|
|
|
SUB(Service, NFC) \
|
2018-03-30 01:06:51 +00:00
|
|
|
SUB(Service, NFP) \
|
2018-02-05 03:35:42 +00:00
|
|
|
SUB(Service, NIFM) \
|
2018-02-15 02:43:11 +00:00
|
|
|
SUB(Service, NS) \
|
2018-01-24 04:18:23 +00:00
|
|
|
SUB(Service, NVDRV) \
|
2018-07-31 10:33:38 +00:00
|
|
|
SUB(Service, PCIE) \
|
2018-02-05 03:44:00 +00:00
|
|
|
SUB(Service, PCTL) \
|
2018-08-01 19:40:55 +00:00
|
|
|
SUB(Service, PCV) \
|
2018-04-26 21:19:34 +00:00
|
|
|
SUB(Service, PREPO) \
|
2018-02-05 03:55:45 +00:00
|
|
|
SUB(Service, SET) \
|
|
|
|
SUB(Service, SM) \
|
2018-03-22 06:54:16 +00:00
|
|
|
SUB(Service, SPL) \
|
2018-03-23 06:32:50 +00:00
|
|
|
SUB(Service, SSL) \
|
2018-02-05 03:59:52 +00:00
|
|
|
SUB(Service, Time) \
|
2018-02-05 03:26:44 +00:00
|
|
|
SUB(Service, VI) \
|
2018-07-29 01:20:43 +00:00
|
|
|
SUB(Service, WLAN) \
|
2016-09-18 00:38:01 +00:00
|
|
|
CLS(HW) \
|
|
|
|
SUB(HW, Memory) \
|
|
|
|
SUB(HW, LCD) \
|
|
|
|
SUB(HW, GPU) \
|
2017-01-01 12:58:02 +00:00
|
|
|
SUB(HW, AES) \
|
2018-01-17 06:09:33 +00:00
|
|
|
CLS(IPC) \
|
2016-09-18 00:38:01 +00:00
|
|
|
CLS(Frontend) \
|
|
|
|
CLS(Render) \
|
|
|
|
SUB(Render, Software) \
|
|
|
|
SUB(Render, OpenGL) \
|
|
|
|
CLS(Audio) \
|
|
|
|
SUB(Audio, DSP) \
|
|
|
|
SUB(Audio, Sink) \
|
2017-01-20 19:52:32 +00:00
|
|
|
CLS(Input) \
|
2017-07-07 19:34:15 +00:00
|
|
|
CLS(Network) \
|
2017-06-28 02:29:00 +00:00
|
|
|
CLS(Loader) \
|
|
|
|
CLS(WebService)
|
2014-10-28 07:36:00 +00:00
|
|
|
|
|
|
|
// 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) {
|
2016-09-18 00:38:01 +00:00
|
|
|
#define CLS(x) \
|
|
|
|
case Class::x: \
|
|
|
|
return #x;
|
|
|
|
#define SUB(x, y) \
|
|
|
|
case Class::x##_##y: \
|
|
|
|
return #x "." #y;
|
2014-10-28 07:36:00 +00:00
|
|
|
ALL_LOG_CLASSES()
|
|
|
|
#undef CLS
|
|
|
|
#undef SUB
|
2016-09-18 00:38:01 +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) {
|
2016-09-18 00:38:01 +00:00
|
|
|
#define LVL(x) \
|
|
|
|
case Level::x: \
|
|
|
|
return #x
|
2014-10-28 07:36:00 +00:00
|
|
|
switch (log_level) {
|
|
|
|
LVL(Trace);
|
|
|
|
LVL(Debug);
|
|
|
|
LVL(Info);
|
|
|
|
LVL(Warning);
|
|
|
|
LVL(Error);
|
|
|
|
LVL(Critical);
|
2016-09-18 00:38:01 +00:00
|
|
|
case Level::Count:
|
|
|
|
UNREACHABLE();
|
2014-10-28 07:36:00 +00:00
|
|
|
}
|
|
|
|
#undef LVL
|
|
|
|
}
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
Entry CreateEntry(Class log_class, Level log_level, const char* filename, unsigned int line_nr,
|
2018-03-22 10:21:29 +00:00
|
|
|
const char* function, std::string message) {
|
2014-10-28 07:36:00 +00:00
|
|
|
using std::chrono::duration_cast;
|
2018-01-17 06:09:33 +00:00
|
|
|
using std::chrono::steady_clock;
|
2014-10-28 07:36:00 +00: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 10:21:29 +00:00
|
|
|
entry.filename = Common::TrimSourcePath(filename);
|
|
|
|
entry.line_num = line_nr;
|
|
|
|
entry.function = function;
|
|
|
|
entry.message = std::move(message);
|
2014-10-28 07:36:00 +00:00
|
|
|
|
2016-06-25 18:26:21 +00:00
|
|
|
return entry;
|
2014-10-28 07:36:00 +00:00
|
|
|
}
|
|
|
|
|
2018-07-02 17:10:41 +00:00
|
|
|
void SetGlobalFilter(const Filter& filter) {
|
|
|
|
Impl::Instance().SetGlobalFilter(filter);
|
|
|
|
}
|
|
|
|
|
|
|
|
void AddBackend(std::unique_ptr<Backend> backend) {
|
|
|
|
Impl::Instance().AddBackend(std::move(backend));
|
|
|
|
}
|
2015-03-06 18:15:02 +00:00
|
|
|
|
2018-07-20 19:27:17 +00:00
|
|
|
void RemoveBackend(std::string_view backend_name) {
|
2018-07-02 17:10:41 +00:00
|
|
|
Impl::Instance().RemoveBackend(backend_name);
|
|
|
|
}
|
|
|
|
|
2018-07-20 19:27:17 +00:00
|
|
|
Backend* GetBackend(std::string_view backend_name) {
|
2018-07-02 17:10:41 +00:00
|
|
|
return Impl::Instance().GetBackend(backend_name);
|
2015-03-06 18:15:02 +00:00
|
|
|
}
|
|
|
|
|
2018-04-06 04:42:09 +00: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-07-02 17:10:41 +00:00
|
|
|
auto filter = Impl::Instance().GetGlobalFilter();
|
|
|
|
if (!filter.CheckMessage(log_class, log_level))
|
2018-03-22 10:21:29 +00:00
|
|
|
return;
|
2018-07-02 17:10:41 +00:00
|
|
|
|
2018-03-22 10:21:29 +00:00
|
|
|
Entry entry =
|
2018-04-03 02:31:54 +00:00
|
|
|
CreateEntry(log_class, log_level, filename, line_num, function, fmt::vformat(format, args));
|
2014-10-28 07:36:00 +00:00
|
|
|
|
2018-07-02 17:10:41 +00:00
|
|
|
Impl::Instance().PushEntry(std::move(entry));
|
2014-10-28 07:36:00 +00:00
|
|
|
}
|
2018-07-14 17:57:13 +00:00
|
|
|
} // namespace Log
|