mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-26 20:26:00 +08:00
68 lines
2.0 KiB
C#
68 lines
2.0 KiB
C#
using System;
|
|
using System.Collections.ObjectModel;
|
|
using System.Windows;
|
|
using System.Windows.Threading;
|
|
|
|
namespace BililiveRecorder.WPF.Models
|
|
{
|
|
internal class LogModel : ObservableCollection<string>, IDisposable
|
|
{
|
|
private const int MAX_LINE = 50;
|
|
|
|
private bool disposedValue;
|
|
|
|
public static void AddLog(string log) => LogReceived?.Invoke(null, log);
|
|
public static event EventHandler<string> LogReceived;
|
|
|
|
public LogModel() : base(new[] { "" })
|
|
{
|
|
LogReceived += this.LogModel_LogReceived;
|
|
}
|
|
|
|
private void LogModel_LogReceived(object sender, string e)
|
|
{
|
|
_ = Application.Current.Dispatcher.BeginInvoke(DispatcherPriority.DataBind, (Action<string>)this.AddLogToCollection, e);
|
|
}
|
|
|
|
private void AddLogToCollection(string e)
|
|
{
|
|
this.Add(e);
|
|
while (this.Count > MAX_LINE)
|
|
{
|
|
this.RemoveItem(0);
|
|
}
|
|
}
|
|
|
|
protected virtual void Dispose(bool disposing)
|
|
{
|
|
if (!this.disposedValue)
|
|
{
|
|
if (disposing)
|
|
{
|
|
// dispose managed state (managed objects)
|
|
LogReceived -= this.LogModel_LogReceived;
|
|
this.ClearItems();
|
|
}
|
|
|
|
// free unmanaged resources (unmanaged objects) and override finalizer
|
|
// set large fields to null
|
|
this.disposedValue = true;
|
|
}
|
|
}
|
|
|
|
// override finalizer only if 'Dispose(bool disposing)' has code to free unmanaged resources
|
|
// ~LogModel()
|
|
// {
|
|
// // Do not change this code. Put cleanup code in 'Dispose(bool disposing)' method
|
|
// Dispose(disposing: false);
|
|
// }
|
|
|
|
public void Dispose()
|
|
{
|
|
// Do not change this code. Put cleanup code in 'Dispose(bool disposing)' method
|
|
this.Dispose(disposing: true);
|
|
GC.SuppressFinalize(this);
|
|
}
|
|
}
|
|
}
|