Dispose command line args enumerator

This commit is contained in:
Hao Kung 2016-07-05 15:20:17 -07:00
Родитель e53f86abe5
Коммит d8f96d72e8
1 изменённых файлов: 71 добавлений и 69 удалений

Просмотреть файл

@ -46,87 +46,89 @@ namespace Microsoft.Extensions.Configuration.CommandLine
var data = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase); var data = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
string key, value; string key, value;
var enumerator = Args.GetEnumerator(); using (var enumerator = Args.GetEnumerator())
while (enumerator.MoveNext())
{ {
var currentArg = enumerator.Current; while (enumerator.MoveNext())
var keyStartIndex = 0; {
var currentArg = enumerator.Current;
var keyStartIndex = 0;
if (currentArg.StartsWith("--")) if (currentArg.StartsWith("--"))
{
keyStartIndex = 2;
}
else if (currentArg.StartsWith("-"))
{
keyStartIndex = 1;
}
else if (currentArg.StartsWith("/"))
{
// "/SomeSwitch" is equivalent to "--SomeSwitch" when interpreting switch mappings
// So we do a conversion to simplify later processing
currentArg = string.Format("--{0}", currentArg.Substring(1));
keyStartIndex = 2;
}
var separator = currentArg.IndexOf('=');
if (separator < 0)
{
// If there is neither equal sign nor prefix in current arugment, it is an invalid format
if (keyStartIndex == 0)
{ {
throw new FormatException(Resources.FormatError_UnrecognizedArgumentFormat(currentArg)); keyStartIndex = 2;
}
else if (currentArg.StartsWith("-"))
{
keyStartIndex = 1;
}
else if (currentArg.StartsWith("/"))
{
// "/SomeSwitch" is equivalent to "--SomeSwitch" when interpreting switch mappings
// So we do a conversion to simplify later processing
currentArg = string.Format("--{0}", currentArg.Substring(1));
keyStartIndex = 2;
} }
// If the switch is a key in given switch mappings, interpret it var separator = currentArg.IndexOf('=');
if (_switchMappings != null && _switchMappings.ContainsKey(currentArg))
if (separator < 0)
{ {
key = _switchMappings[currentArg]; // If there is neither equal sign nor prefix in current arugment, it is an invalid format
if (keyStartIndex == 0)
{
throw new FormatException(Resources.FormatError_UnrecognizedArgumentFormat(currentArg));
}
// If the switch is a key in given switch mappings, interpret it
if (_switchMappings != null && _switchMappings.ContainsKey(currentArg))
{
key = _switchMappings[currentArg];
}
// If the switch starts with a single "-" and it isn't in given mappings , it is an invalid usage
else if (keyStartIndex == 1)
{
throw new FormatException(Resources.FormatError_ShortSwitchNotDefined(currentArg));
}
// Otherwise, use the switch name directly as a key
else
{
key = currentArg.Substring(keyStartIndex);
}
var previousKey = enumerator.Current;
if (!enumerator.MoveNext())
{
throw new FormatException(Resources.FormatError_ValueIsMissing(previousKey));
}
value = enumerator.Current;
} }
// If the switch starts with a single "-" and it isn't in given mappings , it is an invalid usage
else if (keyStartIndex == 1)
{
throw new FormatException(Resources.FormatError_ShortSwitchNotDefined(currentArg));
}
// Otherwise, use the switch name directly as a key
else else
{ {
key = currentArg.Substring(keyStartIndex); var keySegment = currentArg.Substring(0, separator);
// If the switch is a key in given switch mappings, interpret it
if (_switchMappings != null && _switchMappings.ContainsKey(keySegment))
{
key = _switchMappings[keySegment];
}
// If the switch starts with a single "-" and it isn't in given mappings , it is an invalid usage
else if (keyStartIndex == 1)
{
throw new FormatException(Resources.FormatError_ShortSwitchNotDefined(currentArg));
}
// Otherwise, use the switch name directly as a key
else
{
key = currentArg.Substring(keyStartIndex, separator - keyStartIndex);
}
value = currentArg.Substring(separator + 1);
} }
var previousKey = enumerator.Current; // Override value when key is duplicated. So we always have the last argument win.
if (!enumerator.MoveNext()) data[key] = value;
{
throw new FormatException(Resources.FormatError_ValueIsMissing(previousKey));
}
value = enumerator.Current;
} }
else
{
var keySegment = currentArg.Substring(0, separator);
// If the switch is a key in given switch mappings, interpret it
if (_switchMappings != null && _switchMappings.ContainsKey(keySegment))
{
key = _switchMappings[keySegment];
}
// If the switch starts with a single "-" and it isn't in given mappings , it is an invalid usage
else if (keyStartIndex == 1)
{
throw new FormatException(Resources.FormatError_ShortSwitchNotDefined(currentArg));
}
// Otherwise, use the switch name directly as a key
else
{
key = currentArg.Substring(keyStartIndex, separator - keyStartIndex);
}
value = currentArg.Substring(separator + 1);
}
// Override value when key is duplicated. So we always have the last argument win.
data[key] = value;
} }
Data = data; Data = data;