cs-codex-dist-tests/Framework/ArgsUniform/ArgsUniform.cs

128 lines
4.3 KiB
C#
Raw Normal View History

2023-06-26 11:58:41 +00:00
using System.Reflection;
namespace ArgsUniform
{
public class ArgsUniform<T>
{
2024-05-16 10:14:03 +00:00
private readonly Assigner<T> assigner;
private readonly Action printAppInfo;
2023-06-26 11:58:41 +00:00
private readonly string[] args;
private const int cliStart = 8;
private const int shortStart = 38;
private const int envStart = 48;
private const int descStart = 80;
public ArgsUniform(Action printAppInfo, params string[] args)
: this(printAppInfo, new IEnv.Env(), args)
2023-06-26 11:58:41 +00:00
{
}
public ArgsUniform(Action printAppInfo, object defaultsProvider, params string[] args)
: this(printAppInfo, defaultsProvider, new IEnv.Env(), args)
2023-06-26 11:58:41 +00:00
{
}
public ArgsUniform(Action printAppInfo, IEnv.IEnv env, params string[] args)
: this(printAppInfo, null!, env, args)
2023-06-26 11:58:41 +00:00
{
}
public ArgsUniform(Action printAppInfo, object defaultsProvider, IEnv.IEnv env, params string[] args)
2023-06-26 11:58:41 +00:00
{
this.printAppInfo = printAppInfo;
2023-06-26 11:58:41 +00:00
this.args = args;
2024-05-16 10:14:03 +00:00
assigner = new Assigner<T>(env, args, defaultsProvider);
2023-06-26 11:58:41 +00:00
}
public T Parse(bool printResult = false)
{
if (args.Any(a => a == "-h" || a == "--help" || a == "-?"))
{
printAppInfo();
PrintHelp();
Environment.Exit(0);
}
2023-06-26 11:58:41 +00:00
var result = Activator.CreateInstance<T>();
var uniformProperties = typeof(T).GetProperties().Where(m => m.GetCustomAttributes(typeof(UniformAttribute), false).Length == 1).ToArray();
var missingRequired = new List<PropertyInfo>();
foreach (var uniformProperty in uniformProperties)
{
var attr = uniformProperty.GetCustomAttribute<UniformAttribute>();
if (attr != null)
{
2024-05-16 10:14:03 +00:00
if (!assigner.UniformAssign(result, attr, uniformProperty) && attr.Required)
2023-06-26 11:58:41 +00:00
{
missingRequired.Add(uniformProperty);
2023-06-26 11:58:41 +00:00
}
}
}
if (missingRequired.Any())
{
2023-06-26 12:44:21 +00:00
PrintResults(result, uniformProperties);
2023-06-26 11:58:41 +00:00
Print("");
foreach (var missing in missingRequired)
{
var attr = missing.GetCustomAttribute<UniformAttribute>()!;
var exampleArg = $"--{attr.Arg}=...";
var exampleEnvVar = $"{attr.EnvVar}=...";
Print($" ! Missing required input. Use argument: '{exampleArg}' or environment variable: '{exampleEnvVar}'.");
}
PrintHelp();
Environment.Exit(1);
2023-06-26 11:58:41 +00:00
}
if (printResult)
{
2023-06-26 12:44:21 +00:00
PrintResults(result, uniformProperties);
2023-06-26 11:58:41 +00:00
}
return result;
}
2023-06-26 12:44:21 +00:00
private void PrintResults(T result, PropertyInfo[] uniformProperties)
{
Print("");
foreach (var p in uniformProperties)
{
Print($"\t{p.Name} = {p.GetValue(result)}");
}
Print("");
}
2023-06-26 11:58:41 +00:00
public void PrintHelp()
{
Print("");
PrintAligned("CLI option:", "(short)", "Environment variable:", "Description");
var attrs = typeof(T).GetProperties().Where(m => m.GetCustomAttributes(typeof(UniformAttribute), false).Length == 1).Select(p => p.GetCustomAttribute<UniformAttribute>()).Where(a => a != null).ToArray();
foreach (var attr in attrs)
{
var a = attr!;
var optional = !a.Required ? " *" : "";
PrintAligned($"--{a.Arg}=...", $"({a.ArgShort})", a.EnvVar, a.Description + optional);
}
Print("");
}
private void Print(string msg)
{
Console.WriteLine(msg);
}
private void PrintAligned(string cli, string s, string env, string desc)
{
Console.CursorLeft = cliStart;
Console.Write(cli);
Console.CursorLeft = shortStart;
Console.Write(s);
Console.CursorLeft = envStart;
Console.Write(env);
Console.CursorLeft = descStart;
Console.Write(desc + Environment.NewLine);
}
}
}