2008-12-09 20:55:34 +00:00
|
|
|
|
#region CPL License
|
|
|
|
|
/*
|
|
|
|
|
Nuclex Framework
|
2009-01-07 19:05:29 +00:00
|
|
|
|
Copyright (C) 2002-2009 Nuclex Development Labs
|
2008-12-09 20:55:34 +00:00
|
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
|
modify it under the terms of the IBM Common Public License as
|
|
|
|
|
published by the IBM Corporation; either version 1.0 of the
|
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
IBM Common Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the IBM Common Public
|
|
|
|
|
License along with this library
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2008-12-11 20:15:21 +00:00
|
|
|
|
using System.Diagnostics;
|
2008-12-09 20:55:34 +00:00
|
|
|
|
|
2008-12-11 20:19:29 +00:00
|
|
|
|
#if ENABLE_BROKEN_COMMAND_LINE_PARSER
|
|
|
|
|
|
2008-12-09 20:55:34 +00:00
|
|
|
|
namespace Nuclex.Support.Parsing {
|
|
|
|
|
|
|
|
|
|
partial class CommandLine {
|
|
|
|
|
|
2008-12-11 20:15:21 +00:00
|
|
|
|
/// <summary>Option being specified on an application's command line</summary>
|
|
|
|
|
public class Option {
|
|
|
|
|
|
|
|
|
|
/// <summary>Initializes a new option with only a name</summary>
|
|
|
|
|
/// <param name="raw">
|
|
|
|
|
/// String segment containing the entire option as it was given on the command line
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <param name="nameStart">Absolute index the option name starts at</param>
|
|
|
|
|
/// <param name="nameLength">Number of characters in the option name</param>
|
|
|
|
|
/// <returns>The newly created option</returns>
|
|
|
|
|
internal Option(
|
|
|
|
|
StringSegment raw,
|
|
|
|
|
int nameStart, int nameLength
|
|
|
|
|
)
|
|
|
|
|
: this(raw, nameStart, nameLength, -1, -1) { }
|
|
|
|
|
|
|
|
|
|
/// <summary>Creates a new option with a name and an assigned value</summary>
|
|
|
|
|
/// <param name="raw">
|
|
|
|
|
/// String segment containing the entire option as it was given on the command line
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <param name="nameStart">Absolute index the option name starts at</param>
|
|
|
|
|
/// <param name="nameLength">Number of characters in the option name</param>
|
|
|
|
|
/// <param name="valueStart">Absolute index the value starts at</param>
|
|
|
|
|
/// <param name="valueLength">Number of characters in the value</param>
|
|
|
|
|
/// <returns>The newly created option</returns>
|
|
|
|
|
internal Option(
|
|
|
|
|
StringSegment raw,
|
|
|
|
|
int nameStart, int nameLength,
|
|
|
|
|
int valueStart, int valueLength
|
|
|
|
|
) {
|
|
|
|
|
this.raw = raw;
|
|
|
|
|
this.nameStart = nameStart;
|
|
|
|
|
this.nameLength = nameLength;
|
|
|
|
|
this.valueStart = valueStart;
|
|
|
|
|
this.valueLength = valueLength;
|
|
|
|
|
|
|
|
|
|
Debug.Assert(this.nameStart != -1, "Name start index must not be -1");
|
|
|
|
|
Debug.Assert(this.nameLength != -1, "Name length must not be -1");
|
|
|
|
|
}
|
2008-12-09 20:55:34 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>Contains the raw string the command line argument was parsed from</summary>
|
2008-12-11 20:15:21 +00:00
|
|
|
|
public string Raw {
|
|
|
|
|
get { return this.raw.ToString(); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>Characters used to initiate this option</summary>
|
|
|
|
|
public string Initiator {
|
|
|
|
|
get {
|
|
|
|
|
return this.raw.Text.Substring(
|
|
|
|
|
this.raw.Offset, this.nameStart - this.raw.Offset
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>Name of the command line option</summary>
|
|
|
|
|
public string Name {
|
|
|
|
|
get {
|
|
|
|
|
return this.raw.Text.Substring(this.nameStart, this.nameLength);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>Characters used to associate a value to this option</summary>
|
|
|
|
|
public string Associator {
|
|
|
|
|
get {
|
|
|
|
|
int associatorStart = this.nameStart + this.nameLength;
|
|
|
|
|
|
|
|
|
|
if(this.valueStart == -1) {
|
|
|
|
|
int characterCount = (this.raw.Offset + this.raw.Count) - associatorStart;
|
|
|
|
|
if(characterCount == 0) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return this.raw.Text.Substring(associatorStart, 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>Name of the command line option</summary>
|
|
|
|
|
public string Value {
|
|
|
|
|
get {
|
|
|
|
|
if(this.valueStart == -1) {
|
|
|
|
|
return null;
|
|
|
|
|
} else {
|
|
|
|
|
return this.raw.Text.Substring(this.valueStart, this.valueLength);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Contains the entire option as it was specified on the command line
|
|
|
|
|
/// </summary>
|
|
|
|
|
private StringSegment raw;
|
|
|
|
|
|
|
|
|
|
/// <summary>Absolute index in the raw string the option name starts at</summary>
|
|
|
|
|
private int nameStart;
|
|
|
|
|
/// <summary>Number of characters in the option name</summary>
|
|
|
|
|
private int nameLength;
|
|
|
|
|
/// <summary>Absolute index in the raw string the value starts at</summary>
|
|
|
|
|
private int valueStart;
|
|
|
|
|
/// <summary>Number of characters in the value</summary>
|
|
|
|
|
private int valueLength;
|
|
|
|
|
|
2008-12-09 20:55:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Nuclex.Support.Parsing
|
2008-12-11 20:19:29 +00:00
|
|
|
|
|
|
|
|
|
#endif // ENABLE_BROKEN_COMMAND_LINE_PARSER
|