| 12345678910111213141516171819202122232425262728293031323334 |
- using System.ComponentModel;
- using Microsoft.Extensions.DependencyInjection;
- using RackPeek.Domain.Resources.Desktops;
- using RackPeek.Domain.UseCases.Gpus;
- using Spectre.Console;
- using Spectre.Console.Cli;
- namespace Shared.Rcl.Commands.Desktops.Gpus;
- public class DesktopGpuRemoveSettings : CommandSettings {
- [CommandArgument(0, "<desktop>")]
- [Description("The desktop name.")]
- public string DesktopName { get; set; } = default!;
- [CommandArgument(1, "<index>")]
- [Description("The index of the Gpu to remove.")]
- public int Index { get; set; }
- }
- public class DesktopGpuRemoveCommand(IServiceProvider provider)
- : AsyncCommand<DesktopGpuRemoveSettings> {
- public override async Task<int> ExecuteAsync(
- CommandContext context,
- DesktopGpuRemoveSettings settings,
- CancellationToken cancellationToken) {
- using IServiceScope scope = provider.CreateScope();
- IRemoveGpuUseCase<Desktop> useCase = scope.ServiceProvider.GetRequiredService<IRemoveGpuUseCase<Desktop>>();
- await useCase.ExecuteAsync(settings.DesktopName, settings.Index);
- AnsiConsole.MarkupLine($"[green]GPU #{settings.Index} removed from desktop '{settings.DesktopName}'.[/]");
- return 0;
- }
- }
|