From e69798d909678ac6fb938baf10245c117d248e64 Mon Sep 17 00:00:00 2001 From: Ehryk Date: Sat, 1 Aug 2015 00:58:12 -0500 Subject: [PATCH] Added multiple tokenizers implementing new ITokenizer interface (GetOpt = previous, Windows, Hybrid) --- .../Unit/Core/InstanceBuilderTests.cs | 5 +- .../Unit/Core/TokenizerTests.cs | 6 +- src/CommandLine/CommandLine.csproj | 6 +- src/CommandLine/Core/ITokenizer.cs | 26 ++ src/CommandLine/Core/InstanceBuilder.cs | 6 +- src/CommandLine/Core/InstanceChooser.cs | 6 +- .../Core/{Tokenizer.cs => TokenizerGetOpt.cs} | 272 +++++++++--------- src/CommandLine/Core/TokenizerHybrid.cs | 143 +++++++++ src/CommandLine/Core/TokenizerWindows.cs | 137 +++++++++ src/CommandLine/Parser.cs | 10 +- 10 files changed, 468 insertions(+), 149 deletions(-) create mode 100644 src/CommandLine/Core/ITokenizer.cs rename src/CommandLine/Core/{Tokenizer.cs => TokenizerGetOpt.cs} (92%) create mode 100644 src/CommandLine/Core/TokenizerHybrid.cs create mode 100644 src/CommandLine/Core/TokenizerWindows.cs diff --git a/src/CommandLine.Tests/Unit/Core/InstanceBuilderTests.cs b/src/CommandLine.Tests/Unit/Core/InstanceBuilderTests.cs index 5a65c90a..c1bbcd7c 100644 --- a/src/CommandLine.Tests/Unit/Core/InstanceBuilderTests.cs +++ b/src/CommandLine.Tests/Unit/Core/InstanceBuilderTests.cs @@ -435,13 +435,14 @@ public void Double_dash_force_subsequent_arguments_as_values() IntValue = 20 }; var arguments = new[] { "--stringvalue", "str1", "--", "10", "-a", "--bee", "-c", "20" }; + var tokenizer = new TokenizerGetOpt(); // Exercize system var result = InstanceBuilder.Build( Maybe.Just>(() => new FakeOptionsWithValues()), (a, optionSpecs) => - Tokenizer.PreprocessDashDash(a, - args => Tokenizer.Tokenize(args, name => NameLookup.Contains(name, optionSpecs, StringComparer.Ordinal))), + tokenizer.Preprocess(a, + args => tokenizer.Tokenize(args, name => NameLookup.Contains(name, optionSpecs, StringComparer.Ordinal))), arguments, StringComparer.Ordinal, CultureInfo.InvariantCulture); diff --git a/src/CommandLine.Tests/Unit/Core/TokenizerTests.cs b/src/CommandLine.Tests/Unit/Core/TokenizerTests.cs index 655fdcf8..d3844928 100644 --- a/src/CommandLine.Tests/Unit/Core/TokenizerTests.cs +++ b/src/CommandLine.Tests/Unit/Core/TokenizerTests.cs @@ -23,10 +23,11 @@ public void Explode_scalar_with_separator_in_odd_args_input_returns_sequence() Token.Value("aaa"), Token.Value("bb"), Token.Value("cccc"), Token.Name("switch") }; var specs = new[] { new OptionSpecification(string.Empty, "string-seq", false, string.Empty, Maybe.Nothing(), Maybe.Nothing(), ',', null, string.Empty, string.Empty, new List(), typeof(IEnumerable), TargetType.Sequence)}; + var tokenizer = new TokenizerGetOpt(); // Exercize system var result = - Tokenizer.ExplodeOptionList( + tokenizer.ExplodeOptionList( Result.Succeed( Enumerable.Empty().Concat(new[] { Token.Name("i"), Token.Value("10"), Token.Name("string-seq"), Token.Value("aaa,bb,cccc"), Token.Name("switch") }), @@ -47,10 +48,11 @@ public void Explode_scalar_with_separator_in_even_args_input_returns_sequence() Token.Value("aaa"), Token.Value("bb"), Token.Value("cccc"), Token.Name("switch") }; var specs = new[] { new OptionSpecification(string.Empty, "string-seq", false, string.Empty, Maybe.Nothing(), Maybe.Nothing(), ',', null, string.Empty, string.Empty, new List(), typeof(IEnumerable), TargetType.Sequence)}; + var tokenizer = new TokenizerGetOpt(); // Exercize system var result = - Tokenizer.ExplodeOptionList( + tokenizer.ExplodeOptionList( Result.Succeed( Enumerable.Empty().Concat(new[] { Token.Name("x"), Token.Name("string-seq"), Token.Value("aaa,bb,cccc"), Token.Name("switch") }), diff --git a/src/CommandLine/CommandLine.csproj b/src/CommandLine/CommandLine.csproj index 9dea8f8f..ebf27423 100644 --- a/src/CommandLine/CommandLine.csproj +++ b/src/CommandLine/CommandLine.csproj @@ -74,6 +74,9 @@ + + + @@ -82,7 +85,7 @@ - + Code @@ -148,6 +151,7 @@ +