2 * Copyright (C) 2005 Junio C Hamano
9 #include "xdiff-interface.h"
12 #include "spawn-pipe.h"
14 #ifdef NO_FAST_WORKING_DIRECTORY
15 #define FAST_WORKING_DIRECTORY 0
17 #define FAST_WORKING_DIRECTORY 1
20 static int diff_detect_rename_default
;
21 static int diff_rename_limit_default
= -1;
22 static int diff_use_color_default
;
24 static char diff_colors
[][COLOR_MAXLEN
] = {
26 "", /* PLAIN (normal) */
27 "\033[1m", /* METAINFO (bold) */
28 "\033[36m", /* FRAGINFO (cyan) */
29 "\033[31m", /* OLD (red) */
30 "\033[32m", /* NEW (green) */
31 "\033[33m", /* COMMIT (yellow) */
32 "\033[41m", /* WHITESPACE (red background) */
35 static int parse_diff_color_slot(const char *var
, int ofs
)
37 if (!strcasecmp(var
+ofs
, "plain"))
39 if (!strcasecmp(var
+ofs
, "meta"))
41 if (!strcasecmp(var
+ofs
, "frag"))
43 if (!strcasecmp(var
+ofs
, "old"))
45 if (!strcasecmp(var
+ofs
, "new"))
47 if (!strcasecmp(var
+ofs
, "commit"))
49 if (!strcasecmp(var
+ofs
, "whitespace"))
50 return DIFF_WHITESPACE
;
51 die("bad config variable '%s'", var
);
54 static struct ll_diff_driver
{
56 struct ll_diff_driver
*next
;
58 } *user_diff
, **user_diff_tail
;
60 static void read_config_if_needed(void)
62 if (!user_diff_tail
) {
63 user_diff_tail
= &user_diff
;
64 git_config(git_diff_ui_config
);
69 * Currently there is only "diff.<drivername>.command" variable;
70 * because there are "diff.color.<slot>" variables, we are parsing
71 * this in a bit convoluted way to allow low level diff driver
74 static int parse_lldiff_command(const char *var
, const char *ep
, const char *value
)
78 struct ll_diff_driver
*drv
;
82 for (drv
= user_diff
; drv
; drv
= drv
->next
)
83 if (!strncmp(drv
->name
, name
, namelen
) && !drv
->name
[namelen
])
87 drv
= xcalloc(1, sizeof(struct ll_diff_driver
));
88 namebuf
= xmalloc(namelen
+ 1);
89 memcpy(namebuf
, name
, namelen
);
94 user_diff_tail
= &user_diff
;
95 *user_diff_tail
= drv
;
96 user_diff_tail
= &(drv
->next
);
100 return error("%s: lacks value", var
);
101 drv
->cmd
= strdup(value
);
106 * 'diff.<what>.funcname' attribute can be specified in the configuration
107 * to define a customized regexp to find the beginning of a function to
108 * be used for hunk header lines of "diff -p" style output.
110 static struct funcname_pattern
{
113 struct funcname_pattern
*next
;
114 } *funcname_pattern_list
;
116 static int parse_funcname_pattern(const char *var
, const char *ep
, const char *value
)
120 struct funcname_pattern
*pp
;
122 name
= var
+ 5; /* "diff." */
125 for (pp
= funcname_pattern_list
; pp
; pp
= pp
->next
)
126 if (!strncmp(pp
->name
, name
, namelen
) && !pp
->name
[namelen
])
130 pp
= xcalloc(1, sizeof(*pp
));
131 namebuf
= xmalloc(namelen
+ 1);
132 memcpy(namebuf
, name
, namelen
);
133 namebuf
[namelen
] = 0;
135 pp
->next
= funcname_pattern_list
;
136 funcname_pattern_list
= pp
;
140 pp
->pattern
= xstrdup(value
);
145 * These are to give UI layer defaults.
146 * The core-level commands such as git-diff-files should
147 * never be affected by the setting of diff.renames
148 * the user happens to have in the configuration file.
150 int git_diff_ui_config(const char *var
, const char *value
)
152 if (!strcmp(var
, "diff.renamelimit")) {
153 diff_rename_limit_default
= git_config_int(var
, value
);
156 if (!strcmp(var
, "diff.color") || !strcmp(var
, "color.diff")) {
157 diff_use_color_default
= git_config_colorbool(var
, value
);
160 if (!strcmp(var
, "diff.renames")) {
162 diff_detect_rename_default
= DIFF_DETECT_RENAME
;
163 else if (!strcasecmp(value
, "copies") ||
164 !strcasecmp(value
, "copy"))
165 diff_detect_rename_default
= DIFF_DETECT_COPY
;
166 else if (git_config_bool(var
,value
))
167 diff_detect_rename_default
= DIFF_DETECT_RENAME
;
170 if (!prefixcmp(var
, "diff.")) {
171 const char *ep
= strrchr(var
, '.');
174 if (!strcmp(ep
, ".command"))
175 return parse_lldiff_command(var
, ep
, value
);
176 if (!strcmp(ep
, ".funcname"))
177 return parse_funcname_pattern(var
, ep
, value
);
180 if (!prefixcmp(var
, "diff.color.") || !prefixcmp(var
, "color.diff.")) {
181 int slot
= parse_diff_color_slot(var
, 11);
182 color_parse(value
, var
, diff_colors
[slot
]);
186 return git_default_config(var
, value
);
189 static char *quote_one(const char *str
)
196 needlen
= quote_c_style(str
, NULL
, NULL
, 0);
199 xp
= xmalloc(needlen
+ 1);
200 quote_c_style(str
, xp
, NULL
, 0);
204 static char *quote_two(const char *one
, const char *two
)
206 int need_one
= quote_c_style(one
, NULL
, NULL
, 1);
207 int need_two
= quote_c_style(two
, NULL
, NULL
, 1);
210 if (need_one
+ need_two
) {
211 if (!need_one
) need_one
= strlen(one
);
212 if (!need_two
) need_one
= strlen(two
);
214 xp
= xmalloc(need_one
+ need_two
+ 3);
216 quote_c_style(one
, xp
+ 1, NULL
, 1);
217 quote_c_style(two
, xp
+ need_one
+ 1, NULL
, 1);
218 strcpy(xp
+ need_one
+ need_two
+ 1, "\"");
221 need_one
= strlen(one
);
222 need_two
= strlen(two
);
223 xp
= xmalloc(need_one
+ need_two
+ 1);
225 strcpy(xp
+ need_one
, two
);
229 static const char *external_diff(void)
231 static const char *external_diff_cmd
= NULL
;
232 static int done_preparing
= 0;
235 return external_diff_cmd
;
236 external_diff_cmd
= getenv("GIT_EXTERNAL_DIFF");
238 return external_diff_cmd
;
241 static struct diff_tempfile
{
242 const char *name
; /* filename external diff should read from */
245 char tmp_path
[PATH_MAX
];
248 static int count_lines(const char *data
, int size
)
250 int count
, ch
, completely_empty
= 1, nl_just_seen
= 0;
257 completely_empty
= 0;
261 completely_empty
= 0;
264 if (completely_empty
)
267 count
++; /* no trailing newline */
271 static void print_line_count(int count
)
281 printf("1,%d", count
);
286 static void copy_file(int prefix
, const char *data
, int size
,
287 const char *set
, const char *reset
)
289 int ch
, nl_just_seen
= 1;
298 fputs(reset
, stdout
);
304 printf("%s\n\\ No newline at end of file\n", reset
);
307 static void emit_rewrite_diff(const char *name_a
,
309 struct diff_filespec
*one
,
310 struct diff_filespec
*two
,
314 const char *name_a_tab
, *name_b_tab
;
315 const char *metainfo
= diff_get_color(color_diff
, DIFF_METAINFO
);
316 const char *fraginfo
= diff_get_color(color_diff
, DIFF_FRAGINFO
);
317 const char *old
= diff_get_color(color_diff
, DIFF_FILE_OLD
);
318 const char *new = diff_get_color(color_diff
, DIFF_FILE_NEW
);
319 const char *reset
= diff_get_color(color_diff
, DIFF_RESET
);
321 name_a
+= (*name_a
== '/');
322 name_b
+= (*name_b
== '/');
323 name_a_tab
= strchr(name_a
, ' ') ? "\t" : "";
324 name_b_tab
= strchr(name_b
, ' ') ? "\t" : "";
326 diff_populate_filespec(one
, 0);
327 diff_populate_filespec(two
, 0);
328 lc_a
= count_lines(one
->data
, one
->size
);
329 lc_b
= count_lines(two
->data
, two
->size
);
330 printf("%s--- a/%s%s%s\n%s+++ b/%s%s%s\n%s@@ -",
331 metainfo
, name_a
, name_a_tab
, reset
,
332 metainfo
, name_b
, name_b_tab
, reset
, fraginfo
);
333 print_line_count(lc_a
);
335 print_line_count(lc_b
);
336 printf(" @@%s\n", reset
);
338 copy_file('-', one
->data
, one
->size
, old
, reset
);
340 copy_file('+', two
->data
, two
->size
, new, reset
);
343 static int fill_mmfile(mmfile_t
*mf
, struct diff_filespec
*one
)
345 if (!DIFF_FILE_VALID(one
)) {
346 mf
->ptr
= (char *)""; /* does not matter */
350 else if (diff_populate_filespec(one
, 0))
353 mf
->size
= one
->size
;
357 struct diff_words_buffer
{
360 long current
; /* output pointer */
361 int suppressed_newline
;
364 static void diff_words_append(char *line
, unsigned long len
,
365 struct diff_words_buffer
*buffer
)
367 if (buffer
->text
.size
+ len
> buffer
->alloc
) {
368 buffer
->alloc
= (buffer
->text
.size
+ len
) * 3 / 2;
369 buffer
->text
.ptr
= xrealloc(buffer
->text
.ptr
, buffer
->alloc
);
373 memcpy(buffer
->text
.ptr
+ buffer
->text
.size
, line
, len
);
374 buffer
->text
.size
+= len
;
377 struct diff_words_data
{
378 struct xdiff_emit_state xm
;
379 struct diff_words_buffer minus
, plus
;
382 static void print_word(struct diff_words_buffer
*buffer
, int len
, int color
,
383 int suppress_newline
)
391 ptr
= buffer
->text
.ptr
+ buffer
->current
;
392 buffer
->current
+= len
;
394 if (ptr
[len
- 1] == '\n') {
399 fputs(diff_get_color(1, color
), stdout
);
400 fwrite(ptr
, len
, 1, stdout
);
401 fputs(diff_get_color(1, DIFF_RESET
), stdout
);
404 if (suppress_newline
)
405 buffer
->suppressed_newline
= 1;
411 static void fn_out_diff_words_aux(void *priv
, char *line
, unsigned long len
)
413 struct diff_words_data
*diff_words
= priv
;
415 if (diff_words
->minus
.suppressed_newline
) {
418 diff_words
->minus
.suppressed_newline
= 0;
424 print_word(&diff_words
->minus
, len
, DIFF_FILE_OLD
, 1);
427 print_word(&diff_words
->plus
, len
, DIFF_FILE_NEW
, 0);
430 print_word(&diff_words
->plus
, len
, DIFF_PLAIN
, 0);
431 diff_words
->minus
.current
+= len
;
436 /* this executes the word diff on the accumulated buffers */
437 static void diff_words_show(struct diff_words_data
*diff_words
)
442 mmfile_t minus
, plus
;
445 memset(&xecfg
, 0, sizeof(xecfg
));
446 minus
.size
= diff_words
->minus
.text
.size
;
447 minus
.ptr
= xmalloc(minus
.size
);
448 memcpy(minus
.ptr
, diff_words
->minus
.text
.ptr
, minus
.size
);
449 for (i
= 0; i
< minus
.size
; i
++)
450 if (isspace(minus
.ptr
[i
]))
452 diff_words
->minus
.current
= 0;
454 plus
.size
= diff_words
->plus
.text
.size
;
455 plus
.ptr
= xmalloc(plus
.size
);
456 memcpy(plus
.ptr
, diff_words
->plus
.text
.ptr
, plus
.size
);
457 for (i
= 0; i
< plus
.size
; i
++)
458 if (isspace(plus
.ptr
[i
]))
460 diff_words
->plus
.current
= 0;
462 xpp
.flags
= XDF_NEED_MINIMAL
;
463 xecfg
.ctxlen
= diff_words
->minus
.alloc
+ diff_words
->plus
.alloc
;
464 ecb
.outf
= xdiff_outf
;
465 ecb
.priv
= diff_words
;
466 diff_words
->xm
.consume
= fn_out_diff_words_aux
;
467 xdl_diff(&minus
, &plus
, &xpp
, &xecfg
, &ecb
);
471 diff_words
->minus
.text
.size
= diff_words
->plus
.text
.size
= 0;
473 if (diff_words
->minus
.suppressed_newline
) {
475 diff_words
->minus
.suppressed_newline
= 0;
479 struct emit_callback
{
480 struct xdiff_emit_state xm
;
481 int nparents
, color_diff
;
482 const char **label_path
;
483 struct diff_words_data
*diff_words
;
487 static void free_diff_words_data(struct emit_callback
*ecbdata
)
489 if (ecbdata
->diff_words
) {
491 if (ecbdata
->diff_words
->minus
.text
.size
||
492 ecbdata
->diff_words
->plus
.text
.size
)
493 diff_words_show(ecbdata
->diff_words
);
495 if (ecbdata
->diff_words
->minus
.text
.ptr
)
496 free (ecbdata
->diff_words
->minus
.text
.ptr
);
497 if (ecbdata
->diff_words
->plus
.text
.ptr
)
498 free (ecbdata
->diff_words
->plus
.text
.ptr
);
499 free(ecbdata
->diff_words
);
500 ecbdata
->diff_words
= NULL
;
504 const char *diff_get_color(int diff_use_color
, enum color_diff ix
)
507 return diff_colors
[ix
];
511 static void emit_line(const char *set
, const char *reset
, const char *line
, int len
)
513 if (len
> 0 && line
[len
-1] == '\n')
516 fwrite(line
, len
, 1, stdout
);
520 static void emit_line_with_ws(int nparents
,
521 const char *set
, const char *reset
, const char *ws
,
522 const char *line
, int len
)
525 int last_tab_in_indent
= -1;
526 int last_space_in_indent
= -1;
529 int need_highlight_leading_space
= 0;
530 /* The line is a newly added line. Does it have funny leading
531 * whitespaces? In indent, SP should never precede a TAB.
533 for (i
= col0
; i
< len
; i
++) {
534 if (line
[i
] == '\t') {
535 last_tab_in_indent
= i
;
536 if (0 <= last_space_in_indent
)
537 need_highlight_leading_space
= 1;
539 else if (line
[i
] == ' ')
540 last_space_in_indent
= i
;
545 fwrite(line
, col0
, 1, stdout
);
546 fputs(reset
, stdout
);
547 if (((i
== len
) || line
[i
] == '\n') && i
!= col0
) {
548 /* The whole line was indent */
549 emit_line(ws
, reset
, line
+ col0
, len
- col0
);
553 if (need_highlight_leading_space
) {
554 while (i
< last_tab_in_indent
) {
555 if (line
[i
] == ' ') {
558 fputs(reset
, stdout
);
566 if (line
[tail
] == '\n' && i
< tail
)
569 if (!isspace(line
[tail
]))
573 if ((i
< tail
&& line
[tail
+ 1] != '\n')) {
574 /* This has whitespace between tail+1..len */
576 fwrite(line
+ i
, tail
- i
+ 1, 1, stdout
);
577 fputs(reset
, stdout
);
578 emit_line(ws
, reset
, line
+ tail
+ 1, len
- tail
- 1);
581 emit_line(set
, reset
, line
+ i
, len
- i
);
584 static void emit_add_line(const char *reset
, struct emit_callback
*ecbdata
, const char *line
, int len
)
586 const char *ws
= diff_get_color(ecbdata
->color_diff
, DIFF_WHITESPACE
);
587 const char *set
= diff_get_color(ecbdata
->color_diff
, DIFF_FILE_NEW
);
590 emit_line(set
, reset
, line
, len
);
592 emit_line_with_ws(ecbdata
->nparents
, set
, reset
, ws
,
596 static void fn_out_consume(void *priv
, char *line
, unsigned long len
)
600 struct emit_callback
*ecbdata
= priv
;
601 const char *set
= diff_get_color(ecbdata
->color_diff
, DIFF_METAINFO
);
602 const char *reset
= diff_get_color(ecbdata
->color_diff
, DIFF_RESET
);
604 *(ecbdata
->found_changesp
) = 1;
606 if (ecbdata
->label_path
[0]) {
607 const char *name_a_tab
, *name_b_tab
;
609 name_a_tab
= strchr(ecbdata
->label_path
[0], ' ') ? "\t" : "";
610 name_b_tab
= strchr(ecbdata
->label_path
[1], ' ') ? "\t" : "";
612 printf("%s--- %s%s%s\n",
613 set
, ecbdata
->label_path
[0], reset
, name_a_tab
);
614 printf("%s+++ %s%s%s\n",
615 set
, ecbdata
->label_path
[1], reset
, name_b_tab
);
616 ecbdata
->label_path
[0] = ecbdata
->label_path
[1] = NULL
;
619 /* This is not really necessary for now because
620 * this codepath only deals with two-way diffs.
622 for (i
= 0; i
< len
&& line
[i
] == '@'; i
++)
624 if (2 <= i
&& i
< len
&& line
[i
] == ' ') {
625 ecbdata
->nparents
= i
- 1;
626 emit_line(diff_get_color(ecbdata
->color_diff
, DIFF_FRAGINFO
),
631 if (len
< ecbdata
->nparents
) {
633 emit_line(reset
, reset
, line
, len
);
638 if (ecbdata
->diff_words
&& ecbdata
->nparents
!= 1)
639 /* fall back to normal diff */
640 free_diff_words_data(ecbdata
);
641 if (ecbdata
->diff_words
) {
642 if (line
[0] == '-') {
643 diff_words_append(line
, len
,
644 &ecbdata
->diff_words
->minus
);
646 } else if (line
[0] == '+') {
647 diff_words_append(line
, len
,
648 &ecbdata
->diff_words
->plus
);
651 if (ecbdata
->diff_words
->minus
.text
.size
||
652 ecbdata
->diff_words
->plus
.text
.size
)
653 diff_words_show(ecbdata
->diff_words
);
656 emit_line(set
, reset
, line
, len
);
659 for (i
= 0; i
< ecbdata
->nparents
&& len
; i
++) {
661 color
= DIFF_FILE_OLD
;
662 else if (line
[i
] == '+')
663 color
= DIFF_FILE_NEW
;
666 if (color
!= DIFF_FILE_NEW
) {
667 emit_line(diff_get_color(ecbdata
->color_diff
, color
),
671 emit_add_line(reset
, ecbdata
, line
, len
);
674 static char *pprint_rename(const char *a
, const char *b
)
679 int pfx_length
, sfx_length
;
680 int len_a
= strlen(a
);
681 int len_b
= strlen(b
);
682 int qlen_a
= quote_c_style(a
, NULL
, NULL
, 0);
683 int qlen_b
= quote_c_style(b
, NULL
, NULL
, 0);
685 if (qlen_a
|| qlen_b
) {
686 if (qlen_a
) len_a
= qlen_a
;
687 if (qlen_b
) len_b
= qlen_b
;
688 name
= xmalloc( len_a
+ len_b
+ 5 );
690 quote_c_style(a
, name
, NULL
, 0);
692 memcpy(name
, a
, len_a
);
693 memcpy(name
+ len_a
, " => ", 4);
695 quote_c_style(b
, name
+ len_a
+ 4, NULL
, 0);
697 memcpy(name
+ len_a
+ 4, b
, len_b
+ 1);
701 /* Find common prefix */
703 while (*old
&& *new && *old
== *new) {
705 pfx_length
= old
- a
+ 1;
710 /* Find common suffix */
714 while (a
<= old
&& b
<= new && *old
== *new) {
716 sfx_length
= len_a
- (old
- a
);
722 * pfx{mid-a => mid-b}sfx
723 * {pfx-a => pfx-b}sfx
724 * pfx{sfx-a => sfx-b}
727 if (pfx_length
+ sfx_length
) {
728 int a_midlen
= len_a
- pfx_length
- sfx_length
;
729 int b_midlen
= len_b
- pfx_length
- sfx_length
;
730 if (a_midlen
< 0) a_midlen
= 0;
731 if (b_midlen
< 0) b_midlen
= 0;
733 name
= xmalloc(pfx_length
+ a_midlen
+ b_midlen
+ sfx_length
+ 7);
734 sprintf(name
, "%.*s{%.*s => %.*s}%s",
736 a_midlen
, a
+ pfx_length
,
737 b_midlen
, b
+ pfx_length
,
738 a
+ len_a
- sfx_length
);
741 name
= xmalloc(len_a
+ len_b
+ 5);
742 sprintf(name
, "%s => %s", a
, b
);
748 struct xdiff_emit_state xm
;
752 struct diffstat_file
{
754 unsigned is_unmerged
:1;
755 unsigned is_binary
:1;
756 unsigned is_renamed
:1;
757 unsigned int added
, deleted
;
761 static struct diffstat_file
*diffstat_add(struct diffstat_t
*diffstat
,
765 struct diffstat_file
*x
;
766 x
= xcalloc(sizeof (*x
), 1);
767 if (diffstat
->nr
== diffstat
->alloc
) {
768 diffstat
->alloc
= alloc_nr(diffstat
->alloc
);
769 diffstat
->files
= xrealloc(diffstat
->files
,
770 diffstat
->alloc
* sizeof(x
));
772 diffstat
->files
[diffstat
->nr
++] = x
;
774 x
->name
= pprint_rename(name_a
, name_b
);
778 x
->name
= xstrdup(name_a
);
782 static void diffstat_consume(void *priv
, char *line
, unsigned long len
)
784 struct diffstat_t
*diffstat
= priv
;
785 struct diffstat_file
*x
= diffstat
->files
[diffstat
->nr
- 1];
789 else if (line
[0] == '-')
793 const char mime_boundary_leader
[] = "------------";
795 static int scale_linear(int it
, int width
, int max_change
)
798 * make sure that at least one '-' is printed if there were deletions,
799 * and likewise for '+'.
803 return ((it
- 1) * (width
- 1) + max_change
- 1) / (max_change
- 1);
806 static void show_name(const char *prefix
, const char *name
, int len
,
807 const char *reset
, const char *set
)
809 printf(" %s%s%-*s%s |", set
, prefix
, len
, name
, reset
);
812 static void show_graph(char ch
, int cnt
, const char *set
, const char *reset
)
822 static void show_stats(struct diffstat_t
* data
, struct diff_options
*options
)
824 int i
, len
, add
, del
, total
, adds
= 0, dels
= 0;
825 int max_change
= 0, max_len
= 0;
826 int total_files
= data
->nr
;
827 int width
, name_width
;
828 const char *reset
, *set
, *add_c
, *del_c
;
833 width
= options
->stat_width
? options
->stat_width
: 80;
834 name_width
= options
->stat_name_width
? options
->stat_name_width
: 50;
836 /* Sanity: give at least 5 columns to the graph,
837 * but leave at least 10 columns for the name.
839 if (width
< name_width
+ 15) {
840 if (name_width
<= 25)
841 width
= name_width
+ 15;
843 name_width
= width
- 15;
846 /* Find the longest filename and max number of changes */
847 reset
= diff_get_color(options
->color_diff
, DIFF_RESET
);
848 set
= diff_get_color(options
->color_diff
, DIFF_PLAIN
);
849 add_c
= diff_get_color(options
->color_diff
, DIFF_FILE_NEW
);
850 del_c
= diff_get_color(options
->color_diff
, DIFF_FILE_OLD
);
852 for (i
= 0; i
< data
->nr
; i
++) {
853 struct diffstat_file
*file
= data
->files
[i
];
854 int change
= file
->added
+ file
->deleted
;
856 if (!file
->is_renamed
) { /* renames are already quoted by pprint_rename */
857 len
= quote_c_style(file
->name
, NULL
, NULL
, 0);
859 char *qname
= xmalloc(len
+ 1);
860 quote_c_style(file
->name
, qname
, NULL
, 0);
866 len
= strlen(file
->name
);
870 if (file
->is_binary
|| file
->is_unmerged
)
872 if (max_change
< change
)
876 /* Compute the width of the graph part;
877 * 10 is for one blank at the beginning of the line plus
878 * " | count " between the name and the graph.
880 * From here on, name_width is the width of the name area,
881 * and width is the width of the graph area.
883 name_width
= (name_width
< max_len
) ? name_width
: max_len
;
884 if (width
< (name_width
+ 10) + max_change
)
885 width
= width
- (name_width
+ 10);
889 for (i
= 0; i
< data
->nr
; i
++) {
890 const char *prefix
= "";
891 char *name
= data
->files
[i
]->name
;
892 int added
= data
->files
[i
]->added
;
893 int deleted
= data
->files
[i
]->deleted
;
897 * "scale" the filename
900 name_len
= strlen(name
);
901 if (name_width
< name_len
) {
905 name
+= name_len
- len
;
906 slash
= strchr(name
, '/');
911 if (data
->files
[i
]->is_binary
) {
912 show_name(prefix
, name
, len
, reset
, set
);
914 printf("%s%d%s", del_c
, deleted
, reset
);
916 printf("%s%d%s", add_c
, added
, reset
);
919 goto free_diffstat_file
;
921 else if (data
->files
[i
]->is_unmerged
) {
922 show_name(prefix
, name
, len
, reset
, set
);
923 printf(" Unmerged\n");
924 goto free_diffstat_file
;
926 else if (!data
->files
[i
]->is_renamed
&&
927 (added
+ deleted
== 0)) {
929 goto free_diffstat_file
;
933 * scale the add/delete
941 if (width
<= max_change
) {
942 add
= scale_linear(add
, width
, max_change
);
943 del
= scale_linear(del
, width
, max_change
);
946 show_name(prefix
, name
, len
, reset
, set
);
947 printf("%5d ", added
+ deleted
);
948 show_graph('+', add
, add_c
, reset
);
949 show_graph('-', del
, del_c
, reset
);
952 free(data
->files
[i
]->name
);
953 free(data
->files
[i
]);
956 printf("%s %d files changed, %d insertions(+), %d deletions(-)%s\n",
957 set
, total_files
, adds
, dels
, reset
);
960 static void show_shortstats(struct diffstat_t
* data
)
962 int i
, adds
= 0, dels
= 0, total_files
= data
->nr
;
967 for (i
= 0; i
< data
->nr
; i
++) {
968 if (!data
->files
[i
]->is_binary
&&
969 !data
->files
[i
]->is_unmerged
) {
970 int added
= data
->files
[i
]->added
;
971 int deleted
= data
->files
[i
]->deleted
;
972 if (!data
->files
[i
]->is_renamed
&&
973 (added
+ deleted
== 0)) {
980 free(data
->files
[i
]->name
);
981 free(data
->files
[i
]);
985 printf(" %d files changed, %d insertions(+), %d deletions(-)\n",
986 total_files
, adds
, dels
);
989 static void show_numstat(struct diffstat_t
* data
, struct diff_options
*options
)
993 for (i
= 0; i
< data
->nr
; i
++) {
994 struct diffstat_file
*file
= data
->files
[i
];
999 printf("%d\t%d\t", file
->added
, file
->deleted
);
1000 if (options
->line_termination
&& !file
->is_renamed
&&
1001 quote_c_style(file
->name
, NULL
, NULL
, 0))
1002 quote_c_style(file
->name
, NULL
, stdout
, 0);
1004 fputs(file
->name
, stdout
);
1005 putchar(options
->line_termination
);
1009 struct checkdiff_t
{
1010 struct xdiff_emit_state xm
;
1011 const char *filename
;
1012 int lineno
, color_diff
;
1015 static void checkdiff_consume(void *priv
, char *line
, unsigned long len
)
1017 struct checkdiff_t
*data
= priv
;
1018 const char *ws
= diff_get_color(data
->color_diff
, DIFF_WHITESPACE
);
1019 const char *reset
= diff_get_color(data
->color_diff
, DIFF_RESET
);
1020 const char *set
= diff_get_color(data
->color_diff
, DIFF_FILE_NEW
);
1022 if (line
[0] == '+') {
1023 int i
, spaces
= 0, space_before_tab
= 0, white_space_at_end
= 0;
1025 /* check space before tab */
1026 for (i
= 1; i
< len
&& (line
[i
] == ' ' || line
[i
] == '\t'); i
++)
1029 if (line
[i
- 1] == '\t' && spaces
)
1030 space_before_tab
= 1;
1032 /* check white space at line end */
1033 if (line
[len
- 1] == '\n')
1035 if (isspace(line
[len
- 1]))
1036 white_space_at_end
= 1;
1038 if (space_before_tab
|| white_space_at_end
) {
1039 printf("%s:%d: %s", data
->filename
, data
->lineno
, ws
);
1040 if (space_before_tab
) {
1041 printf("space before tab");
1042 if (white_space_at_end
)
1045 if (white_space_at_end
)
1046 printf("white space at end");
1047 printf(":%s ", reset
);
1048 emit_line_with_ws(1, set
, reset
, ws
, line
, len
);
1052 } else if (line
[0] == ' ')
1054 else if (line
[0] == '@') {
1055 char *plus
= strchr(line
, '+');
1057 data
->lineno
= strtol(plus
, NULL
, 10);
1059 die("invalid diff");
1063 static unsigned char *deflate_it(char *data
,
1065 unsigned long *result_size
)
1068 unsigned char *deflated
;
1071 memset(&stream
, 0, sizeof(stream
));
1072 deflateInit(&stream
, zlib_compression_level
);
1073 bound
= deflateBound(&stream
, size
);
1074 deflated
= xmalloc(bound
);
1075 stream
.next_out
= deflated
;
1076 stream
.avail_out
= bound
;
1078 stream
.next_in
= (unsigned char *)data
;
1079 stream
.avail_in
= size
;
1080 while (deflate(&stream
, Z_FINISH
) == Z_OK
)
1082 deflateEnd(&stream
);
1083 *result_size
= stream
.total_out
;
1087 static void emit_binary_diff_body(mmfile_t
*one
, mmfile_t
*two
)
1093 unsigned long orig_size
;
1094 unsigned long delta_size
;
1095 unsigned long deflate_size
;
1096 unsigned long data_size
;
1098 /* We could do deflated delta, or we could do just deflated two,
1099 * whichever is smaller.
1102 deflated
= deflate_it(two
->ptr
, two
->size
, &deflate_size
);
1103 if (one
->size
&& two
->size
) {
1104 delta
= diff_delta(one
->ptr
, one
->size
,
1105 two
->ptr
, two
->size
,
1106 &delta_size
, deflate_size
);
1108 void *to_free
= delta
;
1109 orig_size
= delta_size
;
1110 delta
= deflate_it(delta
, delta_size
, &delta_size
);
1115 if (delta
&& delta_size
< deflate_size
) {
1116 printf("delta %lu\n", orig_size
);
1119 data_size
= delta_size
;
1122 printf("literal %lu\n", two
->size
);
1125 data_size
= deflate_size
;
1128 /* emit data encoded in base85 */
1131 int bytes
= (52 < data_size
) ? 52 : data_size
;
1135 line
[0] = bytes
+ 'A' - 1;
1137 line
[0] = bytes
- 26 + 'a' - 1;
1138 encode_85(line
+ 1, cp
, bytes
);
1139 cp
= (char *) cp
+ bytes
;
1146 static void emit_binary_diff(mmfile_t
*one
, mmfile_t
*two
)
1148 printf("GIT binary patch\n");
1149 emit_binary_diff_body(one
, two
);
1150 emit_binary_diff_body(two
, one
);
1153 static void setup_diff_attr_check(struct git_attr_check
*check
)
1155 static struct git_attr
*attr_diff
;
1158 attr_diff
= git_attr("diff", 4);
1160 check
[0].attr
= attr_diff
;
1163 static void diff_filespec_check_attr(struct diff_filespec
*one
)
1165 struct git_attr_check attr_diff_check
;
1166 int check_from_data
= 0;
1168 if (one
->checked_attr
)
1171 setup_diff_attr_check(&attr_diff_check
);
1173 one
->funcname_pattern_ident
= NULL
;
1175 if (!git_checkattr(one
->path
, 1, &attr_diff_check
)) {
1179 value
= attr_diff_check
.value
;
1180 if (ATTR_TRUE(value
))
1182 else if (ATTR_FALSE(value
))
1185 check_from_data
= 1;
1187 /* funcname pattern ident */
1188 if (ATTR_TRUE(value
) || ATTR_FALSE(value
) || ATTR_UNSET(value
))
1191 one
->funcname_pattern_ident
= value
;
1194 if (check_from_data
) {
1195 if (!one
->data
&& DIFF_FILE_VALID(one
))
1196 diff_populate_filespec(one
, 0);
1199 one
->is_binary
= buffer_is_binary(one
->data
, one
->size
);
1203 int diff_filespec_is_binary(struct diff_filespec
*one
)
1205 diff_filespec_check_attr(one
);
1206 return one
->is_binary
;
1209 static const char *funcname_pattern(const char *ident
)
1211 struct funcname_pattern
*pp
;
1213 read_config_if_needed();
1214 for (pp
= funcname_pattern_list
; pp
; pp
= pp
->next
)
1215 if (!strcmp(ident
, pp
->name
))
1220 static struct builtin_funcname_pattern
{
1222 const char *pattern
;
1223 } builtin_funcname_pattern
[] = {
1224 { "java", "!^[ ]*\\(catch\\|do\\|for\\|if\\|instanceof\\|"
1225 "new\\|return\\|switch\\|throw\\|while\\)\n"
1227 "[A-Za-z_][A-Za-z_0-9]*\\)\\{2,\\}"
1229 { "tex", "^\\(\\\\\\(sub\\)*section{.*\\)$" },
1232 static const char *diff_funcname_pattern(struct diff_filespec
*one
)
1234 const char *ident
, *pattern
;
1237 diff_filespec_check_attr(one
);
1238 ident
= one
->funcname_pattern_ident
;
1242 * If the config file has "funcname.default" defined, that
1243 * regexp is used; otherwise NULL is returned and xemit uses
1244 * the built-in default.
1246 return funcname_pattern("default");
1248 /* Look up custom "funcname.$ident" regexp from config. */
1249 pattern
= funcname_pattern(ident
);
1254 * And define built-in fallback patterns here. Note that
1255 * these can be overriden by the user's config settings.
1257 for (i
= 0; i
< ARRAY_SIZE(builtin_funcname_pattern
); i
++)
1258 if (!strcmp(ident
, builtin_funcname_pattern
[i
].name
))
1259 return builtin_funcname_pattern
[i
].pattern
;
1264 static void builtin_diff(const char *name_a
,
1266 struct diff_filespec
*one
,
1267 struct diff_filespec
*two
,
1268 const char *xfrm_msg
,
1269 struct diff_options
*o
,
1270 int complete_rewrite
)
1274 char *a_one
, *b_two
;
1275 const char *set
= diff_get_color(o
->color_diff
, DIFF_METAINFO
);
1276 const char *reset
= diff_get_color(o
->color_diff
, DIFF_RESET
);
1278 a_one
= quote_two("a/", name_a
+ (*name_a
== '/'));
1279 b_two
= quote_two("b/", name_b
+ (*name_b
== '/'));
1280 lbl
[0] = DIFF_FILE_VALID(one
) ? a_one
: "/dev/null";
1281 lbl
[1] = DIFF_FILE_VALID(two
) ? b_two
: "/dev/null";
1282 printf("%sdiff --git %s %s%s\n", set
, a_one
, b_two
, reset
);
1283 if (lbl
[0][0] == '/') {
1285 printf("%snew file mode %06o%s\n", set
, two
->mode
, reset
);
1286 if (xfrm_msg
&& xfrm_msg
[0])
1287 printf("%s%s%s\n", set
, xfrm_msg
, reset
);
1289 else if (lbl
[1][0] == '/') {
1290 printf("%sdeleted file mode %06o%s\n", set
, one
->mode
, reset
);
1291 if (xfrm_msg
&& xfrm_msg
[0])
1292 printf("%s%s%s\n", set
, xfrm_msg
, reset
);
1295 if (one
->mode
!= two
->mode
) {
1296 printf("%sold mode %06o%s\n", set
, one
->mode
, reset
);
1297 printf("%snew mode %06o%s\n", set
, two
->mode
, reset
);
1299 if (xfrm_msg
&& xfrm_msg
[0])
1300 printf("%s%s%s\n", set
, xfrm_msg
, reset
);
1302 * we do not run diff between different kind
1305 if ((one
->mode
^ two
->mode
) & S_IFMT
)
1306 goto free_ab_and_return
;
1307 if (complete_rewrite
) {
1308 emit_rewrite_diff(name_a
, name_b
, one
, two
,
1310 o
->found_changes
= 1;
1311 goto free_ab_and_return
;
1315 if (fill_mmfile(&mf1
, one
) < 0 || fill_mmfile(&mf2
, two
) < 0)
1316 die("unable to read files to diff");
1319 (diff_filespec_is_binary(one
) || diff_filespec_is_binary(two
))) {
1320 /* Quite common confusing case */
1321 if (mf1
.size
== mf2
.size
&&
1322 !memcmp(mf1
.ptr
, mf2
.ptr
, mf1
.size
))
1323 goto free_ab_and_return
;
1325 emit_binary_diff(&mf1
, &mf2
);
1327 printf("Binary files %s and %s differ\n",
1329 o
->found_changes
= 1;
1332 /* Crazy xdl interfaces.. */
1333 const char *diffopts
= getenv("GIT_DIFF_OPTS");
1337 struct emit_callback ecbdata
;
1338 const char *funcname_pattern
;
1340 funcname_pattern
= diff_funcname_pattern(one
);
1341 if (!funcname_pattern
)
1342 funcname_pattern
= diff_funcname_pattern(two
);
1344 memset(&xecfg
, 0, sizeof(xecfg
));
1345 memset(&ecbdata
, 0, sizeof(ecbdata
));
1346 ecbdata
.label_path
= lbl
;
1347 ecbdata
.color_diff
= o
->color_diff
;
1348 ecbdata
.found_changesp
= &o
->found_changes
;
1349 xpp
.flags
= XDF_NEED_MINIMAL
| o
->xdl_opts
;
1350 xecfg
.ctxlen
= o
->context
;
1351 xecfg
.flags
= XDL_EMIT_FUNCNAMES
;
1352 if (funcname_pattern
)
1353 xdiff_set_find_func(&xecfg
, funcname_pattern
);
1356 else if (!prefixcmp(diffopts
, "--unified="))
1357 xecfg
.ctxlen
= strtoul(diffopts
+ 10, NULL
, 10);
1358 else if (!prefixcmp(diffopts
, "-u"))
1359 xecfg
.ctxlen
= strtoul(diffopts
+ 2, NULL
, 10);
1360 ecb
.outf
= xdiff_outf
;
1361 ecb
.priv
= &ecbdata
;
1362 ecbdata
.xm
.consume
= fn_out_consume
;
1363 if (o
->color_diff_words
)
1364 ecbdata
.diff_words
=
1365 xcalloc(1, sizeof(struct diff_words_data
));
1366 xdl_diff(&mf1
, &mf2
, &xpp
, &xecfg
, &ecb
);
1367 if (o
->color_diff_words
)
1368 free_diff_words_data(&ecbdata
);
1372 diff_free_filespec_data(one
);
1373 diff_free_filespec_data(two
);
1379 static void builtin_diffstat(const char *name_a
, const char *name_b
,
1380 struct diff_filespec
*one
,
1381 struct diff_filespec
*two
,
1382 struct diffstat_t
*diffstat
,
1383 struct diff_options
*o
,
1384 int complete_rewrite
)
1387 struct diffstat_file
*data
;
1389 data
= diffstat_add(diffstat
, name_a
, name_b
);
1392 data
->is_unmerged
= 1;
1395 if (complete_rewrite
) {
1396 diff_populate_filespec(one
, 0);
1397 diff_populate_filespec(two
, 0);
1398 data
->deleted
= count_lines(one
->data
, one
->size
);
1399 data
->added
= count_lines(two
->data
, two
->size
);
1400 goto free_and_return
;
1402 if (fill_mmfile(&mf1
, one
) < 0 || fill_mmfile(&mf2
, two
) < 0)
1403 die("unable to read files to diff");
1405 if (diff_filespec_is_binary(one
) || diff_filespec_is_binary(two
)) {
1406 data
->is_binary
= 1;
1407 data
->added
= mf2
.size
;
1408 data
->deleted
= mf1
.size
;
1410 /* Crazy xdl interfaces.. */
1415 memset(&xecfg
, 0, sizeof(xecfg
));
1416 xpp
.flags
= XDF_NEED_MINIMAL
| o
->xdl_opts
;
1417 ecb
.outf
= xdiff_outf
;
1418 ecb
.priv
= diffstat
;
1419 xdl_diff(&mf1
, &mf2
, &xpp
, &xecfg
, &ecb
);
1423 diff_free_filespec_data(one
);
1424 diff_free_filespec_data(two
);
1427 static void builtin_checkdiff(const char *name_a
, const char *name_b
,
1428 struct diff_filespec
*one
,
1429 struct diff_filespec
*two
, struct diff_options
*o
)
1432 struct checkdiff_t data
;
1437 memset(&data
, 0, sizeof(data
));
1438 data
.xm
.consume
= checkdiff_consume
;
1439 data
.filename
= name_b
? name_b
: name_a
;
1441 data
.color_diff
= o
->color_diff
;
1443 if (fill_mmfile(&mf1
, one
) < 0 || fill_mmfile(&mf2
, two
) < 0)
1444 die("unable to read files to diff");
1446 if (diff_filespec_is_binary(two
))
1447 goto free_and_return
;
1449 /* Crazy xdl interfaces.. */
1454 memset(&xecfg
, 0, sizeof(xecfg
));
1455 xpp
.flags
= XDF_NEED_MINIMAL
;
1456 ecb
.outf
= xdiff_outf
;
1458 xdl_diff(&mf1
, &mf2
, &xpp
, &xecfg
, &ecb
);
1461 diff_free_filespec_data(one
);
1462 diff_free_filespec_data(two
);
1465 struct diff_filespec
*alloc_filespec(const char *path
)
1467 int namelen
= strlen(path
);
1468 struct diff_filespec
*spec
= xmalloc(sizeof(*spec
) + namelen
+ 1);
1470 memset(spec
, 0, sizeof(*spec
));
1471 spec
->path
= (char *)(spec
+ 1);
1472 memcpy(spec
->path
, path
, namelen
+1);
1476 void fill_filespec(struct diff_filespec
*spec
, const unsigned char *sha1
,
1477 unsigned short mode
)
1480 spec
->mode
= canon_mode(mode
);
1481 hashcpy(spec
->sha1
, sha1
);
1482 spec
->sha1_valid
= !is_null_sha1(sha1
);
1487 * Given a name and sha1 pair, if the index tells us the file in
1488 * the work tree has that object contents, return true, so that
1489 * prepare_temp_file() does not have to inflate and extract.
1491 static int reuse_worktree_file(const char *name
, const unsigned char *sha1
, int want_file
)
1493 struct cache_entry
*ce
;
1497 /* We do not read the cache ourselves here, because the
1498 * benchmark with my previous version that always reads cache
1499 * shows that it makes things worse for diff-tree comparing
1500 * two linux-2.6 kernel trees in an already checked out work
1501 * tree. This is because most diff-tree comparisons deal with
1502 * only a small number of files, while reading the cache is
1503 * expensive for a large project, and its cost outweighs the
1504 * savings we get by not inflating the object to a temporary
1505 * file. Practically, this code only helps when we are used
1506 * by diff-cache --cached, which does read the cache before
1512 /* We want to avoid the working directory if our caller
1513 * doesn't need the data in a normal file, this system
1514 * is rather slow with its stat/open/mmap/close syscalls,
1515 * and the object is contained in a pack file. The pack
1516 * is probably already open and will be faster to obtain
1517 * the data through than the working directory. Loose
1518 * objects however would tend to be slower as they need
1519 * to be individually opened and inflated.
1521 if (!FAST_WORKING_DIRECTORY
&& !want_file
&& has_sha1_pack(sha1
, NULL
))
1525 pos
= cache_name_pos(name
, len
);
1528 ce
= active_cache
[pos
];
1529 if ((lstat(name
, &st
) < 0) ||
1530 !S_ISREG(st
.st_mode
) || /* careful! */
1531 ce_match_stat(ce
, &st
, 0) ||
1532 hashcmp(sha1
, ce
->sha1
))
1534 /* we return 1 only when we can stat, it is a regular file,
1535 * stat information matches, and sha1 recorded in the cache
1536 * matches. I.e. we know the file in the work tree really is
1537 * the same as the <name, sha1> pair.
1542 static int populate_from_stdin(struct diff_filespec
*s
)
1544 #define INCREMENT 1024
1552 buf
= xrealloc(buf
, size
+ INCREMENT
);
1553 got
= xread(0, buf
+ size
, INCREMENT
);
1557 return error("error while reading from stdin %s",
1561 s
->should_munmap
= 0;
1568 static int diff_populate_gitlink(struct diff_filespec
*s
, int size_only
)
1571 char *data
= xmalloc(100);
1572 len
= snprintf(data
, 100,
1573 "Subproject commit %s\n", sha1_to_hex(s
->sha1
));
1585 * While doing rename detection and pickaxe operation, we may need to
1586 * grab the data for the blob (or file) for our own in-core comparison.
1587 * diff_filespec has data and size fields for this purpose.
1589 int diff_populate_filespec(struct diff_filespec
*s
, int size_only
)
1592 if (!DIFF_FILE_VALID(s
))
1593 die("internal error: asking to populate invalid file.");
1594 if (S_ISDIR(s
->mode
))
1600 if (size_only
&& 0 < s
->size
)
1603 if (S_ISGITLINK(s
->mode
))
1604 return diff_populate_gitlink(s
, size_only
);
1606 if (!s
->sha1_valid
||
1607 reuse_worktree_file(s
->path
, s
->sha1
, 0)) {
1613 if (!strcmp(s
->path
, "-"))
1614 return populate_from_stdin(s
);
1616 if (lstat(s
->path
, &st
) < 0) {
1617 if (errno
== ENOENT
) {
1621 s
->data
= (char *)"";
1626 s
->size
= xsize_t(st
.st_size
);
1631 if (S_ISLNK(st
.st_mode
)) {
1633 s
->data
= xmalloc(s
->size
);
1635 ret
= readlink(s
->path
, s
->data
, s
->size
);
1642 fd
= open(s
->path
, O_RDONLY
);
1645 s
->data
= xmmap(NULL
, s
->size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
1647 s
->should_munmap
= 1;
1650 * Convert from working tree format to canonical git format
1653 buf
= convert_to_git(s
->path
, s
->data
, &size
);
1655 munmap(s
->data
, s
->size
);
1656 s
->should_munmap
= 0;
1663 enum object_type type
;
1665 type
= sha1_object_info(s
->sha1
, &s
->size
);
1667 s
->data
= read_sha1_file(s
->sha1
, &type
, &s
->size
);
1674 void diff_free_filespec_data(struct diff_filespec
*s
)
1678 else if (s
->should_munmap
)
1679 munmap(s
->data
, s
->size
);
1681 if (s
->should_free
|| s
->should_munmap
) {
1682 s
->should_free
= s
->should_munmap
= 0;
1689 static void prep_temp_blob(struct diff_tempfile
*temp
,
1692 const unsigned char *sha1
,
1697 fd
= git_mkstemp(temp
->tmp_path
, PATH_MAX
, ".diff_XXXXXX");
1699 die("unable to create temp-file");
1700 if (write_in_full(fd
, blob
, size
) != size
)
1701 die("unable to write temp-file");
1703 temp
->name
= temp
->tmp_path
;
1704 strcpy(temp
->hex
, sha1_to_hex(sha1
));
1706 sprintf(temp
->mode
, "%06o", mode
);
1709 static void prepare_temp_file(const char *name
,
1710 struct diff_tempfile
*temp
,
1711 struct diff_filespec
*one
)
1713 if (!DIFF_FILE_VALID(one
)) {
1715 /* A '-' entry produces this for file-2, and
1716 * a '+' entry produces this for file-1.
1718 temp
->name
= "/dev/null";
1719 strcpy(temp
->hex
, ".");
1720 strcpy(temp
->mode
, ".");
1724 if (!one
->sha1_valid
||
1725 reuse_worktree_file(name
, one
->sha1
, 1)) {
1727 if (lstat(name
, &st
) < 0) {
1728 if (errno
== ENOENT
)
1729 goto not_a_valid_file
;
1730 die("stat(%s): %s", name
, strerror(errno
));
1732 if (S_ISLNK(st
.st_mode
)) {
1734 char buf
[PATH_MAX
+ 1]; /* ought to be SYMLINK_MAX */
1735 size_t sz
= xsize_t(st
.st_size
);
1736 if (sizeof(buf
) <= st
.st_size
)
1737 die("symlink too long: %s", name
);
1738 ret
= readlink(name
, buf
, sz
);
1740 die("readlink(%s)", name
);
1741 prep_temp_blob(temp
, buf
, sz
,
1743 one
->sha1
: null_sha1
),
1745 one
->mode
: S_IFLNK
));
1748 /* we can borrow from the file in the work tree */
1750 if (!one
->sha1_valid
)
1751 strcpy(temp
->hex
, sha1_to_hex(null_sha1
));
1753 strcpy(temp
->hex
, sha1_to_hex(one
->sha1
));
1754 /* Even though we may sometimes borrow the
1755 * contents from the work tree, we always want
1756 * one->mode. mode is trustworthy even when
1757 * !(one->sha1_valid), as long as
1758 * DIFF_FILE_VALID(one).
1760 sprintf(temp
->mode
, "%06o", one
->mode
);
1765 if (diff_populate_filespec(one
, 0))
1766 die("cannot read data blob for %s", one
->path
);
1767 prep_temp_blob(temp
, one
->data
, one
->size
,
1768 one
->sha1
, one
->mode
);
1772 static void remove_tempfile(void)
1776 for (i
= 0; i
< 2; i
++)
1777 if (diff_temp
[i
].name
== diff_temp
[i
].tmp_path
) {
1778 unlink(diff_temp
[i
].name
);
1779 diff_temp
[i
].name
= NULL
;
1783 static void remove_tempfile_on_signal(int signo
)
1786 signal(SIGINT
, SIG_DFL
);
1790 static int spawn_prog(const char *pgm
, const char **arg
)
1796 pid
= spawnvpe_pipe(pgm
, arg
, environ
, NULL
, NULL
);
1798 die("unable to fork");
1800 while (waitpid(pid
, &status
, 0) < 0) {
1806 /* Earlier we did not check the exit status because
1807 * diff exits non-zero if files are different, and
1808 * we are not interested in knowing that. It was a
1809 * mistake which made it harder to quit a diff-*
1810 * session that uses the git-apply-patch-script as
1811 * the GIT_EXTERNAL_DIFF. A custom GIT_EXTERNAL_DIFF
1812 * should also exit non-zero only when it wants to
1813 * abort the entire diff-* session.
1815 if (WIFEXITED(status
) && !WEXITSTATUS(status
))
1820 /* An external diff command takes:
1822 * diff-cmd name infile1 infile1-sha1 infile1-mode \
1823 * infile2 infile2-sha1 infile2-mode [ rename-to ]
1826 static void run_external_diff(const char *pgm
,
1829 struct diff_filespec
*one
,
1830 struct diff_filespec
*two
,
1831 const char *xfrm_msg
,
1832 int complete_rewrite
)
1834 const char *spawn_arg
[10];
1835 struct diff_tempfile
*temp
= diff_temp
;
1837 static int atexit_asked
= 0;
1838 const char *othername
;
1839 const char **arg
= &spawn_arg
[1];
1841 othername
= (other
? other
: name
);
1843 prepare_temp_file(name
, &temp
[0], one
);
1844 prepare_temp_file(othername
, &temp
[1], two
);
1845 if (! atexit_asked
&&
1846 (temp
[0].name
== temp
[0].tmp_path
||
1847 temp
[1].name
== temp
[1].tmp_path
)) {
1849 atexit(remove_tempfile
);
1851 signal(SIGINT
, remove_tempfile_on_signal
);
1856 *arg
++ = temp
[0].name
;
1857 *arg
++ = temp
[0].hex
;
1858 *arg
++ = temp
[0].mode
;
1859 *arg
++ = temp
[1].name
;
1860 *arg
++ = temp
[1].hex
;
1861 *arg
++ = temp
[1].mode
;
1870 retval
= spawn_prog(pgm
, spawn_arg
);
1873 fprintf(stderr
, "external diff died, stopping at %s.\n", name
);
1878 static const char *external_diff_attr(const char *name
)
1880 struct git_attr_check attr_diff_check
;
1882 setup_diff_attr_check(&attr_diff_check
);
1883 if (!git_checkattr(name
, 1, &attr_diff_check
)) {
1884 const char *value
= attr_diff_check
.value
;
1885 if (!ATTR_TRUE(value
) &&
1886 !ATTR_FALSE(value
) &&
1887 !ATTR_UNSET(value
)) {
1888 struct ll_diff_driver
*drv
;
1890 read_config_if_needed();
1891 for (drv
= user_diff
; drv
; drv
= drv
->next
)
1892 if (!strcmp(drv
->name
, value
))
1899 static void run_diff_cmd(const char *pgm
,
1902 struct diff_filespec
*one
,
1903 struct diff_filespec
*two
,
1904 const char *xfrm_msg
,
1905 struct diff_options
*o
,
1906 int complete_rewrite
)
1908 if (!o
->allow_external
)
1911 const char *cmd
= external_diff_attr(name
);
1917 run_external_diff(pgm
, name
, other
, one
, two
, xfrm_msg
,
1922 builtin_diff(name
, other
? other
: name
,
1923 one
, two
, xfrm_msg
, o
, complete_rewrite
);
1925 printf("* Unmerged path %s\n", name
);
1928 static void diff_fill_sha1_info(struct diff_filespec
*one
)
1930 if (DIFF_FILE_VALID(one
)) {
1931 if (!one
->sha1_valid
) {
1933 if (!strcmp(one
->path
, "-")) {
1934 hashcpy(one
->sha1
, null_sha1
);
1937 if (lstat(one
->path
, &st
) < 0)
1938 die("stat %s", one
->path
);
1939 if (index_path(one
->sha1
, one
->path
, &st
, 0))
1940 die("cannot hash %s\n", one
->path
);
1947 static int similarity_index(struct diff_filepair
*p
)
1949 return p
->score
* 100 / MAX_SCORE
;
1952 static void run_diff(struct diff_filepair
*p
, struct diff_options
*o
)
1954 const char *pgm
= external_diff();
1955 char msg
[PATH_MAX
*2+300], *xfrm_msg
;
1956 struct diff_filespec
*one
;
1957 struct diff_filespec
*two
;
1960 char *name_munged
, *other_munged
;
1961 int complete_rewrite
= 0;
1964 if (DIFF_PAIR_UNMERGED(p
)) {
1966 run_diff_cmd(pgm
, p
->one
->path
, NULL
, NULL
, NULL
, NULL
, o
, 0);
1970 name
= p
->one
->path
;
1971 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
1972 name_munged
= quote_one(name
);
1973 other_munged
= quote_one(other
);
1974 one
= p
->one
; two
= p
->two
;
1976 diff_fill_sha1_info(one
);
1977 diff_fill_sha1_info(two
);
1980 switch (p
->status
) {
1981 case DIFF_STATUS_COPIED
:
1982 len
+= snprintf(msg
+ len
, sizeof(msg
) - len
,
1983 "similarity index %d%%\n"
1986 similarity_index(p
), name_munged
, other_munged
);
1988 case DIFF_STATUS_RENAMED
:
1989 len
+= snprintf(msg
+ len
, sizeof(msg
) - len
,
1990 "similarity index %d%%\n"
1993 similarity_index(p
), name_munged
, other_munged
);
1995 case DIFF_STATUS_MODIFIED
:
1997 len
+= snprintf(msg
+ len
, sizeof(msg
) - len
,
1998 "dissimilarity index %d%%\n",
1999 similarity_index(p
));
2000 complete_rewrite
= 1;
2009 if (hashcmp(one
->sha1
, two
->sha1
)) {
2010 int abbrev
= o
->full_index
? 40 : DEFAULT_ABBREV
;
2014 if ((!fill_mmfile(&mf
, one
) && diff_filespec_is_binary(one
)) ||
2015 (!fill_mmfile(&mf
, two
) && diff_filespec_is_binary(two
)))
2018 len
+= snprintf(msg
+ len
, sizeof(msg
) - len
,
2020 abbrev
, sha1_to_hex(one
->sha1
),
2021 abbrev
, sha1_to_hex(two
->sha1
));
2022 if (one
->mode
== two
->mode
)
2023 len
+= snprintf(msg
+ len
, sizeof(msg
) - len
,
2024 " %06o", one
->mode
);
2025 len
+= snprintf(msg
+ len
, sizeof(msg
) - len
, "\n");
2030 xfrm_msg
= len
? msg
: NULL
;
2033 DIFF_FILE_VALID(one
) && DIFF_FILE_VALID(two
) &&
2034 (S_IFMT
& one
->mode
) != (S_IFMT
& two
->mode
)) {
2035 /* a filepair that changes between file and symlink
2036 * needs to be split into deletion and creation.
2038 struct diff_filespec
*null
= alloc_filespec(two
->path
);
2039 run_diff_cmd(NULL
, name
, other
, one
, null
, xfrm_msg
, o
, 0);
2041 null
= alloc_filespec(one
->path
);
2042 run_diff_cmd(NULL
, name
, other
, null
, two
, xfrm_msg
, o
, 0);
2046 run_diff_cmd(pgm
, name
, other
, one
, two
, xfrm_msg
, o
,
2053 static void run_diffstat(struct diff_filepair
*p
, struct diff_options
*o
,
2054 struct diffstat_t
*diffstat
)
2058 int complete_rewrite
= 0;
2060 if (DIFF_PAIR_UNMERGED(p
)) {
2062 builtin_diffstat(p
->one
->path
, NULL
, NULL
, NULL
, diffstat
, o
, 0);
2066 name
= p
->one
->path
;
2067 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
2069 diff_fill_sha1_info(p
->one
);
2070 diff_fill_sha1_info(p
->two
);
2072 if (p
->status
== DIFF_STATUS_MODIFIED
&& p
->score
)
2073 complete_rewrite
= 1;
2074 builtin_diffstat(name
, other
, p
->one
, p
->two
, diffstat
, o
, complete_rewrite
);
2077 static void run_checkdiff(struct diff_filepair
*p
, struct diff_options
*o
)
2082 if (DIFF_PAIR_UNMERGED(p
)) {
2087 name
= p
->one
->path
;
2088 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
2090 diff_fill_sha1_info(p
->one
);
2091 diff_fill_sha1_info(p
->two
);
2093 builtin_checkdiff(name
, other
, p
->one
, p
->two
, o
);
2096 void diff_setup(struct diff_options
*options
)
2098 memset(options
, 0, sizeof(*options
));
2099 options
->line_termination
= '\n';
2100 options
->break_opt
= -1;
2101 options
->rename_limit
= -1;
2102 options
->context
= 3;
2103 options
->msg_sep
= "";
2105 options
->change
= diff_change
;
2106 options
->add_remove
= diff_addremove
;
2107 options
->color_diff
= diff_use_color_default
;
2108 options
->detect_rename
= diff_detect_rename_default
;
2111 int diff_setup_done(struct diff_options
*options
)
2115 if (options
->output_format
& DIFF_FORMAT_NAME
)
2117 if (options
->output_format
& DIFF_FORMAT_NAME_STATUS
)
2119 if (options
->output_format
& DIFF_FORMAT_CHECKDIFF
)
2121 if (options
->output_format
& DIFF_FORMAT_NO_OUTPUT
)
2124 die("--name-only, --name-status, --check and -s are mutually exclusive");
2126 if (options
->find_copies_harder
)
2127 options
->detect_rename
= DIFF_DETECT_COPY
;
2129 if (options
->output_format
& (DIFF_FORMAT_NAME
|
2130 DIFF_FORMAT_NAME_STATUS
|
2131 DIFF_FORMAT_CHECKDIFF
|
2132 DIFF_FORMAT_NO_OUTPUT
))
2133 options
->output_format
&= ~(DIFF_FORMAT_RAW
|
2134 DIFF_FORMAT_NUMSTAT
|
2135 DIFF_FORMAT_DIFFSTAT
|
2136 DIFF_FORMAT_SHORTSTAT
|
2137 DIFF_FORMAT_SUMMARY
|
2141 * These cases always need recursive; we do not drop caller-supplied
2142 * recursive bits for other formats here.
2144 if (options
->output_format
& (DIFF_FORMAT_PATCH
|
2145 DIFF_FORMAT_NUMSTAT
|
2146 DIFF_FORMAT_DIFFSTAT
|
2147 DIFF_FORMAT_SHORTSTAT
|
2148 DIFF_FORMAT_SUMMARY
|
2149 DIFF_FORMAT_CHECKDIFF
))
2150 options
->recursive
= 1;
2152 * Also pickaxe would not work very well if you do not say recursive
2154 if (options
->pickaxe
)
2155 options
->recursive
= 1;
2157 if (options
->detect_rename
&& options
->rename_limit
< 0)
2158 options
->rename_limit
= diff_rename_limit_default
;
2159 if (options
->setup
& DIFF_SETUP_USE_CACHE
) {
2161 /* read-cache does not die even when it fails
2162 * so it is safe for us to do this here. Also
2163 * it does not smudge active_cache or active_nr
2164 * when it fails, so we do not have to worry about
2165 * cleaning it up ourselves either.
2169 if (options
->abbrev
<= 0 || 40 < options
->abbrev
)
2170 options
->abbrev
= 40; /* full */
2173 * It does not make sense to show the first hit we happened
2174 * to have found. It does not make sense not to return with
2175 * exit code in such a case either.
2177 if (options
->quiet
) {
2178 options
->output_format
= DIFF_FORMAT_NO_OUTPUT
;
2179 options
->exit_with_status
= 1;
2183 * If we postprocess in diffcore, we cannot simply return
2184 * upon the first hit. We need to run diff as usual.
2186 if (options
->pickaxe
|| options
->filter
)
2192 static int opt_arg(const char *arg
, int arg_short
, const char *arg_long
, int *val
)
2202 if (c
== arg_short
) {
2206 if (val
&& isdigit(c
)) {
2208 int n
= strtoul(arg
, &end
, 10);
2219 eq
= strchr(arg
, '=');
2224 if (!len
|| strncmp(arg
, arg_long
, len
))
2229 if (!isdigit(*++eq
))
2231 n
= strtoul(eq
, &end
, 10);
2239 static int diff_scoreopt_parse(const char *opt
);
2241 int diff_opt_parse(struct diff_options
*options
, const char **av
, int ac
)
2243 const char *arg
= av
[0];
2244 if (!strcmp(arg
, "-p") || !strcmp(arg
, "-u"))
2245 options
->output_format
|= DIFF_FORMAT_PATCH
;
2246 else if (opt_arg(arg
, 'U', "unified", &options
->context
))
2247 options
->output_format
|= DIFF_FORMAT_PATCH
;
2248 else if (!strcmp(arg
, "--raw"))
2249 options
->output_format
|= DIFF_FORMAT_RAW
;
2250 else if (!strcmp(arg
, "--patch-with-raw")) {
2251 options
->output_format
|= DIFF_FORMAT_PATCH
| DIFF_FORMAT_RAW
;
2253 else if (!strcmp(arg
, "--numstat")) {
2254 options
->output_format
|= DIFF_FORMAT_NUMSTAT
;
2256 else if (!strcmp(arg
, "--shortstat")) {
2257 options
->output_format
|= DIFF_FORMAT_SHORTSTAT
;
2259 else if (!prefixcmp(arg
, "--stat")) {
2261 int width
= options
->stat_width
;
2262 int name_width
= options
->stat_name_width
;
2268 if (!prefixcmp(arg
, "-width="))
2269 width
= strtoul(arg
+ 7, &end
, 10);
2270 else if (!prefixcmp(arg
, "-name-width="))
2271 name_width
= strtoul(arg
+ 12, &end
, 10);
2274 width
= strtoul(arg
+1, &end
, 10);
2276 name_width
= strtoul(end
+1, &end
, 10);
2279 /* Important! This checks all the error cases! */
2282 options
->output_format
|= DIFF_FORMAT_DIFFSTAT
;
2283 options
->stat_name_width
= name_width
;
2284 options
->stat_width
= width
;
2286 else if (!strcmp(arg
, "--check"))
2287 options
->output_format
|= DIFF_FORMAT_CHECKDIFF
;
2288 else if (!strcmp(arg
, "--summary"))
2289 options
->output_format
|= DIFF_FORMAT_SUMMARY
;
2290 else if (!strcmp(arg
, "--patch-with-stat")) {
2291 options
->output_format
|= DIFF_FORMAT_PATCH
| DIFF_FORMAT_DIFFSTAT
;
2293 else if (!strcmp(arg
, "-z"))
2294 options
->line_termination
= 0;
2295 else if (!prefixcmp(arg
, "-l"))
2296 options
->rename_limit
= strtoul(arg
+2, NULL
, 10);
2297 else if (!strcmp(arg
, "--full-index"))
2298 options
->full_index
= 1;
2299 else if (!strcmp(arg
, "--binary")) {
2300 options
->output_format
|= DIFF_FORMAT_PATCH
;
2301 options
->binary
= 1;
2303 else if (!strcmp(arg
, "-a") || !strcmp(arg
, "--text")) {
2306 else if (!strcmp(arg
, "--name-only"))
2307 options
->output_format
|= DIFF_FORMAT_NAME
;
2308 else if (!strcmp(arg
, "--name-status"))
2309 options
->output_format
|= DIFF_FORMAT_NAME_STATUS
;
2310 else if (!strcmp(arg
, "-R"))
2311 options
->reverse_diff
= 1;
2312 else if (!prefixcmp(arg
, "-S"))
2313 options
->pickaxe
= arg
+ 2;
2314 else if (!strcmp(arg
, "-s")) {
2315 options
->output_format
|= DIFF_FORMAT_NO_OUTPUT
;
2317 else if (!prefixcmp(arg
, "-O"))
2318 options
->orderfile
= arg
+ 2;
2319 else if (!prefixcmp(arg
, "--diff-filter="))
2320 options
->filter
= arg
+ 14;
2321 else if (!strcmp(arg
, "--pickaxe-all"))
2322 options
->pickaxe_opts
= DIFF_PICKAXE_ALL
;
2323 else if (!strcmp(arg
, "--pickaxe-regex"))
2324 options
->pickaxe_opts
= DIFF_PICKAXE_REGEX
;
2325 else if (!prefixcmp(arg
, "-B")) {
2326 if ((options
->break_opt
=
2327 diff_scoreopt_parse(arg
)) == -1)
2330 else if (!prefixcmp(arg
, "-M")) {
2331 if ((options
->rename_score
=
2332 diff_scoreopt_parse(arg
)) == -1)
2334 options
->detect_rename
= DIFF_DETECT_RENAME
;
2336 else if (!prefixcmp(arg
, "-C")) {
2337 if (options
->detect_rename
== DIFF_DETECT_COPY
)
2338 options
->find_copies_harder
= 1;
2339 if ((options
->rename_score
=
2340 diff_scoreopt_parse(arg
)) == -1)
2342 options
->detect_rename
= DIFF_DETECT_COPY
;
2344 else if (!strcmp(arg
, "--find-copies-harder"))
2345 options
->find_copies_harder
= 1;
2346 else if (!strcmp(arg
, "--follow"))
2347 options
->follow_renames
= 1;
2348 else if (!strcmp(arg
, "--abbrev"))
2349 options
->abbrev
= DEFAULT_ABBREV
;
2350 else if (!prefixcmp(arg
, "--abbrev=")) {
2351 options
->abbrev
= strtoul(arg
+ 9, NULL
, 10);
2352 if (options
->abbrev
< MINIMUM_ABBREV
)
2353 options
->abbrev
= MINIMUM_ABBREV
;
2354 else if (40 < options
->abbrev
)
2355 options
->abbrev
= 40;
2357 else if (!strcmp(arg
, "--color"))
2358 options
->color_diff
= 1;
2359 else if (!strcmp(arg
, "--no-color"))
2360 options
->color_diff
= 0;
2361 else if (!strcmp(arg
, "-w") || !strcmp(arg
, "--ignore-all-space"))
2362 options
->xdl_opts
|= XDF_IGNORE_WHITESPACE
;
2363 else if (!strcmp(arg
, "-b") || !strcmp(arg
, "--ignore-space-change"))
2364 options
->xdl_opts
|= XDF_IGNORE_WHITESPACE_CHANGE
;
2365 else if (!strcmp(arg
, "--ignore-space-at-eol"))
2366 options
->xdl_opts
|= XDF_IGNORE_WHITESPACE_AT_EOL
;
2367 else if (!strcmp(arg
, "--color-words"))
2368 options
->color_diff
= options
->color_diff_words
= 1;
2369 else if (!strcmp(arg
, "--no-renames"))
2370 options
->detect_rename
= 0;
2371 else if (!strcmp(arg
, "--exit-code"))
2372 options
->exit_with_status
= 1;
2373 else if (!strcmp(arg
, "--quiet"))
2375 else if (!strcmp(arg
, "--ext-diff"))
2376 options
->allow_external
= 1;
2377 else if (!strcmp(arg
, "--no-ext-diff"))
2378 options
->allow_external
= 0;
2384 static int parse_num(const char **cp_p
)
2386 unsigned long num
, scale
;
2388 const char *cp
= *cp_p
;
2395 if ( !dot
&& ch
== '.' ) {
2398 } else if ( ch
== '%' ) {
2399 scale
= dot
? scale
*100 : 100;
2400 cp
++; /* % is always at the end */
2402 } else if ( ch
>= '0' && ch
<= '9' ) {
2403 if ( scale
< 100000 ) {
2405 num
= (num
*10) + (ch
-'0');
2414 /* user says num divided by scale and we say internally that
2415 * is MAX_SCORE * num / scale.
2417 return (int)((num
>= scale
) ? MAX_SCORE
: (MAX_SCORE
* num
/ scale
));
2420 static int diff_scoreopt_parse(const char *opt
)
2422 int opt1
, opt2
, cmd
;
2427 if (cmd
!= 'M' && cmd
!= 'C' && cmd
!= 'B')
2428 return -1; /* that is not a -M, -C nor -B option */
2430 opt1
= parse_num(&opt
);
2436 else if (*opt
!= '/')
2437 return -1; /* we expect -B80/99 or -B80 */
2440 opt2
= parse_num(&opt
);
2445 return opt1
| (opt2
<< 16);
2448 struct diff_queue_struct diff_queued_diff
;
2450 void diff_q(struct diff_queue_struct
*queue
, struct diff_filepair
*dp
)
2452 if (queue
->alloc
<= queue
->nr
) {
2453 queue
->alloc
= alloc_nr(queue
->alloc
);
2454 queue
->queue
= xrealloc(queue
->queue
,
2455 sizeof(dp
) * queue
->alloc
);
2457 queue
->queue
[queue
->nr
++] = dp
;
2460 struct diff_filepair
*diff_queue(struct diff_queue_struct
*queue
,
2461 struct diff_filespec
*one
,
2462 struct diff_filespec
*two
)
2464 struct diff_filepair
*dp
= xcalloc(1, sizeof(*dp
));
2472 void diff_free_filepair(struct diff_filepair
*p
)
2474 diff_free_filespec_data(p
->one
);
2475 diff_free_filespec_data(p
->two
);
2481 /* This is different from find_unique_abbrev() in that
2482 * it stuffs the result with dots for alignment.
2484 const char *diff_unique_abbrev(const unsigned char *sha1
, int len
)
2489 return sha1_to_hex(sha1
);
2491 abbrev
= find_unique_abbrev(sha1
, len
);
2493 return sha1_to_hex(sha1
);
2494 abblen
= strlen(abbrev
);
2496 static char hex
[41];
2497 if (len
< abblen
&& abblen
<= len
+ 2)
2498 sprintf(hex
, "%s%.*s", abbrev
, len
+3-abblen
, "..");
2500 sprintf(hex
, "%s...", abbrev
);
2503 return sha1_to_hex(sha1
);
2506 static void diff_flush_raw(struct diff_filepair
*p
,
2507 struct diff_options
*options
)
2511 int abbrev
= options
->abbrev
;
2512 const char *path_one
, *path_two
;
2513 int inter_name_termination
= '\t';
2514 int line_termination
= options
->line_termination
;
2516 if (!line_termination
)
2517 inter_name_termination
= 0;
2519 path_one
= p
->one
->path
;
2520 path_two
= p
->two
->path
;
2521 if (line_termination
) {
2522 path_one
= quote_one(path_one
);
2523 path_two
= quote_one(path_two
);
2527 sprintf(status
, "%c%03d", p
->status
, similarity_index(p
));
2529 status
[0] = p
->status
;
2532 switch (p
->status
) {
2533 case DIFF_STATUS_COPIED
:
2534 case DIFF_STATUS_RENAMED
:
2537 case DIFF_STATUS_ADDED
:
2538 case DIFF_STATUS_DELETED
:
2545 if (!(options
->output_format
& DIFF_FORMAT_NAME_STATUS
)) {
2546 printf(":%06o %06o %s ",
2547 p
->one
->mode
, p
->two
->mode
,
2548 diff_unique_abbrev(p
->one
->sha1
, abbrev
));
2550 diff_unique_abbrev(p
->two
->sha1
, abbrev
));
2552 printf("%s%c%s", status
, inter_name_termination
,
2553 two_paths
|| p
->one
->mode
? path_one
: path_two
);
2555 printf("%c%s", inter_name_termination
, path_two
);
2556 putchar(line_termination
);
2557 if (path_one
!= p
->one
->path
)
2558 free((void*)path_one
);
2559 if (path_two
!= p
->two
->path
)
2560 free((void*)path_two
);
2563 static void diff_flush_name(struct diff_filepair
*p
, struct diff_options
*opt
)
2565 char *path
= p
->two
->path
;
2567 if (opt
->line_termination
)
2568 path
= quote_one(p
->two
->path
);
2569 printf("%s%c", path
, opt
->line_termination
);
2570 if (p
->two
->path
!= path
)
2574 int diff_unmodified_pair(struct diff_filepair
*p
)
2576 /* This function is written stricter than necessary to support
2577 * the currently implemented transformers, but the idea is to
2578 * let transformers to produce diff_filepairs any way they want,
2579 * and filter and clean them up here before producing the output.
2581 struct diff_filespec
*one
, *two
;
2583 if (DIFF_PAIR_UNMERGED(p
))
2584 return 0; /* unmerged is interesting */
2589 /* deletion, addition, mode or type change
2590 * and rename are all interesting.
2592 if (DIFF_FILE_VALID(one
) != DIFF_FILE_VALID(two
) ||
2593 DIFF_PAIR_MODE_CHANGED(p
) ||
2594 strcmp(one
->path
, two
->path
))
2597 /* both are valid and point at the same path. that is, we are
2598 * dealing with a change.
2600 if (one
->sha1_valid
&& two
->sha1_valid
&&
2601 !hashcmp(one
->sha1
, two
->sha1
))
2602 return 1; /* no change */
2603 if (!one
->sha1_valid
&& !two
->sha1_valid
)
2604 return 1; /* both look at the same file on the filesystem. */
2608 static void diff_flush_patch(struct diff_filepair
*p
, struct diff_options
*o
)
2610 if (diff_unmodified_pair(p
))
2613 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
2614 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
2615 return; /* no tree diffs in patch format */
2620 static void diff_flush_stat(struct diff_filepair
*p
, struct diff_options
*o
,
2621 struct diffstat_t
*diffstat
)
2623 if (diff_unmodified_pair(p
))
2626 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
2627 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
2628 return; /* no tree diffs in patch format */
2630 run_diffstat(p
, o
, diffstat
);
2633 static void diff_flush_checkdiff(struct diff_filepair
*p
,
2634 struct diff_options
*o
)
2636 if (diff_unmodified_pair(p
))
2639 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
2640 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
2641 return; /* no tree diffs in patch format */
2643 run_checkdiff(p
, o
);
2646 int diff_queue_is_empty(void)
2648 struct diff_queue_struct
*q
= &diff_queued_diff
;
2650 for (i
= 0; i
< q
->nr
; i
++)
2651 if (!diff_unmodified_pair(q
->queue
[i
]))
2657 void diff_debug_filespec(struct diff_filespec
*s
, int x
, const char *one
)
2659 fprintf(stderr
, "queue[%d] %s (%s) %s %06o %s\n",
2662 DIFF_FILE_VALID(s
) ? "valid" : "invalid",
2664 s
->sha1_valid
? sha1_to_hex(s
->sha1
) : "");
2665 fprintf(stderr
, "queue[%d] %s size %lu flags %d\n",
2667 s
->size
, s
->xfrm_flags
);
2670 void diff_debug_filepair(const struct diff_filepair
*p
, int i
)
2672 diff_debug_filespec(p
->one
, i
, "one");
2673 diff_debug_filespec(p
->two
, i
, "two");
2674 fprintf(stderr
, "score %d, status %c stays %d broken %d\n",
2675 p
->score
, p
->status
? p
->status
: '?',
2676 p
->source_stays
, p
->broken_pair
);
2679 void diff_debug_queue(const char *msg
, struct diff_queue_struct
*q
)
2683 fprintf(stderr
, "%s\n", msg
);
2684 fprintf(stderr
, "q->nr = %d\n", q
->nr
);
2685 for (i
= 0; i
< q
->nr
; i
++) {
2686 struct diff_filepair
*p
= q
->queue
[i
];
2687 diff_debug_filepair(p
, i
);
2692 static void diff_resolve_rename_copy(void)
2695 struct diff_filepair
*p
, *pp
;
2696 struct diff_queue_struct
*q
= &diff_queued_diff
;
2698 diff_debug_queue("resolve-rename-copy", q
);
2700 for (i
= 0; i
< q
->nr
; i
++) {
2702 p
->status
= 0; /* undecided */
2703 if (DIFF_PAIR_UNMERGED(p
))
2704 p
->status
= DIFF_STATUS_UNMERGED
;
2705 else if (!DIFF_FILE_VALID(p
->one
))
2706 p
->status
= DIFF_STATUS_ADDED
;
2707 else if (!DIFF_FILE_VALID(p
->two
))
2708 p
->status
= DIFF_STATUS_DELETED
;
2709 else if (DIFF_PAIR_TYPE_CHANGED(p
))
2710 p
->status
= DIFF_STATUS_TYPE_CHANGED
;
2712 /* from this point on, we are dealing with a pair
2713 * whose both sides are valid and of the same type, i.e.
2714 * either in-place edit or rename/copy edit.
2716 else if (DIFF_PAIR_RENAME(p
)) {
2717 if (p
->source_stays
) {
2718 p
->status
= DIFF_STATUS_COPIED
;
2721 /* See if there is some other filepair that
2722 * copies from the same source as us. If so
2723 * we are a copy. Otherwise we are either a
2724 * copy if the path stays, or a rename if it
2725 * does not, but we already handled "stays" case.
2727 for (j
= i
+ 1; j
< q
->nr
; j
++) {
2729 if (strcmp(pp
->one
->path
, p
->one
->path
))
2730 continue; /* not us */
2731 if (!DIFF_PAIR_RENAME(pp
))
2732 continue; /* not a rename/copy */
2733 /* pp is a rename/copy from the same source */
2734 p
->status
= DIFF_STATUS_COPIED
;
2738 p
->status
= DIFF_STATUS_RENAMED
;
2740 else if (hashcmp(p
->one
->sha1
, p
->two
->sha1
) ||
2741 p
->one
->mode
!= p
->two
->mode
||
2742 is_null_sha1(p
->one
->sha1
))
2743 p
->status
= DIFF_STATUS_MODIFIED
;
2745 /* This is a "no-change" entry and should not
2746 * happen anymore, but prepare for broken callers.
2748 error("feeding unmodified %s to diffcore",
2750 p
->status
= DIFF_STATUS_UNKNOWN
;
2753 diff_debug_queue("resolve-rename-copy done", q
);
2756 static int check_pair_status(struct diff_filepair
*p
)
2758 switch (p
->status
) {
2759 case DIFF_STATUS_UNKNOWN
:
2762 die("internal error in diff-resolve-rename-copy");
2768 static void flush_one_pair(struct diff_filepair
*p
, struct diff_options
*opt
)
2770 int fmt
= opt
->output_format
;
2772 if (fmt
& DIFF_FORMAT_CHECKDIFF
)
2773 diff_flush_checkdiff(p
, opt
);
2774 else if (fmt
& (DIFF_FORMAT_RAW
| DIFF_FORMAT_NAME_STATUS
))
2775 diff_flush_raw(p
, opt
);
2776 else if (fmt
& DIFF_FORMAT_NAME
)
2777 diff_flush_name(p
, opt
);
2780 static void show_file_mode_name(const char *newdelete
, struct diff_filespec
*fs
)
2782 char *name
= quote_one(fs
->path
);
2784 printf(" %s mode %06o %s\n", newdelete
, fs
->mode
, name
);
2786 printf(" %s %s\n", newdelete
, name
);
2791 static void show_mode_change(struct diff_filepair
*p
, int show_name
)
2793 if (p
->one
->mode
&& p
->two
->mode
&& p
->one
->mode
!= p
->two
->mode
) {
2795 char *name
= quote_one(p
->two
->path
);
2796 printf(" mode change %06o => %06o %s\n",
2797 p
->one
->mode
, p
->two
->mode
, name
);
2801 printf(" mode change %06o => %06o\n",
2802 p
->one
->mode
, p
->two
->mode
);
2806 static void show_rename_copy(const char *renamecopy
, struct diff_filepair
*p
)
2808 char *names
= pprint_rename(p
->one
->path
, p
->two
->path
);
2810 printf(" %s %s (%d%%)\n", renamecopy
, names
, similarity_index(p
));
2812 show_mode_change(p
, 0);
2815 static void diff_summary(struct diff_filepair
*p
)
2818 case DIFF_STATUS_DELETED
:
2819 show_file_mode_name("delete", p
->one
);
2821 case DIFF_STATUS_ADDED
:
2822 show_file_mode_name("create", p
->two
);
2824 case DIFF_STATUS_COPIED
:
2825 show_rename_copy("copy", p
);
2827 case DIFF_STATUS_RENAMED
:
2828 show_rename_copy("rename", p
);
2832 char *name
= quote_one(p
->two
->path
);
2833 printf(" rewrite %s (%d%%)\n", name
,
2834 similarity_index(p
));
2836 show_mode_change(p
, 0);
2837 } else show_mode_change(p
, 1);
2843 struct xdiff_emit_state xm
;
2848 static int remove_space(char *line
, int len
)
2854 for (i
= 0; i
< len
; i
++)
2855 if (!isspace((c
= line
[i
])))
2861 static void patch_id_consume(void *priv
, char *line
, unsigned long len
)
2863 struct patch_id_t
*data
= priv
;
2866 /* Ignore line numbers when computing the SHA1 of the patch */
2867 if (!prefixcmp(line
, "@@ -"))
2870 new_len
= remove_space(line
, len
);
2872 SHA1_Update(data
->ctx
, line
, new_len
);
2873 data
->patchlen
+= new_len
;
2876 /* returns 0 upon success, and writes result into sha1 */
2877 static int diff_get_patch_id(struct diff_options
*options
, unsigned char *sha1
)
2879 struct diff_queue_struct
*q
= &diff_queued_diff
;
2882 struct patch_id_t data
;
2883 char buffer
[PATH_MAX
* 4 + 20];
2886 memset(&data
, 0, sizeof(struct patch_id_t
));
2888 data
.xm
.consume
= patch_id_consume
;
2890 for (i
= 0; i
< q
->nr
; i
++) {
2895 struct diff_filepair
*p
= q
->queue
[i
];
2898 memset(&xecfg
, 0, sizeof(xecfg
));
2900 return error("internal diff status error");
2901 if (p
->status
== DIFF_STATUS_UNKNOWN
)
2903 if (diff_unmodified_pair(p
))
2905 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
2906 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
2908 if (DIFF_PAIR_UNMERGED(p
))
2911 diff_fill_sha1_info(p
->one
);
2912 diff_fill_sha1_info(p
->two
);
2913 if (fill_mmfile(&mf1
, p
->one
) < 0 ||
2914 fill_mmfile(&mf2
, p
->two
) < 0)
2915 return error("unable to read files to diff");
2917 /* Maybe hash p->two? into the patch id? */
2918 if (diff_filespec_is_binary(p
->two
))
2921 len1
= remove_space(p
->one
->path
, strlen(p
->one
->path
));
2922 len2
= remove_space(p
->two
->path
, strlen(p
->two
->path
));
2923 if (p
->one
->mode
== 0)
2924 len1
= snprintf(buffer
, sizeof(buffer
),
2925 "diff--gita/%.*sb/%.*s"
2932 len2
, p
->two
->path
);
2933 else if (p
->two
->mode
== 0)
2934 len1
= snprintf(buffer
, sizeof(buffer
),
2935 "diff--gita/%.*sb/%.*s"
2936 "deletedfilemode%06o"
2942 len1
, p
->one
->path
);
2944 len1
= snprintf(buffer
, sizeof(buffer
),
2945 "diff--gita/%.*sb/%.*s"
2951 len2
, p
->two
->path
);
2952 SHA1_Update(&ctx
, buffer
, len1
);
2954 xpp
.flags
= XDF_NEED_MINIMAL
;
2956 xecfg
.flags
= XDL_EMIT_FUNCNAMES
;
2957 ecb
.outf
= xdiff_outf
;
2959 xdl_diff(&mf1
, &mf2
, &xpp
, &xecfg
, &ecb
);
2962 SHA1_Final(sha1
, &ctx
);
2966 int diff_flush_patch_id(struct diff_options
*options
, unsigned char *sha1
)
2968 struct diff_queue_struct
*q
= &diff_queued_diff
;
2970 int result
= diff_get_patch_id(options
, sha1
);
2972 for (i
= 0; i
< q
->nr
; i
++)
2973 diff_free_filepair(q
->queue
[i
]);
2977 q
->nr
= q
->alloc
= 0;
2982 static int is_summary_empty(const struct diff_queue_struct
*q
)
2986 for (i
= 0; i
< q
->nr
; i
++) {
2987 const struct diff_filepair
*p
= q
->queue
[i
];
2989 switch (p
->status
) {
2990 case DIFF_STATUS_DELETED
:
2991 case DIFF_STATUS_ADDED
:
2992 case DIFF_STATUS_COPIED
:
2993 case DIFF_STATUS_RENAMED
:
2998 if (p
->one
->mode
&& p
->two
->mode
&&
2999 p
->one
->mode
!= p
->two
->mode
)
3007 void diff_flush(struct diff_options
*options
)
3009 struct diff_queue_struct
*q
= &diff_queued_diff
;
3010 int i
, output_format
= options
->output_format
;
3014 * Order: raw, stat, summary, patch
3015 * or: name/name-status/checkdiff (other bits clear)
3020 if (output_format
& (DIFF_FORMAT_RAW
|
3022 DIFF_FORMAT_NAME_STATUS
|
3023 DIFF_FORMAT_CHECKDIFF
)) {
3024 for (i
= 0; i
< q
->nr
; i
++) {
3025 struct diff_filepair
*p
= q
->queue
[i
];
3026 if (check_pair_status(p
))
3027 flush_one_pair(p
, options
);
3032 if (output_format
& (DIFF_FORMAT_DIFFSTAT
|DIFF_FORMAT_SHORTSTAT
|DIFF_FORMAT_NUMSTAT
)) {
3033 struct diffstat_t diffstat
;
3035 memset(&diffstat
, 0, sizeof(struct diffstat_t
));
3036 diffstat
.xm
.consume
= diffstat_consume
;
3037 for (i
= 0; i
< q
->nr
; i
++) {
3038 struct diff_filepair
*p
= q
->queue
[i
];
3039 if (check_pair_status(p
))
3040 diff_flush_stat(p
, options
, &diffstat
);
3042 if (output_format
& DIFF_FORMAT_NUMSTAT
)
3043 show_numstat(&diffstat
, options
);
3044 if (output_format
& DIFF_FORMAT_DIFFSTAT
)
3045 show_stats(&diffstat
, options
);
3046 else if (output_format
& DIFF_FORMAT_SHORTSTAT
)
3047 show_shortstats(&diffstat
);
3051 if (output_format
& DIFF_FORMAT_SUMMARY
&& !is_summary_empty(q
)) {
3052 for (i
= 0; i
< q
->nr
; i
++)
3053 diff_summary(q
->queue
[i
]);
3057 if (output_format
& DIFF_FORMAT_PATCH
) {
3059 if (options
->stat_sep
) {
3060 /* attach patch instead of inline */
3061 fputs(options
->stat_sep
, stdout
);
3063 putchar(options
->line_termination
);
3067 for (i
= 0; i
< q
->nr
; i
++) {
3068 struct diff_filepair
*p
= q
->queue
[i
];
3069 if (check_pair_status(p
))
3070 diff_flush_patch(p
, options
);
3074 if (output_format
& DIFF_FORMAT_CALLBACK
)
3075 options
->format_callback(q
, options
, options
->format_callback_data
);
3077 for (i
= 0; i
< q
->nr
; i
++)
3078 diff_free_filepair(q
->queue
[i
]);
3082 q
->nr
= q
->alloc
= 0;
3085 static void diffcore_apply_filter(const char *filter
)
3088 struct diff_queue_struct
*q
= &diff_queued_diff
;
3089 struct diff_queue_struct outq
;
3091 outq
.nr
= outq
.alloc
= 0;
3096 if (strchr(filter
, DIFF_STATUS_FILTER_AON
)) {
3098 for (i
= found
= 0; !found
&& i
< q
->nr
; i
++) {
3099 struct diff_filepair
*p
= q
->queue
[i
];
3100 if (((p
->status
== DIFF_STATUS_MODIFIED
) &&
3102 strchr(filter
, DIFF_STATUS_FILTER_BROKEN
)) ||
3104 strchr(filter
, DIFF_STATUS_MODIFIED
)))) ||
3105 ((p
->status
!= DIFF_STATUS_MODIFIED
) &&
3106 strchr(filter
, p
->status
)))
3112 /* otherwise we will clear the whole queue
3113 * by copying the empty outq at the end of this
3114 * function, but first clear the current entries
3117 for (i
= 0; i
< q
->nr
; i
++)
3118 diff_free_filepair(q
->queue
[i
]);
3121 /* Only the matching ones */
3122 for (i
= 0; i
< q
->nr
; i
++) {
3123 struct diff_filepair
*p
= q
->queue
[i
];
3125 if (((p
->status
== DIFF_STATUS_MODIFIED
) &&
3127 strchr(filter
, DIFF_STATUS_FILTER_BROKEN
)) ||
3129 strchr(filter
, DIFF_STATUS_MODIFIED
)))) ||
3130 ((p
->status
!= DIFF_STATUS_MODIFIED
) &&
3131 strchr(filter
, p
->status
)))
3134 diff_free_filepair(p
);
3141 void diffcore_std(struct diff_options
*options
)
3146 if (options
->break_opt
!= -1)
3147 diffcore_break(options
->break_opt
);
3148 if (options
->detect_rename
)
3149 diffcore_rename(options
);
3150 if (options
->break_opt
!= -1)
3151 diffcore_merge_broken();
3152 if (options
->pickaxe
)
3153 diffcore_pickaxe(options
->pickaxe
, options
->pickaxe_opts
);
3154 if (options
->orderfile
)
3155 diffcore_order(options
->orderfile
);
3156 diff_resolve_rename_copy();
3157 diffcore_apply_filter(options
->filter
);
3159 options
->has_changes
= !!diff_queued_diff
.nr
;
3163 void diff_addremove(struct diff_options
*options
,
3164 int addremove
, unsigned mode
,
3165 const unsigned char *sha1
,
3166 const char *base
, const char *path
)
3168 char concatpath
[PATH_MAX
];
3169 struct diff_filespec
*one
, *two
;
3171 /* This may look odd, but it is a preparation for
3172 * feeding "there are unchanged files which should
3173 * not produce diffs, but when you are doing copy
3174 * detection you would need them, so here they are"
3175 * entries to the diff-core. They will be prefixed
3176 * with something like '=' or '*' (I haven't decided
3177 * which but should not make any difference).
3178 * Feeding the same new and old to diff_change()
3179 * also has the same effect.
3180 * Before the final output happens, they are pruned after
3181 * merged into rename/copy pairs as appropriate.
3183 if (options
->reverse_diff
)
3184 addremove
= (addremove
== '+' ? '-' :
3185 addremove
== '-' ? '+' : addremove
);
3187 if (!path
) path
= "";
3188 sprintf(concatpath
, "%s%s", base
, path
);
3189 one
= alloc_filespec(concatpath
);
3190 two
= alloc_filespec(concatpath
);
3192 if (addremove
!= '+')
3193 fill_filespec(one
, sha1
, mode
);
3194 if (addremove
!= '-')
3195 fill_filespec(two
, sha1
, mode
);
3197 diff_queue(&diff_queued_diff
, one
, two
);
3198 options
->has_changes
= 1;
3201 void diff_change(struct diff_options
*options
,
3202 unsigned old_mode
, unsigned new_mode
,
3203 const unsigned char *old_sha1
,
3204 const unsigned char *new_sha1
,
3205 const char *base
, const char *path
)
3207 char concatpath
[PATH_MAX
];
3208 struct diff_filespec
*one
, *two
;
3210 if (options
->reverse_diff
) {
3212 const unsigned char *tmp_c
;
3213 tmp
= old_mode
; old_mode
= new_mode
; new_mode
= tmp
;
3214 tmp_c
= old_sha1
; old_sha1
= new_sha1
; new_sha1
= tmp_c
;
3216 if (!path
) path
= "";
3217 sprintf(concatpath
, "%s%s", base
, path
);
3218 one
= alloc_filespec(concatpath
);
3219 two
= alloc_filespec(concatpath
);
3220 fill_filespec(one
, old_sha1
, old_mode
);
3221 fill_filespec(two
, new_sha1
, new_mode
);
3223 diff_queue(&diff_queued_diff
, one
, two
);
3224 options
->has_changes
= 1;
3227 void diff_unmerge(struct diff_options
*options
,
3229 unsigned mode
, const unsigned char *sha1
)
3231 struct diff_filespec
*one
, *two
;
3232 one
= alloc_filespec(path
);
3233 two
= alloc_filespec(path
);
3234 fill_filespec(one
, sha1
, mode
);
3235 diff_queue(&diff_queued_diff
, one
, two
)->is_unmerged
= 1;