mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
* Add event-based LogMonitor state changes to better handle batch reads Pre-reading hackily used read-all to suppress notifications. But that broke some assumptions about what read-all meant. Furthermore, the Core UI told plugins about read-all rather than the log monitor telling them -- which is really what should be telling them. To address these concerns, LogMonitor now provides an event that both the PluginCore and PluginEventHandler listens to or tracking logging state allowing more granular information about the activities of LogMonitor, including distinguishing between ReadAll and Pre-read batches. Plugins no longer need to track if LogMonitor is in batch-read mode or not -- PluginCore now provides it. I've also converted all built-in plugins to use the new event-based system. The old system is marked deprecated and will go away once other known contributed plugins have converted to the new system. * Change LogMonitorState enum to [Flags], drop 'None' state As requested, and did associated simplifications and cleanup that followed.
156 lines
5.1 KiB
C#
156 lines
5.1 KiB
C#
using Observatory.Framework;
|
|
using Observatory.Framework.Files;
|
|
using Observatory.Framework.Interfaces;
|
|
using Observatory.NativeNotification;
|
|
using System;
|
|
|
|
namespace Observatory.PluginManagement
|
|
{
|
|
public class PluginCore : IObservatoryCore
|
|
{
|
|
|
|
private readonly NativeVoice NativeVoice;
|
|
private readonly NativePopup NativePopup;
|
|
private LogMonitorState currentLogMonitorState = LogMonitorState.Idle;
|
|
|
|
public PluginCore()
|
|
{
|
|
NativeVoice = new();
|
|
NativePopup = new();
|
|
}
|
|
|
|
internal void OnLogMonitorStateChanged(object sender, LogMonitorStateChangedEventArgs e)
|
|
{
|
|
currentLogMonitorState = e.NewState;
|
|
}
|
|
|
|
public string Version => System.Reflection.Assembly.GetEntryAssembly().GetName().Version.ToString();
|
|
|
|
public Status GetStatus()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Guid SendNotification(string title, string text)
|
|
{
|
|
return SendNotification(new NotificationArgs() { Title = title, Detail = text });
|
|
}
|
|
|
|
public Guid SendNotification(NotificationArgs notificationArgs)
|
|
{
|
|
var guid = Guid.Empty;
|
|
|
|
if (!IsLogMonitorBatchReading)
|
|
{
|
|
if (notificationArgs.Rendering.HasFlag(NotificationRendering.PluginNotifier))
|
|
{
|
|
var handler = Notification;
|
|
handler?.Invoke(this, notificationArgs);
|
|
}
|
|
|
|
if (Properties.Core.Default.NativeNotify && notificationArgs.Rendering.HasFlag(NotificationRendering.NativeVisual))
|
|
{
|
|
guid = NativePopup.InvokeNativeNotification(notificationArgs);
|
|
}
|
|
|
|
if (Properties.Core.Default.VoiceNotify && notificationArgs.Rendering.HasFlag(NotificationRendering.NativeVocal))
|
|
{
|
|
NativeVoice.EnqueueAndAnnounce(notificationArgs);
|
|
}
|
|
}
|
|
|
|
return guid;
|
|
}
|
|
|
|
public void CancelNotification(Guid id)
|
|
{
|
|
NativePopup.CloseNotification(id);
|
|
}
|
|
|
|
public void UpdateNotification(Guid id, NotificationArgs notificationArgs)
|
|
{
|
|
if (!IsLogMonitorBatchReading)
|
|
{
|
|
|
|
if (notificationArgs.Rendering.HasFlag(NotificationRendering.PluginNotifier))
|
|
{
|
|
var handler = Notification;
|
|
handler?.Invoke(this, notificationArgs);
|
|
}
|
|
|
|
if (notificationArgs.Rendering.HasFlag(NotificationRendering.NativeVisual))
|
|
NativePopup.UpdateNotification(id, notificationArgs);
|
|
|
|
if (Properties.Core.Default.VoiceNotify && notificationArgs.Rendering.HasFlag(NotificationRendering.NativeVocal))
|
|
{
|
|
NativeVoice.EnqueueAndAnnounce(notificationArgs);
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds an item to the datagrid on UI thread to ensure visual update.
|
|
/// </summary>
|
|
/// <param name="worker"></param>
|
|
/// <param name="item"></param>
|
|
public void AddGridItem(IObservatoryWorker worker, object item)
|
|
{
|
|
Avalonia.Threading.Dispatcher.UIThread.InvokeAsync(() =>
|
|
{
|
|
worker.PluginUI.DataGrid.Add(item);
|
|
|
|
//Hacky removal of original empty object if one was used to populate columns
|
|
if (worker.PluginUI.DataGrid.Count == 2)
|
|
{
|
|
bool allNull = true;
|
|
Type itemType = worker.PluginUI.DataGrid[0].GetType();
|
|
foreach (var property in itemType.GetProperties())
|
|
{
|
|
if (property.GetValue(worker.PluginUI.DataGrid[0], null) != null)
|
|
{
|
|
allNull = false;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (allNull)
|
|
worker.PluginUI.DataGrid.RemoveAt(0);
|
|
}
|
|
|
|
});
|
|
}
|
|
|
|
public void ClearGrid(IObservatoryWorker worker, object templateItem)
|
|
{
|
|
Avalonia.Threading.Dispatcher.UIThread.InvokeAsync(() =>
|
|
{
|
|
worker.PluginUI.DataGrid.Add(templateItem);
|
|
while (worker.PluginUI.DataGrid.Count > 1)
|
|
worker.PluginUI.DataGrid.RemoveAt(0);
|
|
});
|
|
}
|
|
|
|
public void ExecuteOnUIThread(Action action)
|
|
{
|
|
Avalonia.Threading.Dispatcher.UIThread.InvokeAsync(action);
|
|
}
|
|
|
|
public System.Net.Http.HttpClient HttpClient
|
|
{
|
|
get => Observatory.HttpClient.Client;
|
|
}
|
|
|
|
public LogMonitorState CurrentLogMonitorState
|
|
{
|
|
get => currentLogMonitorState;
|
|
}
|
|
|
|
public bool IsLogMonitorBatchReading
|
|
{
|
|
get => LogMonitorStateChangedEventArgs.IsBatchRead(currentLogMonitorState);
|
|
}
|
|
|
|
public event EventHandler<NotificationArgs> Notification;
|
|
}
|
|
}
|