2 * Copyright (C) 2005 Junio C Hamano
9 #include "xdiff-interface.h"
12 #include "run-command.h"
15 #ifdef NO_FAST_WORKING_DIRECTORY
16 #define FAST_WORKING_DIRECTORY 0
18 #define FAST_WORKING_DIRECTORY 1
21 static int diff_detect_rename_default
;
22 static int diff_rename_limit_default
= 100;
23 int diff_use_color_default
= -1;
24 static const char *external_diff_cmd_cfg
;
25 int diff_auto_refresh_index
= 1;
27 static char diff_colors
[][COLOR_MAXLEN
] = {
29 "", /* PLAIN (normal) */
30 "\033[1m", /* METAINFO (bold) */
31 "\033[36m", /* FRAGINFO (cyan) */
32 "\033[31m", /* OLD (red) */
33 "\033[32m", /* NEW (green) */
34 "\033[33m", /* COMMIT (yellow) */
35 "\033[41m", /* WHITESPACE (red background) */
38 static int parse_diff_color_slot(const char *var
, int ofs
)
40 if (!strcasecmp(var
+ofs
, "plain"))
42 if (!strcasecmp(var
+ofs
, "meta"))
44 if (!strcasecmp(var
+ofs
, "frag"))
46 if (!strcasecmp(var
+ofs
, "old"))
48 if (!strcasecmp(var
+ofs
, "new"))
50 if (!strcasecmp(var
+ofs
, "commit"))
52 if (!strcasecmp(var
+ofs
, "whitespace"))
53 return DIFF_WHITESPACE
;
54 die("bad config variable '%s'", var
);
57 static struct ll_diff_driver
{
59 struct ll_diff_driver
*next
;
61 } *user_diff
, **user_diff_tail
;
64 * Currently there is only "diff.<drivername>.command" variable;
65 * because there are "diff.color.<slot>" variables, we are parsing
66 * this in a bit convoluted way to allow low level diff driver
69 static int parse_lldiff_command(const char *var
, const char *ep
, const char *value
)
73 struct ll_diff_driver
*drv
;
77 for (drv
= user_diff
; drv
; drv
= drv
->next
)
78 if (!strncmp(drv
->name
, name
, namelen
) && !drv
->name
[namelen
])
81 drv
= xcalloc(1, sizeof(struct ll_diff_driver
));
82 drv
->name
= xmemdupz(name
, namelen
);
84 user_diff_tail
= &user_diff
;
85 *user_diff_tail
= drv
;
86 user_diff_tail
= &(drv
->next
);
89 return git_config_string(&(drv
->cmd
), var
, value
);
93 * 'diff.<what>.funcname' attribute can be specified in the configuration
94 * to define a customized regexp to find the beginning of a function to
95 * be used for hunk header lines of "diff -p" style output.
97 static struct funcname_pattern
{
100 struct funcname_pattern
*next
;
101 } *funcname_pattern_list
;
103 static int parse_funcname_pattern(const char *var
, const char *ep
, const char *value
)
107 struct funcname_pattern
*pp
;
109 name
= var
+ 5; /* "diff." */
112 for (pp
= funcname_pattern_list
; pp
; pp
= pp
->next
)
113 if (!strncmp(pp
->name
, name
, namelen
) && !pp
->name
[namelen
])
116 pp
= xcalloc(1, sizeof(*pp
));
117 pp
->name
= xmemdupz(name
, namelen
);
118 pp
->next
= funcname_pattern_list
;
119 funcname_pattern_list
= pp
;
122 pp
->pattern
= xstrdup(value
);
127 * These are to give UI layer defaults.
128 * The core-level commands such as git-diff-files should
129 * never be affected by the setting of diff.renames
130 * the user happens to have in the configuration file.
132 int git_diff_ui_config(const char *var
, const char *value
)
134 if (!strcmp(var
, "diff.renamelimit")) {
135 diff_rename_limit_default
= git_config_int(var
, value
);
138 if (!strcmp(var
, "diff.color") || !strcmp(var
, "color.diff")) {
139 diff_use_color_default
= git_config_colorbool(var
, value
, -1);
142 if (!strcmp(var
, "diff.renames")) {
144 diff_detect_rename_default
= DIFF_DETECT_RENAME
;
145 else if (!strcasecmp(value
, "copies") ||
146 !strcasecmp(value
, "copy"))
147 diff_detect_rename_default
= DIFF_DETECT_COPY
;
148 else if (git_config_bool(var
,value
))
149 diff_detect_rename_default
= DIFF_DETECT_RENAME
;
152 if (!strcmp(var
, "diff.autorefreshindex")) {
153 diff_auto_refresh_index
= git_config_bool(var
, value
);
156 if (!strcmp(var
, "diff.external")) {
158 return config_error_nonbool(var
);
159 external_diff_cmd_cfg
= xstrdup(value
);
162 if (!prefixcmp(var
, "diff.")) {
163 const char *ep
= strrchr(var
, '.');
165 if (ep
!= var
+ 4 && !strcmp(ep
, ".command"))
166 return parse_lldiff_command(var
, ep
, value
);
169 return git_diff_basic_config(var
, value
);
172 int git_diff_basic_config(const char *var
, const char *value
)
174 if (!prefixcmp(var
, "diff.color.") || !prefixcmp(var
, "color.diff.")) {
175 int slot
= parse_diff_color_slot(var
, 11);
177 return config_error_nonbool(var
);
178 color_parse(value
, var
, diff_colors
[slot
]);
182 if (!prefixcmp(var
, "diff.")) {
183 const char *ep
= strrchr(var
, '.');
185 if (!strcmp(ep
, ".funcname")) {
187 return config_error_nonbool(var
);
188 return parse_funcname_pattern(var
, ep
, value
);
193 return git_color_default_config(var
, value
);
196 static char *quote_two(const char *one
, const char *two
)
198 int need_one
= quote_c_style(one
, NULL
, NULL
, 1);
199 int need_two
= quote_c_style(two
, NULL
, NULL
, 1);
202 strbuf_init(&res
, 0);
203 if (need_one
+ need_two
) {
204 strbuf_addch(&res
, '"');
205 quote_c_style(one
, &res
, NULL
, 1);
206 quote_c_style(two
, &res
, NULL
, 1);
207 strbuf_addch(&res
, '"');
209 strbuf_addstr(&res
, one
);
210 strbuf_addstr(&res
, two
);
212 return strbuf_detach(&res
, NULL
);
215 static const char *external_diff(void)
217 static const char *external_diff_cmd
= NULL
;
218 static int done_preparing
= 0;
221 return external_diff_cmd
;
222 external_diff_cmd
= getenv("GIT_EXTERNAL_DIFF");
223 if (!external_diff_cmd
)
224 external_diff_cmd
= external_diff_cmd_cfg
;
226 return external_diff_cmd
;
229 static struct diff_tempfile
{
230 const char *name
; /* filename external diff should read from */
233 char tmp_path
[PATH_MAX
];
236 static int count_lines(const char *data
, int size
)
238 int count
, ch
, completely_empty
= 1, nl_just_seen
= 0;
245 completely_empty
= 0;
249 completely_empty
= 0;
252 if (completely_empty
)
255 count
++; /* no trailing newline */
259 static void print_line_count(int count
)
269 printf("1,%d", count
);
274 static void copy_file_with_prefix(int prefix
, const char *data
, int size
,
275 const char *set
, const char *reset
)
277 int ch
, nl_just_seen
= 1;
286 fputs(reset
, stdout
);
292 printf("%s\n\\ No newline at end of file\n", reset
);
295 static void emit_rewrite_diff(const char *name_a
,
297 struct diff_filespec
*one
,
298 struct diff_filespec
*two
,
299 struct diff_options
*o
)
302 int color_diff
= DIFF_OPT_TST(o
, COLOR_DIFF
);
303 const char *name_a_tab
, *name_b_tab
;
304 const char *metainfo
= diff_get_color(color_diff
, DIFF_METAINFO
);
305 const char *fraginfo
= diff_get_color(color_diff
, DIFF_FRAGINFO
);
306 const char *old
= diff_get_color(color_diff
, DIFF_FILE_OLD
);
307 const char *new = diff_get_color(color_diff
, DIFF_FILE_NEW
);
308 const char *reset
= diff_get_color(color_diff
, DIFF_RESET
);
309 static struct strbuf a_name
= STRBUF_INIT
, b_name
= STRBUF_INIT
;
311 name_a
+= (*name_a
== '/');
312 name_b
+= (*name_b
== '/');
313 name_a_tab
= strchr(name_a
, ' ') ? "\t" : "";
314 name_b_tab
= strchr(name_b
, ' ') ? "\t" : "";
316 strbuf_reset(&a_name
);
317 strbuf_reset(&b_name
);
318 quote_two_c_style(&a_name
, o
->a_prefix
, name_a
, 0);
319 quote_two_c_style(&b_name
, o
->b_prefix
, name_b
, 0);
321 diff_populate_filespec(one
, 0);
322 diff_populate_filespec(two
, 0);
323 lc_a
= count_lines(one
->data
, one
->size
);
324 lc_b
= count_lines(two
->data
, two
->size
);
325 printf("%s--- %s%s%s\n%s+++ %s%s%s\n%s@@ -",
326 metainfo
, a_name
.buf
, name_a_tab
, reset
,
327 metainfo
, b_name
.buf
, name_b_tab
, reset
, fraginfo
);
328 print_line_count(lc_a
);
330 print_line_count(lc_b
);
331 printf(" @@%s\n", reset
);
333 copy_file_with_prefix('-', one
->data
, one
->size
, old
, reset
);
335 copy_file_with_prefix('+', two
->data
, two
->size
, new, reset
);
338 static int fill_mmfile(mmfile_t
*mf
, struct diff_filespec
*one
)
340 if (!DIFF_FILE_VALID(one
)) {
341 mf
->ptr
= (char *)""; /* does not matter */
345 else if (diff_populate_filespec(one
, 0))
348 mf
->size
= one
->size
;
352 struct diff_words_buffer
{
355 long current
; /* output pointer */
356 int suppressed_newline
;
359 static void diff_words_append(char *line
, unsigned long len
,
360 struct diff_words_buffer
*buffer
)
362 if (buffer
->text
.size
+ len
> buffer
->alloc
) {
363 buffer
->alloc
= (buffer
->text
.size
+ len
) * 3 / 2;
364 buffer
->text
.ptr
= xrealloc(buffer
->text
.ptr
, buffer
->alloc
);
368 memcpy(buffer
->text
.ptr
+ buffer
->text
.size
, line
, len
);
369 buffer
->text
.size
+= len
;
372 struct diff_words_data
{
373 struct xdiff_emit_state xm
;
374 struct diff_words_buffer minus
, plus
;
377 static void print_word(struct diff_words_buffer
*buffer
, int len
, int color
,
378 int suppress_newline
)
386 ptr
= buffer
->text
.ptr
+ buffer
->current
;
387 buffer
->current
+= len
;
389 if (ptr
[len
- 1] == '\n') {
394 fputs(diff_get_color(1, color
), stdout
);
395 fwrite(ptr
, len
, 1, stdout
);
396 fputs(diff_get_color(1, DIFF_RESET
), stdout
);
399 if (suppress_newline
)
400 buffer
->suppressed_newline
= 1;
406 static void fn_out_diff_words_aux(void *priv
, char *line
, unsigned long len
)
408 struct diff_words_data
*diff_words
= priv
;
410 if (diff_words
->minus
.suppressed_newline
) {
413 diff_words
->minus
.suppressed_newline
= 0;
419 print_word(&diff_words
->minus
, len
, DIFF_FILE_OLD
, 1);
422 print_word(&diff_words
->plus
, len
, DIFF_FILE_NEW
, 0);
425 print_word(&diff_words
->plus
, len
, DIFF_PLAIN
, 0);
426 diff_words
->minus
.current
+= len
;
431 /* this executes the word diff on the accumulated buffers */
432 static void diff_words_show(struct diff_words_data
*diff_words
)
437 mmfile_t minus
, plus
;
440 memset(&xecfg
, 0, sizeof(xecfg
));
441 minus
.size
= diff_words
->minus
.text
.size
;
442 minus
.ptr
= xmalloc(minus
.size
);
443 memcpy(minus
.ptr
, diff_words
->minus
.text
.ptr
, minus
.size
);
444 for (i
= 0; i
< minus
.size
; i
++)
445 if (isspace(minus
.ptr
[i
]))
447 diff_words
->minus
.current
= 0;
449 plus
.size
= diff_words
->plus
.text
.size
;
450 plus
.ptr
= xmalloc(plus
.size
);
451 memcpy(plus
.ptr
, diff_words
->plus
.text
.ptr
, plus
.size
);
452 for (i
= 0; i
< plus
.size
; i
++)
453 if (isspace(plus
.ptr
[i
]))
455 diff_words
->plus
.current
= 0;
457 xpp
.flags
= XDF_NEED_MINIMAL
;
458 xecfg
.ctxlen
= diff_words
->minus
.alloc
+ diff_words
->plus
.alloc
;
459 ecb
.outf
= xdiff_outf
;
460 ecb
.priv
= diff_words
;
461 diff_words
->xm
.consume
= fn_out_diff_words_aux
;
462 xdi_diff(&minus
, &plus
, &xpp
, &xecfg
, &ecb
);
466 diff_words
->minus
.text
.size
= diff_words
->plus
.text
.size
= 0;
468 if (diff_words
->minus
.suppressed_newline
) {
470 diff_words
->minus
.suppressed_newline
= 0;
474 typedef unsigned long (*sane_truncate_fn
)(char *line
, unsigned long len
);
476 struct emit_callback
{
477 struct xdiff_emit_state xm
;
478 int nparents
, color_diff
;
480 sane_truncate_fn truncate
;
481 const char **label_path
;
482 struct diff_words_data
*diff_words
;
486 static void free_diff_words_data(struct emit_callback
*ecbdata
)
488 if (ecbdata
->diff_words
) {
490 if (ecbdata
->diff_words
->minus
.text
.size
||
491 ecbdata
->diff_words
->plus
.text
.size
)
492 diff_words_show(ecbdata
->diff_words
);
494 free (ecbdata
->diff_words
->minus
.text
.ptr
);
495 free (ecbdata
->diff_words
->plus
.text
.ptr
);
496 free(ecbdata
->diff_words
);
497 ecbdata
->diff_words
= NULL
;
501 const char *diff_get_color(int diff_use_color
, enum color_diff ix
)
504 return diff_colors
[ix
];
508 static void emit_line(const char *set
, const char *reset
, const char *line
, int len
)
511 fwrite(line
, len
, 1, stdout
);
512 fputs(reset
, stdout
);
515 static void emit_add_line(const char *reset
, struct emit_callback
*ecbdata
, const char *line
, int len
)
517 const char *ws
= diff_get_color(ecbdata
->color_diff
, DIFF_WHITESPACE
);
518 const char *set
= diff_get_color(ecbdata
->color_diff
, DIFF_FILE_NEW
);
521 emit_line(set
, reset
, line
, len
);
523 /* Emit just the prefix, then the rest. */
524 emit_line(set
, reset
, line
, ecbdata
->nparents
);
525 (void)check_and_emit_line(line
+ ecbdata
->nparents
,
526 len
- ecbdata
->nparents
, ecbdata
->ws_rule
,
527 stdout
, set
, reset
, ws
);
531 static unsigned long sane_truncate_line(struct emit_callback
*ecb
, char *line
, unsigned long len
)
538 return ecb
->truncate(line
, len
);
542 (void) utf8_width(&cp
, &l
);
544 break; /* truncated in the middle? */
549 static void fn_out_consume(void *priv
, char *line
, unsigned long len
)
553 struct emit_callback
*ecbdata
= priv
;
554 const char *meta
= diff_get_color(ecbdata
->color_diff
, DIFF_METAINFO
);
555 const char *plain
= diff_get_color(ecbdata
->color_diff
, DIFF_PLAIN
);
556 const char *reset
= diff_get_color(ecbdata
->color_diff
, DIFF_RESET
);
558 *(ecbdata
->found_changesp
) = 1;
560 if (ecbdata
->label_path
[0]) {
561 const char *name_a_tab
, *name_b_tab
;
563 name_a_tab
= strchr(ecbdata
->label_path
[0], ' ') ? "\t" : "";
564 name_b_tab
= strchr(ecbdata
->label_path
[1], ' ') ? "\t" : "";
566 printf("%s--- %s%s%s\n",
567 meta
, ecbdata
->label_path
[0], reset
, name_a_tab
);
568 printf("%s+++ %s%s%s\n",
569 meta
, ecbdata
->label_path
[1], reset
, name_b_tab
);
570 ecbdata
->label_path
[0] = ecbdata
->label_path
[1] = NULL
;
573 /* This is not really necessary for now because
574 * this codepath only deals with two-way diffs.
576 for (i
= 0; i
< len
&& line
[i
] == '@'; i
++)
578 if (2 <= i
&& i
< len
&& line
[i
] == ' ') {
579 ecbdata
->nparents
= i
- 1;
580 len
= sane_truncate_line(ecbdata
, line
, len
);
581 emit_line(diff_get_color(ecbdata
->color_diff
, DIFF_FRAGINFO
),
583 if (line
[len
-1] != '\n')
588 if (len
< ecbdata
->nparents
) {
589 emit_line(reset
, reset
, line
, len
);
594 if (ecbdata
->diff_words
&& ecbdata
->nparents
!= 1)
595 /* fall back to normal diff */
596 free_diff_words_data(ecbdata
);
597 if (ecbdata
->diff_words
) {
598 if (line
[0] == '-') {
599 diff_words_append(line
, len
,
600 &ecbdata
->diff_words
->minus
);
602 } else if (line
[0] == '+') {
603 diff_words_append(line
, len
,
604 &ecbdata
->diff_words
->plus
);
607 if (ecbdata
->diff_words
->minus
.text
.size
||
608 ecbdata
->diff_words
->plus
.text
.size
)
609 diff_words_show(ecbdata
->diff_words
);
612 emit_line(plain
, reset
, line
, len
);
615 for (i
= 0; i
< ecbdata
->nparents
&& len
; i
++) {
617 color
= DIFF_FILE_OLD
;
618 else if (line
[i
] == '+')
619 color
= DIFF_FILE_NEW
;
622 if (color
!= DIFF_FILE_NEW
) {
623 emit_line(diff_get_color(ecbdata
->color_diff
, color
),
627 emit_add_line(reset
, ecbdata
, line
, len
);
630 static char *pprint_rename(const char *a
, const char *b
)
635 int pfx_length
, sfx_length
;
636 int len_a
= strlen(a
);
637 int len_b
= strlen(b
);
638 int a_midlen
, b_midlen
;
639 int qlen_a
= quote_c_style(a
, NULL
, NULL
, 0);
640 int qlen_b
= quote_c_style(b
, NULL
, NULL
, 0);
642 strbuf_init(&name
, 0);
643 if (qlen_a
|| qlen_b
) {
644 quote_c_style(a
, &name
, NULL
, 0);
645 strbuf_addstr(&name
, " => ");
646 quote_c_style(b
, &name
, NULL
, 0);
647 return strbuf_detach(&name
, NULL
);
650 /* Find common prefix */
652 while (*old
&& *new && *old
== *new) {
654 pfx_length
= old
- a
+ 1;
659 /* Find common suffix */
663 while (a
<= old
&& b
<= new && *old
== *new) {
665 sfx_length
= len_a
- (old
- a
);
671 * pfx{mid-a => mid-b}sfx
672 * {pfx-a => pfx-b}sfx
673 * pfx{sfx-a => sfx-b}
676 a_midlen
= len_a
- pfx_length
- sfx_length
;
677 b_midlen
= len_b
- pfx_length
- sfx_length
;
683 strbuf_grow(&name
, pfx_length
+ a_midlen
+ b_midlen
+ sfx_length
+ 7);
684 if (pfx_length
+ sfx_length
) {
685 strbuf_add(&name
, a
, pfx_length
);
686 strbuf_addch(&name
, '{');
688 strbuf_add(&name
, a
+ pfx_length
, a_midlen
);
689 strbuf_addstr(&name
, " => ");
690 strbuf_add(&name
, b
+ pfx_length
, b_midlen
);
691 if (pfx_length
+ sfx_length
) {
692 strbuf_addch(&name
, '}');
693 strbuf_add(&name
, a
+ len_a
- sfx_length
, sfx_length
);
695 return strbuf_detach(&name
, NULL
);
699 struct xdiff_emit_state xm
;
703 struct diffstat_file
{
707 unsigned is_unmerged
:1;
708 unsigned is_binary
:1;
709 unsigned is_renamed
:1;
710 unsigned int added
, deleted
;
714 static struct diffstat_file
*diffstat_add(struct diffstat_t
*diffstat
,
718 struct diffstat_file
*x
;
719 x
= xcalloc(sizeof (*x
), 1);
720 if (diffstat
->nr
== diffstat
->alloc
) {
721 diffstat
->alloc
= alloc_nr(diffstat
->alloc
);
722 diffstat
->files
= xrealloc(diffstat
->files
,
723 diffstat
->alloc
* sizeof(x
));
725 diffstat
->files
[diffstat
->nr
++] = x
;
727 x
->from_name
= xstrdup(name_a
);
728 x
->name
= xstrdup(name_b
);
733 x
->name
= xstrdup(name_a
);
738 static void diffstat_consume(void *priv
, char *line
, unsigned long len
)
740 struct diffstat_t
*diffstat
= priv
;
741 struct diffstat_file
*x
= diffstat
->files
[diffstat
->nr
- 1];
745 else if (line
[0] == '-')
749 const char mime_boundary_leader
[] = "------------";
751 static int scale_linear(int it
, int width
, int max_change
)
754 * make sure that at least one '-' is printed if there were deletions,
755 * and likewise for '+'.
759 return ((it
- 1) * (width
- 1) + max_change
- 1) / (max_change
- 1);
762 static void show_name(const char *prefix
, const char *name
, int len
,
763 const char *reset
, const char *set
)
765 printf(" %s%s%-*s%s |", set
, prefix
, len
, name
, reset
);
768 static void show_graph(char ch
, int cnt
, const char *set
, const char *reset
)
778 static void fill_print_name(struct diffstat_file
*file
)
782 if (file
->print_name
)
785 if (!file
->is_renamed
) {
787 strbuf_init(&buf
, 0);
788 if (quote_c_style(file
->name
, &buf
, NULL
, 0)) {
789 pname
= strbuf_detach(&buf
, NULL
);
792 strbuf_release(&buf
);
795 pname
= pprint_rename(file
->from_name
, file
->name
);
797 file
->print_name
= pname
;
800 static void show_stats(struct diffstat_t
* data
, struct diff_options
*options
)
802 int i
, len
, add
, del
, total
, adds
= 0, dels
= 0;
803 int max_change
= 0, max_len
= 0;
804 int total_files
= data
->nr
;
805 int width
, name_width
;
806 const char *reset
, *set
, *add_c
, *del_c
;
811 width
= options
->stat_width
? options
->stat_width
: 80;
812 name_width
= options
->stat_name_width
? options
->stat_name_width
: 50;
814 /* Sanity: give at least 5 columns to the graph,
815 * but leave at least 10 columns for the name.
817 if (width
< name_width
+ 15) {
818 if (name_width
<= 25)
819 width
= name_width
+ 15;
821 name_width
= width
- 15;
824 /* Find the longest filename and max number of changes */
825 reset
= diff_get_color_opt(options
, DIFF_RESET
);
826 set
= diff_get_color_opt(options
, DIFF_PLAIN
);
827 add_c
= diff_get_color_opt(options
, DIFF_FILE_NEW
);
828 del_c
= diff_get_color_opt(options
, DIFF_FILE_OLD
);
830 for (i
= 0; i
< data
->nr
; i
++) {
831 struct diffstat_file
*file
= data
->files
[i
];
832 int change
= file
->added
+ file
->deleted
;
833 fill_print_name(file
);
834 len
= strlen(file
->print_name
);
838 if (file
->is_binary
|| file
->is_unmerged
)
840 if (max_change
< change
)
844 /* Compute the width of the graph part;
845 * 10 is for one blank at the beginning of the line plus
846 * " | count " between the name and the graph.
848 * From here on, name_width is the width of the name area,
849 * and width is the width of the graph area.
851 name_width
= (name_width
< max_len
) ? name_width
: max_len
;
852 if (width
< (name_width
+ 10) + max_change
)
853 width
= width
- (name_width
+ 10);
857 for (i
= 0; i
< data
->nr
; i
++) {
858 const char *prefix
= "";
859 char *name
= data
->files
[i
]->print_name
;
860 int added
= data
->files
[i
]->added
;
861 int deleted
= data
->files
[i
]->deleted
;
865 * "scale" the filename
868 name_len
= strlen(name
);
869 if (name_width
< name_len
) {
873 name
+= name_len
- len
;
874 slash
= strchr(name
, '/');
879 if (data
->files
[i
]->is_binary
) {
880 show_name(prefix
, name
, len
, reset
, set
);
882 printf("%s%d%s", del_c
, deleted
, reset
);
884 printf("%s%d%s", add_c
, added
, reset
);
889 else if (data
->files
[i
]->is_unmerged
) {
890 show_name(prefix
, name
, len
, reset
, set
);
891 printf(" Unmerged\n");
894 else if (!data
->files
[i
]->is_renamed
&&
895 (added
+ deleted
== 0)) {
901 * scale the add/delete
909 if (width
<= max_change
) {
910 add
= scale_linear(add
, width
, max_change
);
911 del
= scale_linear(del
, width
, max_change
);
914 show_name(prefix
, name
, len
, reset
, set
);
915 printf("%5d ", added
+ deleted
);
916 show_graph('+', add
, add_c
, reset
);
917 show_graph('-', del
, del_c
, reset
);
920 printf("%s %d files changed, %d insertions(+), %d deletions(-)%s\n",
921 set
, total_files
, adds
, dels
, reset
);
924 static void show_shortstats(struct diffstat_t
* data
)
926 int i
, adds
= 0, dels
= 0, total_files
= data
->nr
;
931 for (i
= 0; i
< data
->nr
; i
++) {
932 if (!data
->files
[i
]->is_binary
&&
933 !data
->files
[i
]->is_unmerged
) {
934 int added
= data
->files
[i
]->added
;
935 int deleted
= data
->files
[i
]->deleted
;
936 if (!data
->files
[i
]->is_renamed
&&
937 (added
+ deleted
== 0)) {
945 printf(" %d files changed, %d insertions(+), %d deletions(-)\n",
946 total_files
, adds
, dels
);
949 static void show_numstat(struct diffstat_t
* data
, struct diff_options
*options
)
956 for (i
= 0; i
< data
->nr
; i
++) {
957 struct diffstat_file
*file
= data
->files
[i
];
962 printf("%d\t%d\t", file
->added
, file
->deleted
);
963 if (options
->line_termination
) {
964 fill_print_name(file
);
965 if (!file
->is_renamed
)
966 write_name_quoted(file
->name
, stdout
,
967 options
->line_termination
);
969 fputs(file
->print_name
, stdout
);
970 putchar(options
->line_termination
);
973 if (file
->is_renamed
) {
975 write_name_quoted(file
->from_name
, stdout
, '\0');
977 write_name_quoted(file
->name
, stdout
, '\0');
982 struct diffstat_dir
{
983 struct diffstat_file
**files
;
984 int nr
, percent
, cumulative
;
987 static long gather_dirstat(struct diffstat_dir
*dir
, unsigned long changed
, const char *base
, int baselen
)
989 unsigned long this_dir
= 0;
990 unsigned int sources
= 0;
993 struct diffstat_file
*f
= *dir
->files
;
994 int namelen
= strlen(f
->name
);
998 if (namelen
< baselen
)
1000 if (memcmp(f
->name
, base
, baselen
))
1002 slash
= strchr(f
->name
+ baselen
, '/');
1004 int newbaselen
= slash
+ 1 - f
->name
;
1005 this = gather_dirstat(dir
, changed
, f
->name
, newbaselen
);
1008 if (f
->is_unmerged
|| f
->is_binary
)
1011 this = f
->added
+ f
->deleted
;
1020 * We don't report dirstat's for
1022 * - or cases where everything came from a single directory
1023 * under this directory (sources == 1).
1025 if (baselen
&& sources
!= 1) {
1026 int permille
= this_dir
* 1000 / changed
;
1028 int percent
= permille
/ 10;
1029 if (percent
>= dir
->percent
) {
1030 printf("%4d.%01d%% %.*s\n", percent
, permille
% 10, baselen
, base
);
1031 if (!dir
->cumulative
)
1039 static void show_dirstat(struct diffstat_t
*data
, struct diff_options
*options
)
1042 unsigned long changed
;
1043 struct diffstat_dir dir
;
1045 /* Calculate total changes */
1047 for (i
= 0; i
< data
->nr
; i
++) {
1048 if (data
->files
[i
]->is_binary
|| data
->files
[i
]->is_unmerged
)
1050 changed
+= data
->files
[i
]->added
;
1051 changed
+= data
->files
[i
]->deleted
;
1054 /* This can happen even with many files, if everything was renames */
1058 /* Show all directories with more than x% of the changes */
1059 dir
.files
= data
->files
;
1061 dir
.percent
= options
->dirstat_percent
;
1062 dir
.cumulative
= options
->output_format
& DIFF_FORMAT_CUMULATIVE
;
1063 gather_dirstat(&dir
, changed
, "", 0);
1066 static void free_diffstat_info(struct diffstat_t
*diffstat
)
1069 for (i
= 0; i
< diffstat
->nr
; i
++) {
1070 struct diffstat_file
*f
= diffstat
->files
[i
];
1071 if (f
->name
!= f
->print_name
)
1072 free(f
->print_name
);
1077 free(diffstat
->files
);
1080 struct checkdiff_t
{
1081 struct xdiff_emit_state xm
;
1082 const char *filename
;
1083 int lineno
, color_diff
;
1088 static void checkdiff_consume(void *priv
, char *line
, unsigned long len
)
1090 struct checkdiff_t
*data
= priv
;
1091 const char *ws
= diff_get_color(data
->color_diff
, DIFF_WHITESPACE
);
1092 const char *reset
= diff_get_color(data
->color_diff
, DIFF_RESET
);
1093 const char *set
= diff_get_color(data
->color_diff
, DIFF_FILE_NEW
);
1096 if (line
[0] == '+') {
1098 data
->status
= check_and_emit_line(line
+ 1, len
- 1,
1099 data
->ws_rule
, NULL
, NULL
, NULL
, NULL
);
1102 err
= whitespace_error_string(data
->status
);
1103 printf("%s:%d: %s.\n", data
->filename
, data
->lineno
, err
);
1105 emit_line(set
, reset
, line
, 1);
1106 (void)check_and_emit_line(line
+ 1, len
- 1, data
->ws_rule
,
1107 stdout
, set
, reset
, ws
);
1108 } else if (line
[0] == ' ')
1110 else if (line
[0] == '@') {
1111 char *plus
= strchr(line
, '+');
1113 data
->lineno
= strtol(plus
, NULL
, 10) - 1;
1115 die("invalid diff");
1119 static unsigned char *deflate_it(char *data
,
1121 unsigned long *result_size
)
1124 unsigned char *deflated
;
1127 memset(&stream
, 0, sizeof(stream
));
1128 deflateInit(&stream
, zlib_compression_level
);
1129 bound
= deflateBound(&stream
, size
);
1130 deflated
= xmalloc(bound
);
1131 stream
.next_out
= deflated
;
1132 stream
.avail_out
= bound
;
1134 stream
.next_in
= (unsigned char *)data
;
1135 stream
.avail_in
= size
;
1136 while (deflate(&stream
, Z_FINISH
) == Z_OK
)
1138 deflateEnd(&stream
);
1139 *result_size
= stream
.total_out
;
1143 static void emit_binary_diff_body(mmfile_t
*one
, mmfile_t
*two
)
1149 unsigned long orig_size
;
1150 unsigned long delta_size
;
1151 unsigned long deflate_size
;
1152 unsigned long data_size
;
1154 /* We could do deflated delta, or we could do just deflated two,
1155 * whichever is smaller.
1158 deflated
= deflate_it(two
->ptr
, two
->size
, &deflate_size
);
1159 if (one
->size
&& two
->size
) {
1160 delta
= diff_delta(one
->ptr
, one
->size
,
1161 two
->ptr
, two
->size
,
1162 &delta_size
, deflate_size
);
1164 void *to_free
= delta
;
1165 orig_size
= delta_size
;
1166 delta
= deflate_it(delta
, delta_size
, &delta_size
);
1171 if (delta
&& delta_size
< deflate_size
) {
1172 printf("delta %lu\n", orig_size
);
1175 data_size
= delta_size
;
1178 printf("literal %lu\n", two
->size
);
1181 data_size
= deflate_size
;
1184 /* emit data encoded in base85 */
1187 int bytes
= (52 < data_size
) ? 52 : data_size
;
1191 line
[0] = bytes
+ 'A' - 1;
1193 line
[0] = bytes
- 26 + 'a' - 1;
1194 encode_85(line
+ 1, cp
, bytes
);
1195 cp
= (char *) cp
+ bytes
;
1202 static void emit_binary_diff(mmfile_t
*one
, mmfile_t
*two
)
1204 printf("GIT binary patch\n");
1205 emit_binary_diff_body(one
, two
);
1206 emit_binary_diff_body(two
, one
);
1209 static void setup_diff_attr_check(struct git_attr_check
*check
)
1211 static struct git_attr
*attr_diff
;
1214 attr_diff
= git_attr("diff", 4);
1216 check
[0].attr
= attr_diff
;
1219 static void diff_filespec_check_attr(struct diff_filespec
*one
)
1221 struct git_attr_check attr_diff_check
;
1222 int check_from_data
= 0;
1224 if (one
->checked_attr
)
1227 setup_diff_attr_check(&attr_diff_check
);
1229 one
->funcname_pattern_ident
= NULL
;
1231 if (!git_checkattr(one
->path
, 1, &attr_diff_check
)) {
1235 value
= attr_diff_check
.value
;
1236 if (ATTR_TRUE(value
))
1238 else if (ATTR_FALSE(value
))
1241 check_from_data
= 1;
1243 /* funcname pattern ident */
1244 if (ATTR_TRUE(value
) || ATTR_FALSE(value
) || ATTR_UNSET(value
))
1247 one
->funcname_pattern_ident
= value
;
1250 if (check_from_data
) {
1251 if (!one
->data
&& DIFF_FILE_VALID(one
))
1252 diff_populate_filespec(one
, 0);
1255 one
->is_binary
= buffer_is_binary(one
->data
, one
->size
);
1259 int diff_filespec_is_binary(struct diff_filespec
*one
)
1261 diff_filespec_check_attr(one
);
1262 return one
->is_binary
;
1265 static const char *funcname_pattern(const char *ident
)
1267 struct funcname_pattern
*pp
;
1269 for (pp
= funcname_pattern_list
; pp
; pp
= pp
->next
)
1270 if (!strcmp(ident
, pp
->name
))
1275 static struct builtin_funcname_pattern
{
1277 const char *pattern
;
1278 } builtin_funcname_pattern
[] = {
1279 { "java", "!^[ ]*\\(catch\\|do\\|for\\|if\\|instanceof\\|"
1280 "new\\|return\\|switch\\|throw\\|while\\)\n"
1282 "[A-Za-z_][A-Za-z_0-9]*\\)\\{2,\\}"
1284 { "tex", "^\\(\\\\\\(sub\\)*section{.*\\)$" },
1287 static const char *diff_funcname_pattern(struct diff_filespec
*one
)
1289 const char *ident
, *pattern
;
1292 diff_filespec_check_attr(one
);
1293 ident
= one
->funcname_pattern_ident
;
1297 * If the config file has "funcname.default" defined, that
1298 * regexp is used; otherwise NULL is returned and xemit uses
1299 * the built-in default.
1301 return funcname_pattern("default");
1303 /* Look up custom "funcname.$ident" regexp from config. */
1304 pattern
= funcname_pattern(ident
);
1309 * And define built-in fallback patterns here. Note that
1310 * these can be overridden by the user's config settings.
1312 for (i
= 0; i
< ARRAY_SIZE(builtin_funcname_pattern
); i
++)
1313 if (!strcmp(ident
, builtin_funcname_pattern
[i
].name
))
1314 return builtin_funcname_pattern
[i
].pattern
;
1319 static void builtin_diff(const char *name_a
,
1321 struct diff_filespec
*one
,
1322 struct diff_filespec
*two
,
1323 const char *xfrm_msg
,
1324 struct diff_options
*o
,
1325 int complete_rewrite
)
1329 char *a_one
, *b_two
;
1330 const char *set
= diff_get_color_opt(o
, DIFF_METAINFO
);
1331 const char *reset
= diff_get_color_opt(o
, DIFF_RESET
);
1333 a_one
= quote_two(o
->a_prefix
, name_a
+ (*name_a
== '/'));
1334 b_two
= quote_two(o
->b_prefix
, name_b
+ (*name_b
== '/'));
1335 lbl
[0] = DIFF_FILE_VALID(one
) ? a_one
: "/dev/null";
1336 lbl
[1] = DIFF_FILE_VALID(two
) ? b_two
: "/dev/null";
1337 printf("%sdiff --git %s %s%s\n", set
, a_one
, b_two
, reset
);
1338 if (lbl
[0][0] == '/') {
1340 printf("%snew file mode %06o%s\n", set
, two
->mode
, reset
);
1341 if (xfrm_msg
&& xfrm_msg
[0])
1342 printf("%s%s%s\n", set
, xfrm_msg
, reset
);
1344 else if (lbl
[1][0] == '/') {
1345 printf("%sdeleted file mode %06o%s\n", set
, one
->mode
, reset
);
1346 if (xfrm_msg
&& xfrm_msg
[0])
1347 printf("%s%s%s\n", set
, xfrm_msg
, reset
);
1350 if (one
->mode
!= two
->mode
) {
1351 printf("%sold mode %06o%s\n", set
, one
->mode
, reset
);
1352 printf("%snew mode %06o%s\n", set
, two
->mode
, reset
);
1354 if (xfrm_msg
&& xfrm_msg
[0])
1355 printf("%s%s%s\n", set
, xfrm_msg
, reset
);
1357 * we do not run diff between different kind
1360 if ((one
->mode
^ two
->mode
) & S_IFMT
)
1361 goto free_ab_and_return
;
1362 if (complete_rewrite
) {
1363 emit_rewrite_diff(name_a
, name_b
, one
, two
, o
);
1364 o
->found_changes
= 1;
1365 goto free_ab_and_return
;
1369 if (fill_mmfile(&mf1
, one
) < 0 || fill_mmfile(&mf2
, two
) < 0)
1370 die("unable to read files to diff");
1372 if (!DIFF_OPT_TST(o
, TEXT
) &&
1373 (diff_filespec_is_binary(one
) || diff_filespec_is_binary(two
))) {
1374 /* Quite common confusing case */
1375 if (mf1
.size
== mf2
.size
&&
1376 !memcmp(mf1
.ptr
, mf2
.ptr
, mf1
.size
))
1377 goto free_ab_and_return
;
1378 if (DIFF_OPT_TST(o
, BINARY
))
1379 emit_binary_diff(&mf1
, &mf2
);
1381 printf("Binary files %s and %s differ\n",
1383 o
->found_changes
= 1;
1386 /* Crazy xdl interfaces.. */
1387 const char *diffopts
= getenv("GIT_DIFF_OPTS");
1391 struct emit_callback ecbdata
;
1392 const char *funcname_pattern
;
1394 funcname_pattern
= diff_funcname_pattern(one
);
1395 if (!funcname_pattern
)
1396 funcname_pattern
= diff_funcname_pattern(two
);
1398 memset(&xecfg
, 0, sizeof(xecfg
));
1399 memset(&ecbdata
, 0, sizeof(ecbdata
));
1400 ecbdata
.label_path
= lbl
;
1401 ecbdata
.color_diff
= DIFF_OPT_TST(o
, COLOR_DIFF
);
1402 ecbdata
.found_changesp
= &o
->found_changes
;
1403 ecbdata
.ws_rule
= whitespace_rule(name_b
? name_b
: name_a
);
1404 xpp
.flags
= XDF_NEED_MINIMAL
| o
->xdl_opts
;
1405 xecfg
.ctxlen
= o
->context
;
1406 xecfg
.flags
= XDL_EMIT_FUNCNAMES
;
1407 if (funcname_pattern
)
1408 xdiff_set_find_func(&xecfg
, funcname_pattern
);
1411 else if (!prefixcmp(diffopts
, "--unified="))
1412 xecfg
.ctxlen
= strtoul(diffopts
+ 10, NULL
, 10);
1413 else if (!prefixcmp(diffopts
, "-u"))
1414 xecfg
.ctxlen
= strtoul(diffopts
+ 2, NULL
, 10);
1415 ecb
.outf
= xdiff_outf
;
1416 ecb
.priv
= &ecbdata
;
1417 ecbdata
.xm
.consume
= fn_out_consume
;
1418 if (DIFF_OPT_TST(o
, COLOR_DIFF_WORDS
))
1419 ecbdata
.diff_words
=
1420 xcalloc(1, sizeof(struct diff_words_data
));
1421 xdi_diff(&mf1
, &mf2
, &xpp
, &xecfg
, &ecb
);
1422 if (DIFF_OPT_TST(o
, COLOR_DIFF_WORDS
))
1423 free_diff_words_data(&ecbdata
);
1427 diff_free_filespec_data(one
);
1428 diff_free_filespec_data(two
);
1434 static void builtin_diffstat(const char *name_a
, const char *name_b
,
1435 struct diff_filespec
*one
,
1436 struct diff_filespec
*two
,
1437 struct diffstat_t
*diffstat
,
1438 struct diff_options
*o
,
1439 int complete_rewrite
)
1442 struct diffstat_file
*data
;
1444 data
= diffstat_add(diffstat
, name_a
, name_b
);
1447 data
->is_unmerged
= 1;
1450 if (complete_rewrite
) {
1451 diff_populate_filespec(one
, 0);
1452 diff_populate_filespec(two
, 0);
1453 data
->deleted
= count_lines(one
->data
, one
->size
);
1454 data
->added
= count_lines(two
->data
, two
->size
);
1455 goto free_and_return
;
1457 if (fill_mmfile(&mf1
, one
) < 0 || fill_mmfile(&mf2
, two
) < 0)
1458 die("unable to read files to diff");
1460 if (diff_filespec_is_binary(one
) || diff_filespec_is_binary(two
)) {
1461 data
->is_binary
= 1;
1462 data
->added
= mf2
.size
;
1463 data
->deleted
= mf1
.size
;
1465 /* Crazy xdl interfaces.. */
1470 memset(&xecfg
, 0, sizeof(xecfg
));
1471 xpp
.flags
= XDF_NEED_MINIMAL
| o
->xdl_opts
;
1472 ecb
.outf
= xdiff_outf
;
1473 ecb
.priv
= diffstat
;
1474 xdi_diff(&mf1
, &mf2
, &xpp
, &xecfg
, &ecb
);
1478 diff_free_filespec_data(one
);
1479 diff_free_filespec_data(two
);
1482 static void builtin_checkdiff(const char *name_a
, const char *name_b
,
1483 const char *attr_path
,
1484 struct diff_filespec
*one
,
1485 struct diff_filespec
*two
, struct diff_options
*o
)
1488 struct checkdiff_t data
;
1493 memset(&data
, 0, sizeof(data
));
1494 data
.xm
.consume
= checkdiff_consume
;
1495 data
.filename
= name_b
? name_b
: name_a
;
1497 data
.color_diff
= DIFF_OPT_TST(o
, COLOR_DIFF
);
1498 data
.ws_rule
= whitespace_rule(attr_path
);
1500 if (fill_mmfile(&mf1
, one
) < 0 || fill_mmfile(&mf2
, two
) < 0)
1501 die("unable to read files to diff");
1503 if (diff_filespec_is_binary(two
))
1504 goto free_and_return
;
1506 /* Crazy xdl interfaces.. */
1511 memset(&xecfg
, 0, sizeof(xecfg
));
1512 xpp
.flags
= XDF_NEED_MINIMAL
;
1513 ecb
.outf
= xdiff_outf
;
1515 xdi_diff(&mf1
, &mf2
, &xpp
, &xecfg
, &ecb
);
1518 diff_free_filespec_data(one
);
1519 diff_free_filespec_data(two
);
1521 DIFF_OPT_SET(o
, CHECK_FAILED
);
1524 struct diff_filespec
*alloc_filespec(const char *path
)
1526 int namelen
= strlen(path
);
1527 struct diff_filespec
*spec
= xmalloc(sizeof(*spec
) + namelen
+ 1);
1529 memset(spec
, 0, sizeof(*spec
));
1530 spec
->path
= (char *)(spec
+ 1);
1531 memcpy(spec
->path
, path
, namelen
+1);
1536 void free_filespec(struct diff_filespec
*spec
)
1538 if (!--spec
->count
) {
1539 diff_free_filespec_data(spec
);
1544 void fill_filespec(struct diff_filespec
*spec
, const unsigned char *sha1
,
1545 unsigned short mode
)
1548 spec
->mode
= canon_mode(mode
);
1549 hashcpy(spec
->sha1
, sha1
);
1550 spec
->sha1_valid
= !is_null_sha1(sha1
);
1555 * Given a name and sha1 pair, if the index tells us the file in
1556 * the work tree has that object contents, return true, so that
1557 * prepare_temp_file() does not have to inflate and extract.
1559 static int reuse_worktree_file(const char *name
, const unsigned char *sha1
, int want_file
)
1561 struct cache_entry
*ce
;
1565 /* We do not read the cache ourselves here, because the
1566 * benchmark with my previous version that always reads cache
1567 * shows that it makes things worse for diff-tree comparing
1568 * two linux-2.6 kernel trees in an already checked out work
1569 * tree. This is because most diff-tree comparisons deal with
1570 * only a small number of files, while reading the cache is
1571 * expensive for a large project, and its cost outweighs the
1572 * savings we get by not inflating the object to a temporary
1573 * file. Practically, this code only helps when we are used
1574 * by diff-cache --cached, which does read the cache before
1580 /* We want to avoid the working directory if our caller
1581 * doesn't need the data in a normal file, this system
1582 * is rather slow with its stat/open/mmap/close syscalls,
1583 * and the object is contained in a pack file. The pack
1584 * is probably already open and will be faster to obtain
1585 * the data through than the working directory. Loose
1586 * objects however would tend to be slower as they need
1587 * to be individually opened and inflated.
1589 if (!FAST_WORKING_DIRECTORY
&& !want_file
&& has_sha1_pack(sha1
, NULL
))
1593 pos
= cache_name_pos(name
, len
);
1596 ce
= active_cache
[pos
];
1599 * This is not the sha1 we are looking for, or
1600 * unreusable because it is not a regular file.
1602 if (hashcmp(sha1
, ce
->sha1
) || !S_ISREG(ce
->ce_mode
))
1606 * If ce matches the file in the work tree, we can reuse it.
1608 if (ce_uptodate(ce
) ||
1609 (!lstat(name
, &st
) && !ce_match_stat(ce
, &st
, 0)))
1615 static int populate_from_stdin(struct diff_filespec
*s
)
1620 strbuf_init(&buf
, 0);
1621 if (strbuf_read(&buf
, 0, 0) < 0)
1622 return error("error while reading from stdin %s",
1625 s
->should_munmap
= 0;
1626 s
->data
= strbuf_detach(&buf
, &size
);
1632 static int diff_populate_gitlink(struct diff_filespec
*s
, int size_only
)
1635 char *data
= xmalloc(100);
1636 len
= snprintf(data
, 100,
1637 "Subproject commit %s\n", sha1_to_hex(s
->sha1
));
1649 * While doing rename detection and pickaxe operation, we may need to
1650 * grab the data for the blob (or file) for our own in-core comparison.
1651 * diff_filespec has data and size fields for this purpose.
1653 int diff_populate_filespec(struct diff_filespec
*s
, int size_only
)
1656 if (!DIFF_FILE_VALID(s
))
1657 die("internal error: asking to populate invalid file.");
1658 if (S_ISDIR(s
->mode
))
1664 if (size_only
&& 0 < s
->size
)
1667 if (S_ISGITLINK(s
->mode
))
1668 return diff_populate_gitlink(s
, size_only
);
1670 if (!s
->sha1_valid
||
1671 reuse_worktree_file(s
->path
, s
->sha1
, 0)) {
1676 if (!strcmp(s
->path
, "-"))
1677 return populate_from_stdin(s
);
1679 if (lstat(s
->path
, &st
) < 0) {
1680 if (errno
== ENOENT
) {
1684 s
->data
= (char *)"";
1689 s
->size
= xsize_t(st
.st_size
);
1694 if (S_ISLNK(st
.st_mode
)) {
1696 s
->data
= xmalloc(s
->size
);
1698 ret
= readlink(s
->path
, s
->data
, s
->size
);
1705 fd
= open(s
->path
, O_RDONLY
);
1708 s
->data
= xmmap(NULL
, s
->size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
1710 s
->should_munmap
= 1;
1713 * Convert from working tree format to canonical git format
1715 strbuf_init(&buf
, 0);
1716 if (convert_to_git(s
->path
, s
->data
, s
->size
, &buf
, safe_crlf
)) {
1718 munmap(s
->data
, s
->size
);
1719 s
->should_munmap
= 0;
1720 s
->data
= strbuf_detach(&buf
, &size
);
1726 enum object_type type
;
1728 type
= sha1_object_info(s
->sha1
, &s
->size
);
1730 s
->data
= read_sha1_file(s
->sha1
, &type
, &s
->size
);
1737 void diff_free_filespec_blob(struct diff_filespec
*s
)
1741 else if (s
->should_munmap
)
1742 munmap(s
->data
, s
->size
);
1744 if (s
->should_free
|| s
->should_munmap
) {
1745 s
->should_free
= s
->should_munmap
= 0;
1750 void diff_free_filespec_data(struct diff_filespec
*s
)
1752 diff_free_filespec_blob(s
);
1757 static void prep_temp_blob(struct diff_tempfile
*temp
,
1760 const unsigned char *sha1
,
1765 fd
= git_mkstemp(temp
->tmp_path
, PATH_MAX
, ".diff_XXXXXX");
1767 die("unable to create temp-file: %s", strerror(errno
));
1768 if (write_in_full(fd
, blob
, size
) != size
)
1769 die("unable to write temp-file");
1771 temp
->name
= temp
->tmp_path
;
1772 strcpy(temp
->hex
, sha1_to_hex(sha1
));
1774 sprintf(temp
->mode
, "%06o", mode
);
1777 static void prepare_temp_file(const char *name
,
1778 struct diff_tempfile
*temp
,
1779 struct diff_filespec
*one
)
1781 if (!DIFF_FILE_VALID(one
)) {
1783 /* A '-' entry produces this for file-2, and
1784 * a '+' entry produces this for file-1.
1786 temp
->name
= "/dev/null";
1787 strcpy(temp
->hex
, ".");
1788 strcpy(temp
->mode
, ".");
1792 if (!one
->sha1_valid
||
1793 reuse_worktree_file(name
, one
->sha1
, 1)) {
1795 if (lstat(name
, &st
) < 0) {
1796 if (errno
== ENOENT
)
1797 goto not_a_valid_file
;
1798 die("stat(%s): %s", name
, strerror(errno
));
1800 if (S_ISLNK(st
.st_mode
)) {
1802 char buf
[PATH_MAX
+ 1]; /* ought to be SYMLINK_MAX */
1803 size_t sz
= xsize_t(st
.st_size
);
1804 if (sizeof(buf
) <= st
.st_size
)
1805 die("symlink too long: %s", name
);
1806 ret
= readlink(name
, buf
, sz
);
1808 die("readlink(%s)", name
);
1809 prep_temp_blob(temp
, buf
, sz
,
1811 one
->sha1
: null_sha1
),
1813 one
->mode
: S_IFLNK
));
1816 /* we can borrow from the file in the work tree */
1818 if (!one
->sha1_valid
)
1819 strcpy(temp
->hex
, sha1_to_hex(null_sha1
));
1821 strcpy(temp
->hex
, sha1_to_hex(one
->sha1
));
1822 /* Even though we may sometimes borrow the
1823 * contents from the work tree, we always want
1824 * one->mode. mode is trustworthy even when
1825 * !(one->sha1_valid), as long as
1826 * DIFF_FILE_VALID(one).
1828 sprintf(temp
->mode
, "%06o", one
->mode
);
1833 if (diff_populate_filespec(one
, 0))
1834 die("cannot read data blob for %s", one
->path
);
1835 prep_temp_blob(temp
, one
->data
, one
->size
,
1836 one
->sha1
, one
->mode
);
1840 static void remove_tempfile(void)
1844 for (i
= 0; i
< 2; i
++)
1845 if (diff_temp
[i
].name
== diff_temp
[i
].tmp_path
) {
1846 unlink(diff_temp
[i
].name
);
1847 diff_temp
[i
].name
= NULL
;
1851 static void remove_tempfile_on_signal(int signo
)
1854 signal(SIGINT
, SIG_DFL
);
1858 /* An external diff command takes:
1860 * diff-cmd name infile1 infile1-sha1 infile1-mode \
1861 * infile2 infile2-sha1 infile2-mode [ rename-to ]
1864 static void run_external_diff(const char *pgm
,
1867 struct diff_filespec
*one
,
1868 struct diff_filespec
*two
,
1869 const char *xfrm_msg
,
1870 int complete_rewrite
)
1872 const char *spawn_arg
[10];
1873 struct diff_tempfile
*temp
= diff_temp
;
1875 static int atexit_asked
= 0;
1876 const char *othername
;
1877 const char **arg
= &spawn_arg
[0];
1879 othername
= (other
? other
: name
);
1881 prepare_temp_file(name
, &temp
[0], one
);
1882 prepare_temp_file(othername
, &temp
[1], two
);
1883 if (! atexit_asked
&&
1884 (temp
[0].name
== temp
[0].tmp_path
||
1885 temp
[1].name
== temp
[1].tmp_path
)) {
1887 atexit(remove_tempfile
);
1889 signal(SIGINT
, remove_tempfile_on_signal
);
1895 *arg
++ = temp
[0].name
;
1896 *arg
++ = temp
[0].hex
;
1897 *arg
++ = temp
[0].mode
;
1898 *arg
++ = temp
[1].name
;
1899 *arg
++ = temp
[1].hex
;
1900 *arg
++ = temp
[1].mode
;
1911 retval
= run_command_v_opt(spawn_arg
, 0);
1914 fprintf(stderr
, "external diff died, stopping at %s.\n", name
);
1919 static const char *external_diff_attr(const char *name
)
1921 struct git_attr_check attr_diff_check
;
1926 setup_diff_attr_check(&attr_diff_check
);
1927 if (!git_checkattr(name
, 1, &attr_diff_check
)) {
1928 const char *value
= attr_diff_check
.value
;
1929 if (!ATTR_TRUE(value
) &&
1930 !ATTR_FALSE(value
) &&
1931 !ATTR_UNSET(value
)) {
1932 struct ll_diff_driver
*drv
;
1934 for (drv
= user_diff
; drv
; drv
= drv
->next
)
1935 if (!strcmp(drv
->name
, value
))
1942 static void run_diff_cmd(const char *pgm
,
1945 const char *attr_path
,
1946 struct diff_filespec
*one
,
1947 struct diff_filespec
*two
,
1948 const char *xfrm_msg
,
1949 struct diff_options
*o
,
1950 int complete_rewrite
)
1952 if (!DIFF_OPT_TST(o
, ALLOW_EXTERNAL
))
1955 const char *cmd
= external_diff_attr(attr_path
);
1961 run_external_diff(pgm
, name
, other
, one
, two
, xfrm_msg
,
1966 builtin_diff(name
, other
? other
: name
,
1967 one
, two
, xfrm_msg
, o
, complete_rewrite
);
1969 printf("* Unmerged path %s\n", name
);
1972 static void diff_fill_sha1_info(struct diff_filespec
*one
)
1974 if (DIFF_FILE_VALID(one
)) {
1975 if (!one
->sha1_valid
) {
1977 if (!strcmp(one
->path
, "-")) {
1978 hashcpy(one
->sha1
, null_sha1
);
1981 if (lstat(one
->path
, &st
) < 0)
1982 die("stat %s", one
->path
);
1983 if (index_path(one
->sha1
, one
->path
, &st
, 0))
1984 die("cannot hash %s\n", one
->path
);
1991 static int similarity_index(struct diff_filepair
*p
)
1993 return p
->score
* 100 / MAX_SCORE
;
1996 static void strip_prefix(int prefix_length
, const char **namep
, const char **otherp
)
1998 /* Strip the prefix but do not molest /dev/null and absolute paths */
1999 if (*namep
&& **namep
!= '/')
2000 *namep
+= prefix_length
;
2001 if (*otherp
&& **otherp
!= '/')
2002 *otherp
+= prefix_length
;
2005 static void run_diff(struct diff_filepair
*p
, struct diff_options
*o
)
2007 const char *pgm
= external_diff();
2010 struct diff_filespec
*one
= p
->one
;
2011 struct diff_filespec
*two
= p
->two
;
2014 const char *attr_path
;
2015 int complete_rewrite
= 0;
2017 name
= p
->one
->path
;
2018 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
2020 if (o
->prefix_length
)
2021 strip_prefix(o
->prefix_length
, &name
, &other
);
2023 if (DIFF_PAIR_UNMERGED(p
)) {
2024 run_diff_cmd(pgm
, name
, NULL
, attr_path
,
2025 NULL
, NULL
, NULL
, o
, 0);
2029 diff_fill_sha1_info(one
);
2030 diff_fill_sha1_info(two
);
2032 strbuf_init(&msg
, PATH_MAX
* 2 + 300);
2033 switch (p
->status
) {
2034 case DIFF_STATUS_COPIED
:
2035 strbuf_addf(&msg
, "similarity index %d%%", similarity_index(p
));
2036 strbuf_addstr(&msg
, "\ncopy from ");
2037 quote_c_style(name
, &msg
, NULL
, 0);
2038 strbuf_addstr(&msg
, "\ncopy to ");
2039 quote_c_style(other
, &msg
, NULL
, 0);
2040 strbuf_addch(&msg
, '\n');
2042 case DIFF_STATUS_RENAMED
:
2043 strbuf_addf(&msg
, "similarity index %d%%", similarity_index(p
));
2044 strbuf_addstr(&msg
, "\nrename from ");
2045 quote_c_style(name
, &msg
, NULL
, 0);
2046 strbuf_addstr(&msg
, "\nrename to ");
2047 quote_c_style(other
, &msg
, NULL
, 0);
2048 strbuf_addch(&msg
, '\n');
2050 case DIFF_STATUS_MODIFIED
:
2052 strbuf_addf(&msg
, "dissimilarity index %d%%\n",
2053 similarity_index(p
));
2054 complete_rewrite
= 1;
2063 if (hashcmp(one
->sha1
, two
->sha1
)) {
2064 int abbrev
= DIFF_OPT_TST(o
, FULL_INDEX
) ? 40 : DEFAULT_ABBREV
;
2066 if (DIFF_OPT_TST(o
, BINARY
)) {
2068 if ((!fill_mmfile(&mf
, one
) && diff_filespec_is_binary(one
)) ||
2069 (!fill_mmfile(&mf
, two
) && diff_filespec_is_binary(two
)))
2072 strbuf_addf(&msg
, "index %.*s..%.*s",
2073 abbrev
, sha1_to_hex(one
->sha1
),
2074 abbrev
, sha1_to_hex(two
->sha1
));
2075 if (one
->mode
== two
->mode
)
2076 strbuf_addf(&msg
, " %06o", one
->mode
);
2077 strbuf_addch(&msg
, '\n');
2081 strbuf_setlen(&msg
, msg
.len
- 1);
2082 xfrm_msg
= msg
.len
? msg
.buf
: NULL
;
2085 DIFF_FILE_VALID(one
) && DIFF_FILE_VALID(two
) &&
2086 (S_IFMT
& one
->mode
) != (S_IFMT
& two
->mode
)) {
2087 /* a filepair that changes between file and symlink
2088 * needs to be split into deletion and creation.
2090 struct diff_filespec
*null
= alloc_filespec(two
->path
);
2091 run_diff_cmd(NULL
, name
, other
, attr_path
,
2092 one
, null
, xfrm_msg
, o
, 0);
2094 null
= alloc_filespec(one
->path
);
2095 run_diff_cmd(NULL
, name
, other
, attr_path
,
2096 null
, two
, xfrm_msg
, o
, 0);
2100 run_diff_cmd(pgm
, name
, other
, attr_path
,
2101 one
, two
, xfrm_msg
, o
, complete_rewrite
);
2103 strbuf_release(&msg
);
2106 static void run_diffstat(struct diff_filepair
*p
, struct diff_options
*o
,
2107 struct diffstat_t
*diffstat
)
2111 int complete_rewrite
= 0;
2113 if (DIFF_PAIR_UNMERGED(p
)) {
2115 builtin_diffstat(p
->one
->path
, NULL
, NULL
, NULL
, diffstat
, o
, 0);
2119 name
= p
->one
->path
;
2120 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
2122 if (o
->prefix_length
)
2123 strip_prefix(o
->prefix_length
, &name
, &other
);
2125 diff_fill_sha1_info(p
->one
);
2126 diff_fill_sha1_info(p
->two
);
2128 if (p
->status
== DIFF_STATUS_MODIFIED
&& p
->score
)
2129 complete_rewrite
= 1;
2130 builtin_diffstat(name
, other
, p
->one
, p
->two
, diffstat
, o
, complete_rewrite
);
2133 static void run_checkdiff(struct diff_filepair
*p
, struct diff_options
*o
)
2137 const char *attr_path
;
2139 if (DIFF_PAIR_UNMERGED(p
)) {
2144 name
= p
->one
->path
;
2145 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
2146 attr_path
= other
? other
: name
;
2148 if (o
->prefix_length
)
2149 strip_prefix(o
->prefix_length
, &name
, &other
);
2151 diff_fill_sha1_info(p
->one
);
2152 diff_fill_sha1_info(p
->two
);
2154 builtin_checkdiff(name
, other
, attr_path
, p
->one
, p
->two
, o
);
2157 void diff_setup(struct diff_options
*options
)
2159 memset(options
, 0, sizeof(*options
));
2160 options
->line_termination
= '\n';
2161 options
->break_opt
= -1;
2162 options
->rename_limit
= -1;
2163 options
->dirstat_percent
= 3;
2164 options
->context
= 3;
2165 options
->msg_sep
= "";
2167 options
->change
= diff_change
;
2168 options
->add_remove
= diff_addremove
;
2169 if (diff_use_color_default
> 0)
2170 DIFF_OPT_SET(options
, COLOR_DIFF
);
2172 DIFF_OPT_CLR(options
, COLOR_DIFF
);
2173 options
->detect_rename
= diff_detect_rename_default
;
2175 options
->a_prefix
= "a/";
2176 options
->b_prefix
= "b/";
2179 int diff_setup_done(struct diff_options
*options
)
2183 if (options
->output_format
& DIFF_FORMAT_NAME
)
2185 if (options
->output_format
& DIFF_FORMAT_NAME_STATUS
)
2187 if (options
->output_format
& DIFF_FORMAT_CHECKDIFF
)
2189 if (options
->output_format
& DIFF_FORMAT_NO_OUTPUT
)
2192 die("--name-only, --name-status, --check and -s are mutually exclusive");
2194 if (DIFF_OPT_TST(options
, FIND_COPIES_HARDER
))
2195 options
->detect_rename
= DIFF_DETECT_COPY
;
2197 if (!DIFF_OPT_TST(options
, RELATIVE_NAME
))
2198 options
->prefix
= NULL
;
2199 if (options
->prefix
)
2200 options
->prefix_length
= strlen(options
->prefix
);
2202 options
->prefix_length
= 0;
2204 if (options
->output_format
& (DIFF_FORMAT_NAME
|
2205 DIFF_FORMAT_NAME_STATUS
|
2206 DIFF_FORMAT_CHECKDIFF
|
2207 DIFF_FORMAT_NO_OUTPUT
))
2208 options
->output_format
&= ~(DIFF_FORMAT_RAW
|
2209 DIFF_FORMAT_NUMSTAT
|
2210 DIFF_FORMAT_DIFFSTAT
|
2211 DIFF_FORMAT_SHORTSTAT
|
2212 DIFF_FORMAT_DIRSTAT
|
2213 DIFF_FORMAT_SUMMARY
|
2217 * These cases always need recursive; we do not drop caller-supplied
2218 * recursive bits for other formats here.
2220 if (options
->output_format
& (DIFF_FORMAT_PATCH
|
2221 DIFF_FORMAT_NUMSTAT
|
2222 DIFF_FORMAT_DIFFSTAT
|
2223 DIFF_FORMAT_SHORTSTAT
|
2224 DIFF_FORMAT_DIRSTAT
|
2225 DIFF_FORMAT_SUMMARY
|
2226 DIFF_FORMAT_CHECKDIFF
))
2227 DIFF_OPT_SET(options
, RECURSIVE
);
2229 * Also pickaxe would not work very well if you do not say recursive
2231 if (options
->pickaxe
)
2232 DIFF_OPT_SET(options
, RECURSIVE
);
2234 if (options
->detect_rename
&& options
->rename_limit
< 0)
2235 options
->rename_limit
= diff_rename_limit_default
;
2236 if (options
->setup
& DIFF_SETUP_USE_CACHE
) {
2238 /* read-cache does not die even when it fails
2239 * so it is safe for us to do this here. Also
2240 * it does not smudge active_cache or active_nr
2241 * when it fails, so we do not have to worry about
2242 * cleaning it up ourselves either.
2246 if (options
->abbrev
<= 0 || 40 < options
->abbrev
)
2247 options
->abbrev
= 40; /* full */
2250 * It does not make sense to show the first hit we happened
2251 * to have found. It does not make sense not to return with
2252 * exit code in such a case either.
2254 if (DIFF_OPT_TST(options
, QUIET
)) {
2255 options
->output_format
= DIFF_FORMAT_NO_OUTPUT
;
2256 DIFF_OPT_SET(options
, EXIT_WITH_STATUS
);
2260 * If we postprocess in diffcore, we cannot simply return
2261 * upon the first hit. We need to run diff as usual.
2263 if (options
->pickaxe
|| options
->filter
)
2264 DIFF_OPT_CLR(options
, QUIET
);
2269 static int opt_arg(const char *arg
, int arg_short
, const char *arg_long
, int *val
)
2279 if (c
== arg_short
) {
2283 if (val
&& isdigit(c
)) {
2285 int n
= strtoul(arg
, &end
, 10);
2296 eq
= strchr(arg
, '=');
2301 if (!len
|| strncmp(arg
, arg_long
, len
))
2306 if (!isdigit(*++eq
))
2308 n
= strtoul(eq
, &end
, 10);
2316 static int diff_scoreopt_parse(const char *opt
);
2318 int diff_opt_parse(struct diff_options
*options
, const char **av
, int ac
)
2320 const char *arg
= av
[0];
2322 /* Output format options */
2323 if (!strcmp(arg
, "-p") || !strcmp(arg
, "-u"))
2324 options
->output_format
|= DIFF_FORMAT_PATCH
;
2325 else if (opt_arg(arg
, 'U', "unified", &options
->context
))
2326 options
->output_format
|= DIFF_FORMAT_PATCH
;
2327 else if (!strcmp(arg
, "--raw"))
2328 options
->output_format
|= DIFF_FORMAT_RAW
;
2329 else if (!strcmp(arg
, "--patch-with-raw"))
2330 options
->output_format
|= DIFF_FORMAT_PATCH
| DIFF_FORMAT_RAW
;
2331 else if (!strcmp(arg
, "--numstat"))
2332 options
->output_format
|= DIFF_FORMAT_NUMSTAT
;
2333 else if (!strcmp(arg
, "--shortstat"))
2334 options
->output_format
|= DIFF_FORMAT_SHORTSTAT
;
2335 else if (opt_arg(arg
, 'X', "dirstat", &options
->dirstat_percent
))
2336 options
->output_format
|= DIFF_FORMAT_DIRSTAT
;
2337 else if (!strcmp(arg
, "--cumulative"))
2338 options
->output_format
|= DIFF_FORMAT_CUMULATIVE
;
2339 else if (!strcmp(arg
, "--check"))
2340 options
->output_format
|= DIFF_FORMAT_CHECKDIFF
;
2341 else if (!strcmp(arg
, "--summary"))
2342 options
->output_format
|= DIFF_FORMAT_SUMMARY
;
2343 else if (!strcmp(arg
, "--patch-with-stat"))
2344 options
->output_format
|= DIFF_FORMAT_PATCH
| DIFF_FORMAT_DIFFSTAT
;
2345 else if (!strcmp(arg
, "--name-only"))
2346 options
->output_format
|= DIFF_FORMAT_NAME
;
2347 else if (!strcmp(arg
, "--name-status"))
2348 options
->output_format
|= DIFF_FORMAT_NAME_STATUS
;
2349 else if (!strcmp(arg
, "-s"))
2350 options
->output_format
|= DIFF_FORMAT_NO_OUTPUT
;
2351 else if (!prefixcmp(arg
, "--stat")) {
2353 int width
= options
->stat_width
;
2354 int name_width
= options
->stat_name_width
;
2360 if (!prefixcmp(arg
, "-width="))
2361 width
= strtoul(arg
+ 7, &end
, 10);
2362 else if (!prefixcmp(arg
, "-name-width="))
2363 name_width
= strtoul(arg
+ 12, &end
, 10);
2366 width
= strtoul(arg
+1, &end
, 10);
2368 name_width
= strtoul(end
+1, &end
, 10);
2371 /* Important! This checks all the error cases! */
2374 options
->output_format
|= DIFF_FORMAT_DIFFSTAT
;
2375 options
->stat_name_width
= name_width
;
2376 options
->stat_width
= width
;
2379 /* renames options */
2380 else if (!prefixcmp(arg
, "-B")) {
2381 if ((options
->break_opt
= diff_scoreopt_parse(arg
)) == -1)
2384 else if (!prefixcmp(arg
, "-M")) {
2385 if ((options
->rename_score
= diff_scoreopt_parse(arg
)) == -1)
2387 options
->detect_rename
= DIFF_DETECT_RENAME
;
2389 else if (!prefixcmp(arg
, "-C")) {
2390 if (options
->detect_rename
== DIFF_DETECT_COPY
)
2391 DIFF_OPT_SET(options
, FIND_COPIES_HARDER
);
2392 if ((options
->rename_score
= diff_scoreopt_parse(arg
)) == -1)
2394 options
->detect_rename
= DIFF_DETECT_COPY
;
2396 else if (!strcmp(arg
, "--no-renames"))
2397 options
->detect_rename
= 0;
2398 else if (!strcmp(arg
, "--relative"))
2399 DIFF_OPT_SET(options
, RELATIVE_NAME
);
2400 else if (!prefixcmp(arg
, "--relative=")) {
2401 DIFF_OPT_SET(options
, RELATIVE_NAME
);
2402 options
->prefix
= arg
+ 11;
2406 else if (!strcmp(arg
, "-w") || !strcmp(arg
, "--ignore-all-space"))
2407 options
->xdl_opts
|= XDF_IGNORE_WHITESPACE
;
2408 else if (!strcmp(arg
, "-b") || !strcmp(arg
, "--ignore-space-change"))
2409 options
->xdl_opts
|= XDF_IGNORE_WHITESPACE_CHANGE
;
2410 else if (!strcmp(arg
, "--ignore-space-at-eol"))
2411 options
->xdl_opts
|= XDF_IGNORE_WHITESPACE_AT_EOL
;
2414 else if (!strcmp(arg
, "--binary")) {
2415 options
->output_format
|= DIFF_FORMAT_PATCH
;
2416 DIFF_OPT_SET(options
, BINARY
);
2418 else if (!strcmp(arg
, "--full-index"))
2419 DIFF_OPT_SET(options
, FULL_INDEX
);
2420 else if (!strcmp(arg
, "-a") || !strcmp(arg
, "--text"))
2421 DIFF_OPT_SET(options
, TEXT
);
2422 else if (!strcmp(arg
, "-R"))
2423 DIFF_OPT_SET(options
, REVERSE_DIFF
);
2424 else if (!strcmp(arg
, "--find-copies-harder"))
2425 DIFF_OPT_SET(options
, FIND_COPIES_HARDER
);
2426 else if (!strcmp(arg
, "--follow"))
2427 DIFF_OPT_SET(options
, FOLLOW_RENAMES
);
2428 else if (!strcmp(arg
, "--color"))
2429 DIFF_OPT_SET(options
, COLOR_DIFF
);
2430 else if (!strcmp(arg
, "--no-color"))
2431 DIFF_OPT_CLR(options
, COLOR_DIFF
);
2432 else if (!strcmp(arg
, "--color-words"))
2433 options
->flags
|= DIFF_OPT_COLOR_DIFF
| DIFF_OPT_COLOR_DIFF_WORDS
;
2434 else if (!strcmp(arg
, "--exit-code"))
2435 DIFF_OPT_SET(options
, EXIT_WITH_STATUS
);
2436 else if (!strcmp(arg
, "--quiet"))
2437 DIFF_OPT_SET(options
, QUIET
);
2438 else if (!strcmp(arg
, "--ext-diff"))
2439 DIFF_OPT_SET(options
, ALLOW_EXTERNAL
);
2440 else if (!strcmp(arg
, "--no-ext-diff"))
2441 DIFF_OPT_CLR(options
, ALLOW_EXTERNAL
);
2444 else if (!strcmp(arg
, "-z"))
2445 options
->line_termination
= 0;
2446 else if (!prefixcmp(arg
, "-l"))
2447 options
->rename_limit
= strtoul(arg
+2, NULL
, 10);
2448 else if (!prefixcmp(arg
, "-S"))
2449 options
->pickaxe
= arg
+ 2;
2450 else if (!strcmp(arg
, "--pickaxe-all"))
2451 options
->pickaxe_opts
= DIFF_PICKAXE_ALL
;
2452 else if (!strcmp(arg
, "--pickaxe-regex"))
2453 options
->pickaxe_opts
= DIFF_PICKAXE_REGEX
;
2454 else if (!prefixcmp(arg
, "-O"))
2455 options
->orderfile
= arg
+ 2;
2456 else if (!prefixcmp(arg
, "--diff-filter="))
2457 options
->filter
= arg
+ 14;
2458 else if (!strcmp(arg
, "--abbrev"))
2459 options
->abbrev
= DEFAULT_ABBREV
;
2460 else if (!prefixcmp(arg
, "--abbrev=")) {
2461 options
->abbrev
= strtoul(arg
+ 9, NULL
, 10);
2462 if (options
->abbrev
< MINIMUM_ABBREV
)
2463 options
->abbrev
= MINIMUM_ABBREV
;
2464 else if (40 < options
->abbrev
)
2465 options
->abbrev
= 40;
2467 else if (!prefixcmp(arg
, "--src-prefix="))
2468 options
->a_prefix
= arg
+ 13;
2469 else if (!prefixcmp(arg
, "--dst-prefix="))
2470 options
->b_prefix
= arg
+ 13;
2471 else if (!strcmp(arg
, "--no-prefix"))
2472 options
->a_prefix
= options
->b_prefix
= "";
2478 static int parse_num(const char **cp_p
)
2480 unsigned long num
, scale
;
2482 const char *cp
= *cp_p
;
2489 if ( !dot
&& ch
== '.' ) {
2492 } else if ( ch
== '%' ) {
2493 scale
= dot
? scale
*100 : 100;
2494 cp
++; /* % is always at the end */
2496 } else if ( ch
>= '0' && ch
<= '9' ) {
2497 if ( scale
< 100000 ) {
2499 num
= (num
*10) + (ch
-'0');
2508 /* user says num divided by scale and we say internally that
2509 * is MAX_SCORE * num / scale.
2511 return (int)((num
>= scale
) ? MAX_SCORE
: (MAX_SCORE
* num
/ scale
));
2514 static int diff_scoreopt_parse(const char *opt
)
2516 int opt1
, opt2
, cmd
;
2521 if (cmd
!= 'M' && cmd
!= 'C' && cmd
!= 'B')
2522 return -1; /* that is not a -M, -C nor -B option */
2524 opt1
= parse_num(&opt
);
2530 else if (*opt
!= '/')
2531 return -1; /* we expect -B80/99 or -B80 */
2534 opt2
= parse_num(&opt
);
2539 return opt1
| (opt2
<< 16);
2542 struct diff_queue_struct diff_queued_diff
;
2544 void diff_q(struct diff_queue_struct
*queue
, struct diff_filepair
*dp
)
2546 if (queue
->alloc
<= queue
->nr
) {
2547 queue
->alloc
= alloc_nr(queue
->alloc
);
2548 queue
->queue
= xrealloc(queue
->queue
,
2549 sizeof(dp
) * queue
->alloc
);
2551 queue
->queue
[queue
->nr
++] = dp
;
2554 struct diff_filepair
*diff_queue(struct diff_queue_struct
*queue
,
2555 struct diff_filespec
*one
,
2556 struct diff_filespec
*two
)
2558 struct diff_filepair
*dp
= xcalloc(1, sizeof(*dp
));
2566 void diff_free_filepair(struct diff_filepair
*p
)
2568 free_filespec(p
->one
);
2569 free_filespec(p
->two
);
2573 /* This is different from find_unique_abbrev() in that
2574 * it stuffs the result with dots for alignment.
2576 const char *diff_unique_abbrev(const unsigned char *sha1
, int len
)
2581 return sha1_to_hex(sha1
);
2583 abbrev
= find_unique_abbrev(sha1
, len
);
2584 abblen
= strlen(abbrev
);
2586 static char hex
[41];
2587 if (len
< abblen
&& abblen
<= len
+ 2)
2588 sprintf(hex
, "%s%.*s", abbrev
, len
+3-abblen
, "..");
2590 sprintf(hex
, "%s...", abbrev
);
2593 return sha1_to_hex(sha1
);
2596 static void diff_flush_raw(struct diff_filepair
*p
, struct diff_options
*opt
)
2598 int line_termination
= opt
->line_termination
;
2599 int inter_name_termination
= line_termination
? '\t' : '\0';
2601 if (!(opt
->output_format
& DIFF_FORMAT_NAME_STATUS
)) {
2602 printf(":%06o %06o %s ", p
->one
->mode
, p
->two
->mode
,
2603 diff_unique_abbrev(p
->one
->sha1
, opt
->abbrev
));
2604 printf("%s ", diff_unique_abbrev(p
->two
->sha1
, opt
->abbrev
));
2607 printf("%c%03d%c", p
->status
, similarity_index(p
),
2608 inter_name_termination
);
2610 printf("%c%c", p
->status
, inter_name_termination
);
2613 if (p
->status
== DIFF_STATUS_COPIED
||
2614 p
->status
== DIFF_STATUS_RENAMED
) {
2615 const char *name_a
, *name_b
;
2616 name_a
= p
->one
->path
;
2617 name_b
= p
->two
->path
;
2618 strip_prefix(opt
->prefix_length
, &name_a
, &name_b
);
2619 write_name_quoted(name_a
, stdout
, inter_name_termination
);
2620 write_name_quoted(name_b
, stdout
, line_termination
);
2622 const char *name_a
, *name_b
;
2623 name_a
= p
->one
->mode
? p
->one
->path
: p
->two
->path
;
2625 strip_prefix(opt
->prefix_length
, &name_a
, &name_b
);
2626 write_name_quoted(name_a
, stdout
, line_termination
);
2630 int diff_unmodified_pair(struct diff_filepair
*p
)
2632 /* This function is written stricter than necessary to support
2633 * the currently implemented transformers, but the idea is to
2634 * let transformers to produce diff_filepairs any way they want,
2635 * and filter and clean them up here before producing the output.
2637 struct diff_filespec
*one
= p
->one
, *two
= p
->two
;
2639 if (DIFF_PAIR_UNMERGED(p
))
2640 return 0; /* unmerged is interesting */
2642 /* deletion, addition, mode or type change
2643 * and rename are all interesting.
2645 if (DIFF_FILE_VALID(one
) != DIFF_FILE_VALID(two
) ||
2646 DIFF_PAIR_MODE_CHANGED(p
) ||
2647 strcmp(one
->path
, two
->path
))
2650 /* both are valid and point at the same path. that is, we are
2651 * dealing with a change.
2653 if (one
->sha1_valid
&& two
->sha1_valid
&&
2654 !hashcmp(one
->sha1
, two
->sha1
))
2655 return 1; /* no change */
2656 if (!one
->sha1_valid
&& !two
->sha1_valid
)
2657 return 1; /* both look at the same file on the filesystem. */
2661 static void diff_flush_patch(struct diff_filepair
*p
, struct diff_options
*o
)
2663 if (diff_unmodified_pair(p
))
2666 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
2667 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
2668 return; /* no tree diffs in patch format */
2673 static void diff_flush_stat(struct diff_filepair
*p
, struct diff_options
*o
,
2674 struct diffstat_t
*diffstat
)
2676 if (diff_unmodified_pair(p
))
2679 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
2680 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
2681 return; /* no tree diffs in patch format */
2683 run_diffstat(p
, o
, diffstat
);
2686 static void diff_flush_checkdiff(struct diff_filepair
*p
,
2687 struct diff_options
*o
)
2689 if (diff_unmodified_pair(p
))
2692 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
2693 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
2694 return; /* no tree diffs in patch format */
2696 run_checkdiff(p
, o
);
2699 int diff_queue_is_empty(void)
2701 struct diff_queue_struct
*q
= &diff_queued_diff
;
2703 for (i
= 0; i
< q
->nr
; i
++)
2704 if (!diff_unmodified_pair(q
->queue
[i
]))
2710 void diff_debug_filespec(struct diff_filespec
*s
, int x
, const char *one
)
2712 fprintf(stderr
, "queue[%d] %s (%s) %s %06o %s\n",
2715 DIFF_FILE_VALID(s
) ? "valid" : "invalid",
2717 s
->sha1_valid
? sha1_to_hex(s
->sha1
) : "");
2718 fprintf(stderr
, "queue[%d] %s size %lu flags %d\n",
2720 s
->size
, s
->xfrm_flags
);
2723 void diff_debug_filepair(const struct diff_filepair
*p
, int i
)
2725 diff_debug_filespec(p
->one
, i
, "one");
2726 diff_debug_filespec(p
->two
, i
, "two");
2727 fprintf(stderr
, "score %d, status %c rename_used %d broken %d\n",
2728 p
->score
, p
->status
? p
->status
: '?',
2729 p
->one
->rename_used
, p
->broken_pair
);
2732 void diff_debug_queue(const char *msg
, struct diff_queue_struct
*q
)
2736 fprintf(stderr
, "%s\n", msg
);
2737 fprintf(stderr
, "q->nr = %d\n", q
->nr
);
2738 for (i
= 0; i
< q
->nr
; i
++) {
2739 struct diff_filepair
*p
= q
->queue
[i
];
2740 diff_debug_filepair(p
, i
);
2745 static void diff_resolve_rename_copy(void)
2748 struct diff_filepair
*p
;
2749 struct diff_queue_struct
*q
= &diff_queued_diff
;
2751 diff_debug_queue("resolve-rename-copy", q
);
2753 for (i
= 0; i
< q
->nr
; i
++) {
2755 p
->status
= 0; /* undecided */
2756 if (DIFF_PAIR_UNMERGED(p
))
2757 p
->status
= DIFF_STATUS_UNMERGED
;
2758 else if (!DIFF_FILE_VALID(p
->one
))
2759 p
->status
= DIFF_STATUS_ADDED
;
2760 else if (!DIFF_FILE_VALID(p
->two
))
2761 p
->status
= DIFF_STATUS_DELETED
;
2762 else if (DIFF_PAIR_TYPE_CHANGED(p
))
2763 p
->status
= DIFF_STATUS_TYPE_CHANGED
;
2765 /* from this point on, we are dealing with a pair
2766 * whose both sides are valid and of the same type, i.e.
2767 * either in-place edit or rename/copy edit.
2769 else if (DIFF_PAIR_RENAME(p
)) {
2771 * A rename might have re-connected a broken
2772 * pair up, causing the pathnames to be the
2773 * same again. If so, that's not a rename at
2774 * all, just a modification..
2776 * Otherwise, see if this source was used for
2777 * multiple renames, in which case we decrement
2778 * the count, and call it a copy.
2780 if (!strcmp(p
->one
->path
, p
->two
->path
))
2781 p
->status
= DIFF_STATUS_MODIFIED
;
2782 else if (--p
->one
->rename_used
> 0)
2783 p
->status
= DIFF_STATUS_COPIED
;
2785 p
->status
= DIFF_STATUS_RENAMED
;
2787 else if (hashcmp(p
->one
->sha1
, p
->two
->sha1
) ||
2788 p
->one
->mode
!= p
->two
->mode
||
2789 is_null_sha1(p
->one
->sha1
))
2790 p
->status
= DIFF_STATUS_MODIFIED
;
2792 /* This is a "no-change" entry and should not
2793 * happen anymore, but prepare for broken callers.
2795 error("feeding unmodified %s to diffcore",
2797 p
->status
= DIFF_STATUS_UNKNOWN
;
2800 diff_debug_queue("resolve-rename-copy done", q
);
2803 static int check_pair_status(struct diff_filepair
*p
)
2805 switch (p
->status
) {
2806 case DIFF_STATUS_UNKNOWN
:
2809 die("internal error in diff-resolve-rename-copy");
2815 static void flush_one_pair(struct diff_filepair
*p
, struct diff_options
*opt
)
2817 int fmt
= opt
->output_format
;
2819 if (fmt
& DIFF_FORMAT_CHECKDIFF
)
2820 diff_flush_checkdiff(p
, opt
);
2821 else if (fmt
& (DIFF_FORMAT_RAW
| DIFF_FORMAT_NAME_STATUS
))
2822 diff_flush_raw(p
, opt
);
2823 else if (fmt
& DIFF_FORMAT_NAME
) {
2824 const char *name_a
, *name_b
;
2825 name_a
= p
->two
->path
;
2827 strip_prefix(opt
->prefix_length
, &name_a
, &name_b
);
2828 write_name_quoted(name_a
, stdout
, opt
->line_termination
);
2832 static void show_file_mode_name(const char *newdelete
, struct diff_filespec
*fs
)
2835 printf(" %s mode %06o ", newdelete
, fs
->mode
);
2837 printf(" %s ", newdelete
);
2838 write_name_quoted(fs
->path
, stdout
, '\n');
2842 static void show_mode_change(struct diff_filepair
*p
, int show_name
)
2844 if (p
->one
->mode
&& p
->two
->mode
&& p
->one
->mode
!= p
->two
->mode
) {
2845 printf(" mode change %06o => %06o%c", p
->one
->mode
, p
->two
->mode
,
2846 show_name
? ' ' : '\n');
2848 write_name_quoted(p
->two
->path
, stdout
, '\n');
2853 static void show_rename_copy(const char *renamecopy
, struct diff_filepair
*p
)
2855 char *names
= pprint_rename(p
->one
->path
, p
->two
->path
);
2857 printf(" %s %s (%d%%)\n", renamecopy
, names
, similarity_index(p
));
2859 show_mode_change(p
, 0);
2862 static void diff_summary(struct diff_filepair
*p
)
2865 case DIFF_STATUS_DELETED
:
2866 show_file_mode_name("delete", p
->one
);
2868 case DIFF_STATUS_ADDED
:
2869 show_file_mode_name("create", p
->two
);
2871 case DIFF_STATUS_COPIED
:
2872 show_rename_copy("copy", p
);
2874 case DIFF_STATUS_RENAMED
:
2875 show_rename_copy("rename", p
);
2879 fputs(" rewrite ", stdout
);
2880 write_name_quoted(p
->two
->path
, stdout
, ' ');
2881 printf("(%d%%)\n", similarity_index(p
));
2883 show_mode_change(p
, !p
->score
);
2889 struct xdiff_emit_state xm
;
2894 static int remove_space(char *line
, int len
)
2900 for (i
= 0; i
< len
; i
++)
2901 if (!isspace((c
= line
[i
])))
2907 static void patch_id_consume(void *priv
, char *line
, unsigned long len
)
2909 struct patch_id_t
*data
= priv
;
2912 /* Ignore line numbers when computing the SHA1 of the patch */
2913 if (!prefixcmp(line
, "@@ -"))
2916 new_len
= remove_space(line
, len
);
2918 SHA1_Update(data
->ctx
, line
, new_len
);
2919 data
->patchlen
+= new_len
;
2922 /* returns 0 upon success, and writes result into sha1 */
2923 static int diff_get_patch_id(struct diff_options
*options
, unsigned char *sha1
)
2925 struct diff_queue_struct
*q
= &diff_queued_diff
;
2928 struct patch_id_t data
;
2929 char buffer
[PATH_MAX
* 4 + 20];
2932 memset(&data
, 0, sizeof(struct patch_id_t
));
2934 data
.xm
.consume
= patch_id_consume
;
2936 for (i
= 0; i
< q
->nr
; i
++) {
2941 struct diff_filepair
*p
= q
->queue
[i
];
2944 memset(&xecfg
, 0, sizeof(xecfg
));
2946 return error("internal diff status error");
2947 if (p
->status
== DIFF_STATUS_UNKNOWN
)
2949 if (diff_unmodified_pair(p
))
2951 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
2952 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
2954 if (DIFF_PAIR_UNMERGED(p
))
2957 diff_fill_sha1_info(p
->one
);
2958 diff_fill_sha1_info(p
->two
);
2959 if (fill_mmfile(&mf1
, p
->one
) < 0 ||
2960 fill_mmfile(&mf2
, p
->two
) < 0)
2961 return error("unable to read files to diff");
2963 len1
= remove_space(p
->one
->path
, strlen(p
->one
->path
));
2964 len2
= remove_space(p
->two
->path
, strlen(p
->two
->path
));
2965 if (p
->one
->mode
== 0)
2966 len1
= snprintf(buffer
, sizeof(buffer
),
2967 "diff--gita/%.*sb/%.*s"
2974 len2
, p
->two
->path
);
2975 else if (p
->two
->mode
== 0)
2976 len1
= snprintf(buffer
, sizeof(buffer
),
2977 "diff--gita/%.*sb/%.*s"
2978 "deletedfilemode%06o"
2984 len1
, p
->one
->path
);
2986 len1
= snprintf(buffer
, sizeof(buffer
),
2987 "diff--gita/%.*sb/%.*s"
2993 len2
, p
->two
->path
);
2994 SHA1_Update(&ctx
, buffer
, len1
);
2996 xpp
.flags
= XDF_NEED_MINIMAL
;
2998 xecfg
.flags
= XDL_EMIT_FUNCNAMES
;
2999 ecb
.outf
= xdiff_outf
;
3001 xdi_diff(&mf1
, &mf2
, &xpp
, &xecfg
, &ecb
);
3004 SHA1_Final(sha1
, &ctx
);
3008 int diff_flush_patch_id(struct diff_options
*options
, unsigned char *sha1
)
3010 struct diff_queue_struct
*q
= &diff_queued_diff
;
3012 int result
= diff_get_patch_id(options
, sha1
);
3014 for (i
= 0; i
< q
->nr
; i
++)
3015 diff_free_filepair(q
->queue
[i
]);
3019 q
->nr
= q
->alloc
= 0;
3024 static int is_summary_empty(const struct diff_queue_struct
*q
)
3028 for (i
= 0; i
< q
->nr
; i
++) {
3029 const struct diff_filepair
*p
= q
->queue
[i
];
3031 switch (p
->status
) {
3032 case DIFF_STATUS_DELETED
:
3033 case DIFF_STATUS_ADDED
:
3034 case DIFF_STATUS_COPIED
:
3035 case DIFF_STATUS_RENAMED
:
3040 if (p
->one
->mode
&& p
->two
->mode
&&
3041 p
->one
->mode
!= p
->two
->mode
)
3049 void diff_flush(struct diff_options
*options
)
3051 struct diff_queue_struct
*q
= &diff_queued_diff
;
3052 int i
, output_format
= options
->output_format
;
3056 * Order: raw, stat, summary, patch
3057 * or: name/name-status/checkdiff (other bits clear)
3062 if (output_format
& (DIFF_FORMAT_RAW
|
3064 DIFF_FORMAT_NAME_STATUS
|
3065 DIFF_FORMAT_CHECKDIFF
)) {
3066 for (i
= 0; i
< q
->nr
; i
++) {
3067 struct diff_filepair
*p
= q
->queue
[i
];
3068 if (check_pair_status(p
))
3069 flush_one_pair(p
, options
);
3074 if (output_format
& (DIFF_FORMAT_DIFFSTAT
|DIFF_FORMAT_SHORTSTAT
|DIFF_FORMAT_NUMSTAT
|DIFF_FORMAT_DIRSTAT
)) {
3075 struct diffstat_t diffstat
;
3077 memset(&diffstat
, 0, sizeof(struct diffstat_t
));
3078 diffstat
.xm
.consume
= diffstat_consume
;
3079 for (i
= 0; i
< q
->nr
; i
++) {
3080 struct diff_filepair
*p
= q
->queue
[i
];
3081 if (check_pair_status(p
))
3082 diff_flush_stat(p
, options
, &diffstat
);
3084 if (output_format
& DIFF_FORMAT_DIRSTAT
)
3085 show_dirstat(&diffstat
, options
);
3086 if (output_format
& DIFF_FORMAT_NUMSTAT
)
3087 show_numstat(&diffstat
, options
);
3088 if (output_format
& DIFF_FORMAT_DIFFSTAT
)
3089 show_stats(&diffstat
, options
);
3090 if (output_format
& DIFF_FORMAT_SHORTSTAT
)
3091 show_shortstats(&diffstat
);
3092 free_diffstat_info(&diffstat
);
3096 if (output_format
& DIFF_FORMAT_SUMMARY
&& !is_summary_empty(q
)) {
3097 for (i
= 0; i
< q
->nr
; i
++)
3098 diff_summary(q
->queue
[i
]);
3102 if (output_format
& DIFF_FORMAT_PATCH
) {
3104 if (options
->stat_sep
) {
3105 /* attach patch instead of inline */
3106 fputs(options
->stat_sep
, stdout
);
3108 putchar(options
->line_termination
);
3112 for (i
= 0; i
< q
->nr
; i
++) {
3113 struct diff_filepair
*p
= q
->queue
[i
];
3114 if (check_pair_status(p
))
3115 diff_flush_patch(p
, options
);
3119 if (output_format
& DIFF_FORMAT_CALLBACK
)
3120 options
->format_callback(q
, options
, options
->format_callback_data
);
3122 for (i
= 0; i
< q
->nr
; i
++)
3123 diff_free_filepair(q
->queue
[i
]);
3127 q
->nr
= q
->alloc
= 0;
3130 static void diffcore_apply_filter(const char *filter
)
3133 struct diff_queue_struct
*q
= &diff_queued_diff
;
3134 struct diff_queue_struct outq
;
3136 outq
.nr
= outq
.alloc
= 0;
3141 if (strchr(filter
, DIFF_STATUS_FILTER_AON
)) {
3143 for (i
= found
= 0; !found
&& i
< q
->nr
; i
++) {
3144 struct diff_filepair
*p
= q
->queue
[i
];
3145 if (((p
->status
== DIFF_STATUS_MODIFIED
) &&
3147 strchr(filter
, DIFF_STATUS_FILTER_BROKEN
)) ||
3149 strchr(filter
, DIFF_STATUS_MODIFIED
)))) ||
3150 ((p
->status
!= DIFF_STATUS_MODIFIED
) &&
3151 strchr(filter
, p
->status
)))
3157 /* otherwise we will clear the whole queue
3158 * by copying the empty outq at the end of this
3159 * function, but first clear the current entries
3162 for (i
= 0; i
< q
->nr
; i
++)
3163 diff_free_filepair(q
->queue
[i
]);
3166 /* Only the matching ones */
3167 for (i
= 0; i
< q
->nr
; i
++) {
3168 struct diff_filepair
*p
= q
->queue
[i
];
3170 if (((p
->status
== DIFF_STATUS_MODIFIED
) &&
3172 strchr(filter
, DIFF_STATUS_FILTER_BROKEN
)) ||
3174 strchr(filter
, DIFF_STATUS_MODIFIED
)))) ||
3175 ((p
->status
!= DIFF_STATUS_MODIFIED
) &&
3176 strchr(filter
, p
->status
)))
3179 diff_free_filepair(p
);
3186 /* Check whether two filespecs with the same mode and size are identical */
3187 static int diff_filespec_is_identical(struct diff_filespec
*one
,
3188 struct diff_filespec
*two
)
3190 if (S_ISGITLINK(one
->mode
))
3192 if (diff_populate_filespec(one
, 0))
3194 if (diff_populate_filespec(two
, 0))
3196 return !memcmp(one
->data
, two
->data
, one
->size
);
3199 static void diffcore_skip_stat_unmatch(struct diff_options
*diffopt
)
3202 struct diff_queue_struct
*q
= &diff_queued_diff
;
3203 struct diff_queue_struct outq
;
3205 outq
.nr
= outq
.alloc
= 0;
3207 for (i
= 0; i
< q
->nr
; i
++) {
3208 struct diff_filepair
*p
= q
->queue
[i
];
3211 * 1. Entries that come from stat info dirtyness
3212 * always have both sides (iow, not create/delete),
3213 * one side of the object name is unknown, with
3214 * the same mode and size. Keep the ones that
3215 * do not match these criteria. They have real
3218 * 2. At this point, the file is known to be modified,
3219 * with the same mode and size, and the object
3220 * name of one side is unknown. Need to inspect
3221 * the identical contents.
3223 if (!DIFF_FILE_VALID(p
->one
) || /* (1) */
3224 !DIFF_FILE_VALID(p
->two
) ||
3225 (p
->one
->sha1_valid
&& p
->two
->sha1_valid
) ||
3226 (p
->one
->mode
!= p
->two
->mode
) ||
3227 diff_populate_filespec(p
->one
, 1) ||
3228 diff_populate_filespec(p
->two
, 1) ||
3229 (p
->one
->size
!= p
->two
->size
) ||
3230 !diff_filespec_is_identical(p
->one
, p
->two
)) /* (2) */
3234 * The caller can subtract 1 from skip_stat_unmatch
3235 * to determine how many paths were dirty only
3236 * due to stat info mismatch.
3238 if (!DIFF_OPT_TST(diffopt
, NO_INDEX
))
3239 diffopt
->skip_stat_unmatch
++;
3240 diff_free_filepair(p
);
3247 void diffcore_std(struct diff_options
*options
)
3249 if (DIFF_OPT_TST(options
, QUIET
))
3252 if (options
->skip_stat_unmatch
&& !DIFF_OPT_TST(options
, FIND_COPIES_HARDER
))
3253 diffcore_skip_stat_unmatch(options
);
3254 if (options
->break_opt
!= -1)
3255 diffcore_break(options
->break_opt
);
3256 if (options
->detect_rename
)
3257 diffcore_rename(options
);
3258 if (options
->break_opt
!= -1)
3259 diffcore_merge_broken();
3260 if (options
->pickaxe
)
3261 diffcore_pickaxe(options
->pickaxe
, options
->pickaxe_opts
);
3262 if (options
->orderfile
)
3263 diffcore_order(options
->orderfile
);
3264 diff_resolve_rename_copy();
3265 diffcore_apply_filter(options
->filter
);
3267 if (diff_queued_diff
.nr
)
3268 DIFF_OPT_SET(options
, HAS_CHANGES
);
3270 DIFF_OPT_CLR(options
, HAS_CHANGES
);
3273 int diff_result_code(struct diff_options
*opt
, int status
)
3276 if (!DIFF_OPT_TST(opt
, EXIT_WITH_STATUS
) &&
3277 !(opt
->output_format
& DIFF_FORMAT_CHECKDIFF
))
3279 if (DIFF_OPT_TST(opt
, EXIT_WITH_STATUS
) &&
3280 DIFF_OPT_TST(opt
, HAS_CHANGES
))
3282 if ((opt
->output_format
& DIFF_FORMAT_CHECKDIFF
) &&
3283 DIFF_OPT_TST(opt
, CHECK_FAILED
))
3288 void diff_addremove(struct diff_options
*options
,
3289 int addremove
, unsigned mode
,
3290 const unsigned char *sha1
,
3291 const char *base
, const char *path
)
3293 char concatpath
[PATH_MAX
];
3294 struct diff_filespec
*one
, *two
;
3296 /* This may look odd, but it is a preparation for
3297 * feeding "there are unchanged files which should
3298 * not produce diffs, but when you are doing copy
3299 * detection you would need them, so here they are"
3300 * entries to the diff-core. They will be prefixed
3301 * with something like '=' or '*' (I haven't decided
3302 * which but should not make any difference).
3303 * Feeding the same new and old to diff_change()
3304 * also has the same effect.
3305 * Before the final output happens, they are pruned after
3306 * merged into rename/copy pairs as appropriate.
3308 if (DIFF_OPT_TST(options
, REVERSE_DIFF
))
3309 addremove
= (addremove
== '+' ? '-' :
3310 addremove
== '-' ? '+' : addremove
);
3312 if (!path
) path
= "";
3313 sprintf(concatpath
, "%s%s", base
, path
);
3315 if (options
->prefix
&&
3316 strncmp(concatpath
, options
->prefix
, options
->prefix_length
))
3319 one
= alloc_filespec(concatpath
);
3320 two
= alloc_filespec(concatpath
);
3322 if (addremove
!= '+')
3323 fill_filespec(one
, sha1
, mode
);
3324 if (addremove
!= '-')
3325 fill_filespec(two
, sha1
, mode
);
3327 diff_queue(&diff_queued_diff
, one
, two
);
3328 DIFF_OPT_SET(options
, HAS_CHANGES
);
3331 void diff_change(struct diff_options
*options
,
3332 unsigned old_mode
, unsigned new_mode
,
3333 const unsigned char *old_sha1
,
3334 const unsigned char *new_sha1
,
3335 const char *base
, const char *path
)
3337 char concatpath
[PATH_MAX
];
3338 struct diff_filespec
*one
, *two
;
3340 if (DIFF_OPT_TST(options
, REVERSE_DIFF
)) {
3342 const unsigned char *tmp_c
;
3343 tmp
= old_mode
; old_mode
= new_mode
; new_mode
= tmp
;
3344 tmp_c
= old_sha1
; old_sha1
= new_sha1
; new_sha1
= tmp_c
;
3346 if (!path
) path
= "";
3347 sprintf(concatpath
, "%s%s", base
, path
);
3349 if (options
->prefix
&&
3350 strncmp(concatpath
, options
->prefix
, options
->prefix_length
))
3353 one
= alloc_filespec(concatpath
);
3354 two
= alloc_filespec(concatpath
);
3355 fill_filespec(one
, old_sha1
, old_mode
);
3356 fill_filespec(two
, new_sha1
, new_mode
);
3358 diff_queue(&diff_queued_diff
, one
, two
);
3359 DIFF_OPT_SET(options
, HAS_CHANGES
);
3362 void diff_unmerge(struct diff_options
*options
,
3364 unsigned mode
, const unsigned char *sha1
)
3366 struct diff_filespec
*one
, *two
;
3368 if (options
->prefix
&&
3369 strncmp(path
, options
->prefix
, options
->prefix_length
))
3372 one
= alloc_filespec(path
);
3373 two
= alloc_filespec(path
);
3374 fill_filespec(one
, sha1
, mode
);
3375 diff_queue(&diff_queued_diff
, one
, two
)->is_unmerged
= 1;