2 * Copyright (C) 2005 Junio C Hamano
9 #include "xdiff-interface.h"
12 #include "run-command.h"
16 #include "submodule.h"
19 #ifdef NO_FAST_WORKING_DIRECTORY
20 #define FAST_WORKING_DIRECTORY 0
22 #define FAST_WORKING_DIRECTORY 1
25 static int diff_detect_rename_default
;
26 static int diff_rename_limit_default
= 200;
27 static int diff_suppress_blank_empty
;
28 int diff_use_color_default
= -1;
29 static const char *diff_word_regex_cfg
;
30 static const char *external_diff_cmd_cfg
;
31 int diff_auto_refresh_index
= 1;
32 static int diff_mnemonic_prefix
;
33 static int diff_no_prefix
;
35 static char diff_colors
[][COLOR_MAXLEN
] = {
37 GIT_COLOR_NORMAL
, /* PLAIN */
38 GIT_COLOR_BOLD
, /* METAINFO */
39 GIT_COLOR_CYAN
, /* FRAGINFO */
40 GIT_COLOR_RED
, /* OLD */
41 GIT_COLOR_GREEN
, /* NEW */
42 GIT_COLOR_YELLOW
, /* COMMIT */
43 GIT_COLOR_BG_RED
, /* WHITESPACE */
44 GIT_COLOR_NORMAL
, /* FUNCINFO */
47 static void diff_filespec_load_driver(struct diff_filespec
*one
);
48 static size_t fill_textconv(struct userdiff_driver
*driver
,
49 struct diff_filespec
*df
, char **outbuf
);
51 static int parse_diff_color_slot(const char *var
, int ofs
)
53 if (!strcasecmp(var
+ofs
, "plain"))
55 if (!strcasecmp(var
+ofs
, "meta"))
57 if (!strcasecmp(var
+ofs
, "frag"))
59 if (!strcasecmp(var
+ofs
, "old"))
61 if (!strcasecmp(var
+ofs
, "new"))
63 if (!strcasecmp(var
+ofs
, "commit"))
65 if (!strcasecmp(var
+ofs
, "whitespace"))
66 return DIFF_WHITESPACE
;
67 if (!strcasecmp(var
+ofs
, "func"))
72 static int git_config_rename(const char *var
, const char *value
)
75 return DIFF_DETECT_RENAME
;
76 if (!strcasecmp(value
, "copies") || !strcasecmp(value
, "copy"))
77 return DIFF_DETECT_COPY
;
78 return git_config_bool(var
,value
) ? DIFF_DETECT_RENAME
: 0;
82 * These are to give UI layer defaults.
83 * The core-level commands such as git-diff-files should
84 * never be affected by the setting of diff.renames
85 * the user happens to have in the configuration file.
87 int git_diff_ui_config(const char *var
, const char *value
, void *cb
)
89 if (!strcmp(var
, "diff.color") || !strcmp(var
, "color.diff")) {
90 diff_use_color_default
= git_config_colorbool(var
, value
, -1);
93 if (!strcmp(var
, "diff.renames")) {
94 diff_detect_rename_default
= git_config_rename(var
, value
);
97 if (!strcmp(var
, "diff.autorefreshindex")) {
98 diff_auto_refresh_index
= git_config_bool(var
, value
);
101 if (!strcmp(var
, "diff.mnemonicprefix")) {
102 diff_mnemonic_prefix
= git_config_bool(var
, value
);
105 if (!strcmp(var
, "diff.noprefix")) {
106 diff_no_prefix
= git_config_bool(var
, value
);
109 if (!strcmp(var
, "diff.external"))
110 return git_config_string(&external_diff_cmd_cfg
, var
, value
);
111 if (!strcmp(var
, "diff.wordregex"))
112 return git_config_string(&diff_word_regex_cfg
, var
, value
);
114 return git_diff_basic_config(var
, value
, cb
);
117 int git_diff_basic_config(const char *var
, const char *value
, void *cb
)
119 if (!strcmp(var
, "diff.renamelimit")) {
120 diff_rename_limit_default
= git_config_int(var
, value
);
124 switch (userdiff_config(var
, value
)) {
130 if (!prefixcmp(var
, "diff.color.") || !prefixcmp(var
, "color.diff.")) {
131 int slot
= parse_diff_color_slot(var
, 11);
135 return config_error_nonbool(var
);
136 color_parse(value
, var
, diff_colors
[slot
]);
140 /* like GNU diff's --suppress-blank-empty option */
141 if (!strcmp(var
, "diff.suppressblankempty") ||
142 /* for backwards compatibility */
143 !strcmp(var
, "diff.suppress-blank-empty")) {
144 diff_suppress_blank_empty
= git_config_bool(var
, value
);
148 return git_color_default_config(var
, value
, cb
);
151 static char *quote_two(const char *one
, const char *two
)
153 int need_one
= quote_c_style(one
, NULL
, NULL
, 1);
154 int need_two
= quote_c_style(two
, NULL
, NULL
, 1);
155 struct strbuf res
= STRBUF_INIT
;
157 if (need_one
+ need_two
) {
158 strbuf_addch(&res
, '"');
159 quote_c_style(one
, &res
, NULL
, 1);
160 quote_c_style(two
, &res
, NULL
, 1);
161 strbuf_addch(&res
, '"');
163 strbuf_addstr(&res
, one
);
164 strbuf_addstr(&res
, two
);
166 return strbuf_detach(&res
, NULL
);
169 static const char *external_diff(void)
171 static const char *external_diff_cmd
= NULL
;
172 static int done_preparing
= 0;
175 return external_diff_cmd
;
176 external_diff_cmd
= getenv("GIT_EXTERNAL_DIFF");
177 if (!external_diff_cmd
)
178 external_diff_cmd
= external_diff_cmd_cfg
;
180 return external_diff_cmd
;
183 static struct diff_tempfile
{
184 const char *name
; /* filename external diff should read from */
187 char tmp_path
[PATH_MAX
];
190 typedef unsigned long (*sane_truncate_fn
)(char *line
, unsigned long len
);
192 struct emit_callback
{
195 int blank_at_eof_in_preimage
;
196 int blank_at_eof_in_postimage
;
198 int lno_in_postimage
;
199 sane_truncate_fn truncate
;
200 const char **label_path
;
201 struct diff_words_data
*diff_words
;
202 struct diff_options
*opt
;
204 struct strbuf
*header
;
207 static int count_lines(const char *data
, int size
)
209 int count
, ch
, completely_empty
= 1, nl_just_seen
= 0;
216 completely_empty
= 0;
220 completely_empty
= 0;
223 if (completely_empty
)
226 count
++; /* no trailing newline */
230 static int fill_mmfile(mmfile_t
*mf
, struct diff_filespec
*one
)
232 if (!DIFF_FILE_VALID(one
)) {
233 mf
->ptr
= (char *)""; /* does not matter */
237 else if (diff_populate_filespec(one
, 0))
241 mf
->size
= one
->size
;
245 static int count_trailing_blank(mmfile_t
*mf
, unsigned ws_rule
)
248 long size
= mf
->size
;
253 ptr
+= size
- 1; /* pointing at the very end */
255 ; /* incomplete line */
257 ptr
--; /* skip the last LF */
258 while (mf
->ptr
< ptr
) {
260 for (prev_eol
= ptr
; mf
->ptr
<= prev_eol
; prev_eol
--)
261 if (*prev_eol
== '\n')
263 if (!ws_blank_line(prev_eol
+ 1, ptr
- prev_eol
, ws_rule
))
271 static void check_blank_at_eof(mmfile_t
*mf1
, mmfile_t
*mf2
,
272 struct emit_callback
*ecbdata
)
275 unsigned ws_rule
= ecbdata
->ws_rule
;
276 l1
= count_trailing_blank(mf1
, ws_rule
);
277 l2
= count_trailing_blank(mf2
, ws_rule
);
279 ecbdata
->blank_at_eof_in_preimage
= 0;
280 ecbdata
->blank_at_eof_in_postimage
= 0;
283 at
= count_lines(mf1
->ptr
, mf1
->size
);
284 ecbdata
->blank_at_eof_in_preimage
= (at
- l1
) + 1;
286 at
= count_lines(mf2
->ptr
, mf2
->size
);
287 ecbdata
->blank_at_eof_in_postimage
= (at
- l2
) + 1;
290 static void emit_line_0(struct diff_options
*o
, const char *set
, const char *reset
,
291 int first
, const char *line
, int len
)
293 int has_trailing_newline
, has_trailing_carriage_return
;
295 FILE *file
= o
->file
;
297 if (o
->output_prefix
) {
298 struct strbuf
*msg
= NULL
;
299 msg
= o
->output_prefix(o
, o
->output_prefix_data
);
301 fwrite(msg
->buf
, msg
->len
, 1, file
);
305 has_trailing_newline
= (first
== '\n');
306 has_trailing_carriage_return
= (!has_trailing_newline
&&
308 nofirst
= has_trailing_newline
|| has_trailing_carriage_return
;
310 has_trailing_newline
= (len
> 0 && line
[len
-1] == '\n');
311 if (has_trailing_newline
)
313 has_trailing_carriage_return
= (len
> 0 && line
[len
-1] == '\r');
314 if (has_trailing_carriage_return
)
319 if (len
|| !nofirst
) {
323 fwrite(line
, len
, 1, file
);
326 if (has_trailing_carriage_return
)
328 if (has_trailing_newline
)
332 static void emit_line(struct diff_options
*o
, const char *set
, const char *reset
,
333 const char *line
, int len
)
335 emit_line_0(o
, set
, reset
, line
[0], line
+1, len
-1);
338 static int new_blank_line_at_eof(struct emit_callback
*ecbdata
, const char *line
, int len
)
340 if (!((ecbdata
->ws_rule
& WS_BLANK_AT_EOF
) &&
341 ecbdata
->blank_at_eof_in_preimage
&&
342 ecbdata
->blank_at_eof_in_postimage
&&
343 ecbdata
->blank_at_eof_in_preimage
<= ecbdata
->lno_in_preimage
&&
344 ecbdata
->blank_at_eof_in_postimage
<= ecbdata
->lno_in_postimage
))
346 return ws_blank_line(line
, len
, ecbdata
->ws_rule
);
349 static void emit_add_line(const char *reset
,
350 struct emit_callback
*ecbdata
,
351 const char *line
, int len
)
353 const char *ws
= diff_get_color(ecbdata
->color_diff
, DIFF_WHITESPACE
);
354 const char *set
= diff_get_color(ecbdata
->color_diff
, DIFF_FILE_NEW
);
357 emit_line_0(ecbdata
->opt
, set
, reset
, '+', line
, len
);
358 else if (new_blank_line_at_eof(ecbdata
, line
, len
))
359 /* Blank line at EOF - paint '+' as well */
360 emit_line_0(ecbdata
->opt
, ws
, reset
, '+', line
, len
);
362 /* Emit just the prefix, then the rest. */
363 emit_line_0(ecbdata
->opt
, set
, reset
, '+', "", 0);
364 ws_check_emit(line
, len
, ecbdata
->ws_rule
,
365 ecbdata
->opt
->file
, set
, reset
, ws
);
369 static void emit_hunk_header(struct emit_callback
*ecbdata
,
370 const char *line
, int len
)
372 const char *plain
= diff_get_color(ecbdata
->color_diff
, DIFF_PLAIN
);
373 const char *frag
= diff_get_color(ecbdata
->color_diff
, DIFF_FRAGINFO
);
374 const char *func
= diff_get_color(ecbdata
->color_diff
, DIFF_FUNCINFO
);
375 const char *reset
= diff_get_color(ecbdata
->color_diff
, DIFF_RESET
);
376 static const char atat
[2] = { '@', '@' };
378 struct strbuf msgbuf
= STRBUF_INIT
;
383 * As a hunk header must begin with "@@ -<old>, +<new> @@",
384 * it always is at least 10 bytes long.
387 memcmp(line
, atat
, 2) ||
388 !(ep
= memmem(line
+ 2, len
- 2, atat
, 2))) {
389 emit_line(ecbdata
->opt
, plain
, reset
, line
, len
);
392 ep
+= 2; /* skip over @@ */
394 /* The hunk header in fraginfo color */
395 strbuf_add(&msgbuf
, frag
, strlen(frag
));
396 strbuf_add(&msgbuf
, line
, ep
- line
);
397 strbuf_add(&msgbuf
, reset
, strlen(reset
));
403 if (line
[len
- i
] == '\r' || line
[len
- i
] == '\n')
406 /* blank before the func header */
407 for (cp
= ep
; ep
- line
< len
; ep
++)
408 if (*ep
!= ' ' && *ep
!= '\t')
411 strbuf_add(&msgbuf
, plain
, strlen(plain
));
412 strbuf_add(&msgbuf
, cp
, ep
- cp
);
413 strbuf_add(&msgbuf
, reset
, strlen(reset
));
416 if (ep
< line
+ len
) {
417 strbuf_add(&msgbuf
, func
, strlen(func
));
418 strbuf_add(&msgbuf
, ep
, line
+ len
- ep
);
419 strbuf_add(&msgbuf
, reset
, strlen(reset
));
422 strbuf_add(&msgbuf
, line
+ len
, org_len
- len
);
423 emit_line(ecbdata
->opt
, "", "", msgbuf
.buf
, msgbuf
.len
);
424 strbuf_release(&msgbuf
);
427 static struct diff_tempfile
*claim_diff_tempfile(void) {
429 for (i
= 0; i
< ARRAY_SIZE(diff_temp
); i
++)
430 if (!diff_temp
[i
].name
)
431 return diff_temp
+ i
;
432 die("BUG: diff is failing to clean up its tempfiles");
435 static int remove_tempfile_installed
;
437 static void remove_tempfile(void)
440 for (i
= 0; i
< ARRAY_SIZE(diff_temp
); i
++) {
441 if (diff_temp
[i
].name
== diff_temp
[i
].tmp_path
)
442 unlink_or_warn(diff_temp
[i
].name
);
443 diff_temp
[i
].name
= NULL
;
447 static void remove_tempfile_on_signal(int signo
)
454 static void print_line_count(FILE *file
, int count
)
458 fprintf(file
, "0,0");
464 fprintf(file
, "1,%d", count
);
469 static void emit_rewrite_lines(struct emit_callback
*ecb
,
470 int prefix
, const char *data
, int size
)
472 const char *endp
= NULL
;
473 static const char *nneof
= " No newline at end of file\n";
474 const char *old
= diff_get_color(ecb
->color_diff
, DIFF_FILE_OLD
);
475 const char *reset
= diff_get_color(ecb
->color_diff
, DIFF_RESET
);
480 endp
= memchr(data
, '\n', size
);
481 len
= endp
? (endp
- data
+ 1) : size
;
483 ecb
->lno_in_preimage
++;
484 emit_line_0(ecb
->opt
, old
, reset
, '-',
487 ecb
->lno_in_postimage
++;
488 emit_add_line(reset
, ecb
, data
, len
);
494 const char *plain
= diff_get_color(ecb
->color_diff
,
496 emit_line_0(ecb
->opt
, plain
, reset
, '\\',
497 nneof
, strlen(nneof
));
501 static void emit_rewrite_diff(const char *name_a
,
503 struct diff_filespec
*one
,
504 struct diff_filespec
*two
,
505 struct userdiff_driver
*textconv_one
,
506 struct userdiff_driver
*textconv_two
,
507 struct diff_options
*o
)
510 int color_diff
= DIFF_OPT_TST(o
, COLOR_DIFF
);
511 const char *name_a_tab
, *name_b_tab
;
512 const char *metainfo
= diff_get_color(color_diff
, DIFF_METAINFO
);
513 const char *fraginfo
= diff_get_color(color_diff
, DIFF_FRAGINFO
);
514 const char *reset
= diff_get_color(color_diff
, DIFF_RESET
);
515 static struct strbuf a_name
= STRBUF_INIT
, b_name
= STRBUF_INIT
;
516 const char *a_prefix
, *b_prefix
;
517 char *data_one
, *data_two
;
518 size_t size_one
, size_two
;
519 struct emit_callback ecbdata
;
520 char *line_prefix
= "";
521 struct strbuf
*msgbuf
;
523 if (o
&& o
->output_prefix
) {
524 msgbuf
= o
->output_prefix(o
, o
->output_prefix_data
);
525 line_prefix
= msgbuf
->buf
;
528 if (diff_mnemonic_prefix
&& DIFF_OPT_TST(o
, REVERSE_DIFF
)) {
529 a_prefix
= o
->b_prefix
;
530 b_prefix
= o
->a_prefix
;
532 a_prefix
= o
->a_prefix
;
533 b_prefix
= o
->b_prefix
;
536 name_a
+= (*name_a
== '/');
537 name_b
+= (*name_b
== '/');
538 name_a_tab
= strchr(name_a
, ' ') ? "\t" : "";
539 name_b_tab
= strchr(name_b
, ' ') ? "\t" : "";
541 strbuf_reset(&a_name
);
542 strbuf_reset(&b_name
);
543 quote_two_c_style(&a_name
, a_prefix
, name_a
, 0);
544 quote_two_c_style(&b_name
, b_prefix
, name_b
, 0);
546 size_one
= fill_textconv(textconv_one
, one
, &data_one
);
547 size_two
= fill_textconv(textconv_two
, two
, &data_two
);
549 memset(&ecbdata
, 0, sizeof(ecbdata
));
550 ecbdata
.color_diff
= color_diff
;
551 ecbdata
.found_changesp
= &o
->found_changes
;
552 ecbdata
.ws_rule
= whitespace_rule(name_b
? name_b
: name_a
);
554 if (ecbdata
.ws_rule
& WS_BLANK_AT_EOF
) {
556 mf1
.ptr
= (char *)data_one
;
557 mf2
.ptr
= (char *)data_two
;
560 check_blank_at_eof(&mf1
, &mf2
, &ecbdata
);
562 ecbdata
.lno_in_preimage
= 1;
563 ecbdata
.lno_in_postimage
= 1;
565 lc_a
= count_lines(data_one
, size_one
);
566 lc_b
= count_lines(data_two
, size_two
);
568 "%s%s--- %s%s%s\n%s%s+++ %s%s%s\n%s%s@@ -",
569 line_prefix
, metainfo
, a_name
.buf
, name_a_tab
, reset
,
570 line_prefix
, metainfo
, b_name
.buf
, name_b_tab
, reset
,
571 line_prefix
, fraginfo
);
572 print_line_count(o
->file
, lc_a
);
573 fprintf(o
->file
, " +");
574 print_line_count(o
->file
, lc_b
);
575 fprintf(o
->file
, " @@%s\n", reset
);
577 emit_rewrite_lines(&ecbdata
, '-', data_one
, size_one
);
579 emit_rewrite_lines(&ecbdata
, '+', data_two
, size_two
);
581 free((char *)data_one
);
583 free((char *)data_two
);
586 struct diff_words_buffer
{
589 struct diff_words_orig
{
590 const char *begin
, *end
;
592 int orig_nr
, orig_alloc
;
595 static void diff_words_append(char *line
, unsigned long len
,
596 struct diff_words_buffer
*buffer
)
598 ALLOC_GROW(buffer
->text
.ptr
, buffer
->text
.size
+ len
, buffer
->alloc
);
601 memcpy(buffer
->text
.ptr
+ buffer
->text
.size
, line
, len
);
602 buffer
->text
.size
+= len
;
603 buffer
->text
.ptr
[buffer
->text
.size
] = '\0';
606 struct diff_words_style_elem
610 const char *color
; /* NULL; filled in by the setup code if
611 * color is enabled */
614 struct diff_words_style
616 enum diff_words_type type
;
617 struct diff_words_style_elem
new, old
, ctx
;
621 struct diff_words_style diff_words_styles
[] = {
622 { DIFF_WORDS_PORCELAIN
, {"+", "\n"}, {"-", "\n"}, {" ", "\n"}, "~\n" },
623 { DIFF_WORDS_PLAIN
, {"{+", "+}"}, {"[-", "-]"}, {"", ""}, "\n" },
624 { DIFF_WORDS_COLOR
, {"", ""}, {"", ""}, {"", ""}, "\n" }
627 struct diff_words_data
{
628 struct diff_words_buffer minus
, plus
;
629 const char *current_plus
;
631 struct diff_options
*opt
;
633 enum diff_words_type type
;
634 struct diff_words_style
*style
;
637 static int fn_out_diff_words_write_helper(FILE *fp
,
638 struct diff_words_style_elem
*st_el
,
640 size_t count
, const char *buf
,
641 const char *line_prefix
)
646 char *p
= memchr(buf
, '\n', count
);
648 fputs(line_prefix
, fp
);
650 if (st_el
->color
&& fputs(st_el
->color
, fp
) < 0)
652 if (fputs(st_el
->prefix
, fp
) < 0 ||
653 fwrite(buf
, p
? p
- buf
: count
, 1, fp
) != 1 ||
654 fputs(st_el
->suffix
, fp
) < 0)
656 if (st_el
->color
&& *st_el
->color
657 && fputs(GIT_COLOR_RESET
, fp
) < 0)
662 if (fputs(newline
, fp
) < 0)
664 count
-= p
+ 1 - buf
;
672 * '--color-words' algorithm can be described as:
674 * 1. collect a the minus/plus lines of a diff hunk, divided into
675 * minus-lines and plus-lines;
677 * 2. break both minus-lines and plus-lines into words and
678 * place them into two mmfile_t with one word for each line;
680 * 3. use xdiff to run diff on the two mmfile_t to get the words level diff;
682 * And for the common parts of the both file, we output the plus side text.
683 * diff_words->current_plus is used to trace the current position of the plus file
684 * which printed. diff_words->last_minus is used to trace the last minus word
687 * For '--graph' to work with '--color-words', we need to output the graph prefix
688 * on each line of color words output. Generally, there are two conditions on
689 * which we should output the prefix.
691 * 1. diff_words->last_minus == 0 &&
692 * diff_words->current_plus == diff_words->plus.text.ptr
694 * that is: the plus text must start as a new line, and if there is no minus
695 * word printed, a graph prefix must be printed.
697 * 2. diff_words->current_plus > diff_words->plus.text.ptr &&
698 * *(diff_words->current_plus - 1) == '\n'
700 * that is: a graph prefix must be printed following a '\n'
702 static int color_words_output_graph_prefix(struct diff_words_data
*diff_words
)
704 if ((diff_words
->last_minus
== 0 &&
705 diff_words
->current_plus
== diff_words
->plus
.text
.ptr
) ||
706 (diff_words
->current_plus
> diff_words
->plus
.text
.ptr
&&
707 *(diff_words
->current_plus
- 1) == '\n')) {
714 static void fn_out_diff_words_aux(void *priv
, char *line
, unsigned long len
)
716 struct diff_words_data
*diff_words
= priv
;
717 struct diff_words_style
*style
= diff_words
->style
;
718 int minus_first
, minus_len
, plus_first
, plus_len
;
719 const char *minus_begin
, *minus_end
, *plus_begin
, *plus_end
;
720 struct diff_options
*opt
= diff_words
->opt
;
721 struct strbuf
*msgbuf
;
722 char *line_prefix
= "";
724 if (line
[0] != '@' || parse_hunk_header(line
, len
,
725 &minus_first
, &minus_len
, &plus_first
, &plus_len
))
729 if (opt
->output_prefix
) {
730 msgbuf
= opt
->output_prefix(opt
, opt
->output_prefix_data
);
731 line_prefix
= msgbuf
->buf
;
734 /* POSIX requires that first be decremented by one if len == 0... */
736 minus_begin
= diff_words
->minus
.orig
[minus_first
].begin
;
738 diff_words
->minus
.orig
[minus_first
+ minus_len
- 1].end
;
740 minus_begin
= minus_end
=
741 diff_words
->minus
.orig
[minus_first
].end
;
744 plus_begin
= diff_words
->plus
.orig
[plus_first
].begin
;
745 plus_end
= diff_words
->plus
.orig
[plus_first
+ plus_len
- 1].end
;
747 plus_begin
= plus_end
= diff_words
->plus
.orig
[plus_first
].end
;
749 if (color_words_output_graph_prefix(diff_words
)) {
750 fputs(line_prefix
, diff_words
->opt
->file
);
752 if (diff_words
->current_plus
!= plus_begin
) {
753 fn_out_diff_words_write_helper(diff_words
->opt
->file
,
754 &style
->ctx
, style
->newline
,
755 plus_begin
- diff_words
->current_plus
,
756 diff_words
->current_plus
, line_prefix
);
757 if (*(plus_begin
- 1) == '\n')
758 fputs(line_prefix
, diff_words
->opt
->file
);
760 if (minus_begin
!= minus_end
) {
761 fn_out_diff_words_write_helper(diff_words
->opt
->file
,
762 &style
->old
, style
->newline
,
763 minus_end
- minus_begin
, minus_begin
,
766 if (plus_begin
!= plus_end
) {
767 fn_out_diff_words_write_helper(diff_words
->opt
->file
,
768 &style
->new, style
->newline
,
769 plus_end
- plus_begin
, plus_begin
,
773 diff_words
->current_plus
= plus_end
;
774 diff_words
->last_minus
= minus_first
;
777 /* This function starts looking at *begin, and returns 0 iff a word was found. */
778 static int find_word_boundaries(mmfile_t
*buffer
, regex_t
*word_regex
,
779 int *begin
, int *end
)
781 if (word_regex
&& *begin
< buffer
->size
) {
783 if (!regexec(word_regex
, buffer
->ptr
+ *begin
, 1, match
, 0)) {
784 char *p
= memchr(buffer
->ptr
+ *begin
+ match
[0].rm_so
,
785 '\n', match
[0].rm_eo
- match
[0].rm_so
);
786 *end
= p
? p
- buffer
->ptr
: match
[0].rm_eo
+ *begin
;
787 *begin
+= match
[0].rm_so
;
788 return *begin
>= *end
;
793 /* find the next word */
794 while (*begin
< buffer
->size
&& isspace(buffer
->ptr
[*begin
]))
796 if (*begin
>= buffer
->size
)
799 /* find the end of the word */
801 while (*end
< buffer
->size
&& !isspace(buffer
->ptr
[*end
]))
808 * This function splits the words in buffer->text, stores the list with
809 * newline separator into out, and saves the offsets of the original words
812 static void diff_words_fill(struct diff_words_buffer
*buffer
, mmfile_t
*out
,
821 /* fake an empty "0th" word */
822 ALLOC_GROW(buffer
->orig
, 1, buffer
->orig_alloc
);
823 buffer
->orig
[0].begin
= buffer
->orig
[0].end
= buffer
->text
.ptr
;
826 for (i
= 0; i
< buffer
->text
.size
; i
++) {
827 if (find_word_boundaries(&buffer
->text
, word_regex
, &i
, &j
))
830 /* store original boundaries */
831 ALLOC_GROW(buffer
->orig
, buffer
->orig_nr
+ 1,
833 buffer
->orig
[buffer
->orig_nr
].begin
= buffer
->text
.ptr
+ i
;
834 buffer
->orig
[buffer
->orig_nr
].end
= buffer
->text
.ptr
+ j
;
838 ALLOC_GROW(out
->ptr
, out
->size
+ j
- i
+ 1, alloc
);
839 memcpy(out
->ptr
+ out
->size
, buffer
->text
.ptr
+ i
, j
- i
);
840 out
->ptr
[out
->size
+ j
- i
] = '\n';
841 out
->size
+= j
- i
+ 1;
847 /* this executes the word diff on the accumulated buffers */
848 static void diff_words_show(struct diff_words_data
*diff_words
)
852 mmfile_t minus
, plus
;
853 struct diff_words_style
*style
= diff_words
->style
;
855 struct diff_options
*opt
= diff_words
->opt
;
856 struct strbuf
*msgbuf
;
857 char *line_prefix
= "";
860 if (opt
->output_prefix
) {
861 msgbuf
= opt
->output_prefix(opt
, opt
->output_prefix_data
);
862 line_prefix
= msgbuf
->buf
;
865 /* special case: only removal */
866 if (!diff_words
->plus
.text
.size
) {
867 fputs(line_prefix
, diff_words
->opt
->file
);
868 fn_out_diff_words_write_helper(diff_words
->opt
->file
,
869 &style
->old
, style
->newline
,
870 diff_words
->minus
.text
.size
,
871 diff_words
->minus
.text
.ptr
, line_prefix
);
872 diff_words
->minus
.text
.size
= 0;
876 diff_words
->current_plus
= diff_words
->plus
.text
.ptr
;
877 diff_words
->last_minus
= 0;
879 memset(&xpp
, 0, sizeof(xpp
));
880 memset(&xecfg
, 0, sizeof(xecfg
));
881 diff_words_fill(&diff_words
->minus
, &minus
, diff_words
->word_regex
);
882 diff_words_fill(&diff_words
->plus
, &plus
, diff_words
->word_regex
);
884 /* as only the hunk header will be parsed, we need a 0-context */
886 xdi_diff_outf(&minus
, &plus
, fn_out_diff_words_aux
, diff_words
,
890 if (diff_words
->current_plus
!= diff_words
->plus
.text
.ptr
+
891 diff_words
->plus
.text
.size
) {
892 if (color_words_output_graph_prefix(diff_words
))
893 fputs(line_prefix
, diff_words
->opt
->file
);
894 fn_out_diff_words_write_helper(diff_words
->opt
->file
,
895 &style
->ctx
, style
->newline
,
896 diff_words
->plus
.text
.ptr
+ diff_words
->plus
.text
.size
897 - diff_words
->current_plus
, diff_words
->current_plus
,
900 diff_words
->minus
.text
.size
= diff_words
->plus
.text
.size
= 0;
903 /* In "color-words" mode, show word-diff of words accumulated in the buffer */
904 static void diff_words_flush(struct emit_callback
*ecbdata
)
906 if (ecbdata
->diff_words
->minus
.text
.size
||
907 ecbdata
->diff_words
->plus
.text
.size
)
908 diff_words_show(ecbdata
->diff_words
);
911 static void free_diff_words_data(struct emit_callback
*ecbdata
)
913 if (ecbdata
->diff_words
) {
914 diff_words_flush(ecbdata
);
915 free (ecbdata
->diff_words
->minus
.text
.ptr
);
916 free (ecbdata
->diff_words
->minus
.orig
);
917 free (ecbdata
->diff_words
->plus
.text
.ptr
);
918 free (ecbdata
->diff_words
->plus
.orig
);
919 free(ecbdata
->diff_words
->word_regex
);
920 free(ecbdata
->diff_words
);
921 ecbdata
->diff_words
= NULL
;
925 const char *diff_get_color(int diff_use_color
, enum color_diff ix
)
928 return diff_colors
[ix
];
932 static unsigned long sane_truncate_line(struct emit_callback
*ecb
, char *line
, unsigned long len
)
939 return ecb
->truncate(line
, len
);
943 (void) utf8_width(&cp
, &l
);
945 break; /* truncated in the middle? */
950 static void find_lno(const char *line
, struct emit_callback
*ecbdata
)
953 ecbdata
->lno_in_preimage
= 0;
954 ecbdata
->lno_in_postimage
= 0;
955 p
= strchr(line
, '-');
957 return; /* cannot happen */
958 ecbdata
->lno_in_preimage
= strtol(p
+ 1, NULL
, 10);
961 return; /* cannot happen */
962 ecbdata
->lno_in_postimage
= strtol(p
+ 1, NULL
, 10);
965 static void fn_out_consume(void *priv
, char *line
, unsigned long len
)
967 struct emit_callback
*ecbdata
= priv
;
968 const char *meta
= diff_get_color(ecbdata
->color_diff
, DIFF_METAINFO
);
969 const char *plain
= diff_get_color(ecbdata
->color_diff
, DIFF_PLAIN
);
970 const char *reset
= diff_get_color(ecbdata
->color_diff
, DIFF_RESET
);
971 struct diff_options
*o
= ecbdata
->opt
;
972 char *line_prefix
= "";
973 struct strbuf
*msgbuf
;
975 if (o
&& o
->output_prefix
) {
976 msgbuf
= o
->output_prefix(o
, o
->output_prefix_data
);
977 line_prefix
= msgbuf
->buf
;
980 if (ecbdata
->header
) {
981 fprintf(ecbdata
->opt
->file
, "%s", ecbdata
->header
->buf
);
982 strbuf_reset(ecbdata
->header
);
983 ecbdata
->header
= NULL
;
985 *(ecbdata
->found_changesp
) = 1;
987 if (ecbdata
->label_path
[0]) {
988 const char *name_a_tab
, *name_b_tab
;
990 name_a_tab
= strchr(ecbdata
->label_path
[0], ' ') ? "\t" : "";
991 name_b_tab
= strchr(ecbdata
->label_path
[1], ' ') ? "\t" : "";
993 fprintf(ecbdata
->opt
->file
, "%s%s--- %s%s%s\n",
994 line_prefix
, meta
, ecbdata
->label_path
[0], reset
, name_a_tab
);
995 fprintf(ecbdata
->opt
->file
, "%s%s+++ %s%s%s\n",
996 line_prefix
, meta
, ecbdata
->label_path
[1], reset
, name_b_tab
);
997 ecbdata
->label_path
[0] = ecbdata
->label_path
[1] = NULL
;
1000 if (diff_suppress_blank_empty
1001 && len
== 2 && line
[0] == ' ' && line
[1] == '\n') {
1006 if (line
[0] == '@') {
1007 if (ecbdata
->diff_words
)
1008 diff_words_flush(ecbdata
);
1009 len
= sane_truncate_line(ecbdata
, line
, len
);
1010 find_lno(line
, ecbdata
);
1011 emit_hunk_header(ecbdata
, line
, len
);
1012 if (line
[len
-1] != '\n')
1013 putc('\n', ecbdata
->opt
->file
);
1018 emit_line(ecbdata
->opt
, reset
, reset
, line
, len
);
1019 if (ecbdata
->diff_words
1020 && ecbdata
->diff_words
->type
== DIFF_WORDS_PORCELAIN
)
1021 fputs("~\n", ecbdata
->opt
->file
);
1025 if (ecbdata
->diff_words
) {
1026 if (line
[0] == '-') {
1027 diff_words_append(line
, len
,
1028 &ecbdata
->diff_words
->minus
);
1030 } else if (line
[0] == '+') {
1031 diff_words_append(line
, len
,
1032 &ecbdata
->diff_words
->plus
);
1035 diff_words_flush(ecbdata
);
1036 if (ecbdata
->diff_words
->type
== DIFF_WORDS_PORCELAIN
) {
1037 emit_line(ecbdata
->opt
, plain
, reset
, line
, len
);
1038 fputs("~\n", ecbdata
->opt
->file
);
1040 /* don't print the prefix character */
1041 emit_line(ecbdata
->opt
, plain
, reset
, line
+1, len
-1);
1046 if (line
[0] != '+') {
1048 diff_get_color(ecbdata
->color_diff
,
1049 line
[0] == '-' ? DIFF_FILE_OLD
: DIFF_PLAIN
);
1050 ecbdata
->lno_in_preimage
++;
1052 ecbdata
->lno_in_postimage
++;
1053 emit_line(ecbdata
->opt
, color
, reset
, line
, len
);
1055 ecbdata
->lno_in_postimage
++;
1056 emit_add_line(reset
, ecbdata
, line
+ 1, len
- 1);
1060 static char *pprint_rename(const char *a
, const char *b
)
1062 const char *old
= a
;
1063 const char *new = b
;
1064 struct strbuf name
= STRBUF_INIT
;
1065 int pfx_length
, sfx_length
;
1066 int len_a
= strlen(a
);
1067 int len_b
= strlen(b
);
1068 int a_midlen
, b_midlen
;
1069 int qlen_a
= quote_c_style(a
, NULL
, NULL
, 0);
1070 int qlen_b
= quote_c_style(b
, NULL
, NULL
, 0);
1072 if (qlen_a
|| qlen_b
) {
1073 quote_c_style(a
, &name
, NULL
, 0);
1074 strbuf_addstr(&name
, " => ");
1075 quote_c_style(b
, &name
, NULL
, 0);
1076 return strbuf_detach(&name
, NULL
);
1079 /* Find common prefix */
1081 while (*old
&& *new && *old
== *new) {
1083 pfx_length
= old
- a
+ 1;
1088 /* Find common suffix */
1092 while (a
<= old
&& b
<= new && *old
== *new) {
1094 sfx_length
= len_a
- (old
- a
);
1100 * pfx{mid-a => mid-b}sfx
1101 * {pfx-a => pfx-b}sfx
1102 * pfx{sfx-a => sfx-b}
1105 a_midlen
= len_a
- pfx_length
- sfx_length
;
1106 b_midlen
= len_b
- pfx_length
- sfx_length
;
1112 strbuf_grow(&name
, pfx_length
+ a_midlen
+ b_midlen
+ sfx_length
+ 7);
1113 if (pfx_length
+ sfx_length
) {
1114 strbuf_add(&name
, a
, pfx_length
);
1115 strbuf_addch(&name
, '{');
1117 strbuf_add(&name
, a
+ pfx_length
, a_midlen
);
1118 strbuf_addstr(&name
, " => ");
1119 strbuf_add(&name
, b
+ pfx_length
, b_midlen
);
1120 if (pfx_length
+ sfx_length
) {
1121 strbuf_addch(&name
, '}');
1122 strbuf_add(&name
, a
+ len_a
- sfx_length
, sfx_length
);
1124 return strbuf_detach(&name
, NULL
);
1130 struct diffstat_file
{
1134 unsigned is_unmerged
:1;
1135 unsigned is_binary
:1;
1136 unsigned is_renamed
:1;
1137 uintmax_t added
, deleted
;
1141 static struct diffstat_file
*diffstat_add(struct diffstat_t
*diffstat
,
1145 struct diffstat_file
*x
;
1146 x
= xcalloc(sizeof (*x
), 1);
1147 if (diffstat
->nr
== diffstat
->alloc
) {
1148 diffstat
->alloc
= alloc_nr(diffstat
->alloc
);
1149 diffstat
->files
= xrealloc(diffstat
->files
,
1150 diffstat
->alloc
* sizeof(x
));
1152 diffstat
->files
[diffstat
->nr
++] = x
;
1154 x
->from_name
= xstrdup(name_a
);
1155 x
->name
= xstrdup(name_b
);
1159 x
->from_name
= NULL
;
1160 x
->name
= xstrdup(name_a
);
1165 static void diffstat_consume(void *priv
, char *line
, unsigned long len
)
1167 struct diffstat_t
*diffstat
= priv
;
1168 struct diffstat_file
*x
= diffstat
->files
[diffstat
->nr
- 1];
1172 else if (line
[0] == '-')
1176 const char mime_boundary_leader
[] = "------------";
1178 static int scale_linear(int it
, int width
, int max_change
)
1181 * make sure that at least one '-' is printed if there were deletions,
1182 * and likewise for '+'.
1186 return ((it
- 1) * (width
- 1) + max_change
- 1) / (max_change
- 1);
1189 static void show_name(FILE *file
,
1190 const char *prefix
, const char *name
, int len
)
1192 fprintf(file
, " %s%-*s |", prefix
, len
, name
);
1195 static void show_graph(FILE *file
, char ch
, int cnt
, const char *set
, const char *reset
)
1199 fprintf(file
, "%s", set
);
1202 fprintf(file
, "%s", reset
);
1205 static void fill_print_name(struct diffstat_file
*file
)
1209 if (file
->print_name
)
1212 if (!file
->is_renamed
) {
1213 struct strbuf buf
= STRBUF_INIT
;
1214 if (quote_c_style(file
->name
, &buf
, NULL
, 0)) {
1215 pname
= strbuf_detach(&buf
, NULL
);
1218 strbuf_release(&buf
);
1221 pname
= pprint_rename(file
->from_name
, file
->name
);
1223 file
->print_name
= pname
;
1226 static void show_stats(struct diffstat_t
*data
, struct diff_options
*options
)
1228 int i
, len
, add
, del
, adds
= 0, dels
= 0;
1229 uintmax_t max_change
= 0, max_len
= 0;
1230 int total_files
= data
->nr
;
1231 int width
, name_width
;
1232 const char *reset
, *set
, *add_c
, *del_c
;
1233 const char *line_prefix
= "";
1234 struct strbuf
*msg
= NULL
;
1239 if (options
->output_prefix
) {
1240 msg
= options
->output_prefix(options
, options
->output_prefix_data
);
1241 line_prefix
= msg
->buf
;
1244 width
= options
->stat_width
? options
->stat_width
: 80;
1245 name_width
= options
->stat_name_width
? options
->stat_name_width
: 50;
1247 /* Sanity: give at least 5 columns to the graph,
1248 * but leave at least 10 columns for the name.
1252 if (name_width
< 10)
1254 else if (width
< name_width
+ 15)
1255 name_width
= width
- 15;
1257 /* Find the longest filename and max number of changes */
1258 reset
= diff_get_color_opt(options
, DIFF_RESET
);
1259 set
= diff_get_color_opt(options
, DIFF_PLAIN
);
1260 add_c
= diff_get_color_opt(options
, DIFF_FILE_NEW
);
1261 del_c
= diff_get_color_opt(options
, DIFF_FILE_OLD
);
1263 for (i
= 0; i
< data
->nr
; i
++) {
1264 struct diffstat_file
*file
= data
->files
[i
];
1265 uintmax_t change
= file
->added
+ file
->deleted
;
1266 fill_print_name(file
);
1267 len
= strlen(file
->print_name
);
1271 if (file
->is_binary
|| file
->is_unmerged
)
1273 if (max_change
< change
)
1274 max_change
= change
;
1277 /* Compute the width of the graph part;
1278 * 10 is for one blank at the beginning of the line plus
1279 * " | count " between the name and the graph.
1281 * From here on, name_width is the width of the name area,
1282 * and width is the width of the graph area.
1284 name_width
= (name_width
< max_len
) ? name_width
: max_len
;
1285 if (width
< (name_width
+ 10) + max_change
)
1286 width
= width
- (name_width
+ 10);
1290 for (i
= 0; i
< data
->nr
; i
++) {
1291 const char *prefix
= "";
1292 char *name
= data
->files
[i
]->print_name
;
1293 uintmax_t added
= data
->files
[i
]->added
;
1294 uintmax_t deleted
= data
->files
[i
]->deleted
;
1298 * "scale" the filename
1301 name_len
= strlen(name
);
1302 if (name_width
< name_len
) {
1306 name
+= name_len
- len
;
1307 slash
= strchr(name
, '/');
1312 if (data
->files
[i
]->is_binary
) {
1313 fprintf(options
->file
, "%s", line_prefix
);
1314 show_name(options
->file
, prefix
, name
, len
);
1315 fprintf(options
->file
, " Bin ");
1316 fprintf(options
->file
, "%s%"PRIuMAX
"%s",
1317 del_c
, deleted
, reset
);
1318 fprintf(options
->file
, " -> ");
1319 fprintf(options
->file
, "%s%"PRIuMAX
"%s",
1320 add_c
, added
, reset
);
1321 fprintf(options
->file
, " bytes");
1322 fprintf(options
->file
, "\n");
1325 else if (data
->files
[i
]->is_unmerged
) {
1326 fprintf(options
->file
, "%s", line_prefix
);
1327 show_name(options
->file
, prefix
, name
, len
);
1328 fprintf(options
->file
, " Unmerged\n");
1331 else if (!data
->files
[i
]->is_renamed
&&
1332 (added
+ deleted
== 0)) {
1338 * scale the add/delete
1345 if (width
<= max_change
) {
1346 add
= scale_linear(add
, width
, max_change
);
1347 del
= scale_linear(del
, width
, max_change
);
1349 fprintf(options
->file
, "%s", line_prefix
);
1350 show_name(options
->file
, prefix
, name
, len
);
1351 fprintf(options
->file
, "%5"PRIuMAX
"%s", added
+ deleted
,
1352 added
+ deleted
? " " : "");
1353 show_graph(options
->file
, '+', add
, add_c
, reset
);
1354 show_graph(options
->file
, '-', del
, del_c
, reset
);
1355 fprintf(options
->file
, "\n");
1357 fprintf(options
->file
, "%s", line_prefix
);
1358 fprintf(options
->file
,
1359 " %d files changed, %d insertions(+), %d deletions(-)\n",
1360 total_files
, adds
, dels
);
1363 static void show_shortstats(struct diffstat_t
*data
, struct diff_options
*options
)
1365 int i
, adds
= 0, dels
= 0, total_files
= data
->nr
;
1370 for (i
= 0; i
< data
->nr
; i
++) {
1371 if (!data
->files
[i
]->is_binary
&&
1372 !data
->files
[i
]->is_unmerged
) {
1373 int added
= data
->files
[i
]->added
;
1374 int deleted
= data
->files
[i
]->deleted
;
1375 if (!data
->files
[i
]->is_renamed
&&
1376 (added
+ deleted
== 0)) {
1384 if (options
->output_prefix
) {
1385 struct strbuf
*msg
= NULL
;
1386 msg
= options
->output_prefix(options
,
1387 options
->output_prefix_data
);
1388 fprintf(options
->file
, "%s", msg
->buf
);
1390 fprintf(options
->file
, " %d files changed, %d insertions(+), %d deletions(-)\n",
1391 total_files
, adds
, dels
);
1394 static void show_numstat(struct diffstat_t
*data
, struct diff_options
*options
)
1401 for (i
= 0; i
< data
->nr
; i
++) {
1402 struct diffstat_file
*file
= data
->files
[i
];
1404 if (options
->output_prefix
) {
1405 struct strbuf
*msg
= NULL
;
1406 msg
= options
->output_prefix(options
,
1407 options
->output_prefix_data
);
1408 fprintf(options
->file
, "%s", msg
->buf
);
1411 if (file
->is_binary
)
1412 fprintf(options
->file
, "-\t-\t");
1414 fprintf(options
->file
,
1415 "%"PRIuMAX
"\t%"PRIuMAX
"\t",
1416 file
->added
, file
->deleted
);
1417 if (options
->line_termination
) {
1418 fill_print_name(file
);
1419 if (!file
->is_renamed
)
1420 write_name_quoted(file
->name
, options
->file
,
1421 options
->line_termination
);
1423 fputs(file
->print_name
, options
->file
);
1424 putc(options
->line_termination
, options
->file
);
1427 if (file
->is_renamed
) {
1428 putc('\0', options
->file
);
1429 write_name_quoted(file
->from_name
, options
->file
, '\0');
1431 write_name_quoted(file
->name
, options
->file
, '\0');
1436 struct dirstat_file
{
1438 unsigned long changed
;
1441 struct dirstat_dir
{
1442 struct dirstat_file
*files
;
1443 int alloc
, nr
, percent
, cumulative
;
1446 static long gather_dirstat(struct diff_options
*opt
, struct dirstat_dir
*dir
,
1447 unsigned long changed
, const char *base
, int baselen
)
1449 unsigned long this_dir
= 0;
1450 unsigned int sources
= 0;
1451 const char *line_prefix
= "";
1452 struct strbuf
*msg
= NULL
;
1454 if (opt
->output_prefix
) {
1455 msg
= opt
->output_prefix(opt
, opt
->output_prefix_data
);
1456 line_prefix
= msg
->buf
;
1460 struct dirstat_file
*f
= dir
->files
;
1461 int namelen
= strlen(f
->name
);
1465 if (namelen
< baselen
)
1467 if (memcmp(f
->name
, base
, baselen
))
1469 slash
= strchr(f
->name
+ baselen
, '/');
1471 int newbaselen
= slash
+ 1 - f
->name
;
1472 this = gather_dirstat(opt
, dir
, changed
, f
->name
, newbaselen
);
1484 * We don't report dirstat's for
1486 * - or cases where everything came from a single directory
1487 * under this directory (sources == 1).
1489 if (baselen
&& sources
!= 1) {
1490 int permille
= this_dir
* 1000 / changed
;
1492 int percent
= permille
/ 10;
1493 if (percent
>= dir
->percent
) {
1494 fprintf(opt
->file
, "%s%4d.%01d%% %.*s\n", line_prefix
,
1495 percent
, permille
% 10, baselen
, base
);
1496 if (!dir
->cumulative
)
1504 static int dirstat_compare(const void *_a
, const void *_b
)
1506 const struct dirstat_file
*a
= _a
;
1507 const struct dirstat_file
*b
= _b
;
1508 return strcmp(a
->name
, b
->name
);
1511 static void show_dirstat(struct diff_options
*options
)
1514 unsigned long changed
;
1515 struct dirstat_dir dir
;
1516 struct diff_queue_struct
*q
= &diff_queued_diff
;
1521 dir
.percent
= options
->dirstat_percent
;
1522 dir
.cumulative
= DIFF_OPT_TST(options
, DIRSTAT_CUMULATIVE
);
1525 for (i
= 0; i
< q
->nr
; i
++) {
1526 struct diff_filepair
*p
= q
->queue
[i
];
1528 unsigned long copied
, added
, damage
;
1530 name
= p
->one
->path
? p
->one
->path
: p
->two
->path
;
1532 if (DIFF_FILE_VALID(p
->one
) && DIFF_FILE_VALID(p
->two
)) {
1533 diff_populate_filespec(p
->one
, 0);
1534 diff_populate_filespec(p
->two
, 0);
1535 diffcore_count_changes(p
->one
, p
->two
, NULL
, NULL
, 0,
1537 diff_free_filespec_data(p
->one
);
1538 diff_free_filespec_data(p
->two
);
1539 } else if (DIFF_FILE_VALID(p
->one
)) {
1540 diff_populate_filespec(p
->one
, 1);
1542 diff_free_filespec_data(p
->one
);
1543 } else if (DIFF_FILE_VALID(p
->two
)) {
1544 diff_populate_filespec(p
->two
, 1);
1546 added
= p
->two
->size
;
1547 diff_free_filespec_data(p
->two
);
1552 * Original minus copied is the removed material,
1553 * added is the new material. They are both damages
1554 * made to the preimage. In --dirstat-by-file mode, count
1555 * damaged files, not damaged lines. This is done by
1556 * counting only a single damaged line per file.
1558 damage
= (p
->one
->size
- copied
) + added
;
1559 if (DIFF_OPT_TST(options
, DIRSTAT_BY_FILE
) && damage
> 0)
1562 ALLOC_GROW(dir
.files
, dir
.nr
+ 1, dir
.alloc
);
1563 dir
.files
[dir
.nr
].name
= name
;
1564 dir
.files
[dir
.nr
].changed
= damage
;
1569 /* This can happen even with many files, if everything was renames */
1573 /* Show all directories with more than x% of the changes */
1574 qsort(dir
.files
, dir
.nr
, sizeof(dir
.files
[0]), dirstat_compare
);
1575 gather_dirstat(options
, &dir
, changed
, "", 0);
1578 static void free_diffstat_info(struct diffstat_t
*diffstat
)
1581 for (i
= 0; i
< diffstat
->nr
; i
++) {
1582 struct diffstat_file
*f
= diffstat
->files
[i
];
1583 if (f
->name
!= f
->print_name
)
1584 free(f
->print_name
);
1589 free(diffstat
->files
);
1592 struct checkdiff_t
{
1593 const char *filename
;
1595 int conflict_marker_size
;
1596 struct diff_options
*o
;
1601 static int is_conflict_marker(const char *line
, int marker_size
, unsigned long len
)
1606 if (len
< marker_size
+ 1)
1608 firstchar
= line
[0];
1609 switch (firstchar
) {
1610 case '=': case '>': case '<': case '|':
1615 for (cnt
= 1; cnt
< marker_size
; cnt
++)
1616 if (line
[cnt
] != firstchar
)
1618 /* line[1] thru line[marker_size-1] are same as firstchar */
1619 if (len
< marker_size
+ 1 || !isspace(line
[marker_size
]))
1624 static void checkdiff_consume(void *priv
, char *line
, unsigned long len
)
1626 struct checkdiff_t
*data
= priv
;
1627 int color_diff
= DIFF_OPT_TST(data
->o
, COLOR_DIFF
);
1628 int marker_size
= data
->conflict_marker_size
;
1629 const char *ws
= diff_get_color(color_diff
, DIFF_WHITESPACE
);
1630 const char *reset
= diff_get_color(color_diff
, DIFF_RESET
);
1631 const char *set
= diff_get_color(color_diff
, DIFF_FILE_NEW
);
1633 char *line_prefix
= "";
1634 struct strbuf
*msgbuf
;
1637 if (data
->o
->output_prefix
) {
1638 msgbuf
= data
->o
->output_prefix(data
->o
,
1639 data
->o
->output_prefix_data
);
1640 line_prefix
= msgbuf
->buf
;
1643 if (line
[0] == '+') {
1646 if (is_conflict_marker(line
+ 1, marker_size
, len
- 1)) {
1648 fprintf(data
->o
->file
,
1649 "%s%s:%d: leftover conflict marker\n",
1650 line_prefix
, data
->filename
, data
->lineno
);
1652 bad
= ws_check(line
+ 1, len
- 1, data
->ws_rule
);
1655 data
->status
|= bad
;
1656 err
= whitespace_error_string(bad
);
1657 fprintf(data
->o
->file
, "%s%s:%d: %s.\n",
1658 line_prefix
, data
->filename
, data
->lineno
, err
);
1660 emit_line(data
->o
, set
, reset
, line
, 1);
1661 ws_check_emit(line
+ 1, len
- 1, data
->ws_rule
,
1662 data
->o
->file
, set
, reset
, ws
);
1663 } else if (line
[0] == ' ') {
1665 } else if (line
[0] == '@') {
1666 char *plus
= strchr(line
, '+');
1668 data
->lineno
= strtol(plus
, NULL
, 10) - 1;
1670 die("invalid diff");
1674 static unsigned char *deflate_it(char *data
,
1676 unsigned long *result_size
)
1679 unsigned char *deflated
;
1682 memset(&stream
, 0, sizeof(stream
));
1683 deflateInit(&stream
, zlib_compression_level
);
1684 bound
= deflateBound(&stream
, size
);
1685 deflated
= xmalloc(bound
);
1686 stream
.next_out
= deflated
;
1687 stream
.avail_out
= bound
;
1689 stream
.next_in
= (unsigned char *)data
;
1690 stream
.avail_in
= size
;
1691 while (deflate(&stream
, Z_FINISH
) == Z_OK
)
1693 deflateEnd(&stream
);
1694 *result_size
= stream
.total_out
;
1698 static void emit_binary_diff_body(FILE *file
, mmfile_t
*one
, mmfile_t
*two
, char *prefix
)
1704 unsigned long orig_size
;
1705 unsigned long delta_size
;
1706 unsigned long deflate_size
;
1707 unsigned long data_size
;
1709 /* We could do deflated delta, or we could do just deflated two,
1710 * whichever is smaller.
1713 deflated
= deflate_it(two
->ptr
, two
->size
, &deflate_size
);
1714 if (one
->size
&& two
->size
) {
1715 delta
= diff_delta(one
->ptr
, one
->size
,
1716 two
->ptr
, two
->size
,
1717 &delta_size
, deflate_size
);
1719 void *to_free
= delta
;
1720 orig_size
= delta_size
;
1721 delta
= deflate_it(delta
, delta_size
, &delta_size
);
1726 if (delta
&& delta_size
< deflate_size
) {
1727 fprintf(file
, "%sdelta %lu\n", prefix
, orig_size
);
1730 data_size
= delta_size
;
1733 fprintf(file
, "%sliteral %lu\n", prefix
, two
->size
);
1736 data_size
= deflate_size
;
1739 /* emit data encoded in base85 */
1742 int bytes
= (52 < data_size
) ? 52 : data_size
;
1746 line
[0] = bytes
+ 'A' - 1;
1748 line
[0] = bytes
- 26 + 'a' - 1;
1749 encode_85(line
+ 1, cp
, bytes
);
1750 cp
= (char *) cp
+ bytes
;
1751 fprintf(file
, "%s", prefix
);
1755 fprintf(file
, "%s\n", prefix
);
1759 static void emit_binary_diff(FILE *file
, mmfile_t
*one
, mmfile_t
*two
, char *prefix
)
1761 fprintf(file
, "%sGIT binary patch\n", prefix
);
1762 emit_binary_diff_body(file
, one
, two
, prefix
);
1763 emit_binary_diff_body(file
, two
, one
, prefix
);
1766 static void diff_filespec_load_driver(struct diff_filespec
*one
)
1769 one
->driver
= userdiff_find_by_path(one
->path
);
1771 one
->driver
= userdiff_find_by_name("default");
1774 int diff_filespec_is_binary(struct diff_filespec
*one
)
1776 if (one
->is_binary
== -1) {
1777 diff_filespec_load_driver(one
);
1778 if (one
->driver
->binary
!= -1)
1779 one
->is_binary
= one
->driver
->binary
;
1781 if (!one
->data
&& DIFF_FILE_VALID(one
))
1782 diff_populate_filespec(one
, 0);
1784 one
->is_binary
= buffer_is_binary(one
->data
,
1786 if (one
->is_binary
== -1)
1790 return one
->is_binary
;
1793 static const struct userdiff_funcname
*diff_funcname_pattern(struct diff_filespec
*one
)
1795 diff_filespec_load_driver(one
);
1796 return one
->driver
->funcname
.pattern
? &one
->driver
->funcname
: NULL
;
1799 static const char *userdiff_word_regex(struct diff_filespec
*one
)
1801 diff_filespec_load_driver(one
);
1802 return one
->driver
->word_regex
;
1805 void diff_set_mnemonic_prefix(struct diff_options
*options
, const char *a
, const char *b
)
1807 if (!options
->a_prefix
)
1808 options
->a_prefix
= a
;
1809 if (!options
->b_prefix
)
1810 options
->b_prefix
= b
;
1813 static struct userdiff_driver
*get_textconv(struct diff_filespec
*one
)
1815 if (!DIFF_FILE_VALID(one
))
1817 if (!S_ISREG(one
->mode
))
1819 diff_filespec_load_driver(one
);
1820 if (!one
->driver
->textconv
)
1823 if (one
->driver
->textconv_want_cache
&& !one
->driver
->textconv_cache
) {
1824 struct notes_cache
*c
= xmalloc(sizeof(*c
));
1825 struct strbuf name
= STRBUF_INIT
;
1827 strbuf_addf(&name
, "textconv/%s", one
->driver
->name
);
1828 notes_cache_init(c
, name
.buf
, one
->driver
->textconv
);
1829 one
->driver
->textconv_cache
= c
;
1835 static void builtin_diff(const char *name_a
,
1837 struct diff_filespec
*one
,
1838 struct diff_filespec
*two
,
1839 const char *xfrm_msg
,
1840 int must_show_header
,
1841 struct diff_options
*o
,
1842 int complete_rewrite
)
1846 char *a_one
, *b_two
;
1847 const char *set
= diff_get_color_opt(o
, DIFF_METAINFO
);
1848 const char *reset
= diff_get_color_opt(o
, DIFF_RESET
);
1849 const char *a_prefix
, *b_prefix
;
1850 struct userdiff_driver
*textconv_one
= NULL
;
1851 struct userdiff_driver
*textconv_two
= NULL
;
1852 struct strbuf header
= STRBUF_INIT
;
1853 struct strbuf
*msgbuf
;
1854 char *line_prefix
= "";
1856 if (o
->output_prefix
) {
1857 msgbuf
= o
->output_prefix(o
, o
->output_prefix_data
);
1858 line_prefix
= msgbuf
->buf
;
1861 if (DIFF_OPT_TST(o
, SUBMODULE_LOG
) &&
1862 (!one
->mode
|| S_ISGITLINK(one
->mode
)) &&
1863 (!two
->mode
|| S_ISGITLINK(two
->mode
))) {
1864 const char *del
= diff_get_color_opt(o
, DIFF_FILE_OLD
);
1865 const char *add
= diff_get_color_opt(o
, DIFF_FILE_NEW
);
1866 show_submodule_summary(o
->file
, one
? one
->path
: two
->path
,
1867 one
->sha1
, two
->sha1
, two
->dirty_submodule
,
1872 if (DIFF_OPT_TST(o
, ALLOW_TEXTCONV
)) {
1873 textconv_one
= get_textconv(one
);
1874 textconv_two
= get_textconv(two
);
1877 diff_set_mnemonic_prefix(o
, "a/", "b/");
1878 if (DIFF_OPT_TST(o
, REVERSE_DIFF
)) {
1879 a_prefix
= o
->b_prefix
;
1880 b_prefix
= o
->a_prefix
;
1882 a_prefix
= o
->a_prefix
;
1883 b_prefix
= o
->b_prefix
;
1886 /* Never use a non-valid filename anywhere if at all possible */
1887 name_a
= DIFF_FILE_VALID(one
) ? name_a
: name_b
;
1888 name_b
= DIFF_FILE_VALID(two
) ? name_b
: name_a
;
1890 a_one
= quote_two(a_prefix
, name_a
+ (*name_a
== '/'));
1891 b_two
= quote_two(b_prefix
, name_b
+ (*name_b
== '/'));
1892 lbl
[0] = DIFF_FILE_VALID(one
) ? a_one
: "/dev/null";
1893 lbl
[1] = DIFF_FILE_VALID(two
) ? b_two
: "/dev/null";
1894 strbuf_addf(&header
, "%s%sdiff --git %s %s%s\n", line_prefix
, set
, a_one
, b_two
, reset
);
1895 if (lbl
[0][0] == '/') {
1897 strbuf_addf(&header
, "%s%snew file mode %06o%s\n", line_prefix
, set
, two
->mode
, reset
);
1899 strbuf_addstr(&header
, xfrm_msg
);
1900 must_show_header
= 1;
1902 else if (lbl
[1][0] == '/') {
1903 strbuf_addf(&header
, "%s%sdeleted file mode %06o%s\n", line_prefix
, set
, one
->mode
, reset
);
1905 strbuf_addstr(&header
, xfrm_msg
);
1906 must_show_header
= 1;
1909 if (one
->mode
!= two
->mode
) {
1910 strbuf_addf(&header
, "%s%sold mode %06o%s\n", line_prefix
, set
, one
->mode
, reset
);
1911 strbuf_addf(&header
, "%s%snew mode %06o%s\n", line_prefix
, set
, two
->mode
, reset
);
1912 must_show_header
= 1;
1915 strbuf_addstr(&header
, xfrm_msg
);
1918 * we do not run diff between different kind
1921 if ((one
->mode
^ two
->mode
) & S_IFMT
)
1922 goto free_ab_and_return
;
1923 if (complete_rewrite
&&
1924 (textconv_one
|| !diff_filespec_is_binary(one
)) &&
1925 (textconv_two
|| !diff_filespec_is_binary(two
))) {
1926 fprintf(o
->file
, "%s", header
.buf
);
1927 strbuf_reset(&header
);
1928 emit_rewrite_diff(name_a
, name_b
, one
, two
,
1929 textconv_one
, textconv_two
, o
);
1930 o
->found_changes
= 1;
1931 goto free_ab_and_return
;
1935 if (!DIFF_OPT_TST(o
, TEXT
) &&
1936 ( (!textconv_one
&& diff_filespec_is_binary(one
)) ||
1937 (!textconv_two
&& diff_filespec_is_binary(two
)) )) {
1938 if (fill_mmfile(&mf1
, one
) < 0 || fill_mmfile(&mf2
, two
) < 0)
1939 die("unable to read files to diff");
1940 /* Quite common confusing case */
1941 if (mf1
.size
== mf2
.size
&&
1942 !memcmp(mf1
.ptr
, mf2
.ptr
, mf1
.size
)) {
1943 if (must_show_header
)
1944 fprintf(o
->file
, "%s", header
.buf
);
1945 goto free_ab_and_return
;
1947 fprintf(o
->file
, "%s", header
.buf
);
1948 strbuf_reset(&header
);
1949 if (DIFF_OPT_TST(o
, BINARY
))
1950 emit_binary_diff(o
->file
, &mf1
, &mf2
, line_prefix
);
1952 fprintf(o
->file
, "%sBinary files %s and %s differ\n",
1953 line_prefix
, lbl
[0], lbl
[1]);
1954 o
->found_changes
= 1;
1957 /* Crazy xdl interfaces.. */
1958 const char *diffopts
= getenv("GIT_DIFF_OPTS");
1961 struct emit_callback ecbdata
;
1962 const struct userdiff_funcname
*pe
;
1964 if (!DIFF_XDL_TST(o
, WHITESPACE_FLAGS
) || must_show_header
) {
1965 fprintf(o
->file
, "%s", header
.buf
);
1966 strbuf_reset(&header
);
1969 mf1
.size
= fill_textconv(textconv_one
, one
, &mf1
.ptr
);
1970 mf2
.size
= fill_textconv(textconv_two
, two
, &mf2
.ptr
);
1972 pe
= diff_funcname_pattern(one
);
1974 pe
= diff_funcname_pattern(two
);
1976 memset(&xpp
, 0, sizeof(xpp
));
1977 memset(&xecfg
, 0, sizeof(xecfg
));
1978 memset(&ecbdata
, 0, sizeof(ecbdata
));
1979 ecbdata
.label_path
= lbl
;
1980 ecbdata
.color_diff
= DIFF_OPT_TST(o
, COLOR_DIFF
);
1981 ecbdata
.found_changesp
= &o
->found_changes
;
1982 ecbdata
.ws_rule
= whitespace_rule(name_b
? name_b
: name_a
);
1983 if (ecbdata
.ws_rule
& WS_BLANK_AT_EOF
)
1984 check_blank_at_eof(&mf1
, &mf2
, &ecbdata
);
1986 ecbdata
.header
= header
.len
? &header
: NULL
;
1987 xpp
.flags
= o
->xdl_opts
;
1988 xecfg
.ctxlen
= o
->context
;
1989 xecfg
.interhunkctxlen
= o
->interhunkcontext
;
1990 xecfg
.flags
= XDL_EMIT_FUNCNAMES
;
1992 xdiff_set_find_func(&xecfg
, pe
->pattern
, pe
->cflags
);
1995 else if (!prefixcmp(diffopts
, "--unified="))
1996 xecfg
.ctxlen
= strtoul(diffopts
+ 10, NULL
, 10);
1997 else if (!prefixcmp(diffopts
, "-u"))
1998 xecfg
.ctxlen
= strtoul(diffopts
+ 2, NULL
, 10);
2002 ecbdata
.diff_words
=
2003 xcalloc(1, sizeof(struct diff_words_data
));
2004 ecbdata
.diff_words
->type
= o
->word_diff
;
2005 ecbdata
.diff_words
->opt
= o
;
2007 o
->word_regex
= userdiff_word_regex(one
);
2009 o
->word_regex
= userdiff_word_regex(two
);
2011 o
->word_regex
= diff_word_regex_cfg
;
2012 if (o
->word_regex
) {
2013 ecbdata
.diff_words
->word_regex
= (regex_t
*)
2014 xmalloc(sizeof(regex_t
));
2015 if (regcomp(ecbdata
.diff_words
->word_regex
,
2017 REG_EXTENDED
| REG_NEWLINE
))
2018 die ("Invalid regular expression: %s",
2021 for (i
= 0; i
< ARRAY_SIZE(diff_words_styles
); i
++) {
2022 if (o
->word_diff
== diff_words_styles
[i
].type
) {
2023 ecbdata
.diff_words
->style
=
2024 &diff_words_styles
[i
];
2028 if (DIFF_OPT_TST(o
, COLOR_DIFF
)) {
2029 struct diff_words_style
*st
= ecbdata
.diff_words
->style
;
2030 st
->old
.color
= diff_get_color_opt(o
, DIFF_FILE_OLD
);
2031 st
->new.color
= diff_get_color_opt(o
, DIFF_FILE_NEW
);
2032 st
->ctx
.color
= diff_get_color_opt(o
, DIFF_PLAIN
);
2035 xdi_diff_outf(&mf1
, &mf2
, fn_out_consume
, &ecbdata
,
2038 free_diff_words_data(&ecbdata
);
2043 xdiff_clear_find_func(&xecfg
);
2047 strbuf_release(&header
);
2048 diff_free_filespec_data(one
);
2049 diff_free_filespec_data(two
);
2055 static void builtin_diffstat(const char *name_a
, const char *name_b
,
2056 struct diff_filespec
*one
,
2057 struct diff_filespec
*two
,
2058 struct diffstat_t
*diffstat
,
2059 struct diff_options
*o
,
2060 int complete_rewrite
)
2063 struct diffstat_file
*data
;
2065 data
= diffstat_add(diffstat
, name_a
, name_b
);
2068 data
->is_unmerged
= 1;
2071 if (complete_rewrite
) {
2072 diff_populate_filespec(one
, 0);
2073 diff_populate_filespec(two
, 0);
2074 data
->deleted
= count_lines(one
->data
, one
->size
);
2075 data
->added
= count_lines(two
->data
, two
->size
);
2076 goto free_and_return
;
2078 if (fill_mmfile(&mf1
, one
) < 0 || fill_mmfile(&mf2
, two
) < 0)
2079 die("unable to read files to diff");
2081 if (diff_filespec_is_binary(one
) || diff_filespec_is_binary(two
)) {
2082 data
->is_binary
= 1;
2083 data
->added
= mf2
.size
;
2084 data
->deleted
= mf1
.size
;
2086 /* Crazy xdl interfaces.. */
2090 memset(&xpp
, 0, sizeof(xpp
));
2091 memset(&xecfg
, 0, sizeof(xecfg
));
2092 xpp
.flags
= o
->xdl_opts
;
2093 xdi_diff_outf(&mf1
, &mf2
, diffstat_consume
, diffstat
,
2098 diff_free_filespec_data(one
);
2099 diff_free_filespec_data(two
);
2102 static void builtin_checkdiff(const char *name_a
, const char *name_b
,
2103 const char *attr_path
,
2104 struct diff_filespec
*one
,
2105 struct diff_filespec
*two
,
2106 struct diff_options
*o
)
2109 struct checkdiff_t data
;
2114 memset(&data
, 0, sizeof(data
));
2115 data
.filename
= name_b
? name_b
: name_a
;
2118 data
.ws_rule
= whitespace_rule(attr_path
);
2119 data
.conflict_marker_size
= ll_merge_marker_size(attr_path
);
2121 if (fill_mmfile(&mf1
, one
) < 0 || fill_mmfile(&mf2
, two
) < 0)
2122 die("unable to read files to diff");
2125 * All the other codepaths check both sides, but not checking
2126 * the "old" side here is deliberate. We are checking the newly
2127 * introduced changes, and as long as the "new" side is text, we
2128 * can and should check what it introduces.
2130 if (diff_filespec_is_binary(two
))
2131 goto free_and_return
;
2133 /* Crazy xdl interfaces.. */
2137 memset(&xpp
, 0, sizeof(xpp
));
2138 memset(&xecfg
, 0, sizeof(xecfg
));
2139 xecfg
.ctxlen
= 1; /* at least one context line */
2141 xdi_diff_outf(&mf1
, &mf2
, checkdiff_consume
, &data
,
2144 if (data
.ws_rule
& WS_BLANK_AT_EOF
) {
2145 struct emit_callback ecbdata
;
2148 ecbdata
.ws_rule
= data
.ws_rule
;
2149 check_blank_at_eof(&mf1
, &mf2
, &ecbdata
);
2150 blank_at_eof
= ecbdata
.blank_at_eof_in_preimage
;
2155 err
= whitespace_error_string(WS_BLANK_AT_EOF
);
2156 fprintf(o
->file
, "%s:%d: %s.\n",
2157 data
.filename
, blank_at_eof
, err
);
2158 data
.status
= 1; /* report errors */
2163 diff_free_filespec_data(one
);
2164 diff_free_filespec_data(two
);
2166 DIFF_OPT_SET(o
, CHECK_FAILED
);
2169 struct diff_filespec
*alloc_filespec(const char *path
)
2171 int namelen
= strlen(path
);
2172 struct diff_filespec
*spec
= xmalloc(sizeof(*spec
) + namelen
+ 1);
2174 memset(spec
, 0, sizeof(*spec
));
2175 spec
->path
= (char *)(spec
+ 1);
2176 memcpy(spec
->path
, path
, namelen
+1);
2178 spec
->is_binary
= -1;
2182 void free_filespec(struct diff_filespec
*spec
)
2184 if (!--spec
->count
) {
2185 diff_free_filespec_data(spec
);
2190 void fill_filespec(struct diff_filespec
*spec
, const unsigned char *sha1
,
2191 unsigned short mode
)
2194 spec
->mode
= canon_mode(mode
);
2195 hashcpy(spec
->sha1
, sha1
);
2196 spec
->sha1_valid
= !is_null_sha1(sha1
);
2201 * Given a name and sha1 pair, if the index tells us the file in
2202 * the work tree has that object contents, return true, so that
2203 * prepare_temp_file() does not have to inflate and extract.
2205 static int reuse_worktree_file(const char *name
, const unsigned char *sha1
, int want_file
)
2207 struct cache_entry
*ce
;
2212 * We do not read the cache ourselves here, because the
2213 * benchmark with my previous version that always reads cache
2214 * shows that it makes things worse for diff-tree comparing
2215 * two linux-2.6 kernel trees in an already checked out work
2216 * tree. This is because most diff-tree comparisons deal with
2217 * only a small number of files, while reading the cache is
2218 * expensive for a large project, and its cost outweighs the
2219 * savings we get by not inflating the object to a temporary
2220 * file. Practically, this code only helps when we are used
2221 * by diff-cache --cached, which does read the cache before
2227 /* We want to avoid the working directory if our caller
2228 * doesn't need the data in a normal file, this system
2229 * is rather slow with its stat/open/mmap/close syscalls,
2230 * and the object is contained in a pack file. The pack
2231 * is probably already open and will be faster to obtain
2232 * the data through than the working directory. Loose
2233 * objects however would tend to be slower as they need
2234 * to be individually opened and inflated.
2236 if (!FAST_WORKING_DIRECTORY
&& !want_file
&& has_sha1_pack(sha1
))
2240 pos
= cache_name_pos(name
, len
);
2243 ce
= active_cache
[pos
];
2246 * This is not the sha1 we are looking for, or
2247 * unreusable because it is not a regular file.
2249 if (hashcmp(sha1
, ce
->sha1
) || !S_ISREG(ce
->ce_mode
))
2253 * If ce is marked as "assume unchanged", there is no
2254 * guarantee that work tree matches what we are looking for.
2256 if ((ce
->ce_flags
& CE_VALID
) || ce_skip_worktree(ce
))
2260 * If ce matches the file in the work tree, we can reuse it.
2262 if (ce_uptodate(ce
) ||
2263 (!lstat(name
, &st
) && !ce_match_stat(ce
, &st
, 0)))
2269 static int populate_from_stdin(struct diff_filespec
*s
)
2271 struct strbuf buf
= STRBUF_INIT
;
2274 if (strbuf_read(&buf
, 0, 0) < 0)
2275 return error("error while reading from stdin %s",
2278 s
->should_munmap
= 0;
2279 s
->data
= strbuf_detach(&buf
, &size
);
2285 static int diff_populate_gitlink(struct diff_filespec
*s
, int size_only
)
2288 char *data
= xmalloc(100), *dirty
= "";
2290 /* Are we looking at the work tree? */
2291 if (s
->dirty_submodule
)
2294 len
= snprintf(data
, 100,
2295 "Subproject commit %s%s\n", sha1_to_hex(s
->sha1
), dirty
);
2307 * While doing rename detection and pickaxe operation, we may need to
2308 * grab the data for the blob (or file) for our own in-core comparison.
2309 * diff_filespec has data and size fields for this purpose.
2311 int diff_populate_filespec(struct diff_filespec
*s
, int size_only
)
2314 if (!DIFF_FILE_VALID(s
))
2315 die("internal error: asking to populate invalid file.");
2316 if (S_ISDIR(s
->mode
))
2322 if (size_only
&& 0 < s
->size
)
2325 if (S_ISGITLINK(s
->mode
))
2326 return diff_populate_gitlink(s
, size_only
);
2328 if (!s
->sha1_valid
||
2329 reuse_worktree_file(s
->path
, s
->sha1
, 0)) {
2330 struct strbuf buf
= STRBUF_INIT
;
2334 if (!strcmp(s
->path
, "-"))
2335 return populate_from_stdin(s
);
2337 if (lstat(s
->path
, &st
) < 0) {
2338 if (errno
== ENOENT
) {
2342 s
->data
= (char *)"";
2347 s
->size
= xsize_t(st
.st_size
);
2350 if (S_ISLNK(st
.st_mode
)) {
2351 struct strbuf sb
= STRBUF_INIT
;
2353 if (strbuf_readlink(&sb
, s
->path
, s
->size
))
2356 s
->data
= strbuf_detach(&sb
, NULL
);
2362 fd
= open(s
->path
, O_RDONLY
);
2365 s
->data
= xmmap(NULL
, s
->size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
2367 s
->should_munmap
= 1;
2370 * Convert from working tree format to canonical git format
2372 if (convert_to_git(s
->path
, s
->data
, s
->size
, &buf
, safe_crlf
)) {
2374 munmap(s
->data
, s
->size
);
2375 s
->should_munmap
= 0;
2376 s
->data
= strbuf_detach(&buf
, &size
);
2382 enum object_type type
;
2384 type
= sha1_object_info(s
->sha1
, &s
->size
);
2386 s
->data
= read_sha1_file(s
->sha1
, &type
, &s
->size
);
2393 void diff_free_filespec_blob(struct diff_filespec
*s
)
2397 else if (s
->should_munmap
)
2398 munmap(s
->data
, s
->size
);
2400 if (s
->should_free
|| s
->should_munmap
) {
2401 s
->should_free
= s
->should_munmap
= 0;
2406 void diff_free_filespec_data(struct diff_filespec
*s
)
2408 diff_free_filespec_blob(s
);
2413 static void prep_temp_blob(const char *path
, struct diff_tempfile
*temp
,
2416 const unsigned char *sha1
,
2420 struct strbuf buf
= STRBUF_INIT
;
2421 struct strbuf
template = STRBUF_INIT
;
2422 char *path_dup
= xstrdup(path
);
2423 const char *base
= basename(path_dup
);
2425 /* Generate "XXXXXX_basename.ext" */
2426 strbuf_addstr(&template, "XXXXXX_");
2427 strbuf_addstr(&template, base
);
2429 fd
= git_mkstemps(temp
->tmp_path
, PATH_MAX
, template.buf
,
2432 die_errno("unable to create temp-file");
2433 if (convert_to_working_tree(path
,
2434 (const char *)blob
, (size_t)size
, &buf
)) {
2438 if (write_in_full(fd
, blob
, size
) != size
)
2439 die_errno("unable to write temp-file");
2441 temp
->name
= temp
->tmp_path
;
2442 strcpy(temp
->hex
, sha1_to_hex(sha1
));
2444 sprintf(temp
->mode
, "%06o", mode
);
2445 strbuf_release(&buf
);
2446 strbuf_release(&template);
2450 static struct diff_tempfile
*prepare_temp_file(const char *name
,
2451 struct diff_filespec
*one
)
2453 struct diff_tempfile
*temp
= claim_diff_tempfile();
2455 if (!DIFF_FILE_VALID(one
)) {
2457 /* A '-' entry produces this for file-2, and
2458 * a '+' entry produces this for file-1.
2460 temp
->name
= "/dev/null";
2461 strcpy(temp
->hex
, ".");
2462 strcpy(temp
->mode
, ".");
2466 if (!remove_tempfile_installed
) {
2467 atexit(remove_tempfile
);
2468 sigchain_push_common(remove_tempfile_on_signal
);
2469 remove_tempfile_installed
= 1;
2472 if (!one
->sha1_valid
||
2473 reuse_worktree_file(name
, one
->sha1
, 1)) {
2475 if (lstat(name
, &st
) < 0) {
2476 if (errno
== ENOENT
)
2477 goto not_a_valid_file
;
2478 die_errno("stat(%s)", name
);
2480 if (S_ISLNK(st
.st_mode
)) {
2481 struct strbuf sb
= STRBUF_INIT
;
2482 if (strbuf_readlink(&sb
, name
, st
.st_size
) < 0)
2483 die_errno("readlink(%s)", name
);
2484 prep_temp_blob(name
, temp
, sb
.buf
, sb
.len
,
2486 one
->sha1
: null_sha1
),
2488 one
->mode
: S_IFLNK
));
2489 strbuf_release(&sb
);
2492 /* we can borrow from the file in the work tree */
2494 if (!one
->sha1_valid
)
2495 strcpy(temp
->hex
, sha1_to_hex(null_sha1
));
2497 strcpy(temp
->hex
, sha1_to_hex(one
->sha1
));
2498 /* Even though we may sometimes borrow the
2499 * contents from the work tree, we always want
2500 * one->mode. mode is trustworthy even when
2501 * !(one->sha1_valid), as long as
2502 * DIFF_FILE_VALID(one).
2504 sprintf(temp
->mode
, "%06o", one
->mode
);
2509 if (diff_populate_filespec(one
, 0))
2510 die("cannot read data blob for %s", one
->path
);
2511 prep_temp_blob(name
, temp
, one
->data
, one
->size
,
2512 one
->sha1
, one
->mode
);
2517 /* An external diff command takes:
2519 * diff-cmd name infile1 infile1-sha1 infile1-mode \
2520 * infile2 infile2-sha1 infile2-mode [ rename-to ]
2523 static void run_external_diff(const char *pgm
,
2526 struct diff_filespec
*one
,
2527 struct diff_filespec
*two
,
2528 const char *xfrm_msg
,
2529 int complete_rewrite
)
2531 const char *spawn_arg
[10];
2533 const char **arg
= &spawn_arg
[0];
2536 struct diff_tempfile
*temp_one
, *temp_two
;
2537 const char *othername
= (other
? other
: name
);
2538 temp_one
= prepare_temp_file(name
, one
);
2539 temp_two
= prepare_temp_file(othername
, two
);
2542 *arg
++ = temp_one
->name
;
2543 *arg
++ = temp_one
->hex
;
2544 *arg
++ = temp_one
->mode
;
2545 *arg
++ = temp_two
->name
;
2546 *arg
++ = temp_two
->hex
;
2547 *arg
++ = temp_two
->mode
;
2558 retval
= run_command_v_opt(spawn_arg
, RUN_USING_SHELL
);
2561 fprintf(stderr
, "external diff died, stopping at %s.\n", name
);
2566 static int similarity_index(struct diff_filepair
*p
)
2568 return p
->score
* 100 / MAX_SCORE
;
2571 static void fill_metainfo(struct strbuf
*msg
,
2574 struct diff_filespec
*one
,
2575 struct diff_filespec
*two
,
2576 struct diff_options
*o
,
2577 struct diff_filepair
*p
,
2578 int *must_show_header
,
2581 const char *set
= diff_get_color(use_color
, DIFF_METAINFO
);
2582 const char *reset
= diff_get_color(use_color
, DIFF_RESET
);
2583 struct strbuf
*msgbuf
;
2584 char *line_prefix
= "";
2586 *must_show_header
= 1;
2587 if (o
->output_prefix
) {
2588 msgbuf
= o
->output_prefix(o
, o
->output_prefix_data
);
2589 line_prefix
= msgbuf
->buf
;
2591 strbuf_init(msg
, PATH_MAX
* 2 + 300);
2592 switch (p
->status
) {
2593 case DIFF_STATUS_COPIED
:
2594 strbuf_addf(msg
, "%s%ssimilarity index %d%%",
2595 line_prefix
, set
, similarity_index(p
));
2596 strbuf_addf(msg
, "%s\n%s%scopy from ",
2597 reset
, line_prefix
, set
);
2598 quote_c_style(name
, msg
, NULL
, 0);
2599 strbuf_addf(msg
, "%s\n%s%scopy to ", reset
, line_prefix
, set
);
2600 quote_c_style(other
, msg
, NULL
, 0);
2601 strbuf_addf(msg
, "%s\n", reset
);
2603 case DIFF_STATUS_RENAMED
:
2604 strbuf_addf(msg
, "%s%ssimilarity index %d%%",
2605 line_prefix
, set
, similarity_index(p
));
2606 strbuf_addf(msg
, "%s\n%s%srename from ",
2607 reset
, line_prefix
, set
);
2608 quote_c_style(name
, msg
, NULL
, 0);
2609 strbuf_addf(msg
, "%s\n%s%srename to ",
2610 reset
, line_prefix
, set
);
2611 quote_c_style(other
, msg
, NULL
, 0);
2612 strbuf_addf(msg
, "%s\n", reset
);
2614 case DIFF_STATUS_MODIFIED
:
2616 strbuf_addf(msg
, "%s%sdissimilarity index %d%%%s\n",
2618 set
, similarity_index(p
), reset
);
2623 *must_show_header
= 0;
2625 if (one
&& two
&& hashcmp(one
->sha1
, two
->sha1
)) {
2626 int abbrev
= DIFF_OPT_TST(o
, FULL_INDEX
) ? 40 : DEFAULT_ABBREV
;
2628 if (DIFF_OPT_TST(o
, BINARY
)) {
2630 if ((!fill_mmfile(&mf
, one
) && diff_filespec_is_binary(one
)) ||
2631 (!fill_mmfile(&mf
, two
) && diff_filespec_is_binary(two
)))
2634 strbuf_addf(msg
, "%s%sindex %s..", set
,
2636 find_unique_abbrev(one
->sha1
, abbrev
));
2637 strbuf_addstr(msg
, find_unique_abbrev(two
->sha1
, abbrev
));
2638 if (one
->mode
== two
->mode
)
2639 strbuf_addf(msg
, " %06o", one
->mode
);
2640 strbuf_addf(msg
, "%s\n", reset
);
2644 static void run_diff_cmd(const char *pgm
,
2647 const char *attr_path
,
2648 struct diff_filespec
*one
,
2649 struct diff_filespec
*two
,
2651 struct diff_options
*o
,
2652 struct diff_filepair
*p
)
2654 const char *xfrm_msg
= NULL
;
2655 int complete_rewrite
= (p
->status
== DIFF_STATUS_MODIFIED
) && p
->score
;
2656 int must_show_header
= 0;
2658 if (!DIFF_OPT_TST(o
, ALLOW_EXTERNAL
))
2661 struct userdiff_driver
*drv
= userdiff_find_by_path(attr_path
);
2662 if (drv
&& drv
->external
)
2663 pgm
= drv
->external
;
2668 * don't use colors when the header is intended for an
2669 * external diff driver
2671 fill_metainfo(msg
, name
, other
, one
, two
, o
, p
,
2673 DIFF_OPT_TST(o
, COLOR_DIFF
) && !pgm
);
2674 xfrm_msg
= msg
->len
? msg
->buf
: NULL
;
2678 run_external_diff(pgm
, name
, other
, one
, two
, xfrm_msg
,
2683 builtin_diff(name
, other
? other
: name
,
2684 one
, two
, xfrm_msg
, must_show_header
,
2685 o
, complete_rewrite
);
2687 fprintf(o
->file
, "* Unmerged path %s\n", name
);
2690 static void diff_fill_sha1_info(struct diff_filespec
*one
)
2692 if (DIFF_FILE_VALID(one
)) {
2693 if (!one
->sha1_valid
) {
2695 if (!strcmp(one
->path
, "-")) {
2696 hashcpy(one
->sha1
, null_sha1
);
2699 if (lstat(one
->path
, &st
) < 0)
2700 die_errno("stat '%s'", one
->path
);
2701 if (index_path(one
->sha1
, one
->path
, &st
, 0))
2702 die("cannot hash %s", one
->path
);
2709 static void strip_prefix(int prefix_length
, const char **namep
, const char **otherp
)
2711 /* Strip the prefix but do not molest /dev/null and absolute paths */
2712 if (*namep
&& **namep
!= '/')
2713 *namep
+= prefix_length
;
2714 if (*otherp
&& **otherp
!= '/')
2715 *otherp
+= prefix_length
;
2718 static void run_diff(struct diff_filepair
*p
, struct diff_options
*o
)
2720 const char *pgm
= external_diff();
2722 struct diff_filespec
*one
= p
->one
;
2723 struct diff_filespec
*two
= p
->two
;
2726 const char *attr_path
;
2728 name
= p
->one
->path
;
2729 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
2731 if (o
->prefix_length
)
2732 strip_prefix(o
->prefix_length
, &name
, &other
);
2734 if (DIFF_PAIR_UNMERGED(p
)) {
2735 run_diff_cmd(pgm
, name
, NULL
, attr_path
,
2736 NULL
, NULL
, NULL
, o
, p
);
2740 diff_fill_sha1_info(one
);
2741 diff_fill_sha1_info(two
);
2744 DIFF_FILE_VALID(one
) && DIFF_FILE_VALID(two
) &&
2745 (S_IFMT
& one
->mode
) != (S_IFMT
& two
->mode
)) {
2747 * a filepair that changes between file and symlink
2748 * needs to be split into deletion and creation.
2750 struct diff_filespec
*null
= alloc_filespec(two
->path
);
2751 run_diff_cmd(NULL
, name
, other
, attr_path
,
2752 one
, null
, &msg
, o
, p
);
2754 strbuf_release(&msg
);
2756 null
= alloc_filespec(one
->path
);
2757 run_diff_cmd(NULL
, name
, other
, attr_path
,
2758 null
, two
, &msg
, o
, p
);
2762 run_diff_cmd(pgm
, name
, other
, attr_path
,
2763 one
, two
, &msg
, o
, p
);
2765 strbuf_release(&msg
);
2768 static void run_diffstat(struct diff_filepair
*p
, struct diff_options
*o
,
2769 struct diffstat_t
*diffstat
)
2773 int complete_rewrite
= 0;
2775 if (DIFF_PAIR_UNMERGED(p
)) {
2777 builtin_diffstat(p
->one
->path
, NULL
, NULL
, NULL
, diffstat
, o
, 0);
2781 name
= p
->one
->path
;
2782 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
2784 if (o
->prefix_length
)
2785 strip_prefix(o
->prefix_length
, &name
, &other
);
2787 diff_fill_sha1_info(p
->one
);
2788 diff_fill_sha1_info(p
->two
);
2790 if (p
->status
== DIFF_STATUS_MODIFIED
&& p
->score
)
2791 complete_rewrite
= 1;
2792 builtin_diffstat(name
, other
, p
->one
, p
->two
, diffstat
, o
, complete_rewrite
);
2795 static void run_checkdiff(struct diff_filepair
*p
, struct diff_options
*o
)
2799 const char *attr_path
;
2801 if (DIFF_PAIR_UNMERGED(p
)) {
2806 name
= p
->one
->path
;
2807 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
2808 attr_path
= other
? other
: name
;
2810 if (o
->prefix_length
)
2811 strip_prefix(o
->prefix_length
, &name
, &other
);
2813 diff_fill_sha1_info(p
->one
);
2814 diff_fill_sha1_info(p
->two
);
2816 builtin_checkdiff(name
, other
, attr_path
, p
->one
, p
->two
, o
);
2819 void diff_setup(struct diff_options
*options
)
2821 memset(options
, 0, sizeof(*options
));
2822 memset(&diff_queued_diff
, 0, sizeof(diff_queued_diff
));
2824 options
->file
= stdout
;
2826 options
->line_termination
= '\n';
2827 options
->break_opt
= -1;
2828 options
->rename_limit
= -1;
2829 options
->dirstat_percent
= 3;
2830 options
->context
= 3;
2832 options
->change
= diff_change
;
2833 options
->add_remove
= diff_addremove
;
2834 if (diff_use_color_default
> 0)
2835 DIFF_OPT_SET(options
, COLOR_DIFF
);
2836 options
->detect_rename
= diff_detect_rename_default
;
2838 if (diff_no_prefix
) {
2839 options
->a_prefix
= options
->b_prefix
= "";
2840 } else if (!diff_mnemonic_prefix
) {
2841 options
->a_prefix
= "a/";
2842 options
->b_prefix
= "b/";
2846 int diff_setup_done(struct diff_options
*options
)
2850 if (options
->output_format
& DIFF_FORMAT_NAME
)
2852 if (options
->output_format
& DIFF_FORMAT_NAME_STATUS
)
2854 if (options
->output_format
& DIFF_FORMAT_CHECKDIFF
)
2856 if (options
->output_format
& DIFF_FORMAT_NO_OUTPUT
)
2859 die("--name-only, --name-status, --check and -s are mutually exclusive");
2862 * Most of the time we can say "there are changes"
2863 * only by checking if there are changed paths, but
2864 * --ignore-whitespace* options force us to look
2868 if (DIFF_XDL_TST(options
, IGNORE_WHITESPACE
) ||
2869 DIFF_XDL_TST(options
, IGNORE_WHITESPACE_CHANGE
) ||
2870 DIFF_XDL_TST(options
, IGNORE_WHITESPACE_AT_EOL
))
2871 DIFF_OPT_SET(options
, DIFF_FROM_CONTENTS
);
2873 DIFF_OPT_CLR(options
, DIFF_FROM_CONTENTS
);
2875 if (DIFF_OPT_TST(options
, FIND_COPIES_HARDER
))
2876 options
->detect_rename
= DIFF_DETECT_COPY
;
2878 if (!DIFF_OPT_TST(options
, RELATIVE_NAME
))
2879 options
->prefix
= NULL
;
2880 if (options
->prefix
)
2881 options
->prefix_length
= strlen(options
->prefix
);
2883 options
->prefix_length
= 0;
2885 if (options
->output_format
& (DIFF_FORMAT_NAME
|
2886 DIFF_FORMAT_NAME_STATUS
|
2887 DIFF_FORMAT_CHECKDIFF
|
2888 DIFF_FORMAT_NO_OUTPUT
))
2889 options
->output_format
&= ~(DIFF_FORMAT_RAW
|
2890 DIFF_FORMAT_NUMSTAT
|
2891 DIFF_FORMAT_DIFFSTAT
|
2892 DIFF_FORMAT_SHORTSTAT
|
2893 DIFF_FORMAT_DIRSTAT
|
2894 DIFF_FORMAT_SUMMARY
|
2898 * These cases always need recursive; we do not drop caller-supplied
2899 * recursive bits for other formats here.
2901 if (options
->output_format
& (DIFF_FORMAT_PATCH
|
2902 DIFF_FORMAT_NUMSTAT
|
2903 DIFF_FORMAT_DIFFSTAT
|
2904 DIFF_FORMAT_SHORTSTAT
|
2905 DIFF_FORMAT_DIRSTAT
|
2906 DIFF_FORMAT_SUMMARY
|
2907 DIFF_FORMAT_CHECKDIFF
))
2908 DIFF_OPT_SET(options
, RECURSIVE
);
2910 * Also pickaxe would not work very well if you do not say recursive
2912 if (options
->pickaxe
)
2913 DIFF_OPT_SET(options
, RECURSIVE
);
2915 * When patches are generated, submodules diffed against the work tree
2916 * must be checked for dirtiness too so it can be shown in the output
2918 if (options
->output_format
& DIFF_FORMAT_PATCH
)
2919 DIFF_OPT_SET(options
, DIRTY_SUBMODULES
);
2921 if (options
->detect_rename
&& options
->rename_limit
< 0)
2922 options
->rename_limit
= diff_rename_limit_default
;
2923 if (options
->setup
& DIFF_SETUP_USE_CACHE
) {
2925 /* read-cache does not die even when it fails
2926 * so it is safe for us to do this here. Also
2927 * it does not smudge active_cache or active_nr
2928 * when it fails, so we do not have to worry about
2929 * cleaning it up ourselves either.
2933 if (options
->abbrev
<= 0 || 40 < options
->abbrev
)
2934 options
->abbrev
= 40; /* full */
2937 * It does not make sense to show the first hit we happened
2938 * to have found. It does not make sense not to return with
2939 * exit code in such a case either.
2941 if (DIFF_OPT_TST(options
, QUICK
)) {
2942 options
->output_format
= DIFF_FORMAT_NO_OUTPUT
;
2943 DIFF_OPT_SET(options
, EXIT_WITH_STATUS
);
2949 static int opt_arg(const char *arg
, int arg_short
, const char *arg_long
, int *val
)
2959 if (c
== arg_short
) {
2963 if (val
&& isdigit(c
)) {
2965 int n
= strtoul(arg
, &end
, 10);
2976 eq
= strchr(arg
, '=');
2981 if (!len
|| strncmp(arg
, arg_long
, len
))
2986 if (!isdigit(*++eq
))
2988 n
= strtoul(eq
, &end
, 10);
2996 static int diff_scoreopt_parse(const char *opt
);
2998 int diff_opt_parse(struct diff_options
*options
, const char **av
, int ac
)
3000 const char *arg
= av
[0];
3002 /* Output format options */
3003 if (!strcmp(arg
, "-p") || !strcmp(arg
, "-u") || !strcmp(arg
, "--patch"))
3004 options
->output_format
|= DIFF_FORMAT_PATCH
;
3005 else if (opt_arg(arg
, 'U', "unified", &options
->context
))
3006 options
->output_format
|= DIFF_FORMAT_PATCH
;
3007 else if (!strcmp(arg
, "--raw"))
3008 options
->output_format
|= DIFF_FORMAT_RAW
;
3009 else if (!strcmp(arg
, "--patch-with-raw"))
3010 options
->output_format
|= DIFF_FORMAT_PATCH
| DIFF_FORMAT_RAW
;
3011 else if (!strcmp(arg
, "--numstat"))
3012 options
->output_format
|= DIFF_FORMAT_NUMSTAT
;
3013 else if (!strcmp(arg
, "--shortstat"))
3014 options
->output_format
|= DIFF_FORMAT_SHORTSTAT
;
3015 else if (opt_arg(arg
, 'X', "dirstat", &options
->dirstat_percent
))
3016 options
->output_format
|= DIFF_FORMAT_DIRSTAT
;
3017 else if (!strcmp(arg
, "--cumulative")) {
3018 options
->output_format
|= DIFF_FORMAT_DIRSTAT
;
3019 DIFF_OPT_SET(options
, DIRSTAT_CUMULATIVE
);
3020 } else if (opt_arg(arg
, 0, "dirstat-by-file",
3021 &options
->dirstat_percent
)) {
3022 options
->output_format
|= DIFF_FORMAT_DIRSTAT
;
3023 DIFF_OPT_SET(options
, DIRSTAT_BY_FILE
);
3025 else if (!strcmp(arg
, "--check"))
3026 options
->output_format
|= DIFF_FORMAT_CHECKDIFF
;
3027 else if (!strcmp(arg
, "--summary"))
3028 options
->output_format
|= DIFF_FORMAT_SUMMARY
;
3029 else if (!strcmp(arg
, "--patch-with-stat"))
3030 options
->output_format
|= DIFF_FORMAT_PATCH
| DIFF_FORMAT_DIFFSTAT
;
3031 else if (!strcmp(arg
, "--name-only"))
3032 options
->output_format
|= DIFF_FORMAT_NAME
;
3033 else if (!strcmp(arg
, "--name-status"))
3034 options
->output_format
|= DIFF_FORMAT_NAME_STATUS
;
3035 else if (!strcmp(arg
, "-s"))
3036 options
->output_format
|= DIFF_FORMAT_NO_OUTPUT
;
3037 else if (!prefixcmp(arg
, "--stat")) {
3039 int width
= options
->stat_width
;
3040 int name_width
= options
->stat_name_width
;
3046 if (!prefixcmp(arg
, "-width="))
3047 width
= strtoul(arg
+ 7, &end
, 10);
3048 else if (!prefixcmp(arg
, "-name-width="))
3049 name_width
= strtoul(arg
+ 12, &end
, 10);
3052 width
= strtoul(arg
+1, &end
, 10);
3054 name_width
= strtoul(end
+1, &end
, 10);
3057 /* Important! This checks all the error cases! */
3060 options
->output_format
|= DIFF_FORMAT_DIFFSTAT
;
3061 options
->stat_name_width
= name_width
;
3062 options
->stat_width
= width
;
3065 /* renames options */
3066 else if (!prefixcmp(arg
, "-B")) {
3067 if ((options
->break_opt
= diff_scoreopt_parse(arg
)) == -1)
3070 else if (!prefixcmp(arg
, "-M")) {
3071 if ((options
->rename_score
= diff_scoreopt_parse(arg
)) == -1)
3073 options
->detect_rename
= DIFF_DETECT_RENAME
;
3075 else if (!prefixcmp(arg
, "-C")) {
3076 if (options
->detect_rename
== DIFF_DETECT_COPY
)
3077 DIFF_OPT_SET(options
, FIND_COPIES_HARDER
);
3078 if ((options
->rename_score
= diff_scoreopt_parse(arg
)) == -1)
3080 options
->detect_rename
= DIFF_DETECT_COPY
;
3082 else if (!strcmp(arg
, "--no-renames"))
3083 options
->detect_rename
= 0;
3084 else if (!strcmp(arg
, "--relative"))
3085 DIFF_OPT_SET(options
, RELATIVE_NAME
);
3086 else if (!prefixcmp(arg
, "--relative=")) {
3087 DIFF_OPT_SET(options
, RELATIVE_NAME
);
3088 options
->prefix
= arg
+ 11;
3092 else if (!strcmp(arg
, "-w") || !strcmp(arg
, "--ignore-all-space"))
3093 DIFF_XDL_SET(options
, IGNORE_WHITESPACE
);
3094 else if (!strcmp(arg
, "-b") || !strcmp(arg
, "--ignore-space-change"))
3095 DIFF_XDL_SET(options
, IGNORE_WHITESPACE_CHANGE
);
3096 else if (!strcmp(arg
, "--ignore-space-at-eol"))
3097 DIFF_XDL_SET(options
, IGNORE_WHITESPACE_AT_EOL
);
3098 else if (!strcmp(arg
, "--patience"))
3099 DIFF_XDL_SET(options
, PATIENCE_DIFF
);
3102 else if (!strcmp(arg
, "--binary")) {
3103 options
->output_format
|= DIFF_FORMAT_PATCH
;
3104 DIFF_OPT_SET(options
, BINARY
);
3106 else if (!strcmp(arg
, "--full-index"))
3107 DIFF_OPT_SET(options
, FULL_INDEX
);
3108 else if (!strcmp(arg
, "-a") || !strcmp(arg
, "--text"))
3109 DIFF_OPT_SET(options
, TEXT
);
3110 else if (!strcmp(arg
, "-R"))
3111 DIFF_OPT_SET(options
, REVERSE_DIFF
);
3112 else if (!strcmp(arg
, "--find-copies-harder"))
3113 DIFF_OPT_SET(options
, FIND_COPIES_HARDER
);
3114 else if (!strcmp(arg
, "--follow"))
3115 DIFF_OPT_SET(options
, FOLLOW_RENAMES
);
3116 else if (!strcmp(arg
, "--color"))
3117 DIFF_OPT_SET(options
, COLOR_DIFF
);
3118 else if (!prefixcmp(arg
, "--color=")) {
3119 int value
= git_config_colorbool(NULL
, arg
+8, -1);
3121 DIFF_OPT_CLR(options
, COLOR_DIFF
);
3123 DIFF_OPT_SET(options
, COLOR_DIFF
);
3125 return error("option `color' expects \"always\", \"auto\", or \"never\"");
3127 else if (!strcmp(arg
, "--no-color"))
3128 DIFF_OPT_CLR(options
, COLOR_DIFF
);
3129 else if (!strcmp(arg
, "--color-words")) {
3130 DIFF_OPT_SET(options
, COLOR_DIFF
);
3131 options
->word_diff
= DIFF_WORDS_COLOR
;
3133 else if (!prefixcmp(arg
, "--color-words=")) {
3134 DIFF_OPT_SET(options
, COLOR_DIFF
);
3135 options
->word_diff
= DIFF_WORDS_COLOR
;
3136 options
->word_regex
= arg
+ 14;
3138 else if (!strcmp(arg
, "--word-diff")) {
3139 if (options
->word_diff
== DIFF_WORDS_NONE
)
3140 options
->word_diff
= DIFF_WORDS_PLAIN
;
3142 else if (!prefixcmp(arg
, "--word-diff=")) {
3143 const char *type
= arg
+ 12;
3144 if (!strcmp(type
, "plain"))
3145 options
->word_diff
= DIFF_WORDS_PLAIN
;
3146 else if (!strcmp(type
, "color")) {
3147 DIFF_OPT_SET(options
, COLOR_DIFF
);
3148 options
->word_diff
= DIFF_WORDS_COLOR
;
3150 else if (!strcmp(type
, "porcelain"))
3151 options
->word_diff
= DIFF_WORDS_PORCELAIN
;
3152 else if (!strcmp(type
, "none"))
3153 options
->word_diff
= DIFF_WORDS_NONE
;
3155 die("bad --word-diff argument: %s", type
);
3157 else if (!prefixcmp(arg
, "--word-diff-regex=")) {
3158 if (options
->word_diff
== DIFF_WORDS_NONE
)
3159 options
->word_diff
= DIFF_WORDS_PLAIN
;
3160 options
->word_regex
= arg
+ 18;
3162 else if (!strcmp(arg
, "--exit-code"))
3163 DIFF_OPT_SET(options
, EXIT_WITH_STATUS
);
3164 else if (!strcmp(arg
, "--quiet"))
3165 DIFF_OPT_SET(options
, QUICK
);
3166 else if (!strcmp(arg
, "--ext-diff"))
3167 DIFF_OPT_SET(options
, ALLOW_EXTERNAL
);
3168 else if (!strcmp(arg
, "--no-ext-diff"))
3169 DIFF_OPT_CLR(options
, ALLOW_EXTERNAL
);
3170 else if (!strcmp(arg
, "--textconv"))
3171 DIFF_OPT_SET(options
, ALLOW_TEXTCONV
);
3172 else if (!strcmp(arg
, "--no-textconv"))
3173 DIFF_OPT_CLR(options
, ALLOW_TEXTCONV
);
3174 else if (!strcmp(arg
, "--ignore-submodules"))
3175 DIFF_OPT_SET(options
, IGNORE_SUBMODULES
);
3176 else if (!strcmp(arg
, "--submodule"))
3177 DIFF_OPT_SET(options
, SUBMODULE_LOG
);
3178 else if (!prefixcmp(arg
, "--submodule=")) {
3179 if (!strcmp(arg
+ 12, "log"))
3180 DIFF_OPT_SET(options
, SUBMODULE_LOG
);
3184 else if (!strcmp(arg
, "-z"))
3185 options
->line_termination
= 0;
3186 else if (!prefixcmp(arg
, "-l"))
3187 options
->rename_limit
= strtoul(arg
+2, NULL
, 10);
3188 else if (!prefixcmp(arg
, "-S"))
3189 options
->pickaxe
= arg
+ 2;
3190 else if (!strcmp(arg
, "--pickaxe-all"))
3191 options
->pickaxe_opts
= DIFF_PICKAXE_ALL
;
3192 else if (!strcmp(arg
, "--pickaxe-regex"))
3193 options
->pickaxe_opts
= DIFF_PICKAXE_REGEX
;
3194 else if (!prefixcmp(arg
, "-O"))
3195 options
->orderfile
= arg
+ 2;
3196 else if (!prefixcmp(arg
, "--diff-filter="))
3197 options
->filter
= arg
+ 14;
3198 else if (!strcmp(arg
, "--abbrev"))
3199 options
->abbrev
= DEFAULT_ABBREV
;
3200 else if (!prefixcmp(arg
, "--abbrev=")) {
3201 options
->abbrev
= strtoul(arg
+ 9, NULL
, 10);
3202 if (options
->abbrev
< MINIMUM_ABBREV
)
3203 options
->abbrev
= MINIMUM_ABBREV
;
3204 else if (40 < options
->abbrev
)
3205 options
->abbrev
= 40;
3207 else if (!prefixcmp(arg
, "--src-prefix="))
3208 options
->a_prefix
= arg
+ 13;
3209 else if (!prefixcmp(arg
, "--dst-prefix="))
3210 options
->b_prefix
= arg
+ 13;
3211 else if (!strcmp(arg
, "--no-prefix"))
3212 options
->a_prefix
= options
->b_prefix
= "";
3213 else if (opt_arg(arg
, '\0', "inter-hunk-context",
3214 &options
->interhunkcontext
))
3216 else if (!prefixcmp(arg
, "--output=")) {
3217 options
->file
= fopen(arg
+ strlen("--output="), "w");
3219 die_errno("Could not open '%s'", arg
+ strlen("--output="));
3220 options
->close_file
= 1;
3226 static int parse_num(const char **cp_p
)
3228 unsigned long num
, scale
;
3230 const char *cp
= *cp_p
;
3237 if ( !dot
&& ch
== '.' ) {
3240 } else if ( ch
== '%' ) {
3241 scale
= dot
? scale
*100 : 100;
3242 cp
++; /* % is always at the end */
3244 } else if ( ch
>= '0' && ch
<= '9' ) {
3245 if ( scale
< 100000 ) {
3247 num
= (num
*10) + (ch
-'0');
3256 /* user says num divided by scale and we say internally that
3257 * is MAX_SCORE * num / scale.
3259 return (int)((num
>= scale
) ? MAX_SCORE
: (MAX_SCORE
* num
/ scale
));
3262 static int diff_scoreopt_parse(const char *opt
)
3264 int opt1
, opt2
, cmd
;
3269 if (cmd
!= 'M' && cmd
!= 'C' && cmd
!= 'B')
3270 return -1; /* that is not a -M, -C nor -B option */
3272 opt1
= parse_num(&opt
);
3278 else if (*opt
!= '/')
3279 return -1; /* we expect -B80/99 or -B80 */
3282 opt2
= parse_num(&opt
);
3287 return opt1
| (opt2
<< 16);
3290 struct diff_queue_struct diff_queued_diff
;
3292 void diff_q(struct diff_queue_struct
*queue
, struct diff_filepair
*dp
)
3294 if (queue
->alloc
<= queue
->nr
) {
3295 queue
->alloc
= alloc_nr(queue
->alloc
);
3296 queue
->queue
= xrealloc(queue
->queue
,
3297 sizeof(dp
) * queue
->alloc
);
3299 queue
->queue
[queue
->nr
++] = dp
;
3302 struct diff_filepair
*diff_queue(struct diff_queue_struct
*queue
,
3303 struct diff_filespec
*one
,
3304 struct diff_filespec
*two
)
3306 struct diff_filepair
*dp
= xcalloc(1, sizeof(*dp
));
3314 void diff_free_filepair(struct diff_filepair
*p
)
3316 free_filespec(p
->one
);
3317 free_filespec(p
->two
);
3321 /* This is different from find_unique_abbrev() in that
3322 * it stuffs the result with dots for alignment.
3324 const char *diff_unique_abbrev(const unsigned char *sha1
, int len
)
3329 return sha1_to_hex(sha1
);
3331 abbrev
= find_unique_abbrev(sha1
, len
);
3332 abblen
= strlen(abbrev
);
3334 static char hex
[41];
3335 if (len
< abblen
&& abblen
<= len
+ 2)
3336 sprintf(hex
, "%s%.*s", abbrev
, len
+3-abblen
, "..");
3338 sprintf(hex
, "%s...", abbrev
);
3341 return sha1_to_hex(sha1
);
3344 static void diff_flush_raw(struct diff_filepair
*p
, struct diff_options
*opt
)
3346 int line_termination
= opt
->line_termination
;
3347 int inter_name_termination
= line_termination
? '\t' : '\0';
3348 if (opt
->output_prefix
) {
3349 struct strbuf
*msg
= NULL
;
3350 msg
= opt
->output_prefix(opt
, opt
->output_prefix_data
);
3351 fprintf(opt
->file
, "%s", msg
->buf
);
3354 if (!(opt
->output_format
& DIFF_FORMAT_NAME_STATUS
)) {
3355 fprintf(opt
->file
, ":%06o %06o %s ", p
->one
->mode
, p
->two
->mode
,
3356 diff_unique_abbrev(p
->one
->sha1
, opt
->abbrev
));
3357 fprintf(opt
->file
, "%s ", diff_unique_abbrev(p
->two
->sha1
, opt
->abbrev
));
3360 fprintf(opt
->file
, "%c%03d%c", p
->status
, similarity_index(p
),
3361 inter_name_termination
);
3363 fprintf(opt
->file
, "%c%c", p
->status
, inter_name_termination
);
3366 if (p
->status
== DIFF_STATUS_COPIED
||
3367 p
->status
== DIFF_STATUS_RENAMED
) {
3368 const char *name_a
, *name_b
;
3369 name_a
= p
->one
->path
;
3370 name_b
= p
->two
->path
;
3371 strip_prefix(opt
->prefix_length
, &name_a
, &name_b
);
3372 write_name_quoted(name_a
, opt
->file
, inter_name_termination
);
3373 write_name_quoted(name_b
, opt
->file
, line_termination
);
3375 const char *name_a
, *name_b
;
3376 name_a
= p
->one
->mode
? p
->one
->path
: p
->two
->path
;
3378 strip_prefix(opt
->prefix_length
, &name_a
, &name_b
);
3379 write_name_quoted(name_a
, opt
->file
, line_termination
);
3383 int diff_unmodified_pair(struct diff_filepair
*p
)
3385 /* This function is written stricter than necessary to support
3386 * the currently implemented transformers, but the idea is to
3387 * let transformers to produce diff_filepairs any way they want,
3388 * and filter and clean them up here before producing the output.
3390 struct diff_filespec
*one
= p
->one
, *two
= p
->two
;
3392 if (DIFF_PAIR_UNMERGED(p
))
3393 return 0; /* unmerged is interesting */
3395 /* deletion, addition, mode or type change
3396 * and rename are all interesting.
3398 if (DIFF_FILE_VALID(one
) != DIFF_FILE_VALID(two
) ||
3399 DIFF_PAIR_MODE_CHANGED(p
) ||
3400 strcmp(one
->path
, two
->path
))
3403 /* both are valid and point at the same path. that is, we are
3404 * dealing with a change.
3406 if (one
->sha1_valid
&& two
->sha1_valid
&&
3407 !hashcmp(one
->sha1
, two
->sha1
) &&
3408 !one
->dirty_submodule
&& !two
->dirty_submodule
)
3409 return 1; /* no change */
3410 if (!one
->sha1_valid
&& !two
->sha1_valid
)
3411 return 1; /* both look at the same file on the filesystem. */
3415 static void diff_flush_patch(struct diff_filepair
*p
, struct diff_options
*o
)
3417 if (diff_unmodified_pair(p
))
3420 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
3421 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
3422 return; /* no tree diffs in patch format */
3427 static void diff_flush_stat(struct diff_filepair
*p
, struct diff_options
*o
,
3428 struct diffstat_t
*diffstat
)
3430 if (diff_unmodified_pair(p
))
3433 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
3434 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
3435 return; /* no tree diffs in patch format */
3437 run_diffstat(p
, o
, diffstat
);
3440 static void diff_flush_checkdiff(struct diff_filepair
*p
,
3441 struct diff_options
*o
)
3443 if (diff_unmodified_pair(p
))
3446 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
3447 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
3448 return; /* no tree diffs in patch format */
3450 run_checkdiff(p
, o
);
3453 int diff_queue_is_empty(void)
3455 struct diff_queue_struct
*q
= &diff_queued_diff
;
3457 for (i
= 0; i
< q
->nr
; i
++)
3458 if (!diff_unmodified_pair(q
->queue
[i
]))
3464 void diff_debug_filespec(struct diff_filespec
*s
, int x
, const char *one
)
3466 fprintf(stderr
, "queue[%d] %s (%s) %s %06o %s\n",
3469 DIFF_FILE_VALID(s
) ? "valid" : "invalid",
3471 s
->sha1_valid
? sha1_to_hex(s
->sha1
) : "");
3472 fprintf(stderr
, "queue[%d] %s size %lu flags %d\n",
3474 s
->size
, s
->xfrm_flags
);
3477 void diff_debug_filepair(const struct diff_filepair
*p
, int i
)
3479 diff_debug_filespec(p
->one
, i
, "one");
3480 diff_debug_filespec(p
->two
, i
, "two");
3481 fprintf(stderr
, "score %d, status %c rename_used %d broken %d\n",
3482 p
->score
, p
->status
? p
->status
: '?',
3483 p
->one
->rename_used
, p
->broken_pair
);
3486 void diff_debug_queue(const char *msg
, struct diff_queue_struct
*q
)
3490 fprintf(stderr
, "%s\n", msg
);
3491 fprintf(stderr
, "q->nr = %d\n", q
->nr
);
3492 for (i
= 0; i
< q
->nr
; i
++) {
3493 struct diff_filepair
*p
= q
->queue
[i
];
3494 diff_debug_filepair(p
, i
);
3499 static void diff_resolve_rename_copy(void)
3502 struct diff_filepair
*p
;
3503 struct diff_queue_struct
*q
= &diff_queued_diff
;
3505 diff_debug_queue("resolve-rename-copy", q
);
3507 for (i
= 0; i
< q
->nr
; i
++) {
3509 p
->status
= 0; /* undecided */
3510 if (DIFF_PAIR_UNMERGED(p
))
3511 p
->status
= DIFF_STATUS_UNMERGED
;
3512 else if (!DIFF_FILE_VALID(p
->one
))
3513 p
->status
= DIFF_STATUS_ADDED
;
3514 else if (!DIFF_FILE_VALID(p
->two
))
3515 p
->status
= DIFF_STATUS_DELETED
;
3516 else if (DIFF_PAIR_TYPE_CHANGED(p
))
3517 p
->status
= DIFF_STATUS_TYPE_CHANGED
;
3519 /* from this point on, we are dealing with a pair
3520 * whose both sides are valid and of the same type, i.e.
3521 * either in-place edit or rename/copy edit.
3523 else if (DIFF_PAIR_RENAME(p
)) {
3525 * A rename might have re-connected a broken
3526 * pair up, causing the pathnames to be the
3527 * same again. If so, that's not a rename at
3528 * all, just a modification..
3530 * Otherwise, see if this source was used for
3531 * multiple renames, in which case we decrement
3532 * the count, and call it a copy.
3534 if (!strcmp(p
->one
->path
, p
->two
->path
))
3535 p
->status
= DIFF_STATUS_MODIFIED
;
3536 else if (--p
->one
->rename_used
> 0)
3537 p
->status
= DIFF_STATUS_COPIED
;
3539 p
->status
= DIFF_STATUS_RENAMED
;
3541 else if (hashcmp(p
->one
->sha1
, p
->two
->sha1
) ||
3542 p
->one
->mode
!= p
->two
->mode
||
3543 p
->one
->dirty_submodule
||
3544 p
->two
->dirty_submodule
||
3545 is_null_sha1(p
->one
->sha1
))
3546 p
->status
= DIFF_STATUS_MODIFIED
;
3548 /* This is a "no-change" entry and should not
3549 * happen anymore, but prepare for broken callers.
3551 error("feeding unmodified %s to diffcore",
3553 p
->status
= DIFF_STATUS_UNKNOWN
;
3556 diff_debug_queue("resolve-rename-copy done", q
);
3559 static int check_pair_status(struct diff_filepair
*p
)
3561 switch (p
->status
) {
3562 case DIFF_STATUS_UNKNOWN
:
3565 die("internal error in diff-resolve-rename-copy");
3571 static void flush_one_pair(struct diff_filepair
*p
, struct diff_options
*opt
)
3573 int fmt
= opt
->output_format
;
3575 if (fmt
& DIFF_FORMAT_CHECKDIFF
)
3576 diff_flush_checkdiff(p
, opt
);
3577 else if (fmt
& (DIFF_FORMAT_RAW
| DIFF_FORMAT_NAME_STATUS
))
3578 diff_flush_raw(p
, opt
);
3579 else if (fmt
& DIFF_FORMAT_NAME
) {
3580 const char *name_a
, *name_b
;
3581 name_a
= p
->two
->path
;
3583 strip_prefix(opt
->prefix_length
, &name_a
, &name_b
);
3584 write_name_quoted(name_a
, opt
->file
, opt
->line_termination
);
3588 static void show_file_mode_name(FILE *file
, const char *newdelete
, struct diff_filespec
*fs
)
3591 fprintf(file
, " %s mode %06o ", newdelete
, fs
->mode
);
3593 fprintf(file
, " %s ", newdelete
);
3594 write_name_quoted(fs
->path
, file
, '\n');
3598 static void show_mode_change(FILE *file
, struct diff_filepair
*p
, int show_name
,
3599 const char *line_prefix
)
3601 if (p
->one
->mode
&& p
->two
->mode
&& p
->one
->mode
!= p
->two
->mode
) {
3602 fprintf(file
, "%s mode change %06o => %06o%c", line_prefix
, p
->one
->mode
,
3603 p
->two
->mode
, show_name
? ' ' : '\n');
3605 write_name_quoted(p
->two
->path
, file
, '\n');
3610 static void show_rename_copy(FILE *file
, const char *renamecopy
, struct diff_filepair
*p
,
3611 const char *line_prefix
)
3613 char *names
= pprint_rename(p
->one
->path
, p
->two
->path
);
3615 fprintf(file
, " %s %s (%d%%)\n", renamecopy
, names
, similarity_index(p
));
3617 show_mode_change(file
, p
, 0, line_prefix
);
3620 static void diff_summary(struct diff_options
*opt
, struct diff_filepair
*p
)
3622 FILE *file
= opt
->file
;
3623 char *line_prefix
= "";
3625 if (opt
->output_prefix
) {
3626 struct strbuf
*buf
= opt
->output_prefix(opt
, opt
->output_prefix_data
);
3627 line_prefix
= buf
->buf
;
3631 case DIFF_STATUS_DELETED
:
3632 fputs(line_prefix
, file
);
3633 show_file_mode_name(file
, "delete", p
->one
);
3635 case DIFF_STATUS_ADDED
:
3636 fputs(line_prefix
, file
);
3637 show_file_mode_name(file
, "create", p
->two
);
3639 case DIFF_STATUS_COPIED
:
3640 fputs(line_prefix
, file
);
3641 show_rename_copy(file
, "copy", p
, line_prefix
);
3643 case DIFF_STATUS_RENAMED
:
3644 fputs(line_prefix
, file
);
3645 show_rename_copy(file
, "rename", p
, line_prefix
);
3649 fprintf(file
, "%s rewrite ", line_prefix
);
3650 write_name_quoted(p
->two
->path
, file
, ' ');
3651 fprintf(file
, "(%d%%)\n", similarity_index(p
));
3653 show_mode_change(file
, p
, !p
->score
, line_prefix
);
3663 static int remove_space(char *line
, int len
)
3669 for (i
= 0; i
< len
; i
++)
3670 if (!isspace((c
= line
[i
])))
3676 static void patch_id_consume(void *priv
, char *line
, unsigned long len
)
3678 struct patch_id_t
*data
= priv
;
3681 /* Ignore line numbers when computing the SHA1 of the patch */
3682 if (!prefixcmp(line
, "@@ -"))
3685 new_len
= remove_space(line
, len
);
3687 git_SHA1_Update(data
->ctx
, line
, new_len
);
3688 data
->patchlen
+= new_len
;
3691 /* returns 0 upon success, and writes result into sha1 */
3692 static int diff_get_patch_id(struct diff_options
*options
, unsigned char *sha1
)
3694 struct diff_queue_struct
*q
= &diff_queued_diff
;
3697 struct patch_id_t data
;
3698 char buffer
[PATH_MAX
* 4 + 20];
3700 git_SHA1_Init(&ctx
);
3701 memset(&data
, 0, sizeof(struct patch_id_t
));
3704 for (i
= 0; i
< q
->nr
; i
++) {
3708 struct diff_filepair
*p
= q
->queue
[i
];
3711 memset(&xpp
, 0, sizeof(xpp
));
3712 memset(&xecfg
, 0, sizeof(xecfg
));
3714 return error("internal diff status error");
3715 if (p
->status
== DIFF_STATUS_UNKNOWN
)
3717 if (diff_unmodified_pair(p
))
3719 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
3720 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
3722 if (DIFF_PAIR_UNMERGED(p
))
3725 diff_fill_sha1_info(p
->one
);
3726 diff_fill_sha1_info(p
->two
);
3727 if (fill_mmfile(&mf1
, p
->one
) < 0 ||
3728 fill_mmfile(&mf2
, p
->two
) < 0)
3729 return error("unable to read files to diff");
3731 len1
= remove_space(p
->one
->path
, strlen(p
->one
->path
));
3732 len2
= remove_space(p
->two
->path
, strlen(p
->two
->path
));
3733 if (p
->one
->mode
== 0)
3734 len1
= snprintf(buffer
, sizeof(buffer
),
3735 "diff--gita/%.*sb/%.*s"
3742 len2
, p
->two
->path
);
3743 else if (p
->two
->mode
== 0)
3744 len1
= snprintf(buffer
, sizeof(buffer
),
3745 "diff--gita/%.*sb/%.*s"
3746 "deletedfilemode%06o"
3752 len1
, p
->one
->path
);
3754 len1
= snprintf(buffer
, sizeof(buffer
),
3755 "diff--gita/%.*sb/%.*s"
3761 len2
, p
->two
->path
);
3762 git_SHA1_Update(&ctx
, buffer
, len1
);
3766 xecfg
.flags
= XDL_EMIT_FUNCNAMES
;
3767 xdi_diff_outf(&mf1
, &mf2
, patch_id_consume
, &data
,
3771 git_SHA1_Final(sha1
, &ctx
);
3775 int diff_flush_patch_id(struct diff_options
*options
, unsigned char *sha1
)
3777 struct diff_queue_struct
*q
= &diff_queued_diff
;
3779 int result
= diff_get_patch_id(options
, sha1
);
3781 for (i
= 0; i
< q
->nr
; i
++)
3782 diff_free_filepair(q
->queue
[i
]);
3785 DIFF_QUEUE_CLEAR(q
);
3790 static int is_summary_empty(const struct diff_queue_struct
*q
)
3794 for (i
= 0; i
< q
->nr
; i
++) {
3795 const struct diff_filepair
*p
= q
->queue
[i
];
3797 switch (p
->status
) {
3798 case DIFF_STATUS_DELETED
:
3799 case DIFF_STATUS_ADDED
:
3800 case DIFF_STATUS_COPIED
:
3801 case DIFF_STATUS_RENAMED
:
3806 if (p
->one
->mode
&& p
->two
->mode
&&
3807 p
->one
->mode
!= p
->two
->mode
)
3815 void diff_flush(struct diff_options
*options
)
3817 struct diff_queue_struct
*q
= &diff_queued_diff
;
3818 int i
, output_format
= options
->output_format
;
3822 * Order: raw, stat, summary, patch
3823 * or: name/name-status/checkdiff (other bits clear)
3828 if (output_format
& (DIFF_FORMAT_RAW
|
3830 DIFF_FORMAT_NAME_STATUS
|
3831 DIFF_FORMAT_CHECKDIFF
)) {
3832 for (i
= 0; i
< q
->nr
; i
++) {
3833 struct diff_filepair
*p
= q
->queue
[i
];
3834 if (check_pair_status(p
))
3835 flush_one_pair(p
, options
);
3840 if (output_format
& (DIFF_FORMAT_DIFFSTAT
|DIFF_FORMAT_SHORTSTAT
|DIFF_FORMAT_NUMSTAT
)) {
3841 struct diffstat_t diffstat
;
3843 memset(&diffstat
, 0, sizeof(struct diffstat_t
));
3844 for (i
= 0; i
< q
->nr
; i
++) {
3845 struct diff_filepair
*p
= q
->queue
[i
];
3846 if (check_pair_status(p
))
3847 diff_flush_stat(p
, options
, &diffstat
);
3849 if (output_format
& DIFF_FORMAT_NUMSTAT
)
3850 show_numstat(&diffstat
, options
);
3851 if (output_format
& DIFF_FORMAT_DIFFSTAT
)
3852 show_stats(&diffstat
, options
);
3853 if (output_format
& DIFF_FORMAT_SHORTSTAT
)
3854 show_shortstats(&diffstat
, options
);
3855 free_diffstat_info(&diffstat
);
3858 if (output_format
& DIFF_FORMAT_DIRSTAT
)
3859 show_dirstat(options
);
3861 if (output_format
& DIFF_FORMAT_SUMMARY
&& !is_summary_empty(q
)) {
3862 for (i
= 0; i
< q
->nr
; i
++) {
3863 diff_summary(options
, q
->queue
[i
]);
3868 if (output_format
& DIFF_FORMAT_NO_OUTPUT
&&
3869 DIFF_OPT_TST(options
, EXIT_WITH_STATUS
) &&
3870 DIFF_OPT_TST(options
, DIFF_FROM_CONTENTS
)) {
3872 * run diff_flush_patch for the exit status. setting
3873 * options->file to /dev/null should be safe, becaue we
3874 * aren't supposed to produce any output anyway.
3876 if (options
->close_file
)
3877 fclose(options
->file
);
3878 options
->file
= fopen("/dev/null", "w");
3880 die_errno("Could not open /dev/null");
3881 options
->close_file
= 1;
3882 for (i
= 0; i
< q
->nr
; i
++) {
3883 struct diff_filepair
*p
= q
->queue
[i
];
3884 if (check_pair_status(p
))
3885 diff_flush_patch(p
, options
);
3886 if (options
->found_changes
)
3891 if (output_format
& DIFF_FORMAT_PATCH
) {
3893 putc(options
->line_termination
, options
->file
);
3894 if (options
->stat_sep
) {
3895 /* attach patch instead of inline */
3896 fputs(options
->stat_sep
, options
->file
);
3900 for (i
= 0; i
< q
->nr
; i
++) {
3901 struct diff_filepair
*p
= q
->queue
[i
];
3902 if (check_pair_status(p
))
3903 diff_flush_patch(p
, options
);
3907 if (output_format
& DIFF_FORMAT_CALLBACK
)
3908 options
->format_callback(q
, options
, options
->format_callback_data
);
3910 for (i
= 0; i
< q
->nr
; i
++)
3911 diff_free_filepair(q
->queue
[i
]);
3914 DIFF_QUEUE_CLEAR(q
);
3915 if (options
->close_file
)
3916 fclose(options
->file
);
3919 * Report the content-level differences with HAS_CHANGES;
3920 * diff_addremove/diff_change does not set the bit when
3921 * DIFF_FROM_CONTENTS is in effect (e.g. with -w).
3923 if (DIFF_OPT_TST(options
, DIFF_FROM_CONTENTS
)) {
3924 if (options
->found_changes
)
3925 DIFF_OPT_SET(options
, HAS_CHANGES
);
3927 DIFF_OPT_CLR(options
, HAS_CHANGES
);
3931 static void diffcore_apply_filter(const char *filter
)
3934 struct diff_queue_struct
*q
= &diff_queued_diff
;
3935 struct diff_queue_struct outq
;
3936 DIFF_QUEUE_CLEAR(&outq
);
3941 if (strchr(filter
, DIFF_STATUS_FILTER_AON
)) {
3943 for (i
= found
= 0; !found
&& i
< q
->nr
; i
++) {
3944 struct diff_filepair
*p
= q
->queue
[i
];
3945 if (((p
->status
== DIFF_STATUS_MODIFIED
) &&
3947 strchr(filter
, DIFF_STATUS_FILTER_BROKEN
)) ||
3949 strchr(filter
, DIFF_STATUS_MODIFIED
)))) ||
3950 ((p
->status
!= DIFF_STATUS_MODIFIED
) &&
3951 strchr(filter
, p
->status
)))
3957 /* otherwise we will clear the whole queue
3958 * by copying the empty outq at the end of this
3959 * function, but first clear the current entries
3962 for (i
= 0; i
< q
->nr
; i
++)
3963 diff_free_filepair(q
->queue
[i
]);
3966 /* Only the matching ones */
3967 for (i
= 0; i
< q
->nr
; i
++) {
3968 struct diff_filepair
*p
= q
->queue
[i
];
3970 if (((p
->status
== DIFF_STATUS_MODIFIED
) &&
3972 strchr(filter
, DIFF_STATUS_FILTER_BROKEN
)) ||
3974 strchr(filter
, DIFF_STATUS_MODIFIED
)))) ||
3975 ((p
->status
!= DIFF_STATUS_MODIFIED
) &&
3976 strchr(filter
, p
->status
)))
3979 diff_free_filepair(p
);
3986 /* Check whether two filespecs with the same mode and size are identical */
3987 static int diff_filespec_is_identical(struct diff_filespec
*one
,
3988 struct diff_filespec
*two
)
3990 if (S_ISGITLINK(one
->mode
))
3992 if (diff_populate_filespec(one
, 0))
3994 if (diff_populate_filespec(two
, 0))
3996 return !memcmp(one
->data
, two
->data
, one
->size
);
3999 static void diffcore_skip_stat_unmatch(struct diff_options
*diffopt
)
4002 struct diff_queue_struct
*q
= &diff_queued_diff
;
4003 struct diff_queue_struct outq
;
4004 DIFF_QUEUE_CLEAR(&outq
);
4006 for (i
= 0; i
< q
->nr
; i
++) {
4007 struct diff_filepair
*p
= q
->queue
[i
];
4010 * 1. Entries that come from stat info dirtiness
4011 * always have both sides (iow, not create/delete),
4012 * one side of the object name is unknown, with
4013 * the same mode and size. Keep the ones that
4014 * do not match these criteria. They have real
4017 * 2. At this point, the file is known to be modified,
4018 * with the same mode and size, and the object
4019 * name of one side is unknown. Need to inspect
4020 * the identical contents.
4022 if (!DIFF_FILE_VALID(p
->one
) || /* (1) */
4023 !DIFF_FILE_VALID(p
->two
) ||
4024 (p
->one
->sha1_valid
&& p
->two
->sha1_valid
) ||
4025 (p
->one
->mode
!= p
->two
->mode
) ||
4026 diff_populate_filespec(p
->one
, 1) ||
4027 diff_populate_filespec(p
->two
, 1) ||
4028 (p
->one
->size
!= p
->two
->size
) ||
4029 !diff_filespec_is_identical(p
->one
, p
->two
)) /* (2) */
4033 * The caller can subtract 1 from skip_stat_unmatch
4034 * to determine how many paths were dirty only
4035 * due to stat info mismatch.
4037 if (!DIFF_OPT_TST(diffopt
, NO_INDEX
))
4038 diffopt
->skip_stat_unmatch
++;
4039 diff_free_filepair(p
);
4046 static int diffnamecmp(const void *a_
, const void *b_
)
4048 const struct diff_filepair
*a
= *((const struct diff_filepair
**)a_
);
4049 const struct diff_filepair
*b
= *((const struct diff_filepair
**)b_
);
4050 const char *name_a
, *name_b
;
4052 name_a
= a
->one
? a
->one
->path
: a
->two
->path
;
4053 name_b
= b
->one
? b
->one
->path
: b
->two
->path
;
4054 return strcmp(name_a
, name_b
);
4057 void diffcore_fix_diff_index(struct diff_options
*options
)
4059 struct diff_queue_struct
*q
= &diff_queued_diff
;
4060 qsort(q
->queue
, q
->nr
, sizeof(q
->queue
[0]), diffnamecmp
);
4063 void diffcore_std(struct diff_options
*options
)
4065 /* We never run this function more than one time, because the
4066 * rename/copy detection logic can only run once.
4068 if (diff_queued_diff
.run
)
4071 if (options
->skip_stat_unmatch
)
4072 diffcore_skip_stat_unmatch(options
);
4073 if (options
->break_opt
!= -1)
4074 diffcore_break(options
->break_opt
);
4075 if (options
->detect_rename
)
4076 diffcore_rename(options
);
4077 if (options
->break_opt
!= -1)
4078 diffcore_merge_broken();
4079 if (options
->pickaxe
)
4080 diffcore_pickaxe(options
->pickaxe
, options
->pickaxe_opts
);
4081 if (options
->orderfile
)
4082 diffcore_order(options
->orderfile
);
4083 diff_resolve_rename_copy();
4084 diffcore_apply_filter(options
->filter
);
4086 if (diff_queued_diff
.nr
&& !DIFF_OPT_TST(options
, DIFF_FROM_CONTENTS
))
4087 DIFF_OPT_SET(options
, HAS_CHANGES
);
4089 DIFF_OPT_CLR(options
, HAS_CHANGES
);
4091 diff_queued_diff
.run
= 1;
4094 int diff_result_code(struct diff_options
*opt
, int status
)
4097 if (!DIFF_OPT_TST(opt
, EXIT_WITH_STATUS
) &&
4098 !(opt
->output_format
& DIFF_FORMAT_CHECKDIFF
))
4100 if (DIFF_OPT_TST(opt
, EXIT_WITH_STATUS
) &&
4101 DIFF_OPT_TST(opt
, HAS_CHANGES
))
4103 if ((opt
->output_format
& DIFF_FORMAT_CHECKDIFF
) &&
4104 DIFF_OPT_TST(opt
, CHECK_FAILED
))
4109 void diff_addremove(struct diff_options
*options
,
4110 int addremove
, unsigned mode
,
4111 const unsigned char *sha1
,
4112 const char *concatpath
, unsigned dirty_submodule
)
4114 struct diff_filespec
*one
, *two
;
4116 if (DIFF_OPT_TST(options
, IGNORE_SUBMODULES
) && S_ISGITLINK(mode
))
4119 /* This may look odd, but it is a preparation for
4120 * feeding "there are unchanged files which should
4121 * not produce diffs, but when you are doing copy
4122 * detection you would need them, so here they are"
4123 * entries to the diff-core. They will be prefixed
4124 * with something like '=' or '*' (I haven't decided
4125 * which but should not make any difference).
4126 * Feeding the same new and old to diff_change()
4127 * also has the same effect.
4128 * Before the final output happens, they are pruned after
4129 * merged into rename/copy pairs as appropriate.
4131 if (DIFF_OPT_TST(options
, REVERSE_DIFF
))
4132 addremove
= (addremove
== '+' ? '-' :
4133 addremove
== '-' ? '+' : addremove
);
4135 if (options
->prefix
&&
4136 strncmp(concatpath
, options
->prefix
, options
->prefix_length
))
4139 one
= alloc_filespec(concatpath
);
4140 two
= alloc_filespec(concatpath
);
4142 if (addremove
!= '+')
4143 fill_filespec(one
, sha1
, mode
);
4144 if (addremove
!= '-') {
4145 fill_filespec(two
, sha1
, mode
);
4146 two
->dirty_submodule
= dirty_submodule
;
4149 diff_queue(&diff_queued_diff
, one
, two
);
4150 if (!DIFF_OPT_TST(options
, DIFF_FROM_CONTENTS
))
4151 DIFF_OPT_SET(options
, HAS_CHANGES
);
4154 void diff_change(struct diff_options
*options
,
4155 unsigned old_mode
, unsigned new_mode
,
4156 const unsigned char *old_sha1
,
4157 const unsigned char *new_sha1
,
4158 const char *concatpath
,
4159 unsigned old_dirty_submodule
, unsigned new_dirty_submodule
)
4161 struct diff_filespec
*one
, *two
;
4163 if (DIFF_OPT_TST(options
, IGNORE_SUBMODULES
) && S_ISGITLINK(old_mode
)
4164 && S_ISGITLINK(new_mode
))
4167 if (DIFF_OPT_TST(options
, REVERSE_DIFF
)) {
4169 const unsigned char *tmp_c
;
4170 tmp
= old_mode
; old_mode
= new_mode
; new_mode
= tmp
;
4171 tmp_c
= old_sha1
; old_sha1
= new_sha1
; new_sha1
= tmp_c
;
4172 tmp
= old_dirty_submodule
; old_dirty_submodule
= new_dirty_submodule
;
4173 new_dirty_submodule
= tmp
;
4176 if (options
->prefix
&&
4177 strncmp(concatpath
, options
->prefix
, options
->prefix_length
))
4180 one
= alloc_filespec(concatpath
);
4181 two
= alloc_filespec(concatpath
);
4182 fill_filespec(one
, old_sha1
, old_mode
);
4183 fill_filespec(two
, new_sha1
, new_mode
);
4184 one
->dirty_submodule
= old_dirty_submodule
;
4185 two
->dirty_submodule
= new_dirty_submodule
;
4187 diff_queue(&diff_queued_diff
, one
, two
);
4188 if (!DIFF_OPT_TST(options
, DIFF_FROM_CONTENTS
))
4189 DIFF_OPT_SET(options
, HAS_CHANGES
);
4192 void diff_unmerge(struct diff_options
*options
,
4194 unsigned mode
, const unsigned char *sha1
)
4196 struct diff_filespec
*one
, *two
;
4198 if (options
->prefix
&&
4199 strncmp(path
, options
->prefix
, options
->prefix_length
))
4202 one
= alloc_filespec(path
);
4203 two
= alloc_filespec(path
);
4204 fill_filespec(one
, sha1
, mode
);
4205 diff_queue(&diff_queued_diff
, one
, two
)->is_unmerged
= 1;
4208 static char *run_textconv(const char *pgm
, struct diff_filespec
*spec
,
4211 struct diff_tempfile
*temp
;
4212 const char *argv
[3];
4213 const char **arg
= argv
;
4214 struct child_process child
;
4215 struct strbuf buf
= STRBUF_INIT
;
4218 temp
= prepare_temp_file(spec
->path
, spec
);
4220 *arg
++ = temp
->name
;
4223 memset(&child
, 0, sizeof(child
));
4224 child
.use_shell
= 1;
4227 if (start_command(&child
)) {
4232 if (strbuf_read(&buf
, child
.out
, 0) < 0)
4233 err
= error("error reading from textconv command '%s'", pgm
);
4236 if (finish_command(&child
) || err
) {
4237 strbuf_release(&buf
);
4243 return strbuf_detach(&buf
, outsize
);
4246 static size_t fill_textconv(struct userdiff_driver
*driver
,
4247 struct diff_filespec
*df
,
4252 if (!driver
|| !driver
->textconv
) {
4253 if (!DIFF_FILE_VALID(df
)) {
4257 if (diff_populate_filespec(df
, 0))
4258 die("unable to read files to diff");
4263 if (driver
->textconv_cache
) {
4264 *outbuf
= notes_cache_get(driver
->textconv_cache
, df
->sha1
,
4270 *outbuf
= run_textconv(driver
->textconv
, df
, &size
);
4272 die("unable to read files to diff");
4274 if (driver
->textconv_cache
) {
4275 /* ignore errors, as we might be in a readonly repository */
4276 notes_cache_put(driver
->textconv_cache
, df
->sha1
, *outbuf
,
4279 * we could save up changes and flush them all at the end,
4280 * but we would need an extra call after all diffing is done.
4281 * Since generating a cache entry is the slow path anyway,
4282 * this extra overhead probably isn't a big deal.
4284 notes_cache_write(driver
->textconv_cache
);