パラメータを取るコンソールアプリケーションを構築する場合、に渡される引数を使用できますMain(string[] args)
。
以前は、その配列にインデックスを付けたりループさせたりして、値を抽出するためにいくつかの正規表現を実行しました。ただし、コマンドがさらに複雑になると、解析がかなり醜くなります。
だから私は興味があります:
- 使用するライブラリ
- 使用するパターン
コマンドは常に、ここで回答されているような一般的な標準に準拠していると想定します。
パラメータを取るコンソールアプリケーションを構築する場合、に渡される引数を使用できますMain(string[] args)
。
以前は、その配列にインデックスを付けたりループさせたりして、値を抽出するためにいくつかの正規表現を実行しました。ただし、コマンドがさらに複雑になると、解析がかなり醜くなります。
だから私は興味があります:
コマンドは常に、ここで回答されているような一般的な標準に準拠していると想定します。
回答:
NDesk.Options(Documentation)やMono.Options(同じAPI、異なる名前空間)を使用することを強くお勧めします。ドキュメントの例:
bool show_help = false;
List<string> names = new List<string> ();
int repeat = 1;
var p = new OptionSet () {
{ "n|name=", "the {NAME} of someone to greet.",
v => names.Add (v) },
{ "r|repeat=",
"the number of {TIMES} to repeat the greeting.\n" +
"this must be an integer.",
(int v) => repeat = v },
{ "v", "increase debug message verbosity",
v => { if (v != null) ++verbosity; } },
{ "h|help", "show this message and exit",
v => show_help = v != null },
};
List<string> extra;
try {
extra = p.Parse (args);
}
catch (OptionException e) {
Console.Write ("greet: ");
Console.WriteLine (e.Message);
Console.WriteLine ("Try `greet --help' for more information.");
return;
}
git checkout master
)。または、それらの引数は柔軟ではありません(つまり、--foo 123
= --foo=123
= -f 123
= -f=123
および-v -h
= もサポートしていません-vh
)。
コマンドラインパーサーライブラリ(http://commandline.codeplex.com/)が本当に好きです。属性を介してパラメータを設定する非常にシンプルでエレガントな方法があります。
class Options
{
[Option("i", "input", Required = true, HelpText = "Input file to read.")]
public string InputFile { get; set; }
[Option(null, "length", HelpText = "The maximum number of bytes to process.")]
public int MaximumLenght { get; set; }
[Option("v", null, HelpText = "Print details during execution.")]
public bool Verbose { get; set; }
[HelpOption(HelpText = "Display this help screen.")]
public string GetUsage()
{
var usage = new StringBuilder();
usage.AppendLine("Quickstart Application 1.0");
usage.AppendLine("Read user manual for usage instructions...");
return usage.ToString();
}
}
--recursive
もサポートしているようです。
WPF TestApiライブラリは、 C#の開発のための素敵なコマンドラインパーサの1が付属しています。APIに関するIvo Manolovのブログから、これを調べることを強くお勧めします。
// EXAMPLE #2:
// Sample for parsing the following command-line:
// Test.exe /verbose /runId=10
// This sample declares a class in which the strongly-
// typed arguments are populated
public class CommandLineArguments
{
bool? Verbose { get; set; }
int? RunId { get; set; }
}
CommandLineArguments a = new CommandLineArguments();
CommandLineParser.ParseArguments(args, a);
誰もが独自のペットコマンドラインパーサーを持っているように見えます。
このライブラリには、コマンドラインからの値でクラスを初期化するコマンドラインパーサーが含まれています。それはたくさんの機能を持っています(私は長年にわたってそれを構築してきました)。
ドキュメントから...
BizArkフレームワークのコマンドライン解析には、次の主要な機能があります。
私はしばらく前にC#コマンドライン引数パーサーを書きました。その場所:http : //www.codeplex.com/CommandLineArguments
CLAP(コマンドライン引数パーサー)には使用可能なAPIがあり、文書化されています。パラメータを注釈するメソッドを作成します。 https://github.com/adrianaisemberg/CLAP
myapp myverb -argname argvalue
必須-argname
)またはmyapp -help
(一般的に--help
)。
この問題には多くの解決策があります。完全性のため、そして誰かが望むなら代替案を提供するために、私は私のグーグルコードライブラリの 2つの有用なクラスにこの答えを追加しています。
1つはArgumentListで、コマンドラインパラメータの解析のみを担当します。スイッチ「/ x:y」または「-x = y」で定義された名前と値のペアを収集し、「名前のない」エントリのリストも収集します。基本的な使用法についてはここで説明します。ここでクラスを表示してください。
この2番目の部分は、.Netクラスから完全に機能するコマンドラインアプリケーションを作成するCommandInterpreterです。例として:
using CSharpTest.Net.Commands;
static class Program
{
static void Main(string[] args)
{
new CommandInterpreter(new Commands()).Run(args);
}
//example ‘Commands’ class:
class Commands
{
public int SomeValue { get; set; }
public void DoSomething(string svalue, int ivalue)
{ ... }
上記のサンプルコードを使用すると、以下を実行できます。
Program.exe DoSomething "文字列値" 5
-または-
Program.exe dosomething / ivalue = 5 -svalue: "string value"
それは、それと同じくらい簡単か、必要なだけ複雑です。あなたはできるソースコードを確認、ヘルプを表示する、またはバイナリをダウンロードしてください。
私のように1つ、あなたが必要な引数の、「ルールを定義」またはことができないので、...
あるいは、あなたがUnixの人なら、GNU Getopt .NETポートが好きかもしれません。
使いやすく拡張可能なコマンドライン引数パーサー。ハンドル:ブール、プラス/マイナス、文字列、文字列リスト、CSV、列挙。
組み込みの「/?」ヘルプモード。
組み込みの「/ ??」および「/?D」ドキュメントジェネレータモード。
static void Main(string[] args)
{
// create the argument parser
ArgumentParser parser = new ArgumentParser("ArgumentExample", "Example of argument parsing");
// create the argument for a string
StringArgument StringArg = new StringArgument("String", "Example string argument", "This argument demonstrates string arguments");
// add the argument to the parser
parser.Add("/", "String", StringArg);
// parse arguemnts
parser.Parse(args);
// did the parser detect a /? argument
if (parser.HelpMode == false)
{
// was the string argument defined
if (StringArg.Defined == true)
{
// write its value
RC.WriteLine("String argument was defined");
RC.WriteLine(StringArg.Value);
}
}
}
編集:これは私のプロジェクトであるため、この回答は第三者からの承認と見なしてはなりません。それは私が書くすべてのコマンドラインベースのプログラムにそれを使用することを言った、それはオープンソースであり、他の人がそれから利益を得るかもしれないことを願っています。
http://www.codeplex.com/commonlibrarynetにコマンドライン引数パーサーがあります
1.属性
2.明示的な呼び出し
3.複数の引数の単一行または文字列配列を使用して引数を解析できます。
次のようなものを処理できます。
- 設定:QAから- STARTDATE:$ { 今日 } - 地域:「ニューヨークのSettings01
使い方はとても簡単です。
これは、Novell Options
クラスに基づいて作成したハンドラーです。
これは、while (input !="exit")
スタイルループを実行するコンソールアプリケーション、たとえばFTPコンソールなどのインタラクティブコンソールを対象としています。
使用例:
static void Main(string[] args)
{
// Setup
CommandHandler handler = new CommandHandler();
CommandOptions options = new CommandOptions();
// Add some commands. Use the v syntax for passing arguments
options.Add("show", handler.Show)
.Add("connect", v => handler.Connect(v))
.Add("dir", handler.Dir);
// Read lines
System.Console.Write(">");
string input = System.Console.ReadLine();
while (input != "quit" && input != "exit")
{
if (input == "cls" || input == "clear")
{
System.Console.Clear();
}
else
{
if (!string.IsNullOrEmpty(input))
{
if (options.Parse(input))
{
System.Console.WriteLine(handler.OutputMessage);
}
else
{
System.Console.WriteLine("I didn't understand that command");
}
}
}
System.Console.Write(">");
input = System.Console.ReadLine();
}
}
そしてソース:
/// <summary>
/// A class for parsing commands inside a tool. Based on Novell Options class (http://www.ndesk.org/Options).
/// </summary>
public class CommandOptions
{
private Dictionary<string, Action<string[]>> _actions;
private Dictionary<string, Action> _actionsNoParams;
/// <summary>
/// Initializes a new instance of the <see cref="CommandOptions"/> class.
/// </summary>
public CommandOptions()
{
_actions = new Dictionary<string, Action<string[]>>();
_actionsNoParams = new Dictionary<string, Action>();
}
/// <summary>
/// Adds a command option and an action to perform when the command is found.
/// </summary>
/// <param name="name">The name of the command.</param>
/// <param name="action">An action delegate</param>
/// <returns>The current CommandOptions instance.</returns>
public CommandOptions Add(string name, Action action)
{
_actionsNoParams.Add(name, action);
return this;
}
/// <summary>
/// Adds a command option and an action (with parameter) to perform when the command is found.
/// </summary>
/// <param name="name">The name of the command.</param>
/// <param name="action">An action delegate that has one parameter - string[] args.</param>
/// <returns>The current CommandOptions instance.</returns>
public CommandOptions Add(string name, Action<string[]> action)
{
_actions.Add(name, action);
return this;
}
/// <summary>
/// Parses the text command and calls any actions associated with the command.
/// </summary>
/// <param name="command">The text command, e.g "show databases"</param>
public bool Parse(string command)
{
if (command.IndexOf(" ") == -1)
{
// No params
foreach (string key in _actionsNoParams.Keys)
{
if (command == key)
{
_actionsNoParams[key].Invoke();
return true;
}
}
}
else
{
// Params
foreach (string key in _actions.Keys)
{
if (command.StartsWith(key) && command.Length > key.Length)
{
string options = command.Substring(key.Length);
options = options.Trim();
string[] parts = options.Split(' ');
_actions[key].Invoke(parts);
return true;
}
}
}
return false;
}
}
私の個人的なお気に入りは、Peter Palotasによるhttp://www.codeproject.com/KB/recipes/plossum_commandline.aspxです。
[CommandLineManager(ApplicationName="Hello World",
Copyright="Copyright (c) Peter Palotas")]
class Options
{
[CommandLineOption(Description="Displays this help text")]
public bool Help = false;
[CommandLineOption(Description = "Specifies the input file", MinOccurs=1)]
public string Name
{
get { return mName; }
set
{
if (String.IsNullOrEmpty(value))
throw new InvalidOptionValueException(
"The name must not be empty", false);
mName = value;
}
}
private string mName;
}
最近、FubuCoreコマンドライン解析の実装に出会いました。本当に気に入っています。その理由は次のとおりです。
以下は、これを使用する簡単な例です。使い方を説明するために、2つのコマンドを含む簡単なユーティリティを作成しました。現在追加されているすべてのオブジェクト)
まず、「add」コマンドのコマンドクラスを作成しました。
[Usage("add", "Adds an object to the list")]
[CommandDescription("Add object", Name = "add")]
public class AddCommand : FubuCommand<CommandInput>
{
public override bool Execute(CommandInput input)
{
State.Objects.Add(input); // add the new object to an in-memory collection
return true;
}
}
このコマンドはCommandInputインスタンスをパラメーターとして取るので、次にそれを定義します。
public class CommandInput
{
[RequiredUsage("add"), Description("The name of the object to add")]
public string ObjectName { get; set; }
[ValidUsage("add")]
[Description("The value of the object to add")]
public int ObjectValue { get; set; }
[Description("Multiply the value by -1")]
[ValidUsage("add")]
[FlagAlias("nv")]
public bool NegateValueFlag { get; set; }
}
次のコマンドは 'list'で、次のように実装されています。
[Usage("list", "List the objects we have so far")]
[CommandDescription("List objects", Name = "list")]
public class ListCommand : FubuCommand<NullInput>
{
public override bool Execute(NullInput input)
{
State.Objects.ForEach(Console.WriteLine);
return false;
}
}
'list'コマンドはパラメーターを取らないため、このためにNullInputクラスを定義しました。
public class NullInput { }
あとは、次のようにMain()メソッドに接続するだけです。
static void Main(string[] args)
{
var factory = new CommandFactory();
factory.RegisterCommands(typeof(Program).Assembly);
var executor = new CommandExecutor(factory);
executor.Execute(args);
}
プログラムは期待どおりに動作し、コマンドが無効な場合の正しい使用法に関するヒントを出力します。
------------------------
Available commands:
------------------------
add -> Add object
list -> List objects
------------------------
そして 'add'コマンドの使用例:
Usages for 'add' (Add object)
add <objectname> [-nv]
-------------------------------------------------
Arguments
-------------------------------------------------
objectname -> The name of the object to add
objectvalue -> The value of the object to add
-------------------------------------------------
-------------------------------------
Flags
-------------------------------------
[-nv] -> Multiply the value by -1
-------------------------------------
Powershellコマンドレット。
コマンドレットで指定された属性、検証のサポート、パラメーターセット、パイプライン処理、エラー報告、ヘルプ、および他のコマンドレットで使用するために返されるすべての.NETオブジェクトのベストに基づいて、Powershellによって行われる解析。
はじめに役立つリンクをいくつか紹介します。
C#CLIは、私が作成した非常にシンプルなコマンドライン引数解析ライブラリです。十分に文書化され、オープンソースです。
Readme.mkd
ファイルを参照Documentation
)があります。
ジンギスコマンドラインパーサー は少し古くなっているかもしれませんが、非常に完全な機能であり、私にとっては非常にうまく機能します。
オープンソースのライブラリCSharpOptParseをお勧めします。コマンドラインを解析し、ユーザー定義の.NETオブジェクトをコマンドライン入力でハイドレートします。C#コンソールアプリケーションを作成するときは、常にこのライブラリを使用します。
Apache Commons CLI APIの.netポートを使用してください。これはうまくいきます。
http://sourceforge.net/projects/dotnetcli/
コンセプトと紹介のためのオリジナルのAPI
コマンドライン解析用の非常にシンプルで使いやすいアドホッククラスで、デフォルトの引数をサポートしています。
class CommandLineArgs
{
public static CommandLineArgs I
{
get
{
return m_instance;
}
}
public string argAsString( string argName )
{
if (m_args.ContainsKey(argName)) {
return m_args[argName];
}
else return "";
}
public long argAsLong(string argName)
{
if (m_args.ContainsKey(argName))
{
return Convert.ToInt64(m_args[argName]);
}
else return 0;
}
public double argAsDouble(string argName)
{
if (m_args.ContainsKey(argName))
{
return Convert.ToDouble(m_args[argName]);
}
else return 0;
}
public void parseArgs(string[] args, string defaultArgs )
{
m_args = new Dictionary<string, string>();
parseDefaults(defaultArgs );
foreach (string arg in args)
{
string[] words = arg.Split('=');
m_args[words[0]] = words[1];
}
}
private void parseDefaults(string defaultArgs )
{
if ( defaultArgs == "" ) return;
string[] args = defaultArgs.Split(';');
foreach (string arg in args)
{
string[] words = arg.Split('=');
m_args[words[0]] = words[1];
}
}
private Dictionary<string, string> m_args = null;
static readonly CommandLineArgs m_instance = new CommandLineArgs();
}
class Program
{
static void Main(string[] args)
{
CommandLineArgs.I.parseArgs(args, "myStringArg=defaultVal;someLong=12");
Console.WriteLine("Arg myStringArg : '{0}' ", CommandLineArgs.I.argAsString("myStringArg"));
Console.WriteLine("Arg someLong : '{0}' ", CommandLineArgs.I.argAsLong("someLong"));
}
}