mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-11-30 05:53:01 +00:00
c81abdde4c
* add unhandled exception handler * added file logging * add option in config * consolidated console and file log
140 lines
3.9 KiB
C#
140 lines
3.9 KiB
C#
using Ryujinx.Common.Logging;
|
|
using System;
|
|
using System.Collections.Concurrent;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
using System.Text;
|
|
using System.Threading;
|
|
|
|
namespace Ryujinx
|
|
{
|
|
static class Log
|
|
{
|
|
private static readonly string _path;
|
|
|
|
private static StreamWriter _logWriter;
|
|
|
|
private static Thread _messageThread;
|
|
|
|
private static BlockingCollection<LogEventArgs> _messageQueue;
|
|
|
|
private static Dictionary<LogLevel, ConsoleColor> _logColors;
|
|
|
|
static Log()
|
|
{
|
|
_logColors = new Dictionary<LogLevel, ConsoleColor>()
|
|
{
|
|
{ LogLevel.Stub, ConsoleColor.DarkGray },
|
|
{ LogLevel.Info, ConsoleColor.White },
|
|
{ LogLevel.Warning, ConsoleColor.Yellow },
|
|
{ LogLevel.Error, ConsoleColor.Red }
|
|
};
|
|
|
|
_messageQueue = new BlockingCollection<LogEventArgs>(10);
|
|
|
|
_messageThread = new Thread(() =>
|
|
{
|
|
while (!_messageQueue.IsCompleted)
|
|
{
|
|
try
|
|
{
|
|
PrintLog(_messageQueue.Take());
|
|
}
|
|
catch (InvalidOperationException)
|
|
{
|
|
// IOE means that Take() was called on a completed collection.
|
|
// Some other thread can call CompleteAdding after we pass the
|
|
// IsCompleted check but before we call Take.
|
|
// We can simply catch the exception since the loop will break
|
|
// on the next iteration.
|
|
}
|
|
}
|
|
});
|
|
|
|
_path = Path.Combine(Environment.CurrentDirectory, "Ryujinx.log");
|
|
|
|
if (Logger.EnableFileLog)
|
|
{
|
|
_logWriter = new StreamWriter(File.Open(_path,FileMode.Create, FileAccess.Write));
|
|
}
|
|
|
|
_messageThread.IsBackground = true;
|
|
_messageThread.Start();
|
|
}
|
|
|
|
private static void PrintLog(LogEventArgs e)
|
|
{
|
|
StringBuilder sb = new StringBuilder();
|
|
|
|
sb.AppendFormat(@"{0:hh\:mm\:ss\.fff}", e.Time);
|
|
sb.Append(" | ");
|
|
sb.AppendFormat("{0:d4}", e.ThreadId);
|
|
sb.Append(' ');
|
|
sb.Append(e.Message);
|
|
|
|
if (e.Data != null)
|
|
{
|
|
PropertyInfo[] props = e.Data.GetType().GetProperties();
|
|
|
|
sb.Append(' ');
|
|
|
|
foreach (var prop in props)
|
|
{
|
|
sb.Append(prop.Name);
|
|
sb.Append(": ");
|
|
sb.Append(prop.GetValue(e.Data));
|
|
sb.Append(" - ");
|
|
}
|
|
|
|
// We remove the final '-' from the string
|
|
if (props.Length > 0)
|
|
{
|
|
sb.Remove(sb.Length - 3, 3);
|
|
}
|
|
}
|
|
|
|
string message = sb.ToString();
|
|
|
|
if (_logColors.TryGetValue(e.Level, out ConsoleColor color))
|
|
{
|
|
Console.ForegroundColor = color;
|
|
|
|
Console.WriteLine(message);
|
|
|
|
Console.ResetColor();
|
|
}
|
|
else
|
|
{
|
|
Console.WriteLine(message);
|
|
}
|
|
|
|
if (Logger.EnableFileLog)
|
|
{
|
|
_logWriter.WriteLine(message);
|
|
}
|
|
}
|
|
|
|
public static void LogMessage(object sender, LogEventArgs e)
|
|
{
|
|
if (!_messageQueue.IsAddingCompleted)
|
|
{
|
|
_messageQueue.Add(e);
|
|
}
|
|
}
|
|
|
|
public static void Close()
|
|
{
|
|
_messageQueue.CompleteAdding();
|
|
|
|
_messageThread.Join();
|
|
|
|
if (Logger.EnableFileLog)
|
|
{
|
|
_logWriter.Flush();
|
|
_logWriter.Close();
|
|
_logWriter.Dispose();
|
|
}
|
|
}
|
|
}
|
|
}
|