Merge branch 'jk/unavailable-can-be-missing'
[git.git] / diff.c
blob28ee05c9ad57313139906e6734b0be2221babfa1
1 /*
2 * Copyright (C) 2005 Junio C Hamano
3 */
4 #include "cache.h"
5 #include "config.h"
6 #include "tempfile.h"
7 #include "quote.h"
8 #include "diff.h"
9 #include "diffcore.h"
10 #include "delta.h"
11 #include "xdiff-interface.h"
12 #include "color.h"
13 #include "attr.h"
14 #include "run-command.h"
15 #include "utf8.h"
16 #include "userdiff.h"
17 #include "submodule-config.h"
18 #include "submodule.h"
19 #include "hashmap.h"
20 #include "ll-merge.h"
21 #include "string-list.h"
22 #include "argv-array.h"
23 #include "graph.h"
24 #include "packfile.h"
26 #ifdef NO_FAST_WORKING_DIRECTORY
27 #define FAST_WORKING_DIRECTORY 0
28 #else
29 #define FAST_WORKING_DIRECTORY 1
30 #endif
32 static int diff_detect_rename_default;
33 static int diff_indent_heuristic = 1;
34 static int diff_rename_limit_default = 400;
35 static int diff_suppress_blank_empty;
36 static int diff_use_color_default = -1;
37 static int diff_color_moved_default;
38 static int diff_context_default = 3;
39 static int diff_interhunk_context_default;
40 static const char *diff_word_regex_cfg;
41 static const char *external_diff_cmd_cfg;
42 static const char *diff_order_file_cfg;
43 int diff_auto_refresh_index = 1;
44 static int diff_mnemonic_prefix;
45 static int diff_no_prefix;
46 static int diff_stat_graph_width;
47 static int diff_dirstat_permille_default = 30;
48 static struct diff_options default_diff_options;
49 static long diff_algorithm;
50 static unsigned ws_error_highlight_default = WSEH_NEW;
52 static char diff_colors[][COLOR_MAXLEN] = {
53 GIT_COLOR_RESET,
54 GIT_COLOR_NORMAL, /* CONTEXT */
55 GIT_COLOR_BOLD, /* METAINFO */
56 GIT_COLOR_CYAN, /* FRAGINFO */
57 GIT_COLOR_RED, /* OLD */
58 GIT_COLOR_GREEN, /* NEW */
59 GIT_COLOR_YELLOW, /* COMMIT */
60 GIT_COLOR_BG_RED, /* WHITESPACE */
61 GIT_COLOR_NORMAL, /* FUNCINFO */
62 GIT_COLOR_BOLD_MAGENTA, /* OLD_MOVED */
63 GIT_COLOR_BOLD_BLUE, /* OLD_MOVED ALTERNATIVE */
64 GIT_COLOR_FAINT, /* OLD_MOVED_DIM */
65 GIT_COLOR_FAINT_ITALIC, /* OLD_MOVED_ALTERNATIVE_DIM */
66 GIT_COLOR_BOLD_CYAN, /* NEW_MOVED */
67 GIT_COLOR_BOLD_YELLOW, /* NEW_MOVED ALTERNATIVE */
68 GIT_COLOR_FAINT, /* NEW_MOVED_DIM */
69 GIT_COLOR_FAINT_ITALIC, /* NEW_MOVED_ALTERNATIVE_DIM */
72 static NORETURN void die_want_option(const char *option_name)
74 die(_("option '%s' requires a value"), option_name);
77 static int parse_diff_color_slot(const char *var)
79 if (!strcasecmp(var, "context") || !strcasecmp(var, "plain"))
80 return DIFF_CONTEXT;
81 if (!strcasecmp(var, "meta"))
82 return DIFF_METAINFO;
83 if (!strcasecmp(var, "frag"))
84 return DIFF_FRAGINFO;
85 if (!strcasecmp(var, "old"))
86 return DIFF_FILE_OLD;
87 if (!strcasecmp(var, "new"))
88 return DIFF_FILE_NEW;
89 if (!strcasecmp(var, "commit"))
90 return DIFF_COMMIT;
91 if (!strcasecmp(var, "whitespace"))
92 return DIFF_WHITESPACE;
93 if (!strcasecmp(var, "func"))
94 return DIFF_FUNCINFO;
95 if (!strcasecmp(var, "oldmoved"))
96 return DIFF_FILE_OLD_MOVED;
97 if (!strcasecmp(var, "oldmovedalternative"))
98 return DIFF_FILE_OLD_MOVED_ALT;
99 if (!strcasecmp(var, "oldmoveddimmed"))
100 return DIFF_FILE_OLD_MOVED_DIM;
101 if (!strcasecmp(var, "oldmovedalternativedimmed"))
102 return DIFF_FILE_OLD_MOVED_ALT_DIM;
103 if (!strcasecmp(var, "newmoved"))
104 return DIFF_FILE_NEW_MOVED;
105 if (!strcasecmp(var, "newmovedalternative"))
106 return DIFF_FILE_NEW_MOVED_ALT;
107 if (!strcasecmp(var, "newmoveddimmed"))
108 return DIFF_FILE_NEW_MOVED_DIM;
109 if (!strcasecmp(var, "newmovedalternativedimmed"))
110 return DIFF_FILE_NEW_MOVED_ALT_DIM;
111 return -1;
114 static int parse_dirstat_params(struct diff_options *options, const char *params_string,
115 struct strbuf *errmsg)
117 char *params_copy = xstrdup(params_string);
118 struct string_list params = STRING_LIST_INIT_NODUP;
119 int ret = 0;
120 int i;
122 if (*params_copy)
123 string_list_split_in_place(&params, params_copy, ',', -1);
124 for (i = 0; i < params.nr; i++) {
125 const char *p = params.items[i].string;
126 if (!strcmp(p, "changes")) {
127 options->flags.dirstat_by_line = 0;
128 options->flags.dirstat_by_file = 0;
129 } else if (!strcmp(p, "lines")) {
130 options->flags.dirstat_by_line = 1;
131 options->flags.dirstat_by_file = 0;
132 } else if (!strcmp(p, "files")) {
133 options->flags.dirstat_by_line = 0;
134 options->flags.dirstat_by_file = 1;
135 } else if (!strcmp(p, "noncumulative")) {
136 options->flags.dirstat_cumulative = 0;
137 } else if (!strcmp(p, "cumulative")) {
138 options->flags.dirstat_cumulative = 1;
139 } else if (isdigit(*p)) {
140 char *end;
141 int permille = strtoul(p, &end, 10) * 10;
142 if (*end == '.' && isdigit(*++end)) {
143 /* only use first digit */
144 permille += *end - '0';
145 /* .. and ignore any further digits */
146 while (isdigit(*++end))
147 ; /* nothing */
149 if (!*end)
150 options->dirstat_permille = permille;
151 else {
152 strbuf_addf(errmsg, _(" Failed to parse dirstat cut-off percentage '%s'\n"),
154 ret++;
156 } else {
157 strbuf_addf(errmsg, _(" Unknown dirstat parameter '%s'\n"), p);
158 ret++;
162 string_list_clear(&params, 0);
163 free(params_copy);
164 return ret;
167 static int parse_submodule_params(struct diff_options *options, const char *value)
169 if (!strcmp(value, "log"))
170 options->submodule_format = DIFF_SUBMODULE_LOG;
171 else if (!strcmp(value, "short"))
172 options->submodule_format = DIFF_SUBMODULE_SHORT;
173 else if (!strcmp(value, "diff"))
174 options->submodule_format = DIFF_SUBMODULE_INLINE_DIFF;
175 else
176 return -1;
177 return 0;
180 int git_config_rename(const char *var, const char *value)
182 if (!value)
183 return DIFF_DETECT_RENAME;
184 if (!strcasecmp(value, "copies") || !strcasecmp(value, "copy"))
185 return DIFF_DETECT_COPY;
186 return git_config_bool(var,value) ? DIFF_DETECT_RENAME : 0;
189 long parse_algorithm_value(const char *value)
191 if (!value)
192 return -1;
193 else if (!strcasecmp(value, "myers") || !strcasecmp(value, "default"))
194 return 0;
195 else if (!strcasecmp(value, "minimal"))
196 return XDF_NEED_MINIMAL;
197 else if (!strcasecmp(value, "patience"))
198 return XDF_PATIENCE_DIFF;
199 else if (!strcasecmp(value, "histogram"))
200 return XDF_HISTOGRAM_DIFF;
201 return -1;
204 static int parse_one_token(const char **arg, const char *token)
206 const char *rest;
207 if (skip_prefix(*arg, token, &rest) && (!*rest || *rest == ',')) {
208 *arg = rest;
209 return 1;
211 return 0;
214 static int parse_ws_error_highlight(const char *arg)
216 const char *orig_arg = arg;
217 unsigned val = 0;
219 while (*arg) {
220 if (parse_one_token(&arg, "none"))
221 val = 0;
222 else if (parse_one_token(&arg, "default"))
223 val = WSEH_NEW;
224 else if (parse_one_token(&arg, "all"))
225 val = WSEH_NEW | WSEH_OLD | WSEH_CONTEXT;
226 else if (parse_one_token(&arg, "new"))
227 val |= WSEH_NEW;
228 else if (parse_one_token(&arg, "old"))
229 val |= WSEH_OLD;
230 else if (parse_one_token(&arg, "context"))
231 val |= WSEH_CONTEXT;
232 else {
233 return -1 - (int)(arg - orig_arg);
235 if (*arg)
236 arg++;
238 return val;
242 * These are to give UI layer defaults.
243 * The core-level commands such as git-diff-files should
244 * never be affected by the setting of diff.renames
245 * the user happens to have in the configuration file.
247 void init_diff_ui_defaults(void)
249 diff_detect_rename_default = DIFF_DETECT_RENAME;
252 int git_diff_heuristic_config(const char *var, const char *value, void *cb)
254 if (!strcmp(var, "diff.indentheuristic"))
255 diff_indent_heuristic = git_config_bool(var, value);
256 return 0;
259 static int parse_color_moved(const char *arg)
261 switch (git_parse_maybe_bool(arg)) {
262 case 0:
263 return COLOR_MOVED_NO;
264 case 1:
265 return COLOR_MOVED_DEFAULT;
266 default:
267 break;
270 if (!strcmp(arg, "no"))
271 return COLOR_MOVED_NO;
272 else if (!strcmp(arg, "plain"))
273 return COLOR_MOVED_PLAIN;
274 else if (!strcmp(arg, "zebra"))
275 return COLOR_MOVED_ZEBRA;
276 else if (!strcmp(arg, "default"))
277 return COLOR_MOVED_DEFAULT;
278 else if (!strcmp(arg, "dimmed_zebra"))
279 return COLOR_MOVED_ZEBRA_DIM;
280 else
281 return error(_("color moved setting must be one of 'no', 'default', 'zebra', 'dimmed_zebra', 'plain'"));
284 int git_diff_ui_config(const char *var, const char *value, void *cb)
286 if (!strcmp(var, "diff.color") || !strcmp(var, "color.diff")) {
287 diff_use_color_default = git_config_colorbool(var, value);
288 return 0;
290 if (!strcmp(var, "diff.colormoved")) {
291 int cm = parse_color_moved(value);
292 if (cm < 0)
293 return -1;
294 diff_color_moved_default = cm;
295 return 0;
297 if (!strcmp(var, "diff.context")) {
298 diff_context_default = git_config_int(var, value);
299 if (diff_context_default < 0)
300 return -1;
301 return 0;
303 if (!strcmp(var, "diff.interhunkcontext")) {
304 diff_interhunk_context_default = git_config_int(var, value);
305 if (diff_interhunk_context_default < 0)
306 return -1;
307 return 0;
309 if (!strcmp(var, "diff.renames")) {
310 diff_detect_rename_default = git_config_rename(var, value);
311 return 0;
313 if (!strcmp(var, "diff.autorefreshindex")) {
314 diff_auto_refresh_index = git_config_bool(var, value);
315 return 0;
317 if (!strcmp(var, "diff.mnemonicprefix")) {
318 diff_mnemonic_prefix = git_config_bool(var, value);
319 return 0;
321 if (!strcmp(var, "diff.noprefix")) {
322 diff_no_prefix = git_config_bool(var, value);
323 return 0;
325 if (!strcmp(var, "diff.statgraphwidth")) {
326 diff_stat_graph_width = git_config_int(var, value);
327 return 0;
329 if (!strcmp(var, "diff.external"))
330 return git_config_string(&external_diff_cmd_cfg, var, value);
331 if (!strcmp(var, "diff.wordregex"))
332 return git_config_string(&diff_word_regex_cfg, var, value);
333 if (!strcmp(var, "diff.orderfile"))
334 return git_config_pathname(&diff_order_file_cfg, var, value);
336 if (!strcmp(var, "diff.ignoresubmodules"))
337 handle_ignore_submodules_arg(&default_diff_options, value);
339 if (!strcmp(var, "diff.submodule")) {
340 if (parse_submodule_params(&default_diff_options, value))
341 warning(_("Unknown value for 'diff.submodule' config variable: '%s'"),
342 value);
343 return 0;
346 if (!strcmp(var, "diff.algorithm")) {
347 diff_algorithm = parse_algorithm_value(value);
348 if (diff_algorithm < 0)
349 return -1;
350 return 0;
353 if (!strcmp(var, "diff.wserrorhighlight")) {
354 int val = parse_ws_error_highlight(value);
355 if (val < 0)
356 return -1;
357 ws_error_highlight_default = val;
358 return 0;
361 if (git_color_config(var, value, cb) < 0)
362 return -1;
364 return git_diff_basic_config(var, value, cb);
367 int git_diff_basic_config(const char *var, const char *value, void *cb)
369 const char *name;
371 if (!strcmp(var, "diff.renamelimit")) {
372 diff_rename_limit_default = git_config_int(var, value);
373 return 0;
376 if (userdiff_config(var, value) < 0)
377 return -1;
379 if (skip_prefix(var, "diff.color.", &name) ||
380 skip_prefix(var, "color.diff.", &name)) {
381 int slot = parse_diff_color_slot(name);
382 if (slot < 0)
383 return 0;
384 if (!value)
385 return config_error_nonbool(var);
386 return color_parse(value, diff_colors[slot]);
389 /* like GNU diff's --suppress-blank-empty option */
390 if (!strcmp(var, "diff.suppressblankempty") ||
391 /* for backwards compatibility */
392 !strcmp(var, "diff.suppress-blank-empty")) {
393 diff_suppress_blank_empty = git_config_bool(var, value);
394 return 0;
397 if (!strcmp(var, "diff.dirstat")) {
398 struct strbuf errmsg = STRBUF_INIT;
399 default_diff_options.dirstat_permille = diff_dirstat_permille_default;
400 if (parse_dirstat_params(&default_diff_options, value, &errmsg))
401 warning(_("Found errors in 'diff.dirstat' config variable:\n%s"),
402 errmsg.buf);
403 strbuf_release(&errmsg);
404 diff_dirstat_permille_default = default_diff_options.dirstat_permille;
405 return 0;
408 if (git_diff_heuristic_config(var, value, cb) < 0)
409 return -1;
411 return git_default_config(var, value, cb);
414 static char *quote_two(const char *one, const char *two)
416 int need_one = quote_c_style(one, NULL, NULL, 1);
417 int need_two = quote_c_style(two, NULL, NULL, 1);
418 struct strbuf res = STRBUF_INIT;
420 if (need_one + need_two) {
421 strbuf_addch(&res, '"');
422 quote_c_style(one, &res, NULL, 1);
423 quote_c_style(two, &res, NULL, 1);
424 strbuf_addch(&res, '"');
425 } else {
426 strbuf_addstr(&res, one);
427 strbuf_addstr(&res, two);
429 return strbuf_detach(&res, NULL);
432 static const char *external_diff(void)
434 static const char *external_diff_cmd = NULL;
435 static int done_preparing = 0;
437 if (done_preparing)
438 return external_diff_cmd;
439 external_diff_cmd = getenv("GIT_EXTERNAL_DIFF");
440 if (!external_diff_cmd)
441 external_diff_cmd = external_diff_cmd_cfg;
442 done_preparing = 1;
443 return external_diff_cmd;
447 * Keep track of files used for diffing. Sometimes such an entry
448 * refers to a temporary file, sometimes to an existing file, and
449 * sometimes to "/dev/null".
451 static struct diff_tempfile {
453 * filename external diff should read from, or NULL if this
454 * entry is currently not in use:
456 const char *name;
458 char hex[GIT_MAX_HEXSZ + 1];
459 char mode[10];
462 * If this diff_tempfile instance refers to a temporary file,
463 * this tempfile object is used to manage its lifetime.
465 struct tempfile *tempfile;
466 } diff_temp[2];
468 struct emit_callback {
469 int color_diff;
470 unsigned ws_rule;
471 int blank_at_eof_in_preimage;
472 int blank_at_eof_in_postimage;
473 int lno_in_preimage;
474 int lno_in_postimage;
475 const char **label_path;
476 struct diff_words_data *diff_words;
477 struct diff_options *opt;
478 struct strbuf *header;
481 static int count_lines(const char *data, int size)
483 int count, ch, completely_empty = 1, nl_just_seen = 0;
484 count = 0;
485 while (0 < size--) {
486 ch = *data++;
487 if (ch == '\n') {
488 count++;
489 nl_just_seen = 1;
490 completely_empty = 0;
492 else {
493 nl_just_seen = 0;
494 completely_empty = 0;
497 if (completely_empty)
498 return 0;
499 if (!nl_just_seen)
500 count++; /* no trailing newline */
501 return count;
504 static int fill_mmfile(mmfile_t *mf, struct diff_filespec *one)
506 if (!DIFF_FILE_VALID(one)) {
507 mf->ptr = (char *)""; /* does not matter */
508 mf->size = 0;
509 return 0;
511 else if (diff_populate_filespec(one, 0))
512 return -1;
514 mf->ptr = one->data;
515 mf->size = one->size;
516 return 0;
519 /* like fill_mmfile, but only for size, so we can avoid retrieving blob */
520 static unsigned long diff_filespec_size(struct diff_filespec *one)
522 if (!DIFF_FILE_VALID(one))
523 return 0;
524 diff_populate_filespec(one, CHECK_SIZE_ONLY);
525 return one->size;
528 static int count_trailing_blank(mmfile_t *mf, unsigned ws_rule)
530 char *ptr = mf->ptr;
531 long size = mf->size;
532 int cnt = 0;
534 if (!size)
535 return cnt;
536 ptr += size - 1; /* pointing at the very end */
537 if (*ptr != '\n')
538 ; /* incomplete line */
539 else
540 ptr--; /* skip the last LF */
541 while (mf->ptr < ptr) {
542 char *prev_eol;
543 for (prev_eol = ptr; mf->ptr <= prev_eol; prev_eol--)
544 if (*prev_eol == '\n')
545 break;
546 if (!ws_blank_line(prev_eol + 1, ptr - prev_eol, ws_rule))
547 break;
548 cnt++;
549 ptr = prev_eol - 1;
551 return cnt;
554 static void check_blank_at_eof(mmfile_t *mf1, mmfile_t *mf2,
555 struct emit_callback *ecbdata)
557 int l1, l2, at;
558 unsigned ws_rule = ecbdata->ws_rule;
559 l1 = count_trailing_blank(mf1, ws_rule);
560 l2 = count_trailing_blank(mf2, ws_rule);
561 if (l2 <= l1) {
562 ecbdata->blank_at_eof_in_preimage = 0;
563 ecbdata->blank_at_eof_in_postimage = 0;
564 return;
566 at = count_lines(mf1->ptr, mf1->size);
567 ecbdata->blank_at_eof_in_preimage = (at - l1) + 1;
569 at = count_lines(mf2->ptr, mf2->size);
570 ecbdata->blank_at_eof_in_postimage = (at - l2) + 1;
573 static void emit_line_0(struct diff_options *o, const char *set, const char *reset,
574 int first, const char *line, int len)
576 int has_trailing_newline, has_trailing_carriage_return;
577 int nofirst;
578 FILE *file = o->file;
580 fputs(diff_line_prefix(o), file);
582 if (len == 0) {
583 has_trailing_newline = (first == '\n');
584 has_trailing_carriage_return = (!has_trailing_newline &&
585 (first == '\r'));
586 nofirst = has_trailing_newline || has_trailing_carriage_return;
587 } else {
588 has_trailing_newline = (len > 0 && line[len-1] == '\n');
589 if (has_trailing_newline)
590 len--;
591 has_trailing_carriage_return = (len > 0 && line[len-1] == '\r');
592 if (has_trailing_carriage_return)
593 len--;
594 nofirst = 0;
597 if (len || !nofirst) {
598 fputs(set, file);
599 if (!nofirst)
600 fputc(first, file);
601 fwrite(line, len, 1, file);
602 fputs(reset, file);
604 if (has_trailing_carriage_return)
605 fputc('\r', file);
606 if (has_trailing_newline)
607 fputc('\n', file);
610 static void emit_line(struct diff_options *o, const char *set, const char *reset,
611 const char *line, int len)
613 emit_line_0(o, set, reset, line[0], line+1, len-1);
616 enum diff_symbol {
617 DIFF_SYMBOL_BINARY_DIFF_HEADER,
618 DIFF_SYMBOL_BINARY_DIFF_HEADER_DELTA,
619 DIFF_SYMBOL_BINARY_DIFF_HEADER_LITERAL,
620 DIFF_SYMBOL_BINARY_DIFF_BODY,
621 DIFF_SYMBOL_BINARY_DIFF_FOOTER,
622 DIFF_SYMBOL_STATS_SUMMARY_NO_FILES,
623 DIFF_SYMBOL_STATS_SUMMARY_ABBREV,
624 DIFF_SYMBOL_STATS_SUMMARY_INSERTS_DELETES,
625 DIFF_SYMBOL_STATS_LINE,
626 DIFF_SYMBOL_WORD_DIFF,
627 DIFF_SYMBOL_STAT_SEP,
628 DIFF_SYMBOL_SUMMARY,
629 DIFF_SYMBOL_SUBMODULE_ADD,
630 DIFF_SYMBOL_SUBMODULE_DEL,
631 DIFF_SYMBOL_SUBMODULE_UNTRACKED,
632 DIFF_SYMBOL_SUBMODULE_MODIFIED,
633 DIFF_SYMBOL_SUBMODULE_HEADER,
634 DIFF_SYMBOL_SUBMODULE_ERROR,
635 DIFF_SYMBOL_SUBMODULE_PIPETHROUGH,
636 DIFF_SYMBOL_REWRITE_DIFF,
637 DIFF_SYMBOL_BINARY_FILES,
638 DIFF_SYMBOL_HEADER,
639 DIFF_SYMBOL_FILEPAIR_PLUS,
640 DIFF_SYMBOL_FILEPAIR_MINUS,
641 DIFF_SYMBOL_WORDS_PORCELAIN,
642 DIFF_SYMBOL_WORDS,
643 DIFF_SYMBOL_CONTEXT,
644 DIFF_SYMBOL_CONTEXT_INCOMPLETE,
645 DIFF_SYMBOL_PLUS,
646 DIFF_SYMBOL_MINUS,
647 DIFF_SYMBOL_NO_LF_EOF,
648 DIFF_SYMBOL_CONTEXT_FRAGINFO,
649 DIFF_SYMBOL_CONTEXT_MARKER,
650 DIFF_SYMBOL_SEPARATOR
653 * Flags for content lines:
654 * 0..12 are whitespace rules
655 * 13-15 are WSEH_NEW | WSEH_OLD | WSEH_CONTEXT
656 * 16 is marking if the line is blank at EOF
658 #define DIFF_SYMBOL_CONTENT_BLANK_LINE_EOF (1<<16)
659 #define DIFF_SYMBOL_MOVED_LINE (1<<17)
660 #define DIFF_SYMBOL_MOVED_LINE_ALT (1<<18)
661 #define DIFF_SYMBOL_MOVED_LINE_UNINTERESTING (1<<19)
662 #define DIFF_SYMBOL_CONTENT_WS_MASK (WSEH_NEW | WSEH_OLD | WSEH_CONTEXT | WS_RULE_MASK)
665 * This struct is used when we need to buffer the output of the diff output.
667 * NEEDSWORK: Instead of storing a copy of the line, add an offset pointer
668 * into the pre/post image file. This pointer could be a union with the
669 * line pointer. By storing an offset into the file instead of the literal line,
670 * we can decrease the memory footprint for the buffered output. At first we
671 * may want to only have indirection for the content lines, but we could also
672 * enhance the state for emitting prefabricated lines, e.g. the similarity
673 * score line or hunk/file headers would only need to store a number or path
674 * and then the output can be constructed later on depending on state.
676 struct emitted_diff_symbol {
677 const char *line;
678 int len;
679 int flags;
680 enum diff_symbol s;
682 #define EMITTED_DIFF_SYMBOL_INIT {NULL}
684 struct emitted_diff_symbols {
685 struct emitted_diff_symbol *buf;
686 int nr, alloc;
688 #define EMITTED_DIFF_SYMBOLS_INIT {NULL, 0, 0}
690 static void append_emitted_diff_symbol(struct diff_options *o,
691 struct emitted_diff_symbol *e)
693 struct emitted_diff_symbol *f;
695 ALLOC_GROW(o->emitted_symbols->buf,
696 o->emitted_symbols->nr + 1,
697 o->emitted_symbols->alloc);
698 f = &o->emitted_symbols->buf[o->emitted_symbols->nr++];
700 memcpy(f, e, sizeof(struct emitted_diff_symbol));
701 f->line = e->line ? xmemdupz(e->line, e->len) : NULL;
704 struct moved_entry {
705 struct hashmap_entry ent;
706 const struct emitted_diff_symbol *es;
707 struct moved_entry *next_line;
710 static int moved_entry_cmp(const struct diff_options *diffopt,
711 const struct moved_entry *a,
712 const struct moved_entry *b,
713 const void *keydata)
715 return !xdiff_compare_lines(a->es->line, a->es->len,
716 b->es->line, b->es->len,
717 diffopt->xdl_opts);
720 static struct moved_entry *prepare_entry(struct diff_options *o,
721 int line_no)
723 struct moved_entry *ret = xmalloc(sizeof(*ret));
724 struct emitted_diff_symbol *l = &o->emitted_symbols->buf[line_no];
726 ret->ent.hash = xdiff_hash_string(l->line, l->len, o->xdl_opts);
727 ret->es = l;
728 ret->next_line = NULL;
730 return ret;
733 static void add_lines_to_move_detection(struct diff_options *o,
734 struct hashmap *add_lines,
735 struct hashmap *del_lines)
737 struct moved_entry *prev_line = NULL;
739 int n;
740 for (n = 0; n < o->emitted_symbols->nr; n++) {
741 struct hashmap *hm;
742 struct moved_entry *key;
744 switch (o->emitted_symbols->buf[n].s) {
745 case DIFF_SYMBOL_PLUS:
746 hm = add_lines;
747 break;
748 case DIFF_SYMBOL_MINUS:
749 hm = del_lines;
750 break;
751 default:
752 prev_line = NULL;
753 continue;
756 key = prepare_entry(o, n);
757 if (prev_line && prev_line->es->s == o->emitted_symbols->buf[n].s)
758 prev_line->next_line = key;
760 hashmap_add(hm, key);
761 prev_line = key;
765 static int shrink_potential_moved_blocks(struct moved_entry **pmb,
766 int pmb_nr)
768 int lp, rp;
770 /* Shrink the set of potential block to the remaining running */
771 for (lp = 0, rp = pmb_nr - 1; lp <= rp;) {
772 while (lp < pmb_nr && pmb[lp])
773 lp++;
774 /* lp points at the first NULL now */
776 while (rp > -1 && !pmb[rp])
777 rp--;
778 /* rp points at the last non-NULL */
780 if (lp < pmb_nr && rp > -1 && lp < rp) {
781 pmb[lp] = pmb[rp];
782 pmb[rp] = NULL;
783 rp--;
784 lp++;
788 /* Remember the number of running sets */
789 return rp + 1;
793 * If o->color_moved is COLOR_MOVED_PLAIN, this function does nothing.
795 * Otherwise, if the last block has fewer alphanumeric characters than
796 * COLOR_MOVED_MIN_ALNUM_COUNT, unset DIFF_SYMBOL_MOVED_LINE on all lines in
797 * that block.
799 * The last block consists of the (n - block_length)'th line up to but not
800 * including the nth line.
802 * NEEDSWORK: This uses the same heuristic as blame_entry_score() in blame.c.
803 * Think of a way to unify them.
805 static void adjust_last_block(struct diff_options *o, int n, int block_length)
807 int i, alnum_count = 0;
808 if (o->color_moved == COLOR_MOVED_PLAIN)
809 return;
810 for (i = 1; i < block_length + 1; i++) {
811 const char *c = o->emitted_symbols->buf[n - i].line;
812 for (; *c; c++) {
813 if (!isalnum(*c))
814 continue;
815 alnum_count++;
816 if (alnum_count >= COLOR_MOVED_MIN_ALNUM_COUNT)
817 return;
820 for (i = 1; i < block_length + 1; i++)
821 o->emitted_symbols->buf[n - i].flags &= ~DIFF_SYMBOL_MOVED_LINE;
824 /* Find blocks of moved code, delegate actual coloring decision to helper */
825 static void mark_color_as_moved(struct diff_options *o,
826 struct hashmap *add_lines,
827 struct hashmap *del_lines)
829 struct moved_entry **pmb = NULL; /* potentially moved blocks */
830 int pmb_nr = 0, pmb_alloc = 0;
831 int n, flipped_block = 1, block_length = 0;
834 for (n = 0; n < o->emitted_symbols->nr; n++) {
835 struct hashmap *hm = NULL;
836 struct moved_entry *key;
837 struct moved_entry *match = NULL;
838 struct emitted_diff_symbol *l = &o->emitted_symbols->buf[n];
839 int i;
841 switch (l->s) {
842 case DIFF_SYMBOL_PLUS:
843 hm = del_lines;
844 key = prepare_entry(o, n);
845 match = hashmap_get(hm, key, o);
846 free(key);
847 break;
848 case DIFF_SYMBOL_MINUS:
849 hm = add_lines;
850 key = prepare_entry(o, n);
851 match = hashmap_get(hm, key, o);
852 free(key);
853 break;
854 default:
855 flipped_block = 1;
858 if (!match) {
859 adjust_last_block(o, n, block_length);
860 pmb_nr = 0;
861 block_length = 0;
862 continue;
865 l->flags |= DIFF_SYMBOL_MOVED_LINE;
867 if (o->color_moved == COLOR_MOVED_PLAIN)
868 continue;
870 /* Check any potential block runs, advance each or nullify */
871 for (i = 0; i < pmb_nr; i++) {
872 struct moved_entry *p = pmb[i];
873 struct moved_entry *pnext = (p && p->next_line) ?
874 p->next_line : NULL;
875 if (pnext && !hm->cmpfn(o, pnext, match, NULL)) {
876 pmb[i] = p->next_line;
877 } else {
878 pmb[i] = NULL;
882 pmb_nr = shrink_potential_moved_blocks(pmb, pmb_nr);
884 if (pmb_nr == 0) {
886 * The current line is the start of a new block.
887 * Setup the set of potential blocks.
889 for (; match; match = hashmap_get_next(hm, match)) {
890 ALLOC_GROW(pmb, pmb_nr + 1, pmb_alloc);
891 pmb[pmb_nr++] = match;
894 flipped_block = (flipped_block + 1) % 2;
896 adjust_last_block(o, n, block_length);
897 block_length = 0;
900 block_length++;
902 if (flipped_block)
903 l->flags |= DIFF_SYMBOL_MOVED_LINE_ALT;
905 adjust_last_block(o, n, block_length);
907 free(pmb);
910 #define DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK \
911 (DIFF_SYMBOL_MOVED_LINE | DIFF_SYMBOL_MOVED_LINE_ALT)
912 static void dim_moved_lines(struct diff_options *o)
914 int n;
915 for (n = 0; n < o->emitted_symbols->nr; n++) {
916 struct emitted_diff_symbol *prev = (n != 0) ?
917 &o->emitted_symbols->buf[n - 1] : NULL;
918 struct emitted_diff_symbol *l = &o->emitted_symbols->buf[n];
919 struct emitted_diff_symbol *next =
920 (n < o->emitted_symbols->nr - 1) ?
921 &o->emitted_symbols->buf[n + 1] : NULL;
923 /* Not a plus or minus line? */
924 if (l->s != DIFF_SYMBOL_PLUS && l->s != DIFF_SYMBOL_MINUS)
925 continue;
927 /* Not a moved line? */
928 if (!(l->flags & DIFF_SYMBOL_MOVED_LINE))
929 continue;
932 * If prev or next are not a plus or minus line,
933 * pretend they don't exist
935 if (prev && prev->s != DIFF_SYMBOL_PLUS &&
936 prev->s != DIFF_SYMBOL_MINUS)
937 prev = NULL;
938 if (next && next->s != DIFF_SYMBOL_PLUS &&
939 next->s != DIFF_SYMBOL_MINUS)
940 next = NULL;
942 /* Inside a block? */
943 if ((prev &&
944 (prev->flags & DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK) ==
945 (l->flags & DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK)) &&
946 (next &&
947 (next->flags & DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK) ==
948 (l->flags & DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK))) {
949 l->flags |= DIFF_SYMBOL_MOVED_LINE_UNINTERESTING;
950 continue;
953 /* Check if we are at an interesting bound: */
954 if (prev && (prev->flags & DIFF_SYMBOL_MOVED_LINE) &&
955 (prev->flags & DIFF_SYMBOL_MOVED_LINE_ALT) !=
956 (l->flags & DIFF_SYMBOL_MOVED_LINE_ALT))
957 continue;
958 if (next && (next->flags & DIFF_SYMBOL_MOVED_LINE) &&
959 (next->flags & DIFF_SYMBOL_MOVED_LINE_ALT) !=
960 (l->flags & DIFF_SYMBOL_MOVED_LINE_ALT))
961 continue;
964 * The boundary to prev and next are not interesting,
965 * so this line is not interesting as a whole
967 l->flags |= DIFF_SYMBOL_MOVED_LINE_UNINTERESTING;
971 static void emit_line_ws_markup(struct diff_options *o,
972 const char *set, const char *reset,
973 const char *line, int len, char sign,
974 unsigned ws_rule, int blank_at_eof)
976 const char *ws = NULL;
978 if (o->ws_error_highlight & ws_rule) {
979 ws = diff_get_color_opt(o, DIFF_WHITESPACE);
980 if (!*ws)
981 ws = NULL;
984 if (!ws)
985 emit_line_0(o, set, reset, sign, line, len);
986 else if (blank_at_eof)
987 /* Blank line at EOF - paint '+' as well */
988 emit_line_0(o, ws, reset, sign, line, len);
989 else {
990 /* Emit just the prefix, then the rest. */
991 emit_line_0(o, set, reset, sign, "", 0);
992 ws_check_emit(line, len, ws_rule,
993 o->file, set, reset, ws);
997 static void emit_diff_symbol_from_struct(struct diff_options *o,
998 struct emitted_diff_symbol *eds)
1000 static const char *nneof = " No newline at end of file\n";
1001 const char *context, *reset, *set, *meta, *fraginfo;
1002 struct strbuf sb = STRBUF_INIT;
1004 enum diff_symbol s = eds->s;
1005 const char *line = eds->line;
1006 int len = eds->len;
1007 unsigned flags = eds->flags;
1009 switch (s) {
1010 case DIFF_SYMBOL_NO_LF_EOF:
1011 context = diff_get_color_opt(o, DIFF_CONTEXT);
1012 reset = diff_get_color_opt(o, DIFF_RESET);
1013 putc('\n', o->file);
1014 emit_line_0(o, context, reset, '\\',
1015 nneof, strlen(nneof));
1016 break;
1017 case DIFF_SYMBOL_SUBMODULE_HEADER:
1018 case DIFF_SYMBOL_SUBMODULE_ERROR:
1019 case DIFF_SYMBOL_SUBMODULE_PIPETHROUGH:
1020 case DIFF_SYMBOL_STATS_SUMMARY_INSERTS_DELETES:
1021 case DIFF_SYMBOL_SUMMARY:
1022 case DIFF_SYMBOL_STATS_LINE:
1023 case DIFF_SYMBOL_BINARY_DIFF_BODY:
1024 case DIFF_SYMBOL_CONTEXT_FRAGINFO:
1025 emit_line(o, "", "", line, len);
1026 break;
1027 case DIFF_SYMBOL_CONTEXT_INCOMPLETE:
1028 case DIFF_SYMBOL_CONTEXT_MARKER:
1029 context = diff_get_color_opt(o, DIFF_CONTEXT);
1030 reset = diff_get_color_opt(o, DIFF_RESET);
1031 emit_line(o, context, reset, line, len);
1032 break;
1033 case DIFF_SYMBOL_SEPARATOR:
1034 fprintf(o->file, "%s%c",
1035 diff_line_prefix(o),
1036 o->line_termination);
1037 break;
1038 case DIFF_SYMBOL_CONTEXT:
1039 set = diff_get_color_opt(o, DIFF_CONTEXT);
1040 reset = diff_get_color_opt(o, DIFF_RESET);
1041 emit_line_ws_markup(o, set, reset, line, len, ' ',
1042 flags & (DIFF_SYMBOL_CONTENT_WS_MASK), 0);
1043 break;
1044 case DIFF_SYMBOL_PLUS:
1045 switch (flags & (DIFF_SYMBOL_MOVED_LINE |
1046 DIFF_SYMBOL_MOVED_LINE_ALT |
1047 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING)) {
1048 case DIFF_SYMBOL_MOVED_LINE |
1049 DIFF_SYMBOL_MOVED_LINE_ALT |
1050 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING:
1051 set = diff_get_color_opt(o, DIFF_FILE_NEW_MOVED_ALT_DIM);
1052 break;
1053 case DIFF_SYMBOL_MOVED_LINE |
1054 DIFF_SYMBOL_MOVED_LINE_ALT:
1055 set = diff_get_color_opt(o, DIFF_FILE_NEW_MOVED_ALT);
1056 break;
1057 case DIFF_SYMBOL_MOVED_LINE |
1058 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING:
1059 set = diff_get_color_opt(o, DIFF_FILE_NEW_MOVED_DIM);
1060 break;
1061 case DIFF_SYMBOL_MOVED_LINE:
1062 set = diff_get_color_opt(o, DIFF_FILE_NEW_MOVED);
1063 break;
1064 default:
1065 set = diff_get_color_opt(o, DIFF_FILE_NEW);
1067 reset = diff_get_color_opt(o, DIFF_RESET);
1068 emit_line_ws_markup(o, set, reset, line, len, '+',
1069 flags & DIFF_SYMBOL_CONTENT_WS_MASK,
1070 flags & DIFF_SYMBOL_CONTENT_BLANK_LINE_EOF);
1071 break;
1072 case DIFF_SYMBOL_MINUS:
1073 switch (flags & (DIFF_SYMBOL_MOVED_LINE |
1074 DIFF_SYMBOL_MOVED_LINE_ALT |
1075 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING)) {
1076 case DIFF_SYMBOL_MOVED_LINE |
1077 DIFF_SYMBOL_MOVED_LINE_ALT |
1078 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING:
1079 set = diff_get_color_opt(o, DIFF_FILE_OLD_MOVED_ALT_DIM);
1080 break;
1081 case DIFF_SYMBOL_MOVED_LINE |
1082 DIFF_SYMBOL_MOVED_LINE_ALT:
1083 set = diff_get_color_opt(o, DIFF_FILE_OLD_MOVED_ALT);
1084 break;
1085 case DIFF_SYMBOL_MOVED_LINE |
1086 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING:
1087 set = diff_get_color_opt(o, DIFF_FILE_OLD_MOVED_DIM);
1088 break;
1089 case DIFF_SYMBOL_MOVED_LINE:
1090 set = diff_get_color_opt(o, DIFF_FILE_OLD_MOVED);
1091 break;
1092 default:
1093 set = diff_get_color_opt(o, DIFF_FILE_OLD);
1095 reset = diff_get_color_opt(o, DIFF_RESET);
1096 emit_line_ws_markup(o, set, reset, line, len, '-',
1097 flags & DIFF_SYMBOL_CONTENT_WS_MASK, 0);
1098 break;
1099 case DIFF_SYMBOL_WORDS_PORCELAIN:
1100 context = diff_get_color_opt(o, DIFF_CONTEXT);
1101 reset = diff_get_color_opt(o, DIFF_RESET);
1102 emit_line(o, context, reset, line, len);
1103 fputs("~\n", o->file);
1104 break;
1105 case DIFF_SYMBOL_WORDS:
1106 context = diff_get_color_opt(o, DIFF_CONTEXT);
1107 reset = diff_get_color_opt(o, DIFF_RESET);
1109 * Skip the prefix character, if any. With
1110 * diff_suppress_blank_empty, there may be
1111 * none.
1113 if (line[0] != '\n') {
1114 line++;
1115 len--;
1117 emit_line(o, context, reset, line, len);
1118 break;
1119 case DIFF_SYMBOL_FILEPAIR_PLUS:
1120 meta = diff_get_color_opt(o, DIFF_METAINFO);
1121 reset = diff_get_color_opt(o, DIFF_RESET);
1122 fprintf(o->file, "%s%s+++ %s%s%s\n", diff_line_prefix(o), meta,
1123 line, reset,
1124 strchr(line, ' ') ? "\t" : "");
1125 break;
1126 case DIFF_SYMBOL_FILEPAIR_MINUS:
1127 meta = diff_get_color_opt(o, DIFF_METAINFO);
1128 reset = diff_get_color_opt(o, DIFF_RESET);
1129 fprintf(o->file, "%s%s--- %s%s%s\n", diff_line_prefix(o), meta,
1130 line, reset,
1131 strchr(line, ' ') ? "\t" : "");
1132 break;
1133 case DIFF_SYMBOL_BINARY_FILES:
1134 case DIFF_SYMBOL_HEADER:
1135 fprintf(o->file, "%s", line);
1136 break;
1137 case DIFF_SYMBOL_BINARY_DIFF_HEADER:
1138 fprintf(o->file, "%sGIT binary patch\n", diff_line_prefix(o));
1139 break;
1140 case DIFF_SYMBOL_BINARY_DIFF_HEADER_DELTA:
1141 fprintf(o->file, "%sdelta %s\n", diff_line_prefix(o), line);
1142 break;
1143 case DIFF_SYMBOL_BINARY_DIFF_HEADER_LITERAL:
1144 fprintf(o->file, "%sliteral %s\n", diff_line_prefix(o), line);
1145 break;
1146 case DIFF_SYMBOL_BINARY_DIFF_FOOTER:
1147 fputs(diff_line_prefix(o), o->file);
1148 fputc('\n', o->file);
1149 break;
1150 case DIFF_SYMBOL_REWRITE_DIFF:
1151 fraginfo = diff_get_color(o->use_color, DIFF_FRAGINFO);
1152 reset = diff_get_color_opt(o, DIFF_RESET);
1153 emit_line(o, fraginfo, reset, line, len);
1154 break;
1155 case DIFF_SYMBOL_SUBMODULE_ADD:
1156 set = diff_get_color_opt(o, DIFF_FILE_NEW);
1157 reset = diff_get_color_opt(o, DIFF_RESET);
1158 emit_line(o, set, reset, line, len);
1159 break;
1160 case DIFF_SYMBOL_SUBMODULE_DEL:
1161 set = diff_get_color_opt(o, DIFF_FILE_OLD);
1162 reset = diff_get_color_opt(o, DIFF_RESET);
1163 emit_line(o, set, reset, line, len);
1164 break;
1165 case DIFF_SYMBOL_SUBMODULE_UNTRACKED:
1166 fprintf(o->file, "%sSubmodule %s contains untracked content\n",
1167 diff_line_prefix(o), line);
1168 break;
1169 case DIFF_SYMBOL_SUBMODULE_MODIFIED:
1170 fprintf(o->file, "%sSubmodule %s contains modified content\n",
1171 diff_line_prefix(o), line);
1172 break;
1173 case DIFF_SYMBOL_STATS_SUMMARY_NO_FILES:
1174 emit_line(o, "", "", " 0 files changed\n",
1175 strlen(" 0 files changed\n"));
1176 break;
1177 case DIFF_SYMBOL_STATS_SUMMARY_ABBREV:
1178 emit_line(o, "", "", " ...\n", strlen(" ...\n"));
1179 break;
1180 case DIFF_SYMBOL_WORD_DIFF:
1181 fprintf(o->file, "%.*s", len, line);
1182 break;
1183 case DIFF_SYMBOL_STAT_SEP:
1184 fputs(o->stat_sep, o->file);
1185 break;
1186 default:
1187 BUG("unknown diff symbol");
1189 strbuf_release(&sb);
1192 static void emit_diff_symbol(struct diff_options *o, enum diff_symbol s,
1193 const char *line, int len, unsigned flags)
1195 struct emitted_diff_symbol e = {line, len, flags, s};
1197 if (o->emitted_symbols)
1198 append_emitted_diff_symbol(o, &e);
1199 else
1200 emit_diff_symbol_from_struct(o, &e);
1203 void diff_emit_submodule_del(struct diff_options *o, const char *line)
1205 emit_diff_symbol(o, DIFF_SYMBOL_SUBMODULE_DEL, line, strlen(line), 0);
1208 void diff_emit_submodule_add(struct diff_options *o, const char *line)
1210 emit_diff_symbol(o, DIFF_SYMBOL_SUBMODULE_ADD, line, strlen(line), 0);
1213 void diff_emit_submodule_untracked(struct diff_options *o, const char *path)
1215 emit_diff_symbol(o, DIFF_SYMBOL_SUBMODULE_UNTRACKED,
1216 path, strlen(path), 0);
1219 void diff_emit_submodule_modified(struct diff_options *o, const char *path)
1221 emit_diff_symbol(o, DIFF_SYMBOL_SUBMODULE_MODIFIED,
1222 path, strlen(path), 0);
1225 void diff_emit_submodule_header(struct diff_options *o, const char *header)
1227 emit_diff_symbol(o, DIFF_SYMBOL_SUBMODULE_HEADER,
1228 header, strlen(header), 0);
1231 void diff_emit_submodule_error(struct diff_options *o, const char *err)
1233 emit_diff_symbol(o, DIFF_SYMBOL_SUBMODULE_ERROR, err, strlen(err), 0);
1236 void diff_emit_submodule_pipethrough(struct diff_options *o,
1237 const char *line, int len)
1239 emit_diff_symbol(o, DIFF_SYMBOL_SUBMODULE_PIPETHROUGH, line, len, 0);
1242 static int new_blank_line_at_eof(struct emit_callback *ecbdata, const char *line, int len)
1244 if (!((ecbdata->ws_rule & WS_BLANK_AT_EOF) &&
1245 ecbdata->blank_at_eof_in_preimage &&
1246 ecbdata->blank_at_eof_in_postimage &&
1247 ecbdata->blank_at_eof_in_preimage <= ecbdata->lno_in_preimage &&
1248 ecbdata->blank_at_eof_in_postimage <= ecbdata->lno_in_postimage))
1249 return 0;
1250 return ws_blank_line(line, len, ecbdata->ws_rule);
1253 static void emit_add_line(const char *reset,
1254 struct emit_callback *ecbdata,
1255 const char *line, int len)
1257 unsigned flags = WSEH_NEW | ecbdata->ws_rule;
1258 if (new_blank_line_at_eof(ecbdata, line, len))
1259 flags |= DIFF_SYMBOL_CONTENT_BLANK_LINE_EOF;
1261 emit_diff_symbol(ecbdata->opt, DIFF_SYMBOL_PLUS, line, len, flags);
1264 static void emit_del_line(const char *reset,
1265 struct emit_callback *ecbdata,
1266 const char *line, int len)
1268 unsigned flags = WSEH_OLD | ecbdata->ws_rule;
1269 emit_diff_symbol(ecbdata->opt, DIFF_SYMBOL_MINUS, line, len, flags);
1272 static void emit_context_line(const char *reset,
1273 struct emit_callback *ecbdata,
1274 const char *line, int len)
1276 unsigned flags = WSEH_CONTEXT | ecbdata->ws_rule;
1277 emit_diff_symbol(ecbdata->opt, DIFF_SYMBOL_CONTEXT, line, len, flags);
1280 static void emit_hunk_header(struct emit_callback *ecbdata,
1281 const char *line, int len)
1283 const char *context = diff_get_color(ecbdata->color_diff, DIFF_CONTEXT);
1284 const char *frag = diff_get_color(ecbdata->color_diff, DIFF_FRAGINFO);
1285 const char *func = diff_get_color(ecbdata->color_diff, DIFF_FUNCINFO);
1286 const char *reset = diff_get_color(ecbdata->color_diff, DIFF_RESET);
1287 static const char atat[2] = { '@', '@' };
1288 const char *cp, *ep;
1289 struct strbuf msgbuf = STRBUF_INIT;
1290 int org_len = len;
1291 int i = 1;
1294 * As a hunk header must begin with "@@ -<old>, +<new> @@",
1295 * it always is at least 10 bytes long.
1297 if (len < 10 ||
1298 memcmp(line, atat, 2) ||
1299 !(ep = memmem(line + 2, len - 2, atat, 2))) {
1300 emit_diff_symbol(ecbdata->opt,
1301 DIFF_SYMBOL_CONTEXT_MARKER, line, len, 0);
1302 return;
1304 ep += 2; /* skip over @@ */
1306 /* The hunk header in fraginfo color */
1307 strbuf_addstr(&msgbuf, frag);
1308 strbuf_add(&msgbuf, line, ep - line);
1309 strbuf_addstr(&msgbuf, reset);
1312 * trailing "\r\n"
1314 for ( ; i < 3; i++)
1315 if (line[len - i] == '\r' || line[len - i] == '\n')
1316 len--;
1318 /* blank before the func header */
1319 for (cp = ep; ep - line < len; ep++)
1320 if (*ep != ' ' && *ep != '\t')
1321 break;
1322 if (ep != cp) {
1323 strbuf_addstr(&msgbuf, context);
1324 strbuf_add(&msgbuf, cp, ep - cp);
1325 strbuf_addstr(&msgbuf, reset);
1328 if (ep < line + len) {
1329 strbuf_addstr(&msgbuf, func);
1330 strbuf_add(&msgbuf, ep, line + len - ep);
1331 strbuf_addstr(&msgbuf, reset);
1334 strbuf_add(&msgbuf, line + len, org_len - len);
1335 strbuf_complete_line(&msgbuf);
1336 emit_diff_symbol(ecbdata->opt,
1337 DIFF_SYMBOL_CONTEXT_FRAGINFO, msgbuf.buf, msgbuf.len, 0);
1338 strbuf_release(&msgbuf);
1341 static struct diff_tempfile *claim_diff_tempfile(void) {
1342 int i;
1343 for (i = 0; i < ARRAY_SIZE(diff_temp); i++)
1344 if (!diff_temp[i].name)
1345 return diff_temp + i;
1346 BUG("diff is failing to clean up its tempfiles");
1349 static void remove_tempfile(void)
1351 int i;
1352 for (i = 0; i < ARRAY_SIZE(diff_temp); i++) {
1353 if (is_tempfile_active(diff_temp[i].tempfile))
1354 delete_tempfile(&diff_temp[i].tempfile);
1355 diff_temp[i].name = NULL;
1359 static void add_line_count(struct strbuf *out, int count)
1361 switch (count) {
1362 case 0:
1363 strbuf_addstr(out, "0,0");
1364 break;
1365 case 1:
1366 strbuf_addstr(out, "1");
1367 break;
1368 default:
1369 strbuf_addf(out, "1,%d", count);
1370 break;
1374 static void emit_rewrite_lines(struct emit_callback *ecb,
1375 int prefix, const char *data, int size)
1377 const char *endp = NULL;
1378 const char *reset = diff_get_color(ecb->color_diff, DIFF_RESET);
1380 while (0 < size) {
1381 int len;
1383 endp = memchr(data, '\n', size);
1384 len = endp ? (endp - data + 1) : size;
1385 if (prefix != '+') {
1386 ecb->lno_in_preimage++;
1387 emit_del_line(reset, ecb, data, len);
1388 } else {
1389 ecb->lno_in_postimage++;
1390 emit_add_line(reset, ecb, data, len);
1392 size -= len;
1393 data += len;
1395 if (!endp)
1396 emit_diff_symbol(ecb->opt, DIFF_SYMBOL_NO_LF_EOF, NULL, 0, 0);
1399 static void emit_rewrite_diff(const char *name_a,
1400 const char *name_b,
1401 struct diff_filespec *one,
1402 struct diff_filespec *two,
1403 struct userdiff_driver *textconv_one,
1404 struct userdiff_driver *textconv_two,
1405 struct diff_options *o)
1407 int lc_a, lc_b;
1408 static struct strbuf a_name = STRBUF_INIT, b_name = STRBUF_INIT;
1409 const char *a_prefix, *b_prefix;
1410 char *data_one, *data_two;
1411 size_t size_one, size_two;
1412 struct emit_callback ecbdata;
1413 struct strbuf out = STRBUF_INIT;
1415 if (diff_mnemonic_prefix && o->flags.reverse_diff) {
1416 a_prefix = o->b_prefix;
1417 b_prefix = o->a_prefix;
1418 } else {
1419 a_prefix = o->a_prefix;
1420 b_prefix = o->b_prefix;
1423 name_a += (*name_a == '/');
1424 name_b += (*name_b == '/');
1426 strbuf_reset(&a_name);
1427 strbuf_reset(&b_name);
1428 quote_two_c_style(&a_name, a_prefix, name_a, 0);
1429 quote_two_c_style(&b_name, b_prefix, name_b, 0);
1431 size_one = fill_textconv(textconv_one, one, &data_one);
1432 size_two = fill_textconv(textconv_two, two, &data_two);
1434 memset(&ecbdata, 0, sizeof(ecbdata));
1435 ecbdata.color_diff = want_color(o->use_color);
1436 ecbdata.ws_rule = whitespace_rule(name_b);
1437 ecbdata.opt = o;
1438 if (ecbdata.ws_rule & WS_BLANK_AT_EOF) {
1439 mmfile_t mf1, mf2;
1440 mf1.ptr = (char *)data_one;
1441 mf2.ptr = (char *)data_two;
1442 mf1.size = size_one;
1443 mf2.size = size_two;
1444 check_blank_at_eof(&mf1, &mf2, &ecbdata);
1446 ecbdata.lno_in_preimage = 1;
1447 ecbdata.lno_in_postimage = 1;
1449 lc_a = count_lines(data_one, size_one);
1450 lc_b = count_lines(data_two, size_two);
1452 emit_diff_symbol(o, DIFF_SYMBOL_FILEPAIR_MINUS,
1453 a_name.buf, a_name.len, 0);
1454 emit_diff_symbol(o, DIFF_SYMBOL_FILEPAIR_PLUS,
1455 b_name.buf, b_name.len, 0);
1457 strbuf_addstr(&out, "@@ -");
1458 if (!o->irreversible_delete)
1459 add_line_count(&out, lc_a);
1460 else
1461 strbuf_addstr(&out, "?,?");
1462 strbuf_addstr(&out, " +");
1463 add_line_count(&out, lc_b);
1464 strbuf_addstr(&out, " @@\n");
1465 emit_diff_symbol(o, DIFF_SYMBOL_REWRITE_DIFF, out.buf, out.len, 0);
1466 strbuf_release(&out);
1468 if (lc_a && !o->irreversible_delete)
1469 emit_rewrite_lines(&ecbdata, '-', data_one, size_one);
1470 if (lc_b)
1471 emit_rewrite_lines(&ecbdata, '+', data_two, size_two);
1472 if (textconv_one)
1473 free((char *)data_one);
1474 if (textconv_two)
1475 free((char *)data_two);
1478 struct diff_words_buffer {
1479 mmfile_t text;
1480 unsigned long alloc;
1481 struct diff_words_orig {
1482 const char *begin, *end;
1483 } *orig;
1484 int orig_nr, orig_alloc;
1487 static void diff_words_append(char *line, unsigned long len,
1488 struct diff_words_buffer *buffer)
1490 ALLOC_GROW(buffer->text.ptr, buffer->text.size + len, buffer->alloc);
1491 line++;
1492 len--;
1493 memcpy(buffer->text.ptr + buffer->text.size, line, len);
1494 buffer->text.size += len;
1495 buffer->text.ptr[buffer->text.size] = '\0';
1498 struct diff_words_style_elem {
1499 const char *prefix;
1500 const char *suffix;
1501 const char *color; /* NULL; filled in by the setup code if
1502 * color is enabled */
1505 struct diff_words_style {
1506 enum diff_words_type type;
1507 struct diff_words_style_elem new_word, old_word, ctx;
1508 const char *newline;
1511 static struct diff_words_style diff_words_styles[] = {
1512 { DIFF_WORDS_PORCELAIN, {"+", "\n"}, {"-", "\n"}, {" ", "\n"}, "~\n" },
1513 { DIFF_WORDS_PLAIN, {"{+", "+}"}, {"[-", "-]"}, {"", ""}, "\n" },
1514 { DIFF_WORDS_COLOR, {"", ""}, {"", ""}, {"", ""}, "\n" }
1517 struct diff_words_data {
1518 struct diff_words_buffer minus, plus;
1519 const char *current_plus;
1520 int last_minus;
1521 struct diff_options *opt;
1522 regex_t *word_regex;
1523 enum diff_words_type type;
1524 struct diff_words_style *style;
1527 static int fn_out_diff_words_write_helper(struct diff_options *o,
1528 struct diff_words_style_elem *st_el,
1529 const char *newline,
1530 size_t count, const char *buf)
1532 int print = 0;
1533 struct strbuf sb = STRBUF_INIT;
1535 while (count) {
1536 char *p = memchr(buf, '\n', count);
1537 if (print)
1538 strbuf_addstr(&sb, diff_line_prefix(o));
1540 if (p != buf) {
1541 const char *reset = st_el->color && *st_el->color ?
1542 GIT_COLOR_RESET : NULL;
1543 if (st_el->color && *st_el->color)
1544 strbuf_addstr(&sb, st_el->color);
1545 strbuf_addstr(&sb, st_el->prefix);
1546 strbuf_add(&sb, buf, p ? p - buf : count);
1547 strbuf_addstr(&sb, st_el->suffix);
1548 if (reset)
1549 strbuf_addstr(&sb, reset);
1551 if (!p)
1552 goto out;
1554 strbuf_addstr(&sb, newline);
1555 count -= p + 1 - buf;
1556 buf = p + 1;
1557 print = 1;
1558 if (count) {
1559 emit_diff_symbol(o, DIFF_SYMBOL_WORD_DIFF,
1560 sb.buf, sb.len, 0);
1561 strbuf_reset(&sb);
1565 out:
1566 if (sb.len)
1567 emit_diff_symbol(o, DIFF_SYMBOL_WORD_DIFF,
1568 sb.buf, sb.len, 0);
1569 strbuf_release(&sb);
1570 return 0;
1574 * '--color-words' algorithm can be described as:
1576 * 1. collect the minus/plus lines of a diff hunk, divided into
1577 * minus-lines and plus-lines;
1579 * 2. break both minus-lines and plus-lines into words and
1580 * place them into two mmfile_t with one word for each line;
1582 * 3. use xdiff to run diff on the two mmfile_t to get the words level diff;
1584 * And for the common parts of the both file, we output the plus side text.
1585 * diff_words->current_plus is used to trace the current position of the plus file
1586 * which printed. diff_words->last_minus is used to trace the last minus word
1587 * printed.
1589 * For '--graph' to work with '--color-words', we need to output the graph prefix
1590 * on each line of color words output. Generally, there are two conditions on
1591 * which we should output the prefix.
1593 * 1. diff_words->last_minus == 0 &&
1594 * diff_words->current_plus == diff_words->plus.text.ptr
1596 * that is: the plus text must start as a new line, and if there is no minus
1597 * word printed, a graph prefix must be printed.
1599 * 2. diff_words->current_plus > diff_words->plus.text.ptr &&
1600 * *(diff_words->current_plus - 1) == '\n'
1602 * that is: a graph prefix must be printed following a '\n'
1604 static int color_words_output_graph_prefix(struct diff_words_data *diff_words)
1606 if ((diff_words->last_minus == 0 &&
1607 diff_words->current_plus == diff_words->plus.text.ptr) ||
1608 (diff_words->current_plus > diff_words->plus.text.ptr &&
1609 *(diff_words->current_plus - 1) == '\n')) {
1610 return 1;
1611 } else {
1612 return 0;
1616 static void fn_out_diff_words_aux(void *priv, char *line, unsigned long len)
1618 struct diff_words_data *diff_words = priv;
1619 struct diff_words_style *style = diff_words->style;
1620 int minus_first, minus_len, plus_first, plus_len;
1621 const char *minus_begin, *minus_end, *plus_begin, *plus_end;
1622 struct diff_options *opt = diff_words->opt;
1623 const char *line_prefix;
1625 if (line[0] != '@' || parse_hunk_header(line, len,
1626 &minus_first, &minus_len, &plus_first, &plus_len))
1627 return;
1629 assert(opt);
1630 line_prefix = diff_line_prefix(opt);
1632 /* POSIX requires that first be decremented by one if len == 0... */
1633 if (minus_len) {
1634 minus_begin = diff_words->minus.orig[minus_first].begin;
1635 minus_end =
1636 diff_words->minus.orig[minus_first + minus_len - 1].end;
1637 } else
1638 minus_begin = minus_end =
1639 diff_words->minus.orig[minus_first].end;
1641 if (plus_len) {
1642 plus_begin = diff_words->plus.orig[plus_first].begin;
1643 plus_end = diff_words->plus.orig[plus_first + plus_len - 1].end;
1644 } else
1645 plus_begin = plus_end = diff_words->plus.orig[plus_first].end;
1647 if (color_words_output_graph_prefix(diff_words)) {
1648 fputs(line_prefix, diff_words->opt->file);
1650 if (diff_words->current_plus != plus_begin) {
1651 fn_out_diff_words_write_helper(diff_words->opt,
1652 &style->ctx, style->newline,
1653 plus_begin - diff_words->current_plus,
1654 diff_words->current_plus);
1656 if (minus_begin != minus_end) {
1657 fn_out_diff_words_write_helper(diff_words->opt,
1658 &style->old_word, style->newline,
1659 minus_end - minus_begin, minus_begin);
1661 if (plus_begin != plus_end) {
1662 fn_out_diff_words_write_helper(diff_words->opt,
1663 &style->new_word, style->newline,
1664 plus_end - plus_begin, plus_begin);
1667 diff_words->current_plus = plus_end;
1668 diff_words->last_minus = minus_first;
1671 /* This function starts looking at *begin, and returns 0 iff a word was found. */
1672 static int find_word_boundaries(mmfile_t *buffer, regex_t *word_regex,
1673 int *begin, int *end)
1675 if (word_regex && *begin < buffer->size) {
1676 regmatch_t match[1];
1677 if (!regexec_buf(word_regex, buffer->ptr + *begin,
1678 buffer->size - *begin, 1, match, 0)) {
1679 char *p = memchr(buffer->ptr + *begin + match[0].rm_so,
1680 '\n', match[0].rm_eo - match[0].rm_so);
1681 *end = p ? p - buffer->ptr : match[0].rm_eo + *begin;
1682 *begin += match[0].rm_so;
1683 return *begin >= *end;
1685 return -1;
1688 /* find the next word */
1689 while (*begin < buffer->size && isspace(buffer->ptr[*begin]))
1690 (*begin)++;
1691 if (*begin >= buffer->size)
1692 return -1;
1694 /* find the end of the word */
1695 *end = *begin + 1;
1696 while (*end < buffer->size && !isspace(buffer->ptr[*end]))
1697 (*end)++;
1699 return 0;
1703 * This function splits the words in buffer->text, stores the list with
1704 * newline separator into out, and saves the offsets of the original words
1705 * in buffer->orig.
1707 static void diff_words_fill(struct diff_words_buffer *buffer, mmfile_t *out,
1708 regex_t *word_regex)
1710 int i, j;
1711 long alloc = 0;
1713 out->size = 0;
1714 out->ptr = NULL;
1716 /* fake an empty "0th" word */
1717 ALLOC_GROW(buffer->orig, 1, buffer->orig_alloc);
1718 buffer->orig[0].begin = buffer->orig[0].end = buffer->text.ptr;
1719 buffer->orig_nr = 1;
1721 for (i = 0; i < buffer->text.size; i++) {
1722 if (find_word_boundaries(&buffer->text, word_regex, &i, &j))
1723 return;
1725 /* store original boundaries */
1726 ALLOC_GROW(buffer->orig, buffer->orig_nr + 1,
1727 buffer->orig_alloc);
1728 buffer->orig[buffer->orig_nr].begin = buffer->text.ptr + i;
1729 buffer->orig[buffer->orig_nr].end = buffer->text.ptr + j;
1730 buffer->orig_nr++;
1732 /* store one word */
1733 ALLOC_GROW(out->ptr, out->size + j - i + 1, alloc);
1734 memcpy(out->ptr + out->size, buffer->text.ptr + i, j - i);
1735 out->ptr[out->size + j - i] = '\n';
1736 out->size += j - i + 1;
1738 i = j - 1;
1742 /* this executes the word diff on the accumulated buffers */
1743 static void diff_words_show(struct diff_words_data *diff_words)
1745 xpparam_t xpp;
1746 xdemitconf_t xecfg;
1747 mmfile_t minus, plus;
1748 struct diff_words_style *style = diff_words->style;
1750 struct diff_options *opt = diff_words->opt;
1751 const char *line_prefix;
1753 assert(opt);
1754 line_prefix = diff_line_prefix(opt);
1756 /* special case: only removal */
1757 if (!diff_words->plus.text.size) {
1758 emit_diff_symbol(diff_words->opt, DIFF_SYMBOL_WORD_DIFF,
1759 line_prefix, strlen(line_prefix), 0);
1760 fn_out_diff_words_write_helper(diff_words->opt,
1761 &style->old_word, style->newline,
1762 diff_words->minus.text.size,
1763 diff_words->minus.text.ptr);
1764 diff_words->minus.text.size = 0;
1765 return;
1768 diff_words->current_plus = diff_words->plus.text.ptr;
1769 diff_words->last_minus = 0;
1771 memset(&xpp, 0, sizeof(xpp));
1772 memset(&xecfg, 0, sizeof(xecfg));
1773 diff_words_fill(&diff_words->minus, &minus, diff_words->word_regex);
1774 diff_words_fill(&diff_words->plus, &plus, diff_words->word_regex);
1775 xpp.flags = 0;
1776 /* as only the hunk header will be parsed, we need a 0-context */
1777 xecfg.ctxlen = 0;
1778 if (xdi_diff_outf(&minus, &plus, fn_out_diff_words_aux, diff_words,
1779 &xpp, &xecfg))
1780 die("unable to generate word diff");
1781 free(minus.ptr);
1782 free(plus.ptr);
1783 if (diff_words->current_plus != diff_words->plus.text.ptr +
1784 diff_words->plus.text.size) {
1785 if (color_words_output_graph_prefix(diff_words))
1786 emit_diff_symbol(diff_words->opt, DIFF_SYMBOL_WORD_DIFF,
1787 line_prefix, strlen(line_prefix), 0);
1788 fn_out_diff_words_write_helper(diff_words->opt,
1789 &style->ctx, style->newline,
1790 diff_words->plus.text.ptr + diff_words->plus.text.size
1791 - diff_words->current_plus, diff_words->current_plus);
1793 diff_words->minus.text.size = diff_words->plus.text.size = 0;
1796 /* In "color-words" mode, show word-diff of words accumulated in the buffer */
1797 static void diff_words_flush(struct emit_callback *ecbdata)
1799 struct diff_options *wo = ecbdata->diff_words->opt;
1801 if (ecbdata->diff_words->minus.text.size ||
1802 ecbdata->diff_words->plus.text.size)
1803 diff_words_show(ecbdata->diff_words);
1805 if (wo->emitted_symbols) {
1806 struct diff_options *o = ecbdata->opt;
1807 struct emitted_diff_symbols *wol = wo->emitted_symbols;
1808 int i;
1811 * NEEDSWORK:
1812 * Instead of appending each, concat all words to a line?
1814 for (i = 0; i < wol->nr; i++)
1815 append_emitted_diff_symbol(o, &wol->buf[i]);
1817 for (i = 0; i < wol->nr; i++)
1818 free((void *)wol->buf[i].line);
1820 wol->nr = 0;
1824 static void diff_filespec_load_driver(struct diff_filespec *one)
1826 /* Use already-loaded driver */
1827 if (one->driver)
1828 return;
1830 if (S_ISREG(one->mode))
1831 one->driver = userdiff_find_by_path(one->path);
1833 /* Fallback to default settings */
1834 if (!one->driver)
1835 one->driver = userdiff_find_by_name("default");
1838 static const char *userdiff_word_regex(struct diff_filespec *one)
1840 diff_filespec_load_driver(one);
1841 return one->driver->word_regex;
1844 static void init_diff_words_data(struct emit_callback *ecbdata,
1845 struct diff_options *orig_opts,
1846 struct diff_filespec *one,
1847 struct diff_filespec *two)
1849 int i;
1850 struct diff_options *o = xmalloc(sizeof(struct diff_options));
1851 memcpy(o, orig_opts, sizeof(struct diff_options));
1853 ecbdata->diff_words =
1854 xcalloc(1, sizeof(struct diff_words_data));
1855 ecbdata->diff_words->type = o->word_diff;
1856 ecbdata->diff_words->opt = o;
1858 if (orig_opts->emitted_symbols)
1859 o->emitted_symbols =
1860 xcalloc(1, sizeof(struct emitted_diff_symbols));
1862 if (!o->word_regex)
1863 o->word_regex = userdiff_word_regex(one);
1864 if (!o->word_regex)
1865 o->word_regex = userdiff_word_regex(two);
1866 if (!o->word_regex)
1867 o->word_regex = diff_word_regex_cfg;
1868 if (o->word_regex) {
1869 ecbdata->diff_words->word_regex = (regex_t *)
1870 xmalloc(sizeof(regex_t));
1871 if (regcomp(ecbdata->diff_words->word_regex,
1872 o->word_regex,
1873 REG_EXTENDED | REG_NEWLINE))
1874 die ("Invalid regular expression: %s",
1875 o->word_regex);
1877 for (i = 0; i < ARRAY_SIZE(diff_words_styles); i++) {
1878 if (o->word_diff == diff_words_styles[i].type) {
1879 ecbdata->diff_words->style =
1880 &diff_words_styles[i];
1881 break;
1884 if (want_color(o->use_color)) {
1885 struct diff_words_style *st = ecbdata->diff_words->style;
1886 st->old_word.color = diff_get_color_opt(o, DIFF_FILE_OLD);
1887 st->new_word.color = diff_get_color_opt(o, DIFF_FILE_NEW);
1888 st->ctx.color = diff_get_color_opt(o, DIFF_CONTEXT);
1892 static void free_diff_words_data(struct emit_callback *ecbdata)
1894 if (ecbdata->diff_words) {
1895 diff_words_flush(ecbdata);
1896 free (ecbdata->diff_words->opt->emitted_symbols);
1897 free (ecbdata->diff_words->opt);
1898 free (ecbdata->diff_words->minus.text.ptr);
1899 free (ecbdata->diff_words->minus.orig);
1900 free (ecbdata->diff_words->plus.text.ptr);
1901 free (ecbdata->diff_words->plus.orig);
1902 if (ecbdata->diff_words->word_regex) {
1903 regfree(ecbdata->diff_words->word_regex);
1904 free(ecbdata->diff_words->word_regex);
1906 FREE_AND_NULL(ecbdata->diff_words);
1910 const char *diff_get_color(int diff_use_color, enum color_diff ix)
1912 if (want_color(diff_use_color))
1913 return diff_colors[ix];
1914 return "";
1917 const char *diff_line_prefix(struct diff_options *opt)
1919 struct strbuf *msgbuf;
1920 if (!opt->output_prefix)
1921 return "";
1923 msgbuf = opt->output_prefix(opt, opt->output_prefix_data);
1924 return msgbuf->buf;
1927 static unsigned long sane_truncate_line(struct emit_callback *ecb, char *line, unsigned long len)
1929 const char *cp;
1930 unsigned long allot;
1931 size_t l = len;
1933 cp = line;
1934 allot = l;
1935 while (0 < l) {
1936 (void) utf8_width(&cp, &l);
1937 if (!cp)
1938 break; /* truncated in the middle? */
1940 return allot - l;
1943 static void find_lno(const char *line, struct emit_callback *ecbdata)
1945 const char *p;
1946 ecbdata->lno_in_preimage = 0;
1947 ecbdata->lno_in_postimage = 0;
1948 p = strchr(line, '-');
1949 if (!p)
1950 return; /* cannot happen */
1951 ecbdata->lno_in_preimage = strtol(p + 1, NULL, 10);
1952 p = strchr(p, '+');
1953 if (!p)
1954 return; /* cannot happen */
1955 ecbdata->lno_in_postimage = strtol(p + 1, NULL, 10);
1958 static void fn_out_consume(void *priv, char *line, unsigned long len)
1960 struct emit_callback *ecbdata = priv;
1961 const char *reset = diff_get_color(ecbdata->color_diff, DIFF_RESET);
1962 struct diff_options *o = ecbdata->opt;
1964 o->found_changes = 1;
1966 if (ecbdata->header) {
1967 emit_diff_symbol(o, DIFF_SYMBOL_HEADER,
1968 ecbdata->header->buf, ecbdata->header->len, 0);
1969 strbuf_reset(ecbdata->header);
1970 ecbdata->header = NULL;
1973 if (ecbdata->label_path[0]) {
1974 emit_diff_symbol(o, DIFF_SYMBOL_FILEPAIR_MINUS,
1975 ecbdata->label_path[0],
1976 strlen(ecbdata->label_path[0]), 0);
1977 emit_diff_symbol(o, DIFF_SYMBOL_FILEPAIR_PLUS,
1978 ecbdata->label_path[1],
1979 strlen(ecbdata->label_path[1]), 0);
1980 ecbdata->label_path[0] = ecbdata->label_path[1] = NULL;
1983 if (diff_suppress_blank_empty
1984 && len == 2 && line[0] == ' ' && line[1] == '\n') {
1985 line[0] = '\n';
1986 len = 1;
1989 if (line[0] == '@') {
1990 if (ecbdata->diff_words)
1991 diff_words_flush(ecbdata);
1992 len = sane_truncate_line(ecbdata, line, len);
1993 find_lno(line, ecbdata);
1994 emit_hunk_header(ecbdata, line, len);
1995 return;
1998 if (ecbdata->diff_words) {
1999 enum diff_symbol s =
2000 ecbdata->diff_words->type == DIFF_WORDS_PORCELAIN ?
2001 DIFF_SYMBOL_WORDS_PORCELAIN : DIFF_SYMBOL_WORDS;
2002 if (line[0] == '-') {
2003 diff_words_append(line, len,
2004 &ecbdata->diff_words->minus);
2005 return;
2006 } else if (line[0] == '+') {
2007 diff_words_append(line, len,
2008 &ecbdata->diff_words->plus);
2009 return;
2010 } else if (starts_with(line, "\\ ")) {
2012 * Eat the "no newline at eof" marker as if we
2013 * saw a "+" or "-" line with nothing on it,
2014 * and return without diff_words_flush() to
2015 * defer processing. If this is the end of
2016 * preimage, more "+" lines may come after it.
2018 return;
2020 diff_words_flush(ecbdata);
2021 emit_diff_symbol(o, s, line, len, 0);
2022 return;
2025 switch (line[0]) {
2026 case '+':
2027 ecbdata->lno_in_postimage++;
2028 emit_add_line(reset, ecbdata, line + 1, len - 1);
2029 break;
2030 case '-':
2031 ecbdata->lno_in_preimage++;
2032 emit_del_line(reset, ecbdata, line + 1, len - 1);
2033 break;
2034 case ' ':
2035 ecbdata->lno_in_postimage++;
2036 ecbdata->lno_in_preimage++;
2037 emit_context_line(reset, ecbdata, line + 1, len - 1);
2038 break;
2039 default:
2040 /* incomplete line at the end */
2041 ecbdata->lno_in_preimage++;
2042 emit_diff_symbol(o, DIFF_SYMBOL_CONTEXT_INCOMPLETE,
2043 line, len, 0);
2044 break;
2048 static void pprint_rename(struct strbuf *name, const char *a, const char *b)
2050 const char *old_name = a;
2051 const char *new_name = b;
2052 int pfx_length, sfx_length;
2053 int pfx_adjust_for_slash;
2054 int len_a = strlen(a);
2055 int len_b = strlen(b);
2056 int a_midlen, b_midlen;
2057 int qlen_a = quote_c_style(a, NULL, NULL, 0);
2058 int qlen_b = quote_c_style(b, NULL, NULL, 0);
2060 if (qlen_a || qlen_b) {
2061 quote_c_style(a, name, NULL, 0);
2062 strbuf_addstr(name, " => ");
2063 quote_c_style(b, name, NULL, 0);
2064 return;
2067 /* Find common prefix */
2068 pfx_length = 0;
2069 while (*old_name && *new_name && *old_name == *new_name) {
2070 if (*old_name == '/')
2071 pfx_length = old_name - a + 1;
2072 old_name++;
2073 new_name++;
2076 /* Find common suffix */
2077 old_name = a + len_a;
2078 new_name = b + len_b;
2079 sfx_length = 0;
2081 * If there is a common prefix, it must end in a slash. In
2082 * that case we let this loop run 1 into the prefix to see the
2083 * same slash.
2085 * If there is no common prefix, we cannot do this as it would
2086 * underrun the input strings.
2088 pfx_adjust_for_slash = (pfx_length ? 1 : 0);
2089 while (a + pfx_length - pfx_adjust_for_slash <= old_name &&
2090 b + pfx_length - pfx_adjust_for_slash <= new_name &&
2091 *old_name == *new_name) {
2092 if (*old_name == '/')
2093 sfx_length = len_a - (old_name - a);
2094 old_name--;
2095 new_name--;
2099 * pfx{mid-a => mid-b}sfx
2100 * {pfx-a => pfx-b}sfx
2101 * pfx{sfx-a => sfx-b}
2102 * name-a => name-b
2104 a_midlen = len_a - pfx_length - sfx_length;
2105 b_midlen = len_b - pfx_length - sfx_length;
2106 if (a_midlen < 0)
2107 a_midlen = 0;
2108 if (b_midlen < 0)
2109 b_midlen = 0;
2111 strbuf_grow(name, pfx_length + a_midlen + b_midlen + sfx_length + 7);
2112 if (pfx_length + sfx_length) {
2113 strbuf_add(name, a, pfx_length);
2114 strbuf_addch(name, '{');
2116 strbuf_add(name, a + pfx_length, a_midlen);
2117 strbuf_addstr(name, " => ");
2118 strbuf_add(name, b + pfx_length, b_midlen);
2119 if (pfx_length + sfx_length) {
2120 strbuf_addch(name, '}');
2121 strbuf_add(name, a + len_a - sfx_length, sfx_length);
2125 struct diffstat_t {
2126 int nr;
2127 int alloc;
2128 struct diffstat_file {
2129 char *from_name;
2130 char *name;
2131 char *print_name;
2132 const char *comments;
2133 unsigned is_unmerged:1;
2134 unsigned is_binary:1;
2135 unsigned is_renamed:1;
2136 unsigned is_interesting:1;
2137 uintmax_t added, deleted;
2138 } **files;
2141 static struct diffstat_file *diffstat_add(struct diffstat_t *diffstat,
2142 const char *name_a,
2143 const char *name_b)
2145 struct diffstat_file *x;
2146 x = xcalloc(1, sizeof(*x));
2147 ALLOC_GROW(diffstat->files, diffstat->nr + 1, diffstat->alloc);
2148 diffstat->files[diffstat->nr++] = x;
2149 if (name_b) {
2150 x->from_name = xstrdup(name_a);
2151 x->name = xstrdup(name_b);
2152 x->is_renamed = 1;
2154 else {
2155 x->from_name = NULL;
2156 x->name = xstrdup(name_a);
2158 return x;
2161 static void diffstat_consume(void *priv, char *line, unsigned long len)
2163 struct diffstat_t *diffstat = priv;
2164 struct diffstat_file *x = diffstat->files[diffstat->nr - 1];
2166 if (line[0] == '+')
2167 x->added++;
2168 else if (line[0] == '-')
2169 x->deleted++;
2172 const char mime_boundary_leader[] = "------------";
2174 static int scale_linear(int it, int width, int max_change)
2176 if (!it)
2177 return 0;
2179 * make sure that at least one '-' or '+' is printed if
2180 * there is any change to this path. The easiest way is to
2181 * scale linearly as if the alloted width is one column shorter
2182 * than it is, and then add 1 to the result.
2184 return 1 + (it * (width - 1) / max_change);
2187 static void show_graph(struct strbuf *out, char ch, int cnt,
2188 const char *set, const char *reset)
2190 if (cnt <= 0)
2191 return;
2192 strbuf_addstr(out, set);
2193 strbuf_addchars(out, ch, cnt);
2194 strbuf_addstr(out, reset);
2197 static void fill_print_name(struct diffstat_file *file)
2199 struct strbuf pname = STRBUF_INIT;
2201 if (file->print_name)
2202 return;
2204 if (file->is_renamed)
2205 pprint_rename(&pname, file->from_name, file->name);
2206 else
2207 quote_c_style(file->name, &pname, NULL, 0);
2209 if (file->comments)
2210 strbuf_addf(&pname, " (%s)", file->comments);
2212 file->print_name = strbuf_detach(&pname, NULL);
2215 static void print_stat_summary_inserts_deletes(struct diff_options *options,
2216 int files, int insertions, int deletions)
2218 struct strbuf sb = STRBUF_INIT;
2220 if (!files) {
2221 assert(insertions == 0 && deletions == 0);
2222 emit_diff_symbol(options, DIFF_SYMBOL_STATS_SUMMARY_NO_FILES,
2223 NULL, 0, 0);
2224 return;
2227 strbuf_addf(&sb,
2228 (files == 1) ? " %d file changed" : " %d files changed",
2229 files);
2232 * For binary diff, the caller may want to print "x files
2233 * changed" with insertions == 0 && deletions == 0.
2235 * Not omitting "0 insertions(+), 0 deletions(-)" in this case
2236 * is probably less confusing (i.e skip over "2 files changed
2237 * but nothing about added/removed lines? Is this a bug in Git?").
2239 if (insertions || deletions == 0) {
2240 strbuf_addf(&sb,
2241 (insertions == 1) ? ", %d insertion(+)" : ", %d insertions(+)",
2242 insertions);
2245 if (deletions || insertions == 0) {
2246 strbuf_addf(&sb,
2247 (deletions == 1) ? ", %d deletion(-)" : ", %d deletions(-)",
2248 deletions);
2250 strbuf_addch(&sb, '\n');
2251 emit_diff_symbol(options, DIFF_SYMBOL_STATS_SUMMARY_INSERTS_DELETES,
2252 sb.buf, sb.len, 0);
2253 strbuf_release(&sb);
2256 void print_stat_summary(FILE *fp, int files,
2257 int insertions, int deletions)
2259 struct diff_options o;
2260 memset(&o, 0, sizeof(o));
2261 o.file = fp;
2263 print_stat_summary_inserts_deletes(&o, files, insertions, deletions);
2266 static void show_stats(struct diffstat_t *data, struct diff_options *options)
2268 int i, len, add, del, adds = 0, dels = 0;
2269 uintmax_t max_change = 0, max_len = 0;
2270 int total_files = data->nr, count;
2271 int width, name_width, graph_width, number_width = 0, bin_width = 0;
2272 const char *reset, *add_c, *del_c;
2273 int extra_shown = 0;
2274 const char *line_prefix = diff_line_prefix(options);
2275 struct strbuf out = STRBUF_INIT;
2277 if (data->nr == 0)
2278 return;
2280 count = options->stat_count ? options->stat_count : data->nr;
2282 reset = diff_get_color_opt(options, DIFF_RESET);
2283 add_c = diff_get_color_opt(options, DIFF_FILE_NEW);
2284 del_c = diff_get_color_opt(options, DIFF_FILE_OLD);
2287 * Find the longest filename and max number of changes
2289 for (i = 0; (i < count) && (i < data->nr); i++) {
2290 struct diffstat_file *file = data->files[i];
2291 uintmax_t change = file->added + file->deleted;
2293 if (!file->is_interesting && (change == 0)) {
2294 count++; /* not shown == room for one more */
2295 continue;
2297 fill_print_name(file);
2298 len = strlen(file->print_name);
2299 if (max_len < len)
2300 max_len = len;
2302 if (file->is_unmerged) {
2303 /* "Unmerged" is 8 characters */
2304 bin_width = bin_width < 8 ? 8 : bin_width;
2305 continue;
2307 if (file->is_binary) {
2308 /* "Bin XXX -> YYY bytes" */
2309 int w = 14 + decimal_width(file->added)
2310 + decimal_width(file->deleted);
2311 bin_width = bin_width < w ? w : bin_width;
2312 /* Display change counts aligned with "Bin" */
2313 number_width = 3;
2314 continue;
2317 if (max_change < change)
2318 max_change = change;
2320 count = i; /* where we can stop scanning in data->files[] */
2323 * We have width = stat_width or term_columns() columns total.
2324 * We want a maximum of min(max_len, stat_name_width) for the name part.
2325 * We want a maximum of min(max_change, stat_graph_width) for the +- part.
2326 * We also need 1 for " " and 4 + decimal_width(max_change)
2327 * for " | NNNN " and one the empty column at the end, altogether
2328 * 6 + decimal_width(max_change).
2330 * If there's not enough space, we will use the smaller of
2331 * stat_name_width (if set) and 5/8*width for the filename,
2332 * and the rest for constant elements + graph part, but no more
2333 * than stat_graph_width for the graph part.
2334 * (5/8 gives 50 for filename and 30 for the constant parts + graph
2335 * for the standard terminal size).
2337 * In other words: stat_width limits the maximum width, and
2338 * stat_name_width fixes the maximum width of the filename,
2339 * and is also used to divide available columns if there
2340 * aren't enough.
2342 * Binary files are displayed with "Bin XXX -> YYY bytes"
2343 * instead of the change count and graph. This part is treated
2344 * similarly to the graph part, except that it is not
2345 * "scaled". If total width is too small to accommodate the
2346 * guaranteed minimum width of the filename part and the
2347 * separators and this message, this message will "overflow"
2348 * making the line longer than the maximum width.
2351 if (options->stat_width == -1)
2352 width = term_columns() - strlen(line_prefix);
2353 else
2354 width = options->stat_width ? options->stat_width : 80;
2355 number_width = decimal_width(max_change) > number_width ?
2356 decimal_width(max_change) : number_width;
2358 if (options->stat_graph_width == -1)
2359 options->stat_graph_width = diff_stat_graph_width;
2362 * Guarantee 3/8*16==6 for the graph part
2363 * and 5/8*16==10 for the filename part
2365 if (width < 16 + 6 + number_width)
2366 width = 16 + 6 + number_width;
2369 * First assign sizes that are wanted, ignoring available width.
2370 * strlen("Bin XXX -> YYY bytes") == bin_width, and the part
2371 * starting from "XXX" should fit in graph_width.
2373 graph_width = max_change + 4 > bin_width ? max_change : bin_width - 4;
2374 if (options->stat_graph_width &&
2375 options->stat_graph_width < graph_width)
2376 graph_width = options->stat_graph_width;
2378 name_width = (options->stat_name_width > 0 &&
2379 options->stat_name_width < max_len) ?
2380 options->stat_name_width : max_len;
2383 * Adjust adjustable widths not to exceed maximum width
2385 if (name_width + number_width + 6 + graph_width > width) {
2386 if (graph_width > width * 3/8 - number_width - 6) {
2387 graph_width = width * 3/8 - number_width - 6;
2388 if (graph_width < 6)
2389 graph_width = 6;
2392 if (options->stat_graph_width &&
2393 graph_width > options->stat_graph_width)
2394 graph_width = options->stat_graph_width;
2395 if (name_width > width - number_width - 6 - graph_width)
2396 name_width = width - number_width - 6 - graph_width;
2397 else
2398 graph_width = width - number_width - 6 - name_width;
2402 * From here name_width is the width of the name area,
2403 * and graph_width is the width of the graph area.
2404 * max_change is used to scale graph properly.
2406 for (i = 0; i < count; i++) {
2407 const char *prefix = "";
2408 struct diffstat_file *file = data->files[i];
2409 char *name = file->print_name;
2410 uintmax_t added = file->added;
2411 uintmax_t deleted = file->deleted;
2412 int name_len;
2414 if (!file->is_interesting && (added + deleted == 0))
2415 continue;
2418 * "scale" the filename
2420 len = name_width;
2421 name_len = strlen(name);
2422 if (name_width < name_len) {
2423 char *slash;
2424 prefix = "...";
2425 len -= 3;
2426 name += name_len - len;
2427 slash = strchr(name, '/');
2428 if (slash)
2429 name = slash;
2432 if (file->is_binary) {
2433 strbuf_addf(&out, " %s%-*s |", prefix, len, name);
2434 strbuf_addf(&out, " %*s", number_width, "Bin");
2435 if (!added && !deleted) {
2436 strbuf_addch(&out, '\n');
2437 emit_diff_symbol(options, DIFF_SYMBOL_STATS_LINE,
2438 out.buf, out.len, 0);
2439 strbuf_reset(&out);
2440 continue;
2442 strbuf_addf(&out, " %s%"PRIuMAX"%s",
2443 del_c, deleted, reset);
2444 strbuf_addstr(&out, " -> ");
2445 strbuf_addf(&out, "%s%"PRIuMAX"%s",
2446 add_c, added, reset);
2447 strbuf_addstr(&out, " bytes\n");
2448 emit_diff_symbol(options, DIFF_SYMBOL_STATS_LINE,
2449 out.buf, out.len, 0);
2450 strbuf_reset(&out);
2451 continue;
2453 else if (file->is_unmerged) {
2454 strbuf_addf(&out, " %s%-*s |", prefix, len, name);
2455 strbuf_addstr(&out, " Unmerged\n");
2456 emit_diff_symbol(options, DIFF_SYMBOL_STATS_LINE,
2457 out.buf, out.len, 0);
2458 strbuf_reset(&out);
2459 continue;
2463 * scale the add/delete
2465 add = added;
2466 del = deleted;
2468 if (graph_width <= max_change) {
2469 int total = scale_linear(add + del, graph_width, max_change);
2470 if (total < 2 && add && del)
2471 /* width >= 2 due to the sanity check */
2472 total = 2;
2473 if (add < del) {
2474 add = scale_linear(add, graph_width, max_change);
2475 del = total - add;
2476 } else {
2477 del = scale_linear(del, graph_width, max_change);
2478 add = total - del;
2481 strbuf_addf(&out, " %s%-*s |", prefix, len, name);
2482 strbuf_addf(&out, " %*"PRIuMAX"%s",
2483 number_width, added + deleted,
2484 added + deleted ? " " : "");
2485 show_graph(&out, '+', add, add_c, reset);
2486 show_graph(&out, '-', del, del_c, reset);
2487 strbuf_addch(&out, '\n');
2488 emit_diff_symbol(options, DIFF_SYMBOL_STATS_LINE,
2489 out.buf, out.len, 0);
2490 strbuf_reset(&out);
2493 for (i = 0; i < data->nr; i++) {
2494 struct diffstat_file *file = data->files[i];
2495 uintmax_t added = file->added;
2496 uintmax_t deleted = file->deleted;
2498 if (file->is_unmerged ||
2499 (!file->is_interesting && (added + deleted == 0))) {
2500 total_files--;
2501 continue;
2504 if (!file->is_binary) {
2505 adds += added;
2506 dels += deleted;
2508 if (i < count)
2509 continue;
2510 if (!extra_shown)
2511 emit_diff_symbol(options,
2512 DIFF_SYMBOL_STATS_SUMMARY_ABBREV,
2513 NULL, 0, 0);
2514 extra_shown = 1;
2517 print_stat_summary_inserts_deletes(options, total_files, adds, dels);
2518 strbuf_release(&out);
2521 static void show_shortstats(struct diffstat_t *data, struct diff_options *options)
2523 int i, adds = 0, dels = 0, total_files = data->nr;
2525 if (data->nr == 0)
2526 return;
2528 for (i = 0; i < data->nr; i++) {
2529 int added = data->files[i]->added;
2530 int deleted = data->files[i]->deleted;
2532 if (data->files[i]->is_unmerged ||
2533 (!data->files[i]->is_interesting && (added + deleted == 0))) {
2534 total_files--;
2535 } else if (!data->files[i]->is_binary) { /* don't count bytes */
2536 adds += added;
2537 dels += deleted;
2540 print_stat_summary_inserts_deletes(options, total_files, adds, dels);
2543 static void show_numstat(struct diffstat_t *data, struct diff_options *options)
2545 int i;
2547 if (data->nr == 0)
2548 return;
2550 for (i = 0; i < data->nr; i++) {
2551 struct diffstat_file *file = data->files[i];
2553 fprintf(options->file, "%s", diff_line_prefix(options));
2555 if (file->is_binary)
2556 fprintf(options->file, "-\t-\t");
2557 else
2558 fprintf(options->file,
2559 "%"PRIuMAX"\t%"PRIuMAX"\t",
2560 file->added, file->deleted);
2561 if (options->line_termination) {
2562 fill_print_name(file);
2563 if (!file->is_renamed)
2564 write_name_quoted(file->name, options->file,
2565 options->line_termination);
2566 else {
2567 fputs(file->print_name, options->file);
2568 putc(options->line_termination, options->file);
2570 } else {
2571 if (file->is_renamed) {
2572 putc('\0', options->file);
2573 write_name_quoted(file->from_name, options->file, '\0');
2575 write_name_quoted(file->name, options->file, '\0');
2580 struct dirstat_file {
2581 const char *name;
2582 unsigned long changed;
2585 struct dirstat_dir {
2586 struct dirstat_file *files;
2587 int alloc, nr, permille, cumulative;
2590 static long gather_dirstat(struct diff_options *opt, struct dirstat_dir *dir,
2591 unsigned long changed, const char *base, int baselen)
2593 unsigned long sum_changes = 0;
2594 unsigned int sources = 0;
2595 const char *line_prefix = diff_line_prefix(opt);
2597 while (dir->nr) {
2598 struct dirstat_file *f = dir->files;
2599 int namelen = strlen(f->name);
2600 unsigned long changes;
2601 char *slash;
2603 if (namelen < baselen)
2604 break;
2605 if (memcmp(f->name, base, baselen))
2606 break;
2607 slash = strchr(f->name + baselen, '/');
2608 if (slash) {
2609 int newbaselen = slash + 1 - f->name;
2610 changes = gather_dirstat(opt, dir, changed, f->name, newbaselen);
2611 sources++;
2612 } else {
2613 changes = f->changed;
2614 dir->files++;
2615 dir->nr--;
2616 sources += 2;
2618 sum_changes += changes;
2622 * We don't report dirstat's for
2623 * - the top level
2624 * - or cases where everything came from a single directory
2625 * under this directory (sources == 1).
2627 if (baselen && sources != 1) {
2628 if (sum_changes) {
2629 int permille = sum_changes * 1000 / changed;
2630 if (permille >= dir->permille) {
2631 fprintf(opt->file, "%s%4d.%01d%% %.*s\n", line_prefix,
2632 permille / 10, permille % 10, baselen, base);
2633 if (!dir->cumulative)
2634 return 0;
2638 return sum_changes;
2641 static int dirstat_compare(const void *_a, const void *_b)
2643 const struct dirstat_file *a = _a;
2644 const struct dirstat_file *b = _b;
2645 return strcmp(a->name, b->name);
2648 static void show_dirstat(struct diff_options *options)
2650 int i;
2651 unsigned long changed;
2652 struct dirstat_dir dir;
2653 struct diff_queue_struct *q = &diff_queued_diff;
2655 dir.files = NULL;
2656 dir.alloc = 0;
2657 dir.nr = 0;
2658 dir.permille = options->dirstat_permille;
2659 dir.cumulative = options->flags.dirstat_cumulative;
2661 changed = 0;
2662 for (i = 0; i < q->nr; i++) {
2663 struct diff_filepair *p = q->queue[i];
2664 const char *name;
2665 unsigned long copied, added, damage;
2666 int content_changed;
2668 name = p->two->path ? p->two->path : p->one->path;
2670 if (p->one->oid_valid && p->two->oid_valid)
2671 content_changed = oidcmp(&p->one->oid, &p->two->oid);
2672 else
2673 content_changed = 1;
2675 if (!content_changed) {
2677 * The SHA1 has not changed, so pre-/post-content is
2678 * identical. We can therefore skip looking at the
2679 * file contents altogether.
2681 damage = 0;
2682 goto found_damage;
2685 if (options->flags.dirstat_by_file) {
2687 * In --dirstat-by-file mode, we don't really need to
2688 * look at the actual file contents at all.
2689 * The fact that the SHA1 changed is enough for us to
2690 * add this file to the list of results
2691 * (with each file contributing equal damage).
2693 damage = 1;
2694 goto found_damage;
2697 if (DIFF_FILE_VALID(p->one) && DIFF_FILE_VALID(p->two)) {
2698 diff_populate_filespec(p->one, 0);
2699 diff_populate_filespec(p->two, 0);
2700 diffcore_count_changes(p->one, p->two, NULL, NULL,
2701 &copied, &added);
2702 diff_free_filespec_data(p->one);
2703 diff_free_filespec_data(p->two);
2704 } else if (DIFF_FILE_VALID(p->one)) {
2705 diff_populate_filespec(p->one, CHECK_SIZE_ONLY);
2706 copied = added = 0;
2707 diff_free_filespec_data(p->one);
2708 } else if (DIFF_FILE_VALID(p->two)) {
2709 diff_populate_filespec(p->two, CHECK_SIZE_ONLY);
2710 copied = 0;
2711 added = p->two->size;
2712 diff_free_filespec_data(p->two);
2713 } else
2714 continue;
2717 * Original minus copied is the removed material,
2718 * added is the new material. They are both damages
2719 * made to the preimage.
2720 * If the resulting damage is zero, we know that
2721 * diffcore_count_changes() considers the two entries to
2722 * be identical, but since content_changed is true, we
2723 * know that there must have been _some_ kind of change,
2724 * so we force all entries to have damage > 0.
2726 damage = (p->one->size - copied) + added;
2727 if (!damage)
2728 damage = 1;
2730 found_damage:
2731 ALLOC_GROW(dir.files, dir.nr + 1, dir.alloc);
2732 dir.files[dir.nr].name = name;
2733 dir.files[dir.nr].changed = damage;
2734 changed += damage;
2735 dir.nr++;
2738 /* This can happen even with many files, if everything was renames */
2739 if (!changed)
2740 return;
2742 /* Show all directories with more than x% of the changes */
2743 QSORT(dir.files, dir.nr, dirstat_compare);
2744 gather_dirstat(options, &dir, changed, "", 0);
2747 static void show_dirstat_by_line(struct diffstat_t *data, struct diff_options *options)
2749 int i;
2750 unsigned long changed;
2751 struct dirstat_dir dir;
2753 if (data->nr == 0)
2754 return;
2756 dir.files = NULL;
2757 dir.alloc = 0;
2758 dir.nr = 0;
2759 dir.permille = options->dirstat_permille;
2760 dir.cumulative = options->flags.dirstat_cumulative;
2762 changed = 0;
2763 for (i = 0; i < data->nr; i++) {
2764 struct diffstat_file *file = data->files[i];
2765 unsigned long damage = file->added + file->deleted;
2766 if (file->is_binary)
2768 * binary files counts bytes, not lines. Must find some
2769 * way to normalize binary bytes vs. textual lines.
2770 * The following heuristic assumes that there are 64
2771 * bytes per "line".
2772 * This is stupid and ugly, but very cheap...
2774 damage = DIV_ROUND_UP(damage, 64);
2775 ALLOC_GROW(dir.files, dir.nr + 1, dir.alloc);
2776 dir.files[dir.nr].name = file->name;
2777 dir.files[dir.nr].changed = damage;
2778 changed += damage;
2779 dir.nr++;
2782 /* This can happen even with many files, if everything was renames */
2783 if (!changed)
2784 return;
2786 /* Show all directories with more than x% of the changes */
2787 QSORT(dir.files, dir.nr, dirstat_compare);
2788 gather_dirstat(options, &dir, changed, "", 0);
2791 static void free_diffstat_info(struct diffstat_t *diffstat)
2793 int i;
2794 for (i = 0; i < diffstat->nr; i++) {
2795 struct diffstat_file *f = diffstat->files[i];
2796 free(f->print_name);
2797 free(f->name);
2798 free(f->from_name);
2799 free(f);
2801 free(diffstat->files);
2804 struct checkdiff_t {
2805 const char *filename;
2806 int lineno;
2807 int conflict_marker_size;
2808 struct diff_options *o;
2809 unsigned ws_rule;
2810 unsigned status;
2813 static int is_conflict_marker(const char *line, int marker_size, unsigned long len)
2815 char firstchar;
2816 int cnt;
2818 if (len < marker_size + 1)
2819 return 0;
2820 firstchar = line[0];
2821 switch (firstchar) {
2822 case '=': case '>': case '<': case '|':
2823 break;
2824 default:
2825 return 0;
2827 for (cnt = 1; cnt < marker_size; cnt++)
2828 if (line[cnt] != firstchar)
2829 return 0;
2830 /* line[1] thru line[marker_size-1] are same as firstchar */
2831 if (len < marker_size + 1 || !isspace(line[marker_size]))
2832 return 0;
2833 return 1;
2836 static void checkdiff_consume(void *priv, char *line, unsigned long len)
2838 struct checkdiff_t *data = priv;
2839 int marker_size = data->conflict_marker_size;
2840 const char *ws = diff_get_color(data->o->use_color, DIFF_WHITESPACE);
2841 const char *reset = diff_get_color(data->o->use_color, DIFF_RESET);
2842 const char *set = diff_get_color(data->o->use_color, DIFF_FILE_NEW);
2843 char *err;
2844 const char *line_prefix;
2846 assert(data->o);
2847 line_prefix = diff_line_prefix(data->o);
2849 if (line[0] == '+') {
2850 unsigned bad;
2851 data->lineno++;
2852 if (is_conflict_marker(line + 1, marker_size, len - 1)) {
2853 data->status |= 1;
2854 fprintf(data->o->file,
2855 "%s%s:%d: leftover conflict marker\n",
2856 line_prefix, data->filename, data->lineno);
2858 bad = ws_check(line + 1, len - 1, data->ws_rule);
2859 if (!bad)
2860 return;
2861 data->status |= bad;
2862 err = whitespace_error_string(bad);
2863 fprintf(data->o->file, "%s%s:%d: %s.\n",
2864 line_prefix, data->filename, data->lineno, err);
2865 free(err);
2866 emit_line(data->o, set, reset, line, 1);
2867 ws_check_emit(line + 1, len - 1, data->ws_rule,
2868 data->o->file, set, reset, ws);
2869 } else if (line[0] == ' ') {
2870 data->lineno++;
2871 } else if (line[0] == '@') {
2872 char *plus = strchr(line, '+');
2873 if (plus)
2874 data->lineno = strtol(plus, NULL, 10) - 1;
2875 else
2876 die("invalid diff");
2880 static unsigned char *deflate_it(char *data,
2881 unsigned long size,
2882 unsigned long *result_size)
2884 int bound;
2885 unsigned char *deflated;
2886 git_zstream stream;
2888 git_deflate_init(&stream, zlib_compression_level);
2889 bound = git_deflate_bound(&stream, size);
2890 deflated = xmalloc(bound);
2891 stream.next_out = deflated;
2892 stream.avail_out = bound;
2894 stream.next_in = (unsigned char *)data;
2895 stream.avail_in = size;
2896 while (git_deflate(&stream, Z_FINISH) == Z_OK)
2897 ; /* nothing */
2898 git_deflate_end(&stream);
2899 *result_size = stream.total_out;
2900 return deflated;
2903 static void emit_binary_diff_body(struct diff_options *o,
2904 mmfile_t *one, mmfile_t *two)
2906 void *cp;
2907 void *delta;
2908 void *deflated;
2909 void *data;
2910 unsigned long orig_size;
2911 unsigned long delta_size;
2912 unsigned long deflate_size;
2913 unsigned long data_size;
2915 /* We could do deflated delta, or we could do just deflated two,
2916 * whichever is smaller.
2918 delta = NULL;
2919 deflated = deflate_it(two->ptr, two->size, &deflate_size);
2920 if (one->size && two->size) {
2921 delta = diff_delta(one->ptr, one->size,
2922 two->ptr, two->size,
2923 &delta_size, deflate_size);
2924 if (delta) {
2925 void *to_free = delta;
2926 orig_size = delta_size;
2927 delta = deflate_it(delta, delta_size, &delta_size);
2928 free(to_free);
2932 if (delta && delta_size < deflate_size) {
2933 char *s = xstrfmt("%lu", orig_size);
2934 emit_diff_symbol(o, DIFF_SYMBOL_BINARY_DIFF_HEADER_DELTA,
2935 s, strlen(s), 0);
2936 free(s);
2937 free(deflated);
2938 data = delta;
2939 data_size = delta_size;
2940 } else {
2941 char *s = xstrfmt("%lu", two->size);
2942 emit_diff_symbol(o, DIFF_SYMBOL_BINARY_DIFF_HEADER_LITERAL,
2943 s, strlen(s), 0);
2944 free(s);
2945 free(delta);
2946 data = deflated;
2947 data_size = deflate_size;
2950 /* emit data encoded in base85 */
2951 cp = data;
2952 while (data_size) {
2953 int len;
2954 int bytes = (52 < data_size) ? 52 : data_size;
2955 char line[71];
2956 data_size -= bytes;
2957 if (bytes <= 26)
2958 line[0] = bytes + 'A' - 1;
2959 else
2960 line[0] = bytes - 26 + 'a' - 1;
2961 encode_85(line + 1, cp, bytes);
2962 cp = (char *) cp + bytes;
2964 len = strlen(line);
2965 line[len++] = '\n';
2966 line[len] = '\0';
2968 emit_diff_symbol(o, DIFF_SYMBOL_BINARY_DIFF_BODY,
2969 line, len, 0);
2971 emit_diff_symbol(o, DIFF_SYMBOL_BINARY_DIFF_FOOTER, NULL, 0, 0);
2972 free(data);
2975 static void emit_binary_diff(struct diff_options *o,
2976 mmfile_t *one, mmfile_t *two)
2978 emit_diff_symbol(o, DIFF_SYMBOL_BINARY_DIFF_HEADER, NULL, 0, 0);
2979 emit_binary_diff_body(o, one, two);
2980 emit_binary_diff_body(o, two, one);
2983 int diff_filespec_is_binary(struct diff_filespec *one)
2985 if (one->is_binary == -1) {
2986 diff_filespec_load_driver(one);
2987 if (one->driver->binary != -1)
2988 one->is_binary = one->driver->binary;
2989 else {
2990 if (!one->data && DIFF_FILE_VALID(one))
2991 diff_populate_filespec(one, CHECK_BINARY);
2992 if (one->is_binary == -1 && one->data)
2993 one->is_binary = buffer_is_binary(one->data,
2994 one->size);
2995 if (one->is_binary == -1)
2996 one->is_binary = 0;
2999 return one->is_binary;
3002 static const struct userdiff_funcname *diff_funcname_pattern(struct diff_filespec *one)
3004 diff_filespec_load_driver(one);
3005 return one->driver->funcname.pattern ? &one->driver->funcname : NULL;
3008 void diff_set_mnemonic_prefix(struct diff_options *options, const char *a, const char *b)
3010 if (!options->a_prefix)
3011 options->a_prefix = a;
3012 if (!options->b_prefix)
3013 options->b_prefix = b;
3016 struct userdiff_driver *get_textconv(struct diff_filespec *one)
3018 if (!DIFF_FILE_VALID(one))
3019 return NULL;
3021 diff_filespec_load_driver(one);
3022 return userdiff_get_textconv(one->driver);
3025 static void builtin_diff(const char *name_a,
3026 const char *name_b,
3027 struct diff_filespec *one,
3028 struct diff_filespec *two,
3029 const char *xfrm_msg,
3030 int must_show_header,
3031 struct diff_options *o,
3032 int complete_rewrite)
3034 mmfile_t mf1, mf2;
3035 const char *lbl[2];
3036 char *a_one, *b_two;
3037 const char *meta = diff_get_color_opt(o, DIFF_METAINFO);
3038 const char *reset = diff_get_color_opt(o, DIFF_RESET);
3039 const char *a_prefix, *b_prefix;
3040 struct userdiff_driver *textconv_one = NULL;
3041 struct userdiff_driver *textconv_two = NULL;
3042 struct strbuf header = STRBUF_INIT;
3043 const char *line_prefix = diff_line_prefix(o);
3045 diff_set_mnemonic_prefix(o, "a/", "b/");
3046 if (o->flags.reverse_diff) {
3047 a_prefix = o->b_prefix;
3048 b_prefix = o->a_prefix;
3049 } else {
3050 a_prefix = o->a_prefix;
3051 b_prefix = o->b_prefix;
3054 if (o->submodule_format == DIFF_SUBMODULE_LOG &&
3055 (!one->mode || S_ISGITLINK(one->mode)) &&
3056 (!two->mode || S_ISGITLINK(two->mode))) {
3057 show_submodule_summary(o, one->path ? one->path : two->path,
3058 &one->oid, &two->oid,
3059 two->dirty_submodule);
3060 return;
3061 } else if (o->submodule_format == DIFF_SUBMODULE_INLINE_DIFF &&
3062 (!one->mode || S_ISGITLINK(one->mode)) &&
3063 (!two->mode || S_ISGITLINK(two->mode))) {
3064 show_submodule_inline_diff(o, one->path ? one->path : two->path,
3065 &one->oid, &two->oid,
3066 two->dirty_submodule);
3067 return;
3070 if (o->flags.allow_textconv) {
3071 textconv_one = get_textconv(one);
3072 textconv_two = get_textconv(two);
3075 /* Never use a non-valid filename anywhere if at all possible */
3076 name_a = DIFF_FILE_VALID(one) ? name_a : name_b;
3077 name_b = DIFF_FILE_VALID(two) ? name_b : name_a;
3079 a_one = quote_two(a_prefix, name_a + (*name_a == '/'));
3080 b_two = quote_two(b_prefix, name_b + (*name_b == '/'));
3081 lbl[0] = DIFF_FILE_VALID(one) ? a_one : "/dev/null";
3082 lbl[1] = DIFF_FILE_VALID(two) ? b_two : "/dev/null";
3083 strbuf_addf(&header, "%s%sdiff --git %s %s%s\n", line_prefix, meta, a_one, b_two, reset);
3084 if (lbl[0][0] == '/') {
3085 /* /dev/null */
3086 strbuf_addf(&header, "%s%snew file mode %06o%s\n", line_prefix, meta, two->mode, reset);
3087 if (xfrm_msg)
3088 strbuf_addstr(&header, xfrm_msg);
3089 must_show_header = 1;
3091 else if (lbl[1][0] == '/') {
3092 strbuf_addf(&header, "%s%sdeleted file mode %06o%s\n", line_prefix, meta, one->mode, reset);
3093 if (xfrm_msg)
3094 strbuf_addstr(&header, xfrm_msg);
3095 must_show_header = 1;
3097 else {
3098 if (one->mode != two->mode) {
3099 strbuf_addf(&header, "%s%sold mode %06o%s\n", line_prefix, meta, one->mode, reset);
3100 strbuf_addf(&header, "%s%snew mode %06o%s\n", line_prefix, meta, two->mode, reset);
3101 must_show_header = 1;
3103 if (xfrm_msg)
3104 strbuf_addstr(&header, xfrm_msg);
3107 * we do not run diff between different kind
3108 * of objects.
3110 if ((one->mode ^ two->mode) & S_IFMT)
3111 goto free_ab_and_return;
3112 if (complete_rewrite &&
3113 (textconv_one || !diff_filespec_is_binary(one)) &&
3114 (textconv_two || !diff_filespec_is_binary(two))) {
3115 emit_diff_symbol(o, DIFF_SYMBOL_HEADER,
3116 header.buf, header.len, 0);
3117 strbuf_reset(&header);
3118 emit_rewrite_diff(name_a, name_b, one, two,
3119 textconv_one, textconv_two, o);
3120 o->found_changes = 1;
3121 goto free_ab_and_return;
3125 if (o->irreversible_delete && lbl[1][0] == '/') {
3126 emit_diff_symbol(o, DIFF_SYMBOL_HEADER, header.buf,
3127 header.len, 0);
3128 strbuf_reset(&header);
3129 goto free_ab_and_return;
3130 } else if (!o->flags.text &&
3131 ( (!textconv_one && diff_filespec_is_binary(one)) ||
3132 (!textconv_two && diff_filespec_is_binary(two)) )) {
3133 struct strbuf sb = STRBUF_INIT;
3134 if (!one->data && !two->data &&
3135 S_ISREG(one->mode) && S_ISREG(two->mode) &&
3136 !o->flags.binary) {
3137 if (!oidcmp(&one->oid, &two->oid)) {
3138 if (must_show_header)
3139 emit_diff_symbol(o, DIFF_SYMBOL_HEADER,
3140 header.buf, header.len,
3142 goto free_ab_and_return;
3144 emit_diff_symbol(o, DIFF_SYMBOL_HEADER,
3145 header.buf, header.len, 0);
3146 strbuf_addf(&sb, "%sBinary files %s and %s differ\n",
3147 diff_line_prefix(o), lbl[0], lbl[1]);
3148 emit_diff_symbol(o, DIFF_SYMBOL_BINARY_FILES,
3149 sb.buf, sb.len, 0);
3150 strbuf_release(&sb);
3151 goto free_ab_and_return;
3153 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
3154 die("unable to read files to diff");
3155 /* Quite common confusing case */
3156 if (mf1.size == mf2.size &&
3157 !memcmp(mf1.ptr, mf2.ptr, mf1.size)) {
3158 if (must_show_header)
3159 emit_diff_symbol(o, DIFF_SYMBOL_HEADER,
3160 header.buf, header.len, 0);
3161 goto free_ab_and_return;
3163 emit_diff_symbol(o, DIFF_SYMBOL_HEADER, header.buf, header.len, 0);
3164 strbuf_reset(&header);
3165 if (o->flags.binary)
3166 emit_binary_diff(o, &mf1, &mf2);
3167 else {
3168 strbuf_addf(&sb, "%sBinary files %s and %s differ\n",
3169 diff_line_prefix(o), lbl[0], lbl[1]);
3170 emit_diff_symbol(o, DIFF_SYMBOL_BINARY_FILES,
3171 sb.buf, sb.len, 0);
3172 strbuf_release(&sb);
3174 o->found_changes = 1;
3175 } else {
3176 /* Crazy xdl interfaces.. */
3177 const char *diffopts = getenv("GIT_DIFF_OPTS");
3178 const char *v;
3179 xpparam_t xpp;
3180 xdemitconf_t xecfg;
3181 struct emit_callback ecbdata;
3182 const struct userdiff_funcname *pe;
3184 if (must_show_header) {
3185 emit_diff_symbol(o, DIFF_SYMBOL_HEADER,
3186 header.buf, header.len, 0);
3187 strbuf_reset(&header);
3190 mf1.size = fill_textconv(textconv_one, one, &mf1.ptr);
3191 mf2.size = fill_textconv(textconv_two, two, &mf2.ptr);
3193 pe = diff_funcname_pattern(one);
3194 if (!pe)
3195 pe = diff_funcname_pattern(two);
3197 memset(&xpp, 0, sizeof(xpp));
3198 memset(&xecfg, 0, sizeof(xecfg));
3199 memset(&ecbdata, 0, sizeof(ecbdata));
3200 ecbdata.label_path = lbl;
3201 ecbdata.color_diff = want_color(o->use_color);
3202 ecbdata.ws_rule = whitespace_rule(name_b);
3203 if (ecbdata.ws_rule & WS_BLANK_AT_EOF)
3204 check_blank_at_eof(&mf1, &mf2, &ecbdata);
3205 ecbdata.opt = o;
3206 ecbdata.header = header.len ? &header : NULL;
3207 xpp.flags = o->xdl_opts;
3208 xpp.anchors = o->anchors;
3209 xpp.anchors_nr = o->anchors_nr;
3210 xecfg.ctxlen = o->context;
3211 xecfg.interhunkctxlen = o->interhunkcontext;
3212 xecfg.flags = XDL_EMIT_FUNCNAMES;
3213 if (o->flags.funccontext)
3214 xecfg.flags |= XDL_EMIT_FUNCCONTEXT;
3215 if (pe)
3216 xdiff_set_find_func(&xecfg, pe->pattern, pe->cflags);
3217 if (!diffopts)
3219 else if (skip_prefix(diffopts, "--unified=", &v))
3220 xecfg.ctxlen = strtoul(v, NULL, 10);
3221 else if (skip_prefix(diffopts, "-u", &v))
3222 xecfg.ctxlen = strtoul(v, NULL, 10);
3223 if (o->word_diff)
3224 init_diff_words_data(&ecbdata, o, one, two);
3225 if (xdi_diff_outf(&mf1, &mf2, fn_out_consume, &ecbdata,
3226 &xpp, &xecfg))
3227 die("unable to generate diff for %s", one->path);
3228 if (o->word_diff)
3229 free_diff_words_data(&ecbdata);
3230 if (textconv_one)
3231 free(mf1.ptr);
3232 if (textconv_two)
3233 free(mf2.ptr);
3234 xdiff_clear_find_func(&xecfg);
3237 free_ab_and_return:
3238 strbuf_release(&header);
3239 diff_free_filespec_data(one);
3240 diff_free_filespec_data(two);
3241 free(a_one);
3242 free(b_two);
3243 return;
3246 static char *get_compact_summary(const struct diff_filepair *p, int is_renamed)
3248 if (!is_renamed) {
3249 if (p->status == DIFF_STATUS_ADDED) {
3250 if (S_ISLNK(p->two->mode))
3251 return "new +l";
3252 else if ((p->two->mode & 0777) == 0755)
3253 return "new +x";
3254 else
3255 return "new";
3256 } else if (p->status == DIFF_STATUS_DELETED)
3257 return "gone";
3259 if (S_ISLNK(p->one->mode) && !S_ISLNK(p->two->mode))
3260 return "mode -l";
3261 else if (!S_ISLNK(p->one->mode) && S_ISLNK(p->two->mode))
3262 return "mode +l";
3263 else if ((p->one->mode & 0777) == 0644 &&
3264 (p->two->mode & 0777) == 0755)
3265 return "mode +x";
3266 else if ((p->one->mode & 0777) == 0755 &&
3267 (p->two->mode & 0777) == 0644)
3268 return "mode -x";
3269 return NULL;
3272 static void builtin_diffstat(const char *name_a, const char *name_b,
3273 struct diff_filespec *one,
3274 struct diff_filespec *two,
3275 struct diffstat_t *diffstat,
3276 struct diff_options *o,
3277 struct diff_filepair *p)
3279 mmfile_t mf1, mf2;
3280 struct diffstat_file *data;
3281 int same_contents;
3282 int complete_rewrite = 0;
3284 if (!DIFF_PAIR_UNMERGED(p)) {
3285 if (p->status == DIFF_STATUS_MODIFIED && p->score)
3286 complete_rewrite = 1;
3289 data = diffstat_add(diffstat, name_a, name_b);
3290 data->is_interesting = p->status != DIFF_STATUS_UNKNOWN;
3291 if (o->flags.stat_with_summary)
3292 data->comments = get_compact_summary(p, data->is_renamed);
3294 if (!one || !two) {
3295 data->is_unmerged = 1;
3296 return;
3299 same_contents = !oidcmp(&one->oid, &two->oid);
3301 if (diff_filespec_is_binary(one) || diff_filespec_is_binary(two)) {
3302 data->is_binary = 1;
3303 if (same_contents) {
3304 data->added = 0;
3305 data->deleted = 0;
3306 } else {
3307 data->added = diff_filespec_size(two);
3308 data->deleted = diff_filespec_size(one);
3312 else if (complete_rewrite) {
3313 diff_populate_filespec(one, 0);
3314 diff_populate_filespec(two, 0);
3315 data->deleted = count_lines(one->data, one->size);
3316 data->added = count_lines(two->data, two->size);
3319 else if (!same_contents) {
3320 /* Crazy xdl interfaces.. */
3321 xpparam_t xpp;
3322 xdemitconf_t xecfg;
3324 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
3325 die("unable to read files to diff");
3327 memset(&xpp, 0, sizeof(xpp));
3328 memset(&xecfg, 0, sizeof(xecfg));
3329 xpp.flags = o->xdl_opts;
3330 xpp.anchors = o->anchors;
3331 xpp.anchors_nr = o->anchors_nr;
3332 xecfg.ctxlen = o->context;
3333 xecfg.interhunkctxlen = o->interhunkcontext;
3334 if (xdi_diff_outf(&mf1, &mf2, diffstat_consume, diffstat,
3335 &xpp, &xecfg))
3336 die("unable to generate diffstat for %s", one->path);
3339 diff_free_filespec_data(one);
3340 diff_free_filespec_data(two);
3343 static void builtin_checkdiff(const char *name_a, const char *name_b,
3344 const char *attr_path,
3345 struct diff_filespec *one,
3346 struct diff_filespec *two,
3347 struct diff_options *o)
3349 mmfile_t mf1, mf2;
3350 struct checkdiff_t data;
3352 if (!two)
3353 return;
3355 memset(&data, 0, sizeof(data));
3356 data.filename = name_b ? name_b : name_a;
3357 data.lineno = 0;
3358 data.o = o;
3359 data.ws_rule = whitespace_rule(attr_path);
3360 data.conflict_marker_size = ll_merge_marker_size(attr_path);
3362 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
3363 die("unable to read files to diff");
3366 * All the other codepaths check both sides, but not checking
3367 * the "old" side here is deliberate. We are checking the newly
3368 * introduced changes, and as long as the "new" side is text, we
3369 * can and should check what it introduces.
3371 if (diff_filespec_is_binary(two))
3372 goto free_and_return;
3373 else {
3374 /* Crazy xdl interfaces.. */
3375 xpparam_t xpp;
3376 xdemitconf_t xecfg;
3378 memset(&xpp, 0, sizeof(xpp));
3379 memset(&xecfg, 0, sizeof(xecfg));
3380 xecfg.ctxlen = 1; /* at least one context line */
3381 xpp.flags = 0;
3382 if (xdi_diff_outf(&mf1, &mf2, checkdiff_consume, &data,
3383 &xpp, &xecfg))
3384 die("unable to generate checkdiff for %s", one->path);
3386 if (data.ws_rule & WS_BLANK_AT_EOF) {
3387 struct emit_callback ecbdata;
3388 int blank_at_eof;
3390 ecbdata.ws_rule = data.ws_rule;
3391 check_blank_at_eof(&mf1, &mf2, &ecbdata);
3392 blank_at_eof = ecbdata.blank_at_eof_in_postimage;
3394 if (blank_at_eof) {
3395 static char *err;
3396 if (!err)
3397 err = whitespace_error_string(WS_BLANK_AT_EOF);
3398 fprintf(o->file, "%s:%d: %s.\n",
3399 data.filename, blank_at_eof, err);
3400 data.status = 1; /* report errors */
3404 free_and_return:
3405 diff_free_filespec_data(one);
3406 diff_free_filespec_data(two);
3407 if (data.status)
3408 o->flags.check_failed = 1;
3411 struct diff_filespec *alloc_filespec(const char *path)
3413 struct diff_filespec *spec;
3415 FLEXPTR_ALLOC_STR(spec, path, path);
3416 spec->count = 1;
3417 spec->is_binary = -1;
3418 return spec;
3421 void free_filespec(struct diff_filespec *spec)
3423 if (!--spec->count) {
3424 diff_free_filespec_data(spec);
3425 free(spec);
3429 void fill_filespec(struct diff_filespec *spec, const struct object_id *oid,
3430 int oid_valid, unsigned short mode)
3432 if (mode) {
3433 spec->mode = canon_mode(mode);
3434 oidcpy(&spec->oid, oid);
3435 spec->oid_valid = oid_valid;
3440 * Given a name and sha1 pair, if the index tells us the file in
3441 * the work tree has that object contents, return true, so that
3442 * prepare_temp_file() does not have to inflate and extract.
3444 static int reuse_worktree_file(const char *name, const struct object_id *oid, int want_file)
3446 const struct cache_entry *ce;
3447 struct stat st;
3448 int pos, len;
3451 * We do not read the cache ourselves here, because the
3452 * benchmark with my previous version that always reads cache
3453 * shows that it makes things worse for diff-tree comparing
3454 * two linux-2.6 kernel trees in an already checked out work
3455 * tree. This is because most diff-tree comparisons deal with
3456 * only a small number of files, while reading the cache is
3457 * expensive for a large project, and its cost outweighs the
3458 * savings we get by not inflating the object to a temporary
3459 * file. Practically, this code only helps when we are used
3460 * by diff-cache --cached, which does read the cache before
3461 * calling us.
3463 if (!active_cache)
3464 return 0;
3466 /* We want to avoid the working directory if our caller
3467 * doesn't need the data in a normal file, this system
3468 * is rather slow with its stat/open/mmap/close syscalls,
3469 * and the object is contained in a pack file. The pack
3470 * is probably already open and will be faster to obtain
3471 * the data through than the working directory. Loose
3472 * objects however would tend to be slower as they need
3473 * to be individually opened and inflated.
3475 if (!FAST_WORKING_DIRECTORY && !want_file && has_sha1_pack(oid->hash))
3476 return 0;
3479 * Similarly, if we'd have to convert the file contents anyway, that
3480 * makes the optimization not worthwhile.
3482 if (!want_file && would_convert_to_git(&the_index, name))
3483 return 0;
3485 len = strlen(name);
3486 pos = cache_name_pos(name, len);
3487 if (pos < 0)
3488 return 0;
3489 ce = active_cache[pos];
3492 * This is not the sha1 we are looking for, or
3493 * unreusable because it is not a regular file.
3495 if (oidcmp(oid, &ce->oid) || !S_ISREG(ce->ce_mode))
3496 return 0;
3499 * If ce is marked as "assume unchanged", there is no
3500 * guarantee that work tree matches what we are looking for.
3502 if ((ce->ce_flags & CE_VALID) || ce_skip_worktree(ce))
3503 return 0;
3506 * If ce matches the file in the work tree, we can reuse it.
3508 if (ce_uptodate(ce) ||
3509 (!lstat(name, &st) && !ce_match_stat(ce, &st, 0)))
3510 return 1;
3512 return 0;
3515 static int diff_populate_gitlink(struct diff_filespec *s, int size_only)
3517 struct strbuf buf = STRBUF_INIT;
3518 char *dirty = "";
3520 /* Are we looking at the work tree? */
3521 if (s->dirty_submodule)
3522 dirty = "-dirty";
3524 strbuf_addf(&buf, "Subproject commit %s%s\n",
3525 oid_to_hex(&s->oid), dirty);
3526 s->size = buf.len;
3527 if (size_only) {
3528 s->data = NULL;
3529 strbuf_release(&buf);
3530 } else {
3531 s->data = strbuf_detach(&buf, NULL);
3532 s->should_free = 1;
3534 return 0;
3538 * While doing rename detection and pickaxe operation, we may need to
3539 * grab the data for the blob (or file) for our own in-core comparison.
3540 * diff_filespec has data and size fields for this purpose.
3542 int diff_populate_filespec(struct diff_filespec *s, unsigned int flags)
3544 int size_only = flags & CHECK_SIZE_ONLY;
3545 int err = 0;
3546 int conv_flags = global_conv_flags_eol;
3548 * demote FAIL to WARN to allow inspecting the situation
3549 * instead of refusing.
3551 if (conv_flags & CONV_EOL_RNDTRP_DIE)
3552 conv_flags = CONV_EOL_RNDTRP_WARN;
3554 if (!DIFF_FILE_VALID(s))
3555 die("internal error: asking to populate invalid file.");
3556 if (S_ISDIR(s->mode))
3557 return -1;
3559 if (s->data)
3560 return 0;
3562 if (size_only && 0 < s->size)
3563 return 0;
3565 if (S_ISGITLINK(s->mode))
3566 return diff_populate_gitlink(s, size_only);
3568 if (!s->oid_valid ||
3569 reuse_worktree_file(s->path, &s->oid, 0)) {
3570 struct strbuf buf = STRBUF_INIT;
3571 struct stat st;
3572 int fd;
3574 if (lstat(s->path, &st) < 0) {
3575 err_empty:
3576 err = -1;
3577 empty:
3578 s->data = (char *)"";
3579 s->size = 0;
3580 return err;
3582 s->size = xsize_t(st.st_size);
3583 if (!s->size)
3584 goto empty;
3585 if (S_ISLNK(st.st_mode)) {
3586 struct strbuf sb = STRBUF_INIT;
3588 if (strbuf_readlink(&sb, s->path, s->size))
3589 goto err_empty;
3590 s->size = sb.len;
3591 s->data = strbuf_detach(&sb, NULL);
3592 s->should_free = 1;
3593 return 0;
3597 * Even if the caller would be happy with getting
3598 * only the size, we cannot return early at this
3599 * point if the path requires us to run the content
3600 * conversion.
3602 if (size_only && !would_convert_to_git(&the_index, s->path))
3603 return 0;
3606 * Note: this check uses xsize_t(st.st_size) that may
3607 * not be the true size of the blob after it goes
3608 * through convert_to_git(). This may not strictly be
3609 * correct, but the whole point of big_file_threshold
3610 * and is_binary check being that we want to avoid
3611 * opening the file and inspecting the contents, this
3612 * is probably fine.
3614 if ((flags & CHECK_BINARY) &&
3615 s->size > big_file_threshold && s->is_binary == -1) {
3616 s->is_binary = 1;
3617 return 0;
3619 fd = open(s->path, O_RDONLY);
3620 if (fd < 0)
3621 goto err_empty;
3622 s->data = xmmap(NULL, s->size, PROT_READ, MAP_PRIVATE, fd, 0);
3623 close(fd);
3624 s->should_munmap = 1;
3627 * Convert from working tree format to canonical git format
3629 if (convert_to_git(&the_index, s->path, s->data, s->size, &buf, conv_flags)) {
3630 size_t size = 0;
3631 munmap(s->data, s->size);
3632 s->should_munmap = 0;
3633 s->data = strbuf_detach(&buf, &size);
3634 s->size = size;
3635 s->should_free = 1;
3638 else {
3639 enum object_type type;
3640 if (size_only || (flags & CHECK_BINARY)) {
3641 type = oid_object_info(the_repository, &s->oid,
3642 &s->size);
3643 if (type < 0)
3644 die("unable to read %s",
3645 oid_to_hex(&s->oid));
3646 if (size_only)
3647 return 0;
3648 if (s->size > big_file_threshold && s->is_binary == -1) {
3649 s->is_binary = 1;
3650 return 0;
3653 s->data = read_object_file(&s->oid, &type, &s->size);
3654 if (!s->data)
3655 die("unable to read %s", oid_to_hex(&s->oid));
3656 s->should_free = 1;
3658 return 0;
3661 void diff_free_filespec_blob(struct diff_filespec *s)
3663 if (s->should_free)
3664 free(s->data);
3665 else if (s->should_munmap)
3666 munmap(s->data, s->size);
3668 if (s->should_free || s->should_munmap) {
3669 s->should_free = s->should_munmap = 0;
3670 s->data = NULL;
3674 void diff_free_filespec_data(struct diff_filespec *s)
3676 diff_free_filespec_blob(s);
3677 FREE_AND_NULL(s->cnt_data);
3680 static void prep_temp_blob(const char *path, struct diff_tempfile *temp,
3681 void *blob,
3682 unsigned long size,
3683 const struct object_id *oid,
3684 int mode)
3686 struct strbuf buf = STRBUF_INIT;
3687 struct strbuf tempfile = STRBUF_INIT;
3688 char *path_dup = xstrdup(path);
3689 const char *base = basename(path_dup);
3691 /* Generate "XXXXXX_basename.ext" */
3692 strbuf_addstr(&tempfile, "XXXXXX_");
3693 strbuf_addstr(&tempfile, base);
3695 temp->tempfile = mks_tempfile_ts(tempfile.buf, strlen(base) + 1);
3696 if (!temp->tempfile)
3697 die_errno("unable to create temp-file");
3698 if (convert_to_working_tree(path,
3699 (const char *)blob, (size_t)size, &buf)) {
3700 blob = buf.buf;
3701 size = buf.len;
3703 if (write_in_full(temp->tempfile->fd, blob, size) < 0 ||
3704 close_tempfile_gently(temp->tempfile))
3705 die_errno("unable to write temp-file");
3706 temp->name = get_tempfile_path(temp->tempfile);
3707 oid_to_hex_r(temp->hex, oid);
3708 xsnprintf(temp->mode, sizeof(temp->mode), "%06o", mode);
3709 strbuf_release(&buf);
3710 strbuf_release(&tempfile);
3711 free(path_dup);
3714 static struct diff_tempfile *prepare_temp_file(const char *name,
3715 struct diff_filespec *one)
3717 struct diff_tempfile *temp = claim_diff_tempfile();
3719 if (!DIFF_FILE_VALID(one)) {
3720 not_a_valid_file:
3721 /* A '-' entry produces this for file-2, and
3722 * a '+' entry produces this for file-1.
3724 temp->name = "/dev/null";
3725 xsnprintf(temp->hex, sizeof(temp->hex), ".");
3726 xsnprintf(temp->mode, sizeof(temp->mode), ".");
3727 return temp;
3730 if (!S_ISGITLINK(one->mode) &&
3731 (!one->oid_valid ||
3732 reuse_worktree_file(name, &one->oid, 1))) {
3733 struct stat st;
3734 if (lstat(name, &st) < 0) {
3735 if (errno == ENOENT)
3736 goto not_a_valid_file;
3737 die_errno("stat(%s)", name);
3739 if (S_ISLNK(st.st_mode)) {
3740 struct strbuf sb = STRBUF_INIT;
3741 if (strbuf_readlink(&sb, name, st.st_size) < 0)
3742 die_errno("readlink(%s)", name);
3743 prep_temp_blob(name, temp, sb.buf, sb.len,
3744 (one->oid_valid ?
3745 &one->oid : &null_oid),
3746 (one->oid_valid ?
3747 one->mode : S_IFLNK));
3748 strbuf_release(&sb);
3750 else {
3751 /* we can borrow from the file in the work tree */
3752 temp->name = name;
3753 if (!one->oid_valid)
3754 oid_to_hex_r(temp->hex, &null_oid);
3755 else
3756 oid_to_hex_r(temp->hex, &one->oid);
3757 /* Even though we may sometimes borrow the
3758 * contents from the work tree, we always want
3759 * one->mode. mode is trustworthy even when
3760 * !(one->oid_valid), as long as
3761 * DIFF_FILE_VALID(one).
3763 xsnprintf(temp->mode, sizeof(temp->mode), "%06o", one->mode);
3765 return temp;
3767 else {
3768 if (diff_populate_filespec(one, 0))
3769 die("cannot read data blob for %s", one->path);
3770 prep_temp_blob(name, temp, one->data, one->size,
3771 &one->oid, one->mode);
3773 return temp;
3776 static void add_external_diff_name(struct argv_array *argv,
3777 const char *name,
3778 struct diff_filespec *df)
3780 struct diff_tempfile *temp = prepare_temp_file(name, df);
3781 argv_array_push(argv, temp->name);
3782 argv_array_push(argv, temp->hex);
3783 argv_array_push(argv, temp->mode);
3786 /* An external diff command takes:
3788 * diff-cmd name infile1 infile1-sha1 infile1-mode \
3789 * infile2 infile2-sha1 infile2-mode [ rename-to ]
3792 static void run_external_diff(const char *pgm,
3793 const char *name,
3794 const char *other,
3795 struct diff_filespec *one,
3796 struct diff_filespec *two,
3797 const char *xfrm_msg,
3798 int complete_rewrite,
3799 struct diff_options *o)
3801 struct argv_array argv = ARGV_ARRAY_INIT;
3802 struct argv_array env = ARGV_ARRAY_INIT;
3803 struct diff_queue_struct *q = &diff_queued_diff;
3805 argv_array_push(&argv, pgm);
3806 argv_array_push(&argv, name);
3808 if (one && two) {
3809 add_external_diff_name(&argv, name, one);
3810 if (!other)
3811 add_external_diff_name(&argv, name, two);
3812 else {
3813 add_external_diff_name(&argv, other, two);
3814 argv_array_push(&argv, other);
3815 argv_array_push(&argv, xfrm_msg);
3819 argv_array_pushf(&env, "GIT_DIFF_PATH_COUNTER=%d", ++o->diff_path_counter);
3820 argv_array_pushf(&env, "GIT_DIFF_PATH_TOTAL=%d", q->nr);
3822 if (run_command_v_opt_cd_env(argv.argv, RUN_USING_SHELL, NULL, env.argv))
3823 die(_("external diff died, stopping at %s"), name);
3825 remove_tempfile();
3826 argv_array_clear(&argv);
3827 argv_array_clear(&env);
3830 static int similarity_index(struct diff_filepair *p)
3832 return p->score * 100 / MAX_SCORE;
3835 static const char *diff_abbrev_oid(const struct object_id *oid, int abbrev)
3837 if (startup_info->have_repository)
3838 return find_unique_abbrev(oid, abbrev);
3839 else {
3840 char *hex = oid_to_hex(oid);
3841 if (abbrev < 0)
3842 abbrev = FALLBACK_DEFAULT_ABBREV;
3843 if (abbrev > GIT_SHA1_HEXSZ)
3844 BUG("oid abbreviation out of range: %d", abbrev);
3845 if (abbrev)
3846 hex[abbrev] = '\0';
3847 return hex;
3851 static void fill_metainfo(struct strbuf *msg,
3852 const char *name,
3853 const char *other,
3854 struct diff_filespec *one,
3855 struct diff_filespec *two,
3856 struct diff_options *o,
3857 struct diff_filepair *p,
3858 int *must_show_header,
3859 int use_color)
3861 const char *set = diff_get_color(use_color, DIFF_METAINFO);
3862 const char *reset = diff_get_color(use_color, DIFF_RESET);
3863 const char *line_prefix = diff_line_prefix(o);
3865 *must_show_header = 1;
3866 strbuf_init(msg, PATH_MAX * 2 + 300);
3867 switch (p->status) {
3868 case DIFF_STATUS_COPIED:
3869 strbuf_addf(msg, "%s%ssimilarity index %d%%",
3870 line_prefix, set, similarity_index(p));
3871 strbuf_addf(msg, "%s\n%s%scopy from ",
3872 reset, line_prefix, set);
3873 quote_c_style(name, msg, NULL, 0);
3874 strbuf_addf(msg, "%s\n%s%scopy to ", reset, line_prefix, set);
3875 quote_c_style(other, msg, NULL, 0);
3876 strbuf_addf(msg, "%s\n", reset);
3877 break;
3878 case DIFF_STATUS_RENAMED:
3879 strbuf_addf(msg, "%s%ssimilarity index %d%%",
3880 line_prefix, set, similarity_index(p));
3881 strbuf_addf(msg, "%s\n%s%srename from ",
3882 reset, line_prefix, set);
3883 quote_c_style(name, msg, NULL, 0);
3884 strbuf_addf(msg, "%s\n%s%srename to ",
3885 reset, line_prefix, set);
3886 quote_c_style(other, msg, NULL, 0);
3887 strbuf_addf(msg, "%s\n", reset);
3888 break;
3889 case DIFF_STATUS_MODIFIED:
3890 if (p->score) {
3891 strbuf_addf(msg, "%s%sdissimilarity index %d%%%s\n",
3892 line_prefix,
3893 set, similarity_index(p), reset);
3894 break;
3896 /* fallthru */
3897 default:
3898 *must_show_header = 0;
3900 if (one && two && oidcmp(&one->oid, &two->oid)) {
3901 int abbrev = o->flags.full_index ? 40 : DEFAULT_ABBREV;
3903 if (o->flags.binary) {
3904 mmfile_t mf;
3905 if ((!fill_mmfile(&mf, one) && diff_filespec_is_binary(one)) ||
3906 (!fill_mmfile(&mf, two) && diff_filespec_is_binary(two)))
3907 abbrev = 40;
3909 strbuf_addf(msg, "%s%sindex %s..%s", line_prefix, set,
3910 diff_abbrev_oid(&one->oid, abbrev),
3911 diff_abbrev_oid(&two->oid, abbrev));
3912 if (one->mode == two->mode)
3913 strbuf_addf(msg, " %06o", one->mode);
3914 strbuf_addf(msg, "%s\n", reset);
3918 static void run_diff_cmd(const char *pgm,
3919 const char *name,
3920 const char *other,
3921 const char *attr_path,
3922 struct diff_filespec *one,
3923 struct diff_filespec *two,
3924 struct strbuf *msg,
3925 struct diff_options *o,
3926 struct diff_filepair *p)
3928 const char *xfrm_msg = NULL;
3929 int complete_rewrite = (p->status == DIFF_STATUS_MODIFIED) && p->score;
3930 int must_show_header = 0;
3933 if (o->flags.allow_external) {
3934 struct userdiff_driver *drv = userdiff_find_by_path(attr_path);
3935 if (drv && drv->external)
3936 pgm = drv->external;
3939 if (msg) {
3941 * don't use colors when the header is intended for an
3942 * external diff driver
3944 fill_metainfo(msg, name, other, one, two, o, p,
3945 &must_show_header,
3946 want_color(o->use_color) && !pgm);
3947 xfrm_msg = msg->len ? msg->buf : NULL;
3950 if (pgm) {
3951 run_external_diff(pgm, name, other, one, two, xfrm_msg,
3952 complete_rewrite, o);
3953 return;
3955 if (one && two)
3956 builtin_diff(name, other ? other : name,
3957 one, two, xfrm_msg, must_show_header,
3958 o, complete_rewrite);
3959 else
3960 fprintf(o->file, "* Unmerged path %s\n", name);
3963 static void diff_fill_oid_info(struct diff_filespec *one)
3965 if (DIFF_FILE_VALID(one)) {
3966 if (!one->oid_valid) {
3967 struct stat st;
3968 if (one->is_stdin) {
3969 oidclr(&one->oid);
3970 return;
3972 if (lstat(one->path, &st) < 0)
3973 die_errno("stat '%s'", one->path);
3974 if (index_path(&one->oid, one->path, &st, 0))
3975 die("cannot hash %s", one->path);
3978 else
3979 oidclr(&one->oid);
3982 static void strip_prefix(int prefix_length, const char **namep, const char **otherp)
3984 /* Strip the prefix but do not molest /dev/null and absolute paths */
3985 if (*namep && **namep != '/') {
3986 *namep += prefix_length;
3987 if (**namep == '/')
3988 ++*namep;
3990 if (*otherp && **otherp != '/') {
3991 *otherp += prefix_length;
3992 if (**otherp == '/')
3993 ++*otherp;
3997 static void run_diff(struct diff_filepair *p, struct diff_options *o)
3999 const char *pgm = external_diff();
4000 struct strbuf msg;
4001 struct diff_filespec *one = p->one;
4002 struct diff_filespec *two = p->two;
4003 const char *name;
4004 const char *other;
4005 const char *attr_path;
4007 name = one->path;
4008 other = (strcmp(name, two->path) ? two->path : NULL);
4009 attr_path = name;
4010 if (o->prefix_length)
4011 strip_prefix(o->prefix_length, &name, &other);
4013 if (!o->flags.allow_external)
4014 pgm = NULL;
4016 if (DIFF_PAIR_UNMERGED(p)) {
4017 run_diff_cmd(pgm, name, NULL, attr_path,
4018 NULL, NULL, NULL, o, p);
4019 return;
4022 diff_fill_oid_info(one);
4023 diff_fill_oid_info(two);
4025 if (!pgm &&
4026 DIFF_FILE_VALID(one) && DIFF_FILE_VALID(two) &&
4027 (S_IFMT & one->mode) != (S_IFMT & two->mode)) {
4029 * a filepair that changes between file and symlink
4030 * needs to be split into deletion and creation.
4032 struct diff_filespec *null = alloc_filespec(two->path);
4033 run_diff_cmd(NULL, name, other, attr_path,
4034 one, null, &msg, o, p);
4035 free(null);
4036 strbuf_release(&msg);
4038 null = alloc_filespec(one->path);
4039 run_diff_cmd(NULL, name, other, attr_path,
4040 null, two, &msg, o, p);
4041 free(null);
4043 else
4044 run_diff_cmd(pgm, name, other, attr_path,
4045 one, two, &msg, o, p);
4047 strbuf_release(&msg);
4050 static void run_diffstat(struct diff_filepair *p, struct diff_options *o,
4051 struct diffstat_t *diffstat)
4053 const char *name;
4054 const char *other;
4056 if (DIFF_PAIR_UNMERGED(p)) {
4057 /* unmerged */
4058 builtin_diffstat(p->one->path, NULL, NULL, NULL, diffstat, o, p);
4059 return;
4062 name = p->one->path;
4063 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
4065 if (o->prefix_length)
4066 strip_prefix(o->prefix_length, &name, &other);
4068 diff_fill_oid_info(p->one);
4069 diff_fill_oid_info(p->two);
4071 builtin_diffstat(name, other, p->one, p->two, diffstat, o, p);
4074 static void run_checkdiff(struct diff_filepair *p, struct diff_options *o)
4076 const char *name;
4077 const char *other;
4078 const char *attr_path;
4080 if (DIFF_PAIR_UNMERGED(p)) {
4081 /* unmerged */
4082 return;
4085 name = p->one->path;
4086 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
4087 attr_path = other ? other : name;
4089 if (o->prefix_length)
4090 strip_prefix(o->prefix_length, &name, &other);
4092 diff_fill_oid_info(p->one);
4093 diff_fill_oid_info(p->two);
4095 builtin_checkdiff(name, other, attr_path, p->one, p->two, o);
4098 void diff_setup(struct diff_options *options)
4100 memcpy(options, &default_diff_options, sizeof(*options));
4102 options->file = stdout;
4104 options->abbrev = DEFAULT_ABBREV;
4105 options->line_termination = '\n';
4106 options->break_opt = -1;
4107 options->rename_limit = -1;
4108 options->dirstat_permille = diff_dirstat_permille_default;
4109 options->context = diff_context_default;
4110 options->interhunkcontext = diff_interhunk_context_default;
4111 options->ws_error_highlight = ws_error_highlight_default;
4112 options->flags.rename_empty = 1;
4113 options->objfind = NULL;
4115 /* pathchange left =NULL by default */
4116 options->change = diff_change;
4117 options->add_remove = diff_addremove;
4118 options->use_color = diff_use_color_default;
4119 options->detect_rename = diff_detect_rename_default;
4120 options->xdl_opts |= diff_algorithm;
4121 if (diff_indent_heuristic)
4122 DIFF_XDL_SET(options, INDENT_HEURISTIC);
4124 options->orderfile = diff_order_file_cfg;
4126 if (diff_no_prefix) {
4127 options->a_prefix = options->b_prefix = "";
4128 } else if (!diff_mnemonic_prefix) {
4129 options->a_prefix = "a/";
4130 options->b_prefix = "b/";
4133 options->color_moved = diff_color_moved_default;
4136 void diff_setup_done(struct diff_options *options)
4138 unsigned check_mask = DIFF_FORMAT_NAME |
4139 DIFF_FORMAT_NAME_STATUS |
4140 DIFF_FORMAT_CHECKDIFF |
4141 DIFF_FORMAT_NO_OUTPUT;
4143 if (options->set_default)
4144 options->set_default(options);
4146 if (HAS_MULTI_BITS(options->output_format & check_mask))
4147 die(_("--name-only, --name-status, --check and -s are mutually exclusive"));
4149 if (HAS_MULTI_BITS(options->pickaxe_opts & DIFF_PICKAXE_KINDS_MASK))
4150 die(_("-G, -S and --find-object are mutually exclusive"));
4153 * Most of the time we can say "there are changes"
4154 * only by checking if there are changed paths, but
4155 * --ignore-whitespace* options force us to look
4156 * inside contents.
4159 if ((options->xdl_opts & XDF_WHITESPACE_FLAGS))
4160 options->flags.diff_from_contents = 1;
4161 else
4162 options->flags.diff_from_contents = 0;
4164 if (options->flags.find_copies_harder)
4165 options->detect_rename = DIFF_DETECT_COPY;
4167 if (!options->flags.relative_name)
4168 options->prefix = NULL;
4169 if (options->prefix)
4170 options->prefix_length = strlen(options->prefix);
4171 else
4172 options->prefix_length = 0;
4174 if (options->output_format & (DIFF_FORMAT_NAME |
4175 DIFF_FORMAT_NAME_STATUS |
4176 DIFF_FORMAT_CHECKDIFF |
4177 DIFF_FORMAT_NO_OUTPUT))
4178 options->output_format &= ~(DIFF_FORMAT_RAW |
4179 DIFF_FORMAT_NUMSTAT |
4180 DIFF_FORMAT_DIFFSTAT |
4181 DIFF_FORMAT_SHORTSTAT |
4182 DIFF_FORMAT_DIRSTAT |
4183 DIFF_FORMAT_SUMMARY |
4184 DIFF_FORMAT_PATCH);
4187 * These cases always need recursive; we do not drop caller-supplied
4188 * recursive bits for other formats here.
4190 if (options->output_format & (DIFF_FORMAT_PATCH |
4191 DIFF_FORMAT_NUMSTAT |
4192 DIFF_FORMAT_DIFFSTAT |
4193 DIFF_FORMAT_SHORTSTAT |
4194 DIFF_FORMAT_DIRSTAT |
4195 DIFF_FORMAT_SUMMARY |
4196 DIFF_FORMAT_CHECKDIFF))
4197 options->flags.recursive = 1;
4199 * Also pickaxe would not work very well if you do not say recursive
4201 if (options->pickaxe_opts & DIFF_PICKAXE_KINDS_MASK)
4202 options->flags.recursive = 1;
4204 * When patches are generated, submodules diffed against the work tree
4205 * must be checked for dirtiness too so it can be shown in the output
4207 if (options->output_format & DIFF_FORMAT_PATCH)
4208 options->flags.dirty_submodules = 1;
4210 if (options->detect_rename && options->rename_limit < 0)
4211 options->rename_limit = diff_rename_limit_default;
4212 if (options->setup & DIFF_SETUP_USE_CACHE) {
4213 if (!active_cache)
4214 /* read-cache does not die even when it fails
4215 * so it is safe for us to do this here. Also
4216 * it does not smudge active_cache or active_nr
4217 * when it fails, so we do not have to worry about
4218 * cleaning it up ourselves either.
4220 read_cache();
4222 if (40 < options->abbrev)
4223 options->abbrev = 40; /* full */
4226 * It does not make sense to show the first hit we happened
4227 * to have found. It does not make sense not to return with
4228 * exit code in such a case either.
4230 if (options->flags.quick) {
4231 options->output_format = DIFF_FORMAT_NO_OUTPUT;
4232 options->flags.exit_with_status = 1;
4235 options->diff_path_counter = 0;
4237 if (options->flags.follow_renames && options->pathspec.nr != 1)
4238 die(_("--follow requires exactly one pathspec"));
4240 if (!options->use_color || external_diff())
4241 options->color_moved = 0;
4244 static int opt_arg(const char *arg, int arg_short, const char *arg_long, int *val)
4246 char c, *eq;
4247 int len;
4249 if (*arg != '-')
4250 return 0;
4251 c = *++arg;
4252 if (!c)
4253 return 0;
4254 if (c == arg_short) {
4255 c = *++arg;
4256 if (!c)
4257 return 1;
4258 if (val && isdigit(c)) {
4259 char *end;
4260 int n = strtoul(arg, &end, 10);
4261 if (*end)
4262 return 0;
4263 *val = n;
4264 return 1;
4266 return 0;
4268 if (c != '-')
4269 return 0;
4270 arg++;
4271 eq = strchrnul(arg, '=');
4272 len = eq - arg;
4273 if (!len || strncmp(arg, arg_long, len))
4274 return 0;
4275 if (*eq) {
4276 int n;
4277 char *end;
4278 if (!isdigit(*++eq))
4279 return 0;
4280 n = strtoul(eq, &end, 10);
4281 if (*end)
4282 return 0;
4283 *val = n;
4285 return 1;
4288 static int diff_scoreopt_parse(const char *opt);
4290 static inline int short_opt(char opt, const char **argv,
4291 const char **optarg)
4293 const char *arg = argv[0];
4294 if (arg[0] != '-' || arg[1] != opt)
4295 return 0;
4296 if (arg[2] != '\0') {
4297 *optarg = arg + 2;
4298 return 1;
4300 if (!argv[1])
4301 die("Option '%c' requires a value", opt);
4302 *optarg = argv[1];
4303 return 2;
4306 int parse_long_opt(const char *opt, const char **argv,
4307 const char **optarg)
4309 const char *arg = argv[0];
4310 if (!skip_prefix(arg, "--", &arg))
4311 return 0;
4312 if (!skip_prefix(arg, opt, &arg))
4313 return 0;
4314 if (*arg == '=') { /* stuck form: --option=value */
4315 *optarg = arg + 1;
4316 return 1;
4318 if (*arg != '\0')
4319 return 0;
4320 /* separate form: --option value */
4321 if (!argv[1])
4322 die("Option '--%s' requires a value", opt);
4323 *optarg = argv[1];
4324 return 2;
4327 static int stat_opt(struct diff_options *options, const char **av)
4329 const char *arg = av[0];
4330 char *end;
4331 int width = options->stat_width;
4332 int name_width = options->stat_name_width;
4333 int graph_width = options->stat_graph_width;
4334 int count = options->stat_count;
4335 int argcount = 1;
4337 if (!skip_prefix(arg, "--stat", &arg))
4338 BUG("stat option does not begin with --stat: %s", arg);
4339 end = (char *)arg;
4341 switch (*arg) {
4342 case '-':
4343 if (skip_prefix(arg, "-width", &arg)) {
4344 if (*arg == '=')
4345 width = strtoul(arg + 1, &end, 10);
4346 else if (!*arg && !av[1])
4347 die_want_option("--stat-width");
4348 else if (!*arg) {
4349 width = strtoul(av[1], &end, 10);
4350 argcount = 2;
4352 } else if (skip_prefix(arg, "-name-width", &arg)) {
4353 if (*arg == '=')
4354 name_width = strtoul(arg + 1, &end, 10);
4355 else if (!*arg && !av[1])
4356 die_want_option("--stat-name-width");
4357 else if (!*arg) {
4358 name_width = strtoul(av[1], &end, 10);
4359 argcount = 2;
4361 } else if (skip_prefix(arg, "-graph-width", &arg)) {
4362 if (*arg == '=')
4363 graph_width = strtoul(arg + 1, &end, 10);
4364 else if (!*arg && !av[1])
4365 die_want_option("--stat-graph-width");
4366 else if (!*arg) {
4367 graph_width = strtoul(av[1], &end, 10);
4368 argcount = 2;
4370 } else if (skip_prefix(arg, "-count", &arg)) {
4371 if (*arg == '=')
4372 count = strtoul(arg + 1, &end, 10);
4373 else if (!*arg && !av[1])
4374 die_want_option("--stat-count");
4375 else if (!*arg) {
4376 count = strtoul(av[1], &end, 10);
4377 argcount = 2;
4380 break;
4381 case '=':
4382 width = strtoul(arg+1, &end, 10);
4383 if (*end == ',')
4384 name_width = strtoul(end+1, &end, 10);
4385 if (*end == ',')
4386 count = strtoul(end+1, &end, 10);
4389 /* Important! This checks all the error cases! */
4390 if (*end)
4391 return 0;
4392 options->output_format |= DIFF_FORMAT_DIFFSTAT;
4393 options->stat_name_width = name_width;
4394 options->stat_graph_width = graph_width;
4395 options->stat_width = width;
4396 options->stat_count = count;
4397 return argcount;
4400 static int parse_dirstat_opt(struct diff_options *options, const char *params)
4402 struct strbuf errmsg = STRBUF_INIT;
4403 if (parse_dirstat_params(options, params, &errmsg))
4404 die(_("Failed to parse --dirstat/-X option parameter:\n%s"),
4405 errmsg.buf);
4406 strbuf_release(&errmsg);
4408 * The caller knows a dirstat-related option is given from the command
4409 * line; allow it to say "return this_function();"
4411 options->output_format |= DIFF_FORMAT_DIRSTAT;
4412 return 1;
4415 static int parse_submodule_opt(struct diff_options *options, const char *value)
4417 if (parse_submodule_params(options, value))
4418 die(_("Failed to parse --submodule option parameter: '%s'"),
4419 value);
4420 return 1;
4423 static const char diff_status_letters[] = {
4424 DIFF_STATUS_ADDED,
4425 DIFF_STATUS_COPIED,
4426 DIFF_STATUS_DELETED,
4427 DIFF_STATUS_MODIFIED,
4428 DIFF_STATUS_RENAMED,
4429 DIFF_STATUS_TYPE_CHANGED,
4430 DIFF_STATUS_UNKNOWN,
4431 DIFF_STATUS_UNMERGED,
4432 DIFF_STATUS_FILTER_AON,
4433 DIFF_STATUS_FILTER_BROKEN,
4434 '\0',
4437 static unsigned int filter_bit['Z' + 1];
4439 static void prepare_filter_bits(void)
4441 int i;
4443 if (!filter_bit[DIFF_STATUS_ADDED]) {
4444 for (i = 0; diff_status_letters[i]; i++)
4445 filter_bit[(int) diff_status_letters[i]] = (1 << i);
4449 static unsigned filter_bit_tst(char status, const struct diff_options *opt)
4451 return opt->filter & filter_bit[(int) status];
4454 static int parse_diff_filter_opt(const char *optarg, struct diff_options *opt)
4456 int i, optch;
4458 prepare_filter_bits();
4461 * If there is a negation e.g. 'd' in the input, and we haven't
4462 * initialized the filter field with another --diff-filter, start
4463 * from full set of bits, except for AON.
4465 if (!opt->filter) {
4466 for (i = 0; (optch = optarg[i]) != '\0'; i++) {
4467 if (optch < 'a' || 'z' < optch)
4468 continue;
4469 opt->filter = (1 << (ARRAY_SIZE(diff_status_letters) - 1)) - 1;
4470 opt->filter &= ~filter_bit[DIFF_STATUS_FILTER_AON];
4471 break;
4475 for (i = 0; (optch = optarg[i]) != '\0'; i++) {
4476 unsigned int bit;
4477 int negate;
4479 if ('a' <= optch && optch <= 'z') {
4480 negate = 1;
4481 optch = toupper(optch);
4482 } else {
4483 negate = 0;
4486 bit = (0 <= optch && optch <= 'Z') ? filter_bit[optch] : 0;
4487 if (!bit)
4488 return optarg[i];
4489 if (negate)
4490 opt->filter &= ~bit;
4491 else
4492 opt->filter |= bit;
4494 return 0;
4497 static void enable_patch_output(int *fmt) {
4498 *fmt &= ~DIFF_FORMAT_NO_OUTPUT;
4499 *fmt |= DIFF_FORMAT_PATCH;
4502 static int parse_ws_error_highlight_opt(struct diff_options *opt, const char *arg)
4504 int val = parse_ws_error_highlight(arg);
4506 if (val < 0) {
4507 error("unknown value after ws-error-highlight=%.*s",
4508 -1 - val, arg);
4509 return 0;
4511 opt->ws_error_highlight = val;
4512 return 1;
4515 static int parse_objfind_opt(struct diff_options *opt, const char *arg)
4517 struct object_id oid;
4519 if (get_oid(arg, &oid))
4520 return error("unable to resolve '%s'", arg);
4522 if (!opt->objfind)
4523 opt->objfind = xcalloc(1, sizeof(*opt->objfind));
4525 opt->pickaxe_opts |= DIFF_PICKAXE_KIND_OBJFIND;
4526 opt->flags.recursive = 1;
4527 opt->flags.tree_in_recursive = 1;
4528 oidset_insert(opt->objfind, &oid);
4529 return 1;
4532 int diff_opt_parse(struct diff_options *options,
4533 const char **av, int ac, const char *prefix)
4535 const char *arg = av[0];
4536 const char *optarg;
4537 int argcount;
4539 if (!prefix)
4540 prefix = "";
4542 /* Output format options */
4543 if (!strcmp(arg, "-p") || !strcmp(arg, "-u") || !strcmp(arg, "--patch")
4544 || opt_arg(arg, 'U', "unified", &options->context))
4545 enable_patch_output(&options->output_format);
4546 else if (!strcmp(arg, "--raw"))
4547 options->output_format |= DIFF_FORMAT_RAW;
4548 else if (!strcmp(arg, "--patch-with-raw")) {
4549 enable_patch_output(&options->output_format);
4550 options->output_format |= DIFF_FORMAT_RAW;
4551 } else if (!strcmp(arg, "--numstat"))
4552 options->output_format |= DIFF_FORMAT_NUMSTAT;
4553 else if (!strcmp(arg, "--shortstat"))
4554 options->output_format |= DIFF_FORMAT_SHORTSTAT;
4555 else if (skip_prefix(arg, "-X", &arg) ||
4556 skip_to_optional_arg(arg, "--dirstat", &arg))
4557 return parse_dirstat_opt(options, arg);
4558 else if (!strcmp(arg, "--cumulative"))
4559 return parse_dirstat_opt(options, "cumulative");
4560 else if (skip_to_optional_arg(arg, "--dirstat-by-file", &arg)) {
4561 parse_dirstat_opt(options, "files");
4562 return parse_dirstat_opt(options, arg);
4564 else if (!strcmp(arg, "--check"))
4565 options->output_format |= DIFF_FORMAT_CHECKDIFF;
4566 else if (!strcmp(arg, "--summary"))
4567 options->output_format |= DIFF_FORMAT_SUMMARY;
4568 else if (!strcmp(arg, "--patch-with-stat")) {
4569 enable_patch_output(&options->output_format);
4570 options->output_format |= DIFF_FORMAT_DIFFSTAT;
4571 } else if (!strcmp(arg, "--name-only"))
4572 options->output_format |= DIFF_FORMAT_NAME;
4573 else if (!strcmp(arg, "--name-status"))
4574 options->output_format |= DIFF_FORMAT_NAME_STATUS;
4575 else if (!strcmp(arg, "-s") || !strcmp(arg, "--no-patch"))
4576 options->output_format |= DIFF_FORMAT_NO_OUTPUT;
4577 else if (starts_with(arg, "--stat"))
4578 /* --stat, --stat-width, --stat-name-width, or --stat-count */
4579 return stat_opt(options, av);
4580 else if (!strcmp(arg, "--compact-summary")) {
4581 options->flags.stat_with_summary = 1;
4582 options->output_format |= DIFF_FORMAT_DIFFSTAT;
4583 } else if (!strcmp(arg, "--no-compact-summary"))
4584 options->flags.stat_with_summary = 0;
4586 /* renames options */
4587 else if (starts_with(arg, "-B") ||
4588 skip_to_optional_arg(arg, "--break-rewrites", NULL)) {
4589 if ((options->break_opt = diff_scoreopt_parse(arg)) == -1)
4590 return error("invalid argument to -B: %s", arg+2);
4592 else if (starts_with(arg, "-M") ||
4593 skip_to_optional_arg(arg, "--find-renames", NULL)) {
4594 if ((options->rename_score = diff_scoreopt_parse(arg)) == -1)
4595 return error("invalid argument to -M: %s", arg+2);
4596 options->detect_rename = DIFF_DETECT_RENAME;
4598 else if (!strcmp(arg, "-D") || !strcmp(arg, "--irreversible-delete")) {
4599 options->irreversible_delete = 1;
4601 else if (starts_with(arg, "-C") ||
4602 skip_to_optional_arg(arg, "--find-copies", NULL)) {
4603 if (options->detect_rename == DIFF_DETECT_COPY)
4604 options->flags.find_copies_harder = 1;
4605 if ((options->rename_score = diff_scoreopt_parse(arg)) == -1)
4606 return error("invalid argument to -C: %s", arg+2);
4607 options->detect_rename = DIFF_DETECT_COPY;
4609 else if (!strcmp(arg, "--no-renames"))
4610 options->detect_rename = 0;
4611 else if (!strcmp(arg, "--rename-empty"))
4612 options->flags.rename_empty = 1;
4613 else if (!strcmp(arg, "--no-rename-empty"))
4614 options->flags.rename_empty = 0;
4615 else if (skip_to_optional_arg_default(arg, "--relative", &arg, NULL)) {
4616 options->flags.relative_name = 1;
4617 if (arg)
4618 options->prefix = arg;
4621 /* xdiff options */
4622 else if (!strcmp(arg, "--minimal"))
4623 DIFF_XDL_SET(options, NEED_MINIMAL);
4624 else if (!strcmp(arg, "--no-minimal"))
4625 DIFF_XDL_CLR(options, NEED_MINIMAL);
4626 else if (!strcmp(arg, "-w") || !strcmp(arg, "--ignore-all-space"))
4627 DIFF_XDL_SET(options, IGNORE_WHITESPACE);
4628 else if (!strcmp(arg, "-b") || !strcmp(arg, "--ignore-space-change"))
4629 DIFF_XDL_SET(options, IGNORE_WHITESPACE_CHANGE);
4630 else if (!strcmp(arg, "--ignore-space-at-eol"))
4631 DIFF_XDL_SET(options, IGNORE_WHITESPACE_AT_EOL);
4632 else if (!strcmp(arg, "--ignore-cr-at-eol"))
4633 DIFF_XDL_SET(options, IGNORE_CR_AT_EOL);
4634 else if (!strcmp(arg, "--ignore-blank-lines"))
4635 DIFF_XDL_SET(options, IGNORE_BLANK_LINES);
4636 else if (!strcmp(arg, "--indent-heuristic"))
4637 DIFF_XDL_SET(options, INDENT_HEURISTIC);
4638 else if (!strcmp(arg, "--no-indent-heuristic"))
4639 DIFF_XDL_CLR(options, INDENT_HEURISTIC);
4640 else if (!strcmp(arg, "--patience")) {
4641 int i;
4642 options->xdl_opts = DIFF_WITH_ALG(options, PATIENCE_DIFF);
4644 * Both --patience and --anchored use PATIENCE_DIFF
4645 * internally, so remove any anchors previously
4646 * specified.
4648 for (i = 0; i < options->anchors_nr; i++)
4649 free(options->anchors[i]);
4650 options->anchors_nr = 0;
4651 } else if (!strcmp(arg, "--histogram"))
4652 options->xdl_opts = DIFF_WITH_ALG(options, HISTOGRAM_DIFF);
4653 else if ((argcount = parse_long_opt("diff-algorithm", av, &optarg))) {
4654 long value = parse_algorithm_value(optarg);
4655 if (value < 0)
4656 return error("option diff-algorithm accepts \"myers\", "
4657 "\"minimal\", \"patience\" and \"histogram\"");
4658 /* clear out previous settings */
4659 DIFF_XDL_CLR(options, NEED_MINIMAL);
4660 options->xdl_opts &= ~XDF_DIFF_ALGORITHM_MASK;
4661 options->xdl_opts |= value;
4662 return argcount;
4663 } else if (skip_prefix(arg, "--anchored=", &arg)) {
4664 options->xdl_opts = DIFF_WITH_ALG(options, PATIENCE_DIFF);
4665 ALLOC_GROW(options->anchors, options->anchors_nr + 1,
4666 options->anchors_alloc);
4667 options->anchors[options->anchors_nr++] = xstrdup(arg);
4670 /* flags options */
4671 else if (!strcmp(arg, "--binary")) {
4672 enable_patch_output(&options->output_format);
4673 options->flags.binary = 1;
4675 else if (!strcmp(arg, "--full-index"))
4676 options->flags.full_index = 1;
4677 else if (!strcmp(arg, "-a") || !strcmp(arg, "--text"))
4678 options->flags.text = 1;
4679 else if (!strcmp(arg, "-R"))
4680 options->flags.reverse_diff = 1;
4681 else if (!strcmp(arg, "--find-copies-harder"))
4682 options->flags.find_copies_harder = 1;
4683 else if (!strcmp(arg, "--follow"))
4684 options->flags.follow_renames = 1;
4685 else if (!strcmp(arg, "--no-follow")) {
4686 options->flags.follow_renames = 0;
4687 options->flags.default_follow_renames = 0;
4688 } else if (skip_to_optional_arg_default(arg, "--color", &arg, "always")) {
4689 int value = git_config_colorbool(NULL, arg);
4690 if (value < 0)
4691 return error("option `color' expects \"always\", \"auto\", or \"never\"");
4692 options->use_color = value;
4694 else if (!strcmp(arg, "--no-color"))
4695 options->use_color = 0;
4696 else if (!strcmp(arg, "--color-moved")) {
4697 if (diff_color_moved_default)
4698 options->color_moved = diff_color_moved_default;
4699 if (options->color_moved == COLOR_MOVED_NO)
4700 options->color_moved = COLOR_MOVED_DEFAULT;
4701 } else if (!strcmp(arg, "--no-color-moved"))
4702 options->color_moved = COLOR_MOVED_NO;
4703 else if (skip_prefix(arg, "--color-moved=", &arg)) {
4704 int cm = parse_color_moved(arg);
4705 if (cm < 0)
4706 die("bad --color-moved argument: %s", arg);
4707 options->color_moved = cm;
4708 } else if (skip_to_optional_arg_default(arg, "--color-words", &options->word_regex, NULL)) {
4709 options->use_color = 1;
4710 options->word_diff = DIFF_WORDS_COLOR;
4712 else if (!strcmp(arg, "--word-diff")) {
4713 if (options->word_diff == DIFF_WORDS_NONE)
4714 options->word_diff = DIFF_WORDS_PLAIN;
4716 else if (skip_prefix(arg, "--word-diff=", &arg)) {
4717 if (!strcmp(arg, "plain"))
4718 options->word_diff = DIFF_WORDS_PLAIN;
4719 else if (!strcmp(arg, "color")) {
4720 options->use_color = 1;
4721 options->word_diff = DIFF_WORDS_COLOR;
4723 else if (!strcmp(arg, "porcelain"))
4724 options->word_diff = DIFF_WORDS_PORCELAIN;
4725 else if (!strcmp(arg, "none"))
4726 options->word_diff = DIFF_WORDS_NONE;
4727 else
4728 die("bad --word-diff argument: %s", arg);
4730 else if ((argcount = parse_long_opt("word-diff-regex", av, &optarg))) {
4731 if (options->word_diff == DIFF_WORDS_NONE)
4732 options->word_diff = DIFF_WORDS_PLAIN;
4733 options->word_regex = optarg;
4734 return argcount;
4736 else if (!strcmp(arg, "--exit-code"))
4737 options->flags.exit_with_status = 1;
4738 else if (!strcmp(arg, "--quiet"))
4739 options->flags.quick = 1;
4740 else if (!strcmp(arg, "--ext-diff"))
4741 options->flags.allow_external = 1;
4742 else if (!strcmp(arg, "--no-ext-diff"))
4743 options->flags.allow_external = 0;
4744 else if (!strcmp(arg, "--textconv")) {
4745 options->flags.allow_textconv = 1;
4746 options->flags.textconv_set_via_cmdline = 1;
4747 } else if (!strcmp(arg, "--no-textconv"))
4748 options->flags.allow_textconv = 0;
4749 else if (skip_to_optional_arg_default(arg, "--ignore-submodules", &arg, "all")) {
4750 options->flags.override_submodule_config = 1;
4751 handle_ignore_submodules_arg(options, arg);
4752 } else if (skip_to_optional_arg_default(arg, "--submodule", &arg, "log"))
4753 return parse_submodule_opt(options, arg);
4754 else if (skip_prefix(arg, "--ws-error-highlight=", &arg))
4755 return parse_ws_error_highlight_opt(options, arg);
4756 else if (!strcmp(arg, "--ita-invisible-in-index"))
4757 options->ita_invisible_in_index = 1;
4758 else if (!strcmp(arg, "--ita-visible-in-index"))
4759 options->ita_invisible_in_index = 0;
4761 /* misc options */
4762 else if (!strcmp(arg, "-z"))
4763 options->line_termination = 0;
4764 else if ((argcount = short_opt('l', av, &optarg))) {
4765 options->rename_limit = strtoul(optarg, NULL, 10);
4766 return argcount;
4768 else if ((argcount = short_opt('S', av, &optarg))) {
4769 options->pickaxe = optarg;
4770 options->pickaxe_opts |= DIFF_PICKAXE_KIND_S;
4771 return argcount;
4772 } else if ((argcount = short_opt('G', av, &optarg))) {
4773 options->pickaxe = optarg;
4774 options->pickaxe_opts |= DIFF_PICKAXE_KIND_G;
4775 return argcount;
4777 else if (!strcmp(arg, "--pickaxe-all"))
4778 options->pickaxe_opts |= DIFF_PICKAXE_ALL;
4779 else if (!strcmp(arg, "--pickaxe-regex"))
4780 options->pickaxe_opts |= DIFF_PICKAXE_REGEX;
4781 else if ((argcount = short_opt('O', av, &optarg))) {
4782 options->orderfile = prefix_filename(prefix, optarg);
4783 return argcount;
4784 } else if (skip_prefix(arg, "--find-object=", &arg))
4785 return parse_objfind_opt(options, arg);
4786 else if ((argcount = parse_long_opt("diff-filter", av, &optarg))) {
4787 int offending = parse_diff_filter_opt(optarg, options);
4788 if (offending)
4789 die("unknown change class '%c' in --diff-filter=%s",
4790 offending, optarg);
4791 return argcount;
4793 else if (!strcmp(arg, "--no-abbrev"))
4794 options->abbrev = 0;
4795 else if (!strcmp(arg, "--abbrev"))
4796 options->abbrev = DEFAULT_ABBREV;
4797 else if (skip_prefix(arg, "--abbrev=", &arg)) {
4798 options->abbrev = strtoul(arg, NULL, 10);
4799 if (options->abbrev < MINIMUM_ABBREV)
4800 options->abbrev = MINIMUM_ABBREV;
4801 else if (40 < options->abbrev)
4802 options->abbrev = 40;
4804 else if ((argcount = parse_long_opt("src-prefix", av, &optarg))) {
4805 options->a_prefix = optarg;
4806 return argcount;
4808 else if ((argcount = parse_long_opt("line-prefix", av, &optarg))) {
4809 options->line_prefix = optarg;
4810 options->line_prefix_length = strlen(options->line_prefix);
4811 graph_setup_line_prefix(options);
4812 return argcount;
4814 else if ((argcount = parse_long_opt("dst-prefix", av, &optarg))) {
4815 options->b_prefix = optarg;
4816 return argcount;
4818 else if (!strcmp(arg, "--no-prefix"))
4819 options->a_prefix = options->b_prefix = "";
4820 else if (opt_arg(arg, '\0', "inter-hunk-context",
4821 &options->interhunkcontext))
4823 else if (!strcmp(arg, "-W"))
4824 options->flags.funccontext = 1;
4825 else if (!strcmp(arg, "--function-context"))
4826 options->flags.funccontext = 1;
4827 else if (!strcmp(arg, "--no-function-context"))
4828 options->flags.funccontext = 0;
4829 else if ((argcount = parse_long_opt("output", av, &optarg))) {
4830 char *path = prefix_filename(prefix, optarg);
4831 options->file = xfopen(path, "w");
4832 options->close_file = 1;
4833 if (options->use_color != GIT_COLOR_ALWAYS)
4834 options->use_color = GIT_COLOR_NEVER;
4835 free(path);
4836 return argcount;
4837 } else
4838 return 0;
4839 return 1;
4842 int parse_rename_score(const char **cp_p)
4844 unsigned long num, scale;
4845 int ch, dot;
4846 const char *cp = *cp_p;
4848 num = 0;
4849 scale = 1;
4850 dot = 0;
4851 for (;;) {
4852 ch = *cp;
4853 if ( !dot && ch == '.' ) {
4854 scale = 1;
4855 dot = 1;
4856 } else if ( ch == '%' ) {
4857 scale = dot ? scale*100 : 100;
4858 cp++; /* % is always at the end */
4859 break;
4860 } else if ( ch >= '0' && ch <= '9' ) {
4861 if ( scale < 100000 ) {
4862 scale *= 10;
4863 num = (num*10) + (ch-'0');
4865 } else {
4866 break;
4868 cp++;
4870 *cp_p = cp;
4872 /* user says num divided by scale and we say internally that
4873 * is MAX_SCORE * num / scale.
4875 return (int)((num >= scale) ? MAX_SCORE : (MAX_SCORE * num / scale));
4878 static int diff_scoreopt_parse(const char *opt)
4880 int opt1, opt2, cmd;
4882 if (*opt++ != '-')
4883 return -1;
4884 cmd = *opt++;
4885 if (cmd == '-') {
4886 /* convert the long-form arguments into short-form versions */
4887 if (skip_prefix(opt, "break-rewrites", &opt)) {
4888 if (*opt == 0 || *opt++ == '=')
4889 cmd = 'B';
4890 } else if (skip_prefix(opt, "find-copies", &opt)) {
4891 if (*opt == 0 || *opt++ == '=')
4892 cmd = 'C';
4893 } else if (skip_prefix(opt, "find-renames", &opt)) {
4894 if (*opt == 0 || *opt++ == '=')
4895 cmd = 'M';
4898 if (cmd != 'M' && cmd != 'C' && cmd != 'B')
4899 return -1; /* that is not a -M, -C, or -B option */
4901 opt1 = parse_rename_score(&opt);
4902 if (cmd != 'B')
4903 opt2 = 0;
4904 else {
4905 if (*opt == 0)
4906 opt2 = 0;
4907 else if (*opt != '/')
4908 return -1; /* we expect -B80/99 or -B80 */
4909 else {
4910 opt++;
4911 opt2 = parse_rename_score(&opt);
4914 if (*opt != 0)
4915 return -1;
4916 return opt1 | (opt2 << 16);
4919 struct diff_queue_struct diff_queued_diff;
4921 void diff_q(struct diff_queue_struct *queue, struct diff_filepair *dp)
4923 ALLOC_GROW(queue->queue, queue->nr + 1, queue->alloc);
4924 queue->queue[queue->nr++] = dp;
4927 struct diff_filepair *diff_queue(struct diff_queue_struct *queue,
4928 struct diff_filespec *one,
4929 struct diff_filespec *two)
4931 struct diff_filepair *dp = xcalloc(1, sizeof(*dp));
4932 dp->one = one;
4933 dp->two = two;
4934 if (queue)
4935 diff_q(queue, dp);
4936 return dp;
4939 void diff_free_filepair(struct diff_filepair *p)
4941 free_filespec(p->one);
4942 free_filespec(p->two);
4943 free(p);
4946 const char *diff_aligned_abbrev(const struct object_id *oid, int len)
4948 int abblen;
4949 const char *abbrev;
4951 /* Do we want all 40 hex characters? */
4952 if (len == GIT_SHA1_HEXSZ)
4953 return oid_to_hex(oid);
4955 /* An abbreviated value is fine, possibly followed by an ellipsis. */
4956 abbrev = diff_abbrev_oid(oid, len);
4958 if (!print_sha1_ellipsis())
4959 return abbrev;
4961 abblen = strlen(abbrev);
4964 * In well-behaved cases, where the abbreviated result is the
4965 * same as the requested length, append three dots after the
4966 * abbreviation (hence the whole logic is limited to the case
4967 * where abblen < 37); when the actual abbreviated result is a
4968 * bit longer than the requested length, we reduce the number
4969 * of dots so that they match the well-behaved ones. However,
4970 * if the actual abbreviation is longer than the requested
4971 * length by more than three, we give up on aligning, and add
4972 * three dots anyway, to indicate that the output is not the
4973 * full object name. Yes, this may be suboptimal, but this
4974 * appears only in "diff --raw --abbrev" output and it is not
4975 * worth the effort to change it now. Note that this would
4976 * likely to work fine when the automatic sizing of default
4977 * abbreviation length is used--we would be fed -1 in "len" in
4978 * that case, and will end up always appending three-dots, but
4979 * the automatic sizing is supposed to give abblen that ensures
4980 * uniqueness across all objects (statistically speaking).
4982 if (abblen < GIT_SHA1_HEXSZ - 3) {
4983 static char hex[GIT_MAX_HEXSZ + 1];
4984 if (len < abblen && abblen <= len + 2)
4985 xsnprintf(hex, sizeof(hex), "%s%.*s", abbrev, len+3-abblen, "..");
4986 else
4987 xsnprintf(hex, sizeof(hex), "%s...", abbrev);
4988 return hex;
4991 return oid_to_hex(oid);
4994 static void diff_flush_raw(struct diff_filepair *p, struct diff_options *opt)
4996 int line_termination = opt->line_termination;
4997 int inter_name_termination = line_termination ? '\t' : '\0';
4999 fprintf(opt->file, "%s", diff_line_prefix(opt));
5000 if (!(opt->output_format & DIFF_FORMAT_NAME_STATUS)) {
5001 fprintf(opt->file, ":%06o %06o %s ", p->one->mode, p->two->mode,
5002 diff_aligned_abbrev(&p->one->oid, opt->abbrev));
5003 fprintf(opt->file, "%s ",
5004 diff_aligned_abbrev(&p->two->oid, opt->abbrev));
5006 if (p->score) {
5007 fprintf(opt->file, "%c%03d%c", p->status, similarity_index(p),
5008 inter_name_termination);
5009 } else {
5010 fprintf(opt->file, "%c%c", p->status, inter_name_termination);
5013 if (p->status == DIFF_STATUS_COPIED ||
5014 p->status == DIFF_STATUS_RENAMED) {
5015 const char *name_a, *name_b;
5016 name_a = p->one->path;
5017 name_b = p->two->path;
5018 strip_prefix(opt->prefix_length, &name_a, &name_b);
5019 write_name_quoted(name_a, opt->file, inter_name_termination);
5020 write_name_quoted(name_b, opt->file, line_termination);
5021 } else {
5022 const char *name_a, *name_b;
5023 name_a = p->one->mode ? p->one->path : p->two->path;
5024 name_b = NULL;
5025 strip_prefix(opt->prefix_length, &name_a, &name_b);
5026 write_name_quoted(name_a, opt->file, line_termination);
5030 int diff_unmodified_pair(struct diff_filepair *p)
5032 /* This function is written stricter than necessary to support
5033 * the currently implemented transformers, but the idea is to
5034 * let transformers to produce diff_filepairs any way they want,
5035 * and filter and clean them up here before producing the output.
5037 struct diff_filespec *one = p->one, *two = p->two;
5039 if (DIFF_PAIR_UNMERGED(p))
5040 return 0; /* unmerged is interesting */
5042 /* deletion, addition, mode or type change
5043 * and rename are all interesting.
5045 if (DIFF_FILE_VALID(one) != DIFF_FILE_VALID(two) ||
5046 DIFF_PAIR_MODE_CHANGED(p) ||
5047 strcmp(one->path, two->path))
5048 return 0;
5050 /* both are valid and point at the same path. that is, we are
5051 * dealing with a change.
5053 if (one->oid_valid && two->oid_valid &&
5054 !oidcmp(&one->oid, &two->oid) &&
5055 !one->dirty_submodule && !two->dirty_submodule)
5056 return 1; /* no change */
5057 if (!one->oid_valid && !two->oid_valid)
5058 return 1; /* both look at the same file on the filesystem. */
5059 return 0;
5062 static void diff_flush_patch(struct diff_filepair *p, struct diff_options *o)
5064 if (diff_unmodified_pair(p))
5065 return;
5067 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
5068 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
5069 return; /* no tree diffs in patch format */
5071 run_diff(p, o);
5074 static void diff_flush_stat(struct diff_filepair *p, struct diff_options *o,
5075 struct diffstat_t *diffstat)
5077 if (diff_unmodified_pair(p))
5078 return;
5080 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
5081 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
5082 return; /* no useful stat for tree diffs */
5084 run_diffstat(p, o, diffstat);
5087 static void diff_flush_checkdiff(struct diff_filepair *p,
5088 struct diff_options *o)
5090 if (diff_unmodified_pair(p))
5091 return;
5093 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
5094 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
5095 return; /* nothing to check in tree diffs */
5097 run_checkdiff(p, o);
5100 int diff_queue_is_empty(void)
5102 struct diff_queue_struct *q = &diff_queued_diff;
5103 int i;
5104 for (i = 0; i < q->nr; i++)
5105 if (!diff_unmodified_pair(q->queue[i]))
5106 return 0;
5107 return 1;
5110 #if DIFF_DEBUG
5111 void diff_debug_filespec(struct diff_filespec *s, int x, const char *one)
5113 fprintf(stderr, "queue[%d] %s (%s) %s %06o %s\n",
5114 x, one ? one : "",
5115 s->path,
5116 DIFF_FILE_VALID(s) ? "valid" : "invalid",
5117 s->mode,
5118 s->oid_valid ? oid_to_hex(&s->oid) : "");
5119 fprintf(stderr, "queue[%d] %s size %lu\n",
5120 x, one ? one : "",
5121 s->size);
5124 void diff_debug_filepair(const struct diff_filepair *p, int i)
5126 diff_debug_filespec(p->one, i, "one");
5127 diff_debug_filespec(p->two, i, "two");
5128 fprintf(stderr, "score %d, status %c rename_used %d broken %d\n",
5129 p->score, p->status ? p->status : '?',
5130 p->one->rename_used, p->broken_pair);
5133 void diff_debug_queue(const char *msg, struct diff_queue_struct *q)
5135 int i;
5136 if (msg)
5137 fprintf(stderr, "%s\n", msg);
5138 fprintf(stderr, "q->nr = %d\n", q->nr);
5139 for (i = 0; i < q->nr; i++) {
5140 struct diff_filepair *p = q->queue[i];
5141 diff_debug_filepair(p, i);
5144 #endif
5146 static void diff_resolve_rename_copy(void)
5148 int i;
5149 struct diff_filepair *p;
5150 struct diff_queue_struct *q = &diff_queued_diff;
5152 diff_debug_queue("resolve-rename-copy", q);
5154 for (i = 0; i < q->nr; i++) {
5155 p = q->queue[i];
5156 p->status = 0; /* undecided */
5157 if (DIFF_PAIR_UNMERGED(p))
5158 p->status = DIFF_STATUS_UNMERGED;
5159 else if (!DIFF_FILE_VALID(p->one))
5160 p->status = DIFF_STATUS_ADDED;
5161 else if (!DIFF_FILE_VALID(p->two))
5162 p->status = DIFF_STATUS_DELETED;
5163 else if (DIFF_PAIR_TYPE_CHANGED(p))
5164 p->status = DIFF_STATUS_TYPE_CHANGED;
5166 /* from this point on, we are dealing with a pair
5167 * whose both sides are valid and of the same type, i.e.
5168 * either in-place edit or rename/copy edit.
5170 else if (DIFF_PAIR_RENAME(p)) {
5172 * A rename might have re-connected a broken
5173 * pair up, causing the pathnames to be the
5174 * same again. If so, that's not a rename at
5175 * all, just a modification..
5177 * Otherwise, see if this source was used for
5178 * multiple renames, in which case we decrement
5179 * the count, and call it a copy.
5181 if (!strcmp(p->one->path, p->two->path))
5182 p->status = DIFF_STATUS_MODIFIED;
5183 else if (--p->one->rename_used > 0)
5184 p->status = DIFF_STATUS_COPIED;
5185 else
5186 p->status = DIFF_STATUS_RENAMED;
5188 else if (oidcmp(&p->one->oid, &p->two->oid) ||
5189 p->one->mode != p->two->mode ||
5190 p->one->dirty_submodule ||
5191 p->two->dirty_submodule ||
5192 is_null_oid(&p->one->oid))
5193 p->status = DIFF_STATUS_MODIFIED;
5194 else {
5195 /* This is a "no-change" entry and should not
5196 * happen anymore, but prepare for broken callers.
5198 error("feeding unmodified %s to diffcore",
5199 p->one->path);
5200 p->status = DIFF_STATUS_UNKNOWN;
5203 diff_debug_queue("resolve-rename-copy done", q);
5206 static int check_pair_status(struct diff_filepair *p)
5208 switch (p->status) {
5209 case DIFF_STATUS_UNKNOWN:
5210 return 0;
5211 case 0:
5212 die("internal error in diff-resolve-rename-copy");
5213 default:
5214 return 1;
5218 static void flush_one_pair(struct diff_filepair *p, struct diff_options *opt)
5220 int fmt = opt->output_format;
5222 if (fmt & DIFF_FORMAT_CHECKDIFF)
5223 diff_flush_checkdiff(p, opt);
5224 else if (fmt & (DIFF_FORMAT_RAW | DIFF_FORMAT_NAME_STATUS))
5225 diff_flush_raw(p, opt);
5226 else if (fmt & DIFF_FORMAT_NAME) {
5227 const char *name_a, *name_b;
5228 name_a = p->two->path;
5229 name_b = NULL;
5230 strip_prefix(opt->prefix_length, &name_a, &name_b);
5231 fprintf(opt->file, "%s", diff_line_prefix(opt));
5232 write_name_quoted(name_a, opt->file, opt->line_termination);
5236 static void show_file_mode_name(struct diff_options *opt, const char *newdelete, struct diff_filespec *fs)
5238 struct strbuf sb = STRBUF_INIT;
5239 if (fs->mode)
5240 strbuf_addf(&sb, " %s mode %06o ", newdelete, fs->mode);
5241 else
5242 strbuf_addf(&sb, " %s ", newdelete);
5244 quote_c_style(fs->path, &sb, NULL, 0);
5245 strbuf_addch(&sb, '\n');
5246 emit_diff_symbol(opt, DIFF_SYMBOL_SUMMARY,
5247 sb.buf, sb.len, 0);
5248 strbuf_release(&sb);
5251 static void show_mode_change(struct diff_options *opt, struct diff_filepair *p,
5252 int show_name)
5254 if (p->one->mode && p->two->mode && p->one->mode != p->two->mode) {
5255 struct strbuf sb = STRBUF_INIT;
5256 strbuf_addf(&sb, " mode change %06o => %06o",
5257 p->one->mode, p->two->mode);
5258 if (show_name) {
5259 strbuf_addch(&sb, ' ');
5260 quote_c_style(p->two->path, &sb, NULL, 0);
5262 strbuf_addch(&sb, '\n');
5263 emit_diff_symbol(opt, DIFF_SYMBOL_SUMMARY,
5264 sb.buf, sb.len, 0);
5265 strbuf_release(&sb);
5269 static void show_rename_copy(struct diff_options *opt, const char *renamecopy,
5270 struct diff_filepair *p)
5272 struct strbuf sb = STRBUF_INIT;
5273 struct strbuf names = STRBUF_INIT;
5275 pprint_rename(&names, p->one->path, p->two->path);
5276 strbuf_addf(&sb, " %s %s (%d%%)\n",
5277 renamecopy, names.buf, similarity_index(p));
5278 strbuf_release(&names);
5279 emit_diff_symbol(opt, DIFF_SYMBOL_SUMMARY,
5280 sb.buf, sb.len, 0);
5281 show_mode_change(opt, p, 0);
5282 strbuf_release(&sb);
5285 static void diff_summary(struct diff_options *opt, struct diff_filepair *p)
5287 switch(p->status) {
5288 case DIFF_STATUS_DELETED:
5289 show_file_mode_name(opt, "delete", p->one);
5290 break;
5291 case DIFF_STATUS_ADDED:
5292 show_file_mode_name(opt, "create", p->two);
5293 break;
5294 case DIFF_STATUS_COPIED:
5295 show_rename_copy(opt, "copy", p);
5296 break;
5297 case DIFF_STATUS_RENAMED:
5298 show_rename_copy(opt, "rename", p);
5299 break;
5300 default:
5301 if (p->score) {
5302 struct strbuf sb = STRBUF_INIT;
5303 strbuf_addstr(&sb, " rewrite ");
5304 quote_c_style(p->two->path, &sb, NULL, 0);
5305 strbuf_addf(&sb, " (%d%%)\n", similarity_index(p));
5306 emit_diff_symbol(opt, DIFF_SYMBOL_SUMMARY,
5307 sb.buf, sb.len, 0);
5308 strbuf_release(&sb);
5310 show_mode_change(opt, p, !p->score);
5311 break;
5315 struct patch_id_t {
5316 git_SHA_CTX *ctx;
5317 int patchlen;
5320 static int remove_space(char *line, int len)
5322 int i;
5323 char *dst = line;
5324 unsigned char c;
5326 for (i = 0; i < len; i++)
5327 if (!isspace((c = line[i])))
5328 *dst++ = c;
5330 return dst - line;
5333 static void patch_id_consume(void *priv, char *line, unsigned long len)
5335 struct patch_id_t *data = priv;
5336 int new_len;
5338 /* Ignore line numbers when computing the SHA1 of the patch */
5339 if (starts_with(line, "@@ -"))
5340 return;
5342 new_len = remove_space(line, len);
5344 git_SHA1_Update(data->ctx, line, new_len);
5345 data->patchlen += new_len;
5348 static void patch_id_add_string(git_SHA_CTX *ctx, const char *str)
5350 git_SHA1_Update(ctx, str, strlen(str));
5353 static void patch_id_add_mode(git_SHA_CTX *ctx, unsigned mode)
5355 /* large enough for 2^32 in octal */
5356 char buf[12];
5357 int len = xsnprintf(buf, sizeof(buf), "%06o", mode);
5358 git_SHA1_Update(ctx, buf, len);
5361 /* returns 0 upon success, and writes result into sha1 */
5362 static int diff_get_patch_id(struct diff_options *options, struct object_id *oid, int diff_header_only)
5364 struct diff_queue_struct *q = &diff_queued_diff;
5365 int i;
5366 git_SHA_CTX ctx;
5367 struct patch_id_t data;
5369 git_SHA1_Init(&ctx);
5370 memset(&data, 0, sizeof(struct patch_id_t));
5371 data.ctx = &ctx;
5373 for (i = 0; i < q->nr; i++) {
5374 xpparam_t xpp;
5375 xdemitconf_t xecfg;
5376 mmfile_t mf1, mf2;
5377 struct diff_filepair *p = q->queue[i];
5378 int len1, len2;
5380 memset(&xpp, 0, sizeof(xpp));
5381 memset(&xecfg, 0, sizeof(xecfg));
5382 if (p->status == 0)
5383 return error("internal diff status error");
5384 if (p->status == DIFF_STATUS_UNKNOWN)
5385 continue;
5386 if (diff_unmodified_pair(p))
5387 continue;
5388 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
5389 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
5390 continue;
5391 if (DIFF_PAIR_UNMERGED(p))
5392 continue;
5394 diff_fill_oid_info(p->one);
5395 diff_fill_oid_info(p->two);
5397 len1 = remove_space(p->one->path, strlen(p->one->path));
5398 len2 = remove_space(p->two->path, strlen(p->two->path));
5399 patch_id_add_string(&ctx, "diff--git");
5400 patch_id_add_string(&ctx, "a/");
5401 git_SHA1_Update(&ctx, p->one->path, len1);
5402 patch_id_add_string(&ctx, "b/");
5403 git_SHA1_Update(&ctx, p->two->path, len2);
5405 if (p->one->mode == 0) {
5406 patch_id_add_string(&ctx, "newfilemode");
5407 patch_id_add_mode(&ctx, p->two->mode);
5408 patch_id_add_string(&ctx, "---/dev/null");
5409 patch_id_add_string(&ctx, "+++b/");
5410 git_SHA1_Update(&ctx, p->two->path, len2);
5411 } else if (p->two->mode == 0) {
5412 patch_id_add_string(&ctx, "deletedfilemode");
5413 patch_id_add_mode(&ctx, p->one->mode);
5414 patch_id_add_string(&ctx, "---a/");
5415 git_SHA1_Update(&ctx, p->one->path, len1);
5416 patch_id_add_string(&ctx, "+++/dev/null");
5417 } else {
5418 patch_id_add_string(&ctx, "---a/");
5419 git_SHA1_Update(&ctx, p->one->path, len1);
5420 patch_id_add_string(&ctx, "+++b/");
5421 git_SHA1_Update(&ctx, p->two->path, len2);
5424 if (diff_header_only)
5425 continue;
5427 if (fill_mmfile(&mf1, p->one) < 0 ||
5428 fill_mmfile(&mf2, p->two) < 0)
5429 return error("unable to read files to diff");
5431 if (diff_filespec_is_binary(p->one) ||
5432 diff_filespec_is_binary(p->two)) {
5433 git_SHA1_Update(&ctx, oid_to_hex(&p->one->oid),
5434 GIT_SHA1_HEXSZ);
5435 git_SHA1_Update(&ctx, oid_to_hex(&p->two->oid),
5436 GIT_SHA1_HEXSZ);
5437 continue;
5440 xpp.flags = 0;
5441 xecfg.ctxlen = 3;
5442 xecfg.flags = 0;
5443 if (xdi_diff_outf(&mf1, &mf2, patch_id_consume, &data,
5444 &xpp, &xecfg))
5445 return error("unable to generate patch-id diff for %s",
5446 p->one->path);
5449 git_SHA1_Final(oid->hash, &ctx);
5450 return 0;
5453 int diff_flush_patch_id(struct diff_options *options, struct object_id *oid, int diff_header_only)
5455 struct diff_queue_struct *q = &diff_queued_diff;
5456 int i;
5457 int result = diff_get_patch_id(options, oid, diff_header_only);
5459 for (i = 0; i < q->nr; i++)
5460 diff_free_filepair(q->queue[i]);
5462 free(q->queue);
5463 DIFF_QUEUE_CLEAR(q);
5465 return result;
5468 static int is_summary_empty(const struct diff_queue_struct *q)
5470 int i;
5472 for (i = 0; i < q->nr; i++) {
5473 const struct diff_filepair *p = q->queue[i];
5475 switch (p->status) {
5476 case DIFF_STATUS_DELETED:
5477 case DIFF_STATUS_ADDED:
5478 case DIFF_STATUS_COPIED:
5479 case DIFF_STATUS_RENAMED:
5480 return 0;
5481 default:
5482 if (p->score)
5483 return 0;
5484 if (p->one->mode && p->two->mode &&
5485 p->one->mode != p->two->mode)
5486 return 0;
5487 break;
5490 return 1;
5493 static const char rename_limit_warning[] =
5494 N_("inexact rename detection was skipped due to too many files.");
5496 static const char degrade_cc_to_c_warning[] =
5497 N_("only found copies from modified paths due to too many files.");
5499 static const char rename_limit_advice[] =
5500 N_("you may want to set your %s variable to at least "
5501 "%d and retry the command.");
5503 void diff_warn_rename_limit(const char *varname, int needed, int degraded_cc)
5505 fflush(stdout);
5506 if (degraded_cc)
5507 warning(_(degrade_cc_to_c_warning));
5508 else if (needed)
5509 warning(_(rename_limit_warning));
5510 else
5511 return;
5512 if (0 < needed)
5513 warning(_(rename_limit_advice), varname, needed);
5516 static void diff_flush_patch_all_file_pairs(struct diff_options *o)
5518 int i;
5519 static struct emitted_diff_symbols esm = EMITTED_DIFF_SYMBOLS_INIT;
5520 struct diff_queue_struct *q = &diff_queued_diff;
5522 if (WSEH_NEW & WS_RULE_MASK)
5523 BUG("WS rules bit mask overlaps with diff symbol flags");
5525 if (o->color_moved)
5526 o->emitted_symbols = &esm;
5528 for (i = 0; i < q->nr; i++) {
5529 struct diff_filepair *p = q->queue[i];
5530 if (check_pair_status(p))
5531 diff_flush_patch(p, o);
5534 if (o->emitted_symbols) {
5535 if (o->color_moved) {
5536 struct hashmap add_lines, del_lines;
5538 hashmap_init(&del_lines,
5539 (hashmap_cmp_fn)moved_entry_cmp, o, 0);
5540 hashmap_init(&add_lines,
5541 (hashmap_cmp_fn)moved_entry_cmp, o, 0);
5543 add_lines_to_move_detection(o, &add_lines, &del_lines);
5544 mark_color_as_moved(o, &add_lines, &del_lines);
5545 if (o->color_moved == COLOR_MOVED_ZEBRA_DIM)
5546 dim_moved_lines(o);
5548 hashmap_free(&add_lines, 0);
5549 hashmap_free(&del_lines, 0);
5552 for (i = 0; i < esm.nr; i++)
5553 emit_diff_symbol_from_struct(o, &esm.buf[i]);
5555 for (i = 0; i < esm.nr; i++)
5556 free((void *)esm.buf[i].line);
5558 esm.nr = 0;
5561 void diff_flush(struct diff_options *options)
5563 struct diff_queue_struct *q = &diff_queued_diff;
5564 int i, output_format = options->output_format;
5565 int separator = 0;
5566 int dirstat_by_line = 0;
5569 * Order: raw, stat, summary, patch
5570 * or: name/name-status/checkdiff (other bits clear)
5572 if (!q->nr)
5573 goto free_queue;
5575 if (output_format & (DIFF_FORMAT_RAW |
5576 DIFF_FORMAT_NAME |
5577 DIFF_FORMAT_NAME_STATUS |
5578 DIFF_FORMAT_CHECKDIFF)) {
5579 for (i = 0; i < q->nr; i++) {
5580 struct diff_filepair *p = q->queue[i];
5581 if (check_pair_status(p))
5582 flush_one_pair(p, options);
5584 separator++;
5587 if (output_format & DIFF_FORMAT_DIRSTAT && options->flags.dirstat_by_line)
5588 dirstat_by_line = 1;
5590 if (output_format & (DIFF_FORMAT_DIFFSTAT|DIFF_FORMAT_SHORTSTAT|DIFF_FORMAT_NUMSTAT) ||
5591 dirstat_by_line) {
5592 struct diffstat_t diffstat;
5594 memset(&diffstat, 0, sizeof(struct diffstat_t));
5595 for (i = 0; i < q->nr; i++) {
5596 struct diff_filepair *p = q->queue[i];
5597 if (check_pair_status(p))
5598 diff_flush_stat(p, options, &diffstat);
5600 if (output_format & DIFF_FORMAT_NUMSTAT)
5601 show_numstat(&diffstat, options);
5602 if (output_format & DIFF_FORMAT_DIFFSTAT)
5603 show_stats(&diffstat, options);
5604 if (output_format & DIFF_FORMAT_SHORTSTAT)
5605 show_shortstats(&diffstat, options);
5606 if (output_format & DIFF_FORMAT_DIRSTAT && dirstat_by_line)
5607 show_dirstat_by_line(&diffstat, options);
5608 free_diffstat_info(&diffstat);
5609 separator++;
5611 if ((output_format & DIFF_FORMAT_DIRSTAT) && !dirstat_by_line)
5612 show_dirstat(options);
5614 if (output_format & DIFF_FORMAT_SUMMARY && !is_summary_empty(q)) {
5615 for (i = 0; i < q->nr; i++) {
5616 diff_summary(options, q->queue[i]);
5618 separator++;
5621 if (output_format & DIFF_FORMAT_NO_OUTPUT &&
5622 options->flags.exit_with_status &&
5623 options->flags.diff_from_contents) {
5625 * run diff_flush_patch for the exit status. setting
5626 * options->file to /dev/null should be safe, because we
5627 * aren't supposed to produce any output anyway.
5629 if (options->close_file)
5630 fclose(options->file);
5631 options->file = xfopen("/dev/null", "w");
5632 options->close_file = 1;
5633 options->color_moved = 0;
5634 for (i = 0; i < q->nr; i++) {
5635 struct diff_filepair *p = q->queue[i];
5636 if (check_pair_status(p))
5637 diff_flush_patch(p, options);
5638 if (options->found_changes)
5639 break;
5643 if (output_format & DIFF_FORMAT_PATCH) {
5644 if (separator) {
5645 emit_diff_symbol(options, DIFF_SYMBOL_SEPARATOR, NULL, 0, 0);
5646 if (options->stat_sep)
5647 /* attach patch instead of inline */
5648 emit_diff_symbol(options, DIFF_SYMBOL_STAT_SEP,
5649 NULL, 0, 0);
5652 diff_flush_patch_all_file_pairs(options);
5655 if (output_format & DIFF_FORMAT_CALLBACK)
5656 options->format_callback(q, options, options->format_callback_data);
5658 for (i = 0; i < q->nr; i++)
5659 diff_free_filepair(q->queue[i]);
5660 free_queue:
5661 free(q->queue);
5662 DIFF_QUEUE_CLEAR(q);
5663 if (options->close_file)
5664 fclose(options->file);
5667 * Report the content-level differences with HAS_CHANGES;
5668 * diff_addremove/diff_change does not set the bit when
5669 * DIFF_FROM_CONTENTS is in effect (e.g. with -w).
5671 if (options->flags.diff_from_contents) {
5672 if (options->found_changes)
5673 options->flags.has_changes = 1;
5674 else
5675 options->flags.has_changes = 0;
5679 static int match_filter(const struct diff_options *options, const struct diff_filepair *p)
5681 return (((p->status == DIFF_STATUS_MODIFIED) &&
5682 ((p->score &&
5683 filter_bit_tst(DIFF_STATUS_FILTER_BROKEN, options)) ||
5684 (!p->score &&
5685 filter_bit_tst(DIFF_STATUS_MODIFIED, options)))) ||
5686 ((p->status != DIFF_STATUS_MODIFIED) &&
5687 filter_bit_tst(p->status, options)));
5690 static void diffcore_apply_filter(struct diff_options *options)
5692 int i;
5693 struct diff_queue_struct *q = &diff_queued_diff;
5694 struct diff_queue_struct outq;
5696 DIFF_QUEUE_CLEAR(&outq);
5698 if (!options->filter)
5699 return;
5701 if (filter_bit_tst(DIFF_STATUS_FILTER_AON, options)) {
5702 int found;
5703 for (i = found = 0; !found && i < q->nr; i++) {
5704 if (match_filter(options, q->queue[i]))
5705 found++;
5707 if (found)
5708 return;
5710 /* otherwise we will clear the whole queue
5711 * by copying the empty outq at the end of this
5712 * function, but first clear the current entries
5713 * in the queue.
5715 for (i = 0; i < q->nr; i++)
5716 diff_free_filepair(q->queue[i]);
5718 else {
5719 /* Only the matching ones */
5720 for (i = 0; i < q->nr; i++) {
5721 struct diff_filepair *p = q->queue[i];
5722 if (match_filter(options, p))
5723 diff_q(&outq, p);
5724 else
5725 diff_free_filepair(p);
5728 free(q->queue);
5729 *q = outq;
5732 /* Check whether two filespecs with the same mode and size are identical */
5733 static int diff_filespec_is_identical(struct diff_filespec *one,
5734 struct diff_filespec *two)
5736 if (S_ISGITLINK(one->mode))
5737 return 0;
5738 if (diff_populate_filespec(one, 0))
5739 return 0;
5740 if (diff_populate_filespec(two, 0))
5741 return 0;
5742 return !memcmp(one->data, two->data, one->size);
5745 static int diff_filespec_check_stat_unmatch(struct diff_filepair *p)
5747 if (p->done_skip_stat_unmatch)
5748 return p->skip_stat_unmatch_result;
5750 p->done_skip_stat_unmatch = 1;
5751 p->skip_stat_unmatch_result = 0;
5753 * 1. Entries that come from stat info dirtiness
5754 * always have both sides (iow, not create/delete),
5755 * one side of the object name is unknown, with
5756 * the same mode and size. Keep the ones that
5757 * do not match these criteria. They have real
5758 * differences.
5760 * 2. At this point, the file is known to be modified,
5761 * with the same mode and size, and the object
5762 * name of one side is unknown. Need to inspect
5763 * the identical contents.
5765 if (!DIFF_FILE_VALID(p->one) || /* (1) */
5766 !DIFF_FILE_VALID(p->two) ||
5767 (p->one->oid_valid && p->two->oid_valid) ||
5768 (p->one->mode != p->two->mode) ||
5769 diff_populate_filespec(p->one, CHECK_SIZE_ONLY) ||
5770 diff_populate_filespec(p->two, CHECK_SIZE_ONLY) ||
5771 (p->one->size != p->two->size) ||
5772 !diff_filespec_is_identical(p->one, p->two)) /* (2) */
5773 p->skip_stat_unmatch_result = 1;
5774 return p->skip_stat_unmatch_result;
5777 static void diffcore_skip_stat_unmatch(struct diff_options *diffopt)
5779 int i;
5780 struct diff_queue_struct *q = &diff_queued_diff;
5781 struct diff_queue_struct outq;
5782 DIFF_QUEUE_CLEAR(&outq);
5784 for (i = 0; i < q->nr; i++) {
5785 struct diff_filepair *p = q->queue[i];
5787 if (diff_filespec_check_stat_unmatch(p))
5788 diff_q(&outq, p);
5789 else {
5791 * The caller can subtract 1 from skip_stat_unmatch
5792 * to determine how many paths were dirty only
5793 * due to stat info mismatch.
5795 if (!diffopt->flags.no_index)
5796 diffopt->skip_stat_unmatch++;
5797 diff_free_filepair(p);
5800 free(q->queue);
5801 *q = outq;
5804 static int diffnamecmp(const void *a_, const void *b_)
5806 const struct diff_filepair *a = *((const struct diff_filepair **)a_);
5807 const struct diff_filepair *b = *((const struct diff_filepair **)b_);
5808 const char *name_a, *name_b;
5810 name_a = a->one ? a->one->path : a->two->path;
5811 name_b = b->one ? b->one->path : b->two->path;
5812 return strcmp(name_a, name_b);
5815 void diffcore_fix_diff_index(struct diff_options *options)
5817 struct diff_queue_struct *q = &diff_queued_diff;
5818 QSORT(q->queue, q->nr, diffnamecmp);
5821 void diffcore_std(struct diff_options *options)
5823 /* NOTE please keep the following in sync with diff_tree_combined() */
5824 if (options->skip_stat_unmatch)
5825 diffcore_skip_stat_unmatch(options);
5826 if (!options->found_follow) {
5827 /* See try_to_follow_renames() in tree-diff.c */
5828 if (options->break_opt != -1)
5829 diffcore_break(options->break_opt);
5830 if (options->detect_rename)
5831 diffcore_rename(options);
5832 if (options->break_opt != -1)
5833 diffcore_merge_broken();
5835 if (options->pickaxe_opts & DIFF_PICKAXE_KINDS_MASK)
5836 diffcore_pickaxe(options);
5837 if (options->orderfile)
5838 diffcore_order(options->orderfile);
5839 if (!options->found_follow)
5840 /* See try_to_follow_renames() in tree-diff.c */
5841 diff_resolve_rename_copy();
5842 diffcore_apply_filter(options);
5844 if (diff_queued_diff.nr && !options->flags.diff_from_contents)
5845 options->flags.has_changes = 1;
5846 else
5847 options->flags.has_changes = 0;
5849 options->found_follow = 0;
5852 int diff_result_code(struct diff_options *opt, int status)
5854 int result = 0;
5856 diff_warn_rename_limit("diff.renameLimit",
5857 opt->needed_rename_limit,
5858 opt->degraded_cc_to_c);
5859 if (!opt->flags.exit_with_status &&
5860 !(opt->output_format & DIFF_FORMAT_CHECKDIFF))
5861 return status;
5862 if (opt->flags.exit_with_status &&
5863 opt->flags.has_changes)
5864 result |= 01;
5865 if ((opt->output_format & DIFF_FORMAT_CHECKDIFF) &&
5866 opt->flags.check_failed)
5867 result |= 02;
5868 return result;
5871 int diff_can_quit_early(struct diff_options *opt)
5873 return (opt->flags.quick &&
5874 !opt->filter &&
5875 opt->flags.has_changes);
5879 * Shall changes to this submodule be ignored?
5881 * Submodule changes can be configured to be ignored separately for each path,
5882 * but that configuration can be overridden from the command line.
5884 static int is_submodule_ignored(const char *path, struct diff_options *options)
5886 int ignored = 0;
5887 struct diff_flags orig_flags = options->flags;
5888 if (!options->flags.override_submodule_config)
5889 set_diffopt_flags_from_submodule_config(options, path);
5890 if (options->flags.ignore_submodules)
5891 ignored = 1;
5892 options->flags = orig_flags;
5893 return ignored;
5896 void diff_addremove(struct diff_options *options,
5897 int addremove, unsigned mode,
5898 const struct object_id *oid,
5899 int oid_valid,
5900 const char *concatpath, unsigned dirty_submodule)
5902 struct diff_filespec *one, *two;
5904 if (S_ISGITLINK(mode) && is_submodule_ignored(concatpath, options))
5905 return;
5907 /* This may look odd, but it is a preparation for
5908 * feeding "there are unchanged files which should
5909 * not produce diffs, but when you are doing copy
5910 * detection you would need them, so here they are"
5911 * entries to the diff-core. They will be prefixed
5912 * with something like '=' or '*' (I haven't decided
5913 * which but should not make any difference).
5914 * Feeding the same new and old to diff_change()
5915 * also has the same effect.
5916 * Before the final output happens, they are pruned after
5917 * merged into rename/copy pairs as appropriate.
5919 if (options->flags.reverse_diff)
5920 addremove = (addremove == '+' ? '-' :
5921 addremove == '-' ? '+' : addremove);
5923 if (options->prefix &&
5924 strncmp(concatpath, options->prefix, options->prefix_length))
5925 return;
5927 one = alloc_filespec(concatpath);
5928 two = alloc_filespec(concatpath);
5930 if (addremove != '+')
5931 fill_filespec(one, oid, oid_valid, mode);
5932 if (addremove != '-') {
5933 fill_filespec(two, oid, oid_valid, mode);
5934 two->dirty_submodule = dirty_submodule;
5937 diff_queue(&diff_queued_diff, one, two);
5938 if (!options->flags.diff_from_contents)
5939 options->flags.has_changes = 1;
5942 void diff_change(struct diff_options *options,
5943 unsigned old_mode, unsigned new_mode,
5944 const struct object_id *old_oid,
5945 const struct object_id *new_oid,
5946 int old_oid_valid, int new_oid_valid,
5947 const char *concatpath,
5948 unsigned old_dirty_submodule, unsigned new_dirty_submodule)
5950 struct diff_filespec *one, *two;
5951 struct diff_filepair *p;
5953 if (S_ISGITLINK(old_mode) && S_ISGITLINK(new_mode) &&
5954 is_submodule_ignored(concatpath, options))
5955 return;
5957 if (options->flags.reverse_diff) {
5958 SWAP(old_mode, new_mode);
5959 SWAP(old_oid, new_oid);
5960 SWAP(old_oid_valid, new_oid_valid);
5961 SWAP(old_dirty_submodule, new_dirty_submodule);
5964 if (options->prefix &&
5965 strncmp(concatpath, options->prefix, options->prefix_length))
5966 return;
5968 one = alloc_filespec(concatpath);
5969 two = alloc_filespec(concatpath);
5970 fill_filespec(one, old_oid, old_oid_valid, old_mode);
5971 fill_filespec(two, new_oid, new_oid_valid, new_mode);
5972 one->dirty_submodule = old_dirty_submodule;
5973 two->dirty_submodule = new_dirty_submodule;
5974 p = diff_queue(&diff_queued_diff, one, two);
5976 if (options->flags.diff_from_contents)
5977 return;
5979 if (options->flags.quick && options->skip_stat_unmatch &&
5980 !diff_filespec_check_stat_unmatch(p))
5981 return;
5983 options->flags.has_changes = 1;
5986 struct diff_filepair *diff_unmerge(struct diff_options *options, const char *path)
5988 struct diff_filepair *pair;
5989 struct diff_filespec *one, *two;
5991 if (options->prefix &&
5992 strncmp(path, options->prefix, options->prefix_length))
5993 return NULL;
5995 one = alloc_filespec(path);
5996 two = alloc_filespec(path);
5997 pair = diff_queue(&diff_queued_diff, one, two);
5998 pair->is_unmerged = 1;
5999 return pair;
6002 static char *run_textconv(const char *pgm, struct diff_filespec *spec,
6003 size_t *outsize)
6005 struct diff_tempfile *temp;
6006 const char *argv[3];
6007 const char **arg = argv;
6008 struct child_process child = CHILD_PROCESS_INIT;
6009 struct strbuf buf = STRBUF_INIT;
6010 int err = 0;
6012 temp = prepare_temp_file(spec->path, spec);
6013 *arg++ = pgm;
6014 *arg++ = temp->name;
6015 *arg = NULL;
6017 child.use_shell = 1;
6018 child.argv = argv;
6019 child.out = -1;
6020 if (start_command(&child)) {
6021 remove_tempfile();
6022 return NULL;
6025 if (strbuf_read(&buf, child.out, 0) < 0)
6026 err = error("error reading from textconv command '%s'", pgm);
6027 close(child.out);
6029 if (finish_command(&child) || err) {
6030 strbuf_release(&buf);
6031 remove_tempfile();
6032 return NULL;
6034 remove_tempfile();
6036 return strbuf_detach(&buf, outsize);
6039 size_t fill_textconv(struct userdiff_driver *driver,
6040 struct diff_filespec *df,
6041 char **outbuf)
6043 size_t size;
6045 if (!driver) {
6046 if (!DIFF_FILE_VALID(df)) {
6047 *outbuf = "";
6048 return 0;
6050 if (diff_populate_filespec(df, 0))
6051 die("unable to read files to diff");
6052 *outbuf = df->data;
6053 return df->size;
6056 if (!driver->textconv)
6057 BUG("fill_textconv called with non-textconv driver");
6059 if (driver->textconv_cache && df->oid_valid) {
6060 *outbuf = notes_cache_get(driver->textconv_cache,
6061 &df->oid,
6062 &size);
6063 if (*outbuf)
6064 return size;
6067 *outbuf = run_textconv(driver->textconv, df, &size);
6068 if (!*outbuf)
6069 die("unable to read files to diff");
6071 if (driver->textconv_cache && df->oid_valid) {
6072 /* ignore errors, as we might be in a readonly repository */
6073 notes_cache_put(driver->textconv_cache, &df->oid, *outbuf,
6074 size);
6076 * we could save up changes and flush them all at the end,
6077 * but we would need an extra call after all diffing is done.
6078 * Since generating a cache entry is the slow path anyway,
6079 * this extra overhead probably isn't a big deal.
6081 notes_cache_write(driver->textconv_cache);
6084 return size;
6087 int textconv_object(const char *path,
6088 unsigned mode,
6089 const struct object_id *oid,
6090 int oid_valid,
6091 char **buf,
6092 unsigned long *buf_size)
6094 struct diff_filespec *df;
6095 struct userdiff_driver *textconv;
6097 df = alloc_filespec(path);
6098 fill_filespec(df, oid, oid_valid, mode);
6099 textconv = get_textconv(df);
6100 if (!textconv) {
6101 free_filespec(df);
6102 return 0;
6105 *buf_size = fill_textconv(textconv, df, buf);
6106 free_filespec(df);
6107 return 1;
6110 void setup_diff_pager(struct diff_options *opt)
6113 * If the user asked for our exit code, then either they want --quiet
6114 * or --exit-code. We should definitely not bother with a pager in the
6115 * former case, as we will generate no output. Since we still properly
6116 * report our exit code even when a pager is run, we _could_ run a
6117 * pager with --exit-code. But since we have not done so historically,
6118 * and because it is easy to find people oneline advising "git diff
6119 * --exit-code" in hooks and other scripts, we do not do so.
6121 if (!opt->flags.exit_with_status &&
6122 check_pager_config("diff") != 0)
6123 setup_pager();