]> git.ipfire.org Git - thirdparty/git.git/commitdiff
parse-options: rename `OPT_MAGNITUDE()` to `OPT_UNSIGNED()`
authorPatrick Steinhardt <ps@pks.im>
Thu, 17 Apr 2025 10:49:39 +0000 (12:49 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 17 Apr 2025 15:15:15 +0000 (08:15 -0700)
With the preceding commit, `OPT_INTEGER()` has learned to support unit
factors. Consequently, the major differencen between `OPT_INTEGER()` and
`OPT_MAGNITUDE()` isn't the support of unit factors anymore, as both of
them do support them now. Instead, the difference is that one handles
signed and the other handles unsigned integers.

Adapt the name of `OPT_MAGNITUDE()` accordingly by renaming it to
`OPT_UNSIGNED()`.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/technical/api-parse-options.adoc
builtin/gc.c
builtin/multi-pack-index.c
builtin/pack-objects.c
builtin/repack.c
parse-options.c
parse-options.h
t/helper/test-parse-options.c
t/t0040-parse-options.sh

index 63acfb419bd23a09ed096acda8ac32dfbc877b30..880eb94642587aa71b2c6e6655c4d7ef797b1cc7 100644 (file)
@@ -216,8 +216,8 @@ There are some macros to easily define options:
        scale the provided value by 1024, 1024^2 or 1024^3 respectively.
        The scaled value is put into `int_var`.
 
-`OPT_MAGNITUDE(short, long, &unsigned_long_var, description)`::
-       Introduce an option with a size argument. The argument must be a
+`OPT_UNSIGNED(short, long, &unsigned_long_var, description)`::
+       Introduce an option with an unsigned integer argument. The argument must be a
        non-negative integer and may include a suffix of 'k', 'm' or 'g' to
        scale the provided value by 1024, 1024^2 or 1024^3 respectively.
        The scaled value is put into `unsigned_long_var`.
index 6707a26bc6e1401ec2a792a21affbd94762bf673..b32cf937cdf5995a4d557f7c83f9c28b3575394c 100644 (file)
@@ -709,8 +709,8 @@ struct repository *repo UNUSED)
                        .defval = (intptr_t)prune_expire_arg,
                },
                OPT_BOOL(0, "cruft", &cfg.cruft_packs, N_("pack unreferenced objects separately")),
-               OPT_MAGNITUDE(0, "max-cruft-size", &cfg.max_cruft_size,
-                             N_("with --cruft, limit the size of new cruft packs")),
+               OPT_UNSIGNED(0, "max-cruft-size", &cfg.max_cruft_size,
+                            N_("with --cruft, limit the size of new cruft packs")),
                OPT_BOOL(0, "aggressive", &aggressive, N_("be more thorough (increased runtime)")),
                OPT_BOOL_F(0, "auto", &opts.auto_flag, N_("enable auto-gc mode"),
                           PARSE_OPT_NOCOMPLETE),
