50 lines
1.2 KiB
C#
50 lines
1.2 KiB
C#
|
using System;
|
||
|
|
||
|
namespace UnityEditor.TestRunner.CommandLineParser
|
||
|
{
|
||
|
internal class CommandLineOptionSet
|
||
|
{
|
||
|
ICommandLineOption[] m_Options;
|
||
|
|
||
|
public CommandLineOptionSet(params ICommandLineOption[] options)
|
||
|
{
|
||
|
m_Options = options;
|
||
|
}
|
||
|
|
||
|
public void Parse(string[] args)
|
||
|
{
|
||
|
var i = 0;
|
||
|
while (i < args.Length)
|
||
|
{
|
||
|
var arg = args[i];
|
||
|
if (!arg.StartsWith("-"))
|
||
|
{
|
||
|
i++;
|
||
|
continue;
|
||
|
}
|
||
|
|
||
|
string value = null;
|
||
|
if (i + 1 < args.Length && !args[i + 1].StartsWith("-"))
|
||
|
{
|
||
|
value = args[i + 1];
|
||
|
i++;
|
||
|
}
|
||
|
|
||
|
ApplyValueToMatchingOptions(arg, value);
|
||
|
i++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private void ApplyValueToMatchingOptions(string argName, string value)
|
||
|
{
|
||
|
foreach (var option in m_Options)
|
||
|
{
|
||
|
if ("-" + option.ArgName == argName)
|
||
|
{
|
||
|
option.ApplyValue(value);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|