2007-10-13 18:34:45 +02:00
|
|
|
#include "cache.h"
|
|
|
|
#include "parse-options.h"
|
|
|
|
|
|
|
|
static int boolean = 0;
|
2008-07-30 21:53:45 +02:00
|
|
|
static int integer = 0;
|
|
|
|
static unsigned long timestamp;
|
2008-06-22 17:04:26 +02:00
|
|
|
static int abbrev = 7;
|
|
|
|
static int verbose = 0, dry_run = 0, quiet = 0;
|
2007-10-13 18:34:45 +02:00
|
|
|
static char *string = NULL;
|
2009-05-23 20:53:13 +02:00
|
|
|
static char *file = NULL;
|
2009-09-25 20:44:44 +02:00
|
|
|
static int ambiguous;
|
2007-10-13 18:34:45 +02:00
|
|
|
|
2009-06-18 19:28:43 +02:00
|
|
|
static int length_callback(const struct option *opt, const char *arg, int unset)
|
2008-06-22 17:04:26 +02:00
|
|
|
{
|
|
|
|
printf("Callback: \"%s\", %d\n",
|
|
|
|
(arg ? arg : "not set"), unset);
|
|
|
|
if (unset)
|
|
|
|
return 1; /* do not support unset */
|
|
|
|
|
2008-08-14 02:48:57 +02:00
|
|
|
*(int *)opt->value = strlen(arg);
|
2008-06-22 17:04:26 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-06-18 19:28:43 +02:00
|
|
|
static int number_callback(const struct option *opt, const char *arg, int unset)
|
2009-05-07 21:45:08 +02:00
|
|
|
{
|
|
|
|
*(int *)opt->value = strtol(arg, NULL, 10);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-10-13 18:34:45 +02:00
|
|
|
int main(int argc, const char **argv)
|
|
|
|
{
|
2009-05-23 20:53:13 +02:00
|
|
|
const char *prefix = "prefix/";
|
2007-10-13 18:34:45 +02:00
|
|
|
const char *usage[] = {
|
|
|
|
"test-parse-options <options>",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
struct option options[] = {
|
|
|
|
OPT_BOOLEAN('b', "boolean", &boolean, "get a boolean"),
|
2008-06-22 17:04:26 +02:00
|
|
|
OPT_BIT('4', "or4", &boolean,
|
|
|
|
"bitwise-or boolean with ...0100", 4),
|
2009-05-07 21:44:17 +02:00
|
|
|
OPT_NEGBIT(0, "neg-or4", &boolean, "same as --no-or4", 4),
|
2008-06-22 17:04:26 +02:00
|
|
|
OPT_GROUP(""),
|
2007-10-13 18:34:45 +02:00
|
|
|
OPT_INTEGER('i', "integer", &integer, "get a integer"),
|
|
|
|
OPT_INTEGER('j', NULL, &integer, "get a integer, too"),
|
2008-06-22 17:04:26 +02:00
|
|
|
OPT_SET_INT(0, "set23", &integer, "set integer to 23", 23),
|
2008-07-30 21:53:45 +02:00
|
|
|
OPT_DATE('t', NULL, ×tamp, "get timestamp of <time>"),
|
2008-06-22 17:04:26 +02:00
|
|
|
OPT_CALLBACK('L', "length", &integer, "str",
|
|
|
|
"get length of <str>", length_callback),
|
2009-05-23 20:53:13 +02:00
|
|
|
OPT_FILENAME('F', "file", &file, "set file to <FILE>"),
|
2008-06-22 17:04:26 +02:00
|
|
|
OPT_GROUP("String options"),
|
2007-10-13 18:34:45 +02:00
|
|
|
OPT_STRING('s', "string", &string, "string", "get a string"),
|
|
|
|
OPT_STRING(0, "string2", &string, "str", "get another string"),
|
2007-11-05 14:15:21 +01:00
|
|
|
OPT_STRING(0, "st", &string, "st", "get another string (pervert ordering)"),
|
2008-01-26 12:26:57 +01:00
|
|
|
OPT_STRING('o', NULL, &string, "str", "get another string"),
|
2008-06-22 17:04:26 +02:00
|
|
|
OPT_SET_PTR(0, "default-string", &string,
|
|
|
|
"set string to default", (unsigned long)"default"),
|
|
|
|
OPT_GROUP("Magic arguments"),
|
2008-03-02 11:35:56 +01:00
|
|
|
OPT_ARGUMENT("quux", "means --quux"),
|
2009-05-07 21:45:08 +02:00
|
|
|
OPT_NUMBER_CALLBACK(&integer, "set integer to NUM",
|
|
|
|
number_callback),
|
2009-05-07 21:45:42 +02:00
|
|
|
{ OPTION_BOOLEAN, '+', NULL, &boolean, NULL, "same as -b",
|
|
|
|
PARSE_OPT_NOARG | PARSE_OPT_NONEG | PARSE_OPT_NODASH },
|
2009-09-25 20:44:44 +02:00
|
|
|
{ OPTION_BOOLEAN, 0, "ambiguous", &ambiguous, NULL,
|
|
|
|
"positive ambiguity", PARSE_OPT_NOARG | PARSE_OPT_NONEG },
|
|
|
|
{ OPTION_BOOLEAN, 0, "no-ambiguous", &ambiguous, NULL,
|
|
|
|
"negative ambiguity", PARSE_OPT_NOARG | PARSE_OPT_NONEG },
|
2008-06-22 17:04:26 +02:00
|
|
|
OPT_GROUP("Standard options"),
|
|
|
|
OPT__ABBREV(&abbrev),
|
2010-11-08 18:56:39 +01:00
|
|
|
OPT__VERBOSE(&verbose, "be verbose"),
|
2010-11-08 18:58:51 +01:00
|
|
|
OPT__DRY_RUN(&dry_run, "dry run"),
|
2010-11-08 19:06:54 +01:00
|
|
|
OPT__QUIET(&quiet, "be quiet"),
|
2007-10-13 18:34:45 +02:00
|
|
|
OPT_END(),
|
|
|
|
};
|
|
|
|
int i;
|
|
|
|
|
2009-05-23 20:53:13 +02:00
|
|
|
argc = parse_options(argc, argv, prefix, options, usage, 0);
|
2007-10-13 18:34:45 +02:00
|
|
|
|
|
|
|
printf("boolean: %d\n", boolean);
|
2008-07-30 21:53:45 +02:00
|
|
|
printf("integer: %u\n", integer);
|
|
|
|
printf("timestamp: %lu\n", timestamp);
|
2007-10-13 18:34:45 +02:00
|
|
|
printf("string: %s\n", string ? string : "(not set)");
|
2008-06-22 17:04:26 +02:00
|
|
|
printf("abbrev: %d\n", abbrev);
|
|
|
|
printf("verbose: %d\n", verbose);
|
|
|
|
printf("quiet: %s\n", quiet ? "yes" : "no");
|
|
|
|
printf("dry run: %s\n", dry_run ? "yes" : "no");
|
2009-05-23 20:53:13 +02:00
|
|
|
printf("file: %s\n", file ? file : "(not set)");
|
2007-10-13 18:34:45 +02:00
|
|
|
|
|
|
|
for (i = 0; i < argc; i++)
|
|
|
|
printf("arg %02d: %s\n", i, argv[i]);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|