web-dev-qa-db-ja.com

Cでgetoptを非オプション引数とともに使用する

多くのコマンドライン引数を処理する小さなプログラムをCで作成しているので、getoptを使用してそれらをソートすることにしました。

ただし、2つの非オプション引数(ソースファイルと宛先ファイル)を必須にしたいので、フラグや他の引数がない場合でも、プログラムを呼び出すときにそれらを引数として指定する必要があります。

これは、フラグ付きの引数を処理するために必要なものの簡略版です。

while ((c = getopt(argc, argv, "i:d:btw:h:s:")) != -1) {
    switch (c) {
        case 'i': {
            i = (int)atol(optarg);
        }
        case 'd': {
            d = (int)atol(optarg);
        }
        case 'b':
            buf = 1;
            break;
        case 't':
            time = 1;
            break;
        case 'w':
            w = (int)atol(optarg);
            break;
        case 'h':
            h = (int)atol(optarg);
            break;
        case 's':
            s = (int)atol(optarg);
            break;
        default:
            break;
    }
}

これを編集して、オプション以外の引数も処理されるようにするにはどうすればよいですか?

また、オプションの後にorの前のいずれかで非オプションを使用できるようにしたいので、それはどのように処理されますか?

15
Conor Taylor

getoptoptind変数を設定して、次の引数の位置を示します。

次のようなコードを追加しますafterオプションループ:

if (argv[optind] == NULL || argv[optind + 1] == NULL) {
  printf("Mandatory argument(s) missing\n");
  exit(1);
}

編集:

通常の引数の後にオプションを許可したい場合は、次のようなことができます。

while (optind < argc) {
  if ((c = getopt(argc, argv, "i:d:btw:h:s:")) != -1) {
    // Option argument
    switch (c) {
        case 'i': {
            i = (int)atol(optarg);
        }
        case 'd': {
            d = (int)atol(optarg);
        }
        case 'b':
            buf = 1;
            break;
        case 't':
            time = 1;
            break;
        case 'w':
            w = (int)atol(optarg);
            break;
        case 'h':
            h = (int)atol(optarg);
            break;
        case 's':
            s = (int)atol(optarg);
            break;
        default:
            break;
    }
    else {
        // Regular argument
        <code to handle the argument>
        optind++;  // Skip to the next argument
    }
}
22
Klas Lindbäck

本当に良い例がここにあります: GNU Libc コード:

#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

int
main (int argc, char **argv)
{
int aflag = 0;
int bflag = 0;
char *cvalue = NULL;
int index;
int c;

opterr = 0;

while ((c = getopt (argc, argv, "abc:")) != -1)
switch (c)
{
case 'a':
    aflag = 1;
    break;
case 'b':
    bflag = 1;
    break;
case 'c':
    cvalue = optarg;
    break;
case '?':
    if (optopt == 'c')
    fprintf (stderr, "Option -%c requires an argument.\n", optopt);
    else if (isprint (optopt))
    fprintf (stderr, "Unknown option `-%c'.\n", optopt);
    else
    fprintf (stderr,
        "Unknown option character `\\x%x'.\n",
        optopt);
    return 1;
default:
    abort ();
}

printf ("aflag = %d, bflag = %d, cvalue = %s\n",
    aflag, bflag, cvalue);

for (index = optind; index < argc; index++)
printf ("Non-option argument %s\n", argv[index]);
return 0;
}

引数の前後にオプションを持つことができます。テスト例をコンパイルして実行しました:

$ ./a.out aa ff bb -a -ctestparam hello
aflag = 1, bflag = 0, cvalue = testparam
Non-option argument aa
Non-option argument ff
Non-option argument bb
Non-option argument hello
8
Madars Vi

GNU Libcの例もMinGW-W64 7.1.0では機能しません。非オプション引数は最後にシフトされないため、最初の非オプション引数の後に解析が停止します。

したがって、デフォルトの順列オプションは機能しないようです。

0
Daniel