mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-24 20:52:11 +00:00
Moved the managed configuration state to ConfigMetaBase
This commit is contained in:
parent
6a30d5ff83
commit
33721e6c56
@ -11,11 +11,10 @@ namespace AIStudio.Settings;
|
|||||||
/// <typeparam name="TValue">The type of the configuration property value.</typeparam>
|
/// <typeparam name="TValue">The type of the configuration property value.</typeparam>
|
||||||
public record ConfigMeta<TClass, TValue> : ConfigMetaBase
|
public record ConfigMeta<TClass, TValue> : ConfigMetaBase
|
||||||
{
|
{
|
||||||
public ConfigMeta(Expression<Func<Data, TClass>> configSelection, Expression<Func<TClass, TValue>> propertyExpression)
|
public ConfigMeta(Expression<Func<Data, TClass>> configSelection, Expression<Func<TClass, TValue>> propertyExpression) : base(SettingsManager.ToSettingName(propertyExpression))
|
||||||
{
|
{
|
||||||
this.ConfigSelection = configSelection;
|
this.ConfigSelection = configSelection;
|
||||||
this.PropertyExpression = propertyExpression;
|
this.PropertyExpression = propertyExpression;
|
||||||
this.SettingName = SettingsManager.ToSettingName(propertyExpression);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -28,132 +27,16 @@ public record ConfigMeta<TClass, TValue> : ConfigMetaBase
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
private Expression<Func<TClass, TValue>> PropertyExpression { get; }
|
private Expression<Func<TClass, TValue>> PropertyExpression { get; }
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The persisted name of the configuration setting.
|
|
||||||
/// </summary>
|
|
||||||
public string SettingName { get; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Indicates whether the configuration is locked by a configuration plugin.
|
|
||||||
/// </summary>
|
|
||||||
public bool IsLocked { get; private set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The ID of the plugin that locked this configuration.
|
|
||||||
/// </summary>
|
|
||||||
public Guid LockedByConfigPluginId { get; private set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// How this setting is managed by a configuration plugin, if at all.
|
|
||||||
/// </summary>
|
|
||||||
public ManagedConfigurationMode? ManagedMode { get; private set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The ID of the plugin that currently provides an editable default value.
|
|
||||||
/// </summary>
|
|
||||||
public Guid EditableDefaultByConfigPluginId { get; private set; }
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The default value for the configuration property. This is used when resetting the property to its default state.
|
/// The default value for the configuration property. This is used when resetting the property to its default state.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public required TValue Default { get; init; }
|
public required TValue Default { get; init; }
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Indicates whether a plugin contribution is available.
|
|
||||||
/// </summary>
|
|
||||||
public bool HasPluginContribution { get; private set; }
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The additive value contribution provided by a configuration plugin.
|
/// The additive value contribution provided by a configuration plugin.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public TValue PluginContribution { get; private set; } = default!;
|
public TValue PluginContribution { get; private set; } = default!;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The ID of the plugin that provided the additive value contribution.
|
|
||||||
/// </summary>
|
|
||||||
public Guid PluginContributionByConfigPluginId { get; private set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Locks the configuration state, indicating that it is controlled by a specific plugin.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="pluginId">The ID of the plugin that is locking this configuration.</param>
|
|
||||||
public void LockConfiguration(Guid pluginId)
|
|
||||||
{
|
|
||||||
this.IsLocked = true;
|
|
||||||
this.LockedByConfigPluginId = pluginId;
|
|
||||||
this.ManagedMode = ManagedConfigurationMode.LOCKED;
|
|
||||||
this.EditableDefaultByConfigPluginId = Guid.Empty;
|
|
||||||
SettingsManagerAccess.ConfigurationData.ManagedLockedConfigurations[this.SettingName] = pluginId;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Restores persisted locked configuration metadata after settings were loaded.
|
|
||||||
/// </summary>
|
|
||||||
public void RestoreLockedConfiguration()
|
|
||||||
{
|
|
||||||
if (this.IsLocked || this.ManagedMode is not null)
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (!SettingsManagerAccess.ConfigurationData.ManagedLockedConfigurations.TryGetValue(this.SettingName, out var pluginId)
|
|
||||||
|| pluginId == Guid.Empty)
|
|
||||||
return;
|
|
||||||
|
|
||||||
this.IsLocked = true;
|
|
||||||
this.LockedByConfigPluginId = pluginId;
|
|
||||||
this.ManagedMode = ManagedConfigurationMode.LOCKED;
|
|
||||||
this.EditableDefaultByConfigPluginId = Guid.Empty;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Resets the locked state of the configuration, allowing it to be modified again.
|
|
||||||
/// This will also reset the property to its default value.
|
|
||||||
/// </summary>
|
|
||||||
public void ResetLockedConfiguration()
|
|
||||||
{
|
|
||||||
SettingsManagerAccess.ConfigurationData.ManagedLockedConfigurations.Remove(this.SettingName);
|
|
||||||
this.IsLocked = false;
|
|
||||||
this.LockedByConfigPluginId = Guid.Empty;
|
|
||||||
if (this.ManagedMode is ManagedConfigurationMode.LOCKED)
|
|
||||||
this.ManagedMode = null;
|
|
||||||
|
|
||||||
this.Reset();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Unlocks the configuration state without changing the current value.
|
|
||||||
/// </summary>
|
|
||||||
public void UnlockConfiguration()
|
|
||||||
{
|
|
||||||
SettingsManagerAccess.ConfigurationData.ManagedLockedConfigurations.Remove(this.SettingName);
|
|
||||||
this.IsLocked = false;
|
|
||||||
this.LockedByConfigPluginId = Guid.Empty;
|
|
||||||
if (this.ManagedMode is ManagedConfigurationMode.LOCKED)
|
|
||||||
this.ManagedMode = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Marks the setting as having an editable default provided by a configuration plugin.
|
|
||||||
/// </summary>
|
|
||||||
public void SetEditableDefaultConfiguration(Guid pluginId)
|
|
||||||
{
|
|
||||||
SettingsManagerAccess.ConfigurationData.ManagedLockedConfigurations.Remove(this.SettingName);
|
|
||||||
this.IsLocked = false;
|
|
||||||
this.LockedByConfigPluginId = Guid.Empty;
|
|
||||||
this.ManagedMode = ManagedConfigurationMode.EDITABLE_DEFAULT;
|
|
||||||
this.EditableDefaultByConfigPluginId = pluginId;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Clears the editable-default state without changing the current value.
|
|
||||||
/// </summary>
|
|
||||||
public void ClearEditableDefaultConfiguration()
|
|
||||||
{
|
|
||||||
if (this.ManagedMode is ManagedConfigurationMode.EDITABLE_DEFAULT)
|
|
||||||
this.ManagedMode = null;
|
|
||||||
|
|
||||||
this.EditableDefaultByConfigPluginId = Guid.Empty;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Stores an additive plugin contribution.
|
/// Stores an additive plugin contribution.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -164,20 +47,15 @@ public record ConfigMeta<TClass, TValue> : ConfigMetaBase
|
|||||||
this.HasPluginContribution = true;
|
this.HasPluginContribution = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <inheritdoc/>
|
||||||
/// Clears the additive plugin contribution without changing the current value.
|
public override void ClearPluginContribution()
|
||||||
/// </summary>
|
|
||||||
public void ClearPluginContribution()
|
|
||||||
{
|
{
|
||||||
this.PluginContribution = default!;
|
this.PluginContribution = default!;
|
||||||
this.PluginContributionByConfigPluginId = Guid.Empty;
|
base.ClearPluginContribution();
|
||||||
this.HasPluginContribution = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <inheritdoc/>
|
||||||
/// Resets the configuration property to its default value.
|
protected override void Reset()
|
||||||
/// </summary>
|
|
||||||
private void Reset()
|
|
||||||
{
|
{
|
||||||
var configInstance = this.ConfigSelection.Compile().Invoke(SettingsManagerAccess.ConfigurationData);
|
var configInstance = this.ConfigSelection.Compile().Invoke(SettingsManagerAccess.ConfigurationData);
|
||||||
var memberExpression = this.PropertyExpression.GetMemberExpression();
|
var memberExpression = this.PropertyExpression.GetMemberExpression();
|
||||||
|
|||||||
@ -1,6 +1,148 @@
|
|||||||
namespace AIStudio.Settings;
|
namespace AIStudio.Settings;
|
||||||
|
|
||||||
public abstract record ConfigMetaBase : IConfig
|
/// <summary>
|
||||||
|
/// The type-independent part of the configuration metadata: which configuration plugin manages
|
||||||
|
/// the setting, and in which way.
|
||||||
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// The managed state lives here so that it can be processed without knowing the setting's type,
|
||||||
|
/// e.g. when cleaning up settings whose configuration plugin was removed.
|
||||||
|
/// </remarks>
|
||||||
|
public abstract record ConfigMetaBase(string SettingName) : IConfig
|
||||||
{
|
{
|
||||||
protected static SettingsManager SettingsManagerAccess => Program.SERVICE_PROVIDER.GetRequiredService<SettingsManager>();
|
protected static SettingsManager SettingsManagerAccess => Program.SERVICE_PROVIDER.GetRequiredService<SettingsManager>();
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The persisted name of the configuration setting.
|
||||||
|
/// </summary>
|
||||||
|
public string SettingName { get; } = SettingName;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Indicates whether the configuration is locked by a configuration plugin.
|
||||||
|
/// </summary>
|
||||||
|
public bool IsLocked { get; private set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The ID of the plugin that locked this configuration.
|
||||||
|
/// </summary>
|
||||||
|
public Guid LockedByConfigPluginId { get; private set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// How this setting is managed by a configuration plugin, if at all.
|
||||||
|
/// </summary>
|
||||||
|
public ManagedConfigurationMode? ManagedMode { get; private set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The ID of the plugin that currently provides an editable default value.
|
||||||
|
/// </summary>
|
||||||
|
public Guid EditableDefaultByConfigPluginId { get; private set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Indicates whether a plugin contribution is available.
|
||||||
|
/// </summary>
|
||||||
|
public bool HasPluginContribution { get; protected set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The ID of the plugin that provided the additive value contribution.
|
||||||
|
/// </summary>
|
||||||
|
public Guid PluginContributionByConfigPluginId { get; protected set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Locks the configuration state, indicating that it is controlled by a specific plugin.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="pluginId">The ID of the plugin that is locking this configuration.</param>
|
||||||
|
public void LockConfiguration(Guid pluginId)
|
||||||
|
{
|
||||||
|
this.IsLocked = true;
|
||||||
|
this.LockedByConfigPluginId = pluginId;
|
||||||
|
this.ManagedMode = ManagedConfigurationMode.LOCKED;
|
||||||
|
this.EditableDefaultByConfigPluginId = Guid.Empty;
|
||||||
|
SettingsManagerAccess.ConfigurationData.ManagedLockedConfigurations[this.SettingName] = pluginId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Restores persisted locked configuration metadata after settings were loaded.
|
||||||
|
/// </summary>
|
||||||
|
public void RestoreLockedConfiguration()
|
||||||
|
{
|
||||||
|
if (this.IsLocked || this.ManagedMode is not null)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (!SettingsManagerAccess.ConfigurationData.ManagedLockedConfigurations.TryGetValue(this.SettingName, out var pluginId) || pluginId == Guid.Empty)
|
||||||
|
return;
|
||||||
|
|
||||||
|
this.IsLocked = true;
|
||||||
|
this.LockedByConfigPluginId = pluginId;
|
||||||
|
this.ManagedMode = ManagedConfigurationMode.LOCKED;
|
||||||
|
this.EditableDefaultByConfigPluginId = Guid.Empty;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Resets the locked state of the configuration, allowing it to be modified again.
|
||||||
|
/// This will also reset the property to its default value.
|
||||||
|
/// </summary>
|
||||||
|
public void ResetLockedConfiguration()
|
||||||
|
{
|
||||||
|
SettingsManagerAccess.ConfigurationData.ManagedLockedConfigurations.Remove(this.SettingName);
|
||||||
|
|
||||||
|
this.IsLocked = false;
|
||||||
|
this.LockedByConfigPluginId = Guid.Empty;
|
||||||
|
|
||||||
|
if (this.ManagedMode is ManagedConfigurationMode.LOCKED)
|
||||||
|
this.ManagedMode = null;
|
||||||
|
|
||||||
|
this.Reset();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Unlocks the configuration state without changing the current value.
|
||||||
|
/// </summary>
|
||||||
|
public void UnlockConfiguration()
|
||||||
|
{
|
||||||
|
SettingsManagerAccess.ConfigurationData.ManagedLockedConfigurations.Remove(this.SettingName);
|
||||||
|
|
||||||
|
this.IsLocked = false;
|
||||||
|
this.LockedByConfigPluginId = Guid.Empty;
|
||||||
|
|
||||||
|
if (this.ManagedMode is ManagedConfigurationMode.LOCKED)
|
||||||
|
this.ManagedMode = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Marks the setting as having an editable default provided by a configuration plugin.
|
||||||
|
/// </summary>
|
||||||
|
public void SetEditableDefaultConfiguration(Guid pluginId)
|
||||||
|
{
|
||||||
|
SettingsManagerAccess.ConfigurationData.ManagedLockedConfigurations.Remove(this.SettingName);
|
||||||
|
|
||||||
|
this.IsLocked = false;
|
||||||
|
this.LockedByConfigPluginId = Guid.Empty;
|
||||||
|
this.ManagedMode = ManagedConfigurationMode.EDITABLE_DEFAULT;
|
||||||
|
this.EditableDefaultByConfigPluginId = pluginId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Clears the editable-default state without changing the current value.
|
||||||
|
/// </summary>
|
||||||
|
public void ClearEditableDefaultConfiguration()
|
||||||
|
{
|
||||||
|
if (this.ManagedMode is ManagedConfigurationMode.EDITABLE_DEFAULT)
|
||||||
|
this.ManagedMode = null;
|
||||||
|
|
||||||
|
this.EditableDefaultByConfigPluginId = Guid.Empty;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Clears the additive plugin contribution without changing the current value.
|
||||||
|
/// </summary>
|
||||||
|
public virtual void ClearPluginContribution()
|
||||||
|
{
|
||||||
|
this.PluginContributionByConfigPluginId = Guid.Empty;
|
||||||
|
this.HasPluginContribution = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Resets the configuration property to its default value.
|
||||||
|
/// </summary>
|
||||||
|
protected abstract void Reset();
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue
Block a user