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
, has_trailing_carriage_return
;
518 has_trailing_newline
= (len
> 0 && line
[len
-1] == '\n');
519 if (has_trailing_newline
)
521 has_trailing_carriage_return
= (len
> 0 && line
[len
-1] == '\r');
522 if (has_trailing_carriage_return
)
526 fwrite(line
, len
, 1, file
);
528 if (has_trailing_carriage_return
)
530 if (has_trailing_newline
)
534 static void emit_add_line(const char *reset
, struct emit_callback
*ecbdata
, const char *line
, int len
)
536 const char *ws
= diff_get_color(ecbdata
->color_diff
, DIFF_WHITESPACE
);
537 const char *set
= diff_get_color(ecbdata
->color_diff
, DIFF_FILE_NEW
);
540 emit_line(ecbdata
->file
, set
, reset
, line
, len
);
542 /* Emit just the prefix, then the rest. */
543 emit_line(ecbdata
->file
, set
, reset
, line
, ecbdata
->nparents
);
544 ws_check_emit(line
+ ecbdata
->nparents
,
545 len
- ecbdata
->nparents
, ecbdata
->ws_rule
,
546 ecbdata
->file
, set
, reset
, ws
);
550 static unsigned long sane_truncate_line(struct emit_callback
*ecb
, char *line
, unsigned long len
)
557 return ecb
->truncate(line
, len
);
561 (void) utf8_width(&cp
, &l
);
563 break; /* truncated in the middle? */
568 static void fn_out_consume(void *priv
, char *line
, unsigned long len
)
572 struct emit_callback
*ecbdata
= priv
;
573 const char *meta
= diff_get_color(ecbdata
->color_diff
, DIFF_METAINFO
);
574 const char *plain
= diff_get_color(ecbdata
->color_diff
, DIFF_PLAIN
);
575 const char *reset
= diff_get_color(ecbdata
->color_diff
, DIFF_RESET
);
577 *(ecbdata
->found_changesp
) = 1;
579 if (ecbdata
->label_path
[0]) {
580 const char *name_a_tab
, *name_b_tab
;
582 name_a_tab
= strchr(ecbdata
->label_path
[0], ' ') ? "\t" : "";
583 name_b_tab
= strchr(ecbdata
->label_path
[1], ' ') ? "\t" : "";
585 fprintf(ecbdata
->file
, "%s--- %s%s%s\n",
586 meta
, ecbdata
->label_path
[0], reset
, name_a_tab
);
587 fprintf(ecbdata
->file
, "%s+++ %s%s%s\n",
588 meta
, ecbdata
->label_path
[1], reset
, name_b_tab
);
589 ecbdata
->label_path
[0] = ecbdata
->label_path
[1] = NULL
;
592 if (diff_suppress_blank_empty
593 && len
== 2 && line
[0] == ' ' && line
[1] == '\n') {
598 /* This is not really necessary for now because
599 * this codepath only deals with two-way diffs.
601 for (i
= 0; i
< len
&& line
[i
] == '@'; i
++)
603 if (2 <= i
&& i
< len
&& line
[i
] == ' ') {
604 ecbdata
->nparents
= i
- 1;
605 len
= sane_truncate_line(ecbdata
, line
, len
);
606 emit_line(ecbdata
->file
,
607 diff_get_color(ecbdata
->color_diff
, DIFF_FRAGINFO
),
609 if (line
[len
-1] != '\n')
610 putc('\n', ecbdata
->file
);
614 if (len
< ecbdata
->nparents
) {
615 emit_line(ecbdata
->file
, reset
, reset
, line
, len
);
620 if (ecbdata
->diff_words
&& ecbdata
->nparents
!= 1)
621 /* fall back to normal diff */
622 free_diff_words_data(ecbdata
);
623 if (ecbdata
->diff_words
) {
624 if (line
[0] == '-') {
625 diff_words_append(line
, len
,
626 &ecbdata
->diff_words
->minus
);
628 } else if (line
[0] == '+') {
629 diff_words_append(line
, len
,
630 &ecbdata
->diff_words
->plus
);
633 if (ecbdata
->diff_words
->minus
.text
.size
||
634 ecbdata
->diff_words
->plus
.text
.size
)
635 diff_words_show(ecbdata
->diff_words
);
638 emit_line(ecbdata
->file
, plain
, reset
, line
, len
);
641 for (i
= 0; i
< ecbdata
->nparents
&& len
; i
++) {
643 color
= DIFF_FILE_OLD
;
644 else if (line
[i
] == '+')
645 color
= DIFF_FILE_NEW
;
648 if (color
!= DIFF_FILE_NEW
) {
649 emit_line(ecbdata
->file
,
650 diff_get_color(ecbdata
->color_diff
, color
),
654 emit_add_line(reset
, ecbdata
, line
, len
);
657 static char *pprint_rename(const char *a
, const char *b
)
662 int pfx_length
, sfx_length
;
663 int len_a
= strlen(a
);
664 int len_b
= strlen(b
);
665 int a_midlen
, b_midlen
;
666 int qlen_a
= quote_c_style(a
, NULL
, NULL
, 0);
667 int qlen_b
= quote_c_style(b
, NULL
, NULL
, 0);
669 strbuf_init(&name
, 0);
670 if (qlen_a
|| qlen_b
) {
671 quote_c_style(a
, &name
, NULL
, 0);
672 strbuf_addstr(&name
, " => ");
673 quote_c_style(b
, &name
, NULL
, 0);
674 return strbuf_detach(&name
, NULL
);
677 /* Find common prefix */
679 while (*old
&& *new && *old
== *new) {
681 pfx_length
= old
- a
+ 1;
686 /* Find common suffix */
690 while (a
<= old
&& b
<= new && *old
== *new) {
692 sfx_length
= len_a
- (old
- a
);
698 * pfx{mid-a => mid-b}sfx
699 * {pfx-a => pfx-b}sfx
700 * pfx{sfx-a => sfx-b}
703 a_midlen
= len_a
- pfx_length
- sfx_length
;
704 b_midlen
= len_b
- pfx_length
- sfx_length
;
710 strbuf_grow(&name
, pfx_length
+ a_midlen
+ b_midlen
+ sfx_length
+ 7);
711 if (pfx_length
+ sfx_length
) {
712 strbuf_add(&name
, a
, pfx_length
);
713 strbuf_addch(&name
, '{');
715 strbuf_add(&name
, a
+ pfx_length
, a_midlen
);
716 strbuf_addstr(&name
, " => ");
717 strbuf_add(&name
, b
+ pfx_length
, b_midlen
);
718 if (pfx_length
+ sfx_length
) {
719 strbuf_addch(&name
, '}');
720 strbuf_add(&name
, a
+ len_a
- sfx_length
, sfx_length
);
722 return strbuf_detach(&name
, NULL
);
728 struct diffstat_file
{
732 unsigned is_unmerged
:1;
733 unsigned is_binary
:1;
734 unsigned is_renamed
:1;
735 unsigned int added
, deleted
;
739 static struct diffstat_file
*diffstat_add(struct diffstat_t
*diffstat
,
743 struct diffstat_file
*x
;
744 x
= xcalloc(sizeof (*x
), 1);
745 if (diffstat
->nr
== diffstat
->alloc
) {
746 diffstat
->alloc
= alloc_nr(diffstat
->alloc
);
747 diffstat
->files
= xrealloc(diffstat
->files
,
748 diffstat
->alloc
* sizeof(x
));
750 diffstat
->files
[diffstat
->nr
++] = x
;
752 x
->from_name
= xstrdup(name_a
);
753 x
->name
= xstrdup(name_b
);
758 x
->name
= xstrdup(name_a
);
763 static void diffstat_consume(void *priv
, char *line
, unsigned long len
)
765 struct diffstat_t
*diffstat
= priv
;
766 struct diffstat_file
*x
= diffstat
->files
[diffstat
->nr
- 1];
770 else if (line
[0] == '-')
774 const char mime_boundary_leader
[] = "------------";
776 static int scale_linear(int it
, int width
, int max_change
)
779 * make sure that at least one '-' is printed if there were deletions,
780 * and likewise for '+'.
784 return ((it
- 1) * (width
- 1) + max_change
- 1) / (max_change
- 1);
787 static void show_name(FILE *file
,
788 const char *prefix
, const char *name
, int len
,
789 const char *reset
, const char *set
)
791 fprintf(file
, " %s%s%-*s%s |", set
, prefix
, len
, name
, reset
);
794 static void show_graph(FILE *file
, char ch
, int cnt
, const char *set
, const char *reset
)
798 fprintf(file
, "%s", set
);
801 fprintf(file
, "%s", reset
);
804 static void fill_print_name(struct diffstat_file
*file
)
808 if (file
->print_name
)
811 if (!file
->is_renamed
) {
813 strbuf_init(&buf
, 0);
814 if (quote_c_style(file
->name
, &buf
, NULL
, 0)) {
815 pname
= strbuf_detach(&buf
, NULL
);
818 strbuf_release(&buf
);
821 pname
= pprint_rename(file
->from_name
, file
->name
);
823 file
->print_name
= pname
;
826 static void show_stats(struct diffstat_t
* data
, struct diff_options
*options
)
828 int i
, len
, add
, del
, total
, adds
= 0, dels
= 0;
829 int max_change
= 0, max_len
= 0;
830 int total_files
= data
->nr
;
831 int width
, name_width
;
832 const char *reset
, *set
, *add_c
, *del_c
;
837 width
= options
->stat_width
? options
->stat_width
: 80;
838 name_width
= options
->stat_name_width
? options
->stat_name_width
: 50;
840 /* Sanity: give at least 5 columns to the graph,
841 * but leave at least 10 columns for the name.
847 else if (width
< name_width
+ 15)
848 name_width
= width
- 15;
850 /* Find the longest filename and max number of changes */
851 reset
= diff_get_color_opt(options
, DIFF_RESET
);
852 set
= diff_get_color_opt(options
, DIFF_PLAIN
);
853 add_c
= diff_get_color_opt(options
, DIFF_FILE_NEW
);
854 del_c
= diff_get_color_opt(options
, DIFF_FILE_OLD
);
856 for (i
= 0; i
< data
->nr
; i
++) {
857 struct diffstat_file
*file
= data
->files
[i
];
858 int change
= file
->added
+ file
->deleted
;
859 fill_print_name(file
);
860 len
= strlen(file
->print_name
);
864 if (file
->is_binary
|| file
->is_unmerged
)
866 if (max_change
< change
)
870 /* Compute the width of the graph part;
871 * 10 is for one blank at the beginning of the line plus
872 * " | count " between the name and the graph.
874 * From here on, name_width is the width of the name area,
875 * and width is the width of the graph area.
877 name_width
= (name_width
< max_len
) ? name_width
: max_len
;
878 if (width
< (name_width
+ 10) + max_change
)
879 width
= width
- (name_width
+ 10);
883 for (i
= 0; i
< data
->nr
; i
++) {
884 const char *prefix
= "";
885 char *name
= data
->files
[i
]->print_name
;
886 int added
= data
->files
[i
]->added
;
887 int deleted
= data
->files
[i
]->deleted
;
891 * "scale" the filename
894 name_len
= strlen(name
);
895 if (name_width
< name_len
) {
899 name
+= name_len
- len
;
900 slash
= strchr(name
, '/');
905 if (data
->files
[i
]->is_binary
) {
906 show_name(options
->file
, prefix
, name
, len
, reset
, set
);
907 fprintf(options
->file
, " Bin ");
908 fprintf(options
->file
, "%s%d%s", del_c
, deleted
, reset
);
909 fprintf(options
->file
, " -> ");
910 fprintf(options
->file
, "%s%d%s", add_c
, added
, reset
);
911 fprintf(options
->file
, " bytes");
912 fprintf(options
->file
, "\n");
915 else if (data
->files
[i
]->is_unmerged
) {
916 show_name(options
->file
, prefix
, name
, len
, reset
, set
);
917 fprintf(options
->file
, " Unmerged\n");
920 else if (!data
->files
[i
]->is_renamed
&&
921 (added
+ deleted
== 0)) {
927 * scale the add/delete
935 if (width
<= max_change
) {
936 add
= scale_linear(add
, width
, max_change
);
937 del
= scale_linear(del
, width
, max_change
);
940 show_name(options
->file
, prefix
, name
, len
, reset
, set
);
941 fprintf(options
->file
, "%5d%s", added
+ deleted
,
942 added
+ deleted
? " " : "");
943 show_graph(options
->file
, '+', add
, add_c
, reset
);
944 show_graph(options
->file
, '-', del
, del_c
, reset
);
945 fprintf(options
->file
, "\n");
947 fprintf(options
->file
,
948 "%s %d files changed, %d insertions(+), %d deletions(-)%s\n",
949 set
, total_files
, adds
, dels
, reset
);
952 static void show_shortstats(struct diffstat_t
* data
, struct diff_options
*options
)
954 int i
, adds
= 0, dels
= 0, total_files
= data
->nr
;
959 for (i
= 0; i
< data
->nr
; i
++) {
960 if (!data
->files
[i
]->is_binary
&&
961 !data
->files
[i
]->is_unmerged
) {
962 int added
= data
->files
[i
]->added
;
963 int deleted
= data
->files
[i
]->deleted
;
964 if (!data
->files
[i
]->is_renamed
&&
965 (added
+ deleted
== 0)) {
973 fprintf(options
->file
, " %d files changed, %d insertions(+), %d deletions(-)\n",
974 total_files
, adds
, dels
);
977 static void show_numstat(struct diffstat_t
* data
, struct diff_options
*options
)
984 for (i
= 0; i
< data
->nr
; i
++) {
985 struct diffstat_file
*file
= data
->files
[i
];
988 fprintf(options
->file
, "-\t-\t");
990 fprintf(options
->file
,
991 "%d\t%d\t", file
->added
, file
->deleted
);
992 if (options
->line_termination
) {
993 fill_print_name(file
);
994 if (!file
->is_renamed
)
995 write_name_quoted(file
->name
, options
->file
,
996 options
->line_termination
);
998 fputs(file
->print_name
, options
->file
);
999 putc(options
->line_termination
, options
->file
);
1002 if (file
->is_renamed
) {
1003 putc('\0', options
->file
);
1004 write_name_quoted(file
->from_name
, options
->file
, '\0');
1006 write_name_quoted(file
->name
, options
->file
, '\0');
1011 struct dirstat_file
{
1013 unsigned long changed
;
1016 struct dirstat_dir
{
1017 struct dirstat_file
*files
;
1018 int alloc
, nr
, percent
, cumulative
;
1021 static long gather_dirstat(FILE *file
, struct dirstat_dir
*dir
, unsigned long changed
, const char *base
, int baselen
)
1023 unsigned long this_dir
= 0;
1024 unsigned int sources
= 0;
1027 struct dirstat_file
*f
= dir
->files
;
1028 int namelen
= strlen(f
->name
);
1032 if (namelen
< baselen
)
1034 if (memcmp(f
->name
, base
, baselen
))
1036 slash
= strchr(f
->name
+ baselen
, '/');
1038 int newbaselen
= slash
+ 1 - f
->name
;
1039 this = gather_dirstat(file
, dir
, changed
, f
->name
, newbaselen
);
1051 * We don't report dirstat's for
1053 * - or cases where everything came from a single directory
1054 * under this directory (sources == 1).
1056 if (baselen
&& sources
!= 1) {
1057 int permille
= this_dir
* 1000 / changed
;
1059 int percent
= permille
/ 10;
1060 if (percent
>= dir
->percent
) {
1061 fprintf(file
, "%4d.%01d%% %.*s\n", percent
, permille
% 10, baselen
, base
);
1062 if (!dir
->cumulative
)
1070 static int dirstat_compare(const void *_a
, const void *_b
)
1072 const struct dirstat_file
*a
= _a
;
1073 const struct dirstat_file
*b
= _b
;
1074 return strcmp(a
->name
, b
->name
);
1077 static void show_dirstat(struct diff_options
*options
)
1080 unsigned long changed
;
1081 struct dirstat_dir dir
;
1082 struct diff_queue_struct
*q
= &diff_queued_diff
;
1087 dir
.percent
= options
->dirstat_percent
;
1088 dir
.cumulative
= DIFF_OPT_TST(options
, DIRSTAT_CUMULATIVE
);
1091 for (i
= 0; i
< q
->nr
; i
++) {
1092 struct diff_filepair
*p
= q
->queue
[i
];
1094 unsigned long copied
, added
, damage
;
1096 name
= p
->one
->path
? p
->one
->path
: p
->two
->path
;
1098 if (DIFF_FILE_VALID(p
->one
) && DIFF_FILE_VALID(p
->two
)) {
1099 diff_populate_filespec(p
->one
, 0);
1100 diff_populate_filespec(p
->two
, 0);
1101 diffcore_count_changes(p
->one
, p
->two
, NULL
, NULL
, 0,
1103 diff_free_filespec_data(p
->one
);
1104 diff_free_filespec_data(p
->two
);
1105 } else if (DIFF_FILE_VALID(p
->one
)) {
1106 diff_populate_filespec(p
->one
, 1);
1108 diff_free_filespec_data(p
->one
);
1109 } else if (DIFF_FILE_VALID(p
->two
)) {
1110 diff_populate_filespec(p
->two
, 1);
1112 added
= p
->two
->size
;
1113 diff_free_filespec_data(p
->two
);
1118 * Original minus copied is the removed material,
1119 * added is the new material. They are both damages
1120 * made to the preimage.
1122 damage
= (p
->one
->size
- copied
) + added
;
1124 ALLOC_GROW(dir
.files
, dir
.nr
+ 1, dir
.alloc
);
1125 dir
.files
[dir
.nr
].name
= name
;
1126 dir
.files
[dir
.nr
].changed
= damage
;
1131 /* This can happen even with many files, if everything was renames */
1135 /* Show all directories with more than x% of the changes */
1136 qsort(dir
.files
, dir
.nr
, sizeof(dir
.files
[0]), dirstat_compare
);
1137 gather_dirstat(options
->file
, &dir
, changed
, "", 0);
1140 static void free_diffstat_info(struct diffstat_t
*diffstat
)
1143 for (i
= 0; i
< diffstat
->nr
; i
++) {
1144 struct diffstat_file
*f
= diffstat
->files
[i
];
1145 if (f
->name
!= f
->print_name
)
1146 free(f
->print_name
);
1151 free(diffstat
->files
);
1154 struct checkdiff_t
{
1155 const char *filename
;
1157 struct diff_options
*o
;
1160 int trailing_blanks_start
;
1163 static int is_conflict_marker(const char *line
, unsigned long len
)
1170 firstchar
= line
[0];
1171 switch (firstchar
) {
1172 case '=': case '>': case '<':
1177 for (cnt
= 1; cnt
< 7; cnt
++)
1178 if (line
[cnt
] != firstchar
)
1180 /* line[0] thru line[6] are same as firstchar */
1181 if (firstchar
== '=') {
1182 /* divider between ours and theirs? */
1183 if (len
!= 8 || line
[7] != '\n')
1185 } else if (len
< 8 || !isspace(line
[7])) {
1186 /* not divider before ours nor after theirs */
1192 static void checkdiff_consume(void *priv
, char *line
, unsigned long len
)
1194 struct checkdiff_t
*data
= priv
;
1195 int color_diff
= DIFF_OPT_TST(data
->o
, COLOR_DIFF
);
1196 const char *ws
= diff_get_color(color_diff
, DIFF_WHITESPACE
);
1197 const char *reset
= diff_get_color(color_diff
, DIFF_RESET
);
1198 const char *set
= diff_get_color(color_diff
, DIFF_FILE_NEW
);
1201 if (line
[0] == '+') {
1204 if (!ws_blank_line(line
+ 1, len
- 1, data
->ws_rule
))
1205 data
->trailing_blanks_start
= 0;
1206 else if (!data
->trailing_blanks_start
)
1207 data
->trailing_blanks_start
= data
->lineno
;
1208 if (is_conflict_marker(line
+ 1, len
- 1)) {
1210 fprintf(data
->o
->file
,
1211 "%s:%d: leftover conflict marker\n",
1212 data
->filename
, data
->lineno
);
1214 bad
= ws_check(line
+ 1, len
- 1, data
->ws_rule
);
1217 data
->status
|= bad
;
1218 err
= whitespace_error_string(bad
);
1219 fprintf(data
->o
->file
, "%s:%d: %s.\n",
1220 data
->filename
, data
->lineno
, err
);
1222 emit_line(data
->o
->file
, set
, reset
, line
, 1);
1223 ws_check_emit(line
+ 1, len
- 1, data
->ws_rule
,
1224 data
->o
->file
, set
, reset
, ws
);
1225 } else if (line
[0] == ' ') {
1227 data
->trailing_blanks_start
= 0;
1228 } else if (line
[0] == '@') {
1229 char *plus
= strchr(line
, '+');
1231 data
->lineno
= strtol(plus
, NULL
, 10) - 1;
1233 die("invalid diff");
1234 data
->trailing_blanks_start
= 0;
1238 static unsigned char *deflate_it(char *data
,
1240 unsigned long *result_size
)
1243 unsigned char *deflated
;
1246 memset(&stream
, 0, sizeof(stream
));
1247 deflateInit(&stream
, zlib_compression_level
);
1248 bound
= deflateBound(&stream
, size
);
1249 deflated
= xmalloc(bound
);
1250 stream
.next_out
= deflated
;
1251 stream
.avail_out
= bound
;
1253 stream
.next_in
= (unsigned char *)data
;
1254 stream
.avail_in
= size
;
1255 while (deflate(&stream
, Z_FINISH
) == Z_OK
)
1257 deflateEnd(&stream
);
1258 *result_size
= stream
.total_out
;
1262 static void emit_binary_diff_body(FILE *file
, mmfile_t
*one
, mmfile_t
*two
)
1268 unsigned long orig_size
;
1269 unsigned long delta_size
;
1270 unsigned long deflate_size
;
1271 unsigned long data_size
;
1273 /* We could do deflated delta, or we could do just deflated two,
1274 * whichever is smaller.
1277 deflated
= deflate_it(two
->ptr
, two
->size
, &deflate_size
);
1278 if (one
->size
&& two
->size
) {
1279 delta
= diff_delta(one
->ptr
, one
->size
,
1280 two
->ptr
, two
->size
,
1281 &delta_size
, deflate_size
);
1283 void *to_free
= delta
;
1284 orig_size
= delta_size
;
1285 delta
= deflate_it(delta
, delta_size
, &delta_size
);
1290 if (delta
&& delta_size
< deflate_size
) {
1291 fprintf(file
, "delta %lu\n", orig_size
);
1294 data_size
= delta_size
;
1297 fprintf(file
, "literal %lu\n", two
->size
);
1300 data_size
= deflate_size
;
1303 /* emit data encoded in base85 */
1306 int bytes
= (52 < data_size
) ? 52 : data_size
;
1310 line
[0] = bytes
+ 'A' - 1;
1312 line
[0] = bytes
- 26 + 'a' - 1;
1313 encode_85(line
+ 1, cp
, bytes
);
1314 cp
= (char *) cp
+ bytes
;
1318 fprintf(file
, "\n");
1322 static void emit_binary_diff(FILE *file
, mmfile_t
*one
, mmfile_t
*two
)
1324 fprintf(file
, "GIT binary patch\n");
1325 emit_binary_diff_body(file
, one
, two
);
1326 emit_binary_diff_body(file
, two
, one
);
1329 static void setup_diff_attr_check(struct git_attr_check
*check
)
1331 static struct git_attr
*attr_diff
;
1334 attr_diff
= git_attr("diff", 4);
1336 check
[0].attr
= attr_diff
;
1339 static void diff_filespec_check_attr(struct diff_filespec
*one
)
1341 struct git_attr_check attr_diff_check
;
1342 int check_from_data
= 0;
1344 if (one
->checked_attr
)
1347 setup_diff_attr_check(&attr_diff_check
);
1349 one
->funcname_pattern_ident
= NULL
;
1351 if (!git_checkattr(one
->path
, 1, &attr_diff_check
)) {
1355 value
= attr_diff_check
.value
;
1356 if (ATTR_TRUE(value
))
1358 else if (ATTR_FALSE(value
))
1361 check_from_data
= 1;
1363 /* funcname pattern ident */
1364 if (ATTR_TRUE(value
) || ATTR_FALSE(value
) || ATTR_UNSET(value
))
1367 one
->funcname_pattern_ident
= value
;
1370 if (check_from_data
) {
1371 if (!one
->data
&& DIFF_FILE_VALID(one
))
1372 diff_populate_filespec(one
, 0);
1375 one
->is_binary
= buffer_is_binary(one
->data
, one
->size
);
1379 int diff_filespec_is_binary(struct diff_filespec
*one
)
1381 diff_filespec_check_attr(one
);
1382 return one
->is_binary
;
1385 static const char *funcname_pattern(const char *ident
)
1387 struct funcname_pattern
*pp
;
1389 for (pp
= funcname_pattern_list
; pp
; pp
= pp
->next
)
1390 if (!strcmp(ident
, pp
->name
))
1395 static struct builtin_funcname_pattern
{
1397 const char *pattern
;
1398 } builtin_funcname_pattern
[] = {
1399 { "bibtex", "\\(@[a-zA-Z]\\{1,\\}[ \t]*{\\{0,1\\}[ \t]*[^ \t\"@',\\#}{~%]*\\).*$" },
1400 { "html", "^\\s*\\(<[Hh][1-6]\\s.*>.*\\)$" },
1401 { "java", "!^[ ]*\\(catch\\|do\\|for\\|if\\|instanceof\\|"
1402 "new\\|return\\|switch\\|throw\\|while\\)\n"
1404 "[A-Za-z_][A-Za-z_0-9]*\\)\\{2,\\}"
1406 { "pascal", "^\\(\\(procedure\\|function\\|constructor\\|"
1407 "destructor\\|interface\\|implementation\\|"
1408 "initialization\\|finalization\\)[ \t]*.*\\)$"
1410 "^\\(.*=[ \t]*\\(class\\|record\\).*\\)$"
1412 { "php", "^[\t ]*\\(\\(function\\|class\\).*\\)" },
1413 { "python", "^\\s*\\(\\(class\\|def\\)\\s.*\\)$" },
1414 { "ruby", "^\\s*\\(\\(class\\|module\\|def\\)\\s.*\\)$" },
1415 { "tex", "^\\(\\\\\\(\\(sub\\)*section\\|chapter\\|part\\)\\*\\{0,1\\}{.*\\)$" },
1418 static const char *diff_funcname_pattern(struct diff_filespec
*one
)
1420 const char *ident
, *pattern
;
1423 diff_filespec_check_attr(one
);
1424 ident
= one
->funcname_pattern_ident
;
1428 * If the config file has "funcname.default" defined, that
1429 * regexp is used; otherwise NULL is returned and xemit uses
1430 * the built-in default.
1432 return funcname_pattern("default");
1434 /* Look up custom "funcname.$ident" regexp from config. */
1435 pattern
= funcname_pattern(ident
);
1440 * And define built-in fallback patterns here. Note that
1441 * these can be overridden by the user's config settings.
1443 for (i
= 0; i
< ARRAY_SIZE(builtin_funcname_pattern
); i
++)
1444 if (!strcmp(ident
, builtin_funcname_pattern
[i
].name
))
1445 return builtin_funcname_pattern
[i
].pattern
;
1450 static void builtin_diff(const char *name_a
,
1452 struct diff_filespec
*one
,
1453 struct diff_filespec
*two
,
1454 const char *xfrm_msg
,
1455 struct diff_options
*o
,
1456 int complete_rewrite
)
1460 char *a_one
, *b_two
;
1461 const char *set
= diff_get_color_opt(o
, DIFF_METAINFO
);
1462 const char *reset
= diff_get_color_opt(o
, DIFF_RESET
);
1464 a_one
= quote_two(o
->a_prefix
, name_a
+ (*name_a
== '/'));
1465 b_two
= quote_two(o
->b_prefix
, name_b
+ (*name_b
== '/'));
1466 lbl
[0] = DIFF_FILE_VALID(one
) ? a_one
: "/dev/null";
1467 lbl
[1] = DIFF_FILE_VALID(two
) ? b_two
: "/dev/null";
1468 fprintf(o
->file
, "%sdiff --git %s %s%s\n", set
, a_one
, b_two
, reset
);
1469 if (lbl
[0][0] == '/') {
1471 fprintf(o
->file
, "%snew file mode %06o%s\n", set
, two
->mode
, reset
);
1472 if (xfrm_msg
&& xfrm_msg
[0])
1473 fprintf(o
->file
, "%s%s%s\n", set
, xfrm_msg
, reset
);
1475 else if (lbl
[1][0] == '/') {
1476 fprintf(o
->file
, "%sdeleted file mode %06o%s\n", set
, one
->mode
, reset
);
1477 if (xfrm_msg
&& xfrm_msg
[0])
1478 fprintf(o
->file
, "%s%s%s\n", set
, xfrm_msg
, reset
);
1481 if (one
->mode
!= two
->mode
) {
1482 fprintf(o
->file
, "%sold mode %06o%s\n", set
, one
->mode
, reset
);
1483 fprintf(o
->file
, "%snew mode %06o%s\n", set
, two
->mode
, reset
);
1485 if (xfrm_msg
&& xfrm_msg
[0])
1486 fprintf(o
->file
, "%s%s%s\n", set
, xfrm_msg
, reset
);
1488 * we do not run diff between different kind
1491 if ((one
->mode
^ two
->mode
) & S_IFMT
)
1492 goto free_ab_and_return
;
1493 if (complete_rewrite
) {
1494 emit_rewrite_diff(name_a
, name_b
, one
, two
, o
);
1495 o
->found_changes
= 1;
1496 goto free_ab_and_return
;
1500 if (fill_mmfile(&mf1
, one
) < 0 || fill_mmfile(&mf2
, two
) < 0)
1501 die("unable to read files to diff");
1503 if (!DIFF_OPT_TST(o
, TEXT
) &&
1504 (diff_filespec_is_binary(one
) || diff_filespec_is_binary(two
))) {
1505 /* Quite common confusing case */
1506 if (mf1
.size
== mf2
.size
&&
1507 !memcmp(mf1
.ptr
, mf2
.ptr
, mf1
.size
))
1508 goto free_ab_and_return
;
1509 if (DIFF_OPT_TST(o
, BINARY
))
1510 emit_binary_diff(o
->file
, &mf1
, &mf2
);
1512 fprintf(o
->file
, "Binary files %s and %s differ\n",
1514 o
->found_changes
= 1;
1517 /* Crazy xdl interfaces.. */
1518 const char *diffopts
= getenv("GIT_DIFF_OPTS");
1522 struct emit_callback ecbdata
;
1523 const char *funcname_pattern
;
1525 funcname_pattern
= diff_funcname_pattern(one
);
1526 if (!funcname_pattern
)
1527 funcname_pattern
= diff_funcname_pattern(two
);
1529 memset(&xecfg
, 0, sizeof(xecfg
));
1530 memset(&ecbdata
, 0, sizeof(ecbdata
));
1531 ecbdata
.label_path
= lbl
;
1532 ecbdata
.color_diff
= DIFF_OPT_TST(o
, COLOR_DIFF
);
1533 ecbdata
.found_changesp
= &o
->found_changes
;
1534 ecbdata
.ws_rule
= whitespace_rule(name_b
? name_b
: name_a
);
1535 ecbdata
.file
= o
->file
;
1536 xpp
.flags
= XDF_NEED_MINIMAL
| o
->xdl_opts
;
1537 xecfg
.ctxlen
= o
->context
;
1538 xecfg
.flags
= XDL_EMIT_FUNCNAMES
;
1539 if (funcname_pattern
)
1540 xdiff_set_find_func(&xecfg
, funcname_pattern
);
1543 else if (!prefixcmp(diffopts
, "--unified="))
1544 xecfg
.ctxlen
= strtoul(diffopts
+ 10, NULL
, 10);
1545 else if (!prefixcmp(diffopts
, "-u"))
1546 xecfg
.ctxlen
= strtoul(diffopts
+ 2, NULL
, 10);
1547 if (DIFF_OPT_TST(o
, COLOR_DIFF_WORDS
)) {
1548 ecbdata
.diff_words
=
1549 xcalloc(1, sizeof(struct diff_words_data
));
1550 ecbdata
.diff_words
->file
= o
->file
;
1552 xdi_diff_outf(&mf1
, &mf2
, fn_out_consume
, &ecbdata
,
1553 &xpp
, &xecfg
, &ecb
);
1554 if (DIFF_OPT_TST(o
, COLOR_DIFF_WORDS
))
1555 free_diff_words_data(&ecbdata
);
1559 diff_free_filespec_data(one
);
1560 diff_free_filespec_data(two
);
1566 static void builtin_diffstat(const char *name_a
, const char *name_b
,
1567 struct diff_filespec
*one
,
1568 struct diff_filespec
*two
,
1569 struct diffstat_t
*diffstat
,
1570 struct diff_options
*o
,
1571 int complete_rewrite
)
1574 struct diffstat_file
*data
;
1576 data
= diffstat_add(diffstat
, name_a
, name_b
);
1579 data
->is_unmerged
= 1;
1582 if (complete_rewrite
) {
1583 diff_populate_filespec(one
, 0);
1584 diff_populate_filespec(two
, 0);
1585 data
->deleted
= count_lines(one
->data
, one
->size
);
1586 data
->added
= count_lines(two
->data
, two
->size
);
1587 goto free_and_return
;
1589 if (fill_mmfile(&mf1
, one
) < 0 || fill_mmfile(&mf2
, two
) < 0)
1590 die("unable to read files to diff");
1592 if (diff_filespec_is_binary(one
) || diff_filespec_is_binary(two
)) {
1593 data
->is_binary
= 1;
1594 data
->added
= mf2
.size
;
1595 data
->deleted
= mf1
.size
;
1597 /* Crazy xdl interfaces.. */
1602 memset(&xecfg
, 0, sizeof(xecfg
));
1603 xpp
.flags
= XDF_NEED_MINIMAL
| o
->xdl_opts
;
1604 xdi_diff_outf(&mf1
, &mf2
, diffstat_consume
, diffstat
,
1605 &xpp
, &xecfg
, &ecb
);
1609 diff_free_filespec_data(one
);
1610 diff_free_filespec_data(two
);
1613 static void builtin_checkdiff(const char *name_a
, const char *name_b
,
1614 const char *attr_path
,
1615 struct diff_filespec
*one
,
1616 struct diff_filespec
*two
,
1617 struct diff_options
*o
)
1620 struct checkdiff_t data
;
1625 memset(&data
, 0, sizeof(data
));
1626 data
.filename
= name_b
? name_b
: name_a
;
1629 data
.ws_rule
= whitespace_rule(attr_path
);
1631 if (fill_mmfile(&mf1
, one
) < 0 || fill_mmfile(&mf2
, two
) < 0)
1632 die("unable to read files to diff");
1635 * All the other codepaths check both sides, but not checking
1636 * the "old" side here is deliberate. We are checking the newly
1637 * introduced changes, and as long as the "new" side is text, we
1638 * can and should check what it introduces.
1640 if (diff_filespec_is_binary(two
))
1641 goto free_and_return
;
1643 /* Crazy xdl interfaces.. */
1648 memset(&xecfg
, 0, sizeof(xecfg
));
1649 xecfg
.ctxlen
= 1; /* at least one context line */
1650 xpp
.flags
= XDF_NEED_MINIMAL
;
1651 xdi_diff_outf(&mf1
, &mf2
, checkdiff_consume
, &data
,
1652 &xpp
, &xecfg
, &ecb
);
1654 if ((data
.ws_rule
& WS_TRAILING_SPACE
) &&
1655 data
.trailing_blanks_start
) {
1656 fprintf(o
->file
, "%s:%d: ends with blank lines.\n",
1657 data
.filename
, data
.trailing_blanks_start
);
1658 data
.status
= 1; /* report errors */
1662 diff_free_filespec_data(one
);
1663 diff_free_filespec_data(two
);
1665 DIFF_OPT_SET(o
, CHECK_FAILED
);
1668 struct diff_filespec
*alloc_filespec(const char *path
)
1670 int namelen
= strlen(path
);
1671 struct diff_filespec
*spec
= xmalloc(sizeof(*spec
) + namelen
+ 1);
1673 memset(spec
, 0, sizeof(*spec
));
1674 spec
->path
= (char *)(spec
+ 1);
1675 memcpy(spec
->path
, path
, namelen
+1);
1680 void free_filespec(struct diff_filespec
*spec
)
1682 if (!--spec
->count
) {
1683 diff_free_filespec_data(spec
);
1688 void fill_filespec(struct diff_filespec
*spec
, const unsigned char *sha1
,
1689 unsigned short mode
)
1692 spec
->mode
= canon_mode(mode
);
1693 hashcpy(spec
->sha1
, sha1
);
1694 spec
->sha1_valid
= !is_null_sha1(sha1
);
1699 * Given a name and sha1 pair, if the index tells us the file in
1700 * the work tree has that object contents, return true, so that
1701 * prepare_temp_file() does not have to inflate and extract.
1703 static int reuse_worktree_file(const char *name
, const unsigned char *sha1
, int want_file
)
1705 struct cache_entry
*ce
;
1709 /* We do not read the cache ourselves here, because the
1710 * benchmark with my previous version that always reads cache
1711 * shows that it makes things worse for diff-tree comparing
1712 * two linux-2.6 kernel trees in an already checked out work
1713 * tree. This is because most diff-tree comparisons deal with
1714 * only a small number of files, while reading the cache is
1715 * expensive for a large project, and its cost outweighs the
1716 * savings we get by not inflating the object to a temporary
1717 * file. Practically, this code only helps when we are used
1718 * by diff-cache --cached, which does read the cache before
1724 /* We want to avoid the working directory if our caller
1725 * doesn't need the data in a normal file, this system
1726 * is rather slow with its stat/open/mmap/close syscalls,
1727 * and the object is contained in a pack file. The pack
1728 * is probably already open and will be faster to obtain
1729 * the data through than the working directory. Loose
1730 * objects however would tend to be slower as they need
1731 * to be individually opened and inflated.
1733 if (!FAST_WORKING_DIRECTORY
&& !want_file
&& has_sha1_pack(sha1
, NULL
))
1737 pos
= cache_name_pos(name
, len
);
1740 ce
= active_cache
[pos
];
1743 * This is not the sha1 we are looking for, or
1744 * unreusable because it is not a regular file.
1746 if (hashcmp(sha1
, ce
->sha1
) || !S_ISREG(ce
->ce_mode
))
1750 * If ce matches the file in the work tree, we can reuse it.
1752 if (ce_uptodate(ce
) ||
1753 (!lstat(name
, &st
) && !ce_match_stat(ce
, &st
, 0)))
1759 static int populate_from_stdin(struct diff_filespec
*s
)
1764 strbuf_init(&buf
, 0);
1765 if (strbuf_read(&buf
, 0, 0) < 0)
1766 return error("error while reading from stdin %s",
1769 s
->should_munmap
= 0;
1770 s
->data
= strbuf_detach(&buf
, &size
);
1776 static int diff_populate_gitlink(struct diff_filespec
*s
, int size_only
)
1779 char *data
= xmalloc(100);
1780 len
= snprintf(data
, 100,
1781 "Subproject commit %s\n", sha1_to_hex(s
->sha1
));
1793 * While doing rename detection and pickaxe operation, we may need to
1794 * grab the data for the blob (or file) for our own in-core comparison.
1795 * diff_filespec has data and size fields for this purpose.
1797 int diff_populate_filespec(struct diff_filespec
*s
, int size_only
)
1800 if (!DIFF_FILE_VALID(s
))
1801 die("internal error: asking to populate invalid file.");
1802 if (S_ISDIR(s
->mode
))
1808 if (size_only
&& 0 < s
->size
)
1811 if (S_ISGITLINK(s
->mode
))
1812 return diff_populate_gitlink(s
, size_only
);
1814 if (!s
->sha1_valid
||
1815 reuse_worktree_file(s
->path
, s
->sha1
, 0)) {
1820 if (!strcmp(s
->path
, "-"))
1821 return populate_from_stdin(s
);
1823 if (lstat(s
->path
, &st
) < 0) {
1824 if (errno
== ENOENT
) {
1828 s
->data
= (char *)"";
1833 s
->size
= xsize_t(st
.st_size
);
1838 if (S_ISLNK(st
.st_mode
)) {
1840 s
->data
= xmalloc(s
->size
);
1842 ret
= readlink(s
->path
, s
->data
, s
->size
);
1849 fd
= open(s
->path
, O_RDONLY
);
1852 s
->data
= xmmap(NULL
, s
->size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
1854 s
->should_munmap
= 1;
1857 * Convert from working tree format to canonical git format
1859 strbuf_init(&buf
, 0);
1860 if (convert_to_git(s
->path
, s
->data
, s
->size
, &buf
, safe_crlf
)) {
1862 munmap(s
->data
, s
->size
);
1863 s
->should_munmap
= 0;
1864 s
->data
= strbuf_detach(&buf
, &size
);
1870 enum object_type type
;
1872 type
= sha1_object_info(s
->sha1
, &s
->size
);
1874 s
->data
= read_sha1_file(s
->sha1
, &type
, &s
->size
);
1881 void diff_free_filespec_blob(struct diff_filespec
*s
)
1885 else if (s
->should_munmap
)
1886 munmap(s
->data
, s
->size
);
1888 if (s
->should_free
|| s
->should_munmap
) {
1889 s
->should_free
= s
->should_munmap
= 0;
1894 void diff_free_filespec_data(struct diff_filespec
*s
)
1896 diff_free_filespec_blob(s
);
1901 static void prep_temp_blob(struct diff_tempfile
*temp
,
1904 const unsigned char *sha1
,
1909 fd
= git_mkstemp(temp
->tmp_path
, PATH_MAX
, ".diff_XXXXXX");
1911 die("unable to create temp-file: %s", strerror(errno
));
1912 if (write_in_full(fd
, blob
, size
) != size
)
1913 die("unable to write temp-file");
1915 temp
->name
= temp
->tmp_path
;
1916 strcpy(temp
->hex
, sha1_to_hex(sha1
));
1918 sprintf(temp
->mode
, "%06o", mode
);
1921 static void prepare_temp_file(const char *name
,
1922 struct diff_tempfile
*temp
,
1923 struct diff_filespec
*one
)
1925 if (!DIFF_FILE_VALID(one
)) {
1927 /* A '-' entry produces this for file-2, and
1928 * a '+' entry produces this for file-1.
1930 temp
->name
= "/dev/null";
1931 strcpy(temp
->hex
, ".");
1932 strcpy(temp
->mode
, ".");
1936 if (!one
->sha1_valid
||
1937 reuse_worktree_file(name
, one
->sha1
, 1)) {
1939 if (lstat(name
, &st
) < 0) {
1940 if (errno
== ENOENT
)
1941 goto not_a_valid_file
;
1942 die("stat(%s): %s", name
, strerror(errno
));
1944 if (S_ISLNK(st
.st_mode
)) {
1946 char buf
[PATH_MAX
+ 1]; /* ought to be SYMLINK_MAX */
1947 size_t sz
= xsize_t(st
.st_size
);
1948 if (sizeof(buf
) <= st
.st_size
)
1949 die("symlink too long: %s", name
);
1950 ret
= readlink(name
, buf
, sz
);
1952 die("readlink(%s)", name
);
1953 prep_temp_blob(temp
, buf
, sz
,
1955 one
->sha1
: null_sha1
),
1957 one
->mode
: S_IFLNK
));
1960 /* we can borrow from the file in the work tree */
1962 if (!one
->sha1_valid
)
1963 strcpy(temp
->hex
, sha1_to_hex(null_sha1
));
1965 strcpy(temp
->hex
, sha1_to_hex(one
->sha1
));
1966 /* Even though we may sometimes borrow the
1967 * contents from the work tree, we always want
1968 * one->mode. mode is trustworthy even when
1969 * !(one->sha1_valid), as long as
1970 * DIFF_FILE_VALID(one).
1972 sprintf(temp
->mode
, "%06o", one
->mode
);
1977 if (diff_populate_filespec(one
, 0))
1978 die("cannot read data blob for %s", one
->path
);
1979 prep_temp_blob(temp
, one
->data
, one
->size
,
1980 one
->sha1
, one
->mode
);
1984 static void remove_tempfile(void)
1988 for (i
= 0; i
< 2; i
++)
1989 if (diff_temp
[i
].name
== diff_temp
[i
].tmp_path
) {
1990 unlink(diff_temp
[i
].name
);
1991 diff_temp
[i
].name
= NULL
;
1995 static void remove_tempfile_on_signal(int signo
)
1998 signal(SIGINT
, SIG_DFL
);
2002 /* An external diff command takes:
2004 * diff-cmd name infile1 infile1-sha1 infile1-mode \
2005 * infile2 infile2-sha1 infile2-mode [ rename-to ]
2008 static void run_external_diff(const char *pgm
,
2011 struct diff_filespec
*one
,
2012 struct diff_filespec
*two
,
2013 const char *xfrm_msg
,
2014 int complete_rewrite
)
2016 const char *spawn_arg
[10];
2017 struct diff_tempfile
*temp
= diff_temp
;
2019 static int atexit_asked
= 0;
2020 const char *othername
;
2021 const char **arg
= &spawn_arg
[0];
2023 othername
= (other
? other
: name
);
2025 prepare_temp_file(name
, &temp
[0], one
);
2026 prepare_temp_file(othername
, &temp
[1], two
);
2027 if (! atexit_asked
&&
2028 (temp
[0].name
== temp
[0].tmp_path
||
2029 temp
[1].name
== temp
[1].tmp_path
)) {
2031 atexit(remove_tempfile
);
2033 signal(SIGINT
, remove_tempfile_on_signal
);
2039 *arg
++ = temp
[0].name
;
2040 *arg
++ = temp
[0].hex
;
2041 *arg
++ = temp
[0].mode
;
2042 *arg
++ = temp
[1].name
;
2043 *arg
++ = temp
[1].hex
;
2044 *arg
++ = temp
[1].mode
;
2055 retval
= run_command_v_opt(spawn_arg
, 0);
2058 fprintf(stderr
, "external diff died, stopping at %s.\n", name
);
2063 static const char *external_diff_attr(const char *name
)
2065 struct git_attr_check attr_diff_check
;
2070 setup_diff_attr_check(&attr_diff_check
);
2071 if (!git_checkattr(name
, 1, &attr_diff_check
)) {
2072 const char *value
= attr_diff_check
.value
;
2073 if (!ATTR_TRUE(value
) &&
2074 !ATTR_FALSE(value
) &&
2075 !ATTR_UNSET(value
)) {
2076 struct ll_diff_driver
*drv
;
2078 for (drv
= user_diff
; drv
; drv
= drv
->next
)
2079 if (!strcmp(drv
->name
, value
))
2086 static void run_diff_cmd(const char *pgm
,
2089 const char *attr_path
,
2090 struct diff_filespec
*one
,
2091 struct diff_filespec
*two
,
2092 const char *xfrm_msg
,
2093 struct diff_options
*o
,
2094 int complete_rewrite
)
2096 if (!DIFF_OPT_TST(o
, ALLOW_EXTERNAL
))
2099 const char *cmd
= external_diff_attr(attr_path
);
2105 run_external_diff(pgm
, name
, other
, one
, two
, xfrm_msg
,
2110 builtin_diff(name
, other
? other
: name
,
2111 one
, two
, xfrm_msg
, o
, complete_rewrite
);
2113 fprintf(o
->file
, "* Unmerged path %s\n", name
);
2116 static void diff_fill_sha1_info(struct diff_filespec
*one
)
2118 if (DIFF_FILE_VALID(one
)) {
2119 if (!one
->sha1_valid
) {
2121 if (!strcmp(one
->path
, "-")) {
2122 hashcpy(one
->sha1
, null_sha1
);
2125 if (lstat(one
->path
, &st
) < 0)
2126 die("stat %s", one
->path
);
2127 if (index_path(one
->sha1
, one
->path
, &st
, 0))
2128 die("cannot hash %s\n", one
->path
);
2135 static int similarity_index(struct diff_filepair
*p
)
2137 return p
->score
* 100 / MAX_SCORE
;
2140 static void strip_prefix(int prefix_length
, const char **namep
, const char **otherp
)
2142 /* Strip the prefix but do not molest /dev/null and absolute paths */
2143 if (*namep
&& **namep
!= '/')
2144 *namep
+= prefix_length
;
2145 if (*otherp
&& **otherp
!= '/')
2146 *otherp
+= prefix_length
;
2149 static void run_diff(struct diff_filepair
*p
, struct diff_options
*o
)
2151 const char *pgm
= external_diff();
2154 struct diff_filespec
*one
= p
->one
;
2155 struct diff_filespec
*two
= p
->two
;
2158 const char *attr_path
;
2159 int complete_rewrite
= 0;
2161 name
= p
->one
->path
;
2162 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
2164 if (o
->prefix_length
)
2165 strip_prefix(o
->prefix_length
, &name
, &other
);
2167 if (DIFF_PAIR_UNMERGED(p
)) {
2168 run_diff_cmd(pgm
, name
, NULL
, attr_path
,
2169 NULL
, NULL
, NULL
, o
, 0);
2173 diff_fill_sha1_info(one
);
2174 diff_fill_sha1_info(two
);
2176 strbuf_init(&msg
, PATH_MAX
* 2 + 300);
2177 switch (p
->status
) {
2178 case DIFF_STATUS_COPIED
:
2179 strbuf_addf(&msg
, "similarity index %d%%", similarity_index(p
));
2180 strbuf_addstr(&msg
, "\ncopy from ");
2181 quote_c_style(name
, &msg
, NULL
, 0);
2182 strbuf_addstr(&msg
, "\ncopy to ");
2183 quote_c_style(other
, &msg
, NULL
, 0);
2184 strbuf_addch(&msg
, '\n');
2186 case DIFF_STATUS_RENAMED
:
2187 strbuf_addf(&msg
, "similarity index %d%%", similarity_index(p
));
2188 strbuf_addstr(&msg
, "\nrename from ");
2189 quote_c_style(name
, &msg
, NULL
, 0);
2190 strbuf_addstr(&msg
, "\nrename to ");
2191 quote_c_style(other
, &msg
, NULL
, 0);
2192 strbuf_addch(&msg
, '\n');
2194 case DIFF_STATUS_MODIFIED
:
2196 strbuf_addf(&msg
, "dissimilarity index %d%%\n",
2197 similarity_index(p
));
2198 complete_rewrite
= 1;
2207 if (hashcmp(one
->sha1
, two
->sha1
)) {
2208 int abbrev
= DIFF_OPT_TST(o
, FULL_INDEX
) ? 40 : DEFAULT_ABBREV
;
2210 if (DIFF_OPT_TST(o
, BINARY
)) {
2212 if ((!fill_mmfile(&mf
, one
) && diff_filespec_is_binary(one
)) ||
2213 (!fill_mmfile(&mf
, two
) && diff_filespec_is_binary(two
)))
2216 strbuf_addf(&msg
, "index %.*s..%.*s",
2217 abbrev
, sha1_to_hex(one
->sha1
),
2218 abbrev
, sha1_to_hex(two
->sha1
));
2219 if (one
->mode
== two
->mode
)
2220 strbuf_addf(&msg
, " %06o", one
->mode
);
2221 strbuf_addch(&msg
, '\n');
2225 strbuf_setlen(&msg
, msg
.len
- 1);
2226 xfrm_msg
= msg
.len
? msg
.buf
: NULL
;
2229 DIFF_FILE_VALID(one
) && DIFF_FILE_VALID(two
) &&
2230 (S_IFMT
& one
->mode
) != (S_IFMT
& two
->mode
)) {
2231 /* a filepair that changes between file and symlink
2232 * needs to be split into deletion and creation.
2234 struct diff_filespec
*null
= alloc_filespec(two
->path
);
2235 run_diff_cmd(NULL
, name
, other
, attr_path
,
2236 one
, null
, xfrm_msg
, o
, 0);
2238 null
= alloc_filespec(one
->path
);
2239 run_diff_cmd(NULL
, name
, other
, attr_path
,
2240 null
, two
, xfrm_msg
, o
, 0);
2244 run_diff_cmd(pgm
, name
, other
, attr_path
,
2245 one
, two
, xfrm_msg
, o
, complete_rewrite
);
2247 strbuf_release(&msg
);
2250 static void run_diffstat(struct diff_filepair
*p
, struct diff_options
*o
,
2251 struct diffstat_t
*diffstat
)
2255 int complete_rewrite
= 0;
2257 if (DIFF_PAIR_UNMERGED(p
)) {
2259 builtin_diffstat(p
->one
->path
, NULL
, NULL
, NULL
, diffstat
, o
, 0);
2263 name
= p
->one
->path
;
2264 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
2266 if (o
->prefix_length
)
2267 strip_prefix(o
->prefix_length
, &name
, &other
);
2269 diff_fill_sha1_info(p
->one
);
2270 diff_fill_sha1_info(p
->two
);
2272 if (p
->status
== DIFF_STATUS_MODIFIED
&& p
->score
)
2273 complete_rewrite
= 1;
2274 builtin_diffstat(name
, other
, p
->one
, p
->two
, diffstat
, o
, complete_rewrite
);
2277 static void run_checkdiff(struct diff_filepair
*p
, struct diff_options
*o
)
2281 const char *attr_path
;
2283 if (DIFF_PAIR_UNMERGED(p
)) {
2288 name
= p
->one
->path
;
2289 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
2290 attr_path
= other
? other
: name
;
2292 if (o
->prefix_length
)
2293 strip_prefix(o
->prefix_length
, &name
, &other
);
2295 diff_fill_sha1_info(p
->one
);
2296 diff_fill_sha1_info(p
->two
);
2298 builtin_checkdiff(name
, other
, attr_path
, p
->one
, p
->two
, o
);
2301 void diff_setup(struct diff_options
*options
)
2303 memset(options
, 0, sizeof(*options
));
2305 options
->file
= stdout
;
2307 options
->line_termination
= '\n';
2308 options
->break_opt
= -1;
2309 options
->rename_limit
= -1;
2310 options
->dirstat_percent
= 3;
2311 DIFF_OPT_CLR(options
, DIRSTAT_CUMULATIVE
);
2312 options
->context
= 3;
2314 options
->change
= diff_change
;
2315 options
->add_remove
= diff_addremove
;
2316 if (diff_use_color_default
> 0)
2317 DIFF_OPT_SET(options
, COLOR_DIFF
);
2319 DIFF_OPT_CLR(options
, COLOR_DIFF
);
2320 options
->detect_rename
= diff_detect_rename_default
;
2322 options
->a_prefix
= "a/";
2323 options
->b_prefix
= "b/";
2326 int diff_setup_done(struct diff_options
*options
)
2330 if (options
->output_format
& DIFF_FORMAT_NAME
)
2332 if (options
->output_format
& DIFF_FORMAT_NAME_STATUS
)
2334 if (options
->output_format
& DIFF_FORMAT_CHECKDIFF
)
2336 if (options
->output_format
& DIFF_FORMAT_NO_OUTPUT
)
2339 die("--name-only, --name-status, --check and -s are mutually exclusive");
2341 if (DIFF_OPT_TST(options
, FIND_COPIES_HARDER
))
2342 options
->detect_rename
= DIFF_DETECT_COPY
;
2344 if (!DIFF_OPT_TST(options
, RELATIVE_NAME
))
2345 options
->prefix
= NULL
;
2346 if (options
->prefix
)
2347 options
->prefix_length
= strlen(options
->prefix
);
2349 options
->prefix_length
= 0;
2351 if (options
->output_format
& (DIFF_FORMAT_NAME
|
2352 DIFF_FORMAT_NAME_STATUS
|
2353 DIFF_FORMAT_CHECKDIFF
|
2354 DIFF_FORMAT_NO_OUTPUT
))
2355 options
->output_format
&= ~(DIFF_FORMAT_RAW
|
2356 DIFF_FORMAT_NUMSTAT
|
2357 DIFF_FORMAT_DIFFSTAT
|
2358 DIFF_FORMAT_SHORTSTAT
|
2359 DIFF_FORMAT_DIRSTAT
|
2360 DIFF_FORMAT_SUMMARY
|
2364 * These cases always need recursive; we do not drop caller-supplied
2365 * recursive bits for other formats here.
2367 if (options
->output_format
& (DIFF_FORMAT_PATCH
|
2368 DIFF_FORMAT_NUMSTAT
|
2369 DIFF_FORMAT_DIFFSTAT
|
2370 DIFF_FORMAT_SHORTSTAT
|
2371 DIFF_FORMAT_DIRSTAT
|
2372 DIFF_FORMAT_SUMMARY
|
2373 DIFF_FORMAT_CHECKDIFF
))
2374 DIFF_OPT_SET(options
, RECURSIVE
);
2376 * Also pickaxe would not work very well if you do not say recursive
2378 if (options
->pickaxe
)
2379 DIFF_OPT_SET(options
, RECURSIVE
);
2381 if (options
->detect_rename
&& options
->rename_limit
< 0)
2382 options
->rename_limit
= diff_rename_limit_default
;
2383 if (options
->setup
& DIFF_SETUP_USE_CACHE
) {
2385 /* read-cache does not die even when it fails
2386 * so it is safe for us to do this here. Also
2387 * it does not smudge active_cache or active_nr
2388 * when it fails, so we do not have to worry about
2389 * cleaning it up ourselves either.
2393 if (options
->abbrev
<= 0 || 40 < options
->abbrev
)
2394 options
->abbrev
= 40; /* full */
2397 * It does not make sense to show the first hit we happened
2398 * to have found. It does not make sense not to return with
2399 * exit code in such a case either.
2401 if (DIFF_OPT_TST(options
, QUIET
)) {
2402 options
->output_format
= DIFF_FORMAT_NO_OUTPUT
;
2403 DIFF_OPT_SET(options
, EXIT_WITH_STATUS
);
2407 * If we postprocess in diffcore, we cannot simply return
2408 * upon the first hit. We need to run diff as usual.
2410 if (options
->pickaxe
|| options
->filter
)
2411 DIFF_OPT_CLR(options
, QUIET
);
2416 static int opt_arg(const char *arg
, int arg_short
, const char *arg_long
, int *val
)
2426 if (c
== arg_short
) {
2430 if (val
&& isdigit(c
)) {
2432 int n
= strtoul(arg
, &end
, 10);
2443 eq
= strchr(arg
, '=');
2448 if (!len
|| strncmp(arg
, arg_long
, len
))
2453 if (!isdigit(*++eq
))
2455 n
= strtoul(eq
, &end
, 10);
2463 static int diff_scoreopt_parse(const char *opt
);
2465 int diff_opt_parse(struct diff_options
*options
, const char **av
, int ac
)
2467 const char *arg
= av
[0];
2469 /* Output format options */
2470 if (!strcmp(arg
, "-p") || !strcmp(arg
, "-u"))
2471 options
->output_format
|= DIFF_FORMAT_PATCH
;
2472 else if (opt_arg(arg
, 'U', "unified", &options
->context
))
2473 options
->output_format
|= DIFF_FORMAT_PATCH
;
2474 else if (!strcmp(arg
, "--raw"))
2475 options
->output_format
|= DIFF_FORMAT_RAW
;
2476 else if (!strcmp(arg
, "--patch-with-raw"))
2477 options
->output_format
|= DIFF_FORMAT_PATCH
| DIFF_FORMAT_RAW
;
2478 else if (!strcmp(arg
, "--numstat"))
2479 options
->output_format
|= DIFF_FORMAT_NUMSTAT
;
2480 else if (!strcmp(arg
, "--shortstat"))
2481 options
->output_format
|= DIFF_FORMAT_SHORTSTAT
;
2482 else if (opt_arg(arg
, 'X', "dirstat", &options
->dirstat_percent
))
2483 options
->output_format
|= DIFF_FORMAT_DIRSTAT
;
2484 else if (!strcmp(arg
, "--cumulative")) {
2485 options
->output_format
|= DIFF_FORMAT_DIRSTAT
;
2486 DIFF_OPT_SET(options
, DIRSTAT_CUMULATIVE
);
2488 else if (!strcmp(arg
, "--check"))
2489 options
->output_format
|= DIFF_FORMAT_CHECKDIFF
;
2490 else if (!strcmp(arg
, "--summary"))
2491 options
->output_format
|= DIFF_FORMAT_SUMMARY
;
2492 else if (!strcmp(arg
, "--patch-with-stat"))
2493 options
->output_format
|= DIFF_FORMAT_PATCH
| DIFF_FORMAT_DIFFSTAT
;
2494 else if (!strcmp(arg
, "--name-only"))
2495 options
->output_format
|= DIFF_FORMAT_NAME
;
2496 else if (!strcmp(arg
, "--name-status"))
2497 options
->output_format
|= DIFF_FORMAT_NAME_STATUS
;
2498 else if (!strcmp(arg
, "-s"))
2499 options
->output_format
|= DIFF_FORMAT_NO_OUTPUT
;
2500 else if (!prefixcmp(arg
, "--stat")) {
2502 int width
= options
->stat_width
;
2503 int name_width
= options
->stat_name_width
;
2509 if (!prefixcmp(arg
, "-width="))
2510 width
= strtoul(arg
+ 7, &end
, 10);
2511 else if (!prefixcmp(arg
, "-name-width="))
2512 name_width
= strtoul(arg
+ 12, &end
, 10);
2515 width
= strtoul(arg
+1, &end
, 10);
2517 name_width
= strtoul(end
+1, &end
, 10);
2520 /* Important! This checks all the error cases! */
2523 options
->output_format
|= DIFF_FORMAT_DIFFSTAT
;
2524 options
->stat_name_width
= name_width
;
2525 options
->stat_width
= width
;
2528 /* renames options */
2529 else if (!prefixcmp(arg
, "-B")) {
2530 if ((options
->break_opt
= diff_scoreopt_parse(arg
)) == -1)
2533 else if (!prefixcmp(arg
, "-M")) {
2534 if ((options
->rename_score
= diff_scoreopt_parse(arg
)) == -1)
2536 options
->detect_rename
= DIFF_DETECT_RENAME
;
2538 else if (!prefixcmp(arg
, "-C")) {
2539 if (options
->detect_rename
== DIFF_DETECT_COPY
)
2540 DIFF_OPT_SET(options
, FIND_COPIES_HARDER
);
2541 if ((options
->rename_score
= diff_scoreopt_parse(arg
)) == -1)
2543 options
->detect_rename
= DIFF_DETECT_COPY
;
2545 else if (!strcmp(arg
, "--no-renames"))
2546 options
->detect_rename
= 0;
2547 else if (!strcmp(arg
, "--relative"))
2548 DIFF_OPT_SET(options
, RELATIVE_NAME
);
2549 else if (!prefixcmp(arg
, "--relative=")) {
2550 DIFF_OPT_SET(options
, RELATIVE_NAME
);
2551 options
->prefix
= arg
+ 11;
2555 else if (!strcmp(arg
, "-w") || !strcmp(arg
, "--ignore-all-space"))
2556 options
->xdl_opts
|= XDF_IGNORE_WHITESPACE
;
2557 else if (!strcmp(arg
, "-b") || !strcmp(arg
, "--ignore-space-change"))
2558 options
->xdl_opts
|= XDF_IGNORE_WHITESPACE_CHANGE
;
2559 else if (!strcmp(arg
, "--ignore-space-at-eol"))
2560 options
->xdl_opts
|= XDF_IGNORE_WHITESPACE_AT_EOL
;
2563 else if (!strcmp(arg
, "--binary")) {
2564 options
->output_format
|= DIFF_FORMAT_PATCH
;
2565 DIFF_OPT_SET(options
, BINARY
);
2567 else if (!strcmp(arg
, "--full-index"))
2568 DIFF_OPT_SET(options
, FULL_INDEX
);
2569 else if (!strcmp(arg
, "-a") || !strcmp(arg
, "--text"))
2570 DIFF_OPT_SET(options
, TEXT
);
2571 else if (!strcmp(arg
, "-R"))
2572 DIFF_OPT_SET(options
, REVERSE_DIFF
);
2573 else if (!strcmp(arg
, "--find-copies-harder"))
2574 DIFF_OPT_SET(options
, FIND_COPIES_HARDER
);
2575 else if (!strcmp(arg
, "--follow"))
2576 DIFF_OPT_SET(options
, FOLLOW_RENAMES
);
2577 else if (!strcmp(arg
, "--color"))
2578 DIFF_OPT_SET(options
, COLOR_DIFF
);
2579 else if (!strcmp(arg
, "--no-color"))
2580 DIFF_OPT_CLR(options
, COLOR_DIFF
);
2581 else if (!strcmp(arg
, "--color-words"))
2582 options
->flags
|= DIFF_OPT_COLOR_DIFF
| DIFF_OPT_COLOR_DIFF_WORDS
;
2583 else if (!strcmp(arg
, "--exit-code"))
2584 DIFF_OPT_SET(options
, EXIT_WITH_STATUS
);
2585 else if (!strcmp(arg
, "--quiet"))
2586 DIFF_OPT_SET(options
, QUIET
);
2587 else if (!strcmp(arg
, "--ext-diff"))
2588 DIFF_OPT_SET(options
, ALLOW_EXTERNAL
);
2589 else if (!strcmp(arg
, "--no-ext-diff"))
2590 DIFF_OPT_CLR(options
, ALLOW_EXTERNAL
);
2591 else if (!strcmp(arg
, "--ignore-submodules"))
2592 DIFF_OPT_SET(options
, IGNORE_SUBMODULES
);
2595 else if (!strcmp(arg
, "-z"))
2596 options
->line_termination
= 0;
2597 else if (!prefixcmp(arg
, "-l"))
2598 options
->rename_limit
= strtoul(arg
+2, NULL
, 10);
2599 else if (!prefixcmp(arg
, "-S"))
2600 options
->pickaxe
= arg
+ 2;
2601 else if (!strcmp(arg
, "--pickaxe-all"))
2602 options
->pickaxe_opts
= DIFF_PICKAXE_ALL
;
2603 else if (!strcmp(arg
, "--pickaxe-regex"))
2604 options
->pickaxe_opts
= DIFF_PICKAXE_REGEX
;
2605 else if (!prefixcmp(arg
, "-O"))
2606 options
->orderfile
= arg
+ 2;
2607 else if (!prefixcmp(arg
, "--diff-filter="))
2608 options
->filter
= arg
+ 14;
2609 else if (!strcmp(arg
, "--abbrev"))
2610 options
->abbrev
= DEFAULT_ABBREV
;
2611 else if (!prefixcmp(arg
, "--abbrev=")) {
2612 options
->abbrev
= strtoul(arg
+ 9, NULL
, 10);
2613 if (options
->abbrev
< MINIMUM_ABBREV
)
2614 options
->abbrev
= MINIMUM_ABBREV
;
2615 else if (40 < options
->abbrev
)
2616 options
->abbrev
= 40;
2618 else if (!prefixcmp(arg
, "--src-prefix="))
2619 options
->a_prefix
= arg
+ 13;
2620 else if (!prefixcmp(arg
, "--dst-prefix="))
2621 options
->b_prefix
= arg
+ 13;
2622 else if (!strcmp(arg
, "--no-prefix"))
2623 options
->a_prefix
= options
->b_prefix
= "";
2624 else if (!prefixcmp(arg
, "--output=")) {
2625 options
->file
= fopen(arg
+ strlen("--output="), "w");
2626 options
->close_file
= 1;
2632 static int parse_num(const char **cp_p
)
2634 unsigned long num
, scale
;
2636 const char *cp
= *cp_p
;
2643 if ( !dot
&& ch
== '.' ) {
2646 } else if ( ch
== '%' ) {
2647 scale
= dot
? scale
*100 : 100;
2648 cp
++; /* % is always at the end */
2650 } else if ( ch
>= '0' && ch
<= '9' ) {
2651 if ( scale
< 100000 ) {
2653 num
= (num
*10) + (ch
-'0');
2662 /* user says num divided by scale and we say internally that
2663 * is MAX_SCORE * num / scale.
2665 return (int)((num
>= scale
) ? MAX_SCORE
: (MAX_SCORE
* num
/ scale
));
2668 static int diff_scoreopt_parse(const char *opt
)
2670 int opt1
, opt2
, cmd
;
2675 if (cmd
!= 'M' && cmd
!= 'C' && cmd
!= 'B')
2676 return -1; /* that is not a -M, -C nor -B option */
2678 opt1
= parse_num(&opt
);
2684 else if (*opt
!= '/')
2685 return -1; /* we expect -B80/99 or -B80 */
2688 opt2
= parse_num(&opt
);
2693 return opt1
| (opt2
<< 16);
2696 struct diff_queue_struct diff_queued_diff
;
2698 void diff_q(struct diff_queue_struct
*queue
, struct diff_filepair
*dp
)
2700 if (queue
->alloc
<= queue
->nr
) {
2701 queue
->alloc
= alloc_nr(queue
->alloc
);
2702 queue
->queue
= xrealloc(queue
->queue
,
2703 sizeof(dp
) * queue
->alloc
);
2705 queue
->queue
[queue
->nr
++] = dp
;
2708 struct diff_filepair
*diff_queue(struct diff_queue_struct
*queue
,
2709 struct diff_filespec
*one
,
2710 struct diff_filespec
*two
)
2712 struct diff_filepair
*dp
= xcalloc(1, sizeof(*dp
));
2720 void diff_free_filepair(struct diff_filepair
*p
)
2722 free_filespec(p
->one
);
2723 free_filespec(p
->two
);
2727 /* This is different from find_unique_abbrev() in that
2728 * it stuffs the result with dots for alignment.
2730 const char *diff_unique_abbrev(const unsigned char *sha1
, int len
)
2735 return sha1_to_hex(sha1
);
2737 abbrev
= find_unique_abbrev(sha1
, len
);
2738 abblen
= strlen(abbrev
);
2740 static char hex
[41];
2741 if (len
< abblen
&& abblen
<= len
+ 2)
2742 sprintf(hex
, "%s%.*s", abbrev
, len
+3-abblen
, "..");
2744 sprintf(hex
, "%s...", abbrev
);
2747 return sha1_to_hex(sha1
);
2750 static void diff_flush_raw(struct diff_filepair
*p
, struct diff_options
*opt
)
2752 int line_termination
= opt
->line_termination
;
2753 int inter_name_termination
= line_termination
? '\t' : '\0';
2755 if (!(opt
->output_format
& DIFF_FORMAT_NAME_STATUS
)) {
2756 fprintf(opt
->file
, ":%06o %06o %s ", p
->one
->mode
, p
->two
->mode
,
2757 diff_unique_abbrev(p
->one
->sha1
, opt
->abbrev
));
2758 fprintf(opt
->file
, "%s ", diff_unique_abbrev(p
->two
->sha1
, opt
->abbrev
));
2761 fprintf(opt
->file
, "%c%03d%c", p
->status
, similarity_index(p
),
2762 inter_name_termination
);
2764 fprintf(opt
->file
, "%c%c", p
->status
, inter_name_termination
);
2767 if (p
->status
== DIFF_STATUS_COPIED
||
2768 p
->status
== DIFF_STATUS_RENAMED
) {
2769 const char *name_a
, *name_b
;
2770 name_a
= p
->one
->path
;
2771 name_b
= p
->two
->path
;
2772 strip_prefix(opt
->prefix_length
, &name_a
, &name_b
);
2773 write_name_quoted(name_a
, opt
->file
, inter_name_termination
);
2774 write_name_quoted(name_b
, opt
->file
, line_termination
);
2776 const char *name_a
, *name_b
;
2777 name_a
= p
->one
->mode
? p
->one
->path
: p
->two
->path
;
2779 strip_prefix(opt
->prefix_length
, &name_a
, &name_b
);
2780 write_name_quoted(name_a
, opt
->file
, line_termination
);
2784 int diff_unmodified_pair(struct diff_filepair
*p
)
2786 /* This function is written stricter than necessary to support
2787 * the currently implemented transformers, but the idea is to
2788 * let transformers to produce diff_filepairs any way they want,
2789 * and filter and clean them up here before producing the output.
2791 struct diff_filespec
*one
= p
->one
, *two
= p
->two
;
2793 if (DIFF_PAIR_UNMERGED(p
))
2794 return 0; /* unmerged is interesting */
2796 /* deletion, addition, mode or type change
2797 * and rename are all interesting.
2799 if (DIFF_FILE_VALID(one
) != DIFF_FILE_VALID(two
) ||
2800 DIFF_PAIR_MODE_CHANGED(p
) ||
2801 strcmp(one
->path
, two
->path
))
2804 /* both are valid and point at the same path. that is, we are
2805 * dealing with a change.
2807 if (one
->sha1_valid
&& two
->sha1_valid
&&
2808 !hashcmp(one
->sha1
, two
->sha1
))
2809 return 1; /* no change */
2810 if (!one
->sha1_valid
&& !two
->sha1_valid
)
2811 return 1; /* both look at the same file on the filesystem. */
2815 static void diff_flush_patch(struct diff_filepair
*p
, struct diff_options
*o
)
2817 if (diff_unmodified_pair(p
))
2820 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
2821 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
2822 return; /* no tree diffs in patch format */
2827 static void diff_flush_stat(struct diff_filepair
*p
, struct diff_options
*o
,
2828 struct diffstat_t
*diffstat
)
2830 if (diff_unmodified_pair(p
))
2833 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
2834 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
2835 return; /* no tree diffs in patch format */
2837 run_diffstat(p
, o
, diffstat
);
2840 static void diff_flush_checkdiff(struct diff_filepair
*p
,
2841 struct diff_options
*o
)
2843 if (diff_unmodified_pair(p
))
2846 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
2847 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
2848 return; /* no tree diffs in patch format */
2850 run_checkdiff(p
, o
);
2853 int diff_queue_is_empty(void)
2855 struct diff_queue_struct
*q
= &diff_queued_diff
;
2857 for (i
= 0; i
< q
->nr
; i
++)
2858 if (!diff_unmodified_pair(q
->queue
[i
]))
2864 void diff_debug_filespec(struct diff_filespec
*s
, int x
, const char *one
)
2866 fprintf(stderr
, "queue[%d] %s (%s) %s %06o %s\n",
2869 DIFF_FILE_VALID(s
) ? "valid" : "invalid",
2871 s
->sha1_valid
? sha1_to_hex(s
->sha1
) : "");
2872 fprintf(stderr
, "queue[%d] %s size %lu flags %d\n",
2874 s
->size
, s
->xfrm_flags
);
2877 void diff_debug_filepair(const struct diff_filepair
*p
, int i
)
2879 diff_debug_filespec(p
->one
, i
, "one");
2880 diff_debug_filespec(p
->two
, i
, "two");
2881 fprintf(stderr
, "score %d, status %c rename_used %d broken %d\n",
2882 p
->score
, p
->status
? p
->status
: '?',
2883 p
->one
->rename_used
, p
->broken_pair
);
2886 void diff_debug_queue(const char *msg
, struct diff_queue_struct
*q
)
2890 fprintf(stderr
, "%s\n", msg
);
2891 fprintf(stderr
, "q->nr = %d\n", q
->nr
);
2892 for (i
= 0; i
< q
->nr
; i
++) {
2893 struct diff_filepair
*p
= q
->queue
[i
];
2894 diff_debug_filepair(p
, i
);
2899 static void diff_resolve_rename_copy(void)
2902 struct diff_filepair
*p
;
2903 struct diff_queue_struct
*q
= &diff_queued_diff
;
2905 diff_debug_queue("resolve-rename-copy", q
);
2907 for (i
= 0; i
< q
->nr
; i
++) {
2909 p
->status
= 0; /* undecided */
2910 if (DIFF_PAIR_UNMERGED(p
))
2911 p
->status
= DIFF_STATUS_UNMERGED
;
2912 else if (!DIFF_FILE_VALID(p
->one
))
2913 p
->status
= DIFF_STATUS_ADDED
;
2914 else if (!DIFF_FILE_VALID(p
->two
))
2915 p
->status
= DIFF_STATUS_DELETED
;
2916 else if (DIFF_PAIR_TYPE_CHANGED(p
))
2917 p
->status
= DIFF_STATUS_TYPE_CHANGED
;
2919 /* from this point on, we are dealing with a pair
2920 * whose both sides are valid and of the same type, i.e.
2921 * either in-place edit or rename/copy edit.
2923 else if (DIFF_PAIR_RENAME(p
)) {
2925 * A rename might have re-connected a broken
2926 * pair up, causing the pathnames to be the
2927 * same again. If so, that's not a rename at
2928 * all, just a modification..
2930 * Otherwise, see if this source was used for
2931 * multiple renames, in which case we decrement
2932 * the count, and call it a copy.
2934 if (!strcmp(p
->one
->path
, p
->two
->path
))
2935 p
->status
= DIFF_STATUS_MODIFIED
;
2936 else if (--p
->one
->rename_used
> 0)
2937 p
->status
= DIFF_STATUS_COPIED
;
2939 p
->status
= DIFF_STATUS_RENAMED
;
2941 else if (hashcmp(p
->one
->sha1
, p
->two
->sha1
) ||
2942 p
->one
->mode
!= p
->two
->mode
||
2943 is_null_sha1(p
->one
->sha1
))
2944 p
->status
= DIFF_STATUS_MODIFIED
;
2946 /* This is a "no-change" entry and should not
2947 * happen anymore, but prepare for broken callers.
2949 error("feeding unmodified %s to diffcore",
2951 p
->status
= DIFF_STATUS_UNKNOWN
;
2954 diff_debug_queue("resolve-rename-copy done", q
);
2957 static int check_pair_status(struct diff_filepair
*p
)
2959 switch (p
->status
) {
2960 case DIFF_STATUS_UNKNOWN
:
2963 die("internal error in diff-resolve-rename-copy");
2969 static void flush_one_pair(struct diff_filepair
*p
, struct diff_options
*opt
)
2971 int fmt
= opt
->output_format
;
2973 if (fmt
& DIFF_FORMAT_CHECKDIFF
)
2974 diff_flush_checkdiff(p
, opt
);
2975 else if (fmt
& (DIFF_FORMAT_RAW
| DIFF_FORMAT_NAME_STATUS
))
2976 diff_flush_raw(p
, opt
);
2977 else if (fmt
& DIFF_FORMAT_NAME
) {
2978 const char *name_a
, *name_b
;
2979 name_a
= p
->two
->path
;
2981 strip_prefix(opt
->prefix_length
, &name_a
, &name_b
);
2982 write_name_quoted(name_a
, opt
->file
, opt
->line_termination
);
2986 static void show_file_mode_name(FILE *file
, const char *newdelete
, struct diff_filespec
*fs
)
2989 fprintf(file
, " %s mode %06o ", newdelete
, fs
->mode
);
2991 fprintf(file
, " %s ", newdelete
);
2992 write_name_quoted(fs
->path
, file
, '\n');
2996 static void show_mode_change(FILE *file
, struct diff_filepair
*p
, int show_name
)
2998 if (p
->one
->mode
&& p
->two
->mode
&& p
->one
->mode
!= p
->two
->mode
) {
2999 fprintf(file
, " mode change %06o => %06o%c", p
->one
->mode
, p
->two
->mode
,
3000 show_name
? ' ' : '\n');
3002 write_name_quoted(p
->two
->path
, file
, '\n');
3007 static void show_rename_copy(FILE *file
, const char *renamecopy
, struct diff_filepair
*p
)
3009 char *names
= pprint_rename(p
->one
->path
, p
->two
->path
);
3011 fprintf(file
, " %s %s (%d%%)\n", renamecopy
, names
, similarity_index(p
));
3013 show_mode_change(file
, p
, 0);
3016 static void diff_summary(FILE *file
, struct diff_filepair
*p
)
3019 case DIFF_STATUS_DELETED
:
3020 show_file_mode_name(file
, "delete", p
->one
);
3022 case DIFF_STATUS_ADDED
:
3023 show_file_mode_name(file
, "create", p
->two
);
3025 case DIFF_STATUS_COPIED
:
3026 show_rename_copy(file
, "copy", p
);
3028 case DIFF_STATUS_RENAMED
:
3029 show_rename_copy(file
, "rename", p
);
3033 fputs(" rewrite ", file
);
3034 write_name_quoted(p
->two
->path
, file
, ' ');
3035 fprintf(file
, "(%d%%)\n", similarity_index(p
));
3037 show_mode_change(file
, p
, !p
->score
);
3047 static int remove_space(char *line
, int len
)
3053 for (i
= 0; i
< len
; i
++)
3054 if (!isspace((c
= line
[i
])))
3060 static void patch_id_consume(void *priv
, char *line
, unsigned long len
)
3062 struct patch_id_t
*data
= priv
;
3065 /* Ignore line numbers when computing the SHA1 of the patch */
3066 if (!prefixcmp(line
, "@@ -"))
3069 new_len
= remove_space(line
, len
);
3071 SHA1_Update(data
->ctx
, line
, new_len
);
3072 data
->patchlen
+= new_len
;
3075 /* returns 0 upon success, and writes result into sha1 */
3076 static int diff_get_patch_id(struct diff_options
*options
, unsigned char *sha1
)
3078 struct diff_queue_struct
*q
= &diff_queued_diff
;
3081 struct patch_id_t data
;
3082 char buffer
[PATH_MAX
* 4 + 20];
3085 memset(&data
, 0, sizeof(struct patch_id_t
));
3088 for (i
= 0; i
< q
->nr
; i
++) {
3093 struct diff_filepair
*p
= q
->queue
[i
];
3096 memset(&xecfg
, 0, sizeof(xecfg
));
3098 return error("internal diff status error");
3099 if (p
->status
== DIFF_STATUS_UNKNOWN
)
3101 if (diff_unmodified_pair(p
))
3103 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
3104 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
3106 if (DIFF_PAIR_UNMERGED(p
))
3109 diff_fill_sha1_info(p
->one
);
3110 diff_fill_sha1_info(p
->two
);
3111 if (fill_mmfile(&mf1
, p
->one
) < 0 ||
3112 fill_mmfile(&mf2
, p
->two
) < 0)
3113 return error("unable to read files to diff");
3115 len1
= remove_space(p
->one
->path
, strlen(p
->one
->path
));
3116 len2
= remove_space(p
->two
->path
, strlen(p
->two
->path
));
3117 if (p
->one
->mode
== 0)
3118 len1
= snprintf(buffer
, sizeof(buffer
),
3119 "diff--gita/%.*sb/%.*s"
3126 len2
, p
->two
->path
);
3127 else if (p
->two
->mode
== 0)
3128 len1
= snprintf(buffer
, sizeof(buffer
),
3129 "diff--gita/%.*sb/%.*s"
3130 "deletedfilemode%06o"
3136 len1
, p
->one
->path
);
3138 len1
= snprintf(buffer
, sizeof(buffer
),
3139 "diff--gita/%.*sb/%.*s"
3145 len2
, p
->two
->path
);
3146 SHA1_Update(&ctx
, buffer
, len1
);
3148 xpp
.flags
= XDF_NEED_MINIMAL
;
3150 xecfg
.flags
= XDL_EMIT_FUNCNAMES
;
3151 xdi_diff_outf(&mf1
, &mf2
, patch_id_consume
, &data
,
3152 &xpp
, &xecfg
, &ecb
);
3155 SHA1_Final(sha1
, &ctx
);
3159 int diff_flush_patch_id(struct diff_options
*options
, unsigned char *sha1
)
3161 struct diff_queue_struct
*q
= &diff_queued_diff
;
3163 int result
= diff_get_patch_id(options
, sha1
);
3165 for (i
= 0; i
< q
->nr
; i
++)
3166 diff_free_filepair(q
->queue
[i
]);
3170 q
->nr
= q
->alloc
= 0;
3175 static int is_summary_empty(const struct diff_queue_struct
*q
)
3179 for (i
= 0; i
< q
->nr
; i
++) {
3180 const struct diff_filepair
*p
= q
->queue
[i
];
3182 switch (p
->status
) {
3183 case DIFF_STATUS_DELETED
:
3184 case DIFF_STATUS_ADDED
:
3185 case DIFF_STATUS_COPIED
:
3186 case DIFF_STATUS_RENAMED
:
3191 if (p
->one
->mode
&& p
->two
->mode
&&
3192 p
->one
->mode
!= p
->two
->mode
)
3200 void diff_flush(struct diff_options
*options
)
3202 struct diff_queue_struct
*q
= &diff_queued_diff
;
3203 int i
, output_format
= options
->output_format
;
3207 * Order: raw, stat, summary, patch
3208 * or: name/name-status/checkdiff (other bits clear)
3213 if (output_format
& (DIFF_FORMAT_RAW
|
3215 DIFF_FORMAT_NAME_STATUS
|
3216 DIFF_FORMAT_CHECKDIFF
)) {
3217 for (i
= 0; i
< q
->nr
; i
++) {
3218 struct diff_filepair
*p
= q
->queue
[i
];
3219 if (check_pair_status(p
))
3220 flush_one_pair(p
, options
);
3225 if (output_format
& (DIFF_FORMAT_DIFFSTAT
|DIFF_FORMAT_SHORTSTAT
|DIFF_FORMAT_NUMSTAT
)) {
3226 struct diffstat_t diffstat
;
3228 memset(&diffstat
, 0, sizeof(struct diffstat_t
));
3229 for (i
= 0; i
< q
->nr
; i
++) {
3230 struct diff_filepair
*p
= q
->queue
[i
];
3231 if (check_pair_status(p
))
3232 diff_flush_stat(p
, options
, &diffstat
);
3234 if (output_format
& DIFF_FORMAT_NUMSTAT
)
3235 show_numstat(&diffstat
, options
);
3236 if (output_format
& DIFF_FORMAT_DIFFSTAT
)
3237 show_stats(&diffstat
, options
);
3238 if (output_format
& DIFF_FORMAT_SHORTSTAT
)
3239 show_shortstats(&diffstat
, options
);
3240 free_diffstat_info(&diffstat
);
3243 if (output_format
& DIFF_FORMAT_DIRSTAT
)
3244 show_dirstat(options
);
3246 if (output_format
& DIFF_FORMAT_SUMMARY
&& !is_summary_empty(q
)) {
3247 for (i
= 0; i
< q
->nr
; i
++)
3248 diff_summary(options
->file
, q
->queue
[i
]);
3252 if (output_format
& DIFF_FORMAT_PATCH
) {
3254 putc(options
->line_termination
, options
->file
);
3255 if (options
->stat_sep
) {
3256 /* attach patch instead of inline */
3257 fputs(options
->stat_sep
, options
->file
);
3261 for (i
= 0; i
< q
->nr
; i
++) {
3262 struct diff_filepair
*p
= q
->queue
[i
];
3263 if (check_pair_status(p
))
3264 diff_flush_patch(p
, options
);
3268 if (output_format
& DIFF_FORMAT_CALLBACK
)
3269 options
->format_callback(q
, options
, options
->format_callback_data
);
3271 for (i
= 0; i
< q
->nr
; i
++)
3272 diff_free_filepair(q
->queue
[i
]);
3276 q
->nr
= q
->alloc
= 0;
3277 if (options
->close_file
)
3278 fclose(options
->file
);
3281 static void diffcore_apply_filter(const char *filter
)
3284 struct diff_queue_struct
*q
= &diff_queued_diff
;
3285 struct diff_queue_struct outq
;
3287 outq
.nr
= outq
.alloc
= 0;
3292 if (strchr(filter
, DIFF_STATUS_FILTER_AON
)) {
3294 for (i
= found
= 0; !found
&& i
< q
->nr
; i
++) {
3295 struct diff_filepair
*p
= q
->queue
[i
];
3296 if (((p
->status
== DIFF_STATUS_MODIFIED
) &&
3298 strchr(filter
, DIFF_STATUS_FILTER_BROKEN
)) ||
3300 strchr(filter
, DIFF_STATUS_MODIFIED
)))) ||
3301 ((p
->status
!= DIFF_STATUS_MODIFIED
) &&
3302 strchr(filter
, p
->status
)))
3308 /* otherwise we will clear the whole queue
3309 * by copying the empty outq at the end of this
3310 * function, but first clear the current entries
3313 for (i
= 0; i
< q
->nr
; i
++)
3314 diff_free_filepair(q
->queue
[i
]);
3317 /* Only the matching ones */
3318 for (i
= 0; i
< q
->nr
; i
++) {
3319 struct diff_filepair
*p
= q
->queue
[i
];
3321 if (((p
->status
== DIFF_STATUS_MODIFIED
) &&
3323 strchr(filter
, DIFF_STATUS_FILTER_BROKEN
)) ||
3325 strchr(filter
, DIFF_STATUS_MODIFIED
)))) ||
3326 ((p
->status
!= DIFF_STATUS_MODIFIED
) &&
3327 strchr(filter
, p
->status
)))
3330 diff_free_filepair(p
);
3337 /* Check whether two filespecs with the same mode and size are identical */
3338 static int diff_filespec_is_identical(struct diff_filespec
*one
,
3339 struct diff_filespec
*two
)
3341 if (S_ISGITLINK(one
->mode
))
3343 if (diff_populate_filespec(one
, 0))
3345 if (diff_populate_filespec(two
, 0))
3347 return !memcmp(one
->data
, two
->data
, one
->size
);
3350 static void diffcore_skip_stat_unmatch(struct diff_options
*diffopt
)
3353 struct diff_queue_struct
*q
= &diff_queued_diff
;
3354 struct diff_queue_struct outq
;
3356 outq
.nr
= outq
.alloc
= 0;
3358 for (i
= 0; i
< q
->nr
; i
++) {
3359 struct diff_filepair
*p
= q
->queue
[i
];
3362 * 1. Entries that come from stat info dirtyness
3363 * always have both sides (iow, not create/delete),
3364 * one side of the object name is unknown, with
3365 * the same mode and size. Keep the ones that
3366 * do not match these criteria. They have real
3369 * 2. At this point, the file is known to be modified,
3370 * with the same mode and size, and the object
3371 * name of one side is unknown. Need to inspect
3372 * the identical contents.
3374 if (!DIFF_FILE_VALID(p
->one
) || /* (1) */
3375 !DIFF_FILE_VALID(p
->two
) ||
3376 (p
->one
->sha1_valid
&& p
->two
->sha1_valid
) ||
3377 (p
->one
->mode
!= p
->two
->mode
) ||
3378 diff_populate_filespec(p
->one
, 1) ||
3379 diff_populate_filespec(p
->two
, 1) ||
3380 (p
->one
->size
!= p
->two
->size
) ||
3381 !diff_filespec_is_identical(p
->one
, p
->two
)) /* (2) */
3385 * The caller can subtract 1 from skip_stat_unmatch
3386 * to determine how many paths were dirty only
3387 * due to stat info mismatch.
3389 if (!DIFF_OPT_TST(diffopt
, NO_INDEX
))
3390 diffopt
->skip_stat_unmatch
++;
3391 diff_free_filepair(p
);
3398 void diffcore_std(struct diff_options
*options
)
3400 if (DIFF_OPT_TST(options
, QUIET
))
3403 if (options
->skip_stat_unmatch
&& !DIFF_OPT_TST(options
, FIND_COPIES_HARDER
))
3404 diffcore_skip_stat_unmatch(options
);
3405 if (options
->break_opt
!= -1)
3406 diffcore_break(options
->break_opt
);
3407 if (options
->detect_rename
)
3408 diffcore_rename(options
);
3409 if (options
->break_opt
!= -1)
3410 diffcore_merge_broken();
3411 if (options
->pickaxe
)
3412 diffcore_pickaxe(options
->pickaxe
, options
->pickaxe_opts
);
3413 if (options
->orderfile
)
3414 diffcore_order(options
->orderfile
);
3415 diff_resolve_rename_copy();
3416 diffcore_apply_filter(options
->filter
);
3418 if (diff_queued_diff
.nr
)
3419 DIFF_OPT_SET(options
, HAS_CHANGES
);
3421 DIFF_OPT_CLR(options
, HAS_CHANGES
);
3424 int diff_result_code(struct diff_options
*opt
, int status
)
3427 if (!DIFF_OPT_TST(opt
, EXIT_WITH_STATUS
) &&
3428 !(opt
->output_format
& DIFF_FORMAT_CHECKDIFF
))
3430 if (DIFF_OPT_TST(opt
, EXIT_WITH_STATUS
) &&
3431 DIFF_OPT_TST(opt
, HAS_CHANGES
))
3433 if ((opt
->output_format
& DIFF_FORMAT_CHECKDIFF
) &&
3434 DIFF_OPT_TST(opt
, CHECK_FAILED
))
3439 void diff_addremove(struct diff_options
*options
,
3440 int addremove
, unsigned mode
,
3441 const unsigned char *sha1
,
3442 const char *concatpath
)
3444 struct diff_filespec
*one
, *two
;
3446 if (DIFF_OPT_TST(options
, IGNORE_SUBMODULES
) && S_ISGITLINK(mode
))
3449 /* This may look odd, but it is a preparation for
3450 * feeding "there are unchanged files which should
3451 * not produce diffs, but when you are doing copy
3452 * detection you would need them, so here they are"
3453 * entries to the diff-core. They will be prefixed
3454 * with something like '=' or '*' (I haven't decided
3455 * which but should not make any difference).
3456 * Feeding the same new and old to diff_change()
3457 * also has the same effect.
3458 * Before the final output happens, they are pruned after
3459 * merged into rename/copy pairs as appropriate.
3461 if (DIFF_OPT_TST(options
, REVERSE_DIFF
))
3462 addremove
= (addremove
== '+' ? '-' :
3463 addremove
== '-' ? '+' : addremove
);
3465 if (options
->prefix
&&
3466 strncmp(concatpath
, options
->prefix
, options
->prefix_length
))
3469 one
= alloc_filespec(concatpath
);
3470 two
= alloc_filespec(concatpath
);
3472 if (addremove
!= '+')
3473 fill_filespec(one
, sha1
, mode
);
3474 if (addremove
!= '-')
3475 fill_filespec(two
, sha1
, mode
);
3477 diff_queue(&diff_queued_diff
, one
, two
);
3478 DIFF_OPT_SET(options
, HAS_CHANGES
);
3481 void diff_change(struct diff_options
*options
,
3482 unsigned old_mode
, unsigned new_mode
,
3483 const unsigned char *old_sha1
,
3484 const unsigned char *new_sha1
,
3485 const char *concatpath
)
3487 struct diff_filespec
*one
, *two
;
3489 if (DIFF_OPT_TST(options
, IGNORE_SUBMODULES
) && S_ISGITLINK(old_mode
)
3490 && S_ISGITLINK(new_mode
))
3493 if (DIFF_OPT_TST(options
, REVERSE_DIFF
)) {
3495 const unsigned char *tmp_c
;
3496 tmp
= old_mode
; old_mode
= new_mode
; new_mode
= tmp
;
3497 tmp_c
= old_sha1
; old_sha1
= new_sha1
; new_sha1
= tmp_c
;
3500 if (options
->prefix
&&
3501 strncmp(concatpath
, options
->prefix
, options
->prefix_length
))
3504 one
= alloc_filespec(concatpath
);
3505 two
= alloc_filespec(concatpath
);
3506 fill_filespec(one
, old_sha1
, old_mode
);
3507 fill_filespec(two
, new_sha1
, new_mode
);
3509 diff_queue(&diff_queued_diff
, one
, two
);
3510 DIFF_OPT_SET(options
, HAS_CHANGES
);
3513 void diff_unmerge(struct diff_options
*options
,
3515 unsigned mode
, const unsigned char *sha1
)
3517 struct diff_filespec
*one
, *two
;
3519 if (options
->prefix
&&
3520 strncmp(path
, options
->prefix
, options
->prefix_length
))
3523 one
= alloc_filespec(path
);
3524 two
= alloc_filespec(path
);
3525 fill_filespec(one
, sha1
, mode
);
3526 diff_queue(&diff_queued_diff
, one
, two
)->is_unmerged
= 1;