-
Notifications
You must be signed in to change notification settings - Fork 395
/
Copy pathArgumentExtensions.cs
240 lines (215 loc) · 10.9 KB
/
ArgumentExtensions.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
// 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.Collections.Generic;
using System.CommandLine.Parsing;
using System.CommandLine.Completions;
using System.IO;
namespace System.CommandLine
{
/// <summary>
/// Provides extension methods for <see cref="Argument" />.
/// </summary>
/// <seealso href="/dotnet/standard/commandline/syntax">Command-line syntax overview</seealso>
/// <seealso href="/dotnet/standard/commandline/define-commands">How to define commands, options, and arguments</seealso>
public static class ArgumentExtensions
{
/// <summary>
/// Adds completions for an argument.
/// </summary>
/// <typeparam name="TArgument">The type of the argument.</typeparam>
/// <param name="argument">The argument for which to add completions.</param>
/// <param name="values">The completions to add.</param>
/// <returns>The configured argument.</returns>
/// <seealso href="/dotnet/standard/commandline/tab-completion">Tab completion</seealso>
public static TArgument AddCompletions<TArgument>(
this TArgument argument,
params string[] values)
where TArgument : Argument
{
argument.Completions.Add(values);
return argument;
}
/// <summary>
/// Adds completions for an option.
/// </summary>
/// <typeparam name="TArgument">The type of the argument.</typeparam>
/// <param name="argument">The argument for which to add completions.</param>
/// <param name="complete">A <see cref="CompletionDelegate"/> that will be called to provide completions.</param>
/// <returns>The option being extended.</returns>
/// <seealso href="/dotnet/standard/commandline/tab-completion">Tab completion</seealso>
public static TArgument AddCompletions<TArgument>(
this TArgument argument,
Func<CompletionContext, IEnumerable<string>> complete)
where TArgument : Argument
{
argument.Completions.Add(complete);
return argument;
}
/// <summary>
/// Adds completions for an argument.
/// </summary>
/// <typeparam name="TArgument">The type of the argument.</typeparam>
/// <param name="argument">The argument for which to add completions.</param>
/// <param name="complete">A <see cref="CompletionDelegate"/> that will be called to provide completions.</param>
/// <returns>The configured argument.</returns>
/// <seealso href="/dotnet/standard/commandline/tab-completion">Tab completion</seealso>
public static TArgument AddCompletions<TArgument>(
this TArgument argument,
CompletionDelegate complete)
where TArgument : Argument
{
argument.Completions.Add(complete);
return argument;
}
/// <summary>
/// Configures an argument to accept only the specified values, and to suggest them as command line completions.
/// </summary>
/// <param name="argument">The argument to configure.</param>
/// <param name="values">The values that are allowed for the argument.</param>
/// <typeparam name="TArgument">The type of the argument.</typeparam>
/// <returns>The configured argument.</returns>
/// <seealso href="/dotnet/standard/commandline/define-commands">How to define commands, options, and arguments</seealso>
/// <seealso href="/dotnet/standard/commandline/tab-completion">Tab completion</seealso>
public static TArgument FromAmong<TArgument>(
this TArgument argument,
params string[] values)
where TArgument : Argument
{
argument.AddAllowedValues(values);
argument.Completions.Add(values);
return argument;
}
/// <summary>
/// Configures an argument to accept only values corresponding to an existing file.
/// </summary>
/// <param name="argument">The argument to configure.</param>
/// <returns>The configured argument.</returns>
/// <seealso href="/dotnet/standard/commandline/model-binding">How to bind arguments to handlers</seealso>
public static Argument<FileInfo> ExistingOnly(this Argument<FileInfo> argument)
{
argument.AddValidator(Validate.FileExists);
return argument;
}
/// <summary>
/// Configures an argument to accept only values corresponding to an existing directory.
/// </summary>
/// <param name="argument">The argument to configure.</param>
/// <returns>The configured argument.</returns>
/// <seealso href="/dotnet/standard/commandline/model-binding">How to bind arguments to handlers</seealso>
public static Argument<DirectoryInfo> ExistingOnly(this Argument<DirectoryInfo> argument)
{
argument.AddValidator(Validate.DirectoryExists);
return argument;
}
/// <summary>
/// Configures an argument to accept only values corresponding to an existing file or directory.
/// </summary>
/// <param name="argument">The argument to configure.</param>
/// <returns>The configured argument.</returns>
/// <seealso href="/dotnet/standard/commandline/model-binding">How to bind arguments to handlers</seealso>
public static Argument<FileSystemInfo> ExistingOnly(this Argument<FileSystemInfo> argument)
{
argument.AddValidator(Validate.FileOrDirectoryExists);
return argument;
}
/// <summary>
/// Configures an argument to accept only values corresponding to a existing files or directories.
/// </summary>
/// <param name="argument">The argument to configure.</param>
/// <returns>The configured argument.</returns>
/// <seealso href="/dotnet/standard/commandline/model-binding">How to bind arguments to handlers</seealso>
public static Argument<T> ExistingOnly<T>(this Argument<T> argument)
where T : IEnumerable<FileSystemInfo>
{
if (typeof(IEnumerable<FileInfo>).IsAssignableFrom(typeof(T)))
{
argument.AddValidator(Validate.FileExists);
}
else if (typeof(IEnumerable<DirectoryInfo>).IsAssignableFrom(typeof(T)))
{
argument.AddValidator(Validate.DirectoryExists);
}
else
{
argument.AddValidator(Validate.FileOrDirectoryExists);
}
return argument;
}
/// <summary>
/// Configures an argument to accept only values representing legal file paths.
/// </summary>
/// <param name="argument">The argument to configure.</param>
/// <returns>The configured argument.</returns>
/// <seealso href="/dotnet/standard/commandline/model-binding">How to bind arguments to handlers</seealso>
public static TArgument LegalFilePathsOnly<TArgument>(
this TArgument argument)
where TArgument : Argument
{
var invalidPathChars = Path.GetInvalidPathChars();
argument.AddValidator(result =>
{
for (var i = 0; i < result.Tokens.Count; i++)
{
var token = result.Tokens[i];
// File class no longer check invalid character
// https://blogs.msdn.microsoft.com/jeremykuhne/2018/03/09/custom-directory-enumeration-in-net-core-2-1/
var invalidCharactersIndex = token.Value.IndexOfAny(invalidPathChars);
if (invalidCharactersIndex >= 0)
{
result.ErrorMessage = result.LocalizationResources.InvalidCharactersInPath(token.Value[invalidCharactersIndex]);
}
}
});
return argument;
}
/// <summary>
/// Configures an argument to accept only values representing legal file names.
/// </summary>
/// <remarks>A parse error will result, for example, if file path separators are found in the parsed value.</remarks>
/// <param name="argument">The argument to configure.</param>
/// <returns>The configured argument.</returns>
/// <seealso href="/dotnet/standard/commandline/model-binding">How to bind arguments to handlers</seealso>
public static TArgument LegalFileNamesOnly<TArgument>(
this TArgument argument)
where TArgument : Argument
{
var invalidFileNameChars = Path.GetInvalidFileNameChars();
argument.AddValidator(result =>
{
for (var i = 0; i < result.Tokens.Count; i++)
{
var token = result.Tokens[i];
var invalidCharactersIndex = token.Value.IndexOfAny(invalidFileNameChars);
if (invalidCharactersIndex >= 0)
{
result.ErrorMessage = result.LocalizationResources.InvalidCharactersInFileName(token.Value[invalidCharactersIndex]);
}
}
});
return argument;
}
/// <summary>
/// Parses a command line string value using an argument.
/// </summary>
/// <remarks>The command line string input will be split into tokens as if it had been passed on the command line.</remarks>
/// <param name="argument">The argument to use to parse the command line input.</param>
/// <param name="commandLine">A command line string to parse, which can include spaces and quotes equivalent to what can be entered into a terminal.</param>
/// <returns>A parse result describing the outcome of the parse operation.</returns>
/// <seealso href="/dotnet/standard/commandline/syntax#directives">Command-line syntax overview - Directives</seealso>
public static ParseResult Parse(
this Argument argument,
string commandLine) =>
argument.GetOrCreateDefaultSimpleParser().Parse(commandLine);
/// <summary>
/// Parses a command line string value using an argument.
/// </summary>
/// <param name="argument">The argument to use to parse the command line input.</param>
/// <param name="args">The string arguments to parse.</param>
/// <returns>A parse result describing the outcome of the parse operation.</returns>
/// <seealso href="/dotnet/standard/commandline/syntax#directives">Command-line syntax overview - Directives</seealso>
public static ParseResult Parse(
this Argument argument,
string[] args) =>
argument.GetOrCreateDefaultSimpleParser().Parse(args);
}
}