Files
Learning-UnityNGO/Assets/Plugins/QFSW/Quantum Console/Source/Scripts/Parsing/Parsers/TupleParser.cs
T
2026-06-17 20:44:53 +03:00

53 lines
1.7 KiB
C#

using System;
using System.Collections.Generic;
namespace QFSW.QC.Parsers
{
public class TupleParser : MassGenericQcParser
{
private const int MaxFlatTupleSize = 8;
protected override HashSet<Type> GenericTypes { get; } = new HashSet<Type>
{
typeof(ValueTuple<>),
typeof(ValueTuple<,>),
typeof(ValueTuple<,,>),
typeof(ValueTuple<,,,>),
typeof(ValueTuple<,,,,>),
typeof(ValueTuple<,,,,,>),
typeof(ValueTuple<,,,,,,>),
typeof(ValueTuple<,,,,,,,>),
typeof(Tuple<>),
typeof(Tuple<,>),
typeof(Tuple<,,>),
typeof(Tuple<,,,>),
typeof(Tuple<,,,,>),
typeof(Tuple<,,,,,>),
typeof(Tuple<,,,,,,>),
typeof(Tuple<,,,,,,,>)
};
public override object Parse(string value, Type type)
{
TextProcessing.ScopedSplitOptions options = TextProcessing.ScopedSplitOptions.Default;
options.MaxCount = MaxFlatTupleSize;
string[] inputParts = value.ReduceScope('(', ')').SplitScoped(',', options);
Type[] elementTypes = type.GetGenericArguments();
if (elementTypes.Length != inputParts.Length)
{
throw new ParserInputException($"Desired tuple type {type} has {elementTypes.Length} elements but input contained {inputParts.Length}.");
}
object[] tupleParts = new object[inputParts.Length];
for (int i = 0; i < tupleParts.Length; i++)
{
tupleParts[i] = ParseRecursive(inputParts[i], elementTypes[i]);
}
return Activator.CreateInstance(type, tupleParts);
}
}
}