-
Notifications
You must be signed in to change notification settings - Fork 291
/
Copy pathParserSettings.cs
184 lines (160 loc) · 6.21 KB
/
ParserSettings.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
// Copyright 2005-2015 Giacomo Stelluti Scala & Contributors. All rights reserved. See License.md in the project root for license information.
using System;
using System.Globalization;
using System.IO;
using CommandLine.Infrastructure;
namespace CommandLine
{
/// <summary>
/// Provides settings for <see cref="CommandLine.Parser"/>. Once consumed cannot be reused.
/// </summary>
public class ParserSettings : IDisposable
{
private const int DefaultMaximumLength = 80; // default console width
private bool disposed;
private bool caseSensitive;
private bool caseInsensitiveEnumValues;
private TextWriter helpWriter;
private bool ignoreUnknownArguments;
private CultureInfo parsingCulture;
private bool enableDashDash;
private int maximumDisplayWidth;
/// <summary>
/// Initializes a new instance of the <see cref="ParserSettings"/> class.
/// </summary>
public ParserSettings()
{
caseSensitive = true;
caseInsensitiveEnumValues = false;
parsingCulture = CultureInfo.InvariantCulture;
try
{
maximumDisplayWidth = Console.WindowWidth;
}
catch (IOException)
{
maximumDisplayWidth = DefaultMaximumLength;
}
}
/// <summary>
/// Object Factory to use for new instances
/// </summary>
public static IObjectFactory ObjectFactory { get; set; } = new DefaultObjectFactory();
/// <summary>
/// Finalizes an instance of the <see cref="CommandLine.ParserSettings"/> class.
/// </summary>
~ParserSettings()
{
Dispose(false);
}
/// <summary>
/// Gets or sets a value indicating whether perform case sensitive comparisons.
/// Note that case insensitivity only applies to <i>parameters</i>, not the values
/// assigned to them (for example, enum parsing).
/// </summary>
public bool CaseSensitive
{
get { return caseSensitive; }
set { PopsicleSetter.Set(Consumed, ref caseSensitive, value); }
}
/// <summary>
/// Gets or sets a value indicating whether perform case sensitive comparisons of <i>values</i>.
/// Note that case insensitivity only applies to <i>values</i>, not the parameters.
/// </summary>
public bool CaseInsensitiveEnumValues
{
get { return caseInsensitiveEnumValues; }
set { PopsicleSetter.Set(Consumed, ref caseInsensitiveEnumValues, value); }
}
/// <summary>
/// Gets or sets the culture used when parsing arguments to typed properties.
/// </summary>
/// <remarks>
/// Default is invariant culture, <see cref="System.Globalization.CultureInfo.InvariantCulture"/>.
/// </remarks>
public CultureInfo ParsingCulture
{
get { return parsingCulture; }
set
{
if (value == null) throw new ArgumentNullException("value");
PopsicleSetter.Set(Consumed, ref parsingCulture, value);
}
}
/// <summary>
/// Gets or sets the <see cref="System.IO.TextWriter"/> used for help method output.
/// Setting this property to null, will disable help screen.
/// </summary>
/// <remarks>
/// It is the caller's responsibility to dispose or close the <see cref="TextWriter"/>.
/// </remarks>
public TextWriter HelpWriter
{
get { return helpWriter; }
set { PopsicleSetter.Set(Consumed, ref helpWriter, value); }
}
/// <summary>
/// Gets or sets a value indicating whether the parser shall move on to the next argument and ignore the given argument if it
/// encounter an unknown arguments
/// </summary>
/// <value>
/// <c>true</c> to allow parsing the arguments with different class options that do not have all the arguments.
/// </value>
/// <remarks>
/// This allows fragmented version class parsing, useful for project with add-on where add-ons also requires command line arguments but
/// when these are unknown by the main program at build time.
/// </remarks>
public bool IgnoreUnknownArguments
{
get { return ignoreUnknownArguments; }
set { PopsicleSetter.Set(Consumed, ref ignoreUnknownArguments, value); }
}
/// <summary>
/// Gets or sets a value indicating whether enable double dash '--' syntax,
/// that forces parsing of all subsequent tokens as values.
/// </summary>
public bool EnableDashDash
{
get { return enableDashDash; }
set { PopsicleSetter.Set(Consumed, ref enableDashDash, value); }
}
/// <summary>
/// Gets or sets the maximum width of the display. This determines word wrap when displaying the text.
/// </summary>
public int MaximumDisplayWidth
{
get { return maximumDisplayWidth; }
set { maximumDisplayWidth = value; }
}
internal StringComparer NameComparer
{
get
{
return CaseSensitive
? StringComparer.Ordinal
: StringComparer.OrdinalIgnoreCase;
}
}
internal bool Consumed { get; set; }
/// <summary>
/// Frees resources owned by the instance.
/// </summary>
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
private void Dispose(bool disposing)
{
if (disposed)
{
return;
}
if (disposing)
{
// Do not dispose HelpWriter. It is the caller's responsibility.
disposed = true;
}
}
}
}