mirror of
https://github.com/2dust/v2rayN.git
synced 2025-10-13 11:59:13 +00:00
118 lines
2.9 KiB
C#
118 lines
2.9 KiB
C#
using System.Collections.Concurrent;
|
|
using System.Reactive.Linq;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
using ReactiveUI;
|
|
using ReactiveUI.Fody.Helpers;
|
|
|
|
namespace ServiceLib.ViewModels;
|
|
|
|
public class MsgViewModel : MyReactiveObject
|
|
{
|
|
private readonly ConcurrentQueue<string> _queueMsg = new();
|
|
private volatile bool _lastMsgFilterNotAvailable;
|
|
private int _showLock = 0; // 0 = unlocked, 1 = locked
|
|
public int NumMaxMsg { get; } = 500;
|
|
|
|
[Reactive]
|
|
public string MsgFilter { get; set; }
|
|
|
|
[Reactive]
|
|
public bool AutoRefresh { get; set; }
|
|
|
|
public MsgViewModel(Func<EViewAction, object?, Task<bool>>? updateView)
|
|
{
|
|
_config = AppManager.Instance.Config;
|
|
_updateView = updateView;
|
|
MsgFilter = _config.MsgUIItem.MainMsgFilter ?? string.Empty;
|
|
AutoRefresh = _config.MsgUIItem.AutoRefresh ?? true;
|
|
|
|
this.WhenAnyValue(
|
|
x => x.MsgFilter)
|
|
.Subscribe(c => DoMsgFilter());
|
|
|
|
this.WhenAnyValue(
|
|
x => x.AutoRefresh,
|
|
y => y == true)
|
|
.Subscribe(c => _config.MsgUIItem.AutoRefresh = AutoRefresh);
|
|
|
|
AppEvents.SendMsgViewRequested
|
|
.AsObservable()
|
|
//.ObserveOn(RxApp.MainThreadScheduler)
|
|
.Subscribe(content => _ = AppendQueueMsg(content));
|
|
}
|
|
|
|
private async Task AppendQueueMsg(string msg)
|
|
{
|
|
if (AutoRefresh == false)
|
|
{
|
|
return;
|
|
}
|
|
|
|
EnqueueQueueMsg(msg);
|
|
|
|
if (!_config.UiItem.ShowInTaskbar)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (Interlocked.CompareExchange(ref _showLock, 1, 0) != 0)
|
|
{
|
|
return;
|
|
}
|
|
|
|
try
|
|
{
|
|
await Task.Delay(500).ConfigureAwait(false);
|
|
|
|
var sb = new StringBuilder();
|
|
while (_queueMsg.TryDequeue(out var line))
|
|
{
|
|
sb.Append(line);
|
|
}
|
|
|
|
await _updateView?.Invoke(EViewAction.DispatcherShowMsg, sb.ToString());
|
|
}
|
|
finally
|
|
{
|
|
Interlocked.Exchange(ref _showLock, 0);
|
|
}
|
|
}
|
|
|
|
private void EnqueueQueueMsg(string msg)
|
|
{
|
|
//filter msg
|
|
if (MsgFilter.IsNotEmpty() && !_lastMsgFilterNotAvailable)
|
|
{
|
|
try
|
|
{
|
|
if (!Regex.IsMatch(msg, MsgFilter))
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_queueMsg.Enqueue(ex.Message);
|
|
_lastMsgFilterNotAvailable = true;
|
|
}
|
|
}
|
|
|
|
_queueMsg.Enqueue(msg);
|
|
if (!msg.EndsWith(Environment.NewLine))
|
|
{
|
|
_queueMsg.Enqueue(Environment.NewLine);
|
|
}
|
|
}
|
|
|
|
//public void ClearMsg()
|
|
//{
|
|
// _queueMsg.Clear();
|
|
//}
|
|
|
|
private void DoMsgFilter()
|
|
{
|
|
_config.MsgUIItem.MainMsgFilter = MsgFilter;
|
|
_lastMsgFilterNotAvailable = false;
|
|
}
|
|
}
|