index 2a938466f53aaa11096170554fe11a4ed46a25e4..e4820fd721a8d5d9a35eb26c28f78f43e9b7f6fc 100644 (file)
@@ -245,7 +245,7 @@ static int cmd_multi_pack_index_repack(int argc, const char **argv,
 {
        struct option *options;
        static struct option builtin_multi_pack_index_repack_options[] = {
-               OPT_MAGNITUDE(0, "batch-size", &opts.batch_size,
+               OPT_UNSIGNED(0, "batch-size", &opts.batch_size,
                  N_("during repack, collect pack-files of smaller size into a batch that is larger than this size")),
                OPT_BIT(0, "progress", &opts.flags,
                  N_("force progress reporting"), MIDX_PROGRESS),
index 79e1e6fb52b9b7566215dcc63b3228a0964b3209..9328812e286ea231e683bbe03ae070d945187656 100644 (file)
@@ -4483,16 +4483,16 @@ int cmd_pack_objects(int argc,
                OPT_CALLBACK_F(0, "index-version", &pack_idx_opts, N_("<version>[,<offset>]"),
                  N_("write the pack index file in the specified idx format version"),
                  PARSE_OPT_NONEG, option_parse_index_version),
-               OPT_MAGNITUDE(0, "max-pack-size", &pack_size_limit,
-                             N_("maximum size of each output pack file")),
+               OPT_UNSIGNED(0, "max-pack-size", &pack_size_limit,
+                            N_("maximum size of each output pack file")),
                OPT_BOOL(0, "local", &local,
                         N_("ignore borrowed objects from alternate object store")),
                OPT_BOOL(0, "incremental", &incremental,
                         N_("ignore packed objects")),
                OPT_INTEGER(0, "window", &window,
                            N_("limit pack window by objects")),
-               OPT_MAGNITUDE(0, "window-memory", &window_memory_limit,
-                             N_("limit pack window by memory in addition to object limit")),
+               OPT_UNSIGNED(0, "window-memory", &window_memory_limit,
+                            N_("limit pack window by memory in addition to object limit")),
                OPT_INTEGER(0, "depth", &depth,
                            N_("maximum length of delta chain allowed in the resulting pack")),
                OPT_BOOL(0, "reuse-delta", &reuse_delta,
index 75e3752353a27fdc881490158584e8dbfe0d627e..8bf9941b2c2ad8d7a180d07e6a7d1d1694e5e594 100644 (file)
@@ -1202,8 +1202,8 @@ int cmd_repack(int argc,
                                   PACK_CRUFT),
                OPT_STRING(0, "cruft-expiration", &cruft_expiration, N_("approxidate"),
                                N_("with --cruft, expire objects older than this")),
-               OPT_MAGNITUDE(0, "max-cruft-size", &cruft_po_args.max_pack_size,
-                               N_("with --cruft, limit the size of new cruft packs")),
+               OPT_UNSIGNED(0, "max-cruft-size", &cruft_po_args.max_pack_size,
+                            N_("with --cruft, limit the size of new cruft packs")),
                OPT_BOOL('d', NULL, &delete_redundant,
                                N_("remove redundant packs, and run git-prune-packed")),
                OPT_BOOL('f', NULL, &po_args.no_reuse_delta,
@@ -1233,8 +1233,8 @@ int cmd_repack(int argc,
                                N_("limits the maximum delta depth")),
                OPT_STRING(0, "threads", &opt_threads, N_("n"),
                                N_("limits the maximum number of threads")),
-               OPT_MAGNITUDE(0, "max-pack-size", &po_args.max_pack_size,
-                               N_("maximum size of each packfile")),
+               OPT_UNSIGNED(0, "max-pack-size", &po_args.max_pack_size,
+                            N_("maximum size of each packfile")),
                OPT_PARSE_LIST_OBJECTS_FILTER(&po_args.filter_options),
                OPT_BOOL(0, "pack-kept-objects", &pack_kept_objects,
                                N_("repack objects in packs marked with .keep")),
index b287436e81a3f988521ed78a6b876d9216ce2fad..d23e587e98bd975275076c918fee1e0e2b5616a4 100644 (file)
@@ -191,7 +191,7 @@ static enum parse_opt_result do_get_value(struct parse_opt_ctx_t *p,
                                     optname(opt, flags));
                return 0;
 
-       case OPTION_MAGNITUDE:
+       case OPTION_UNSIGNED:
                if (unset) {
                        *(unsigned long *)opt->value = 0;
                        return 0;
@@ -656,7 +656,7 @@ static void show_negated_gitcomp(const struct option *opts, int show_all,
                case OPTION_STRING:
                case OPTION_FILENAME:
                case OPTION_INTEGER:
-               case OPTION_MAGNITUDE:
+               case OPTION_UNSIGNED:
                case OPTION_CALLBACK:
                case OPTION_BIT:
                case OPTION_NEGBIT:
@@ -708,7 +708,7 @@ static int show_gitcomp(const struct option *opts, int show_all)
                case OPTION_STRING:
                case OPTION_FILENAME:
                case OPTION_INTEGER:
-               case OPTION_MAGNITUDE:
+               case OPTION_UNSIGNED:
                case OPTION_CALLBACK:
                        if (opts->flags & PARSE_OPT_NOARG)
                                break;
index 997ffbee8050d797661f6f7af3123134d71f52b7..14e4df1ee214795515f94e99bec6821ff9e3e081 100644 (file)
@@ -25,7 +25,7 @@ enum parse_opt_type {
        /* options with arguments (usually) */
        OPTION_STRING,
        OPTION_INTEGER,
-       OPTION_MAGNITUDE,
+       OPTION_UNSIGNED,
        OPTION_CALLBACK,
        OPTION_LOWLEVEL_CALLBACK,
        OPTION_FILENAME
@@ -270,8 +270,8 @@ struct option {
 #define OPT_CMDMODE(s, l, v, h, i)  OPT_CMDMODE_F(s, l, v, h, i, 0)
 
 #define OPT_INTEGER(s, l, v, h)     OPT_INTEGER_F(s, l, v, h, 0)
-#define OPT_MAGNITUDE(s, l, v, h) { \
-       .type = OPTION_MAGNITUDE, \
+#define OPT_UNSIGNED(s, l, v, h) { \
+       .type = OPTION_UNSIGNED, \
        .short_name = (s), \
        .long_name = (l), \
        .value = (v), \
index 997f55fd45b38a9dae71ceb79ddaf2230c17720a..fc3e2861c26af3268629a1263e6b45567173171c 100644 (file)
@@ -6,7 +6,7 @@
 
 static int boolean = 0;
 static int integer = 0;
-static unsigned long magnitude = 0;
+static unsigned long unsigned_integer = 0;
 static timestamp_t timestamp;
 static int abbrev = 7;
 static int verbose = -1; /* unspecified */
@@ -140,7 +140,7 @@ int cmd__parse_options(int argc, const char **argv)
                OPT_GROUP(""),
                OPT_INTEGER('i', "integer", &integer, "get a integer"),
                OPT_INTEGER('j', NULL, &integer, "get a integer, too"),
-               OPT_MAGNITUDE('m', "magnitude", &magnitude, "get a magnitude"),
+               OPT_UNSIGNED('u', "unsigned", &unsigned_integer, "get an unsigned integer"),
                OPT_SET_INT(0, "set23", &integer, "set integer to 23", 23),
                OPT_CMDMODE(0, "mode1", &integer, "set integer to 1 (cmdmode option)", 1),
                OPT_CMDMODE(0, "mode2", &integer, "set integer to 2 (cmdmode option)", 2),
@@ -210,7 +210,7 @@ int cmd__parse_options(int argc, const char **argv)
        }
        show(&expect, &ret, "boolean: %d", boolean);
        show(&expect, &ret, "integer: %d", integer);
-       show(&expect, &ret, "magnitude: %lu", magnitude);
+       show(&expect, &ret, "unsigned: %lu", unsigned_integer);
        show(&expect, &ret, "timestamp: %"PRItime, timestamp);
        show(&expect, &ret, "string: %s", string ? string : "(not set)");
        show(&expect, &ret, "abbrev: %d", abbrev);
index 0c538c4b4376c7728c43204bb6c0b1ea8bc04e9b..65a11c8dbc8c86054a26326eb1acdd35c67e1904 100755 (executable)
@@ -23,7 +23,7 @@ usage: test-tool parse-options <options>
     -i, --[no-]integer <n>
                           get a integer
     -j <n>                get a integer, too
-    -m, --magnitude <n>   get a magnitude
+    -u, --unsigned <n>    get an unsigned integer
     --[no-]set23          set integer to 23
     --mode1               set integer to 1 (cmdmode option)
     --mode2               set integer to 2 (cmdmode option)
@@ -115,30 +115,30 @@ test_expect_success 'OPT_INTEGER() negative' 'check integer: -2345 -i -2345'
 test_expect_success 'OPT_INTEGER() kilo' 'check integer: 239616 -i 234k'
 test_expect_success 'OPT_INTEGER() negative kilo' 'check integer: -239616 -i -234k'
 
-test_expect_success 'OPT_MAGNITUDE() simple' '
-       check magnitude: 2345678 -m 2345678
+test_expect_success 'OPT_UNSIGNED() simple' '
+       check unsigned: 2345678 -u 2345678
 '
 
-test_expect_success 'OPT_MAGNITUDE() kilo' '
-       check magnitude: 239616 -m 234k
+test_expect_success 'OPT_UNSIGNED() kilo' '
+       check unsigned: 239616 -u 234k
 '
 
-test_expect_success 'OPT_MAGNITUDE() mega' '
-       check magnitude: 104857600 -m 100m
+test_expect_success 'OPT_UNSIGNED() mega' '
+       check unsigned: 104857600 -u 100m
 '
 
-test_expect_success 'OPT_MAGNITUDE() giga' '
-       check magnitude: 1073741824 -m 1g
+test_expect_success 'OPT_UNSIGNED() giga' '
+       check unsigned: 1073741824 -u 1g
 '
 
-test_expect_success 'OPT_MAGNITUDE() 3giga' '
-       check magnitude: 3221225472 -m 3g
+test_expect_success 'OPT_UNSIGNED() 3giga' '
+       check unsigned: 3221225472 -u 3g
 '
 
 cat >expect <<\EOF
 boolean: 2
 integer: 1729
-magnitude: 16384
+unsigned: 16384
 timestamp: 0
 string: 123
 abbrev: 7
@@ -149,7 +149,7 @@ file: prefix/my.file
 EOF
 
 test_expect_success 'short options' '
-       test-tool parse-options -s123 -b -i 1729 -m 16k -b -vv -n -F my.file \
+       test-tool parse-options -s123 -b -i 1729 -u 16k -b -vv -n -F my.file \
        >output 2>output.err &&
        test_cmp expect output &&
        test_must_be_empty output.err
@@ -158,7 +158,7 @@ test_expect_success 'short options' '
 cat >expect <<\EOF
 boolean: 2
 integer: 1729
-magnitude: 16384
+unsigned: 16384
 timestamp: 0
 string: 321
 abbrev: 10
@@ -169,7 +169,7 @@ file: prefix/fi.le
 EOF
 
 test_expect_success 'long options' '
-       test-tool parse-options --boolean --integer 1729 --magnitude 16k \
+       test-tool parse-options --boolean --integer 1729 --unsigned 16k \
                --boolean --string2=321 --verbose --verbose --no-dry-run \
                --abbrev=10 --file fi.le --obsolete \
                >output 2>output.err &&
@@ -181,7 +181,7 @@ test_expect_success 'abbreviate to something longer than SHA1 length' '
        cat >expect <<-EOF &&
        boolean: 0
        integer: 0
-       magnitude: 0
+       unsigned: 0
        timestamp: 0
        string: (not set)
        abbrev: 100
@@ -255,7 +255,7 @@ test_expect_success 'superfluous value provided: cmdmode' '
 cat >expect <<\EOF
 boolean: 1
 integer: 13
-magnitude: 0
+unsigned: 0
 timestamp: 0
 string: 123
 abbrev: 7
@@ -278,7 +278,7 @@ test_expect_success 'intermingled arguments' '
 cat >expect <<\EOF
 boolean: 0
 integer: 2
-magnitude: 0
+unsigned: 0
 timestamp: 0
 string: (not set)
 abbrev: 7
@@ -345,7 +345,7 @@ cat >expect <<\EOF
 Callback: "four", 0
 boolean: 5
 integer: 4
-magnitude: 0
+unsigned: 0
 timestamp: 0
 string: (not set)
 abbrev: 7
@@ -370,7 +370,7 @@ test_expect_success 'OPT_CALLBACK() and callback errors work' '
 cat >expect <<\EOF
 boolean: 1
 integer: 23
-magnitude: 0
+unsigned: 0
 timestamp: 0
 string: (not set)
 abbrev: 7
@@ -449,7 +449,7 @@ test_expect_success 'OPT_NUMBER_CALLBACK() works' '
 cat >expect <<\EOF
 boolean: 0
 integer: 0
-magnitude: 0
+unsigned: 0
 timestamp: 0
 string: (not set)
 abbrev: 7
@@ -773,14 +773,14 @@ test_expect_success 'subcommands are incompatible with KEEP_DASHDASH unless in c
        grep ^BUG err
 '
 
-test_expect_success 'negative magnitude' '
-       test_must_fail test-tool parse-options --magnitude -1 >out 2>err &&
+test_expect_success 'negative unsigned' '
+       test_must_fail test-tool parse-options --unsigned -1 >out 2>err &&
        grep "non-negative integer" err &&
        test_must_be_empty out
 '
 
-test_expect_success 'magnitude with units but no numbers' '
-       test_must_fail test-tool parse-options --magnitude m >out 2>err &&
+test_expect_success 'unsigned with units but no numbers' '
+       test_must_fail test-tool parse-options --unsigned m >out 2>err &&
        grep "non-negative integer" err &&
        test_must_be_empty out
 '