]> git.ipfire.org Git - thirdparty/git.git/blame - test-parse-options.c
commit: --dry-run
[thirdparty/git.git] / test-parse-options.c
CommitLineData
beb47437
JS
1#include "cache.h"
2#include "parse-options.h"
3
4static int boolean = 0;
c4aca9cc
JH
5static int integer = 0;
6static unsigned long timestamp;
010a2dac
SB
7static int abbrev = 7;
8static int verbose = 0, dry_run = 0, quiet = 0;
beb47437 9static char *string = NULL;
df217ed6 10static char *file = NULL;
beb47437 11
2af202be 12static int length_callback(const struct option *opt, const char *arg, int unset)
010a2dac
SB
13{
14 printf("Callback: \"%s\", %d\n",
15 (arg ? arg : "not set"), unset);
16 if (unset)
17 return 1; /* do not support unset */
18
8caa3acf 19 *(int *)opt->value = strlen(arg);
010a2dac
SB
20 return 0;
21}
22
2af202be 23static int number_callback(const struct option *opt, const char *arg, int unset)
e0319ff5
RS
24{
25 *(int *)opt->value = strtol(arg, NULL, 10);
26 return 0;
27}
28
beb47437
JS
29int main(int argc, const char **argv)
30{
df217ed6 31 const char *prefix = "prefix/";
beb47437
JS
32 const char *usage[] = {
33 "test-parse-options <options>",
34 NULL
35 };
36 struct option options[] = {
37 OPT_BOOLEAN('b', "boolean", &boolean, "get a boolean"),
010a2dac
SB
38 OPT_BIT('4', "or4", &boolean,
39 "bitwise-or boolean with ...0100", 4),
2f4b97f9 40 OPT_NEGBIT(0, "neg-or4", &boolean, "same as --no-or4", 4),
010a2dac 41 OPT_GROUP(""),
beb47437
JS
42 OPT_INTEGER('i', "integer", &integer, "get a integer"),
43 OPT_INTEGER('j', NULL, &integer, "get a integer, too"),
010a2dac 44 OPT_SET_INT(0, "set23", &integer, "set integer to 23", 23),
c4aca9cc 45 OPT_DATE('t', NULL, &timestamp, "get timestamp of <time>"),
010a2dac
SB
46 OPT_CALLBACK('L', "length", &integer, "str",
47 "get length of <str>", length_callback),
df217ed6 48 OPT_FILENAME('F', "file", &file, "set file to <FILE>"),
010a2dac 49 OPT_GROUP("String options"),
beb47437
JS
50 OPT_STRING('s', "string", &string, "string", "get a string"),
51 OPT_STRING(0, "string2", &string, "str", "get another string"),
243e0614 52 OPT_STRING(0, "st", &string, "st", "get another string (pervert ordering)"),
3a9f0f41 53 OPT_STRING('o', NULL, &string, "str", "get another string"),
010a2dac
SB
54 OPT_SET_PTR(0, "default-string", &string,
55 "set string to default", (unsigned long)"default"),
56 OPT_GROUP("Magic arguments"),
580d5bff 57 OPT_ARGUMENT("quux", "means --quux"),
e0319ff5
RS
58 OPT_NUMBER_CALLBACK(&integer, "set integer to NUM",
59 number_callback),
51a9949e
RS
60 { OPTION_BOOLEAN, '+', NULL, &boolean, NULL, "same as -b",
61 PARSE_OPT_NOARG | PARSE_OPT_NONEG | PARSE_OPT_NODASH },
010a2dac
SB
62 OPT_GROUP("Standard options"),
63 OPT__ABBREV(&abbrev),
64 OPT__VERBOSE(&verbose),
65 OPT__DRY_RUN(&dry_run),
66 OPT__QUIET(&quiet),
beb47437
JS
67 OPT_END(),
68 };
69 int i;
70
df217ed6 71 argc = parse_options(argc, argv, prefix, options, usage, 0);
beb47437
JS
72
73 printf("boolean: %d\n", boolean);
c4aca9cc
JH
74 printf("integer: %u\n", integer);
75 printf("timestamp: %lu\n", timestamp);
beb47437 76 printf("string: %s\n", string ? string : "(not set)");
010a2dac
SB
77 printf("abbrev: %d\n", abbrev);
78 printf("verbose: %d\n", verbose);
79 printf("quiet: %s\n", quiet ? "yes" : "no");
80 printf("dry run: %s\n", dry_run ? "yes" : "no");
df217ed6 81 printf("file: %s\n", file ? file : "(not set)");
beb47437
JS
82
83 for (i = 0; i < argc; i++)
84 printf("arg %02d: %s\n", i, argv[i]);
85
86 return 0;
87}