2 * Copyright (C) 2005 Junio C Hamano
9 #include "xdiff-interface.h"
12 #include "run-command.h"
15 #ifdef NO_FAST_WORKING_DIRECTORY
16 #define FAST_WORKING_DIRECTORY 0
18 #define FAST_WORKING_DIRECTORY 1
21 static int diff_detect_rename_default
;
22 static int diff_rename_limit_default
= 200;
23 static int diff_suppress_blank_empty
;
24 int diff_use_color_default
= -1;
25 static const char *external_diff_cmd_cfg
;
26 int diff_auto_refresh_index
= 1;
28 static char diff_colors
[][COLOR_MAXLEN
] = {
30 "", /* PLAIN (normal) */
31 "\033[1m", /* METAINFO (bold) */
32 "\033[36m", /* FRAGINFO (cyan) */
33 "\033[31m", /* OLD (red) */
34 "\033[32m", /* NEW (green) */
35 "\033[33m", /* COMMIT (yellow) */
36 "\033[41m", /* WHITESPACE (red background) */
39 static int parse_diff_color_slot(const char *var
, int ofs
)
41 if (!strcasecmp(var
+ofs
, "plain"))
43 if (!strcasecmp(var
+ofs
, "meta"))
45 if (!strcasecmp(var
+ofs
, "frag"))
47 if (!strcasecmp(var
+ofs
, "old"))
49 if (!strcasecmp(var
+ofs
, "new"))
51 if (!strcasecmp(var
+ofs
, "commit"))
53 if (!strcasecmp(var
+ofs
, "whitespace"))
54 return DIFF_WHITESPACE
;
55 die("bad config variable '%s'", var
);
58 static struct ll_diff_driver
{
60 struct ll_diff_driver
*next
;
62 } *user_diff
, **user_diff_tail
;
65 * Currently there is only "diff.<drivername>.command" variable;
66 * because there are "diff.color.<slot>" variables, we are parsing
67 * this in a bit convoluted way to allow low level diff driver
70 static int parse_lldiff_command(const char *var
, const char *ep
, const char *value
)
74 struct ll_diff_driver
*drv
;
78 for (drv
= user_diff
; drv
; drv
= drv
->next
)
79 if (!strncmp(drv
->name
, name
, namelen
) && !drv
->name
[namelen
])
82 drv
= xcalloc(1, sizeof(struct ll_diff_driver
));
83 drv
->name
= xmemdupz(name
, namelen
);
85 user_diff_tail
= &user_diff
;
86 *user_diff_tail
= drv
;
87 user_diff_tail
= &(drv
->next
);
90 return git_config_string(&(drv
->cmd
), var
, value
);
94 * 'diff.<what>.funcname' attribute can be specified in the configuration
95 * to define a customized regexp to find the beginning of a function to
96 * be used for hunk header lines of "diff -p" style output.
98 static struct funcname_pattern
{
101 struct funcname_pattern
*next
;
102 } *funcname_pattern_list
;
104 static int parse_funcname_pattern(const char *var
, const char *ep
, const char *value
)
108 struct funcname_pattern
*pp
;
110 name
= var
+ 5; /* "diff." */
113 for (pp
= funcname_pattern_list
; pp
; pp
= pp
->next
)
114 if (!strncmp(pp
->name
, name
, namelen
) && !pp
->name
[namelen
])
117 pp
= xcalloc(1, sizeof(*pp
));
118 pp
->name
= xmemdupz(name
, namelen
);
119 pp
->next
= funcname_pattern_list
;
120 funcname_pattern_list
= pp
;
123 pp
->pattern
= xstrdup(value
);
128 * These are to give UI layer defaults.
129 * The core-level commands such as git-diff-files should
130 * never be affected by the setting of diff.renames
131 * the user happens to have in the configuration file.
133 int git_diff_ui_config(const char *var
, const char *value
, void *cb
)
135 if (!strcmp(var
, "diff.color") || !strcmp(var
, "color.diff")) {
136 diff_use_color_default
= git_config_colorbool(var
, value
, -1);
139 if (!strcmp(var
, "diff.renames")) {
141 diff_detect_rename_default
= DIFF_DETECT_RENAME
;
142 else if (!strcasecmp(value
, "copies") ||
143 !strcasecmp(value
, "copy"))
144 diff_detect_rename_default
= DIFF_DETECT_COPY
;
145 else if (git_config_bool(var
,value
))
146 diff_detect_rename_default
= DIFF_DETECT_RENAME
;
149 if (!strcmp(var
, "diff.autorefreshindex")) {
150 diff_auto_refresh_index
= git_config_bool(var
, value
);
153 if (!strcmp(var
, "diff.external"))
154 return git_config_string(&external_diff_cmd_cfg
, var
, value
);
155 if (!prefixcmp(var
, "diff.")) {
156 const char *ep
= strrchr(var
, '.');
158 if (ep
!= var
+ 4 && !strcmp(ep
, ".command"))
159 return parse_lldiff_command(var
, ep
, value
);
162 return git_diff_basic_config(var
, value
, cb
);
165 int git_diff_basic_config(const char *var
, const char *value
, void *cb
)
167 if (!strcmp(var
, "diff.renamelimit")) {
168 diff_rename_limit_default
= git_config_int(var
, value
);
172 if (!prefixcmp(var
, "diff.color.") || !prefixcmp(var
, "color.diff.")) {
173 int slot
= parse_diff_color_slot(var
, 11);
175 return config_error_nonbool(var
);
176 color_parse(value
, var
, diff_colors
[slot
]);
180 /* like GNU diff's --suppress-blank-empty option */
181 if (!strcmp(var
, "diff.suppress-blank-empty")) {
182 diff_suppress_blank_empty
= git_config_bool(var
, value
);
186 if (!prefixcmp(var
, "diff.")) {
187 const char *ep
= strrchr(var
, '.');
189 if (!strcmp(ep
, ".funcname")) {
191 return config_error_nonbool(var
);
192 return parse_funcname_pattern(var
, ep
, value
);
197 return git_color_default_config(var
, value
, cb
);
200 static char *quote_two(const char *one
, const char *two
)
202 int need_one
= quote_c_style(one
, NULL
, NULL
, 1);
203 int need_two
= quote_c_style(two
, NULL
, NULL
, 1);
206 strbuf_init(&res
, 0);
207 if (need_one
+ need_two
) {
208 strbuf_addch(&res
, '"');
209 quote_c_style(one
, &res
, NULL
, 1);
210 quote_c_style(two
, &res
, NULL
, 1);
211 strbuf_addch(&res
, '"');
213 strbuf_addstr(&res
, one
);
214 strbuf_addstr(&res
, two
);
216 return strbuf_detach(&res
, NULL
);
219 static const char *external_diff(void)
221 static const char *external_diff_cmd
= NULL
;
222 static int done_preparing
= 0;
225 return external_diff_cmd
;
226 external_diff_cmd
= getenv("GIT_EXTERNAL_DIFF");
227 if (!external_diff_cmd
)
228 external_diff_cmd
= external_diff_cmd_cfg
;
230 return external_diff_cmd
;
233 static struct diff_tempfile
{
234 const char *name
; /* filename external diff should read from */
237 char tmp_path
[PATH_MAX
];
240 static int count_lines(const char *data
, int size
)
242 int count
, ch
, completely_empty
= 1, nl_just_seen
= 0;
249 completely_empty
= 0;
253 completely_empty
= 0;
256 if (completely_empty
)
259 count
++; /* no trailing newline */
263 static void print_line_count(FILE *file
, int count
)
267 fprintf(file
, "0,0");
273 fprintf(file
, "1,%d", count
);
278 static void copy_file_with_prefix(FILE *file
,
279 int prefix
, const char *data
, int size
,
280 const char *set
, const char *reset
)
282 int ch
, nl_just_seen
= 1;
297 fprintf(file
, "%s\n\\ No newline at end of file\n", reset
);
300 static void emit_rewrite_diff(const char *name_a
,
302 struct diff_filespec
*one
,
303 struct diff_filespec
*two
,
304 struct diff_options
*o
)
307 int color_diff
= DIFF_OPT_TST(o
, COLOR_DIFF
);
308 const char *name_a_tab
, *name_b_tab
;
309 const char *metainfo
= diff_get_color(color_diff
, DIFF_METAINFO
);
310 const char *fraginfo
= diff_get_color(color_diff
, DIFF_FRAGINFO
);
311 const char *old
= diff_get_color(color_diff
, DIFF_FILE_OLD
);
312 const char *new = diff_get_color(color_diff
, DIFF_FILE_NEW
);
313 const char *reset
= diff_get_color(color_diff
, DIFF_RESET
);
314 static struct strbuf a_name
= STRBUF_INIT
, b_name
= STRBUF_INIT
;
316 name_a
+= (*name_a
== '/');
317 name_b
+= (*name_b
== '/');
318 name_a_tab
= strchr(name_a
, ' ') ? "\t" : "";
319 name_b_tab
= strchr(name_b
, ' ') ? "\t" : "";
321 strbuf_reset(&a_name
);
322 strbuf_reset(&b_name
);
323 quote_two_c_style(&a_name
, o
->a_prefix
, name_a
, 0);
324 quote_two_c_style(&b_name
, o
->b_prefix
, name_b
, 0);
326 diff_populate_filespec(one
, 0);
327 diff_populate_filespec(two
, 0);
328 lc_a
= count_lines(one
->data
, one
->size
);
329 lc_b
= count_lines(two
->data
, two
->size
);
331 "%s--- %s%s%s\n%s+++ %s%s%s\n%s@@ -",
332 metainfo
, a_name
.buf
, name_a_tab
, reset
,
333 metainfo
, b_name
.buf
, name_b_tab
, reset
, fraginfo
);
334 print_line_count(o
->file
, lc_a
);
335 fprintf(o
->file
, " +");
336 print_line_count(o
->file
, lc_b
);
337 fprintf(o
->file
, " @@%s\n", reset
);
339 copy_file_with_prefix(o
->file
, '-', one
->data
, one
->size
, old
, reset
);
341 copy_file_with_prefix(o
->file
, '+', two
->data
, two
->size
, new, reset
);
344 static int fill_mmfile(mmfile_t
*mf
, struct diff_filespec
*one
)
346 if (!DIFF_FILE_VALID(one
)) {
347 mf
->ptr
= (char *)""; /* does not matter */
351 else if (diff_populate_filespec(one
, 0))
354 mf
->size
= one
->size
;
358 struct diff_words_buffer
{
361 long current
; /* output pointer */
362 int suppressed_newline
;
365 static void diff_words_append(char *line
, unsigned long len
,
366 struct diff_words_buffer
*buffer
)
368 if (buffer
->text
.size
+ len
> buffer
->alloc
) {
369 buffer
->alloc
= (buffer
->text
.size
+ len
) * 3 / 2;
370 buffer
->text
.ptr
= xrealloc(buffer
->text
.ptr
, buffer
->alloc
);
374 memcpy(buffer
->text
.ptr
+ buffer
->text
.size
, line
, len
);
375 buffer
->text
.size
+= len
;
378 struct diff_words_data
{
379 struct diff_words_buffer minus
, plus
;
383 static void print_word(FILE *file
, struct diff_words_buffer
*buffer
, int len
, int color
,
384 int suppress_newline
)
392 ptr
= buffer
->text
.ptr
+ buffer
->current
;
393 buffer
->current
+= len
;
395 if (ptr
[len
- 1] == '\n') {
400 fputs(diff_get_color(1, color
), file
);
401 fwrite(ptr
, len
, 1, file
);
402 fputs(diff_get_color(1, DIFF_RESET
), file
);
405 if (suppress_newline
)
406 buffer
->suppressed_newline
= 1;
412 static void fn_out_diff_words_aux(void *priv
, char *line
, unsigned long len
)
414 struct diff_words_data
*diff_words
= priv
;
416 if (diff_words
->minus
.suppressed_newline
) {
418 putc('\n', diff_words
->file
);
419 diff_words
->minus
.suppressed_newline
= 0;
425 print_word(diff_words
->file
,
426 &diff_words
->minus
, len
, DIFF_FILE_OLD
, 1);
429 print_word(diff_words
->file
,
430 &diff_words
->plus
, len
, DIFF_FILE_NEW
, 0);
433 print_word(diff_words
->file
,
434 &diff_words
->plus
, len
, DIFF_PLAIN
, 0);
435 diff_words
->minus
.current
+= len
;
440 /* this executes the word diff on the accumulated buffers */
441 static void diff_words_show(struct diff_words_data
*diff_words
)
446 mmfile_t minus
, plus
;
449 memset(&xecfg
, 0, sizeof(xecfg
));
450 minus
.size
= diff_words
->minus
.text
.size
;
451 minus
.ptr
= xmalloc(minus
.size
);
452 memcpy(minus
.ptr
, diff_words
->minus
.text
.ptr
, minus
.size
);
453 for (i
= 0; i
< minus
.size
; i
++)
454 if (isspace(minus
.ptr
[i
]))
456 diff_words
->minus
.current
= 0;
458 plus
.size
= diff_words
->plus
.text
.size
;
459 plus
.ptr
= xmalloc(plus
.size
);
460 memcpy(plus
.ptr
, diff_words
->plus
.text
.ptr
, plus
.size
);
461 for (i
= 0; i
< plus
.size
; i
++)
462 if (isspace(plus
.ptr
[i
]))
464 diff_words
->plus
.current
= 0;
466 xpp
.flags
= XDF_NEED_MINIMAL
;
467 xecfg
.ctxlen
= diff_words
->minus
.alloc
+ diff_words
->plus
.alloc
;
468 xdi_diff_outf(&minus
, &plus
, fn_out_diff_words_aux
, diff_words
,
472 diff_words
->minus
.text
.size
= diff_words
->plus
.text
.size
= 0;
474 if (diff_words
->minus
.suppressed_newline
) {
475 putc('\n', diff_words
->file
);
476 diff_words
->minus
.suppressed_newline
= 0;
480 typedef unsigned long (*sane_truncate_fn
)(char *line
, unsigned long len
);
482 struct emit_callback
{
483 int nparents
, color_diff
;
485 sane_truncate_fn truncate
;
486 const char **label_path
;
487 struct diff_words_data
*diff_words
;
492 static void free_diff_words_data(struct emit_callback
*ecbdata
)
494 if (ecbdata
->diff_words
) {
496 if (ecbdata
->diff_words
->minus
.text
.size
||
497 ecbdata
->diff_words
->plus
.text
.size
)
498 diff_words_show(ecbdata
->diff_words
);
500 free (ecbdata
->diff_words
->minus
.text
.ptr
);
501 free (ecbdata
->diff_words
->plus
.text
.ptr
);
502 free(ecbdata
->diff_words
);
503 ecbdata
->diff_words
= NULL
;
507 const char *diff_get_color(int diff_use_color
, enum color_diff ix
)
510 return diff_colors
[ix
];
514 static void emit_line(FILE *file
, const char *set
, const char *reset
, const char *line
, int len
)
516 int has_trailing_newline
= (len
> 0 && line
[len
-1] == '\n');
517 if (has_trailing_newline
)
521 fwrite(line
, len
, 1, file
);
523 if (has_trailing_newline
)
527 static void emit_add_line(const char *reset
, struct emit_callback
*ecbdata
, const char *line
, int len
)
529 const char *ws
= diff_get_color(ecbdata
->color_diff
, DIFF_WHITESPACE
);
530 const char *set
= diff_get_color(ecbdata
->color_diff
, DIFF_FILE_NEW
);
533 emit_line(ecbdata
->file
, set
, reset
, line
, len
);
535 /* Emit just the prefix, then the rest. */
536 emit_line(ecbdata
->file
, set
, reset
, line
, ecbdata
->nparents
);
537 ws_check_emit(line
+ ecbdata
->nparents
,
538 len
- ecbdata
->nparents
, ecbdata
->ws_rule
,
539 ecbdata
->file
, set
, reset
, ws
);
543 static unsigned long sane_truncate_line(struct emit_callback
*ecb
, char *line
, unsigned long len
)
550 return ecb
->truncate(line
, len
);
554 (void) utf8_width(&cp
, &l
);
556 break; /* truncated in the middle? */
561 static void fn_out_consume(void *priv
, char *line
, unsigned long len
)
565 struct emit_callback
*ecbdata
= priv
;
566 const char *meta
= diff_get_color(ecbdata
->color_diff
, DIFF_METAINFO
);
567 const char *plain
= diff_get_color(ecbdata
->color_diff
, DIFF_PLAIN
);
568 const char *reset
= diff_get_color(ecbdata
->color_diff
, DIFF_RESET
);
570 *(ecbdata
->found_changesp
) = 1;
572 if (ecbdata
->label_path
[0]) {
573 const char *name_a_tab
, *name_b_tab
;
575 name_a_tab
= strchr(ecbdata
->label_path
[0], ' ') ? "\t" : "";
576 name_b_tab
= strchr(ecbdata
->label_path
[1], ' ') ? "\t" : "";
578 fprintf(ecbdata
->file
, "%s--- %s%s%s\n",
579 meta
, ecbdata
->label_path
[0], reset
, name_a_tab
);
580 fprintf(ecbdata
->file
, "%s+++ %s%s%s\n",
581 meta
, ecbdata
->label_path
[1], reset
, name_b_tab
);
582 ecbdata
->label_path
[0] = ecbdata
->label_path
[1] = NULL
;
585 if (diff_suppress_blank_empty
586 && len
== 2 && line
[0] == ' ' && line
[1] == '\n') {
591 /* This is not really necessary for now because
592 * this codepath only deals with two-way diffs.
594 for (i
= 0; i
< len
&& line
[i
] == '@'; i
++)
596 if (2 <= i
&& i
< len
&& line
[i
] == ' ') {
597 ecbdata
->nparents
= i
- 1;
598 len
= sane_truncate_line(ecbdata
, line
, len
);
599 emit_line(ecbdata
->file
,
600 diff_get_color(ecbdata
->color_diff
, DIFF_FRAGINFO
),
602 if (line
[len
-1] != '\n')
603 putc('\n', ecbdata
->file
);
607 if (len
< ecbdata
->nparents
) {
608 emit_line(ecbdata
->file
, reset
, reset
, line
, len
);
613 if (ecbdata
->diff_words
&& ecbdata
->nparents
!= 1)
614 /* fall back to normal diff */
615 free_diff_words_data(ecbdata
);
616 if (ecbdata
->diff_words
) {
617 if (line
[0] == '-') {
618 diff_words_append(line
, len
,
619 &ecbdata
->diff_words
->minus
);
621 } else if (line
[0] == '+') {
622 diff_words_append(line
, len
,
623 &ecbdata
->diff_words
->plus
);
626 if (ecbdata
->diff_words
->minus
.text
.size
||
627 ecbdata
->diff_words
->plus
.text
.size
)
628 diff_words_show(ecbdata
->diff_words
);
631 emit_line(ecbdata
->file
, plain
, reset
, line
, len
);
634 for (i
= 0; i
< ecbdata
->nparents
&& len
; i
++) {
636 color
= DIFF_FILE_OLD
;
637 else if (line
[i
] == '+')
638 color
= DIFF_FILE_NEW
;
641 if (color
!= DIFF_FILE_NEW
) {
642 emit_line(ecbdata
->file
,
643 diff_get_color(ecbdata
->color_diff
, color
),
647 emit_add_line(reset
, ecbdata
, line
, len
);
650 static char *pprint_rename(const char *a
, const char *b
)
655 int pfx_length
, sfx_length
;
656 int len_a
= strlen(a
);
657 int len_b
= strlen(b
);
658 int a_midlen
, b_midlen
;
659 int qlen_a
= quote_c_style(a
, NULL
, NULL
, 0);
660 int qlen_b
= quote_c_style(b
, NULL
, NULL
, 0);
662 strbuf_init(&name
, 0);
663 if (qlen_a
|| qlen_b
) {
664 quote_c_style(a
, &name
, NULL
, 0);
665 strbuf_addstr(&name
, " => ");
666 quote_c_style(b
, &name
, NULL
, 0);
667 return strbuf_detach(&name
, NULL
);
670 /* Find common prefix */
672 while (*old
&& *new && *old
== *new) {
674 pfx_length
= old
- a
+ 1;
679 /* Find common suffix */
683 while (a
<= old
&& b
<= new && *old
== *new) {
685 sfx_length
= len_a
- (old
- a
);
691 * pfx{mid-a => mid-b}sfx
692 * {pfx-a => pfx-b}sfx
693 * pfx{sfx-a => sfx-b}
696 a_midlen
= len_a
- pfx_length
- sfx_length
;
697 b_midlen
= len_b
- pfx_length
- sfx_length
;
703 strbuf_grow(&name
, pfx_length
+ a_midlen
+ b_midlen
+ sfx_length
+ 7);
704 if (pfx_length
+ sfx_length
) {
705 strbuf_add(&name
, a
, pfx_length
);
706 strbuf_addch(&name
, '{');
708 strbuf_add(&name
, a
+ pfx_length
, a_midlen
);
709 strbuf_addstr(&name
, " => ");
710 strbuf_add(&name
, b
+ pfx_length
, b_midlen
);
711 if (pfx_length
+ sfx_length
) {
712 strbuf_addch(&name
, '}');
713 strbuf_add(&name
, a
+ len_a
- sfx_length
, sfx_length
);
715 return strbuf_detach(&name
, NULL
);
721 struct diffstat_file
{
725 unsigned is_unmerged
:1;
726 unsigned is_binary
:1;
727 unsigned is_renamed
:1;
728 unsigned int added
, deleted
;
732 static struct diffstat_file
*diffstat_add(struct diffstat_t
*diffstat
,
736 struct diffstat_file
*x
;
737 x
= xcalloc(sizeof (*x
), 1);
738 if (diffstat
->nr
== diffstat
->alloc
) {
739 diffstat
->alloc
= alloc_nr(diffstat
->alloc
);
740 diffstat
->files
= xrealloc(diffstat
->files
,
741 diffstat
->alloc
* sizeof(x
));
743 diffstat
->files
[diffstat
->nr
++] = x
;
745 x
->from_name
= xstrdup(name_a
);
746 x
->name
= xstrdup(name_b
);
751 x
->name
= xstrdup(name_a
);
756 static void diffstat_consume(void *priv
, char *line
, unsigned long len
)
758 struct diffstat_t
*diffstat
= priv
;
759 struct diffstat_file
*x
= diffstat
->files
[diffstat
->nr
- 1];
763 else if (line
[0] == '-')
767 const char mime_boundary_leader
[] = "------------";
769 static int scale_linear(int it
, int width
, int max_change
)
772 * make sure that at least one '-' is printed if there were deletions,
773 * and likewise for '+'.
777 return ((it
- 1) * (width
- 1) + max_change
- 1) / (max_change
- 1);
780 static void show_name(FILE *file
,
781 const char *prefix
, const char *name
, int len
,
782 const char *reset
, const char *set
)
784 fprintf(file
, " %s%s%-*s%s |", set
, prefix
, len
, name
, reset
);
787 static void show_graph(FILE *file
, char ch
, int cnt
, const char *set
, const char *reset
)
791 fprintf(file
, "%s", set
);
794 fprintf(file
, "%s", reset
);
797 static void fill_print_name(struct diffstat_file
*file
)
801 if (file
->print_name
)
804 if (!file
->is_renamed
) {
806 strbuf_init(&buf
, 0);
807 if (quote_c_style(file
->name
, &buf
, NULL
, 0)) {
808 pname
= strbuf_detach(&buf
, NULL
);
811 strbuf_release(&buf
);
814 pname
= pprint_rename(file
->from_name
, file
->name
);
816 file
->print_name
= pname
;
819 static void show_stats(struct diffstat_t
* data
, struct diff_options
*options
)
821 int i
, len
, add
, del
, total
, adds
= 0, dels
= 0;
822 int max_change
= 0, max_len
= 0;
823 int total_files
= data
->nr
;
824 int width
, name_width
;
825 const char *reset
, *set
, *add_c
, *del_c
;
830 width
= options
->stat_width
? options
->stat_width
: 80;
831 name_width
= options
->stat_name_width
? options
->stat_name_width
: 50;
833 /* Sanity: give at least 5 columns to the graph,
834 * but leave at least 10 columns for the name.
840 else if (width
< name_width
+ 15)
841 name_width
= width
- 15;
843 /* Find the longest filename and max number of changes */
844 reset
= diff_get_color_opt(options
, DIFF_RESET
);
845 set
= diff_get_color_opt(options
, DIFF_PLAIN
);
846 add_c
= diff_get_color_opt(options
, DIFF_FILE_NEW
);
847 del_c
= diff_get_color_opt(options
, DIFF_FILE_OLD
);
849 for (i
= 0; i
< data
->nr
; i
++) {
850 struct diffstat_file
*file
= data
->files
[i
];
851 int change
= file
->added
+ file
->deleted
;
852 fill_print_name(file
);
853 len
= strlen(file
->print_name
);
857 if (file
->is_binary
|| file
->is_unmerged
)
859 if (max_change
< change
)
863 /* Compute the width of the graph part;
864 * 10 is for one blank at the beginning of the line plus
865 * " | count " between the name and the graph.
867 * From here on, name_width is the width of the name area,
868 * and width is the width of the graph area.
870 name_width
= (name_width
< max_len
) ? name_width
: max_len
;
871 if (width
< (name_width
+ 10) + max_change
)
872 width
= width
- (name_width
+ 10);
876 for (i
= 0; i
< data
->nr
; i
++) {
877 const char *prefix
= "";
878 char *name
= data
->files
[i
]->print_name
;
879 int added
= data
->files
[i
]->added
;
880 int deleted
= data
->files
[i
]->deleted
;
884 * "scale" the filename
887 name_len
= strlen(name
);
888 if (name_width
< name_len
) {
892 name
+= name_len
- len
;
893 slash
= strchr(name
, '/');
898 if (data
->files
[i
]->is_binary
) {
899 show_name(options
->file
, prefix
, name
, len
, reset
, set
);
900 fprintf(options
->file
, " Bin ");
901 fprintf(options
->file
, "%s%d%s", del_c
, deleted
, reset
);
902 fprintf(options
->file
, " -> ");
903 fprintf(options
->file
, "%s%d%s", add_c
, added
, reset
);
904 fprintf(options
->file
, " bytes");
905 fprintf(options
->file
, "\n");
908 else if (data
->files
[i
]->is_unmerged
) {
909 show_name(options
->file
, prefix
, name
, len
, reset
, set
);
910 fprintf(options
->file
, " Unmerged\n");
913 else if (!data
->files
[i
]->is_renamed
&&
914 (added
+ deleted
== 0)) {
920 * scale the add/delete
928 if (width
<= max_change
) {
929 add
= scale_linear(add
, width
, max_change
);
930 del
= scale_linear(del
, width
, max_change
);
933 show_name(options
->file
, prefix
, name
, len
, reset
, set
);
934 fprintf(options
->file
, "%5d%s", added
+ deleted
,
935 added
+ deleted
? " " : "");
936 show_graph(options
->file
, '+', add
, add_c
, reset
);
937 show_graph(options
->file
, '-', del
, del_c
, reset
);
938 fprintf(options
->file
, "\n");
940 fprintf(options
->file
,
941 "%s %d files changed, %d insertions(+), %d deletions(-)%s\n",
942 set
, total_files
, adds
, dels
, reset
);
945 static void show_shortstats(struct diffstat_t
* data
, struct diff_options
*options
)
947 int i
, adds
= 0, dels
= 0, total_files
= data
->nr
;
952 for (i
= 0; i
< data
->nr
; i
++) {
953 if (!data
->files
[i
]->is_binary
&&
954 !data
->files
[i
]->is_unmerged
) {
955 int added
= data
->files
[i
]->added
;
956 int deleted
= data
->files
[i
]->deleted
;
957 if (!data
->files
[i
]->is_renamed
&&
958 (added
+ deleted
== 0)) {
966 fprintf(options
->file
, " %d files changed, %d insertions(+), %d deletions(-)\n",
967 total_files
, adds
, dels
);
970 static void show_numstat(struct diffstat_t
* data
, struct diff_options
*options
)
977 for (i
= 0; i
< data
->nr
; i
++) {
978 struct diffstat_file
*file
= data
->files
[i
];
981 fprintf(options
->file
, "-\t-\t");
983 fprintf(options
->file
,
984 "%d\t%d\t", file
->added
, file
->deleted
);
985 if (options
->line_termination
) {
986 fill_print_name(file
);
987 if (!file
->is_renamed
)
988 write_name_quoted(file
->name
, options
->file
,
989 options
->line_termination
);
991 fputs(file
->print_name
, options
->file
);
992 putc(options
->line_termination
, options
->file
);
995 if (file
->is_renamed
) {
996 putc('\0', options
->file
);
997 write_name_quoted(file
->from_name
, options
->file
, '\0');
999 write_name_quoted(file
->name
, options
->file
, '\0');
1004 struct dirstat_file
{
1006 unsigned long changed
;
1009 struct dirstat_dir
{
1010 struct dirstat_file
*files
;
1011 int alloc
, nr
, percent
, cumulative
;
1014 static long gather_dirstat(FILE *file
, struct dirstat_dir
*dir
, unsigned long changed
, const char *base
, int baselen
)
1016 unsigned long this_dir
= 0;
1017 unsigned int sources
= 0;
1020 struct dirstat_file
*f
= dir
->files
;
1021 int namelen
= strlen(f
->name
);
1025 if (namelen
< baselen
)
1027 if (memcmp(f
->name
, base
, baselen
))
1029 slash
= strchr(f
->name
+ baselen
, '/');
1031 int newbaselen
= slash
+ 1 - f
->name
;
1032 this = gather_dirstat(file
, dir
, changed
, f
->name
, newbaselen
);
1044 * We don't report dirstat's for
1046 * - or cases where everything came from a single directory
1047 * under this directory (sources == 1).
1049 if (baselen
&& sources
!= 1) {
1050 int permille
= this_dir
* 1000 / changed
;
1052 int percent
= permille
/ 10;
1053 if (percent
>= dir
->percent
) {
1054 fprintf(file
, "%4d.%01d%% %.*s\n", percent
, permille
% 10, baselen
, base
);
1055 if (!dir
->cumulative
)
1063 static int dirstat_compare(const void *_a
, const void *_b
)
1065 const struct dirstat_file
*a
= _a
;
1066 const struct dirstat_file
*b
= _b
;
1067 return strcmp(a
->name
, b
->name
);
1070 static void show_dirstat(struct diff_options
*options
)
1073 unsigned long changed
;
1074 struct dirstat_dir dir
;
1075 struct diff_queue_struct
*q
= &diff_queued_diff
;
1080 dir
.percent
= options
->dirstat_percent
;
1081 dir
.cumulative
= DIFF_OPT_TST(options
, DIRSTAT_CUMULATIVE
);
1084 for (i
= 0; i
< q
->nr
; i
++) {
1085 struct diff_filepair
*p
= q
->queue
[i
];
1087 unsigned long copied
, added
, damage
;
1089 name
= p
->one
->path
? p
->one
->path
: p
->two
->path
;
1091 if (DIFF_FILE_VALID(p
->one
) && DIFF_FILE_VALID(p
->two
)) {
1092 diff_populate_filespec(p
->one
, 0);
1093 diff_populate_filespec(p
->two
, 0);
1094 diffcore_count_changes(p
->one
, p
->two
, NULL
, NULL
, 0,
1096 diff_free_filespec_data(p
->one
);
1097 diff_free_filespec_data(p
->two
);
1098 } else if (DIFF_FILE_VALID(p
->one
)) {
1099 diff_populate_filespec(p
->one
, 1);
1101 diff_free_filespec_data(p
->one
);
1102 } else if (DIFF_FILE_VALID(p
->two
)) {
1103 diff_populate_filespec(p
->two
, 1);
1105 added
= p
->two
->size
;
1106 diff_free_filespec_data(p
->two
);
1111 * Original minus copied is the removed material,
1112 * added is the new material. They are both damages
1113 * made to the preimage.
1115 damage
= (p
->one
->size
- copied
) + added
;
1117 ALLOC_GROW(dir
.files
, dir
.nr
+ 1, dir
.alloc
);
1118 dir
.files
[dir
.nr
].name
= name
;
1119 dir
.files
[dir
.nr
].changed
= damage
;
1124 /* This can happen even with many files, if everything was renames */
1128 /* Show all directories with more than x% of the changes */
1129 qsort(dir
.files
, dir
.nr
, sizeof(dir
.files
[0]), dirstat_compare
);
1130 gather_dirstat(options
->file
, &dir
, changed
, "", 0);
1133 static void free_diffstat_info(struct diffstat_t
*diffstat
)
1136 for (i
= 0; i
< diffstat
->nr
; i
++) {
1137 struct diffstat_file
*f
= diffstat
->files
[i
];
1138 if (f
->name
!= f
->print_name
)
1139 free(f
->print_name
);
1144 free(diffstat
->files
);
1147 struct checkdiff_t
{
1148 const char *filename
;
1150 struct diff_options
*o
;
1153 int trailing_blanks_start
;
1156 static int is_conflict_marker(const char *line
, unsigned long len
)
1163 firstchar
= line
[0];
1164 switch (firstchar
) {
1165 case '=': case '>': case '<':
1170 for (cnt
= 1; cnt
< 7; cnt
++)
1171 if (line
[cnt
] != firstchar
)
1173 /* line[0] thru line[6] are same as firstchar */
1174 if (firstchar
== '=') {
1175 /* divider between ours and theirs? */
1176 if (len
!= 8 || line
[7] != '\n')
1178 } else if (len
< 8 || !isspace(line
[7])) {
1179 /* not divider before ours nor after theirs */
1185 static void checkdiff_consume(void *priv
, char *line
, unsigned long len
)
1187 struct checkdiff_t
*data
= priv
;
1188 int color_diff
= DIFF_OPT_TST(data
->o
, COLOR_DIFF
);
1189 const char *ws
= diff_get_color(color_diff
, DIFF_WHITESPACE
);
1190 const char *reset
= diff_get_color(color_diff
, DIFF_RESET
);
1191 const char *set
= diff_get_color(color_diff
, DIFF_FILE_NEW
);
1194 if (line
[0] == '+') {
1197 if (!ws_blank_line(line
+ 1, len
- 1, data
->ws_rule
))
1198 data
->trailing_blanks_start
= 0;
1199 else if (!data
->trailing_blanks_start
)
1200 data
->trailing_blanks_start
= data
->lineno
;
1201 if (is_conflict_marker(line
+ 1, len
- 1)) {
1203 fprintf(data
->o
->file
,
1204 "%s:%d: leftover conflict marker\n",
1205 data
->filename
, data
->lineno
);
1207 bad
= ws_check(line
+ 1, len
- 1, data
->ws_rule
);
1210 data
->status
|= bad
;
1211 err
= whitespace_error_string(bad
);
1212 fprintf(data
->o
->file
, "%s:%d: %s.\n",
1213 data
->filename
, data
->lineno
, err
);
1215 emit_line(data
->o
->file
, set
, reset
, line
, 1);
1216 ws_check_emit(line
+ 1, len
- 1, data
->ws_rule
,
1217 data
->o
->file
, set
, reset
, ws
);
1218 } else if (line
[0] == ' ') {
1220 data
->trailing_blanks_start
= 0;
1221 } else if (line
[0] == '@') {
1222 char *plus
= strchr(line
, '+');
1224 data
->lineno
= strtol(plus
, NULL
, 10) - 1;
1226 die("invalid diff");
1227 data
->trailing_blanks_start
= 0;
1231 static unsigned char *deflate_it(char *data
,
1233 unsigned long *result_size
)
1236 unsigned char *deflated
;
1239 memset(&stream
, 0, sizeof(stream
));
1240 deflateInit(&stream
, zlib_compression_level
);
1241 bound
= deflateBound(&stream
, size
);
1242 deflated
= xmalloc(bound
);
1243 stream
.next_out
= deflated
;
1244 stream
.avail_out
= bound
;
1246 stream
.next_in
= (unsigned char *)data
;
1247 stream
.avail_in
= size
;
1248 while (deflate(&stream
, Z_FINISH
) == Z_OK
)
1250 deflateEnd(&stream
);
1251 *result_size
= stream
.total_out
;
1255 static void emit_binary_diff_body(FILE *file
, mmfile_t
*one
, mmfile_t
*two
)
1261 unsigned long orig_size
;
1262 unsigned long delta_size
;
1263 unsigned long deflate_size
;
1264 unsigned long data_size
;
1266 /* We could do deflated delta, or we could do just deflated two,
1267 * whichever is smaller.
1270 deflated
= deflate_it(two
->ptr
, two
->size
, &deflate_size
);
1271 if (one
->size
&& two
->size
) {
1272 delta
= diff_delta(one
->ptr
, one
->size
,
1273 two
->ptr
, two
->size
,
1274 &delta_size
, deflate_size
);
1276 void *to_free
= delta
;
1277 orig_size
= delta_size
;
1278 delta
= deflate_it(delta
, delta_size
, &delta_size
);
1283 if (delta
&& delta_size
< deflate_size
) {
1284 fprintf(file
, "delta %lu\n", orig_size
);
1287 data_size
= delta_size
;
1290 fprintf(file
, "literal %lu\n", two
->size
);
1293 data_size
= deflate_size
;
1296 /* emit data encoded in base85 */
1299 int bytes
= (52 < data_size
) ? 52 : data_size
;
1303 line
[0] = bytes
+ 'A' - 1;
1305 line
[0] = bytes
- 26 + 'a' - 1;
1306 encode_85(line
+ 1, cp
, bytes
);
1307 cp
= (char *) cp
+ bytes
;
1311 fprintf(file
, "\n");
1315 static void emit_binary_diff(FILE *file
, mmfile_t
*one
, mmfile_t
*two
)
1317 fprintf(file
, "GIT binary patch\n");
1318 emit_binary_diff_body(file
, one
, two
);
1319 emit_binary_diff_body(file
, two
, one
);
1322 static void setup_diff_attr_check(struct git_attr_check
*check
)
1324 static struct git_attr
*attr_diff
;
1327 attr_diff
= git_attr("diff", 4);
1329 check
[0].attr
= attr_diff
;
1332 static void diff_filespec_check_attr(struct diff_filespec
*one
)
1334 struct git_attr_check attr_diff_check
;
1335 int check_from_data
= 0;
1337 if (one
->checked_attr
)
1340 setup_diff_attr_check(&attr_diff_check
);
1342 one
->funcname_pattern_ident
= NULL
;
1344 if (!git_checkattr(one
->path
, 1, &attr_diff_check
)) {
1348 value
= attr_diff_check
.value
;
1349 if (ATTR_TRUE(value
))
1351 else if (ATTR_FALSE(value
))
1354 check_from_data
= 1;
1356 /* funcname pattern ident */
1357 if (ATTR_TRUE(value
) || ATTR_FALSE(value
) || ATTR_UNSET(value
))
1360 one
->funcname_pattern_ident
= value
;
1363 if (check_from_data
) {
1364 if (!one
->data
&& DIFF_FILE_VALID(one
))
1365 diff_populate_filespec(one
, 0);
1368 one
->is_binary
= buffer_is_binary(one
->data
, one
->size
);
1372 int diff_filespec_is_binary(struct diff_filespec
*one
)
1374 diff_filespec_check_attr(one
);
1375 return one
->is_binary
;
1378 static const char *funcname_pattern(const char *ident
)
1380 struct funcname_pattern
*pp
;
1382 for (pp
= funcname_pattern_list
; pp
; pp
= pp
->next
)
1383 if (!strcmp(ident
, pp
->name
))
1388 static struct builtin_funcname_pattern
{
1390 const char *pattern
;
1391 } builtin_funcname_pattern
[] = {
1392 { "bibtex", "\\(@[a-zA-Z]\\{1,\\}[ \t]*{\\{0,1\\}[ \t]*[^ \t\"@',\\#}{~%]*\\).*$" },
1393 { "html", "^\\s*\\(<[Hh][1-6]\\s.*>.*\\)$" },
1394 { "java", "!^[ ]*\\(catch\\|do\\|for\\|if\\|instanceof\\|"
1395 "new\\|return\\|switch\\|throw\\|while\\)\n"
1397 "[A-Za-z_][A-Za-z_0-9]*\\)\\{2,\\}"
1399 { "pascal", "^\\(\\(procedure\\|function\\|constructor\\|"
1400 "destructor\\|interface\\|implementation\\|"
1401 "initialization\\|finalization\\)[ \t]*.*\\)$"
1403 "^\\(.*=[ \t]*\\(class\\|record\\).*\\)$"
1405 { "python", "^\\s*\\(\\(class\\|def\\)\\s.*\\)$" },
1406 { "ruby", "^\\s*\\(\\(class\\|module\\|def\\)\\s.*\\)$" },
1407 { "tex", "^\\(\\\\\\(\\(sub\\)*section\\|chapter\\|part\\)\\*\\{0,1\\}{.*\\)$" },
1410 static const char *diff_funcname_pattern(struct diff_filespec
*one
)
1412 const char *ident
, *pattern
;
1415 diff_filespec_check_attr(one
);
1416 ident
= one
->funcname_pattern_ident
;
1420 * If the config file has "funcname.default" defined, that
1421 * regexp is used; otherwise NULL is returned and xemit uses
1422 * the built-in default.
1424 return funcname_pattern("default");
1426 /* Look up custom "funcname.$ident" regexp from config. */
1427 pattern
= funcname_pattern(ident
);
1432 * And define built-in fallback patterns here. Note that
1433 * these can be overridden by the user's config settings.
1435 for (i
= 0; i
< ARRAY_SIZE(builtin_funcname_pattern
); i
++)
1436 if (!strcmp(ident
, builtin_funcname_pattern
[i
].name
))
1437 return builtin_funcname_pattern
[i
].pattern
;
1442 static void builtin_diff(const char *name_a
,
1444 struct diff_filespec
*one
,
1445 struct diff_filespec
*two
,
1446 const char *xfrm_msg
,
1447 struct diff_options
*o
,
1448 int complete_rewrite
)
1452 char *a_one
, *b_two
;
1453 const char *set
= diff_get_color_opt(o
, DIFF_METAINFO
);
1454 const char *reset
= diff_get_color_opt(o
, DIFF_RESET
);
1456 a_one
= quote_two(o
->a_prefix
, name_a
+ (*name_a
== '/'));
1457 b_two
= quote_two(o
->b_prefix
, name_b
+ (*name_b
== '/'));
1458 lbl
[0] = DIFF_FILE_VALID(one
) ? a_one
: "/dev/null";
1459 lbl
[1] = DIFF_FILE_VALID(two
) ? b_two
: "/dev/null";
1460 fprintf(o
->file
, "%sdiff --git %s %s%s\n", set
, a_one
, b_two
, reset
);
1461 if (lbl
[0][0] == '/') {
1463 fprintf(o
->file
, "%snew file mode %06o%s\n", set
, two
->mode
, reset
);
1464 if (xfrm_msg
&& xfrm_msg
[0])
1465 fprintf(o
->file
, "%s%s%s\n", set
, xfrm_msg
, reset
);
1467 else if (lbl
[1][0] == '/') {
1468 fprintf(o
->file
, "%sdeleted file mode %06o%s\n", set
, one
->mode
, reset
);
1469 if (xfrm_msg
&& xfrm_msg
[0])
1470 fprintf(o
->file
, "%s%s%s\n", set
, xfrm_msg
, reset
);
1473 if (one
->mode
!= two
->mode
) {
1474 fprintf(o
->file
, "%sold mode %06o%s\n", set
, one
->mode
, reset
);
1475 fprintf(o
->file
, "%snew mode %06o%s\n", set
, two
->mode
, reset
);
1477 if (xfrm_msg
&& xfrm_msg
[0])
1478 fprintf(o
->file
, "%s%s%s\n", set
, xfrm_msg
, reset
);
1480 * we do not run diff between different kind
1483 if ((one
->mode
^ two
->mode
) & S_IFMT
)
1484 goto free_ab_and_return
;
1485 if (complete_rewrite
) {
1486 emit_rewrite_diff(name_a
, name_b
, one
, two
, o
);
1487 o
->found_changes
= 1;
1488 goto free_ab_and_return
;
1492 if (fill_mmfile(&mf1
, one
) < 0 || fill_mmfile(&mf2
, two
) < 0)
1493 die("unable to read files to diff");
1495 if (!DIFF_OPT_TST(o
, TEXT
) &&
1496 (diff_filespec_is_binary(one
) || diff_filespec_is_binary(two
))) {
1497 /* Quite common confusing case */
1498 if (mf1
.size
== mf2
.size
&&
1499 !memcmp(mf1
.ptr
, mf2
.ptr
, mf1
.size
))
1500 goto free_ab_and_return
;
1501 if (DIFF_OPT_TST(o
, BINARY
))
1502 emit_binary_diff(o
->file
, &mf1
, &mf2
);
1504 fprintf(o
->file
, "Binary files %s and %s differ\n",
1506 o
->found_changes
= 1;
1509 /* Crazy xdl interfaces.. */
1510 const char *diffopts
= getenv("GIT_DIFF_OPTS");
1514 struct emit_callback ecbdata
;
1515 const char *funcname_pattern
;
1517 funcname_pattern
= diff_funcname_pattern(one
);
1518 if (!funcname_pattern
)
1519 funcname_pattern
= diff_funcname_pattern(two
);
1521 memset(&xecfg
, 0, sizeof(xecfg
));
1522 memset(&ecbdata
, 0, sizeof(ecbdata
));
1523 ecbdata
.label_path
= lbl
;
1524 ecbdata
.color_diff
= DIFF_OPT_TST(o
, COLOR_DIFF
);
1525 ecbdata
.found_changesp
= &o
->found_changes
;
1526 ecbdata
.ws_rule
= whitespace_rule(name_b
? name_b
: name_a
);
1527 ecbdata
.file
= o
->file
;
1528 xpp
.flags
= XDF_NEED_MINIMAL
| o
->xdl_opts
;
1529 xecfg
.ctxlen
= o
->context
;
1530 xecfg
.flags
= XDL_EMIT_FUNCNAMES
;
1531 if (funcname_pattern
)
1532 xdiff_set_find_func(&xecfg
, funcname_pattern
);
1535 else if (!prefixcmp(diffopts
, "--unified="))
1536 xecfg
.ctxlen
= strtoul(diffopts
+ 10, NULL
, 10);
1537 else if (!prefixcmp(diffopts
, "-u"))
1538 xecfg
.ctxlen
= strtoul(diffopts
+ 2, NULL
, 10);
1539 if (DIFF_OPT_TST(o
, COLOR_DIFF_WORDS
)) {
1540 ecbdata
.diff_words
=
1541 xcalloc(1, sizeof(struct diff_words_data
));
1542 ecbdata
.diff_words
->file
= o
->file
;
1544 xdi_diff_outf(&mf1
, &mf2
, fn_out_consume
, &ecbdata
,
1545 &xpp
, &xecfg
, &ecb
);
1546 if (DIFF_OPT_TST(o
, COLOR_DIFF_WORDS
))
1547 free_diff_words_data(&ecbdata
);
1551 diff_free_filespec_data(one
);
1552 diff_free_filespec_data(two
);
1558 static void builtin_diffstat(const char *name_a
, const char *name_b
,
1559 struct diff_filespec
*one
,
1560 struct diff_filespec
*two
,
1561 struct diffstat_t
*diffstat
,
1562 struct diff_options
*o
,
1563 int complete_rewrite
)
1566 struct diffstat_file
*data
;
1568 data
= diffstat_add(diffstat
, name_a
, name_b
);
1571 data
->is_unmerged
= 1;
1574 if (complete_rewrite
) {
1575 diff_populate_filespec(one
, 0);
1576 diff_populate_filespec(two
, 0);
1577 data
->deleted
= count_lines(one
->data
, one
->size
);
1578 data
->added
= count_lines(two
->data
, two
->size
);
1579 goto free_and_return
;
1581 if (fill_mmfile(&mf1
, one
) < 0 || fill_mmfile(&mf2
, two
) < 0)
1582 die("unable to read files to diff");
1584 if (diff_filespec_is_binary(one
) || diff_filespec_is_binary(two
)) {
1585 data
->is_binary
= 1;
1586 data
->added
= mf2
.size
;
1587 data
->deleted
= mf1
.size
;
1589 /* Crazy xdl interfaces.. */
1594 memset(&xecfg
, 0, sizeof(xecfg
));
1595 xpp
.flags
= XDF_NEED_MINIMAL
| o
->xdl_opts
;
1596 xdi_diff_outf(&mf1
, &mf2
, diffstat_consume
, diffstat
,
1597 &xpp
, &xecfg
, &ecb
);
1601 diff_free_filespec_data(one
);
1602 diff_free_filespec_data(two
);
1605 static void builtin_checkdiff(const char *name_a
, const char *name_b
,
1606 const char *attr_path
,
1607 struct diff_filespec
*one
,
1608 struct diff_filespec
*two
,
1609 struct diff_options
*o
)
1612 struct checkdiff_t data
;
1617 memset(&data
, 0, sizeof(data
));
1618 data
.filename
= name_b
? name_b
: name_a
;
1621 data
.ws_rule
= whitespace_rule(attr_path
);
1623 if (fill_mmfile(&mf1
, one
) < 0 || fill_mmfile(&mf2
, two
) < 0)
1624 die("unable to read files to diff");
1627 * All the other codepaths check both sides, but not checking
1628 * the "old" side here is deliberate. We are checking the newly
1629 * introduced changes, and as long as the "new" side is text, we
1630 * can and should check what it introduces.
1632 if (diff_filespec_is_binary(two
))
1633 goto free_and_return
;
1635 /* Crazy xdl interfaces.. */
1640 memset(&xecfg
, 0, sizeof(xecfg
));
1641 xecfg
.ctxlen
= 1; /* at least one context line */
1642 xpp
.flags
= XDF_NEED_MINIMAL
;
1643 xdi_diff_outf(&mf1
, &mf2
, checkdiff_consume
, &data
,
1644 &xpp
, &xecfg
, &ecb
);
1646 if ((data
.ws_rule
& WS_TRAILING_SPACE
) &&
1647 data
.trailing_blanks_start
) {
1648 fprintf(o
->file
, "%s:%d: ends with blank lines.\n",
1649 data
.filename
, data
.trailing_blanks_start
);
1650 data
.status
= 1; /* report errors */
1654 diff_free_filespec_data(one
);
1655 diff_free_filespec_data(two
);
1657 DIFF_OPT_SET(o
, CHECK_FAILED
);
1660 struct diff_filespec
*alloc_filespec(const char *path
)
1662 int namelen
= strlen(path
);
1663 struct diff_filespec
*spec
= xmalloc(sizeof(*spec
) + namelen
+ 1);
1665 memset(spec
, 0, sizeof(*spec
));
1666 spec
->path
= (char *)(spec
+ 1);
1667 memcpy(spec
->path
, path
, namelen
+1);
1672 void free_filespec(struct diff_filespec
*spec
)
1674 if (!--spec
->count
) {
1675 diff_free_filespec_data(spec
);
1680 void fill_filespec(struct diff_filespec
*spec
, const unsigned char *sha1
,
1681 unsigned short mode
)
1684 spec
->mode
= canon_mode(mode
);
1685 hashcpy(spec
->sha1
, sha1
);
1686 spec
->sha1_valid
= !is_null_sha1(sha1
);
1691 * Given a name and sha1 pair, if the index tells us the file in
1692 * the work tree has that object contents, return true, so that
1693 * prepare_temp_file() does not have to inflate and extract.
1695 static int reuse_worktree_file(const char *name
, const unsigned char *sha1
, int want_file
)
1697 struct cache_entry
*ce
;
1701 /* We do not read the cache ourselves here, because the
1702 * benchmark with my previous version that always reads cache
1703 * shows that it makes things worse for diff-tree comparing
1704 * two linux-2.6 kernel trees in an already checked out work
1705 * tree. This is because most diff-tree comparisons deal with
1706 * only a small number of files, while reading the cache is
1707 * expensive for a large project, and its cost outweighs the
1708 * savings we get by not inflating the object to a temporary
1709 * file. Practically, this code only helps when we are used
1710 * by diff-cache --cached, which does read the cache before
1716 /* We want to avoid the working directory if our caller
1717 * doesn't need the data in a normal file, this system
1718 * is rather slow with its stat/open/mmap/close syscalls,
1719 * and the object is contained in a pack file. The pack
1720 * is probably already open and will be faster to obtain
1721 * the data through than the working directory. Loose
1722 * objects however would tend to be slower as they need
1723 * to be individually opened and inflated.
1725 if (!FAST_WORKING_DIRECTORY
&& !want_file
&& has_sha1_pack(sha1
, NULL
))
1729 pos
= cache_name_pos(name
, len
);
1732 ce
= active_cache
[pos
];
1735 * This is not the sha1 we are looking for, or
1736 * unreusable because it is not a regular file.
1738 if (hashcmp(sha1
, ce
->sha1
) || !S_ISREG(ce
->ce_mode
))
1742 * If ce matches the file in the work tree, we can reuse it.
1744 if (ce_uptodate(ce
) ||
1745 (!lstat(name
, &st
) && !ce_match_stat(ce
, &st
, 0)))
1751 static int populate_from_stdin(struct diff_filespec
*s
)
1756 strbuf_init(&buf
, 0);
1757 if (strbuf_read(&buf
, 0, 0) < 0)
1758 return error("error while reading from stdin %s",
1761 s
->should_munmap
= 0;
1762 s
->data
= strbuf_detach(&buf
, &size
);
1768 static int diff_populate_gitlink(struct diff_filespec
*s
, int size_only
)
1771 char *data
= xmalloc(100);
1772 len
= snprintf(data
, 100,
1773 "Subproject commit %s\n", sha1_to_hex(s
->sha1
));
1785 * While doing rename detection and pickaxe operation, we may need to
1786 * grab the data for the blob (or file) for our own in-core comparison.
1787 * diff_filespec has data and size fields for this purpose.
1789 int diff_populate_filespec(struct diff_filespec
*s
, int size_only
)
1792 if (!DIFF_FILE_VALID(s
))
1793 die("internal error: asking to populate invalid file.");
1794 if (S_ISDIR(s
->mode
))
1800 if (size_only
&& 0 < s
->size
)
1803 if (S_ISGITLINK(s
->mode
))
1804 return diff_populate_gitlink(s
, size_only
);
1806 if (!s
->sha1_valid
||
1807 reuse_worktree_file(s
->path
, s
->sha1
, 0)) {
1812 if (!strcmp(s
->path
, "-"))
1813 return populate_from_stdin(s
);
1815 if (lstat(s
->path
, &st
) < 0) {
1816 if (errno
== ENOENT
) {
1820 s
->data
= (char *)"";
1825 s
->size
= xsize_t(st
.st_size
);
1830 if (S_ISLNK(st
.st_mode
)) {
1832 s
->data
= xmalloc(s
->size
);
1834 ret
= readlink(s
->path
, s
->data
, s
->size
);
1841 fd
= open(s
->path
, O_RDONLY
);
1844 s
->data
= xmmap(NULL
, s
->size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
1846 s
->should_munmap
= 1;
1849 * Convert from working tree format to canonical git format
1851 strbuf_init(&buf
, 0);
1852 if (convert_to_git(s
->path
, s
->data
, s
->size
, &buf
, safe_crlf
)) {
1854 munmap(s
->data
, s
->size
);
1855 s
->should_munmap
= 0;
1856 s
->data
= strbuf_detach(&buf
, &size
);
1862 enum object_type type
;
1864 type
= sha1_object_info(s
->sha1
, &s
->size
);
1866 s
->data
= read_sha1_file(s
->sha1
, &type
, &s
->size
);
1873 void diff_free_filespec_blob(struct diff_filespec
*s
)
1877 else if (s
->should_munmap
)
1878 munmap(s
->data
, s
->size
);
1880 if (s
->should_free
|| s
->should_munmap
) {
1881 s
->should_free
= s
->should_munmap
= 0;
1886 void diff_free_filespec_data(struct diff_filespec
*s
)
1888 diff_free_filespec_blob(s
);
1893 static void prep_temp_blob(struct diff_tempfile
*temp
,
1896 const unsigned char *sha1
,
1901 fd
= git_mkstemp(temp
->tmp_path
, PATH_MAX
, ".diff_XXXXXX");
1903 die("unable to create temp-file: %s", strerror(errno
));
1904 if (write_in_full(fd
, blob
, size
) != size
)
1905 die("unable to write temp-file");
1907 temp
->name
= temp
->tmp_path
;
1908 strcpy(temp
->hex
, sha1_to_hex(sha1
));
1910 sprintf(temp
->mode
, "%06o", mode
);
1913 static void prepare_temp_file(const char *name
,
1914 struct diff_tempfile
*temp
,
1915 struct diff_filespec
*one
)
1917 if (!DIFF_FILE_VALID(one
)) {
1919 /* A '-' entry produces this for file-2, and
1920 * a '+' entry produces this for file-1.
1922 temp
->name
= "/dev/null";
1923 strcpy(temp
->hex
, ".");
1924 strcpy(temp
->mode
, ".");
1928 if (!one
->sha1_valid
||
1929 reuse_worktree_file(name
, one
->sha1
, 1)) {
1931 if (lstat(name
, &st
) < 0) {
1932 if (errno
== ENOENT
)
1933 goto not_a_valid_file
;
1934 die("stat(%s): %s", name
, strerror(errno
));
1936 if (S_ISLNK(st
.st_mode
)) {
1938 char buf
[PATH_MAX
+ 1]; /* ought to be SYMLINK_MAX */
1939 size_t sz
= xsize_t(st
.st_size
);
1940 if (sizeof(buf
) <= st
.st_size
)
1941 die("symlink too long: %s", name
);
1942 ret
= readlink(name
, buf
, sz
);
1944 die("readlink(%s)", name
);
1945 prep_temp_blob(temp
, buf
, sz
,
1947 one
->sha1
: null_sha1
),
1949 one
->mode
: S_IFLNK
));
1952 /* we can borrow from the file in the work tree */
1954 if (!one
->sha1_valid
)
1955 strcpy(temp
->hex
, sha1_to_hex(null_sha1
));
1957 strcpy(temp
->hex
, sha1_to_hex(one
->sha1
));
1958 /* Even though we may sometimes borrow the
1959 * contents from the work tree, we always want
1960 * one->mode. mode is trustworthy even when
1961 * !(one->sha1_valid), as long as
1962 * DIFF_FILE_VALID(one).
1964 sprintf(temp
->mode
, "%06o", one
->mode
);
1969 if (diff_populate_filespec(one
, 0))
1970 die("cannot read data blob for %s", one
->path
);
1971 prep_temp_blob(temp
, one
->data
, one
->size
,
1972 one
->sha1
, one
->mode
);
1976 static void remove_tempfile(void)
1980 for (i
= 0; i
< 2; i
++)
1981 if (diff_temp
[i
].name
== diff_temp
[i
].tmp_path
) {
1982 unlink(diff_temp
[i
].name
);
1983 diff_temp
[i
].name
= NULL
;
1987 static void remove_tempfile_on_signal(int signo
)
1990 signal(SIGINT
, SIG_DFL
);
1994 /* An external diff command takes:
1996 * diff-cmd name infile1 infile1-sha1 infile1-mode \
1997 * infile2 infile2-sha1 infile2-mode [ rename-to ]
2000 static void run_external_diff(const char *pgm
,
2003 struct diff_filespec
*one
,
2004 struct diff_filespec
*two
,
2005 const char *xfrm_msg
,
2006 int complete_rewrite
)
2008 const char *spawn_arg
[10];
2009 struct diff_tempfile
*temp
= diff_temp
;
2011 static int atexit_asked
= 0;
2012 const char *othername
;
2013 const char **arg
= &spawn_arg
[0];
2015 othername
= (other
? other
: name
);
2017 prepare_temp_file(name
, &temp
[0], one
);
2018 prepare_temp_file(othername
, &temp
[1], two
);
2019 if (! atexit_asked
&&
2020 (temp
[0].name
== temp
[0].tmp_path
||
2021 temp
[1].name
== temp
[1].tmp_path
)) {
2023 atexit(remove_tempfile
);
2025 signal(SIGINT
, remove_tempfile_on_signal
);
2031 *arg
++ = temp
[0].name
;
2032 *arg
++ = temp
[0].hex
;
2033 *arg
++ = temp
[0].mode
;
2034 *arg
++ = temp
[1].name
;
2035 *arg
++ = temp
[1].hex
;
2036 *arg
++ = temp
[1].mode
;
2047 retval
= run_command_v_opt(spawn_arg
, 0);
2050 fprintf(stderr
, "external diff died, stopping at %s.\n", name
);
2055 static const char *external_diff_attr(const char *name
)
2057 struct git_attr_check attr_diff_check
;
2062 setup_diff_attr_check(&attr_diff_check
);
2063 if (!git_checkattr(name
, 1, &attr_diff_check
)) {
2064 const char *value
= attr_diff_check
.value
;
2065 if (!ATTR_TRUE(value
) &&
2066 !ATTR_FALSE(value
) &&
2067 !ATTR_UNSET(value
)) {
2068 struct ll_diff_driver
*drv
;
2070 for (drv
= user_diff
; drv
; drv
= drv
->next
)
2071 if (!strcmp(drv
->name
, value
))
2078 static void run_diff_cmd(const char *pgm
,
2081 const char *attr_path
,
2082 struct diff_filespec
*one
,
2083 struct diff_filespec
*two
,
2084 const char *xfrm_msg
,
2085 struct diff_options
*o
,
2086 int complete_rewrite
)
2088 if (!DIFF_OPT_TST(o
, ALLOW_EXTERNAL
))
2091 const char *cmd
= external_diff_attr(attr_path
);
2097 run_external_diff(pgm
, name
, other
, one
, two
, xfrm_msg
,
2102 builtin_diff(name
, other
? other
: name
,
2103 one
, two
, xfrm_msg
, o
, complete_rewrite
);
2105 fprintf(o
->file
, "* Unmerged path %s\n", name
);
2108 static void diff_fill_sha1_info(struct diff_filespec
*one
)
2110 if (DIFF_FILE_VALID(one
)) {
2111 if (!one
->sha1_valid
) {
2113 if (!strcmp(one
->path
, "-")) {
2114 hashcpy(one
->sha1
, null_sha1
);
2117 if (lstat(one
->path
, &st
) < 0)
2118 die("stat %s", one
->path
);
2119 if (index_path(one
->sha1
, one
->path
, &st
, 0))
2120 die("cannot hash %s\n", one
->path
);
2127 static int similarity_index(struct diff_filepair
*p
)
2129 return p
->score
* 100 / MAX_SCORE
;
2132 static void strip_prefix(int prefix_length
, const char **namep
, const char **otherp
)
2134 /* Strip the prefix but do not molest /dev/null and absolute paths */
2135 if (*namep
&& **namep
!= '/')
2136 *namep
+= prefix_length
;
2137 if (*otherp
&& **otherp
!= '/')
2138 *otherp
+= prefix_length
;
2141 static void run_diff(struct diff_filepair
*p
, struct diff_options
*o
)
2143 const char *pgm
= external_diff();
2146 struct diff_filespec
*one
= p
->one
;
2147 struct diff_filespec
*two
= p
->two
;
2150 const char *attr_path
;
2151 int complete_rewrite
= 0;
2153 name
= p
->one
->path
;
2154 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
2156 if (o
->prefix_length
)
2157 strip_prefix(o
->prefix_length
, &name
, &other
);
2159 if (DIFF_PAIR_UNMERGED(p
)) {
2160 run_diff_cmd(pgm
, name
, NULL
, attr_path
,
2161 NULL
, NULL
, NULL
, o
, 0);
2165 diff_fill_sha1_info(one
);
2166 diff_fill_sha1_info(two
);
2168 strbuf_init(&msg
, PATH_MAX
* 2 + 300);
2169 switch (p
->status
) {
2170 case DIFF_STATUS_COPIED
:
2171 strbuf_addf(&msg
, "similarity index %d%%", similarity_index(p
));
2172 strbuf_addstr(&msg
, "\ncopy from ");
2173 quote_c_style(name
, &msg
, NULL
, 0);
2174 strbuf_addstr(&msg
, "\ncopy to ");
2175 quote_c_style(other
, &msg
, NULL
, 0);
2176 strbuf_addch(&msg
, '\n');
2178 case DIFF_STATUS_RENAMED
:
2179 strbuf_addf(&msg
, "similarity index %d%%", similarity_index(p
));
2180 strbuf_addstr(&msg
, "\nrename from ");
2181 quote_c_style(name
, &msg
, NULL
, 0);
2182 strbuf_addstr(&msg
, "\nrename to ");
2183 quote_c_style(other
, &msg
, NULL
, 0);
2184 strbuf_addch(&msg
, '\n');
2186 case DIFF_STATUS_MODIFIED
:
2188 strbuf_addf(&msg
, "dissimilarity index %d%%\n",
2189 similarity_index(p
));
2190 complete_rewrite
= 1;
2199 if (hashcmp(one
->sha1
, two
->sha1
)) {
2200 int abbrev
= DIFF_OPT_TST(o
, FULL_INDEX
) ? 40 : DEFAULT_ABBREV
;
2202 if (DIFF_OPT_TST(o
, BINARY
)) {
2204 if ((!fill_mmfile(&mf
, one
) && diff_filespec_is_binary(one
)) ||
2205 (!fill_mmfile(&mf
, two
) && diff_filespec_is_binary(two
)))
2208 strbuf_addf(&msg
, "index %.*s..%.*s",
2209 abbrev
, sha1_to_hex(one
->sha1
),
2210 abbrev
, sha1_to_hex(two
->sha1
));
2211 if (one
->mode
== two
->mode
)
2212 strbuf_addf(&msg
, " %06o", one
->mode
);
2213 strbuf_addch(&msg
, '\n');
2217 strbuf_setlen(&msg
, msg
.len
- 1);
2218 xfrm_msg
= msg
.len
? msg
.buf
: NULL
;
2221 DIFF_FILE_VALID(one
) && DIFF_FILE_VALID(two
) &&
2222 (S_IFMT
& one
->mode
) != (S_IFMT
& two
->mode
)) {
2223 /* a filepair that changes between file and symlink
2224 * needs to be split into deletion and creation.
2226 struct diff_filespec
*null
= alloc_filespec(two
->path
);
2227 run_diff_cmd(NULL
, name
, other
, attr_path
,
2228 one
, null
, xfrm_msg
, o
, 0);
2230 null
= alloc_filespec(one
->path
);
2231 run_diff_cmd(NULL
, name
, other
, attr_path
,
2232 null
, two
, xfrm_msg
, o
, 0);
2236 run_diff_cmd(pgm
, name
, other
, attr_path
,
2237 one
, two
, xfrm_msg
, o
, complete_rewrite
);
2239 strbuf_release(&msg
);
2242 static void run_diffstat(struct diff_filepair
*p
, struct diff_options
*o
,
2243 struct diffstat_t
*diffstat
)
2247 int complete_rewrite
= 0;
2249 if (DIFF_PAIR_UNMERGED(p
)) {
2251 builtin_diffstat(p
->one
->path
, NULL
, NULL
, NULL
, diffstat
, o
, 0);
2255 name
= p
->one
->path
;
2256 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
2258 if (o
->prefix_length
)
2259 strip_prefix(o
->prefix_length
, &name
, &other
);
2261 diff_fill_sha1_info(p
->one
);
2262 diff_fill_sha1_info(p
->two
);
2264 if (p
->status
== DIFF_STATUS_MODIFIED
&& p
->score
)
2265 complete_rewrite
= 1;
2266 builtin_diffstat(name
, other
, p
->one
, p
->two
, diffstat
, o
, complete_rewrite
);
2269 static void run_checkdiff(struct diff_filepair
*p
, struct diff_options
*o
)
2273 const char *attr_path
;
2275 if (DIFF_PAIR_UNMERGED(p
)) {
2280 name
= p
->one
->path
;
2281 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
2282 attr_path
= other
? other
: name
;
2284 if (o
->prefix_length
)
2285 strip_prefix(o
->prefix_length
, &name
, &other
);
2287 diff_fill_sha1_info(p
->one
);
2288 diff_fill_sha1_info(p
->two
);
2290 builtin_checkdiff(name
, other
, attr_path
, p
->one
, p
->two
, o
);
2293 void diff_setup(struct diff_options
*options
)
2295 memset(options
, 0, sizeof(*options
));
2297 options
->file
= stdout
;
2299 options
->line_termination
= '\n';
2300 options
->break_opt
= -1;
2301 options
->rename_limit
= -1;
2302 options
->dirstat_percent
= 3;
2303 DIFF_OPT_CLR(options
, DIRSTAT_CUMULATIVE
);
2304 options
->context
= 3;
2306 options
->change
= diff_change
;
2307 options
->add_remove
= diff_addremove
;
2308 if (diff_use_color_default
> 0)
2309 DIFF_OPT_SET(options
, COLOR_DIFF
);
2311 DIFF_OPT_CLR(options
, COLOR_DIFF
);
2312 options
->detect_rename
= diff_detect_rename_default
;
2314 options
->a_prefix
= "a/";
2315 options
->b_prefix
= "b/";
2318 int diff_setup_done(struct diff_options
*options
)
2322 if (options
->output_format
& DIFF_FORMAT_NAME
)
2324 if (options
->output_format
& DIFF_FORMAT_NAME_STATUS
)
2326 if (options
->output_format
& DIFF_FORMAT_CHECKDIFF
)
2328 if (options
->output_format
& DIFF_FORMAT_NO_OUTPUT
)
2331 die("--name-only, --name-status, --check and -s are mutually exclusive");
2333 if (DIFF_OPT_TST(options
, FIND_COPIES_HARDER
))
2334 options
->detect_rename
= DIFF_DETECT_COPY
;
2336 if (!DIFF_OPT_TST(options
, RELATIVE_NAME
))
2337 options
->prefix
= NULL
;
2338 if (options
->prefix
)
2339 options
->prefix_length
= strlen(options
->prefix
);
2341 options
->prefix_length
= 0;
2343 if (options
->output_format
& (DIFF_FORMAT_NAME
|
2344 DIFF_FORMAT_NAME_STATUS
|
2345 DIFF_FORMAT_CHECKDIFF
|
2346 DIFF_FORMAT_NO_OUTPUT
))
2347 options
->output_format
&= ~(DIFF_FORMAT_RAW
|
2348 DIFF_FORMAT_NUMSTAT
|
2349 DIFF_FORMAT_DIFFSTAT
|
2350 DIFF_FORMAT_SHORTSTAT
|
2351 DIFF_FORMAT_DIRSTAT
|
2352 DIFF_FORMAT_SUMMARY
|
2356 * These cases always need recursive; we do not drop caller-supplied
2357 * recursive bits for other formats here.
2359 if (options
->output_format
& (DIFF_FORMAT_PATCH
|
2360 DIFF_FORMAT_NUMSTAT
|
2361 DIFF_FORMAT_DIFFSTAT
|
2362 DIFF_FORMAT_SHORTSTAT
|
2363 DIFF_FORMAT_DIRSTAT
|
2364 DIFF_FORMAT_SUMMARY
|
2365 DIFF_FORMAT_CHECKDIFF
))
2366 DIFF_OPT_SET(options
, RECURSIVE
);
2368 * Also pickaxe would not work very well if you do not say recursive
2370 if (options
->pickaxe
)
2371 DIFF_OPT_SET(options
, RECURSIVE
);
2373 if (options
->detect_rename
&& options
->rename_limit
< 0)
2374 options
->rename_limit
= diff_rename_limit_default
;
2375 if (options
->setup
& DIFF_SETUP_USE_CACHE
) {
2377 /* read-cache does not die even when it fails
2378 * so it is safe for us to do this here. Also
2379 * it does not smudge active_cache or active_nr
2380 * when it fails, so we do not have to worry about
2381 * cleaning it up ourselves either.
2385 if (options
->abbrev
<= 0 || 40 < options
->abbrev
)
2386 options
->abbrev
= 40; /* full */
2389 * It does not make sense to show the first hit we happened
2390 * to have found. It does not make sense not to return with
2391 * exit code in such a case either.
2393 if (DIFF_OPT_TST(options
, QUIET
)) {
2394 options
->output_format
= DIFF_FORMAT_NO_OUTPUT
;
2395 DIFF_OPT_SET(options
, EXIT_WITH_STATUS
);
2399 * If we postprocess in diffcore, we cannot simply return
2400 * upon the first hit. We need to run diff as usual.
2402 if (options
->pickaxe
|| options
->filter
)
2403 DIFF_OPT_CLR(options
, QUIET
);
2408 static int opt_arg(const char *arg
, int arg_short
, const char *arg_long
, int *val
)
2418 if (c
== arg_short
) {
2422 if (val
&& isdigit(c
)) {
2424 int n
= strtoul(arg
, &end
, 10);
2435 eq
= strchr(arg
, '=');
2440 if (!len
|| strncmp(arg
, arg_long
, len
))
2445 if (!isdigit(*++eq
))
2447 n
= strtoul(eq
, &end
, 10);
2455 static int diff_scoreopt_parse(const char *opt
);
2457 int diff_opt_parse(struct diff_options
*options
, const char **av
, int ac
)
2459 const char *arg
= av
[0];
2461 /* Output format options */
2462 if (!strcmp(arg
, "-p") || !strcmp(arg
, "-u"))
2463 options
->output_format
|= DIFF_FORMAT_PATCH
;
2464 else if (opt_arg(arg
, 'U', "unified", &options
->context
))
2465 options
->output_format
|= DIFF_FORMAT_PATCH
;
2466 else if (!strcmp(arg
, "--raw"))
2467 options
->output_format
|= DIFF_FORMAT_RAW
;
2468 else if (!strcmp(arg
, "--patch-with-raw"))
2469 options
->output_format
|= DIFF_FORMAT_PATCH
| DIFF_FORMAT_RAW
;
2470 else if (!strcmp(arg
, "--numstat"))
2471 options
->output_format
|= DIFF_FORMAT_NUMSTAT
;
2472 else if (!strcmp(arg
, "--shortstat"))
2473 options
->output_format
|= DIFF_FORMAT_SHORTSTAT
;
2474 else if (opt_arg(arg
, 'X', "dirstat", &options
->dirstat_percent
))
2475 options
->output_format
|= DIFF_FORMAT_DIRSTAT
;
2476 else if (!strcmp(arg
, "--cumulative")) {
2477 options
->output_format
|= DIFF_FORMAT_DIRSTAT
;
2478 DIFF_OPT_SET(options
, DIRSTAT_CUMULATIVE
);
2480 else if (!strcmp(arg
, "--check"))
2481 options
->output_format
|= DIFF_FORMAT_CHECKDIFF
;
2482 else if (!strcmp(arg
, "--summary"))
2483 options
->output_format
|= DIFF_FORMAT_SUMMARY
;
2484 else if (!strcmp(arg
, "--patch-with-stat"))
2485 options
->output_format
|= DIFF_FORMAT_PATCH
| DIFF_FORMAT_DIFFSTAT
;
2486 else if (!strcmp(arg
, "--name-only"))
2487 options
->output_format
|= DIFF_FORMAT_NAME
;
2488 else if (!strcmp(arg
, "--name-status"))
2489 options
->output_format
|= DIFF_FORMAT_NAME_STATUS
;
2490 else if (!strcmp(arg
, "-s"))
2491 options
->output_format
|= DIFF_FORMAT_NO_OUTPUT
;
2492 else if (!prefixcmp(arg
, "--stat")) {
2494 int width
= options
->stat_width
;
2495 int name_width
= options
->stat_name_width
;
2501 if (!prefixcmp(arg
, "-width="))
2502 width
= strtoul(arg
+ 7, &end
, 10);
2503 else if (!prefixcmp(arg
, "-name-width="))
2504 name_width
= strtoul(arg
+ 12, &end
, 10);
2507 width
= strtoul(arg
+1, &end
, 10);
2509 name_width
= strtoul(end
+1, &end
, 10);
2512 /* Important! This checks all the error cases! */
2515 options
->output_format
|= DIFF_FORMAT_DIFFSTAT
;
2516 options
->stat_name_width
= name_width
;
2517 options
->stat_width
= width
;
2520 /* renames options */
2521 else if (!prefixcmp(arg
, "-B")) {
2522 if ((options
->break_opt
= diff_scoreopt_parse(arg
)) == -1)
2525 else if (!prefixcmp(arg
, "-M")) {
2526 if ((options
->rename_score
= diff_scoreopt_parse(arg
)) == -1)
2528 options
->detect_rename
= DIFF_DETECT_RENAME
;
2530 else if (!prefixcmp(arg
, "-C")) {
2531 if (options
->detect_rename
== DIFF_DETECT_COPY
)
2532 DIFF_OPT_SET(options
, FIND_COPIES_HARDER
);
2533 if ((options
->rename_score
= diff_scoreopt_parse(arg
)) == -1)
2535 options
->detect_rename
= DIFF_DETECT_COPY
;
2537 else if (!strcmp(arg
, "--no-renames"))
2538 options
->detect_rename
= 0;
2539 else if (!strcmp(arg
, "--relative"))
2540 DIFF_OPT_SET(options
, RELATIVE_NAME
);
2541 else if (!prefixcmp(arg
, "--relative=")) {
2542 DIFF_OPT_SET(options
, RELATIVE_NAME
);
2543 options
->prefix
= arg
+ 11;
2547 else if (!strcmp(arg
, "-w") || !strcmp(arg
, "--ignore-all-space"))
2548 options
->xdl_opts
|= XDF_IGNORE_WHITESPACE
;
2549 else if (!strcmp(arg
, "-b") || !strcmp(arg
, "--ignore-space-change"))
2550 options
->xdl_opts
|= XDF_IGNORE_WHITESPACE_CHANGE
;
2551 else if (!strcmp(arg
, "--ignore-space-at-eol"))
2552 options
->xdl_opts
|= XDF_IGNORE_WHITESPACE_AT_EOL
;
2555 else if (!strcmp(arg
, "--binary")) {
2556 options
->output_format
|= DIFF_FORMAT_PATCH
;
2557 DIFF_OPT_SET(options
, BINARY
);
2559 else if (!strcmp(arg
, "--full-index"))
2560 DIFF_OPT_SET(options
, FULL_INDEX
);
2561 else if (!strcmp(arg
, "-a") || !strcmp(arg
, "--text"))
2562 DIFF_OPT_SET(options
, TEXT
);
2563 else if (!strcmp(arg
, "-R"))
2564 DIFF_OPT_SET(options
, REVERSE_DIFF
);
2565 else if (!strcmp(arg
, "--find-copies-harder"))
2566 DIFF_OPT_SET(options
, FIND_COPIES_HARDER
);
2567 else if (!strcmp(arg
, "--follow"))
2568 DIFF_OPT_SET(options
, FOLLOW_RENAMES
);
2569 else if (!strcmp(arg
, "--color"))
2570 DIFF_OPT_SET(options
, COLOR_DIFF
);
2571 else if (!strcmp(arg
, "--no-color"))
2572 DIFF_OPT_CLR(options
, COLOR_DIFF
);
2573 else if (!strcmp(arg
, "--color-words"))
2574 options
->flags
|= DIFF_OPT_COLOR_DIFF
| DIFF_OPT_COLOR_DIFF_WORDS
;
2575 else if (!strcmp(arg
, "--exit-code"))
2576 DIFF_OPT_SET(options
, EXIT_WITH_STATUS
);
2577 else if (!strcmp(arg
, "--quiet"))
2578 DIFF_OPT_SET(options
, QUIET
);
2579 else if (!strcmp(arg
, "--ext-diff"))
2580 DIFF_OPT_SET(options
, ALLOW_EXTERNAL
);
2581 else if (!strcmp(arg
, "--no-ext-diff"))
2582 DIFF_OPT_CLR(options
, ALLOW_EXTERNAL
);
2583 else if (!strcmp(arg
, "--ignore-submodules"))
2584 DIFF_OPT_SET(options
, IGNORE_SUBMODULES
);
2587 else if (!strcmp(arg
, "-z"))
2588 options
->line_termination
= 0;
2589 else if (!prefixcmp(arg
, "-l"))
2590 options
->rename_limit
= strtoul(arg
+2, NULL
, 10);
2591 else if (!prefixcmp(arg
, "-S"))
2592 options
->pickaxe
= arg
+ 2;
2593 else if (!strcmp(arg
, "--pickaxe-all"))
2594 options
->pickaxe_opts
= DIFF_PICKAXE_ALL
;
2595 else if (!strcmp(arg
, "--pickaxe-regex"))
2596 options
->pickaxe_opts
= DIFF_PICKAXE_REGEX
;
2597 else if (!prefixcmp(arg
, "-O"))
2598 options
->orderfile
= arg
+ 2;
2599 else if (!prefixcmp(arg
, "--diff-filter="))
2600 options
->filter
= arg
+ 14;
2601 else if (!strcmp(arg
, "--abbrev"))
2602 options
->abbrev
= DEFAULT_ABBREV
;
2603 else if (!prefixcmp(arg
, "--abbrev=")) {
2604 options
->abbrev
= strtoul(arg
+ 9, NULL
, 10);
2605 if (options
->abbrev
< MINIMUM_ABBREV
)
2606 options
->abbrev
= MINIMUM_ABBREV
;
2607 else if (40 < options
->abbrev
)
2608 options
->abbrev
= 40;
2610 else if (!prefixcmp(arg
, "--src-prefix="))
2611 options
->a_prefix
= arg
+ 13;
2612 else if (!prefixcmp(arg
, "--dst-prefix="))
2613 options
->b_prefix
= arg
+ 13;
2614 else if (!strcmp(arg
, "--no-prefix"))
2615 options
->a_prefix
= options
->b_prefix
= "";
2616 else if (!prefixcmp(arg
, "--output=")) {
2617 options
->file
= fopen(arg
+ strlen("--output="), "w");
2618 options
->close_file
= 1;
2624 static int parse_num(const char **cp_p
)
2626 unsigned long num
, scale
;
2628 const char *cp
= *cp_p
;
2635 if ( !dot
&& ch
== '.' ) {
2638 } else if ( ch
== '%' ) {
2639 scale
= dot
? scale
*100 : 100;
2640 cp
++; /* % is always at the end */
2642 } else if ( ch
>= '0' && ch
<= '9' ) {
2643 if ( scale
< 100000 ) {
2645 num
= (num
*10) + (ch
-'0');
2654 /* user says num divided by scale and we say internally that
2655 * is MAX_SCORE * num / scale.
2657 return (int)((num
>= scale
) ? MAX_SCORE
: (MAX_SCORE
* num
/ scale
));
2660 static int diff_scoreopt_parse(const char *opt
)
2662 int opt1
, opt2
, cmd
;
2667 if (cmd
!= 'M' && cmd
!= 'C' && cmd
!= 'B')
2668 return -1; /* that is not a -M, -C nor -B option */
2670 opt1
= parse_num(&opt
);
2676 else if (*opt
!= '/')
2677 return -1; /* we expect -B80/99 or -B80 */
2680 opt2
= parse_num(&opt
);
2685 return opt1
| (opt2
<< 16);
2688 struct diff_queue_struct diff_queued_diff
;
2690 void diff_q(struct diff_queue_struct
*queue
, struct diff_filepair
*dp
)
2692 if (queue
->alloc
<= queue
->nr
) {
2693 queue
->alloc
= alloc_nr(queue
->alloc
);
2694 queue
->queue
= xrealloc(queue
->queue
,
2695 sizeof(dp
) * queue
->alloc
);
2697 queue
->queue
[queue
->nr
++] = dp
;
2700 struct diff_filepair
*diff_queue(struct diff_queue_struct
*queue
,
2701 struct diff_filespec
*one
,
2702 struct diff_filespec
*two
)
2704 struct diff_filepair
*dp
= xcalloc(1, sizeof(*dp
));
2712 void diff_free_filepair(struct diff_filepair
*p
)
2714 free_filespec(p
->one
);
2715 free_filespec(p
->two
);
2719 /* This is different from find_unique_abbrev() in that
2720 * it stuffs the result with dots for alignment.
2722 const char *diff_unique_abbrev(const unsigned char *sha1
, int len
)
2727 return sha1_to_hex(sha1
);
2729 abbrev
= find_unique_abbrev(sha1
, len
);
2730 abblen
= strlen(abbrev
);
2732 static char hex
[41];
2733 if (len
< abblen
&& abblen
<= len
+ 2)
2734 sprintf(hex
, "%s%.*s", abbrev
, len
+3-abblen
, "..");
2736 sprintf(hex
, "%s...", abbrev
);
2739 return sha1_to_hex(sha1
);
2742 static void diff_flush_raw(struct diff_filepair
*p
, struct diff_options
*opt
)
2744 int line_termination
= opt
->line_termination
;
2745 int inter_name_termination
= line_termination
? '\t' : '\0';
2747 if (!(opt
->output_format
& DIFF_FORMAT_NAME_STATUS
)) {
2748 fprintf(opt
->file
, ":%06o %06o %s ", p
->one
->mode
, p
->two
->mode
,
2749 diff_unique_abbrev(p
->one
->sha1
, opt
->abbrev
));
2750 fprintf(opt
->file
, "%s ", diff_unique_abbrev(p
->two
->sha1
, opt
->abbrev
));
2753 fprintf(opt
->file
, "%c%03d%c", p
->status
, similarity_index(p
),
2754 inter_name_termination
);
2756 fprintf(opt
->file
, "%c%c", p
->status
, inter_name_termination
);
2759 if (p
->status
== DIFF_STATUS_COPIED
||
2760 p
->status
== DIFF_STATUS_RENAMED
) {
2761 const char *name_a
, *name_b
;
2762 name_a
= p
->one
->path
;
2763 name_b
= p
->two
->path
;
2764 strip_prefix(opt
->prefix_length
, &name_a
, &name_b
);
2765 write_name_quoted(name_a
, opt
->file
, inter_name_termination
);
2766 write_name_quoted(name_b
, opt
->file
, line_termination
);
2768 const char *name_a
, *name_b
;
2769 name_a
= p
->one
->mode
? p
->one
->path
: p
->two
->path
;
2771 strip_prefix(opt
->prefix_length
, &name_a
, &name_b
);
2772 write_name_quoted(name_a
, opt
->file
, line_termination
);
2776 int diff_unmodified_pair(struct diff_filepair
*p
)
2778 /* This function is written stricter than necessary to support
2779 * the currently implemented transformers, but the idea is to
2780 * let transformers to produce diff_filepairs any way they want,
2781 * and filter and clean them up here before producing the output.
2783 struct diff_filespec
*one
= p
->one
, *two
= p
->two
;
2785 if (DIFF_PAIR_UNMERGED(p
))
2786 return 0; /* unmerged is interesting */
2788 /* deletion, addition, mode or type change
2789 * and rename are all interesting.
2791 if (DIFF_FILE_VALID(one
) != DIFF_FILE_VALID(two
) ||
2792 DIFF_PAIR_MODE_CHANGED(p
) ||
2793 strcmp(one
->path
, two
->path
))
2796 /* both are valid and point at the same path. that is, we are
2797 * dealing with a change.
2799 if (one
->sha1_valid
&& two
->sha1_valid
&&
2800 !hashcmp(one
->sha1
, two
->sha1
))
2801 return 1; /* no change */
2802 if (!one
->sha1_valid
&& !two
->sha1_valid
)
2803 return 1; /* both look at the same file on the filesystem. */
2807 static void diff_flush_patch(struct diff_filepair
*p
, struct diff_options
*o
)
2809 if (diff_unmodified_pair(p
))
2812 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
2813 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
2814 return; /* no tree diffs in patch format */
2819 static void diff_flush_stat(struct diff_filepair
*p
, struct diff_options
*o
,
2820 struct diffstat_t
*diffstat
)
2822 if (diff_unmodified_pair(p
))
2825 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
2826 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
2827 return; /* no tree diffs in patch format */
2829 run_diffstat(p
, o
, diffstat
);
2832 static void diff_flush_checkdiff(struct diff_filepair
*p
,
2833 struct diff_options
*o
)
2835 if (diff_unmodified_pair(p
))
2838 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
2839 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
2840 return; /* no tree diffs in patch format */
2842 run_checkdiff(p
, o
);
2845 int diff_queue_is_empty(void)
2847 struct diff_queue_struct
*q
= &diff_queued_diff
;
2849 for (i
= 0; i
< q
->nr
; i
++)
2850 if (!diff_unmodified_pair(q
->queue
[i
]))
2856 void diff_debug_filespec(struct diff_filespec
*s
, int x
, const char *one
)
2858 fprintf(stderr
, "queue[%d] %s (%s) %s %06o %s\n",
2861 DIFF_FILE_VALID(s
) ? "valid" : "invalid",
2863 s
->sha1_valid
? sha1_to_hex(s
->sha1
) : "");
2864 fprintf(stderr
, "queue[%d] %s size %lu flags %d\n",
2866 s
->size
, s
->xfrm_flags
);
2869 void diff_debug_filepair(const struct diff_filepair
*p
, int i
)
2871 diff_debug_filespec(p
->one
, i
, "one");
2872 diff_debug_filespec(p
->two
, i
, "two");
2873 fprintf(stderr
, "score %d, status %c rename_used %d broken %d\n",
2874 p
->score
, p
->status
? p
->status
: '?',
2875 p
->one
->rename_used
, p
->broken_pair
);
2878 void diff_debug_queue(const char *msg
, struct diff_queue_struct
*q
)
2882 fprintf(stderr
, "%s\n", msg
);
2883 fprintf(stderr
, "q->nr = %d\n", q
->nr
);
2884 for (i
= 0; i
< q
->nr
; i
++) {
2885 struct diff_filepair
*p
= q
->queue
[i
];
2886 diff_debug_filepair(p
, i
);
2891 static void diff_resolve_rename_copy(void)
2894 struct diff_filepair
*p
;
2895 struct diff_queue_struct
*q
= &diff_queued_diff
;
2897 diff_debug_queue("resolve-rename-copy", q
);
2899 for (i
= 0; i
< q
->nr
; i
++) {
2901 p
->status
= 0; /* undecided */
2902 if (DIFF_PAIR_UNMERGED(p
))
2903 p
->status
= DIFF_STATUS_UNMERGED
;
2904 else if (!DIFF_FILE_VALID(p
->one
))
2905 p
->status
= DIFF_STATUS_ADDED
;
2906 else if (!DIFF_FILE_VALID(p
->two
))
2907 p
->status
= DIFF_STATUS_DELETED
;
2908 else if (DIFF_PAIR_TYPE_CHANGED(p
))
2909 p
->status
= DIFF_STATUS_TYPE_CHANGED
;
2911 /* from this point on, we are dealing with a pair
2912 * whose both sides are valid and of the same type, i.e.
2913 * either in-place edit or rename/copy edit.
2915 else if (DIFF_PAIR_RENAME(p
)) {
2917 * A rename might have re-connected a broken
2918 * pair up, causing the pathnames to be the
2919 * same again. If so, that's not a rename at
2920 * all, just a modification..
2922 * Otherwise, see if this source was used for
2923 * multiple renames, in which case we decrement
2924 * the count, and call it a copy.
2926 if (!strcmp(p
->one
->path
, p
->two
->path
))
2927 p
->status
= DIFF_STATUS_MODIFIED
;
2928 else if (--p
->one
->rename_used
> 0)
2929 p
->status
= DIFF_STATUS_COPIED
;
2931 p
->status
= DIFF_STATUS_RENAMED
;
2933 else if (hashcmp(p
->one
->sha1
, p
->two
->sha1
) ||
2934 p
->one
->mode
!= p
->two
->mode
||
2935 is_null_sha1(p
->one
->sha1
))
2936 p
->status
= DIFF_STATUS_MODIFIED
;
2938 /* This is a "no-change" entry and should not
2939 * happen anymore, but prepare for broken callers.
2941 error("feeding unmodified %s to diffcore",
2943 p
->status
= DIFF_STATUS_UNKNOWN
;
2946 diff_debug_queue("resolve-rename-copy done", q
);
2949 static int check_pair_status(struct diff_filepair
*p
)
2951 switch (p
->status
) {
2952 case DIFF_STATUS_UNKNOWN
:
2955 die("internal error in diff-resolve-rename-copy");
2961 static void flush_one_pair(struct diff_filepair
*p
, struct diff_options
*opt
)
2963 int fmt
= opt
->output_format
;
2965 if (fmt
& DIFF_FORMAT_CHECKDIFF
)
2966 diff_flush_checkdiff(p
, opt
);
2967 else if (fmt
& (DIFF_FORMAT_RAW
| DIFF_FORMAT_NAME_STATUS
))
2968 diff_flush_raw(p
, opt
);
2969 else if (fmt
& DIFF_FORMAT_NAME
) {
2970 const char *name_a
, *name_b
;
2971 name_a
= p
->two
->path
;
2973 strip_prefix(opt
->prefix_length
, &name_a
, &name_b
);
2974 write_name_quoted(name_a
, opt
->file
, opt
->line_termination
);
2978 static void show_file_mode_name(FILE *file
, const char *newdelete
, struct diff_filespec
*fs
)
2981 fprintf(file
, " %s mode %06o ", newdelete
, fs
->mode
);
2983 fprintf(file
, " %s ", newdelete
);
2984 write_name_quoted(fs
->path
, file
, '\n');
2988 static void show_mode_change(FILE *file
, struct diff_filepair
*p
, int show_name
)
2990 if (p
->one
->mode
&& p
->two
->mode
&& p
->one
->mode
!= p
->two
->mode
) {
2991 fprintf(file
, " mode change %06o => %06o%c", p
->one
->mode
, p
->two
->mode
,
2992 show_name
? ' ' : '\n');
2994 write_name_quoted(p
->two
->path
, file
, '\n');
2999 static void show_rename_copy(FILE *file
, const char *renamecopy
, struct diff_filepair
*p
)
3001 char *names
= pprint_rename(p
->one
->path
, p
->two
->path
);
3003 fprintf(file
, " %s %s (%d%%)\n", renamecopy
, names
, similarity_index(p
));
3005 show_mode_change(file
, p
, 0);
3008 static void diff_summary(FILE *file
, struct diff_filepair
*p
)
3011 case DIFF_STATUS_DELETED
:
3012 show_file_mode_name(file
, "delete", p
->one
);
3014 case DIFF_STATUS_ADDED
:
3015 show_file_mode_name(file
, "create", p
->two
);
3017 case DIFF_STATUS_COPIED
:
3018 show_rename_copy(file
, "copy", p
);
3020 case DIFF_STATUS_RENAMED
:
3021 show_rename_copy(file
, "rename", p
);
3025 fputs(" rewrite ", file
);
3026 write_name_quoted(p
->two
->path
, file
, ' ');
3027 fprintf(file
, "(%d%%)\n", similarity_index(p
));
3029 show_mode_change(file
, p
, !p
->score
);
3039 static int remove_space(char *line
, int len
)
3045 for (i
= 0; i
< len
; i
++)
3046 if (!isspace((c
= line
[i
])))
3052 static void patch_id_consume(void *priv
, char *line
, unsigned long len
)
3054 struct patch_id_t
*data
= priv
;
3057 /* Ignore line numbers when computing the SHA1 of the patch */
3058 if (!prefixcmp(line
, "@@ -"))
3061 new_len
= remove_space(line
, len
);
3063 SHA1_Update(data
->ctx
, line
, new_len
);
3064 data
->patchlen
+= new_len
;
3067 /* returns 0 upon success, and writes result into sha1 */
3068 static int diff_get_patch_id(struct diff_options
*options
, unsigned char *sha1
)
3070 struct diff_queue_struct
*q
= &diff_queued_diff
;
3073 struct patch_id_t data
;
3074 char buffer
[PATH_MAX
* 4 + 20];
3077 memset(&data
, 0, sizeof(struct patch_id_t
));
3080 for (i
= 0; i
< q
->nr
; i
++) {
3085 struct diff_filepair
*p
= q
->queue
[i
];
3088 memset(&xecfg
, 0, sizeof(xecfg
));
3090 return error("internal diff status error");
3091 if (p
->status
== DIFF_STATUS_UNKNOWN
)
3093 if (diff_unmodified_pair(p
))
3095 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
3096 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
3098 if (DIFF_PAIR_UNMERGED(p
))
3101 diff_fill_sha1_info(p
->one
);
3102 diff_fill_sha1_info(p
->two
);
3103 if (fill_mmfile(&mf1
, p
->one
) < 0 ||
3104 fill_mmfile(&mf2
, p
->two
) < 0)
3105 return error("unable to read files to diff");
3107 len1
= remove_space(p
->one
->path
, strlen(p
->one
->path
));
3108 len2
= remove_space(p
->two
->path
, strlen(p
->two
->path
));
3109 if (p
->one
->mode
== 0)
3110 len1
= snprintf(buffer
, sizeof(buffer
),
3111 "diff--gita/%.*sb/%.*s"
3118 len2
, p
->two
->path
);
3119 else if (p
->two
->mode
== 0)
3120 len1
= snprintf(buffer
, sizeof(buffer
),
3121 "diff--gita/%.*sb/%.*s"
3122 "deletedfilemode%06o"
3128 len1
, p
->one
->path
);
3130 len1
= snprintf(buffer
, sizeof(buffer
),
3131 "diff--gita/%.*sb/%.*s"
3137 len2
, p
->two
->path
);
3138 SHA1_Update(&ctx
, buffer
, len1
);
3140 xpp
.flags
= XDF_NEED_MINIMAL
;
3142 xecfg
.flags
= XDL_EMIT_FUNCNAMES
;
3143 xdi_diff_outf(&mf1
, &mf2
, patch_id_consume
, &data
,
3144 &xpp
, &xecfg
, &ecb
);
3147 SHA1_Final(sha1
, &ctx
);
3151 int diff_flush_patch_id(struct diff_options
*options
, unsigned char *sha1
)
3153 struct diff_queue_struct
*q
= &diff_queued_diff
;
3155 int result
= diff_get_patch_id(options
, sha1
);
3157 for (i
= 0; i
< q
->nr
; i
++)
3158 diff_free_filepair(q
->queue
[i
]);
3162 q
->nr
= q
->alloc
= 0;
3167 static int is_summary_empty(const struct diff_queue_struct
*q
)
3171 for (i
= 0; i
< q
->nr
; i
++) {
3172 const struct diff_filepair
*p
= q
->queue
[i
];
3174 switch (p
->status
) {
3175 case DIFF_STATUS_DELETED
:
3176 case DIFF_STATUS_ADDED
:
3177 case DIFF_STATUS_COPIED
:
3178 case DIFF_STATUS_RENAMED
:
3183 if (p
->one
->mode
&& p
->two
->mode
&&
3184 p
->one
->mode
!= p
->two
->mode
)
3192 void diff_flush(struct diff_options
*options
)
3194 struct diff_queue_struct
*q
= &diff_queued_diff
;
3195 int i
, output_format
= options
->output_format
;
3199 * Order: raw, stat, summary, patch
3200 * or: name/name-status/checkdiff (other bits clear)
3205 if (output_format
& (DIFF_FORMAT_RAW
|
3207 DIFF_FORMAT_NAME_STATUS
|
3208 DIFF_FORMAT_CHECKDIFF
)) {
3209 for (i
= 0; i
< q
->nr
; i
++) {
3210 struct diff_filepair
*p
= q
->queue
[i
];
3211 if (check_pair_status(p
))
3212 flush_one_pair(p
, options
);
3217 if (output_format
& (DIFF_FORMAT_DIFFSTAT
|DIFF_FORMAT_SHORTSTAT
|DIFF_FORMAT_NUMSTAT
)) {
3218 struct diffstat_t diffstat
;
3220 memset(&diffstat
, 0, sizeof(struct diffstat_t
));
3221 for (i
= 0; i
< q
->nr
; i
++) {
3222 struct diff_filepair
*p
= q
->queue
[i
];
3223 if (check_pair_status(p
))
3224 diff_flush_stat(p
, options
, &diffstat
);
3226 if (output_format
& DIFF_FORMAT_NUMSTAT
)
3227 show_numstat(&diffstat
, options
);
3228 if (output_format
& DIFF_FORMAT_DIFFSTAT
)
3229 show_stats(&diffstat
, options
);
3230 if (output_format
& DIFF_FORMAT_SHORTSTAT
)
3231 show_shortstats(&diffstat
, options
);
3232 free_diffstat_info(&diffstat
);
3235 if (output_format
& DIFF_FORMAT_DIRSTAT
)
3236 show_dirstat(options
);
3238 if (output_format
& DIFF_FORMAT_SUMMARY
&& !is_summary_empty(q
)) {
3239 for (i
= 0; i
< q
->nr
; i
++)
3240 diff_summary(options
->file
, q
->queue
[i
]);
3244 if (output_format
& DIFF_FORMAT_PATCH
) {
3246 putc(options
->line_termination
, options
->file
);
3247 if (options
->stat_sep
) {
3248 /* attach patch instead of inline */
3249 fputs(options
->stat_sep
, options
->file
);
3253 for (i
= 0; i
< q
->nr
; i
++) {
3254 struct diff_filepair
*p
= q
->queue
[i
];
3255 if (check_pair_status(p
))
3256 diff_flush_patch(p
, options
);
3260 if (output_format
& DIFF_FORMAT_CALLBACK
)
3261 options
->format_callback(q
, options
, options
->format_callback_data
);
3263 for (i
= 0; i
< q
->nr
; i
++)
3264 diff_free_filepair(q
->queue
[i
]);
3268 q
->nr
= q
->alloc
= 0;
3269 if (options
->close_file
)
3270 fclose(options
->file
);
3273 static void diffcore_apply_filter(const char *filter
)
3276 struct diff_queue_struct
*q
= &diff_queued_diff
;
3277 struct diff_queue_struct outq
;
3279 outq
.nr
= outq
.alloc
= 0;
3284 if (strchr(filter
, DIFF_STATUS_FILTER_AON
)) {
3286 for (i
= found
= 0; !found
&& i
< q
->nr
; i
++) {
3287 struct diff_filepair
*p
= q
->queue
[i
];
3288 if (((p
->status
== DIFF_STATUS_MODIFIED
) &&
3290 strchr(filter
, DIFF_STATUS_FILTER_BROKEN
)) ||
3292 strchr(filter
, DIFF_STATUS_MODIFIED
)))) ||
3293 ((p
->status
!= DIFF_STATUS_MODIFIED
) &&
3294 strchr(filter
, p
->status
)))
3300 /* otherwise we will clear the whole queue
3301 * by copying the empty outq at the end of this
3302 * function, but first clear the current entries
3305 for (i
= 0; i
< q
->nr
; i
++)
3306 diff_free_filepair(q
->queue
[i
]);
3309 /* Only the matching ones */
3310 for (i
= 0; i
< q
->nr
; i
++) {
3311 struct diff_filepair
*p
= q
->queue
[i
];
3313 if (((p
->status
== DIFF_STATUS_MODIFIED
) &&
3315 strchr(filter
, DIFF_STATUS_FILTER_BROKEN
)) ||
3317 strchr(filter
, DIFF_STATUS_MODIFIED
)))) ||
3318 ((p
->status
!= DIFF_STATUS_MODIFIED
) &&
3319 strchr(filter
, p
->status
)))
3322 diff_free_filepair(p
);
3329 /* Check whether two filespecs with the same mode and size are identical */
3330 static int diff_filespec_is_identical(struct diff_filespec
*one
,
3331 struct diff_filespec
*two
)
3333 if (S_ISGITLINK(one
->mode
))
3335 if (diff_populate_filespec(one
, 0))
3337 if (diff_populate_filespec(two
, 0))
3339 return !memcmp(one
->data
, two
->data
, one
->size
);
3342 static void diffcore_skip_stat_unmatch(struct diff_options
*diffopt
)
3345 struct diff_queue_struct
*q
= &diff_queued_diff
;
3346 struct diff_queue_struct outq
;
3348 outq
.nr
= outq
.alloc
= 0;
3350 for (i
= 0; i
< q
->nr
; i
++) {
3351 struct diff_filepair
*p
= q
->queue
[i
];
3354 * 1. Entries that come from stat info dirtyness
3355 * always have both sides (iow, not create/delete),
3356 * one side of the object name is unknown, with
3357 * the same mode and size. Keep the ones that
3358 * do not match these criteria. They have real
3361 * 2. At this point, the file is known to be modified,
3362 * with the same mode and size, and the object
3363 * name of one side is unknown. Need to inspect
3364 * the identical contents.
3366 if (!DIFF_FILE_VALID(p
->one
) || /* (1) */
3367 !DIFF_FILE_VALID(p
->two
) ||
3368 (p
->one
->sha1_valid
&& p
->two
->sha1_valid
) ||
3369 (p
->one
->mode
!= p
->two
->mode
) ||
3370 diff_populate_filespec(p
->one
, 1) ||
3371 diff_populate_filespec(p
->two
, 1) ||
3372 (p
->one
->size
!= p
->two
->size
) ||
3373 !diff_filespec_is_identical(p
->one
, p
->two
)) /* (2) */
3377 * The caller can subtract 1 from skip_stat_unmatch
3378 * to determine how many paths were dirty only
3379 * due to stat info mismatch.
3381 if (!DIFF_OPT_TST(diffopt
, NO_INDEX
))
3382 diffopt
->skip_stat_unmatch
++;
3383 diff_free_filepair(p
);
3390 void diffcore_std(struct diff_options
*options
)
3392 if (DIFF_OPT_TST(options
, QUIET
))
3395 if (options
->skip_stat_unmatch
&& !DIFF_OPT_TST(options
, FIND_COPIES_HARDER
))
3396 diffcore_skip_stat_unmatch(options
);
3397 if (options
->break_opt
!= -1)
3398 diffcore_break(options
->break_opt
);
3399 if (options
->detect_rename
)
3400 diffcore_rename(options
);
3401 if (options
->break_opt
!= -1)
3402 diffcore_merge_broken();
3403 if (options
->pickaxe
)
3404 diffcore_pickaxe(options
->pickaxe
, options
->pickaxe_opts
);
3405 if (options
->orderfile
)
3406 diffcore_order(options
->orderfile
);
3407 diff_resolve_rename_copy();
3408 diffcore_apply_filter(options
->filter
);
3410 if (diff_queued_diff
.nr
)
3411 DIFF_OPT_SET(options
, HAS_CHANGES
);
3413 DIFF_OPT_CLR(options
, HAS_CHANGES
);
3416 int diff_result_code(struct diff_options
*opt
, int status
)
3419 if (!DIFF_OPT_TST(opt
, EXIT_WITH_STATUS
) &&
3420 !(opt
->output_format
& DIFF_FORMAT_CHECKDIFF
))
3422 if (DIFF_OPT_TST(opt
, EXIT_WITH_STATUS
) &&
3423 DIFF_OPT_TST(opt
, HAS_CHANGES
))
3425 if ((opt
->output_format
& DIFF_FORMAT_CHECKDIFF
) &&
3426 DIFF_OPT_TST(opt
, CHECK_FAILED
))
3431 void diff_addremove(struct diff_options
*options
,
3432 int addremove
, unsigned mode
,
3433 const unsigned char *sha1
,
3434 const char *concatpath
)
3436 struct diff_filespec
*one
, *two
;
3438 if (DIFF_OPT_TST(options
, IGNORE_SUBMODULES
) && S_ISGITLINK(mode
))
3441 /* This may look odd, but it is a preparation for
3442 * feeding "there are unchanged files which should
3443 * not produce diffs, but when you are doing copy
3444 * detection you would need them, so here they are"
3445 * entries to the diff-core. They will be prefixed
3446 * with something like '=' or '*' (I haven't decided
3447 * which but should not make any difference).
3448 * Feeding the same new and old to diff_change()
3449 * also has the same effect.
3450 * Before the final output happens, they are pruned after
3451 * merged into rename/copy pairs as appropriate.
3453 if (DIFF_OPT_TST(options
, REVERSE_DIFF
))
3454 addremove
= (addremove
== '+' ? '-' :
3455 addremove
== '-' ? '+' : addremove
);
3457 if (options
->prefix
&&
3458 strncmp(concatpath
, options
->prefix
, options
->prefix_length
))
3461 one
= alloc_filespec(concatpath
);
3462 two
= alloc_filespec(concatpath
);
3464 if (addremove
!= '+')
3465 fill_filespec(one
, sha1
, mode
);
3466 if (addremove
!= '-')
3467 fill_filespec(two
, sha1
, mode
);
3469 diff_queue(&diff_queued_diff
, one
, two
);
3470 DIFF_OPT_SET(options
, HAS_CHANGES
);
3473 void diff_change(struct diff_options
*options
,
3474 unsigned old_mode
, unsigned new_mode
,
3475 const unsigned char *old_sha1
,
3476 const unsigned char *new_sha1
,
3477 const char *concatpath
)
3479 struct diff_filespec
*one
, *two
;
3481 if (DIFF_OPT_TST(options
, IGNORE_SUBMODULES
) && S_ISGITLINK(old_mode
)
3482 && S_ISGITLINK(new_mode
))
3485 if (DIFF_OPT_TST(options
, REVERSE_DIFF
)) {
3487 const unsigned char *tmp_c
;
3488 tmp
= old_mode
; old_mode
= new_mode
; new_mode
= tmp
;
3489 tmp_c
= old_sha1
; old_sha1
= new_sha1
; new_sha1
= tmp_c
;
3492 if (options
->prefix
&&
3493 strncmp(concatpath
, options
->prefix
, options
->prefix_length
))
3496 one
= alloc_filespec(concatpath
);
3497 two
= alloc_filespec(concatpath
);
3498 fill_filespec(one
, old_sha1
, old_mode
);
3499 fill_filespec(two
, new_sha1
, new_mode
);
3501 diff_queue(&diff_queued_diff
, one
, two
);
3502 DIFF_OPT_SET(options
, HAS_CHANGES
);
3505 void diff_unmerge(struct diff_options
*options
,
3507 unsigned mode
, const unsigned char *sha1
)
3509 struct diff_filespec
*one
, *two
;
3511 if (options
->prefix
&&
3512 strncmp(path
, options
->prefix
, options
->prefix_length
))
3515 one
= alloc_filespec(path
);
3516 two
= alloc_filespec(path
);
3517 fill_filespec(one
, sha1
, mode
);
3518 diff_queue(&diff_queued_diff
, one
, two
)->is_unmerged
= 1;