2 * Copyright (C) 2005 Junio C Hamano
11 #include "xdiff-interface.h"
14 #include "run-command.h"
16 #include "object-store.h"
18 #include "submodule-config.h"
19 #include "submodule.h"
22 #include "string-list.h"
23 #include "argv-array.h"
26 #include "parse-options.h"
28 #include "fetch-object.h"
30 #ifdef NO_FAST_WORKING_DIRECTORY
31 #define FAST_WORKING_DIRECTORY 0
33 #define FAST_WORKING_DIRECTORY 1
36 static int diff_detect_rename_default
;
37 static int diff_indent_heuristic
= 1;
38 static int diff_rename_limit_default
= 400;
39 static int diff_suppress_blank_empty
;
40 static int diff_use_color_default
= -1;
41 static int diff_color_moved_default
;
42 static int diff_color_moved_ws_default
;
43 static int diff_context_default
= 3;
44 static int diff_interhunk_context_default
;
45 static const char *diff_word_regex_cfg
;
46 static const char *external_diff_cmd_cfg
;
47 static const char *diff_order_file_cfg
;
48 int diff_auto_refresh_index
= 1;
49 static int diff_mnemonic_prefix
;
50 static int diff_no_prefix
;
51 static int diff_stat_graph_width
;
52 static int diff_dirstat_permille_default
= 30;
53 static struct diff_options default_diff_options
;
54 static long diff_algorithm
;
55 static unsigned ws_error_highlight_default
= WSEH_NEW
;
57 static char diff_colors
[][COLOR_MAXLEN
] = {
59 GIT_COLOR_NORMAL
, /* CONTEXT */
60 GIT_COLOR_BOLD
, /* METAINFO */
61 GIT_COLOR_CYAN
, /* FRAGINFO */
62 GIT_COLOR_RED
, /* OLD */
63 GIT_COLOR_GREEN
, /* NEW */
64 GIT_COLOR_YELLOW
, /* COMMIT */
65 GIT_COLOR_BG_RED
, /* WHITESPACE */
66 GIT_COLOR_NORMAL
, /* FUNCINFO */
67 GIT_COLOR_BOLD_MAGENTA
, /* OLD_MOVED */
68 GIT_COLOR_BOLD_BLUE
, /* OLD_MOVED ALTERNATIVE */
69 GIT_COLOR_FAINT
, /* OLD_MOVED_DIM */
70 GIT_COLOR_FAINT_ITALIC
, /* OLD_MOVED_ALTERNATIVE_DIM */
71 GIT_COLOR_BOLD_CYAN
, /* NEW_MOVED */
72 GIT_COLOR_BOLD_YELLOW
, /* NEW_MOVED ALTERNATIVE */
73 GIT_COLOR_FAINT
, /* NEW_MOVED_DIM */
74 GIT_COLOR_FAINT_ITALIC
, /* NEW_MOVED_ALTERNATIVE_DIM */
75 GIT_COLOR_FAINT
, /* CONTEXT_DIM */
76 GIT_COLOR_FAINT_RED
, /* OLD_DIM */
77 GIT_COLOR_FAINT_GREEN
, /* NEW_DIM */
78 GIT_COLOR_BOLD
, /* CONTEXT_BOLD */
79 GIT_COLOR_BOLD_RED
, /* OLD_BOLD */
80 GIT_COLOR_BOLD_GREEN
, /* NEW_BOLD */
83 static const char *color_diff_slots
[] = {
84 [DIFF_CONTEXT
] = "context",
85 [DIFF_METAINFO
] = "meta",
86 [DIFF_FRAGINFO
] = "frag",
87 [DIFF_FILE_OLD
] = "old",
88 [DIFF_FILE_NEW
] = "new",
89 [DIFF_COMMIT
] = "commit",
90 [DIFF_WHITESPACE
] = "whitespace",
91 [DIFF_FUNCINFO
] = "func",
92 [DIFF_FILE_OLD_MOVED
] = "oldMoved",
93 [DIFF_FILE_OLD_MOVED_ALT
] = "oldMovedAlternative",
94 [DIFF_FILE_OLD_MOVED_DIM
] = "oldMovedDimmed",
95 [DIFF_FILE_OLD_MOVED_ALT_DIM
] = "oldMovedAlternativeDimmed",
96 [DIFF_FILE_NEW_MOVED
] = "newMoved",
97 [DIFF_FILE_NEW_MOVED_ALT
] = "newMovedAlternative",
98 [DIFF_FILE_NEW_MOVED_DIM
] = "newMovedDimmed",
99 [DIFF_FILE_NEW_MOVED_ALT_DIM
] = "newMovedAlternativeDimmed",
100 [DIFF_CONTEXT_DIM
] = "contextDimmed",
101 [DIFF_FILE_OLD_DIM
] = "oldDimmed",
102 [DIFF_FILE_NEW_DIM
] = "newDimmed",
103 [DIFF_CONTEXT_BOLD
] = "contextBold",
104 [DIFF_FILE_OLD_BOLD
] = "oldBold",
105 [DIFF_FILE_NEW_BOLD
] = "newBold",
108 define_list_config_array_extra(color_diff_slots
, {"plain"});
110 static int parse_diff_color_slot(const char *var
)
112 if (!strcasecmp(var
, "plain"))
114 return LOOKUP_CONFIG(color_diff_slots
, var
);
117 static int parse_dirstat_params(struct diff_options
*options
, const char *params_string
,
118 struct strbuf
*errmsg
)
120 char *params_copy
= xstrdup(params_string
);
121 struct string_list params
= STRING_LIST_INIT_NODUP
;
126 string_list_split_in_place(¶ms
, params_copy
, ',', -1);
127 for (i
= 0; i
< params
.nr
; i
++) {
128 const char *p
= params
.items
[i
].string
;
129 if (!strcmp(p
, "changes")) {
130 options
->flags
.dirstat_by_line
= 0;
131 options
->flags
.dirstat_by_file
= 0;
132 } else if (!strcmp(p
, "lines")) {
133 options
->flags
.dirstat_by_line
= 1;
134 options
->flags
.dirstat_by_file
= 0;
135 } else if (!strcmp(p
, "files")) {
136 options
->flags
.dirstat_by_line
= 0;
137 options
->flags
.dirstat_by_file
= 1;
138 } else if (!strcmp(p
, "noncumulative")) {
139 options
->flags
.dirstat_cumulative
= 0;
140 } else if (!strcmp(p
, "cumulative")) {
141 options
->flags
.dirstat_cumulative
= 1;
142 } else if (isdigit(*p
)) {
144 int permille
= strtoul(p
, &end
, 10) * 10;
145 if (*end
== '.' && isdigit(*++end
)) {
146 /* only use first digit */
147 permille
+= *end
- '0';
148 /* .. and ignore any further digits */
149 while (isdigit(*++end
))
153 options
->dirstat_permille
= permille
;
155 strbuf_addf(errmsg
, _(" Failed to parse dirstat cut-off percentage '%s'\n"),
160 strbuf_addf(errmsg
, _(" Unknown dirstat parameter '%s'\n"), p
);
165 string_list_clear(¶ms
, 0);
170 static int parse_submodule_params(struct diff_options
*options
, const char *value
)
172 if (!strcmp(value
, "log"))
173 options
->submodule_format
= DIFF_SUBMODULE_LOG
;
174 else if (!strcmp(value
, "short"))
175 options
->submodule_format
= DIFF_SUBMODULE_SHORT
;
176 else if (!strcmp(value
, "diff"))
177 options
->submodule_format
= DIFF_SUBMODULE_INLINE_DIFF
;
179 * Please update $__git_diff_submodule_formats in
180 * git-completion.bash when you add new formats.
187 int git_config_rename(const char *var
, const char *value
)
190 return DIFF_DETECT_RENAME
;
191 if (!strcasecmp(value
, "copies") || !strcasecmp(value
, "copy"))
192 return DIFF_DETECT_COPY
;
193 return git_config_bool(var
,value
) ? DIFF_DETECT_RENAME
: 0;
196 long parse_algorithm_value(const char *value
)
200 else if (!strcasecmp(value
, "myers") || !strcasecmp(value
, "default"))
202 else if (!strcasecmp(value
, "minimal"))
203 return XDF_NEED_MINIMAL
;
204 else if (!strcasecmp(value
, "patience"))
205 return XDF_PATIENCE_DIFF
;
206 else if (!strcasecmp(value
, "histogram"))
207 return XDF_HISTOGRAM_DIFF
;
209 * Please update $__git_diff_algorithms in git-completion.bash
210 * when you add new algorithms.
215 static int parse_one_token(const char **arg
, const char *token
)
218 if (skip_prefix(*arg
, token
, &rest
) && (!*rest
|| *rest
== ',')) {
225 static int parse_ws_error_highlight(const char *arg
)
227 const char *orig_arg
= arg
;
231 if (parse_one_token(&arg
, "none"))
233 else if (parse_one_token(&arg
, "default"))
235 else if (parse_one_token(&arg
, "all"))
236 val
= WSEH_NEW
| WSEH_OLD
| WSEH_CONTEXT
;
237 else if (parse_one_token(&arg
, "new"))
239 else if (parse_one_token(&arg
, "old"))
241 else if (parse_one_token(&arg
, "context"))
244 return -1 - (int)(arg
- orig_arg
);
253 * These are to give UI layer defaults.
254 * The core-level commands such as git-diff-files should
255 * never be affected by the setting of diff.renames
256 * the user happens to have in the configuration file.
258 void init_diff_ui_defaults(void)
260 diff_detect_rename_default
= DIFF_DETECT_RENAME
;
263 int git_diff_heuristic_config(const char *var
, const char *value
, void *cb
)
265 if (!strcmp(var
, "diff.indentheuristic"))
266 diff_indent_heuristic
= git_config_bool(var
, value
);
270 static int parse_color_moved(const char *arg
)
272 switch (git_parse_maybe_bool(arg
)) {
274 return COLOR_MOVED_NO
;
276 return COLOR_MOVED_DEFAULT
;
281 if (!strcmp(arg
, "no"))
282 return COLOR_MOVED_NO
;
283 else if (!strcmp(arg
, "plain"))
284 return COLOR_MOVED_PLAIN
;
285 else if (!strcmp(arg
, "blocks"))
286 return COLOR_MOVED_BLOCKS
;
287 else if (!strcmp(arg
, "zebra"))
288 return COLOR_MOVED_ZEBRA
;
289 else if (!strcmp(arg
, "default"))
290 return COLOR_MOVED_DEFAULT
;
291 else if (!strcmp(arg
, "dimmed-zebra"))
292 return COLOR_MOVED_ZEBRA_DIM
;
293 else if (!strcmp(arg
, "dimmed_zebra"))
294 return COLOR_MOVED_ZEBRA_DIM
;
296 return error(_("color moved setting must be one of 'no', 'default', 'blocks', 'zebra', 'dimmed-zebra', 'plain'"));
299 static unsigned parse_color_moved_ws(const char *arg
)
302 struct string_list l
= STRING_LIST_INIT_DUP
;
303 struct string_list_item
*i
;
305 string_list_split(&l
, arg
, ',', -1);
307 for_each_string_list_item(i
, &l
) {
308 struct strbuf sb
= STRBUF_INIT
;
309 strbuf_addstr(&sb
, i
->string
);
312 if (!strcmp(sb
.buf
, "no"))
314 else if (!strcmp(sb
.buf
, "ignore-space-change"))
315 ret
|= XDF_IGNORE_WHITESPACE_CHANGE
;
316 else if (!strcmp(sb
.buf
, "ignore-space-at-eol"))
317 ret
|= XDF_IGNORE_WHITESPACE_AT_EOL
;
318 else if (!strcmp(sb
.buf
, "ignore-all-space"))
319 ret
|= XDF_IGNORE_WHITESPACE
;
320 else if (!strcmp(sb
.buf
, "allow-indentation-change"))
321 ret
|= COLOR_MOVED_WS_ALLOW_INDENTATION_CHANGE
;
323 ret
|= COLOR_MOVED_WS_ERROR
;
324 error(_("unknown color-moved-ws mode '%s', possible values are 'ignore-space-change', 'ignore-space-at-eol', 'ignore-all-space', 'allow-indentation-change'"), sb
.buf
);
330 if ((ret
& COLOR_MOVED_WS_ALLOW_INDENTATION_CHANGE
) &&
331 (ret
& XDF_WHITESPACE_FLAGS
)) {
332 error(_("color-moved-ws: allow-indentation-change cannot be combined with other whitespace modes"));
333 ret
|= COLOR_MOVED_WS_ERROR
;
336 string_list_clear(&l
, 0);
341 int git_diff_ui_config(const char *var
, const char *value
, void *cb
)
343 if (!strcmp(var
, "diff.color") || !strcmp(var
, "color.diff")) {
344 diff_use_color_default
= git_config_colorbool(var
, value
);
347 if (!strcmp(var
, "diff.colormoved")) {
348 int cm
= parse_color_moved(value
);
351 diff_color_moved_default
= cm
;
354 if (!strcmp(var
, "diff.colormovedws")) {
355 unsigned cm
= parse_color_moved_ws(value
);
356 if (cm
& COLOR_MOVED_WS_ERROR
)
358 diff_color_moved_ws_default
= cm
;
361 if (!strcmp(var
, "diff.context")) {
362 diff_context_default
= git_config_int(var
, value
);
363 if (diff_context_default
< 0)
367 if (!strcmp(var
, "diff.interhunkcontext")) {
368 diff_interhunk_context_default
= git_config_int(var
, value
);
369 if (diff_interhunk_context_default
< 0)
373 if (!strcmp(var
, "diff.renames")) {
374 diff_detect_rename_default
= git_config_rename(var
, value
);
377 if (!strcmp(var
, "diff.autorefreshindex")) {
378 diff_auto_refresh_index
= git_config_bool(var
, value
);
381 if (!strcmp(var
, "diff.mnemonicprefix")) {
382 diff_mnemonic_prefix
= git_config_bool(var
, value
);
385 if (!strcmp(var
, "diff.noprefix")) {
386 diff_no_prefix
= git_config_bool(var
, value
);
389 if (!strcmp(var
, "diff.statgraphwidth")) {
390 diff_stat_graph_width
= git_config_int(var
, value
);
393 if (!strcmp(var
, "diff.external"))
394 return git_config_string(&external_diff_cmd_cfg
, var
, value
);
395 if (!strcmp(var
, "diff.wordregex"))
396 return git_config_string(&diff_word_regex_cfg
, var
, value
);
397 if (!strcmp(var
, "diff.orderfile"))
398 return git_config_pathname(&diff_order_file_cfg
, var
, value
);
400 if (!strcmp(var
, "diff.ignoresubmodules"))
401 handle_ignore_submodules_arg(&default_diff_options
, value
);
403 if (!strcmp(var
, "diff.submodule")) {
404 if (parse_submodule_params(&default_diff_options
, value
))
405 warning(_("Unknown value for 'diff.submodule' config variable: '%s'"),
410 if (!strcmp(var
, "diff.algorithm")) {
411 diff_algorithm
= parse_algorithm_value(value
);
412 if (diff_algorithm
< 0)
417 if (!strcmp(var
, "diff.wserrorhighlight")) {
418 int val
= parse_ws_error_highlight(value
);
421 ws_error_highlight_default
= val
;
425 if (git_color_config(var
, value
, cb
) < 0)
428 return git_diff_basic_config(var
, value
, cb
);
431 int git_diff_basic_config(const char *var
, const char *value
, void *cb
)
435 if (!strcmp(var
, "diff.renamelimit")) {
436 diff_rename_limit_default
= git_config_int(var
, value
);
440 if (userdiff_config(var
, value
) < 0)
443 if (skip_prefix(var
, "diff.color.", &name
) ||
444 skip_prefix(var
, "color.diff.", &name
)) {
445 int slot
= parse_diff_color_slot(name
);
449 return config_error_nonbool(var
);
450 return color_parse(value
, diff_colors
[slot
]);
453 /* like GNU diff's --suppress-blank-empty option */
454 if (!strcmp(var
, "diff.suppressblankempty") ||
455 /* for backwards compatibility */
456 !strcmp(var
, "diff.suppress-blank-empty")) {
457 diff_suppress_blank_empty
= git_config_bool(var
, value
);
461 if (!strcmp(var
, "diff.dirstat")) {
462 struct strbuf errmsg
= STRBUF_INIT
;
463 default_diff_options
.dirstat_permille
= diff_dirstat_permille_default
;
464 if (parse_dirstat_params(&default_diff_options
, value
, &errmsg
))
465 warning(_("Found errors in 'diff.dirstat' config variable:\n%s"),
467 strbuf_release(&errmsg
);
468 diff_dirstat_permille_default
= default_diff_options
.dirstat_permille
;
472 if (git_diff_heuristic_config(var
, value
, cb
) < 0)
475 return git_default_config(var
, value
, cb
);
478 static char *quote_two(const char *one
, const char *two
)
480 int need_one
= quote_c_style(one
, NULL
, NULL
, 1);
481 int need_two
= quote_c_style(two
, NULL
, NULL
, 1);
482 struct strbuf res
= STRBUF_INIT
;
484 if (need_one
+ need_two
) {
485 strbuf_addch(&res
, '"');
486 quote_c_style(one
, &res
, NULL
, 1);
487 quote_c_style(two
, &res
, NULL
, 1);
488 strbuf_addch(&res
, '"');
490 strbuf_addstr(&res
, one
);
491 strbuf_addstr(&res
, two
);
493 return strbuf_detach(&res
, NULL
);
496 static const char *external_diff(void)
498 static const char *external_diff_cmd
= NULL
;
499 static int done_preparing
= 0;
502 return external_diff_cmd
;
503 external_diff_cmd
= xstrdup_or_null(getenv("GIT_EXTERNAL_DIFF"));
504 if (!external_diff_cmd
)
505 external_diff_cmd
= external_diff_cmd_cfg
;
507 return external_diff_cmd
;
511 * Keep track of files used for diffing. Sometimes such an entry
512 * refers to a temporary file, sometimes to an existing file, and
513 * sometimes to "/dev/null".
515 static struct diff_tempfile
{
517 * filename external diff should read from, or NULL if this
518 * entry is currently not in use:
522 char hex
[GIT_MAX_HEXSZ
+ 1];
526 * If this diff_tempfile instance refers to a temporary file,
527 * this tempfile object is used to manage its lifetime.
529 struct tempfile
*tempfile
;
532 struct emit_callback
{
535 int blank_at_eof_in_preimage
;
536 int blank_at_eof_in_postimage
;
538 int lno_in_postimage
;
539 const char **label_path
;
540 struct diff_words_data
*diff_words
;
541 struct diff_options
*opt
;
542 struct strbuf
*header
;
545 static int count_lines(const char *data
, int size
)
547 int count
, ch
, completely_empty
= 1, nl_just_seen
= 0;
554 completely_empty
= 0;
558 completely_empty
= 0;
561 if (completely_empty
)
564 count
++; /* no trailing newline */
568 static int fill_mmfile(struct repository
*r
, mmfile_t
*mf
,
569 struct diff_filespec
*one
)
571 if (!DIFF_FILE_VALID(one
)) {
572 mf
->ptr
= (char *)""; /* does not matter */
576 else if (diff_populate_filespec(r
, one
, 0))
580 mf
->size
= one
->size
;
584 /* like fill_mmfile, but only for size, so we can avoid retrieving blob */
585 static unsigned long diff_filespec_size(struct repository
*r
,
586 struct diff_filespec
*one
)
588 if (!DIFF_FILE_VALID(one
))
590 diff_populate_filespec(r
, one
, CHECK_SIZE_ONLY
);
594 static int count_trailing_blank(mmfile_t
*mf
, unsigned ws_rule
)
597 long size
= mf
->size
;
602 ptr
+= size
- 1; /* pointing at the very end */
604 ; /* incomplete line */
606 ptr
--; /* skip the last LF */
607 while (mf
->ptr
< ptr
) {
609 for (prev_eol
= ptr
; mf
->ptr
<= prev_eol
; prev_eol
--)
610 if (*prev_eol
== '\n')
612 if (!ws_blank_line(prev_eol
+ 1, ptr
- prev_eol
, ws_rule
))
620 static void check_blank_at_eof(mmfile_t
*mf1
, mmfile_t
*mf2
,
621 struct emit_callback
*ecbdata
)
624 unsigned ws_rule
= ecbdata
->ws_rule
;
625 l1
= count_trailing_blank(mf1
, ws_rule
);
626 l2
= count_trailing_blank(mf2
, ws_rule
);
628 ecbdata
->blank_at_eof_in_preimage
= 0;
629 ecbdata
->blank_at_eof_in_postimage
= 0;
632 at
= count_lines(mf1
->ptr
, mf1
->size
);
633 ecbdata
->blank_at_eof_in_preimage
= (at
- l1
) + 1;
635 at
= count_lines(mf2
->ptr
, mf2
->size
);
636 ecbdata
->blank_at_eof_in_postimage
= (at
- l2
) + 1;
639 static void emit_line_0(struct diff_options
*o
,
640 const char *set_sign
, const char *set
, unsigned reverse
, const char *reset
,
641 int first
, const char *line
, int len
)
643 int has_trailing_newline
, has_trailing_carriage_return
;
644 int needs_reset
= 0; /* at the end of the line */
645 FILE *file
= o
->file
;
647 fputs(diff_line_prefix(o
), file
);
649 has_trailing_newline
= (len
> 0 && line
[len
-1] == '\n');
650 if (has_trailing_newline
)
653 has_trailing_carriage_return
= (len
> 0 && line
[len
-1] == '\r');
654 if (has_trailing_carriage_return
)
660 if (reverse
&& want_color(o
->use_color
)) {
661 fputs(GIT_COLOR_REVERSE
, file
);
666 fputs(set_sign
, file
);
677 if (set_sign
&& set
!= set_sign
)
682 fwrite(line
, len
, 1, file
);
683 needs_reset
= 1; /* 'line' may contain color codes. */
688 if (has_trailing_carriage_return
)
690 if (has_trailing_newline
)
694 static void emit_line(struct diff_options
*o
, const char *set
, const char *reset
,
695 const char *line
, int len
)
697 emit_line_0(o
, set
, NULL
, 0, reset
, 0, line
, len
);
701 DIFF_SYMBOL_BINARY_DIFF_HEADER
,
702 DIFF_SYMBOL_BINARY_DIFF_HEADER_DELTA
,
703 DIFF_SYMBOL_BINARY_DIFF_HEADER_LITERAL
,
704 DIFF_SYMBOL_BINARY_DIFF_BODY
,
705 DIFF_SYMBOL_BINARY_DIFF_FOOTER
,
706 DIFF_SYMBOL_STATS_SUMMARY_NO_FILES
,
707 DIFF_SYMBOL_STATS_SUMMARY_ABBREV
,
708 DIFF_SYMBOL_STATS_SUMMARY_INSERTS_DELETES
,
709 DIFF_SYMBOL_STATS_LINE
,
710 DIFF_SYMBOL_WORD_DIFF
,
711 DIFF_SYMBOL_STAT_SEP
,
713 DIFF_SYMBOL_SUBMODULE_ADD
,
714 DIFF_SYMBOL_SUBMODULE_DEL
,
715 DIFF_SYMBOL_SUBMODULE_UNTRACKED
,
716 DIFF_SYMBOL_SUBMODULE_MODIFIED
,
717 DIFF_SYMBOL_SUBMODULE_HEADER
,
718 DIFF_SYMBOL_SUBMODULE_ERROR
,
719 DIFF_SYMBOL_SUBMODULE_PIPETHROUGH
,
720 DIFF_SYMBOL_REWRITE_DIFF
,
721 DIFF_SYMBOL_BINARY_FILES
,
723 DIFF_SYMBOL_FILEPAIR_PLUS
,
724 DIFF_SYMBOL_FILEPAIR_MINUS
,
725 DIFF_SYMBOL_WORDS_PORCELAIN
,
728 DIFF_SYMBOL_CONTEXT_INCOMPLETE
,
731 DIFF_SYMBOL_NO_LF_EOF
,
732 DIFF_SYMBOL_CONTEXT_FRAGINFO
,
733 DIFF_SYMBOL_CONTEXT_MARKER
,
734 DIFF_SYMBOL_SEPARATOR
737 * Flags for content lines:
738 * 0..12 are whitespace rules
739 * 13-15 are WSEH_NEW | WSEH_OLD | WSEH_CONTEXT
740 * 16 is marking if the line is blank at EOF
742 #define DIFF_SYMBOL_CONTENT_BLANK_LINE_EOF (1<<16)
743 #define DIFF_SYMBOL_MOVED_LINE (1<<17)
744 #define DIFF_SYMBOL_MOVED_LINE_ALT (1<<18)
745 #define DIFF_SYMBOL_MOVED_LINE_UNINTERESTING (1<<19)
746 #define DIFF_SYMBOL_CONTENT_WS_MASK (WSEH_NEW | WSEH_OLD | WSEH_CONTEXT | WS_RULE_MASK)
749 * This struct is used when we need to buffer the output of the diff output.
751 * NEEDSWORK: Instead of storing a copy of the line, add an offset pointer
752 * into the pre/post image file. This pointer could be a union with the
753 * line pointer. By storing an offset into the file instead of the literal line,
754 * we can decrease the memory footprint for the buffered output. At first we
755 * may want to only have indirection for the content lines, but we could also
756 * enhance the state for emitting prefabricated lines, e.g. the similarity
757 * score line or hunk/file headers would only need to store a number or path
758 * and then the output can be constructed later on depending on state.
760 struct emitted_diff_symbol
{
764 int indent_off
; /* Offset to first non-whitespace character */
765 int indent_width
; /* The visual width of the indentation */
768 #define EMITTED_DIFF_SYMBOL_INIT {NULL}
770 struct emitted_diff_symbols
{
771 struct emitted_diff_symbol
*buf
;
774 #define EMITTED_DIFF_SYMBOLS_INIT {NULL, 0, 0}
776 static void append_emitted_diff_symbol(struct diff_options
*o
,
777 struct emitted_diff_symbol
*e
)
779 struct emitted_diff_symbol
*f
;
781 ALLOC_GROW(o
->emitted_symbols
->buf
,
782 o
->emitted_symbols
->nr
+ 1,
783 o
->emitted_symbols
->alloc
);
784 f
= &o
->emitted_symbols
->buf
[o
->emitted_symbols
->nr
++];
786 memcpy(f
, e
, sizeof(struct emitted_diff_symbol
));
787 f
->line
= e
->line ?
xmemdupz(e
->line
, e
->len
) : NULL
;
791 struct hashmap_entry ent
;
792 const struct emitted_diff_symbol
*es
;
793 struct moved_entry
*next_line
;
797 struct moved_entry
*match
;
798 int wsd
; /* The whitespace delta of this block */
801 static void moved_block_clear(struct moved_block
*b
)
803 memset(b
, 0, sizeof(*b
));
806 #define INDENT_BLANKLINE INT_MIN
808 static void fill_es_indent_data(struct emitted_diff_symbol
*es
)
810 unsigned int off
= 0, i
;
811 int width
= 0, tab_width
= es
->flags
& WS_TAB_WIDTH_MASK
;
812 const char *s
= es
->line
;
813 const int len
= es
->len
;
815 /* skip any \v \f \r at start of indentation */
816 while (s
[off
] == '\f' || s
[off
] == '\v' ||
817 (s
[off
] == '\r' && off
< len
- 1))
820 /* calculate the visual width of indentation */
825 } else if (s
[off
] == '\t') {
826 width
+= tab_width
- (width
% tab_width
);
827 while (s
[++off
] == '\t')
834 /* check if this line is blank */
835 for (i
= off
; i
< len
; i
++)
840 es
->indent_width
= INDENT_BLANKLINE
;
841 es
->indent_off
= len
;
843 es
->indent_off
= off
;
844 es
->indent_width
= width
;
848 static int compute_ws_delta(const struct emitted_diff_symbol
*a
,
849 const struct emitted_diff_symbol
*b
,
854 a_off
= a
->indent_off
,
855 a_width
= a
->indent_width
,
856 b_off
= b
->indent_off
,
857 b_width
= b
->indent_width
;
860 if (a_width
== INDENT_BLANKLINE
&& b_width
== INDENT_BLANKLINE
) {
861 *out
= INDENT_BLANKLINE
;
865 if (a
->s
== DIFF_SYMBOL_PLUS
)
866 delta
= a_width
- b_width
;
868 delta
= b_width
- a_width
;
870 if (a_len
- a_off
!= b_len
- b_off
||
871 memcmp(a
->line
+ a_off
, b
->line
+ b_off
, a_len
- a_off
))
879 static int cmp_in_block_with_wsd(const struct diff_options
*o
,
880 const struct moved_entry
*cur
,
881 const struct moved_entry
*match
,
882 struct moved_block
*pmb
,
885 struct emitted_diff_symbol
*l
= &o
->emitted_symbols
->buf
[n
];
886 int al
= cur
->es
->len
, bl
= match
->es
->len
, cl
= l
->len
;
887 const char *a
= cur
->es
->line
,
888 *b
= match
->es
->line
,
890 int a_off
= cur
->es
->indent_off
,
891 a_width
= cur
->es
->indent_width
,
892 c_off
= l
->indent_off
,
893 c_width
= l
->indent_width
;
897 * We need to check if 'cur' is equal to 'match'. As those
898 * are from the same (+/-) side, we do not need to adjust for
899 * indent changes. However these were found using fuzzy
900 * matching so we do have to check if they are equal. Here we
901 * just check the lengths. We delay calling memcmp() to check
902 * the contents until later as if the length comparison for a
903 * and c fails we can avoid the call all together.
908 /* If 'l' and 'cur' are both blank then they match. */
909 if (a_width
== INDENT_BLANKLINE
&& c_width
== INDENT_BLANKLINE
)
913 * The indent changes of the block are known and stored in pmb->wsd;
914 * however we need to check if the indent changes of the current line
915 * match those of the current block and that the text of 'l' and 'cur'
916 * after the indentation match.
918 if (cur
->es
->s
== DIFF_SYMBOL_PLUS
)
919 delta
= a_width
- c_width
;
921 delta
= c_width
- a_width
;
924 * If the previous lines of this block were all blank then set its
927 if (pmb
->wsd
== INDENT_BLANKLINE
)
930 return !(delta
== pmb
->wsd
&& al
- a_off
== cl
- c_off
&&
931 !memcmp(a
, b
, al
) && !
932 memcmp(a
+ a_off
, c
+ c_off
, al
- a_off
));
935 static int moved_entry_cmp(const void *hashmap_cmp_fn_data
,
937 const void *entry_or_key
,
940 const struct diff_options
*diffopt
= hashmap_cmp_fn_data
;
941 const struct moved_entry
*a
= entry
;
942 const struct moved_entry
*b
= entry_or_key
;
943 unsigned flags
= diffopt
->color_moved_ws_handling
944 & XDF_WHITESPACE_FLAGS
;
946 if (diffopt
->color_moved_ws_handling
&
947 COLOR_MOVED_WS_ALLOW_INDENTATION_CHANGE
)
949 * As there is not specific white space config given,
950 * we'd need to check for a new block, so ignore all
951 * white space. The setup of the white space
952 * configuration for the next block is done else where
954 flags
|= XDF_IGNORE_WHITESPACE
;
956 return !xdiff_compare_lines(a
->es
->line
, a
->es
->len
,
957 b
->es
->line
, b
->es
->len
,
961 static struct moved_entry
*prepare_entry(struct diff_options
*o
,
964 struct moved_entry
*ret
= xmalloc(sizeof(*ret
));
965 struct emitted_diff_symbol
*l
= &o
->emitted_symbols
->buf
[line_no
];
966 unsigned flags
= o
->color_moved_ws_handling
& XDF_WHITESPACE_FLAGS
;
968 ret
->ent
.hash
= xdiff_hash_string(l
->line
, l
->len
, flags
);
970 ret
->next_line
= NULL
;
975 static void add_lines_to_move_detection(struct diff_options
*o
,
976 struct hashmap
*add_lines
,
977 struct hashmap
*del_lines
)
979 struct moved_entry
*prev_line
= NULL
;
982 for (n
= 0; n
< o
->emitted_symbols
->nr
; n
++) {
984 struct moved_entry
*key
;
986 switch (o
->emitted_symbols
->buf
[n
].s
) {
987 case DIFF_SYMBOL_PLUS
:
990 case DIFF_SYMBOL_MINUS
:
998 if (o
->color_moved_ws_handling
&
999 COLOR_MOVED_WS_ALLOW_INDENTATION_CHANGE
)
1000 fill_es_indent_data(&o
->emitted_symbols
->buf
[n
]);
1001 key
= prepare_entry(o
, n
);
1002 if (prev_line
&& prev_line
->es
->s
== o
->emitted_symbols
->buf
[n
].s
)
1003 prev_line
->next_line
= key
;
1005 hashmap_add(hm
, key
);
1010 static void pmb_advance_or_null(struct diff_options
*o
,
1011 struct moved_entry
*match
,
1013 struct moved_block
*pmb
,
1017 for (i
= 0; i
< pmb_nr
; i
++) {
1018 struct moved_entry
*prev
= pmb
[i
].match
;
1019 struct moved_entry
*cur
= (prev
&& prev
->next_line
) ?
1020 prev
->next_line
: NULL
;
1021 if (cur
&& !hm
->cmpfn(o
, cur
, match
, NULL
)) {
1024 pmb
[i
].match
= NULL
;
1029 static void pmb_advance_or_null_multi_match(struct diff_options
*o
,
1030 struct moved_entry
*match
,
1032 struct moved_block
*pmb
,
1036 char *got_match
= xcalloc(1, pmb_nr
);
1038 for (; match
; match
= hashmap_get_next(hm
, match
)) {
1039 for (i
= 0; i
< pmb_nr
; i
++) {
1040 struct moved_entry
*prev
= pmb
[i
].match
;
1041 struct moved_entry
*cur
= (prev
&& prev
->next_line
) ?
1042 prev
->next_line
: NULL
;
1045 if (!cmp_in_block_with_wsd(o
, cur
, match
, &pmb
[i
], n
))
1050 for (i
= 0; i
< pmb_nr
; i
++) {
1052 /* Advance to the next line */
1053 pmb
[i
].match
= pmb
[i
].match
->next_line
;
1055 moved_block_clear(&pmb
[i
]);
1062 static int shrink_potential_moved_blocks(struct moved_block
*pmb
,
1067 /* Shrink the set of potential block to the remaining running */
1068 for (lp
= 0, rp
= pmb_nr
- 1; lp
<= rp
;) {
1069 while (lp
< pmb_nr
&& pmb
[lp
].match
)
1071 /* lp points at the first NULL now */
1073 while (rp
> -1 && !pmb
[rp
].match
)
1075 /* rp points at the last non-NULL */
1077 if (lp
< pmb_nr
&& rp
> -1 && lp
< rp
) {
1079 memset(&pmb
[rp
], 0, sizeof(pmb
[rp
]));
1085 /* Remember the number of running sets */
1090 * If o->color_moved is COLOR_MOVED_PLAIN, this function does nothing.
1092 * Otherwise, if the last block has fewer alphanumeric characters than
1093 * COLOR_MOVED_MIN_ALNUM_COUNT, unset DIFF_SYMBOL_MOVED_LINE on all lines in
1096 * The last block consists of the (n - block_length)'th line up to but not
1097 * including the nth line.
1099 * Returns 0 if the last block is empty or is unset by this function, non zero
1102 * NEEDSWORK: This uses the same heuristic as blame_entry_score() in blame.c.
1103 * Think of a way to unify them.
1105 static int adjust_last_block(struct diff_options
*o
, int n
, int block_length
)
1107 int i
, alnum_count
= 0;
1108 if (o
->color_moved
== COLOR_MOVED_PLAIN
)
1109 return block_length
;
1110 for (i
= 1; i
< block_length
+ 1; i
++) {
1111 const char *c
= o
->emitted_symbols
->buf
[n
- i
].line
;
1116 if (alnum_count
>= COLOR_MOVED_MIN_ALNUM_COUNT
)
1120 for (i
= 1; i
< block_length
+ 1; i
++)
1121 o
->emitted_symbols
->buf
[n
- i
].flags
&= ~DIFF_SYMBOL_MOVED_LINE
;
1125 /* Find blocks of moved code, delegate actual coloring decision to helper */
1126 static void mark_color_as_moved(struct diff_options
*o
,
1127 struct hashmap
*add_lines
,
1128 struct hashmap
*del_lines
)
1130 struct moved_block
*pmb
= NULL
; /* potentially moved blocks */
1131 int pmb_nr
= 0, pmb_alloc
= 0;
1132 int n
, flipped_block
= 0, block_length
= 0;
1135 for (n
= 0; n
< o
->emitted_symbols
->nr
; n
++) {
1136 struct hashmap
*hm
= NULL
;
1137 struct moved_entry
*key
;
1138 struct moved_entry
*match
= NULL
;
1139 struct emitted_diff_symbol
*l
= &o
->emitted_symbols
->buf
[n
];
1140 enum diff_symbol last_symbol
= 0;
1143 case DIFF_SYMBOL_PLUS
:
1145 key
= prepare_entry(o
, n
);
1146 match
= hashmap_get(hm
, key
, NULL
);
1149 case DIFF_SYMBOL_MINUS
:
1151 key
= prepare_entry(o
, n
);
1152 match
= hashmap_get(hm
, key
, NULL
);
1162 adjust_last_block(o
, n
, block_length
);
1163 for(i
= 0; i
< pmb_nr
; i
++)
1164 moved_block_clear(&pmb
[i
]);
1172 if (o
->color_moved
== COLOR_MOVED_PLAIN
) {
1174 l
->flags
|= DIFF_SYMBOL_MOVED_LINE
;
1178 if (o
->color_moved_ws_handling
&
1179 COLOR_MOVED_WS_ALLOW_INDENTATION_CHANGE
)
1180 pmb_advance_or_null_multi_match(o
, match
, hm
, pmb
, pmb_nr
, n
);
1182 pmb_advance_or_null(o
, match
, hm
, pmb
, pmb_nr
);
1184 pmb_nr
= shrink_potential_moved_blocks(pmb
, pmb_nr
);
1188 * The current line is the start of a new block.
1189 * Setup the set of potential blocks.
1191 for (; match
; match
= hashmap_get_next(hm
, match
)) {
1192 ALLOC_GROW(pmb
, pmb_nr
+ 1, pmb_alloc
);
1193 if (o
->color_moved_ws_handling
&
1194 COLOR_MOVED_WS_ALLOW_INDENTATION_CHANGE
) {
1195 if (compute_ws_delta(l
, match
->es
,
1197 pmb
[pmb_nr
++].match
= match
;
1199 pmb
[pmb_nr
].wsd
= 0;
1200 pmb
[pmb_nr
++].match
= match
;
1204 if (adjust_last_block(o
, n
, block_length
) &&
1205 pmb_nr
&& last_symbol
!= l
->s
)
1206 flipped_block
= (flipped_block
+ 1) % 2;
1215 l
->flags
|= DIFF_SYMBOL_MOVED_LINE
;
1216 if (flipped_block
&& o
->color_moved
!= COLOR_MOVED_BLOCKS
)
1217 l
->flags
|= DIFF_SYMBOL_MOVED_LINE_ALT
;
1221 adjust_last_block(o
, n
, block_length
);
1223 for(n
= 0; n
< pmb_nr
; n
++)
1224 moved_block_clear(&pmb
[n
]);
1228 #define DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK \
1229 (DIFF_SYMBOL_MOVED_LINE | DIFF_SYMBOL_MOVED_LINE_ALT)
1230 static void dim_moved_lines(struct diff_options
*o
)
1233 for (n
= 0; n
< o
->emitted_symbols
->nr
; n
++) {
1234 struct emitted_diff_symbol
*prev
= (n
!= 0) ?
1235 &o
->emitted_symbols
->buf
[n
- 1] : NULL
;
1236 struct emitted_diff_symbol
*l
= &o
->emitted_symbols
->buf
[n
];
1237 struct emitted_diff_symbol
*next
=
1238 (n
< o
->emitted_symbols
->nr
- 1) ?
1239 &o
->emitted_symbols
->buf
[n
+ 1] : NULL
;
1241 /* Not a plus or minus line? */
1242 if (l
->s
!= DIFF_SYMBOL_PLUS
&& l
->s
!= DIFF_SYMBOL_MINUS
)
1245 /* Not a moved line? */
1246 if (!(l
->flags
& DIFF_SYMBOL_MOVED_LINE
))
1250 * If prev or next are not a plus or minus line,
1251 * pretend they don't exist
1253 if (prev
&& prev
->s
!= DIFF_SYMBOL_PLUS
&&
1254 prev
->s
!= DIFF_SYMBOL_MINUS
)
1256 if (next
&& next
->s
!= DIFF_SYMBOL_PLUS
&&
1257 next
->s
!= DIFF_SYMBOL_MINUS
)
1260 /* Inside a block? */
1262 (prev
->flags
& DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK
) ==
1263 (l
->flags
& DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK
)) &&
1265 (next
->flags
& DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK
) ==
1266 (l
->flags
& DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK
))) {
1267 l
->flags
|= DIFF_SYMBOL_MOVED_LINE_UNINTERESTING
;
1271 /* Check if we are at an interesting bound: */
1272 if (prev
&& (prev
->flags
& DIFF_SYMBOL_MOVED_LINE
) &&
1273 (prev
->flags
& DIFF_SYMBOL_MOVED_LINE_ALT
) !=
1274 (l
->flags
& DIFF_SYMBOL_MOVED_LINE_ALT
))
1276 if (next
&& (next
->flags
& DIFF_SYMBOL_MOVED_LINE
) &&
1277 (next
->flags
& DIFF_SYMBOL_MOVED_LINE_ALT
) !=
1278 (l
->flags
& DIFF_SYMBOL_MOVED_LINE_ALT
))
1282 * The boundary to prev and next are not interesting,
1283 * so this line is not interesting as a whole
1285 l
->flags
|= DIFF_SYMBOL_MOVED_LINE_UNINTERESTING
;
1289 static void emit_line_ws_markup(struct diff_options
*o
,
1290 const char *set_sign
, const char *set
,
1292 int sign_index
, const char *line
, int len
,
1293 unsigned ws_rule
, int blank_at_eof
)
1295 const char *ws
= NULL
;
1296 int sign
= o
->output_indicators
[sign_index
];
1298 if (o
->ws_error_highlight
& ws_rule
) {
1299 ws
= diff_get_color_opt(o
, DIFF_WHITESPACE
);
1304 if (!ws
&& !set_sign
)
1305 emit_line_0(o
, set
, NULL
, 0, reset
, sign
, line
, len
);
1307 emit_line_0(o
, set_sign
, set
, !!set_sign
, reset
, sign
, line
, len
);
1308 } else if (blank_at_eof
)
1309 /* Blank line at EOF - paint '+' as well */
1310 emit_line_0(o
, ws
, NULL
, 0, reset
, sign
, line
, len
);
1312 /* Emit just the prefix, then the rest. */
1313 emit_line_0(o
, set_sign ? set_sign
: set
, NULL
, !!set_sign
, reset
,
1315 ws_check_emit(line
, len
, ws_rule
,
1316 o
->file
, set
, reset
, ws
);
1320 static void emit_diff_symbol_from_struct(struct diff_options
*o
,
1321 struct emitted_diff_symbol
*eds
)
1323 static const char *nneof
= " No newline at end of file\n";
1324 const char *context
, *reset
, *set
, *set_sign
, *meta
, *fraginfo
;
1325 struct strbuf sb
= STRBUF_INIT
;
1327 enum diff_symbol s
= eds
->s
;
1328 const char *line
= eds
->line
;
1330 unsigned flags
= eds
->flags
;
1333 case DIFF_SYMBOL_NO_LF_EOF
:
1334 context
= diff_get_color_opt(o
, DIFF_CONTEXT
);
1335 reset
= diff_get_color_opt(o
, DIFF_RESET
);
1336 putc('\n', o
->file
);
1337 emit_line_0(o
, context
, NULL
, 0, reset
, '\\',
1338 nneof
, strlen(nneof
));
1340 case DIFF_SYMBOL_SUBMODULE_HEADER
:
1341 case DIFF_SYMBOL_SUBMODULE_ERROR
:
1342 case DIFF_SYMBOL_SUBMODULE_PIPETHROUGH
:
1343 case DIFF_SYMBOL_STATS_SUMMARY_INSERTS_DELETES
:
1344 case DIFF_SYMBOL_SUMMARY
:
1345 case DIFF_SYMBOL_STATS_LINE
:
1346 case DIFF_SYMBOL_BINARY_DIFF_BODY
:
1347 case DIFF_SYMBOL_CONTEXT_FRAGINFO
:
1348 emit_line(o
, "", "", line
, len
);
1350 case DIFF_SYMBOL_CONTEXT_INCOMPLETE
:
1351 case DIFF_SYMBOL_CONTEXT_MARKER
:
1352 context
= diff_get_color_opt(o
, DIFF_CONTEXT
);
1353 reset
= diff_get_color_opt(o
, DIFF_RESET
);
1354 emit_line(o
, context
, reset
, line
, len
);
1356 case DIFF_SYMBOL_SEPARATOR
:
1357 fprintf(o
->file
, "%s%c",
1358 diff_line_prefix(o
),
1359 o
->line_termination
);
1361 case DIFF_SYMBOL_CONTEXT
:
1362 set
= diff_get_color_opt(o
, DIFF_CONTEXT
);
1363 reset
= diff_get_color_opt(o
, DIFF_RESET
);
1365 if (o
->flags
.dual_color_diffed_diffs
) {
1366 char c
= !len ?
0 : line
[0];
1369 set
= diff_get_color_opt(o
, DIFF_FILE_NEW
);
1371 set
= diff_get_color_opt(o
, DIFF_FRAGINFO
);
1373 set
= diff_get_color_opt(o
, DIFF_FILE_OLD
);
1375 emit_line_ws_markup(o
, set_sign
, set
, reset
,
1376 OUTPUT_INDICATOR_CONTEXT
, line
, len
,
1377 flags
& (DIFF_SYMBOL_CONTENT_WS_MASK
), 0);
1379 case DIFF_SYMBOL_PLUS
:
1380 switch (flags
& (DIFF_SYMBOL_MOVED_LINE
|
1381 DIFF_SYMBOL_MOVED_LINE_ALT
|
1382 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING
)) {
1383 case DIFF_SYMBOL_MOVED_LINE
|
1384 DIFF_SYMBOL_MOVED_LINE_ALT
|
1385 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING
:
1386 set
= diff_get_color_opt(o
, DIFF_FILE_NEW_MOVED_ALT_DIM
);
1388 case DIFF_SYMBOL_MOVED_LINE
|
1389 DIFF_SYMBOL_MOVED_LINE_ALT
:
1390 set
= diff_get_color_opt(o
, DIFF_FILE_NEW_MOVED_ALT
);
1392 case DIFF_SYMBOL_MOVED_LINE
|
1393 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING
:
1394 set
= diff_get_color_opt(o
, DIFF_FILE_NEW_MOVED_DIM
);
1396 case DIFF_SYMBOL_MOVED_LINE
:
1397 set
= diff_get_color_opt(o
, DIFF_FILE_NEW_MOVED
);
1400 set
= diff_get_color_opt(o
, DIFF_FILE_NEW
);
1402 reset
= diff_get_color_opt(o
, DIFF_RESET
);
1403 if (!o
->flags
.dual_color_diffed_diffs
)
1406 char c
= !len ?
0 : line
[0];
1410 set
= diff_get_color_opt(o
, DIFF_FILE_OLD_BOLD
);
1412 set
= diff_get_color_opt(o
, DIFF_FRAGINFO
);
1414 set
= diff_get_color_opt(o
, DIFF_FILE_NEW_BOLD
);
1416 set
= diff_get_color_opt(o
, DIFF_CONTEXT_BOLD
);
1417 flags
&= ~DIFF_SYMBOL_CONTENT_WS_MASK
;
1419 emit_line_ws_markup(o
, set_sign
, set
, reset
,
1420 OUTPUT_INDICATOR_NEW
, line
, len
,
1421 flags
& DIFF_SYMBOL_CONTENT_WS_MASK
,
1422 flags
& DIFF_SYMBOL_CONTENT_BLANK_LINE_EOF
);
1424 case DIFF_SYMBOL_MINUS
:
1425 switch (flags
& (DIFF_SYMBOL_MOVED_LINE
|
1426 DIFF_SYMBOL_MOVED_LINE_ALT
|
1427 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING
)) {
1428 case DIFF_SYMBOL_MOVED_LINE
|
1429 DIFF_SYMBOL_MOVED_LINE_ALT
|
1430 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING
:
1431 set
= diff_get_color_opt(o
, DIFF_FILE_OLD_MOVED_ALT_DIM
);
1433 case DIFF_SYMBOL_MOVED_LINE
|
1434 DIFF_SYMBOL_MOVED_LINE_ALT
:
1435 set
= diff_get_color_opt(o
, DIFF_FILE_OLD_MOVED_ALT
);
1437 case DIFF_SYMBOL_MOVED_LINE
|
1438 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING
:
1439 set
= diff_get_color_opt(o
, DIFF_FILE_OLD_MOVED_DIM
);
1441 case DIFF_SYMBOL_MOVED_LINE
:
1442 set
= diff_get_color_opt(o
, DIFF_FILE_OLD_MOVED
);
1445 set
= diff_get_color_opt(o
, DIFF_FILE_OLD
);
1447 reset
= diff_get_color_opt(o
, DIFF_RESET
);
1448 if (!o
->flags
.dual_color_diffed_diffs
)
1451 char c
= !len ?
0 : line
[0];
1455 set
= diff_get_color_opt(o
, DIFF_FILE_NEW_DIM
);
1457 set
= diff_get_color_opt(o
, DIFF_FRAGINFO
);
1459 set
= diff_get_color_opt(o
, DIFF_FILE_OLD_DIM
);
1461 set
= diff_get_color_opt(o
, DIFF_CONTEXT_DIM
);
1463 emit_line_ws_markup(o
, set_sign
, set
, reset
,
1464 OUTPUT_INDICATOR_OLD
, line
, len
,
1465 flags
& DIFF_SYMBOL_CONTENT_WS_MASK
, 0);
1467 case DIFF_SYMBOL_WORDS_PORCELAIN
:
1468 context
= diff_get_color_opt(o
, DIFF_CONTEXT
);
1469 reset
= diff_get_color_opt(o
, DIFF_RESET
);
1470 emit_line(o
, context
, reset
, line
, len
);
1471 fputs("~\n", o
->file
);
1473 case DIFF_SYMBOL_WORDS
:
1474 context
= diff_get_color_opt(o
, DIFF_CONTEXT
);
1475 reset
= diff_get_color_opt(o
, DIFF_RESET
);
1477 * Skip the prefix character, if any. With
1478 * diff_suppress_blank_empty, there may be
1481 if (line
[0] != '\n') {
1485 emit_line(o
, context
, reset
, line
, len
);
1487 case DIFF_SYMBOL_FILEPAIR_PLUS
:
1488 meta
= diff_get_color_opt(o
, DIFF_METAINFO
);
1489 reset
= diff_get_color_opt(o
, DIFF_RESET
);
1490 fprintf(o
->file
, "%s%s+++ %s%s%s\n", diff_line_prefix(o
), meta
,
1492 strchr(line
, ' ') ?
"\t" : "");
1494 case DIFF_SYMBOL_FILEPAIR_MINUS
:
1495 meta
= diff_get_color_opt(o
, DIFF_METAINFO
);
1496 reset
= diff_get_color_opt(o
, DIFF_RESET
);
1497 fprintf(o
->file
, "%s%s--- %s%s%s\n", diff_line_prefix(o
), meta
,
1499 strchr(line
, ' ') ?
"\t" : "");
1501 case DIFF_SYMBOL_BINARY_FILES
:
1502 case DIFF_SYMBOL_HEADER
:
1503 fprintf(o
->file
, "%s", line
);
1505 case DIFF_SYMBOL_BINARY_DIFF_HEADER
:
1506 fprintf(o
->file
, "%sGIT binary patch\n", diff_line_prefix(o
));
1508 case DIFF_SYMBOL_BINARY_DIFF_HEADER_DELTA
:
1509 fprintf(o
->file
, "%sdelta %s\n", diff_line_prefix(o
), line
);
1511 case DIFF_SYMBOL_BINARY_DIFF_HEADER_LITERAL
:
1512 fprintf(o
->file
, "%sliteral %s\n", diff_line_prefix(o
), line
);
1514 case DIFF_SYMBOL_BINARY_DIFF_FOOTER
:
1515 fputs(diff_line_prefix(o
), o
->file
);
1516 fputc('\n', o
->file
);
1518 case DIFF_SYMBOL_REWRITE_DIFF
:
1519 fraginfo
= diff_get_color(o
->use_color
, DIFF_FRAGINFO
);
1520 reset
= diff_get_color_opt(o
, DIFF_RESET
);
1521 emit_line(o
, fraginfo
, reset
, line
, len
);
1523 case DIFF_SYMBOL_SUBMODULE_ADD
:
1524 set
= diff_get_color_opt(o
, DIFF_FILE_NEW
);
1525 reset
= diff_get_color_opt(o
, DIFF_RESET
);
1526 emit_line(o
, set
, reset
, line
, len
);
1528 case DIFF_SYMBOL_SUBMODULE_DEL
:
1529 set
= diff_get_color_opt(o
, DIFF_FILE_OLD
);
1530 reset
= diff_get_color_opt(o
, DIFF_RESET
);
1531 emit_line(o
, set
, reset
, line
, len
);
1533 case DIFF_SYMBOL_SUBMODULE_UNTRACKED
:
1534 fprintf(o
->file
, "%sSubmodule %s contains untracked content\n",
1535 diff_line_prefix(o
), line
);
1537 case DIFF_SYMBOL_SUBMODULE_MODIFIED
:
1538 fprintf(o
->file
, "%sSubmodule %s contains modified content\n",
1539 diff_line_prefix(o
), line
);
1541 case DIFF_SYMBOL_STATS_SUMMARY_NO_FILES
:
1542 emit_line(o
, "", "", " 0 files changed\n",
1543 strlen(" 0 files changed\n"));
1545 case DIFF_SYMBOL_STATS_SUMMARY_ABBREV
:
1546 emit_line(o
, "", "", " ...\n", strlen(" ...\n"));
1548 case DIFF_SYMBOL_WORD_DIFF
:
1549 fprintf(o
->file
, "%.*s", len
, line
);
1551 case DIFF_SYMBOL_STAT_SEP
:
1552 fputs(o
->stat_sep
, o
->file
);
1555 BUG("unknown diff symbol");
1557 strbuf_release(&sb
);
1560 static void emit_diff_symbol(struct diff_options
*o
, enum diff_symbol s
,
1561 const char *line
, int len
, unsigned flags
)
1563 struct emitted_diff_symbol e
= {line
, len
, flags
, 0, 0, s
};
1565 if (o
->emitted_symbols
)
1566 append_emitted_diff_symbol(o
, &e
);
1568 emit_diff_symbol_from_struct(o
, &e
);
1571 void diff_emit_submodule_del(struct diff_options
*o
, const char *line
)
1573 emit_diff_symbol(o
, DIFF_SYMBOL_SUBMODULE_DEL
, line
, strlen(line
), 0);
1576 void diff_emit_submodule_add(struct diff_options
*o
, const char *line
)
1578 emit_diff_symbol(o
, DIFF_SYMBOL_SUBMODULE_ADD
, line
, strlen(line
), 0);
1581 void diff_emit_submodule_untracked(struct diff_options
*o
, const char *path
)
1583 emit_diff_symbol(o
, DIFF_SYMBOL_SUBMODULE_UNTRACKED
,
1584 path
, strlen(path
), 0);
1587 void diff_emit_submodule_modified(struct diff_options
*o
, const char *path
)
1589 emit_diff_symbol(o
, DIFF_SYMBOL_SUBMODULE_MODIFIED
,
1590 path
, strlen(path
), 0);
1593 void diff_emit_submodule_header(struct diff_options
*o
, const char *header
)
1595 emit_diff_symbol(o
, DIFF_SYMBOL_SUBMODULE_HEADER
,
1596 header
, strlen(header
), 0);
1599 void diff_emit_submodule_error(struct diff_options
*o
, const char *err
)
1601 emit_diff_symbol(o
, DIFF_SYMBOL_SUBMODULE_ERROR
, err
, strlen(err
), 0);
1604 void diff_emit_submodule_pipethrough(struct diff_options
*o
,
1605 const char *line
, int len
)
1607 emit_diff_symbol(o
, DIFF_SYMBOL_SUBMODULE_PIPETHROUGH
, line
, len
, 0);
1610 static int new_blank_line_at_eof(struct emit_callback
*ecbdata
, const char *line
, int len
)
1612 if (!((ecbdata
->ws_rule
& WS_BLANK_AT_EOF
) &&
1613 ecbdata
->blank_at_eof_in_preimage
&&
1614 ecbdata
->blank_at_eof_in_postimage
&&
1615 ecbdata
->blank_at_eof_in_preimage
<= ecbdata
->lno_in_preimage
&&
1616 ecbdata
->blank_at_eof_in_postimage
<= ecbdata
->lno_in_postimage
))
1618 return ws_blank_line(line
, len
, ecbdata
->ws_rule
);
1621 static void emit_add_line(struct emit_callback
*ecbdata
,
1622 const char *line
, int len
)
1624 unsigned flags
= WSEH_NEW
| ecbdata
->ws_rule
;
1625 if (new_blank_line_at_eof(ecbdata
, line
, len
))
1626 flags
|= DIFF_SYMBOL_CONTENT_BLANK_LINE_EOF
;
1628 emit_diff_symbol(ecbdata
->opt
, DIFF_SYMBOL_PLUS
, line
, len
, flags
);
1631 static void emit_del_line(struct emit_callback
*ecbdata
,
1632 const char *line
, int len
)
1634 unsigned flags
= WSEH_OLD
| ecbdata
->ws_rule
;
1635 emit_diff_symbol(ecbdata
->opt
, DIFF_SYMBOL_MINUS
, line
, len
, flags
);
1638 static void emit_context_line(struct emit_callback
*ecbdata
,
1639 const char *line
, int len
)
1641 unsigned flags
= WSEH_CONTEXT
| ecbdata
->ws_rule
;
1642 emit_diff_symbol(ecbdata
->opt
, DIFF_SYMBOL_CONTEXT
, line
, len
, flags
);
1645 static void emit_hunk_header(struct emit_callback
*ecbdata
,
1646 const char *line
, int len
)
1648 const char *context
= diff_get_color(ecbdata
->color_diff
, DIFF_CONTEXT
);
1649 const char *frag
= diff_get_color(ecbdata
->color_diff
, DIFF_FRAGINFO
);
1650 const char *func
= diff_get_color(ecbdata
->color_diff
, DIFF_FUNCINFO
);
1651 const char *reset
= diff_get_color(ecbdata
->color_diff
, DIFF_RESET
);
1652 const char *reverse
= ecbdata
->color_diff ? GIT_COLOR_REVERSE
: "";
1653 static const char atat
[2] = { '@', '@' };
1654 const char *cp
, *ep
;
1655 struct strbuf msgbuf
= STRBUF_INIT
;
1660 * As a hunk header must begin with "@@ -<old>, +<new> @@",
1661 * it always is at least 10 bytes long.
1664 memcmp(line
, atat
, 2) ||
1665 !(ep
= memmem(line
+ 2, len
- 2, atat
, 2))) {
1666 emit_diff_symbol(ecbdata
->opt
,
1667 DIFF_SYMBOL_CONTEXT_MARKER
, line
, len
, 0);
1670 ep
+= 2; /* skip over @@ */
1672 /* The hunk header in fraginfo color */
1673 if (ecbdata
->opt
->flags
.dual_color_diffed_diffs
)
1674 strbuf_addstr(&msgbuf
, reverse
);
1675 strbuf_addstr(&msgbuf
, frag
);
1676 strbuf_add(&msgbuf
, line
, ep
- line
);
1677 strbuf_addstr(&msgbuf
, reset
);
1683 if (line
[len
- i
] == '\r' || line
[len
- i
] == '\n')
1686 /* blank before the func header */
1687 for (cp
= ep
; ep
- line
< len
; ep
++)
1688 if (*ep
!= ' ' && *ep
!= '\t')
1691 strbuf_addstr(&msgbuf
, context
);
1692 strbuf_add(&msgbuf
, cp
, ep
- cp
);
1693 strbuf_addstr(&msgbuf
, reset
);
1696 if (ep
< line
+ len
) {
1697 strbuf_addstr(&msgbuf
, func
);
1698 strbuf_add(&msgbuf
, ep
, line
+ len
- ep
);
1699 strbuf_addstr(&msgbuf
, reset
);
1702 strbuf_add(&msgbuf
, line
+ len
, org_len
- len
);
1703 strbuf_complete_line(&msgbuf
);
1704 emit_diff_symbol(ecbdata
->opt
,
1705 DIFF_SYMBOL_CONTEXT_FRAGINFO
, msgbuf
.buf
, msgbuf
.len
, 0);
1706 strbuf_release(&msgbuf
);
1709 static struct diff_tempfile
*claim_diff_tempfile(void)
1712 for (i
= 0; i
< ARRAY_SIZE(diff_temp
); i
++)
1713 if (!diff_temp
[i
].name
)
1714 return diff_temp
+ i
;
1715 BUG("diff is failing to clean up its tempfiles");
1718 static void remove_tempfile(void)
1721 for (i
= 0; i
< ARRAY_SIZE(diff_temp
); i
++) {
1722 if (is_tempfile_active(diff_temp
[i
].tempfile
))
1723 delete_tempfile(&diff_temp
[i
].tempfile
);
1724 diff_temp
[i
].name
= NULL
;
1728 static void add_line_count(struct strbuf
*out
, int count
)
1732 strbuf_addstr(out
, "0,0");
1735 strbuf_addstr(out
, "1");
1738 strbuf_addf(out
, "1,%d", count
);
1743 static void emit_rewrite_lines(struct emit_callback
*ecb
,
1744 int prefix
, const char *data
, int size
)
1746 const char *endp
= NULL
;
1751 endp
= memchr(data
, '\n', size
);
1752 len
= endp ?
(endp
- data
+ 1) : size
;
1753 if (prefix
!= '+') {
1754 ecb
->lno_in_preimage
++;
1755 emit_del_line(ecb
, data
, len
);
1757 ecb
->lno_in_postimage
++;
1758 emit_add_line(ecb
, data
, len
);
1764 emit_diff_symbol(ecb
->opt
, DIFF_SYMBOL_NO_LF_EOF
, NULL
, 0, 0);
1767 static void emit_rewrite_diff(const char *name_a
,
1769 struct diff_filespec
*one
,
1770 struct diff_filespec
*two
,
1771 struct userdiff_driver
*textconv_one
,
1772 struct userdiff_driver
*textconv_two
,
1773 struct diff_options
*o
)
1776 static struct strbuf a_name
= STRBUF_INIT
, b_name
= STRBUF_INIT
;
1777 const char *a_prefix
, *b_prefix
;
1778 char *data_one
, *data_two
;
1779 size_t size_one
, size_two
;
1780 struct emit_callback ecbdata
;
1781 struct strbuf out
= STRBUF_INIT
;
1783 if (diff_mnemonic_prefix
&& o
->flags
.reverse_diff
) {
1784 a_prefix
= o
->b_prefix
;
1785 b_prefix
= o
->a_prefix
;
1787 a_prefix
= o
->a_prefix
;
1788 b_prefix
= o
->b_prefix
;
1791 name_a
+= (*name_a
== '/');
1792 name_b
+= (*name_b
== '/');
1794 strbuf_reset(&a_name
);
1795 strbuf_reset(&b_name
);
1796 quote_two_c_style(&a_name
, a_prefix
, name_a
, 0);
1797 quote_two_c_style(&b_name
, b_prefix
, name_b
, 0);
1799 size_one
= fill_textconv(o
->repo
, textconv_one
, one
, &data_one
);
1800 size_two
= fill_textconv(o
->repo
, textconv_two
, two
, &data_two
);
1802 memset(&ecbdata
, 0, sizeof(ecbdata
));
1803 ecbdata
.color_diff
= want_color(o
->use_color
);
1804 ecbdata
.ws_rule
= whitespace_rule(o
->repo
->index
, name_b
);
1806 if (ecbdata
.ws_rule
& WS_BLANK_AT_EOF
) {
1808 mf1
.ptr
= (char *)data_one
;
1809 mf2
.ptr
= (char *)data_two
;
1810 mf1
.size
= size_one
;
1811 mf2
.size
= size_two
;
1812 check_blank_at_eof(&mf1
, &mf2
, &ecbdata
);
1814 ecbdata
.lno_in_preimage
= 1;
1815 ecbdata
.lno_in_postimage
= 1;
1817 lc_a
= count_lines(data_one
, size_one
);
1818 lc_b
= count_lines(data_two
, size_two
);
1820 emit_diff_symbol(o
, DIFF_SYMBOL_FILEPAIR_MINUS
,
1821 a_name
.buf
, a_name
.len
, 0);
1822 emit_diff_symbol(o
, DIFF_SYMBOL_FILEPAIR_PLUS
,
1823 b_name
.buf
, b_name
.len
, 0);
1825 strbuf_addstr(&out
, "@@ -");
1826 if (!o
->irreversible_delete
)
1827 add_line_count(&out
, lc_a
);
1829 strbuf_addstr(&out
, "?,?");
1830 strbuf_addstr(&out
, " +");
1831 add_line_count(&out
, lc_b
);
1832 strbuf_addstr(&out
, " @@\n");
1833 emit_diff_symbol(o
, DIFF_SYMBOL_REWRITE_DIFF
, out
.buf
, out
.len
, 0);
1834 strbuf_release(&out
);
1836 if (lc_a
&& !o
->irreversible_delete
)
1837 emit_rewrite_lines(&ecbdata
, '-', data_one
, size_one
);
1839 emit_rewrite_lines(&ecbdata
, '+', data_two
, size_two
);
1841 free((char *)data_one
);
1843 free((char *)data_two
);
1846 struct diff_words_buffer
{
1848 unsigned long alloc
;
1849 struct diff_words_orig
{
1850 const char *begin
, *end
;
1852 int orig_nr
, orig_alloc
;
1855 static void diff_words_append(char *line
, unsigned long len
,
1856 struct diff_words_buffer
*buffer
)
1858 ALLOC_GROW(buffer
->text
.ptr
, buffer
->text
.size
+ len
, buffer
->alloc
);
1861 memcpy(buffer
->text
.ptr
+ buffer
->text
.size
, line
, len
);
1862 buffer
->text
.size
+= len
;
1863 buffer
->text
.ptr
[buffer
->text
.size
] = '\0';
1866 struct diff_words_style_elem
{
1869 const char *color
; /* NULL; filled in by the setup code if
1870 * color is enabled */
1873 struct diff_words_style
{
1874 enum diff_words_type type
;
1875 struct diff_words_style_elem new_word
, old_word
, ctx
;
1876 const char *newline
;
1879 static struct diff_words_style diff_words_styles
[] = {
1880 { DIFF_WORDS_PORCELAIN
, {"+", "\n"}, {"-", "\n"}, {" ", "\n"}, "~\n" },
1881 { DIFF_WORDS_PLAIN
, {"{+", "+}"}, {"[-", "-]"}, {"", ""}, "\n" },
1882 { DIFF_WORDS_COLOR
, {"", ""}, {"", ""}, {"", ""}, "\n" }
1885 struct diff_words_data
{
1886 struct diff_words_buffer minus
, plus
;
1887 const char *current_plus
;
1889 struct diff_options
*opt
;
1890 regex_t
*word_regex
;
1891 enum diff_words_type type
;
1892 struct diff_words_style
*style
;
1895 static int fn_out_diff_words_write_helper(struct diff_options
*o
,
1896 struct diff_words_style_elem
*st_el
,
1897 const char *newline
,
1898 size_t count
, const char *buf
)
1901 struct strbuf sb
= STRBUF_INIT
;
1904 char *p
= memchr(buf
, '\n', count
);
1906 strbuf_addstr(&sb
, diff_line_prefix(o
));
1909 const char *reset
= st_el
->color
&& *st_el
->color ?
1910 GIT_COLOR_RESET
: NULL
;
1911 if (st_el
->color
&& *st_el
->color
)
1912 strbuf_addstr(&sb
, st_el
->color
);
1913 strbuf_addstr(&sb
, st_el
->prefix
);
1914 strbuf_add(&sb
, buf
, p ? p
- buf
: count
);
1915 strbuf_addstr(&sb
, st_el
->suffix
);
1917 strbuf_addstr(&sb
, reset
);
1922 strbuf_addstr(&sb
, newline
);
1923 count
-= p
+ 1 - buf
;
1927 emit_diff_symbol(o
, DIFF_SYMBOL_WORD_DIFF
,
1935 emit_diff_symbol(o
, DIFF_SYMBOL_WORD_DIFF
,
1937 strbuf_release(&sb
);
1942 * '--color-words' algorithm can be described as:
1944 * 1. collect the minus/plus lines of a diff hunk, divided into
1945 * minus-lines and plus-lines;
1947 * 2. break both minus-lines and plus-lines into words and
1948 * place them into two mmfile_t with one word for each line;
1950 * 3. use xdiff to run diff on the two mmfile_t to get the words level diff;
1952 * And for the common parts of the both file, we output the plus side text.
1953 * diff_words->current_plus is used to trace the current position of the plus file
1954 * which printed. diff_words->last_minus is used to trace the last minus word
1957 * For '--graph' to work with '--color-words', we need to output the graph prefix
1958 * on each line of color words output. Generally, there are two conditions on
1959 * which we should output the prefix.
1961 * 1. diff_words->last_minus == 0 &&
1962 * diff_words->current_plus == diff_words->plus.text.ptr
1964 * that is: the plus text must start as a new line, and if there is no minus
1965 * word printed, a graph prefix must be printed.
1967 * 2. diff_words->current_plus > diff_words->plus.text.ptr &&
1968 * *(diff_words->current_plus - 1) == '\n'
1970 * that is: a graph prefix must be printed following a '\n'
1972 static int color_words_output_graph_prefix(struct diff_words_data
*diff_words
)
1974 if ((diff_words
->last_minus
== 0 &&
1975 diff_words
->current_plus
== diff_words
->plus
.text
.ptr
) ||
1976 (diff_words
->current_plus
> diff_words
->plus
.text
.ptr
&&
1977 *(diff_words
->current_plus
- 1) == '\n')) {
1984 static void fn_out_diff_words_aux(void *priv
,
1985 long minus_first
, long minus_len
,
1986 long plus_first
, long plus_len
,
1987 const char *func
, long funclen
)
1989 struct diff_words_data
*diff_words
= priv
;
1990 struct diff_words_style
*style
= diff_words
->style
;
1991 const char *minus_begin
, *minus_end
, *plus_begin
, *plus_end
;
1992 struct diff_options
*opt
= diff_words
->opt
;
1993 const char *line_prefix
;
1996 line_prefix
= diff_line_prefix(opt
);
1998 /* POSIX requires that first be decremented by one if len == 0... */
2000 minus_begin
= diff_words
->minus
.orig
[minus_first
].begin
;
2002 diff_words
->minus
.orig
[minus_first
+ minus_len
- 1].end
;
2004 minus_begin
= minus_end
=
2005 diff_words
->minus
.orig
[minus_first
].end
;
2008 plus_begin
= diff_words
->plus
.orig
[plus_first
].begin
;
2009 plus_end
= diff_words
->plus
.orig
[plus_first
+ plus_len
- 1].end
;
2011 plus_begin
= plus_end
= diff_words
->plus
.orig
[plus_first
].end
;
2013 if (color_words_output_graph_prefix(diff_words
)) {
2014 fputs(line_prefix
, diff_words
->opt
->file
);
2016 if (diff_words
->current_plus
!= plus_begin
) {
2017 fn_out_diff_words_write_helper(diff_words
->opt
,
2018 &style
->ctx
, style
->newline
,
2019 plus_begin
- diff_words
->current_plus
,
2020 diff_words
->current_plus
);
2022 if (minus_begin
!= minus_end
) {
2023 fn_out_diff_words_write_helper(diff_words
->opt
,
2024 &style
->old_word
, style
->newline
,
2025 minus_end
- minus_begin
, minus_begin
);
2027 if (plus_begin
!= plus_end
) {
2028 fn_out_diff_words_write_helper(diff_words
->opt
,
2029 &style
->new_word
, style
->newline
,
2030 plus_end
- plus_begin
, plus_begin
);
2033 diff_words
->current_plus
= plus_end
;
2034 diff_words
->last_minus
= minus_first
;
2037 /* This function starts looking at *begin, and returns 0 iff a word was found. */
2038 static int find_word_boundaries(mmfile_t
*buffer
, regex_t
*word_regex
,
2039 int *begin
, int *end
)
2041 if (word_regex
&& *begin
< buffer
->size
) {
2042 regmatch_t match
[1];
2043 if (!regexec_buf(word_regex
, buffer
->ptr
+ *begin
,
2044 buffer
->size
- *begin
, 1, match
, 0)) {
2045 char *p
= memchr(buffer
->ptr
+ *begin
+ match
[0].rm_so
,
2046 '\n', match
[0].rm_eo
- match
[0].rm_so
);
2047 *end
= p ? p
- buffer
->ptr
: match
[0].rm_eo
+ *begin
;
2048 *begin
+= match
[0].rm_so
;
2049 return *begin
>= *end
;
2054 /* find the next word */
2055 while (*begin
< buffer
->size
&& isspace(buffer
->ptr
[*begin
]))
2057 if (*begin
>= buffer
->size
)
2060 /* find the end of the word */
2062 while (*end
< buffer
->size
&& !isspace(buffer
->ptr
[*end
]))
2069 * This function splits the words in buffer->text, stores the list with
2070 * newline separator into out, and saves the offsets of the original words
2073 static void diff_words_fill(struct diff_words_buffer
*buffer
, mmfile_t
*out
,
2074 regex_t
*word_regex
)
2082 /* fake an empty "0th" word */
2083 ALLOC_GROW(buffer
->orig
, 1, buffer
->orig_alloc
);
2084 buffer
->orig
[0].begin
= buffer
->orig
[0].end
= buffer
->text
.ptr
;
2085 buffer
->orig_nr
= 1;
2087 for (i
= 0; i
< buffer
->text
.size
; i
++) {
2088 if (find_word_boundaries(&buffer
->text
, word_regex
, &i
, &j
))
2091 /* store original boundaries */
2092 ALLOC_GROW(buffer
->orig
, buffer
->orig_nr
+ 1,
2093 buffer
->orig_alloc
);
2094 buffer
->orig
[buffer
->orig_nr
].begin
= buffer
->text
.ptr
+ i
;
2095 buffer
->orig
[buffer
->orig_nr
].end
= buffer
->text
.ptr
+ j
;
2098 /* store one word */
2099 ALLOC_GROW(out
->ptr
, out
->size
+ j
- i
+ 1, alloc
);
2100 memcpy(out
->ptr
+ out
->size
, buffer
->text
.ptr
+ i
, j
- i
);
2101 out
->ptr
[out
->size
+ j
- i
] = '\n';
2102 out
->size
+= j
- i
+ 1;
2108 /* this executes the word diff on the accumulated buffers */
2109 static void diff_words_show(struct diff_words_data
*diff_words
)
2113 mmfile_t minus
, plus
;
2114 struct diff_words_style
*style
= diff_words
->style
;
2116 struct diff_options
*opt
= diff_words
->opt
;
2117 const char *line_prefix
;
2120 line_prefix
= diff_line_prefix(opt
);
2122 /* special case: only removal */
2123 if (!diff_words
->plus
.text
.size
) {
2124 emit_diff_symbol(diff_words
->opt
, DIFF_SYMBOL_WORD_DIFF
,
2125 line_prefix
, strlen(line_prefix
), 0);
2126 fn_out_diff_words_write_helper(diff_words
->opt
,
2127 &style
->old_word
, style
->newline
,
2128 diff_words
->minus
.text
.size
,
2129 diff_words
->minus
.text
.ptr
);
2130 diff_words
->minus
.text
.size
= 0;
2134 diff_words
->current_plus
= diff_words
->plus
.text
.ptr
;
2135 diff_words
->last_minus
= 0;
2137 memset(&xpp
, 0, sizeof(xpp
));
2138 memset(&xecfg
, 0, sizeof(xecfg
));
2139 diff_words_fill(&diff_words
->minus
, &minus
, diff_words
->word_regex
);
2140 diff_words_fill(&diff_words
->plus
, &plus
, diff_words
->word_regex
);
2142 /* as only the hunk header will be parsed, we need a 0-context */
2144 if (xdi_diff_outf(&minus
, &plus
, fn_out_diff_words_aux
, NULL
,
2145 diff_words
, &xpp
, &xecfg
))
2146 die("unable to generate word diff");
2149 if (diff_words
->current_plus
!= diff_words
->plus
.text
.ptr
+
2150 diff_words
->plus
.text
.size
) {
2151 if (color_words_output_graph_prefix(diff_words
))
2152 emit_diff_symbol(diff_words
->opt
, DIFF_SYMBOL_WORD_DIFF
,
2153 line_prefix
, strlen(line_prefix
), 0);
2154 fn_out_diff_words_write_helper(diff_words
->opt
,
2155 &style
->ctx
, style
->newline
,
2156 diff_words
->plus
.text
.ptr
+ diff_words
->plus
.text
.size
2157 - diff_words
->current_plus
, diff_words
->current_plus
);
2159 diff_words
->minus
.text
.size
= diff_words
->plus
.text
.size
= 0;
2162 /* In "color-words" mode, show word-diff of words accumulated in the buffer */
2163 static void diff_words_flush(struct emit_callback
*ecbdata
)
2165 struct diff_options
*wo
= ecbdata
->diff_words
->opt
;
2167 if (ecbdata
->diff_words
->minus
.text
.size
||
2168 ecbdata
->diff_words
->plus
.text
.size
)
2169 diff_words_show(ecbdata
->diff_words
);
2171 if (wo
->emitted_symbols
) {
2172 struct diff_options
*o
= ecbdata
->opt
;
2173 struct emitted_diff_symbols
*wol
= wo
->emitted_symbols
;
2178 * Instead of appending each, concat all words to a line?
2180 for (i
= 0; i
< wol
->nr
; i
++)
2181 append_emitted_diff_symbol(o
, &wol
->buf
[i
]);
2183 for (i
= 0; i
< wol
->nr
; i
++)
2184 free((void *)wol
->buf
[i
].line
);
2190 static void diff_filespec_load_driver(struct diff_filespec
*one
,
2191 struct index_state
*istate
)
2193 /* Use already-loaded driver */
2197 if (S_ISREG(one
->mode
))
2198 one
->driver
= userdiff_find_by_path(istate
, one
->path
);
2200 /* Fallback to default settings */
2202 one
->driver
= userdiff_find_by_name("default");
2205 static const char *userdiff_word_regex(struct diff_filespec
*one
,
2206 struct index_state
*istate
)
2208 diff_filespec_load_driver(one
, istate
);
2209 return one
->driver
->word_regex
;
2212 static void init_diff_words_data(struct emit_callback
*ecbdata
,
2213 struct diff_options
*orig_opts
,
2214 struct diff_filespec
*one
,
2215 struct diff_filespec
*two
)
2218 struct diff_options
*o
= xmalloc(sizeof(struct diff_options
));
2219 memcpy(o
, orig_opts
, sizeof(struct diff_options
));
2221 ecbdata
->diff_words
=
2222 xcalloc(1, sizeof(struct diff_words_data
));
2223 ecbdata
->diff_words
->type
= o
->word_diff
;
2224 ecbdata
->diff_words
->opt
= o
;
2226 if (orig_opts
->emitted_symbols
)
2227 o
->emitted_symbols
=
2228 xcalloc(1, sizeof(struct emitted_diff_symbols
));
2231 o
->word_regex
= userdiff_word_regex(one
, o
->repo
->index
);
2233 o
->word_regex
= userdiff_word_regex(two
, o
->repo
->index
);
2235 o
->word_regex
= diff_word_regex_cfg
;
2236 if (o
->word_regex
) {
2237 ecbdata
->diff_words
->word_regex
= (regex_t
*)
2238 xmalloc(sizeof(regex_t
));
2239 if (regcomp(ecbdata
->diff_words
->word_regex
,
2241 REG_EXTENDED
| REG_NEWLINE
))
2242 die("invalid regular expression: %s",
2245 for (i
= 0; i
< ARRAY_SIZE(diff_words_styles
); i
++) {
2246 if (o
->word_diff
== diff_words_styles
[i
].type
) {
2247 ecbdata
->diff_words
->style
=
2248 &diff_words_styles
[i
];
2252 if (want_color(o
->use_color
)) {
2253 struct diff_words_style
*st
= ecbdata
->diff_words
->style
;
2254 st
->old_word
.color
= diff_get_color_opt(o
, DIFF_FILE_OLD
);
2255 st
->new_word
.color
= diff_get_color_opt(o
, DIFF_FILE_NEW
);
2256 st
->ctx
.color
= diff_get_color_opt(o
, DIFF_CONTEXT
);
2260 static void free_diff_words_data(struct emit_callback
*ecbdata
)
2262 if (ecbdata
->diff_words
) {
2263 diff_words_flush(ecbdata
);
2264 free (ecbdata
->diff_words
->opt
->emitted_symbols
);
2265 free (ecbdata
->diff_words
->opt
);
2266 free (ecbdata
->diff_words
->minus
.text
.ptr
);
2267 free (ecbdata
->diff_words
->minus
.orig
);
2268 free (ecbdata
->diff_words
->plus
.text
.ptr
);
2269 free (ecbdata
->diff_words
->plus
.orig
);
2270 if (ecbdata
->diff_words
->word_regex
) {
2271 regfree(ecbdata
->diff_words
->word_regex
);
2272 free(ecbdata
->diff_words
->word_regex
);
2274 FREE_AND_NULL(ecbdata
->diff_words
);
2278 const char *diff_get_color(int diff_use_color
, enum color_diff ix
)
2280 if (want_color(diff_use_color
))
2281 return diff_colors
[ix
];
2285 const char *diff_line_prefix(struct diff_options
*opt
)
2287 struct strbuf
*msgbuf
;
2288 if (!opt
->output_prefix
)
2291 msgbuf
= opt
->output_prefix(opt
, opt
->output_prefix_data
);
2295 static unsigned long sane_truncate_line(char *line
, unsigned long len
)
2298 unsigned long allot
;
2304 (void) utf8_width(&cp
, &l
);
2306 break; /* truncated in the middle? */
2311 static void find_lno(const char *line
, struct emit_callback
*ecbdata
)
2314 ecbdata
->lno_in_preimage
= 0;
2315 ecbdata
->lno_in_postimage
= 0;
2316 p
= strchr(line
, '-');
2318 return; /* cannot happen */
2319 ecbdata
->lno_in_preimage
= strtol(p
+ 1, NULL
, 10);
2322 return; /* cannot happen */
2323 ecbdata
->lno_in_postimage
= strtol(p
+ 1, NULL
, 10);
2326 static void fn_out_consume(void *priv
, char *line
, unsigned long len
)
2328 struct emit_callback
*ecbdata
= priv
;
2329 struct diff_options
*o
= ecbdata
->opt
;
2331 o
->found_changes
= 1;
2333 if (ecbdata
->header
) {
2334 emit_diff_symbol(o
, DIFF_SYMBOL_HEADER
,
2335 ecbdata
->header
->buf
, ecbdata
->header
->len
, 0);
2336 strbuf_reset(ecbdata
->header
);
2337 ecbdata
->header
= NULL
;
2340 if (ecbdata
->label_path
[0]) {
2341 emit_diff_symbol(o
, DIFF_SYMBOL_FILEPAIR_MINUS
,
2342 ecbdata
->label_path
[0],
2343 strlen(ecbdata
->label_path
[0]), 0);
2344 emit_diff_symbol(o
, DIFF_SYMBOL_FILEPAIR_PLUS
,
2345 ecbdata
->label_path
[1],
2346 strlen(ecbdata
->label_path
[1]), 0);
2347 ecbdata
->label_path
[0] = ecbdata
->label_path
[1] = NULL
;
2350 if (diff_suppress_blank_empty
2351 && len
== 2 && line
[0] == ' ' && line
[1] == '\n') {
2356 if (line
[0] == '@') {
2357 if (ecbdata
->diff_words
)
2358 diff_words_flush(ecbdata
);
2359 len
= sane_truncate_line(line
, len
);
2360 find_lno(line
, ecbdata
);
2361 emit_hunk_header(ecbdata
, line
, len
);
2365 if (ecbdata
->diff_words
) {
2366 enum diff_symbol s
=
2367 ecbdata
->diff_words
->type
== DIFF_WORDS_PORCELAIN ?
2368 DIFF_SYMBOL_WORDS_PORCELAIN
: DIFF_SYMBOL_WORDS
;
2369 if (line
[0] == '-') {
2370 diff_words_append(line
, len
,
2371 &ecbdata
->diff_words
->minus
);
2373 } else if (line
[0] == '+') {
2374 diff_words_append(line
, len
,
2375 &ecbdata
->diff_words
->plus
);
2377 } else if (starts_with(line
, "\\ ")) {
2379 * Eat the "no newline at eof" marker as if we
2380 * saw a "+" or "-" line with nothing on it,
2381 * and return without diff_words_flush() to
2382 * defer processing. If this is the end of
2383 * preimage, more "+" lines may come after it.
2387 diff_words_flush(ecbdata
);
2388 emit_diff_symbol(o
, s
, line
, len
, 0);
2394 ecbdata
->lno_in_postimage
++;
2395 emit_add_line(ecbdata
, line
+ 1, len
- 1);
2398 ecbdata
->lno_in_preimage
++;
2399 emit_del_line(ecbdata
, line
+ 1, len
- 1);
2402 ecbdata
->lno_in_postimage
++;
2403 ecbdata
->lno_in_preimage
++;
2404 emit_context_line(ecbdata
, line
+ 1, len
- 1);
2407 /* incomplete line at the end */
2408 ecbdata
->lno_in_preimage
++;
2409 emit_diff_symbol(o
, DIFF_SYMBOL_CONTEXT_INCOMPLETE
,
2415 static void pprint_rename(struct strbuf
*name
, const char *a
, const char *b
)
2417 const char *old_name
= a
;
2418 const char *new_name
= b
;
2419 int pfx_length
, sfx_length
;
2420 int pfx_adjust_for_slash
;
2421 int len_a
= strlen(a
);
2422 int len_b
= strlen(b
);
2423 int a_midlen
, b_midlen
;
2424 int qlen_a
= quote_c_style(a
, NULL
, NULL
, 0);
2425 int qlen_b
= quote_c_style(b
, NULL
, NULL
, 0);
2427 if (qlen_a
|| qlen_b
) {
2428 quote_c_style(a
, name
, NULL
, 0);
2429 strbuf_addstr(name
, " => ");
2430 quote_c_style(b
, name
, NULL
, 0);
2434 /* Find common prefix */
2436 while (*old_name
&& *new_name
&& *old_name
== *new_name
) {
2437 if (*old_name
== '/')
2438 pfx_length
= old_name
- a
+ 1;
2443 /* Find common suffix */
2444 old_name
= a
+ len_a
;
2445 new_name
= b
+ len_b
;
2448 * If there is a common prefix, it must end in a slash. In
2449 * that case we let this loop run 1 into the prefix to see the
2452 * If there is no common prefix, we cannot do this as it would
2453 * underrun the input strings.
2455 pfx_adjust_for_slash
= (pfx_length ?
1 : 0);
2456 while (a
+ pfx_length
- pfx_adjust_for_slash
<= old_name
&&
2457 b
+ pfx_length
- pfx_adjust_for_slash
<= new_name
&&
2458 *old_name
== *new_name
) {
2459 if (*old_name
== '/')
2460 sfx_length
= len_a
- (old_name
- a
);
2466 * pfx{mid-a => mid-b}sfx
2467 * {pfx-a => pfx-b}sfx
2468 * pfx{sfx-a => sfx-b}
2471 a_midlen
= len_a
- pfx_length
- sfx_length
;
2472 b_midlen
= len_b
- pfx_length
- sfx_length
;
2478 strbuf_grow(name
, pfx_length
+ a_midlen
+ b_midlen
+ sfx_length
+ 7);
2479 if (pfx_length
+ sfx_length
) {
2480 strbuf_add(name
, a
, pfx_length
);
2481 strbuf_addch(name
, '{');
2483 strbuf_add(name
, a
+ pfx_length
, a_midlen
);
2484 strbuf_addstr(name
, " => ");
2485 strbuf_add(name
, b
+ pfx_length
, b_midlen
);
2486 if (pfx_length
+ sfx_length
) {
2487 strbuf_addch(name
, '}');
2488 strbuf_add(name
, a
+ len_a
- sfx_length
, sfx_length
);
2495 struct diffstat_file
{
2499 const char *comments
;
2500 unsigned is_unmerged
:1;
2501 unsigned is_binary
:1;
2502 unsigned is_renamed
:1;
2503 unsigned is_interesting
:1;
2504 uintmax_t added
, deleted
;
2508 static struct diffstat_file
*diffstat_add(struct diffstat_t
*diffstat
,
2512 struct diffstat_file
*x
;
2513 x
= xcalloc(1, sizeof(*x
));
2514 ALLOC_GROW(diffstat
->files
, diffstat
->nr
+ 1, diffstat
->alloc
);
2515 diffstat
->files
[diffstat
->nr
++] = x
;
2517 x
->from_name
= xstrdup(name_a
);
2518 x
->name
= xstrdup(name_b
);
2522 x
->from_name
= NULL
;
2523 x
->name
= xstrdup(name_a
);
2528 static void diffstat_consume(void *priv
, char *line
, unsigned long len
)
2530 struct diffstat_t
*diffstat
= priv
;
2531 struct diffstat_file
*x
= diffstat
->files
[diffstat
->nr
- 1];
2535 else if (line
[0] == '-')
2539 const char mime_boundary_leader
[] = "------------";
2541 static int scale_linear(int it
, int width
, int max_change
)
2546 * make sure that at least one '-' or '+' is printed if
2547 * there is any change to this path. The easiest way is to
2548 * scale linearly as if the alloted width is one column shorter
2549 * than it is, and then add 1 to the result.
2551 return 1 + (it
* (width
- 1) / max_change
);
2554 static void show_graph(struct strbuf
*out
, char ch
, int cnt
,
2555 const char *set
, const char *reset
)
2559 strbuf_addstr(out
, set
);
2560 strbuf_addchars(out
, ch
, cnt
);
2561 strbuf_addstr(out
, reset
);
2564 static void fill_print_name(struct diffstat_file
*file
)
2566 struct strbuf pname
= STRBUF_INIT
;
2568 if (file
->print_name
)
2571 if (file
->is_renamed
)
2572 pprint_rename(&pname
, file
->from_name
, file
->name
);
2574 quote_c_style(file
->name
, &pname
, NULL
, 0);
2577 strbuf_addf(&pname
, " (%s)", file
->comments
);
2579 file
->print_name
= strbuf_detach(&pname
, NULL
);
2582 static void print_stat_summary_inserts_deletes(struct diff_options
*options
,
2583 int files
, int insertions
, int deletions
)
2585 struct strbuf sb
= STRBUF_INIT
;
2588 assert(insertions
== 0 && deletions
== 0);
2589 emit_diff_symbol(options
, DIFF_SYMBOL_STATS_SUMMARY_NO_FILES
,
2595 (files
== 1) ?
" %d file changed" : " %d files changed",
2599 * For binary diff, the caller may want to print "x files
2600 * changed" with insertions == 0 && deletions == 0.
2602 * Not omitting "0 insertions(+), 0 deletions(-)" in this case
2603 * is probably less confusing (i.e skip over "2 files changed
2604 * but nothing about added/removed lines? Is this a bug in Git?").
2606 if (insertions
|| deletions
== 0) {
2608 (insertions
== 1) ?
", %d insertion(+)" : ", %d insertions(+)",
2612 if (deletions
|| insertions
== 0) {
2614 (deletions
== 1) ?
", %d deletion(-)" : ", %d deletions(-)",
2617 strbuf_addch(&sb
, '\n');
2618 emit_diff_symbol(options
, DIFF_SYMBOL_STATS_SUMMARY_INSERTS_DELETES
,
2620 strbuf_release(&sb
);
2623 void print_stat_summary(FILE *fp
, int files
,
2624 int insertions
, int deletions
)
2626 struct diff_options o
;
2627 memset(&o
, 0, sizeof(o
));
2630 print_stat_summary_inserts_deletes(&o
, files
, insertions
, deletions
);
2633 static void show_stats(struct diffstat_t
*data
, struct diff_options
*options
)
2635 int i
, len
, add
, del
, adds
= 0, dels
= 0;
2636 uintmax_t max_change
= 0, max_len
= 0;
2637 int total_files
= data
->nr
, count
;
2638 int width
, name_width
, graph_width
, number_width
= 0, bin_width
= 0;
2639 const char *reset
, *add_c
, *del_c
;
2640 int extra_shown
= 0;
2641 const char *line_prefix
= diff_line_prefix(options
);
2642 struct strbuf out
= STRBUF_INIT
;
2647 count
= options
->stat_count ? options
->stat_count
: data
->nr
;
2649 reset
= diff_get_color_opt(options
, DIFF_RESET
);
2650 add_c
= diff_get_color_opt(options
, DIFF_FILE_NEW
);
2651 del_c
= diff_get_color_opt(options
, DIFF_FILE_OLD
);
2654 * Find the longest filename and max number of changes
2656 for (i
= 0; (i
< count
) && (i
< data
->nr
); i
++) {
2657 struct diffstat_file
*file
= data
->files
[i
];
2658 uintmax_t change
= file
->added
+ file
->deleted
;
2660 if (!file
->is_interesting
&& (change
== 0)) {
2661 count
++; /* not shown == room for one more */
2664 fill_print_name(file
);
2665 len
= strlen(file
->print_name
);
2669 if (file
->is_unmerged
) {
2670 /* "Unmerged" is 8 characters */
2671 bin_width
= bin_width
< 8 ?
8 : bin_width
;
2674 if (file
->is_binary
) {
2675 /* "Bin XXX -> YYY bytes" */
2676 int w
= 14 + decimal_width(file
->added
)
2677 + decimal_width(file
->deleted
);
2678 bin_width
= bin_width
< w ? w
: bin_width
;
2679 /* Display change counts aligned with "Bin" */
2684 if (max_change
< change
)
2685 max_change
= change
;
2687 count
= i
; /* where we can stop scanning in data->files[] */
2690 * We have width = stat_width or term_columns() columns total.
2691 * We want a maximum of min(max_len, stat_name_width) for the name part.
2692 * We want a maximum of min(max_change, stat_graph_width) for the +- part.
2693 * We also need 1 for " " and 4 + decimal_width(max_change)
2694 * for " | NNNN " and one the empty column at the end, altogether
2695 * 6 + decimal_width(max_change).
2697 * If there's not enough space, we will use the smaller of
2698 * stat_name_width (if set) and 5/8*width for the filename,
2699 * and the rest for constant elements + graph part, but no more
2700 * than stat_graph_width for the graph part.
2701 * (5/8 gives 50 for filename and 30 for the constant parts + graph
2702 * for the standard terminal size).
2704 * In other words: stat_width limits the maximum width, and
2705 * stat_name_width fixes the maximum width of the filename,
2706 * and is also used to divide available columns if there
2709 * Binary files are displayed with "Bin XXX -> YYY bytes"
2710 * instead of the change count and graph. This part is treated
2711 * similarly to the graph part, except that it is not
2712 * "scaled". If total width is too small to accommodate the
2713 * guaranteed minimum width of the filename part and the
2714 * separators and this message, this message will "overflow"
2715 * making the line longer than the maximum width.
2718 if (options
->stat_width
== -1)
2719 width
= term_columns() - strlen(line_prefix
);
2721 width
= options
->stat_width ? options
->stat_width
: 80;
2722 number_width
= decimal_width(max_change
) > number_width ?
2723 decimal_width(max_change
) : number_width
;
2725 if (options
->stat_graph_width
== -1)
2726 options
->stat_graph_width
= diff_stat_graph_width
;
2729 * Guarantee 3/8*16==6 for the graph part
2730 * and 5/8*16==10 for the filename part
2732 if (width
< 16 + 6 + number_width
)
2733 width
= 16 + 6 + number_width
;
2736 * First assign sizes that are wanted, ignoring available width.
2737 * strlen("Bin XXX -> YYY bytes") == bin_width, and the part
2738 * starting from "XXX" should fit in graph_width.
2740 graph_width
= max_change
+ 4 > bin_width ? max_change
: bin_width
- 4;
2741 if (options
->stat_graph_width
&&
2742 options
->stat_graph_width
< graph_width
)
2743 graph_width
= options
->stat_graph_width
;
2745 name_width
= (options
->stat_name_width
> 0 &&
2746 options
->stat_name_width
< max_len
) ?
2747 options
->stat_name_width
: max_len
;
2750 * Adjust adjustable widths not to exceed maximum width
2752 if (name_width
+ number_width
+ 6 + graph_width
> width
) {
2753 if (graph_width
> width
* 3/8 - number_width
- 6) {
2754 graph_width
= width
* 3/8 - number_width
- 6;
2755 if (graph_width
< 6)
2759 if (options
->stat_graph_width
&&
2760 graph_width
> options
->stat_graph_width
)
2761 graph_width
= options
->stat_graph_width
;
2762 if (name_width
> width
- number_width
- 6 - graph_width
)
2763 name_width
= width
- number_width
- 6 - graph_width
;
2765 graph_width
= width
- number_width
- 6 - name_width
;
2769 * From here name_width is the width of the name area,
2770 * and graph_width is the width of the graph area.
2771 * max_change is used to scale graph properly.
2773 for (i
= 0; i
< count
; i
++) {
2774 const char *prefix
= "";
2775 struct diffstat_file
*file
= data
->files
[i
];
2776 char *name
= file
->print_name
;
2777 uintmax_t added
= file
->added
;
2778 uintmax_t deleted
= file
->deleted
;
2781 if (!file
->is_interesting
&& (added
+ deleted
== 0))
2785 * "scale" the filename
2788 name_len
= strlen(name
);
2789 if (name_width
< name_len
) {
2793 name
+= name_len
- len
;
2794 slash
= strchr(name
, '/');
2799 if (file
->is_binary
) {
2800 strbuf_addf(&out
, " %s%-*s |", prefix
, len
, name
);
2801 strbuf_addf(&out
, " %*s", number_width
, "Bin");
2802 if (!added
&& !deleted
) {
2803 strbuf_addch(&out
, '\n');
2804 emit_diff_symbol(options
, DIFF_SYMBOL_STATS_LINE
,
2805 out
.buf
, out
.len
, 0);
2809 strbuf_addf(&out
, " %s%"PRIuMAX
"%s",
2810 del_c
, deleted
, reset
);
2811 strbuf_addstr(&out
, " -> ");
2812 strbuf_addf(&out
, "%s%"PRIuMAX
"%s",
2813 add_c
, added
, reset
);
2814 strbuf_addstr(&out
, " bytes\n");
2815 emit_diff_symbol(options
, DIFF_SYMBOL_STATS_LINE
,
2816 out
.buf
, out
.len
, 0);
2820 else if (file
->is_unmerged
) {
2821 strbuf_addf(&out
, " %s%-*s |", prefix
, len
, name
);
2822 strbuf_addstr(&out
, " Unmerged\n");
2823 emit_diff_symbol(options
, DIFF_SYMBOL_STATS_LINE
,
2824 out
.buf
, out
.len
, 0);
2830 * scale the add/delete
2835 if (graph_width
<= max_change
) {
2836 int total
= scale_linear(add
+ del
, graph_width
, max_change
);
2837 if (total
< 2 && add
&& del
)
2838 /* width >= 2 due to the sanity check */
2841 add
= scale_linear(add
, graph_width
, max_change
);
2844 del
= scale_linear(del
, graph_width
, max_change
);
2848 strbuf_addf(&out
, " %s%-*s |", prefix
, len
, name
);
2849 strbuf_addf(&out
, " %*"PRIuMAX
"%s",
2850 number_width
, added
+ deleted
,
2851 added
+ deleted ?
" " : "");
2852 show_graph(&out
, '+', add
, add_c
, reset
);
2853 show_graph(&out
, '-', del
, del_c
, reset
);
2854 strbuf_addch(&out
, '\n');
2855 emit_diff_symbol(options
, DIFF_SYMBOL_STATS_LINE
,
2856 out
.buf
, out
.len
, 0);
2860 for (i
= 0; i
< data
->nr
; i
++) {
2861 struct diffstat_file
*file
= data
->files
[i
];
2862 uintmax_t added
= file
->added
;
2863 uintmax_t deleted
= file
->deleted
;
2865 if (file
->is_unmerged
||
2866 (!file
->is_interesting
&& (added
+ deleted
== 0))) {
2871 if (!file
->is_binary
) {
2878 emit_diff_symbol(options
,
2879 DIFF_SYMBOL_STATS_SUMMARY_ABBREV
,
2884 print_stat_summary_inserts_deletes(options
, total_files
, adds
, dels
);
2885 strbuf_release(&out
);
2888 static void show_shortstats(struct diffstat_t
*data
, struct diff_options
*options
)
2890 int i
, adds
= 0, dels
= 0, total_files
= data
->nr
;
2895 for (i
= 0; i
< data
->nr
; i
++) {
2896 int added
= data
->files
[i
]->added
;
2897 int deleted
= data
->files
[i
]->deleted
;
2899 if (data
->files
[i
]->is_unmerged
||
2900 (!data
->files
[i
]->is_interesting
&& (added
+ deleted
== 0))) {
2902 } else if (!data
->files
[i
]->is_binary
) { /* don't count bytes */
2907 print_stat_summary_inserts_deletes(options
, total_files
, adds
, dels
);
2910 static void show_numstat(struct diffstat_t
*data
, struct diff_options
*options
)
2917 for (i
= 0; i
< data
->nr
; i
++) {
2918 struct diffstat_file
*file
= data
->files
[i
];
2920 fprintf(options
->file
, "%s", diff_line_prefix(options
));
2922 if (file
->is_binary
)
2923 fprintf(options
->file
, "-\t-\t");
2925 fprintf(options
->file
,
2926 "%"PRIuMAX
"\t%"PRIuMAX
"\t",
2927 file
->added
, file
->deleted
);
2928 if (options
->line_termination
) {
2929 fill_print_name(file
);
2930 if (!file
->is_renamed
)
2931 write_name_quoted(file
->name
, options
->file
,
2932 options
->line_termination
);
2934 fputs(file
->print_name
, options
->file
);
2935 putc(options
->line_termination
, options
->file
);
2938 if (file
->is_renamed
) {
2939 putc('\0', options
->file
);
2940 write_name_quoted(file
->from_name
, options
->file
, '\0');
2942 write_name_quoted(file
->name
, options
->file
, '\0');
2947 struct dirstat_file
{
2949 unsigned long changed
;
2952 struct dirstat_dir
{
2953 struct dirstat_file
*files
;
2954 int alloc
, nr
, permille
, cumulative
;
2957 static long gather_dirstat(struct diff_options
*opt
, struct dirstat_dir
*dir
,
2958 unsigned long changed
, const char *base
, int baselen
)
2960 unsigned long sum_changes
= 0;
2961 unsigned int sources
= 0;
2962 const char *line_prefix
= diff_line_prefix(opt
);
2965 struct dirstat_file
*f
= dir
->files
;
2966 int namelen
= strlen(f
->name
);
2967 unsigned long changes
;
2970 if (namelen
< baselen
)
2972 if (memcmp(f
->name
, base
, baselen
))
2974 slash
= strchr(f
->name
+ baselen
, '/');
2976 int newbaselen
= slash
+ 1 - f
->name
;
2977 changes
= gather_dirstat(opt
, dir
, changed
, f
->name
, newbaselen
);
2980 changes
= f
->changed
;
2985 sum_changes
+= changes
;
2989 * We don't report dirstat's for
2991 * - or cases where everything came from a single directory
2992 * under this directory (sources == 1).
2994 if (baselen
&& sources
!= 1) {
2996 int permille
= sum_changes
* 1000 / changed
;
2997 if (permille
>= dir
->permille
) {
2998 fprintf(opt
->file
, "%s%4d.%01d%% %.*s\n", line_prefix
,
2999 permille
/ 10, permille
% 10, baselen
, base
);
3000 if (!dir
->cumulative
)
3008 static int dirstat_compare(const void *_a
, const void *_b
)
3010 const struct dirstat_file
*a
= _a
;
3011 const struct dirstat_file
*b
= _b
;
3012 return strcmp(a
->name
, b
->name
);
3015 static void show_dirstat(struct diff_options
*options
)
3018 unsigned long changed
;
3019 struct dirstat_dir dir
;
3020 struct diff_queue_struct
*q
= &diff_queued_diff
;
3025 dir
.permille
= options
->dirstat_permille
;
3026 dir
.cumulative
= options
->flags
.dirstat_cumulative
;
3029 for (i
= 0; i
< q
->nr
; i
++) {
3030 struct diff_filepair
*p
= q
->queue
[i
];
3032 unsigned long copied
, added
, damage
;
3034 name
= p
->two
->path ? p
->two
->path
: p
->one
->path
;
3036 if (p
->one
->oid_valid
&& p
->two
->oid_valid
&&
3037 oideq(&p
->one
->oid
, &p
->two
->oid
)) {
3039 * The SHA1 has not changed, so pre-/post-content is
3040 * identical. We can therefore skip looking at the
3041 * file contents altogether.
3047 if (options
->flags
.dirstat_by_file
) {
3049 * In --dirstat-by-file mode, we don't really need to
3050 * look at the actual file contents at all.
3051 * The fact that the SHA1 changed is enough for us to
3052 * add this file to the list of results
3053 * (with each file contributing equal damage).
3059 if (DIFF_FILE_VALID(p
->one
) && DIFF_FILE_VALID(p
->two
)) {
3060 diff_populate_filespec(options
->repo
, p
->one
, 0);
3061 diff_populate_filespec(options
->repo
, p
->two
, 0);
3062 diffcore_count_changes(options
->repo
,
3063 p
->one
, p
->two
, NULL
, NULL
,
3065 diff_free_filespec_data(p
->one
);
3066 diff_free_filespec_data(p
->two
);
3067 } else if (DIFF_FILE_VALID(p
->one
)) {
3068 diff_populate_filespec(options
->repo
, p
->one
, CHECK_SIZE_ONLY
);
3070 diff_free_filespec_data(p
->one
);
3071 } else if (DIFF_FILE_VALID(p
->two
)) {
3072 diff_populate_filespec(options
->repo
, p
->two
, CHECK_SIZE_ONLY
);
3074 added
= p
->two
->size
;
3075 diff_free_filespec_data(p
->two
);
3080 * Original minus copied is the removed material,
3081 * added is the new material. They are both damages
3082 * made to the preimage.
3083 * If the resulting damage is zero, we know that
3084 * diffcore_count_changes() considers the two entries to
3085 * be identical, but since the oid changed, we
3086 * know that there must have been _some_ kind of change,
3087 * so we force all entries to have damage > 0.
3089 damage
= (p
->one
->size
- copied
) + added
;
3094 ALLOC_GROW(dir
.files
, dir
.nr
+ 1, dir
.alloc
);
3095 dir
.files
[dir
.nr
].name
= name
;
3096 dir
.files
[dir
.nr
].changed
= damage
;
3101 /* This can happen even with many files, if everything was renames */
3105 /* Show all directories with more than x% of the changes */
3106 QSORT(dir
.files
, dir
.nr
, dirstat_compare
);
3107 gather_dirstat(options
, &dir
, changed
, "", 0);
3110 static void show_dirstat_by_line(struct diffstat_t
*data
, struct diff_options
*options
)
3113 unsigned long changed
;
3114 struct dirstat_dir dir
;
3122 dir
.permille
= options
->dirstat_permille
;
3123 dir
.cumulative
= options
->flags
.dirstat_cumulative
;
3126 for (i
= 0; i
< data
->nr
; i
++) {
3127 struct diffstat_file
*file
= data
->files
[i
];
3128 unsigned long damage
= file
->added
+ file
->deleted
;
3129 if (file
->is_binary
)
3131 * binary files counts bytes, not lines. Must find some
3132 * way to normalize binary bytes vs. textual lines.
3133 * The following heuristic assumes that there are 64
3135 * This is stupid and ugly, but very cheap...
3137 damage
= DIV_ROUND_UP(damage
, 64);
3138 ALLOC_GROW(dir
.files
, dir
.nr
+ 1, dir
.alloc
);
3139 dir
.files
[dir
.nr
].name
= file
->name
;
3140 dir
.files
[dir
.nr
].changed
= damage
;
3145 /* This can happen even with many files, if everything was renames */
3149 /* Show all directories with more than x% of the changes */
3150 QSORT(dir
.files
, dir
.nr
, dirstat_compare
);
3151 gather_dirstat(options
, &dir
, changed
, "", 0);
3154 static void free_diffstat_info(struct diffstat_t
*diffstat
)
3157 for (i
= 0; i
< diffstat
->nr
; i
++) {
3158 struct diffstat_file
*f
= diffstat
->files
[i
];
3159 free(f
->print_name
);
3164 free(diffstat
->files
);
3167 struct checkdiff_t
{
3168 const char *filename
;
3170 int conflict_marker_size
;
3171 struct diff_options
*o
;
3176 static int is_conflict_marker(const char *line
, int marker_size
, unsigned long len
)
3181 if (len
< marker_size
+ 1)
3183 firstchar
= line
[0];
3184 switch (firstchar
) {
3185 case '=': case '>': case '<': case '|':
3190 for (cnt
= 1; cnt
< marker_size
; cnt
++)
3191 if (line
[cnt
] != firstchar
)
3193 /* line[1] thru line[marker_size-1] are same as firstchar */
3194 if (len
< marker_size
+ 1 || !isspace(line
[marker_size
]))
3199 static void checkdiff_consume_hunk(void *priv
,
3200 long ob
, long on
, long nb
, long nn
,
3201 const char *func
, long funclen
)
3204 struct checkdiff_t
*data
= priv
;
3205 data
->lineno
= nb
- 1;
3208 static void checkdiff_consume(void *priv
, char *line
, unsigned long len
)
3210 struct checkdiff_t
*data
= priv
;
3211 int marker_size
= data
->conflict_marker_size
;
3212 const char *ws
= diff_get_color(data
->o
->use_color
, DIFF_WHITESPACE
);
3213 const char *reset
= diff_get_color(data
->o
->use_color
, DIFF_RESET
);
3214 const char *set
= diff_get_color(data
->o
->use_color
, DIFF_FILE_NEW
);
3216 const char *line_prefix
;
3219 line_prefix
= diff_line_prefix(data
->o
);
3221 if (line
[0] == '+') {
3224 if (is_conflict_marker(line
+ 1, marker_size
, len
- 1)) {
3226 fprintf(data
->o
->file
,
3227 "%s%s:%d: leftover conflict marker\n",
3228 line_prefix
, data
->filename
, data
->lineno
);
3230 bad
= ws_check(line
+ 1, len
- 1, data
->ws_rule
);
3233 data
->status
|= bad
;
3234 err
= whitespace_error_string(bad
);
3235 fprintf(data
->o
->file
, "%s%s:%d: %s.\n",
3236 line_prefix
, data
->filename
, data
->lineno
, err
);
3238 emit_line(data
->o
, set
, reset
, line
, 1);
3239 ws_check_emit(line
+ 1, len
- 1, data
->ws_rule
,
3240 data
->o
->file
, set
, reset
, ws
);
3241 } else if (line
[0] == ' ') {
3246 static unsigned char *deflate_it(char *data
,
3248 unsigned long *result_size
)
3251 unsigned char *deflated
;
3254 git_deflate_init(&stream
, zlib_compression_level
);
3255 bound
= git_deflate_bound(&stream
, size
);
3256 deflated
= xmalloc(bound
);
3257 stream
.next_out
= deflated
;
3258 stream
.avail_out
= bound
;
3260 stream
.next_in
= (unsigned char *)data
;
3261 stream
.avail_in
= size
;
3262 while (git_deflate(&stream
, Z_FINISH
) == Z_OK
)
3264 git_deflate_end(&stream
);
3265 *result_size
= stream
.total_out
;
3269 static void emit_binary_diff_body(struct diff_options
*o
,
3270 mmfile_t
*one
, mmfile_t
*two
)
3276 unsigned long orig_size
;
3277 unsigned long delta_size
;
3278 unsigned long deflate_size
;
3279 unsigned long data_size
;
3281 /* We could do deflated delta, or we could do just deflated two,
3282 * whichever is smaller.
3285 deflated
= deflate_it(two
->ptr
, two
->size
, &deflate_size
);
3286 if (one
->size
&& two
->size
) {
3287 delta
= diff_delta(one
->ptr
, one
->size
,
3288 two
->ptr
, two
->size
,
3289 &delta_size
, deflate_size
);
3291 void *to_free
= delta
;
3292 orig_size
= delta_size
;
3293 delta
= deflate_it(delta
, delta_size
, &delta_size
);
3298 if (delta
&& delta_size
< deflate_size
) {
3299 char *s
= xstrfmt("%"PRIuMAX
, (uintmax_t)orig_size
);
3300 emit_diff_symbol(o
, DIFF_SYMBOL_BINARY_DIFF_HEADER_DELTA
,
3305 data_size
= delta_size
;
3307 char *s
= xstrfmt("%lu", two
->size
);
3308 emit_diff_symbol(o
, DIFF_SYMBOL_BINARY_DIFF_HEADER_LITERAL
,
3313 data_size
= deflate_size
;
3316 /* emit data encoded in base85 */
3320 int bytes
= (52 < data_size
) ?
52 : data_size
;
3324 line
[0] = bytes
+ 'A' - 1;
3326 line
[0] = bytes
- 26 + 'a' - 1;
3327 encode_85(line
+ 1, cp
, bytes
);
3328 cp
= (char *) cp
+ bytes
;
3334 emit_diff_symbol(o
, DIFF_SYMBOL_BINARY_DIFF_BODY
,
3337 emit_diff_symbol(o
, DIFF_SYMBOL_BINARY_DIFF_FOOTER
, NULL
, 0, 0);
3341 static void emit_binary_diff(struct diff_options
*o
,
3342 mmfile_t
*one
, mmfile_t
*two
)
3344 emit_diff_symbol(o
, DIFF_SYMBOL_BINARY_DIFF_HEADER
, NULL
, 0, 0);
3345 emit_binary_diff_body(o
, one
, two
);
3346 emit_binary_diff_body(o
, two
, one
);
3349 int diff_filespec_is_binary(struct repository
*r
,
3350 struct diff_filespec
*one
)
3352 if (one
->is_binary
== -1) {
3353 diff_filespec_load_driver(one
, r
->index
);
3354 if (one
->driver
->binary
!= -1)
3355 one
->is_binary
= one
->driver
->binary
;
3357 if (!one
->data
&& DIFF_FILE_VALID(one
))
3358 diff_populate_filespec(r
, one
, CHECK_BINARY
);
3359 if (one
->is_binary
== -1 && one
->data
)
3360 one
->is_binary
= buffer_is_binary(one
->data
,
3362 if (one
->is_binary
== -1)
3366 return one
->is_binary
;
3369 static const struct userdiff_funcname
*
3370 diff_funcname_pattern(struct diff_options
*o
, struct diff_filespec
*one
)
3372 diff_filespec_load_driver(one
, o
->repo
->index
);
3373 return one
->driver
->funcname
.pattern ?
&one
->driver
->funcname
: NULL
;
3376 void diff_set_mnemonic_prefix(struct diff_options
*options
, const char *a
, const char *b
)
3378 if (!options
->a_prefix
)
3379 options
->a_prefix
= a
;
3380 if (!options
->b_prefix
)
3381 options
->b_prefix
= b
;
3384 struct userdiff_driver
*get_textconv(struct repository
*r
,
3385 struct diff_filespec
*one
)
3387 if (!DIFF_FILE_VALID(one
))
3390 diff_filespec_load_driver(one
, r
->index
);
3391 return userdiff_get_textconv(r
, one
->driver
);
3394 static void builtin_diff(const char *name_a
,
3396 struct diff_filespec
*one
,
3397 struct diff_filespec
*two
,
3398 const char *xfrm_msg
,
3399 int must_show_header
,
3400 struct diff_options
*o
,
3401 int complete_rewrite
)
3405 char *a_one
, *b_two
;
3406 const char *meta
= diff_get_color_opt(o
, DIFF_METAINFO
);
3407 const char *reset
= diff_get_color_opt(o
, DIFF_RESET
);
3408 const char *a_prefix
, *b_prefix
;
3409 struct userdiff_driver
*textconv_one
= NULL
;
3410 struct userdiff_driver
*textconv_two
= NULL
;
3411 struct strbuf header
= STRBUF_INIT
;
3412 const char *line_prefix
= diff_line_prefix(o
);
3414 diff_set_mnemonic_prefix(o
, "a/", "b/");
3415 if (o
->flags
.reverse_diff
) {
3416 a_prefix
= o
->b_prefix
;
3417 b_prefix
= o
->a_prefix
;
3419 a_prefix
= o
->a_prefix
;
3420 b_prefix
= o
->b_prefix
;
3423 if (o
->submodule_format
== DIFF_SUBMODULE_LOG
&&
3424 (!one
->mode
|| S_ISGITLINK(one
->mode
)) &&
3425 (!two
->mode
|| S_ISGITLINK(two
->mode
))) {
3426 show_submodule_summary(o
, one
->path ? one
->path
: two
->path
,
3427 &one
->oid
, &two
->oid
,
3428 two
->dirty_submodule
);
3430 } else if (o
->submodule_format
== DIFF_SUBMODULE_INLINE_DIFF
&&
3431 (!one
->mode
|| S_ISGITLINK(one
->mode
)) &&
3432 (!two
->mode
|| S_ISGITLINK(two
->mode
))) {
3433 show_submodule_inline_diff(o
, one
->path ? one
->path
: two
->path
,
3434 &one
->oid
, &two
->oid
,
3435 two
->dirty_submodule
);
3439 if (o
->flags
.allow_textconv
) {
3440 textconv_one
= get_textconv(o
->repo
, one
);
3441 textconv_two
= get_textconv(o
->repo
, two
);
3444 /* Never use a non-valid filename anywhere if at all possible */
3445 name_a
= DIFF_FILE_VALID(one
) ? name_a
: name_b
;
3446 name_b
= DIFF_FILE_VALID(two
) ? name_b
: name_a
;
3448 a_one
= quote_two(a_prefix
, name_a
+ (*name_a
== '/'));
3449 b_two
= quote_two(b_prefix
, name_b
+ (*name_b
== '/'));
3450 lbl
[0] = DIFF_FILE_VALID(one
) ? a_one
: "/dev/null";
3451 lbl
[1] = DIFF_FILE_VALID(two
) ? b_two
: "/dev/null";
3452 strbuf_addf(&header
, "%s%sdiff --git %s %s%s\n", line_prefix
, meta
, a_one
, b_two
, reset
);
3453 if (lbl
[0][0] == '/') {
3455 strbuf_addf(&header
, "%s%snew file mode %06o%s\n", line_prefix
, meta
, two
->mode
, reset
);
3457 strbuf_addstr(&header
, xfrm_msg
);
3458 must_show_header
= 1;
3460 else if (lbl
[1][0] == '/') {
3461 strbuf_addf(&header
, "%s%sdeleted file mode %06o%s\n", line_prefix
, meta
, one
->mode
, reset
);
3463 strbuf_addstr(&header
, xfrm_msg
);
3464 must_show_header
= 1;
3467 if (one
->mode
!= two
->mode
) {
3468 strbuf_addf(&header
, "%s%sold mode %06o%s\n", line_prefix
, meta
, one
->mode
, reset
);
3469 strbuf_addf(&header
, "%s%snew mode %06o%s\n", line_prefix
, meta
, two
->mode
, reset
);
3470 must_show_header
= 1;
3473 strbuf_addstr(&header
, xfrm_msg
);
3476 * we do not run diff between different kind
3479 if ((one
->mode
^ two
->mode
) & S_IFMT
)
3480 goto free_ab_and_return
;
3481 if (complete_rewrite
&&
3482 (textconv_one
|| !diff_filespec_is_binary(o
->repo
, one
)) &&
3483 (textconv_two
|| !diff_filespec_is_binary(o
->repo
, two
))) {
3484 emit_diff_symbol(o
, DIFF_SYMBOL_HEADER
,
3485 header
.buf
, header
.len
, 0);
3486 strbuf_reset(&header
);
3487 emit_rewrite_diff(name_a
, name_b
, one
, two
,
3488 textconv_one
, textconv_two
, o
);
3489 o
->found_changes
= 1;
3490 goto free_ab_and_return
;
3494 if (o
->irreversible_delete
&& lbl
[1][0] == '/') {
3495 emit_diff_symbol(o
, DIFF_SYMBOL_HEADER
, header
.buf
,
3497 strbuf_reset(&header
);
3498 goto free_ab_and_return
;
3499 } else if (!o
->flags
.text
&&
3500 ( (!textconv_one
&& diff_filespec_is_binary(o
->repo
, one
)) ||
3501 (!textconv_two
&& diff_filespec_is_binary(o
->repo
, two
)) )) {
3502 struct strbuf sb
= STRBUF_INIT
;
3503 if (!one
->data
&& !two
->data
&&
3504 S_ISREG(one
->mode
) && S_ISREG(two
->mode
) &&
3506 if (oideq(&one
->oid
, &two
->oid
)) {
3507 if (must_show_header
)
3508 emit_diff_symbol(o
, DIFF_SYMBOL_HEADER
,
3509 header
.buf
, header
.len
,
3511 goto free_ab_and_return
;
3513 emit_diff_symbol(o
, DIFF_SYMBOL_HEADER
,
3514 header
.buf
, header
.len
, 0);
3515 strbuf_addf(&sb
, "%sBinary files %s and %s differ\n",
3516 diff_line_prefix(o
), lbl
[0], lbl
[1]);
3517 emit_diff_symbol(o
, DIFF_SYMBOL_BINARY_FILES
,
3519 strbuf_release(&sb
);
3520 goto free_ab_and_return
;
3522 if (fill_mmfile(o
->repo
, &mf1
, one
) < 0 ||
3523 fill_mmfile(o
->repo
, &mf2
, two
) < 0)
3524 die("unable to read files to diff");
3525 /* Quite common confusing case */
3526 if (mf1
.size
== mf2
.size
&&
3527 !memcmp(mf1
.ptr
, mf2
.ptr
, mf1
.size
)) {
3528 if (must_show_header
)
3529 emit_diff_symbol(o
, DIFF_SYMBOL_HEADER
,
3530 header
.buf
, header
.len
, 0);
3531 goto free_ab_and_return
;
3533 emit_diff_symbol(o
, DIFF_SYMBOL_HEADER
, header
.buf
, header
.len
, 0);
3534 strbuf_reset(&header
);
3535 if (o
->flags
.binary
)
3536 emit_binary_diff(o
, &mf1
, &mf2
);
3538 strbuf_addf(&sb
, "%sBinary files %s and %s differ\n",
3539 diff_line_prefix(o
), lbl
[0], lbl
[1]);
3540 emit_diff_symbol(o
, DIFF_SYMBOL_BINARY_FILES
,
3542 strbuf_release(&sb
);
3544 o
->found_changes
= 1;
3546 /* Crazy xdl interfaces.. */
3547 const char *diffopts
;
3551 struct emit_callback ecbdata
;
3552 const struct userdiff_funcname
*pe
;
3554 if (must_show_header
) {
3555 emit_diff_symbol(o
, DIFF_SYMBOL_HEADER
,
3556 header
.buf
, header
.len
, 0);
3557 strbuf_reset(&header
);
3560 mf1
.size
= fill_textconv(o
->repo
, textconv_one
, one
, &mf1
.ptr
);
3561 mf2
.size
= fill_textconv(o
->repo
, textconv_two
, two
, &mf2
.ptr
);
3563 pe
= diff_funcname_pattern(o
, one
);
3565 pe
= diff_funcname_pattern(o
, two
);
3567 memset(&xpp
, 0, sizeof(xpp
));
3568 memset(&xecfg
, 0, sizeof(xecfg
));
3569 memset(&ecbdata
, 0, sizeof(ecbdata
));
3570 if (o
->flags
.suppress_diff_headers
)
3572 ecbdata
.label_path
= lbl
;
3573 ecbdata
.color_diff
= want_color(o
->use_color
);
3574 ecbdata
.ws_rule
= whitespace_rule(o
->repo
->index
, name_b
);
3575 if (ecbdata
.ws_rule
& WS_BLANK_AT_EOF
)
3576 check_blank_at_eof(&mf1
, &mf2
, &ecbdata
);
3578 if (header
.len
&& !o
->flags
.suppress_diff_headers
)
3579 ecbdata
.header
= &header
;
3580 xpp
.flags
= o
->xdl_opts
;
3581 xpp
.anchors
= o
->anchors
;
3582 xpp
.anchors_nr
= o
->anchors_nr
;
3583 xecfg
.ctxlen
= o
->context
;
3584 xecfg
.interhunkctxlen
= o
->interhunkcontext
;
3585 xecfg
.flags
= XDL_EMIT_FUNCNAMES
;
3586 if (o
->flags
.funccontext
)
3587 xecfg
.flags
|= XDL_EMIT_FUNCCONTEXT
;
3589 xdiff_set_find_func(&xecfg
, pe
->pattern
, pe
->cflags
);
3591 diffopts
= getenv("GIT_DIFF_OPTS");
3594 else if (skip_prefix(diffopts
, "--unified=", &v
))
3595 xecfg
.ctxlen
= strtoul(v
, NULL
, 10);
3596 else if (skip_prefix(diffopts
, "-u", &v
))
3597 xecfg
.ctxlen
= strtoul(v
, NULL
, 10);
3600 init_diff_words_data(&ecbdata
, o
, one
, two
);
3601 if (xdi_diff_outf(&mf1
, &mf2
, NULL
, fn_out_consume
,
3602 &ecbdata
, &xpp
, &xecfg
))
3603 die("unable to generate diff for %s", one
->path
);
3605 free_diff_words_data(&ecbdata
);
3610 xdiff_clear_find_func(&xecfg
);
3614 strbuf_release(&header
);
3615 diff_free_filespec_data(one
);
3616 diff_free_filespec_data(two
);
3622 static char *get_compact_summary(const struct diff_filepair
*p
, int is_renamed
)
3625 if (p
->status
== DIFF_STATUS_ADDED
) {
3626 if (S_ISLNK(p
->two
->mode
))
3628 else if ((p
->two
->mode
& 0777) == 0755)
3632 } else if (p
->status
== DIFF_STATUS_DELETED
)
3635 if (S_ISLNK(p
->one
->mode
) && !S_ISLNK(p
->two
->mode
))
3637 else if (!S_ISLNK(p
->one
->mode
) && S_ISLNK(p
->two
->mode
))
3639 else if ((p
->one
->mode
& 0777) == 0644 &&
3640 (p
->two
->mode
& 0777) == 0755)
3642 else if ((p
->one
->mode
& 0777) == 0755 &&
3643 (p
->two
->mode
& 0777) == 0644)
3648 static void builtin_diffstat(const char *name_a
, const char *name_b
,
3649 struct diff_filespec
*one
,
3650 struct diff_filespec
*two
,
3651 struct diffstat_t
*diffstat
,
3652 struct diff_options
*o
,
3653 struct diff_filepair
*p
)
3656 struct diffstat_file
*data
;
3658 int complete_rewrite
= 0;
3660 if (!DIFF_PAIR_UNMERGED(p
)) {
3661 if (p
->status
== DIFF_STATUS_MODIFIED
&& p
->score
)
3662 complete_rewrite
= 1;
3665 data
= diffstat_add(diffstat
, name_a
, name_b
);
3666 data
->is_interesting
= p
->status
!= DIFF_STATUS_UNKNOWN
;
3667 if (o
->flags
.stat_with_summary
)
3668 data
->comments
= get_compact_summary(p
, data
->is_renamed
);
3671 data
->is_unmerged
= 1;
3675 same_contents
= oideq(&one
->oid
, &two
->oid
);
3677 if (diff_filespec_is_binary(o
->repo
, one
) ||
3678 diff_filespec_is_binary(o
->repo
, two
)) {
3679 data
->is_binary
= 1;
3680 if (same_contents
) {
3684 data
->added
= diff_filespec_size(o
->repo
, two
);
3685 data
->deleted
= diff_filespec_size(o
->repo
, one
);
3689 else if (complete_rewrite
) {
3690 diff_populate_filespec(o
->repo
, one
, 0);
3691 diff_populate_filespec(o
->repo
, two
, 0);
3692 data
->deleted
= count_lines(one
->data
, one
->size
);
3693 data
->added
= count_lines(two
->data
, two
->size
);
3696 else if (!same_contents
) {
3697 /* Crazy xdl interfaces.. */
3701 if (fill_mmfile(o
->repo
, &mf1
, one
) < 0 ||
3702 fill_mmfile(o
->repo
, &mf2
, two
) < 0)
3703 die("unable to read files to diff");
3705 memset(&xpp
, 0, sizeof(xpp
));
3706 memset(&xecfg
, 0, sizeof(xecfg
));
3707 xpp
.flags
= o
->xdl_opts
;
3708 xpp
.anchors
= o
->anchors
;
3709 xpp
.anchors_nr
= o
->anchors_nr
;
3710 xecfg
.ctxlen
= o
->context
;
3711 xecfg
.interhunkctxlen
= o
->interhunkcontext
;
3712 if (xdi_diff_outf(&mf1
, &mf2
, discard_hunk_line
,