2 * Copyright (C) 2005 Junio C Hamano
11 #include "xdiff-interface.h"
14 #include "run-command.h"
17 #include "submodule-config.h"
18 #include "submodule.h"
21 #include "string-list.h"
22 #include "argv-array.h"
25 #ifdef NO_FAST_WORKING_DIRECTORY
26 #define FAST_WORKING_DIRECTORY 0
28 #define FAST_WORKING_DIRECTORY 1
31 static int diff_detect_rename_default;
32 static int diff_indent_heuristic = 1;
33 static int diff_rename_limit_default = 400;
34 static int diff_suppress_blank_empty;
35 static int diff_use_color_default = -1;
36 static int diff_color_moved_default;
37 static int diff_context_default = 3;
38 static int diff_interhunk_context_default;
39 static const char *diff_word_regex_cfg;
40 static const char *external_diff_cmd_cfg;
41 static const char *diff_order_file_cfg;
42 int diff_auto_refresh_index = 1;
43 static int diff_mnemonic_prefix;
44 static int diff_no_prefix;
45 static int diff_stat_graph_width;
46 static int diff_dirstat_permille_default = 30;
47 static struct diff_options default_diff_options;
48 static long diff_algorithm;
49 static unsigned ws_error_highlight_default = WSEH_NEW;
51 static char diff_colors[][COLOR_MAXLEN] = {
53 GIT_COLOR_NORMAL, /* CONTEXT */
54 GIT_COLOR_BOLD, /* METAINFO */
55 GIT_COLOR_CYAN, /* FRAGINFO */
56 GIT_COLOR_RED, /* OLD */
57 GIT_COLOR_GREEN, /* NEW */
58 GIT_COLOR_YELLOW, /* COMMIT */
59 GIT_COLOR_BG_RED, /* WHITESPACE */
60 GIT_COLOR_NORMAL, /* FUNCINFO */
61 GIT_COLOR_BOLD_MAGENTA, /* OLD_MOVED */
62 GIT_COLOR_BOLD_BLUE, /* OLD_MOVED ALTERNATIVE */
63 GIT_COLOR_FAINT, /* OLD_MOVED_DIM */
64 GIT_COLOR_FAINT_ITALIC, /* OLD_MOVED_ALTERNATIVE_DIM */
65 GIT_COLOR_BOLD_CYAN, /* NEW_MOVED */
66 GIT_COLOR_BOLD_YELLOW, /* NEW_MOVED ALTERNATIVE */
67 GIT_COLOR_FAINT, /* NEW_MOVED_DIM */
68 GIT_COLOR_FAINT_ITALIC, /* NEW_MOVED_ALTERNATIVE_DIM */
71 static NORETURN void die_want_option(const char *option_name)
73 die(_("option '%s' requires a value"), option_name);
76 static int parse_diff_color_slot(const char *var)
78 if (!strcasecmp(var, "context") || !strcasecmp(var, "plain"))
80 if (!strcasecmp(var, "meta"))
82 if (!strcasecmp(var, "frag"))
84 if (!strcasecmp(var, "old"))
86 if (!strcasecmp(var, "new"))
88 if (!strcasecmp(var, "commit"))
90 if (!strcasecmp(var, "whitespace"))
91 return DIFF_WHITESPACE;
92 if (!strcasecmp(var, "func"))
94 if (!strcasecmp(var, "oldmoved"))
95 return DIFF_FILE_OLD_MOVED;
96 if (!strcasecmp(var, "oldmovedalternative"))
97 return DIFF_FILE_OLD_MOVED_ALT;
98 if (!strcasecmp(var, "oldmoveddimmed"))
99 return DIFF_FILE_OLD_MOVED_DIM;
100 if (!strcasecmp(var, "oldmovedalternativedimmed"))
101 return DIFF_FILE_OLD_MOVED_ALT_DIM;
102 if (!strcasecmp(var, "newmoved"))
103 return DIFF_FILE_NEW_MOVED;
104 if (!strcasecmp(var, "newmovedalternative"))
105 return DIFF_FILE_NEW_MOVED_ALT;
106 if (!strcasecmp(var, "newmoveddimmed"))
107 return DIFF_FILE_NEW_MOVED_DIM;
108 if (!strcasecmp(var, "newmovedalternativedimmed"))
109 return DIFF_FILE_NEW_MOVED_ALT_DIM;
113 static int parse_dirstat_params(struct diff_options *options, const char *params_string,
114 struct strbuf *errmsg)
116 char *params_copy = xstrdup(params_string);
117 struct string_list params = STRING_LIST_INIT_NODUP;
122 string_list_split_in_place(¶ms, params_copy, ',', -1);
123 for (i = 0; i < params.nr; i++) {
124 const char *p = params.items[i].string;
125 if (!strcmp(p, "changes")) {
126 DIFF_OPT_CLR(options, DIRSTAT_BY_LINE);
127 DIFF_OPT_CLR(options, DIRSTAT_BY_FILE);
128 } else if (!strcmp(p, "lines")) {
129 DIFF_OPT_SET(options, DIRSTAT_BY_LINE);
130 DIFF_OPT_CLR(options, DIRSTAT_BY_FILE);
131 } else if (!strcmp(p, "files")) {
132 DIFF_OPT_CLR(options, DIRSTAT_BY_LINE);
133 DIFF_OPT_SET(options, DIRSTAT_BY_FILE);
134 } else if (!strcmp(p, "noncumulative")) {
135 DIFF_OPT_CLR(options, DIRSTAT_CUMULATIVE);
136 } else if (!strcmp(p, "cumulative")) {
137 DIFF_OPT_SET(options, DIRSTAT_CUMULATIVE);
138 } else if (isdigit(*p)) {
140 int permille = strtoul(p, &end, 10) * 10;
141 if (*end == '.' && isdigit(*++end)) {
142 /* only use first digit */
143 permille += *end - '0';
144 /* .. and ignore any further digits */
145 while (isdigit(*++end))
149 options->dirstat_permille = permille;
151 strbuf_addf(errmsg, _(" Failed to parse dirstat cut-off percentage '%s'\n"),
156 strbuf_addf(errmsg, _(" Unknown dirstat parameter '%s'\n"), p);
161 string_list_clear(¶ms, 0);
166 static int parse_submodule_params(struct diff_options *options, const char *value)
168 if (!strcmp(value, "log"))
169 options->submodule_format = DIFF_SUBMODULE_LOG;
170 else if (!strcmp(value, "short"))
171 options->submodule_format = DIFF_SUBMODULE_SHORT;
172 else if (!strcmp(value, "diff"))
173 options->submodule_format = DIFF_SUBMODULE_INLINE_DIFF;
179 static int git_config_rename(const char *var, const char *value)
182 return DIFF_DETECT_RENAME;
183 if (!strcasecmp(value, "copies") || !strcasecmp(value, "copy"))
184 return DIFF_DETECT_COPY;
185 return git_config_bool(var,value) ? DIFF_DETECT_RENAME : 0;
188 long parse_algorithm_value(const char *value)
192 else if (!strcasecmp(value, "myers") || !strcasecmp(value, "default"))
194 else if (!strcasecmp(value, "minimal"))
195 return XDF_NEED_MINIMAL;
196 else if (!strcasecmp(value, "patience"))
197 return XDF_PATIENCE_DIFF;
198 else if (!strcasecmp(value, "histogram"))
199 return XDF_HISTOGRAM_DIFF;
203 static int parse_one_token(const char **arg, const char *token)
206 if (skip_prefix(*arg, token, &rest) && (!*rest || *rest == ',')) {
213 static int parse_ws_error_highlight(const char *arg)
215 const char *orig_arg = arg;
219 if (parse_one_token(&arg, "none"))
221 else if (parse_one_token(&arg, "default"))
223 else if (parse_one_token(&arg, "all"))
224 val = WSEH_NEW | WSEH_OLD | WSEH_CONTEXT;
225 else if (parse_one_token(&arg, "new"))
227 else if (parse_one_token(&arg, "old"))
229 else if (parse_one_token(&arg, "context"))
232 return -1 - (int)(arg - orig_arg);
241 * These are to give UI layer defaults.
242 * The core-level commands such as git-diff-files should
243 * never be affected by the setting of diff.renames
244 * the user happens to have in the configuration file.
246 void init_diff_ui_defaults(void)
248 diff_detect_rename_default = 1;
251 int git_diff_heuristic_config(const char *var, const char *value, void *cb)
253 if (!strcmp(var, "diff.indentheuristic"))
254 diff_indent_heuristic = git_config_bool(var, value);
258 static int parse_color_moved(const char *arg)
260 switch (git_parse_maybe_bool(arg)) {
262 return COLOR_MOVED_NO;
264 return COLOR_MOVED_DEFAULT;
269 if (!strcmp(arg, "no"))
270 return COLOR_MOVED_NO;
271 else if (!strcmp(arg, "plain"))
272 return COLOR_MOVED_PLAIN;
273 else if (!strcmp(arg, "zebra"))
274 return COLOR_MOVED_ZEBRA;
275 else if (!strcmp(arg, "default"))
276 return COLOR_MOVED_DEFAULT;
277 else if (!strcmp(arg, "dimmed_zebra"))
278 return COLOR_MOVED_ZEBRA_DIM;
280 return error(_("color moved setting must be one of 'no', 'default', 'zebra', 'dimmed_zebra', 'plain'"));
283 int git_diff_ui_config(const char *var, const char *value, void *cb)
285 if (!strcmp(var, "diff.color") || !strcmp(var, "color.diff")) {
286 diff_use_color_default = git_config_colorbool(var, value);
289 if (!strcmp(var, "diff.colormoved")) {
290 int cm = parse_color_moved(value);
293 diff_color_moved_default = cm;
296 if (!strcmp(var, "diff.context")) {
297 diff_context_default = git_config_int(var, value);
298 if (diff_context_default < 0)
302 if (!strcmp(var, "diff.interhunkcontext")) {
303 diff_interhunk_context_default = git_config_int(var, value);
304 if (diff_interhunk_context_default < 0)
308 if (!strcmp(var, "diff.renames")) {
309 diff_detect_rename_default = git_config_rename(var, value);
312 if (!strcmp(var, "diff.autorefreshindex")) {
313 diff_auto_refresh_index = git_config_bool(var, value);
316 if (!strcmp(var, "diff.mnemonicprefix")) {
317 diff_mnemonic_prefix = git_config_bool(var, value);
320 if (!strcmp(var, "diff.noprefix")) {
321 diff_no_prefix = git_config_bool(var, value);
324 if (!strcmp(var, "diff.statgraphwidth")) {
325 diff_stat_graph_width = git_config_int(var, value);
328 if (!strcmp(var, "diff.external"))
329 return git_config_string(&external_diff_cmd_cfg, var, value);
330 if (!strcmp(var, "diff.wordregex"))
331 return git_config_string(&diff_word_regex_cfg, var, value);
332 if (!strcmp(var, "diff.orderfile"))
333 return git_config_pathname(&diff_order_file_cfg, var, value);
335 if (!strcmp(var, "diff.ignoresubmodules"))
336 handle_ignore_submodules_arg(&default_diff_options, value);
338 if (!strcmp(var, "diff.submodule")) {
339 if (parse_submodule_params(&default_diff_options, value))
340 warning(_("Unknown value for 'diff.submodule' config variable: '%s'"),
345 if (!strcmp(var, "diff.algorithm")) {
346 diff_algorithm = parse_algorithm_value(value);
347 if (diff_algorithm < 0)
352 if (!strcmp(var, "diff.wserrorhighlight")) {
353 int val = parse_ws_error_highlight(value);
356 ws_error_highlight_default = val;
360 if (git_color_config(var, value, cb) < 0)
363 return git_diff_basic_config(var, value, cb);
366 int git_diff_basic_config(const char *var, const char *value, void *cb)
370 if (!strcmp(var, "diff.renamelimit")) {
371 diff_rename_limit_default = git_config_int(var, value);
375 if (userdiff_config(var, value) < 0)
378 if (skip_prefix(var, "diff.color.", &name) ||
379 skip_prefix(var, "color.diff.", &name)) {
380 int slot = parse_diff_color_slot(name);
384 return config_error_nonbool(var);
385 return color_parse(value, diff_colors[slot]);
388 /* like GNU diff's --suppress-blank-empty option */
389 if (!strcmp(var, "diff.suppressblankempty") ||
390 /* for backwards compatibility */
391 !strcmp(var, "diff.suppress-blank-empty")) {
392 diff_suppress_blank_empty = git_config_bool(var, value);
396 if (!strcmp(var, "diff.dirstat")) {
397 struct strbuf errmsg = STRBUF_INIT;
398 default_diff_options.dirstat_permille = diff_dirstat_permille_default;
399 if (parse_dirstat_params(&default_diff_options, value, &errmsg))
400 warning(_("Found errors in 'diff.dirstat' config variable:\n%s"),
402 strbuf_release(&errmsg);
403 diff_dirstat_permille_default = default_diff_options.dirstat_permille;
407 if (starts_with(var, "submodule."))
408 return parse_submodule_config_option(var, value);
410 if (git_diff_heuristic_config(var, value, cb) < 0)
413 return git_default_config(var, value, cb);
416 static char *quote_two(const char *one, const char *two)
418 int need_one = quote_c_style(one, NULL, NULL, 1);
419 int need_two = quote_c_style(two, NULL, NULL, 1);
420 struct strbuf res = STRBUF_INIT;
422 if (need_one + need_two) {
423 strbuf_addch(&res, '"');
424 quote_c_style(one, &res, NULL, 1);
425 quote_c_style(two, &res, NULL, 1);
426 strbuf_addch(&res, '"');
428 strbuf_addstr(&res, one);
429 strbuf_addstr(&res, two);
431 return strbuf_detach(&res, NULL);
434 static const char *external_diff(void)
436 static const char *external_diff_cmd = NULL;
437 static int done_preparing = 0;
440 return external_diff_cmd;
441 external_diff_cmd = getenv("GIT_EXTERNAL_DIFF");
442 if (!external_diff_cmd)
443 external_diff_cmd = external_diff_cmd_cfg;
445 return external_diff_cmd;
449 * Keep track of files used for diffing. Sometimes such an entry
450 * refers to a temporary file, sometimes to an existing file, and
451 * sometimes to "/dev/null".
453 static struct diff_tempfile {
455 * filename external diff should read from, or NULL if this
456 * entry is currently not in use:
460 char hex[GIT_MAX_HEXSZ + 1];
464 * If this diff_tempfile instance refers to a temporary file,
465 * this tempfile object is used to manage its lifetime.
467 struct tempfile tempfile;
470 typedef unsigned long (*sane_truncate_fn)(char *line, unsigned long len);
472 struct emit_callback {
475 int blank_at_eof_in_preimage;
476 int blank_at_eof_in_postimage;
478 int lno_in_postimage;
479 sane_truncate_fn truncate;
480 const char **label_path;
481 struct diff_words_data *diff_words;
482 struct diff_options *opt;
483 struct strbuf *header;
486 static int count_lines(const char *data, int size)
488 int count, ch, completely_empty = 1, nl_just_seen = 0;
495 completely_empty = 0;
499 completely_empty = 0;
502 if (completely_empty)
505 count++; /* no trailing newline */
509 static int fill_mmfile(mmfile_t *mf, struct diff_filespec *one)
511 if (!DIFF_FILE_VALID(one)) {
512 mf->ptr = (char *)""; /* does not matter */
516 else if (diff_populate_filespec(one, 0))
520 mf->size = one->size;
524 /* like fill_mmfile, but only for size, so we can avoid retrieving blob */
525 static unsigned long diff_filespec_size(struct diff_filespec *one)
527 if (!DIFF_FILE_VALID(one))
529 diff_populate_filespec(one, CHECK_SIZE_ONLY);
533 static int count_trailing_blank(mmfile_t *mf, unsigned ws_rule)
536 long size = mf->size;
541 ptr += size - 1; /* pointing at the very end */
543 ; /* incomplete line */
545 ptr--; /* skip the last LF */
546 while (mf->ptr < ptr) {
548 for (prev_eol = ptr; mf->ptr <= prev_eol; prev_eol--)
549 if (*prev_eol == '\n')
551 if (!ws_blank_line(prev_eol + 1, ptr - prev_eol, ws_rule))
559 static void check_blank_at_eof(mmfile_t *mf1, mmfile_t *mf2,
560 struct emit_callback *ecbdata)
563 unsigned ws_rule = ecbdata->ws_rule;
564 l1 = count_trailing_blank(mf1, ws_rule);
565 l2 = count_trailing_blank(mf2, ws_rule);
567 ecbdata->blank_at_eof_in_preimage = 0;
568 ecbdata->blank_at_eof_in_postimage = 0;
571 at = count_lines(mf1->ptr, mf1->size);
572 ecbdata->blank_at_eof_in_preimage = (at - l1) + 1;
574 at = count_lines(mf2->ptr, mf2->size);
575 ecbdata->blank_at_eof_in_postimage = (at - l2) + 1;
578 static void emit_line_0(struct diff_options *o, const char *set, const char *reset,
579 int first, const char *line, int len)
581 int has_trailing_newline, has_trailing_carriage_return;
583 FILE *file = o->file;
585 fputs(diff_line_prefix(o), file);
588 has_trailing_newline = (first == '\n');
589 has_trailing_carriage_return = (!has_trailing_newline &&
591 nofirst = has_trailing_newline || has_trailing_carriage_return;
593 has_trailing_newline = (len > 0 && line[len-1] == '\n');
594 if (has_trailing_newline)
596 has_trailing_carriage_return = (len > 0 && line[len-1] == '\r');
597 if (has_trailing_carriage_return)
602 if (len || !nofirst) {
606 fwrite(line, len, 1, file);
609 if (has_trailing_carriage_return)
611 if (has_trailing_newline)
615 static void emit_line(struct diff_options *o, const char *set, const char *reset,
616 const char *line, int len)
618 emit_line_0(o, set, reset, line[0], line+1, len-1);
622 DIFF_SYMBOL_BINARY_DIFF_HEADER,
623 DIFF_SYMBOL_BINARY_DIFF_HEADER_DELTA,
624 DIFF_SYMBOL_BINARY_DIFF_HEADER_LITERAL,
625 DIFF_SYMBOL_BINARY_DIFF_BODY,
626 DIFF_SYMBOL_BINARY_DIFF_FOOTER,
627 DIFF_SYMBOL_STATS_SUMMARY_NO_FILES,
628 DIFF_SYMBOL_STATS_SUMMARY_ABBREV,
629 DIFF_SYMBOL_STATS_SUMMARY_INSERTS_DELETES,
630 DIFF_SYMBOL_STATS_LINE,
631 DIFF_SYMBOL_WORD_DIFF,
632 DIFF_SYMBOL_STAT_SEP,
634 DIFF_SYMBOL_SUBMODULE_ADD,
635 DIFF_SYMBOL_SUBMODULE_DEL,
636 DIFF_SYMBOL_SUBMODULE_UNTRACKED,
637 DIFF_SYMBOL_SUBMODULE_MODIFIED,
638 DIFF_SYMBOL_SUBMODULE_HEADER,
639 DIFF_SYMBOL_SUBMODULE_ERROR,
640 DIFF_SYMBOL_SUBMODULE_PIPETHROUGH,
641 DIFF_SYMBOL_REWRITE_DIFF,
642 DIFF_SYMBOL_BINARY_FILES,
644 DIFF_SYMBOL_FILEPAIR_PLUS,
645 DIFF_SYMBOL_FILEPAIR_MINUS,
646 DIFF_SYMBOL_WORDS_PORCELAIN,
649 DIFF_SYMBOL_CONTEXT_INCOMPLETE,
652 DIFF_SYMBOL_NO_LF_EOF,
653 DIFF_SYMBOL_CONTEXT_FRAGINFO,
654 DIFF_SYMBOL_CONTEXT_MARKER,
655 DIFF_SYMBOL_SEPARATOR
658 * Flags for content lines:
659 * 0..12 are whitespace rules
660 * 13-15 are WSEH_NEW | WSEH_OLD | WSEH_CONTEXT
661 * 16 is marking if the line is blank at EOF
663 #define DIFF_SYMBOL_CONTENT_BLANK_LINE_EOF (1<<16)
664 #define DIFF_SYMBOL_MOVED_LINE (1<<17)
665 #define DIFF_SYMBOL_MOVED_LINE_ALT (1<<18)
666 #define DIFF_SYMBOL_MOVED_LINE_UNINTERESTING (1<<19)
667 #define DIFF_SYMBOL_CONTENT_WS_MASK (WSEH_NEW | WSEH_OLD | WSEH_CONTEXT | WS_RULE_MASK)
670 * This struct is used when we need to buffer the output of the diff output.
672 * NEEDSWORK: Instead of storing a copy of the line, add an offset pointer
673 * into the pre/post image file. This pointer could be a union with the
674 * line pointer. By storing an offset into the file instead of the literal line,
675 * we can decrease the memory footprint for the buffered output. At first we
676 * may want to only have indirection for the content lines, but we could also
677 * enhance the state for emitting prefabricated lines, e.g. the similarity
678 * score line or hunk/file headers would only need to store a number or path
679 * and then the output can be constructed later on depending on state.
681 struct emitted_diff_symbol {
687 #define EMITTED_DIFF_SYMBOL_INIT {NULL}
689 struct emitted_diff_symbols {
690 struct emitted_diff_symbol *buf;
693 #define EMITTED_DIFF_SYMBOLS_INIT {NULL, 0, 0}
695 static void append_emitted_diff_symbol(struct diff_options *o,
696 struct emitted_diff_symbol *e)
698 struct emitted_diff_symbol *f;
700 ALLOC_GROW(o->emitted_symbols->buf,
701 o->emitted_symbols->nr + 1,
702 o->emitted_symbols->alloc);
703 f = &o->emitted_symbols->buf[o->emitted_symbols->nr++];
705 memcpy(f, e, sizeof(struct emitted_diff_symbol));
706 f->line = e->line ? xmemdupz(e->line, e->len) : NULL;
710 struct hashmap_entry ent;
711 const struct emitted_diff_symbol *es;
712 struct moved_entry *next_line;
715 static int next_byte(const char **cp, const char **endp,
716 const struct diff_options *diffopt)
723 if (DIFF_XDL_TST(diffopt, IGNORE_WHITESPACE_CHANGE)) {
724 while (*cp < *endp && isspace(**cp))
727 * After skipping a couple of whitespaces, we still have to
728 * account for one space.
733 if (DIFF_XDL_TST(diffopt, IGNORE_WHITESPACE)) {
734 while (*cp < *endp && isspace(**cp))
736 /* return the first non-ws character via the usual below */
739 retval = (unsigned char)(**cp);
744 static int moved_entry_cmp(const struct diff_options *diffopt,
745 const struct moved_entry *a,
746 const struct moved_entry *b,
749 const char *ap = a->es->line, *ae = a->es->line + a->es->len;
750 const char *bp = b->es->line, *be = b->es->line + b->es->len;
752 if (!(diffopt->xdl_opts & XDF_WHITESPACE_FLAGS))
753 return a->es->len != b->es->len || memcmp(ap, bp, a->es->len);
755 if (DIFF_XDL_TST(diffopt, IGNORE_WHITESPACE_AT_EOL)) {
756 while (ae > ap && isspace(*ae))
758 while (be > bp && isspace(*be))
764 ca = next_byte(&ap, &ae, diffopt);
765 cb = next_byte(&bp, &be, diffopt);
773 static unsigned get_string_hash(struct emitted_diff_symbol *es, struct diff_options *o)
775 if (o->xdl_opts & XDF_WHITESPACE_FLAGS) {
776 static struct strbuf sb = STRBUF_INIT;
777 const char *ap = es->line, *ae = es->line + es->len;
781 while (ae > ap && isspace(*ae))
783 while ((c = next_byte(&ap, &ae, o)) > 0)
784 strbuf_addch(&sb, c);
786 return memhash(sb.buf, sb.len);
788 return memhash(es->line, es->len);
792 static struct moved_entry *prepare_entry(struct diff_options *o,
795 struct moved_entry *ret = xmalloc(sizeof(*ret));
796 struct emitted_diff_symbol *l = &o->emitted_symbols->buf[line_no];
798 ret->ent.hash = get_string_hash(l, o);
800 ret->next_line = NULL;
805 static void add_lines_to_move_detection(struct diff_options *o,
806 struct hashmap *add_lines,
807 struct hashmap *del_lines)
809 struct moved_entry *prev_line = NULL;
812 for (n = 0; n < o->emitted_symbols->nr; n++) {
814 struct moved_entry *key;
816 switch (o->emitted_symbols->buf[n].s) {
817 case DIFF_SYMBOL_PLUS:
820 case DIFF_SYMBOL_MINUS:
828 key = prepare_entry(o, n);
829 if (prev_line && prev_line->es->s == o->emitted_symbols->buf[n].s)
830 prev_line->next_line = key;
832 hashmap_add(hm, key);
837 static int shrink_potential_moved_blocks(struct moved_entry **pmb,
842 /* Shrink the set of potential block to the remaining running */
843 for (lp = 0, rp = pmb_nr - 1; lp <= rp;) {
844 while (lp < pmb_nr && pmb[lp])
846 /* lp points at the first NULL now */
848 while (rp > -1 && !pmb[rp])
850 /* rp points at the last non-NULL */
852 if (lp < pmb_nr && rp > -1 && lp < rp) {
860 /* Remember the number of running sets */
865 * If o->color_moved is COLOR_MOVED_PLAIN, this function does nothing.
867 * Otherwise, if the last block has fewer lines than
868 * COLOR_MOVED_MIN_BLOCK_LENGTH, unset DIFF_SYMBOL_MOVED_LINE on all lines in
871 * The last block consists of the (n - block_length)'th line up to but not
872 * including the nth line.
874 static void adjust_last_block(struct diff_options *o, int n, int block_length)
877 if (block_length >= COLOR_MOVED_MIN_BLOCK_LENGTH ||
878 o->color_moved == COLOR_MOVED_PLAIN)
880 for (i = 1; i < block_length + 1; i++)
881 o->emitted_symbols->buf[n - i].flags &= ~DIFF_SYMBOL_MOVED_LINE;
884 /* Find blocks of moved code, delegate actual coloring decision to helper */
885 static void mark_color_as_moved(struct diff_options *o,
886 struct hashmap *add_lines,
887 struct hashmap *del_lines)
889 struct moved_entry **pmb = NULL; /* potentially moved blocks */
890 int pmb_nr = 0, pmb_alloc = 0;
891 int n, flipped_block = 1, block_length = 0;
894 for (n = 0; n < o->emitted_symbols->nr; n++) {
895 struct hashmap *hm = NULL;
896 struct moved_entry *key;
897 struct moved_entry *match = NULL;
898 struct emitted_diff_symbol *l = &o->emitted_symbols->buf[n];
902 case DIFF_SYMBOL_PLUS:
904 key = prepare_entry(o, n);
905 match = hashmap_get(hm, key, o);
908 case DIFF_SYMBOL_MINUS:
910 key = prepare_entry(o, n);
911 match = hashmap_get(hm, key, o);
919 adjust_last_block(o, n, block_length);
925 l->flags |= DIFF_SYMBOL_MOVED_LINE;
928 if (o->color_moved == COLOR_MOVED_PLAIN)
931 /* Check any potential block runs, advance each or nullify */
932 for (i = 0; i < pmb_nr; i++) {
933 struct moved_entry *p = pmb[i];
934 struct moved_entry *pnext = (p && p->next_line) ?
936 if (pnext && !hm->cmpfn(o, pnext, match, NULL)) {
937 pmb[i] = p->next_line;
943 pmb_nr = shrink_potential_moved_blocks(pmb, pmb_nr);
947 * The current line is the start of a new block.
948 * Setup the set of potential blocks.
950 for (; match; match = hashmap_get_next(hm, match)) {
951 ALLOC_GROW(pmb, pmb_nr + 1, pmb_alloc);
952 pmb[pmb_nr++] = match;
955 flipped_block = (flipped_block + 1) % 2;
959 l->flags |= DIFF_SYMBOL_MOVED_LINE_ALT;
961 adjust_last_block(o, n, block_length);
966 #define DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK \
967 (DIFF_SYMBOL_MOVED_LINE | DIFF_SYMBOL_MOVED_LINE_ALT)
968 static void dim_moved_lines(struct diff_options *o)
971 for (n = 0; n < o->emitted_symbols->nr; n++) {
972 struct emitted_diff_symbol *prev = (n != 0) ?
973 &o->emitted_symbols->buf[n - 1] : NULL;
974 struct emitted_diff_symbol *l = &o->emitted_symbols->buf[n];
975 struct emitted_diff_symbol *next =
976 (n < o->emitted_symbols->nr - 1) ?
977 &o->emitted_symbols->buf[n + 1] : NULL;
979 /* Not a plus or minus line? */
980 if (l->s != DIFF_SYMBOL_PLUS && l->s != DIFF_SYMBOL_MINUS)
983 /* Not a moved line? */
984 if (!(l->flags & DIFF_SYMBOL_MOVED_LINE))
988 * If prev or next are not a plus or minus line,
989 * pretend they don't exist
991 if (prev && prev->s != DIFF_SYMBOL_PLUS &&
992 prev->s != DIFF_SYMBOL_MINUS)
994 if (next && next->s != DIFF_SYMBOL_PLUS &&
995 next->s != DIFF_SYMBOL_MINUS)
998 /* Inside a block? */
1000 (prev->flags & DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK) ==
1001 (l->flags & DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK)) &&
1003 (next->flags & DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK) ==
1004 (l->flags & DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK))) {
1005 l->flags |= DIFF_SYMBOL_MOVED_LINE_UNINTERESTING;
1009 /* Check if we are at an interesting bound: */
1010 if (prev && (prev->flags & DIFF_SYMBOL_MOVED_LINE) &&
1011 (prev->flags & DIFF_SYMBOL_MOVED_LINE_ALT) !=
1012 (l->flags & DIFF_SYMBOL_MOVED_LINE_ALT))
1014 if (next && (next->flags & DIFF_SYMBOL_MOVED_LINE) &&
1015 (next->flags & DIFF_SYMBOL_MOVED_LINE_ALT) !=
1016 (l->flags & DIFF_SYMBOL_MOVED_LINE_ALT))
1020 * The boundary to prev and next are not interesting,
1021 * so this line is not interesting as a whole
1023 l->flags |= DIFF_SYMBOL_MOVED_LINE_UNINTERESTING;
1027 static void emit_line_ws_markup(struct diff_options *o,
1028 const char *set, const char *reset,
1029 const char *line, int len, char sign,
1030 unsigned ws_rule, int blank_at_eof)
1032 const char *ws = NULL;
1034 if (o->ws_error_highlight & ws_rule) {
1035 ws = diff_get_color_opt(o, DIFF_WHITESPACE);
1041 emit_line_0(o, set, reset, sign, line, len);
1042 else if (blank_at_eof)
1043 /* Blank line at EOF - paint '+' as well */
1044 emit_line_0(o, ws, reset, sign, line, len);
1046 /* Emit just the prefix, then the rest. */
1047 emit_line_0(o, set, reset, sign, "", 0);
1048 ws_check_emit(line, len, ws_rule,
1049 o->file, set, reset, ws);
1053 static void emit_diff_symbol_from_struct(struct diff_options *o,
1054 struct emitted_diff_symbol *eds)
1056 static const char *nneof = " No newline at end of file\n";
1057 const char *context, *reset, *set, *meta, *fraginfo;
1058 struct strbuf sb = STRBUF_INIT;
1060 enum diff_symbol s = eds->s;
1061 const char *line = eds->line;
1063 unsigned flags = eds->flags;
1066 case DIFF_SYMBOL_NO_LF_EOF:
1067 context = diff_get_color_opt(o, DIFF_CONTEXT);
1068 reset = diff_get_color_opt(o, DIFF_RESET);
1069 putc('\n', o->file);
1070 emit_line_0(o, context, reset, '\\',
1071 nneof, strlen(nneof));
1073 case DIFF_SYMBOL_SUBMODULE_HEADER:
1074 case DIFF_SYMBOL_SUBMODULE_ERROR:
1075 case DIFF_SYMBOL_SUBMODULE_PIPETHROUGH:
1076 case DIFF_SYMBOL_STATS_SUMMARY_INSERTS_DELETES:
1077 case DIFF_SYMBOL_SUMMARY:
1078 case DIFF_SYMBOL_STATS_LINE:
1079 case DIFF_SYMBOL_BINARY_DIFF_BODY:
1080 case DIFF_SYMBOL_CONTEXT_FRAGINFO:
1081 emit_line(o, "", "", line, len);
1083 case DIFF_SYMBOL_CONTEXT_INCOMPLETE:
1084 case DIFF_SYMBOL_CONTEXT_MARKER:
1085 context = diff_get_color_opt(o, DIFF_CONTEXT);
1086 reset = diff_get_color_opt(o, DIFF_RESET);
1087 emit_line(o, context, reset, line, len);
1089 case DIFF_SYMBOL_SEPARATOR:
1090 fprintf(o->file, "%s%c",
1091 diff_line_prefix(o),
1092 o->line_termination);
1094 case DIFF_SYMBOL_CONTEXT:
1095 set = diff_get_color_opt(o, DIFF_CONTEXT);
1096 reset = diff_get_color_opt(o, DIFF_RESET);
1097 emit_line_ws_markup(o, set, reset, line, len, ' ',
1098 flags & (DIFF_SYMBOL_CONTENT_WS_MASK), 0);
1100 case DIFF_SYMBOL_PLUS:
1101 switch (flags & (DIFF_SYMBOL_MOVED_LINE |
1102 DIFF_SYMBOL_MOVED_LINE_ALT |
1103 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING)) {
1104 case DIFF_SYMBOL_MOVED_LINE |
1105 DIFF_SYMBOL_MOVED_LINE_ALT |
1106 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING:
1107 set = diff_get_color_opt(o, DIFF_FILE_NEW_MOVED_ALT_DIM);
1109 case DIFF_SYMBOL_MOVED_LINE |
1110 DIFF_SYMBOL_MOVED_LINE_ALT:
1111 set = diff_get_color_opt(o, DIFF_FILE_NEW_MOVED_ALT);
1113 case DIFF_SYMBOL_MOVED_LINE |
1114 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING:
1115 set = diff_get_color_opt(o, DIFF_FILE_NEW_MOVED_DIM);
1117 case DIFF_SYMBOL_MOVED_LINE:
1118 set = diff_get_color_opt(o, DIFF_FILE_NEW_MOVED);
1121 set = diff_get_color_opt(o, DIFF_FILE_NEW);
1123 reset = diff_get_color_opt(o, DIFF_RESET);
1124 emit_line_ws_markup(o, set, reset, line, len, '+',
1125 flags & DIFF_SYMBOL_CONTENT_WS_MASK,
1126 flags & DIFF_SYMBOL_CONTENT_BLANK_LINE_EOF);
1128 case DIFF_SYMBOL_MINUS:
1129 switch (flags & (DIFF_SYMBOL_MOVED_LINE |
1130 DIFF_SYMBOL_MOVED_LINE_ALT |
1131 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING)) {
1132 case DIFF_SYMBOL_MOVED_LINE |
1133 DIFF_SYMBOL_MOVED_LINE_ALT |
1134 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING:
1135 set = diff_get_color_opt(o, DIFF_FILE_OLD_MOVED_ALT_DIM);
1137 case DIFF_SYMBOL_MOVED_LINE |
1138 DIFF_SYMBOL_MOVED_LINE_ALT:
1139 set = diff_get_color_opt(o, DIFF_FILE_OLD_MOVED_ALT);
1141 case DIFF_SYMBOL_MOVED_LINE |
1142 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING:
1143 set = diff_get_color_opt(o, DIFF_FILE_OLD_MOVED_DIM);
1145 case DIFF_SYMBOL_MOVED_LINE:
1146 set = diff_get_color_opt(o, DIFF_FILE_OLD_MOVED);
1149 set = diff_get_color_opt(o, DIFF_FILE_OLD);
1151 reset = diff_get_color_opt(o, DIFF_RESET);
1152 emit_line_ws_markup(o, set, reset, line, len, '-',
1153 flags & DIFF_SYMBOL_CONTENT_WS_MASK, 0);
1155 case DIFF_SYMBOL_WORDS_PORCELAIN:
1156 context = diff_get_color_opt(o, DIFF_CONTEXT);
1157 reset = diff_get_color_opt(o, DIFF_RESET);
1158 emit_line(o, context, reset, line, len);
1159 fputs("~\n", o->file);
1161 case DIFF_SYMBOL_WORDS:
1162 context = diff_get_color_opt(o, DIFF_CONTEXT);
1163 reset = diff_get_color_opt(o, DIFF_RESET);
1165 * Skip the prefix character, if any. With
1166 * diff_suppress_blank_empty, there may be
1169 if (line[0] != '\n') {
1173 emit_line(o, context, reset, line, len);
1175 case DIFF_SYMBOL_FILEPAIR_PLUS:
1176 meta = diff_get_color_opt(o, DIFF_METAINFO);
1177 reset = diff_get_color_opt(o, DIFF_RESET);
1178 fprintf(o->file, "%s%s+++ %s%s%s\n", diff_line_prefix(o), meta,
1180 strchr(line, ' ') ? "\t" : "");
1182 case DIFF_SYMBOL_FILEPAIR_MINUS:
1183 meta = diff_get_color_opt(o, DIFF_METAINFO);
1184 reset = diff_get_color_opt(o, DIFF_RESET);
1185 fprintf(o->file, "%s%s--- %s%s%s\n", diff_line_prefix(o), meta,
1187 strchr(line, ' ') ? "\t" : "");
1189 case DIFF_SYMBOL_BINARY_FILES:
1190 case DIFF_SYMBOL_HEADER:
1191 fprintf(o->file, "%s", line);
1193 case DIFF_SYMBOL_BINARY_DIFF_HEADER:
1194 fprintf(o->file, "%sGIT binary patch\n", diff_line_prefix(o));
1196 case DIFF_SYMBOL_BINARY_DIFF_HEADER_DELTA:
1197 fprintf(o->file, "%sdelta %s\n", diff_line_prefix(o), line);
1199 case DIFF_SYMBOL_BINARY_DIFF_HEADER_LITERAL:
1200 fprintf(o->file, "%sliteral %s\n", diff_line_prefix(o), line);
1202 case DIFF_SYMBOL_BINARY_DIFF_FOOTER:
1203 fputs(diff_line_prefix(o), o->file);
1204 fputc('\n', o->file);
1206 case DIFF_SYMBOL_REWRITE_DIFF:
1207 fraginfo = diff_get_color(o->use_color, DIFF_FRAGINFO);
1208 reset = diff_get_color_opt(o, DIFF_RESET);
1209 emit_line(o, fraginfo, reset, line, len);
1211 case DIFF_SYMBOL_SUBMODULE_ADD:
1212 set = diff_get_color_opt(o, DIFF_FILE_NEW);
1213 reset = diff_get_color_opt(o, DIFF_RESET);
1214 emit_line(o, set, reset, line, len);
1216 case DIFF_SYMBOL_SUBMODULE_DEL:
1217 set = diff_get_color_opt(o, DIFF_FILE_OLD);
1218 reset = diff_get_color_opt(o, DIFF_RESET);
1219 emit_line(o, set, reset, line, len);
1221 case DIFF_SYMBOL_SUBMODULE_UNTRACKED:
1222 fprintf(o->file, "%sSubmodule %s contains untracked content\n",
1223 diff_line_prefix(o), line);
1225 case DIFF_SYMBOL_SUBMODULE_MODIFIED:
1226 fprintf(o->file, "%sSubmodule %s contains modified content\n",
1227 diff_line_prefix(o), line);
1229 case DIFF_SYMBOL_STATS_SUMMARY_NO_FILES:
1230 emit_line(o, "", "", " 0 files changed\n",
1231 strlen(" 0 files changed\n"));
1233 case DIFF_SYMBOL_STATS_SUMMARY_ABBREV:
1234 emit_line(o, "", "", " ...\n", strlen(" ...\n"));
1236 case DIFF_SYMBOL_WORD_DIFF:
1237 fprintf(o->file, "%.*s", len, line);
1239 case DIFF_SYMBOL_STAT_SEP:
1240 fputs(o->stat_sep, o->file);
1243 die("BUG: unknown diff symbol");
1245 strbuf_release(&sb);
1248 static void emit_diff_symbol(struct diff_options *o, enum diff_symbol s,
1249 const char *line, int len, unsigned flags)
1251 struct emitted_diff_symbol e = {line, len, flags, s};
1253 if (o->emitted_symbols)
1254 append_emitted_diff_symbol(o, &e);
1256 emit_diff_symbol_from_struct(o, &e);
1259 void diff_emit_submodule_del(struct diff_options *o, const char *line)
1261 emit_diff_symbol(o, DIFF_SYMBOL_SUBMODULE_DEL, line, strlen(line), 0);
1264 void diff_emit_submodule_add(struct diff_options *o, const char *line)
1266 emit_diff_symbol(o, DIFF_SYMBOL_SUBMODULE_ADD, line, strlen(line), 0);
1269 void diff_emit_submodule_untracked(struct diff_options *o, const char *path)
1271 emit_diff_symbol(o, DIFF_SYMBOL_SUBMODULE_UNTRACKED,
1272 path, strlen(path), 0);
1275 void diff_emit_submodule_modified(struct diff_options *o, const char *path)
1277 emit_diff_symbol(o, DIFF_SYMBOL_SUBMODULE_MODIFIED,
1278 path, strlen(path), 0);
1281 void diff_emit_submodule_header(struct diff_options *o, const char *header)
1283 emit_diff_symbol(o, DIFF_SYMBOL_SUBMODULE_HEADER,
1284 header, strlen(header), 0);
1287 void diff_emit_submodule_error(struct diff_options *o, const char *err)
1289 emit_diff_symbol(o, DIFF_SYMBOL_SUBMODULE_ERROR, err, strlen(err), 0);
1292 void diff_emit_submodule_pipethrough(struct diff_options *o,
1293 const char *line, int len)
1295 emit_diff_symbol(o, DIFF_SYMBOL_SUBMODULE_PIPETHROUGH, line, len, 0);
1298 static int new_blank_line_at_eof(struct emit_callback *ecbdata, const char *line, int len)
1300 if (!((ecbdata->ws_rule & WS_BLANK_AT_EOF) &&
1301 ecbdata->blank_at_eof_in_preimage &&
1302 ecbdata->blank_at_eof_in_postimage &&
1303 ecbdata->blank_at_eof_in_preimage <= ecbdata->lno_in_preimage &&
1304 ecbdata->blank_at_eof_in_postimage <= ecbdata->lno_in_postimage))
1306 return ws_blank_line(line, len, ecbdata->ws_rule);
1309 static void emit_add_line(const char *reset,
1310 struct emit_callback *ecbdata,
1311 const char *line, int len)
1313 unsigned flags = WSEH_NEW | ecbdata->ws_rule;
1314 if (new_blank_line_at_eof(ecbdata, line, len))
1315 flags |= DIFF_SYMBOL_CONTENT_BLANK_LINE_EOF;
1317 emit_diff_symbol(ecbdata->opt, DIFF_SYMBOL_PLUS, line, len, flags);
1320 static void emit_del_line(const char *reset,
1321 struct emit_callback *ecbdata,
1322 const char *line, int len)
1324 unsigned flags = WSEH_OLD | ecbdata->ws_rule;
1325 emit_diff_symbol(ecbdata->opt, DIFF_SYMBOL_MINUS, line, len, flags);
1328 static void emit_context_line(const char *reset,
1329 struct emit_callback *ecbdata,
1330 const char *line, int len)
1332 unsigned flags = WSEH_CONTEXT | ecbdata->ws_rule;
1333 emit_diff_symbol(ecbdata->opt, DIFF_SYMBOL_CONTEXT, line, len, flags);
1336 static void emit_hunk_header(struct emit_callback *ecbdata,
1337 const char *line, int len)
1339 const char *context = diff_get_color(ecbdata->color_diff, DIFF_CONTEXT);
1340 const char *frag = diff_get_color(ecbdata->color_diff, DIFF_FRAGINFO);
1341 const char *func = diff_get_color(ecbdata->color_diff, DIFF_FUNCINFO);
1342 const char *reset = diff_get_color(ecbdata->color_diff, DIFF_RESET);
1343 static const char atat[2] = { '@', '@' };
1344 const char *cp, *ep;
1345 struct strbuf msgbuf = STRBUF_INIT;
1350 * As a hunk header must begin with "@@ -<old>, +<new> @@",
1351 * it always is at least 10 bytes long.
1354 memcmp(line, atat, 2) ||
1355 !(ep = memmem(line + 2, len - 2, atat, 2))) {
1356 emit_diff_symbol(ecbdata->opt,
1357 DIFF_SYMBOL_CONTEXT_MARKER, line, len, 0);
1360 ep += 2; /* skip over @@ */
1362 /* The hunk header in fraginfo color */
1363 strbuf_addstr(&msgbuf, frag);
1364 strbuf_add(&msgbuf, line, ep - line);
1365 strbuf_addstr(&msgbuf, reset);
1371 if (line[len - i] == '\r' || line[len - i] == '\n')
1374 /* blank before the func header */
1375 for (cp = ep; ep - line < len; ep++)
1376 if (*ep != ' ' && *ep != '\t')
1379 strbuf_addstr(&msgbuf, context);
1380 strbuf_add(&msgbuf, cp, ep - cp);
1381 strbuf_addstr(&msgbuf, reset);
1384 if (ep < line + len) {
1385 strbuf_addstr(&msgbuf, func);
1386 strbuf_add(&msgbuf, ep, line + len - ep);
1387 strbuf_addstr(&msgbuf, reset);
1390 strbuf_add(&msgbuf, line + len, org_len - len);
1391 strbuf_complete_line(&msgbuf);
1392 emit_diff_symbol(ecbdata->opt,
1393 DIFF_SYMBOL_CONTEXT_FRAGINFO, msgbuf.buf, msgbuf.len, 0);
1394 strbuf_release(&msgbuf);
1397 static struct diff_tempfile *claim_diff_tempfile(void) {
1399 for (i = 0; i < ARRAY_SIZE(diff_temp); i++)
1400 if (!diff_temp[i].name)
1401 return diff_temp + i;
1402 die("BUG: diff is failing to clean up its tempfiles");
1405 static void remove_tempfile(void)
1408 for (i = 0; i < ARRAY_SIZE(diff_temp); i++) {
1409 if (is_tempfile_active(&diff_temp[i].tempfile))
1410 delete_tempfile(&diff_temp[i].tempfile);
1411 diff_temp[i].name = NULL;
1415 static void add_line_count(struct strbuf *out, int count)
1419 strbuf_addstr(out, "0,0");
1422 strbuf_addstr(out, "1");
1425 strbuf_addf(out, "1,%d", count);
1430 static void emit_rewrite_lines(struct emit_callback *ecb,
1431 int prefix, const char *data, int size)
1433 const char *endp = NULL;
1434 const char *reset = diff_get_color(ecb->color_diff, DIFF_RESET);
1439 endp = memchr(data, '\n', size);
1440 len = endp ? (endp - data + 1) : size;
1441 if (prefix != '+') {
1442 ecb->lno_in_preimage++;
1443 emit_del_line(reset, ecb, data, len);
1445 ecb->lno_in_postimage++;
1446 emit_add_line(reset, ecb, data, len);
1452 emit_diff_symbol(ecb->opt, DIFF_SYMBOL_NO_LF_EOF, NULL, 0, 0);
1455 static void emit_rewrite_diff(const char *name_a,
1457 struct diff_filespec *one,
1458 struct diff_filespec *two,
1459 struct userdiff_driver *textconv_one,
1460 struct userdiff_driver *textconv_two,
1461 struct diff_options *o)
1464 static struct strbuf a_name = STRBUF_INIT, b_name = STRBUF_INIT;
1465 const char *a_prefix, *b_prefix;
1466 char *data_one, *data_two;
1467 size_t size_one, size_two;
1468 struct emit_callback ecbdata;
1469 struct strbuf out = STRBUF_INIT;
1471 if (diff_mnemonic_prefix && DIFF_OPT_TST(o, REVERSE_DIFF)) {
1472 a_prefix = o->b_prefix;
1473 b_prefix = o->a_prefix;
1475 a_prefix = o->a_prefix;
1476 b_prefix = o->b_prefix;
1479 name_a += (*name_a == '/');
1480 name_b += (*name_b == '/');
1482 strbuf_reset(&a_name);
1483 strbuf_reset(&b_name);
1484 quote_two_c_style(&a_name, a_prefix, name_a, 0);
1485 quote_two_c_style(&b_name, b_prefix, name_b, 0);
1487 size_one = fill_textconv(textconv_one, one, &data_one);
1488 size_two = fill_textconv(textconv_two, two, &data_two);
1490 memset(&ecbdata, 0, sizeof(ecbdata));
1491 ecbdata.color_diff = want_color(o->use_color);
1492 ecbdata.ws_rule = whitespace_rule(name_b);
1494 if (ecbdata.ws_rule & WS_BLANK_AT_EOF) {
1496 mf1.ptr = (char *)data_one;
1497 mf2.ptr = (char *)data_two;
1498 mf1.size = size_one;
1499 mf2.size = size_two;
1500 check_blank_at_eof(&mf1, &mf2, &ecbdata);
1502 ecbdata.lno_in_preimage = 1;
1503 ecbdata.lno_in_postimage = 1;
1505 lc_a = count_lines(data_one, size_one);
1506 lc_b = count_lines(data_two, size_two);
1508 emit_diff_symbol(o, DIFF_SYMBOL_FILEPAIR_MINUS,
1509 a_name.buf, a_name.len, 0);
1510 emit_diff_symbol(o, DIFF_SYMBOL_FILEPAIR_PLUS,
1511 b_name.buf, b_name.len, 0);
1513 strbuf_addstr(&out, "@@ -");
1514 if (!o->irreversible_delete)
1515 add_line_count(&out, lc_a);
1517 strbuf_addstr(&out, "?,?");
1518 strbuf_addstr(&out, " +");
1519 add_line_count(&out, lc_b);
1520 strbuf_addstr(&out, " @@\n");
1521 emit_diff_symbol(o, DIFF_SYMBOL_REWRITE_DIFF, out.buf, out.len, 0);
1522 strbuf_release(&out);
1524 if (lc_a && !o->irreversible_delete)
1525 emit_rewrite_lines(&ecbdata, '-', data_one, size_one);
1527 emit_rewrite_lines(&ecbdata, '+', data_two, size_two);
1529 free((char *)data_one);
1531 free((char *)data_two);
1534 struct diff_words_buffer {
1537 struct diff_words_orig {
1538 const char *begin, *end;
1540 int orig_nr, orig_alloc;
1543 static void diff_words_append(char *line, unsigned long len,
1544 struct diff_words_buffer *buffer)
1546 ALLOC_GROW(buffer->text.ptr, buffer->text.size + len, buffer->alloc);
1549 memcpy(buffer->text.ptr + buffer->text.size, line, len);
1550 buffer->text.size += len;
1551 buffer->text.ptr[buffer->text.size] = '\0';
1554 struct diff_words_style_elem {
1557 const char *color; /* NULL; filled in by the setup code if
1558 * color is enabled */
1561 struct diff_words_style {
1562 enum diff_words_type type;
1563 struct diff_words_style_elem new, old, ctx;
1564 const char *newline;
1567 static struct diff_words_style diff_words_styles[] = {
1568 { DIFF_WORDS_PORCELAIN, {"+", "\n"}, {"-", "\n"}, {" ", "\n"}, "~\n" },
1569 { DIFF_WORDS_PLAIN, {"{+", "+}"}, {"[-", "-]"}, {"", ""}, "\n" },
1570 { DIFF_WORDS_COLOR, {"", ""}, {"", ""}, {"", ""}, "\n" }
1573 struct diff_words_data {
1574 struct diff_words_buffer minus, plus;
1575 const char *current_plus;
1577 struct diff_options *opt;
1578 regex_t *word_regex;
1579 enum diff_words_type type;
1580 struct diff_words_style *style;
1583 static int fn_out_diff_words_write_helper(struct diff_options *o,
1584 struct diff_words_style_elem *st_el,
1585 const char *newline,
1586 size_t count, const char *buf)
1589 struct strbuf sb = STRBUF_INIT;
1592 char *p = memchr(buf, '\n', count);
1594 strbuf_addstr(&sb, diff_line_prefix(o));
1597 const char *reset = st_el->color && *st_el->color ?
1598 GIT_COLOR_RESET : NULL;
1599 if (st_el->color && *st_el->color)
1600 strbuf_addstr(&sb, st_el->color);
1601 strbuf_addstr(&sb, st_el->prefix);
1602 strbuf_add(&sb, buf, p ? p - buf : count);
1603 strbuf_addstr(&sb, st_el->suffix);
1605 strbuf_addstr(&sb, reset);
1610 strbuf_addstr(&sb, newline);
1611 count -= p + 1 - buf;
1615 emit_diff_symbol(o, DIFF_SYMBOL_WORD_DIFF,
1623 emit_diff_symbol(o, DIFF_SYMBOL_WORD_DIFF,
1625 strbuf_release(&sb);
1630 * '--color-words' algorithm can be described as:
1632 * 1. collect the minus/plus lines of a diff hunk, divided into
1633 * minus-lines and plus-lines;
1635 * 2. break both minus-lines and plus-lines into words and
1636 * place them into two mmfile_t with one word for each line;
1638 * 3. use xdiff to run diff on the two mmfile_t to get the words level diff;
1640 * And for the common parts of the both file, we output the plus side text.
1641 * diff_words->current_plus is used to trace the current position of the plus file
1642 * which printed. diff_words->last_minus is used to trace the last minus word
1645 * For '--graph' to work with '--color-words', we need to output the graph prefix
1646 * on each line of color words output. Generally, there are two conditions on
1647 * which we should output the prefix.
1649 * 1. diff_words->last_minus == 0 &&
1650 * diff_words->current_plus == diff_words->plus.text.ptr
1652 * that is: the plus text must start as a new line, and if there is no minus
1653 * word printed, a graph prefix must be printed.
1655 * 2. diff_words->current_plus > diff_words->plus.text.ptr &&
1656 * *(diff_words->current_plus - 1) == '\n'
1658 * that is: a graph prefix must be printed following a '\n'
1660 static int color_words_output_graph_prefix(struct diff_words_data *diff_words)
1662 if ((diff_words->last_minus == 0 &&
1663 diff_words->current_plus == diff_words->plus.text.ptr) ||
1664 (diff_words->current_plus > diff_words->plus.text.ptr &&
1665 *(diff_words->current_plus - 1) == '\n')) {
1672 static void fn_out_diff_words_aux(void *priv, char *line, unsigned long len)
1674 struct diff_words_data *diff_words = priv;
1675 struct diff_words_style *style = diff_words->style;
1676 int minus_first, minus_len, plus_first, plus_len;
1677 const char *minus_begin, *minus_end, *plus_begin, *plus_end;
1678 struct diff_options *opt = diff_words->opt;
1679 const char *line_prefix;
1681 if (line[0] != '@' || parse_hunk_header(line, len,
1682 &minus_first, &minus_len, &plus_first, &plus_len))
1686 line_prefix = diff_line_prefix(opt);
1688 /* POSIX requires that first be decremented by one if len == 0... */
1690 minus_begin = diff_words->minus.orig[minus_first].begin;
1692 diff_words->minus.orig[minus_first + minus_len - 1].end;
1694 minus_begin = minus_end =
1695 diff_words->minus.orig[minus_first].end;
1698 plus_begin = diff_words->plus.orig[plus_first].begin;
1699 plus_end = diff_words->plus.orig[plus_first + plus_len - 1].end;
1701 plus_begin = plus_end = diff_words->plus.orig[plus_first].end;
1703 if (color_words_output_graph_prefix(diff_words)) {
1704 fputs(line_prefix, diff_words->opt->file);
1706 if (diff_words->current_plus != plus_begin) {
1707 fn_out_diff_words_write_helper(diff_words->opt,
1708 &style->ctx, style->newline,
1709 plus_begin - diff_words->current_plus,
1710 diff_words->current_plus);
1712 if (minus_begin != minus_end) {
1713 fn_out_diff_words_write_helper(diff_words->opt,
1714 &style->old, style->newline,
1715 minus_end - minus_begin, minus_begin);
1717 if (plus_begin != plus_end) {
1718 fn_out_diff_words_write_helper(diff_words->opt,
1719 &style->new, style->newline,
1720 plus_end - plus_begin, plus_begin);
1723 diff_words->current_plus = plus_end;
1724 diff_words->last_minus = minus_first;
1727 /* This function starts looking at *begin, and returns 0 iff a word was found. */
1728 static int find_word_boundaries(mmfile_t *buffer, regex_t *word_regex,
1729 int *begin, int *end)
1731 if (word_regex && *begin < buffer->size) {
1732 regmatch_t match[1];
1733 if (!regexec_buf(word_regex, buffer->ptr + *begin,
1734 buffer->size - *begin, 1, match, 0)) {
1735 char *p = memchr(buffer->ptr + *begin + match[0].rm_so,
1736 '\n', match[0].rm_eo - match[0].rm_so);
1737 *end = p ? p - buffer->ptr : match[0].rm_eo + *begin;
1738 *begin += match[0].rm_so;
1739 return *begin >= *end;
1744 /* find the next word */
1745 while (*begin < buffer->size && isspace(buffer->ptr[*begin]))
1747 if (*begin >= buffer->size)
1750 /* find the end of the word */
1752 while (*end < buffer->size && !isspace(buffer->ptr[*end]))
1759 * This function splits the words in buffer->text, stores the list with
1760 * newline separator into out, and saves the offsets of the original words
1763 static void diff_words_fill(struct diff_words_buffer *buffer, mmfile_t *out,
1764 regex_t *word_regex)
1772 /* fake an empty "0th" word */
1773 ALLOC_GROW(buffer->orig, 1, buffer->orig_alloc);
1774 buffer->orig[0].begin = buffer->orig[0].end = buffer->text.ptr;
1775 buffer->orig_nr = 1;
1777 for (i = 0; i < buffer->text.size; i++) {
1778 if (find_word_boundaries(&buffer->text, word_regex, &i, &j))
1781 /* store original boundaries */
1782 ALLOC_GROW(buffer->orig, buffer->orig_nr + 1,
1783 buffer->orig_alloc);
1784 buffer->orig[buffer->orig_nr].begin = buffer->text.ptr + i;
1785 buffer->orig[buffer->orig_nr].end = buffer->text.ptr + j;
1788 /* store one word */
1789 ALLOC_GROW(out->ptr, out->size + j - i + 1, alloc);
1790 memcpy(out->ptr + out->size, buffer->text.ptr + i, j - i);
1791 out->ptr[out->size + j - i] = '\n';
1792 out->size += j - i + 1;
1798 /* this executes the word diff on the accumulated buffers */
1799 static void diff_words_show(struct diff_words_data *diff_words)
1803 mmfile_t minus, plus;
1804 struct diff_words_style *style = diff_words->style;
1806 struct diff_options *opt = diff_words->opt;
1807 const char *line_prefix;
1810 line_prefix = diff_line_prefix(opt);
1812 /* special case: only removal */
1813 if (!diff_words->plus.text.size) {
1814 emit_diff_symbol(diff_words->opt, DIFF_SYMBOL_WORD_DIFF,
1815 line_prefix, strlen(line_prefix), 0);
1816 fn_out_diff_words_write_helper(diff_words->opt,
1817 &style->old, style->newline,
1818 diff_words->minus.text.size,
1819 diff_words->minus.text.ptr);
1820 diff_words->minus.text.size = 0;
1824 diff_words->current_plus = diff_words->plus.text.ptr;
1825 diff_words->last_minus = 0;
1827 memset(&xpp, 0, sizeof(xpp));
1828 memset(&xecfg, 0, sizeof(xecfg));
1829 diff_words_fill(&diff_words->minus, &minus, diff_words->word_regex);
1830 diff_words_fill(&diff_words->plus, &plus, diff_words->word_regex);
1832 /* as only the hunk header will be parsed, we need a 0-context */
1834 if (xdi_diff_outf(&minus, &plus, fn_out_diff_words_aux, diff_words,
1836 die("unable to generate word diff");
1839 if (diff_words->current_plus != diff_words->plus.text.ptr +
1840 diff_words->plus.text.size) {
1841 if (color_words_output_graph_prefix(diff_words))
1842 emit_diff_symbol(diff_words->opt, DIFF_SYMBOL_WORD_DIFF,
1843 line_prefix, strlen(line_prefix), 0);
1844 fn_out_diff_words_write_helper(diff_words->opt,
1845 &style->ctx, style->newline,
1846 diff_words->plus.text.ptr + diff_words->plus.text.size
1847 - diff_words->current_plus, diff_words->current_plus);
1849 diff_words->minus.text.size = diff_words->plus.text.size = 0;
1852 /* In "color-words" mode, show word-diff of words accumulated in the buffer */
1853 static void diff_words_flush(struct emit_callback *ecbdata)
1855 struct diff_options *wo = ecbdata->diff_words->opt;
1857 if (ecbdata->diff_words->minus.text.size ||
1858 ecbdata->diff_words->plus.text.size)
1859 diff_words_show(ecbdata->diff_words);
1861 if (wo->emitted_symbols) {
1862 struct diff_options *o = ecbdata->opt;
1863 struct emitted_diff_symbols *wol = wo->emitted_symbols;
1868 * Instead of appending each, concat all words to a line?
1870 for (i = 0; i < wol->nr; i++)
1871 append_emitted_diff_symbol(o, &wol->buf[i]);
1873 for (i = 0; i < wol->nr; i++)
1874 free((void *)wol->buf[i].line);
1880 static void diff_filespec_load_driver(struct diff_filespec *one)
1882 /* Use already-loaded driver */
1886 if (S_ISREG(one->mode))
1887 one->driver = userdiff_find_by_path(one->path);
1889 /* Fallback to default settings */
1891 one->driver = userdiff_find_by_name("default");
1894 static const char *userdiff_word_regex(struct diff_filespec *one)
1896 diff_filespec_load_driver(one);
1897 return one->driver->word_regex;
1900 static void init_diff_words_data(struct emit_callback *ecbdata,
1901 struct diff_options *orig_opts,
1902 struct diff_filespec *one,
1903 struct diff_filespec *two)
1906 struct diff_options *o = xmalloc(sizeof(struct diff_options));
1907 memcpy(o, orig_opts, sizeof(struct diff_options));
1909 ecbdata->diff_words =
1910 xcalloc(1, sizeof(struct diff_words_data));
1911 ecbdata->diff_words->type = o->word_diff;
1912 ecbdata->diff_words->opt = o;
1914 if (orig_opts->emitted_symbols)
1915 o->emitted_symbols =
1916 xcalloc(1, sizeof(struct emitted_diff_symbols));
1919 o->word_regex = userdiff_word_regex(one);
1921 o->word_regex = userdiff_word_regex(two);
1923 o->word_regex = diff_word_regex_cfg;
1924 if (o->word_regex) {
1925 ecbdata->diff_words->word_regex = (regex_t *)
1926 xmalloc(sizeof(regex_t));
1927 if (regcomp(ecbdata->diff_words->word_regex,
1929 REG_EXTENDED | REG_NEWLINE))
1930 die ("Invalid regular expression: %s",
1933 for (i = 0; i < ARRAY_SIZE(diff_words_styles); i++) {
1934 if (o->word_diff == diff_words_styles[i].type) {
1935 ecbdata->diff_words->style =
1936 &diff_words_styles[i];
1940 if (want_color(o->use_color)) {
1941 struct diff_words_style *st = ecbdata->diff_words->style;
1942 st->old.color = diff_get_color_opt(o, DIFF_FILE_OLD);
1943 st->new.color = diff_get_color_opt(o, DIFF_FILE_NEW);
1944 st->ctx.color = diff_get_color_opt(o, DIFF_CONTEXT);
1948 static void free_diff_words_data(struct emit_callback *ecbdata)
1950 if (ecbdata->diff_words) {
1951 diff_words_flush(ecbdata);
1952 free (ecbdata->diff_words->opt->emitted_symbols);
1953 free (ecbdata->diff_words->opt);
1954 free (ecbdata->diff_words->minus.text.ptr);
1955 free (ecbdata->diff_words->minus.orig);
1956 free (ecbdata->diff_words->plus.text.ptr);
1957 free (ecbdata->diff_words->plus.orig);
1958 if (ecbdata->diff_words->word_regex) {
1959 regfree(ecbdata->diff_words->word_regex);
1960 free(ecbdata->diff_words->word_regex);
1962 FREE_AND_NULL(ecbdata->diff_words);
1966 const char *diff_get_color(int diff_use_color, enum color_diff ix)
1968 if (want_color(diff_use_color))
1969 return diff_colors[ix];
1973 const char *diff_line_prefix(struct diff_options *opt)
1975 struct strbuf *msgbuf;
1976 if (!opt->output_prefix)
1979 msgbuf = opt->output_prefix(opt, opt->output_prefix_data);
1983 static unsigned long sane_truncate_line(struct emit_callback *ecb, char *line, unsigned long len)
1986 unsigned long allot;
1990 return ecb->truncate(line, len);
1994 (void) utf8_width(&cp, &l);
1996 break; /* truncated in the middle? */
2001 static void find_lno(const char *line, struct emit_callback *ecbdata)
2004 ecbdata->lno_in_preimage = 0;
2005 ecbdata->lno_in_postimage = 0;
2006 p = strchr(line, '-');
2008 return; /* cannot happen */
2009 ecbdata->lno_in_preimage = strtol(p + 1, NULL, 10);
2012 return; /* cannot happen */
2013 ecbdata->lno_in_postimage = strtol(p + 1, NULL, 10);
2016 static void fn_out_consume(void *priv, char *line, unsigned long len)
2018 struct emit_callback *ecbdata = priv;
2019 const char *reset = diff_get_color(ecbdata->color_diff, DIFF_RESET);
2020 struct diff_options *o = ecbdata->opt;
2022 o->found_changes = 1;
2024 if (ecbdata->header) {
2025 emit_diff_symbol(o, DIFF_SYMBOL_HEADER,
2026 ecbdata->header->buf, ecbdata->header->len, 0);
2027 strbuf_reset(ecbdata->header);
2028 ecbdata->header = NULL;
2031 if (ecbdata->label_path[0]) {
2032 emit_diff_symbol(o, DIFF_SYMBOL_FILEPAIR_MINUS,
2033 ecbdata->label_path[0],
2034 strlen(ecbdata->label_path[0]), 0);
2035 emit_diff_symbol(o, DIFF_SYMBOL_FILEPAIR_PLUS,
2036 ecbdata->label_path[1],
2037 strlen(ecbdata->label_path[1]), 0);
2038 ecbdata->label_path[0] = ecbdata->label_path[1] = NULL;
2041 if (diff_suppress_blank_empty
2042 && len == 2 && line[0] == ' ' && line[1] == '\n') {
2047 if (line[0] == '@') {
2048 if (ecbdata->diff_words)
2049 diff_words_flush(ecbdata);
2050 len = sane_truncate_line(ecbdata, line, len);
2051 find_lno(line, ecbdata);
2052 emit_hunk_header(ecbdata, line, len);
2056 if (ecbdata->diff_words) {
2057 enum diff_symbol s =
2058 ecbdata->diff_words->type == DIFF_WORDS_PORCELAIN ?
2059 DIFF_SYMBOL_WORDS_PORCELAIN : DIFF_SYMBOL_WORDS;
2060 if (line[0] == '-') {
2061 diff_words_append(line, len,
2062 &ecbdata->diff_words->minus);
2064 } else if (line[0] == '+') {
2065 diff_words_append(line, len,
2066 &ecbdata->diff_words->plus);
2068 } else if (starts_with(line, "\\ ")) {
2070 * Eat the "no newline at eof" marker as if we
2071 * saw a "+" or "-" line with nothing on it,
2072 * and return without diff_words_flush() to
2073 * defer processing. If this is the end of
2074 * preimage, more "+" lines may come after it.
2078 diff_words_flush(ecbdata);
2079 emit_diff_symbol(o, s, line, len, 0);
2085 ecbdata->lno_in_postimage++;
2086 emit_add_line(reset, ecbdata, line + 1, len - 1);
2089 ecbdata->lno_in_preimage++;
2090 emit_del_line(reset, ecbdata, line + 1, len - 1);
2093 ecbdata->lno_in_postimage++;
2094 ecbdata->lno_in_preimage++;
2095 emit_context_line(reset, ecbdata, line + 1, len - 1);
2098 /* incomplete line at the end */
2099 ecbdata->lno_in_preimage++;
2100 emit_diff_symbol(o, DIFF_SYMBOL_CONTEXT_INCOMPLETE,
2106 static char *pprint_rename(const char *a, const char *b)
2108 const char *old = a;
2109 const char *new = b;
2110 struct strbuf name = STRBUF_INIT;
2111 int pfx_length, sfx_length;
2112 int pfx_adjust_for_slash;
2113 int len_a = strlen(a);
2114 int len_b = strlen(b);
2115 int a_midlen, b_midlen;
2116 int qlen_a = quote_c_style(a, NULL, NULL, 0);
2117 int qlen_b = quote_c_style(b, NULL, NULL, 0);
2119 if (qlen_a || qlen_b) {
2120 quote_c_style(a, &name, NULL, 0);
2121 strbuf_addstr(&name, " => ");
2122 quote_c_style(b, &name, NULL, 0);
2123 return strbuf_detach(&name, NULL);
2126 /* Find common prefix */
2128 while (*old && *new && *old == *new) {
2130 pfx_length = old - a + 1;
2135 /* Find common suffix */
2140 * If there is a common prefix, it must end in a slash. In
2141 * that case we let this loop run 1 into the prefix to see the
2144 * If there is no common prefix, we cannot do this as it would
2145 * underrun the input strings.
2147 pfx_adjust_for_slash = (pfx_length ? 1 : 0);
2148 while (a + pfx_length - pfx_adjust_for_slash <= old &&
2149 b + pfx_length - pfx_adjust_for_slash <= new &&
2152 sfx_length = len_a - (old - a);
2158 * pfx{mid-a => mid-b}sfx
2159 * {pfx-a => pfx-b}sfx
2160 * pfx{sfx-a => sfx-b}
2163 a_midlen = len_a - pfx_length - sfx_length;
2164 b_midlen = len_b - pfx_length - sfx_length;
2170 strbuf_grow(&name, pfx_length + a_midlen + b_midlen + sfx_length + 7);
2171 if (pfx_length + sfx_length) {
2172 strbuf_add(&name, a, pfx_length);
2173 strbuf_addch(&name, '{');
2175 strbuf_add(&name, a + pfx_length, a_midlen);
2176 strbuf_addstr(&name, " => ");
2177 strbuf_add(&name, b + pfx_length, b_midlen);
2178 if (pfx_length + sfx_length) {
2179 strbuf_addch(&name, '}');
2180 strbuf_add(&name, a + len_a - sfx_length, sfx_length);
2182 return strbuf_detach(&name, NULL);
2188 struct diffstat_file {
2192 unsigned is_unmerged:1;
2193 unsigned is_binary:1;
2194 unsigned is_renamed:1;
2195 unsigned is_interesting:1;
2196 uintmax_t added, deleted;
2200 static struct diffstat_file *diffstat_add(struct diffstat_t *diffstat,
2204 struct diffstat_file *x;
2205 x = xcalloc(1, sizeof(*x));
2206 ALLOC_GROW(diffstat->files, diffstat->nr + 1, diffstat->alloc);
2207 diffstat->files[diffstat->nr++] = x;
2209 x->from_name = xstrdup(name_a);
2210 x->name = xstrdup(name_b);
2214 x->from_name = NULL;
2215 x->name = xstrdup(name_a);
2220 static void diffstat_consume(void *priv, char *line, unsigned long len)
2222 struct diffstat_t *diffstat = priv;
2223 struct diffstat_file *x = diffstat->files[diffstat->nr - 1];
2227 else if (line[0] == '-')
2231 const char mime_boundary_leader[] = "------------";
2233 static int scale_linear(int it, int width, int max_change)
2238 * make sure that at least one '-' or '+' is printed if
2239 * there is any change to this path. The easiest way is to
2240 * scale linearly as if the alloted width is one column shorter
2241 * than it is, and then add 1 to the result.
2243 return 1 + (it * (width - 1) / max_change);
2246 static void show_graph(struct strbuf *out, char ch, int cnt,
2247 const char *set, const char *reset)
2251 strbuf_addstr(out, set);
2252 strbuf_addchars(out, ch, cnt);
2253 strbuf_addstr(out, reset);
2256 static void fill_print_name(struct diffstat_file *file)
2260 if (file->print_name)
2263 if (!file->is_renamed) {
2264 struct strbuf buf = STRBUF_INIT;
2265 if (quote_c_style(file->name, &buf, NULL, 0)) {
2266 pname = strbuf_detach(&buf, NULL);
2269 strbuf_release(&buf);
2272 pname = pprint_rename(file->from_name, file->name);
2274 file->print_name = pname;
2277 static void print_stat_summary_inserts_deletes(struct diff_options *options,
2278 int files, int insertions, int deletions)
2280 struct strbuf sb = STRBUF_INIT;
2283 assert(insertions == 0 && deletions == 0);
2284 emit_diff_symbol(options, DIFF_SYMBOL_STATS_SUMMARY_NO_FILES,
2290 (files == 1) ? " %d file changed" : " %d files changed",
2294 * For binary diff, the caller may want to print "x files
2295 * changed" with insertions == 0 && deletions == 0.
2297 * Not omitting "0 insertions(+), 0 deletions(-)" in this case
2298 * is probably less confusing (i.e skip over "2 files changed
2299 * but nothing about added/removed lines? Is this a bug in Git?").
2301 if (insertions || deletions == 0) {
2303 (insertions == 1) ? ", %d insertion(+)" : ", %d insertions(+)",
2307 if (deletions || insertions == 0) {
2309 (deletions == 1) ? ", %d deletion(-)" : ", %d deletions(-)",
2312 strbuf_addch(&sb, '\n');
2313 emit_diff_symbol(options, DIFF_SYMBOL_STATS_SUMMARY_INSERTS_DELETES,
2315 strbuf_release(&sb);
2318 void print_stat_summary(FILE *fp, int files,
2319 int insertions, int deletions)
2321 struct diff_options o;
2322 memset(&o, 0, sizeof(o));
2325 print_stat_summary_inserts_deletes(&o, files, insertions, deletions);
2328 static void show_stats(struct diffstat_t *data, struct diff_options *options)
2330 int i, len, add, del, adds = 0, dels = 0;
2331 uintmax_t max_change = 0, max_len = 0;
2332 int total_files = data->nr, count;
2333 int width, name_width, graph_width, number_width = 0, bin_width = 0;
2334 const char *reset, *add_c, *del_c;
2335 int extra_shown = 0;
2336 const char *line_prefix = diff_line_prefix(options);
2337 struct strbuf out = STRBUF_INIT;
2342 count = options->stat_count ? options->stat_count : data->nr;
2344 reset = diff_get_color_opt(options, DIFF_RESET);
2345 add_c = diff_get_color_opt(options, DIFF_FILE_NEW);
2346 del_c = diff_get_color_opt(options, DIFF_FILE_OLD);
2349 * Find the longest filename and max number of changes
2351 for (i = 0; (i < count) && (i < data->nr); i++) {
2352 struct diffstat_file *file = data->files[i];
2353 uintmax_t change = file->added + file->deleted;
2355 if (!file->is_interesting && (change == 0)) {
2356 count++; /* not shown == room for one more */
2359 fill_print_name(file);
2360 len = strlen(file->print_name);
2364 if (file->is_unmerged) {
2365 /* "Unmerged" is 8 characters */
2366 bin_width = bin_width < 8 ? 8 : bin_width;
2369 if (file->is_binary) {
2370 /* "Bin XXX -> YYY bytes" */
2371 int w = 14 + decimal_width(file->added)
2372 + decimal_width(file->deleted);
2373 bin_width = bin_width < w ? w : bin_width;
2374 /* Display change counts aligned with "Bin" */
2379 if (max_change < change)
2380 max_change = change;
2382 count = i; /* where we can stop scanning in data->files[] */
2385 * We have width = stat_width or term_columns() columns total.
2386 * We want a maximum of min(max_len, stat_name_width) for the name part.
2387 * We want a maximum of min(max_change, stat_graph_width) for the +- part.
2388 * We also need 1 for " " and 4 + decimal_width(max_change)
2389 * for " | NNNN " and one the empty column at the end, altogether
2390 * 6 + decimal_width(max_change).
2392 * If there's not enough space, we will use the smaller of
2393 * stat_name_width (if set) and 5/8*width for the filename,
2394 * and the rest for constant elements + graph part, but no more
2395 * than stat_graph_width for the graph part.
2396 * (5/8 gives 50 for filename and 30 for the constant parts + graph
2397 * for the standard terminal size).
2399 * In other words: stat_width limits the maximum width, and
2400 * stat_name_width fixes the maximum width of the filename,
2401 * and is also used to divide available columns if there
2404 * Binary files are displayed with "Bin XXX -> YYY bytes"
2405 * instead of the change count and graph. This part is treated
2406 * similarly to the graph part, except that it is not
2407 * "scaled". If total width is too small to accommodate the
2408 * guaranteed minimum width of the filename part and the
2409 * separators and this message, this message will "overflow"
2410 * making the line longer than the maximum width.
2413 if (options->stat_width == -1)
2414 width = term_columns() - strlen(line_prefix);
2416 width = options->stat_width ? options->stat_width : 80;
2417 number_width = decimal_width(max_change) > number_width ?
2418 decimal_width(max_change) : number_width;
2420 if (options->stat_graph_width == -1)
2421 options->stat_graph_width = diff_stat_graph_width;
2424 * Guarantee 3/8*16==6 for the graph part
2425 * and 5/8*16==10 for the filename part
2427 if (width < 16 + 6 + number_width)
2428 width = 16 + 6 + number_width;
2431 * First assign sizes that are wanted, ignoring available width.
2432 * strlen("Bin XXX -> YYY bytes") == bin_width, and the part
2433 * starting from "XXX" should fit in graph_width.
2435 graph_width = max_change + 4 > bin_width ? max_change : bin_width - 4;
2436 if (options->stat_graph_width &&
2437 options->stat_graph_width < graph_width)
2438 graph_width = options->stat_graph_width;
2440 name_width = (options->stat_name_width > 0 &&
2441 options->stat_name_width < max_len) ?
2442 options->stat_name_width : max_len;
2445 * Adjust adjustable widths not to exceed maximum width
2447 if (name_width + number_width + 6 + graph_width > width) {
2448 if (graph_width > width * 3/8 - number_width - 6) {
2449 graph_width = width * 3/8 - number_width - 6;
2450 if (graph_width < 6)
2454 if (options->stat_graph_width &&
2455 graph_width > options->stat_graph_width)
2456 graph_width = options->stat_graph_width;
2457 if (name_width > width - number_width - 6 - graph_width)
2458 name_width = width - number_width - 6 - graph_width;
2460 graph_width = width - number_width - 6 - name_width;
2464 * From here name_width is the width of the name area,
2465 * and graph_width is the width of the graph area.
2466 * max_change is used to scale graph properly.
2468 for (i = 0; i < count; i++) {
2469 const char *prefix = "";
2470 struct diffstat_file *file = data->files[i];
2471 char *name = file->print_name;
2472 uintmax_t added = file->added;
2473 uintmax_t deleted = file->deleted;
2476 if (!file->is_interesting && (added + deleted == 0))
2480 * "scale" the filename
2483 name_len = strlen(name);
2484 if (name_width < name_len) {
2488 name += name_len - len;
2489 slash = strchr(name, '/');
2494 if (file->is_binary) {
2495 strbuf_addf(&out, " %s%-*s |", prefix, len, name);
2496 strbuf_addf(&out, " %*s", number_width, "Bin");
2497 if (!added && !deleted) {
2498 strbuf_addch(&out, '\n');
2499 emit_diff_symbol(options, DIFF_SYMBOL_STATS_LINE,
2500 out.buf, out.len, 0);
2504 strbuf_addf(&out, " %s%"PRIuMAX"%s",
2505 del_c, deleted, reset);
2506 strbuf_addstr(&out, " -> ");
2507 strbuf_addf(&out, "%s%"PRIuMAX"%s",
2508 add_c, added, reset);
2509 strbuf_addstr(&out, " bytes\n");
2510 emit_diff_symbol(options, DIFF_SYMBOL_STATS_LINE,
2511 out.buf, out.len, 0);
2515 else if (file->is_unmerged) {
2516 strbuf_addf(&out, " %s%-*s |", prefix, len, name);
2517 strbuf_addstr(&out, " Unmerged\n");
2518 emit_diff_symbol(options, DIFF_SYMBOL_STATS_LINE,
2519 out.buf, out.len, 0);
2525 * scale the add/delete
2530 if (graph_width <= max_change) {
2531 int total = scale_linear(add + del, graph_width, max_change);
2532 if (total < 2 && add && del)
2533 /* width >= 2 due to the sanity check */
2536 add = scale_linear(add, graph_width, max_change);
2539 del = scale_linear(del, graph_width, max_change);
2543 strbuf_addf(&out, " %s%-*s |", prefix, len, name);
2544 strbuf_addf(&out, " %*"PRIuMAX"%s",
2545 number_width, added + deleted,
2546 added + deleted ? " " : "");
2547 show_graph(&out, '+', add, add_c, reset);
2548 show_graph(&out, '-', del, del_c, reset);
2549 strbuf_addch(&out, '\n');
2550 emit_diff_symbol(options, DIFF_SYMBOL_STATS_LINE,
2551 out.buf, out.len, 0);
2555 for (i = 0; i < data->nr; i++) {
2556 struct diffstat_file *file = data->files[i];
2557 uintmax_t added = file->added;
2558 uintmax_t deleted = file->deleted;
2560 if (file->is_unmerged ||
2561 (!file->is_interesting && (added + deleted == 0))) {
2566 if (!file->is_binary) {
2573 emit_diff_symbol(options,
2574 DIFF_SYMBOL_STATS_SUMMARY_ABBREV,
2579 print_stat_summary_inserts_deletes(options, total_files, adds, dels);
2582 static void show_shortstats(struct diffstat_t *data, struct diff_options *options)
2584 int i, adds = 0, dels = 0, total_files = data->nr;
2589 for (i = 0; i < data->nr; i++) {
2590 int added = data->files[i]->added;
2591 int deleted = data->files[i]->deleted;
2593 if (data->files[i]->is_unmerged ||
2594 (!data->files[i]->is_interesting && (added + deleted == 0))) {
2596 } else if (!data->files[i]->is_binary) { /* don't count bytes */
2601 print_stat_summary_inserts_deletes(options, total_files, adds, dels);
2604 static void show_numstat(struct diffstat_t *data, struct diff_options *options)
2611 for (i = 0; i < data->nr; i++) {
2612 struct diffstat_file *file = data->files[i];
2614 fprintf(options->file, "%s", diff_line_prefix(options));
2616 if (file->is_binary)
2617 fprintf(options->file, "-\t-\t");
2619 fprintf(options->file,
2620 "%"PRIuMAX"\t%"PRIuMAX"\t",
2621 file->added, file->deleted);
2622 if (options->line_termination) {
2623 fill_print_name(file);
2624 if (!file->is_renamed)
2625 write_name_quoted(file->name, options->file,
2626 options->line_termination);
2628 fputs(file->print_name, options->file);
2629 putc(options->line_termination, options->file);
2632 if (file->is_renamed) {
2633 putc('\0', options->file);
2634 write_name_quoted(file->from_name, options->file, '\0');
2636 write_name_quoted(file->name, options->file, '\0');
2641 struct dirstat_file {
2643 unsigned long changed;
2646 struct dirstat_dir {
2647 struct dirstat_file *files;
2648 int alloc, nr, permille, cumulative;
2651 static long gather_dirstat(struct diff_options *opt, struct dirstat_dir *dir,
2652 unsigned long changed, const char *base, int baselen)
2654 unsigned long this_dir = 0;
2655 unsigned int sources = 0;
2656 const char *line_prefix = diff_line_prefix(opt);
2659 struct dirstat_file *f = dir->files;
2660 int namelen = strlen(f->name);
2664 if (namelen < baselen)
2666 if (memcmp(f->name, base, baselen))
2668 slash = strchr(f->name + baselen, '/');
2670 int newbaselen = slash + 1 - f->name;
2671 this = gather_dirstat(opt, dir, changed, f->name, newbaselen);
2683 * We don't report dirstat's for
2685 * - or cases where everything came from a single directory
2686 * under this directory (sources == 1).
2688 if (baselen && sources != 1) {
2690 int permille = this_dir * 1000 / changed;
2691 if (permille >= dir->permille) {
2692 fprintf(opt->file, "%s%4d.%01d%% %.*s\n", line_prefix,
2693 permille / 10, permille % 10, baselen, base);
2694 if (!dir->cumulative)
2702 static int dirstat_compare(const void *_a, const void *_b)
2704 const struct dirstat_file *a = _a;
2705 const struct dirstat_file *b = _b;
2706 return strcmp(a->name, b->name);
2709 static void show_dirstat(struct diff_options *options)
2712 unsigned long changed;
2713 struct dirstat_dir dir;
2714 struct diff_queue_struct *q = &diff_queued_diff;
2719 dir.permille = options->dirstat_permille;
2720 dir.cumulative = DIFF_OPT_TST(options, DIRSTAT_CUMULATIVE);
2723 for (i = 0; i < q->nr; i++) {
2724 struct diff_filepair *p = q->queue[i];
2726 unsigned long copied, added, damage;
2727 int content_changed;
2729 name = p->two->path ? p->two->path : p->one->path;
2731 if (p->one->oid_valid && p->two->oid_valid)
2732 content_changed = oidcmp(&p->one->oid, &p->two->oid);
2734 content_changed = 1;
2736 if (!content_changed) {
2738 * The SHA1 has not changed, so pre-/post-content is
2739 * identical. We can therefore skip looking at the
2740 * file contents altogether.
2746 if (DIFF_OPT_TST(options, DIRSTAT_BY_FILE)) {
2748 * In --dirstat-by-file mode, we don't really need to
2749 * look at the actual file contents at all.
2750 * The fact that the SHA1 changed is enough for us to
2751 * add this file to the list of results
2752 * (with each file contributing equal damage).
2758 if (DIFF_FILE_VALID(p->one) && DIFF_FILE_VALID(p->two)) {
2759 diff_populate_filespec(p->one, 0);
2760 diff_populate_filespec(p->two, 0);
2761 diffcore_count_changes(p->one, p->two, NULL, NULL,
2763 diff_free_filespec_data(p->one);
2764 diff_free_filespec_data(p->two);
2765 } else if (DIFF_FILE_VALID(p->one)) {
2766 diff_populate_filespec(p->one, CHECK_SIZE_ONLY);
2768 diff_free_filespec_data(p->one);
2769 } else if (DIFF_FILE_VALID(p->two)) {
2770 diff_populate_filespec(p->two, CHECK_SIZE_ONLY);
2772 added = p->two->size;
2773 diff_free_filespec_data(p->two);
2778 * Original minus copied is the removed material,
2779 * added is the new material. They are both damages
2780 * made to the preimage.
2781 * If the resulting damage is zero, we know that
2782 * diffcore_count_changes() considers the two entries to
2783 * be identical, but since content_changed is true, we
2784 * know that there must have been _some_ kind of change,
2785 * so we force all entries to have damage > 0.
2787 damage = (p->one->size - copied) + added;
2792 ALLOC_GROW(dir.files, dir.nr + 1, dir.alloc);
2793 dir.files[dir.nr].name = name;
2794 dir.files[dir.nr].changed = damage;
2799 /* This can happen even with many files, if everything was renames */
2803 /* Show all directories with more than x% of the changes */
2804 QSORT(dir.files, dir.nr, dirstat_compare);
2805 gather_dirstat(options, &dir, changed, "", 0);
2808 static void show_dirstat_by_line(struct diffstat_t *data, struct diff_options *options)
2811 unsigned long changed;
2812 struct dirstat_dir dir;
2820 dir.permille = options->dirstat_permille;
2821 dir.cumulative = DIFF_OPT_TST(options, DIRSTAT_CUMULATIVE);
2824 for (i = 0; i < data->nr; i++) {
2825 struct diffstat_file *file = data->files[i];
2826 unsigned long damage = file->added + file->deleted;
2827 if (file->is_binary)
2829 * binary files counts bytes, not lines. Must find some
2830 * way to normalize binary bytes vs. textual lines.
2831 * The following heuristic assumes that there are 64
2833 * This is stupid and ugly, but very cheap...
2835 damage = (damage + 63) / 64;
2836 ALLOC_GROW(dir.files, dir.nr + 1, dir.alloc);
2837 dir.files[dir.nr].name = file->name;
2838 dir.files[dir.nr].changed = damage;
2843 /* This can happen even with many files, if everything was renames */
2847 /* Show all directories with more than x% of the changes */
2848 QSORT(dir.files, dir.nr, dirstat_compare);
2849 gather_dirstat(options, &dir, changed, "", 0);
2852 static void free_diffstat_info(struct diffstat_t *diffstat)
2855 for (i = 0; i < diffstat->nr; i++) {
2856 struct diffstat_file *f = diffstat->files[i];
2857 if (f->name != f->print_name)
2858 free(f->print_name);
2863 free(diffstat->files);
2866 struct checkdiff_t {
2867 const char *filename;
2869 int conflict_marker_size;
2870 struct diff_options *o;
2875 static int is_conflict_marker(const char *line, int marker_size, unsigned long len)
2880 if (len < marker_size + 1)
2882 firstchar = line[0];
2883 switch (firstchar) {
2884 case '=': case '>': case '<': case '|':
2889 for (cnt = 1; cnt < marker_size; cnt++)
2890 if (line[cnt] != firstchar)
2892 /* line[1] thru line[marker_size-1] are same as firstchar */
2893 if (len < marker_size + 1 || !isspace(line[marker_size]))
2898 static void checkdiff_consume(void *priv, char *line, unsigned long len)
2900 struct checkdiff_t *data = priv;
2901 int marker_size = data->conflict_marker_size;
2902 const char *ws = diff_get_color(data->o->use_color, DIFF_WHITESPACE);
2903 const char *reset = diff_get_color(data->o->use_color, DIFF_RESET);
2904 const char *set = diff_get_color(data->o->use_color, DIFF_FILE_NEW);
2906 const char *line_prefix;
2909 line_prefix = diff_line_prefix(data->o);
2911 if (line[0] == '+') {
2914 if (is_conflict_marker(line + 1, marker_size, len - 1)) {
2916 fprintf(data->o->file,
2917 "%s%s:%d: leftover conflict marker\n",
2918 line_prefix, data->filename, data->lineno);
2920 bad = ws_check(line + 1, len - 1, data->ws_rule);
2923 data->status |= bad;
2924 err = whitespace_error_string(bad);
2925 fprintf(data->o->file, "%s%s:%d: %s.\n",
2926 line_prefix, data->filename, data->lineno, err);
2928 emit_line(data->o, set, reset, line, 1);
2929 ws_check_emit(line + 1, len - 1, data->ws_rule,
2930 data->o->file, set, reset, ws);
2931 } else if (line[0] == ' ') {
2933 } else if (line[0] == '@') {
2934 char *plus = strchr(line, '+');
2936 data->lineno = strtol(plus, NULL, 10) - 1;
2938 die("invalid diff");
2942 static unsigned char *deflate_it(char *data,
2944 unsigned long *result_size)
2947 unsigned char *deflated;
2950 git_deflate_init(&stream, zlib_compression_level);
2951 bound = git_deflate_bound(&stream, size);
2952 deflated = xmalloc(bound);
2953 stream.next_out = deflated;
2954 stream.avail_out = bound;
2956 stream.next_in = (unsigned char *)data;
2957 stream.avail_in = size;
2958 while (git_deflate(&stream, Z_FINISH) == Z_OK)
2960 git_deflate_end(&stream);
2961 *result_size = stream.total_out;
2965 static void emit_binary_diff_body(struct diff_options *o,
2966 mmfile_t *one, mmfile_t *two)
2972 unsigned long orig_size;
2973 unsigned long delta_size;
2974 unsigned long deflate_size;
2975 unsigned long data_size;
2977 /* We could do deflated delta, or we could do just deflated two,
2978 * whichever is smaller.
2981 deflated = deflate_it(two->ptr, two->size, &deflate_size);
2982 if (one->size && two->size) {
2983 delta = diff_delta(one->ptr, one->size,
2984 two->ptr, two->size,
2985 &delta_size, deflate_size);
2987 void *to_free = delta;
2988 orig_size = delta_size;
2989 delta = deflate_it(delta, delta_size, &delta_size);
2994 if (delta && delta_size < deflate_size) {
2995 char *s = xstrfmt("%lu", orig_size);
2996 emit_diff_symbol(o, DIFF_SYMBOL_BINARY_DIFF_HEADER_DELTA,
3001 data_size = delta_size;
3003 char *s = xstrfmt("%lu", two->size);
3004 emit_diff_symbol(o, DIFF_SYMBOL_BINARY_DIFF_HEADER_LITERAL,
3009 data_size = deflate_size;
3012 /* emit data encoded in base85 */
3016 int bytes = (52 < data_size) ? 52 : data_size;
3020 line[0] = bytes + 'A' - 1;
3022 line[0] = bytes - 26 + 'a' - 1;
3023 encode_85(line + 1, cp, bytes);
3024 cp = (char *) cp + bytes;
3030 emit_diff_symbol(o, DIFF_SYMBOL_BINARY_DIFF_BODY,
3033 emit_diff_symbol(o, DIFF_SYMBOL_BINARY_DIFF_FOOTER, NULL, 0, 0);
3037 static void emit_binary_diff(struct diff_options *o,
3038 mmfile_t *one, mmfile_t *two)
3040 emit_diff_symbol(o, DIFF_SYMBOL_BINARY_DIFF_HEADER, NULL, 0, 0);
3041 emit_binary_diff_body(o, one, two);
3042 emit_binary_diff_body(o, two, one);
3045 int diff_filespec_is_binary(struct diff_filespec *one)
3047 if (one->is_binary == -1) {
3048 diff_filespec_load_driver(one);
3049 if (one->driver->binary != -1)
3050 one->is_binary = one->driver->binary;
3052 if (!one->data && DIFF_FILE_VALID(one))
3053 diff_populate_filespec(one, CHECK_BINARY);
3054 if (one->is_binary == -1 && one->data)
3055 one->is_binary = buffer_is_binary(one->data,
3057 if (one->is_binary == -1)
3061 return one->is_binary;
3064 static const struct userdiff_funcname *diff_funcname_pattern(struct diff_filespec *one)
3066 diff_filespec_load_driver(one);
3067 return one->driver->funcname.pattern ? &one->driver->funcname : NULL;
3070 void diff_set_mnemonic_prefix(struct diff_options *options, const char *a, const char *b)
3072 if (!options->a_prefix)
3073 options->a_prefix = a;
3074 if (!options->b_prefix)
3075 options->b_prefix = b;
3078 struct userdiff_driver *get_textconv(struct diff_filespec *one)
3080 if (!DIFF_FILE_VALID(one))
3083 diff_filespec_load_driver(one);
3084 return userdiff_get_textconv(one->driver);
3087 static void builtin_diff(const char *name_a,
3089 struct diff_filespec *one,
3090 struct diff_filespec *two,
3091 const char *xfrm_msg,
3092 int must_show_header,
3093 struct diff_options *o,
3094 int complete_rewrite)
3098 char *a_one, *b_two;
3099 const char *meta = diff_get_color_opt(o, DIFF_METAINFO);
3100 const char *reset = diff_get_color_opt(o, DIFF_RESET);
3101 const char *a_prefix, *b_prefix;
3102 struct userdiff_driver *textconv_one = NULL;
3103 struct userdiff_driver *textconv_two = NULL;
3104 struct strbuf header = STRBUF_INIT;
3105 const char *line_prefix = diff_line_prefix(o);
3107 diff_set_mnemonic_prefix(o, "a/", "b/");
3108 if (DIFF_OPT_TST(o, REVERSE_DIFF)) {
3109 a_prefix = o->b_prefix;
3110 b_prefix = o->a_prefix;
3112 a_prefix = o->a_prefix;
3113 b_prefix = o->b_prefix;
3116 if (o->submodule_format == DIFF_SUBMODULE_LOG &&
3117 (!one->mode || S_ISGITLINK(one->mode)) &&
3118 (!two->mode || S_ISGITLINK(two->mode))) {
3119 show_submodule_summary(o, one->path ? one->path : two->path,
3120 &one->oid, &two->oid,
3121 two->dirty_submodule);
3123 } else if (o->submodule_format == DIFF_SUBMODULE_INLINE_DIFF &&
3124 (!one->mode || S_ISGITLINK(one->mode)) &&
3125 (!two->mode || S_ISGITLINK(two->mode))) {
3126 show_submodule_inline_diff(o, one->path ? one->path : two->path,
3127 &one->oid, &two->oid,
3128 two->dirty_submodule);
3132 if (DIFF_OPT_TST(o, ALLOW_TEXTCONV)) {
3133 textconv_one = get_textconv(one);
3134 textconv_two = get_textconv(two);
3137 /* Never use a non-valid filename anywhere if at all possible */
3138 name_a = DIFF_FILE_VALID(one) ? name_a : name_b;
3139 name_b = DIFF_FILE_VALID(two) ? name_b : name_a;
3141 a_one = quote_two(a_prefix, name_a + (*name_a == '/'));
3142 b_two = quote_two(b_prefix, name_b + (*name_b == '/'));
3143 lbl[0] = DIFF_FILE_VALID(one) ? a_one : "/dev/null";
3144 lbl[1] = DIFF_FILE_VALID(two) ? b_two : "/dev/null";
3145 strbuf_addf(&header, "%s%sdiff --git %s %s%s\n", line_prefix, meta, a_one, b_two, reset);
3146 if (lbl[0][0] == '/') {
3148 strbuf_addf(&header, "%s%snew file mode %06o%s\n", line_prefix, meta, two->mode, reset);
3150 strbuf_addstr(&header, xfrm_msg);
3151 must_show_header = 1;
3153 else if (lbl[1][0] == '/') {
3154 strbuf_addf(&header, "%s%sdeleted file mode %06o%s\n", line_prefix, meta, one->mode, reset);
3156 strbuf_addstr(&header, xfrm_msg);
3157 must_show_header = 1;
3160 if (one->mode != two->mode) {
3161 strbuf_addf(&header, "%s%sold mode %06o%s\n", line_prefix, meta, one->mode, reset);
3162 strbuf_addf(&header, "%s%snew mode %06o%s\n", line_prefix, meta, two->mode, reset);
3163 must_show_header = 1;
3166 strbuf_addstr(&header, xfrm_msg);
3169 * we do not run diff between different kind
3172 if ((one->mode ^ two->mode) & S_IFMT)
3173 goto free_ab_and_return;
3174 if (complete_rewrite &&
3175 (textconv_one || !diff_filespec_is_binary(one)) &&
3176 (textconv_two || !diff_filespec_is_binary(two))) {
3177 emit_diff_symbol(o, DIFF_SYMBOL_HEADER,
3178 header.buf, header.len, 0);
3179 strbuf_reset(&header);
3180 emit_rewrite_diff(name_a, name_b, one, two,
3181 textconv_one, textconv_two, o);
3182 o->found_changes = 1;
3183 goto free_ab_and_return;
3187 if (o->irreversible_delete && lbl[1][0] == '/') {
3188 emit_diff_symbol(o, DIFF_SYMBOL_HEADER, header.buf,
3190 strbuf_reset(&header);
3191 goto free_ab_and_return;
3192 } else if (!DIFF_OPT_TST(o, TEXT) &&
3193 ( (!textconv_one && diff_filespec_is_binary(one)) ||
3194 (!textconv_two && diff_filespec_is_binary(two)) )) {
3195 struct strbuf sb = STRBUF_INIT;
3196 if (!one->data && !two->data &&
3197 S_ISREG(one->mode) && S_ISREG(two->mode) &&
3198 !DIFF_OPT_TST(o, BINARY)) {
3199 if (!oidcmp(&one->oid, &two->oid)) {
3200 if (must_show_header)
3201 emit_diff_symbol(o, DIFF_SYMBOL_HEADER,
3202 header.buf, header.len,
3204 goto free_ab_and_return;
3206 emit_diff_symbol(o, DIFF_SYMBOL_HEADER,
3207 header.buf, header.len, 0);
3208 strbuf_addf(&sb, "%sBinary files %s and %s differ\n",
3209 diff_line_prefix(o), lbl[0], lbl[1]);
3210 emit_diff_symbol(o, DIFF_SYMBOL_BINARY_FILES,
3212 strbuf_release(&sb);
3213 goto free_ab_and_return;
3215 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
3216 die("unable to read files to diff");
3217 /* Quite common confusing case */
3218 if (mf1.size == mf2.size &&
3219 !memcmp(mf1.ptr, mf2.ptr, mf1.size)) {
3220 if (must_show_header)
3221 emit_diff_symbol(o, DIFF_SYMBOL_HEADER,
3222 header.buf, header.len, 0);
3223 goto free_ab_and_return;
3225 emit_diff_symbol(o, DIFF_SYMBOL_HEADER, header.buf, header.len, 0);
3226 strbuf_reset(&header);
3227 if (DIFF_OPT_TST(o, BINARY))
3228 emit_binary_diff(o, &mf1, &mf2);
3230 strbuf_addf(&sb, "%sBinary files %s and %s differ\n",
3231 diff_line_prefix(o), lbl[0], lbl[1]);
3232 emit_diff_symbol(o, DIFF_SYMBOL_BINARY_FILES,
3234 strbuf_release(&sb);
3236 o->found_changes = 1;
3238 /* Crazy xdl interfaces.. */
3239 const char *diffopts = getenv("GIT_DIFF_OPTS");
3243 struct emit_callback ecbdata;
3244 const struct userdiff_funcname *pe;
3246 if (must_show_header) {
3247 emit_diff_symbol(o, DIFF_SYMBOL_HEADER,
3248 header.buf, header.len, 0);
3249 strbuf_reset(&header);
3252 mf1.size = fill_textconv(textconv_one, one, &mf1.ptr);
3253 mf2.size = fill_textconv(textconv_two, two, &mf2.ptr);
3255 pe = diff_funcname_pattern(one);
3257 pe = diff_funcname_pattern(two);
3259 memset(&xpp, 0, sizeof(xpp));
3260 memset(&xecfg, 0, sizeof(xecfg));
3261 memset(&ecbdata, 0, sizeof(ecbdata));
3262 ecbdata.label_path = lbl;
3263 ecbdata.color_diff = want_color(o->use_color);
3264 ecbdata.ws_rule = whitespace_rule(name_b);
3265 if (ecbdata.ws_rule & WS_BLANK_AT_EOF)
3266 check_blank_at_eof(&mf1, &mf2, &ecbdata);
3268 ecbdata.header = header.len ? &header : NULL;
3269 xpp.flags = o->xdl_opts;
3270 xecfg.ctxlen = o->context;
3271 xecfg.interhunkctxlen = o->interhunkcontext;
3272 xecfg.flags = XDL_EMIT_FUNCNAMES;
3273 if (DIFF_OPT_TST(o, FUNCCONTEXT))
3274 xecfg.flags |= XDL_EMIT_FUNCCONTEXT;
3276 xdiff_set_find_func(&xecfg, pe->pattern, pe->cflags);
3279 else if (skip_prefix(diffopts, "--unified=", &v))
3280 xecfg.ctxlen = strtoul(v, NULL, 10);
3281 else if (skip_prefix(diffopts, "-u", &v))
3282 xecfg.ctxlen = strtoul(v, NULL, 10);
3284 init_diff_words_data(&ecbdata, o, one, two);
3285 if (xdi_diff_outf(&mf1, &mf2, fn_out_consume, &ecbdata,
3287 die("unable to generate diff for %s", one->path);
3289 free_diff_words_data(&ecbdata);
3294 xdiff_clear_find_func(&xecfg);
3298 strbuf_release(&header);
3299 diff_free_filespec_data(one);
3300 diff_free_filespec_data(two);
3306 static void builtin_diffstat(const char *name_a, const char *name_b,
3307 struct diff_filespec *one,
3308 struct diff_filespec *two,
3309 struct diffstat_t *diffstat,
3310 struct diff_options *o,
3311 struct diff_filepair *p)
3314 struct diffstat_file *data;
3316 int complete_rewrite = 0;
3318 if (!DIFF_PAIR_UNMERGED(p)) {
3319 if (p->status == DIFF_STATUS_MODIFIED && p->score)
3320 complete_rewrite = 1;
3323 data = diffstat_add(diffstat, name_a, name_b);
3324 data->is_interesting = p->status != DIFF_STATUS_UNKNOWN;
3327 data->is_unmerged = 1;
3331 same_contents = !oidcmp(&one->oid, &two->oid);
3333 if (diff_filespec_is_binary(one) || diff_filespec_is_binary(two)) {
3334 data->is_binary = 1;
3335 if (same_contents) {
3339 data->added = diff_filespec_size(two);
3340 data->deleted = diff_filespec_size(one);
3344 else if (complete_rewrite) {
3345 diff_populate_filespec(one, 0);
3346 diff_populate_filespec(two, 0);
3347 data->deleted = count_lines(one->data, one->size);
3348 data->added = count_lines(two->data, two->size);
3351 else if (!same_contents) {
3352 /* Crazy xdl interfaces.. */
3356 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
3357 die("unable to read files to diff");
3359 memset(&xpp, 0, sizeof(xpp));
3360 memset(&xecfg, 0, sizeof(xecfg));
3361 xpp.flags = o->xdl_opts;
3362 xecfg.ctxlen = o->context;
3363 xecfg.interhunkctxlen = o->interhunkcontext;
3364 if (xdi_diff_outf(&mf1, &mf2, diffstat_consume, diffstat,
3366 die("unable to generate diffstat for %s", one->path);
3369 diff_free_filespec_data(one);
3370 diff_free_filespec_data(two);
3373 static void builtin_checkdiff(const char *name_a, const char *name_b,
3374 const char *attr_path,
3375 struct diff_filespec *one,
3376 struct diff_filespec *two,
3377 struct diff_options *o)
3380 struct checkdiff_t data;
3385 memset(&data, 0, sizeof(data));
3386 data.filename = name_b ? name_b : name_a;
3389 data.ws_rule = whitespace_rule(attr_path);
3390 data.conflict_marker_size = ll_merge_marker_size(attr_path);
3392 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
3393 die("unable to read files to diff");
3396 * All the other codepaths check both sides, but not checking
3397 * the "old" side here is deliberate. We are checking the newly
3398 * introduced changes, and as long as the "new" side is text, we
3399 * can and should check what it introduces.
3401 if (diff_filespec_is_binary(two))
3402 goto free_and_return;
3404 /* Crazy xdl interfaces.. */
3408 memset(&xpp, 0, sizeof(xpp));
3409 memset(&xecfg, 0, sizeof(xecfg));
3410 xecfg.ctxlen = 1; /* at least one context line */
3412 if (xdi_diff_outf(&mf1, &mf2, checkdiff_consume, &data,
3414 die("unable to generate checkdiff for %s", one->path);
3416 if (data.ws_rule & WS_BLANK_AT_EOF) {
3417 struct emit_callback ecbdata;
3420 ecbdata.ws_rule = data.ws_rule;
3421 check_blank_at_eof(&mf1, &mf2, &ecbdata);
3422 blank_at_eof = ecbdata.blank_at_eof_in_postimage;
3427 err = whitespace_error_string(WS_BLANK_AT_EOF);
3428 fprintf(o->file, "%s:%d: %s.\n",
3429 data.filename, blank_at_eof, err);
3430 data.status = 1; /* report errors */
3435 diff_free_filespec_data(one);
3436 diff_free_filespec_data(two);
3438 DIFF_OPT_SET(o, CHECK_FAILED);
3441 struct diff_filespec *alloc_filespec(const char *path)
3443 struct diff_filespec *spec;
3445 FLEXPTR_ALLOC_STR(spec, path, path);
3447 spec->is_binary = -1;
3451 void free_filespec(struct diff_filespec *spec)
3453 if (!--spec->count) {
3454 diff_free_filespec_data(spec);
3459 void fill_filespec(struct diff_filespec *spec, const struct object_id *oid,
3460 int oid_valid, unsigned short mode)
3463 spec->mode = canon_mode(mode);
3464 oidcpy(&spec->oid, oid);
3465 spec->oid_valid = oid_valid;
3470 * Given a name and sha1 pair, if the index tells us the file in
3471 * the work tree has that object contents, return true, so that
3472 * prepare_temp_file() does not have to inflate and extract.
3474 static int reuse_worktree_file(const char *name, const struct object_id *oid, int want_file)
3476 const struct cache_entry *ce;
3481 * We do not read the cache ourselves here, because the
3482 * benchmark with my previous version that always reads cache
3483 * shows that it makes things worse for diff-tree comparing
3484 * two linux-2.6 kernel trees in an already checked out work
3485 * tree. This is because most diff-tree comparisons deal with
3486 * only a small number of files, while reading the cache is
3487 * expensive for a large project, and its cost outweighs the
3488 * savings we get by not inflating the object to a temporary
3489 * file. Practically, this code only helps when we are used
3490 * by diff-cache --cached, which does read the cache before
3496 /* We want to avoid the working directory if our caller
3497 * doesn't need the data in a normal file, this system
3498 * is rather slow with its stat/open/mmap/close syscalls,
3499 * and the object is contained in a pack file. The pack
3500 * is probably already open and will be faster to obtain
3501 * the data through than the working directory. Loose
3502 * objects however would tend to be slower as they need
3503 * to be individually opened and inflated.
3505 if (!FAST_WORKING_DIRECTORY && !want_file && has_sha1_pack(oid->hash))
3509 * Similarly, if we'd have to convert the file contents anyway, that
3510 * makes the optimization not worthwhile.
3512 if (!want_file && would_convert_to_git(&the_index, name))
3516 pos = cache_name_pos(name, len);
3519 ce = active_cache[pos];
3522 * This is not the sha1 we are looking for, or
3523 * unreusable because it is not a regular file.
3525 if (oidcmp(oid, &ce->oid) || !S_ISREG(ce->ce_mode))
3529 * If ce is marked as "assume unchanged", there is no
3530 * guarantee that work tree matches what we are looking for.
3532 if ((ce->ce_flags & CE_VALID) || ce_skip_worktree(ce))
3536 * If ce matches the file in the work tree, we can reuse it.
3538 if (ce_uptodate(ce) ||
3539 (!lstat(name, &st) && !ce_match_stat(ce, &st, 0)))
3545 static int diff_populate_gitlink(struct diff_filespec *s, int size_only)
3547 struct strbuf buf = STRBUF_INIT;
3550 /* Are we looking at the work tree? */
3551 if (s->dirty_submodule)
3554 strbuf_addf(&buf, "Subproject commit %s%s\n",
3555 oid_to_hex(&s->oid), dirty);
3559 strbuf_release(&buf);
3561 s->data = strbuf_detach(&buf, NULL);
3568 * While doing rename detection and pickaxe operation, we may need to
3569 * grab the data for the blob (or file) for our own in-core comparison.
3570 * diff_filespec has data and size fields for this purpose.
3572 int diff_populate_filespec(struct diff_filespec *s, unsigned int flags)
3574 int size_only = flags & CHECK_SIZE_ONLY;
3577 * demote FAIL to WARN to allow inspecting the situation
3578 * instead of refusing.
3580 enum safe_crlf crlf_warn = (safe_crlf == SAFE_CRLF_FAIL
3584 if (!DIFF_FILE_VALID(s))
3585 die("internal error: asking to populate invalid file.");
3586 if (S_ISDIR(s->mode))
3592 if (size_only && 0 < s->size)
3595 if (S_ISGITLINK(s->mode))
3596 return diff_populate_gitlink(s, size_only);
3598 if (!s->oid_valid ||
3599 reuse_worktree_file(s->path, &s->oid, 0)) {
3600 struct strbuf buf = STRBUF_INIT;
3604 if (lstat(s->path, &st) < 0) {
3605 if (errno == ENOENT) {
3609 s->data = (char *)"";
3614 s->size = xsize_t(st.st_size);
3617 if (S_ISLNK(st.st_mode)) {
3618 struct strbuf sb = STRBUF_INIT;
3620 if (strbuf_readlink(&sb, s->path, s->size))
3623 s->data = strbuf_detach(&sb, NULL);
3629 * Even if the caller would be happy with getting
3630 * only the size, we cannot return early at this
3631 * point if the path requires us to run the content
3634 if (size_only && !would_convert_to_git(&the_index, s->path))
3638 * Note: this check uses xsize_t(st.st_size) that may
3639 * not be the true size of the blob after it goes
3640 * through convert_to_git(). This may not strictly be
3641 * correct, but the whole point of big_file_threshold
3642 * and is_binary check being that we want to avoid
3643 * opening the file and inspecting the contents, this
3646 if ((flags & CHECK_BINARY) &&
3647 s->size > big_file_threshold && s->is_binary == -1) {
3651 fd = open(s->path, O_RDONLY);
3654 s->data = xmmap(NULL, s->size, PROT_READ, MAP_PRIVATE, fd, 0);
3656 s->should_munmap = 1;
3659 * Convert from working tree format to canonical git format
3661 if (convert_to_git(&the_index, s->path, s->data, s->size, &buf, crlf_warn)) {
3663 munmap(s->data, s->size);
3664 s->should_munmap = 0;
3665 s->data = strbuf_detach(&buf, &size);
3671 enum object_type type;
3672 if (size_only || (flags & CHECK_BINARY)) {
3673 type = sha1_object_info(s->oid.hash, &s->size);
3675 die("unable to read %s",
3676 oid_to_hex(&s->oid));
3679 if (s->size > big_file_threshold && s->is_binary == -1) {
3684 s->data = read_sha1_file(s->oid.hash, &type, &s->size);
3686 die("unable to read %s", oid_to_hex(&s->oid));
3692 void diff_free_filespec_blob(struct diff_filespec *s)
3696 else if (s->should_munmap)
3697 munmap(s->data, s->size);
3699 if (s->should_free || s->should_munmap) {
3700 s->should_free = s->should_munmap = 0;
3705 void diff_free_filespec_data(struct diff_filespec *s)
3707 diff_free_filespec_blob(s);
3708 FREE_AND_NULL(s->cnt_data);
3711 static void prep_temp_blob(const char *path, struct diff_tempfile *temp,
3714 const struct object_id *oid,
3718 struct strbuf buf = STRBUF_INIT;
3719 struct strbuf template = STRBUF_INIT;
3720 char *path_dup = xstrdup(path);
3721 const char *base = basename(path_dup);
3723 /* Generate "XXXXXX_basename.ext" */
3724 strbuf_addstr(&template, "XXXXXX_");
3725 strbuf_addstr(&template, base);
3727 fd = mks_tempfile_ts(&temp->tempfile, template.buf, strlen(base) + 1);
3729 die_errno("unable to create temp-file");
3730 if (convert_to_working_tree(path,
3731 (const char *)blob, (size_t)size, &buf)) {
3735 if (write_in_full(fd, blob, size) != size)
3736 die_errno("unable to write temp-file");
3737 close_tempfile(&temp->tempfile);
3738 temp->name = get_tempfile_path(&temp->tempfile);
3739 oid_to_hex_r(temp->hex, oid);
3740 xsnprintf(temp->mode, sizeof(temp->mode), "%06o", mode);
3741 strbuf_release(&buf);
3742 strbuf_release(&template);
3746 static struct diff_tempfile *prepare_temp_file(const char *name,
3747 struct diff_filespec *one)
3749 struct diff_tempfile *temp = claim_diff_tempfile();
3751 if (!DIFF_FILE_VALID(one)) {
3753 /* A '-' entry produces this for file-2, and
3754 * a '+' entry produces this for file-1.
3756 temp->name = "/dev/null";
3757 xsnprintf(temp->hex, sizeof(temp->hex), ".");
3758 xsnprintf(temp->mode, sizeof(temp->mode), ".");
3762 if (!S_ISGITLINK(one->mode) &&
3764 reuse_worktree_file(name, &one->oid, 1))) {
3766 if (lstat(name, &st) < 0) {
3767 if (errno == ENOENT)
3768 goto not_a_valid_file;
3769 die_errno("stat(%s)", name);
3771 if (S_ISLNK(st.st_mode)) {
3772 struct strbuf sb = STRBUF_INIT;
3773 if (strbuf_readlink(&sb, name, st.st_size) < 0)
3774 die_errno("readlink(%s)", name);
3775 prep_temp_blob(name, temp, sb.buf, sb.len,
3777 &one->oid : &null_oid),
3779 one->mode : S_IFLNK));
3780 strbuf_release(&sb);
3783 /* we can borrow from the file in the work tree */
3785 if (!one->oid_valid)
3786 oid_to_hex_r(temp->hex, &null_oid);
3788 oid_to_hex_r(temp->hex, &one->oid);
3789 /* Even though we may sometimes borrow the
3790 * contents from the work tree, we always want
3791 * one->mode. mode is trustworthy even when
3792 * !(one->oid_valid), as long as
3793 * DIFF_FILE_VALID(one).
3795 xsnprintf(temp->mode, sizeof(temp->mode), "%06o", one->mode);
3800 if (diff_populate_filespec(one, 0))
3801 die("cannot read data blob for %s", one->path);
3802 prep_temp_blob(name, temp, one->data, one->size,
3803 &one->oid, one->mode);
3808 static void add_external_diff_name(struct argv_array *argv,
3810 struct diff_filespec *df)
3812 struct diff_tempfile *temp = prepare_temp_file(name, df);
3813 argv_array_push(argv, temp->name);
3814 argv_array_push(argv, temp->hex);
3815 argv_array_push(argv, temp->mode);
3818 /* An external diff command takes:
3820 * diff-cmd name infile1 infile1-sha1 infile1-mode \
3821 * infile2 infile2-sha1 infile2-mode [ rename-to ]
3824 static void run_external_diff(const char *pgm,
3827 struct diff_filespec *one,
3828 struct diff_filespec *two,
3829 const char *xfrm_msg,
3830 int complete_rewrite,
3831 struct diff_options *o)
3833 struct argv_array argv = ARGV_ARRAY_INIT;
3834 struct argv_array env = ARGV_ARRAY_INIT;
3835 struct diff_queue_struct *q = &diff_queued_diff;
3837 argv_array_push(&argv, pgm);
3838 argv_array_push(&argv, name);
3841 add_external_diff_name(&argv, name, one);
3843 add_external_diff_name(&argv, name, two);
3845 add_external_diff_name(&argv, other, two);
3846 argv_array_push(&argv, other);
3847 argv_array_push(&argv, xfrm_msg);
3851 argv_array_pushf(&env, "GIT_DIFF_PATH_COUNTER=%d", ++o->diff_path_counter);
3852 argv_array_pushf(&env, "GIT_DIFF_PATH_TOTAL=%d", q->nr);
3854 if (run_command_v_opt_cd_env(argv.argv, RUN_USING_SHELL, NULL, env.argv))
3855 die(_("external diff died, stopping at %s"), name);
3858 argv_array_clear(&argv);
3859 argv_array_clear(&env);
3862 static int similarity_index(struct diff_filepair *p)
3864 return p->score * 100 / MAX_SCORE;
3867 static const char *diff_abbrev_oid(const struct object_id *oid, int abbrev)
3869 if (startup_info->have_repository)
3870 return find_unique_abbrev(oid->hash, abbrev);
3872 char *hex = oid_to_hex(oid);
3874 abbrev = FALLBACK_DEFAULT_ABBREV;
3875 if (abbrev > GIT_SHA1_HEXSZ)
3876 die("BUG: oid abbreviation out of range: %d", abbrev);
3883 static void fill_metainfo(struct strbuf *msg,
3886 struct diff_filespec *one,
3887 struct diff_filespec *two,
3888 struct diff_options *o,
3889 struct diff_filepair *p,
3890 int *must_show_header,
3893 const char *set = diff_get_color(use_color, DIFF_METAINFO);
3894 const char *reset = diff_get_color(use_color, DIFF_RESET);
3895 const char *line_prefix = diff_line_prefix(o);
3897 *must_show_header = 1;
3898 strbuf_init(msg, PATH_MAX * 2 + 300);
3899 switch (p->status) {
3900 case DIFF_STATUS_COPIED:
3901 strbuf_addf(msg, "%s%ssimilarity index %d%%",
3902 line_prefix, set, similarity_index(p));
3903 strbuf_addf(msg, "%s\n%s%scopy from ",
3904 reset, line_prefix, set);
3905 quote_c_style(name, msg, NULL, 0);
3906 strbuf_addf(msg, "%s\n%s%scopy to ", reset, line_prefix, set);
3907 quote_c_style(other, msg, NULL, 0);
3908 strbuf_addf(msg, "%s\n", reset);
3910 case DIFF_STATUS_RENAMED:
3911 strbuf_addf(msg, "%s%ssimilarity index %d%%",
3912 line_prefix, set, similarity_index(p));
3913 strbuf_addf(msg, "%s\n%s%srename from ",
3914 reset, line_prefix, set);
3915 quote_c_style(name, msg, NULL, 0);
3916 strbuf_addf(msg, "%s\n%s%srename to ",
3917 reset, line_prefix, set);
3918 quote_c_style(other, msg, NULL, 0);
3919 strbuf_addf(msg, "%s\n", reset);
3921 case DIFF_STATUS_MODIFIED:
3923 strbuf_addf(msg, "%s%sdissimilarity index %d%%%s\n",
3925 set, similarity_index(p), reset);
3930 *must_show_header = 0;
3932 if (one && two && oidcmp(&one->oid, &two->oid)) {
3933 int abbrev = DIFF_OPT_TST(o, FULL_INDEX) ? 40 : DEFAULT_ABBREV;
3935 if (DIFF_OPT_TST(o, BINARY)) {
3937 if ((!fill_mmfile(&mf, one) && diff_filespec_is_binary(one)) ||
3938 (!fill_mmfile(&mf, two) && diff_filespec_is_binary(two)))
3941 strbuf_addf(msg, "%s%sindex %s..%s", line_prefix, set,
3942 diff_abbrev_oid(&one->oid, abbrev),
3943 diff_abbrev_oid(&two->oid, abbrev));
3944 if (one->mode == two->mode)
3945 strbuf_addf(msg, " %06o", one->mode);
3946 strbuf_addf(msg, "%s\n", reset);
3950 static void run_diff_cmd(const char *pgm,
3953 const char *attr_path,
3954 struct diff_filespec *one,
3955 struct diff_filespec *two,
3957 struct diff_options *o,
3958 struct diff_filepair *p)
3960 const char *xfrm_msg = NULL;
3961 int complete_rewrite = (p->status == DIFF_STATUS_MODIFIED) && p->score;
3962 int must_show_header = 0;
3965 if (DIFF_OPT_TST(o, ALLOW_EXTERNAL)) {
3966 struct userdiff_driver *drv = userdiff_find_by_path(attr_path);
3967 if (drv && drv->external)
3968 pgm = drv->external;
3973 * don't use colors when the header is intended for an
3974 * external diff driver
3976 fill_metainfo(msg, name, other, one, two, o, p,
3978 want_color(o->use_color) && !pgm);
3979 xfrm_msg = msg->len ? msg->buf : NULL;
3983 run_external_diff(pgm, name, other, one, two, xfrm_msg,
3984 complete_rewrite, o);
3988 builtin_diff(name, other ? other : name,
3989 one, two, xfrm_msg, must_show_header,
3990 o, complete_rewrite);
3992 fprintf(o->file, "* Unmerged path %s\n", name);
3995 static void diff_fill_oid_info(struct diff_filespec *one)
3997 if (DIFF_FILE_VALID(one)) {
3998 if (!one->oid_valid) {
4000 if (one->is_stdin) {
4004 if (lstat(one->path, &st) < 0)
4005 die_errno("stat '%s'", one->path);
4006 if (index_path(one->oid.hash, one->path, &st, 0))
4007 die("cannot hash %s", one->path);
4014 static void strip_prefix(int prefix_length, const char **namep, const char **otherp)
4016 /* Strip the prefix but do not molest /dev/null and absolute paths */
4017 if (*namep && **namep != '/') {
4018 *namep += prefix_length;
4022 if (*otherp && **otherp != '/') {
4023 *otherp += prefix_length;
4024 if (**otherp == '/')
4029 static void run_diff(struct diff_filepair *p, struct diff_options *o)
4031 const char *pgm = external_diff();
4033 struct diff_filespec *one = p->one;
4034 struct diff_filespec *two = p->two;
4037 const char *attr_path;
4040 other = (strcmp(name, two->path) ? two->path : NULL);
4042 if (o->prefix_length)
4043 strip_prefix(o->prefix_length, &name, &other);
4045 if (!DIFF_OPT_TST(o, ALLOW_EXTERNAL))
4048 if (DIFF_PAIR_UNMERGED(p)) {
4049 run_diff_cmd(pgm, name, NULL, attr_path,
4050 NULL, NULL, NULL, o, p);
4054 diff_fill_oid_info(one);
4055 diff_fill_oid_info(two);
4058 DIFF_FILE_VALID(one) && DIFF_FILE_VALID(two) &&
4059 (S_IFMT & one->mode) != (S_IFMT & two->mode)) {
4061 * a filepair that changes between file and symlink
4062 * needs to be split into deletion and creation.
4064 struct diff_filespec *null = alloc_filespec(two->path);
4065 run_diff_cmd(NULL, name, other, attr_path,
4066 one, null, &msg, o, p);
4068 strbuf_release(&msg);
4070 null = alloc_filespec(one->path);
4071 run_diff_cmd(NULL, name, other, attr_path,
4072 null, two, &msg, o, p);
4076 run_diff_cmd(pgm, name, other, attr_path,
4077 one, two, &msg, o, p);
4079 strbuf_release(&msg);
4082 static void run_diffstat(struct diff_filepair *p, struct diff_options *o,
4083 struct diffstat_t *diffstat)
4088 if (DIFF_PAIR_UNMERGED(p)) {
4090 builtin_diffstat(p->one->path, NULL, NULL, NULL, diffstat, o, p);
4094 name = p->one->path;
4095 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
4097 if (o->prefix_length)
4098 strip_prefix(o->prefix_length, &name, &other);
4100 diff_fill_oid_info(p->one);
4101 diff_fill_oid_info(p->two);
4103 builtin_diffstat(name, other, p->one, p->two, diffstat, o, p);
4106 static void run_checkdiff(struct diff_filepair *p, struct diff_options *o)
4110 const char *attr_path;
4112 if (DIFF_PAIR_UNMERGED(p)) {
4117 name = p->one->path;
4118 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
4119 attr_path = other ? other : name;
4121 if (o->prefix_length)
4122 strip_prefix(o->prefix_length, &name, &other);
4124 diff_fill_oid_info(p->one);
4125 diff_fill_oid_info(p->two);
4127 builtin_checkdiff(name, other, attr_path, p->one, p->two, o);
4130 void diff_setup(struct diff_options *options)
4132 memcpy(options, &default_diff_options, sizeof(*options));
4134 options->file = stdout;
4136 options->abbrev = DEFAULT_ABBREV;
4137 options->line_termination = '\n';
4138 options->break_opt = -1;
4139 options->rename_limit = -1;
4140 options->dirstat_permille = diff_dirstat_permille_default;
4141 options->context = diff_context_default;
4142 options->interhunkcontext = diff_interhunk_context_default;
4143 options->ws_error_highlight = ws_error_highlight_default;
4144 DIFF_OPT_SET(options, RENAME_EMPTY);
4146 /* pathchange left =NULL by default */
4147 options->change = diff_change;
4148 options->add_remove = diff_addremove;
4149 options->use_color = diff_use_color_default;
4150 options->detect_rename = diff_detect_rename_default;
4151 options->xdl_opts |= diff_algorithm;
4152 if (diff_indent_heuristic)
4153 DIFF_XDL_SET(options, INDENT_HEURISTIC);
4155 options->orderfile = diff_order_file_cfg;
4157 if (diff_no_prefix) {
4158 options->a_prefix = options->b_prefix = "";
4159 } else if (!diff_mnemonic_prefix) {
4160 options->a_prefix = "a/";
4161 options->b_prefix = "b/";
4164 options->color_moved = diff_color_moved_default;
4167 void diff_setup_done(struct diff_options *options)
4171 if (options->set_default)
4172 options->set_default(options);
4174 if (options->output_format & DIFF_FORMAT_NAME)
4176 if (options->output_format & DIFF_FORMAT_NAME_STATUS)
4178 if (options->output_format & DIFF_FORMAT_CHECKDIFF)
4180 if (options->output_format & DIFF_FORMAT_NO_OUTPUT)
4183 die(_("--name-only, --name-status, --check and -s are mutually exclusive"));
4186 * Most of the time we can say "there are changes"
4187 * only by checking if there are changed paths, but
4188 * --ignore-whitespace* options force us to look
4192 if (DIFF_XDL_TST(options, IGNORE_WHITESPACE) ||
4193 DIFF_XDL_TST(options, IGNORE_WHITESPACE_CHANGE) ||
4194 DIFF_XDL_TST(options, IGNORE_WHITESPACE_AT_EOL))
4195 DIFF_OPT_SET(options, DIFF_FROM_CONTENTS);
4197 DIFF_OPT_CLR(options, DIFF_FROM_CONTENTS);
4199 if (DIFF_OPT_TST(options, FIND_COPIES_HARDER))
4200 options->detect_rename = DIFF_DETECT_COPY;
4202 if (!DIFF_OPT_TST(options, RELATIVE_NAME))
4203 options->prefix = NULL;
4204 if (options->prefix)
4205 options->prefix_length = strlen(options->prefix);
4207 options->prefix_length = 0;
4209 if (options->output_format & (DIFF_FORMAT_NAME |
4210 DIFF_FORMAT_NAME_STATUS |
4211 DIFF_FORMAT_CHECKDIFF |
4212 DIFF_FORMAT_NO_OUTPUT))
4213 options->output_format &= ~(DIFF_FORMAT_RAW |
4214 DIFF_FORMAT_NUMSTAT |
4215 DIFF_FORMAT_DIFFSTAT |
4216 DIFF_FORMAT_SHORTSTAT |
4217 DIFF_FORMAT_DIRSTAT |
4218 DIFF_FORMAT_SUMMARY |
4222 * These cases always need recursive; we do not drop caller-supplied
4223 * recursive bits for other formats here.
4225 if (options->output_format & (DIFF_FORMAT_PATCH |
4226 DIFF_FORMAT_NUMSTAT |
4227 DIFF_FORMAT_DIFFSTAT |
4228 DIFF_FORMAT_SHORTSTAT |
4229 DIFF_FORMAT_DIRSTAT |
4230 DIFF_FORMAT_SUMMARY |
4231 DIFF_FORMAT_CHECKDIFF))
4232 DIFF_OPT_SET(options, RECURSIVE);
4234 * Also pickaxe would not work very well if you do not say recursive
4236 if (options->pickaxe)
4237 DIFF_OPT_SET(options, RECURSIVE);
4239 * When patches are generated, submodules diffed against the work tree
4240 * must be checked for dirtiness too so it can be shown in the output
4242 if (options->output_format & DIFF_FORMAT_PATCH)
4243 DIFF_OPT_SET(options, DIRTY_SUBMODULES);
4245 if (options->detect_rename && options->rename_limit < 0)
4246 options->rename_limit = diff_rename_limit_default;
4247 if (options->setup & DIFF_SETUP_USE_CACHE) {
4249 /* read-cache does not die even when it fails
4250 * so it is safe for us to do this here. Also
4251 * it does not smudge active_cache or active_nr
4252 * when it fails, so we do not have to worry about
4253 * cleaning it up ourselves either.
4257 if (40 < options->abbrev)
4258 options->abbrev = 40; /* full */
4261 * It does not make sense to show the first hit we happened
4262 * to have found. It does not make sense not to return with
4263 * exit code in such a case either.
4265 if (DIFF_OPT_TST(options, QUICK)) {
4266 options->output_format = DIFF_FORMAT_NO_OUTPUT;
4267 DIFF_OPT_SET(options, EXIT_WITH_STATUS);
4270 options->diff_path_counter = 0;
4272 if (DIFF_OPT_TST(options, FOLLOW_RENAMES) && options->pathspec.nr != 1)
4273 die(_("--follow requires exactly one pathspec"));
4275 if (!options->use_color || external_diff())
4276 options->color_moved = 0;
4279 static int opt_arg(const char *arg, int arg_short, const char *arg_long, int *val)
4289 if (c == arg_short) {
4293 if (val && isdigit(c)) {
4295 int n = strtoul(arg, &end, 10);
4306 eq = strchrnul(arg, '=');
4308 if (!len || strncmp(arg, arg_long, len))
4313 if (!isdigit(*++eq))
4315 n = strtoul(eq, &end, 10);
4323 static int diff_scoreopt_parse(const char *opt);
4325 static inline int short_opt(char opt, const char **argv,
4326 const char **optarg)
4328 const char *arg = argv[0];
4329 if (arg[0] != '-' || arg[1] != opt)
4331 if (arg[2] != '\0') {
4336 die("Option '%c' requires a value", opt);
4341 int parse_long_opt(const char *opt, const char **argv,
4342 const char **optarg)
4344 const char *arg = argv[0];
4345 if (!skip_prefix(arg, "--", &arg))
4347 if (!skip_prefix(arg, opt, &arg))
4349 if (*arg == '=') { /* stuck form: --option=value */
4355 /* separate form: --option value */
4357 die("Option '--%s' requires a value", opt);
4362 static int stat_opt(struct diff_options *options, const char **av)
4364 const char *arg = av[0];
4366 int width = options->stat_width;
4367 int name_width = options->stat_name_width;
4368 int graph_width = options->stat_graph_width;
4369 int count = options->stat_count;
4372 if (!skip_prefix(arg, "--stat", &arg))
4373 die("BUG: stat option does not begin with --stat: %s", arg);
4378 if (skip_prefix(arg, "-width", &arg)) {
4380 width = strtoul(arg + 1, &end, 10);
4381 else if (!*arg && !av[1])
4382 die_want_option("--stat-width");
4384 width = strtoul(av[1], &end, 10);
4387 } else if (skip_prefix(arg, "-name-width", &arg)) {
4389 name_width = strtoul(arg + 1, &end, 10);
4390 else if (!*arg && !av[1])
4391 die_want_option("--stat-name-width");
4393 name_width = strtoul(av[1], &end, 10);
4396 } else if (skip_prefix(arg, "-graph-width", &arg)) {
4398 graph_width = strtoul(arg + 1, &end, 10);
4399 else if (!*arg && !av[1])
4400 die_want_option("--stat-graph-width");
4402 graph_width = strtoul(av[1], &end, 10);
4405 } else if (skip_prefix(arg, "-count", &arg)) {
4407 count = strtoul(arg + 1, &end, 10);
4408 else if (!*arg && !av[1])
4409 die_want_option("--stat-count");
4411 count = strtoul(av[1], &end, 10);
4417 width = strtoul(arg+1, &end, 10);
4419 name_width = strtoul(end+1, &end, 10);
4421 count = strtoul(end+1, &end, 10);
4424 /* Important! This checks all the error cases! */
4427 options->output_format |= DIFF_FORMAT_DIFFSTAT;
4428 options->stat_name_width = name_width;
4429 options->stat_graph_width = graph_width;
4430 options->stat_width = width;
4431 options->stat_count = count;
4435 static int parse_dirstat_opt(struct diff_options *options, const char *params)
4437 struct strbuf errmsg = STRBUF_INIT;
4438 if (parse_dirstat_params(options, params, &errmsg))
4439 die(_("Failed to parse --dirstat/-X option parameter:\n%s"),
4441 strbuf_release(&errmsg);
4443 * The caller knows a dirstat-related option is given from the command
4444 * line; allow it to say "return this_function();"
4446 options->output_format |= DIFF_FORMAT_DIRSTAT;
4450 static int parse_submodule_opt(struct diff_options *options, const char *value)
4452 if (parse_submodule_params(options, value))
4453 die(_("Failed to parse --submodule option parameter: '%s'"),
4458 static const char diff_status_letters[] = {
4461 DIFF_STATUS_DELETED,
4462 DIFF_STATUS_MODIFIED,
4463 DIFF_STATUS_RENAMED,
4464 DIFF_STATUS_TYPE_CHANGED,
4465 DIFF_STATUS_UNKNOWN,
4466 DIFF_STATUS_UNMERGED,
4467 DIFF_STATUS_FILTER_AON,
4468 DIFF_STATUS_FILTER_BROKEN,
4472 static unsigned int filter_bit['Z' + 1];
4474 static void prepare_filter_bits(void)
4478 if (!filter_bit[DIFF_STATUS_ADDED]) {
4479 for (i = 0; diff_status_letters[i]; i++)
4480 filter_bit[(int) diff_status_letters[i]] = (1 << i);
4484 static unsigned filter_bit_tst(char status, const struct diff_options *opt)
4486 return opt->filter & filter_bit[(int) status];
4489 static int parse_diff_filter_opt(const char *optarg, struct diff_options *opt)
4493 prepare_filter_bits();
4496 * If there is a negation e.g. 'd' in the input, and we haven't
4497 * initialized the filter field with another --diff-filter, start
4498 * from full set of bits, except for AON.
4501 for (i = 0; (optch = optarg[i]) != '\0'; i++) {
4502 if (optch < 'a' || 'z' < optch)
4504 opt->filter = (1 << (ARRAY_SIZE(diff_status_letters) - 1)) - 1;
4505 opt->filter &= ~filter_bit[DIFF_STATUS_FILTER_AON];
4510 for (i = 0; (optch = optarg[i]) != '\0'; i++) {
4514 if ('a' <= optch && optch <= 'z') {
4516 optch = toupper(optch);
4521 bit = (0 <= optch && optch <= 'Z') ? filter_bit[optch] : 0;
4525 opt->filter &= ~bit;
4532 static void enable_patch_output(int *fmt) {
4533 *fmt &= ~DIFF_FORMAT_NO_OUTPUT;
4534 *fmt |= DIFF_FORMAT_PATCH;
4537 static int parse_ws_error_highlight_opt(struct diff_options *opt, const char *arg)
4539 int val = parse_ws_error_highlight(arg);
4542 error("unknown value after ws-error-highlight=%.*s",
4546 opt->ws_error_highlight = val;
4550 int diff_opt_parse(struct diff_options *options,
4551 const char **av, int ac, const char *prefix)
4553 const char *arg = av[0];
4560 /* Output format options */
4561 if (!strcmp(arg, "-p") || !strcmp(arg, "-u") || !strcmp(arg, "--patch")
4562 || opt_arg(arg, 'U', "unified", &options->context))
4563 enable_patch_output(&options->output_format);
4564 else if (!strcmp(arg, "--raw"))
4565 options->output_format |= DIFF_FORMAT_RAW;
4566 else if (!strcmp(arg, "--patch-with-raw")) {
4567 enable_patch_output(&options->output_format);
4568 options->output_format |= DIFF_FORMAT_RAW;
4569 } else if (!strcmp(arg, "--numstat"))
4570 options->output_format |= DIFF_FORMAT_NUMSTAT;
4571 else if (!strcmp(arg, "--shortstat"))
4572 options->output_format |= DIFF_FORMAT_SHORTSTAT;
4573 else if (!strcmp(arg, "-X") || !strcmp(arg, "--dirstat"))
4574 return parse_dirstat_opt(options, "");
4575 else if (skip_prefix(arg, "-X", &arg))
4576 return parse_dirstat_opt(options, arg);
4577 else if (skip_prefix(arg, "--dirstat=", &arg))
4578 return parse_dirstat_opt(options, arg);
4579 else if (!strcmp(arg, "--cumulative"))
4580 return parse_dirstat_opt(options, "cumulative");
4581 else if (!strcmp(arg, "--dirstat-by-file"))
4582 return parse_dirstat_opt(options, "files");
4583 else if (skip_prefix(arg, "--dirstat-by-file=", &arg)) {
4584 parse_dirstat_opt(options, "files");
4585 return parse_dirstat_opt(options, arg);
4587 else if (!strcmp(arg, "--check"))
4588 options->output_format |= DIFF_FORMAT_CHECKDIFF;
4589 else if (!strcmp(arg, "--summary"))
4590 options->output_format |= DIFF_FORMAT_SUMMARY;
4591 else if (!strcmp(arg, "--patch-with-stat")) {
4592 enable_patch_output(&options->output_format);
4593 options->output_format |= DIFF_FORMAT_DIFFSTAT;
4594 } else if (!strcmp(arg, "--name-only"))
4595 options->output_format |= DIFF_FORMAT_NAME;
4596 else if (!strcmp(arg, "--name-status"))
4597 options->output_format |= DIFF_FORMAT_NAME_STATUS;
4598 else if (!strcmp(arg, "-s") || !strcmp(arg, "--no-patch"))
4599 options->output_format |= DIFF_FORMAT_NO_OUTPUT;
4600 else if (starts_with(arg, "--stat"))
4601 /* --stat, --stat-width, --stat-name-width, or --stat-count */
4602 return stat_opt(options, av);
4604 /* renames options */
4605 else if (starts_with(arg, "-B") || starts_with(arg, "--break-rewrites=") ||
4606 !strcmp(arg, "--break-rewrites")) {
4607 if ((options->break_opt = diff_scoreopt_parse(arg)) == -1)
4608 return error("invalid argument to -B: %s", arg+2);
4610 else if (starts_with(arg, "-M") || starts_with(arg, "--find-renames=") ||
4611 !strcmp(arg, "--find-renames")) {
4612 if ((options->rename_score = diff_scoreopt_parse(arg)) == -1)
4613 return error("invalid argument to -M: %s", arg+2);
4614 options->detect_rename = DIFF_DETECT_RENAME;
4616 else if (!strcmp(arg, "-D") || !strcmp(arg, "--irreversible-delete")) {
4617 options->irreversible_delete = 1;
4619 else if (starts_with(arg, "-C") || starts_with(arg, "--find-copies=") ||
4620 !strcmp(arg, "--find-copies")) {
4621 if (options->detect_rename == DIFF_DETECT_COPY)
4622 DIFF_OPT_SET(options, FIND_COPIES_HARDER);
4623 if ((options->rename_score = diff_scoreopt_parse(arg)) == -1)
4624 return error("invalid argument to -C: %s", arg+2);
4625 options->detect_rename = DIFF_DETECT_COPY;
4627 else if (!strcmp(arg, "--no-renames"))
4628 options->detect_rename = 0;
4629 else if (!strcmp(arg, "--rename-empty"))
4630 DIFF_OPT_SET(options, RENAME_EMPTY);
4631 else if (!strcmp(arg, "--no-rename-empty"))
4632 DIFF_OPT_CLR(options, RENAME_EMPTY);
4633 else if (!strcmp(arg, "--relative"))
4634 DIFF_OPT_SET(options, RELATIVE_NAME);
4635 else if (skip_prefix(arg, "--relative=", &arg)) {
4636 DIFF_OPT_SET(options, RELATIVE_NAME);
4637 options->prefix = arg;
4641 else if (!strcmp(arg, "--minimal"))
4642 DIFF_XDL_SET(options, NEED_MINIMAL);
4643 else if (!strcmp(arg, "--no-minimal"))
4644 DIFF_XDL_CLR(options, NEED_MINIMAL);
4645 else if (!strcmp(arg, "-w") || !strcmp(arg, "--ignore-all-space"))
4646 DIFF_XDL_SET(options, IGNORE_WHITESPACE);
4647 else if (!strcmp(arg, "-b") || !strcmp(arg, "--ignore-space-change"))
4648 DIFF_XDL_SET(options, IGNORE_WHITESPACE_CHANGE);
4649 else if (!strcmp(arg, "--ignore-space-at-eol"))
4650 DIFF_XDL_SET(options, IGNORE_WHITESPACE_AT_EOL);
4651 else if (!strcmp(arg, "--ignore-blank-lines"))
4652 DIFF_XDL_SET(options, IGNORE_BLANK_LINES);
4653 else if (!strcmp(arg, "--indent-heuristic"))
4654 DIFF_XDL_SET(options, INDENT_HEURISTIC);
4655 else if (!strcmp(arg, "--no-indent-heuristic"))
4656 DIFF_XDL_CLR(options, INDENT_HEURISTIC);
4657 else if (!strcmp(arg, "--patience"))
4658 options->xdl_opts = DIFF_WITH_ALG(options, PATIENCE_DIFF);
4659 else if (!strcmp(arg, "--histogram"))
4660 options->xdl_opts = DIFF_WITH_ALG(options, HISTOGRAM_DIFF);
4661 else if ((argcount = parse_long_opt("diff-algorithm", av, &optarg))) {
4662 long value = parse_algorithm_value(optarg);
4664 return error("option diff-algorithm accepts \"myers\", "
4665 "\"minimal\", \"patience\" and \"histogram\"");
4666 /* clear out previous settings */
4667 DIFF_XDL_CLR(options, NEED_MINIMAL);
4668 options->xdl_opts &= ~XDF_DIFF_ALGORITHM_MASK;
4669 options->xdl_opts |= value;
4674 else if (!strcmp(arg, "--binary")) {
4675 enable_patch_output(&options->output_format);
4676 DIFF_OPT_SET(options, BINARY);
4678 else if (!strcmp(arg, "--full-index"))
4679 DIFF_OPT_SET(options, FULL_INDEX);
4680 else if (!strcmp(arg, "-a") || !strcmp(arg, "--text"))
4681 DIFF_OPT_SET(options, TEXT);
4682 else if (!strcmp(arg, "-R"))
4683 DIFF_OPT_SET(options, REVERSE_DIFF);
4684 else if (!strcmp(arg, "--find-copies-harder"))
4685 DIFF_OPT_SET(options, FIND_COPIES_HARDER);
4686 else if (!strcmp(arg, "--follow"))
4687 DIFF_OPT_SET(options, FOLLOW_RENAMES);
4688 else if (!strcmp(arg, "--no-follow")) {
4689 DIFF_OPT_CLR(options, FOLLOW_RENAMES);
4690 DIFF_OPT_CLR(options, DEFAULT_FOLLOW_RENAMES);
4691 } else if (!strcmp(arg, "--color"))
4692 options->use_color = 1;
4693 else if (skip_prefix(arg, "--color=", &arg)) {
4694 int value = git_config_colorbool(NULL, arg);
4696 return error("option `color' expects \"always\", \"auto\", or \"never\"");
4697 options->use_color = value;
4699 else if (!strcmp(arg, "--no-color"))
4700 options->use_color = 0;
4701 else if (!strcmp(arg, "--color-moved")) {
4702 if (diff_color_moved_default)
4703 options->color_moved = diff_color_moved_default;
4704 if (options->color_moved == COLOR_MOVED_NO)
4705 options->color_moved = COLOR_MOVED_DEFAULT;
4706 } else if (!strcmp(arg, "--no-color-moved"))
4707 options->color_moved = COLOR_MOVED_NO;
4708 else if (skip_prefix(arg, "--color-moved=", &arg)) {
4709 int cm = parse_color_moved(arg);
4711 die("bad --color-moved argument: %s", arg);
4712 options->color_moved = cm;
4713 } else if (!strcmp(arg, "--color-words")) {
4714 options->use_color = 1;
4715 options->word_diff = DIFF_WORDS_COLOR;
4717 else if (skip_prefix(arg, "--color-words=", &arg)) {
4718 options->use_color = 1;
4719 options->word_diff = DIFF_WORDS_COLOR;
4720 options->word_regex = arg;
4722 else if (!strcmp(arg, "--word-diff")) {
4723 if (options->word_diff == DIFF_WORDS_NONE)
4724 options->word_diff = DIFF_WORDS_PLAIN;
4726 else if (skip_prefix(arg, "--word-diff=", &arg)) {
4727 if (!strcmp(arg, "plain"))
4728 options->word_diff = DIFF_WORDS_PLAIN;
4729 else if (!strcmp(arg, "color")) {
4730 options->use_color = 1;
4731 options->word_diff = DIFF_WORDS_COLOR;
4733 else if (!strcmp(arg, "porcelain"))
4734 options->word_diff = DIFF_WORDS_PORCELAIN;
4735 else if (!strcmp(arg, "none"))
4736 options->word_diff = DIFF_WORDS_NONE;
4738 die("bad --word-diff argument: %s", arg);
4740 else if ((argcount = parse_long_opt("word-diff-regex", av, &optarg))) {
4741 if (options->word_diff == DIFF_WORDS_NONE)
4742 options->word_diff = DIFF_WORDS_PLAIN;
4743 options->word_regex = optarg;
4746 else if (!strcmp(arg, "--exit-code"))
4747 DIFF_OPT_SET(options, EXIT_WITH_STATUS);
4748 else if (!strcmp(arg, "--quiet"))
4749 DIFF_OPT_SET(options, QUICK);
4750 else if (!strcmp(arg, "--ext-diff"))
4751 DIFF_OPT_SET(options, ALLOW_EXTERNAL);
4752 else if (!strcmp(arg, "--no-ext-diff"))
4753 DIFF_OPT_CLR(options, ALLOW_EXTERNAL);
4754 else if (!strcmp(arg, "--textconv"))
4755 DIFF_OPT_SET(options, ALLOW_TEXTCONV);
4756 else if (!strcmp(arg, "--no-textconv"))
4757 DIFF_OPT_CLR(options, ALLOW_TEXTCONV);
4758 else if (!strcmp(arg, "--ignore-submodules")) {
4759 DIFF_OPT_SET(options, OVERRIDE_SUBMODULE_CONFIG);
4760 handle_ignore_submodules_arg(options, "all");
4761 } else if (skip_prefix(arg, "--ignore-submodules=", &arg)) {
4762 DIFF_OPT_SET(options, OVERRIDE_SUBMODULE_CONFIG);
4763 handle_ignore_submodules_arg(options, arg);
4764 } else if (!strcmp(arg, "--submodule"))
4765 options->submodule_format = DIFF_SUBMODULE_LOG;
4766 else if (skip_prefix(arg, "--submodule=", &arg))
4767 return parse_submodule_opt(options, arg);
4768 else if (skip_prefix(arg, "--ws-error-highlight=", &arg))
4769 return parse_ws_error_highlight_opt(options, arg);
4770 else if (!strcmp(arg, "--ita-invisible-in-index"))
4771 options->ita_invisible_in_index = 1;
4772 else if (!strcmp(arg, "--ita-visible-in-index"))
4773 options->ita_invisible_in_index = 0;
4776 else if (!strcmp(arg, "-z"))
4777 options->line_termination = 0;
4778 else if ((argcount = short_opt('l', av, &optarg))) {
4779 options->rename_limit = strtoul(optarg, NULL, 10);
4782 else if ((argcount = short_opt('S', av, &optarg))) {
4783 options->pickaxe = optarg;
4784 options->pickaxe_opts |= DIFF_PICKAXE_KIND_S;
4786 } else if ((argcount = short_opt('G', av, &optarg))) {
4787 options->pickaxe = optarg;
4788 options->pickaxe_opts |= DIFF_PICKAXE_KIND_G;
4791 else if (!strcmp(arg, "--pickaxe-all"))
4792 options->pickaxe_opts |= DIFF_PICKAXE_ALL;
4793 else if (!strcmp(arg, "--pickaxe-regex"))
4794 options->pickaxe_opts |= DIFF_PICKAXE_REGEX;
4795 else if ((argcount = short_opt('O', av, &optarg))) {
4796 options->orderfile = prefix_filename(prefix, optarg);
4799 else if ((argcount = parse_long_opt("diff-filter", av, &optarg))) {
4800 int offending = parse_diff_filter_opt(optarg, options);
4802 die("unknown change class '%c' in --diff-filter=%s",
4806 else if (!strcmp(arg, "--no-abbrev"))
4807 options->abbrev = 0;
4808 else if (!strcmp(arg, "--abbrev"))
4809 options->abbrev = DEFAULT_ABBREV;
4810 else if (skip_prefix(arg, "--abbrev=", &arg)) {
4811 options->abbrev = strtoul(arg, NULL, 10);
4812 if (options->abbrev < MINIMUM_ABBREV)
4813 options->abbrev = MINIMUM_ABBREV;
4814 else if (40 < options->abbrev)
4815 options->abbrev = 40;
4817 else if ((argcount = parse_long_opt("src-prefix", av, &optarg))) {
4818 options->a_prefix = optarg;
4821 else if ((argcount = parse_long_opt("line-prefix", av, &optarg))) {
4822 options->line_prefix = optarg;
4823 options->line_prefix_length = strlen(options->line_prefix);
4824 graph_setup_line_prefix(options);
4827 else if ((argcount = parse_long_opt("dst-prefix", av, &optarg))) {
4828 options->b_prefix = optarg;
4831 else if (!strcmp(arg, "--no-prefix"))
4832 options->a_prefix = options->b_prefix = "";
4833 else if (opt_arg(arg, '\0', "inter-hunk-context",
4834 &options->interhunkcontext))
4836 else if (!strcmp(arg, "-W"))
4837 DIFF_OPT_SET(options, FUNCCONTEXT);
4838 else if (!strcmp(arg, "--function-context"))
4839 DIFF_OPT_SET(options, FUNCCONTEXT);
4840 else if (!strcmp(arg, "--no-function-context"))
4841 DIFF_OPT_CLR(options, FUNCCONTEXT);
4842 else if ((argcount = parse_long_opt("output", av, &optarg))) {
4843 char *path = prefix_filename(prefix, optarg);
4844 options->file = xfopen(path, "w");
4845 options->close_file = 1;
4846 if (options->use_color != GIT_COLOR_ALWAYS)
4847 options->use_color = GIT_COLOR_NEVER;
4855 int parse_rename_score(const char **cp_p)
4857 unsigned long num, scale;
4859 const char *cp = *cp_p;
4866 if ( !dot && ch == '.' ) {
4869 } else if ( ch == '%' ) {
4870 scale = dot ? scale*100 : 100;
4871 cp++; /* % is always at the end */
4873 } else if ( ch >= '0' && ch <= '9' ) {
4874 if ( scale < 100000 ) {
4876 num = (num*10) + (ch-'0');
4885 /* user says num divided by scale and we say internally that
4886 * is MAX_SCORE * num / scale.
4888 return (int)((num >= scale) ? MAX_SCORE : (MAX_SCORE * num / scale));
4891 static int diff_scoreopt_parse(const char *opt)
4893 int opt1, opt2, cmd;
4899 /* convert the long-form arguments into short-form versions */
4900 if (skip_prefix(opt, "break-rewrites", &opt)) {
4901 if (*opt == 0 || *opt++ == '=')
4903 } else if (skip_prefix(opt, "find-copies", &opt)) {
4904 if (*opt == 0 || *opt++ == '=')
4906 } else if (skip_prefix(opt, "find-renames", &opt)) {
4907 if (*opt == 0 || *opt++ == '=')
4911 if (cmd != 'M' && cmd != 'C' && cmd != 'B')
4912 return -1; /* that is not a -M, -C, or -B option */
4914 opt1 = parse_rename_score(&opt);
4920 else if (*opt != '/')
4921 return -1; /* we expect -B80/99 or -B80 */
4924 opt2 = parse_rename_score(&opt);
4929 return opt1 | (opt2 << 16);
4932 struct diff_queue_struct diff_queued_diff;
4934 void diff_q(struct diff_queue_struct *queue, struct diff_filepair *dp)
4936 ALLOC_GROW(queue->queue, queue->nr + 1, queue->alloc);
4937 queue->queue[queue->nr++] = dp;
4940 struct diff_filepair *diff_queue(struct diff_queue_struct *queue,
4941 struct diff_filespec *one,
4942 struct diff_filespec *two)
4944 struct diff_filepair *dp = xcalloc(1, sizeof(*dp));
4952 void diff_free_filepair(struct diff_filepair *p)
4954 free_filespec(p->one);
4955 free_filespec(p->two);
4959 const char *diff_aligned_abbrev(const struct object_id *oid, int len)
4964 if (len == GIT_SHA1_HEXSZ)
4965 return oid_to_hex(oid);
4967 abbrev = diff_abbrev_oid(oid, len);
4968 abblen = strlen(abbrev);
4971 * In well-behaved cases, where the abbbreviated result is the
4972 * same as the requested length, append three dots after the
4973 * abbreviation (hence the whole logic is limited to the case
4974 * where abblen < 37); when the actual abbreviated result is a
4975 * bit longer than the requested length, we reduce the number
4976 * of dots so that they match the well-behaved ones. However,
4977 * if the actual abbreviation is longer than the requested
4978 * length by more than three, we give up on aligning, and add
4979 * three dots anyway, to indicate that the output is not the
4980 * full object name. Yes, this may be suboptimal, but this
4981 * appears only in "diff --raw --abbrev" output and it is not
4982 * worth the effort to change it now. Note that this would
4983 * likely to work fine when the automatic sizing of default
4984 * abbreviation length is used--we would be fed -1 in "len" in
4985 * that case, and will end up always appending three-dots, but
4986 * the automatic sizing is supposed to give abblen that ensures
4987 * uniqueness across all objects (statistically speaking).
4989 if (abblen < GIT_SHA1_HEXSZ - 3) {
4990 static char hex[GIT_MAX_HEXSZ + 1];
4991 if (len < abblen && abblen <= len + 2)
4992 xsnprintf(hex, sizeof(hex), "%s%.*s", abbrev, len+3-abblen, "..");
4994 xsnprintf(hex, sizeof(hex), "%s...", abbrev);
4998 return oid_to_hex(oid);
5001 static void diff_flush_raw(struct diff_filepair *p, struct diff_options *opt)
5003 int line_termination = opt->line_termination;
5004 int inter_name_termination = line_termination ? '\t' : '\0';
5006 fprintf(opt->file, "%s", diff_line_prefix(opt));
5007 if (!(opt->output_format & DIFF_FORMAT_NAME_STATUS)) {
5008 fprintf(opt->file, ":%06o %06o %s ", p->one->mode, p->two->mode,
5009 diff_aligned_abbrev(&p->one->oid, opt->abbrev));
5010 fprintf(opt->file, "%s ",
5011 diff_aligned_abbrev(&p->two->oid, opt->abbrev));
5014 fprintf(opt->file, "%c%03d%c", p->status, similarity_index(p),
5015 inter_name_termination);
5017 fprintf(opt->file, "%c%c", p->status, inter_name_termination);
5020 if (p->status == DIFF_STATUS_COPIED ||
5021 p->status == DIFF_STATUS_RENAMED) {
5022 const char *name_a, *name_b;
5023 name_a = p->one->path;
5024 name_b = p->two->path;
5025 strip_prefix(opt->prefix_length, &name_a, &name_b);
5026 write_name_quoted(name_a, opt->file, inter_name_termination);
5027 write_name_quoted(name_b, opt->file, line_termination);
5029 const char *name_a, *name_b;
5030 name_a = p->one->mode ? p->one->path : p->two->path;
5032 strip_prefix(opt->prefix_length, &name_a, &name_b);
5033 write_name_quoted(name_a, opt->file, line_termination);
5037 int diff_unmodified_pair(struct diff_filepair *p)
5039 /* This function is written stricter than necessary to support
5040 * the currently implemented transformers, but the idea is to
5041 * let transformers to produce diff_filepairs any way they want,
5042 * and filter and clean them up here before producing the output.
5044 struct diff_filespec *one = p->one, *two = p->two;
5046 if (DIFF_PAIR_UNMERGED(p))
5047 return 0; /* unmerged is interesting */
5049 /* deletion, addition, mode or type change
5050 * and rename are all interesting.
5052 if (DIFF_FILE_VALID(one) != DIFF_FILE_VALID(two) ||
5053 DIFF_PAIR_MODE_CHANGED(p) ||
5054 strcmp(one->path, two->path))
5057 /* both are valid and point at the same path. that is, we are
5058 * dealing with a change.
5060 if (one->oid_valid && two->oid_valid &&
5061 !oidcmp(&one->oid, &two->oid) &&
5062 !one->dirty_submodule && !two->dirty_submodule)
5063 return 1; /* no change */
5064 if (!one->oid_valid && !two->oid_valid)
5065 return 1; /* both look at the same file on the filesystem. */
5069 static void diff_flush_patch(struct diff_filepair *p, struct diff_options *o)
5071 if (diff_unmodified_pair(p))
5074 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
5075 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
5076 return; /* no tree diffs in patch format */
5081 static void diff_flush_stat(struct diff_filepair *p, struct diff_options *o,
5082 struct diffstat_t *diffstat)
5084 if (diff_unmodified_pair(p))
5087 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
5088 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
5089 return; /* no useful stat for tree diffs */
5091 run_diffstat(p, o, diffstat);
5094 static void diff_flush_checkdiff(struct diff_filepair *p,
5095 struct diff_options *o)
5097 if (diff_unmodified_pair(p))
5100 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
5101 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
5102 return; /* nothing to check in tree diffs */
5104 run_checkdiff(p, o);
5107 int diff_queue_is_empty(void)
5109 struct diff_queue_struct *q = &diff_queued_diff;
5111 for (i = 0; i < q->nr; i++)
5112 if (!diff_unmodified_pair(q->queue[i]))
5118 void diff_debug_filespec(struct diff_filespec *s, int x, const char *one)
5120 fprintf(stderr, "queue[%d] %s (%s) %s %06o %s\n",
5123 DIFF_FILE_VALID(s) ? "valid" : "invalid",
5125 s->oid_valid ? oid_to_hex(&s->oid) : "");
5126 fprintf(stderr, "queue[%d] %s size %lu\n",
5131 void diff_debug_filepair(const struct diff_filepair *p, int i)
5133 diff_debug_filespec(p->one, i, "one");
5134 diff_debug_filespec(p->two, i, "two");
5135 fprintf(stderr, "score %d, status %c rename_used %d broken %d\n",
5136 p->score, p->status ? p->status : '?',
5137 p->one->rename_used, p->broken_pair);
5140 void diff_debug_queue(const char *msg, struct diff_queue_struct *q)
5144 fprintf(stderr, "%s\n", msg);
5145 fprintf(stderr, "q->nr = %d\n", q->nr);
5146 for (i = 0; i < q->nr; i++) {
5147 struct diff_filepair *p = q->queue[i];
5148 diff_debug_filepair(p, i);
5153 static void diff_resolve_rename_copy(void)
5156 struct diff_filepair *p;
5157 struct diff_queue_struct *q = &diff_queued_diff;
5159 diff_debug_queue("resolve-rename-copy", q);
5161 for (i = 0; i < q->nr; i++) {
5163 p->status = 0; /* undecided */
5164 if (DIFF_PAIR_UNMERGED(p))
5165 p->status = DIFF_STATUS_UNMERGED;
5166 else if (!DIFF_FILE_VALID(p->one))
5167 p->status = DIFF_STATUS_ADDED;
5168 else if (!DIFF_FILE_VALID(p->two))
5169 p->status = DIFF_STATUS_DELETED;
5170 else if (DIFF_PAIR_TYPE_CHANGED(p))
5171 p->status = DIFF_STATUS_TYPE_CHANGED;
5173 /* from this point on, we are dealing with a pair
5174 * whose both sides are valid and of the same type, i.e.
5175 * either in-place edit or rename/copy edit.
5177 else if (DIFF_PAIR_RENAME(p)) {
5179 * A rename might have re-connected a broken
5180 * pair up, causing the pathnames to be the
5181 * same again. If so, that's not a rename at
5182 * all, just a modification..
5184 * Otherwise, see if this source was used for
5185 * multiple renames, in which case we decrement
5186 * the count, and call it a copy.
5188 if (!strcmp(p->one->path, p->two->path))
5189 p->status = DIFF_STATUS_MODIFIED;
5190 else if (--p->one->rename_used > 0)
5191 p->status = DIFF_STATUS_COPIED;
5193 p->status = DIFF_STATUS_RENAMED;
5195 else if (oidcmp(&p->one->oid, &p->two->oid) ||
5196 p->one->mode != p->two->mode ||
5197 p->one->dirty_submodule ||
5198 p->two->dirty_submodule ||
5199 is_null_oid(&p->one->oid))
5200 p->status = DIFF_STATUS_MODIFIED;
5202 /* This is a "no-change" entry and should not
5203 * happen anymore, but prepare for broken callers.
5205 error("feeding unmodified %s to diffcore",
5207 p->status = DIFF_STATUS_UNKNOWN;
5210 diff_debug_queue("resolve-rename-copy done", q);
5213 static int check_pair_status(struct diff_filepair *p)
5215 switch (p->status) {
5216 case DIFF_STATUS_UNKNOWN:
5219 die("internal error in diff-resolve-rename-copy");
5225 static void flush_one_pair(struct diff_filepair *p, struct diff_options *opt)
5227 int fmt = opt->output_format;
5229 if (fmt & DIFF_FORMAT_CHECKDIFF)
5230 diff_flush_checkdiff(p, opt);
5231 else if (fmt & (DIFF_FORMAT_RAW | DIFF_FORMAT_NAME_STATUS))
5232 diff_flush_raw(p, opt);
5233 else if (fmt & DIFF_FORMAT_NAME) {
5234 const char *name_a, *name_b;
5235 name_a = p->two->path;
5237 strip_prefix(opt->prefix_length, &name_a, &name_b);
5238 fprintf(opt->file, "%s", diff_line_prefix(opt));
5239 write_name_quoted(name_a, opt->file, opt->line_termination);
5243 static void show_file_mode_name(struct diff_options *opt, const char *newdelete, struct diff_filespec *fs)
5245 struct strbuf sb = STRBUF_INIT;
5247 strbuf_addf(&sb, " %s mode %06o ", newdelete, fs->mode);
5249 strbuf_addf(&sb, " %s ", newdelete);
5251 quote_c_style(fs->path, &sb, NULL, 0);
5252 strbuf_addch(&sb, '\n');
5253 emit_diff_symbol(opt, DIFF_SYMBOL_SUMMARY,
5255 strbuf_release(&sb);
5258 static void show_mode_change(struct diff_options *opt, struct diff_filepair *p,
5261 if (p->one->mode && p->two->mode && p->one->mode != p->two->mode) {
5262 struct strbuf sb = STRBUF_INIT;
5263 strbuf_addf(&sb, " mode change %06o => %06o",
5264 p->one->mode, p->two->mode);
5266 strbuf_addch(&sb, ' ');
5267 quote_c_style(p->two->path, &sb, NULL, 0);
5269 emit_diff_symbol(opt, DIFF_SYMBOL_SUMMARY,
5271 strbuf_release(&sb);
5275 static void show_rename_copy(struct diff_options *opt, const char *renamecopy,
5276 struct diff_filepair *p)
5278 struct strbuf sb = STRBUF_INIT;
5279 char *names = pprint_rename(p->one->path, p->two->path);
5280 strbuf_addf(&sb, " %s %s (%d%%)\n",
5281 renamecopy, names, similarity_index(p));
5283 emit_diff_symbol(opt, DIFF_SYMBOL_SUMMARY,
5285 show_mode_change(opt, p, 0);
5288 static void diff_summary(struct diff_options *opt, struct diff_filepair *p)
5291 case DIFF_STATUS_DELETED:
5292 show_file_mode_name(opt, "delete", p->one);
5294 case DIFF_STATUS_ADDED:
5295 show_file_mode_name(opt, "create", p->two);
5297 case DIFF_STATUS_COPIED:
5298 show_rename_copy(opt, "copy", p);
5300 case DIFF_STATUS_RENAMED:
5301 show_rename_copy(opt, "rename", p);
5305 struct strbuf sb = STRBUF_INIT;
5306 strbuf_addstr(&sb, " rewrite ");
5307 quote_c_style(p->two->path, &sb, NULL, 0);
5308 strbuf_addf(&sb, " (%d%%)\n", similarity_index(p));
5309 emit_diff_symbol(opt, DIFF_SYMBOL_SUMMARY,
5312 show_mode_change(opt, p, !p->score);
5322 static int remove_space(char *line, int len)
5328 for (i = 0; i < len; i++)
5329 if (!isspace((c = line[i])))
5335 static void patch_id_consume(void *priv, char *line, unsigned long len)
5337 struct patch_id_t *data = priv;
5340 /* Ignore line numbers when computing the SHA1 of the patch */
5341 if (starts_with(line, "@@ -"))
5344 new_len = remove_space(line, len);
5346 git_SHA1_Update(data->ctx, line, new_len);
5347 data->patchlen += new_len;
5350 static void patch_id_add_string(git_SHA_CTX *ctx, const char *str)
5352 git_SHA1_Update(ctx, str, strlen(str));
5355 static void patch_id_add_mode(git_SHA_CTX *ctx, unsigned mode)
5357 /* large enough for 2^32 in octal */
5359 int len = xsnprintf(buf, sizeof(buf), "%06o", mode);
5360 git_SHA1_Update(ctx, buf, len);
5363 /* returns 0 upon success, and writes result into sha1 */
5364 static int diff_get_patch_id(struct diff_options *options, struct object_id *oid, int diff_header_only)
5366 struct diff_queue_struct *q = &diff_queued_diff;
5369 struct patch_id_t data;
5371 git_SHA1_Init(&ctx);
5372 memset(&data, 0, sizeof(struct patch_id_t));
5375 for (i = 0; i < q->nr; i++) {
5379 struct diff_filepair *p = q->queue[i];
5382 memset(&xpp, 0, sizeof(xpp));
5383 memset(&xecfg, 0, sizeof(xecfg));
5385 return error("internal diff status error");
5386 if (p->status == DIFF_STATUS_UNKNOWN)
5388 if (diff_unmodified_pair(p))
5390 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
5391 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
5393 if (DIFF_PAIR_UNMERGED(p))
5396 diff_fill_oid_info(p->one);
5397 diff_fill_oid_info(p->two);
5399 len1 = remove_space(p->one->path, strlen(p->one->path));
5400 len2 = remove_space(p->two->path, strlen(p->two->path));
5401 patch_id_add_string(&ctx, "diff--git");
5402 patch_id_add_string(&ctx, "a/");
5403 git_SHA1_Update(&ctx, p->one->path, len1);
5404 patch_id_add_string(&ctx, "b/");
5405 git_SHA1_Update(&ctx, p->two->path, len2);
5407 if (p->one->mode == 0) {
5408 patch_id_add_string(&ctx, "newfilemode");
5409 patch_id_add_mode(&ctx, p->two->mode);
5410 patch_id_add_string(&ctx, "---/dev/null");
5411 patch_id_add_string(&ctx, "+++b/");
5412 git_SHA1_Update(&ctx, p->two->path, len2);
5413 } else if (p->two->mode == 0) {
5414 patch_id_add_string(&ctx, "deletedfilemode");
5415 patch_id_add_mode(&ctx, p->one->mode);
5416 patch_id_add_string(&ctx, "---a/");
5417 git_SHA1_Update(&ctx, p->one->path, len1);
5418 patch_id_add_string(&ctx, "+++/dev/null");
5420 patch_id_add_string(&ctx, "---a/");
5421 git_SHA1_Update(&ctx, p->one->path, len1);
5422 patch_id_add_string(&ctx, "+++b/");
5423 git_SHA1_Update(&ctx, p->two->path, len2);
5426 if (diff_header_only)
5429 if (fill_mmfile(&mf1, p->one) < 0 ||
5430 fill_mmfile(&mf2, p->two) < 0)
5431 return error("unable to read files to diff");
5433 if (diff_filespec_is_binary(p->one) ||
5434 diff_filespec_is_binary(p->two)) {
5435 git_SHA1_Update(&ctx, oid_to_hex(&p->one->oid),
5437 git_SHA1_Update(&ctx, oid_to_hex(&p->two->oid),
5445 if (xdi_diff_outf(&mf1, &mf2, patch_id_consume, &data,
5447 return error("unable to generate patch-id diff for %s",
5451 git_SHA1_Final(oid->hash, &ctx);
5455 int diff_flush_patch_id(struct diff_options *options, struct object_id *oid, int diff_header_only)
5457 struct diff_queue_struct *q = &diff_queued_diff;
5459 int result = diff_get_patch_id(options, oid, diff_header_only);
5461 for (i = 0; i < q->nr; i++)
5462 diff_free_filepair(q->queue[i]);
5465 DIFF_QUEUE_CLEAR(q);
5470 static int is_summary_empty(const struct diff_queue_struct *q)
5474 for (i = 0; i < q->nr; i++) {
5475 const struct diff_filepair *p = q->queue[i];
5477 switch (p->status) {
5478 case DIFF_STATUS_DELETED:
5479 case DIFF_STATUS_ADDED:
5480 case DIFF_STATUS_COPIED:
5481 case DIFF_STATUS_RENAMED:
5486 if (p->one->mode && p->two->mode &&
5487 p->one->mode != p->two->mode)
5495 static const char rename_limit_warning[] =
5496 N_("inexact rename detection was skipped due to too many files.");
5498 static const char degrade_cc_to_c_warning[] =
5499 N_("only found copies from modified paths due to too many files.");
5501 static const char rename_limit_advice[] =
5502 N_("you may want to set your %s variable to at least "
5503 "%d and retry the command.");
5505 void diff_warn_rename_limit(const char *varname, int needed, int degraded_cc)
5508 warning(_(degrade_cc_to_c_warning));
5510 warning(_(rename_limit_warning));
5513 if (0 < needed && needed < 32767)
5514 warning(_(rename_limit_advice), varname, needed);
5517 static void diff_flush_patch_all_file_pairs(struct diff_options *o)
5520 static struct emitted_diff_symbols esm = EMITTED_DIFF_SYMBOLS_INIT;
5521 struct diff_queue_struct *q = &diff_queued_diff;
5523 if (WSEH_NEW & WS_RULE_MASK)
5524 die("BUG: WS rules bit mask overlaps with diff symbol flags");
5527 o->emitted_symbols = &esm;
5529 for (i = 0; i < q->nr; i++) {
5530 struct diff_filepair *p = q->queue[i];
5531 if (check_pair_status(p))
5532 diff_flush_patch(p, o);
5535 if (o->emitted_symbols) {
5536 if (o->color_moved) {
5537 struct hashmap add_lines, del_lines;
5539 hashmap_init(&del_lines,
5540 (hashmap_cmp_fn)moved_entry_cmp, o, 0);
5541 hashmap_init(&add_lines,
5542 (hashmap_cmp_fn)moved_entry_cmp, o, 0);
5544 add_lines_to_move_detection(o, &add_lines, &del_lines);
5545 mark_color_as_moved(o, &add_lines, &del_lines);
5546 if (o->color_moved == COLOR_MOVED_ZEBRA_DIM)
5549 hashmap_free(&add_lines, 0);
5550 hashmap_free(&del_lines, 0);
5553 for (i = 0; i < esm.nr; i++)
5554 emit_diff_symbol_from_struct(o, &esm.buf[i]);
5556 for (i = 0; i < esm.nr; i++)
5557 free((void *)esm.buf[i].line);
5562 void diff_flush(struct diff_options *options)
5564 struct diff_queue_struct *q = &diff_queued_diff;
5565 int i, output_format = options->output_format;
5567 int dirstat_by_line = 0;
5570 * Order: raw, stat, summary, patch
5571 * or: name/name-status/checkdiff (other bits clear)
5576 if (output_format & (DIFF_FORMAT_RAW |
5578 DIFF_FORMAT_NAME_STATUS |
5579 DIFF_FORMAT_CHECKDIFF)) {
5580 for (i = 0; i < q->nr; i++) {
5581 struct diff_filepair *p = q->queue[i];
5582 if (check_pair_status(p))
5583 flush_one_pair(p, options);
5588 if (output_format & DIFF_FORMAT_DIRSTAT && DIFF_OPT_TST(options, DIRSTAT_BY_LINE))
5589 dirstat_by_line = 1;
5591 if (output_format & (DIFF_FORMAT_DIFFSTAT|DIFF_FORMAT_SHORTSTAT|DIFF_FORMAT_NUMSTAT) ||
5593 struct diffstat_t diffstat;
5595 memset(&diffstat, 0, sizeof(struct diffstat_t));
5596 for (i = 0; i < q->nr; i++) {
5597 struct diff_filepair *p = q->queue[i];
5598 if (check_pair_status(p))
5599 diff_flush_stat(p, options, &diffstat);
5601 if (output_format & DIFF_FORMAT_NUMSTAT)
5602 show_numstat(&diffstat, options);
5603 if (output_format & DIFF_FORMAT_DIFFSTAT)
5604 show_stats(&diffstat, options);
5605 if (output_format & DIFF_FORMAT_SHORTSTAT)
5606 show_shortstats(&diffstat, options);
5607 if (output_format & DIFF_FORMAT_DIRSTAT && dirstat_by_line)
5608 show_dirstat_by_line(&diffstat, options);
5609 free_diffstat_info(&diffstat);
5612 if ((output_format & DIFF_FORMAT_DIRSTAT) && !dirstat_by_line)
5613 show_dirstat(options);
5615 if (output_format & DIFF_FORMAT_SUMMARY && !is_summary_empty(q)) {
5616 for (i = 0; i < q->nr; i++) {
5617 diff_summary(options, q->queue[i]);
5622 if (output_format & DIFF_FORMAT_NO_OUTPUT &&
5623 DIFF_OPT_TST(options, EXIT_WITH_STATUS) &&
5624 DIFF_OPT_TST(options, DIFF_FROM_CONTENTS)) {
5626 * run diff_flush_patch for the exit status. setting
5627 * options->file to /dev/null should be safe, because we
5628 * aren't supposed to produce any output anyway.
5630 if (options->close_file)
5631 fclose(options->file);
5632 options->file = xfopen("/dev/null", "w");
5633 options->close_file = 1;
5634 options->color_moved = 0;
5635 for (i = 0; i < q->nr; i++) {
5636 struct diff_filepair *p = q->queue[i];
5637 if (check_pair_status(p))
5638 diff_flush_patch(p, options);
5639 if (options->found_changes)
5644 if (output_format & DIFF_FORMAT_PATCH) {
5646 emit_diff_symbol(options, DIFF_SYMBOL_SEPARATOR, NULL, 0, 0);
5647 if (options->stat_sep)
5648 /* attach patch instead of inline */
5649 emit_diff_symbol(options, DIFF_SYMBOL_STAT_SEP,
5653 diff_flush_patch_all_file_pairs(options);
5656 if (output_format & DIFF_FORMAT_CALLBACK)
5657 options->format_callback(q, options, options->format_callback_data);
5659 for (i = 0; i < q->nr; i++)
5660 diff_free_filepair(q->queue[i]);
5663 DIFF_QUEUE_CLEAR(q);
5664 if (options->close_file)
5665 fclose(options->file);
5668 * Report the content-level differences with HAS_CHANGES;
5669 * diff_addremove/diff_change does not set the bit when
5670 * DIFF_FROM_CONTENTS is in effect (e.g. with -w).
5672 if (DIFF_OPT_TST(options, DIFF_FROM_CONTENTS)) {
5673 if (options->found_changes)
5674 DIFF_OPT_SET(options, HAS_CHANGES);
5676 DIFF_OPT_CLR(options, HAS_CHANGES);
5680 static int match_filter(const struct diff_options *options, const struct diff_filepair *p)
5682 return (((p->status == DIFF_STATUS_MODIFIED) &&
5684 filter_bit_tst(DIFF_STATUS_FILTER_BROKEN, options)) ||
5686 filter_bit_tst(DIFF_STATUS_MODIFIED, options)))) ||
5687 ((p->status != DIFF_STATUS_MODIFIED) &&
5688 filter_bit_tst(p->status, options)));
5691 static void diffcore_apply_filter(struct diff_options *options)
5694 struct diff_queue_struct *q = &diff_queued_diff;
5695 struct diff_queue_struct outq;
5697 DIFF_QUEUE_CLEAR(&outq);
5699 if (!options->filter)
5702 if (filter_bit_tst(DIFF_STATUS_FILTER_AON, options)) {
5704 for (i = found = 0; !found && i < q->nr; i++) {
5705 if (match_filter(options, q->queue[i]))
5711 /* otherwise we will clear the whole queue
5712 * by copying the empty outq at the end of this
5713 * function, but first clear the current entries
5716 for (i = 0; i < q->nr; i++)
5717 diff_free_filepair(q->queue[i]);
5720 /* Only the matching ones */
5721 for (i = 0; i < q->nr; i++) {
5722 struct diff_filepair *p = q->queue[i];
5723 if (match_filter(options, p))
5726 diff_free_filepair(p);
5733 /* Check whether two filespecs with the same mode and size are identical */
5734 static int diff_filespec_is_identical(struct diff_filespec *one,
5735 struct diff_filespec *two)
5737 if (S_ISGITLINK(one->mode))
5739 if (diff_populate_filespec(one, 0))
5741 if (diff_populate_filespec(two, 0))
5743 return !memcmp(one->data, two->data, one->size);
5746 static int diff_filespec_check_stat_unmatch(struct diff_filepair *p)
5748 if (p->done_skip_stat_unmatch)
5749 return p->skip_stat_unmatch_result;
5751 p->done_skip_stat_unmatch = 1;
5752 p->skip_stat_unmatch_result = 0;
5754 * 1. Entries that come from stat info dirtiness
5755 * always have both sides (iow, not create/delete),
5756 * one side of the object name is unknown, with
5757 * the same mode and size. Keep the ones that
5758 * do not match these criteria. They have real
5761 * 2. At this point, the file is known to be modified,
5762 * with the same mode and size, and the object
5763 * name of one side is unknown. Need to inspect
5764 * the identical contents.
5766 if (!DIFF_FILE_VALID(p->one) || /* (1) */
5767 !DIFF_FILE_VALID(p->two) ||
5768 (p->one->oid_valid && p->two->oid_valid) ||
5769 (p->one->mode != p->two->mode) ||
5770 diff_populate_filespec(p->one, CHECK_SIZE_ONLY) ||
5771 diff_populate_filespec(p->two, CHECK_SIZE_ONLY) ||
5772 (p->one->size != p->two->size) ||
5773 !diff_filespec_is_identical(p->one, p->two)) /* (2) */
5774 p->skip_stat_unmatch_result = 1;
5775 return p->skip_stat_unmatch_result;
5778 static void diffcore_skip_stat_unmatch(struct diff_options *diffopt)
5781 struct diff_queue_struct *q = &diff_queued_diff;
5782 struct diff_queue_struct outq;
5783 DIFF_QUEUE_CLEAR(&outq);
5785 for (i = 0; i < q->nr; i++) {
5786 struct diff_filepair *p = q->queue[i];
5788 if (diff_filespec_check_stat_unmatch(p))
5792 * The caller can subtract 1 from skip_stat_unmatch
5793 * to determine how many paths were dirty only
5794 * due to stat info mismatch.
5796 if (!DIFF_OPT_TST(diffopt, NO_INDEX))
5797 diffopt->skip_stat_unmatch++;
5798 diff_free_filepair(p);
5805 static int diffnamecmp(const void *a_, const void *b_)
5807 const struct diff_filepair *a = *((const struct diff_filepair **)a_);
5808 const struct diff_filepair *b = *((const struct diff_filepair **)b_);
5809 const char *name_a, *name_b;
5811 name_a = a->one ? a->one->path : a->two->path;
5812 name_b = b->one ? b->one->path : b->two->path;
5813 return strcmp(name_a, name_b);
5816 void diffcore_fix_diff_index(struct diff_options *options)
5818 struct diff_queue_struct *q = &diff_queued_diff;
5819 QSORT(q->queue, q->nr, diffnamecmp);
5822 void diffcore_std(struct diff_options *options)
5824 /* NOTE please keep the following in sync with diff_tree_combined() */
5825 if (options->skip_stat_unmatch)
5826 diffcore_skip_stat_unmatch(options);
5827 if (!options->found_follow) {
5828 /* See try_to_follow_renames() in tree-diff.c */
5829 if (options->break_opt != -1)
5830 diffcore_break(options->break_opt);
5831 if (options->detect_rename)
5832 diffcore_rename(options);
5833 if (options->break_opt != -1)
5834 diffcore_merge_broken();
5836 if (options->pickaxe)
5837 diffcore_pickaxe(options);
5838 if (options->orderfile)
5839 diffcore_order(options->orderfile);
5840 if (!options->found_follow)
5841 /* See try_to_follow_renames() in tree-diff.c */
5842 diff_resolve_rename_copy();
5843 diffcore_apply_filter(options);
5845 if (diff_queued_diff.nr && !DIFF_OPT_TST(options, DIFF_FROM_CONTENTS))
5846 DIFF_OPT_SET(options, HAS_CHANGES);
5848 DIFF_OPT_CLR(options, HAS_CHANGES);
5850 options->found_follow = 0;
5853 int diff_result_code(struct diff_options *opt, int status)
5857 diff_warn_rename_limit("diff.renameLimit",
5858 opt->needed_rename_limit,
5859 opt->degraded_cc_to_c);
5860 if (!DIFF_OPT_TST(opt, EXIT_WITH_STATUS) &&
5861 !(opt->output_format & DIFF_FORMAT_CHECKDIFF))
5863 if (DIFF_OPT_TST(opt, EXIT_WITH_STATUS) &&
5864 DIFF_OPT_TST(opt, HAS_CHANGES))
5866 if ((opt->output_format & DIFF_FORMAT_CHECKDIFF) &&
5867 DIFF_OPT_TST(opt, CHECK_FAILED))
5872 int diff_can_quit_early(struct diff_options *opt)
5874 return (DIFF_OPT_TST(opt, QUICK) &&
5876 DIFF_OPT_TST(opt, HAS_CHANGES));
5880 * Shall changes to this submodule be ignored?
5882 * Submodule changes can be configured to be ignored separately for each path,
5883 * but that configuration can be overridden from the command line.
5885 static int is_submodule_ignored(const char *path, struct diff_options *options)
5888 unsigned orig_flags = options->flags;
5889 if (!DIFF_OPT_TST(options, OVERRIDE_SUBMODULE_CONFIG))
5890 set_diffopt_flags_from_submodule_config(options, path);
5891 if (DIFF_OPT_TST(options, IGNORE_SUBMODULES))
5893 options->flags = orig_flags;
5897 void diff_addremove(struct diff_options *options,
5898 int addremove, unsigned mode,
5899 const struct object_id *oid,
5901 const char *concatpath, unsigned dirty_submodule)
5903 struct diff_filespec *one, *two;
5905 if (S_ISGITLINK(mode) && is_submodule_ignored(concatpath, options))
5908 /* This may look odd, but it is a preparation for
5909 * feeding "there are unchanged files which should
5910 * not produce diffs, but when you are doing copy
5911 * detection you would need them, so here they are"
5912 * entries to the diff-core. They will be prefixed
5913 * with something like '=' or '*' (I haven't decided
5914 * which but should not make any difference).
5915 * Feeding the same new and old to diff_change()
5916 * also has the same effect.
5917 * Before the final output happens, they are pruned after
5918 * merged into rename/copy pairs as appropriate.
5920 if (DIFF_OPT_TST(options, REVERSE_DIFF))
5921 addremove = (addremove == '+' ? '-' :
5922 addremove == '-' ? '+' : addremove);
5924 if (options->prefix &&
5925 strncmp(concatpath, options->prefix, options->prefix_length))
5928 one = alloc_filespec(concatpath);
5929 two = alloc_filespec(concatpath);
5931 if (addremove != '+')
5932 fill_filespec(one, oid, oid_valid, mode);
5933 if (addremove != '-') {
5934 fill_filespec(two, oid, oid_valid, mode);
5935 two->dirty_submodule = dirty_submodule;
5938 diff_queue(&diff_queued_diff, one, two);
5939 if (!DIFF_OPT_TST(options, DIFF_FROM_CONTENTS))
5940 DIFF_OPT_SET(options, HAS_CHANGES);
5943 void diff_change(struct diff_options *options,
5944 unsigned old_mode, unsigned new_mode,
5945 const struct object_id *old_oid,
5946 const struct object_id *new_oid,
5947 int old_oid_valid, int new_oid_valid,
5948 const char *concatpath,
5949 unsigned old_dirty_submodule, unsigned new_dirty_submodule)
5951 struct diff_filespec *one, *two;
5952 struct diff_filepair *p;
5954 if (S_ISGITLINK(old_mode) && S_ISGITLINK(new_mode) &&
5955 is_submodule_ignored(concatpath, options))
5958 if (DIFF_OPT_TST(options, REVERSE_DIFF)) {
5959 SWAP(old_mode, new_mode);
5960 SWAP(old_oid, new_oid);
5961 SWAP(old_oid_valid, new_oid_valid);
5962 SWAP(old_dirty_submodule, new_dirty_submodule);
5965 if (options->prefix &&
5966 strncmp(concatpath, options->prefix, options->prefix_length))
5969 one = alloc_filespec(concatpath);
5970 two = alloc_filespec(concatpath);
5971 fill_filespec(one, old_oid, old_oid_valid, old_mode);
5972 fill_filespec(two, new_oid, new_oid_valid, new_mode);
5973 one->dirty_submodule = old_dirty_submodule;
5974 two->dirty_submodule = new_dirty_submodule;
5975 p = diff_queue(&diff_queued_diff, one, two);
5977 if (DIFF_OPT_TST(options, DIFF_FROM_CONTENTS))
5980 if (DIFF_OPT_TST(options, QUICK) && options->skip_stat_unmatch &&
5981 !diff_filespec_check_stat_unmatch(p))
5984 DIFF_OPT_SET(options, HAS_CHANGES);
5987 struct diff_filepair *diff_unmerge(struct diff_options *options, const char *path)
5989 struct diff_filepair *pair;
5990 struct diff_filespec *one, *two;
5992 if (options->prefix &&
5993 strncmp(path, options->prefix, options->prefix_length))
5996 one = alloc_filespec(path);
5997 two = alloc_filespec(path);
5998 pair = diff_queue(&diff_queued_diff, one, two);
5999 pair->is_unmerged = 1;
6003 static char *run_textconv(const char *pgm, struct diff_filespec *spec,
6006 struct diff_tempfile *temp;
6007 const char *argv[3];
6008 const char **arg = argv;
6009 struct child_process child = CHILD_PROCESS_INIT;
6010 struct strbuf buf = STRBUF_INIT;
6013 temp = prepare_temp_file(spec->path, spec);
6015 *arg++ = temp->name;
6018 child.use_shell = 1;
6021 if (start_command(&child)) {
6026 if (strbuf_read(&buf, child.out, 0) < 0)
6027 err = error("error reading from textconv command '%s'", pgm);
6030 if (finish_command(&child) || err) {
6031 strbuf_release(&buf);
6037 return strbuf_detach(&buf, outsize);
6040 size_t fill_textconv(struct userdiff_driver *driver,
6041 struct diff_filespec *df,
6047 if (!DIFF_FILE_VALID(df)) {
6051 if (diff_populate_filespec(df, 0))
6052 die("unable to read files to diff");
6057 if (!driver->textconv)
6058 die("BUG: fill_textconv called with non-textconv driver");
6060 if (driver->textconv_cache && df->oid_valid) {
6061 *outbuf = notes_cache_get(driver->textconv_cache,
6068 *outbuf = run_textconv(driver->textconv, df, &size);
6070 die("unable to read files to diff");
6072 if (driver->textconv_cache && df->oid_valid) {
6073 /* ignore errors, as we might be in a readonly repository */
6074 notes_cache_put(driver->textconv_cache, &df->oid, *outbuf,
6077 * we could save up changes and flush them all at the end,
6078 * but we would need an extra call after all diffing is done.
6079 * Since generating a cache entry is the slow path anyway,
6080 * this extra overhead probably isn't a big deal.
6082 notes_cache_write(driver->textconv_cache);
6088 int textconv_object(const char *path,
6090 const struct object_id *oid,
6093 unsigned long *buf_size)
6095 struct diff_filespec *df;
6096 struct userdiff_driver *textconv;
6098 df = alloc_filespec(path);
6099 fill_filespec(df, oid, oid_valid, mode);
6100 textconv = get_textconv(df);
6106 *buf_size = fill_textconv(textconv, df, buf);
6111 void setup_diff_pager(struct diff_options *opt)
6114 * If the user asked for our exit code, then either they want --quiet
6115 * or --exit-code. We should definitely not bother with a pager in the
6116 * former case, as we will generate no output. Since we still properly
6117 * report our exit code even when a pager is run, we _could_ run a
6118 * pager with --exit-code. But since we have not done so historically,
6119 * and because it is easy to find people oneline advising "git diff
6120 * --exit-code" in hooks and other scripts, we do not do so.
6122 if (!DIFF_OPT_TST(opt, EXIT_WITH_STATUS) &&
6123 check_pager_config("diff") != 0)