2 * Copyright (C) 2005 Junio C Hamano
9 #include "xdiff-interface.h"
12 #include "run-command.h"
15 #ifdef NO_FAST_WORKING_DIRECTORY
16 #define FAST_WORKING_DIRECTORY 0
18 #define FAST_WORKING_DIRECTORY 1
21 static int diff_detect_rename_default
;
22 static int diff_rename_limit_default
= 200;
23 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
, void *cb
)
134 if (!strcmp(var
, "diff.color") || !strcmp(var
, "color.diff")) {
135 diff_use_color_default
= git_config_colorbool(var
, value
, -1);
138 if (!strcmp(var
, "diff.renames")) {
140 diff_detect_rename_default
= DIFF_DETECT_RENAME
;
141 else if (!strcasecmp(value
, "copies") ||
142 !strcasecmp(value
, "copy"))
143 diff_detect_rename_default
= DIFF_DETECT_COPY
;
144 else if (git_config_bool(var
,value
))
145 diff_detect_rename_default
= DIFF_DETECT_RENAME
;
148 if (!strcmp(var
, "diff.autorefreshindex")) {
149 diff_auto_refresh_index
= git_config_bool(var
, value
);
152 if (!strcmp(var
, "diff.external"))
153 return git_config_string(&external_diff_cmd_cfg
, var
, value
);
154 if (!prefixcmp(var
, "diff.")) {
155 const char *ep
= strrchr(var
, '.');
157 if (ep
!= var
+ 4 && !strcmp(ep
, ".command"))
158 return parse_lldiff_command(var
, ep
, value
);
161 return git_diff_basic_config(var
, value
, cb
);
164 int git_diff_basic_config(const char *var
, const char *value
, void *cb
)
166 if (!strcmp(var
, "diff.renamelimit")) {
167 diff_rename_limit_default
= git_config_int(var
, value
);
171 if (!prefixcmp(var
, "diff.color.") || !prefixcmp(var
, "color.diff.")) {
172 int slot
= parse_diff_color_slot(var
, 11);
174 return config_error_nonbool(var
);
175 color_parse(value
, var
, diff_colors
[slot
]);
179 if (!prefixcmp(var
, "diff.")) {
180 const char *ep
= strrchr(var
, '.');
182 if (!strcmp(ep
, ".funcname")) {
184 return config_error_nonbool(var
);
185 return parse_funcname_pattern(var
, ep
, value
);
190 return git_color_default_config(var
, value
, cb
);
193 static char *quote_two(const char *one
, const char *two
)
195 int need_one
= quote_c_style(one
, NULL
, NULL
, 1);
196 int need_two
= quote_c_style(two
, NULL
, NULL
, 1);
199 strbuf_init(&res
, 0);
200 if (need_one
+ need_two
) {
201 strbuf_addch(&res
, '"');
202 quote_c_style(one
, &res
, NULL
, 1);
203 quote_c_style(two
, &res
, NULL
, 1);
204 strbuf_addch(&res
, '"');
206 strbuf_addstr(&res
, one
);
207 strbuf_addstr(&res
, two
);
209 return strbuf_detach(&res
, NULL
);
212 static const char *external_diff(void)
214 static const char *external_diff_cmd
= NULL
;
215 static int done_preparing
= 0;
218 return external_diff_cmd
;
219 external_diff_cmd
= getenv("GIT_EXTERNAL_DIFF");
220 if (!external_diff_cmd
)
221 external_diff_cmd
= external_diff_cmd_cfg
;
223 return external_diff_cmd
;
226 static struct diff_tempfile
{
227 const char *name
; /* filename external diff should read from */
230 char tmp_path
[PATH_MAX
];
233 static int count_lines(const char *data
, int size
)
235 int count
, ch
, completely_empty
= 1, nl_just_seen
= 0;
242 completely_empty
= 0;
246 completely_empty
= 0;
249 if (completely_empty
)
252 count
++; /* no trailing newline */
256 static void print_line_count(FILE *file
, int count
)
260 fprintf(file
, "0,0");
266 fprintf(file
, "1,%d", count
);
271 static void copy_file_with_prefix(FILE *file
,
272 int prefix
, const char *data
, int size
,
273 const char *set
, const char *reset
)
275 int ch
, nl_just_seen
= 1;
290 fprintf(file
, "%s\n\\ No newline at end of file\n", reset
);
293 static void emit_rewrite_diff(const char *name_a
,
295 struct diff_filespec
*one
,
296 struct diff_filespec
*two
,
297 struct diff_options
*o
)
300 int color_diff
= DIFF_OPT_TST(o
, COLOR_DIFF
);
301 const char *name_a_tab
, *name_b_tab
;
302 const char *metainfo
= diff_get_color(color_diff
, DIFF_METAINFO
);
303 const char *fraginfo
= diff_get_color(color_diff
, DIFF_FRAGINFO
);
304 const char *old
= diff_get_color(color_diff
, DIFF_FILE_OLD
);
305 const char *new = diff_get_color(color_diff
, DIFF_FILE_NEW
);
306 const char *reset
= diff_get_color(color_diff
, DIFF_RESET
);
307 static struct strbuf a_name
= STRBUF_INIT
, b_name
= STRBUF_INIT
;
309 name_a
+= (*name_a
== '/');
310 name_b
+= (*name_b
== '/');
311 name_a_tab
= strchr(name_a
, ' ') ? "\t" : "";
312 name_b_tab
= strchr(name_b
, ' ') ? "\t" : "";
314 strbuf_reset(&a_name
);
315 strbuf_reset(&b_name
);
316 quote_two_c_style(&a_name
, o
->a_prefix
, name_a
, 0);
317 quote_two_c_style(&b_name
, o
->b_prefix
, name_b
, 0);
319 diff_populate_filespec(one
, 0);
320 diff_populate_filespec(two
, 0);
321 lc_a
= count_lines(one
->data
, one
->size
);
322 lc_b
= count_lines(two
->data
, two
->size
);
324 "%s--- %s%s%s\n%s+++ %s%s%s\n%s@@ -",
325 metainfo
, a_name
.buf
, name_a_tab
, reset
,
326 metainfo
, b_name
.buf
, name_b_tab
, reset
, fraginfo
);
327 print_line_count(o
->file
, lc_a
);
328 fprintf(o
->file
, " +");
329 print_line_count(o
->file
, lc_b
);
330 fprintf(o
->file
, " @@%s\n", reset
);
332 copy_file_with_prefix(o
->file
, '-', one
->data
, one
->size
, old
, reset
);
334 copy_file_with_prefix(o
->file
, '+', two
->data
, two
->size
, new, reset
);
337 static int fill_mmfile(mmfile_t
*mf
, struct diff_filespec
*one
)
339 if (!DIFF_FILE_VALID(one
)) {
340 mf
->ptr
= (char *)""; /* does not matter */
344 else if (diff_populate_filespec(one
, 0))
347 mf
->size
= one
->size
;
351 struct diff_words_buffer
{
354 long current
; /* output pointer */
355 int suppressed_newline
;
358 static void diff_words_append(char *line
, unsigned long len
,
359 struct diff_words_buffer
*buffer
)
361 if (buffer
->text
.size
+ len
> buffer
->alloc
) {
362 buffer
->alloc
= (buffer
->text
.size
+ len
) * 3 / 2;
363 buffer
->text
.ptr
= xrealloc(buffer
->text
.ptr
, buffer
->alloc
);
367 memcpy(buffer
->text
.ptr
+ buffer
->text
.size
, line
, len
);
368 buffer
->text
.size
+= len
;
371 struct diff_words_data
{
372 struct xdiff_emit_state xm
;
373 struct diff_words_buffer minus
, plus
;
377 static void print_word(FILE *file
, 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
), file
);
395 fwrite(ptr
, len
, 1, file
);
396 fputs(diff_get_color(1, DIFF_RESET
), file
);
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
) {
412 putc('\n', diff_words
->file
);
413 diff_words
->minus
.suppressed_newline
= 0;
419 print_word(diff_words
->file
,
420 &diff_words
->minus
, len
, DIFF_FILE_OLD
, 1);
423 print_word(diff_words
->file
,
424 &diff_words
->plus
, len
, DIFF_FILE_NEW
, 0);
427 print_word(diff_words
->file
,
428 &diff_words
->plus
, len
, DIFF_PLAIN
, 0);
429 diff_words
->minus
.current
+= len
;
434 /* this executes the word diff on the accumulated buffers */
435 static void diff_words_show(struct diff_words_data
*diff_words
)
440 mmfile_t minus
, plus
;
443 memset(&xecfg
, 0, sizeof(xecfg
));
444 minus
.size
= diff_words
->minus
.text
.size
;
445 minus
.ptr
= xmalloc(minus
.size
);
446 memcpy(minus
.ptr
, diff_words
->minus
.text
.ptr
, minus
.size
);
447 for (i
= 0; i
< minus
.size
; i
++)
448 if (isspace(minus
.ptr
[i
]))
450 diff_words
->minus
.current
= 0;
452 plus
.size
= diff_words
->plus
.text
.size
;
453 plus
.ptr
= xmalloc(plus
.size
);
454 memcpy(plus
.ptr
, diff_words
->plus
.text
.ptr
, plus
.size
);
455 for (i
= 0; i
< plus
.size
; i
++)
456 if (isspace(plus
.ptr
[i
]))
458 diff_words
->plus
.current
= 0;
460 xpp
.flags
= XDF_NEED_MINIMAL
;
461 xecfg
.ctxlen
= diff_words
->minus
.alloc
+ diff_words
->plus
.alloc
;
462 ecb
.outf
= xdiff_outf
;
463 ecb
.priv
= diff_words
;
464 diff_words
->xm
.consume
= fn_out_diff_words_aux
;
465 xdi_diff(&minus
, &plus
, &xpp
, &xecfg
, &ecb
);
469 diff_words
->minus
.text
.size
= diff_words
->plus
.text
.size
= 0;
471 if (diff_words
->minus
.suppressed_newline
) {
472 putc('\n', diff_words
->file
);
473 diff_words
->minus
.suppressed_newline
= 0;
477 typedef unsigned long (*sane_truncate_fn
)(char *line
, unsigned long len
);
479 struct emit_callback
{
480 struct xdiff_emit_state xm
;
481 int nparents
, color_diff
;
483 sane_truncate_fn truncate
;
484 const char **label_path
;
485 struct diff_words_data
*diff_words
;
490 static void free_diff_words_data(struct emit_callback
*ecbdata
)
492 if (ecbdata
->diff_words
) {
494 if (ecbdata
->diff_words
->minus
.text
.size
||
495 ecbdata
->diff_words
->plus
.text
.size
)
496 diff_words_show(ecbdata
->diff_words
);
498 free (ecbdata
->diff_words
->minus
.text
.ptr
);
499 free (ecbdata
->diff_words
->plus
.text
.ptr
);
500 free(ecbdata
->diff_words
);
501 ecbdata
->diff_words
= NULL
;
505 const char *diff_get_color(int diff_use_color
, enum color_diff ix
)
508 return diff_colors
[ix
];
512 static void emit_line(FILE *file
, const char *set
, const char *reset
, const char *line
, int len
)
514 int has_trailing_newline
= (len
> 0 && line
[len
-1] == '\n');
515 if (has_trailing_newline
)
519 fwrite(line
, len
, 1, file
);
521 if (has_trailing_newline
)
525 static void emit_add_line(const char *reset
, struct emit_callback
*ecbdata
, const char *line
, int len
)
527 const char *ws
= diff_get_color(ecbdata
->color_diff
, DIFF_WHITESPACE
);
528 const char *set
= diff_get_color(ecbdata
->color_diff
, DIFF_FILE_NEW
);
531 emit_line(ecbdata
->file
, set
, reset
, line
, len
);
533 /* Emit just the prefix, then the rest. */
534 emit_line(ecbdata
->file
, set
, reset
, line
, ecbdata
->nparents
);
535 ws_check_emit(line
+ ecbdata
->nparents
,
536 len
- ecbdata
->nparents
, ecbdata
->ws_rule
,
537 ecbdata
->file
, set
, reset
, ws
);
541 static unsigned long sane_truncate_line(struct emit_callback
*ecb
, char *line
, unsigned long len
)
548 return ecb
->truncate(line
, len
);
552 (void) utf8_width(&cp
, &l
);
554 break; /* truncated in the middle? */
559 static void fn_out_consume(void *priv
, char *line
, unsigned long len
)
563 struct emit_callback
*ecbdata
= priv
;
564 const char *meta
= diff_get_color(ecbdata
->color_diff
, DIFF_METAINFO
);
565 const char *plain
= diff_get_color(ecbdata
->color_diff
, DIFF_PLAIN
);
566 const char *reset
= diff_get_color(ecbdata
->color_diff
, DIFF_RESET
);
568 *(ecbdata
->found_changesp
) = 1;
570 if (ecbdata
->label_path
[0]) {
571 const char *name_a_tab
, *name_b_tab
;
573 name_a_tab
= strchr(ecbdata
->label_path
[0], ' ') ? "\t" : "";
574 name_b_tab
= strchr(ecbdata
->label_path
[1], ' ') ? "\t" : "";
576 fprintf(ecbdata
->file
, "%s--- %s%s%s\n",
577 meta
, ecbdata
->label_path
[0], reset
, name_a_tab
);
578 fprintf(ecbdata
->file
, "%s+++ %s%s%s\n",
579 meta
, ecbdata
->label_path
[1], reset
, name_b_tab
);
580 ecbdata
->label_path
[0] = ecbdata
->label_path
[1] = NULL
;
583 /* This is not really necessary for now because
584 * this codepath only deals with two-way diffs.
586 for (i
= 0; i
< len
&& line
[i
] == '@'; i
++)
588 if (2 <= i
&& i
< len
&& line
[i
] == ' ') {
589 ecbdata
->nparents
= i
- 1;
590 len
= sane_truncate_line(ecbdata
, line
, len
);
591 emit_line(ecbdata
->file
,
592 diff_get_color(ecbdata
->color_diff
, DIFF_FRAGINFO
),
594 if (line
[len
-1] != '\n')
595 putc('\n', ecbdata
->file
);
599 if (len
< ecbdata
->nparents
) {
600 emit_line(ecbdata
->file
, reset
, reset
, line
, len
);
605 if (ecbdata
->diff_words
&& ecbdata
->nparents
!= 1)
606 /* fall back to normal diff */
607 free_diff_words_data(ecbdata
);
608 if (ecbdata
->diff_words
) {
609 if (line
[0] == '-') {
610 diff_words_append(line
, len
,
611 &ecbdata
->diff_words
->minus
);
613 } else if (line
[0] == '+') {
614 diff_words_append(line
, len
,
615 &ecbdata
->diff_words
->plus
);
618 if (ecbdata
->diff_words
->minus
.text
.size
||
619 ecbdata
->diff_words
->plus
.text
.size
)
620 diff_words_show(ecbdata
->diff_words
);
623 emit_line(ecbdata
->file
, plain
, reset
, line
, len
);
626 for (i
= 0; i
< ecbdata
->nparents
&& len
; i
++) {
628 color
= DIFF_FILE_OLD
;
629 else if (line
[i
] == '+')
630 color
= DIFF_FILE_NEW
;
633 if (color
!= DIFF_FILE_NEW
) {
634 emit_line(ecbdata
->file
,
635 diff_get_color(ecbdata
->color_diff
, color
),
639 emit_add_line(reset
, ecbdata
, line
, len
);
642 static char *pprint_rename(const char *a
, const char *b
)
647 int pfx_length
, sfx_length
;
648 int len_a
= strlen(a
);
649 int len_b
= strlen(b
);
650 int a_midlen
, b_midlen
;
651 int qlen_a
= quote_c_style(a
, NULL
, NULL
, 0);
652 int qlen_b
= quote_c_style(b
, NULL
, NULL
, 0);
654 strbuf_init(&name
, 0);
655 if (qlen_a
|| qlen_b
) {
656 quote_c_style(a
, &name
, NULL
, 0);
657 strbuf_addstr(&name
, " => ");
658 quote_c_style(b
, &name
, NULL
, 0);
659 return strbuf_detach(&name
, NULL
);
662 /* Find common prefix */
664 while (*old
&& *new && *old
== *new) {
666 pfx_length
= old
- a
+ 1;
671 /* Find common suffix */
675 while (a
<= old
&& b
<= new && *old
== *new) {
677 sfx_length
= len_a
- (old
- a
);
683 * pfx{mid-a => mid-b}sfx
684 * {pfx-a => pfx-b}sfx
685 * pfx{sfx-a => sfx-b}
688 a_midlen
= len_a
- pfx_length
- sfx_length
;
689 b_midlen
= len_b
- pfx_length
- sfx_length
;
695 strbuf_grow(&name
, pfx_length
+ a_midlen
+ b_midlen
+ sfx_length
+ 7);
696 if (pfx_length
+ sfx_length
) {
697 strbuf_add(&name
, a
, pfx_length
);
698 strbuf_addch(&name
, '{');
700 strbuf_add(&name
, a
+ pfx_length
, a_midlen
);
701 strbuf_addstr(&name
, " => ");
702 strbuf_add(&name
, b
+ pfx_length
, b_midlen
);
703 if (pfx_length
+ sfx_length
) {
704 strbuf_addch(&name
, '}');
705 strbuf_add(&name
, a
+ len_a
- sfx_length
, sfx_length
);
707 return strbuf_detach(&name
, NULL
);
711 struct xdiff_emit_state xm
;
715 struct diffstat_file
{
719 unsigned is_unmerged
:1;
720 unsigned is_binary
:1;
721 unsigned is_renamed
:1;
722 unsigned int added
, deleted
;
726 static struct diffstat_file
*diffstat_add(struct diffstat_t
*diffstat
,
730 struct diffstat_file
*x
;
731 x
= xcalloc(sizeof (*x
), 1);
732 if (diffstat
->nr
== diffstat
->alloc
) {
733 diffstat
->alloc
= alloc_nr(diffstat
->alloc
);
734 diffstat
->files
= xrealloc(diffstat
->files
,
735 diffstat
->alloc
* sizeof(x
));
737 diffstat
->files
[diffstat
->nr
++] = x
;
739 x
->from_name
= xstrdup(name_a
);
740 x
->name
= xstrdup(name_b
);
745 x
->name
= xstrdup(name_a
);
750 static void diffstat_consume(void *priv
, char *line
, unsigned long len
)
752 struct diffstat_t
*diffstat
= priv
;
753 struct diffstat_file
*x
= diffstat
->files
[diffstat
->nr
- 1];
757 else if (line
[0] == '-')
761 const char mime_boundary_leader
[] = "------------";
763 static int scale_linear(int it
, int width
, int max_change
)
766 * make sure that at least one '-' is printed if there were deletions,
767 * and likewise for '+'.
771 return ((it
- 1) * (width
- 1) + max_change
- 1) / (max_change
- 1);
774 static void show_name(FILE *file
,
775 const char *prefix
, const char *name
, int len
,
776 const char *reset
, const char *set
)
778 fprintf(file
, " %s%s%-*s%s |", set
, prefix
, len
, name
, reset
);
781 static void show_graph(FILE *file
, char ch
, int cnt
, const char *set
, const char *reset
)
785 fprintf(file
, "%s", set
);
788 fprintf(file
, "%s", reset
);
791 static void fill_print_name(struct diffstat_file
*file
)
795 if (file
->print_name
)
798 if (!file
->is_renamed
) {
800 strbuf_init(&buf
, 0);
801 if (quote_c_style(file
->name
, &buf
, NULL
, 0)) {
802 pname
= strbuf_detach(&buf
, NULL
);
805 strbuf_release(&buf
);
808 pname
= pprint_rename(file
->from_name
, file
->name
);
810 file
->print_name
= pname
;
813 static void show_stats(struct diffstat_t
* data
, struct diff_options
*options
)
815 int i
, len
, add
, del
, total
, adds
= 0, dels
= 0;
816 int max_change
= 0, max_len
= 0;
817 int total_files
= data
->nr
;
818 int width
, name_width
;
819 const char *reset
, *set
, *add_c
, *del_c
;
824 width
= options
->stat_width
? options
->stat_width
: 80;
825 name_width
= options
->stat_name_width
? options
->stat_name_width
: 50;
827 /* Sanity: give at least 5 columns to the graph,
828 * but leave at least 10 columns for the name.
834 else if (width
< name_width
+ 15)
835 name_width
= width
- 15;
837 /* Find the longest filename and max number of changes */
838 reset
= diff_get_color_opt(options
, DIFF_RESET
);
839 set
= diff_get_color_opt(options
, DIFF_PLAIN
);
840 add_c
= diff_get_color_opt(options
, DIFF_FILE_NEW
);
841 del_c
= diff_get_color_opt(options
, DIFF_FILE_OLD
);
843 for (i
= 0; i
< data
->nr
; i
++) {
844 struct diffstat_file
*file
= data
->files
[i
];
845 int change
= file
->added
+ file
->deleted
;
846 fill_print_name(file
);
847 len
= strlen(file
->print_name
);
851 if (file
->is_binary
|| file
->is_unmerged
)
853 if (max_change
< change
)
857 /* Compute the width of the graph part;
858 * 10 is for one blank at the beginning of the line plus
859 * " | count " between the name and the graph.
861 * From here on, name_width is the width of the name area,
862 * and width is the width of the graph area.
864 name_width
= (name_width
< max_len
) ? name_width
: max_len
;
865 if (width
< (name_width
+ 10) + max_change
)
866 width
= width
- (name_width
+ 10);
870 for (i
= 0; i
< data
->nr
; i
++) {
871 const char *prefix
= "";
872 char *name
= data
->files
[i
]->print_name
;
873 int added
= data
->files
[i
]->added
;
874 int deleted
= data
->files
[i
]->deleted
;
878 * "scale" the filename
881 name_len
= strlen(name
);
882 if (name_width
< name_len
) {
886 name
+= name_len
- len
;
887 slash
= strchr(name
, '/');
892 if (data
->files
[i
]->is_binary
) {
893 show_name(options
->file
, prefix
, name
, len
, reset
, set
);
894 fprintf(options
->file
, " Bin ");
895 fprintf(options
->file
, "%s%d%s", del_c
, deleted
, reset
);
896 fprintf(options
->file
, " -> ");
897 fprintf(options
->file
, "%s%d%s", add_c
, added
, reset
);
898 fprintf(options
->file
, " bytes");
899 fprintf(options
->file
, "\n");
902 else if (data
->files
[i
]->is_unmerged
) {
903 show_name(options
->file
, prefix
, name
, len
, reset
, set
);
904 fprintf(options
->file
, " Unmerged\n");
907 else if (!data
->files
[i
]->is_renamed
&&
908 (added
+ deleted
== 0)) {
914 * scale the add/delete
922 if (width
<= max_change
) {
923 add
= scale_linear(add
, width
, max_change
);
924 del
= scale_linear(del
, width
, max_change
);
927 show_name(options
->file
, prefix
, name
, len
, reset
, set
);
928 fprintf(options
->file
, "%5d%s", added
+ deleted
,
929 added
+ deleted
? " " : "");
930 show_graph(options
->file
, '+', add
, add_c
, reset
);
931 show_graph(options
->file
, '-', del
, del_c
, reset
);
932 fprintf(options
->file
, "\n");
934 fprintf(options
->file
,
935 "%s %d files changed, %d insertions(+), %d deletions(-)%s\n",
936 set
, total_files
, adds
, dels
, reset
);
939 static void show_shortstats(struct diffstat_t
* data
, struct diff_options
*options
)
941 int i
, adds
= 0, dels
= 0, total_files
= data
->nr
;
946 for (i
= 0; i
< data
->nr
; i
++) {
947 if (!data
->files
[i
]->is_binary
&&
948 !data
->files
[i
]->is_unmerged
) {
949 int added
= data
->files
[i
]->added
;
950 int deleted
= data
->files
[i
]->deleted
;
951 if (!data
->files
[i
]->is_renamed
&&
952 (added
+ deleted
== 0)) {
960 fprintf(options
->file
, " %d files changed, %d insertions(+), %d deletions(-)\n",
961 total_files
, adds
, dels
);
964 static void show_numstat(struct diffstat_t
* data
, struct diff_options
*options
)
971 for (i
= 0; i
< data
->nr
; i
++) {
972 struct diffstat_file
*file
= data
->files
[i
];
975 fprintf(options
->file
, "-\t-\t");
977 fprintf(options
->file
,
978 "%d\t%d\t", file
->added
, file
->deleted
);
979 if (options
->line_termination
) {
980 fill_print_name(file
);
981 if (!file
->is_renamed
)
982 write_name_quoted(file
->name
, options
->file
,
983 options
->line_termination
);
985 fputs(file
->print_name
, options
->file
);
986 putc(options
->line_termination
, options
->file
);
989 if (file
->is_renamed
) {
990 putc('\0', options
->file
);
991 write_name_quoted(file
->from_name
, options
->file
, '\0');
993 write_name_quoted(file
->name
, options
->file
, '\0');
998 struct dirstat_file
{
1000 unsigned long changed
;
1003 struct dirstat_dir
{
1004 struct dirstat_file
*files
;
1005 int alloc
, nr
, percent
, cumulative
;
1008 static long gather_dirstat(FILE *file
, struct dirstat_dir
*dir
, unsigned long changed
, const char *base
, int baselen
)
1010 unsigned long this_dir
= 0;
1011 unsigned int sources
= 0;
1014 struct dirstat_file
*f
= dir
->files
;
1015 int namelen
= strlen(f
->name
);
1019 if (namelen
< baselen
)
1021 if (memcmp(f
->name
, base
, baselen
))
1023 slash
= strchr(f
->name
+ baselen
, '/');
1025 int newbaselen
= slash
+ 1 - f
->name
;
1026 this = gather_dirstat(file
, dir
, changed
, f
->name
, newbaselen
);
1038 * We don't report dirstat's for
1040 * - or cases where everything came from a single directory
1041 * under this directory (sources == 1).
1043 if (baselen
&& sources
!= 1) {
1044 int permille
= this_dir
* 1000 / changed
;
1046 int percent
= permille
/ 10;
1047 if (percent
>= dir
->percent
) {
1048 fprintf(file
, "%4d.%01d%% %.*s\n", percent
, permille
% 10, baselen
, base
);
1049 if (!dir
->cumulative
)
1057 static void show_dirstat(struct diff_options
*options
)
1060 unsigned long changed
;
1061 struct dirstat_dir dir
;
1062 struct diff_queue_struct
*q
= &diff_queued_diff
;
1067 dir
.percent
= options
->dirstat_percent
;
1068 dir
.cumulative
= options
->output_format
& DIFF_FORMAT_CUMULATIVE
;
1071 for (i
= 0; i
< q
->nr
; i
++) {
1072 struct diff_filepair
*p
= q
->queue
[i
];
1074 unsigned long copied
, added
, damage
;
1076 name
= p
->one
->path
? p
->one
->path
: p
->two
->path
;
1078 if (DIFF_FILE_VALID(p
->one
) && DIFF_FILE_VALID(p
->two
)) {
1079 diff_populate_filespec(p
->one
, 0);
1080 diff_populate_filespec(p
->two
, 0);
1081 diffcore_count_changes(p
->one
, p
->two
, NULL
, NULL
, 0,
1083 diff_free_filespec_data(p
->one
);
1084 diff_free_filespec_data(p
->two
);
1085 } else if (DIFF_FILE_VALID(p
->one
)) {
1086 diff_populate_filespec(p
->one
, 1);
1088 diff_free_filespec_data(p
->one
);
1089 } else if (DIFF_FILE_VALID(p
->two
)) {
1090 diff_populate_filespec(p
->two
, 1);
1092 added
= p
->two
->size
;
1093 diff_free_filespec_data(p
->two
);
1098 * Original minus copied is the removed material,
1099 * added is the new material. They are both damages
1100 * made to the preimage.
1102 damage
= (p
->one
->size
- copied
) + added
;
1104 ALLOC_GROW(dir
.files
, dir
.nr
+ 1, dir
.alloc
);
1105 dir
.files
[dir
.nr
].name
= name
;
1106 dir
.files
[dir
.nr
].changed
= damage
;
1111 /* This can happen even with many files, if everything was renames */
1115 /* Show all directories with more than x% of the changes */
1116 gather_dirstat(options
->file
, &dir
, changed
, "", 0);
1119 static void free_diffstat_info(struct diffstat_t
*diffstat
)
1122 for (i
= 0; i
< diffstat
->nr
; i
++) {
1123 struct diffstat_file
*f
= diffstat
->files
[i
];
1124 if (f
->name
!= f
->print_name
)
1125 free(f
->print_name
);
1130 free(diffstat
->files
);
1133 struct checkdiff_t
{
1134 struct xdiff_emit_state xm
;
1135 const char *filename
;
1137 struct diff_options
*o
;
1140 int trailing_blanks_start
;
1143 static int is_conflict_marker(const char *line
, unsigned long len
)
1150 firstchar
= line
[0];
1151 switch (firstchar
) {
1152 case '=': case '>': case '<':
1157 for (cnt
= 1; cnt
< 7; cnt
++)
1158 if (line
[cnt
] != firstchar
)
1160 /* line[0] thru line[6] are same as firstchar */
1161 if (firstchar
== '=') {
1162 /* divider between ours and theirs? */
1163 if (len
!= 8 || line
[7] != '\n')
1165 } else if (len
< 8 || !isspace(line
[7])) {
1166 /* not divider before ours nor after theirs */
1172 static void checkdiff_consume(void *priv
, char *line
, unsigned long len
)
1174 struct checkdiff_t
*data
= priv
;
1175 int color_diff
= DIFF_OPT_TST(data
->o
, COLOR_DIFF
);
1176 const char *ws
= diff_get_color(color_diff
, DIFF_WHITESPACE
);
1177 const char *reset
= diff_get_color(color_diff
, DIFF_RESET
);
1178 const char *set
= diff_get_color(color_diff
, DIFF_FILE_NEW
);
1181 if (line
[0] == '+') {
1184 if (!ws_blank_line(line
+ 1, len
- 1, data
->ws_rule
))
1185 data
->trailing_blanks_start
= 0;
1186 else if (!data
->trailing_blanks_start
)
1187 data
->trailing_blanks_start
= data
->lineno
;
1188 if (is_conflict_marker(line
+ 1, len
- 1)) {
1190 fprintf(data
->o
->file
,
1191 "%s:%d: leftover conflict marker\n",
1192 data
->filename
, data
->lineno
);
1194 bad
= ws_check(line
+ 1, len
- 1, data
->ws_rule
);
1197 data
->status
|= bad
;
1198 err
= whitespace_error_string(bad
);
1199 fprintf(data
->o
->file
, "%s:%d: %s.\n",
1200 data
->filename
, data
->lineno
, err
);
1202 emit_line(data
->o
->file
, set
, reset
, line
, 1);
1203 ws_check_emit(line
+ 1, len
- 1, data
->ws_rule
,
1204 data
->o
->file
, set
, reset
, ws
);
1205 } else if (line
[0] == ' ') {
1207 data
->trailing_blanks_start
= 0;
1208 } else if (line
[0] == '@') {
1209 char *plus
= strchr(line
, '+');
1211 data
->lineno
= strtol(plus
, NULL
, 10) - 1;
1213 die("invalid diff");
1214 data
->trailing_blanks_start
= 0;
1218 static unsigned char *deflate_it(char *data
,
1220 unsigned long *result_size
)
1223 unsigned char *deflated
;
1226 memset(&stream
, 0, sizeof(stream
));
1227 deflateInit(&stream
, zlib_compression_level
);
1228 bound
= deflateBound(&stream
, size
);
1229 deflated
= xmalloc(bound
);
1230 stream
.next_out
= deflated
;
1231 stream
.avail_out
= bound
;
1233 stream
.next_in
= (unsigned char *)data
;
1234 stream
.avail_in
= size
;
1235 while (deflate(&stream
, Z_FINISH
) == Z_OK
)
1237 deflateEnd(&stream
);
1238 *result_size
= stream
.total_out
;
1242 static void emit_binary_diff_body(FILE *file
, mmfile_t
*one
, mmfile_t
*two
)
1248 unsigned long orig_size
;
1249 unsigned long delta_size
;
1250 unsigned long deflate_size
;
1251 unsigned long data_size
;
1253 /* We could do deflated delta, or we could do just deflated two,
1254 * whichever is smaller.
1257 deflated
= deflate_it(two
->ptr
, two
->size
, &deflate_size
);
1258 if (one
->size
&& two
->size
) {
1259 delta
= diff_delta(one
->ptr
, one
->size
,
1260 two
->ptr
, two
->size
,
1261 &delta_size
, deflate_size
);
1263 void *to_free
= delta
;
1264 orig_size
= delta_size
;
1265 delta
= deflate_it(delta
, delta_size
, &delta_size
);
1270 if (delta
&& delta_size
< deflate_size
) {
1271 fprintf(file
, "delta %lu\n", orig_size
);
1274 data_size
= delta_size
;
1277 fprintf(file
, "literal %lu\n", two
->size
);
1280 data_size
= deflate_size
;
1283 /* emit data encoded in base85 */
1286 int bytes
= (52 < data_size
) ? 52 : data_size
;
1290 line
[0] = bytes
+ 'A' - 1;
1292 line
[0] = bytes
- 26 + 'a' - 1;
1293 encode_85(line
+ 1, cp
, bytes
);
1294 cp
= (char *) cp
+ bytes
;
1298 fprintf(file
, "\n");
1302 static void emit_binary_diff(FILE *file
, mmfile_t
*one
, mmfile_t
*two
)
1304 fprintf(file
, "GIT binary patch\n");
1305 emit_binary_diff_body(file
, one
, two
);
1306 emit_binary_diff_body(file
, two
, one
);
1309 static void setup_diff_attr_check(struct git_attr_check
*check
)
1311 static struct git_attr
*attr_diff
;
1314 attr_diff
= git_attr("diff", 4);
1316 check
[0].attr
= attr_diff
;
1319 static void diff_filespec_check_attr(struct diff_filespec
*one
)
1321 struct git_attr_check attr_diff_check
;
1322 int check_from_data
= 0;
1324 if (one
->checked_attr
)
1327 setup_diff_attr_check(&attr_diff_check
);
1329 one
->funcname_pattern_ident
= NULL
;
1331 if (!git_checkattr(one
->path
, 1, &attr_diff_check
)) {
1335 value
= attr_diff_check
.value
;
1336 if (ATTR_TRUE(value
))
1338 else if (ATTR_FALSE(value
))
1341 check_from_data
= 1;
1343 /* funcname pattern ident */
1344 if (ATTR_TRUE(value
) || ATTR_FALSE(value
) || ATTR_UNSET(value
))
1347 one
->funcname_pattern_ident
= value
;
1350 if (check_from_data
) {
1351 if (!one
->data
&& DIFF_FILE_VALID(one
))
1352 diff_populate_filespec(one
, 0);
1355 one
->is_binary
= buffer_is_binary(one
->data
, one
->size
);
1359 int diff_filespec_is_binary(struct diff_filespec
*one
)
1361 diff_filespec_check_attr(one
);
1362 return one
->is_binary
;
1365 static const char *funcname_pattern(const char *ident
)
1367 struct funcname_pattern
*pp
;
1369 for (pp
= funcname_pattern_list
; pp
; pp
= pp
->next
)
1370 if (!strcmp(ident
, pp
->name
))
1375 static struct builtin_funcname_pattern
{
1377 const char *pattern
;
1378 } builtin_funcname_pattern
[] = {
1379 { "java", "!^[ ]*\\(catch\\|do\\|for\\|if\\|instanceof\\|"
1380 "new\\|return\\|switch\\|throw\\|while\\)\n"
1382 "[A-Za-z_][A-Za-z_0-9]*\\)\\{2,\\}"
1384 { "pascal", "^\\(\\(procedure\\|function\\|constructor\\|"
1385 "destructor\\|interface\\|implementation\\|"
1386 "initialization\\|finalization\\)[ \t]*.*\\)$"
1388 "^\\(.*=[ \t]*\\(class\\|record\\).*\\)$"
1390 { "tex", "^\\(\\\\\\(\\(sub\\)*section\\|chapter\\|part\\)\\*\\{0,1\\}{.*\\)$" },
1391 { "ruby", "^\\s*\\(\\(class\\|module\\|def\\)\\s.*\\)$" },
1394 static const char *diff_funcname_pattern(struct diff_filespec
*one
)
1396 const char *ident
, *pattern
;
1399 diff_filespec_check_attr(one
);
1400 ident
= one
->funcname_pattern_ident
;
1404 * If the config file has "funcname.default" defined, that
1405 * regexp is used; otherwise NULL is returned and xemit uses
1406 * the built-in default.
1408 return funcname_pattern("default");
1410 /* Look up custom "funcname.$ident" regexp from config. */
1411 pattern
= funcname_pattern(ident
);
1416 * And define built-in fallback patterns here. Note that
1417 * these can be overridden by the user's config settings.
1419 for (i
= 0; i
< ARRAY_SIZE(builtin_funcname_pattern
); i
++)
1420 if (!strcmp(ident
, builtin_funcname_pattern
[i
].name
))
1421 return builtin_funcname_pattern
[i
].pattern
;
1426 static void builtin_diff(const char *name_a
,
1428 struct diff_filespec
*one
,
1429 struct diff_filespec
*two
,
1430 const char *xfrm_msg
,
1431 struct diff_options
*o
,
1432 int complete_rewrite
)
1436 char *a_one
, *b_two
;
1437 const char *set
= diff_get_color_opt(o
, DIFF_METAINFO
);
1438 const char *reset
= diff_get_color_opt(o
, DIFF_RESET
);
1440 a_one
= quote_two(o
->a_prefix
, name_a
+ (*name_a
== '/'));
1441 b_two
= quote_two(o
->b_prefix
, name_b
+ (*name_b
== '/'));
1442 lbl
[0] = DIFF_FILE_VALID(one
) ? a_one
: "/dev/null";
1443 lbl
[1] = DIFF_FILE_VALID(two
) ? b_two
: "/dev/null";
1444 fprintf(o
->file
, "%sdiff --git %s %s%s\n", set
, a_one
, b_two
, reset
);
1445 if (lbl
[0][0] == '/') {
1447 fprintf(o
->file
, "%snew file mode %06o%s\n", set
, two
->mode
, reset
);
1448 if (xfrm_msg
&& xfrm_msg
[0])
1449 fprintf(o
->file
, "%s%s%s\n", set
, xfrm_msg
, reset
);
1451 else if (lbl
[1][0] == '/') {
1452 fprintf(o
->file
, "%sdeleted file mode %06o%s\n", set
, one
->mode
, reset
);
1453 if (xfrm_msg
&& xfrm_msg
[0])
1454 fprintf(o
->file
, "%s%s%s\n", set
, xfrm_msg
, reset
);
1457 if (one
->mode
!= two
->mode
) {
1458 fprintf(o
->file
, "%sold mode %06o%s\n", set
, one
->mode
, reset
);
1459 fprintf(o
->file
, "%snew mode %06o%s\n", set
, two
->mode
, reset
);
1461 if (xfrm_msg
&& xfrm_msg
[0])
1462 fprintf(o
->file
, "%s%s%s\n", set
, xfrm_msg
, reset
);
1464 * we do not run diff between different kind
1467 if ((one
->mode
^ two
->mode
) & S_IFMT
)
1468 goto free_ab_and_return
;
1469 if (complete_rewrite
) {
1470 emit_rewrite_diff(name_a
, name_b
, one
, two
, o
);
1471 o
->found_changes
= 1;
1472 goto free_ab_and_return
;
1476 if (fill_mmfile(&mf1
, one
) < 0 || fill_mmfile(&mf2
, two
) < 0)
1477 die("unable to read files to diff");
1479 if (!DIFF_OPT_TST(o
, TEXT
) &&
1480 (diff_filespec_is_binary(one
) || diff_filespec_is_binary(two
))) {
1481 /* Quite common confusing case */
1482 if (mf1
.size
== mf2
.size
&&
1483 !memcmp(mf1
.ptr
, mf2
.ptr
, mf1
.size
))
1484 goto free_ab_and_return
;
1485 if (DIFF_OPT_TST(o
, BINARY
))
1486 emit_binary_diff(o
->file
, &mf1
, &mf2
);
1488 fprintf(o
->file
, "Binary files %s and %s differ\n",
1490 o
->found_changes
= 1;
1493 /* Crazy xdl interfaces.. */
1494 const char *diffopts
= getenv("GIT_DIFF_OPTS");
1498 struct emit_callback ecbdata
;
1499 const char *funcname_pattern
;
1501 funcname_pattern
= diff_funcname_pattern(one
);
1502 if (!funcname_pattern
)
1503 funcname_pattern
= diff_funcname_pattern(two
);
1505 memset(&xecfg
, 0, sizeof(xecfg
));
1506 memset(&ecbdata
, 0, sizeof(ecbdata
));
1507 ecbdata
.label_path
= lbl
;
1508 ecbdata
.color_diff
= DIFF_OPT_TST(o
, COLOR_DIFF
);
1509 ecbdata
.found_changesp
= &o
->found_changes
;
1510 ecbdata
.ws_rule
= whitespace_rule(name_b
? name_b
: name_a
);
1511 ecbdata
.file
= o
->file
;
1512 xpp
.flags
= XDF_NEED_MINIMAL
| o
->xdl_opts
;
1513 xecfg
.ctxlen
= o
->context
;
1514 xecfg
.flags
= XDL_EMIT_FUNCNAMES
;
1515 if (funcname_pattern
)
1516 xdiff_set_find_func(&xecfg
, funcname_pattern
);
1519 else if (!prefixcmp(diffopts
, "--unified="))
1520 xecfg
.ctxlen
= strtoul(diffopts
+ 10, NULL
, 10);
1521 else if (!prefixcmp(diffopts
, "-u"))
1522 xecfg
.ctxlen
= strtoul(diffopts
+ 2, NULL
, 10);
1523 ecb
.outf
= xdiff_outf
;
1524 ecb
.priv
= &ecbdata
;
1525 ecbdata
.xm
.consume
= fn_out_consume
;
1526 if (DIFF_OPT_TST(o
, COLOR_DIFF_WORDS
)) {
1527 ecbdata
.diff_words
=
1528 xcalloc(1, sizeof(struct diff_words_data
));
1529 ecbdata
.diff_words
->file
= o
->file
;
1531 xdi_diff(&mf1
, &mf2
, &xpp
, &xecfg
, &ecb
);
1532 if (DIFF_OPT_TST(o
, COLOR_DIFF_WORDS
))
1533 free_diff_words_data(&ecbdata
);
1537 diff_free_filespec_data(one
);
1538 diff_free_filespec_data(two
);
1544 static void builtin_diffstat(const char *name_a
, const char *name_b
,
1545 struct diff_filespec
*one
,
1546 struct diff_filespec
*two
,
1547 struct diffstat_t
*diffstat
,
1548 struct diff_options
*o
,
1549 int complete_rewrite
)
1552 struct diffstat_file
*data
;
1554 data
= diffstat_add(diffstat
, name_a
, name_b
);
1557 data
->is_unmerged
= 1;
1560 if (complete_rewrite
) {
1561 diff_populate_filespec(one
, 0);
1562 diff_populate_filespec(two
, 0);
1563 data
->deleted
= count_lines(one
->data
, one
->size
);
1564 data
->added
= count_lines(two
->data
, two
->size
);
1565 goto free_and_return
;
1567 if (fill_mmfile(&mf1
, one
) < 0 || fill_mmfile(&mf2
, two
) < 0)
1568 die("unable to read files to diff");
1570 if (diff_filespec_is_binary(one
) || diff_filespec_is_binary(two
)) {
1571 data
->is_binary
= 1;
1572 data
->added
= mf2
.size
;
1573 data
->deleted
= mf1
.size
;
1575 /* Crazy xdl interfaces.. */
1580 memset(&xecfg
, 0, sizeof(xecfg
));
1581 xpp
.flags
= XDF_NEED_MINIMAL
| o
->xdl_opts
;
1582 ecb
.outf
= xdiff_outf
;
1583 ecb
.priv
= diffstat
;
1584 xdi_diff(&mf1
, &mf2
, &xpp
, &xecfg
, &ecb
);
1588 diff_free_filespec_data(one
);
1589 diff_free_filespec_data(two
);
1592 static void builtin_checkdiff(const char *name_a
, const char *name_b
,
1593 const char *attr_path
,
1594 struct diff_filespec
*one
,
1595 struct diff_filespec
*two
,
1596 struct diff_options
*o
)
1599 struct checkdiff_t data
;
1604 memset(&data
, 0, sizeof(data
));
1605 data
.xm
.consume
= checkdiff_consume
;
1606 data
.filename
= name_b
? name_b
: name_a
;
1609 data
.ws_rule
= whitespace_rule(attr_path
);
1611 if (fill_mmfile(&mf1
, one
) < 0 || fill_mmfile(&mf2
, two
) < 0)
1612 die("unable to read files to diff");
1615 * All the other codepaths check both sides, but not checking
1616 * the "old" side here is deliberate. We are checking the newly
1617 * introduced changes, and as long as the "new" side is text, we
1618 * can and should check what it introduces.
1620 if (diff_filespec_is_binary(two
))
1621 goto free_and_return
;
1623 /* Crazy xdl interfaces.. */
1628 memset(&xecfg
, 0, sizeof(xecfg
));
1629 xpp
.flags
= XDF_NEED_MINIMAL
;
1630 ecb
.outf
= xdiff_outf
;
1632 xdi_diff(&mf1
, &mf2
, &xpp
, &xecfg
, &ecb
);
1634 if (data
.trailing_blanks_start
) {
1635 fprintf(o
->file
, "%s:%d: ends with blank lines.\n",
1636 data
.filename
, data
.trailing_blanks_start
);
1637 data
.status
= 1; /* report errors */
1641 diff_free_filespec_data(one
);
1642 diff_free_filespec_data(two
);
1644 DIFF_OPT_SET(o
, CHECK_FAILED
);
1647 struct diff_filespec
*alloc_filespec(const char *path
)
1649 int namelen
= strlen(path
);
1650 struct diff_filespec
*spec
= xmalloc(sizeof(*spec
) + namelen
+ 1);
1652 memset(spec
, 0, sizeof(*spec
));
1653 spec
->path
= (char *)(spec
+ 1);
1654 memcpy(spec
->path
, path
, namelen
+1);
1659 void free_filespec(struct diff_filespec
*spec
)
1661 if (!--spec
->count
) {
1662 diff_free_filespec_data(spec
);
1667 void fill_filespec(struct diff_filespec
*spec
, const unsigned char *sha1
,
1668 unsigned short mode
)
1671 spec
->mode
= canon_mode(mode
);
1672 hashcpy(spec
->sha1
, sha1
);
1673 spec
->sha1_valid
= !is_null_sha1(sha1
);
1678 * Given a name and sha1 pair, if the index tells us the file in
1679 * the work tree has that object contents, return true, so that
1680 * prepare_temp_file() does not have to inflate and extract.
1682 static int reuse_worktree_file(const char *name
, const unsigned char *sha1
, int want_file
)
1684 struct cache_entry
*ce
;
1688 /* We do not read the cache ourselves here, because the
1689 * benchmark with my previous version that always reads cache
1690 * shows that it makes things worse for diff-tree comparing
1691 * two linux-2.6 kernel trees in an already checked out work
1692 * tree. This is because most diff-tree comparisons deal with
1693 * only a small number of files, while reading the cache is
1694 * expensive for a large project, and its cost outweighs the
1695 * savings we get by not inflating the object to a temporary
1696 * file. Practically, this code only helps when we are used
1697 * by diff-cache --cached, which does read the cache before
1703 /* We want to avoid the working directory if our caller
1704 * doesn't need the data in a normal file, this system
1705 * is rather slow with its stat/open/mmap/close syscalls,
1706 * and the object is contained in a pack file. The pack
1707 * is probably already open and will be faster to obtain
1708 * the data through than the working directory. Loose
1709 * objects however would tend to be slower as they need
1710 * to be individually opened and inflated.
1712 if (!FAST_WORKING_DIRECTORY
&& !want_file
&& has_sha1_pack(sha1
, NULL
))
1716 pos
= cache_name_pos(name
, len
);
1719 ce
= active_cache
[pos
];
1722 * This is not the sha1 we are looking for, or
1723 * unreusable because it is not a regular file.
1725 if (hashcmp(sha1
, ce
->sha1
) || !S_ISREG(ce
->ce_mode
))
1729 * If ce matches the file in the work tree, we can reuse it.
1731 if (ce_uptodate(ce
) ||
1732 (!lstat(name
, &st
) && !ce_match_stat(ce
, &st
, 0)))
1738 static int populate_from_stdin(struct diff_filespec
*s
)
1743 strbuf_init(&buf
, 0);
1744 if (strbuf_read(&buf
, 0, 0) < 0)
1745 return error("error while reading from stdin %s",
1748 s
->should_munmap
= 0;
1749 s
->data
= strbuf_detach(&buf
, &size
);
1755 static int diff_populate_gitlink(struct diff_filespec
*s
, int size_only
)
1758 char *data
= xmalloc(100);
1759 len
= snprintf(data
, 100,
1760 "Subproject commit %s\n", sha1_to_hex(s
->sha1
));
1772 * While doing rename detection and pickaxe operation, we may need to
1773 * grab the data for the blob (or file) for our own in-core comparison.
1774 * diff_filespec has data and size fields for this purpose.
1776 int diff_populate_filespec(struct diff_filespec
*s
, int size_only
)
1779 if (!DIFF_FILE_VALID(s
))
1780 die("internal error: asking to populate invalid file.");
1781 if (S_ISDIR(s
->mode
))
1787 if (size_only
&& 0 < s
->size
)
1790 if (S_ISGITLINK(s
->mode
))
1791 return diff_populate_gitlink(s
, size_only
);
1793 if (!s
->sha1_valid
||
1794 reuse_worktree_file(s
->path
, s
->sha1
, 0)) {
1799 if (!strcmp(s
->path
, "-"))
1800 return populate_from_stdin(s
);
1802 if (lstat(s
->path
, &st
) < 0) {
1803 if (errno
== ENOENT
) {
1807 s
->data
= (char *)"";
1812 s
->size
= xsize_t(st
.st_size
);
1817 if (S_ISLNK(st
.st_mode
)) {
1819 s
->data
= xmalloc(s
->size
);
1821 ret
= readlink(s
->path
, s
->data
, s
->size
);
1828 fd
= open(s
->path
, O_RDONLY
);
1831 s
->data
= xmmap(NULL
, s
->size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
1833 s
->should_munmap
= 1;
1836 * Convert from working tree format to canonical git format
1838 strbuf_init(&buf
, 0);
1839 if (convert_to_git(s
->path
, s
->data
, s
->size
, &buf
, safe_crlf
)) {
1841 munmap(s
->data
, s
->size
);
1842 s
->should_munmap
= 0;
1843 s
->data
= strbuf_detach(&buf
, &size
);
1849 enum object_type type
;
1851 type
= sha1_object_info(s
->sha1
, &s
->size
);
1853 s
->data
= read_sha1_file(s
->sha1
, &type
, &s
->size
);
1860 void diff_free_filespec_blob(struct diff_filespec
*s
)
1864 else if (s
->should_munmap
)
1865 munmap(s
->data
, s
->size
);
1867 if (s
->should_free
|| s
->should_munmap
) {
1868 s
->should_free
= s
->should_munmap
= 0;
1873 void diff_free_filespec_data(struct diff_filespec
*s
)
1875 diff_free_filespec_blob(s
);
1880 static void prep_temp_blob(struct diff_tempfile
*temp
,
1883 const unsigned char *sha1
,
1888 fd
= git_mkstemp(temp
->tmp_path
, PATH_MAX
, ".diff_XXXXXX");
1890 die("unable to create temp-file: %s", strerror(errno
));
1891 if (write_in_full(fd
, blob
, size
) != size
)
1892 die("unable to write temp-file");
1894 temp
->name
= temp
->tmp_path
;
1895 strcpy(temp
->hex
, sha1_to_hex(sha1
));
1897 sprintf(temp
->mode
, "%06o", mode
);
1900 static void prepare_temp_file(const char *name
,
1901 struct diff_tempfile
*temp
,
1902 struct diff_filespec
*one
)
1904 if (!DIFF_FILE_VALID(one
)) {
1906 /* A '-' entry produces this for file-2, and
1907 * a '+' entry produces this for file-1.
1909 temp
->name
= "/dev/null";
1910 strcpy(temp
->hex
, ".");
1911 strcpy(temp
->mode
, ".");
1915 if (!one
->sha1_valid
||
1916 reuse_worktree_file(name
, one
->sha1
, 1)) {
1918 if (lstat(name
, &st
) < 0) {
1919 if (errno
== ENOENT
)
1920 goto not_a_valid_file
;
1921 die("stat(%s): %s", name
, strerror(errno
));
1923 if (S_ISLNK(st
.st_mode
)) {
1925 char buf
[PATH_MAX
+ 1]; /* ought to be SYMLINK_MAX */
1926 size_t sz
= xsize_t(st
.st_size
);
1927 if (sizeof(buf
) <= st
.st_size
)
1928 die("symlink too long: %s", name
);
1929 ret
= readlink(name
, buf
, sz
);
1931 die("readlink(%s)", name
);
1932 prep_temp_blob(temp
, buf
, sz
,
1934 one
->sha1
: null_sha1
),
1936 one
->mode
: S_IFLNK
));
1939 /* we can borrow from the file in the work tree */
1941 if (!one
->sha1_valid
)
1942 strcpy(temp
->hex
, sha1_to_hex(null_sha1
));
1944 strcpy(temp
->hex
, sha1_to_hex(one
->sha1
));
1945 /* Even though we may sometimes borrow the
1946 * contents from the work tree, we always want
1947 * one->mode. mode is trustworthy even when
1948 * !(one->sha1_valid), as long as
1949 * DIFF_FILE_VALID(one).
1951 sprintf(temp
->mode
, "%06o", one
->mode
);
1956 if (diff_populate_filespec(one
, 0))
1957 die("cannot read data blob for %s", one
->path
);
1958 prep_temp_blob(temp
, one
->data
, one
->size
,
1959 one
->sha1
, one
->mode
);
1963 static void remove_tempfile(void)
1967 for (i
= 0; i
< 2; i
++)
1968 if (diff_temp
[i
].name
== diff_temp
[i
].tmp_path
) {
1969 unlink(diff_temp
[i
].name
);
1970 diff_temp
[i
].name
= NULL
;
1974 static void remove_tempfile_on_signal(int signo
)
1977 signal(SIGINT
, SIG_DFL
);
1981 /* An external diff command takes:
1983 * diff-cmd name infile1 infile1-sha1 infile1-mode \
1984 * infile2 infile2-sha1 infile2-mode [ rename-to ]
1987 static void run_external_diff(const char *pgm
,
1990 struct diff_filespec
*one
,
1991 struct diff_filespec
*two
,
1992 const char *xfrm_msg
,
1993 int complete_rewrite
)
1995 const char *spawn_arg
[10];
1996 struct diff_tempfile
*temp
= diff_temp
;
1998 static int atexit_asked
= 0;
1999 const char *othername
;
2000 const char **arg
= &spawn_arg
[0];
2002 othername
= (other
? other
: name
);
2004 prepare_temp_file(name
, &temp
[0], one
);
2005 prepare_temp_file(othername
, &temp
[1], two
);
2006 if (! atexit_asked
&&
2007 (temp
[0].name
== temp
[0].tmp_path
||
2008 temp
[1].name
== temp
[1].tmp_path
)) {
2010 atexit(remove_tempfile
);
2012 signal(SIGINT
, remove_tempfile_on_signal
);
2018 *arg
++ = temp
[0].name
;
2019 *arg
++ = temp
[0].hex
;
2020 *arg
++ = temp
[0].mode
;
2021 *arg
++ = temp
[1].name
;
2022 *arg
++ = temp
[1].hex
;
2023 *arg
++ = temp
[1].mode
;
2034 retval
= run_command_v_opt(spawn_arg
, 0);
2037 fprintf(stderr
, "external diff died, stopping at %s.\n", name
);
2042 static const char *external_diff_attr(const char *name
)
2044 struct git_attr_check attr_diff_check
;
2049 setup_diff_attr_check(&attr_diff_check
);
2050 if (!git_checkattr(name
, 1, &attr_diff_check
)) {
2051 const char *value
= attr_diff_check
.value
;
2052 if (!ATTR_TRUE(value
) &&
2053 !ATTR_FALSE(value
) &&
2054 !ATTR_UNSET(value
)) {
2055 struct ll_diff_driver
*drv
;
2057 for (drv
= user_diff
; drv
; drv
= drv
->next
)
2058 if (!strcmp(drv
->name
, value
))
2065 static void run_diff_cmd(const char *pgm
,
2068 const char *attr_path
,
2069 struct diff_filespec
*one
,
2070 struct diff_filespec
*two
,
2071 const char *xfrm_msg
,
2072 struct diff_options
*o
,
2073 int complete_rewrite
)
2075 if (!DIFF_OPT_TST(o
, ALLOW_EXTERNAL
))
2078 const char *cmd
= external_diff_attr(attr_path
);
2084 run_external_diff(pgm
, name
, other
, one
, two
, xfrm_msg
,
2089 builtin_diff(name
, other
? other
: name
,
2090 one
, two
, xfrm_msg
, o
, complete_rewrite
);
2092 fprintf(o
->file
, "* Unmerged path %s\n", name
);
2095 static void diff_fill_sha1_info(struct diff_filespec
*one
)
2097 if (DIFF_FILE_VALID(one
)) {
2098 if (!one
->sha1_valid
) {
2100 if (!strcmp(one
->path
, "-")) {
2101 hashcpy(one
->sha1
, null_sha1
);
2104 if (lstat(one
->path
, &st
) < 0)
2105 die("stat %s", one
->path
);
2106 if (index_path(one
->sha1
, one
->path
, &st
, 0))
2107 die("cannot hash %s\n", one
->path
);
2114 static int similarity_index(struct diff_filepair
*p
)
2116 return p
->score
* 100 / MAX_SCORE
;
2119 static void strip_prefix(int prefix_length
, const char **namep
, const char **otherp
)
2121 /* Strip the prefix but do not molest /dev/null and absolute paths */
2122 if (*namep
&& **namep
!= '/')
2123 *namep
+= prefix_length
;
2124 if (*otherp
&& **otherp
!= '/')
2125 *otherp
+= prefix_length
;
2128 static void run_diff(struct diff_filepair
*p
, struct diff_options
*o
)
2130 const char *pgm
= external_diff();
2133 struct diff_filespec
*one
= p
->one
;
2134 struct diff_filespec
*two
= p
->two
;
2137 const char *attr_path
;
2138 int complete_rewrite
= 0;
2140 name
= p
->one
->path
;
2141 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
2143 if (o
->prefix_length
)
2144 strip_prefix(o
->prefix_length
, &name
, &other
);
2146 if (DIFF_PAIR_UNMERGED(p
)) {
2147 run_diff_cmd(pgm
, name
, NULL
, attr_path
,
2148 NULL
, NULL
, NULL
, o
, 0);
2152 diff_fill_sha1_info(one
);
2153 diff_fill_sha1_info(two
);
2155 strbuf_init(&msg
, PATH_MAX
* 2 + 300);
2156 switch (p
->status
) {
2157 case DIFF_STATUS_COPIED
:
2158 strbuf_addf(&msg
, "similarity index %d%%", similarity_index(p
));
2159 strbuf_addstr(&msg
, "\ncopy from ");
2160 quote_c_style(name
, &msg
, NULL
, 0);
2161 strbuf_addstr(&msg
, "\ncopy to ");
2162 quote_c_style(other
, &msg
, NULL
, 0);
2163 strbuf_addch(&msg
, '\n');
2165 case DIFF_STATUS_RENAMED
:
2166 strbuf_addf(&msg
, "similarity index %d%%", similarity_index(p
));
2167 strbuf_addstr(&msg
, "\nrename from ");
2168 quote_c_style(name
, &msg
, NULL
, 0);
2169 strbuf_addstr(&msg
, "\nrename to ");
2170 quote_c_style(other
, &msg
, NULL
, 0);
2171 strbuf_addch(&msg
, '\n');
2173 case DIFF_STATUS_MODIFIED
:
2175 strbuf_addf(&msg
, "dissimilarity index %d%%\n",
2176 similarity_index(p
));
2177 complete_rewrite
= 1;
2186 if (hashcmp(one
->sha1
, two
->sha1
)) {
2187 int abbrev
= DIFF_OPT_TST(o
, FULL_INDEX
) ? 40 : DEFAULT_ABBREV
;
2189 if (DIFF_OPT_TST(o
, BINARY
)) {
2191 if ((!fill_mmfile(&mf
, one
) && diff_filespec_is_binary(one
)) ||
2192 (!fill_mmfile(&mf
, two
) && diff_filespec_is_binary(two
)))
2195 strbuf_addf(&msg
, "index %.*s..%.*s",
2196 abbrev
, sha1_to_hex(one
->sha1
),
2197 abbrev
, sha1_to_hex(two
->sha1
));
2198 if (one
->mode
== two
->mode
)
2199 strbuf_addf(&msg
, " %06o", one
->mode
);
2200 strbuf_addch(&msg
, '\n');
2204 strbuf_setlen(&msg
, msg
.len
- 1);
2205 xfrm_msg
= msg
.len
? msg
.buf
: NULL
;
2208 DIFF_FILE_VALID(one
) && DIFF_FILE_VALID(two
) &&
2209 (S_IFMT
& one
->mode
) != (S_IFMT
& two
->mode
)) {
2210 /* a filepair that changes between file and symlink
2211 * needs to be split into deletion and creation.
2213 struct diff_filespec
*null
= alloc_filespec(two
->path
);
2214 run_diff_cmd(NULL
, name
, other
, attr_path
,
2215 one
, null
, xfrm_msg
, o
, 0);
2217 null
= alloc_filespec(one
->path
);
2218 run_diff_cmd(NULL
, name
, other
, attr_path
,
2219 null
, two
, xfrm_msg
, o
, 0);
2223 run_diff_cmd(pgm
, name
, other
, attr_path
,
2224 one
, two
, xfrm_msg
, o
, complete_rewrite
);
2226 strbuf_release(&msg
);
2229 static void run_diffstat(struct diff_filepair
*p
, struct diff_options
*o
,
2230 struct diffstat_t
*diffstat
)
2234 int complete_rewrite
= 0;
2236 if (DIFF_PAIR_UNMERGED(p
)) {
2238 builtin_diffstat(p
->one
->path
, NULL
, NULL
, NULL
, diffstat
, o
, 0);
2242 name
= p
->one
->path
;
2243 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
2245 if (o
->prefix_length
)
2246 strip_prefix(o
->prefix_length
, &name
, &other
);
2248 diff_fill_sha1_info(p
->one
);
2249 diff_fill_sha1_info(p
->two
);
2251 if (p
->status
== DIFF_STATUS_MODIFIED
&& p
->score
)
2252 complete_rewrite
= 1;
2253 builtin_diffstat(name
, other
, p
->one
, p
->two
, diffstat
, o
, complete_rewrite
);
2256 static void run_checkdiff(struct diff_filepair
*p
, struct diff_options
*o
)
2260 const char *attr_path
;
2262 if (DIFF_PAIR_UNMERGED(p
)) {
2267 name
= p
->one
->path
;
2268 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
2269 attr_path
= other
? other
: name
;
2271 if (o
->prefix_length
)
2272 strip_prefix(o
->prefix_length
, &name
, &other
);
2274 diff_fill_sha1_info(p
->one
);
2275 diff_fill_sha1_info(p
->two
);
2277 builtin_checkdiff(name
, other
, attr_path
, p
->one
, p
->two
, o
);
2280 void diff_setup(struct diff_options
*options
)
2282 memset(options
, 0, sizeof(*options
));
2284 options
->file
= stdout
;
2286 options
->line_termination
= '\n';
2287 options
->break_opt
= -1;
2288 options
->rename_limit
= -1;
2289 options
->dirstat_percent
= 3;
2290 options
->context
= 3;
2292 options
->change
= diff_change
;
2293 options
->add_remove
= diff_addremove
;
2294 if (diff_use_color_default
> 0)
2295 DIFF_OPT_SET(options
, COLOR_DIFF
);
2297 DIFF_OPT_CLR(options
, COLOR_DIFF
);
2298 options
->detect_rename
= diff_detect_rename_default
;
2300 options
->a_prefix
= "a/";
2301 options
->b_prefix
= "b/";
2304 int diff_setup_done(struct diff_options
*options
)
2308 if (options
->output_format
& DIFF_FORMAT_NAME
)
2310 if (options
->output_format
& DIFF_FORMAT_NAME_STATUS
)
2312 if (options
->output_format
& DIFF_FORMAT_CHECKDIFF
)
2314 if (options
->output_format
& DIFF_FORMAT_NO_OUTPUT
)
2317 die("--name-only, --name-status, --check and -s are mutually exclusive");
2319 if (DIFF_OPT_TST(options
, FIND_COPIES_HARDER
))
2320 options
->detect_rename
= DIFF_DETECT_COPY
;
2322 if (!DIFF_OPT_TST(options
, RELATIVE_NAME
))
2323 options
->prefix
= NULL
;
2324 if (options
->prefix
)
2325 options
->prefix_length
= strlen(options
->prefix
);
2327 options
->prefix_length
= 0;
2329 if (options
->output_format
& (DIFF_FORMAT_NAME
|
2330 DIFF_FORMAT_NAME_STATUS
|
2331 DIFF_FORMAT_CHECKDIFF
|
2332 DIFF_FORMAT_NO_OUTPUT
))
2333 options
->output_format
&= ~(DIFF_FORMAT_RAW
|
2334 DIFF_FORMAT_NUMSTAT
|
2335 DIFF_FORMAT_DIFFSTAT
|
2336 DIFF_FORMAT_SHORTSTAT
|
2337 DIFF_FORMAT_DIRSTAT
|
2338 DIFF_FORMAT_SUMMARY
|
2342 * These cases always need recursive; we do not drop caller-supplied
2343 * recursive bits for other formats here.
2345 if (options
->output_format
& (DIFF_FORMAT_PATCH
|
2346 DIFF_FORMAT_NUMSTAT
|
2347 DIFF_FORMAT_DIFFSTAT
|
2348 DIFF_FORMAT_SHORTSTAT
|
2349 DIFF_FORMAT_DIRSTAT
|
2350 DIFF_FORMAT_SUMMARY
|
2351 DIFF_FORMAT_CHECKDIFF
))
2352 DIFF_OPT_SET(options
, RECURSIVE
);
2354 * Also pickaxe would not work very well if you do not say recursive
2356 if (options
->pickaxe
)
2357 DIFF_OPT_SET(options
, RECURSIVE
);
2359 if (options
->detect_rename
&& options
->rename_limit
< 0)
2360 options
->rename_limit
= diff_rename_limit_default
;
2361 if (options
->setup
& DIFF_SETUP_USE_CACHE
) {
2363 /* read-cache does not die even when it fails
2364 * so it is safe for us to do this here. Also
2365 * it does not smudge active_cache or active_nr
2366 * when it fails, so we do not have to worry about
2367 * cleaning it up ourselves either.
2371 if (options
->abbrev
<= 0 || 40 < options
->abbrev
)
2372 options
->abbrev
= 40; /* full */
2375 * It does not make sense to show the first hit we happened
2376 * to have found. It does not make sense not to return with
2377 * exit code in such a case either.
2379 if (DIFF_OPT_TST(options
, QUIET
)) {
2380 options
->output_format
= DIFF_FORMAT_NO_OUTPUT
;
2381 DIFF_OPT_SET(options
, EXIT_WITH_STATUS
);
2385 * If we postprocess in diffcore, we cannot simply return
2386 * upon the first hit. We need to run diff as usual.
2388 if (options
->pickaxe
|| options
->filter
)
2389 DIFF_OPT_CLR(options
, QUIET
);
2394 static int opt_arg(const char *arg
, int arg_short
, const char *arg_long
, int *val
)
2404 if (c
== arg_short
) {
2408 if (val
&& isdigit(c
)) {
2410 int n
= strtoul(arg
, &end
, 10);
2421 eq
= strchr(arg
, '=');
2426 if (!len
|| strncmp(arg
, arg_long
, len
))
2431 if (!isdigit(*++eq
))
2433 n
= strtoul(eq
, &end
, 10);
2441 static int diff_scoreopt_parse(const char *opt
);
2443 int diff_opt_parse(struct diff_options
*options
, const char **av
, int ac
)
2445 const char *arg
= av
[0];
2447 /* Output format options */
2448 if (!strcmp(arg
, "-p") || !strcmp(arg
, "-u"))
2449 options
->output_format
|= DIFF_FORMAT_PATCH
;
2450 else if (opt_arg(arg
, 'U', "unified", &options
->context
))
2451 options
->output_format
|= DIFF_FORMAT_PATCH
;
2452 else if (!strcmp(arg
, "--raw"))
2453 options
->output_format
|= DIFF_FORMAT_RAW
;
2454 else if (!strcmp(arg
, "--patch-with-raw"))
2455 options
->output_format
|= DIFF_FORMAT_PATCH
| DIFF_FORMAT_RAW
;
2456 else if (!strcmp(arg
, "--numstat"))
2457 options
->output_format
|= DIFF_FORMAT_NUMSTAT
;
2458 else if (!strcmp(arg
, "--shortstat"))
2459 options
->output_format
|= DIFF_FORMAT_SHORTSTAT
;
2460 else if (opt_arg(arg
, 'X', "dirstat", &options
->dirstat_percent
))
2461 options
->output_format
|= DIFF_FORMAT_DIRSTAT
;
2462 else if (!strcmp(arg
, "--cumulative"))
2463 options
->output_format
|= DIFF_FORMAT_CUMULATIVE
;
2464 else if (!strcmp(arg
, "--check"))
2465 options
->output_format
|= DIFF_FORMAT_CHECKDIFF
;
2466 else if (!strcmp(arg
, "--summary"))
2467 options
->output_format
|= DIFF_FORMAT_SUMMARY
;
2468 else if (!strcmp(arg
, "--patch-with-stat"))
2469 options
->output_format
|= DIFF_FORMAT_PATCH
| DIFF_FORMAT_DIFFSTAT
;
2470 else if (!strcmp(arg
, "--name-only"))
2471 options
->output_format
|= DIFF_FORMAT_NAME
;
2472 else if (!strcmp(arg
, "--name-status"))
2473 options
->output_format
|= DIFF_FORMAT_NAME_STATUS
;
2474 else if (!strcmp(arg
, "-s"))
2475 options
->output_format
|= DIFF_FORMAT_NO_OUTPUT
;
2476 else if (!prefixcmp(arg
, "--stat")) {
2478 int width
= options
->stat_width
;
2479 int name_width
= options
->stat_name_width
;
2485 if (!prefixcmp(arg
, "-width="))
2486 width
= strtoul(arg
+ 7, &end
, 10);
2487 else if (!prefixcmp(arg
, "-name-width="))
2488 name_width
= strtoul(arg
+ 12, &end
, 10);
2491 width
= strtoul(arg
+1, &end
, 10);
2493 name_width
= strtoul(end
+1, &end
, 10);
2496 /* Important! This checks all the error cases! */
2499 options
->output_format
|= DIFF_FORMAT_DIFFSTAT
;
2500 options
->stat_name_width
= name_width
;
2501 options
->stat_width
= width
;
2504 /* renames options */
2505 else if (!prefixcmp(arg
, "-B")) {
2506 if ((options
->break_opt
= diff_scoreopt_parse(arg
)) == -1)
2509 else if (!prefixcmp(arg
, "-M")) {
2510 if ((options
->rename_score
= diff_scoreopt_parse(arg
)) == -1)
2512 options
->detect_rename
= DIFF_DETECT_RENAME
;
2514 else if (!prefixcmp(arg
, "-C")) {
2515 if (options
->detect_rename
== DIFF_DETECT_COPY
)
2516 DIFF_OPT_SET(options
, FIND_COPIES_HARDER
);
2517 if ((options
->rename_score
= diff_scoreopt_parse(arg
)) == -1)
2519 options
->detect_rename
= DIFF_DETECT_COPY
;
2521 else if (!strcmp(arg
, "--no-renames"))
2522 options
->detect_rename
= 0;
2523 else if (!strcmp(arg
, "--relative"))
2524 DIFF_OPT_SET(options
, RELATIVE_NAME
);
2525 else if (!prefixcmp(arg
, "--relative=")) {
2526 DIFF_OPT_SET(options
, RELATIVE_NAME
);
2527 options
->prefix
= arg
+ 11;
2531 else if (!strcmp(arg
, "-w") || !strcmp(arg
, "--ignore-all-space"))
2532 options
->xdl_opts
|= XDF_IGNORE_WHITESPACE
;
2533 else if (!strcmp(arg
, "-b") || !strcmp(arg
, "--ignore-space-change"))
2534 options
->xdl_opts
|= XDF_IGNORE_WHITESPACE_CHANGE
;
2535 else if (!strcmp(arg
, "--ignore-space-at-eol"))
2536 options
->xdl_opts
|= XDF_IGNORE_WHITESPACE_AT_EOL
;
2539 else if (!strcmp(arg
, "--binary")) {
2540 options
->output_format
|= DIFF_FORMAT_PATCH
;
2541 DIFF_OPT_SET(options
, BINARY
);
2543 else if (!strcmp(arg
, "--full-index"))
2544 DIFF_OPT_SET(options
, FULL_INDEX
);
2545 else if (!strcmp(arg
, "-a") || !strcmp(arg
, "--text"))
2546 DIFF_OPT_SET(options
, TEXT
);
2547 else if (!strcmp(arg
, "-R"))
2548 DIFF_OPT_SET(options
, REVERSE_DIFF
);
2549 else if (!strcmp(arg
, "--find-copies-harder"))
2550 DIFF_OPT_SET(options
, FIND_COPIES_HARDER
);
2551 else if (!strcmp(arg
, "--follow"))
2552 DIFF_OPT_SET(options
, FOLLOW_RENAMES
);
2553 else if (!strcmp(arg
, "--color"))
2554 DIFF_OPT_SET(options
, COLOR_DIFF
);
2555 else if (!strcmp(arg
, "--no-color"))
2556 DIFF_OPT_CLR(options
, COLOR_DIFF
);
2557 else if (!strcmp(arg
, "--color-words"))
2558 options
->flags
|= DIFF_OPT_COLOR_DIFF
| DIFF_OPT_COLOR_DIFF_WORDS
;
2559 else if (!strcmp(arg
, "--exit-code"))
2560 DIFF_OPT_SET(options
, EXIT_WITH_STATUS
);
2561 else if (!strcmp(arg
, "--quiet"))
2562 DIFF_OPT_SET(options
, QUIET
);
2563 else if (!strcmp(arg
, "--ext-diff"))
2564 DIFF_OPT_SET(options
, ALLOW_EXTERNAL
);
2565 else if (!strcmp(arg
, "--no-ext-diff"))
2566 DIFF_OPT_CLR(options
, ALLOW_EXTERNAL
);
2567 else if (!strcmp(arg
, "--ignore-submodules"))
2568 DIFF_OPT_SET(options
, IGNORE_SUBMODULES
);
2571 else if (!strcmp(arg
, "-z"))
2572 options
->line_termination
= 0;
2573 else if (!prefixcmp(arg
, "-l"))
2574 options
->rename_limit
= strtoul(arg
+2, NULL
, 10);
2575 else if (!prefixcmp(arg
, "-S"))
2576 options
->pickaxe
= arg
+ 2;
2577 else if (!strcmp(arg
, "--pickaxe-all"))
2578 options
->pickaxe_opts
= DIFF_PICKAXE_ALL
;
2579 else if (!strcmp(arg
, "--pickaxe-regex"))
2580 options
->pickaxe_opts
= DIFF_PICKAXE_REGEX
;
2581 else if (!prefixcmp(arg
, "-O"))
2582 options
->orderfile
= arg
+ 2;
2583 else if (!prefixcmp(arg
, "--diff-filter="))
2584 options
->filter
= arg
+ 14;
2585 else if (!strcmp(arg
, "--abbrev"))
2586 options
->abbrev
= DEFAULT_ABBREV
;
2587 else if (!prefixcmp(arg
, "--abbrev=")) {
2588 options
->abbrev
= strtoul(arg
+ 9, NULL
, 10);
2589 if (options
->abbrev
< MINIMUM_ABBREV
)
2590 options
->abbrev
= MINIMUM_ABBREV
;
2591 else if (40 < options
->abbrev
)
2592 options
->abbrev
= 40;
2594 else if (!prefixcmp(arg
, "--src-prefix="))
2595 options
->a_prefix
= arg
+ 13;
2596 else if (!prefixcmp(arg
, "--dst-prefix="))
2597 options
->b_prefix
= arg
+ 13;
2598 else if (!strcmp(arg
, "--no-prefix"))
2599 options
->a_prefix
= options
->b_prefix
= "";
2600 else if (!prefixcmp(arg
, "--output=")) {
2601 options
->file
= fopen(arg
+ strlen("--output="), "w");
2602 options
->close_file
= 1;
2608 static int parse_num(const char **cp_p
)
2610 unsigned long num
, scale
;
2612 const char *cp
= *cp_p
;
2619 if ( !dot
&& ch
== '.' ) {
2622 } else if ( ch
== '%' ) {
2623 scale
= dot
? scale
*100 : 100;
2624 cp
++; /* % is always at the end */
2626 } else if ( ch
>= '0' && ch
<= '9' ) {
2627 if ( scale
< 100000 ) {
2629 num
= (num
*10) + (ch
-'0');
2638 /* user says num divided by scale and we say internally that
2639 * is MAX_SCORE * num / scale.
2641 return (int)((num
>= scale
) ? MAX_SCORE
: (MAX_SCORE
* num
/ scale
));
2644 static int diff_scoreopt_parse(const char *opt
)
2646 int opt1
, opt2
, cmd
;
2651 if (cmd
!= 'M' && cmd
!= 'C' && cmd
!= 'B')
2652 return -1; /* that is not a -M, -C nor -B option */
2654 opt1
= parse_num(&opt
);
2660 else if (*opt
!= '/')
2661 return -1; /* we expect -B80/99 or -B80 */
2664 opt2
= parse_num(&opt
);
2669 return opt1
| (opt2
<< 16);
2672 struct diff_queue_struct diff_queued_diff
;
2674 void diff_q(struct diff_queue_struct
*queue
, struct diff_filepair
*dp
)
2676 if (queue
->alloc
<= queue
->nr
) {
2677 queue
->alloc
= alloc_nr(queue
->alloc
);
2678 queue
->queue
= xrealloc(queue
->queue
,
2679 sizeof(dp
) * queue
->alloc
);
2681 queue
->queue
[queue
->nr
++] = dp
;
2684 struct diff_filepair
*diff_queue(struct diff_queue_struct
*queue
,
2685 struct diff_filespec
*one
,
2686 struct diff_filespec
*two
)
2688 struct diff_filepair
*dp
= xcalloc(1, sizeof(*dp
));
2696 void diff_free_filepair(struct diff_filepair
*p
)
2698 free_filespec(p
->one
);
2699 free_filespec(p
->two
);
2703 /* This is different from find_unique_abbrev() in that
2704 * it stuffs the result with dots for alignment.
2706 const char *diff_unique_abbrev(const unsigned char *sha1
, int len
)
2711 return sha1_to_hex(sha1
);
2713 abbrev
= find_unique_abbrev(sha1
, len
);
2714 abblen
= strlen(abbrev
);
2716 static char hex
[41];
2717 if (len
< abblen
&& abblen
<= len
+ 2)
2718 sprintf(hex
, "%s%.*s", abbrev
, len
+3-abblen
, "..");
2720 sprintf(hex
, "%s...", abbrev
);
2723 return sha1_to_hex(sha1
);
2726 static void diff_flush_raw(struct diff_filepair
*p
, struct diff_options
*opt
)
2728 int line_termination
= opt
->line_termination
;
2729 int inter_name_termination
= line_termination
? '\t' : '\0';
2731 if (!(opt
->output_format
& DIFF_FORMAT_NAME_STATUS
)) {
2732 fprintf(opt
->file
, ":%06o %06o %s ", p
->one
->mode
, p
->two
->mode
,
2733 diff_unique_abbrev(p
->one
->sha1
, opt
->abbrev
));
2734 fprintf(opt
->file
, "%s ", diff_unique_abbrev(p
->two
->sha1
, opt
->abbrev
));
2737 fprintf(opt
->file
, "%c%03d%c", p
->status
, similarity_index(p
),
2738 inter_name_termination
);
2740 fprintf(opt
->file
, "%c%c", p
->status
, inter_name_termination
);
2743 if (p
->status
== DIFF_STATUS_COPIED
||
2744 p
->status
== DIFF_STATUS_RENAMED
) {
2745 const char *name_a
, *name_b
;
2746 name_a
= p
->one
->path
;
2747 name_b
= p
->two
->path
;
2748 strip_prefix(opt
->prefix_length
, &name_a
, &name_b
);
2749 write_name_quoted(name_a
, opt
->file
, inter_name_termination
);
2750 write_name_quoted(name_b
, opt
->file
, line_termination
);
2752 const char *name_a
, *name_b
;
2753 name_a
= p
->one
->mode
? p
->one
->path
: p
->two
->path
;
2755 strip_prefix(opt
->prefix_length
, &name_a
, &name_b
);
2756 write_name_quoted(name_a
, opt
->file
, line_termination
);
2760 int diff_unmodified_pair(struct diff_filepair
*p
)
2762 /* This function is written stricter than necessary to support
2763 * the currently implemented transformers, but the idea is to
2764 * let transformers to produce diff_filepairs any way they want,
2765 * and filter and clean them up here before producing the output.
2767 struct diff_filespec
*one
= p
->one
, *two
= p
->two
;
2769 if (DIFF_PAIR_UNMERGED(p
))
2770 return 0; /* unmerged is interesting */
2772 /* deletion, addition, mode or type change
2773 * and rename are all interesting.
2775 if (DIFF_FILE_VALID(one
) != DIFF_FILE_VALID(two
) ||
2776 DIFF_PAIR_MODE_CHANGED(p
) ||
2777 strcmp(one
->path
, two
->path
))
2780 /* both are valid and point at the same path. that is, we are
2781 * dealing with a change.
2783 if (one
->sha1_valid
&& two
->sha1_valid
&&
2784 !hashcmp(one
->sha1
, two
->sha1
))
2785 return 1; /* no change */
2786 if (!one
->sha1_valid
&& !two
->sha1_valid
)
2787 return 1; /* both look at the same file on the filesystem. */
2791 static void diff_flush_patch(struct diff_filepair
*p
, struct diff_options
*o
)
2793 if (diff_unmodified_pair(p
))
2796 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
2797 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
2798 return; /* no tree diffs in patch format */
2803 static void diff_flush_stat(struct diff_filepair
*p
, struct diff_options
*o
,
2804 struct diffstat_t
*diffstat
)
2806 if (diff_unmodified_pair(p
))
2809 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
2810 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
2811 return; /* no tree diffs in patch format */
2813 run_diffstat(p
, o
, diffstat
);
2816 static void diff_flush_checkdiff(struct diff_filepair
*p
,
2817 struct diff_options
*o
)
2819 if (diff_unmodified_pair(p
))
2822 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
2823 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
2824 return; /* no tree diffs in patch format */
2826 run_checkdiff(p
, o
);
2829 int diff_queue_is_empty(void)
2831 struct diff_queue_struct
*q
= &diff_queued_diff
;
2833 for (i
= 0; i
< q
->nr
; i
++)
2834 if (!diff_unmodified_pair(q
->queue
[i
]))
2840 void diff_debug_filespec(struct diff_filespec
*s
, int x
, const char *one
)
2842 fprintf(stderr
, "queue[%d] %s (%s) %s %06o %s\n",
2845 DIFF_FILE_VALID(s
) ? "valid" : "invalid",
2847 s
->sha1_valid
? sha1_to_hex(s
->sha1
) : "");
2848 fprintf(stderr
, "queue[%d] %s size %lu flags %d\n",
2850 s
->size
, s
->xfrm_flags
);
2853 void diff_debug_filepair(const struct diff_filepair
*p
, int i
)
2855 diff_debug_filespec(p
->one
, i
, "one");
2856 diff_debug_filespec(p
->two
, i
, "two");
2857 fprintf(stderr
, "score %d, status %c rename_used %d broken %d\n",
2858 p
->score
, p
->status
? p
->status
: '?',
2859 p
->one
->rename_used
, p
->broken_pair
);
2862 void diff_debug_queue(const char *msg
, struct diff_queue_struct
*q
)
2866 fprintf(stderr
, "%s\n", msg
);
2867 fprintf(stderr
, "q->nr = %d\n", q
->nr
);
2868 for (i
= 0; i
< q
->nr
; i
++) {
2869 struct diff_filepair
*p
= q
->queue
[i
];
2870 diff_debug_filepair(p
, i
);
2875 static void diff_resolve_rename_copy(void)
2878 struct diff_filepair
*p
;
2879 struct diff_queue_struct
*q
= &diff_queued_diff
;
2881 diff_debug_queue("resolve-rename-copy", q
);
2883 for (i
= 0; i
< q
->nr
; i
++) {
2885 p
->status
= 0; /* undecided */
2886 if (DIFF_PAIR_UNMERGED(p
))
2887 p
->status
= DIFF_STATUS_UNMERGED
;
2888 else if (!DIFF_FILE_VALID(p
->one
))
2889 p
->status
= DIFF_STATUS_ADDED
;
2890 else if (!DIFF_FILE_VALID(p
->two
))
2891 p
->status
= DIFF_STATUS_DELETED
;
2892 else if (DIFF_PAIR_TYPE_CHANGED(p
))
2893 p
->status
= DIFF_STATUS_TYPE_CHANGED
;
2895 /* from this point on, we are dealing with a pair
2896 * whose both sides are valid and of the same type, i.e.
2897 * either in-place edit or rename/copy edit.
2899 else if (DIFF_PAIR_RENAME(p
)) {
2901 * A rename might have re-connected a broken
2902 * pair up, causing the pathnames to be the
2903 * same again. If so, that's not a rename at
2904 * all, just a modification..
2906 * Otherwise, see if this source was used for
2907 * multiple renames, in which case we decrement
2908 * the count, and call it a copy.
2910 if (!strcmp(p
->one
->path
, p
->two
->path
))
2911 p
->status
= DIFF_STATUS_MODIFIED
;
2912 else if (--p
->one
->rename_used
> 0)
2913 p
->status
= DIFF_STATUS_COPIED
;
2915 p
->status
= DIFF_STATUS_RENAMED
;
2917 else if (hashcmp(p
->one
->sha1
, p
->two
->sha1
) ||
2918 p
->one
->mode
!= p
->two
->mode
||
2919 is_null_sha1(p
->one
->sha1
))
2920 p
->status
= DIFF_STATUS_MODIFIED
;
2922 /* This is a "no-change" entry and should not
2923 * happen anymore, but prepare for broken callers.
2925 error("feeding unmodified %s to diffcore",
2927 p
->status
= DIFF_STATUS_UNKNOWN
;
2930 diff_debug_queue("resolve-rename-copy done", q
);
2933 static int check_pair_status(struct diff_filepair
*p
)
2935 switch (p
->status
) {
2936 case DIFF_STATUS_UNKNOWN
:
2939 die("internal error in diff-resolve-rename-copy");
2945 static void flush_one_pair(struct diff_filepair
*p
, struct diff_options
*opt
)
2947 int fmt
= opt
->output_format
;
2949 if (fmt
& DIFF_FORMAT_CHECKDIFF
)
2950 diff_flush_checkdiff(p
, opt
);
2951 else if (fmt
& (DIFF_FORMAT_RAW
| DIFF_FORMAT_NAME_STATUS
))
2952 diff_flush_raw(p
, opt
);
2953 else if (fmt
& DIFF_FORMAT_NAME
) {
2954 const char *name_a
, *name_b
;
2955 name_a
= p
->two
->path
;
2957 strip_prefix(opt
->prefix_length
, &name_a
, &name_b
);
2958 write_name_quoted(name_a
, opt
->file
, opt
->line_termination
);
2962 static void show_file_mode_name(FILE *file
, const char *newdelete
, struct diff_filespec
*fs
)
2965 fprintf(file
, " %s mode %06o ", newdelete
, fs
->mode
);
2967 fprintf(file
, " %s ", newdelete
);
2968 write_name_quoted(fs
->path
, file
, '\n');
2972 static void show_mode_change(FILE *file
, struct diff_filepair
*p
, int show_name
)
2974 if (p
->one
->mode
&& p
->two
->mode
&& p
->one
->mode
!= p
->two
->mode
) {
2975 fprintf(file
, " mode change %06o => %06o%c", p
->one
->mode
, p
->two
->mode
,
2976 show_name
? ' ' : '\n');
2978 write_name_quoted(p
->two
->path
, file
, '\n');
2983 static void show_rename_copy(FILE *file
, const char *renamecopy
, struct diff_filepair
*p
)
2985 char *names
= pprint_rename(p
->one
->path
, p
->two
->path
);
2987 fprintf(file
, " %s %s (%d%%)\n", renamecopy
, names
, similarity_index(p
));
2989 show_mode_change(file
, p
, 0);
2992 static void diff_summary(FILE *file
, struct diff_filepair
*p
)
2995 case DIFF_STATUS_DELETED
:
2996 show_file_mode_name(file
, "delete", p
->one
);
2998 case DIFF_STATUS_ADDED
:
2999 show_file_mode_name(file
, "create", p
->two
);
3001 case DIFF_STATUS_COPIED
:
3002 show_rename_copy(file
, "copy", p
);
3004 case DIFF_STATUS_RENAMED
:
3005 show_rename_copy(file
, "rename", p
);
3009 fputs(" rewrite ", file
);
3010 write_name_quoted(p
->two
->path
, file
, ' ');
3011 fprintf(file
, "(%d%%)\n", similarity_index(p
));
3013 show_mode_change(file
, p
, !p
->score
);
3019 struct xdiff_emit_state xm
;
3024 static int remove_space(char *line
, int len
)
3030 for (i
= 0; i
< len
; i
++)
3031 if (!isspace((c
= line
[i
])))
3037 static void patch_id_consume(void *priv
, char *line
, unsigned long len
)
3039 struct patch_id_t
*data
= priv
;
3042 /* Ignore line numbers when computing the SHA1 of the patch */
3043 if (!prefixcmp(line
, "@@ -"))
3046 new_len
= remove_space(line
, len
);
3048 SHA1_Update(data
->ctx
, line
, new_len
);
3049 data
->patchlen
+= new_len
;
3052 /* returns 0 upon success, and writes result into sha1 */
3053 static int diff_get_patch_id(struct diff_options
*options
, unsigned char *sha1
)
3055 struct diff_queue_struct
*q
= &diff_queued_diff
;
3058 struct patch_id_t data
;
3059 char buffer
[PATH_MAX
* 4 + 20];
3062 memset(&data
, 0, sizeof(struct patch_id_t
));
3064 data
.xm
.consume
= patch_id_consume
;
3066 for (i
= 0; i
< q
->nr
; i
++) {
3071 struct diff_filepair
*p
= q
->queue
[i
];
3074 memset(&xecfg
, 0, sizeof(xecfg
));
3076 return error("internal diff status error");
3077 if (p
->status
== DIFF_STATUS_UNKNOWN
)
3079 if (diff_unmodified_pair(p
))
3081 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
3082 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
3084 if (DIFF_PAIR_UNMERGED(p
))
3087 diff_fill_sha1_info(p
->one
);
3088 diff_fill_sha1_info(p
->two
);
3089 if (fill_mmfile(&mf1
, p
->one
) < 0 ||
3090 fill_mmfile(&mf2
, p
->two
) < 0)
3091 return error("unable to read files to diff");
3093 len1
= remove_space(p
->one
->path
, strlen(p
->one
->path
));
3094 len2
= remove_space(p
->two
->path
, strlen(p
->two
->path
));
3095 if (p
->one
->mode
== 0)
3096 len1
= snprintf(buffer
, sizeof(buffer
),
3097 "diff--gita/%.*sb/%.*s"
3104 len2
, p
->two
->path
);
3105 else if (p
->two
->mode
== 0)
3106 len1
= snprintf(buffer
, sizeof(buffer
),
3107 "diff--gita/%.*sb/%.*s"
3108 "deletedfilemode%06o"
3114 len1
, p
->one
->path
);
3116 len1
= snprintf(buffer
, sizeof(buffer
),
3117 "diff--gita/%.*sb/%.*s"
3123 len2
, p
->two
->path
);
3124 SHA1_Update(&ctx
, buffer
, len1
);
3126 xpp
.flags
= XDF_NEED_MINIMAL
;
3128 xecfg
.flags
= XDL_EMIT_FUNCNAMES
;
3129 ecb
.outf
= xdiff_outf
;
3131 xdi_diff(&mf1
, &mf2
, &xpp
, &xecfg
, &ecb
);
3134 SHA1_Final(sha1
, &ctx
);
3138 int diff_flush_patch_id(struct diff_options
*options
, unsigned char *sha1
)
3140 struct diff_queue_struct
*q
= &diff_queued_diff
;
3142 int result
= diff_get_patch_id(options
, sha1
);
3144 for (i
= 0; i
< q
->nr
; i
++)
3145 diff_free_filepair(q
->queue
[i
]);
3149 q
->nr
= q
->alloc
= 0;
3154 static int is_summary_empty(const struct diff_queue_struct
*q
)
3158 for (i
= 0; i
< q
->nr
; i
++) {
3159 const struct diff_filepair
*p
= q
->queue
[i
];
3161 switch (p
->status
) {
3162 case DIFF_STATUS_DELETED
:
3163 case DIFF_STATUS_ADDED
:
3164 case DIFF_STATUS_COPIED
:
3165 case DIFF_STATUS_RENAMED
:
3170 if (p
->one
->mode
&& p
->two
->mode
&&
3171 p
->one
->mode
!= p
->two
->mode
)
3179 void diff_flush(struct diff_options
*options
)
3181 struct diff_queue_struct
*q
= &diff_queued_diff
;
3182 int i
, output_format
= options
->output_format
;
3186 * Order: raw, stat, summary, patch
3187 * or: name/name-status/checkdiff (other bits clear)
3192 if (output_format
& (DIFF_FORMAT_RAW
|
3194 DIFF_FORMAT_NAME_STATUS
|
3195 DIFF_FORMAT_CHECKDIFF
)) {
3196 for (i
= 0; i
< q
->nr
; i
++) {
3197 struct diff_filepair
*p
= q
->queue
[i
];
3198 if (check_pair_status(p
))
3199 flush_one_pair(p
, options
);
3204 if (output_format
& (DIFF_FORMAT_DIFFSTAT
|DIFF_FORMAT_SHORTSTAT
|DIFF_FORMAT_NUMSTAT
)) {
3205 struct diffstat_t diffstat
;
3207 memset(&diffstat
, 0, sizeof(struct diffstat_t
));
3208 diffstat
.xm
.consume
= diffstat_consume
;
3209 for (i
= 0; i
< q
->nr
; i
++) {
3210 struct diff_filepair
*p
= q
->queue
[i
];
3211 if (check_pair_status(p
))
3212 diff_flush_stat(p
, options
, &diffstat
);
3214 if (output_format
& DIFF_FORMAT_NUMSTAT
)
3215 show_numstat(&diffstat
, options
);
3216 if (output_format
& DIFF_FORMAT_DIFFSTAT
)
3217 show_stats(&diffstat
, options
);
3218 if (output_format
& DIFF_FORMAT_SHORTSTAT
)
3219 show_shortstats(&diffstat
, options
);
3220 free_diffstat_info(&diffstat
);
3223 if (output_format
& DIFF_FORMAT_DIRSTAT
)
3224 show_dirstat(options
);
3226 if (output_format
& DIFF_FORMAT_SUMMARY
&& !is_summary_empty(q
)) {
3227 for (i
= 0; i
< q
->nr
; i
++)
3228 diff_summary(options
->file
, q
->queue
[i
]);
3232 if (output_format
& DIFF_FORMAT_PATCH
) {
3234 putc(options
->line_termination
, options
->file
);
3235 if (options
->stat_sep
) {
3236 /* attach patch instead of inline */
3237 fputs(options
->stat_sep
, options
->file
);
3241 for (i
= 0; i
< q
->nr
; i
++) {
3242 struct diff_filepair
*p
= q
->queue
[i
];
3243 if (check_pair_status(p
))
3244 diff_flush_patch(p
, options
);
3248 if (output_format
& DIFF_FORMAT_CALLBACK
)
3249 options
->format_callback(q
, options
, options
->format_callback_data
);
3251 for (i
= 0; i
< q
->nr
; i
++)
3252 diff_free_filepair(q
->queue
[i
]);
3256 q
->nr
= q
->alloc
= 0;
3257 if (options
->close_file
)
3258 fclose(options
->file
);
3261 static void diffcore_apply_filter(const char *filter
)
3264 struct diff_queue_struct
*q
= &diff_queued_diff
;
3265 struct diff_queue_struct outq
;
3267 outq
.nr
= outq
.alloc
= 0;
3272 if (strchr(filter
, DIFF_STATUS_FILTER_AON
)) {
3274 for (i
= found
= 0; !found
&& i
< q
->nr
; i
++) {
3275 struct diff_filepair
*p
= q
->queue
[i
];
3276 if (((p
->status
== DIFF_STATUS_MODIFIED
) &&
3278 strchr(filter
, DIFF_STATUS_FILTER_BROKEN
)) ||
3280 strchr(filter
, DIFF_STATUS_MODIFIED
)))) ||
3281 ((p
->status
!= DIFF_STATUS_MODIFIED
) &&
3282 strchr(filter
, p
->status
)))
3288 /* otherwise we will clear the whole queue
3289 * by copying the empty outq at the end of this
3290 * function, but first clear the current entries
3293 for (i
= 0; i
< q
->nr
; i
++)
3294 diff_free_filepair(q
->queue
[i
]);
3297 /* Only the matching ones */
3298 for (i
= 0; i
< q
->nr
; i
++) {
3299 struct diff_filepair
*p
= q
->queue
[i
];
3301 if (((p
->status
== DIFF_STATUS_MODIFIED
) &&
3303 strchr(filter
, DIFF_STATUS_FILTER_BROKEN
)) ||
3305 strchr(filter
, DIFF_STATUS_MODIFIED
)))) ||
3306 ((p
->status
!= DIFF_STATUS_MODIFIED
) &&
3307 strchr(filter
, p
->status
)))
3310 diff_free_filepair(p
);
3317 /* Check whether two filespecs with the same mode and size are identical */
3318 static int diff_filespec_is_identical(struct diff_filespec
*one
,
3319 struct diff_filespec
*two
)
3321 if (S_ISGITLINK(one
->mode
))
3323 if (diff_populate_filespec(one
, 0))
3325 if (diff_populate_filespec(two
, 0))
3327 return !memcmp(one
->data
, two
->data
, one
->size
);
3330 static void diffcore_skip_stat_unmatch(struct diff_options
*diffopt
)
3333 struct diff_queue_struct
*q
= &diff_queued_diff
;
3334 struct diff_queue_struct outq
;
3336 outq
.nr
= outq
.alloc
= 0;
3338 for (i
= 0; i
< q
->nr
; i
++) {
3339 struct diff_filepair
*p
= q
->queue
[i
];
3342 * 1. Entries that come from stat info dirtyness
3343 * always have both sides (iow, not create/delete),
3344 * one side of the object name is unknown, with
3345 * the same mode and size. Keep the ones that
3346 * do not match these criteria. They have real
3349 * 2. At this point, the file is known to be modified,
3350 * with the same mode and size, and the object
3351 * name of one side is unknown. Need to inspect
3352 * the identical contents.
3354 if (!DIFF_FILE_VALID(p
->one
) || /* (1) */
3355 !DIFF_FILE_VALID(p
->two
) ||
3356 (p
->one
->sha1_valid
&& p
->two
->sha1_valid
) ||
3357 (p
->one
->mode
!= p
->two
->mode
) ||
3358 diff_populate_filespec(p
->one
, 1) ||
3359 diff_populate_filespec(p
->two
, 1) ||
3360 (p
->one
->size
!= p
->two
->size
) ||
3361 !diff_filespec_is_identical(p
->one
, p
->two
)) /* (2) */
3365 * The caller can subtract 1 from skip_stat_unmatch
3366 * to determine how many paths were dirty only
3367 * due to stat info mismatch.
3369 if (!DIFF_OPT_TST(diffopt
, NO_INDEX
))
3370 diffopt
->skip_stat_unmatch
++;
3371 diff_free_filepair(p
);
3378 void diffcore_std(struct diff_options
*options
)
3380 if (DIFF_OPT_TST(options
, QUIET
))
3383 if (options
->skip_stat_unmatch
&& !DIFF_OPT_TST(options
, FIND_COPIES_HARDER
))
3384 diffcore_skip_stat_unmatch(options
);
3385 if (options
->break_opt
!= -1)
3386 diffcore_break(options
->break_opt
);
3387 if (options
->detect_rename
)
3388 diffcore_rename(options
);
3389 if (options
->break_opt
!= -1)
3390 diffcore_merge_broken();
3391 if (options
->pickaxe
)
3392 diffcore_pickaxe(options
->pickaxe
, options
->pickaxe_opts
);
3393 if (options
->orderfile
)
3394 diffcore_order(options
->orderfile
);
3395 diff_resolve_rename_copy();
3396 diffcore_apply_filter(options
->filter
);
3398 if (diff_queued_diff
.nr
)
3399 DIFF_OPT_SET(options
, HAS_CHANGES
);
3401 DIFF_OPT_CLR(options
, HAS_CHANGES
);
3404 int diff_result_code(struct diff_options
*opt
, int status
)
3407 if (!DIFF_OPT_TST(opt
, EXIT_WITH_STATUS
) &&
3408 !(opt
->output_format
& DIFF_FORMAT_CHECKDIFF
))
3410 if (DIFF_OPT_TST(opt
, EXIT_WITH_STATUS
) &&
3411 DIFF_OPT_TST(opt
, HAS_CHANGES
))
3413 if ((opt
->output_format
& DIFF_FORMAT_CHECKDIFF
) &&
3414 DIFF_OPT_TST(opt
, CHECK_FAILED
))
3419 void diff_addremove(struct diff_options
*options
,
3420 int addremove
, unsigned mode
,
3421 const unsigned char *sha1
,
3422 const char *concatpath
)
3424 struct diff_filespec
*one
, *two
;
3426 if (DIFF_OPT_TST(options
, IGNORE_SUBMODULES
) && S_ISGITLINK(mode
))
3429 /* This may look odd, but it is a preparation for
3430 * feeding "there are unchanged files which should
3431 * not produce diffs, but when you are doing copy
3432 * detection you would need them, so here they are"
3433 * entries to the diff-core. They will be prefixed
3434 * with something like '=' or '*' (I haven't decided
3435 * which but should not make any difference).
3436 * Feeding the same new and old to diff_change()
3437 * also has the same effect.
3438 * Before the final output happens, they are pruned after
3439 * merged into rename/copy pairs as appropriate.
3441 if (DIFF_OPT_TST(options
, REVERSE_DIFF
))
3442 addremove
= (addremove
== '+' ? '-' :
3443 addremove
== '-' ? '+' : addremove
);
3445 if (options
->prefix
&&
3446 strncmp(concatpath
, options
->prefix
, options
->prefix_length
))
3449 one
= alloc_filespec(concatpath
);
3450 two
= alloc_filespec(concatpath
);
3452 if (addremove
!= '+')
3453 fill_filespec(one
, sha1
, mode
);
3454 if (addremove
!= '-')
3455 fill_filespec(two
, sha1
, mode
);
3457 diff_queue(&diff_queued_diff
, one
, two
);
3458 DIFF_OPT_SET(options
, HAS_CHANGES
);
3461 void diff_change(struct diff_options
*options
,
3462 unsigned old_mode
, unsigned new_mode
,
3463 const unsigned char *old_sha1
,
3464 const unsigned char *new_sha1
,
3465 const char *concatpath
)
3467 struct diff_filespec
*one
, *two
;
3469 if (DIFF_OPT_TST(options
, IGNORE_SUBMODULES
) && S_ISGITLINK(old_mode
)
3470 && S_ISGITLINK(new_mode
))
3473 if (DIFF_OPT_TST(options
, REVERSE_DIFF
)) {
3475 const unsigned char *tmp_c
;
3476 tmp
= old_mode
; old_mode
= new_mode
; new_mode
= tmp
;
3477 tmp_c
= old_sha1
; old_sha1
= new_sha1
; new_sha1
= tmp_c
;
3480 if (options
->prefix
&&
3481 strncmp(concatpath
, options
->prefix
, options
->prefix_length
))
3484 one
= alloc_filespec(concatpath
);
3485 two
= alloc_filespec(concatpath
);
3486 fill_filespec(one
, old_sha1
, old_mode
);
3487 fill_filespec(two
, new_sha1
, new_mode
);
3489 diff_queue(&diff_queued_diff
, one
, two
);
3490 DIFF_OPT_SET(options
, HAS_CHANGES
);
3493 void diff_unmerge(struct diff_options
*options
,
3495 unsigned mode
, const unsigned char *sha1
)
3497 struct diff_filespec
*one
, *two
;
3499 if (options
->prefix
&&
3500 strncmp(path
, options
->prefix
, options
->prefix_length
))
3503 one
= alloc_filespec(path
);
3504 two
= alloc_filespec(path
);
3505 fill_filespec(one
, sha1
, mode
);
3506 diff_queue(&diff_queued_diff
, one
, two
)->is_unmerged
= 1;