38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
using System.Diagnostics.CodeAnalysis;
|
|||
|
|
using System.Runtime.CompilerServices;
|
||
|
|
|
||
|
|
namespace PCL.Core.App.Cli;
|
||
|
|
|
||
|
|
public class BoolArgument : CommandArgument<bool>
|
||
|
|
{
|
||
|
|
public override ArgumentValueKind ValueKind => ArgumentValueKind.Bool;
|
||
|
|
|
||
|
|
protected override bool ParseValueText()
|
||
|
|
{
|
||
|
|
var text = ValueText.ToLowerInvariant().Trim();
|
||
|
|
return text is not ("0" or "false");
|
||
|
|
}
|
||
|
|
|
||
|
|
public override bool TryCastValue<T>([NotNullWhen(true)] out T value)
|
||
|
|
{
|
||
|
|
if (base.TryCastValue(out value)) return true;
|
||
|
|
var type = typeof(T);
|
||
|
|
if (type != typeof(sbyte) &&
|
||
|
|
type != typeof(byte) &&
|
||
|
|
type != typeof(short) &&
|
||
|
|
type != typeof(ushort) &&
|
||
|
|
type != typeof(int) &&
|
||
|
|
type != typeof(uint) &&
|
||
|
|
type != typeof(long) &&
|
||
|
|
type != typeof(ulong) &&
|
||
|
|
type != typeof(nint) &&
|
||
|
|
type != typeof(nuint)) return false;
|
||
|
|
// magic code
|
||
|
|
var v = Value;
|
||
|
|
Unsafe.As<T, byte>(ref value) = Unsafe.As<bool, byte>(ref v);
|
||
|
|
#pragma warning disable CS8762 // The analyzer sucks.
|
||
|
|
return true;
|
||
|
|
#pragma warning restore CS8762
|
||
|
|
}
|
||
|
|
}
|