mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-06-19 13:28:16 +08:00
93 lines
3.0 KiB
C#
93 lines
3.0 KiB
C#
using System;
|
|
using Spectre.Console.Cli.Unsafe;
|
|
|
|
namespace Spectre.Console.Cli;
|
|
|
|
internal sealed class Configurator<TSettings> : IUnsafeBranchConfigurator, IConfigurator<TSettings>
|
|
where TSettings : CommandSettings
|
|
{
|
|
private readonly ConfiguredCommand _command;
|
|
private readonly ITypeRegistrar? _registrar;
|
|
|
|
public Configurator(ConfiguredCommand command, ITypeRegistrar? registrar)
|
|
{
|
|
_command = command;
|
|
_registrar = registrar;
|
|
}
|
|
|
|
public void SetDescription(string description)
|
|
{
|
|
_command.Description = description;
|
|
}
|
|
|
|
public void AddExample(string[] args)
|
|
{
|
|
_command.Examples.Add(args);
|
|
}
|
|
|
|
public void HideBranch()
|
|
{
|
|
_command.IsHidden = true;
|
|
}
|
|
|
|
public ICommandConfigurator AddCommand<TCommand>(string name)
|
|
where TCommand : class, ICommandLimiter<TSettings>
|
|
{
|
|
var command = ConfiguredCommand.FromType<TCommand>(name);
|
|
var configurator = new CommandConfigurator(command);
|
|
|
|
_command.Children.Add(command);
|
|
return configurator;
|
|
}
|
|
|
|
public ICommandConfigurator AddDelegate<TDerivedSettings>(string name, Func<CommandContext, TDerivedSettings, int> func)
|
|
where TDerivedSettings : TSettings
|
|
{
|
|
var command = ConfiguredCommand.FromDelegate<TDerivedSettings>(
|
|
name, (context, settings) => func(context, (TDerivedSettings)settings));
|
|
|
|
_command.Children.Add(command);
|
|
return new CommandConfigurator(command);
|
|
}
|
|
|
|
public void AddBranch<TDerivedSettings>(string name, Action<IConfigurator<TDerivedSettings>> action)
|
|
where TDerivedSettings : TSettings
|
|
{
|
|
var command = ConfiguredCommand.FromBranch<TDerivedSettings>(name);
|
|
action(new Configurator<TDerivedSettings>(command, _registrar));
|
|
_command.Children.Add(command);
|
|
}
|
|
|
|
ICommandConfigurator IUnsafeConfigurator.AddCommand(string name, Type command)
|
|
{
|
|
var method = GetType().GetMethod("AddCommand");
|
|
if (method == null)
|
|
{
|
|
throw new CommandConfigurationException("Could not find AddCommand by reflection.");
|
|
}
|
|
|
|
method = method.MakeGenericMethod(command);
|
|
|
|
if (!(method.Invoke(this, new object[] { name }) is ICommandConfigurator result))
|
|
{
|
|
throw new CommandConfigurationException("Invoking AddCommand returned null.");
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
void IUnsafeConfigurator.AddBranch(string name, Type settings, Action<IUnsafeBranchConfigurator> action)
|
|
{
|
|
var command = ConfiguredCommand.FromBranch(settings, name);
|
|
|
|
// Create the configurator.
|
|
var configuratorType = typeof(Configurator<>).MakeGenericType(settings);
|
|
if (!(Activator.CreateInstance(configuratorType, new object?[] { command, _registrar }) is IUnsafeBranchConfigurator configurator))
|
|
{
|
|
throw new CommandConfigurationException("Could not create configurator by reflection.");
|
|
}
|
|
|
|
action(configurator);
|
|
_command.Children.Add(command);
|
|
}
|
|
} |