mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
Enclose pre-read with Read-all; de-dupe plugin table and show types, etc
A few changes in preparation for the upcoming Announcer plugin. 1) De-dupe entries in the plugin table in the core settings UI when a plugin implements both Worker and Notifier interfaces. 2) Also add a "Types" column to the plugin table indicating the set of implemented interfaces found. 3) Wrap the pre-reading logic in "Read-all" scope to properly suppress a stampede of notifications (particularly audio ones) when starting the log monitor. 4) Fix the int setting UI. It rendered incorrectly, it didn't get the value from the settings class, nor wrote it back. Also implemented optional value bounding using the new setting attribute (see the related Framework PR). 5) Applied similar fixes to string setting (addressed rendering, write-back although untested). 6) Minor visual fixes (height/vertical alignment) for non-boolean settings to address cut-off/overlapping inputs. Sorry for the larger PR, but these *should* be all the loose ends before we could consider including Basic Announcer...
This commit is contained in:
parent
d51cc5ffa9
commit
3c3aca8bfd
@ -146,7 +146,9 @@ namespace Observatory
|
|||||||
|
|
||||||
// We found an FSD jump, buffered the lines for that system (possibly including startup logs
|
// We found an FSD jump, buffered the lines for that system (possibly including startup logs
|
||||||
// over a file boundary). Pump these through the plugins.
|
// over a file boundary). Pump these through the plugins.
|
||||||
|
readall = true;
|
||||||
ReportErrors(ProcessLines(lastSystemLines, "Pre-read"));
|
ReportErrors(ProcessLines(lastSystemLines, "Pre-read"));
|
||||||
|
readall = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
@ -55,21 +55,15 @@ namespace Observatory.UI.ViewModels
|
|||||||
|
|
||||||
public void ReadAll()
|
public void ReadAll()
|
||||||
{
|
{
|
||||||
foreach (var worker in workers)
|
SetWorkerReadAllState(true);
|
||||||
{
|
|
||||||
worker.ReadAllStarted();
|
|
||||||
}
|
|
||||||
LogMonitor.GetInstance.ReadAllJournals();
|
LogMonitor.GetInstance.ReadAllJournals();
|
||||||
foreach (var worker in workers)
|
SetWorkerReadAllState(false);
|
||||||
{
|
|
||||||
worker.ReadAllFinished();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void ToggleMonitor()
|
public void ToggleMonitor()
|
||||||
{
|
{
|
||||||
var logMonitor = LogMonitor.GetInstance;
|
var logMonitor = LogMonitor.GetInstance;
|
||||||
|
|
||||||
if (logMonitor.IsMonitoring())
|
if (logMonitor.IsMonitoring())
|
||||||
{
|
{
|
||||||
logMonitor.Stop();
|
logMonitor.Stop();
|
||||||
@ -77,7 +71,10 @@ namespace Observatory.UI.ViewModels
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
// HACK: Find a better way of suppressing notifications when pre-reading.
|
||||||
|
SetWorkerReadAllState(true);
|
||||||
logMonitor.Start();
|
logMonitor.Start();
|
||||||
|
SetWorkerReadAllState(false);
|
||||||
ToggleButtonText = "Stop Monitor";
|
ToggleButtonText = "Stop Monitor";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -123,5 +120,20 @@ namespace Observatory.UI.ViewModels
|
|||||||
{
|
{
|
||||||
get { return tabs; }
|
get { return tabs; }
|
||||||
}
|
}
|
||||||
|
private void SetWorkerReadAllState(bool isReadingAll)
|
||||||
|
{
|
||||||
|
foreach (var worker in workers)
|
||||||
|
{
|
||||||
|
if (isReadingAll)
|
||||||
|
{
|
||||||
|
worker.ReadAllStarted();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
worker.ReadAllFinished();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -10,6 +10,7 @@ using Avalonia.Interactivity;
|
|||||||
using Avalonia.VisualTree;
|
using Avalonia.VisualTree;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.ObjectModel;
|
using System.Collections.ObjectModel;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Observatory.UI.Views
|
namespace Observatory.UI.Views
|
||||||
{
|
{
|
||||||
@ -252,6 +253,12 @@ namespace Observatory.UI.Views
|
|||||||
Binding = new Binding("Name")
|
Binding = new Binding("Name")
|
||||||
});
|
});
|
||||||
|
|
||||||
|
pluginList.Columns.Add(new DataGridTextColumn()
|
||||||
|
{
|
||||||
|
Header = "Types",
|
||||||
|
Binding = new Binding("TypesString")
|
||||||
|
});
|
||||||
|
|
||||||
pluginList.Columns.Add(new DataGridTextColumn()
|
pluginList.Columns.Add(new DataGridTextColumn()
|
||||||
{
|
{
|
||||||
Header = "Version",
|
Header = "Version",
|
||||||
@ -264,19 +271,29 @@ namespace Observatory.UI.Views
|
|||||||
Binding = new Binding("Status")
|
Binding = new Binding("Status")
|
||||||
});
|
});
|
||||||
|
|
||||||
System.Collections.Generic.List<PluginView> allPlugins = new();
|
Dictionary<string, PluginView> uniquePlugins = new();
|
||||||
|
|
||||||
foreach(var (plugin, signed) in pluginManager.workerPlugins)
|
foreach(var (plugin, signed) in pluginManager.workerPlugins)
|
||||||
{
|
{
|
||||||
allPlugins.Add(new PluginView() { Name = plugin.Name, Version = plugin.Version, Status = GetStatusText(signed) });
|
if (!uniquePlugins.ContainsKey(plugin.Name))
|
||||||
|
{
|
||||||
|
uniquePlugins.Add(plugin.Name,
|
||||||
|
new PluginView() { Name = plugin.Name, Types = new() { PluginType.Worker }, Version = plugin.Version, Status = GetStatusText(signed) });
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach (var (plugin, signed) in pluginManager.notifyPlugins)
|
foreach (var (plugin, signed) in pluginManager.notifyPlugins)
|
||||||
{
|
{
|
||||||
allPlugins.Add(new PluginView() { Name = plugin.Name, Version = plugin.Version, Status = GetStatusText(signed) });
|
if (!uniquePlugins.ContainsKey(plugin.Name))
|
||||||
|
{
|
||||||
|
uniquePlugins.Add(plugin.Name,
|
||||||
|
new PluginView() { Name = plugin.Name, Types = new() { PluginType.Notifier }, Version = plugin.Version, Status = GetStatusText(signed) });
|
||||||
|
} else
|
||||||
|
{
|
||||||
|
uniquePlugins[plugin.Name].Types.Add(PluginType.Notifier);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pluginList.Items = allPlugins;
|
pluginList.Items = uniquePlugins.Values;
|
||||||
corePanel.AddControl(pluginList, SettingRowTracker.PLUGIN_LIST_ROW_INDEX, 0, 2);
|
corePanel.AddControl(pluginList, SettingRowTracker.PLUGIN_LIST_ROW_INDEX, 0, 2);
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
@ -324,10 +341,13 @@ namespace Observatory.UI.Views
|
|||||||
{
|
{
|
||||||
if (setting.Key.PropertyType != typeof(bool) || settingsGrid.Children.Count % 2 == 0)
|
if (setting.Key.PropertyType != typeof(bool) || settingsGrid.Children.Count % 2 == 0)
|
||||||
{
|
{
|
||||||
settingsGrid.RowDefinitions.Add(new RowDefinition() { Height = new GridLength(21) });
|
settingsGrid.RowDefinitions.Add(new RowDefinition()
|
||||||
|
{
|
||||||
|
Height = new GridLength(setting.Key.PropertyType != typeof(bool) ? 32 : 25),
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
TextBlock label = new() { Text = setting.Value };
|
TextBlock label = new() { Text = setting.Value, VerticalAlignment = Avalonia.Layout.VerticalAlignment.Center };
|
||||||
|
|
||||||
switch (setting.Key.GetValue(plugin.Settings))
|
switch (setting.Key.GetValue(plugin.Settings))
|
||||||
{
|
{
|
||||||
@ -351,13 +371,30 @@ namespace Observatory.UI.Views
|
|||||||
break;
|
break;
|
||||||
case string stringSetting:
|
case string stringSetting:
|
||||||
TextBox textBox = new() { Text = stringSetting };
|
TextBox textBox = new() { Text = stringSetting };
|
||||||
settingsGrid.Children.Add(label);
|
settingsGrid.AddControl(label, settingsGrid.RowDefinitions.Count - 1, 0);
|
||||||
settingsGrid.Children.Add(textBox);
|
settingsGrid.AddControl(textBox, settingsGrid.RowDefinitions.Count - 1, 1);
|
||||||
|
textBox.TextInput += (object sender, Avalonia.Input.TextInputEventArgs e) =>
|
||||||
|
{
|
||||||
|
setting.Key.SetValue(plugin.Settings, e.Text);
|
||||||
|
PluginManagement.PluginManager.GetInstance.SaveSettings(plugin, plugin.Settings);
|
||||||
|
};
|
||||||
break;
|
break;
|
||||||
case int intSetting:
|
case int intSetting:
|
||||||
NumericUpDown numericUpDown = new() { Text = intSetting.ToString(), AllowSpin = true };
|
NumericUpDown numericUpDown = new() { Value = intSetting, AllowSpin = true };
|
||||||
settingsGrid.Children.Add(label);
|
SettingNumericBounds attr = (SettingNumericBounds)System.Attribute.GetCustomAttribute(setting.Key, typeof(SettingNumericBounds));
|
||||||
settingsGrid.Children.Add(numericUpDown);
|
if (attr != null)
|
||||||
|
{
|
||||||
|
numericUpDown.Minimum = attr.Minimum;
|
||||||
|
numericUpDown.Maximum = attr.Maximum;
|
||||||
|
numericUpDown.Increment = attr.Increment;
|
||||||
|
}
|
||||||
|
settingsGrid.AddControl(label, settingsGrid.RowDefinitions.Count - 1, 0);
|
||||||
|
settingsGrid.AddControl(numericUpDown, settingsGrid.RowDefinitions.Count - 1, 1);
|
||||||
|
numericUpDown.ValueChanged += (object sender, NumericUpDownValueChangedEventArgs e) =>
|
||||||
|
{
|
||||||
|
setting.Key.SetValue(plugin.Settings, Convert.ToInt32(e.NewValue));
|
||||||
|
PluginManagement.PluginManager.GetInstance.SaveSettings(plugin, plugin.Settings);
|
||||||
|
};
|
||||||
break;
|
break;
|
||||||
case System.IO.FileInfo fileSetting:
|
case System.IO.FileInfo fileSetting:
|
||||||
label.Text += ": ";
|
label.Text += ": ";
|
||||||
@ -404,7 +441,7 @@ namespace Observatory.UI.Views
|
|||||||
stackPanel.Children.Add(label);
|
stackPanel.Children.Add(label);
|
||||||
stackPanel.Children.Add(settingPath);
|
stackPanel.Children.Add(settingPath);
|
||||||
|
|
||||||
settingsGrid.RowDefinitions.Add(new RowDefinition() { Height = new GridLength(21) });
|
settingsGrid.RowDefinitions.Add(new RowDefinition() { Height = new GridLength(32) });
|
||||||
settingsGrid.AddControl(stackPanel, settingsGrid.RowDefinitions.Count - 1, 0, 2);
|
settingsGrid.AddControl(stackPanel, settingsGrid.RowDefinitions.Count - 1, 0, 2);
|
||||||
settingsGrid.AddControl(settingBrowse, settingsGrid.RowDefinitions.Count - 1, 2);
|
settingsGrid.AddControl(settingBrowse, settingsGrid.RowDefinitions.Count - 1, 2);
|
||||||
|
|
||||||
@ -415,6 +452,11 @@ namespace Observatory.UI.Views
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void TextBox_TextInput(object sender, Avalonia.Input.TextInputEventArgs e)
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
|
||||||
private string GetStatusText(PluginManagement.PluginManager.PluginStatus status)
|
private string GetStatusText(PluginManagement.PluginManager.PluginStatus status)
|
||||||
{
|
{
|
||||||
string statusText;
|
string statusText;
|
||||||
@ -462,12 +504,22 @@ namespace Observatory.UI.Views
|
|||||||
internal class PluginView
|
internal class PluginView
|
||||||
{
|
{
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
|
public HashSet<PluginType> Types { get; set; }
|
||||||
|
public string TypesString {
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return string.Join(", ", Types);
|
||||||
|
}
|
||||||
|
set { } }
|
||||||
public string Version { get; set; }
|
public string Version { get; set; }
|
||||||
public string Status { get; set; }
|
public string Status { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
enum PluginType
|
||||||
|
{
|
||||||
|
Worker,
|
||||||
|
Notifier,
|
||||||
|
}
|
||||||
|
|
||||||
internal static class GridExtention
|
internal static class GridExtention
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user