-
Notifications
You must be signed in to change notification settings - Fork 416
Expand file tree
/
Copy pathArgumentValidation.cs
More file actions
209 lines (185 loc) · 8.3 KB
/
ArgumentValidation.cs
File metadata and controls
209 lines (185 loc) · 8.3 KB
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
// 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.IO;
using System.Linq;
namespace System.CommandLine
{
/// <summary>
/// Provides extension methods for <see cref="Argument" />.
/// </summary>
public static class ArgumentValidation
{
/// <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>
public static Argument<FileInfo> AcceptExistingOnly(this Argument<FileInfo> argument)
{
argument.Validators.Add(FileOrDirectoryExists<FileInfo>);
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>
public static Argument<DirectoryInfo> AcceptExistingOnly(this Argument<DirectoryInfo> argument)
{
argument.Validators.Add(FileOrDirectoryExists<DirectoryInfo>);
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>
public static Argument<FileSystemInfo> AcceptExistingOnly(this Argument<FileSystemInfo> argument)
{
argument.Validators.Add(FileOrDirectoryExists<FileSystemInfo>);
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>
public static Argument<T> AcceptExistingOnly<T>(this Argument<T> argument)
where T : IEnumerable<FileSystemInfo>
{
if (typeof(IEnumerable<FileInfo>).IsAssignableFrom(typeof(T)))
{
argument.Validators.Add(FileOrDirectoryExists<FileInfo>);
}
else if (typeof(IEnumerable<DirectoryInfo>).IsAssignableFrom(typeof(T)))
{
argument.Validators.Add(FileOrDirectoryExists<DirectoryInfo>);
}
else
{
argument.Validators.Add(FileOrDirectoryExists<FileSystemInfo>);
}
return argument;
}
/// <summary>
/// Configures the 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>
public static Argument<T> AcceptLegalFileNamesOnly<T>(this Argument<T> argument)
{
argument.Validators.Add(static result =>
{
var invalidFileNameChars = Path.GetInvalidFileNameChars();
for (var i = 0; i < result.Tokens.Count; i++)
{
var token = result.Tokens[i];
var invalidCharactersIndex = token.Value.IndexOfAny(invalidFileNameChars);
if (invalidCharactersIndex >= 0)
{
result.AddError(LocalizationResources.InvalidCharactersInFileName(token.Value[invalidCharactersIndex]));
}
}
});
return argument;
}
/// <summary>
/// Configures the argument to accept only values representing legal file paths.
/// </summary>
public static Argument<T> AcceptLegalFilePathsOnly<T>(this Argument<T> argument)
{
argument.Validators.Add(static result =>
{
var invalidPathChars = Path.GetInvalidPathChars();
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.AddError(LocalizationResources.InvalidCharactersInPath(token.Value[invalidCharactersIndex]));
}
}
});
return argument;
}
/// <summary>
/// Configures the 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>
public static Argument<T> AcceptOnlyFromAmong<T>(
this Argument<T> argument,
params string[] values)
{
return AcceptOnlyFromAmong(argument, StringComparer.Ordinal, values);
}
/// <summary>
/// Configures the argument to accept only the specified values using the specified comparer, and to suggest them as command line completions.
/// </summary>
/// <param name="argument">The argument to configure.</param>
/// <param name="comparer">The comparer used to match argument values against the allowed values.</param>
/// <param name="values">The values that are allowed for the argument.</param>
public static Argument<T> AcceptOnlyFromAmong<T>(
this Argument<T> argument,
StringComparer comparer,
params string[] values)
{
if (values?.Length > 0)
{
argument.Validators.Clear();
argument.Validators.Add(UnrecognizedArgumentError);
argument.CompletionSources.Clear();
argument.CompletionSources.Add(values);
}
return argument;
void UnrecognizedArgumentError(ArgumentResult argumentResult)
{
for (var i = 0; i < argumentResult.Tokens.Count; i++)
{
var token = argumentResult.Tokens[i];
if (token.Symbol is null || token.Symbol == argument)
{
if (!values.Contains(token.Value, comparer))
{
argumentResult.AddError(LocalizationResources.UnrecognizedArgument(token.Value, values));
}
}
}
}
}
private static void FileOrDirectoryExists<T>(ArgumentResult result)
where T : FileSystemInfo
{
// both FileInfo and DirectoryInfo are sealed so following checks are enough
bool checkFile = typeof(T) != typeof(DirectoryInfo);
bool checkDirectory = typeof(T) != typeof(FileInfo);
for (var i = 0; i < result.Tokens.Count; i++)
{
var token = result.Tokens[i];
if (checkFile && checkDirectory)
{
#if NET7_0_OR_GREATER
if (!Path.Exists(token.Value))
#else
if (!Directory.Exists(token.Value) && !File.Exists(token.Value))
#endif
{
result.AddError(LocalizationResources.FileOrDirectoryDoesNotExist(token.Value));
}
}
else if (checkDirectory && !Directory.Exists(token.Value))
{
result.AddError(LocalizationResources.DirectoryDoesNotExist(token.Value));
}
else if (checkFile && !Directory.Exists(token.Value) && !File.Exists(token.Value))
{
result.AddError(LocalizationResources.FileDoesNotExist(token.Value));
}
}
}
}
}