diff-parseopt: convert --stat*

Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Nguyễn Thái Ngọc Duy 2019-02-21 18:16:10 +07:00 committed by Junio C Hamano
parent e01df7a33d
commit 84b5089e41
1 changed files with 52 additions and 66 deletions

118
diff.c
View File

@ -104,11 +104,6 @@ static const char *color_diff_slots[] = {
[DIFF_FILE_NEW_BOLD] = "newBold", [DIFF_FILE_NEW_BOLD] = "newBold",
}; };


static NORETURN void die_want_option(const char *option_name)
{
die(_("option '%s' requires a value"), option_name);
}

define_list_config_array_extra(color_diff_slots, {"plain"}); define_list_config_array_extra(color_diff_slots, {"plain"});


static int parse_diff_color_slot(const char *var) static int parse_diff_color_slot(const char *var)
@ -4661,77 +4656,56 @@ int parse_long_opt(const char *opt, const char **argv,
return 2; return 2;
} }


static int stat_opt(struct diff_options *options, const char **av) static int diff_opt_stat(const struct option *opt, const char *value, int unset)
{ {
const char *arg = av[0]; struct diff_options *options = opt->value;
char *end;
int width = options->stat_width; int width = options->stat_width;
int name_width = options->stat_name_width; int name_width = options->stat_name_width;
int graph_width = options->stat_graph_width; int graph_width = options->stat_graph_width;
int count = options->stat_count; int count = options->stat_count;
int argcount = 1; char *end;


if (!skip_prefix(arg, "--stat", &arg)) BUG_ON_OPT_NEG(unset);
BUG("stat option does not begin with --stat: %s", arg);
end = (char *)arg;


switch (*arg) { if (!strcmp(opt->long_name, "stat")) {
case '-': if (value) {
if (skip_prefix(arg, "-width", &arg)) { width = strtoul(value, &end, 10);
if (*arg == '=') if (*end == ',')
width = strtoul(arg + 1, &end, 10); name_width = strtoul(end+1, &end, 10);
else if (!*arg && !av[1]) if (*end == ',')
die_want_option("--stat-width"); count = strtoul(end+1, &end, 10);
else if (!*arg) { if (*end)
width = strtoul(av[1], &end, 10); return error(_("invalid --stat value: %s"), value);
argcount = 2;
}
} else if (skip_prefix(arg, "-name-width", &arg)) {
if (*arg == '=')
name_width = strtoul(arg + 1, &end, 10);
else if (!*arg && !av[1])
die_want_option("--stat-name-width");
else if (!*arg) {
name_width = strtoul(av[1], &end, 10);
argcount = 2;
}
} else if (skip_prefix(arg, "-graph-width", &arg)) {
if (*arg == '=')
graph_width = strtoul(arg + 1, &end, 10);
else if (!*arg && !av[1])
die_want_option("--stat-graph-width");
else if (!*arg) {
graph_width = strtoul(av[1], &end, 10);
argcount = 2;
}
} else if (skip_prefix(arg, "-count", &arg)) {
if (*arg == '=')
count = strtoul(arg + 1, &end, 10);
else if (!*arg && !av[1])
die_want_option("--stat-count");
else if (!*arg) {
count = strtoul(av[1], &end, 10);
argcount = 2;
}
} }
break; } else if (!strcmp(opt->long_name, "stat-width")) {
case '=': width = strtoul(value, &end, 10);
width = strtoul(arg+1, &end, 10); if (*end)
if (*end == ',') return error(_("%s expects a numerical value"),
name_width = strtoul(end+1, &end, 10); opt->long_name);
if (*end == ',') } else if (!strcmp(opt->long_name, "stat-name-width")) {
count = strtoul(end+1, &end, 10); name_width = strtoul(value, &end, 10);
} if (*end)
return error(_("%s expects a numerical value"),
opt->long_name);
} else if (!strcmp(opt->long_name, "stat-graph-width")) {
graph_width = strtoul(value, &end, 10);
if (*end)
return error(_("%s expects a numerical value"),
opt->long_name);
} else if (!strcmp(opt->long_name, "stat-count")) {
count = strtoul(value, &end, 10);
if (*end)
return error(_("%s expects a numerical value"),
opt->long_name);
} else
BUG("%s should not get here", opt->long_name);


/* Important! This checks all the error cases! */
if (*end)
return 0;
options->output_format |= DIFF_FORMAT_DIFFSTAT; options->output_format |= DIFF_FORMAT_DIFFSTAT;
options->stat_name_width = name_width; options->stat_name_width = name_width;
options->stat_graph_width = graph_width; options->stat_graph_width = graph_width;
options->stat_width = width; options->stat_width = width;
options->stat_count = count; options->stat_count = count;
return argcount; return 0;
} }


static int parse_dirstat_opt(struct diff_options *options, const char *params) static int parse_dirstat_opt(struct diff_options *options, const char *params)
@ -4958,6 +4932,21 @@ static void prep_parse_options(struct diff_options *options)
OPT_BIT_F(0, "name-status", &options->output_format, OPT_BIT_F(0, "name-status", &options->output_format,
N_("show only names and status of changed files"), N_("show only names and status of changed files"),
DIFF_FORMAT_NAME_STATUS, PARSE_OPT_NONEG), DIFF_FORMAT_NAME_STATUS, PARSE_OPT_NONEG),
OPT_CALLBACK_F(0, "stat", options, N_("<width>[,<name-width>[,<count>]]"),
N_("generate diffstat"),
PARSE_OPT_NONEG | PARSE_OPT_OPTARG, diff_opt_stat),
OPT_CALLBACK_F(0, "stat-width", options, N_("<width>"),
N_("generate diffstat with a given width"),
PARSE_OPT_NONEG, diff_opt_stat),
OPT_CALLBACK_F(0, "stat-name-width", options, N_("<width>"),
N_("generate diffstat with a given name width"),
PARSE_OPT_NONEG, diff_opt_stat),
OPT_CALLBACK_F(0, "stat-graph-width", options, N_("<width>"),
N_("generate diffstat with a given graph width"),
PARSE_OPT_NONEG, diff_opt_stat),
OPT_CALLBACK_F(0, "stat-count", options, N_("<count>"),
N_("generate diffstat with limited lines"),
PARSE_OPT_NONEG, diff_opt_stat),
OPT_END() OPT_END()
}; };


@ -4986,10 +4975,7 @@ int diff_opt_parse(struct diff_options *options,
return ac; return ac;


/* Output format options */ /* Output format options */
if (starts_with(arg, "--stat")) if (!strcmp(arg, "--compact-summary")) {
/* --stat, --stat-width, --stat-name-width, or --stat-count */
return stat_opt(options, av);
else if (!strcmp(arg, "--compact-summary")) {
options->flags.stat_with_summary = 1; options->flags.stat_with_summary = 1;
options->output_format |= DIFF_FORMAT_DIFFSTAT; options->output_format |= DIFF_FORMAT_DIFFSTAT;
} else if (!strcmp(arg, "--no-compact-summary")) } else if (!strcmp(arg, "--no-compact-summary"))