Files
codeql/csharp/extractor/Semmle.Util/CommandLineOptions.cs
2018-10-10 14:40:52 +01:00

76 lines
2.8 KiB
C#

using System.Collections.Generic;
namespace Semmle.Util
{
/// <summary>
/// Represents a parsed set of command line options.
/// </summary>
public interface ICommandLineOptions
{
/// <summary>
/// Handle an option of the form "--threads 5" or "--threads:5"
/// </summary>
/// <param name="key">The name of the key. This is case sensitive.</param>
/// <param name="value">The supplied value.</param>
/// <returns>True if the option was handled, or false otherwise.</returns>
bool handleOption(string key, string value);
/// <summary>
/// Handle a flag of the form "--cil" or "--nocil"
/// </summary>
/// <param name="key">The name of the flag. This is case sensitive.</param>
/// <param name="value">True if set, or false if prefixed by "--no"</param>
/// <returns>True if the flag was handled, or false otherwise.</returns>
bool handleFlag(string key, bool value);
/// <summary>
/// Handle an argument, not prefixed by "--".
/// </summary>
/// <param name="argument">The command line argument.</param>
/// <returns>True if the argument was handled, or false otherwise.</returns>
bool handleArgument(string argument);
/// <summary>
/// Process an unhandled option, or an unhandled argument.
/// </summary>
/// <param name="argument">The argument.</param>
void invalidArgument(string argument);
}
public static class OptionsExtensions
{
public static void ParseArguments(this ICommandLineOptions options, IReadOnlyList<string> arguments)
{
for (int i = 0; i < arguments.Count; ++i)
{
string arg = arguments[i];
if (arg.StartsWith("--"))
{
var colon = arg.IndexOf(':');
if (colon > 0 && options.handleOption(arg.Substring(2, colon - 2), arg.Substring(colon + 1)))
{ }
else if (arg.StartsWith("--no") && options.handleFlag(arg.Substring(4), false))
{ }
else if (options.handleFlag(arg.Substring(2), true))
{ }
else if (i + 1 < arguments.Count && options.handleOption(arg.Substring(2), arguments[i + 1]))
{
++i;
}
else
{
options.invalidArgument(arg);
}
}
else
{
if (!options.handleArgument(arg))
{
options.invalidArgument(arg);
}
}
}
}
}
}