]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
tools lib subcmd: Suppport cascading options
authorNamhyung Kim <namhyung@kernel.org>
Mon, 24 Oct 2016 03:00:02 +0000 (12:00 +0900)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Tue, 25 Oct 2016 13:12:16 +0000 (10:12 -0300)
Sometimes subcommand have common options and it can only handled in the
upper level command unless it duplicates the options.

This patch adds a parent field and fallback to the parent if the given
argument was not found in the current options.

Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Cc: Andi Kleen <andi@firstfloor.org>
Cc: David Ahern <dsahern@gmail.com>
Cc: Josh Poimboeuf <jpoimboe@redhat.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/r/20161024030003.28534-1-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/lib/subcmd/parse-options.c
tools/lib/subcmd/parse-options.h

index 981bb4481fd55d4d15af7c8fdba15f7c6f80e0da..3284bb14ae789bcb0513cba80e8ef0dd43e0812d 100644 (file)
@@ -314,12 +314,19 @@ static int get_value(struct parse_opt_ctx_t *p,
 
 static int parse_short_opt(struct parse_opt_ctx_t *p, const struct option *options)
 {
+retry:
        for (; options->type != OPTION_END; options++) {
                if (options->short_name == *p->opt) {
                        p->opt = p->opt[1] ? p->opt + 1 : NULL;
                        return get_value(p, options, OPT_SHORT);
                }
        }
+
+       if (options->parent) {
+               options = options->parent;
+               goto retry;
+       }
+
        return -2;
 }
 
@@ -333,6 +340,7 @@ static int parse_long_opt(struct parse_opt_ctx_t *p, const char *arg,
        if (!arg_end)
                arg_end = arg + strlen(arg);
 
+retry:
        for (; options->type != OPTION_END; options++) {
                const char *rest;
                int flags = 0;
@@ -426,6 +434,12 @@ match:
        }
        if (abbrev_option)
                return get_value(p, abbrev_option, abbrev_flags);
+
+       if (options->parent) {
+               options = options->parent;
+               goto retry;
+       }
+
        return -2;
 }
 
index d60cab2726dacdc1b1d4ab4922a5c7871aaa5e77..8866ac438b3441d9e82c739da41273e93466e48b 100644 (file)
@@ -109,11 +109,13 @@ struct option {
        intptr_t defval;
        bool *set;
        void *data;
+       const struct option *parent;
 };
 
 #define check_vtype(v, type) ( BUILD_BUG_ON_ZERO(!__builtin_types_compatible_p(typeof(v), type)) + v )
 
 #define OPT_END()                   { .type = OPTION_END }
+#define OPT_PARENT(p)               { .type = OPTION_END, .parent = (p) }
 #define OPT_ARGUMENT(l, h)          { .type = OPTION_ARGUMENT, .long_name = (l), .help = (h) }
 #define OPT_GROUP(h)                { .type = OPTION_GROUP, .help = (h) }
 #define OPT_BIT(s, l, v, h, b)      { .type = OPTION_BIT, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .help = (h), .defval = (b) }