mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
83 lines
2.5 KiB
C#
83 lines
2.5 KiB
C#
using System;
|
|
using System.Collections.ObjectModel;
|
|
using System.ComponentModel;
|
|
using System.Windows;
|
|
using BililiveRecorder.Core;
|
|
using Serilog.Core;
|
|
using Serilog.Events;
|
|
|
|
#nullable enable
|
|
namespace BililiveRecorder.WPF
|
|
{
|
|
internal class WpfLogEventSink : ILogEventSink
|
|
{
|
|
private const int MAX_LINE = 60;
|
|
internal static object _lock = new object();
|
|
internal static ObservableCollection<LogModel> Logs = new ObservableCollection<LogModel>();
|
|
|
|
public WpfLogEventSink() { }
|
|
|
|
public void Emit(LogEvent logEvent)
|
|
{
|
|
var msg = logEvent.RenderMessage();
|
|
if (logEvent.Exception != null)
|
|
msg += " " + logEvent.Exception.Message;
|
|
|
|
var m = new LogModel
|
|
{
|
|
Timestamp = logEvent.Timestamp,
|
|
Level = logEvent.Level switch
|
|
{
|
|
LogEventLevel.Verbose => "Verbose",
|
|
LogEventLevel.Debug => "Debug",
|
|
LogEventLevel.Information => "Info",
|
|
LogEventLevel.Warning => "Warn",
|
|
LogEventLevel.Error => "Error",
|
|
LogEventLevel.Fatal => "Fatal",
|
|
_ => string.Empty,
|
|
},
|
|
Message = msg,
|
|
};
|
|
|
|
if (logEvent.Properties.TryGetValue(LoggingContext.RoomId, out var propertyValue)
|
|
&& propertyValue is ScalarValue scalarValue
|
|
&& scalarValue.Value is int roomid)
|
|
{
|
|
m.RoomId = roomid.ToString();
|
|
}
|
|
|
|
var current = Application.Current;
|
|
if (current is null)
|
|
lock (_lock)
|
|
this.AddLogToCollection(m);
|
|
else
|
|
_ = current.Dispatcher.BeginInvoke((Action<LogModel>)this.AddLogToCollection, m);
|
|
}
|
|
|
|
private void AddLogToCollection(LogModel model)
|
|
{
|
|
try
|
|
{
|
|
Logs.Add(model);
|
|
while (Logs.Count > MAX_LINE)
|
|
Logs.RemoveAt(0);
|
|
}
|
|
catch (Exception) { }
|
|
}
|
|
|
|
public class LogModel : INotifyPropertyChanged
|
|
{
|
|
public DateTimeOffset Timestamp { get; set; }
|
|
|
|
public string Level { get; set; } = string.Empty;
|
|
|
|
public string RoomId { get; set; } = string.Empty;
|
|
|
|
public string Message { get; set; } = string.Empty;
|
|
#pragma warning disable CS0067
|
|
public event PropertyChangedEventHandler? PropertyChanged;
|
|
#pragma warning restore CS0067
|
|
}
|
|
}
|
|
}
|