mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-11 19:32:10 +00:00
Some checks failed
Build and Release / Determine run mode (push) Has been cancelled
Build and Release / Read metadata (push) Has been cancelled
Build and Release / Sync Flatpak repo (push) Has been cancelled
Build and Release / Collect Flatpak artifacts (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg,app,updater, dmg) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis,updater, nsis) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, appimage,updater, appimage) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg,app,updater, dmg) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis,updater, nsis) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage,updater, appimage) (push) Has been cancelled
Build and Release / Prepare & create release (push) Has been cancelled
Build and Release / Publish release (push) Has been cancelled
Co-authored-by: Thorsten Sommer <SommerEngineering@users.noreply.github.com>
90 lines
3.4 KiB
C#
90 lines
3.4 KiB
C#
using System.Linq.Expressions;
|
|
|
|
using AIStudio.Settings.DataModel;
|
|
|
|
namespace AIStudio.Settings;
|
|
|
|
/// <summary>
|
|
/// Represents configuration metadata for a specific class and property.
|
|
/// </summary>
|
|
/// <typeparam name="TClass">The class type that contains the configuration property.</typeparam>
|
|
/// <typeparam name="TValue">The type of the configuration property value.</typeparam>
|
|
public record ConfigMeta<TClass, TValue> : ConfigMetaBase
|
|
{
|
|
public ConfigMeta(Expression<Func<Data, TClass>> configSelection, Expression<Func<TClass, TValue>> propertyExpression) : base(SettingsManager.ToSettingName(propertyExpression))
|
|
{
|
|
this.ConfigSelection = configSelection;
|
|
this.PropertyExpression = propertyExpression;
|
|
}
|
|
|
|
/// <summary>
|
|
/// The expression to select the configuration class from the settings data.
|
|
/// </summary>
|
|
private Expression<Func<Data, TClass>> ConfigSelection { get; }
|
|
|
|
/// <summary>
|
|
/// The expression to select the property within the configuration class.
|
|
/// </summary>
|
|
private Expression<Func<TClass, TValue>> PropertyExpression { get; }
|
|
|
|
/// <summary>
|
|
/// The default value for the configuration property. This is used when resetting the property to its default state.
|
|
/// </summary>
|
|
public required TValue Default { get; init; }
|
|
|
|
/// <summary>
|
|
/// The additive value contribution provided by a configuration plugin.
|
|
/// </summary>
|
|
public TValue PluginContribution { get; private set; } = default!;
|
|
|
|
/// <summary>
|
|
/// Stores an additive plugin contribution.
|
|
/// </summary>
|
|
public void SetPluginContribution(TValue value, Guid pluginId)
|
|
{
|
|
this.PluginContribution = value;
|
|
this.PluginContributionByConfigPluginId = pluginId;
|
|
this.HasPluginContribution = true;
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public override void ClearPluginContribution()
|
|
{
|
|
this.PluginContribution = default!;
|
|
base.ClearPluginContribution();
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
protected override void Reset()
|
|
{
|
|
var configInstance = this.ConfigSelection.Compile().Invoke(SettingsManagerAccess.ConfigurationData);
|
|
var memberExpression = this.PropertyExpression.GetMemberExpression();
|
|
if (memberExpression.Member is System.Reflection.PropertyInfo propertyInfo)
|
|
propertyInfo.SetValue(configInstance, this.Default);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the value of the configuration property to the specified value.
|
|
/// </summary>
|
|
/// <param name="value">The value to set for the configuration property.</param>
|
|
public void SetValue(TValue value)
|
|
{
|
|
var configInstance = this.ConfigSelection.Compile().Invoke(SettingsManagerAccess.ConfigurationData);
|
|
var memberExpression = this.PropertyExpression.GetMemberExpression();
|
|
if (memberExpression.Member is System.Reflection.PropertyInfo propertyInfo)
|
|
propertyInfo.SetValue(configInstance, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the current value of the configuration property.
|
|
/// </summary>
|
|
public TValue GetValue()
|
|
{
|
|
var configInstance = this.ConfigSelection.Compile().Invoke(SettingsManagerAccess.ConfigurationData);
|
|
var memberExpression = this.PropertyExpression.GetMemberExpression();
|
|
if (memberExpression.Member is System.Reflection.PropertyInfo propertyInfo && propertyInfo.GetValue(configInstance) is TValue value)
|
|
return value;
|
|
|
|
return default!;
|
|
}
|
|
} |