commandlineparser / commandlineparser/commandline
Settings "EnableDashDash" separator doesn't work properly if last option before "--" is an enumerable option
- 主要言語
- C#
- スター
- 4.8k
- フォーク
- 478
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
Tested with version 2.8.0 from NuGet
Example code:
```
using System;
using System.Collections.Generic;
using CommandLine;
class Options
{
[Option("firstOption")]
public bool firstOption { get; set; }
[Option("secondOption", Separator = ',', Required = false)]
public IEnumerable secondOption { get; set; }
[Option("thirdOption", Required = false)]
public string thirdOption { get; set; }
[Value(0)]
public IEnumerable additional {get; set; }
}
public class Program
{
public static void Main()
{
var arguments = "--firstOption --secondOption=\"first,second,third\" -- addfirst addsecond -addthird";
//var arguments = "--firstOption --secondOption=\"first,second,third\" --thirdOption=blabla -- addfirst addsecond -addthird";
Console.WriteLine($"Command => {arguments}");
var args = arguments.Split();
Init(args);
}
public static void Init(string[] args)
{
var p = new Parser(with => with.EnableDashDash = true);
var result = p.ParseArguments(args).WithParsed(options =>{
Console.WriteLine($"firstOption: {options.firstOption}");
var joined = string.Join(",", options.secondOption);
Console.WriteLine($"secondOption: {joined}");
joined = string.Join(",", options.additional);
Console.WriteLine($"additional: {joined}");
} ).WithNotParsed (e=>e.Dump());
}
}
```
If the code is ran with the first version of the arguments the following output results, which is not the expected behavior:
```
Command => --firstOption --secondOption="first,second,third" -- addfirst addsecond -addthird
firstOption: True
secondOption: "first,second,third",addfirst,addsecond,-addthird
additional:
```
if we add another option between the "--" end of options "separator" we have the expected behavior:
```
Command => --firstOption --secondOption="first,second,third" --thirdOption=blabla -- addfirst addsecond -addthird
firstOption: True
secondOption: "first,second,third"
additional: addfirst,addsecond,-addthird
```
コントリビューションガイド
このリポジトリのコントリビューションガイドは索引されていません
調査の方向性
まず、EnableDashDash を有効にして、提供されている C# の再現コードを Parser.ParseArguments 経由で実行し、2 つの引数バリアントを比較します。-- 区切り文字の前で enumerable secondOption がどのように処理されるかを追跡し、最初のバリアントの回帰テストを追加します。完了条件は、-- より前の値が secondOption に残り、addfirst、addsecond、-addthird が追加の値を設定することです。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- csharp
- 領域
- cli
- issue の種類
- バグ
- 難易度
- 3/5
- 見積もり時間
- 1〜2日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 35/100