C++ プログラムで、必要な引数を指定した "long-only" オプションを使用したいと考えています。以下は、 getopt_long()を使用した最小限の例ですが、機能していません。
#include <getopt.h>
#include <cstdlib>
#include <iostream>
using namespace std;
void help (char ** argv)
{
cout << "`" << argv[0] << "` experiments with long options." << endl;
}
void parse_args (int argc, char ** argv, int & verbose, int & param)
{
int c = 0;
while (1)
{
static struct option long_options[] =
{
{"help", no_argument, 0, 'h'},
{"verbose", required_argument, 0, 'v'},
{"param", required_argument, 0, 0}
};
int option_index = 0;
c = getopt_long (argc, argv, "hv:",
long_options, &option_index);
cout << "c=" << c << endl;
if (c == -1)
break;
switch (c)
{
case 0:
if (long_options[option_index].flag != 0)
break;
printf ("option %s", long_options[option_index].name);
if (optarg)
printf (" with arg %s", optarg);
printf ("\n");
break;
case 'h':
help (argv);
exit (0);
case 'v':
verbose = atoi(optarg);
break;
case 'param':
param = atoi(optarg);
break;
case '?':
abort ();
default:
abort ();
}
}
}
int main (int argc, char ** argv)
{
int verbose = 0;
int param = 0;
parse_args (argc, argv, verbose, param);
cout << "verbose=" << verbose << " param=" << param << endl;
return EXIT_SUCCESS;
}
次のコマンドでコンパイルします (gcc バージョン 4.1.2 20080704 Red Hat 4.1.2-46):
g++ -Wall test.cpp
それは私にこれを教えてくれます:
test.cpp:44:10: warning: character constant too long for its type
結果は次のとおりです。
$ ./a.out -v 2 --param 3
c=118
c=0
option param with arg 3
c=-1
verbose=2 param=0
ideoneで動作させようとしましたが、オプションさえ認識しません-v
。
別の質問のコメントでtrojanfoeが示したように、GNU tarが行うため、「ロングオンリー」オプションを使用できるはずです。しかし、GNU tar はargpを使用しており、そのソース コードを理解するのは困難です。
誰かがGNUgetopt_long()
またはargp()
.