-
Notifications
You must be signed in to change notification settings - Fork 390
/
Copy pathValidationContext.cs
56 lines (47 loc) · 2.34 KB
/
ValidationContext.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
// 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.Parsing;
using System.CommandLine.ValueSources;
namespace System.CommandLine.Validation;
/// <summary>
/// Provides the context for IValidator implementations
/// </summary>
public class ValidationContext
{
private PipelineResult pipelineResult { get; }
internal ValidationContext(PipelineResult pipelineResult, ValidationSubsystem validationSubsystem)
{
this.pipelineResult = pipelineResult;
ValidationSubsystem = validationSubsystem;
}
/// <summary>
/// Adds an error to the PipelineContext.
/// </summary>
/// <param name="error">The <see cref="ParseError"/> to add</param>
public void AddError(CliDiagnostic error)
=> pipelineResult.AddError(error);
/// <summary>
/// Gets the value for an option or argument.
/// </summary>
/// <param name="valueSymbol">The symbol to get the value for.</param>
/// <returns></returns>
public object? GetValue(CliValueSymbol valueSymbol)
=> pipelineResult.GetValue<object>(valueSymbol);
/// <summary>
/// Gets the <see cref="ValueResult"/> for the option or argument, if the user entered a value.
/// </summary>
/// <param name="valueSymbol">The symbol to get the ValueResult for.</param>
/// <returns>The ValueResult for the option or argument, or null if the user did not enter a value.</returns>
public CliValueResult? GetValueResult(CliValueSymbol valueSymbol)
=> pipelineResult.GetValueResult(valueSymbol);
/// <summary>
/// Tries to get the value for a <see cref="ValueSource"/> and returns it a an `out` parameter.
/// </summary>
/// <typeparam name="T">The type of the value to retrieve</typeparam>
/// <param name="valueSource">The <see cref="ValueSource"/> to query for its result.</param>
/// <param name="value">An output parameter that contains the value, if it is found.</param>
/// <returns>True if the <see cref="ValueSource"/> succeeded, otherwise false.</returns>
public bool TryGetTypedValue<T>(ValueSource<T> valueSource, out T? value)
=> valueSource.TryGetTypedValue(pipelineResult, out value);
internal ValidationSubsystem ValidationSubsystem { get; }
}