mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
git-diff --numstat -z: make it machine readable
The "-z" format is all about machine parsability, but showing renamed paths as "common/{a => b}/suffix" makes it impossible. The scripts would never have successfully parsed "--numstat -z -M" in the old format. This fixes the output format in a (hopefully minimally) backward incompatible way. * The output without -z is not changed. This has given a good way for humans to view added and deleted lines separately, and showing the path in combined, shorter way would preserve readability. * The output with -z is unchanged for paths that do not involve renames. Existing scripts that do not pass -M/-C are not affected at all. * The output with -z for a renamed path is shown in a format that can easily be distinguished from an unrenamed path. This is based on Jakub Narebski's patch. Bugs and documentation typos are mine. Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
71a9883db2
commit
f604652e05
2 changed files with 129 additions and 32 deletions
|
@ -84,3 +84,64 @@ all parents.
|
||||||
|
|
||||||
|
|
||||||
include::diff-generate-patch.txt[]
|
include::diff-generate-patch.txt[]
|
||||||
|
|
||||||
|
|
||||||
|
other diff formats
|
||||||
|
------------------
|
||||||
|
|
||||||
|
The `--summary` option describes newly added, deleted, renamed and
|
||||||
|
copied files. The `--stat` option adds diffstat(1) graph to the
|
||||||
|
output. These options can be combined with other options, such as
|
||||||
|
`-p`, and are meant for human consumption.
|
||||||
|
|
||||||
|
When showing a change that involves a rename or a copy, `--stat` output
|
||||||
|
formats the pathnames compactly by combining common prefix and suffix of
|
||||||
|
the pathnames. For example, a change that moves `arch/i386/Makefile` to
|
||||||
|
`arch/x86/Makefile` while modifying 4 lines will be shown like this:
|
||||||
|
|
||||||
|
------------------------------------
|
||||||
|
arch/{i386 => x86}/Makefile | 4 +--
|
||||||
|
------------------------------------
|
||||||
|
|
||||||
|
The `--numstat` option gives the diffstat(1) information but is designed
|
||||||
|
for easier machine consumption. An entry in `--numstat` output looks
|
||||||
|
like this:
|
||||||
|
|
||||||
|
----------------------------------------
|
||||||
|
1 2 README
|
||||||
|
3 1 arch/{i386 => x86}/Makefile
|
||||||
|
----------------------------------------
|
||||||
|
|
||||||
|
That is, from left to right:
|
||||||
|
|
||||||
|
. the number of added lines;
|
||||||
|
. a tab;
|
||||||
|
. the number of deleted lines;
|
||||||
|
. a tab;
|
||||||
|
. pathname (possibly with rename/copy information);
|
||||||
|
. a newline.
|
||||||
|
|
||||||
|
When `-z` output option is in effect, the output is formatted this way:
|
||||||
|
|
||||||
|
----------------------------------------
|
||||||
|
1 2 README NUL
|
||||||
|
3 1 NUL arch/i386/Makefile NUL arch/x86/Makefile NUL
|
||||||
|
----------------------------------------
|
||||||
|
|
||||||
|
That is:
|
||||||
|
|
||||||
|
. the number of added lines;
|
||||||
|
. a tab;
|
||||||
|
. the number of deleted lines;
|
||||||
|
. a tab;
|
||||||
|
. a NUL (only exists if renamed/copied);
|
||||||
|
. pathname in preimage;
|
||||||
|
. a NUL (only exists if renamed/copied);
|
||||||
|
. pathname in postimage (only exists if renamed/copied);
|
||||||
|
. a NUL.
|
||||||
|
|
||||||
|
The extra `NUL` before the preimage path in renamed case is to allow
|
||||||
|
scripts that read the output to tell if the current record being read is
|
||||||
|
a single-path record or a rename/copy record without reading ahead.
|
||||||
|
After reading added and deleted lines, reading up to `NUL` would yield
|
||||||
|
the pathname, but if that is `NUL`, the record will show two paths.
|
||||||
|
|
100
diff.c
100
diff.c
|
@ -734,7 +734,9 @@ struct diffstat_t {
|
||||||
int nr;
|
int nr;
|
||||||
int alloc;
|
int alloc;
|
||||||
struct diffstat_file {
|
struct diffstat_file {
|
||||||
|
char *from_name;
|
||||||
char *name;
|
char *name;
|
||||||
|
char *print_name;
|
||||||
unsigned is_unmerged:1;
|
unsigned is_unmerged:1;
|
||||||
unsigned is_binary:1;
|
unsigned is_binary:1;
|
||||||
unsigned is_renamed:1;
|
unsigned is_renamed:1;
|
||||||
|
@ -755,11 +757,14 @@ static struct diffstat_file *diffstat_add(struct diffstat_t *diffstat,
|
||||||
}
|
}
|
||||||
diffstat->files[diffstat->nr++] = x;
|
diffstat->files[diffstat->nr++] = x;
|
||||||
if (name_b) {
|
if (name_b) {
|
||||||
x->name = pprint_rename(name_a, name_b);
|
x->from_name = xstrdup(name_a);
|
||||||
|
x->name = xstrdup(name_b);
|
||||||
x->is_renamed = 1;
|
x->is_renamed = 1;
|
||||||
}
|
}
|
||||||
else
|
else {
|
||||||
|
x->from_name = NULL;
|
||||||
x->name = xstrdup(name_a);
|
x->name = xstrdup(name_a);
|
||||||
|
}
|
||||||
return x;
|
return x;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -803,6 +808,28 @@ static void show_graph(char ch, int cnt, const char *set, const char *reset)
|
||||||
printf("%s", reset);
|
printf("%s", reset);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void fill_print_name(struct diffstat_file *file)
|
||||||
|
{
|
||||||
|
char *pname;
|
||||||
|
|
||||||
|
if (file->print_name)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (!file->is_renamed) {
|
||||||
|
struct strbuf buf;
|
||||||
|
strbuf_init(&buf, 0);
|
||||||
|
if (quote_c_style(file->name, &buf, NULL, 0)) {
|
||||||
|
pname = strbuf_detach(&buf, NULL);
|
||||||
|
} else {
|
||||||
|
pname = file->name;
|
||||||
|
strbuf_release(&buf);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
pname = pprint_rename(file->from_name, file->name);
|
||||||
|
}
|
||||||
|
file->print_name = pname;
|
||||||
|
}
|
||||||
|
|
||||||
static void show_stats(struct diffstat_t* data, struct diff_options *options)
|
static void show_stats(struct diffstat_t* data, struct diff_options *options)
|
||||||
{
|
{
|
||||||
int i, len, add, del, total, adds = 0, dels = 0;
|
int i, len, add, del, total, adds = 0, dels = 0;
|
||||||
|
@ -836,19 +863,8 @@ static void show_stats(struct diffstat_t* data, struct diff_options *options)
|
||||||
for (i = 0; i < data->nr; i++) {
|
for (i = 0; i < data->nr; i++) {
|
||||||
struct diffstat_file *file = data->files[i];
|
struct diffstat_file *file = data->files[i];
|
||||||
int change = file->added + file->deleted;
|
int change = file->added + file->deleted;
|
||||||
|
fill_print_name(file);
|
||||||
if (!file->is_renamed) { /* renames are already quoted by pprint_rename */
|
len = strlen(file->print_name);
|
||||||
struct strbuf buf;
|
|
||||||
strbuf_init(&buf, 0);
|
|
||||||
if (quote_c_style(file->name, &buf, NULL, 0)) {
|
|
||||||
free(file->name);
|
|
||||||
file->name = strbuf_detach(&buf, NULL);
|
|
||||||
} else {
|
|
||||||
strbuf_release(&buf);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
len = strlen(file->name);
|
|
||||||
if (max_len < len)
|
if (max_len < len)
|
||||||
max_len = len;
|
max_len = len;
|
||||||
|
|
||||||
|
@ -873,7 +889,7 @@ static void show_stats(struct diffstat_t* data, struct diff_options *options)
|
||||||
|
|
||||||
for (i = 0; i < data->nr; i++) {
|
for (i = 0; i < data->nr; i++) {
|
||||||
const char *prefix = "";
|
const char *prefix = "";
|
||||||
char *name = data->files[i]->name;
|
char *name = data->files[i]->print_name;
|
||||||
int added = data->files[i]->added;
|
int added = data->files[i]->added;
|
||||||
int deleted = data->files[i]->deleted;
|
int deleted = data->files[i]->deleted;
|
||||||
int name_len;
|
int name_len;
|
||||||
|
@ -901,17 +917,17 @@ static void show_stats(struct diffstat_t* data, struct diff_options *options)
|
||||||
printf("%s%d%s", add_c, added, reset);
|
printf("%s%d%s", add_c, added, reset);
|
||||||
printf(" bytes");
|
printf(" bytes");
|
||||||
printf("\n");
|
printf("\n");
|
||||||
goto free_diffstat_file;
|
continue;
|
||||||
}
|
}
|
||||||
else if (data->files[i]->is_unmerged) {
|
else if (data->files[i]->is_unmerged) {
|
||||||
show_name(prefix, name, len, reset, set);
|
show_name(prefix, name, len, reset, set);
|
||||||
printf(" Unmerged\n");
|
printf(" Unmerged\n");
|
||||||
goto free_diffstat_file;
|
continue;
|
||||||
}
|
}
|
||||||
else if (!data->files[i]->is_renamed &&
|
else if (!data->files[i]->is_renamed &&
|
||||||
(added + deleted == 0)) {
|
(added + deleted == 0)) {
|
||||||
total_files--;
|
total_files--;
|
||||||
goto free_diffstat_file;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -933,11 +949,7 @@ static void show_stats(struct diffstat_t* data, struct diff_options *options)
|
||||||
show_graph('+', add, add_c, reset);
|
show_graph('+', add, add_c, reset);
|
||||||
show_graph('-', del, del_c, reset);
|
show_graph('-', del, del_c, reset);
|
||||||
putchar('\n');
|
putchar('\n');
|
||||||
free_diffstat_file:
|
|
||||||
free(data->files[i]->name);
|
|
||||||
free(data->files[i]);
|
|
||||||
}
|
}
|
||||||
free(data->files);
|
|
||||||
printf("%s %d files changed, %d insertions(+), %d deletions(-)%s\n",
|
printf("%s %d files changed, %d insertions(+), %d deletions(-)%s\n",
|
||||||
set, total_files, adds, dels, reset);
|
set, total_files, adds, dels, reset);
|
||||||
}
|
}
|
||||||
|
@ -962,11 +974,7 @@ static void show_shortstats(struct diffstat_t* data)
|
||||||
dels += deleted;
|
dels += deleted;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
free(data->files[i]->name);
|
|
||||||
free(data->files[i]);
|
|
||||||
}
|
}
|
||||||
free(data->files);
|
|
||||||
|
|
||||||
printf(" %d files changed, %d insertions(+), %d deletions(-)\n",
|
printf(" %d files changed, %d insertions(+), %d deletions(-)\n",
|
||||||
total_files, adds, dels);
|
total_files, adds, dels);
|
||||||
}
|
}
|
||||||
|
@ -975,6 +983,9 @@ static void show_numstat(struct diffstat_t* data, struct diff_options *options)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
if (data->nr == 0)
|
||||||
|
return;
|
||||||
|
|
||||||
for (i = 0; i < data->nr; i++) {
|
for (i = 0; i < data->nr; i++) {
|
||||||
struct diffstat_file *file = data->files[i];
|
struct diffstat_file *file = data->files[i];
|
||||||
|
|
||||||
|
@ -982,13 +993,37 @@ static void show_numstat(struct diffstat_t* data, struct diff_options *options)
|
||||||
printf("-\t-\t");
|
printf("-\t-\t");
|
||||||
else
|
else
|
||||||
printf("%d\t%d\t", file->added, file->deleted);
|
printf("%d\t%d\t", file->added, file->deleted);
|
||||||
if (!file->is_renamed) {
|
if (options->line_termination) {
|
||||||
write_name_quoted(file->name, stdout, options->line_termination);
|
fill_print_name(file);
|
||||||
} else {
|
if (!file->is_renamed)
|
||||||
fputs(file->name, stdout);
|
write_name_quoted(file->name, stdout,
|
||||||
|
options->line_termination);
|
||||||
|
else {
|
||||||
|
fputs(file->print_name, stdout);
|
||||||
putchar(options->line_termination);
|
putchar(options->line_termination);
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
if (file->is_renamed) {
|
||||||
|
putchar('\0');
|
||||||
|
write_name_quoted(file->from_name, stdout, '\0');
|
||||||
}
|
}
|
||||||
|
write_name_quoted(file->name, stdout, '\0');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void free_diffstat_info(struct diffstat_t *diffstat)
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
for (i = 0; i < diffstat->nr; i++) {
|
||||||
|
struct diffstat_file *f = diffstat->files[i];
|
||||||
|
if (f->name != f->print_name)
|
||||||
|
free(f->print_name);
|
||||||
|
free(f->name);
|
||||||
|
free(f->from_name);
|
||||||
|
free(f);
|
||||||
|
}
|
||||||
|
free(diffstat->files);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct checkdiff_t {
|
struct checkdiff_t {
|
||||||
|
@ -2943,8 +2978,9 @@ void diff_flush(struct diff_options *options)
|
||||||
show_numstat(&diffstat, options);
|
show_numstat(&diffstat, options);
|
||||||
if (output_format & DIFF_FORMAT_DIFFSTAT)
|
if (output_format & DIFF_FORMAT_DIFFSTAT)
|
||||||
show_stats(&diffstat, options);
|
show_stats(&diffstat, options);
|
||||||
else if (output_format & DIFF_FORMAT_SHORTSTAT)
|
if (output_format & DIFF_FORMAT_SHORTSTAT)
|
||||||
show_shortstats(&diffstat);
|
show_shortstats(&diffstat);
|
||||||
|
free_diffstat_info(&diffstat);
|
||||||
separator++;
|
separator++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue