mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 01:18:34 +00:00
d306115750
* Logging: Refactor log targets into Ryujinx.Common * Logger: Implement JSON Log Target * Logger: Optimize Console/File logging targets Implement a simple ObjectPool to pool up StringBuilders to avoid causing excessive GCing of gen1/2 items when large amounts of log entries are being generated. We can also pre-determine the async overflow action at initialization time, allowing for an easy optimization in the message enqueue function, avoiding a number of comparisons. * Logger: Implement LogFormatters * Config: Refactor configuration file and loading * Config: Rename to .jsonc to avoid highlighting issues in VSC and GitHub * Resolve style nits * Config: Resolve incorrect default key binding * Config: Also update key binding default in schema * Tidy up namespace imports * Config: Update CONFIG.md to reflect new Config file
125 lines
4.3 KiB
C#
125 lines
4.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Threading;
|
|
|
|
namespace Ryujinx.Common.Logging
|
|
{
|
|
public static class Logger
|
|
{
|
|
private static Stopwatch m_Time;
|
|
|
|
private static readonly bool[] m_EnabledLevels;
|
|
private static readonly bool[] m_EnabledClasses;
|
|
|
|
private static readonly List<ILogTarget> m_LogTargets;
|
|
|
|
public static event EventHandler<LogEventArgs> Updated;
|
|
|
|
static Logger()
|
|
{
|
|
m_EnabledLevels = new bool[Enum.GetNames(typeof(LogLevel)).Length];
|
|
m_EnabledClasses = new bool[Enum.GetNames(typeof(LogClass)).Length];
|
|
|
|
m_EnabledLevels[(int)LogLevel.Stub] = true;
|
|
m_EnabledLevels[(int)LogLevel.Info] = true;
|
|
m_EnabledLevels[(int)LogLevel.Warning] = true;
|
|
m_EnabledLevels[(int)LogLevel.Error] = true;
|
|
|
|
for (int index = 0; index < m_EnabledClasses.Length; index++)
|
|
{
|
|
m_EnabledClasses[index] = true;
|
|
}
|
|
|
|
m_LogTargets = new List<ILogTarget>();
|
|
|
|
m_Time = Stopwatch.StartNew();
|
|
}
|
|
|
|
public static void AddTarget(ILogTarget target)
|
|
{
|
|
m_LogTargets.Add(target);
|
|
|
|
Updated += target.Log;
|
|
}
|
|
|
|
public static void Shutdown()
|
|
{
|
|
Updated = null;
|
|
|
|
foreach(var target in m_LogTargets)
|
|
{
|
|
target.Dispose();
|
|
}
|
|
|
|
m_LogTargets.Clear();
|
|
}
|
|
|
|
public static void SetEnable(LogLevel logLevel, bool enabled)
|
|
{
|
|
m_EnabledLevels[(int)logLevel] = enabled;
|
|
}
|
|
|
|
public static void SetEnable(LogClass logClass, bool enabled)
|
|
{
|
|
m_EnabledClasses[(int)logClass] = enabled;
|
|
}
|
|
|
|
public static void PrintDebug(LogClass logClass, string message, [CallerMemberName] string caller = "")
|
|
{
|
|
Print(LogLevel.Debug, logClass, GetFormattedMessage(logClass, message, caller));
|
|
}
|
|
|
|
public static void PrintInfo(LogClass logClass, string message, [CallerMemberName] string Caller = "")
|
|
{
|
|
Print(LogLevel.Info, logClass, GetFormattedMessage(logClass, message, Caller));
|
|
}
|
|
|
|
public static void PrintWarning(LogClass logClass, string message, [CallerMemberName] string Caller = "")
|
|
{
|
|
Print(LogLevel.Warning, logClass, GetFormattedMessage(logClass, message, Caller));
|
|
}
|
|
|
|
public static void PrintError(LogClass logClass, string message, [CallerMemberName] string Caller = "")
|
|
{
|
|
Print(LogLevel.Error, logClass, GetFormattedMessage(logClass, message, Caller));
|
|
}
|
|
|
|
public static void PrintStub(LogClass logClass, string message = "", [CallerMemberName] string caller = "")
|
|
{
|
|
Print(LogLevel.Stub, logClass, GetFormattedMessage(logClass, "Stubbed. " + message, caller));
|
|
}
|
|
|
|
public static void PrintStub<T>(LogClass logClass, T obj, [CallerMemberName] string caller = "")
|
|
{
|
|
Print(LogLevel.Stub, logClass, GetFormattedMessage(logClass, "Stubbed.", caller), obj);
|
|
}
|
|
|
|
public static void PrintStub<T>(LogClass logClass, string message, T obj, [CallerMemberName] string caller = "")
|
|
{
|
|
Print(LogLevel.Stub, logClass, GetFormattedMessage(logClass, "Stubbed. " + message, caller), obj);
|
|
}
|
|
|
|
private static void Print(LogLevel logLevel, LogClass logClass, string message)
|
|
{
|
|
if (m_EnabledLevels[(int)logLevel] && m_EnabledClasses[(int)logClass])
|
|
{
|
|
Updated?.Invoke(null, new LogEventArgs(logLevel, m_Time.Elapsed, Thread.CurrentThread.ManagedThreadId, message));
|
|
}
|
|
}
|
|
|
|
private static void Print(LogLevel logLevel, LogClass logClass, string message, object data)
|
|
{
|
|
if (m_EnabledLevels[(int)logLevel] && m_EnabledClasses[(int)logClass])
|
|
{
|
|
Updated?.Invoke(null, new LogEventArgs(logLevel, m_Time.Elapsed, Thread.CurrentThread.ManagedThreadId, message, data));
|
|
}
|
|
}
|
|
|
|
private static string GetFormattedMessage(LogClass Class, string Message, string Caller)
|
|
{
|
|
return $"{Class} {Caller}: {Message}";
|
|
}
|
|
}
|
|
} |