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.
120 lines
3.7 KiB
C#
120 lines
3.7 KiB
C#
using Observatory.Framework;
|
|
using Observatory.Framework.Interfaces;
|
|
using Observatory.Framework.Files;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Observatory.Framework.Files.Journal;
|
|
|
|
namespace Observatory.PluginManagement
|
|
{
|
|
class PluginEventHandler
|
|
{
|
|
private IEnumerable<IObservatoryWorker> observatoryWorkers;
|
|
private IEnumerable<IObservatoryNotifier> observatoryNotifiers;
|
|
private List<string> errorList;
|
|
|
|
public PluginEventHandler(IEnumerable<IObservatoryWorker> observatoryWorkers, IEnumerable<IObservatoryNotifier> observatoryNotifiers)
|
|
{
|
|
this.observatoryWorkers = observatoryWorkers;
|
|
this.observatoryNotifiers = observatoryNotifiers;
|
|
errorList = new();
|
|
}
|
|
|
|
public void OnJournalEvent(object source, JournalEventArgs journalEventArgs)
|
|
{
|
|
foreach (var worker in observatoryWorkers)
|
|
{
|
|
try
|
|
{
|
|
worker.JournalEvent((JournalBase)journalEventArgs.journalEvent);
|
|
}
|
|
catch (PluginException ex)
|
|
{
|
|
RecordError(ex);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
RecordError(ex, worker.Name, journalEventArgs.journalType.Name);
|
|
}
|
|
ReportErrorsIfAny();
|
|
}
|
|
}
|
|
|
|
public void OnStatusUpdate(object sourece, JournalEventArgs journalEventArgs)
|
|
{
|
|
foreach (var worker in observatoryWorkers)
|
|
{
|
|
try
|
|
{
|
|
worker.StatusChange((Status)journalEventArgs.journalEvent);
|
|
}
|
|
catch (PluginException ex)
|
|
{
|
|
RecordError(ex);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
RecordError(ex, worker.Name, journalEventArgs.journalType.Name);
|
|
}
|
|
ReportErrorsIfAny();
|
|
}
|
|
}
|
|
|
|
internal void OnLogMonitorStateChanged(object sender, LogMonitorStateChangedEventArgs e)
|
|
{
|
|
foreach (var worker in observatoryWorkers)
|
|
{
|
|
try
|
|
{
|
|
worker.LogMonitorStateChanged(e);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
RecordError(ex, worker.Name, "LogMonitorStateChanged event");
|
|
}
|
|
}
|
|
}
|
|
|
|
public void OnNotificationEvent(object source, NotificationArgs notificationArgs)
|
|
{
|
|
foreach (var notifier in observatoryNotifiers)
|
|
{
|
|
try
|
|
{
|
|
notifier.OnNotificationEvent(notificationArgs);
|
|
}
|
|
catch (PluginException ex)
|
|
{
|
|
RecordError(ex);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
RecordError(ex, notifier.Name, notificationArgs.Title);
|
|
}
|
|
ReportErrorsIfAny();
|
|
}
|
|
}
|
|
|
|
private void RecordError(PluginException ex)
|
|
{
|
|
errorList.Add($"Error in {ex.PluginName}: {ex.Message}");
|
|
}
|
|
|
|
private void RecordError(Exception ex, string plugin, string eventType)
|
|
{
|
|
errorList.Add($"Error in {plugin} while handling {eventType}: {ex.Message}");
|
|
}
|
|
|
|
private void ReportErrorsIfAny()
|
|
{
|
|
if (errorList.Any())
|
|
{
|
|
ErrorReporter.ShowErrorPopup($"Plugin Error{(errorList.Count > 1 ? "s" : "")}", string.Join(Environment.NewLine, errorList));
|
|
|
|
errorList.Clear();
|
|
}
|
|
}
|
|
}
|
|
}
|