-
Notifications
You must be signed in to change notification settings - Fork 291
/
Copy pathParser.cs
253 lines (224 loc) · 11.9 KB
/
Parser.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
// Copyright 2005-2015 Giacomo Stelluti Scala & Contributors. All rights reserved. See License.md in the project root for license information.
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using CommandLine.Core;
using CommandLine.Text;
using CSharpx;
using RailwaySharp.ErrorHandling;
using CommandLine.Infrastructure;
namespace CommandLine
{
/// <summary>
/// Provides methods to parse command line arguments.
/// </summary>
public class Parser : IDisposable
{
private bool disposed;
private readonly ParserSettings settings;
private static readonly Lazy<Parser> DefaultParser = new Lazy<Parser>(
() => new Parser(new ParserSettings { HelpWriter = Console.Error }));
/// <summary>
/// Initializes a new instance of the <see cref="CommandLine.Parser"/> class.
/// </summary>
public Parser()
{
settings = new ParserSettings { Consumed = true };
}
/// <summary>
/// Initializes a new instance of the <see cref="Parser"/> class,
/// configurable with <see cref="ParserSettings"/> using a delegate.
/// </summary>
/// <param name="configuration">The <see cref="Action<ParserSettings>"/> delegate used to configure
/// aspects and behaviors of the parser.</param>
public Parser(Action<ParserSettings> configuration)
{
if (configuration == null) throw new ArgumentNullException("configuration");
settings = new ParserSettings();
configuration(settings);
settings.Consumed = true;
}
internal Parser(ParserSettings settings)
{
this.settings = settings;
this.settings.Consumed = true;
}
/// <summary>
/// Finalizes an instance of the <see cref="CommandLine.Parser"/> class.
/// </summary>
~Parser()
{
Dispose(false);
}
/// <summary>
/// Gets the singleton instance created with basic defaults.
/// </summary>
public static Parser Default
{
get { return DefaultParser.Value; }
}
/// <summary>
/// Gets the instance that implements <see cref="CommandLine.ParserSettings"/> in use.
/// </summary>
public ParserSettings Settings
{
get { return settings; }
}
/// <summary>
/// Parses a string array of command line arguments constructing values in an instance of type <typeparamref name="T"/>.
/// Grammar rules are defined decorating public properties with appropriate attributes.
/// </summary>
/// <typeparam name="T">Type of the target instance built with parsed value.</typeparam>
/// <param name="args">A <see cref="System.String"/> array of command line arguments, normally supplied by application entry point.</param>
/// <returns>A <see cref="CommandLine.ParserResult{T}"/> containing an instance of type <typeparamref name="T"/> with parsed values
/// and a sequence of <see cref="CommandLine.Error"/>.</returns>
/// <exception cref="System.ArgumentNullException">Thrown if one or more arguments are null.</exception>
public ParserResult<T> ParseArguments<T>(IEnumerable<string> args)
{
if (args == null) throw new ArgumentNullException("args");
var factory = typeof(T).IsMutable()
? Maybe.Just<Func<T>>(Activator.CreateInstance<T>)
: Maybe.Nothing<Func<T>>();
return MakeParserResult(
() => InstanceBuilder.Build(
factory,
(arguments, optionSpecs) => Tokenize(arguments, optionSpecs, settings),
args,
settings.NameComparer,
settings.ParsingCulture,
HandleUnknownArguments(settings.IgnoreUnknownArguments)),
settings);
}
/// <summary>
/// Parses a string array of command line arguments constructing values in an instance of type <typeparamref name="T"/>.
/// Grammar rules are defined decorating public properties with appropriate attributes.
/// </summary>
/// <typeparam name="T">Type of the target instance built with parsed value.</typeparam>
/// <param name="factory">A <see cref="System.Func{T}"/> delegate used to intitalize the target instance.</param>
/// <param name="args">A <see cref="System.String"/> array of command line arguments, normally supplied by application entry point.</param>
/// <returns>A <see cref="CommandLine.ParserResult{T}"/> containing an instance of type <typeparamref name="T"/> with parsed values
/// and a sequence of <see cref="CommandLine.Error"/>.</returns>
/// <exception cref="System.ArgumentNullException">Thrown if one or more arguments are null.</exception>
public ParserResult<T> ParseArguments<T>(Func<T> factory, IEnumerable<string> args)
where T : new()
{
if (factory == null) throw new ArgumentNullException("factory");
if (!typeof(T).IsMutable()) throw new ArgumentException("factory");
if (args == null) throw new ArgumentNullException("args");
return MakeParserResult(
() => InstanceBuilder.Build(
Maybe.Just(factory),
(arguments, optionSpecs) => Tokenize(arguments, optionSpecs, settings),
args,
settings.NameComparer,
settings.ParsingCulture,
HandleUnknownArguments(settings.IgnoreUnknownArguments)),
settings);
}
/// <summary>
/// Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from the array of types supplied by <paramref name="types"/>.
/// Grammar rules are defined decorating public properties with appropriate attributes.
/// The <see cref="CommandLine.VerbAttribute"/> must be applied to types in the array.
/// </summary>
/// <param name="args">A <see cref="System.String"/> array of command line arguments, normally supplied by application entry point.</param>
/// <param name="types">A <see cref="System.Type"/> array used to supply verb alternatives.</param>
/// <returns>A <see cref="CommandLine.ParserResult{T}"/> containing the appropriate instance with parsed values as a <see cref="System.Object"/>
/// and a sequence of <see cref="CommandLine.Error"/>.</returns>
/// <exception cref="System.ArgumentNullException">Thrown if one or more arguments are null.</exception>
/// <exception cref="System.ArgumentOutOfRangeException">Thrown if <paramref name="types"/> array is empty.</exception>
/// <remarks>All types must expose a parameterless constructor. It's stronly recommended to use a generic overload.</remarks>
public ParserResult<object> ParseArguments(IEnumerable<string> args, params Type[] types)
{
if (args == null) throw new ArgumentNullException("args");
if (types == null) throw new ArgumentNullException("types");
if (types.Length == 0) throw new ArgumentOutOfRangeException("types");
return MakeParserResult(
() => InstanceChooser.Choose(
(arguments, optionSpecs) => Tokenize(arguments, optionSpecs, settings),
types,
args,
settings.NameComparer,
settings.ParsingCulture,
HandleUnknownArguments(settings.IgnoreUnknownArguments)),
settings);
}
public ParserResult<object> ParseArguments(IEnumerable<string> args, IEnumerable<Type> types, bool useWinStyleOptions = true)
{
return ParseArguments(ParserExtensions.ConvertWindowsStyleOptions(args), types.ToArray());
}
///
/// <summary>
/// Parses a string array of command line arguments constructing values in an instance of type <typeparamref name="T"/>.
/// Grammar rules are defined decorating public properties with appropriate attributes.
/// </summary>
/// <typeparam name="T">Type of the target instance built with parsed value.</typeparam>
/// <param name="args">A <see cref="System.String"/> array of command line arguments, normally supplied by application entry point.</param>
/// <param name="useWinStyleOptions">Allows using '/' instead of '--' for option long names</param>
/// <returns>A <see cref="CommandLine.ParserResult{T}"/> containing an instance of type <typeparamref name="T"/> with parsed values
/// and a sequence of <see cref="CommandLine.Error"/>.</returns>
/// <exception cref="System.ArgumentNullException">Thrown if one or more arguments are null.</exception>
public ParserResult<T> ParseArguments<T>(IEnumerable<string> args, bool useWinStyleOptions = true)
{
if (args == null) throw new ArgumentNullException("args");
return ParseArguments<T>(ParserExtensions.ConvertWindowsStyleOptions(args));
}
/// <summary>
/// Frees resources owned by the instance.
/// </summary>
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
private static Result<IEnumerable<Token>, Error> Tokenize(
IEnumerable<string> arguments,
IEnumerable<OptionSpecification> optionSpecs,
ParserSettings settings)
{
var normalize = settings.IgnoreUnknownArguments
? toks => Tokenizer.Normalize(toks,
name => NameLookup.Contains(name, optionSpecs, settings.NameComparer) != NameLookupResult.NoOptionFound)
: new Func<IEnumerable<Token>, IEnumerable<Token>>(toks => toks);
var tokens = settings.EnableDashDash
? Tokenizer.PreprocessDashDash(
arguments,
args =>
Tokenizer.Tokenize(args, name => NameLookup.Contains(name, optionSpecs, settings.NameComparer), normalize))
: Tokenizer.Tokenize(arguments, name => NameLookup.Contains(name, optionSpecs, settings.NameComparer), normalize);
var explodedTokens = Tokenizer.ExplodeOptionList(tokens, name => NameLookup.HavingSeparator(name, optionSpecs, settings.NameComparer));
return explodedTokens;
}
private static ParserResult<T> MakeParserResult<T>(Func<ParserResult<T>> parseFunc, ParserSettings settings)
{
return DisplayHelp(
parseFunc(),
settings.HelpWriter);
}
private static IEnumerable<ErrorType> HandleUnknownArguments(bool ignoreUnknownArguments)
{
return ignoreUnknownArguments
? Enumerable.Empty<ErrorType>().Concat(ErrorType.UnknownOptionError)
: Enumerable.Empty<ErrorType>();
}
private static ParserResult<T> DisplayHelp<T>(ParserResult<T> parserResult, TextWriter helpWriter)
{
parserResult.WithNotParsed(
errors =>
Maybe.Merge(errors.ToMaybe(), helpWriter.ToMaybe())
.Do((_, writer) => writer.Write(HelpText.AutoBuild(parserResult)))
);
return parserResult;
}
private void Dispose(bool disposing)
{
if (disposed) return;
if (disposing)
{
if (settings != null)
settings.Dispose();
disposed = true;
}
}
}
}