1#include "cache.h"2#include "parse-options.h"3#include "string-list.h"45static int boolean = 0;6static int integer = 0;7static unsigned long timestamp;8static int abbrev = 7;9static int verbose = 0, dry_run = 0, quiet = 0;10static char *string = NULL;11static char *file = NULL;12static int ambiguous;13static struct string_list list;1415static int length_callback(const struct option *opt, const char *arg, int unset)16{17printf("Callback: \"%s\", %d\n",18(arg ? arg : "not set"), unset);19if (unset)20return 1; /* do not support unset */2122*(int *)opt->value = strlen(arg);23return 0;24}2526static int number_callback(const struct option *opt, const char *arg, int unset)27{28*(int *)opt->value = strtol(arg, NULL, 10);29return 0;30}3132int main(int argc, const char **argv)33{34const char *prefix = "prefix/";35const char *usage[] = {36"test-parse-options <options>",37NULL38};39struct option options[] = {40OPT_BOOLEAN('b', "boolean", &boolean, "get a boolean"),41OPT_BIT('4', "or4", &boolean,42"bitwise-or boolean with ...0100", 4),43OPT_NEGBIT(0, "neg-or4", &boolean, "same as --no-or4", 4),44OPT_GROUP(""),45OPT_INTEGER('i', "integer", &integer, "get a integer"),46OPT_INTEGER('j', NULL, &integer, "get a integer, too"),47OPT_SET_INT(0, "set23", &integer, "set integer to 23", 23),48OPT_DATE('t', NULL, ×tamp, "get timestamp of <time>"),49OPT_CALLBACK('L', "length", &integer, "str",50"get length of <str>", length_callback),51OPT_FILENAME('F', "file", &file, "set file to <file>"),52OPT_GROUP("String options"),53OPT_STRING('s', "string", &string, "string", "get a string"),54OPT_STRING(0, "string2", &string, "str", "get another string"),55OPT_STRING(0, "st", &string, "st", "get another string (pervert ordering)"),56OPT_STRING('o', NULL, &string, "str", "get another string"),57OPT_NOOP_NOARG(0, "obsolete"),58OPT_SET_PTR(0, "default-string", &string,59"set string to default", (unsigned long)"default"),60OPT_STRING_LIST(0, "list", &list, "str", "add str to list"),61OPT_GROUP("Magic arguments"),62OPT_ARGUMENT("quux", "means --quux"),63OPT_NUMBER_CALLBACK(&integer, "set integer to NUM",64number_callback),65{ OPTION_BOOLEAN, '+', NULL, &boolean, NULL, "same as -b",66PARSE_OPT_NOARG | PARSE_OPT_NONEG | PARSE_OPT_NODASH },67{ OPTION_BOOLEAN, 0, "ambiguous", &ambiguous, NULL,68"positive ambiguity", PARSE_OPT_NOARG | PARSE_OPT_NONEG },69{ OPTION_BOOLEAN, 0, "no-ambiguous", &ambiguous, NULL,70"negative ambiguity", PARSE_OPT_NOARG | PARSE_OPT_NONEG },71OPT_GROUP("Standard options"),72OPT__ABBREV(&abbrev),73OPT__VERBOSE(&verbose, "be verbose"),74OPT__DRY_RUN(&dry_run, "dry run"),75OPT__QUIET(&quiet, "be quiet"),76OPT_END(),77};78int i;7980argc = parse_options(argc, argv, prefix, options, usage, 0);8182printf("boolean: %d\n", boolean);83printf("integer: %u\n", integer);84printf("timestamp: %lu\n", timestamp);85printf("string: %s\n", string ? string : "(not set)");86printf("abbrev: %d\n", abbrev);87printf("verbose: %d\n", verbose);88printf("quiet: %s\n", quiet ? "yes" : "no");89printf("dry run: %s\n", dry_run ? "yes" : "no");90printf("file: %s\n", file ? file : "(not set)");9192for (i = 0; i < list.nr; i++)93printf("list: %s\n", list.items[i].string);9495for (i = 0; i < argc; i++)96printf("arg %02d: %s\n", i, argv[i]);9798return 0;99}