-
Notifications
You must be signed in to change notification settings - Fork 390
/
Copy pathCliArgumentResultInternal.cs
245 lines (211 loc) · 10.6 KB
/
CliArgumentResultInternal.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
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.CommandLine.Binding;
using System.Linq;
namespace System.CommandLine.Parsing
{
/// <summary>
/// A result produced when parsing an <see cref="Argument"/>.
/// </summary>
internal sealed class CliArgumentResultInternal : CliSymbolResultInternal
{
private ArgumentConversionResult? _conversionResult;
private bool _onlyTakeHasBeenCalled;
internal CliArgumentResultInternal(
CliArgument argument,
SymbolResultTree symbolResultTree,
CliSymbolResultInternal? parent) : base(symbolResultTree, parent)
{
Argument = argument ?? throw new ArgumentNullException(nameof(argument));
}
private CliValueResult? _valueResult;
public CliValueResult ValueResult
{
get
{
if (_valueResult is null)
{
// This is not lazy on the assumption that almost everything the user enters will be used, and ArgumentResult is no longer used for defaults
// TODO: Make sure errors are added
var conversionValue = GetArgumentConversionResult().Value;
var locations = Tokens.Select(token => token.Location).ToArray();
_valueResult = new CliValueResult(Argument, conversionValue, locations, CliArgumentResultInternal.GetValueResultOutcome(GetArgumentConversionResult()?.Result)); // null is temporary here
}
return _valueResult;
}
}
/// <summary>
/// The argument to which the result applies.
/// </summary>
public CliArgument Argument { get; }
internal bool ArgumentLimitReached => Argument.Arity.MaximumNumberOfValues == (_tokens?.Count ?? 0);
internal ArgumentConversionResult GetArgumentConversionResult() =>
_conversionResult ??= ValidateAndConvert(useValidators: true);
/// <summary>
/// Gets the parsed value or the default value for <see cref="Argument"/>.
/// </summary>
/// <returns>The parsed value or the default value for <see cref="Argument"/></returns>
public T GetValueOrDefault<T>() =>
(_conversionResult ??= ValidateAndConvert(useValidators: false))
.ConvertIfNeeded(typeof(T))
.GetValueOrDefault<T>();
// TODO: Fix cref for unmatched tokens
/// <summary>
/// Specifies the maximum number of tokens to consume for the argument. Remaining tokens are passed on and can be consumed by later arguments, or will otherwise be added to see cref="ParseResult.UnmatchedTokens"/>
/// </summary>
/// <param name="numberOfTokens">The number of tokens to take. The rest are passed on.</param>
/// <exception cref="ArgumentOutOfRangeException">numberOfTokens - Value must be at least 1.</exception>
/// <exception cref="InvalidOperationException">Thrown if this method is called more than once.</exception>
/// <exception cref="NotSupportedException">Thrown if this method is called by Option-owned CliArgumentResultInternal.</exception>
public void OnlyTake(int numberOfTokens)
{
if (numberOfTokens < 0)
{
throw new ArgumentOutOfRangeException(nameof(numberOfTokens), numberOfTokens, "Value must be at least 1.");
}
if (_onlyTakeHasBeenCalled)
{
throw new InvalidOperationException($"{nameof(OnlyTake)} can only be called once.");
}
if (Parent is CliOptionResultInternal)
{
throw new NotSupportedException($"{nameof(OnlyTake)} is supported only for a {nameof(CliCommand)}-owned {nameof(CliArgumentResultInternal)}");
}
_onlyTakeHasBeenCalled = true;
if (_tokens is null || numberOfTokens >= _tokens.Count)
{
return;
}
CliCommandResultInternal parent = (CliCommandResultInternal)Parent!;
var arguments = parent.Command.Arguments;
int argumentIndex = arguments.IndexOf(Argument);
int nextArgumentIndex = argumentIndex + 1;
int tokensToPass = _tokens.Count - numberOfTokens;
while (tokensToPass > 0 && nextArgumentIndex < arguments.Count)
{
CliArgument nextArgument = parent.Command.Arguments[nextArgumentIndex];
CliArgumentResultInternal nextArgumentResult;
if (SymbolResultTree.TryGetValue(nextArgument, out CliSymbolResultInternal? symbolResult))
{
nextArgumentResult = (CliArgumentResultInternal)symbolResult;
}
else
{
// it might have not been parsed yet or due too few arguments, so we add it now
nextArgumentResult = new CliArgumentResultInternal(nextArgument, SymbolResultTree, Parent);
SymbolResultTree.Add(nextArgument, nextArgumentResult);
}
while (!nextArgumentResult.ArgumentLimitReached && tokensToPass > 0)
{
CliToken toPass = _tokens[numberOfTokens];
_tokens.RemoveAt(numberOfTokens);
nextArgumentResult.AddToken(toPass);
--tokensToPass;
}
nextArgumentIndex++;
}
CliCommandResultInternal rootCommand = parent;
// When_tokens_are_passed_on_by_custom_parser_on_last_argument_then_they_become_unmatched_tokens
while (tokensToPass > 0)
{
CliToken unmatched = _tokens[numberOfTokens];
_tokens.RemoveAt(numberOfTokens);
SymbolResultTree.AddUnmatchedToken(unmatched, parent, rootCommand);
--tokensToPass;
}
}
/// <inheritdoc/>
public override string ToString() => $"{nameof(CliArgumentResultInternal)} {Argument.Name}: {string.Join(" ", Tokens.Select(t => $"<{t.Value}>"))}";
/// <inheritdoc/>
internal override void AddError(string errorMessage, CliValueResult valueResult)
{
SymbolResultTree.AddError(new CliDiagnostic(new("", "", errorMessage, CliDiagnosticSeverity.Warning, null), [], cliSymbolResult: valueResult));
_conversionResult = ArgumentConversionResult.Failure(this, errorMessage, ArgumentConversionResultType.Failed);
}
private ArgumentConversionResult ValidateAndConvert(bool useValidators)
{
if (!ArgumentArity.Validate(this, out ArgumentConversionResult? arityFailure))
{
return ReportErrorIfNeeded(arityFailure);
}
// TODO: validators
/*
// There is nothing that stops user-defined Validator from calling ArgumentResult.GetValueOrDefault.
// In such cases, we can't call the validators again, as it would create infinite recursion.
// GetArgumentConversionResult => ValidateAndConvert => Validator
// => GetValueOrDefault => ValidateAndConvert (again)
if (useValidators && Argument.HasValidators)
{
for (var i = 0; i < Argument.Validators.Count; i++)
{
Argument.Validators[i](this);
}
// validator provided by the user might report an error, which sets _conversionResult
if (_conversionResult is not null)
{
return _conversionResult;
}
}
*/
// TODO: defaults
/*
if (Parent!.UseDefaultValueFor(this))
{
var defaultValue = Argument.GetDefaultValue(this);
// default value factory provided by the user might report an error, which sets _conversionResult
return _conversionResult ?? ArgumentConversionResult.Success(this, defaultValue);
}
*/
if (Argument.ConvertArguments is null)
{
return Argument.Arity.MaximumNumberOfValues switch
{
1 when _tokens is null => ArgumentConversionResult.None(this),
1 when _tokens is not null => ArgumentConversionResult.Success(this, _tokens[0]),
_ => ArgumentConversionResult.Success(this, Tokens)
};
}
var success = Argument.ConvertArguments(this, out var value);
// default value factory provided by the user might report an error, which sets _conversionResult
if (_conversionResult is not null)
{
return _conversionResult;
}
if (value is ArgumentConversionResult conversionResult)
{
return ReportErrorIfNeeded(conversionResult);
}
if (success)
{
return ArgumentConversionResult.Success(this, value);
}
return ReportErrorIfNeeded(
ArgumentConversionResult.ArgumentConversionCannotParse(
this,
Argument.ValueType,
Tokens.Count > 0
? Tokens[0].Value
: ""));
ArgumentConversionResult ReportErrorIfNeeded(ArgumentConversionResult result)
{
if (result.Result >= ArgumentConversionResultType.Failed)
{
SymbolResultTree.AddError(new CliDiagnostic(new("ArgumentConversionResultTypeFailed", "Type Conversion Failed", result.ErrorMessage!, CliDiagnosticSeverity.Warning, null), [], cliSymbolResult: ValueResult));
}
return result;
}
}
/// <summary>
/// Since Option.Argument is an internal implementation detail, this ArgumentResult applies to the OptionResult in public API if the parent is an OptionResult.
/// </summary>
private CliSymbolResultInternal AppliesToPublicSymbolResult =>
Parent is CliOptionResultInternal optionResult ? optionResult : this;
internal static ValueResultOutcome GetValueResultOutcome(ArgumentConversionResultType? resultType)
=> resultType switch
{
ArgumentConversionResultType.NoArgument => ValueResultOutcome.NoArgument,
ArgumentConversionResultType.Successful => ValueResultOutcome.Success,
_ => ValueResultOutcome.HasErrors
};
}
}