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"
23 #include "string-list.h"
27 #include "parse-options.h"
29 #include "promisor-remote.h"
33 #ifdef NO_FAST_WORKING_DIRECTORY
34 #define FAST_WORKING_DIRECTORY 0
36 #define FAST_WORKING_DIRECTORY 1
39 static int diff_detect_rename_default
;
40 static int diff_indent_heuristic
= 1;
41 static int diff_rename_limit_default
= 1000;
42 static int diff_suppress_blank_empty
;
43 static int diff_use_color_default
= -1;
44 static int diff_color_moved_default
;
45 static int diff_color_moved_ws_default
;
46 static int diff_context_default
= 3;
47 static int diff_interhunk_context_default
;
48 static const char *diff_word_regex_cfg
;
49 static const char *external_diff_cmd_cfg
;
50 static const char *diff_order_file_cfg
;
51 int diff_auto_refresh_index
= 1;
52 static int diff_mnemonic_prefix
;
53 static int diff_no_prefix
;
54 static int diff_relative
;
55 static int diff_stat_graph_width
;
56 static int diff_dirstat_permille_default
= 30;
57 static struct diff_options default_diff_options
;
58 static long diff_algorithm
;
59 static unsigned ws_error_highlight_default
= WSEH_NEW
;
61 static char diff_colors
[][COLOR_MAXLEN
] = {
63 GIT_COLOR_NORMAL
, /* CONTEXT */
64 GIT_COLOR_BOLD
, /* METAINFO */
65 GIT_COLOR_CYAN
, /* FRAGINFO */
66 GIT_COLOR_RED
, /* OLD */
67 GIT_COLOR_GREEN
, /* NEW */
68 GIT_COLOR_YELLOW
, /* COMMIT */
69 GIT_COLOR_BG_RED
, /* WHITESPACE */
70 GIT_COLOR_NORMAL
, /* FUNCINFO */
71 GIT_COLOR_BOLD_MAGENTA
, /* OLD_MOVED */
72 GIT_COLOR_BOLD_BLUE
, /* OLD_MOVED ALTERNATIVE */
73 GIT_COLOR_FAINT
, /* OLD_MOVED_DIM */
74 GIT_COLOR_FAINT_ITALIC
, /* OLD_MOVED_ALTERNATIVE_DIM */
75 GIT_COLOR_BOLD_CYAN
, /* NEW_MOVED */
76 GIT_COLOR_BOLD_YELLOW
, /* NEW_MOVED ALTERNATIVE */
77 GIT_COLOR_FAINT
, /* NEW_MOVED_DIM */
78 GIT_COLOR_FAINT_ITALIC
, /* NEW_MOVED_ALTERNATIVE_DIM */
79 GIT_COLOR_FAINT
, /* CONTEXT_DIM */
80 GIT_COLOR_FAINT_RED
, /* OLD_DIM */
81 GIT_COLOR_FAINT_GREEN
, /* NEW_DIM */
82 GIT_COLOR_BOLD
, /* CONTEXT_BOLD */
83 GIT_COLOR_BOLD_RED
, /* OLD_BOLD */
84 GIT_COLOR_BOLD_GREEN
, /* NEW_BOLD */
87 static const char *color_diff_slots
[] = {
88 [DIFF_CONTEXT
] = "context",
89 [DIFF_METAINFO
] = "meta",
90 [DIFF_FRAGINFO
] = "frag",
91 [DIFF_FILE_OLD
] = "old",
92 [DIFF_FILE_NEW
] = "new",
93 [DIFF_COMMIT
] = "commit",
94 [DIFF_WHITESPACE
] = "whitespace",
95 [DIFF_FUNCINFO
] = "func",
96 [DIFF_FILE_OLD_MOVED
] = "oldMoved",
97 [DIFF_FILE_OLD_MOVED_ALT
] = "oldMovedAlternative",
98 [DIFF_FILE_OLD_MOVED_DIM
] = "oldMovedDimmed",
99 [DIFF_FILE_OLD_MOVED_ALT_DIM
] = "oldMovedAlternativeDimmed",
100 [DIFF_FILE_NEW_MOVED
] = "newMoved",
101 [DIFF_FILE_NEW_MOVED_ALT
] = "newMovedAlternative",
102 [DIFF_FILE_NEW_MOVED_DIM
] = "newMovedDimmed",
103 [DIFF_FILE_NEW_MOVED_ALT_DIM
] = "newMovedAlternativeDimmed",
104 [DIFF_CONTEXT_DIM
] = "contextDimmed",
105 [DIFF_FILE_OLD_DIM
] = "oldDimmed",
106 [DIFF_FILE_NEW_DIM
] = "newDimmed",
107 [DIFF_CONTEXT_BOLD
] = "contextBold",
108 [DIFF_FILE_OLD_BOLD
] = "oldBold",
109 [DIFF_FILE_NEW_BOLD
] = "newBold",
112 define_list_config_array_extra(color_diff_slots
, {"plain"});
114 static int parse_diff_color_slot(const char *var
)
116 if (!strcasecmp(var
, "plain"))
118 return LOOKUP_CONFIG(color_diff_slots
, var
);
121 static int parse_dirstat_params(struct diff_options
*options
, const char *params_string
,
122 struct strbuf
*errmsg
)
124 char *params_copy
= xstrdup(params_string
);
125 struct string_list params
= STRING_LIST_INIT_NODUP
;
130 string_list_split_in_place(¶ms
, params_copy
, ',', -1);
131 for (i
= 0; i
< params
.nr
; i
++) {
132 const char *p
= params
.items
[i
].string
;
133 if (!strcmp(p
, "changes")) {
134 options
->flags
.dirstat_by_line
= 0;
135 options
->flags
.dirstat_by_file
= 0;
136 } else if (!strcmp(p
, "lines")) {
137 options
->flags
.dirstat_by_line
= 1;
138 options
->flags
.dirstat_by_file
= 0;
139 } else if (!strcmp(p
, "files")) {
140 options
->flags
.dirstat_by_line
= 0;
141 options
->flags
.dirstat_by_file
= 1;
142 } else if (!strcmp(p
, "noncumulative")) {
143 options
->flags
.dirstat_cumulative
= 0;
144 } else if (!strcmp(p
, "cumulative")) {
145 options
->flags
.dirstat_cumulative
= 1;
146 } else if (isdigit(*p
)) {
148 int permille
= strtoul(p
, &end
, 10) * 10;
149 if (*end
== '.' && isdigit(*++end
)) {
150 /* only use first digit */
151 permille
+= *end
- '0';
152 /* .. and ignore any further digits */
153 while (isdigit(*++end
))
157 options
->dirstat_permille
= permille
;
159 strbuf_addf(errmsg
, _(" Failed to parse dirstat cut-off percentage '%s'\n"),
164 strbuf_addf(errmsg
, _(" Unknown dirstat parameter '%s'\n"), p
);
169 string_list_clear(¶ms
, 0);
174 static int parse_submodule_params(struct diff_options
*options
, const char *value
)
176 if (!strcmp(value
, "log"))
177 options
->submodule_format
= DIFF_SUBMODULE_LOG
;
178 else if (!strcmp(value
, "short"))
179 options
->submodule_format
= DIFF_SUBMODULE_SHORT
;
180 else if (!strcmp(value
, "diff"))
181 options
->submodule_format
= DIFF_SUBMODULE_INLINE_DIFF
;
183 * Please update $__git_diff_submodule_formats in
184 * git-completion.bash when you add new formats.
191 int git_config_rename(const char *var
, const char *value
)
194 return DIFF_DETECT_RENAME
;
195 if (!strcasecmp(value
, "copies") || !strcasecmp(value
, "copy"))
196 return DIFF_DETECT_COPY
;
197 return git_config_bool(var
,value
) ? DIFF_DETECT_RENAME
: 0;
200 long parse_algorithm_value(const char *value
)
204 else if (!strcasecmp(value
, "myers") || !strcasecmp(value
, "default"))
206 else if (!strcasecmp(value
, "minimal"))
207 return XDF_NEED_MINIMAL
;
208 else if (!strcasecmp(value
, "patience"))
209 return XDF_PATIENCE_DIFF
;
210 else if (!strcasecmp(value
, "histogram"))
211 return XDF_HISTOGRAM_DIFF
;
213 * Please update $__git_diff_algorithms in git-completion.bash
214 * when you add new algorithms.
219 static int parse_one_token(const char **arg
, const char *token
)
222 if (skip_prefix(*arg
, token
, &rest
) && (!*rest
|| *rest
== ',')) {
229 static int parse_ws_error_highlight(const char *arg
)
231 const char *orig_arg
= arg
;
235 if (parse_one_token(&arg
, "none"))
237 else if (parse_one_token(&arg
, "default"))
239 else if (parse_one_token(&arg
, "all"))
240 val
= WSEH_NEW
| WSEH_OLD
| WSEH_CONTEXT
;
241 else if (parse_one_token(&arg
, "new"))
243 else if (parse_one_token(&arg
, "old"))
245 else if (parse_one_token(&arg
, "context"))
248 return -1 - (int)(arg
- orig_arg
);
257 * These are to give UI layer defaults.
258 * The core-level commands such as git-diff-files should
259 * never be affected by the setting of diff.renames
260 * the user happens to have in the configuration file.
262 void init_diff_ui_defaults(void)
264 diff_detect_rename_default
= DIFF_DETECT_RENAME
;
267 int git_diff_heuristic_config(const char *var
, const char *value
,
270 if (!strcmp(var
, "diff.indentheuristic"))
271 diff_indent_heuristic
= git_config_bool(var
, value
);
275 static int parse_color_moved(const char *arg
)
277 switch (git_parse_maybe_bool(arg
)) {
279 return COLOR_MOVED_NO
;
281 return COLOR_MOVED_DEFAULT
;
286 if (!strcmp(arg
, "no"))
287 return COLOR_MOVED_NO
;
288 else if (!strcmp(arg
, "plain"))
289 return COLOR_MOVED_PLAIN
;
290 else if (!strcmp(arg
, "blocks"))
291 return COLOR_MOVED_BLOCKS
;
292 else if (!strcmp(arg
, "zebra"))
293 return COLOR_MOVED_ZEBRA
;
294 else if (!strcmp(arg
, "default"))
295 return COLOR_MOVED_DEFAULT
;
296 else if (!strcmp(arg
, "dimmed-zebra"))
297 return COLOR_MOVED_ZEBRA_DIM
;
298 else if (!strcmp(arg
, "dimmed_zebra"))
299 return COLOR_MOVED_ZEBRA_DIM
;
301 return error(_("color moved setting must be one of 'no', 'default', 'blocks', 'zebra', 'dimmed-zebra', 'plain'"));
304 static unsigned parse_color_moved_ws(const char *arg
)
307 struct string_list l
= STRING_LIST_INIT_DUP
;
308 struct string_list_item
*i
;
310 string_list_split(&l
, arg
, ',', -1);
312 for_each_string_list_item(i
, &l
) {
313 struct strbuf sb
= STRBUF_INIT
;
314 strbuf_addstr(&sb
, i
->string
);
317 if (!strcmp(sb
.buf
, "no"))
319 else if (!strcmp(sb
.buf
, "ignore-space-change"))
320 ret
|= XDF_IGNORE_WHITESPACE_CHANGE
;
321 else if (!strcmp(sb
.buf
, "ignore-space-at-eol"))
322 ret
|= XDF_IGNORE_WHITESPACE_AT_EOL
;
323 else if (!strcmp(sb
.buf
, "ignore-all-space"))
324 ret
|= XDF_IGNORE_WHITESPACE
;
325 else if (!strcmp(sb
.buf
, "allow-indentation-change"))
326 ret
|= COLOR_MOVED_WS_ALLOW_INDENTATION_CHANGE
;
328 ret
|= COLOR_MOVED_WS_ERROR
;
329 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
);
335 if ((ret
& COLOR_MOVED_WS_ALLOW_INDENTATION_CHANGE
) &&
336 (ret
& XDF_WHITESPACE_FLAGS
)) {
337 error(_("color-moved-ws: allow-indentation-change cannot be combined with other whitespace modes"));
338 ret
|= COLOR_MOVED_WS_ERROR
;
341 string_list_clear(&l
, 0);
346 int git_diff_ui_config(const char *var
, const char *value
, void *cb
)
348 if (!strcmp(var
, "diff.color") || !strcmp(var
, "color.diff")) {
349 diff_use_color_default
= git_config_colorbool(var
, value
);
352 if (!strcmp(var
, "diff.colormoved")) {
353 int cm
= parse_color_moved(value
);
356 diff_color_moved_default
= cm
;
359 if (!strcmp(var
, "diff.colormovedws")) {
360 unsigned cm
= parse_color_moved_ws(value
);
361 if (cm
& COLOR_MOVED_WS_ERROR
)
363 diff_color_moved_ws_default
= cm
;
366 if (!strcmp(var
, "diff.context")) {
367 diff_context_default
= git_config_int(var
, value
);
368 if (diff_context_default
< 0)
372 if (!strcmp(var
, "diff.interhunkcontext")) {
373 diff_interhunk_context_default
= git_config_int(var
, value
);
374 if (diff_interhunk_context_default
< 0)
378 if (!strcmp(var
, "diff.renames")) {
379 diff_detect_rename_default
= git_config_rename(var
, value
);
382 if (!strcmp(var
, "diff.autorefreshindex")) {
383 diff_auto_refresh_index
= git_config_bool(var
, value
);
386 if (!strcmp(var
, "diff.mnemonicprefix")) {
387 diff_mnemonic_prefix
= git_config_bool(var
, value
);
390 if (!strcmp(var
, "diff.noprefix")) {
391 diff_no_prefix
= git_config_bool(var
, value
);
394 if (!strcmp(var
, "diff.relative")) {
395 diff_relative
= git_config_bool(var
, value
);
398 if (!strcmp(var
, "diff.statgraphwidth")) {
399 diff_stat_graph_width
= git_config_int(var
, value
);
402 if (!strcmp(var
, "diff.external"))
403 return git_config_string(&external_diff_cmd_cfg
, var
, value
);
404 if (!strcmp(var
, "diff.wordregex"))
405 return git_config_string(&diff_word_regex_cfg
, var
, value
);
406 if (!strcmp(var
, "diff.orderfile"))
407 return git_config_pathname(&diff_order_file_cfg
, var
, value
);
409 if (!strcmp(var
, "diff.ignoresubmodules"))
410 handle_ignore_submodules_arg(&default_diff_options
, value
);
412 if (!strcmp(var
, "diff.submodule")) {
413 if (parse_submodule_params(&default_diff_options
, value
))
414 warning(_("Unknown value for 'diff.submodule' config variable: '%s'"),
419 if (!strcmp(var
, "diff.algorithm")) {
420 diff_algorithm
= parse_algorithm_value(value
);
421 if (diff_algorithm
< 0)
426 if (git_color_config(var
, value
, cb
) < 0)
429 return git_diff_basic_config(var
, value
, cb
);
432 int git_diff_basic_config(const char *var
, const char *value
, void *cb
)
436 if (!strcmp(var
, "diff.renamelimit")) {
437 diff_rename_limit_default
= git_config_int(var
, value
);
441 if (userdiff_config(var
, value
) < 0)
444 if (skip_prefix(var
, "diff.color.", &name
) ||
445 skip_prefix(var
, "color.diff.", &name
)) {
446 int slot
= parse_diff_color_slot(name
);
450 return config_error_nonbool(var
);
451 return color_parse(value
, diff_colors
[slot
]);
454 if (!strcmp(var
, "diff.wserrorhighlight")) {
455 int val
= parse_ws_error_highlight(value
);
458 ws_error_highlight_default
= val
;
462 /* like GNU diff's --suppress-blank-empty option */
463 if (!strcmp(var
, "diff.suppressblankempty") ||
464 /* for backwards compatibility */
465 !strcmp(var
, "diff.suppress-blank-empty")) {
466 diff_suppress_blank_empty
= git_config_bool(var
, value
);
470 if (!strcmp(var
, "diff.dirstat")) {
471 struct strbuf errmsg
= STRBUF_INIT
;
472 default_diff_options
.dirstat_permille
= diff_dirstat_permille_default
;
473 if (parse_dirstat_params(&default_diff_options
, value
, &errmsg
))
474 warning(_("Found errors in 'diff.dirstat' config variable:\n%s"),
476 strbuf_release(&errmsg
);
477 diff_dirstat_permille_default
= default_diff_options
.dirstat_permille
;
481 if (git_diff_heuristic_config(var
, value
, cb
) < 0)
484 return git_default_config(var
, value
, cb
);
487 static char *quote_two(const char *one
, const char *two
)
489 int need_one
= quote_c_style(one
, NULL
, NULL
, CQUOTE_NODQ
);
490 int need_two
= quote_c_style(two
, NULL
, NULL
, CQUOTE_NODQ
);
491 struct strbuf res
= STRBUF_INIT
;
493 if (need_one
+ need_two
) {
494 strbuf_addch(&res
, '"');
495 quote_c_style(one
, &res
, NULL
, CQUOTE_NODQ
);
496 quote_c_style(two
, &res
, NULL
, CQUOTE_NODQ
);
497 strbuf_addch(&res
, '"');
499 strbuf_addstr(&res
, one
);
500 strbuf_addstr(&res
, two
);
502 return strbuf_detach(&res
, NULL
);
505 static const char *external_diff(void)
507 static const char *external_diff_cmd
= NULL
;
508 static int done_preparing
= 0;
511 return external_diff_cmd
;
512 external_diff_cmd
= xstrdup_or_null(getenv("GIT_EXTERNAL_DIFF"));
513 if (!external_diff_cmd
)
514 external_diff_cmd
= external_diff_cmd_cfg
;
516 return external_diff_cmd
;
520 * Keep track of files used for diffing. Sometimes such an entry
521 * refers to a temporary file, sometimes to an existing file, and
522 * sometimes to "/dev/null".
524 static struct diff_tempfile
{
526 * filename external diff should read from, or NULL if this
527 * entry is currently not in use:
531 char hex
[GIT_MAX_HEXSZ
+ 1];
535 * If this diff_tempfile instance refers to a temporary file,
536 * this tempfile object is used to manage its lifetime.
538 struct tempfile
*tempfile
;
541 struct emit_callback
{
544 int blank_at_eof_in_preimage
;
545 int blank_at_eof_in_postimage
;
547 int lno_in_postimage
;
548 const char **label_path
;
549 struct diff_words_data
*diff_words
;
550 struct diff_options
*opt
;
551 struct strbuf
*header
;
554 static int count_lines(const char *data
, int size
)
556 int count
, ch
, completely_empty
= 1, nl_just_seen
= 0;
563 completely_empty
= 0;
567 completely_empty
= 0;
570 if (completely_empty
)
573 count
++; /* no trailing newline */
577 static int fill_mmfile(struct repository
*r
, mmfile_t
*mf
,
578 struct diff_filespec
*one
)
580 if (!DIFF_FILE_VALID(one
)) {
581 mf
->ptr
= (char *)""; /* does not matter */
585 else if (diff_populate_filespec(r
, one
, NULL
))
589 mf
->size
= one
->size
;
593 /* like fill_mmfile, but only for size, so we can avoid retrieving blob */
594 static unsigned long diff_filespec_size(struct repository
*r
,
595 struct diff_filespec
*one
)
597 struct diff_populate_filespec_options dpf_options
= {
598 .check_size_only
= 1,
601 if (!DIFF_FILE_VALID(one
))
603 diff_populate_filespec(r
, one
, &dpf_options
);
607 static int count_trailing_blank(mmfile_t
*mf
, unsigned ws_rule
)
610 long size
= mf
->size
;
615 ptr
+= size
- 1; /* pointing at the very end */
617 ; /* incomplete line */
619 ptr
--; /* skip the last LF */
620 while (mf
->ptr
< ptr
) {
622 for (prev_eol
= ptr
; mf
->ptr
<= prev_eol
; prev_eol
--)
623 if (*prev_eol
== '\n')
625 if (!ws_blank_line(prev_eol
+ 1, ptr
- prev_eol
, ws_rule
))
633 static void check_blank_at_eof(mmfile_t
*mf1
, mmfile_t
*mf2
,
634 struct emit_callback
*ecbdata
)
637 unsigned ws_rule
= ecbdata
->ws_rule
;
638 l1
= count_trailing_blank(mf1
, ws_rule
);
639 l2
= count_trailing_blank(mf2
, ws_rule
);
641 ecbdata
->blank_at_eof_in_preimage
= 0;
642 ecbdata
->blank_at_eof_in_postimage
= 0;
645 at
= count_lines(mf1
->ptr
, mf1
->size
);
646 ecbdata
->blank_at_eof_in_preimage
= (at
- l1
) + 1;
648 at
= count_lines(mf2
->ptr
, mf2
->size
);
649 ecbdata
->blank_at_eof_in_postimage
= (at
- l2
) + 1;
652 static void emit_line_0(struct diff_options
*o
,
653 const char *set_sign
, const char *set
, unsigned reverse
, const char *reset
,
654 int first
, const char *line
, int len
)
656 int has_trailing_newline
, has_trailing_carriage_return
;
657 int needs_reset
= 0; /* at the end of the line */
658 FILE *file
= o
->file
;
660 fputs(diff_line_prefix(o
), file
);
662 has_trailing_newline
= (len
> 0 && line
[len
-1] == '\n');
663 if (has_trailing_newline
)
666 has_trailing_carriage_return
= (len
> 0 && line
[len
-1] == '\r');
667 if (has_trailing_carriage_return
)
673 if (reverse
&& want_color(o
->use_color
)) {
674 fputs(GIT_COLOR_REVERSE
, file
);
679 fputs(set_sign
, file
);
690 if (set_sign
&& set
!= set_sign
)
695 fwrite(line
, len
, 1, file
);
696 needs_reset
= 1; /* 'line' may contain color codes. */
701 if (has_trailing_carriage_return
)
703 if (has_trailing_newline
)
707 static void emit_line(struct diff_options
*o
, const char *set
, const char *reset
,
708 const char *line
, int len
)
710 emit_line_0(o
, set
, NULL
, 0, reset
, 0, line
, len
);
714 DIFF_SYMBOL_BINARY_DIFF_HEADER
,
715 DIFF_SYMBOL_BINARY_DIFF_HEADER_DELTA
,
716 DIFF_SYMBOL_BINARY_DIFF_HEADER_LITERAL
,
717 DIFF_SYMBOL_BINARY_DIFF_BODY
,
718 DIFF_SYMBOL_BINARY_DIFF_FOOTER
,
719 DIFF_SYMBOL_STATS_SUMMARY_NO_FILES
,
720 DIFF_SYMBOL_STATS_SUMMARY_ABBREV
,
721 DIFF_SYMBOL_STATS_SUMMARY_INSERTS_DELETES
,
722 DIFF_SYMBOL_STATS_LINE
,
723 DIFF_SYMBOL_WORD_DIFF
,
724 DIFF_SYMBOL_STAT_SEP
,
726 DIFF_SYMBOL_SUBMODULE_ADD
,
727 DIFF_SYMBOL_SUBMODULE_DEL
,
728 DIFF_SYMBOL_SUBMODULE_UNTRACKED
,
729 DIFF_SYMBOL_SUBMODULE_MODIFIED
,
730 DIFF_SYMBOL_SUBMODULE_HEADER
,
731 DIFF_SYMBOL_SUBMODULE_ERROR
,
732 DIFF_SYMBOL_SUBMODULE_PIPETHROUGH
,
733 DIFF_SYMBOL_REWRITE_DIFF
,
734 DIFF_SYMBOL_BINARY_FILES
,
736 DIFF_SYMBOL_FILEPAIR_PLUS
,
737 DIFF_SYMBOL_FILEPAIR_MINUS
,
738 DIFF_SYMBOL_WORDS_PORCELAIN
,
741 DIFF_SYMBOL_CONTEXT_INCOMPLETE
,
744 DIFF_SYMBOL_NO_LF_EOF
,
745 DIFF_SYMBOL_CONTEXT_FRAGINFO
,
746 DIFF_SYMBOL_CONTEXT_MARKER
,
747 DIFF_SYMBOL_SEPARATOR
750 * Flags for content lines:
751 * 0..12 are whitespace rules
752 * 13-15 are WSEH_NEW | WSEH_OLD | WSEH_CONTEXT
753 * 16 is marking if the line is blank at EOF
755 #define DIFF_SYMBOL_CONTENT_BLANK_LINE_EOF (1<<16)
756 #define DIFF_SYMBOL_MOVED_LINE (1<<17)
757 #define DIFF_SYMBOL_MOVED_LINE_ALT (1<<18)
758 #define DIFF_SYMBOL_MOVED_LINE_UNINTERESTING (1<<19)
759 #define DIFF_SYMBOL_CONTENT_WS_MASK (WSEH_NEW | WSEH_OLD | WSEH_CONTEXT | WS_RULE_MASK)
762 * This struct is used when we need to buffer the output of the diff output.
764 * NEEDSWORK: Instead of storing a copy of the line, add an offset pointer
765 * into the pre/post image file. This pointer could be a union with the
766 * line pointer. By storing an offset into the file instead of the literal line,
767 * we can decrease the memory footprint for the buffered output. At first we
768 * may want to only have indirection for the content lines, but we could also
769 * enhance the state for emitting prefabricated lines, e.g. the similarity
770 * score line or hunk/file headers would only need to store a number or path
771 * and then the output can be constructed later on depending on state.
773 struct emitted_diff_symbol
{
777 int indent_off
; /* Offset to first non-whitespace character */
778 int indent_width
; /* The visual width of the indentation */
782 #define EMITTED_DIFF_SYMBOL_INIT { 0 }
784 struct emitted_diff_symbols
{
785 struct emitted_diff_symbol
*buf
;
788 #define EMITTED_DIFF_SYMBOLS_INIT { 0 }
790 static void append_emitted_diff_symbol(struct diff_options
*o
,
791 struct emitted_diff_symbol
*e
)
793 struct emitted_diff_symbol
*f
;
795 ALLOC_GROW(o
->emitted_symbols
->buf
,
796 o
->emitted_symbols
->nr
+ 1,
797 o
->emitted_symbols
->alloc
);
798 f
= &o
->emitted_symbols
->buf
[o
->emitted_symbols
->nr
++];
800 memcpy(f
, e
, sizeof(struct emitted_diff_symbol
));
801 f
->line
= e
->line
? xmemdupz(e
->line
, e
->len
) : NULL
;
804 static void free_emitted_diff_symbols(struct emitted_diff_symbols
*e
)
813 const struct emitted_diff_symbol
*es
;
814 struct moved_entry
*next_line
;
815 struct moved_entry
*next_match
;
819 struct moved_entry
*match
;
820 int wsd
; /* The whitespace delta of this block */
823 #define INDENT_BLANKLINE INT_MIN
825 static void fill_es_indent_data(struct emitted_diff_symbol
*es
)
827 unsigned int off
= 0, i
;
828 int width
= 0, tab_width
= es
->flags
& WS_TAB_WIDTH_MASK
;
829 const char *s
= es
->line
;
830 const int len
= es
->len
;
832 /* skip any \v \f \r at start of indentation */
833 while (s
[off
] == '\f' || s
[off
] == '\v' ||
834 (s
[off
] == '\r' && off
< len
- 1))
837 /* calculate the visual width of indentation */
842 } else if (s
[off
] == '\t') {
843 width
+= tab_width
- (width
% tab_width
);
844 while (s
[++off
] == '\t')
851 /* check if this line is blank */
852 for (i
= off
; i
< len
; i
++)
857 es
->indent_width
= INDENT_BLANKLINE
;
858 es
->indent_off
= len
;
860 es
->indent_off
= off
;
861 es
->indent_width
= width
;
865 static int compute_ws_delta(const struct emitted_diff_symbol
*a
,
866 const struct emitted_diff_symbol
*b
)
868 int a_width
= a
->indent_width
,
869 b_width
= b
->indent_width
;
871 if (a_width
== INDENT_BLANKLINE
&& b_width
== INDENT_BLANKLINE
)
872 return INDENT_BLANKLINE
;
874 return a_width
- b_width
;
877 static int cmp_in_block_with_wsd(const struct moved_entry
*cur
,
878 const struct emitted_diff_symbol
*l
,
879 struct moved_block
*pmb
)
881 int a_width
= cur
->es
->indent_width
, b_width
= l
->indent_width
;
884 /* The text of each line must match */
885 if (cur
->es
->id
!= l
->id
)
889 * If 'l' and 'cur' are both blank then we don't need to check the
890 * indent. We only need to check cur as we know the strings match.
892 if (a_width
== INDENT_BLANKLINE
)
896 * The indent changes of the block are known and stored in pmb->wsd;
897 * however we need to check if the indent changes of the current line
898 * match those of the current block.
900 delta
= b_width
- a_width
;
903 * If the previous lines of this block were all blank then set its
906 if (pmb
->wsd
== INDENT_BLANKLINE
)
909 return delta
!= pmb
->wsd
;
912 struct interned_diff_symbol
{
913 struct hashmap_entry ent
;
914 struct emitted_diff_symbol
*es
;
917 static int interned_diff_symbol_cmp(const void *hashmap_cmp_fn_data
,
918 const struct hashmap_entry
*eptr
,
919 const struct hashmap_entry
*entry_or_key
,
920 const void *keydata UNUSED
)
922 const struct diff_options
*diffopt
= hashmap_cmp_fn_data
;
923 const struct emitted_diff_symbol
*a
, *b
;
924 unsigned flags
= diffopt
->color_moved_ws_handling
925 & XDF_WHITESPACE_FLAGS
;
927 a
= container_of(eptr
, const struct interned_diff_symbol
, ent
)->es
;
928 b
= container_of(entry_or_key
, const struct interned_diff_symbol
, ent
)->es
;
930 return !xdiff_compare_lines(a
->line
+ a
->indent_off
,
931 a
->len
- a
->indent_off
,
932 b
->line
+ b
->indent_off
,
933 b
->len
- b
->indent_off
, flags
);
936 static void prepare_entry(struct diff_options
*o
, struct emitted_diff_symbol
*l
,
937 struct interned_diff_symbol
*s
)
939 unsigned flags
= o
->color_moved_ws_handling
& XDF_WHITESPACE_FLAGS
;
940 unsigned int hash
= xdiff_hash_string(l
->line
+ l
->indent_off
,
941 l
->len
- l
->indent_off
, flags
);
943 hashmap_entry_init(&s
->ent
, hash
);
947 struct moved_entry_list
{
948 struct moved_entry
*add
, *del
;
951 static struct moved_entry_list
*add_lines_to_move_detection(struct diff_options
*o
,
952 struct mem_pool
*entry_mem_pool
)
954 struct moved_entry
*prev_line
= NULL
;
955 struct mem_pool interned_pool
;
956 struct hashmap interned_map
;
957 struct moved_entry_list
*entry_list
= NULL
;
958 size_t entry_list_alloc
= 0;
962 hashmap_init(&interned_map
, interned_diff_symbol_cmp
, o
, 8096);
963 mem_pool_init(&interned_pool
, 1024 * 1024);
965 for (n
= 0; n
< o
->emitted_symbols
->nr
; n
++) {
966 struct interned_diff_symbol key
;
967 struct emitted_diff_symbol
*l
= &o
->emitted_symbols
->buf
[n
];
968 struct interned_diff_symbol
*s
;
969 struct moved_entry
*entry
;
971 if (l
->s
!= DIFF_SYMBOL_PLUS
&& l
->s
!= DIFF_SYMBOL_MINUS
) {
976 if (o
->color_moved_ws_handling
&
977 COLOR_MOVED_WS_ALLOW_INDENTATION_CHANGE
)
978 fill_es_indent_data(l
);
980 prepare_entry(o
, l
, &key
);
981 s
= hashmap_get_entry(&interned_map
, &key
, ent
, &key
.ent
);
986 ALLOC_GROW_BY(entry_list
, id
, 1, entry_list_alloc
);
987 hashmap_add(&interned_map
,
988 memcpy(mem_pool_alloc(&interned_pool
,
992 entry
= mem_pool_alloc(entry_mem_pool
, sizeof(*entry
));
994 entry
->next_line
= NULL
;
995 if (prev_line
&& prev_line
->es
->s
== l
->s
)
996 prev_line
->next_line
= entry
;
998 if (l
->s
== DIFF_SYMBOL_PLUS
) {
999 entry
->next_match
= entry_list
[l
->id
].add
;
1000 entry_list
[l
->id
].add
= entry
;
1002 entry
->next_match
= entry_list
[l
->id
].del
;
1003 entry_list
[l
->id
].del
= entry
;
1007 hashmap_clear(&interned_map
);
1008 mem_pool_discard(&interned_pool
, 0);
1013 static void pmb_advance_or_null(struct diff_options
*o
,
1014 struct emitted_diff_symbol
*l
,
1015 struct moved_block
*pmb
,
1020 for (i
= 0, j
= 0; i
< *pmb_nr
; i
++) {
1022 struct moved_entry
*prev
= pmb
[i
].match
;
1023 struct moved_entry
*cur
= (prev
&& prev
->next_line
) ?
1024 prev
->next_line
: NULL
;
1026 if (o
->color_moved_ws_handling
&
1027 COLOR_MOVED_WS_ALLOW_INDENTATION_CHANGE
)
1029 !cmp_in_block_with_wsd(cur
, l
, &pmb
[i
]);
1031 match
= cur
&& cur
->es
->id
== l
->id
;
1035 pmb
[j
++].match
= cur
;
1041 static void fill_potential_moved_blocks(struct diff_options
*o
,
1042 struct moved_entry
*match
,
1043 struct emitted_diff_symbol
*l
,
1044 struct moved_block
**pmb_p
,
1045 int *pmb_alloc_p
, int *pmb_nr_p
)
1048 struct moved_block
*pmb
= *pmb_p
;
1049 int pmb_alloc
= *pmb_alloc_p
, pmb_nr
= *pmb_nr_p
;
1052 * The current line is the start of a new block.
1053 * Setup the set of potential blocks.
1055 for (; match
; match
= match
->next_match
) {
1056 ALLOC_GROW(pmb
, pmb_nr
+ 1, pmb_alloc
);
1057 if (o
->color_moved_ws_handling
&
1058 COLOR_MOVED_WS_ALLOW_INDENTATION_CHANGE
)
1059 pmb
[pmb_nr
].wsd
= compute_ws_delta(l
, match
->es
);
1061 pmb
[pmb_nr
].wsd
= 0;
1062 pmb
[pmb_nr
++].match
= match
;
1066 *pmb_alloc_p
= pmb_alloc
;
1071 * If o->color_moved is COLOR_MOVED_PLAIN, this function does nothing.
1073 * Otherwise, if the last block has fewer alphanumeric characters than
1074 * COLOR_MOVED_MIN_ALNUM_COUNT, unset DIFF_SYMBOL_MOVED_LINE on all lines in
1077 * The last block consists of the (n - block_length)'th line up to but not
1078 * including the nth line.
1080 * Returns 0 if the last block is empty or is unset by this function, non zero
1083 * NEEDSWORK: This uses the same heuristic as blame_entry_score() in blame.c.
1084 * Think of a way to unify them.
1086 #define DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK \
1087 (DIFF_SYMBOL_MOVED_LINE | DIFF_SYMBOL_MOVED_LINE_ALT)
1088 static int adjust_last_block(struct diff_options
*o
, int n
, int block_length
)
1090 int i
, alnum_count
= 0;
1091 if (o
->color_moved
== COLOR_MOVED_PLAIN
)
1092 return block_length
;
1093 for (i
= 1; i
< block_length
+ 1; i
++) {
1094 const char *c
= o
->emitted_symbols
->buf
[n
- i
].line
;
1099 if (alnum_count
>= COLOR_MOVED_MIN_ALNUM_COUNT
)
1103 for (i
= 1; i
< block_length
+ 1; i
++)
1104 o
->emitted_symbols
->buf
[n
- i
].flags
&= ~DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK
;
1108 /* Find blocks of moved code, delegate actual coloring decision to helper */
1109 static void mark_color_as_moved(struct diff_options
*o
,
1110 struct moved_entry_list
*entry_list
)
1112 struct moved_block
*pmb
= NULL
; /* potentially moved blocks */
1113 int pmb_nr
= 0, pmb_alloc
= 0;
1114 int n
, flipped_block
= 0, block_length
= 0;
1115 enum diff_symbol moved_symbol
= DIFF_SYMBOL_BINARY_DIFF_HEADER
;
1118 for (n
= 0; n
< o
->emitted_symbols
->nr
; n
++) {
1119 struct moved_entry
*match
= NULL
;
1120 struct emitted_diff_symbol
*l
= &o
->emitted_symbols
->buf
[n
];
1123 case DIFF_SYMBOL_PLUS
:
1124 match
= entry_list
[l
->id
].del
;
1126 case DIFF_SYMBOL_MINUS
:
1127 match
= entry_list
[l
->id
].add
;
1133 if (pmb_nr
&& (!match
|| l
->s
!= moved_symbol
)) {
1134 if (!adjust_last_block(o
, n
, block_length
) &&
1137 * Rewind in case there is another match
1138 * starting at the second line of the block
1148 moved_symbol
= DIFF_SYMBOL_BINARY_DIFF_HEADER
;
1152 if (o
->color_moved
== COLOR_MOVED_PLAIN
) {
1153 l
->flags
|= DIFF_SYMBOL_MOVED_LINE
;
1157 pmb_advance_or_null(o
, l
, pmb
, &pmb_nr
);
1160 int contiguous
= adjust_last_block(o
, n
, block_length
);
1162 if (!contiguous
&& block_length
> 1)
1164 * Rewind in case there is another match
1165 * starting at the second line of the block
1169 fill_potential_moved_blocks(o
, match
, l
,
1173 if (contiguous
&& pmb_nr
&& moved_symbol
== l
->s
)
1174 flipped_block
= (flipped_block
+ 1) % 2;
1179 moved_symbol
= l
->s
;
1181 moved_symbol
= DIFF_SYMBOL_BINARY_DIFF_HEADER
;
1188 l
->flags
|= DIFF_SYMBOL_MOVED_LINE
;
1189 if (flipped_block
&& o
->color_moved
!= COLOR_MOVED_BLOCKS
)
1190 l
->flags
|= DIFF_SYMBOL_MOVED_LINE_ALT
;
1193 adjust_last_block(o
, n
, block_length
);
1198 static void dim_moved_lines(struct diff_options
*o
)
1201 for (n
= 0; n
< o
->emitted_symbols
->nr
; n
++) {
1202 struct emitted_diff_symbol
*prev
= (n
!= 0) ?
1203 &o
->emitted_symbols
->buf
[n
- 1] : NULL
;
1204 struct emitted_diff_symbol
*l
= &o
->emitted_symbols
->buf
[n
];
1205 struct emitted_diff_symbol
*next
=
1206 (n
< o
->emitted_symbols
->nr
- 1) ?
1207 &o
->emitted_symbols
->buf
[n
+ 1] : NULL
;
1209 /* Not a plus or minus line? */
1210 if (l
->s
!= DIFF_SYMBOL_PLUS
&& l
->s
!= DIFF_SYMBOL_MINUS
)
1213 /* Not a moved line? */
1214 if (!(l
->flags
& DIFF_SYMBOL_MOVED_LINE
))
1218 * If prev or next are not a plus or minus line,
1219 * pretend they don't exist
1221 if (prev
&& prev
->s
!= DIFF_SYMBOL_PLUS
&&
1222 prev
->s
!= DIFF_SYMBOL_MINUS
)
1224 if (next
&& next
->s
!= DIFF_SYMBOL_PLUS
&&
1225 next
->s
!= DIFF_SYMBOL_MINUS
)
1228 /* Inside a block? */
1230 (prev
->flags
& DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK
) ==
1231 (l
->flags
& DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK
)) &&
1233 (next
->flags
& DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK
) ==
1234 (l
->flags
& DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK
))) {
1235 l
->flags
|= DIFF_SYMBOL_MOVED_LINE_UNINTERESTING
;
1239 /* Check if we are at an interesting bound: */
1240 if (prev
&& (prev
->flags
& DIFF_SYMBOL_MOVED_LINE
) &&
1241 (prev
->flags
& DIFF_SYMBOL_MOVED_LINE_ALT
) !=
1242 (l
->flags
& DIFF_SYMBOL_MOVED_LINE_ALT
))
1244 if (next
&& (next
->flags
& DIFF_SYMBOL_MOVED_LINE
) &&
1245 (next
->flags
& DIFF_SYMBOL_MOVED_LINE_ALT
) !=
1246 (l
->flags
& DIFF_SYMBOL_MOVED_LINE_ALT
))
1250 * The boundary to prev and next are not interesting,
1251 * so this line is not interesting as a whole
1253 l
->flags
|= DIFF_SYMBOL_MOVED_LINE_UNINTERESTING
;
1257 static void emit_line_ws_markup(struct diff_options
*o
,
1258 const char *set_sign
, const char *set
,
1260 int sign_index
, const char *line
, int len
,
1261 unsigned ws_rule
, int blank_at_eof
)
1263 const char *ws
= NULL
;
1264 int sign
= o
->output_indicators
[sign_index
];
1266 if (o
->ws_error_highlight
& ws_rule
) {
1267 ws
= diff_get_color_opt(o
, DIFF_WHITESPACE
);
1272 if (!ws
&& !set_sign
)
1273 emit_line_0(o
, set
, NULL
, 0, reset
, sign
, line
, len
);
1275 emit_line_0(o
, set_sign
, set
, !!set_sign
, reset
, sign
, line
, len
);
1276 } else if (blank_at_eof
)
1277 /* Blank line at EOF - paint '+' as well */
1278 emit_line_0(o
, ws
, NULL
, 0, reset
, sign
, line
, len
);
1280 /* Emit just the prefix, then the rest. */
1281 emit_line_0(o
, set_sign
? set_sign
: set
, NULL
, !!set_sign
, reset
,
1283 ws_check_emit(line
, len
, ws_rule
,
1284 o
->file
, set
, reset
, ws
);
1288 static void emit_diff_symbol_from_struct(struct diff_options
*o
,
1289 struct emitted_diff_symbol
*eds
)
1291 static const char *nneof
= " No newline at end of file\n";
1292 const char *context
, *reset
, *set
, *set_sign
, *meta
, *fraginfo
;
1294 enum diff_symbol s
= eds
->s
;
1295 const char *line
= eds
->line
;
1297 unsigned flags
= eds
->flags
;
1300 case DIFF_SYMBOL_NO_LF_EOF
:
1301 context
= diff_get_color_opt(o
, DIFF_CONTEXT
);
1302 reset
= diff_get_color_opt(o
, DIFF_RESET
);
1303 putc('\n', o
->file
);
1304 emit_line_0(o
, context
, NULL
, 0, reset
, '\\',
1305 nneof
, strlen(nneof
));
1307 case DIFF_SYMBOL_SUBMODULE_HEADER
:
1308 case DIFF_SYMBOL_SUBMODULE_ERROR
:
1309 case DIFF_SYMBOL_SUBMODULE_PIPETHROUGH
:
1310 case DIFF_SYMBOL_STATS_SUMMARY_INSERTS_DELETES
:
1311 case DIFF_SYMBOL_SUMMARY
:
1312 case DIFF_SYMBOL_STATS_LINE
:
1313 case DIFF_SYMBOL_BINARY_DIFF_BODY
:
1314 case DIFF_SYMBOL_CONTEXT_FRAGINFO
:
1315 emit_line(o
, "", "", line
, len
);
1317 case DIFF_SYMBOL_CONTEXT_INCOMPLETE
:
1318 case DIFF_SYMBOL_CONTEXT_MARKER
:
1319 context
= diff_get_color_opt(o
, DIFF_CONTEXT
);
1320 reset
= diff_get_color_opt(o
, DIFF_RESET
);
1321 emit_line(o
, context
, reset
, line
, len
);
1323 case DIFF_SYMBOL_SEPARATOR
:
1324 fprintf(o
->file
, "%s%c",
1325 diff_line_prefix(o
),
1326 o
->line_termination
);
1328 case DIFF_SYMBOL_CONTEXT
:
1329 set
= diff_get_color_opt(o
, DIFF_CONTEXT
);
1330 reset
= diff_get_color_opt(o
, DIFF_RESET
);
1332 if (o
->flags
.dual_color_diffed_diffs
) {
1333 char c
= !len
? 0 : line
[0];
1336 set
= diff_get_color_opt(o
, DIFF_FILE_NEW
);
1338 set
= diff_get_color_opt(o
, DIFF_FRAGINFO
);
1340 set
= diff_get_color_opt(o
, DIFF_FILE_OLD
);
1342 emit_line_ws_markup(o
, set_sign
, set
, reset
,
1343 OUTPUT_INDICATOR_CONTEXT
, line
, len
,
1344 flags
& (DIFF_SYMBOL_CONTENT_WS_MASK
), 0);
1346 case DIFF_SYMBOL_PLUS
:
1347 switch (flags
& (DIFF_SYMBOL_MOVED_LINE
|
1348 DIFF_SYMBOL_MOVED_LINE_ALT
|
1349 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING
)) {
1350 case DIFF_SYMBOL_MOVED_LINE
|
1351 DIFF_SYMBOL_MOVED_LINE_ALT
|
1352 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING
:
1353 set
= diff_get_color_opt(o
, DIFF_FILE_NEW_MOVED_ALT_DIM
);
1355 case DIFF_SYMBOL_MOVED_LINE
|
1356 DIFF_SYMBOL_MOVED_LINE_ALT
:
1357 set
= diff_get_color_opt(o
, DIFF_FILE_NEW_MOVED_ALT
);
1359 case DIFF_SYMBOL_MOVED_LINE
|
1360 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING
:
1361 set
= diff_get_color_opt(o
, DIFF_FILE_NEW_MOVED_DIM
);
1363 case DIFF_SYMBOL_MOVED_LINE
:
1364 set
= diff_get_color_opt(o
, DIFF_FILE_NEW_MOVED
);
1367 set
= diff_get_color_opt(o
, DIFF_FILE_NEW
);
1369 reset
= diff_get_color_opt(o
, DIFF_RESET
);
1370 if (!o
->flags
.dual_color_diffed_diffs
)
1373 char c
= !len
? 0 : line
[0];
1377 set
= diff_get_color_opt(o
, DIFF_FILE_OLD_BOLD
);
1379 set
= diff_get_color_opt(o
, DIFF_FRAGINFO
);
1381 set
= diff_get_color_opt(o
, DIFF_FILE_NEW_BOLD
);
1383 set
= diff_get_color_opt(o
, DIFF_CONTEXT_BOLD
);
1384 flags
&= ~DIFF_SYMBOL_CONTENT_WS_MASK
;
1386 emit_line_ws_markup(o
, set_sign
, set
, reset
,
1387 OUTPUT_INDICATOR_NEW
, line
, len
,
1388 flags
& DIFF_SYMBOL_CONTENT_WS_MASK
,
1389 flags
& DIFF_SYMBOL_CONTENT_BLANK_LINE_EOF
);
1391 case DIFF_SYMBOL_MINUS
:
1392 switch (flags
& (DIFF_SYMBOL_MOVED_LINE
|
1393 DIFF_SYMBOL_MOVED_LINE_ALT
|
1394 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING
)) {
1395 case DIFF_SYMBOL_MOVED_LINE
|
1396 DIFF_SYMBOL_MOVED_LINE_ALT
|
1397 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING
:
1398 set
= diff_get_color_opt(o
, DIFF_FILE_OLD_MOVED_ALT_DIM
);
1400 case DIFF_SYMBOL_MOVED_LINE
|
1401 DIFF_SYMBOL_MOVED_LINE_ALT
:
1402 set
= diff_get_color_opt(o
, DIFF_FILE_OLD_MOVED_ALT
);
1404 case DIFF_SYMBOL_MOVED_LINE
|
1405 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING
:
1406 set
= diff_get_color_opt(o
, DIFF_FILE_OLD_MOVED_DIM
);
1408 case DIFF_SYMBOL_MOVED_LINE
:
1409 set
= diff_get_color_opt(o
, DIFF_FILE_OLD_MOVED
);
1412 set
= diff_get_color_opt(o
, DIFF_FILE_OLD
);
1414 reset
= diff_get_color_opt(o
, DIFF_RESET
);
1415 if (!o
->flags
.dual_color_diffed_diffs
)
1418 char c
= !len
? 0 : line
[0];
1422 set
= diff_get_color_opt(o
, DIFF_FILE_NEW_DIM
);
1424 set
= diff_get_color_opt(o
, DIFF_FRAGINFO
);
1426 set
= diff_get_color_opt(o
, DIFF_FILE_OLD_DIM
);
1428 set
= diff_get_color_opt(o
, DIFF_CONTEXT_DIM
);
1430 emit_line_ws_markup(o
, set_sign
, set
, reset
,
1431 OUTPUT_INDICATOR_OLD
, line
, len
,
1432 flags
& DIFF_SYMBOL_CONTENT_WS_MASK
, 0);
1434 case DIFF_SYMBOL_WORDS_PORCELAIN
:
1435 context
= diff_get_color_opt(o
, DIFF_CONTEXT
);
1436 reset
= diff_get_color_opt(o
, DIFF_RESET
);
1437 emit_line(o
, context
, reset
, line
, len
);
1438 fputs("~\n", o
->file
);
1440 case DIFF_SYMBOL_WORDS
:
1441 context
= diff_get_color_opt(o
, DIFF_CONTEXT
);
1442 reset
= diff_get_color_opt(o
, DIFF_RESET
);
1444 * Skip the prefix character, if any. With
1445 * diff_suppress_blank_empty, there may be
1448 if (line
[0] != '\n') {
1452 emit_line(o
, context
, reset
, line
, len
);
1454 case DIFF_SYMBOL_FILEPAIR_PLUS
:
1455 meta
= diff_get_color_opt(o
, DIFF_METAINFO
);
1456 reset
= diff_get_color_opt(o
, DIFF_RESET
);
1457 fprintf(o
->file
, "%s%s+++ %s%s%s\n", diff_line_prefix(o
), meta
,
1459 strchr(line
, ' ') ? "\t" : "");
1461 case DIFF_SYMBOL_FILEPAIR_MINUS
:
1462 meta
= diff_get_color_opt(o
, DIFF_METAINFO
);
1463 reset
= diff_get_color_opt(o
, DIFF_RESET
);
1464 fprintf(o
->file
, "%s%s--- %s%s%s\n", diff_line_prefix(o
), meta
,
1466 strchr(line
, ' ') ? "\t" : "");
1468 case DIFF_SYMBOL_BINARY_FILES
:
1469 case DIFF_SYMBOL_HEADER
:
1470 fprintf(o
->file
, "%s", line
);
1472 case DIFF_SYMBOL_BINARY_DIFF_HEADER
:
1473 fprintf(o
->file
, "%sGIT binary patch\n", diff_line_prefix(o
));
1475 case DIFF_SYMBOL_BINARY_DIFF_HEADER_DELTA
:
1476 fprintf(o
->file
, "%sdelta %s\n", diff_line_prefix(o
), line
);
1478 case DIFF_SYMBOL_BINARY_DIFF_HEADER_LITERAL
:
1479 fprintf(o
->file
, "%sliteral %s\n", diff_line_prefix(o
), line
);
1481 case DIFF_SYMBOL_BINARY_DIFF_FOOTER
:
1482 fputs(diff_line_prefix(o
), o
->file
);
1483 fputc('\n', o
->file
);
1485 case DIFF_SYMBOL_REWRITE_DIFF
:
1486 fraginfo
= diff_get_color(o
->use_color
, DIFF_FRAGINFO
);
1487 reset
= diff_get_color_opt(o
, DIFF_RESET
);
1488 emit_line(o
, fraginfo
, reset
, line
, len
);
1490 case DIFF_SYMBOL_SUBMODULE_ADD
:
1491 set
= diff_get_color_opt(o
, DIFF_FILE_NEW
);
1492 reset
= diff_get_color_opt(o
, DIFF_RESET
);
1493 emit_line(o
, set
, reset
, line
, len
);
1495 case DIFF_SYMBOL_SUBMODULE_DEL
:
1496 set
= diff_get_color_opt(o
, DIFF_FILE_OLD
);
1497 reset
= diff_get_color_opt(o
, DIFF_RESET
);
1498 emit_line(o
, set
, reset
, line
, len
);
1500 case DIFF_SYMBOL_SUBMODULE_UNTRACKED
:
1501 fprintf(o
->file
, "%sSubmodule %s contains untracked content\n",
1502 diff_line_prefix(o
), line
);
1504 case DIFF_SYMBOL_SUBMODULE_MODIFIED
:
1505 fprintf(o
->file
, "%sSubmodule %s contains modified content\n",
1506 diff_line_prefix(o
), line
);
1508 case DIFF_SYMBOL_STATS_SUMMARY_NO_FILES
:
1509 emit_line(o
, "", "", " 0 files changed\n",
1510 strlen(" 0 files changed\n"));
1512 case DIFF_SYMBOL_STATS_SUMMARY_ABBREV
:
1513 emit_line(o
, "", "", " ...\n", strlen(" ...\n"));
1515 case DIFF_SYMBOL_WORD_DIFF
:
1516 fprintf(o
->file
, "%.*s", len
, line
);
1518 case DIFF_SYMBOL_STAT_SEP
:
1519 fputs(o
->stat_sep
, o
->file
);
1522 BUG("unknown diff symbol");
1526 static void emit_diff_symbol(struct diff_options
*o
, enum diff_symbol s
,
1527 const char *line
, int len
, unsigned flags
)
1529 struct emitted_diff_symbol e
= {
1530 .line
= line
, .len
= len
, .flags
= flags
, .s
= s
1533 if (o
->emitted_symbols
)
1534 append_emitted_diff_symbol(o
, &e
);
1536 emit_diff_symbol_from_struct(o
, &e
);
1539 void diff_emit_submodule_del(struct diff_options
*o
, const char *line
)
1541 emit_diff_symbol(o
, DIFF_SYMBOL_SUBMODULE_DEL
, line
, strlen(line
), 0);
1544 void diff_emit_submodule_add(struct diff_options
*o
, const char *line
)
1546 emit_diff_symbol(o
, DIFF_SYMBOL_SUBMODULE_ADD
, line
, strlen(line
), 0);
1549 void diff_emit_submodule_untracked(struct diff_options
*o
, const char *path
)
1551 emit_diff_symbol(o
, DIFF_SYMBOL_SUBMODULE_UNTRACKED
,
1552 path
, strlen(path
), 0);
1555 void diff_emit_submodule_modified(struct diff_options
*o
, const char *path
)
1557 emit_diff_symbol(o
, DIFF_SYMBOL_SUBMODULE_MODIFIED
,
1558 path
, strlen(path
), 0);
1561 void diff_emit_submodule_header(struct diff_options
*o
, const char *header
)
1563 emit_diff_symbol(o
, DIFF_SYMBOL_SUBMODULE_HEADER
,
1564 header
, strlen(header
), 0);
1567 void diff_emit_submodule_error(struct diff_options
*o
, const char *err
)
1569 emit_diff_symbol(o
, DIFF_SYMBOL_SUBMODULE_ERROR
, err
, strlen(err
), 0);
1572 void diff_emit_submodule_pipethrough(struct diff_options
*o
,
1573 const char *line
, int len
)
1575 emit_diff_symbol(o
, DIFF_SYMBOL_SUBMODULE_PIPETHROUGH
, line
, len
, 0);
1578 static int new_blank_line_at_eof(struct emit_callback
*ecbdata
, const char *line
, int len
)
1580 if (!((ecbdata
->ws_rule
& WS_BLANK_AT_EOF
) &&
1581 ecbdata
->blank_at_eof_in_preimage
&&
1582 ecbdata
->blank_at_eof_in_postimage
&&
1583 ecbdata
->blank_at_eof_in_preimage
<= ecbdata
->lno_in_preimage
&&
1584 ecbdata
->blank_at_eof_in_postimage
<= ecbdata
->lno_in_postimage
))
1586 return ws_blank_line(line
, len
, ecbdata
->ws_rule
);
1589 static void emit_add_line(struct emit_callback
*ecbdata
,
1590 const char *line
, int len
)
1592 unsigned flags
= WSEH_NEW
| ecbdata
->ws_rule
;
1593 if (new_blank_line_at_eof(ecbdata
, line
, len
))
1594 flags
|= DIFF_SYMBOL_CONTENT_BLANK_LINE_EOF
;
1596 emit_diff_symbol(ecbdata
->opt
, DIFF_SYMBOL_PLUS
, line
, len
, flags
);
1599 static void emit_del_line(struct emit_callback
*ecbdata
,
1600 const char *line
, int len
)
1602 unsigned flags
= WSEH_OLD
| ecbdata
->ws_rule
;
1603 emit_diff_symbol(ecbdata
->opt
, DIFF_SYMBOL_MINUS
, line
, len
, flags
);
1606 static void emit_context_line(struct emit_callback
*ecbdata
,
1607 const char *line
, int len
)
1609 unsigned flags
= WSEH_CONTEXT
| ecbdata
->ws_rule
;
1610 emit_diff_symbol(ecbdata
->opt
, DIFF_SYMBOL_CONTEXT
, line
, len
, flags
);
1613 static void emit_hunk_header(struct emit_callback
*ecbdata
,
1614 const char *line
, int len
)
1616 const char *context
= diff_get_color(ecbdata
->color_diff
, DIFF_CONTEXT
);
1617 const char *frag
= diff_get_color(ecbdata
->color_diff
, DIFF_FRAGINFO
);
1618 const char *func
= diff_get_color(ecbdata
->color_diff
, DIFF_FUNCINFO
);
1619 const char *reset
= diff_get_color(ecbdata
->color_diff
, DIFF_RESET
);
1620 const char *reverse
= ecbdata
->color_diff
? GIT_COLOR_REVERSE
: "";
1621 static const char atat
[2] = { '@', '@' };
1622 const char *cp
, *ep
;
1623 struct strbuf msgbuf
= STRBUF_INIT
;
1628 * As a hunk header must begin with "@@ -<old>, +<new> @@",
1629 * it always is at least 10 bytes long.
1632 memcmp(line
, atat
, 2) ||
1633 !(ep
= memmem(line
+ 2, len
- 2, atat
, 2))) {
1634 emit_diff_symbol(ecbdata
->opt
,
1635 DIFF_SYMBOL_CONTEXT_MARKER
, line
, len
, 0);
1638 ep
+= 2; /* skip over @@ */
1640 /* The hunk header in fraginfo color */
1641 if (ecbdata
->opt
->flags
.dual_color_diffed_diffs
)
1642 strbuf_addstr(&msgbuf
, reverse
);
1643 strbuf_addstr(&msgbuf
, frag
);
1644 if (ecbdata
->opt
->flags
.suppress_hunk_header_line_count
)
1645 strbuf_add(&msgbuf
, atat
, sizeof(atat
));
1647 strbuf_add(&msgbuf
, line
, ep
- line
);
1648 strbuf_addstr(&msgbuf
, reset
);
1654 if (line
[len
- i
] == '\r' || line
[len
- i
] == '\n')
1657 /* blank before the func header */
1658 for (cp
= ep
; ep
- line
< len
; ep
++)
1659 if (*ep
!= ' ' && *ep
!= '\t')
1662 strbuf_addstr(&msgbuf
, context
);
1663 strbuf_add(&msgbuf
, cp
, ep
- cp
);
1664 strbuf_addstr(&msgbuf
, reset
);
1667 if (ep
< line
+ len
) {
1668 strbuf_addstr(&msgbuf
, func
);
1669 strbuf_add(&msgbuf
, ep
, line
+ len
- ep
);
1670 strbuf_addstr(&msgbuf
, reset
);
1673 strbuf_add(&msgbuf
, line
+ len
, org_len
- len
);
1674 strbuf_complete_line(&msgbuf
);
1675 emit_diff_symbol(ecbdata
->opt
,
1676 DIFF_SYMBOL_CONTEXT_FRAGINFO
, msgbuf
.buf
, msgbuf
.len
, 0);
1677 strbuf_release(&msgbuf
);
1680 static struct diff_tempfile
*claim_diff_tempfile(void)
1683 for (i
= 0; i
< ARRAY_SIZE(diff_temp
); i
++)
1684 if (!diff_temp
[i
].name
)
1685 return diff_temp
+ i
;
1686 BUG("diff is failing to clean up its tempfiles");
1689 static void remove_tempfile(void)
1692 for (i
= 0; i
< ARRAY_SIZE(diff_temp
); i
++) {
1693 if (is_tempfile_active(diff_temp
[i
].tempfile
))
1694 delete_tempfile(&diff_temp
[i
].tempfile
);
1695 diff_temp
[i
].name
= NULL
;
1699 static void add_line_count(struct strbuf
*out
, int count
)
1703 strbuf_addstr(out
, "0,0");
1706 strbuf_addstr(out
, "1");
1709 strbuf_addf(out
, "1,%d", count
);
1714 static void emit_rewrite_lines(struct emit_callback
*ecb
,
1715 int prefix
, const char *data
, int size
)
1717 const char *endp
= NULL
;
1722 endp
= memchr(data
, '\n', size
);
1723 len
= endp
? (endp
- data
+ 1) : size
;
1724 if (prefix
!= '+') {
1725 ecb
->lno_in_preimage
++;
1726 emit_del_line(ecb
, data
, len
);
1728 ecb
->lno_in_postimage
++;
1729 emit_add_line(ecb
, data
, len
);
1735 emit_diff_symbol(ecb
->opt
, DIFF_SYMBOL_NO_LF_EOF
, NULL
, 0, 0);
1738 static void emit_rewrite_diff(const char *name_a
,
1740 struct diff_filespec
*one
,
1741 struct diff_filespec
*two
,
1742 struct userdiff_driver
*textconv_one
,
1743 struct userdiff_driver
*textconv_two
,
1744 struct diff_options
*o
)
1747 static struct strbuf a_name
= STRBUF_INIT
, b_name
= STRBUF_INIT
;
1748 const char *a_prefix
, *b_prefix
;
1749 char *data_one
, *data_two
;
1750 size_t size_one
, size_two
;
1751 struct emit_callback ecbdata
;
1752 struct strbuf out
= STRBUF_INIT
;
1754 if (diff_mnemonic_prefix
&& o
->flags
.reverse_diff
) {
1755 a_prefix
= o
->b_prefix
;
1756 b_prefix
= o
->a_prefix
;
1758 a_prefix
= o
->a_prefix
;
1759 b_prefix
= o
->b_prefix
;
1762 name_a
+= (*name_a
== '/');
1763 name_b
+= (*name_b
== '/');
1765 strbuf_reset(&a_name
);
1766 strbuf_reset(&b_name
);
1767 quote_two_c_style(&a_name
, a_prefix
, name_a
, 0);
1768 quote_two_c_style(&b_name
, b_prefix
, name_b
, 0);
1770 size_one
= fill_textconv(o
->repo
, textconv_one
, one
, &data_one
);
1771 size_two
= fill_textconv(o
->repo
, textconv_two
, two
, &data_two
);
1773 memset(&ecbdata
, 0, sizeof(ecbdata
));
1774 ecbdata
.color_diff
= want_color(o
->use_color
);
1775 ecbdata
.ws_rule
= whitespace_rule(o
->repo
->index
, name_b
);
1777 if (ecbdata
.ws_rule
& WS_BLANK_AT_EOF
) {
1779 mf1
.ptr
= (char *)data_one
;
1780 mf2
.ptr
= (char *)data_two
;
1781 mf1
.size
= size_one
;
1782 mf2
.size
= size_two
;
1783 check_blank_at_eof(&mf1
, &mf2
, &ecbdata
);
1785 ecbdata
.lno_in_preimage
= 1;
1786 ecbdata
.lno_in_postimage
= 1;
1788 lc_a
= count_lines(data_one
, size_one
);
1789 lc_b
= count_lines(data_two
, size_two
);
1791 emit_diff_symbol(o
, DIFF_SYMBOL_FILEPAIR_MINUS
,
1792 a_name
.buf
, a_name
.len
, 0);
1793 emit_diff_symbol(o
, DIFF_SYMBOL_FILEPAIR_PLUS
,
1794 b_name
.buf
, b_name
.len
, 0);
1796 strbuf_addstr(&out
, "@@ -");
1797 if (!o
->irreversible_delete
)
1798 add_line_count(&out
, lc_a
);
1800 strbuf_addstr(&out
, "?,?");
1801 strbuf_addstr(&out
, " +");
1802 add_line_count(&out
, lc_b
);
1803 strbuf_addstr(&out
, " @@\n");
1804 emit_diff_symbol(o
, DIFF_SYMBOL_REWRITE_DIFF
, out
.buf
, out
.len
, 0);
1805 strbuf_release(&out
);
1807 if (lc_a
&& !o
->irreversible_delete
)
1808 emit_rewrite_lines(&ecbdata
, '-', data_one
, size_one
);
1810 emit_rewrite_lines(&ecbdata
, '+', data_two
, size_two
);
1812 free((char *)data_one
);
1814 free((char *)data_two
);
1817 struct diff_words_buffer
{
1819 unsigned long alloc
;
1820 struct diff_words_orig
{
1821 const char *begin
, *end
;
1823 int orig_nr
, orig_alloc
;
1826 static void diff_words_append(char *line
, unsigned long len
,
1827 struct diff_words_buffer
*buffer
)
1829 ALLOC_GROW(buffer
->text
.ptr
, buffer
->text
.size
+ len
, buffer
->alloc
);
1832 memcpy(buffer
->text
.ptr
+ buffer
->text
.size
, line
, len
);
1833 buffer
->text
.size
+= len
;
1834 buffer
->text
.ptr
[buffer
->text
.size
] = '\0';
1837 struct diff_words_style_elem
{
1840 const char *color
; /* NULL; filled in by the setup code if
1841 * color is enabled */
1844 struct diff_words_style
{
1845 enum diff_words_type type
;
1846 struct diff_words_style_elem new_word
, old_word
, ctx
;
1847 const char *newline
;
1850 static struct diff_words_style diff_words_styles
[] = {
1851 { DIFF_WORDS_PORCELAIN
, {"+", "\n"}, {"-", "\n"}, {" ", "\n"}, "~\n" },
1852 { DIFF_WORDS_PLAIN
, {"{+", "+}"}, {"[-", "-]"}, {"", ""}, "\n" },
1853 { DIFF_WORDS_COLOR
, {"", ""}, {"", ""}, {"", ""}, "\n" }
1856 struct diff_words_data
{
1857 struct diff_words_buffer minus
, plus
;
1858 const char *current_plus
;
1860 struct diff_options
*opt
;
1861 regex_t
*word_regex
;
1862 enum diff_words_type type
;
1863 struct diff_words_style
*style
;
1866 static int fn_out_diff_words_write_helper(struct diff_options
*o
,
1867 struct diff_words_style_elem
*st_el
,
1868 const char *newline
,
1869 size_t count
, const char *buf
)
1872 struct strbuf sb
= STRBUF_INIT
;
1875 char *p
= memchr(buf
, '\n', count
);
1877 strbuf_addstr(&sb
, diff_line_prefix(o
));
1880 const char *reset
= st_el
->color
&& *st_el
->color
?
1881 GIT_COLOR_RESET
: NULL
;
1882 if (st_el
->color
&& *st_el
->color
)
1883 strbuf_addstr(&sb
, st_el
->color
);
1884 strbuf_addstr(&sb
, st_el
->prefix
);
1885 strbuf_add(&sb
, buf
, p
? p
- buf
: count
);
1886 strbuf_addstr(&sb
, st_el
->suffix
);
1888 strbuf_addstr(&sb
, reset
);
1893 strbuf_addstr(&sb
, newline
);
1894 count
-= p
+ 1 - buf
;
1898 emit_diff_symbol(o
, DIFF_SYMBOL_WORD_DIFF
,
1906 emit_diff_symbol(o
, DIFF_SYMBOL_WORD_DIFF
,
1908 strbuf_release(&sb
);
1913 * '--color-words' algorithm can be described as:
1915 * 1. collect the minus/plus lines of a diff hunk, divided into
1916 * minus-lines and plus-lines;
1918 * 2. break both minus-lines and plus-lines into words and
1919 * place them into two mmfile_t with one word for each line;
1921 * 3. use xdiff to run diff on the two mmfile_t to get the words level diff;
1923 * And for the common parts of the both file, we output the plus side text.
1924 * diff_words->current_plus is used to trace the current position of the plus file
1925 * which printed. diff_words->last_minus is used to trace the last minus word
1928 * For '--graph' to work with '--color-words', we need to output the graph prefix
1929 * on each line of color words output. Generally, there are two conditions on
1930 * which we should output the prefix.
1932 * 1. diff_words->last_minus == 0 &&
1933 * diff_words->current_plus == diff_words->plus.text.ptr
1935 * that is: the plus text must start as a new line, and if there is no minus
1936 * word printed, a graph prefix must be printed.
1938 * 2. diff_words->current_plus > diff_words->plus.text.ptr &&
1939 * *(diff_words->current_plus - 1) == '\n'
1941 * that is: a graph prefix must be printed following a '\n'
1943 static int color_words_output_graph_prefix(struct diff_words_data
*diff_words
)
1945 if ((diff_words
->last_minus
== 0 &&
1946 diff_words
->current_plus
== diff_words
->plus
.text
.ptr
) ||
1947 (diff_words
->current_plus
> diff_words
->plus
.text
.ptr
&&
1948 *(diff_words
->current_plus
- 1) == '\n')) {
1955 static void fn_out_diff_words_aux(void *priv
,
1956 long minus_first
, long minus_len
,
1957 long plus_first
, long plus_len
,
1958 const char *func
, long funclen
)
1960 struct diff_words_data
*diff_words
= priv
;
1961 struct diff_words_style
*style
= diff_words
->style
;
1962 const char *minus_begin
, *minus_end
, *plus_begin
, *plus_end
;
1963 struct diff_options
*opt
= diff_words
->opt
;
1964 const char *line_prefix
;
1967 line_prefix
= diff_line_prefix(opt
);
1969 /* POSIX requires that first be decremented by one if len == 0... */
1971 minus_begin
= diff_words
->minus
.orig
[minus_first
].begin
;
1973 diff_words
->minus
.orig
[minus_first
+ minus_len
- 1].end
;
1975 minus_begin
= minus_end
=
1976 diff_words
->minus
.orig
[minus_first
].end
;
1979 plus_begin
= diff_words
->plus
.orig
[plus_first
].begin
;
1980 plus_end
= diff_words
->plus
.orig
[plus_first
+ plus_len
- 1].end
;
1982 plus_begin
= plus_end
= diff_words
->plus
.orig
[plus_first
].end
;
1984 if (color_words_output_graph_prefix(diff_words
)) {
1985 fputs(line_prefix
, diff_words
->opt
->file
);
1987 if (diff_words
->current_plus
!= plus_begin
) {
1988 fn_out_diff_words_write_helper(diff_words
->opt
,
1989 &style
->ctx
, style
->newline
,
1990 plus_begin
- diff_words
->current_plus
,
1991 diff_words
->current_plus
);
1993 if (minus_begin
!= minus_end
) {
1994 fn_out_diff_words_write_helper(diff_words
->opt
,
1995 &style
->old_word
, style
->newline
,
1996 minus_end
- minus_begin
, minus_begin
);
1998 if (plus_begin
!= plus_end
) {
1999 fn_out_diff_words_write_helper(diff_words
->opt
,
2000 &style
->new_word
, style
->newline
,
2001 plus_end
- plus_begin
, plus_begin
);
2004 diff_words
->current_plus
= plus_end
;
2005 diff_words
->last_minus
= minus_first
;
2008 /* This function starts looking at *begin, and returns 0 iff a word was found. */
2009 static int find_word_boundaries(mmfile_t
*buffer
, regex_t
*word_regex
,
2010 int *begin
, int *end
)
2012 while (word_regex
&& *begin
< buffer
->size
) {
2013 regmatch_t match
[1];
2014 if (!regexec_buf(word_regex
, buffer
->ptr
+ *begin
,
2015 buffer
->size
- *begin
, 1, match
, 0)) {
2016 char *p
= memchr(buffer
->ptr
+ *begin
+ match
[0].rm_so
,
2017 '\n', match
[0].rm_eo
- match
[0].rm_so
);
2018 *end
= p
? p
- buffer
->ptr
: match
[0].rm_eo
+ *begin
;
2019 *begin
+= match
[0].rm_so
;
2023 return *begin
> *end
;
2029 /* find the next word */
2030 while (*begin
< buffer
->size
&& isspace(buffer
->ptr
[*begin
]))
2032 if (*begin
>= buffer
->size
)
2035 /* find the end of the word */
2037 while (*end
< buffer
->size
&& !isspace(buffer
->ptr
[*end
]))
2044 * This function splits the words in buffer->text, stores the list with
2045 * newline separator into out, and saves the offsets of the original words
2048 static void diff_words_fill(struct diff_words_buffer
*buffer
, mmfile_t
*out
,
2049 regex_t
*word_regex
)
2057 /* fake an empty "0th" word */
2058 ALLOC_GROW(buffer
->orig
, 1, buffer
->orig_alloc
);
2059 buffer
->orig
[0].begin
= buffer
->orig
[0].end
= buffer
->text
.ptr
;
2060 buffer
->orig_nr
= 1;
2062 for (i
= 0; i
< buffer
->text
.size
; i
++) {
2063 if (find_word_boundaries(&buffer
->text
, word_regex
, &i
, &j
))
2066 /* store original boundaries */
2067 ALLOC_GROW(buffer
->orig
, buffer
->orig_nr
+ 1,
2068 buffer
->orig_alloc
);
2069 buffer
->orig
[buffer
->orig_nr
].begin
= buffer
->text
.ptr
+ i
;
2070 buffer
->orig
[buffer
->orig_nr
].end
= buffer
->text
.ptr
+ j
;
2073 /* store one word */
2074 ALLOC_GROW(out
->ptr
, out
->size
+ j
- i
+ 1, alloc
);
2075 memcpy(out
->ptr
+ out
->size
, buffer
->text
.ptr
+ i
, j
- i
);
2076 out
->ptr
[out
->size
+ j
- i
] = '\n';
2077 out
->size
+= j
- i
+ 1;
2083 /* this executes the word diff on the accumulated buffers */
2084 static void diff_words_show(struct diff_words_data
*diff_words
)
2088 mmfile_t minus
, plus
;
2089 struct diff_words_style
*style
= diff_words
->style
;
2091 struct diff_options
*opt
= diff_words
->opt
;
2092 const char *line_prefix
;
2095 line_prefix
= diff_line_prefix(opt
);
2097 /* special case: only removal */
2098 if (!diff_words
->plus
.text
.size
) {
2099 emit_diff_symbol(diff_words
->opt
, DIFF_SYMBOL_WORD_DIFF
,
2100 line_prefix
, strlen(line_prefix
), 0);
2101 fn_out_diff_words_write_helper(diff_words
->opt
,
2102 &style
->old_word
, style
->newline
,
2103 diff_words
->minus
.text
.size
,
2104 diff_words
->minus
.text
.ptr
);
2105 diff_words
->minus
.text
.size
= 0;
2109 diff_words
->current_plus
= diff_words
->plus
.text
.ptr
;
2110 diff_words
->last_minus
= 0;
2112 memset(&xpp
, 0, sizeof(xpp
));
2113 memset(&xecfg
, 0, sizeof(xecfg
));
2114 diff_words_fill(&diff_words
->minus
, &minus
, diff_words
->word_regex
);
2115 diff_words_fill(&diff_words
->plus
, &plus
, diff_words
->word_regex
);
2117 /* as only the hunk header will be parsed, we need a 0-context */
2119 if (xdi_diff_outf(&minus
, &plus
, fn_out_diff_words_aux
, NULL
,
2120 diff_words
, &xpp
, &xecfg
))
2121 die("unable to generate word diff");
2124 if (diff_words
->current_plus
!= diff_words
->plus
.text
.ptr
+
2125 diff_words
->plus
.text
.size
) {
2126 if (color_words_output_graph_prefix(diff_words
))
2127 emit_diff_symbol(diff_words
->opt
, DIFF_SYMBOL_WORD_DIFF
,
2128 line_prefix
, strlen(line_prefix
), 0);
2129 fn_out_diff_words_write_helper(diff_words
->opt
,
2130 &style
->ctx
, style
->newline
,
2131 diff_words
->plus
.text
.ptr
+ diff_words
->plus
.text
.size
2132 - diff_words
->current_plus
, diff_words
->current_plus
);
2134 diff_words
->minus
.text
.size
= diff_words
->plus
.text
.size
= 0;
2137 /* In "color-words" mode, show word-diff of words accumulated in the buffer */
2138 static void diff_words_flush(struct emit_callback
*ecbdata
)
2140 struct diff_options
*wo
= ecbdata
->diff_words
->opt
;
2142 if (ecbdata
->diff_words
->minus
.text
.size
||
2143 ecbdata
->diff_words
->plus
.text
.size
)
2144 diff_words_show(ecbdata
->diff_words
);
2146 if (wo
->emitted_symbols
) {
2147 struct diff_options
*o
= ecbdata
->opt
;
2148 struct emitted_diff_symbols
*wol
= wo
->emitted_symbols
;
2153 * Instead of appending each, concat all words to a line?
2155 for (i
= 0; i
< wol
->nr
; i
++)
2156 append_emitted_diff_symbol(o
, &wol
->buf
[i
]);
2158 for (i
= 0; i
< wol
->nr
; i
++)
2159 free((void *)wol
->buf
[i
].line
);
2165 static void diff_filespec_load_driver(struct diff_filespec
*one
,
2166 struct index_state
*istate
)
2168 /* Use already-loaded driver */
2172 if (S_ISREG(one
->mode
))
2173 one
->driver
= userdiff_find_by_path(istate
, one
->path
);
2175 /* Fallback to default settings */
2177 one
->driver
= userdiff_find_by_name("default");
2180 static const char *userdiff_word_regex(struct diff_filespec
*one
,
2181 struct index_state
*istate
)
2183 diff_filespec_load_driver(one
, istate
);
2184 return one
->driver
->word_regex
;
2187 static void init_diff_words_data(struct emit_callback
*ecbdata
,
2188 struct diff_options
*orig_opts
,
2189 struct diff_filespec
*one
,
2190 struct diff_filespec
*two
)
2193 struct diff_options
*o
= xmalloc(sizeof(struct diff_options
));
2194 memcpy(o
, orig_opts
, sizeof(struct diff_options
));
2196 CALLOC_ARRAY(ecbdata
->diff_words
, 1);
2197 ecbdata
->diff_words
->type
= o
->word_diff
;
2198 ecbdata
->diff_words
->opt
= o
;
2200 if (orig_opts
->emitted_symbols
)
2201 CALLOC_ARRAY(o
->emitted_symbols
, 1);
2204 o
->word_regex
= userdiff_word_regex(one
, o
->repo
->index
);
2206 o
->word_regex
= userdiff_word_regex(two
, o
->repo
->index
);
2208 o
->word_regex
= diff_word_regex_cfg
;
2209 if (o
->word_regex
) {
2210 ecbdata
->diff_words
->word_regex
= (regex_t
*)
2211 xmalloc(sizeof(regex_t
));
2212 if (regcomp(ecbdata
->diff_words
->word_regex
,
2214 REG_EXTENDED
| REG_NEWLINE
))
2215 die("invalid regular expression: %s",
2218 for (i
= 0; i
< ARRAY_SIZE(diff_words_styles
); i
++) {
2219 if (o
->word_diff
== diff_words_styles
[i
].type
) {
2220 ecbdata
->diff_words
->style
=
2221 &diff_words_styles
[i
];
2225 if (want_color(o
->use_color
)) {
2226 struct diff_words_style
*st
= ecbdata
->diff_words
->style
;
2227 st
->old_word
.color
= diff_get_color_opt(o
, DIFF_FILE_OLD
);
2228 st
->new_word
.color
= diff_get_color_opt(o
, DIFF_FILE_NEW
);
2229 st
->ctx
.color
= diff_get_color_opt(o
, DIFF_CONTEXT
);
2233 static void free_diff_words_data(struct emit_callback
*ecbdata
)
2235 if (ecbdata
->diff_words
) {
2236 diff_words_flush(ecbdata
);
2237 free_emitted_diff_symbols(ecbdata
->diff_words
->opt
->emitted_symbols
);
2238 free (ecbdata
->diff_words
->opt
);
2239 free (ecbdata
->diff_words
->minus
.text
.ptr
);
2240 free (ecbdata
->diff_words
->minus
.orig
);
2241 free (ecbdata
->diff_words
->plus
.text
.ptr
);
2242 free (ecbdata
->diff_words
->plus
.orig
);
2243 if (ecbdata
->diff_words
->word_regex
) {
2244 regfree(ecbdata
->diff_words
->word_regex
);
2245 free(ecbdata
->diff_words
->word_regex
);
2247 FREE_AND_NULL(ecbdata
->diff_words
);
2251 const char *diff_get_color(int diff_use_color
, enum color_diff ix
)
2253 if (want_color(diff_use_color
))
2254 return diff_colors
[ix
];
2258 const char *diff_line_prefix(struct diff_options
*opt
)
2260 struct strbuf
*msgbuf
;
2261 if (!opt
->output_prefix
)
2264 msgbuf
= opt
->output_prefix(opt
, opt
->output_prefix_data
);
2268 static unsigned long sane_truncate_line(char *line
, unsigned long len
)
2271 unsigned long allot
;
2277 (void) utf8_width(&cp
, &l
);
2279 break; /* truncated in the middle? */
2284 static void find_lno(const char *line
, struct emit_callback
*ecbdata
)
2287 ecbdata
->lno_in_preimage
= 0;
2288 ecbdata
->lno_in_postimage
= 0;
2289 p
= strchr(line
, '-');
2291 return; /* cannot happen */
2292 ecbdata
->lno_in_preimage
= strtol(p
+ 1, NULL
, 10);
2295 return; /* cannot happen */
2296 ecbdata
->lno_in_postimage
= strtol(p
+ 1, NULL
, 10);
2299 static int fn_out_consume(void *priv
, char *line
, unsigned long len
)
2301 struct emit_callback
*ecbdata
= priv
;
2302 struct diff_options
*o
= ecbdata
->opt
;
2304 o
->found_changes
= 1;
2306 if (ecbdata
->header
) {
2307 emit_diff_symbol(o
, DIFF_SYMBOL_HEADER
,
2308 ecbdata
->header
->buf
, ecbdata
->header
->len
, 0);
2309 strbuf_reset(ecbdata
->header
);
2310 ecbdata
->header
= NULL
;
2313 if (ecbdata
->label_path
[0]) {
2314 emit_diff_symbol(o
, DIFF_SYMBOL_FILEPAIR_MINUS
,
2315 ecbdata
->label_path
[0],
2316 strlen(ecbdata
->label_path
[0]), 0);
2317 emit_diff_symbol(o
, DIFF_SYMBOL_FILEPAIR_PLUS
,
2318 ecbdata
->label_path
[1],
2319 strlen(ecbdata
->label_path
[1]), 0);
2320 ecbdata
->label_path
[0] = ecbdata
->label_path
[1] = NULL
;
2323 if (diff_suppress_blank_empty
2324 && len
== 2 && line
[0] == ' ' && line
[1] == '\n') {
2329 if (line
[0] == '@') {
2330 if (ecbdata
->diff_words
)
2331 diff_words_flush(ecbdata
);
2332 len
= sane_truncate_line(line
, len
);
2333 find_lno(line
, ecbdata
);
2334 emit_hunk_header(ecbdata
, line
, len
);
2338 if (ecbdata
->diff_words
) {
2339 enum diff_symbol s
=
2340 ecbdata
->diff_words
->type
== DIFF_WORDS_PORCELAIN
?
2341 DIFF_SYMBOL_WORDS_PORCELAIN
: DIFF_SYMBOL_WORDS
;
2342 if (line
[0] == '-') {
2343 diff_words_append(line
, len
,
2344 &ecbdata
->diff_words
->minus
);
2346 } else if (line
[0] == '+') {
2347 diff_words_append(line
, len
,
2348 &ecbdata
->diff_words
->plus
);
2350 } else if (starts_with(line
, "\\ ")) {
2352 * Eat the "no newline at eof" marker as if we
2353 * saw a "+" or "-" line with nothing on it,
2354 * and return without diff_words_flush() to
2355 * defer processing. If this is the end of
2356 * preimage, more "+" lines may come after it.
2360 diff_words_flush(ecbdata
);
2361 emit_diff_symbol(o
, s
, line
, len
, 0);
2367 ecbdata
->lno_in_postimage
++;
2368 emit_add_line(ecbdata
, line
+ 1, len
- 1);
2371 ecbdata
->lno_in_preimage
++;
2372 emit_del_line(ecbdata
, line
+ 1, len
- 1);
2375 ecbdata
->lno_in_postimage
++;
2376 ecbdata
->lno_in_preimage
++;
2377 emit_context_line(ecbdata
, line
+ 1, len
- 1);
2380 /* incomplete line at the end */
2381 ecbdata
->lno_in_preimage
++;
2382 emit_diff_symbol(o
, DIFF_SYMBOL_CONTEXT_INCOMPLETE
,
2389 static void pprint_rename(struct strbuf
*name
, const char *a
, const char *b
)
2391 const char *old_name
= a
;
2392 const char *new_name
= b
;
2393 int pfx_length
, sfx_length
;
2394 int pfx_adjust_for_slash
;
2395 int len_a
= strlen(a
);
2396 int len_b
= strlen(b
);
2397 int a_midlen
, b_midlen
;
2398 int qlen_a
= quote_c_style(a
, NULL
, NULL
, 0);
2399 int qlen_b
= quote_c_style(b
, NULL
, NULL
, 0);
2401 if (qlen_a
|| qlen_b
) {
2402 quote_c_style(a
, name
, NULL
, 0);
2403 strbuf_addstr(name
, " => ");
2404 quote_c_style(b
, name
, NULL
, 0);
2408 /* Find common prefix */
2410 while (*old_name
&& *new_name
&& *old_name
== *new_name
) {
2411 if (*old_name
== '/')
2412 pfx_length
= old_name
- a
+ 1;
2417 /* Find common suffix */
2418 old_name
= a
+ len_a
;
2419 new_name
= b
+ len_b
;
2422 * If there is a common prefix, it must end in a slash. In
2423 * that case we let this loop run 1 into the prefix to see the
2426 * If there is no common prefix, we cannot do this as it would
2427 * underrun the input strings.
2429 pfx_adjust_for_slash
= (pfx_length
? 1 : 0);
2430 while (a
+ pfx_length
- pfx_adjust_for_slash
<= old_name
&&
2431 b
+ pfx_length
- pfx_adjust_for_slash
<= new_name
&&
2432 *old_name
== *new_name
) {
2433 if (*old_name
== '/')
2434 sfx_length
= len_a
- (old_name
- a
);
2440 * pfx{mid-a => mid-b}sfx
2441 * {pfx-a => pfx-b}sfx
2442 * pfx{sfx-a => sfx-b}
2445 a_midlen
= len_a
- pfx_length
- sfx_length
;
2446 b_midlen
= len_b
- pfx_length
- sfx_length
;
2452 strbuf_grow(name
, pfx_length
+ a_midlen
+ b_midlen
+ sfx_length
+ 7);
2453 if (pfx_length
+ sfx_length
) {
2454 strbuf_add(name
, a
, pfx_length
);
2455 strbuf_addch(name
, '{');
2457 strbuf_add(name
, a
+ pfx_length
, a_midlen
);
2458 strbuf_addstr(name
, " => ");
2459 strbuf_add(name
, b
+ pfx_length
, b_midlen
);
2460 if (pfx_length
+ sfx_length
) {
2461 strbuf_addch(name
, '}');
2462 strbuf_add(name
, a
+ len_a
- sfx_length
, sfx_length
);
2466 static struct diffstat_file
*diffstat_add(struct diffstat_t
*diffstat
,
2470 struct diffstat_file
*x
;
2472 ALLOC_GROW(diffstat
->files
, diffstat
->nr
+ 1, diffstat
->alloc
);
2473 diffstat
->files
[diffstat
->nr
++] = x
;
2475 x
->from_name
= xstrdup(name_a
);
2476 x
->name
= xstrdup(name_b
);
2480 x
->from_name
= NULL
;
2481 x
->name
= xstrdup(name_a
);
2486 static int diffstat_consume(void *priv
, char *line
, unsigned long len
)
2488 struct diffstat_t
*diffstat
= priv
;
2489 struct diffstat_file
*x
= diffstat
->files
[diffstat
->nr
- 1];
2492 BUG("xdiff fed us an empty line");
2496 else if (line
[0] == '-')
2501 const char mime_boundary_leader
[] = "------------";
2503 static int scale_linear(int it
, int width
, int max_change
)
2508 * make sure that at least one '-' or '+' is printed if
2509 * there is any change to this path. The easiest way is to
2510 * scale linearly as if the allotted width is one column shorter
2511 * than it is, and then add 1 to the result.
2513 return 1 + (it
* (width
- 1) / max_change
);
2516 static void show_graph(struct strbuf
*out
, char ch
, int cnt
,
2517 const char *set
, const char *reset
)
2521 strbuf_addstr(out
, set
);
2522 strbuf_addchars(out
, ch
, cnt
);
2523 strbuf_addstr(out
, reset
);
2526 static void fill_print_name(struct diffstat_file
*file
)
2528 struct strbuf pname
= STRBUF_INIT
;
2530 if (file
->print_name
)
2533 if (file
->is_renamed
)
2534 pprint_rename(&pname
, file
->from_name
, file
->name
);
2536 quote_c_style(file
->name
, &pname
, NULL
, 0);
2539 strbuf_addf(&pname
, " (%s)", file
->comments
);
2541 file
->print_name
= strbuf_detach(&pname
, NULL
);
2544 static void print_stat_summary_inserts_deletes(struct diff_options
*options
,
2545 int files
, int insertions
, int deletions
)
2547 struct strbuf sb
= STRBUF_INIT
;
2550 assert(insertions
== 0 && deletions
== 0);
2551 emit_diff_symbol(options
, DIFF_SYMBOL_STATS_SUMMARY_NO_FILES
,
2557 (files
== 1) ? " %d file changed" : " %d files changed",
2561 * For binary diff, the caller may want to print "x files
2562 * changed" with insertions == 0 && deletions == 0.
2564 * Not omitting "0 insertions(+), 0 deletions(-)" in this case
2565 * is probably less confusing (i.e skip over "2 files changed
2566 * but nothing about added/removed lines? Is this a bug in Git?").
2568 if (insertions
|| deletions
== 0) {
2570 (insertions
== 1) ? ", %d insertion(+)" : ", %d insertions(+)",
2574 if (deletions
|| insertions
== 0) {
2576 (deletions
== 1) ? ", %d deletion(-)" : ", %d deletions(-)",
2579 strbuf_addch(&sb
, '\n');
2580 emit_diff_symbol(options
, DIFF_SYMBOL_STATS_SUMMARY_INSERTS_DELETES
,
2582 strbuf_release(&sb
);
2585 void print_stat_summary(FILE *fp
, int files
,
2586 int insertions
, int deletions
)
2588 struct diff_options o
;
2589 memset(&o
, 0, sizeof(o
));
2592 print_stat_summary_inserts_deletes(&o
, files
, insertions
, deletions
);
2595 static void show_stats(struct diffstat_t
*data
, struct diff_options
*options
)
2597 int i
, len
, add
, del
, adds
= 0, dels
= 0;
2598 uintmax_t max_change
= 0, max_len
= 0;
2599 int total_files
= data
->nr
, count
;
2600 int width
, name_width
, graph_width
, number_width
= 0, bin_width
= 0;
2601 const char *reset
, *add_c
, *del_c
;
2602 int extra_shown
= 0;
2603 const char *line_prefix
= diff_line_prefix(options
);
2604 struct strbuf out
= STRBUF_INIT
;
2609 count
= options
->stat_count
? options
->stat_count
: data
->nr
;
2611 reset
= diff_get_color_opt(options
, DIFF_RESET
);
2612 add_c
= diff_get_color_opt(options
, DIFF_FILE_NEW
);
2613 del_c
= diff_get_color_opt(options
, DIFF_FILE_OLD
);
2616 * Find the longest filename and max number of changes
2618 for (i
= 0; (i
< count
) && (i
< data
->nr
); i
++) {
2619 struct diffstat_file
*file
= data
->files
[i
];
2620 uintmax_t change
= file
->added
+ file
->deleted
;
2622 if (!file
->is_interesting
&& (change
== 0)) {
2623 count
++; /* not shown == room for one more */
2626 fill_print_name(file
);
2627 len
= utf8_strwidth(file
->print_name
);
2631 if (file
->is_unmerged
) {
2632 /* "Unmerged" is 8 characters */
2633 bin_width
= bin_width
< 8 ? 8 : bin_width
;
2636 if (file
->is_binary
) {
2637 /* "Bin XXX -> YYY bytes" */
2638 int w
= 14 + decimal_width(file
->added
)
2639 + decimal_width(file
->deleted
);
2640 bin_width
= bin_width
< w
? w
: bin_width
;
2641 /* Display change counts aligned with "Bin" */
2646 if (max_change
< change
)
2647 max_change
= change
;
2649 count
= i
; /* where we can stop scanning in data->files[] */
2652 * We have width = stat_width or term_columns() columns total.
2653 * We want a maximum of min(max_len, stat_name_width) for the name part.
2654 * We want a maximum of min(max_change, stat_graph_width) for the +- part.
2655 * We also need 1 for " " and 4 + decimal_width(max_change)
2656 * for " | NNNN " and one the empty column at the end, altogether
2657 * 6 + decimal_width(max_change).
2659 * If there's not enough space, we will use the smaller of
2660 * stat_name_width (if set) and 5/8*width for the filename,
2661 * and the rest for constant elements + graph part, but no more
2662 * than stat_graph_width for the graph part.
2663 * (5/8 gives 50 for filename and 30 for the constant parts + graph
2664 * for the standard terminal size).
2666 * In other words: stat_width limits the maximum width, and
2667 * stat_name_width fixes the maximum width of the filename,
2668 * and is also used to divide available columns if there
2671 * Binary files are displayed with "Bin XXX -> YYY bytes"
2672 * instead of the change count and graph. This part is treated
2673 * similarly to the graph part, except that it is not
2674 * "scaled". If total width is too small to accommodate the
2675 * guaranteed minimum width of the filename part and the
2676 * separators and this message, this message will "overflow"
2677 * making the line longer than the maximum width.
2681 * NEEDSWORK: line_prefix is often used for "log --graph" output
2682 * and contains ANSI-colored string. utf8_strnwidth() should be
2683 * used to correctly count the display width instead of strlen().
2685 if (options
->stat_width
== -1)
2686 width
= term_columns() - strlen(line_prefix
);
2688 width
= options
->stat_width
? options
->stat_width
: 80;
2689 number_width
= decimal_width(max_change
) > number_width
?
2690 decimal_width(max_change
) : number_width
;
2692 if (options
->stat_graph_width
== -1)
2693 options
->stat_graph_width
= diff_stat_graph_width
;
2696 * Guarantee 3/8*16==6 for the graph part
2697 * and 5/8*16==10 for the filename part
2699 if (width
< 16 + 6 + number_width
)
2700 width
= 16 + 6 + number_width
;
2703 * First assign sizes that are wanted, ignoring available width.
2704 * strlen("Bin XXX -> YYY bytes") == bin_width, and the part
2705 * starting from "XXX" should fit in graph_width.
2707 graph_width
= max_change
+ 4 > bin_width
? max_change
: bin_width
- 4;
2708 if (options
->stat_graph_width
&&
2709 options
->stat_graph_width
< graph_width
)
2710 graph_width
= options
->stat_graph_width
;
2712 name_width
= (options
->stat_name_width
> 0 &&
2713 options
->stat_name_width
< max_len
) ?
2714 options
->stat_name_width
: max_len
;
2717 * Adjust adjustable widths not to exceed maximum width
2719 if (name_width
+ number_width
+ 6 + graph_width
> width
) {
2720 if (graph_width
> width
* 3/8 - number_width
- 6) {
2721 graph_width
= width
* 3/8 - number_width
- 6;
2722 if (graph_width
< 6)
2726 if (options
->stat_graph_width
&&
2727 graph_width
> options
->stat_graph_width
)
2728 graph_width
= options
->stat_graph_width
;
2729 if (name_width
> width
- number_width
- 6 - graph_width
)
2730 name_width
= width
- number_width
- 6 - graph_width
;
2732 graph_width
= width
- number_width
- 6 - name_width
;
2736 * From here name_width is the width of the name area,
2737 * and graph_width is the width of the graph area.
2738 * max_change is used to scale graph properly.
2740 for (i
= 0; i
< count
; i
++) {
2741 const char *prefix
= "";
2742 struct diffstat_file
*file
= data
->files
[i
];
2743 char *name
= file
->print_name
;
2744 uintmax_t added
= file
->added
;
2745 uintmax_t deleted
= file
->deleted
;
2746 int name_len
, padding
;
2748 if (!file
->is_interesting
&& (added
+ deleted
== 0))
2752 * "scale" the filename
2755 name_len
= utf8_strwidth(name
);
2756 if (name_width
< name_len
) {
2761 * NEEDSWORK: (name_len - len) counts the display
2762 * width, which would be shorter than the byte
2763 * length of the corresponding substring.
2764 * Advancing "name" by that number of bytes does
2765 * *NOT* skip over that many columns, so it is
2766 * very likely that chomping the pathname at the
2767 * slash we will find starting from "name" will
2768 * leave the resulting string still too long.
2770 name
+= name_len
- len
;
2771 slash
= strchr(name
, '/');
2775 padding
= len
- utf8_strwidth(name
);
2779 if (file
->is_binary
) {
2780 strbuf_addf(&out
, " %s%s%*s | %*s",
2781 prefix
, name
, padding
, "",
2782 number_width
, "Bin");
2783 if (!added
&& !deleted
) {
2784 strbuf_addch(&out
, '\n');
2785 emit_diff_symbol(options
, DIFF_SYMBOL_STATS_LINE
,
2786 out
.buf
, out
.len
, 0);
2790 strbuf_addf(&out
, " %s%"PRIuMAX
"%s",
2791 del_c
, deleted
, reset
);
2792 strbuf_addstr(&out
, " -> ");
2793 strbuf_addf(&out
, "%s%"PRIuMAX
"%s",
2794 add_c
, added
, reset
);
2795 strbuf_addstr(&out
, " bytes\n");
2796 emit_diff_symbol(options
, DIFF_SYMBOL_STATS_LINE
,
2797 out
.buf
, out
.len
, 0);
2801 else if (file
->is_unmerged
) {
2802 strbuf_addf(&out
, " %s%s%*s | %*s",
2803 prefix
, name
, padding
, "",
2804 number_width
, "Unmerged");
2805 emit_diff_symbol(options
, DIFF_SYMBOL_STATS_LINE
,
2806 out
.buf
, out
.len
, 0);
2812 * scale the add/delete
2817 if (graph_width
<= max_change
) {
2818 int total
= scale_linear(add
+ del
, graph_width
, max_change
);
2819 if (total
< 2 && add
&& del
)
2820 /* width >= 2 due to the sanity check */
2823 add
= scale_linear(add
, graph_width
, max_change
);
2826 del
= scale_linear(del
, graph_width
, max_change
);
2830 strbuf_addf(&out
, " %s%s%*s | %*"PRIuMAX
"%s",
2831 prefix
, name
, padding
, "",
2832 number_width
, added
+ deleted
,
2833 added
+ deleted
? " " : "");
2834 show_graph(&out
, '+', add
, add_c
, reset
);
2835 show_graph(&out
, '-', del
, del_c
, reset
);
2836 strbuf_addch(&out
, '\n');
2837 emit_diff_symbol(options
, DIFF_SYMBOL_STATS_LINE
,
2838 out
.buf
, out
.len
, 0);
2842 for (i
= 0; i
< data
->nr
; i
++) {
2843 struct diffstat_file
*file
= data
->files
[i
];
2844 uintmax_t added
= file
->added
;
2845 uintmax_t deleted
= file
->deleted
;
2847 if (file
->is_unmerged
||
2848 (!file
->is_interesting
&& (added
+ deleted
== 0))) {
2853 if (!file
->is_binary
) {
2860 emit_diff_symbol(options
,
2861 DIFF_SYMBOL_STATS_SUMMARY_ABBREV
,
2866 print_stat_summary_inserts_deletes(options
, total_files
, adds
, dels
);
2867 strbuf_release(&out
);
2870 static void show_shortstats(struct diffstat_t
*data
, struct diff_options
*options
)
2872 int i
, adds
= 0, dels
= 0, total_files
= data
->nr
;
2877 for (i
= 0; i
< data
->nr
; i
++) {
2878 int added
= data
->files
[i
]->added
;
2879 int deleted
= data
->files
[i
]->deleted
;
2881 if (data
->files
[i
]->is_unmerged
||
2882 (!data
->files
[i
]->is_interesting
&& (added
+ deleted
== 0))) {
2884 } else if (!data
->files
[i
]->is_binary
) { /* don't count bytes */
2889 print_stat_summary_inserts_deletes(options
, total_files
, adds
, dels
);
2892 static void show_numstat(struct diffstat_t
*data
, struct diff_options
*options
)
2899 for (i
= 0; i
< data
->nr
; i
++) {
2900 struct diffstat_file
*file
= data
->files
[i
];
2902 fprintf(options
->file
, "%s", diff_line_prefix(options
));
2904 if (file
->is_binary
)
2905 fprintf(options
->file
, "-\t-\t");
2907 fprintf(options
->file
,
2908 "%"PRIuMAX
"\t%"PRIuMAX
"\t",
2909 file
->added
, file
->deleted
);
2910 if (options
->line_termination
) {
2911 fill_print_name(file
);
2912 if (!file
->is_renamed
)
2913 write_name_quoted(file
->name
, options
->file
,
2914 options
->line_termination
);
2916 fputs(file
->print_name
, options
->file
);
2917 putc(options
->line_termination
, options
->file
);
2920 if (file
->is_renamed
) {
2921 putc('\0', options
->file
);
2922 write_name_quoted(file
->from_name
, options
->file
, '\0');
2924 write_name_quoted(file
->name
, options
->file
, '\0');
2929 struct dirstat_file
{
2931 unsigned long changed
;
2934 struct dirstat_dir
{
2935 struct dirstat_file
*files
;
2936 int alloc
, nr
, permille
, cumulative
;
2939 static long gather_dirstat(struct diff_options
*opt
, struct dirstat_dir
*dir
,
2940 unsigned long changed
, const char *base
, int baselen
)
2942 unsigned long sum_changes
= 0;
2943 unsigned int sources
= 0;
2944 const char *line_prefix
= diff_line_prefix(opt
);
2947 struct dirstat_file
*f
= dir
->files
;
2948 int namelen
= strlen(f
->name
);
2949 unsigned long changes
;
2952 if (namelen
< baselen
)
2954 if (memcmp(f
->name
, base
, baselen
))
2956 slash
= strchr(f
->name
+ baselen
, '/');
2958 int newbaselen
= slash
+ 1 - f
->name
;
2959 changes
= gather_dirstat(opt
, dir
, changed
, f
->name
, newbaselen
);
2962 changes
= f
->changed
;
2967 sum_changes
+= changes
;
2971 * We don't report dirstat's for
2973 * - or cases where everything came from a single directory
2974 * under this directory (sources == 1).
2976 if (baselen
&& sources
!= 1) {
2978 int permille
= sum_changes
* 1000 / changed
;
2979 if (permille
>= dir
->permille
) {
2980 fprintf(opt
->file
, "%s%4d.%01d%% %.*s\n", line_prefix
,
2981 permille
/ 10, permille
% 10, baselen
, base
);
2982 if (!dir
->cumulative
)
2990 static int dirstat_compare(const void *_a
, const void *_b
)
2992 const struct dirstat_file
*a
= _a
;
2993 const struct dirstat_file
*b
= _b
;
2994 return strcmp(a
->name
, b
->name
);
2997 static void show_dirstat(struct diff_options
*options
)
3000 unsigned long changed
;
3001 struct dirstat_dir dir
;
3002 struct diff_queue_struct
*q
= &diff_queued_diff
;
3007 dir
.permille
= options
->dirstat_permille
;
3008 dir
.cumulative
= options
->flags
.dirstat_cumulative
;
3011 for (i
= 0; i
< q
->nr
; i
++) {
3012 struct diff_filepair
*p
= q
->queue
[i
];
3014 unsigned long copied
, added
, damage
;
3015 struct diff_populate_filespec_options dpf_options
= {
3016 .check_size_only
= 1,
3019 name
= p
->two
->path
? p
->two
->path
: p
->one
->path
;
3021 if (p
->one
->oid_valid
&& p
->two
->oid_valid
&&
3022 oideq(&p
->one
->oid
, &p
->two
->oid
)) {
3024 * The SHA1 has not changed, so pre-/post-content is
3025 * identical. We can therefore skip looking at the
3026 * file contents altogether.
3032 if (options
->flags
.dirstat_by_file
) {
3034 * In --dirstat-by-file mode, we don't really need to
3035 * look at the actual file contents at all.
3036 * The fact that the SHA1 changed is enough for us to
3037 * add this file to the list of results
3038 * (with each file contributing equal damage).
3044 if (DIFF_FILE_VALID(p
->one
) && DIFF_FILE_VALID(p
->two
)) {
3045 diff_populate_filespec(options
->repo
, p
->one
, NULL
);
3046 diff_populate_filespec(options
->repo
, p
->two
, NULL
);
3047 diffcore_count_changes(options
->repo
,
3048 p
->one
, p
->two
, NULL
, NULL
,
3050 diff_free_filespec_data(p
->one
);
3051 diff_free_filespec_data(p
->two
);
3052 } else if (DIFF_FILE_VALID(p
->one
)) {
3053 diff_populate_filespec(options
->repo
, p
->one
, &dpf_options
);
3055 diff_free_filespec_data(p
->one
);
3056 } else if (DIFF_FILE_VALID(p
->two
)) {
3057 diff_populate_filespec(options
->repo
, p
->two
, &dpf_options
);
3059 added
= p
->two
->size
;
3060 diff_free_filespec_data(p
->two
);
3065 * Original minus copied is the removed material,
3066 * added is the new material. They are both damages
3067 * made to the preimage.
3068 * If the resulting damage is zero, we know that
3069 * diffcore_count_changes() considers the two entries to
3070 * be identical, but since the oid changed, we
3071 * know that there must have been _some_ kind of change,
3072 * so we force all entries to have damage > 0.
3074 damage
= (p
->one
->size
- copied
) + added
;
3079 ALLOC_GROW(dir
.files
, dir
.nr
+ 1, dir
.alloc
);
3080 dir
.files
[dir
.nr
].name
= name
;
3081 dir
.files
[dir
.nr
].changed
= damage
;
3086 /* This can happen even with many files, if everything was renames */
3090 /* Show all directories with more than x% of the changes */
3091 QSORT(dir
.files
, dir
.nr
, dirstat_compare
);
3092 gather_dirstat(options
, &dir
, changed
, "", 0);
3095 static void show_dirstat_by_line(struct diffstat_t
*data
, struct diff_options
*options
)
3098 unsigned long changed
;
3099 struct dirstat_dir dir
;
3107 dir
.permille
= options
->dirstat_permille
;
3108 dir
.cumulative
= options
->flags
.dirstat_cumulative
;
3111 for (i
= 0; i
< data
->nr
; i
++) {
3112 struct diffstat_file
*file
= data
->files
[i
];
3113 unsigned long damage
= file
->added
+ file
->deleted
;
3114 if (file
->is_binary
)
3116 * binary files counts bytes, not lines. Must find some
3117 * way to normalize binary bytes vs. textual lines.
3118 * The following heuristic assumes that there are 64
3120 * This is stupid and ugly, but very cheap...
3122 damage
= DIV_ROUND_UP(damage
, 64);
3123 ALLOC_GROW(dir
.files
, dir
.nr
+ 1, dir
.alloc
);
3124 dir
.files
[dir
.nr
].name
= file
->name
;
3125 dir
.files
[dir
.nr
].changed
= damage
;
3130 /* This can happen even with many files, if everything was renames */
3134 /* Show all directories with more than x% of the changes */
3135 QSORT(dir
.files
, dir
.nr
, dirstat_compare
);
3136 gather_dirstat(options
, &dir
, changed
, "", 0);
3139 static void free_diffstat_file(struct diffstat_file
*f
)
3141 free(f
->print_name
);
3147 void free_diffstat_info(struct diffstat_t
*diffstat
)
3150 for (i
= 0; i
< diffstat
->nr
; i
++)
3151 free_diffstat_file(diffstat
->files
[i
]);
3152 free(diffstat
->files
);
3155 struct checkdiff_t
{
3156 const char *filename
;
3158 int conflict_marker_size
;
3159 struct diff_options
*o
;
3164 static int is_conflict_marker(const char *line
, int marker_size
, unsigned long len
)
3169 if (len
< marker_size
+ 1)
3171 firstchar
= line
[0];
3172 switch (firstchar
) {
3173 case '=': case '>': case '<': case '|':
3178 for (cnt
= 1; cnt
< marker_size
; cnt
++)
3179 if (line
[cnt
] != firstchar
)
3181 /* line[1] through line[marker_size-1] are same as firstchar */
3182 if (len
< marker_size
+ 1 || !isspace(line
[marker_size
]))
3187 static void checkdiff_consume_hunk(void *priv
,
3188 long ob
, long on
, long nb
, long nn
,
3189 const char *func
, long funclen
)
3192 struct checkdiff_t
*data
= priv
;
3193 data
->lineno
= nb
- 1;
3196 static int checkdiff_consume(void *priv
, char *line
, unsigned long len
)
3198 struct checkdiff_t
*data
= priv
;
3199 int marker_size
= data
->conflict_marker_size
;
3200 const char *ws
= diff_get_color(data
->o
->use_color
, DIFF_WHITESPACE
);
3201 const char *reset
= diff_get_color(data
->o
->use_color
, DIFF_RESET
);
3202 const char *set
= diff_get_color(data
->o
->use_color
, DIFF_FILE_NEW
);
3204 const char *line_prefix
;
3207 line_prefix
= diff_line_prefix(data
->o
);
3209 if (line
[0] == '+') {
3212 if (is_conflict_marker(line
+ 1, marker_size
, len
- 1)) {
3214 fprintf(data
->o
->file
,
3215 "%s%s:%d: leftover conflict marker\n",
3216 line_prefix
, data
->filename
, data
->lineno
);
3218 bad
= ws_check(line
+ 1, len
- 1, data
->ws_rule
);
3221 data
->status
|= bad
;
3222 err
= whitespace_error_string(bad
);
3223 fprintf(data
->o
->file
, "%s%s:%d: %s.\n",
3224 line_prefix
, data
->filename
, data
->lineno
, err
);
3226 emit_line(data
->o
, set
, reset
, line
, 1);
3227 ws_check_emit(line
+ 1, len
- 1, data
->ws_rule
,
3228 data
->o
->file
, set
, reset
, ws
);
3229 } else if (line
[0] == ' ') {
3235 static unsigned char *deflate_it(char *data
,
3237 unsigned long *result_size
)
3240 unsigned char *deflated
;
3243 git_deflate_init(&stream
, zlib_compression_level
);
3244 bound
= git_deflate_bound(&stream
, size
);
3245 deflated
= xmalloc(bound
);
3246 stream
.next_out
= deflated
;
3247 stream
.avail_out
= bound
;
3249 stream
.next_in
= (unsigned char *)data
;
3250 stream
.avail_in
= size
;
3251 while (git_deflate(&stream
, Z_FINISH
) == Z_OK
)
3253 git_deflate_end(&stream
);
3254 *result_size
= stream
.total_out
;
3258 static void emit_binary_diff_body(struct diff_options
*o
,
3259 mmfile_t
*one
, mmfile_t
*two
)
3265 unsigned long orig_size
;
3266 unsigned long delta_size
;
3267 unsigned long deflate_size
;
3268 unsigned long data_size
;
3270 /* We could do deflated delta, or we could do just deflated two,
3271 * whichever is smaller.
3274 deflated
= deflate_it(two
->ptr
, two
->size
, &deflate_size
);
3275 if (one
->size
&& two
->size
) {
3276 delta
= diff_delta(one
->ptr
, one
->size
,
3277 two
->ptr
, two
->size
,
3278 &delta_size
, deflate_size
);
3280 void *to_free
= delta
;
3281 orig_size
= delta_size
;
3282 delta
= deflate_it(delta
, delta_size
, &delta_size
);
3287 if (delta
&& delta_size
< deflate_size
) {
3288 char *s
= xstrfmt("%"PRIuMAX
, (uintmax_t)orig_size
);
3289 emit_diff_symbol(o
, DIFF_SYMBOL_BINARY_DIFF_HEADER_DELTA
,
3294 data_size
= delta_size
;
3296 char *s
= xstrfmt("%lu", two
->size
);
3297 emit_diff_symbol(o
, DIFF_SYMBOL_BINARY_DIFF_HEADER_LITERAL
,
3302 data_size
= deflate_size
;
3305 /* emit data encoded in base85 */
3309 int bytes
= (52 < data_size
) ? 52 : data_size
;
3313 line
[0] = bytes
+ 'A' - 1;
3315 line
[0] = bytes
- 26 + 'a' - 1;
3316 encode_85(line
+ 1, cp
, bytes
);
3317 cp
= (char *) cp
+ bytes
;
3323 emit_diff_symbol(o
, DIFF_SYMBOL_BINARY_DIFF_BODY
,
3326 emit_diff_symbol(o
, DIFF_SYMBOL_BINARY_DIFF_FOOTER
, NULL
, 0, 0);
3330 static void emit_binary_diff(struct diff_options
*o
,
3331 mmfile_t
*one
, mmfile_t
*two
)
3333 emit_diff_symbol(o
, DIFF_SYMBOL_BINARY_DIFF_HEADER
, NULL
, 0, 0);
3334 emit_binary_diff_body(o
, one
, two
);
3335 emit_binary_diff_body(o
, two
, one
);
3338 int diff_filespec_is_binary(struct repository
*r
,
3339 struct diff_filespec
*one
)
3341 struct diff_populate_filespec_options dpf_options
= {
3345 if (one
->is_binary
== -1) {
3346 diff_filespec_load_driver(one
, r
->index
);
3347 if (one
->driver
->binary
!= -1)
3348 one
->is_binary
= one
->driver
->binary
;
3350 if (!one
->data
&& DIFF_FILE_VALID(one
))
3351 diff_populate_filespec(r
, one
, &dpf_options
);
3352 if (one
->is_binary
== -1 && one
->data
)
3353 one
->is_binary
= buffer_is_binary(one
->data
,
3355 if (one
->is_binary
== -1)
3359 return one
->is_binary
;
3362 static const struct userdiff_funcname
*
3363 diff_funcname_pattern(struct diff_options
*o
, struct diff_filespec
*one
)
3365 diff_filespec_load_driver(one
, o
->repo
->index
);
3366 return one
->driver
->funcname
.pattern
? &one
->driver
->funcname
: NULL
;
3369 void diff_set_mnemonic_prefix(struct diff_options
*options
, const char *a
, const char *b
)
3371 if (!options
->a_prefix
)
3372 options
->a_prefix
= a
;
3373 if (!options
->b_prefix
)
3374 options
->b_prefix
= b
;
3377 struct userdiff_driver
*get_textconv(struct repository
*r
,
3378 struct diff_filespec
*one
)
3380 if (!DIFF_FILE_VALID(one
))
3383 diff_filespec_load_driver(one
, r
->index
);
3384 return userdiff_get_textconv(r
, one
->driver
);
3387 static struct string_list
*additional_headers(struct diff_options
*o
,
3390 if (!o
->additional_path_headers
)
3392 return strmap_get(o
->additional_path_headers
, path
);
3395 static void add_formatted_header(struct strbuf
*msg
,
3397 const char *line_prefix
,
3401 const char *next
, *newline
;
3403 for (next
= header
; *next
; next
= newline
) {
3404 newline
= strchrnul(next
, '\n');
3405 strbuf_addf(msg
, "%s%s%.*s%s\n", line_prefix
, meta
,
3406 (int)(newline
- next
), next
, reset
);
3412 static void add_formatted_headers(struct strbuf
*msg
,
3413 struct string_list
*more_headers
,
3414 const char *line_prefix
,
3420 for (i
= 0; i
< more_headers
->nr
; i
++)
3421 add_formatted_header(msg
, more_headers
->items
[i
].string
,
3422 line_prefix
, meta
, reset
);
3425 static int diff_filepair_is_phoney(struct diff_filespec
*one
,
3426 struct diff_filespec
*two
)
3429 * This function specifically looks for pairs injected by
3430 * create_filepairs_for_header_only_notifications(). Such
3431 * pairs are "phoney" in that they do not represent any
3432 * content or even mode difference, but were inserted because
3433 * diff_queued_diff previously had no pair associated with
3434 * that path but we needed some pair to avoid losing the
3435 * "remerge CONFLICT" header associated with the path.
3437 return !DIFF_FILE_VALID(one
) && !DIFF_FILE_VALID(two
);
3440 static void builtin_diff(const char *name_a
,
3442 struct diff_filespec
*one
,
3443 struct diff_filespec
*two
,
3444 const char *xfrm_msg
,
3445 int must_show_header
,
3446 struct diff_options
*o
,
3447 int complete_rewrite
)
3451 char *a_one
, *b_two
;
3452 const char *meta
= diff_get_color_opt(o
, DIFF_METAINFO
);
3453 const char *reset
= diff_get_color_opt(o
, DIFF_RESET
);
3454 const char *a_prefix
, *b_prefix
;
3455 struct userdiff_driver
*textconv_one
= NULL
;
3456 struct userdiff_driver
*textconv_two
= NULL
;
3457 struct strbuf header
= STRBUF_INIT
;
3458 const char *line_prefix
= diff_line_prefix(o
);
3460 diff_set_mnemonic_prefix(o
, "a/", "b/");
3461 if (o
->flags
.reverse_diff
) {
3462 a_prefix
= o
->b_prefix
;
3463 b_prefix
= o
->a_prefix
;
3465 a_prefix
= o
->a_prefix
;
3466 b_prefix
= o
->b_prefix
;
3469 if (o
->submodule_format
== DIFF_SUBMODULE_LOG
&&
3470 (!one
->mode
|| S_ISGITLINK(one
->mode
)) &&
3471 (!two
->mode
|| S_ISGITLINK(two
->mode
)) &&
3472 (!diff_filepair_is_phoney(one
, two
))) {
3473 show_submodule_diff_summary(o
, one
->path
? one
->path
: two
->path
,
3474 &one
->oid
, &two
->oid
,
3475 two
->dirty_submodule
);
3477 } else if (o
->submodule_format
== DIFF_SUBMODULE_INLINE_DIFF
&&
3478 (!one
->mode
|| S_ISGITLINK(one
->mode
)) &&
3479 (!two
->mode
|| S_ISGITLINK(two
->mode
)) &&
3480 (!diff_filepair_is_phoney(one
, two
))) {
3481 show_submodule_inline_diff(o
, one
->path
? one
->path
: two
->path
,
3482 &one
->oid
, &two
->oid
,
3483 two
->dirty_submodule
);
3487 if (o
->flags
.allow_textconv
) {
3488 textconv_one
= get_textconv(o
->repo
, one
);
3489 textconv_two
= get_textconv(o
->repo
, two
);
3492 /* Never use a non-valid filename anywhere if at all possible */
3493 name_a
= DIFF_FILE_VALID(one
) ? name_a
: name_b
;
3494 name_b
= DIFF_FILE_VALID(two
) ? name_b
: name_a
;
3496 a_one
= quote_two(a_prefix
, name_a
+ (*name_a
== '/'));
3497 b_two
= quote_two(b_prefix
, name_b
+ (*name_b
== '/'));
3498 lbl
[0] = DIFF_FILE_VALID(one
) ? a_one
: "/dev/null";
3499 lbl
[1] = DIFF_FILE_VALID(two
) ? b_two
: "/dev/null";
3500 if (diff_filepair_is_phoney(one
, two
)) {
3502 * We should only reach this point for pairs generated from
3503 * create_filepairs_for_header_only_notifications(). For
3504 * these, we want to avoid the "/dev/null" special casing
3505 * above, because we do not want such pairs shown as either
3506 * "new file" or "deleted file" below.
3511 strbuf_addf(&header
, "%s%sdiff --git %s %s%s\n", line_prefix
, meta
, a_one
, b_two
, reset
);
3512 if (lbl
[0][0] == '/') {
3514 strbuf_addf(&header
, "%s%snew file mode %06o%s\n", line_prefix
, meta
, two
->mode
, reset
);
3516 strbuf_addstr(&header
, xfrm_msg
);
3517 must_show_header
= 1;
3519 else if (lbl
[1][0] == '/') {
3520 strbuf_addf(&header
, "%s%sdeleted file mode %06o%s\n", line_prefix
, meta
, one
->mode
, reset
);
3522 strbuf_addstr(&header
, xfrm_msg
);
3523 must_show_header
= 1;
3526 if (one
->mode
!= two
->mode
) {
3527 strbuf_addf(&header
, "%s%sold mode %06o%s\n", line_prefix
, meta
, one
->mode
, reset
);
3528 strbuf_addf(&header
, "%s%snew mode %06o%s\n", line_prefix
, meta
, two
->mode
, reset
);
3529 must_show_header
= 1;
3532 strbuf_addstr(&header
, xfrm_msg
);
3535 * we do not run diff between different kind
3538 if ((one
->mode
^ two
->mode
) & S_IFMT
)
3539 goto free_ab_and_return
;
3540 if (complete_rewrite
&&
3541 (textconv_one
|| !diff_filespec_is_binary(o
->repo
, one
)) &&
3542 (textconv_two
|| !diff_filespec_is_binary(o
->repo
, two
))) {
3543 emit_diff_symbol(o
, DIFF_SYMBOL_HEADER
,
3544 header
.buf
, header
.len
, 0);
3545 strbuf_reset(&header
);
3546 emit_rewrite_diff(name_a
, name_b
, one
, two
,
3547 textconv_one
, textconv_two
, o
);
3548 o
->found_changes
= 1;
3549 goto free_ab_and_return
;
3553 if (o
->irreversible_delete
&& lbl
[1][0] == '/') {
3554 emit_diff_symbol(o
, DIFF_SYMBOL_HEADER
, header
.buf
,
3556 strbuf_reset(&header
);
3557 goto free_ab_and_return
;
3558 } else if (!o
->flags
.text
&&
3559 ( (!textconv_one
&& diff_filespec_is_binary(o
->repo
, one
)) ||
3560 (!textconv_two
&& diff_filespec_is_binary(o
->repo
, two
)) )) {
3561 struct strbuf sb
= STRBUF_INIT
;
3562 if (!one
->data
&& !two
->data
&&
3563 S_ISREG(one
->mode
) && S_ISREG(two
->mode
) &&
3565 if (oideq(&one
->oid
, &two
->oid
)) {
3566 if (must_show_header
)
3567 emit_diff_symbol(o
, DIFF_SYMBOL_HEADER
,
3568 header
.buf
, header
.len
,
3570 goto free_ab_and_return
;
3572 emit_diff_symbol(o
, DIFF_SYMBOL_HEADER
,
3573 header
.buf
, header
.len
, 0);
3574 strbuf_addf(&sb
, "%sBinary files %s and %s differ\n",
3575 diff_line_prefix(o
), lbl
[0], lbl
[1]);
3576 emit_diff_symbol(o
, DIFF_SYMBOL_BINARY_FILES
,
3578 strbuf_release(&sb
);
3579 goto free_ab_and_return
;
3581 if (fill_mmfile(o
->repo
, &mf1
, one
) < 0 ||
3582 fill_mmfile(o
->repo
, &mf2
, two
) < 0)
3583 die("unable to read files to diff");
3584 /* Quite common confusing case */
3585 if (mf1
.size
== mf2
.size
&&
3586 !memcmp(mf1
.ptr
, mf2
.ptr
, mf1
.size
)) {
3587 if (must_show_header
)
3588 emit_diff_symbol(o
, DIFF_SYMBOL_HEADER
,
3589 header
.buf
, header
.len
, 0);
3590 goto free_ab_and_return
;
3592 emit_diff_symbol(o
, DIFF_SYMBOL_HEADER
, header
.buf
, header
.len
, 0);
3593 strbuf_reset(&header
);
3594 if (o
->flags
.binary
)
3595 emit_binary_diff(o
, &mf1
, &mf2
);
3597 strbuf_addf(&sb
, "%sBinary files %s and %s differ\n",
3598 diff_line_prefix(o
), lbl
[0], lbl
[1]);
3599 emit_diff_symbol(o
, DIFF_SYMBOL_BINARY_FILES
,
3601 strbuf_release(&sb
);
3603 o
->found_changes
= 1;
3605 /* Crazy xdl interfaces.. */
3606 const char *diffopts
;
3610 struct emit_callback ecbdata
;
3611 const struct userdiff_funcname
*pe
;
3613 if (must_show_header
) {
3614 emit_diff_symbol(o
, DIFF_SYMBOL_HEADER
,
3615 header
.buf
, header
.len
, 0);
3616 strbuf_reset(&header
);
3619 mf1
.size
= fill_textconv(o
->repo
, textconv_one
, one
, &mf1
.ptr
);
3620 mf2
.size
= fill_textconv(o
->repo
, textconv_two
, two
, &mf2
.ptr
);
3622 pe
= diff_funcname_pattern(o
, one
);
3624 pe
= diff_funcname_pattern(o
, two
);
3626 memset(&xpp
, 0, sizeof(xpp
));
3627 memset(&xecfg
, 0, sizeof(xecfg
));
3628 memset(&ecbdata
, 0, sizeof(ecbdata
));
3629 if (o
->flags
.suppress_diff_headers
)
3631 ecbdata
.label_path
= lbl
;
3632 ecbdata
.color_diff
= want_color(o
->use_color
);
3633 ecbdata
.ws_rule
= whitespace_rule(o
->repo
->index
, name_b
);
3634 if (ecbdata
.ws_rule
& WS_BLANK_AT_EOF
)
3635 check_blank_at_eof(&mf1
, &mf2
, &ecbdata
);
3637 if (header
.len
&& !o
->flags
.suppress_diff_headers
)
3638 ecbdata
.header
= &header
;
3639 xpp
.flags
= o
->xdl_opts
;
3640 xpp
.ignore_regex
= o
->ignore_regex
;
3641 xpp
.ignore_regex_nr
= o
->ignore_regex_nr
;
3642 xpp
.anchors
= o
->anchors
;
3643 xpp
.anchors_nr
= o
->anchors_nr
;
3644 xecfg
.ctxlen
= o
->context
;
3645 xecfg
.interhunkctxlen
= o
->interhunkcontext
;
3646 xecfg
.flags
= XDL_EMIT_FUNCNAMES
;
3647 if (o
->flags
.funccontext
)
3648 xecfg
.flags
|= XDL_EMIT_FUNCCONTEXT
;
3650 xdiff_set_find_func(&xecfg
, pe
->pattern
, pe
->cflags
);
3652 diffopts
= getenv("GIT_DIFF_OPTS");
3655 else if (skip_prefix(diffopts
, "--unified=", &v
))
3656 xecfg
.ctxlen
= strtoul(v
, NULL
, 10);
3657 else if (skip_prefix(diffopts
, "-u", &v
))
3658 xecfg
.ctxlen
= strtoul(v
, NULL
, 10);
3661 init_diff_words_data(&ecbdata
, o
, one
, two
);
3662 if (xdi_diff_outf(&mf1
, &mf2
, NULL
, fn_out_consume
,
3663 &ecbdata
, &xpp
, &xecfg
))
3664 die("unable to generate diff for %s", one
->path
);
3666 free_diff_words_data(&ecbdata
);
3671 xdiff_clear_find_func(&xecfg
);
3675 strbuf_release(&header
);
3676 diff_free_filespec_data(one
);
3677 diff_free_filespec_data(two
);
3683 static char *get_compact_summary(const struct diff_filepair
*p
, int is_renamed
)
3686 if (p
->status
== DIFF_STATUS_ADDED
) {
3687 if (S_ISLNK(p
->two
->mode
))
3689 else if ((p
->two
->mode
& 0777) == 0755)
3693 } else if (p
->status
== DIFF_STATUS_DELETED
)
3696 if (S_ISLNK(p
->one
->mode
) && !S_ISLNK(p
->two
->mode
))
3698 else if (!S_ISLNK(p
->one
->mode
) && S_ISLNK(p
->two
->mode
))
3700 else if ((p
->one
->mode
& 0777) == 0644 &&
3701 (p
->two
->mode
& 0777) == 0755)
3703 else if ((p
->one
->mode
& 0777) == 0755 &&
3704 (p
->two
->mode
& 0777) == 0644)
3709 static void builtin_diffstat(const char *name_a
, const char *name_b
,
3710 struct diff_filespec
*one
,
3711 struct diff_filespec
*two
,
3712 struct diffstat_t
*diffstat
,
3713 struct diff_options
*o
,
3714 struct diff_filepair
*p
)
3717 struct diffstat_file
*data
;
3719 int complete_rewrite
= 0;
3721 if (!DIFF_PAIR_UNMERGED(p
)) {
3722 if (p
->status
== DIFF_STATUS_MODIFIED
&& p
->score
)
3723 complete_rewrite
= 1;
3726 data
= diffstat_add(diffstat
, name_a
, name_b
);
3727 data
->is_interesting
= p
->status
!= DIFF_STATUS_UNKNOWN
;
3728 if (o
->flags
.stat_with_summary
)
3729 data
->comments
= get_compact_summary(p
, data
->is_renamed
);
3732 data
->is_unmerged
= 1;
3736 /* saves some reads if true, not a guarantee of diff outcome */
3737 may_differ
= !(one
->oid_valid
&& two
->oid_valid
&&
3738 oideq(&one
->oid
, &two
->oid
));
3740 if (diff_filespec_is_binary(o
->repo
, one
) ||
3741 diff_filespec_is_binary(o
->repo
, two
)) {
3742 data
->is_binary
= 1;
3747 data
->added
= diff_filespec_size(o
->repo
, two
);
3748 data
->deleted
= diff_filespec_size(o
->repo
, one
);
3752 else if (complete_rewrite
) {
3753 diff_populate_filespec(o
->repo
, one
, NULL
);
3754 diff_populate_filespec(o
->repo
, two
, NULL
);
3755 data
->deleted
= count_lines(one
->data
, one
->size
);
3756 data
->added
= count_lines(two
->data
, two
->size
);
3759 else if (may_differ
) {
3760 /* Crazy xdl interfaces.. */
3764 if (fill_mmfile(o
->repo
, &mf1
, one
) < 0 ||
3765 fill_mmfile(o
->repo
, &mf2
, two
) < 0)
3766 die("unable to read files to diff");
3768 memset(&xpp
, 0, sizeof(xpp
));
3769 memset(&xecfg
, 0, sizeof(xecfg
));
3770 xpp
.flags
= o
->xdl_opts
;
3771 xpp
.ignore_regex
= o
->ignore_regex
;
3772 xpp
.ignore_regex_nr
= o
->ignore_regex_nr
;
3773 xpp
.anchors
= o
->anchors
;
3774 xpp
.anchors_nr
= o
->anchors_nr
;
3775 xecfg
.ctxlen
= o
->context
;
3776 xecfg
.interhunkctxlen
= o
->interhunkcontext
;
3777 xecfg
.flags
= XDL_EMIT_NO_HUNK_HDR
;
3778 if (xdi_diff_outf(&mf1
, &mf2
, NULL
,
3779 diffstat_consume
, diffstat
, &xpp
, &xecfg
))
3780 die("unable to generate diffstat for %s", one
->path
);
3782 if (DIFF_FILE_VALID(one
) && DIFF_FILE_VALID(two
)) {
3783 struct diffstat_file
*file
=
3784 diffstat
->files
[diffstat
->nr
- 1];
3786 * Omit diffstats of modified files where nothing changed.
3787 * Even if may_differ, this might be the case due to
3788 * ignoring whitespace changes, etc.
3790 * But note that we special-case additions, deletions,
3791 * renames, and mode changes as adding an empty file,
3792 * for example is still of interest.
3794 if ((p
->status
== DIFF_STATUS_MODIFIED
)
3797 && one
->mode
== two
->mode
) {
3798 free_diffstat_file(file
);
3804 diff_free_filespec_data(one
);
3805 diff_free_filespec_data(two
);
3808 static void builtin_checkdiff(const char *name_a
, const char *name_b
,
3809 const char *attr_path
,
3810 struct diff_filespec
*one
,
3811 struct diff_filespec
*two
,
3812 struct diff_options
*o
)
3815 struct checkdiff_t data
;
3820 memset(&data
, 0, sizeof(data
));
3821 data
.filename
= name_b
? name_b
: name_a
;
3824 data
.ws_rule
= whitespace_rule(o
->repo
->index
, attr_path
);
3825 data
.conflict_marker_size
= ll_merge_marker_size(o
->repo
->index
, attr_path
);
3827 if (fill_mmfile(o
->repo
, &mf1
, one
) < 0 ||
3828 fill_mmfile(o
->repo
, &mf2
, two
) < 0)
3829 die("unable to read files to diff");
3832 * All the other codepaths check both sides, but not checking
3833 * the "old" side here is deliberate. We are checking the newly
3834 * introduced changes, and as long as the "new" side is text, we
3835 * can and should check what it introduces.
3837 if (diff_filespec_is_binary(o
->repo
, two
))
3838 goto free_and_return
;
3840 /* Crazy xdl interfaces.. */
3844 memset(&xpp
, 0, sizeof(xpp
));
3845 memset(&xecfg
, 0, sizeof(xecfg
));
3846 xecfg
.ctxlen
= 1; /* at least one context line */
3848 if (xdi_diff_outf(&mf1
, &mf2
, checkdiff_consume_hunk
,
3849 checkdiff_consume
, &data
,
3851 die("unable to generate checkdiff for %s", one
->path
);
3853 if (data
.ws_rule
& WS_BLANK_AT_EOF
) {
3854 struct emit_callback ecbdata
;
3857 ecbdata
.ws_rule
= data
.ws_rule
;
3858 check_blank_at_eof(&mf1
, &mf2
, &ecbdata
);
3859 blank_at_eof
= ecbdata
.blank_at_eof_in_postimage
;
3864 err
= whitespace_error_string(WS_BLANK_AT_EOF
);
3865 fprintf(o
->file
, "%s:%d: %s.\n",
3866 data
.filename
, blank_at_eof
, err
);
3867 data
.status
= 1; /* report errors */
3872 diff_free_filespec_data(one
);
3873 diff_free_filespec_data(two
);
3875 o
->flags
.check_failed
= 1;
3878 struct diff_filespec
*alloc_filespec(const char *path
)
3880 struct diff_filespec
*spec
;
3882 FLEXPTR_ALLOC_STR(spec
, path
, path
);
3884 spec
->is_binary
= -1;
3888 void free_filespec(struct diff_filespec
*spec
)
3890 if (!--spec
->count
) {
3891 diff_free_filespec_data(spec
);
3896 void fill_filespec(struct diff_filespec
*spec
, const struct object_id
*oid
,
3897 int oid_valid
, unsigned short mode
)
3900 spec
->mode
= canon_mode(mode
);
3901 oidcpy(&spec
->oid
, oid
);
3902 spec
->oid_valid
= oid_valid
;
3907 * Given a name and sha1 pair, if the index tells us the file in
3908 * the work tree has that object contents, return true, so that
3909 * prepare_temp_file() does not have to inflate and extract.
3911 static int reuse_worktree_file(struct index_state
*istate
,
3913 const struct object_id
*oid
,
3916 const struct cache_entry
*ce
;
3921 * We do not read the cache ourselves here, because the
3922 * benchmark with my previous version that always reads cache
3923 * shows that it makes things worse for diff-tree comparing
3924 * two linux-2.6 kernel trees in an already checked out work
3925 * tree. This is because most diff-tree comparisons deal with
3926 * only a small number of files, while reading the cache is
3927 * expensive for a large project, and its cost outweighs the
3928 * savings we get by not inflating the object to a temporary
3929 * file. Practically, this code only helps when we are used
3930 * by diff-cache --cached, which does read the cache before
3936 /* We want to avoid the working directory if our caller
3937 * doesn't need the data in a normal file, this system
3938 * is rather slow with its stat/open/mmap/close syscalls,
3939 * and the object is contained in a pack file. The pack
3940 * is probably already open and will be faster to obtain
3941 * the data through than the working directory. Loose
3942 * objects however would tend to be slower as they need
3943 * to be individually opened and inflated.
3945 if (!FAST_WORKING_DIRECTORY
&& !want_file
&& has_object_pack(oid
))
3949 * Similarly, if we'd have to convert the file contents anyway, that
3950 * makes the optimization not worthwhile.
3952 if (!want_file
&& would_convert_to_git(istate
, name
))
3956 * If this path does not match our sparse-checkout definition,
3957 * then the file will not be in the working directory.
3959 if (!path_in_sparse_checkout(name
, istate
))
3963 pos
= index_name_pos(istate
, name
, len
);
3966 ce
= istate
->cache
[pos
];
3969 * This is not the sha1 we are looking for, or
3970 * unreusable because it is not a regular file.
3972 if (!oideq(oid
, &ce
->oid
) || !S_ISREG(ce
->ce_mode
))
3976 * If ce is marked as "assume unchanged", there is no
3977 * guarantee that work tree matches what we are looking for.
3979 if ((ce
->ce_flags
& CE_VALID
) || ce_skip_worktree(ce
))
3983 * If ce matches the file in the work tree, we can reuse it.
3985 if (ce_uptodate(ce
) ||
3986 (!lstat(name
, &st
) && !ie_match_stat(istate
, ce
, &st
, 0)))
3992 static int diff_populate_gitlink(struct diff_filespec
*s
, int size_only
)
3994 struct strbuf buf
= STRBUF_INIT
;
3997 /* Are we looking at the work tree? */
3998 if (s
->dirty_submodule
)
4001 strbuf_addf(&buf
, "Subproject commit %s%s\n",
4002 oid_to_hex(&s
->oid
), dirty
);
4006 strbuf_release(&buf
);
4008 s
->data
= strbuf_detach(&buf
, NULL
);
4015 * While doing rename detection and pickaxe operation, we may need to
4016 * grab the data for the blob (or file) for our own in-core comparison.
4017 * diff_filespec has data and size fields for this purpose.
4019 int diff_populate_filespec(struct repository
*r
,
4020 struct diff_filespec
*s
,
4021 const struct diff_populate_filespec_options
*options
)
4023 int size_only
= options
? options
->check_size_only
: 0;
4024 int check_binary
= options
? options
->check_binary
: 0;
4026 int conv_flags
= global_conv_flags_eol
;
4028 * demote FAIL to WARN to allow inspecting the situation
4029 * instead of refusing.
4031 if (conv_flags
& CONV_EOL_RNDTRP_DIE
)
4032 conv_flags
= CONV_EOL_RNDTRP_WARN
;
4034 if (!DIFF_FILE_VALID(s
))
4035 die("internal error: asking to populate invalid file.");
4036 if (S_ISDIR(s
->mode
))
4042 if (size_only
&& 0 < s
->size
)
4045 if (S_ISGITLINK(s
->mode
))
4046 return diff_populate_gitlink(s
, size_only
);
4048 if (!s
->oid_valid
||
4049 reuse_worktree_file(r
->index
, s
->path
, &s
->oid
, 0)) {
4050 struct strbuf buf
= STRBUF_INIT
;
4054 if (lstat(s
->path
, &st
) < 0) {
4058 s
->data
= (char *)"";
4062 s
->size
= xsize_t(st
.st_size
);
4065 if (S_ISLNK(st
.st_mode
)) {
4066 struct strbuf sb
= STRBUF_INIT
;
4068 if (strbuf_readlink(&sb
, s
->path
, s
->size
))
4071 s
->data
= strbuf_detach(&sb
, NULL
);
4077 * Even if the caller would be happy with getting
4078 * only the size, we cannot return early at this
4079 * point if the path requires us to run the content
4082 if (size_only
&& !would_convert_to_git(r
->index
, s
->path
))
4086 * Note: this check uses xsize_t(st.st_size) that may
4087 * not be the true size of the blob after it goes
4088 * through convert_to_git(). This may not strictly be
4089 * correct, but the whole point of big_file_threshold
4090 * and is_binary check being that we want to avoid
4091 * opening the file and inspecting the contents, this
4095 s
->size
> big_file_threshold
&& s
->is_binary
== -1) {
4099 fd
= open(s
->path
, O_RDONLY
);
4102 s
->data
= xmmap(NULL
, s
->size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
4104 s
->should_munmap
= 1;
4107 * Convert from working tree format to canonical git format
4109 if (convert_to_git(r
->index
, s
->path
, s
->data
, s
->size
, &buf
, conv_flags
)) {
4111 munmap(s
->data
, s
->size
);
4112 s
->should_munmap
= 0;
4113 s
->data
= strbuf_detach(&buf
, &size
);
4119 struct object_info info
= {
4123 if (!(size_only
|| check_binary
))
4125 * Set contentp, since there is no chance that merely
4126 * the size is sufficient.
4128 info
.contentp
= &s
->data
;
4130 if (options
&& options
->missing_object_cb
) {
4131 if (!oid_object_info_extended(r
, &s
->oid
, &info
,
4132 OBJECT_INFO_LOOKUP_REPLACE
|
4133 OBJECT_INFO_SKIP_FETCH_OBJECT
))
4135 options
->missing_object_cb(options
->missing_object_data
);
4137 if (oid_object_info_extended(r
, &s
->oid
, &info
,
4138 OBJECT_INFO_LOOKUP_REPLACE
))
4139 die("unable to read %s", oid_to_hex(&s
->oid
));
4142 if (size_only
|| check_binary
) {
4145 if (s
->size
> big_file_threshold
&& s
->is_binary
== -1) {
4150 if (!info
.contentp
) {
4151 info
.contentp
= &s
->data
;
4152 if (oid_object_info_extended(r
, &s
->oid
, &info
,
4153 OBJECT_INFO_LOOKUP_REPLACE
))
4154 die("unable to read %s", oid_to_hex(&s
->oid
));
4161 void diff_free_filespec_blob(struct diff_filespec
*s
)
4165 else if (s
->should_munmap
)
4166 munmap(s
->data
, s
->size
);
4168 if (s
->should_free
|| s
->should_munmap
) {
4169 s
->should_free
= s
->should_munmap
= 0;
4174 void diff_free_filespec_data(struct diff_filespec
*s
)
4179 diff_free_filespec_blob(s
);
4180 FREE_AND_NULL(s
->cnt_data
);
4183 static void prep_temp_blob(struct index_state
*istate
,
4184 const char *path
, struct diff_tempfile
*temp
,
4187 const struct object_id
*oid
,
4190 struct strbuf buf
= STRBUF_INIT
;
4191 char *path_dup
= xstrdup(path
);
4192 const char *base
= basename(path_dup
);
4193 struct checkout_metadata meta
;
4195 init_checkout_metadata(&meta
, NULL
, NULL
, oid
);
4197 temp
->tempfile
= mks_tempfile_dt("git-blob-XXXXXX", base
);
4198 if (!temp
->tempfile
)
4199 die_errno("unable to create temp-file");
4200 if (convert_to_working_tree(istate
, path
,
4201 (const char *)blob
, (size_t)size
, &buf
, &meta
)) {
4205 if (write_in_full(temp
->tempfile
->fd
, blob
, size
) < 0 ||
4206 close_tempfile_gently(temp
->tempfile
))
4207 die_errno("unable to write temp-file");
4208 temp
->name
= get_tempfile_path(temp
->tempfile
);
4209 oid_to_hex_r(temp
->hex
, oid
);
4210 xsnprintf(temp
->mode
, sizeof(temp
->mode
), "%06o", mode
);
4211 strbuf_release(&buf
);
4215 static struct diff_tempfile
*prepare_temp_file(struct repository
*r
,
4217 struct diff_filespec
*one
)
4219 struct diff_tempfile
*temp
= claim_diff_tempfile();
4221 if (!DIFF_FILE_VALID(one
)) {
4223 /* A '-' entry produces this for file-2, and
4224 * a '+' entry produces this for file-1.
4226 temp
->name
= "/dev/null";
4227 xsnprintf(temp
->hex
, sizeof(temp
->hex
), ".");
4228 xsnprintf(temp
->mode
, sizeof(temp
->mode
), ".");
4232 if (!S_ISGITLINK(one
->mode
) &&
4234 reuse_worktree_file(r
->index
, name
, &one
->oid
, 1))) {
4236 if (lstat(name
, &st
) < 0) {
4237 if (errno
== ENOENT
)
4238 goto not_a_valid_file
;
4239 die_errno("stat(%s)", name
);
4241 if (S_ISLNK(st
.st_mode
)) {
4242 struct strbuf sb
= STRBUF_INIT
;
4243 if (strbuf_readlink(&sb
, name
, st
.st_size
) < 0)
4244 die_errno("readlink(%s)", name
);
4245 prep_temp_blob(r
->index
, name
, temp
, sb
.buf
, sb
.len
,
4247 &one
->oid
: null_oid()),
4249 one
->mode
: S_IFLNK
));
4250 strbuf_release(&sb
);
4253 /* we can borrow from the file in the work tree */
4255 if (!one
->oid_valid
)
4256 oid_to_hex_r(temp
->hex
, null_oid());
4258 oid_to_hex_r(temp
->hex
, &one
->oid
);
4259 /* Even though we may sometimes borrow the
4260 * contents from the work tree, we always want
4261 * one->mode. mode is trustworthy even when
4262 * !(one->oid_valid), as long as
4263 * DIFF_FILE_VALID(one).
4265 xsnprintf(temp
->mode
, sizeof(temp
->mode
), "%06o", one
->mode
);
4270 if (diff_populate_filespec(r
, one
, NULL
))
4271 die("cannot read data blob for %s", one
->path
);
4272 prep_temp_blob(r
->index
, name
, temp
,
4273 one
->data
, one
->size
,
4274 &one
->oid
, one
->mode
);
4279 static void add_external_diff_name(struct repository
*r
,
4280 struct strvec
*argv
,
4282 struct diff_filespec
*df
)
4284 struct diff_tempfile
*temp
= prepare_temp_file(r
, name
, df
);
4285 strvec_push(argv
, temp
->name
);
4286 strvec_push(argv
, temp
->hex
);
4287 strvec_push(argv
, temp
->mode
);
4290 /* An external diff command takes:
4292 * diff-cmd name infile1 infile1-sha1 infile1-mode \
4293 * infile2 infile2-sha1 infile2-mode [ rename-to ]
4296 static void run_external_diff(const char *pgm
,
4299 struct diff_filespec
*one
,
4300 struct diff_filespec
*two
,
4301 const char *xfrm_msg
,
4302 struct diff_options
*o
)
4304 struct strvec argv
= STRVEC_INIT
;
4305 struct strvec env
= STRVEC_INIT
;
4306 struct diff_queue_struct
*q
= &diff_queued_diff
;
4308 strvec_push(&argv
, pgm
);
4309 strvec_push(&argv
, name
);
4312 add_external_diff_name(o
->repo
, &argv
, name
, one
);
4314 add_external_diff_name(o
->repo
, &argv
, name
, two
);
4316 add_external_diff_name(o
->repo
, &argv
, other
, two
);
4317 strvec_push(&argv
, other
);
4318 strvec_push(&argv
, xfrm_msg
);
4322 strvec_pushf(&env
, "GIT_DIFF_PATH_COUNTER=%d", ++o
->diff_path_counter
);
4323 strvec_pushf(&env
, "GIT_DIFF_PATH_TOTAL=%d", q
->nr
);
4325 diff_free_filespec_data(one
);
4326 diff_free_filespec_data(two
);
4327 if (run_command_v_opt_cd_env(argv
.v
, RUN_USING_SHELL
, NULL
, env
.v
))
4328 die(_("external diff died, stopping at %s"), name
);
4331 strvec_clear(&argv
);
4335 static int similarity_index(struct diff_filepair
*p
)
4337 return p
->score
* 100 / MAX_SCORE
;
4340 static const char *diff_abbrev_oid(const struct object_id
*oid
, int abbrev
)
4342 if (startup_info
->have_repository
)
4343 return find_unique_abbrev(oid
, abbrev
);
4345 char *hex
= oid_to_hex(oid
);
4347 abbrev
= FALLBACK_DEFAULT_ABBREV
;
4348 if (abbrev
> the_hash_algo
->hexsz
)
4349 BUG("oid abbreviation out of range: %d", abbrev
);
4356 static void fill_metainfo(struct strbuf
*msg
,
4359 struct diff_filespec
*one
,
4360 struct diff_filespec
*two
,
4361 struct diff_options
*o
,
4362 struct diff_filepair
*p
,
4363 int *must_show_header
,
4366 const char *set
= diff_get_color(use_color
, DIFF_METAINFO
);
4367 const char *reset
= diff_get_color(use_color
, DIFF_RESET
);
4368 const char *line_prefix
= diff_line_prefix(o
);
4369 struct string_list
*more_headers
= NULL
;
4371 *must_show_header
= 1;
4372 strbuf_init(msg
, PATH_MAX
* 2 + 300);
4373 switch (p
->status
) {
4374 case DIFF_STATUS_COPIED
:
4375 strbuf_addf(msg
, "%s%ssimilarity index %d%%",
4376 line_prefix
, set
, similarity_index(p
));
4377 strbuf_addf(msg
, "%s\n%s%scopy from ",
4378 reset
, line_prefix
, set
);
4379 quote_c_style(name
, msg
, NULL
, 0);
4380 strbuf_addf(msg
, "%s\n%s%scopy to ", reset
, line_prefix
, set
);
4381 quote_c_style(other
, msg
, NULL
, 0);
4382 strbuf_addf(msg
, "%s\n", reset
);
4384 case DIFF_STATUS_RENAMED
:
4385 strbuf_addf(msg
, "%s%ssimilarity index %d%%",
4386 line_prefix
, set
, similarity_index(p
));
4387 strbuf_addf(msg
, "%s\n%s%srename from ",
4388 reset
, line_prefix
, set
);
4389 quote_c_style(name
, msg
, NULL
, 0);
4390 strbuf_addf(msg
, "%s\n%s%srename to ",
4391 reset
, line_prefix
, set
);
4392 quote_c_style(other
, msg
, NULL
, 0);
4393 strbuf_addf(msg
, "%s\n", reset
);
4395 case DIFF_STATUS_MODIFIED
:
4397 strbuf_addf(msg
, "%s%sdissimilarity index %d%%%s\n",
4399 set
, similarity_index(p
), reset
);
4404 *must_show_header
= 0;
4406 if ((more_headers
= additional_headers(o
, name
))) {
4407 add_formatted_headers(msg
, more_headers
,
4408 line_prefix
, set
, reset
);
4409 *must_show_header
= 1;
4411 if (one
&& two
&& !oideq(&one
->oid
, &two
->oid
)) {
4412 const unsigned hexsz
= the_hash_algo
->hexsz
;
4413 int abbrev
= o
->abbrev
? o
->abbrev
: DEFAULT_ABBREV
;
4415 if (o
->flags
.full_index
)
4418 if (o
->flags
.binary
) {
4420 if ((!fill_mmfile(o
->repo
, &mf
, one
) &&
4421 diff_filespec_is_binary(o
->repo
, one
)) ||
4422 (!fill_mmfile(o
->repo
, &mf
, two
) &&
4423 diff_filespec_is_binary(o
->repo
, two
)))
4426 strbuf_addf(msg
, "%s%sindex %s..%s", line_prefix
, set
,
4427 diff_abbrev_oid(&one
->oid
, abbrev
),
4428 diff_abbrev_oid(&two
->oid
, abbrev
));
4429 if (one
->mode
== two
->mode
)
4430 strbuf_addf(msg
, " %06o", one
->mode
);
4431 strbuf_addf(msg
, "%s\n", reset
);
4435 static void run_diff_cmd(const char *pgm
,
4438 const char *attr_path
,
4439 struct diff_filespec
*one
,
4440 struct diff_filespec
*two
,
4442 struct diff_options
*o
,
4443 struct diff_filepair
*p
)
4445 const char *xfrm_msg
= NULL
;
4446 int complete_rewrite
= (p
->status
== DIFF_STATUS_MODIFIED
) && p
->score
;
4447 int must_show_header
= 0;
4450 if (o
->flags
.allow_external
) {
4451 struct userdiff_driver
*drv
;
4453 drv
= userdiff_find_by_path(o
->repo
->index
, attr_path
);
4454 if (drv
&& drv
->external
)
4455 pgm
= drv
->external
;
4460 * don't use colors when the header is intended for an
4461 * external diff driver
4463 fill_metainfo(msg
, name
, other
, one
, two
, o
, p
,
4465 want_color(o
->use_color
) && !pgm
);
4466 xfrm_msg
= msg
->len
? msg
->buf
: NULL
;
4470 run_external_diff(pgm
, name
, other
, one
, two
, xfrm_msg
, o
);
4474 builtin_diff(name
, other
? other
: name
,
4475 one
, two
, xfrm_msg
, must_show_header
,
4476 o
, complete_rewrite
);
4478 fprintf(o
->file
, "* Unmerged path %s\n", name
);
4481 static void diff_fill_oid_info(struct diff_filespec
*one
, struct index_state
*istate
)
4483 if (DIFF_FILE_VALID(one
)) {
4484 if (!one
->oid_valid
) {
4486 if (one
->is_stdin
) {
4490 if (lstat(one
->path
, &st
) < 0)
4491 die_errno("stat '%s'", one
->path
);
4492 if (index_path(istate
, &one
->oid
, one
->path
, &st
, 0))
4493 die("cannot hash %s", one
->path
);
4500 static void strip_prefix(int prefix_length
, const char **namep
, const char **otherp
)
4502 /* Strip the prefix but do not molest /dev/null and absolute paths */
4503 if (*namep
&& !is_absolute_path(*namep
)) {
4504 *namep
+= prefix_length
;
4508 if (*otherp
&& !is_absolute_path(*otherp
)) {
4509 *otherp
+= prefix_length
;
4510 if (**otherp
== '/')
4515 static void run_diff(struct diff_filepair
*p
, struct diff_options
*o
)
4517 const char *pgm
= external_diff();
4519 struct diff_filespec
*one
= p
->one
;
4520 struct diff_filespec
*two
= p
->two
;
4523 const char *attr_path
;
4526 other
= (strcmp(name
, two
->path
) ? two
->path
: NULL
);
4528 if (o
->prefix_length
)
4529 strip_prefix(o
->prefix_length
, &name
, &other
);
4531 if (!o
->flags
.allow_external
)
4534 if (DIFF_PAIR_UNMERGED(p
)) {
4535 run_diff_cmd(pgm
, name
, NULL
, attr_path
,
4536 NULL
, NULL
, NULL
, o
, p
);
4540 diff_fill_oid_info(one
, o
->repo
->index
);
4541 diff_fill_oid_info(two
, o
->repo
->index
);
4544 DIFF_FILE_VALID(one
) && DIFF_FILE_VALID(two
) &&
4545 (S_IFMT
& one
->mode
) != (S_IFMT
& two
->mode
)) {
4547 * a filepair that changes between file and symlink
4548 * needs to be split into deletion and creation.
4550 struct diff_filespec
*null
= alloc_filespec(two
->path
);
4551 run_diff_cmd(NULL
, name
, other
, attr_path
,
4555 strbuf_release(&msg
);
4557 null
= alloc_filespec(one
->path
);
4558 run_diff_cmd(NULL
, name
, other
, attr_path
,
4559 null
, two
, &msg
, o
, p
);
4563 run_diff_cmd(pgm
, name
, other
, attr_path
,
4564 one
, two
, &msg
, o
, p
);
4566 strbuf_release(&msg
);
4569 static void run_diffstat(struct diff_filepair
*p
, struct diff_options
*o
,
4570 struct diffstat_t
*diffstat
)
4575 if (DIFF_PAIR_UNMERGED(p
)) {
4577 builtin_diffstat(p
->one
->path
, NULL
, NULL
, NULL
,
4582 name
= p
->one
->path
;
4583 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
4585 if (o
->prefix_length
)
4586 strip_prefix(o
->prefix_length
, &name
, &other
);
4588 diff_fill_oid_info(p
->one
, o
->repo
->index
);
4589 diff_fill_oid_info(p
->two
, o
->repo
->index
);
4591 builtin_diffstat(name
, other
, p
->one
, p
->two
,
4595 static void run_checkdiff(struct diff_filepair
*p
, struct diff_options
*o
)
4599 const char *attr_path
;
4601 if (DIFF_PAIR_UNMERGED(p
)) {
4606 name
= p
->one
->path
;
4607 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
4608 attr_path
= other
? other
: name
;
4610 if (o
->prefix_length
)
4611 strip_prefix(o
->prefix_length
, &name
, &other
);
4613 diff_fill_oid_info(p
->one
, o
->repo
->index
);
4614 diff_fill_oid_info(p
->two
, o
->repo
->index
);
4616 builtin_checkdiff(name
, other
, attr_path
, p
->one
, p
->two
, o
);
4619 static void prep_parse_options(struct diff_options
*options
);
4621 void repo_diff_setup(struct repository
*r
, struct diff_options
*options
)
4623 memcpy(options
, &default_diff_options
, sizeof(*options
));
4625 options
->file
= stdout
;
4628 options
->output_indicators
[OUTPUT_INDICATOR_NEW
] = '+';
4629 options
->output_indicators
[OUTPUT_INDICATOR_OLD
] = '-';
4630 options
->output_indicators
[OUTPUT_INDICATOR_CONTEXT
] = ' ';
4631 options
->abbrev
= DEFAULT_ABBREV
;
4632 options
->line_termination
= '\n';
4633 options
->break_opt
= -1;
4634 options
->rename_limit
= -1;
4635 options
->dirstat_permille
= diff_dirstat_permille_default
;
4636 options
->context
= diff_context_default
;
4637 options
->interhunkcontext
= diff_interhunk_context_default
;
4638 options
->ws_error_highlight
= ws_error_highlight_default
;
4639 options
->flags
.rename_empty
= 1;
4640 options
->flags
.relative_name
= diff_relative
;
4641 options
->objfind
= NULL
;
4643 /* pathchange left =NULL by default */
4644 options
->change
= diff_change
;
4645 options
->add_remove
= diff_addremove
;
4646 options
->use_color
= diff_use_color_default
;
4647 options
->detect_rename
= diff_detect_rename_default
;
4648 options
->xdl_opts
|= diff_algorithm
;
4649 if (diff_indent_heuristic
)
4650 DIFF_XDL_SET(options
, INDENT_HEURISTIC
);
4652 options
->orderfile
= diff_order_file_cfg
;
4654 if (!options
->flags
.ignore_submodule_set
)
4655 options
->flags
.ignore_untracked_in_submodules
= 1;
4657 if (diff_no_prefix
) {
4658 options
->a_prefix
= options
->b_prefix
= "";
4659 } else if (!diff_mnemonic_prefix
) {
4660 options
->a_prefix
= "a/";
4661 options
->b_prefix
= "b/";
4664 options
->color_moved
= diff_color_moved_default
;
4665 options
->color_moved_ws_handling
= diff_color_moved_ws_default
;
4667 prep_parse_options(options
);
4670 static const char diff_status_letters
[] = {
4673 DIFF_STATUS_DELETED
,
4674 DIFF_STATUS_MODIFIED
,
4675 DIFF_STATUS_RENAMED
,
4676 DIFF_STATUS_TYPE_CHANGED
,
4677 DIFF_STATUS_UNKNOWN
,
4678 DIFF_STATUS_UNMERGED
,
4679 DIFF_STATUS_FILTER_AON
,
4680 DIFF_STATUS_FILTER_BROKEN
,
4684 static unsigned int filter_bit
['Z' + 1];
4686 static void prepare_filter_bits(void)
4690 if (!filter_bit
[DIFF_STATUS_ADDED
]) {
4691 for (i
= 0; diff_status_letters
[i
]; i
++)
4692 filter_bit
[(int) diff_status_letters
[i
]] = (1 << i
);
4696 static unsigned filter_bit_tst(char status
, const struct diff_options
*opt
)
4698 return opt
->filter
& filter_bit
[(int) status
];
4701 unsigned diff_filter_bit(char status
)
4703 prepare_filter_bits();
4704 return filter_bit
[(int) status
];
4707 void diff_setup_done(struct diff_options
*options
)
4709 unsigned check_mask
= DIFF_FORMAT_NAME
|
4710 DIFF_FORMAT_NAME_STATUS
|
4711 DIFF_FORMAT_CHECKDIFF
|
4712 DIFF_FORMAT_NO_OUTPUT
;
4714 * This must be signed because we're comparing against a potentially
4717 const int hexsz
= the_hash_algo
->hexsz
;
4719 if (options
->set_default
)
4720 options
->set_default(options
);
4722 if (HAS_MULTI_BITS(options
->output_format
& check_mask
))
4723 die(_("options '%s', '%s', '%s', and '%s' cannot be used together"),
4724 "--name-only", "--name-status", "--check", "-s");
4726 if (HAS_MULTI_BITS(options
->pickaxe_opts
& DIFF_PICKAXE_KINDS_MASK
))
4727 die(_("options '%s', '%s', and '%s' cannot be used together"),
4728 "-G", "-S", "--find-object");
4730 if (HAS_MULTI_BITS(options
->pickaxe_opts
& DIFF_PICKAXE_KINDS_G_REGEX_MASK
))
4731 die(_("options '%s' and '%s' cannot be used together, use '%s' with '%s'"),
4732 "-G", "--pickaxe-regex", "--pickaxe-regex", "-S");
4734 if (HAS_MULTI_BITS(options
->pickaxe_opts
& DIFF_PICKAXE_KINDS_ALL_OBJFIND_MASK
))
4735 die(_("options '%s' and '%s' cannot be used together, use '%s' with '%s' and '%s'"),
4736 "--pickaxe-all", "--find-object", "--pickaxe-all", "-G", "-S");
4739 * Most of the time we can say "there are changes"
4740 * only by checking if there are changed paths, but
4741 * --ignore-whitespace* options force us to look
4745 if ((options
->xdl_opts
& XDF_WHITESPACE_FLAGS
) ||
4746 options
->ignore_regex_nr
)
4747 options
->flags
.diff_from_contents
= 1;
4749 options
->flags
.diff_from_contents
= 0;
4751 if (options
->flags
.find_copies_harder
)
4752 options
->detect_rename
= DIFF_DETECT_COPY
;
4754 if (!options
->flags
.relative_name
)
4755 options
->prefix
= NULL
;
4756 if (options
->prefix
)
4757 options
->prefix_length
= strlen(options
->prefix
);
4759 options
->prefix_length
= 0;
4761 if (options
->output_format
& (DIFF_FORMAT_NAME
|
4762 DIFF_FORMAT_NAME_STATUS
|
4763 DIFF_FORMAT_CHECKDIFF
|
4764 DIFF_FORMAT_NO_OUTPUT
))
4765 options
->output_format
&= ~(DIFF_FORMAT_RAW
|
4766 DIFF_FORMAT_NUMSTAT
|
4767 DIFF_FORMAT_DIFFSTAT
|
4768 DIFF_FORMAT_SHORTSTAT
|
4769 DIFF_FORMAT_DIRSTAT
|
4770 DIFF_FORMAT_SUMMARY
|
4774 * These cases always need recursive; we do not drop caller-supplied
4775 * recursive bits for other formats here.
4777 if (options
->output_format
& (DIFF_FORMAT_PATCH
|
4778 DIFF_FORMAT_NUMSTAT
|
4779 DIFF_FORMAT_DIFFSTAT
|
4780 DIFF_FORMAT_SHORTSTAT
|
4781 DIFF_FORMAT_DIRSTAT
|
4782 DIFF_FORMAT_SUMMARY
|
4783 DIFF_FORMAT_CHECKDIFF
))
4784 options
->flags
.recursive
= 1;
4786 * Also pickaxe would not work very well if you do not say recursive
4788 if (options
->pickaxe_opts
& DIFF_PICKAXE_KINDS_MASK
)
4789 options
->flags
.recursive
= 1;
4791 * When patches are generated, submodules diffed against the work tree
4792 * must be checked for dirtiness too so it can be shown in the output
4794 if (options
->output_format
& DIFF_FORMAT_PATCH
)
4795 options
->flags
.dirty_submodules
= 1;
4797 if (options
->detect_rename
&& options
->rename_limit
< 0)
4798 options
->rename_limit
= diff_rename_limit_default
;
4799 if (hexsz
< options
->abbrev
)
4800 options
->abbrev
= hexsz
; /* full */
4803 * It does not make sense to show the first hit we happened
4804 * to have found. It does not make sense not to return with
4805 * exit code in such a case either.
4807 if (options
->flags
.quick
) {
4808 options
->output_format
= DIFF_FORMAT_NO_OUTPUT
;
4809 options
->flags
.exit_with_status
= 1;
4812 options
->diff_path_counter
= 0;
4814 if (options
->flags
.follow_renames
&& options
->pathspec
.nr
!= 1)
4815 die(_("--follow requires exactly one pathspec"));
4817 if (!options
->use_color
|| external_diff())
4818 options
->color_moved
= 0;
4820 if (options
->filter_not
) {
4821 if (!options
->filter
)
4822 options
->filter
= ~filter_bit
[DIFF_STATUS_FILTER_AON
];
4823 options
->filter
&= ~options
->filter_not
;
4826 FREE_AND_NULL(options
->parseopts
);
4829 int parse_long_opt(const char *opt
, const char **argv
,
4830 const char **optarg
)
4832 const char *arg
= argv
[0];
4833 if (!skip_prefix(arg
, "--", &arg
))
4835 if (!skip_prefix(arg
, opt
, &arg
))
4837 if (*arg
== '=') { /* stuck form: --option=value */
4843 /* separate form: --option value */
4845 die("Option '--%s' requires a value", opt
);
4850 static int diff_opt_stat(const struct option
*opt
, const char *value
, int unset
)
4852 struct diff_options
*options
= opt
->value
;
4853 int width
= options
->stat_width
;
4854 int name_width
= options
->stat_name_width
;
4855 int graph_width
= options
->stat_graph_width
;
4856 int count
= options
->stat_count
;
4859 BUG_ON_OPT_NEG(unset
);
4861 if (!strcmp(opt
->long_name
, "stat")) {
4863 width
= strtoul(value
, &end
, 10);
4865 name_width
= strtoul(end
+1, &end
, 10);
4867 count
= strtoul(end
+1, &end
, 10);
4869 return error(_("invalid --stat value: %s"), value
);
4871 } else if (!strcmp(opt
->long_name
, "stat-width")) {
4872 width
= strtoul(value
, &end
, 10);
4874 return error(_("%s expects a numerical value"),
4876 } else if (!strcmp(opt
->long_name
, "stat-name-width")) {
4877 name_width
= strtoul(value
, &end
, 10);
4879 return error(_("%s expects a numerical value"),
4881 } else if (!strcmp(opt
->long_name
, "stat-graph-width")) {
4882 graph_width
= strtoul(value
, &end
, 10);
4884 return error(_("%s expects a numerical value"),
4886 } else if (!strcmp(opt
->long_name
, "stat-count")) {
4887 count
= strtoul(value
, &end
, 10);
4889 return error(_("%s expects a numerical value"),
4892 BUG("%s should not get here", opt
->long_name
);
4894 options
->output_format
|= DIFF_FORMAT_DIFFSTAT
;
4895 options
->stat_name_width
= name_width
;
4896 options
->stat_graph_width
= graph_width
;
4897 options
->stat_width
= width
;
4898 options
->stat_count
= count
;
4902 static int parse_dirstat_opt(struct diff_options
*options
, const char *params
)
4904 struct strbuf errmsg
= STRBUF_INIT
;
4905 if (parse_dirstat_params(options
, params
, &errmsg
))
4906 die(_("Failed to parse --dirstat/-X option parameter:\n%s"),
4908 strbuf_release(&errmsg
);
4910 * The caller knows a dirstat-related option is given from the command
4911 * line; allow it to say "return this_function();"
4913 options
->output_format
|= DIFF_FORMAT_DIRSTAT
;
4917 static int diff_opt_diff_filter(const struct option
*option
,
4918 const char *optarg
, int unset
)
4920 struct diff_options
*opt
= option
->value
;
4923 BUG_ON_OPT_NEG(unset
);
4924 prepare_filter_bits();
4926 for (i
= 0; (optch
= optarg
[i
]) != '\0'; i
++) {
4930 if ('a' <= optch
&& optch
<= 'z') {
4932 optch
= toupper(optch
);
4937 bit
= (0 <= optch
&& optch
<= 'Z') ? filter_bit
[optch
] : 0;
4939 return error(_("unknown change class '%c' in --diff-filter=%s"),
4942 opt
->filter_not
|= bit
;
4949 static void enable_patch_output(int *fmt
)
4951 *fmt
&= ~DIFF_FORMAT_NO_OUTPUT
;
4952 *fmt
|= DIFF_FORMAT_PATCH
;
4955 static int diff_opt_ws_error_highlight(const struct option
*option
,
4956 const char *arg
, int unset
)
4958 struct diff_options
*opt
= option
->value
;
4959 int val
= parse_ws_error_highlight(arg
);
4961 BUG_ON_OPT_NEG(unset
);
4963 return error(_("unknown value after ws-error-highlight=%.*s"),
4965 opt
->ws_error_highlight
= val
;
4969 static int diff_opt_find_object(const struct option
*option
,
4970 const char *arg
, int unset
)
4972 struct diff_options
*opt
= option
->value
;
4973 struct object_id oid
;
4975 BUG_ON_OPT_NEG(unset
);
4976 if (get_oid(arg
, &oid
))
4977 return error(_("unable to resolve '%s'"), arg
);
4980 CALLOC_ARRAY(opt
->objfind
, 1);
4982 opt
->pickaxe_opts
|= DIFF_PICKAXE_KIND_OBJFIND
;
4983 opt
->flags
.recursive
= 1;
4984 opt
->flags
.tree_in_recursive
= 1;
4985 oidset_insert(opt
->objfind
, &oid
);
4989 static int diff_opt_anchored(const struct option
*opt
,
4990 const char *arg
, int unset
)
4992 struct diff_options
*options
= opt
->value
;
4994 BUG_ON_OPT_NEG(unset
);
4995 options
->xdl_opts
= DIFF_WITH_ALG(options
, PATIENCE_DIFF
);
4996 ALLOC_GROW(options
->anchors
, options
->anchors_nr
+ 1,
4997 options
->anchors_alloc
);
4998 options
->anchors
[options
->anchors_nr
++] = xstrdup(arg
);
5002 static int diff_opt_binary(const struct option
*opt
,
5003 const char *arg
, int unset
)
5005 struct diff_options
*options
= opt
->value
;
5007 BUG_ON_OPT_NEG(unset
);
5008 BUG_ON_OPT_ARG(arg
);
5009 enable_patch_output(&options
->output_format
);
5010 options
->flags
.binary
= 1;
5014 static int diff_opt_break_rewrites(const struct option
*opt
,
5015 const char *arg
, int unset
)
5017 int *break_opt
= opt
->value
;
5020 BUG_ON_OPT_NEG(unset
);
5023 opt1
= parse_rename_score(&arg
);
5026 else if (*arg
!= '/')
5027 return error(_("%s expects <n>/<m> form"), opt
->long_name
);
5030 opt2
= parse_rename_score(&arg
);
5033 return error(_("%s expects <n>/<m> form"), opt
->long_name
);
5034 *break_opt
= opt1
| (opt2
<< 16);
5038 static int diff_opt_char(const struct option
*opt
,
5039 const char *arg
, int unset
)
5041 char *value
= opt
->value
;
5043 BUG_ON_OPT_NEG(unset
);
5045 return error(_("%s expects a character, got '%s'"),
5046 opt
->long_name
, arg
);
5051 static int diff_opt_color_moved(const struct option
*opt
,
5052 const char *arg
, int unset
)
5054 struct diff_options
*options
= opt
->value
;
5057 options
->color_moved
= COLOR_MOVED_NO
;
5059 if (diff_color_moved_default
)
5060 options
->color_moved
= diff_color_moved_default
;
5061 if (options
->color_moved
== COLOR_MOVED_NO
)
5062 options
->color_moved
= COLOR_MOVED_DEFAULT
;
5064 int cm
= parse_color_moved(arg
);
5066 return error(_("bad --color-moved argument: %s"), arg
);
5067 options
->color_moved
= cm
;
5072 static int diff_opt_color_moved_ws(const struct option
*opt
,
5073 const char *arg
, int unset
)
5075 struct diff_options
*options
= opt
->value
;
5079 options
->color_moved_ws_handling
= 0;
5083 cm
= parse_color_moved_ws(arg
);
5084 if (cm
& COLOR_MOVED_WS_ERROR
)
5085 return error(_("invalid mode '%s' in --color-moved-ws"), arg
);
5086 options
->color_moved_ws_handling
= cm
;
5090 static int diff_opt_color_words(const struct option
*opt
,
5091 const char *arg
, int unset
)
5093 struct diff_options
*options
= opt
->value
;
5095 BUG_ON_OPT_NEG(unset
);
5096 options
->use_color
= 1;
5097 options
->word_diff
= DIFF_WORDS_COLOR
;
5098 options
->word_regex
= arg
;
5102 static int diff_opt_compact_summary(const struct option
*opt
,
5103 const char *arg
, int unset
)
5105 struct diff_options
*options
= opt
->value
;
5107 BUG_ON_OPT_ARG(arg
);
5109 options
->flags
.stat_with_summary
= 0;
5111 options
->flags
.stat_with_summary
= 1;
5112 options
->output_format
|= DIFF_FORMAT_DIFFSTAT
;
5117 static int diff_opt_diff_algorithm(const struct option
*opt
,
5118 const char *arg
, int unset
)
5120 struct diff_options
*options
= opt
->value
;
5121 long value
= parse_algorithm_value(arg
);
5123 BUG_ON_OPT_NEG(unset
);
5125 return error(_("option diff-algorithm accepts \"myers\", "
5126 "\"minimal\", \"patience\" and \"histogram\""));
5128 /* clear out previous settings */
5129 DIFF_XDL_CLR(options
, NEED_MINIMAL
);
5130 options
->xdl_opts
&= ~XDF_DIFF_ALGORITHM_MASK
;
5131 options
->xdl_opts
|= value
;
5135 static int diff_opt_dirstat(const struct option
*opt
,
5136 const char *arg
, int unset
)
5138 struct diff_options
*options
= opt
->value
;
5140 BUG_ON_OPT_NEG(unset
);
5141 if (!strcmp(opt
->long_name
, "cumulative")) {
5143 BUG("how come --cumulative take a value?");
5145 } else if (!strcmp(opt
->long_name
, "dirstat-by-file"))
5146 parse_dirstat_opt(options
, "files");
5147 parse_dirstat_opt(options
, arg
? arg
: "");
5151 static int diff_opt_find_copies(const struct option
*opt
,
5152 const char *arg
, int unset
)
5154 struct diff_options
*options
= opt
->value
;
5156 BUG_ON_OPT_NEG(unset
);
5159 options
->rename_score
= parse_rename_score(&arg
);
5161 return error(_("invalid argument to %s"), opt
->long_name
);
5163 if (options
->detect_rename
== DIFF_DETECT_COPY
)
5164 options
->flags
.find_copies_harder
= 1;
5166 options
->detect_rename
= DIFF_DETECT_COPY
;
5171 static int diff_opt_find_renames(const struct option
*opt
,
5172 const char *arg
, int unset
)
5174 struct diff_options
*options
= opt
->value
;
5176 BUG_ON_OPT_NEG(unset
);
5179 options
->rename_score
= parse_rename_score(&arg
);
5181 return error(_("invalid argument to %s"), opt
->long_name
);
5183 options
->detect_rename
= DIFF_DETECT_RENAME
;
5187 static int diff_opt_follow(const struct option
*opt
,
5188 const char *arg
, int unset
)
5190 struct diff_options
*options
= opt
->value
;
5192 BUG_ON_OPT_ARG(arg
);
5194 options
->flags
.follow_renames
= 0;
5195 options
->flags
.default_follow_renames
= 0;
5197 options
->flags
.follow_renames
= 1;
5202 static int diff_opt_ignore_submodules(const struct option
*opt
,
5203 const char *arg
, int unset
)
5205 struct diff_options
*options
= opt
->value
;
5207 BUG_ON_OPT_NEG(unset
);
5210 options
->flags
.override_submodule_config
= 1;
5211 handle_ignore_submodules_arg(options
, arg
);
5215 static int diff_opt_line_prefix(const struct option
*opt
,
5216 const char *optarg
, int unset
)
5218 struct diff_options
*options
= opt
->value
;
5220 BUG_ON_OPT_NEG(unset
);
5221 options
->line_prefix
= optarg
;
5222 options
->line_prefix_length
= strlen(options
->line_prefix
);
5223 graph_setup_line_prefix(options
);
5227 static int diff_opt_no_prefix(const struct option
*opt
,
5228 const char *optarg
, int unset
)
5230 struct diff_options
*options
= opt
->value
;
5232 BUG_ON_OPT_NEG(unset
);
5233 BUG_ON_OPT_ARG(optarg
);
5234 options
->a_prefix
= "";
5235 options
->b_prefix
= "";
5239 static enum parse_opt_result
diff_opt_output(struct parse_opt_ctx_t
*ctx
,
5240 const struct option
*opt
,
5241 const char *arg
, int unset
)
5243 struct diff_options
*options
= opt
->value
;
5246 BUG_ON_OPT_NEG(unset
);
5247 path
= prefix_filename(ctx
->prefix
, arg
);
5248 options
->file
= xfopen(path
, "w");
5249 options
->close_file
= 1;
5250 if (options
->use_color
!= GIT_COLOR_ALWAYS
)
5251 options
->use_color
= GIT_COLOR_NEVER
;
5256 static int diff_opt_patience(const struct option
*opt
,
5257 const char *arg
, int unset
)
5259 struct diff_options
*options
= opt
->value
;
5262 BUG_ON_OPT_NEG(unset
);
5263 BUG_ON_OPT_ARG(arg
);
5264 options
->xdl_opts
= DIFF_WITH_ALG(options
, PATIENCE_DIFF
);
5266 * Both --patience and --anchored use PATIENCE_DIFF
5267 * internally, so remove any anchors previously
5270 for (i
= 0; i
< options
->anchors_nr
; i
++)
5271 free(options
->anchors
[i
]);
5272 options
->anchors_nr
= 0;
5276 static int diff_opt_ignore_regex(const struct option
*opt
,
5277 const char *arg
, int unset
)
5279 struct diff_options
*options
= opt
->value
;
5282 BUG_ON_OPT_NEG(unset
);
5283 regex
= xmalloc(sizeof(*regex
));
5284 if (regcomp(regex
, arg
, REG_EXTENDED
| REG_NEWLINE
))
5285 return error(_("invalid regex given to -I: '%s'"), arg
);
5286 ALLOC_GROW(options
->ignore_regex
, options
->ignore_regex_nr
+ 1,
5287 options
->ignore_regex_alloc
);
5288 options
->ignore_regex
[options
->ignore_regex_nr
++] = regex
;
5292 static int diff_opt_pickaxe_regex(const struct option
*opt
,
5293 const char *arg
, int unset
)
5295 struct diff_options
*options
= opt
->value
;
5297 BUG_ON_OPT_NEG(unset
);
5298 options
->pickaxe
= arg
;
5299 options
->pickaxe_opts
|= DIFF_PICKAXE_KIND_G
;
5303 static int diff_opt_pickaxe_string(const struct option
*opt
,
5304 const char *arg
, int unset
)
5306 struct diff_options
*options
= opt
->value
;
5308 BUG_ON_OPT_NEG(unset
);
5309 options
->pickaxe
= arg
;
5310 options
->pickaxe_opts
|= DIFF_PICKAXE_KIND_S
;
5314 static int diff_opt_relative(const struct option
*opt
,
5315 const char *arg
, int unset
)
5317 struct diff_options
*options
= opt
->value
;
5319 options
->flags
.relative_name
= !unset
;
5321 options
->prefix
= arg
;
5325 static int diff_opt_submodule(const struct option
*opt
,
5326 const char *arg
, int unset
)
5328 struct diff_options
*options
= opt
->value
;
5330 BUG_ON_OPT_NEG(unset
);
5333 if (parse_submodule_params(options
, arg
))
5334 return error(_("failed to parse --submodule option parameter: '%s'"),
5339 static int diff_opt_textconv(const struct option
*opt
,
5340 const char *arg
, int unset
)
5342 struct diff_options
*options
= opt
->value
;
5344 BUG_ON_OPT_ARG(arg
);
5346 options
->flags
.allow_textconv
= 0;
5348 options
->flags
.allow_textconv
= 1;
5349 options
->flags
.textconv_set_via_cmdline
= 1;
5354 static int diff_opt_unified(const struct option
*opt
,
5355 const char *arg
, int unset
)
5357 struct diff_options
*options
= opt
->value
;
5360 BUG_ON_OPT_NEG(unset
);
5363 options
->context
= strtol(arg
, &s
, 10);
5365 return error(_("%s expects a numerical value"), "--unified");
5367 enable_patch_output(&options
->output_format
);
5372 static int diff_opt_word_diff(const struct option
*opt
,
5373 const char *arg
, int unset
)
5375 struct diff_options
*options
= opt
->value
;
5377 BUG_ON_OPT_NEG(unset
);
5379 if (!strcmp(arg
, "plain"))
5380 options
->word_diff
= DIFF_WORDS_PLAIN
;
5381 else if (!strcmp(arg
, "color")) {
5382 options
->use_color
= 1;
5383 options
->word_diff
= DIFF_WORDS_COLOR
;
5385 else if (!strcmp(arg
, "porcelain"))
5386 options
->word_diff
= DIFF_WORDS_PORCELAIN
;
5387 else if (!strcmp(arg
, "none"))
5388 options
->word_diff
= DIFF_WORDS_NONE
;
5390 return error(_("bad --word-diff argument: %s"), arg
);
5392 if (options
->word_diff
== DIFF_WORDS_NONE
)
5393 options
->word_diff
= DIFF_WORDS_PLAIN
;
5398 static int diff_opt_word_diff_regex(const struct option
*opt
,
5399 const char *arg
, int unset
)
5401 struct diff_options
*options
= opt
->value
;
5403 BUG_ON_OPT_NEG(unset
);
5404 if (options
->word_diff
== DIFF_WORDS_NONE
)
5405 options
->word_diff
= DIFF_WORDS_PLAIN
;
5406 options
->word_regex
= arg
;
5410 static int diff_opt_rotate_to(const struct option
*opt
, const char *arg
, int unset
)
5412 struct diff_options
*options
= opt
->value
;
5414 BUG_ON_OPT_NEG(unset
);
5415 if (!strcmp(opt
->long_name
, "skip-to"))
5416 options
->skip_instead_of_rotate
= 1;
5418 options
->skip_instead_of_rotate
= 0;
5419 options
->rotate_to
= arg
;
5423 static void prep_parse_options(struct diff_options
*options
)
5425 struct option parseopts
[] = {
5426 OPT_GROUP(N_("Diff output format options")),
5427 OPT_BITOP('p', "patch", &options
->output_format
,
5428 N_("generate patch"),
5429 DIFF_FORMAT_PATCH
, DIFF_FORMAT_NO_OUTPUT
),
5430 OPT_BIT_F('s', "no-patch", &options
->output_format
,
5431 N_("suppress diff output"),
5432 DIFF_FORMAT_NO_OUTPUT
, PARSE_OPT_NONEG
),
5433 OPT_BITOP('u', NULL
, &options
->output_format
,
5434 N_("generate patch"),
5435 DIFF_FORMAT_PATCH
, DIFF_FORMAT_NO_OUTPUT
),
5436 OPT_CALLBACK_F('U', "unified", options
, N_("<n>"),
5437 N_("generate diffs with <n> lines context"),
5438 PARSE_OPT_NONEG
| PARSE_OPT_OPTARG
, diff_opt_unified
),
5439 OPT_BOOL('W', "function-context", &options
->flags
.funccontext
,
5440 N_("generate diffs with <n> lines context")),
5441 OPT_BIT_F(0, "raw", &options
->output_format
,
5442 N_("generate the diff in raw format"),
5443 DIFF_FORMAT_RAW
, PARSE_OPT_NONEG
),
5444 OPT_BITOP(0, "patch-with-raw", &options
->output_format
,
5445 N_("synonym for '-p --raw'"),
5446 DIFF_FORMAT_PATCH
| DIFF_FORMAT_RAW
,
5447 DIFF_FORMAT_NO_OUTPUT
),
5448 OPT_BITOP(0, "patch-with-stat", &options
->output_format
,
5449 N_("synonym for '-p --stat'"),
5450 DIFF_FORMAT_PATCH
| DIFF_FORMAT_DIFFSTAT
,
5451 DIFF_FORMAT_NO_OUTPUT
),
5452 OPT_BIT_F(0, "numstat", &options
->output_format
,
5453 N_("machine friendly --stat"),
5454 DIFF_FORMAT_NUMSTAT
, PARSE_OPT_NONEG
),
5455 OPT_BIT_F(0, "shortstat", &options
->output_format
,
5456 N_("output only the last line of --stat"),
5457 DIFF_FORMAT_SHORTSTAT
, PARSE_OPT_NONEG
),
5458 OPT_CALLBACK_F('X', "dirstat", options
, N_("<param1,param2>..."),
5459 N_("output the distribution of relative amount of changes for each sub-directory"),
5460 PARSE_OPT_NONEG
| PARSE_OPT_OPTARG
,
5462 OPT_CALLBACK_F(0, "cumulative", options
, NULL
,
5463 N_("synonym for --dirstat=cumulative"),
5464 PARSE_OPT_NONEG
| PARSE_OPT_NOARG
,
5466 OPT_CALLBACK_F(0, "dirstat-by-file", options
, N_("<param1,param2>..."),
5467 N_("synonym for --dirstat=files,param1,param2..."),
5468 PARSE_OPT_NONEG
| PARSE_OPT_OPTARG
,
5470 OPT_BIT_F(0, "check", &options
->output_format
,
5471 N_("warn if changes introduce conflict markers or whitespace errors"),
5472 DIFF_FORMAT_CHECKDIFF
, PARSE_OPT_NONEG
),
5473 OPT_BIT_F(0, "summary", &options
->output_format
,
5474 N_("condensed summary such as creations, renames and mode changes"),
5475 DIFF_FORMAT_SUMMARY
, PARSE_OPT_NONEG
),
5476 OPT_BIT_F(0, "name-only", &options
->output_format
,
5477 N_("show only names of changed files"),
5478 DIFF_FORMAT_NAME
, PARSE_OPT_NONEG
),
5479 OPT_BIT_F(0, "name-status", &options
->output_format
,
5480 N_("show only names and status of changed files"),
5481 DIFF_FORMAT_NAME_STATUS
, PARSE_OPT_NONEG
),
5482 OPT_CALLBACK_F(0, "stat", options
, N_("<width>[,<name-width>[,<count>]]"),
5483 N_("generate diffstat"),
5484 PARSE_OPT_NONEG
| PARSE_OPT_OPTARG
, diff_opt_stat
),
5485 OPT_CALLBACK_F(0, "stat-width", options
, N_("<width>"),
5486 N_("generate diffstat with a given width"),
5487 PARSE_OPT_NONEG
, diff_opt_stat
),
5488 OPT_CALLBACK_F(0, "stat-name-width", options
, N_("<width>"),
5489 N_("generate diffstat with a given name width"),
5490 PARSE_OPT_NONEG
, diff_opt_stat
),
5491 OPT_CALLBACK_F(0, "stat-graph-width", options
, N_("<width>"),
5492 N_("generate diffstat with a given graph width"),
5493 PARSE_OPT_NONEG
, diff_opt_stat
),
5494 OPT_CALLBACK_F(0, "stat-count", options
, N_("<count>"),
5495 N_("generate diffstat with limited lines"),
5496 PARSE_OPT_NONEG
, diff_opt_stat
),
5497 OPT_CALLBACK_F(0, "compact-summary", options
, NULL
,
5498 N_("generate compact summary in diffstat"),
5499 PARSE_OPT_NOARG
, diff_opt_compact_summary
),
5500 OPT_CALLBACK_F(0, "binary", options
, NULL
,
5501 N_("output a binary diff that can be applied"),
5502 PARSE_OPT_NONEG
| PARSE_OPT_NOARG
, diff_opt_binary
),
5503 OPT_BOOL(0, "full-index", &options
->flags
.full_index
,
5504 N_("show full pre- and post-image object names on the \"index\" lines")),
5505 OPT_COLOR_FLAG(0, "color", &options
->use_color
,
5506 N_("show colored diff")),
5507 OPT_CALLBACK_F(0, "ws-error-highlight", options
, N_("<kind>"),
5508 N_("highlight whitespace errors in the 'context', 'old' or 'new' lines in the diff"),
5509 PARSE_OPT_NONEG
, diff_opt_ws_error_highlight
),
5510 OPT_SET_INT('z', NULL
, &options
->line_termination
,
5511 N_("do not munge pathnames and use NULs as output field terminators in --raw or --numstat"),
5513 OPT__ABBREV(&options
->abbrev
),
5514 OPT_STRING_F(0, "src-prefix", &options
->a_prefix
, N_("<prefix>"),
5515 N_("show the given source prefix instead of \"a/\""),
5517 OPT_STRING_F(0, "dst-prefix", &options
->b_prefix
, N_("<prefix>"),
5518 N_("show the given destination prefix instead of \"b/\""),
5520 OPT_CALLBACK_F(0, "line-prefix", options
, N_("<prefix>"),
5521 N_("prepend an additional prefix to every line of output"),
5522 PARSE_OPT_NONEG
, diff_opt_line_prefix
),
5523 OPT_CALLBACK_F(0, "no-prefix", options
, NULL
,
5524 N_("do not show any source or destination prefix"),
5525 PARSE_OPT_NONEG
| PARSE_OPT_NOARG
, diff_opt_no_prefix
),
5526 OPT_INTEGER_F(0, "inter-hunk-context", &options
->interhunkcontext
,
5527 N_("show context between diff hunks up to the specified number of lines"),
5529 OPT_CALLBACK_F(0, "output-indicator-new",
5530 &options
->output_indicators
[OUTPUT_INDICATOR_NEW
],
5532 N_("specify the character to indicate a new line instead of '+'"),
5533 PARSE_OPT_NONEG
, diff_opt_char
),
5534 OPT_CALLBACK_F(0, "output-indicator-old",
5535 &options
->output_indicators
[OUTPUT_INDICATOR_OLD
],
5537 N_("specify the character to indicate an old line instead of '-'"),
5538 PARSE_OPT_NONEG
, diff_opt_char
),
5539 OPT_CALLBACK_F(0, "output-indicator-context",
5540 &options
->output_indicators
[OUTPUT_INDICATOR_CONTEXT
],
5542 N_("specify the character to indicate a context instead of ' '"),
5543 PARSE_OPT_NONEG
, diff_opt_char
),
5545 OPT_GROUP(N_("Diff rename options")),
5546 OPT_CALLBACK_F('B', "break-rewrites", &options
->break_opt
, N_("<n>[/<m>]"),
5547 N_("break complete rewrite changes into pairs of delete and create"),
5548 PARSE_OPT_NONEG
| PARSE_OPT_OPTARG
,
5549 diff_opt_break_rewrites
),
5550 OPT_CALLBACK_F('M', "find-renames", options
, N_("<n>"),
5551 N_("detect renames"),
5552 PARSE_OPT_NONEG
| PARSE_OPT_OPTARG
,
5553 diff_opt_find_renames
),
5554 OPT_SET_INT_F('D', "irreversible-delete", &options
->irreversible_delete
,
5555 N_("omit the preimage for deletes"),
5556 1, PARSE_OPT_NONEG
),
5557 OPT_CALLBACK_F('C', "find-copies", options
, N_("<n>"),
5558 N_("detect copies"),
5559 PARSE_OPT_NONEG
| PARSE_OPT_OPTARG
,
5560 diff_opt_find_copies
),
5561 OPT_BOOL(0, "find-copies-harder", &options
->flags
.find_copies_harder
,
5562 N_("use unmodified files as source to find copies")),
5563 OPT_SET_INT_F(0, "no-renames", &options
->detect_rename
,
5564 N_("disable rename detection"),
5565 0, PARSE_OPT_NONEG
),
5566 OPT_BOOL(0, "rename-empty", &options
->flags
.rename_empty
,
5567 N_("use empty blobs as rename source")),
5568 OPT_CALLBACK_F(0, "follow", options
, NULL
,
5569 N_("continue listing the history of a file beyond renames"),
5570 PARSE_OPT_NOARG
, diff_opt_follow
),
5571 OPT_INTEGER('l', NULL
, &options
->rename_limit
,
5572 N_("prevent rename/copy detection if the number of rename/copy targets exceeds given limit")),
5574 OPT_GROUP(N_("Diff algorithm options")),
5575 OPT_BIT(0, "minimal", &options
->xdl_opts
,
5576 N_("produce the smallest possible diff"),
5578 OPT_BIT_F('w', "ignore-all-space", &options
->xdl_opts
,
5579 N_("ignore whitespace when comparing lines"),
5580 XDF_IGNORE_WHITESPACE
, PARSE_OPT_NONEG
),
5581 OPT_BIT_F('b', "ignore-space-change", &options
->xdl_opts
,
5582 N_("ignore changes in amount of whitespace"),
5583 XDF_IGNORE_WHITESPACE_CHANGE
, PARSE_OPT_NONEG
),
5584 OPT_BIT_F(0, "ignore-space-at-eol", &options
->xdl_opts
,
5585 N_("ignore changes in whitespace at EOL"),
5586 XDF_IGNORE_WHITESPACE_AT_EOL
, PARSE_OPT_NONEG
),
5587 OPT_BIT_F(0, "ignore-cr-at-eol", &options
->xdl_opts
,
5588 N_("ignore carrier-return at the end of line"),
5589 XDF_IGNORE_CR_AT_EOL
, PARSE_OPT_NONEG
),
5590 OPT_BIT_F(0, "ignore-blank-lines", &options
->xdl_opts
,
5591 N_("ignore changes whose lines are all blank"),
5592 XDF_IGNORE_BLANK_LINES
, PARSE_OPT_NONEG
),
5593 OPT_CALLBACK_F('I', "ignore-matching-lines", options
, N_("<regex>"),
5594 N_("ignore changes whose all lines match <regex>"),
5595 0, diff_opt_ignore_regex
),
5596 OPT_BIT(0, "indent-heuristic", &options
->xdl_opts
,
5597 N_("heuristic to shift diff hunk boundaries for easy reading"),
5598 XDF_INDENT_HEURISTIC
),
5599 OPT_CALLBACK_F(0, "patience", options
, NULL
,
5600 N_("generate diff using the \"patience diff\" algorithm"),
5601 PARSE_OPT_NONEG
| PARSE_OPT_NOARG
,
5603 OPT_BITOP(0, "histogram", &options
->xdl_opts
,
5604 N_("generate diff using the \"histogram diff\" algorithm"),
5605 XDF_HISTOGRAM_DIFF
, XDF_DIFF_ALGORITHM_MASK
),
5606 OPT_CALLBACK_F(0, "diff-algorithm", options
, N_("<algorithm>"),
5607 N_("choose a diff algorithm"),
5608 PARSE_OPT_NONEG
, diff_opt_diff_algorithm
),
5609 OPT_CALLBACK_F(0, "anchored", options
, N_("<text>"),
5610 N_("generate diff using the \"anchored diff\" algorithm"),
5611 PARSE_OPT_NONEG
, diff_opt_anchored
),
5612 OPT_CALLBACK_F(0, "word-diff", options
, N_("<mode>"),
5613 N_("show word diff, using <mode> to delimit changed words"),
5614 PARSE_OPT_NONEG
| PARSE_OPT_OPTARG
, diff_opt_word_diff
),
5615 OPT_CALLBACK_F(0, "word-diff-regex", options
, N_("<regex>"),
5616 N_("use <regex> to decide what a word is"),
5617 PARSE_OPT_NONEG
, diff_opt_word_diff_regex
),
5618 OPT_CALLBACK_F(0, "color-words", options
, N_("<regex>"),
5619 N_("equivalent to --word-diff=color --word-diff-regex=<regex>"),
5620 PARSE_OPT_NONEG
| PARSE_OPT_OPTARG
, diff_opt_color_words
),
5621 OPT_CALLBACK_F(0, "color-moved", options
, N_("<mode>"),
5622 N_("moved lines of code are colored differently"),
5623 PARSE_OPT_OPTARG
, diff_opt_color_moved
),
5624 OPT_CALLBACK_F(0, "color-moved-ws", options
, N_("<mode>"),
5625 N_("how white spaces are ignored in --color-moved"),
5626 0, diff_opt_color_moved_ws
),
5628 OPT_GROUP(N_("Other diff options")),
5629 OPT_CALLBACK_F(0, "relative", options
, N_("<prefix>"),
5630 N_("when run from subdir, exclude changes outside and show relative paths"),
5633 OPT_BOOL('a', "text", &options
->flags
.text
,
5634 N_("treat all files as text")),
5635 OPT_BOOL('R', NULL
, &options
->flags
.reverse_diff
,
5636 N_("swap two inputs, reverse the diff")),
5637 OPT_BOOL(0, "exit-code", &options
->flags
.exit_with_status
,
5638 N_("exit with 1 if there were differences, 0 otherwise")),
5639 OPT_BOOL(0, "quiet", &options
->flags
.quick
,
5640 N_("disable all output of the program")),
5641 OPT_BOOL(0, "ext-diff", &options
->flags
.allow_external
,
5642 N_("allow an external diff helper to be executed")),
5643 OPT_CALLBACK_F(0, "textconv", options
, NULL
,
5644 N_("run external text conversion filters when comparing binary files"),
5645 PARSE_OPT_NOARG
, diff_opt_textconv
),
5646 OPT_CALLBACK_F(0, "ignore-submodules", options
, N_("<when>"),
5647 N_("ignore changes to submodules in the diff generation"),
5648 PARSE_OPT_NONEG
| PARSE_OPT_OPTARG
,
5649 diff_opt_ignore_submodules
),
5650 OPT_CALLBACK_F(0, "submodule", options
, N_("<format>"),
5651 N_("specify how differences in submodules are shown"),
5652 PARSE_OPT_NONEG
| PARSE_OPT_OPTARG
,
5653 diff_opt_submodule
),
5654 OPT_SET_INT_F(0, "ita-invisible-in-index", &options
->ita_invisible_in_index
,
5655 N_("hide 'git add -N' entries from the index"),
5656 1, PARSE_OPT_NONEG
),
5657 OPT_SET_INT_F(0, "ita-visible-in-index", &options
->ita_invisible_in_index
,
5658 N_("treat 'git add -N' entries as real in the index"),
5659 0, PARSE_OPT_NONEG
),
5660 OPT_CALLBACK_F('S', NULL
, options
, N_("<string>"),
5661 N_("look for differences that change the number of occurrences of the specified string"),
5662 0, diff_opt_pickaxe_string
),
5663 OPT_CALLBACK_F('G', NULL
, options
, N_("<regex>"),
5664 N_("look for differences that change the number of occurrences of the specified regex"),
5665 0, diff_opt_pickaxe_regex
),
5666 OPT_BIT_F(0, "pickaxe-all", &options
->pickaxe_opts
,
5667 N_("show all changes in the changeset with -S or -G"),
5668 DIFF_PICKAXE_ALL
, PARSE_OPT_NONEG
),
5669 OPT_BIT_F(0, "pickaxe-regex", &options
->pickaxe_opts
,
5670 N_("treat <string> in -S as extended POSIX regular expression"),
5671 DIFF_PICKAXE_REGEX
, PARSE_OPT_NONEG
),
5672 OPT_FILENAME('O', NULL
, &options
->orderfile
,
5673 N_("control the order in which files appear in the output")),
5674 OPT_CALLBACK_F(0, "rotate-to", options
, N_("<path>"),
5675 N_("show the change in the specified path first"),
5676 PARSE_OPT_NONEG
, diff_opt_rotate_to
),
5677 OPT_CALLBACK_F(0, "skip-to", options
, N_("<path>"),
5678 N_("skip the output to the specified path"),
5679 PARSE_OPT_NONEG
, diff_opt_rotate_to
),
5680 OPT_CALLBACK_F(0, "find-object", options
, N_("<object-id>"),
5681 N_("look for differences that change the number of occurrences of the specified object"),
5682 PARSE_OPT_NONEG
, diff_opt_find_object
),
5683 OPT_CALLBACK_F(0, "diff-filter", options
, N_("[(A|C|D|M|R|T|U|X|B)...[*]]"),
5684 N_("select files by diff type"),
5685 PARSE_OPT_NONEG
, diff_opt_diff_filter
),
5686 { OPTION_CALLBACK
, 0, "output", options
, N_("<file>"),
5687 N_("output to a specific file"),
5688 PARSE_OPT_NONEG
, NULL
, 0, diff_opt_output
},
5693 ALLOC_ARRAY(options
->parseopts
, ARRAY_SIZE(parseopts
));
5694 memcpy(options
->parseopts
, parseopts
, sizeof(parseopts
));
5697 int diff_opt_parse(struct diff_options
*options
,
5698 const char **av
, int ac
, const char *prefix
)
5703 ac
= parse_options(ac
, av
, prefix
, options
->parseopts
, NULL
,
5704 PARSE_OPT_KEEP_DASHDASH
|
5705 PARSE_OPT_KEEP_UNKNOWN_OPT
|
5706 PARSE_OPT_NO_INTERNAL_HELP
|
5707 PARSE_OPT_ONE_SHOT
|
5708 PARSE_OPT_STOP_AT_NON_OPTION
);
5713 int parse_rename_score(const char **cp_p
)
5715 unsigned long num
, scale
;
5717 const char *cp
= *cp_p
;
5724 if ( !dot
&& ch
== '.' ) {
5727 } else if ( ch
== '%' ) {
5728 scale
= dot
? scale
*100 : 100;
5729 cp
++; /* % is always at the end */
5731 } else if ( ch
>= '0' && ch
<= '9' ) {
5732 if ( scale
< 100000 ) {
5734 num
= (num
*10) + (ch
-'0');
5743 /* user says num divided by scale and we say internally that
5744 * is MAX_SCORE * num / scale.
5746 return (int)((num
>= scale
) ? MAX_SCORE
: (MAX_SCORE
* num
/ scale
));
5749 struct diff_queue_struct diff_queued_diff
;
5751 void diff_q(struct diff_queue_struct
*queue
, struct diff_filepair
*dp
)
5753 ALLOC_GROW(queue
->queue
, queue
->nr
+ 1, queue
->alloc
);
5754 queue
->queue
[queue
->nr
++] = dp
;
5757 struct diff_filepair
*diff_queue(struct diff_queue_struct
*queue
,
5758 struct diff_filespec
*one
,
5759 struct diff_filespec
*two
)
5761 struct diff_filepair
*dp
= xcalloc(1, sizeof(*dp
));
5769 void diff_free_filepair(struct diff_filepair
*p
)
5771 free_filespec(p
->one
);
5772 free_filespec(p
->two
);
5776 void diff_free_queue(struct diff_queue_struct
*q
)
5778 for (int i
= 0; i
< q
->nr
; i
++)
5779 diff_free_filepair(q
->queue
[i
]);
5783 const char *diff_aligned_abbrev(const struct object_id
*oid
, int len
)
5788 /* Do we want all 40 hex characters? */
5789 if (len
== the_hash_algo
->hexsz
)
5790 return oid_to_hex(oid
);
5792 /* An abbreviated value is fine, possibly followed by an ellipsis. */
5793 abbrev
= diff_abbrev_oid(oid
, len
);
5795 if (!print_sha1_ellipsis())
5798 abblen
= strlen(abbrev
);
5801 * In well-behaved cases, where the abbreviated result is the
5802 * same as the requested length, append three dots after the
5803 * abbreviation (hence the whole logic is limited to the case
5804 * where abblen < 37); when the actual abbreviated result is a
5805 * bit longer than the requested length, we reduce the number
5806 * of dots so that they match the well-behaved ones. However,
5807 * if the actual abbreviation is longer than the requested
5808 * length by more than three, we give up on aligning, and add
5809 * three dots anyway, to indicate that the output is not the
5810 * full object name. Yes, this may be suboptimal, but this
5811 * appears only in "diff --raw --abbrev" output and it is not
5812 * worth the effort to change it now. Note that this would
5813 * likely to work fine when the automatic sizing of default
5814 * abbreviation length is used--we would be fed -1 in "len" in
5815 * that case, and will end up always appending three-dots, but
5816 * the automatic sizing is supposed to give abblen that ensures
5817 * uniqueness across all objects (statistically speaking).
5819 if (abblen
< the_hash_algo
->hexsz
- 3) {
5820 static char hex
[GIT_MAX_HEXSZ
+ 1];
5821 if (len
< abblen
&& abblen
<= len
+ 2)
5822 xsnprintf(hex
, sizeof(hex
), "%s%.*s", abbrev
, len
+3-abblen
, "..");
5824 xsnprintf(hex
, sizeof(hex
), "%s...", abbrev
);
5828 return oid_to_hex(oid
);
5831 static void diff_flush_raw(struct diff_filepair
*p
, struct diff_options
*opt
)
5833 int line_termination
= opt
->line_termination
;
5834 int inter_name_termination
= line_termination
? '\t' : '\0';
5836 fprintf(opt
->file
, "%s", diff_line_prefix(opt
));
5837 if (!(opt
->output_format
& DIFF_FORMAT_NAME_STATUS
)) {
5838 fprintf(opt
->file
, ":%06o %06o %s ", p
->one
->mode
, p
->two
->mode
,
5839 diff_aligned_abbrev(&p
->one
->oid
, opt
->abbrev
));
5840 fprintf(opt
->file
, "%s ",
5841 diff_aligned_abbrev(&p
->two
->oid
, opt
->abbrev
));
5844 fprintf(opt
->file
, "%c%03d%c", p
->status
, similarity_index(p
),
5845 inter_name_termination
);
5847 fprintf(opt
->file
, "%c%c", p
->status
, inter_name_termination
);
5850 if (p
->status
== DIFF_STATUS_COPIED
||
5851 p
->status
== DIFF_STATUS_RENAMED
) {
5852 const char *name_a
, *name_b
;
5853 name_a
= p
->one
->path
;
5854 name_b
= p
->two
->path
;
5855 strip_prefix(opt
->prefix_length
, &name_a
, &name_b
);
5856 write_name_quoted(name_a
, opt
->file
, inter_name_termination
);
5857 write_name_quoted(name_b
, opt
->file
, line_termination
);
5859 const char *name_a
, *name_b
;
5860 name_a
= p
->one
->mode
? p
->one
->path
: p
->two
->path
;
5862 strip_prefix(opt
->prefix_length
, &name_a
, &name_b
);
5863 write_name_quoted(name_a
, opt
->file
, line_termination
);
5867 int diff_unmodified_pair(struct diff_filepair
*p
)
5869 /* This function is written stricter than necessary to support
5870 * the currently implemented transformers, but the idea is to
5871 * let transformers to produce diff_filepairs any way they want,
5872 * and filter and clean them up here before producing the output.
5874 struct diff_filespec
*one
= p
->one
, *two
= p
->two
;
5876 if (DIFF_PAIR_UNMERGED(p
))
5877 return 0; /* unmerged is interesting */
5879 /* deletion, addition, mode or type change
5880 * and rename are all interesting.
5882 if (DIFF_FILE_VALID(one
) != DIFF_FILE_VALID(two
) ||
5883 DIFF_PAIR_MODE_CHANGED(p
) ||
5884 strcmp(one
->path
, two
->path
))
5887 /* both are valid and point at the same path. that is, we are
5888 * dealing with a change.
5890 if (one
->oid_valid
&& two
->oid_valid
&&
5891 oideq(&one
->oid
, &two
->oid
) &&
5892 !one
->dirty_submodule
&& !two
->dirty_submodule
)
5893 return 1; /* no change */
5894 if (!one
->oid_valid
&& !two
->oid_valid
)
5895 return 1; /* both look at the same file on the filesystem. */
5899 static void diff_flush_patch(struct diff_filepair
*p
, struct diff_options
*o
)
5901 int include_conflict_headers
=
5902 (additional_headers(o
, p
->one
->path
) &&
5904 (!o
->filter
|| filter_bit_tst(DIFF_STATUS_UNMERGED
, o
)));
5907 * Check if we can return early without showing a diff. Note that
5908 * diff_filepair only stores {oid, path, mode, is_valid}
5909 * information for each path, and thus diff_unmodified_pair() only
5910 * considers those bits of info. However, we do not want pairs
5911 * created by create_filepairs_for_header_only_notifications()
5912 * (which always look like unmodified pairs) to be ignored, so
5913 * return early if both p is unmodified AND we don't want to
5914 * include_conflict_headers.
5916 if (diff_unmodified_pair(p
) && !include_conflict_headers
)
5919 /* Actually, we can also return early to avoid showing tree diffs */
5920 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
5921 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
5927 static void diff_flush_stat(struct diff_filepair
*p
, struct diff_options
*o
,
5928 struct diffstat_t
*diffstat
)
5930 if (diff_unmodified_pair(p
))
5933 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
5934 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
5935 return; /* no useful stat for tree diffs */
5937 run_diffstat(p
, o
, diffstat
);
5940 static void diff_flush_checkdiff(struct diff_filepair
*p
,
5941 struct diff_options
*o
)
5943 if (diff_unmodified_pair(p
))
5946 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
5947 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
5948 return; /* nothing to check in tree diffs */
5950 run_checkdiff(p
, o
);
5953 int diff_queue_is_empty(struct diff_options
*o
)
5955 struct diff_queue_struct
*q
= &diff_queued_diff
;
5957 int include_conflict_headers
=
5958 (o
->additional_path_headers
&&
5959 strmap_get_size(o
->additional_path_headers
) &&
5961 (!o
->filter
|| filter_bit_tst(DIFF_STATUS_UNMERGED
, o
)));
5963 if (include_conflict_headers
)
5966 for (i
= 0; i
< q
->nr
; i
++)
5967 if (!diff_unmodified_pair(q
->queue
[i
]))
5973 void diff_debug_filespec(struct diff_filespec
*s
, int x
, const char *one
)
5975 fprintf(stderr
, "queue[%d] %s (%s) %s %06o %s\n",
5978 DIFF_FILE_VALID(s
) ? "valid" : "invalid",
5980 s
->oid_valid
? oid_to_hex(&s
->oid
) : "");
5981 fprintf(stderr
, "queue[%d] %s size %lu\n",
5986 void diff_debug_filepair(const struct diff_filepair
*p
, int i
)
5988 diff_debug_filespec(p
->one
, i
, "one");
5989 diff_debug_filespec(p
->two
, i
, "two");
5990 fprintf(stderr
, "score %d, status %c rename_used %d broken %d\n",
5991 p
->score
, p
->status
? p
->status
: '?',
5992 p
->one
->rename_used
, p
->broken_pair
);
5995 void diff_debug_queue(const char *msg
, struct diff_queue_struct
*q
)
5999 fprintf(stderr
, "%s\n", msg
);
6000 fprintf(stderr
, "q->nr = %d\n", q
->nr
);
6001 for (i
= 0; i
< q
->nr
; i
++) {
6002 struct diff_filepair
*p
= q
->queue
[i
];
6003 diff_debug_filepair(p
, i
);
6008 static void diff_resolve_rename_copy(void)
6011 struct diff_filepair
*p
;
6012 struct diff_queue_struct
*q
= &diff_queued_diff
;
6014 diff_debug_queue("resolve-rename-copy", q
);
6016 for (i
= 0; i
< q
->nr
; i
++) {
6018 p
->status
= 0; /* undecided */
6019 if (DIFF_PAIR_UNMERGED(p
))
6020 p
->status
= DIFF_STATUS_UNMERGED
;
6021 else if (!DIFF_FILE_VALID(p
->one
))
6022 p
->status
= DIFF_STATUS_ADDED
;
6023 else if (!DIFF_FILE_VALID(p
->two
))
6024 p
->status
= DIFF_STATUS_DELETED
;
6025 else if (DIFF_PAIR_TYPE_CHANGED(p
))
6026 p
->status
= DIFF_STATUS_TYPE_CHANGED
;
6028 /* from this point on, we are dealing with a pair
6029 * whose both sides are valid and of the same type, i.e.
6030 * either in-place edit or rename/copy edit.
6032 else if (DIFF_PAIR_RENAME(p
)) {
6034 * A rename might have re-connected a broken
6035 * pair up, causing the pathnames to be the
6036 * same again. If so, that's not a rename at
6037 * all, just a modification..
6039 * Otherwise, see if this source was used for
6040 * multiple renames, in which case we decrement
6041 * the count, and call it a copy.
6043 if (!strcmp(p
->one
->path
, p
->two
->path
))
6044 p
->status
= DIFF_STATUS_MODIFIED
;
6045 else if (--p
->one
->rename_used
> 0)
6046 p
->status
= DIFF_STATUS_COPIED
;
6048 p
->status
= DIFF_STATUS_RENAMED
;
6050 else if (!oideq(&p
->one
->oid
, &p
->two
->oid
) ||
6051 p
->one
->mode
!= p
->two
->mode
||
6052 p
->one
->dirty_submodule
||
6053 p
->two
->dirty_submodule
||
6054 is_null_oid(&p
->one
->oid
))
6055 p
->status
= DIFF_STATUS_MODIFIED
;
6057 /* This is a "no-change" entry and should not
6058 * happen anymore, but prepare for broken callers.
6060 error("feeding unmodified %s to diffcore",
6062 p
->status
= DIFF_STATUS_UNKNOWN
;
6065 diff_debug_queue("resolve-rename-copy done", q
);
6068 static int check_pair_status(struct diff_filepair
*p
)
6070 switch (p
->status
) {
6071 case DIFF_STATUS_UNKNOWN
:
6074 die("internal error in diff-resolve-rename-copy");
6080 static void flush_one_pair(struct diff_filepair
*p
, struct diff_options
*opt
)
6082 int fmt
= opt
->output_format
;
6084 if (fmt
& DIFF_FORMAT_CHECKDIFF
)
6085 diff_flush_checkdiff(p
, opt
);
6086 else if (fmt
& (DIFF_FORMAT_RAW
| DIFF_FORMAT_NAME_STATUS
))
6087 diff_flush_raw(p
, opt
);
6088 else if (fmt
& DIFF_FORMAT_NAME
) {
6089 const char *name_a
, *name_b
;
6090 name_a
= p
->two
->path
;
6092 strip_prefix(opt
->prefix_length
, &name_a
, &name_b
);
6093 fprintf(opt
->file
, "%s", diff_line_prefix(opt
));
6094 write_name_quoted(name_a
, opt
->file
, opt
->line_termination
);
6098 static void show_file_mode_name(struct diff_options
*opt
, const char *newdelete
, struct diff_filespec
*fs
)
6100 struct strbuf sb
= STRBUF_INIT
;
6102 strbuf_addf(&sb
, " %s mode %06o ", newdelete
, fs
->mode
);
6104 strbuf_addf(&sb
, " %s ", newdelete
);
6106 quote_c_style(fs
->path
, &sb
, NULL
, 0);
6107 strbuf_addch(&sb
, '\n');
6108 emit_diff_symbol(opt
, DIFF_SYMBOL_SUMMARY
,
6110 strbuf_release(&sb
);
6113 static void show_mode_change(struct diff_options
*opt
, struct diff_filepair
*p
,
6116 if (p
->one
->mode
&& p
->two
->mode
&& p
->one
->mode
!= p
->two
->mode
) {
6117 struct strbuf sb
= STRBUF_INIT
;
6118 strbuf_addf(&sb
, " mode change %06o => %06o",
6119 p
->one
->mode
, p
->two
->mode
);
6121 strbuf_addch(&sb
, ' ');
6122 quote_c_style(p
->two
->path
, &sb
, NULL
, 0);
6124 strbuf_addch(&sb
, '\n');
6125 emit_diff_symbol(opt
, DIFF_SYMBOL_SUMMARY
,
6127 strbuf_release(&sb
);
6131 static void show_rename_copy(struct diff_options
*opt
, const char *renamecopy
,
6132 struct diff_filepair
*p
)
6134 struct strbuf sb
= STRBUF_INIT
;
6135 struct strbuf names
= STRBUF_INIT
;
6137 pprint_rename(&names
, p
->one
->path
, p
->two
->path
);
6138 strbuf_addf(&sb
, " %s %s (%d%%)\n",
6139 renamecopy
, names
.buf
, similarity_index(p
));
6140 strbuf_release(&names
);
6141 emit_diff_symbol(opt
, DIFF_SYMBOL_SUMMARY
,
6143 show_mode_change(opt
, p
, 0);
6144 strbuf_release(&sb
);
6147 static void diff_summary(struct diff_options
*opt
, struct diff_filepair
*p
)
6150 case DIFF_STATUS_DELETED
:
6151 show_file_mode_name(opt
, "delete", p
->one
);
6153 case DIFF_STATUS_ADDED
:
6154 show_file_mode_name(opt
, "create", p
->two
);
6156 case DIFF_STATUS_COPIED
:
6157 show_rename_copy(opt
, "copy", p
);
6159 case DIFF_STATUS_RENAMED
:
6160 show_rename_copy(opt
, "rename", p
);
6164 struct strbuf sb
= STRBUF_INIT
;
6165 strbuf_addstr(&sb
, " rewrite ");
6166 quote_c_style(p
->two
->path
, &sb
, NULL
, 0);
6167 strbuf_addf(&sb
, " (%d%%)\n", similarity_index(p
));
6168 emit_diff_symbol(opt
, DIFF_SYMBOL_SUMMARY
,
6170 strbuf_release(&sb
);
6172 show_mode_change(opt
, p
, !p
->score
);
6182 static int remove_space(char *line
, int len
)
6188 for (i
= 0; i
< len
; i
++)
6189 if (!isspace((c
= line
[i
])))
6195 void flush_one_hunk(struct object_id
*result
, git_hash_ctx
*ctx
)
6197 unsigned char hash
[GIT_MAX_RAWSZ
];
6198 unsigned short carry
= 0;
6201 the_hash_algo
->final_fn(hash
, ctx
);
6202 the_hash_algo
->init_fn(ctx
);
6203 /* 20-byte sum, with carry */
6204 for (i
= 0; i
< the_hash_algo
->rawsz
; ++i
) {
6205 carry
+= result
->hash
[i
] + hash
[i
];
6206 result
->hash
[i
] = carry
;
6211 static int patch_id_consume(void *priv
, char *line
, unsigned long len
)
6213 struct patch_id_t
*data
= priv
;
6216 if (len
> 12 && starts_with(line
, "\\ "))
6218 new_len
= remove_space(line
, len
);
6220 the_hash_algo
->update_fn(data
->ctx
, line
, new_len
);
6221 data
->patchlen
+= new_len
;
6225 static void patch_id_add_string(git_hash_ctx
*ctx
, const char *str
)
6227 the_hash_algo
->update_fn(ctx
, str
, strlen(str
));
6230 static void patch_id_add_mode(git_hash_ctx
*ctx
, unsigned mode
)
6232 /* large enough for 2^32 in octal */
6234 int len
= xsnprintf(buf
, sizeof(buf
), "%06o", mode
);
6235 the_hash_algo
->update_fn(ctx
, buf
, len
);
6238 /* returns 0 upon success, and writes result into oid */
6239 static int diff_get_patch_id(struct diff_options
*options
, struct object_id
*oid
, int diff_header_only
)
6241 struct diff_queue_struct
*q
= &diff_queued_diff
;
6244 struct patch_id_t data
;
6246 the_hash_algo
->init_fn(&ctx
);
6247 memset(&data
, 0, sizeof(struct patch_id_t
));
6251 for (i
= 0; i
< q
->nr
; i
++) {
6255 struct diff_filepair
*p
= q
->queue
[i
];
6258 memset(&xpp
, 0, sizeof(xpp
));
6259 memset(&xecfg
, 0, sizeof(xecfg
));
6261 return error("internal diff status error");
6262 if (p
->status
== DIFF_STATUS_UNKNOWN
)
6264 if (diff_unmodified_pair(p
))
6266 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
6267 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
6269 if (DIFF_PAIR_UNMERGED(p
))
6272 diff_fill_oid_info(p
->one
, options
->repo
->index
);
6273 diff_fill_oid_info(p
->two
, options
->repo
->index
);
6275 len1
= remove_space(p
->one
->path
, strlen(p
->one
->path
));
6276 len2
= remove_space(p
->two
->path
, strlen(p
->two
->path
));
6277 patch_id_add_string(&ctx
, "diff--git");
6278 patch_id_add_string(&ctx
, "a/");
6279 the_hash_algo
->update_fn(&ctx
, p
->one
->path
, len1
);
6280 patch_id_add_string(&ctx
, "b/");
6281 the_hash_algo
->update_fn(&ctx
, p
->two
->path
, len2
);
6283 if (p
->one
->mode
== 0) {
6284 patch_id_add_string(&ctx
, "newfilemode");
6285 patch_id_add_mode(&ctx
, p
->two
->mode
);
6286 } else if (p
->two
->mode
== 0) {
6287 patch_id_add_string(&ctx
, "deletedfilemode");
6288 patch_id_add_mode(&ctx
, p
->one
->mode
);
6289 } else if (p
->one
->mode
!= p
->two
->mode
) {
6290 patch_id_add_string(&ctx
, "oldmode");
6291 patch_id_add_mode(&ctx
, p
->one
->mode
);
6292 patch_id_add_string(&ctx
, "newmode");
6293 patch_id_add_mode(&ctx
, p
->two
->mode
);
6296 if (diff_header_only
) {
6297 /* don't do anything since we're only populating header info */
6298 } else if (diff_filespec_is_binary(options
->repo
, p
->one
) ||
6299 diff_filespec_is_binary(options
->repo
, p
->two
)) {
6300 the_hash_algo
->update_fn(&ctx
, oid_to_hex(&p
->one
->oid
),
6301 the_hash_algo
->hexsz
);
6302 the_hash_algo
->update_fn(&ctx
, oid_to_hex(&p
->two
->oid
),
6303 the_hash_algo
->hexsz
);
6305 if (p
->one
->mode
== 0) {
6306 patch_id_add_string(&ctx
, "---/dev/null");
6307 patch_id_add_string(&ctx
, "+++b/");
6308 the_hash_algo
->update_fn(&ctx
, p
->two
->path
, len2
);
6309 } else if (p
->two
->mode
== 0) {
6310 patch_id_add_string(&ctx
, "---a/");
6311 the_hash_algo
->update_fn(&ctx
, p
->one
->path
, len1
);
6312 patch_id_add_string(&ctx
, "+++/dev/null");
6314 patch_id_add_string(&ctx
, "---a/");
6315 the_hash_algo
->update_fn(&ctx
, p
->one
->path
, len1
);
6316 patch_id_add_string(&ctx
, "+++b/");
6317 the_hash_algo
->update_fn(&ctx
, p
->two
->path
, len2
);
6320 if (fill_mmfile(options
->repo
, &mf1
, p
->one
) < 0 ||
6321 fill_mmfile(options
->repo
, &mf2
, p
->two
) < 0)
6322 return error("unable to read files to diff");
6325 xecfg
.flags
= XDL_EMIT_NO_HUNK_HDR
;
6326 if (xdi_diff_outf(&mf1
, &mf2
, NULL
,
6327 patch_id_consume
, &data
, &xpp
, &xecfg
))
6328 return error("unable to generate patch-id diff for %s",
6331 flush_one_hunk(oid
, &ctx
);
6337 int diff_flush_patch_id(struct diff_options
*options
, struct object_id
*oid
, int diff_header_only
)
6339 struct diff_queue_struct
*q
= &diff_queued_diff
;
6341 int result
= diff_get_patch_id(options
, oid
, diff_header_only
);
6343 for (i
= 0; i
< q
->nr
; i
++)
6344 diff_free_filepair(q
->queue
[i
]);
6347 DIFF_QUEUE_CLEAR(q
);
6352 static int is_summary_empty(const struct diff_queue_struct
*q
)
6356 for (i
= 0; i
< q
->nr
; i
++) {
6357 const struct diff_filepair
*p
= q
->queue
[i
];
6359 switch (p
->status
) {
6360 case DIFF_STATUS_DELETED
:
6361 case DIFF_STATUS_ADDED
:
6362 case DIFF_STATUS_COPIED
:
6363 case DIFF_STATUS_RENAMED
:
6368 if (p
->one
->mode
&& p
->two
->mode
&&
6369 p
->one
->mode
!= p
->two
->mode
)
6377 static const char rename_limit_warning
[] =
6378 N_("exhaustive rename detection was skipped due to too many files.");
6380 static const char degrade_cc_to_c_warning
[] =
6381 N_("only found copies from modified paths due to too many files.");
6383 static const char rename_limit_advice
[] =
6384 N_("you may want to set your %s variable to at least "
6385 "%d and retry the command.");
6387 void diff_warn_rename_limit(const char *varname
, int needed
, int degraded_cc
)
6391 warning(_(degrade_cc_to_c_warning
));
6393 warning(_(rename_limit_warning
));
6397 warning(_(rename_limit_advice
), varname
, needed
);
6400 static void create_filepairs_for_header_only_notifications(struct diff_options
*o
)
6402 struct strset present
;
6403 struct diff_queue_struct
*q
= &diff_queued_diff
;
6404 struct hashmap_iter iter
;
6405 struct strmap_entry
*e
;
6408 strset_init_with_options(&present
, /*pool*/ NULL
, /*strdup*/ 0);
6411 * Find out which paths exist in diff_queued_diff, preferring
6412 * one->path for any pair that has multiple paths.
6414 for (i
= 0; i
< q
->nr
; i
++) {
6415 struct diff_filepair
*p
= q
->queue
[i
];
6416 char *path
= p
->one
->path
? p
->one
->path
: p
->two
->path
;
6418 if (strmap_contains(o
->additional_path_headers
, path
))
6419 strset_add(&present
, path
);
6423 * Loop over paths in additional_path_headers; for each NOT already
6424 * in diff_queued_diff, create a synthetic filepair and insert that
6425 * into diff_queued_diff.
6427 strmap_for_each_entry(o
->additional_path_headers
, &iter
, e
) {
6428 if (!strset_contains(&present
, e
->key
)) {
6429 struct diff_filespec
*one
, *two
;
6430 struct diff_filepair
*p
;
6432 one
= alloc_filespec(e
->key
);
6433 two
= alloc_filespec(e
->key
);
6434 fill_filespec(one
, null_oid(), 0, 0);
6435 fill_filespec(two
, null_oid(), 0, 0);
6436 p
= diff_queue(q
, one
, two
);
6437 p
->status
= DIFF_STATUS_MODIFIED
;
6441 /* Re-sort the filepairs */
6442 diffcore_fix_diff_index();
6445 strset_clear(&present
);
6448 static void diff_flush_patch_all_file_pairs(struct diff_options
*o
)
6451 static struct emitted_diff_symbols esm
= EMITTED_DIFF_SYMBOLS_INIT
;
6452 struct diff_queue_struct
*q
= &diff_queued_diff
;
6454 if (WSEH_NEW
& WS_RULE_MASK
)
6455 BUG("WS rules bit mask overlaps with diff symbol flags");
6458 o
->emitted_symbols
= &esm
;
6460 if (o
->additional_path_headers
)
6461 create_filepairs_for_header_only_notifications(o
);
6463 for (i
= 0; i
< q
->nr
; i
++) {
6464 struct diff_filepair
*p
= q
->queue
[i
];
6465 if (check_pair_status(p
))
6466 diff_flush_patch(p
, o
);
6469 if (o
->emitted_symbols
) {
6470 if (o
->color_moved
) {
6471 struct mem_pool entry_pool
;
6472 struct moved_entry_list
*entry_list
;
6474 mem_pool_init(&entry_pool
, 1024 * 1024);
6475 entry_list
= add_lines_to_move_detection(o
,
6477 mark_color_as_moved(o
, entry_list
);
6478 if (o
->color_moved
== COLOR_MOVED_ZEBRA_DIM
)
6481 mem_pool_discard(&entry_pool
, 0);
6485 for (i
= 0; i
< esm
.nr
; i
++)
6486 emit_diff_symbol_from_struct(o
, &esm
.buf
[i
]);
6488 for (i
= 0; i
< esm
.nr
; i
++)
6489 free((void *)esm
.buf
[i
].line
);
6492 o
->emitted_symbols
= NULL
;
6496 static void diff_free_file(struct diff_options
*options
)
6498 if (options
->close_file
)
6499 fclose(options
->file
);
6502 static void diff_free_ignore_regex(struct diff_options
*options
)
6506 for (i
= 0; i
< options
->ignore_regex_nr
; i
++) {
6507 regfree(options
->ignore_regex
[i
]);
6508 free(options
->ignore_regex
[i
]);
6510 free(options
->ignore_regex
);
6513 void diff_free(struct diff_options
*options
)
6515 if (options
->no_free
)
6518 diff_free_file(options
);
6519 diff_free_ignore_regex(options
);
6520 clear_pathspec(&options
->pathspec
);
6521 FREE_AND_NULL(options
->parseopts
);
6524 void diff_flush(struct diff_options
*options
)
6526 struct diff_queue_struct
*q
= &diff_queued_diff
;
6527 int i
, output_format
= options
->output_format
;
6529 int dirstat_by_line
= 0;
6532 * Order: raw, stat, summary, patch
6533 * or: name/name-status/checkdiff (other bits clear)
6535 if (!q
->nr
&& !options
->additional_path_headers
)
6538 if (output_format
& (DIFF_FORMAT_RAW
|
6540 DIFF_FORMAT_NAME_STATUS
|
6541 DIFF_FORMAT_CHECKDIFF
)) {
6542 for (i
= 0; i
< q
->nr
; i
++) {
6543 struct diff_filepair
*p
= q
->queue
[i
];
6544 if (check_pair_status(p
))
6545 flush_one_pair(p
, options
);
6550 if (output_format
& DIFF_FORMAT_DIRSTAT
&& options
->flags
.dirstat_by_line
)
6551 dirstat_by_line
= 1;
6553 if (output_format
& (DIFF_FORMAT_DIFFSTAT
|DIFF_FORMAT_SHORTSTAT
|DIFF_FORMAT_NUMSTAT
) ||
6555 struct diffstat_t diffstat
;
6557 compute_diffstat(options
, &diffstat
, q
);
6558 if (output_format
& DIFF_FORMAT_NUMSTAT
)
6559 show_numstat(&diffstat
, options
);
6560 if (output_format
& DIFF_FORMAT_DIFFSTAT
)
6561 show_stats(&diffstat
, options
);
6562 if (output_format
& DIFF_FORMAT_SHORTSTAT
)
6563 show_shortstats(&diffstat
, options
);
6564 if (output_format
& DIFF_FORMAT_DIRSTAT
&& dirstat_by_line
)
6565 show_dirstat_by_line(&diffstat
, options
);
6566 free_diffstat_info(&diffstat
);
6569 if ((output_format
& DIFF_FORMAT_DIRSTAT
) && !dirstat_by_line
)
6570 show_dirstat(options
);
6572 if (output_format
& DIFF_FORMAT_SUMMARY
&& !is_summary_empty(q
)) {
6573 for (i
= 0; i
< q
->nr
; i
++) {
6574 diff_summary(options
, q
->queue
[i
]);
6579 if (output_format
& DIFF_FORMAT_NO_OUTPUT
&&
6580 options
->flags
.exit_with_status
&&
6581 options
->flags
.diff_from_contents
) {
6583 * run diff_flush_patch for the exit status. setting
6584 * options->file to /dev/null should be safe, because we
6585 * aren't supposed to produce any output anyway.
6587 diff_free_file(options
);
6588 options
->file
= xfopen("/dev/null", "w");
6589 options
->close_file
= 1;
6590 options
->color_moved
= 0;
6591 for (i
= 0; i
< q
->nr
; i
++) {
6592 struct diff_filepair
*p
= q
->queue
[i
];
6593 if (check_pair_status(p
))
6594 diff_flush_patch(p
, options
);
6595 if (options
->found_changes
)
6600 if (output_format
& DIFF_FORMAT_PATCH
) {
6602 emit_diff_symbol(options
, DIFF_SYMBOL_SEPARATOR
, NULL
, 0, 0);
6603 if (options
->stat_sep
)
6604 /* attach patch instead of inline */
6605 emit_diff_symbol(options
, DIFF_SYMBOL_STAT_SEP
,
6609 diff_flush_patch_all_file_pairs(options
);
6612 if (output_format
& DIFF_FORMAT_CALLBACK
)
6613 options
->format_callback(q
, options
, options
->format_callback_data
);
6615 for (i
= 0; i
< q
->nr
; i
++)
6616 diff_free_filepair(q
->queue
[i
]);
6619 DIFF_QUEUE_CLEAR(q
);
6623 * Report the content-level differences with HAS_CHANGES;
6624 * diff_addremove/diff_change does not set the bit when
6625 * DIFF_FROM_CONTENTS is in effect (e.g. with -w).
6627 if (options
->flags
.diff_from_contents
) {
6628 if (options
->found_changes
)
6629 options
->flags
.has_changes
= 1;
6631 options
->flags
.has_changes
= 0;
6635 static int match_filter(const struct diff_options
*options
, const struct diff_filepair
*p
)
6637 return (((p
->status
== DIFF_STATUS_MODIFIED
) &&
6639 filter_bit_tst(DIFF_STATUS_FILTER_BROKEN
, options
)) ||
6641 filter_bit_tst(DIFF_STATUS_MODIFIED
, options
)))) ||
6642 ((p
->status
!= DIFF_STATUS_MODIFIED
) &&
6643 filter_bit_tst(p
->status
, options
)));
6646 static void diffcore_apply_filter(struct diff_options
*options
)
6649 struct diff_queue_struct
*q
= &diff_queued_diff
;
6650 struct diff_queue_struct outq
;
6652 DIFF_QUEUE_CLEAR(&outq
);
6654 if (!options
->filter
)
6657 if (filter_bit_tst(DIFF_STATUS_FILTER_AON
, options
)) {
6659 for (i
= found
= 0; !found
&& i
< q
->nr
; i
++) {
6660 if (match_filter(options
, q
->queue
[i
]))
6666 /* otherwise we will clear the whole queue
6667 * by copying the empty outq at the end of this
6668 * function, but first clear the current entries
6671 for (i
= 0; i
< q
->nr
; i
++)
6672 diff_free_filepair(q
->queue
[i
]);
6675 /* Only the matching ones */
6676 for (i
= 0; i
< q
->nr
; i
++) {
6677 struct diff_filepair
*p
= q
->queue
[i
];
6678 if (match_filter(options
, p
))
6681 diff_free_filepair(p
);
6688 /* Check whether two filespecs with the same mode and size are identical */
6689 static int diff_filespec_is_identical(struct repository
*r
,
6690 struct diff_filespec
*one
,
6691 struct diff_filespec
*two
)
6693 if (S_ISGITLINK(one
->mode
))
6695 if (diff_populate_filespec(r
, one
, NULL
))
6697 if (diff_populate_filespec(r
, two
, NULL
))
6699 return !memcmp(one
->data
, two
->data
, one
->size
);
6702 static int diff_filespec_check_stat_unmatch(struct repository
*r
,
6703 struct diff_filepair
*p
)
6705 struct diff_populate_filespec_options dpf_options
= {
6706 .check_size_only
= 1,
6707 .missing_object_cb
= diff_queued_diff_prefetch
,
6708 .missing_object_data
= r
,
6711 if (p
->done_skip_stat_unmatch
)
6712 return p
->skip_stat_unmatch_result
;
6714 p
->done_skip_stat_unmatch
= 1;
6715 p
->skip_stat_unmatch_result
= 0;
6717 * 1. Entries that come from stat info dirtiness
6718 * always have both sides (iow, not create/delete),
6719 * one side of the object name is unknown, with
6720 * the same mode and size. Keep the ones that
6721 * do not match these criteria. They have real
6724 * 2. At this point, the file is known to be modified,
6725 * with the same mode and size, and the object
6726 * name of one side is unknown. Need to inspect
6727 * the identical contents.
6729 if (!DIFF_FILE_VALID(p
->one
) || /* (1) */
6730 !DIFF_FILE_VALID(p
->two
) ||
6731 (p
->one
->oid_valid
&& p
->two
->oid_valid
) ||
6732 (p
->one
->mode
!= p
->two
->mode
) ||
6733 diff_populate_filespec(r
, p
->one
, &dpf_options
) ||
6734 diff_populate_filespec(r
, p
->two
, &dpf_options
) ||
6735 (p
->one
->size
!= p
->two
->size
) ||
6736 !diff_filespec_is_identical(r
, p
->one
, p
->two
)) /* (2) */
6737 p
->skip_stat_unmatch_result
= 1;
6738 return p
->skip_stat_unmatch_result
;
6741 static void diffcore_skip_stat_unmatch(struct diff_options
*diffopt
)
6744 struct diff_queue_struct
*q
= &diff_queued_diff
;
6745 struct diff_queue_struct outq
;
6746 DIFF_QUEUE_CLEAR(&outq
);
6748 for (i
= 0; i
< q
->nr
; i
++) {
6749 struct diff_filepair
*p
= q
->queue
[i
];
6751 if (diff_filespec_check_stat_unmatch(diffopt
->repo
, p
))
6755 * The caller can subtract 1 from skip_stat_unmatch
6756 * to determine how many paths were dirty only
6757 * due to stat info mismatch.
6759 if (!diffopt
->flags
.no_index
)
6760 diffopt
->skip_stat_unmatch
++;
6761 diff_free_filepair(p
);
6768 static int diffnamecmp(const void *a_
, const void *b_
)
6770 const struct diff_filepair
*a
= *((const struct diff_filepair
**)a_
);
6771 const struct diff_filepair
*b
= *((const struct diff_filepair
**)b_
);
6772 const char *name_a
, *name_b
;
6774 name_a
= a
->one
? a
->one
->path
: a
->two
->path
;
6775 name_b
= b
->one
? b
->one
->path
: b
->two
->path
;
6776 return strcmp(name_a
, name_b
);
6779 void diffcore_fix_diff_index(void)
6781 struct diff_queue_struct
*q
= &diff_queued_diff
;
6782 QSORT(q
->queue
, q
->nr
, diffnamecmp
);
6785 void diff_add_if_missing(struct repository
*r
,
6786 struct oid_array
*to_fetch
,
6787 const struct diff_filespec
*filespec
)
6789 if (filespec
&& filespec
->oid_valid
&&
6790 !S_ISGITLINK(filespec
->mode
) &&
6791 oid_object_info_extended(r
, &filespec
->oid
, NULL
,
6792 OBJECT_INFO_FOR_PREFETCH
))
6793 oid_array_append(to_fetch
, &filespec
->oid
);
6796 void diff_queued_diff_prefetch(void *repository
)
6798 struct repository
*repo
= repository
;
6800 struct diff_queue_struct
*q
= &diff_queued_diff
;
6801 struct oid_array to_fetch
= OID_ARRAY_INIT
;
6803 for (i
= 0; i
< q
->nr
; i
++) {
6804 struct diff_filepair
*p
= q
->queue
[i
];
6805 diff_add_if_missing(repo
, &to_fetch
, p
->one
);
6806 diff_add_if_missing(repo
, &to_fetch
, p
->two
);
6810 * NEEDSWORK: Consider deduplicating the OIDs sent.
6812 promisor_remote_get_direct(repo
, to_fetch
.oid
, to_fetch
.nr
);
6814 oid_array_clear(&to_fetch
);
6817 void diffcore_std(struct diff_options
*options
)
6819 int output_formats_to_prefetch
= DIFF_FORMAT_DIFFSTAT
|
6820 DIFF_FORMAT_NUMSTAT
|
6822 DIFF_FORMAT_SHORTSTAT
|
6823 DIFF_FORMAT_DIRSTAT
;
6826 * Check if the user requested a blob-data-requiring diff output and/or
6827 * break-rewrite detection (which requires blob data). If yes, prefetch
6830 * If no prefetching occurs, diffcore_rename() will prefetch if it
6831 * decides that it needs inexact rename detection.
6833 if (options
->repo
== the_repository
&& has_promisor_remote() &&
6834 (options
->output_format
& output_formats_to_prefetch
||
6835 options
->pickaxe_opts
& DIFF_PICKAXE_KINDS_MASK
))
6836 diff_queued_diff_prefetch(options
->repo
);
6838 /* NOTE please keep the following in sync with diff_tree_combined() */
6839 if (options
->skip_stat_unmatch
)
6840 diffcore_skip_stat_unmatch(options
);
6841 if (!options
->found_follow
) {
6842 /* See try_to_follow_renames() in tree-diff.c */
6843 if (options
->break_opt
!= -1)
6844 diffcore_break(options
->repo
,
6845 options
->break_opt
);
6846 if (options
->detect_rename
)
6847 diffcore_rename(options
);
6848 if (options
->break_opt
!= -1)
6849 diffcore_merge_broken();
6851 if (options
->pickaxe_opts
& DIFF_PICKAXE_KINDS_MASK
)
6852 diffcore_pickaxe(options
);
6853 if (options
->orderfile
)
6854 diffcore_order(options
->orderfile
);
6855 if (options
->rotate_to
)
6856 diffcore_rotate(options
);
6857 if (!options
->found_follow
)
6858 /* See try_to_follow_renames() in tree-diff.c */
6859 diff_resolve_rename_copy();
6860 diffcore_apply_filter(options
);
6862 if (diff_queued_diff
.nr
&& !options
->flags
.diff_from_contents
)
6863 options
->flags
.has_changes
= 1;
6865 options
->flags
.has_changes
= 0;
6867 options
->found_follow
= 0;
6870 int diff_result_code(struct diff_options
*opt
, int status
)
6874 diff_warn_rename_limit("diff.renameLimit",
6875 opt
->needed_rename_limit
,
6876 opt
->degraded_cc_to_c
);
6877 if (!opt
->flags
.exit_with_status
&&
6878 !(opt
->output_format
& DIFF_FORMAT_CHECKDIFF
))
6880 if (opt
->flags
.exit_with_status
&&
6881 opt
->flags
.has_changes
)
6883 if ((opt
->output_format
& DIFF_FORMAT_CHECKDIFF
) &&
6884 opt
->flags
.check_failed
)
6889 int diff_can_quit_early(struct diff_options
*opt
)
6891 return (opt
->flags
.quick
&&
6893 opt
->flags
.has_changes
);
6897 * Shall changes to this submodule be ignored?
6899 * Submodule changes can be configured to be ignored separately for each path,
6900 * but that configuration can be overridden from the command line.
6902 static int is_submodule_ignored(const char *path
, struct diff_options
*options
)
6905 struct diff_flags orig_flags
= options
->flags
;
6906 if (!options
->flags
.override_submodule_config
)
6907 set_diffopt_flags_from_submodule_config(options
, path
);
6908 if (options
->flags
.ignore_submodules
)
6910 options
->flags
= orig_flags
;
6914 void compute_diffstat(struct diff_options
*options
,
6915 struct diffstat_t
*diffstat
,
6916 struct diff_queue_struct
*q
)
6920 memset(diffstat
, 0, sizeof(struct diffstat_t
));
6921 for (i
= 0; i
< q
->nr
; i
++) {
6922 struct diff_filepair
*p
= q
->queue
[i
];
6923 if (check_pair_status(p
))
6924 diff_flush_stat(p
, options
, diffstat
);
6928 void diff_addremove(struct diff_options
*options
,
6929 int addremove
, unsigned mode
,
6930 const struct object_id
*oid
,
6932 const char *concatpath
, unsigned dirty_submodule
)
6934 struct diff_filespec
*one
, *two
;
6936 if (S_ISGITLINK(mode
) && is_submodule_ignored(concatpath
, options
))
6939 /* This may look odd, but it is a preparation for
6940 * feeding "there are unchanged files which should
6941 * not produce diffs, but when you are doing copy
6942 * detection you would need them, so here they are"
6943 * entries to the diff-core. They will be prefixed
6944 * with something like '=' or '*' (I haven't decided
6945 * which but should not make any difference).
6946 * Feeding the same new and old to diff_change()
6947 * also has the same effect.
6948 * Before the final output happens, they are pruned after
6949 * merged into rename/copy pairs as appropriate.
6951 if (options
->flags
.reverse_diff
)
6952 addremove
= (addremove
== '+' ? '-' :
6953 addremove
== '-' ? '+' : addremove
);
6955 if (options
->prefix
&&
6956 strncmp(concatpath
, options
->prefix
, options
->prefix_length
))
6959 one
= alloc_filespec(concatpath
);
6960 two
= alloc_filespec(concatpath
);
6962 if (addremove
!= '+')
6963 fill_filespec(one
, oid
, oid_valid
, mode
);
6964 if (addremove
!= '-') {
6965 fill_filespec(two
, oid
, oid_valid
, mode
);
6966 two
->dirty_submodule
= dirty_submodule
;
6969 diff_queue(&diff_queued_diff
, one
, two
);
6970 if (!options
->flags
.diff_from_contents
)
6971 options
->flags
.has_changes
= 1;
6974 void diff_change(struct diff_options
*options
,
6975 unsigned old_mode
, unsigned new_mode
,
6976 const struct object_id
*old_oid
,
6977 const struct object_id
*new_oid
,
6978 int old_oid_valid
, int new_oid_valid
,
6979 const char *concatpath
,
6980 unsigned old_dirty_submodule
, unsigned new_dirty_submodule
)
6982 struct diff_filespec
*one
, *two
;
6983 struct diff_filepair
*p
;
6985 if (S_ISGITLINK(old_mode
) && S_ISGITLINK(new_mode
) &&
6986 is_submodule_ignored(concatpath
, options
))
6989 if (options
->flags
.reverse_diff
) {
6990 SWAP(old_mode
, new_mode
);
6991 SWAP(old_oid
, new_oid
);
6992 SWAP(old_oid_valid
, new_oid_valid
);
6993 SWAP(old_dirty_submodule
, new_dirty_submodule
);
6996 if (options
->prefix
&&
6997 strncmp(concatpath
, options
->prefix
, options
->prefix_length
))
7000 one
= alloc_filespec(concatpath
);
7001 two
= alloc_filespec(concatpath
);
7002 fill_filespec(one
, old_oid
, old_oid_valid
, old_mode
);
7003 fill_filespec(two
, new_oid
, new_oid_valid
, new_mode
);
7004 one
->dirty_submodule
= old_dirty_submodule
;
7005 two
->dirty_submodule
= new_dirty_submodule
;
7006 p
= diff_queue(&diff_queued_diff
, one
, two
);
7008 if (options
->flags
.diff_from_contents
)
7011 if (options
->flags
.quick
&& options
->skip_stat_unmatch
&&
7012 !diff_filespec_check_stat_unmatch(options
->repo
, p
)) {
7013 diff_free_filespec_data(p
->one
);
7014 diff_free_filespec_data(p
->two
);
7018 options
->flags
.has_changes
= 1;
7021 struct diff_filepair
*diff_unmerge(struct diff_options
*options
, const char *path
)
7023 struct diff_filepair
*pair
;
7024 struct diff_filespec
*one
, *two
;
7026 if (options
->prefix
&&
7027 strncmp(path
, options
->prefix
, options
->prefix_length
))
7030 one
= alloc_filespec(path
);
7031 two
= alloc_filespec(path
);
7032 pair
= diff_queue(&diff_queued_diff
, one
, two
);
7033 pair
->is_unmerged
= 1;
7037 static char *run_textconv(struct repository
*r
,
7039 struct diff_filespec
*spec
,
7042 struct diff_tempfile
*temp
;
7043 struct child_process child
= CHILD_PROCESS_INIT
;
7044 struct strbuf buf
= STRBUF_INIT
;
7047 temp
= prepare_temp_file(r
, spec
->path
, spec
);
7048 strvec_push(&child
.args
, pgm
);
7049 strvec_push(&child
.args
, temp
->name
);
7051 child
.use_shell
= 1;
7053 if (start_command(&child
)) {
7058 if (strbuf_read(&buf
, child
.out
, 0) < 0)
7059 err
= error("error reading from textconv command '%s'", pgm
);
7062 if (finish_command(&child
) || err
) {
7063 strbuf_release(&buf
);
7069 return strbuf_detach(&buf
, outsize
);
7072 size_t fill_textconv(struct repository
*r
,
7073 struct userdiff_driver
*driver
,
7074 struct diff_filespec
*df
,
7080 if (!DIFF_FILE_VALID(df
)) {
7084 if (diff_populate_filespec(r
, df
, NULL
))
7085 die("unable to read files to diff");
7090 if (!driver
->textconv
)
7091 BUG("fill_textconv called with non-textconv driver");
7093 if (driver
->textconv_cache
&& df
->oid_valid
) {
7094 *outbuf
= notes_cache_get(driver
->textconv_cache
,
7101 *outbuf
= run_textconv(r
, driver
->textconv
, df
, &size
);
7103 die("unable to read files to diff");
7105 if (driver
->textconv_cache
&& df
->oid_valid
) {
7106 /* ignore errors, as we might be in a readonly repository */
7107 notes_cache_put(driver
->textconv_cache
, &df
->oid
, *outbuf
,
7110 * we could save up changes and flush them all at the end,
7111 * but we would need an extra call after all diffing is done.
7112 * Since generating a cache entry is the slow path anyway,
7113 * this extra overhead probably isn't a big deal.
7115 notes_cache_write(driver
->textconv_cache
);
7121 int textconv_object(struct repository
*r
,
7124 const struct object_id
*oid
,
7127 unsigned long *buf_size
)
7129 struct diff_filespec
*df
;
7130 struct userdiff_driver
*textconv
;
7132 df
= alloc_filespec(path
);
7133 fill_filespec(df
, oid
, oid_valid
, mode
);
7134 textconv
= get_textconv(r
, df
);
7140 *buf_size
= fill_textconv(r
, textconv
, df
, buf
);
7145 void setup_diff_pager(struct diff_options
*opt
)
7148 * If the user asked for our exit code, then either they want --quiet
7149 * or --exit-code. We should definitely not bother with a pager in the
7150 * former case, as we will generate no output. Since we still properly
7151 * report our exit code even when a pager is run, we _could_ run a
7152 * pager with --exit-code. But since we have not done so historically,
7153 * and because it is easy to find people oneline advising "git diff
7154 * --exit-code" in hooks and other scripts, we do not do so.
7156 if (!opt
->flags
.exit_with_status
&&
7157 check_pager_config("diff") != 0)