]> git.ipfire.org Git - thirdparty/git.git/blame - diff.c
Second batch post 2.19
[thirdparty/git.git] / diff.c
CommitLineData
6973dcae
JH
1/*
2 * Copyright (C) 2005 Junio C Hamano
3 */
6973dcae 4#include "cache.h"
b2141fc1 5#include "config.h"
284098f1 6#include "tempfile.h"
6973dcae
JH
7#include "quote.h"
8#include "diff.h"
9#include "diffcore.h"
051308f6 10#include "delta.h"
6973dcae 11#include "xdiff-interface.h"
7c92fe0e 12#include "color.h"
8c701249 13#include "attr.h"
d5535ec7 14#include "run-command.h"
23707811 15#include "utf8.h"
cbd53a21 16#include "object-store.h"
be58e70d 17#include "userdiff.h"
851e18c3 18#include "submodule-config.h"
752c0c24 19#include "submodule.h"
2e2d5ac1 20#include "hashmap.h"
a757c646 21#include "ll-merge.h"
02e8ca0e 22#include "string-list.h"
82fbf269 23#include "argv-array.h"
660e113c 24#include "graph.h"
150e3001 25#include "packfile.h"
3ac68a93 26#include "help.h"
6973dcae 27
1510fea7
SP
28#ifdef NO_FAST_WORKING_DIRECTORY
29#define FAST_WORKING_DIRECTORY 0
30#else
31#define FAST_WORKING_DIRECTORY 1
32#endif
33
96f1e58f 34static int diff_detect_rename_default;
33de7163 35static int diff_indent_heuristic = 1;
92c57e5c 36static int diff_rename_limit_default = 400;
a624eaa7 37static int diff_suppress_blank_empty;
d2aea137 38static int diff_use_color_default = -1;
2e2d5ac1 39static int diff_color_moved_default;
626c0b5d 40static int diff_color_moved_ws_default;
6468a4e5 41static int diff_context_default = 3;
c4888677 42static int diff_interhunk_context_default;
98a4d87b 43static const char *diff_word_regex_cfg;
cbe02100 44static const char *external_diff_cmd_cfg;
6d8940b5 45static const char *diff_order_file_cfg;
aecbf914 46int diff_auto_refresh_index = 1;
a5a818ee 47static int diff_mnemonic_prefix;
f89504dd 48static int diff_no_prefix;
df44483a 49static int diff_stat_graph_width;
712d2c7d 50static int diff_dirstat_permille_default = 30;
be4f2b40 51static struct diff_options default_diff_options;
07ab4dec 52static long diff_algorithm;
a17505f2 53static unsigned ws_error_highlight_default = WSEH_NEW;
6973dcae 54
7c92fe0e 55static char diff_colors[][COLOR_MAXLEN] = {
dc6ebd4c 56 GIT_COLOR_RESET,
8dbf3eb6 57 GIT_COLOR_NORMAL, /* CONTEXT */
dc6ebd4c
AL
58 GIT_COLOR_BOLD, /* METAINFO */
59 GIT_COLOR_CYAN, /* FRAGINFO */
60 GIT_COLOR_RED, /* OLD */
61 GIT_COLOR_GREEN, /* NEW */
62 GIT_COLOR_YELLOW, /* COMMIT */
63 GIT_COLOR_BG_RED, /* WHITESPACE */
89cb73a1 64 GIT_COLOR_NORMAL, /* FUNCINFO */
86b452e2
SB
65 GIT_COLOR_BOLD_MAGENTA, /* OLD_MOVED */
66 GIT_COLOR_BOLD_BLUE, /* OLD_MOVED ALTERNATIVE */
67 GIT_COLOR_FAINT, /* OLD_MOVED_DIM */
68 GIT_COLOR_FAINT_ITALIC, /* OLD_MOVED_ALTERNATIVE_DIM */
69 GIT_COLOR_BOLD_CYAN, /* NEW_MOVED */
70 GIT_COLOR_BOLD_YELLOW, /* NEW_MOVED ALTERNATIVE */
71 GIT_COLOR_FAINT, /* NEW_MOVED_DIM */
72 GIT_COLOR_FAINT_ITALIC, /* NEW_MOVED_ALTERNATIVE_DIM */
a7be92ac
JS
73 GIT_COLOR_FAINT, /* CONTEXT_DIM */
74 GIT_COLOR_FAINT_RED, /* OLD_DIM */
75 GIT_COLOR_FAINT_GREEN, /* NEW_DIM */
76 GIT_COLOR_BOLD, /* CONTEXT_BOLD */
77 GIT_COLOR_BOLD_RED, /* OLD_BOLD */
78 GIT_COLOR_BOLD_GREEN, /* NEW_BOLD */
cd112cef
JS
79};
80
a73b3680
NTND
81static const char *color_diff_slots[] = {
82 [DIFF_CONTEXT] = "context",
83 [DIFF_METAINFO] = "meta",
84 [DIFF_FRAGINFO] = "frag",
85 [DIFF_FILE_OLD] = "old",
86 [DIFF_FILE_NEW] = "new",
87 [DIFF_COMMIT] = "commit",
88 [DIFF_WHITESPACE] = "whitespace",
89 [DIFF_FUNCINFO] = "func",
90 [DIFF_FILE_OLD_MOVED] = "oldMoved",
91 [DIFF_FILE_OLD_MOVED_ALT] = "oldMovedAlternative",
92 [DIFF_FILE_OLD_MOVED_DIM] = "oldMovedDimmed",
93 [DIFF_FILE_OLD_MOVED_ALT_DIM] = "oldMovedAlternativeDimmed",
94 [DIFF_FILE_NEW_MOVED] = "newMoved",
95 [DIFF_FILE_NEW_MOVED_ALT] = "newMovedAlternative",
96 [DIFF_FILE_NEW_MOVED_DIM] = "newMovedDimmed",
97 [DIFF_FILE_NEW_MOVED_ALT_DIM] = "newMovedAlternativeDimmed",
a7be92ac
JS
98 [DIFF_CONTEXT_DIM] = "contextDimmed",
99 [DIFF_FILE_OLD_DIM] = "oldDimmed",
100 [DIFF_FILE_NEW_DIM] = "newDimmed",
101 [DIFF_CONTEXT_BOLD] = "contextBold",
102 [DIFF_FILE_OLD_BOLD] = "oldBold",
103 [DIFF_FILE_NEW_BOLD] = "newBold",
a73b3680
NTND
104};
105
a2f05c94
JNA
106static NORETURN void die_want_option(const char *option_name)
107{
108 die(_("option '%s' requires a value"), option_name);
109}
110
3ac68a93
NTND
111define_list_config_array_extra(color_diff_slots, {"plain"});
112
9e1a5ebe 113static int parse_diff_color_slot(const char *var)
801235c5 114{
a73b3680 115 if (!strcasecmp(var, "plain"))
8dbf3eb6 116 return DIFF_CONTEXT;
a73b3680 117 return LOOKUP_CONFIG(color_diff_slots, var);
801235c5
JH
118}
119
02e8ca0e 120static int parse_dirstat_params(struct diff_options *options, const char *params_string,
51670fc8 121 struct strbuf *errmsg)
333f3fb0 122{
02e8ca0e
MH
123 char *params_copy = xstrdup(params_string);
124 struct string_list params = STRING_LIST_INIT_NODUP;
125 int ret = 0;
126 int i;
51670fc8 127
02e8ca0e
MH
128 if (*params_copy)
129 string_list_split_in_place(&params, params_copy, ',', -1);
130 for (i = 0; i < params.nr; i++) {
131 const char *p = params.items[i].string;
132 if (!strcmp(p, "changes")) {
0d1e0e78
BW
133 options->flags.dirstat_by_line = 0;
134 options->flags.dirstat_by_file = 0;
02e8ca0e 135 } else if (!strcmp(p, "lines")) {
0d1e0e78
BW
136 options->flags.dirstat_by_line = 1;
137 options->flags.dirstat_by_file = 0;
02e8ca0e 138 } else if (!strcmp(p, "files")) {
0d1e0e78
BW
139 options->flags.dirstat_by_line = 0;
140 options->flags.dirstat_by_file = 1;
02e8ca0e 141 } else if (!strcmp(p, "noncumulative")) {
0d1e0e78 142 options->flags.dirstat_cumulative = 0;
02e8ca0e 143 } else if (!strcmp(p, "cumulative")) {
0d1e0e78 144 options->flags.dirstat_cumulative = 1;
333f3fb0
JH
145 } else if (isdigit(*p)) {
146 char *end;
51670fc8
JH
147 int permille = strtoul(p, &end, 10) * 10;
148 if (*end == '.' && isdigit(*++end)) {
712d2c7d 149 /* only use first digit */
51670fc8 150 permille += *end - '0';
712d2c7d 151 /* .. and ignore any further digits */
51670fc8 152 while (isdigit(*++end))
712d2c7d
JH
153 ; /* nothing */
154 }
02e8ca0e 155 if (!*end)
51670fc8
JH
156 options->dirstat_permille = permille;
157 else {
02e8ca0e
MH
158 strbuf_addf(errmsg, _(" Failed to parse dirstat cut-off percentage '%s'\n"),
159 p);
51670fc8
JH
160 ret++;
161 }
162 } else {
02e8ca0e 163 strbuf_addf(errmsg, _(" Unknown dirstat parameter '%s'\n"), p);
51670fc8 164 ret++;
333f3fb0 165 }
51670fc8 166
333f3fb0 167 }
02e8ca0e
MH
168 string_list_clear(&params, 0);
169 free(params_copy);
51670fc8 170 return ret;
333f3fb0
JH
171}
172
c47ef57c
RR
173static int parse_submodule_params(struct diff_options *options, const char *value)
174{
175 if (!strcmp(value, "log"))
61cfbc05 176 options->submodule_format = DIFF_SUBMODULE_LOG;
c47ef57c 177 else if (!strcmp(value, "short"))
61cfbc05 178 options->submodule_format = DIFF_SUBMODULE_SHORT;
fd47ae6a
JK
179 else if (!strcmp(value, "diff"))
180 options->submodule_format = DIFF_SUBMODULE_INLINE_DIFF;
c47ef57c
RR
181 else
182 return -1;
183 return 0;
184}
185
85b46030 186int git_config_rename(const char *var, const char *value)
cced5fbc
LT
187{
188 if (!value)
189 return DIFF_DETECT_RENAME;
190 if (!strcasecmp(value, "copies") || !strcasecmp(value, "copy"))
191 return DIFF_DETECT_COPY;
192 return git_config_bool(var,value) ? DIFF_DETECT_RENAME : 0;
193}
194
07924d4d 195long parse_algorithm_value(const char *value)
07ab4dec
MP
196{
197 if (!value)
198 return -1;
199 else if (!strcasecmp(value, "myers") || !strcasecmp(value, "default"))
200 return 0;
201 else if (!strcasecmp(value, "minimal"))
202 return XDF_NEED_MINIMAL;
203 else if (!strcasecmp(value, "patience"))
204 return XDF_PATIENCE_DIFF;
205 else if (!strcasecmp(value, "histogram"))
206 return XDF_HISTOGRAM_DIFF;
207 return -1;
208}
209
0b4b42e7
JH
210static int parse_one_token(const char **arg, const char *token)
211{
212 const char *rest;
213 if (skip_prefix(*arg, token, &rest) && (!*rest || *rest == ',')) {
214 *arg = rest;
215 return 1;
216 }
217 return 0;
218}
219
220static int parse_ws_error_highlight(const char *arg)
221{
222 const char *orig_arg = arg;
223 unsigned val = 0;
224
225 while (*arg) {
226 if (parse_one_token(&arg, "none"))
227 val = 0;
228 else if (parse_one_token(&arg, "default"))
229 val = WSEH_NEW;
230 else if (parse_one_token(&arg, "all"))
231 val = WSEH_NEW | WSEH_OLD | WSEH_CONTEXT;
232 else if (parse_one_token(&arg, "new"))
233 val |= WSEH_NEW;
234 else if (parse_one_token(&arg, "old"))
235 val |= WSEH_OLD;
236 else if (parse_one_token(&arg, "context"))
237 val |= WSEH_CONTEXT;
238 else {
239 return -1 - (int)(arg - orig_arg);
240 }
241 if (*arg)
242 arg++;
243 }
244 return val;
245}
246
83ad63cf
JH
247/*
248 * These are to give UI layer defaults.
249 * The core-level commands such as git-diff-files should
250 * never be affected by the setting of diff.renames
251 * the user happens to have in the configuration file.
252 */
5404c116
MM
253void init_diff_ui_defaults(void)
254{
06dba2b0 255 diff_detect_rename_default = DIFF_DETECT_RENAME;
5404c116
MM
256}
257
5b162879
MH
258int git_diff_heuristic_config(const char *var, const char *value, void *cb)
259{
3cde4e02 260 if (!strcmp(var, "diff.indentheuristic"))
5b162879 261 diff_indent_heuristic = git_config_bool(var, value);
5b162879
MH
262 return 0;
263}
264
2e2d5ac1
SB
265static int parse_color_moved(const char *arg)
266{
267 switch (git_parse_maybe_bool(arg)) {
268 case 0:
269 return COLOR_MOVED_NO;
270 case 1:
271 return COLOR_MOVED_DEFAULT;
272 default:
273 break;
274 }
275
276 if (!strcmp(arg, "no"))
277 return COLOR_MOVED_NO;
176841f0
SB
278 else if (!strcmp(arg, "plain"))
279 return COLOR_MOVED_PLAIN;
51da15eb
SB
280 else if (!strcmp(arg, "blocks"))
281 return COLOR_MOVED_BLOCKS;
2e2d5ac1
SB
282 else if (!strcmp(arg, "zebra"))
283 return COLOR_MOVED_ZEBRA;
284 else if (!strcmp(arg, "default"))
285 return COLOR_MOVED_DEFAULT;
e3f2f5f9
ES
286 else if (!strcmp(arg, "dimmed-zebra"))
287 return COLOR_MOVED_ZEBRA_DIM;
86b452e2
SB
288 else if (!strcmp(arg, "dimmed_zebra"))
289 return COLOR_MOVED_ZEBRA_DIM;
2e2d5ac1 290 else
706b0b5e 291 return error(_("color moved setting must be one of 'no', 'default', 'blocks', 'zebra', 'dimmed-zebra', 'plain'"));
2e2d5ac1
SB
292}
293
b3095712
SB
294static int parse_color_moved_ws(const char *arg)
295{
296 int ret = 0;
297 struct string_list l = STRING_LIST_INIT_DUP;
298 struct string_list_item *i;
299
300 string_list_split(&l, arg, ',', -1);
301
302 for_each_string_list_item(i, &l) {
303 struct strbuf sb = STRBUF_INIT;
304 strbuf_addstr(&sb, i->string);
305 strbuf_trim(&sb);
306
307 if (!strcmp(sb.buf, "ignore-space-change"))
308 ret |= XDF_IGNORE_WHITESPACE_CHANGE;
309 else if (!strcmp(sb.buf, "ignore-space-at-eol"))
310 ret |= XDF_IGNORE_WHITESPACE_AT_EOL;
311 else if (!strcmp(sb.buf, "ignore-all-space"))
312 ret |= XDF_IGNORE_WHITESPACE;
ca1f4ae4
SB
313 else if (!strcmp(sb.buf, "allow-indentation-change"))
314 ret |= COLOR_MOVED_WS_ALLOW_INDENTATION_CHANGE;
b3095712
SB
315 else
316 error(_("ignoring unknown color-moved-ws mode '%s'"), sb.buf);
317
318 strbuf_release(&sb);
319 }
320
ca1f4ae4
SB
321 if ((ret & COLOR_MOVED_WS_ALLOW_INDENTATION_CHANGE) &&
322 (ret & XDF_WHITESPACE_FLAGS))
323 die(_("color-moved-ws: allow-indentation-change cannot be combined with other white space modes"));
324
b3095712
SB
325 string_list_clear(&l, 0);
326
327 return ret;
2e2d5ac1
SB
328}
329
ef90d6d4 330int git_diff_ui_config(const char *var, const char *value, void *cb)
801235c5 331{
a159ca0c 332 if (!strcmp(var, "diff.color") || !strcmp(var, "color.diff")) {
e269eb79 333 diff_use_color_default = git_config_colorbool(var, value);
801235c5
JH
334 return 0;
335 }
2e2d5ac1
SB
336 if (!strcmp(var, "diff.colormoved")) {
337 int cm = parse_color_moved(value);
338 if (cm < 0)
339 return -1;
340 diff_color_moved_default = cm;
341 return 0;
342 }
626c0b5d
SB
343 if (!strcmp(var, "diff.colormovedws")) {
344 int cm = parse_color_moved_ws(value);
345 if (cm < 0)
346 return -1;
347 diff_color_moved_ws_default = cm;
348 return 0;
349 }
6468a4e5
JM
350 if (!strcmp(var, "diff.context")) {
351 diff_context_default = git_config_int(var, value);
352 if (diff_context_default < 0)
353 return -1;
354 return 0;
355 }
c4888677
VN
356 if (!strcmp(var, "diff.interhunkcontext")) {
357 diff_interhunk_context_default = git_config_int(var, value);
358 if (diff_interhunk_context_default < 0)
359 return -1;
360 return 0;
361 }
b68ea12e 362 if (!strcmp(var, "diff.renames")) {
cced5fbc 363 diff_detect_rename_default = git_config_rename(var, value);
b68ea12e
EW
364 return 0;
365 }
aecbf914
JH
366 if (!strcmp(var, "diff.autorefreshindex")) {
367 diff_auto_refresh_index = git_config_bool(var, value);
368 return 0;
369 }
a5a818ee
JH
370 if (!strcmp(var, "diff.mnemonicprefix")) {
371 diff_mnemonic_prefix = git_config_bool(var, value);
372 return 0;
373 }
f89504dd
EC
374 if (!strcmp(var, "diff.noprefix")) {
375 diff_no_prefix = git_config_bool(var, value);
376 return 0;
377 }
df44483a
ZJS
378 if (!strcmp(var, "diff.statgraphwidth")) {
379 diff_stat_graph_width = git_config_int(var, value);
380 return 0;
381 }
daec808c
BH
382 if (!strcmp(var, "diff.external"))
383 return git_config_string(&external_diff_cmd_cfg, var, value);
98a4d87b
BSSJ
384 if (!strcmp(var, "diff.wordregex"))
385 return git_config_string(&diff_word_regex_cfg, var, value);
6d8940b5
SB
386 if (!strcmp(var, "diff.orderfile"))
387 return git_config_pathname(&diff_order_file_cfg, var, value);
f1af60bd 388
be4f2b40
JS
389 if (!strcmp(var, "diff.ignoresubmodules"))
390 handle_ignore_submodules_arg(&default_diff_options, value);
391
c47ef57c
RR
392 if (!strcmp(var, "diff.submodule")) {
393 if (parse_submodule_params(&default_diff_options, value))
394 warning(_("Unknown value for 'diff.submodule' config variable: '%s'"),
395 value);
396 return 0;
397 }
398
07ab4dec
MP
399 if (!strcmp(var, "diff.algorithm")) {
400 diff_algorithm = parse_algorithm_value(value);
401 if (diff_algorithm < 0)
402 return -1;
403 return 0;
404 }
405
a17505f2
JH
406 if (!strcmp(var, "diff.wserrorhighlight")) {
407 int val = parse_ws_error_highlight(value);
408 if (val < 0)
409 return -1;
410 ws_error_highlight_default = val;
411 return 0;
412 }
413
33c643bb
JK
414 if (git_color_config(var, value, cb) < 0)
415 return -1;
416
ef90d6d4 417 return git_diff_basic_config(var, value, cb);
9a1805a8
JK
418}
419
ef90d6d4 420int git_diff_basic_config(const char *var, const char *value, void *cb)
9a1805a8 421{
ae021d87
JK
422 const char *name;
423
2b6ca6df
LT
424 if (!strcmp(var, "diff.renamelimit")) {
425 diff_rename_limit_default = git_config_int(var, value);
426 return 0;
427 }
428
6680a087
JK
429 if (userdiff_config(var, value) < 0)
430 return -1;
c7534ef4 431
ae021d87
JK
432 if (skip_prefix(var, "diff.color.", &name) ||
433 skip_prefix(var, "color.diff.", &name)) {
434 int slot = parse_diff_color_slot(name);
8b8e8624
JK
435 if (slot < 0)
436 return 0;
64f30e94
JH
437 if (!value)
438 return config_error_nonbool(var);
f6c5a296 439 return color_parse(value, diff_colors[slot]);
801235c5 440 }
f1af60bd 441
a624eaa7 442 /* like GNU diff's --suppress-blank-empty option */
950db879
JS
443 if (!strcmp(var, "diff.suppressblankempty") ||
444 /* for backwards compatibility */
445 !strcmp(var, "diff.suppress-blank-empty")) {
a624eaa7
JM
446 diff_suppress_blank_empty = git_config_bool(var, value);
447 return 0;
448 }
449
2d174951 450 if (!strcmp(var, "diff.dirstat")) {
51670fc8 451 struct strbuf errmsg = STRBUF_INIT;
712d2c7d 452 default_diff_options.dirstat_permille = diff_dirstat_permille_default;
51670fc8 453 if (parse_dirstat_params(&default_diff_options, value, &errmsg))
7478ac57 454 warning(_("Found errors in 'diff.dirstat' config variable:\n%s"),
51670fc8
JH
455 errmsg.buf);
456 strbuf_release(&errmsg);
712d2c7d 457 diff_dirstat_permille_default = default_diff_options.dirstat_permille;
2d174951
JH
458 return 0;
459 }
460
cf5e7722
MB
461 if (git_diff_heuristic_config(var, value, cb) < 0)
462 return -1;
463
3e1dd17a 464 return git_default_config(var, value, cb);
801235c5
JH
465}
466
6973dcae
JH
467static char *quote_two(const char *one, const char *two)
468{
469 int need_one = quote_c_style(one, NULL, NULL, 1);
470 int need_two = quote_c_style(two, NULL, NULL, 1);
f285a2d7 471 struct strbuf res = STRBUF_INIT;
6973dcae
JH
472
473 if (need_one + need_two) {
663af342
PH
474 strbuf_addch(&res, '"');
475 quote_c_style(one, &res, NULL, 1);
476 quote_c_style(two, &res, NULL, 1);
477 strbuf_addch(&res, '"');
478 } else {
479 strbuf_addstr(&res, one);
480 strbuf_addstr(&res, two);
6973dcae 481 }
b315c5c0 482 return strbuf_detach(&res, NULL);
6973dcae
JH
483}
484
485static const char *external_diff(void)
486{
487 static const char *external_diff_cmd = NULL;
488 static int done_preparing = 0;
489
490 if (done_preparing)
491 return external_diff_cmd;
492 external_diff_cmd = getenv("GIT_EXTERNAL_DIFF");
cbe02100
JS
493 if (!external_diff_cmd)
494 external_diff_cmd = external_diff_cmd_cfg;
6973dcae
JH
495 done_preparing = 1;
496 return external_diff_cmd;
497}
498
284098f1
MH
499/*
500 * Keep track of files used for diffing. Sometimes such an entry
501 * refers to a temporary file, sometimes to an existing file, and
502 * sometimes to "/dev/null".
503 */
6973dcae 504static struct diff_tempfile {
284098f1
MH
505 /*
506 * filename external diff should read from, or NULL if this
507 * entry is currently not in use:
508 */
509 const char *name;
510
dc01505f 511 char hex[GIT_MAX_HEXSZ + 1];
6973dcae 512 char mode[10];
284098f1
MH
513
514 /*
515 * If this diff_tempfile instance refers to a temporary file,
516 * this tempfile object is used to manage its lifetime.
517 */
076aa2cb 518 struct tempfile *tempfile;
6973dcae
JH
519} diff_temp[2];
520
6957eb9a 521struct emit_callback {
6957eb9a
JH
522 int color_diff;
523 unsigned ws_rule;
524 int blank_at_eof_in_preimage;
525 int blank_at_eof_in_postimage;
526 int lno_in_preimage;
527 int lno_in_postimage;
6957eb9a
JH
528 const char **label_path;
529 struct diff_words_data *diff_words;
a3c158d4 530 struct diff_options *opt;
3e97c7c6 531 struct strbuf *header;
6957eb9a
JH
532};
533
6973dcae
JH
534static int count_lines(const char *data, int size)
535{
536 int count, ch, completely_empty = 1, nl_just_seen = 0;
537 count = 0;
538 while (0 < size--) {
539 ch = *data++;
540 if (ch == '\n') {
541 count++;
542 nl_just_seen = 1;
543 completely_empty = 0;
544 }
545 else {
546 nl_just_seen = 0;
547 completely_empty = 0;
548 }
549 }
550 if (completely_empty)
551 return 0;
552 if (!nl_just_seen)
553 count++; /* no trailing newline */
554 return count;
555}
556
6957eb9a
JH
557static int fill_mmfile(mmfile_t *mf, struct diff_filespec *one)
558{
559 if (!DIFF_FILE_VALID(one)) {
560 mf->ptr = (char *)""; /* does not matter */
561 mf->size = 0;
562 return 0;
563 }
564 else if (diff_populate_filespec(one, 0))
565 return -1;
bb35fefb 566
6957eb9a
JH
567 mf->ptr = one->data;
568 mf->size = one->size;
569 return 0;
570}
571
abb371a1
JK
572/* like fill_mmfile, but only for size, so we can avoid retrieving blob */
573static unsigned long diff_filespec_size(struct diff_filespec *one)
574{
575 if (!DIFF_FILE_VALID(one))
576 return 0;
8e5dd3d6 577 diff_populate_filespec(one, CHECK_SIZE_ONLY);
abb371a1
JK
578 return one->size;
579}
580
6957eb9a
JH
581static int count_trailing_blank(mmfile_t *mf, unsigned ws_rule)
582{
583 char *ptr = mf->ptr;
584 long size = mf->size;
585 int cnt = 0;
586
587 if (!size)
588 return cnt;
589 ptr += size - 1; /* pointing at the very end */
590 if (*ptr != '\n')
591 ; /* incomplete line */
592 else
593 ptr--; /* skip the last LF */
594 while (mf->ptr < ptr) {
595 char *prev_eol;
596 for (prev_eol = ptr; mf->ptr <= prev_eol; prev_eol--)
597 if (*prev_eol == '\n')
598 break;
599 if (!ws_blank_line(prev_eol + 1, ptr - prev_eol, ws_rule))
600 break;
601 cnt++;
602 ptr = prev_eol - 1;
603 }
604 return cnt;
605}
606
607static void check_blank_at_eof(mmfile_t *mf1, mmfile_t *mf2,
608 struct emit_callback *ecbdata)
609{
610 int l1, l2, at;
611 unsigned ws_rule = ecbdata->ws_rule;
612 l1 = count_trailing_blank(mf1, ws_rule);
613 l2 = count_trailing_blank(mf2, ws_rule);
614 if (l2 <= l1) {
615 ecbdata->blank_at_eof_in_preimage = 0;
616 ecbdata->blank_at_eof_in_postimage = 0;
617 return;
618 }
619 at = count_lines(mf1->ptr, mf1->size);
620 ecbdata->blank_at_eof_in_preimage = (at - l1) + 1;
621
622 at = count_lines(mf2->ptr, mf2->size);
623 ecbdata->blank_at_eof_in_postimage = (at - l2) + 1;
624}
625
f7c3b4e2 626static void emit_line_0(struct diff_options *o,
017ac45e 627 const char *set_sign, const char *set, unsigned reverse, const char *reset,
250f7993 628 int first, const char *line, int len)
6957eb9a
JH
629{
630 int has_trailing_newline, has_trailing_carriage_return;
44410679 631 int needs_reset = 0; /* at the end of the line */
a3c158d4
BY
632 FILE *file = o->file;
633
f103a6fa 634 fputs(diff_line_prefix(o), file);
6957eb9a 635
44410679
SB
636 has_trailing_newline = (len > 0 && line[len-1] == '\n');
637 if (has_trailing_newline)
638 len--;
639
640 has_trailing_carriage_return = (len > 0 && line[len-1] == '\r');
641 if (has_trailing_carriage_return)
642 len--;
643
644 if (!len && !first)
645 goto end_of_line;
646
647 if (reverse && want_color(o->use_color)) {
648 fputs(GIT_COLOR_REVERSE, file);
649 needs_reset = 1;
250f7993 650 }
6957eb9a 651
44410679
SB
652 if (set_sign) {
653 fputs(set_sign, file);
654 needs_reset = 1;
06a47552 655 }
44410679
SB
656
657 if (first)
658 fputc(first, file);
659
660 if (!len)
661 goto end_of_line;
662
663 if (set) {
664 if (set_sign && set != set_sign)
665 fputs(reset, file);
06a47552 666 fputs(set, file);
44410679 667 needs_reset = 1;
06a47552 668 }
44410679
SB
669 fwrite(line, len, 1, file);
670 needs_reset = 1; /* 'line' may contain color codes. */
671
672end_of_line:
673 if (needs_reset)
674 fputs(reset, file);
6957eb9a
JH
675 if (has_trailing_carriage_return)
676 fputc('\r', file);
677 if (has_trailing_newline)
678 fputc('\n', file);
679}
680
a3c158d4 681static void emit_line(struct diff_options *o, const char *set, const char *reset,
250f7993
JH
682 const char *line, int len)
683{
44410679 684 emit_line_0(o, set, NULL, 0, reset, 0, line, len);
250f7993
JH
685}
686
36a4cefd 687enum diff_symbol {
4eed0ebd
SB
688 DIFF_SYMBOL_BINARY_DIFF_HEADER,
689 DIFF_SYMBOL_BINARY_DIFF_HEADER_DELTA,
690 DIFF_SYMBOL_BINARY_DIFF_HEADER_LITERAL,
691 DIFF_SYMBOL_BINARY_DIFF_BODY,
692 DIFF_SYMBOL_BINARY_DIFF_FOOTER,
0911c475
SB
693 DIFF_SYMBOL_STATS_SUMMARY_NO_FILES,
694 DIFF_SYMBOL_STATS_SUMMARY_ABBREV,
695 DIFF_SYMBOL_STATS_SUMMARY_INSERTS_DELETES,
696 DIFF_SYMBOL_STATS_LINE,
bd033291 697 DIFF_SYMBOL_WORD_DIFF,
30b7e1e7 698 DIFF_SYMBOL_STAT_SEP,
146fdb0d 699 DIFF_SYMBOL_SUMMARY,
f3597138
SB
700 DIFF_SYMBOL_SUBMODULE_ADD,
701 DIFF_SYMBOL_SUBMODULE_DEL,
702 DIFF_SYMBOL_SUBMODULE_UNTRACKED,
703 DIFF_SYMBOL_SUBMODULE_MODIFIED,
704 DIFF_SYMBOL_SUBMODULE_HEADER,
705 DIFF_SYMBOL_SUBMODULE_ERROR,
706 DIFF_SYMBOL_SUBMODULE_PIPETHROUGH,
5af6ea95 707 DIFF_SYMBOL_REWRITE_DIFF,
4acaaa7a 708 DIFF_SYMBOL_BINARY_FILES,
a29b0a13 709 DIFF_SYMBOL_HEADER,
3ee8b7bf
SB
710 DIFF_SYMBOL_FILEPAIR_PLUS,
711 DIFF_SYMBOL_FILEPAIR_MINUS,
ff958679
SB
712 DIFF_SYMBOL_WORDS_PORCELAIN,
713 DIFF_SYMBOL_WORDS,
091f8e28 714 DIFF_SYMBOL_CONTEXT,
f2bb1218 715 DIFF_SYMBOL_CONTEXT_INCOMPLETE,
091f8e28
SB
716 DIFF_SYMBOL_PLUS,
717 DIFF_SYMBOL_MINUS,
b9cbfde6 718 DIFF_SYMBOL_NO_LF_EOF,
68abc6f1 719 DIFF_SYMBOL_CONTEXT_FRAGINFO,
c64b420b 720 DIFF_SYMBOL_CONTEXT_MARKER,
36a4cefd
SB
721 DIFF_SYMBOL_SEPARATOR
722};
091f8e28
SB
723/*
724 * Flags for content lines:
725 * 0..12 are whitespace rules
726 * 13-15 are WSEH_NEW | WSEH_OLD | WSEH_CONTEXT
727 * 16 is marking if the line is blank at EOF
728 */
2e2d5ac1
SB
729#define DIFF_SYMBOL_CONTENT_BLANK_LINE_EOF (1<<16)
730#define DIFF_SYMBOL_MOVED_LINE (1<<17)
731#define DIFF_SYMBOL_MOVED_LINE_ALT (1<<18)
86b452e2 732#define DIFF_SYMBOL_MOVED_LINE_UNINTERESTING (1<<19)
091f8e28
SB
733#define DIFF_SYMBOL_CONTENT_WS_MASK (WSEH_NEW | WSEH_OLD | WSEH_CONTEXT | WS_RULE_MASK)
734
e6e045f8
SB
735/*
736 * This struct is used when we need to buffer the output of the diff output.
737 *
738 * NEEDSWORK: Instead of storing a copy of the line, add an offset pointer
739 * into the pre/post image file. This pointer could be a union with the
740 * line pointer. By storing an offset into the file instead of the literal line,
741 * we can decrease the memory footprint for the buffered output. At first we
742 * may want to only have indirection for the content lines, but we could also
743 * enhance the state for emitting prefabricated lines, e.g. the similarity
744 * score line or hunk/file headers would only need to store a number or path
745 * and then the output can be constructed later on depending on state.
746 */
747struct emitted_diff_symbol {
748 const char *line;
749 int len;
750 int flags;
751 enum diff_symbol s;
752};
753#define EMITTED_DIFF_SYMBOL_INIT {NULL}
754
755struct emitted_diff_symbols {
756 struct emitted_diff_symbol *buf;
757 int nr, alloc;
758};
759#define EMITTED_DIFF_SYMBOLS_INIT {NULL, 0, 0}
760
761static void append_emitted_diff_symbol(struct diff_options *o,
762 struct emitted_diff_symbol *e)
6957eb9a 763{
e6e045f8
SB
764 struct emitted_diff_symbol *f;
765
766 ALLOC_GROW(o->emitted_symbols->buf,
767 o->emitted_symbols->nr + 1,
768 o->emitted_symbols->alloc);
769 f = &o->emitted_symbols->buf[o->emitted_symbols->nr++];
770
771 memcpy(f, e, sizeof(struct emitted_diff_symbol));
772 f->line = e->line ? xmemdupz(e->line, e->len) : NULL;
6957eb9a
JH
773}
774
2e2d5ac1
SB
775struct moved_entry {
776 struct hashmap_entry ent;
777 const struct emitted_diff_symbol *es;
778 struct moved_entry *next_line;
ca1f4ae4 779 struct ws_delta *wsd;
2e2d5ac1
SB
780};
781
ca1f4ae4
SB
782/**
783 * The struct ws_delta holds white space differences between moved lines, i.e.
784 * between '+' and '-' lines that have been detected to be a move.
785 * The string contains the difference in leading white spaces, before the
786 * rest of the line is compared using the white space config for move
787 * coloring. The current_longer indicates if the first string in the
788 * comparision is longer than the second.
789 */
790struct ws_delta {
791 char *string;
792 unsigned int current_longer : 1;
2e2d5ac1 793};
ca1f4ae4
SB
794#define WS_DELTA_INIT { NULL, 0 }
795
796static int compute_ws_delta(const struct emitted_diff_symbol *a,
797 const struct emitted_diff_symbol *b,
798 struct ws_delta *out)
799{
800 const struct emitted_diff_symbol *longer = a->len > b->len ? a : b;
801 const struct emitted_diff_symbol *shorter = a->len > b->len ? b : a;
802 int d = longer->len - shorter->len;
803
804 out->string = xmemdupz(longer->line, d);
805 out->current_longer = (a == longer);
806
807 return !strncmp(longer->line + d, shorter->line, shorter->len);
808}
809
810static int cmp_in_block_with_wsd(const struct diff_options *o,
811 const struct moved_entry *cur,
812 const struct moved_entry *match,
813 struct moved_entry *pmb,
814 int n)
815{
816 struct emitted_diff_symbol *l = &o->emitted_symbols->buf[n];
817 int al = cur->es->len, cl = l->len;
818 const char *a = cur->es->line,
819 *b = match->es->line,
820 *c = l->line;
821
822 int wslen;
823
824 /*
825 * We need to check if 'cur' is equal to 'match'.
826 * As those are from the same (+/-) side, we do not need to adjust for
827 * indent changes. However these were found using fuzzy matching
828 * so we do have to check if they are equal.
829 */
830 if (strcmp(a, b))
831 return 1;
832
833 if (!pmb->wsd)
834 /*
835 * No white space delta was carried forward? This can happen
836 * when we exit early in this function and do not carry
837 * forward ws.
838 */
839 return 1;
840
841 /*
842 * The indent changes of the block are known and carried forward in
843 * pmb->wsd; however we need to check if the indent changes of the
844 * current line are still the same as before.
845 *
846 * To do so we need to compare 'l' to 'cur', adjusting the
847 * one of them for the white spaces, depending which was longer.
848 */
849
850 wslen = strlen(pmb->wsd->string);
851 if (pmb->wsd->current_longer) {
852 c += wslen;
853 cl -= wslen;
854 } else {
855 a += wslen;
856 al -= wslen;
857 }
858
859 if (strcmp(a, c))
860 return 1;
861
862 return 0;
863}
2e2d5ac1 864
ee1df66f
SB
865static int moved_entry_cmp(const void *hashmap_cmp_fn_data,
866 const void *entry,
867 const void *entry_or_key,
2e2d5ac1
SB
868 const void *keydata)
869{
ee1df66f
SB
870 const struct diff_options *diffopt = hashmap_cmp_fn_data;
871 const struct moved_entry *a = entry;
872 const struct moved_entry *b = entry_or_key;
b3095712
SB
873 unsigned flags = diffopt->color_moved_ws_handling
874 & XDF_WHITESPACE_FLAGS;
ee1df66f 875
ca1f4ae4
SB
876 if (diffopt->color_moved_ws_handling &
877 COLOR_MOVED_WS_ALLOW_INDENTATION_CHANGE)
878 /*
879 * As there is not specific white space config given,
880 * we'd need to check for a new block, so ignore all
881 * white space. The setup of the white space
882 * configuration for the next block is done else where
883 */
884 flags |= XDF_IGNORE_WHITESPACE;
885
01be97c2
SB
886 return !xdiff_compare_lines(a->es->line, a->es->len,
887 b->es->line, b->es->len,
b3095712 888 flags);
2e2d5ac1
SB
889}
890
891static struct moved_entry *prepare_entry(struct diff_options *o,
892 int line_no)
893{
894 struct moved_entry *ret = xmalloc(sizeof(*ret));
895 struct emitted_diff_symbol *l = &o->emitted_symbols->buf[line_no];
b3095712 896 unsigned flags = o->color_moved_ws_handling & XDF_WHITESPACE_FLAGS;
2e2d5ac1 897
b3095712 898 ret->ent.hash = xdiff_hash_string(l->line, l->len, flags);
2e2d5ac1
SB
899 ret->es = l;
900 ret->next_line = NULL;
ca1f4ae4 901 ret->wsd = NULL;
2e2d5ac1
SB
902
903 return ret;
904}
905
906static void add_lines_to_move_detection(struct diff_options *o,
907 struct hashmap *add_lines,
908 struct hashmap *del_lines)
909{
910 struct moved_entry *prev_line = NULL;
911
912 int n;
913 for (n = 0; n < o->emitted_symbols->nr; n++) {
914 struct hashmap *hm;
915 struct moved_entry *key;
916
917 switch (o->emitted_symbols->buf[n].s) {
918 case DIFF_SYMBOL_PLUS:
919 hm = add_lines;
920 break;
921 case DIFF_SYMBOL_MINUS:
922 hm = del_lines;
923 break;
924 default:
925 prev_line = NULL;
926 continue;
927 }
928
929 key = prepare_entry(o, n);
930 if (prev_line && prev_line->es->s == o->emitted_symbols->buf[n].s)
931 prev_line->next_line = key;
932
933 hashmap_add(hm, key);
934 prev_line = key;
935 }
936}
937
e2fe6abc
SB
938static void pmb_advance_or_null(struct diff_options *o,
939 struct moved_entry *match,
940 struct hashmap *hm,
941 struct moved_entry **pmb,
942 int pmb_nr)
943{
944 int i;
945 for (i = 0; i < pmb_nr; i++) {
946 struct moved_entry *prev = pmb[i];
947 struct moved_entry *cur = (prev && prev->next_line) ?
948 prev->next_line : NULL;
949 if (cur && !hm->cmpfn(o, cur, match, NULL)) {
950 pmb[i] = cur;
951 } else {
952 pmb[i] = NULL;
953 }
954 }
955}
956
ca1f4ae4
SB
957static void pmb_advance_or_null_multi_match(struct diff_options *o,
958 struct moved_entry *match,
959 struct hashmap *hm,
960 struct moved_entry **pmb,
961 int pmb_nr, int n)
962{
963 int i;
964 char *got_match = xcalloc(1, pmb_nr);
965
966 for (; match; match = hashmap_get_next(hm, match)) {
967 for (i = 0; i < pmb_nr; i++) {
968 struct moved_entry *prev = pmb[i];
969 struct moved_entry *cur = (prev && prev->next_line) ?
970 prev->next_line : NULL;
971 if (!cur)
972 continue;
973 if (!cmp_in_block_with_wsd(o, cur, match, pmb[i], n))
974 got_match[i] |= 1;
975 }
976 }
977
978 for (i = 0; i < pmb_nr; i++) {
979 if (got_match[i]) {
980 /* Carry the white space delta forward */
981 pmb[i]->next_line->wsd = pmb[i]->wsd;
982 pmb[i] = pmb[i]->next_line;
fab01ec5
PW
983 } else {
984 if (pmb[i]->wsd) {
985 free(pmb[i]->wsd->string);
986 FREE_AND_NULL(pmb[i]->wsd);
987 }
ca1f4ae4 988 pmb[i] = NULL;
fab01ec5 989 }
ca1f4ae4
SB
990 }
991}
992
2e2d5ac1
SB
993static int shrink_potential_moved_blocks(struct moved_entry **pmb,
994 int pmb_nr)
995{
996 int lp, rp;
997
998 /* Shrink the set of potential block to the remaining running */
999 for (lp = 0, rp = pmb_nr - 1; lp <= rp;) {
1000 while (lp < pmb_nr && pmb[lp])
1001 lp++;
1002 /* lp points at the first NULL now */
1003
1004 while (rp > -1 && !pmb[rp])
1005 rp--;
1006 /* rp points at the last non-NULL */
1007
1008 if (lp < pmb_nr && rp > -1 && lp < rp) {
1009 pmb[lp] = pmb[rp];
1010 pmb[rp] = NULL;
1011 rp--;
1012 lp++;
1013 }
1014 }
1015
1016 /* Remember the number of running sets */
1017 return rp + 1;
1018}
1019
09153277
JT
1020/*
1021 * If o->color_moved is COLOR_MOVED_PLAIN, this function does nothing.
1022 *
f0b8fb6e
JT
1023 * Otherwise, if the last block has fewer alphanumeric characters than
1024 * COLOR_MOVED_MIN_ALNUM_COUNT, unset DIFF_SYMBOL_MOVED_LINE on all lines in
09153277
JT
1025 * that block.
1026 *
1027 * The last block consists of the (n - block_length)'th line up to but not
1028 * including the nth line.
f0b8fb6e
JT
1029 *
1030 * NEEDSWORK: This uses the same heuristic as blame_entry_score() in blame.c.
1031 * Think of a way to unify them.
09153277
JT
1032 */
1033static void adjust_last_block(struct diff_options *o, int n, int block_length)
1034{
f0b8fb6e
JT
1035 int i, alnum_count = 0;
1036 if (o->color_moved == COLOR_MOVED_PLAIN)
09153277 1037 return;
f0b8fb6e
JT
1038 for (i = 1; i < block_length + 1; i++) {
1039 const char *c = o->emitted_symbols->buf[n - i].line;
1040 for (; *c; c++) {
1041 if (!isalnum(*c))
1042 continue;
1043 alnum_count++;
1044 if (alnum_count >= COLOR_MOVED_MIN_ALNUM_COUNT)
1045 return;
1046 }
1047 }
09153277
JT
1048 for (i = 1; i < block_length + 1; i++)
1049 o->emitted_symbols->buf[n - i].flags &= ~DIFF_SYMBOL_MOVED_LINE;
1050}
1051
2e2d5ac1
SB
1052/* Find blocks of moved code, delegate actual coloring decision to helper */
1053static void mark_color_as_moved(struct diff_options *o,
1054 struct hashmap *add_lines,
1055 struct hashmap *del_lines)
1056{
1057 struct moved_entry **pmb = NULL; /* potentially moved blocks */
1058 int pmb_nr = 0, pmb_alloc = 0;
1059 int n, flipped_block = 1, block_length = 0;
1060
1061
1062 for (n = 0; n < o->emitted_symbols->nr; n++) {
1063 struct hashmap *hm = NULL;
1064 struct moved_entry *key;
1065 struct moved_entry *match = NULL;
1066 struct emitted_diff_symbol *l = &o->emitted_symbols->buf[n];
2e2d5ac1
SB
1067
1068 switch (l->s) {
1069 case DIFF_SYMBOL_PLUS:
1070 hm = del_lines;
1071 key = prepare_entry(o, n);
3783aad4 1072 match = hashmap_get(hm, key, NULL);
2e2d5ac1
SB
1073 free(key);
1074 break;
1075 case DIFF_SYMBOL_MINUS:
1076 hm = add_lines;
1077 key = prepare_entry(o, n);
3783aad4 1078 match = hashmap_get(hm, key, NULL);
2e2d5ac1
SB
1079 free(key);
1080 break;
1081 default:
1082 flipped_block = 1;
1083 }
1084
1085 if (!match) {
09153277 1086 adjust_last_block(o, n, block_length);
2e2d5ac1
SB
1087 pmb_nr = 0;
1088 block_length = 0;
1089 continue;
1090 }
1091
1092 l->flags |= DIFF_SYMBOL_MOVED_LINE;
2e2d5ac1 1093
176841f0
SB
1094 if (o->color_moved == COLOR_MOVED_PLAIN)
1095 continue;
1096
ca1f4ae4
SB
1097 if (o->color_moved_ws_handling &
1098 COLOR_MOVED_WS_ALLOW_INDENTATION_CHANGE)
1099 pmb_advance_or_null_multi_match(o, match, hm, pmb, pmb_nr, n);
1100 else
1101 pmb_advance_or_null(o, match, hm, pmb, pmb_nr);
2e2d5ac1
SB
1102
1103 pmb_nr = shrink_potential_moved_blocks(pmb, pmb_nr);
1104
1105 if (pmb_nr == 0) {
1106 /*
1107 * The current line is the start of a new block.
1108 * Setup the set of potential blocks.
1109 */
1110 for (; match; match = hashmap_get_next(hm, match)) {
1111 ALLOC_GROW(pmb, pmb_nr + 1, pmb_alloc);
ca1f4ae4
SB
1112 if (o->color_moved_ws_handling &
1113 COLOR_MOVED_WS_ALLOW_INDENTATION_CHANGE) {
1114 struct ws_delta *wsd = xmalloc(sizeof(*match->wsd));
1115 if (compute_ws_delta(l, match->es, wsd)) {
1116 match->wsd = wsd;
1117 pmb[pmb_nr++] = match;
1118 } else
1119 free(wsd);
1120 } else {
1121 pmb[pmb_nr++] = match;
1122 }
2e2d5ac1
SB
1123 }
1124
1125 flipped_block = (flipped_block + 1) % 2;
f0b8fb6e
JT
1126
1127 adjust_last_block(o, n, block_length);
1128 block_length = 0;
2e2d5ac1
SB
1129 }
1130
f0b8fb6e
JT
1131 block_length++;
1132
51da15eb 1133 if (flipped_block && o->color_moved != COLOR_MOVED_BLOCKS)
2e2d5ac1
SB
1134 l->flags |= DIFF_SYMBOL_MOVED_LINE_ALT;
1135 }
09153277 1136 adjust_last_block(o, n, block_length);
2e2d5ac1
SB
1137
1138 free(pmb);
1139}
e6e045f8 1140
86b452e2
SB
1141#define DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK \
1142 (DIFF_SYMBOL_MOVED_LINE | DIFF_SYMBOL_MOVED_LINE_ALT)
1143static void dim_moved_lines(struct diff_options *o)
1144{
1145 int n;
1146 for (n = 0; n < o->emitted_symbols->nr; n++) {
1147 struct emitted_diff_symbol *prev = (n != 0) ?
1148 &o->emitted_symbols->buf[n - 1] : NULL;
1149 struct emitted_diff_symbol *l = &o->emitted_symbols->buf[n];
1150 struct emitted_diff_symbol *next =
1151 (n < o->emitted_symbols->nr - 1) ?
1152 &o->emitted_symbols->buf[n + 1] : NULL;
1153
1154 /* Not a plus or minus line? */
1155 if (l->s != DIFF_SYMBOL_PLUS && l->s != DIFF_SYMBOL_MINUS)
1156 continue;
1157
1158 /* Not a moved line? */
1159 if (!(l->flags & DIFF_SYMBOL_MOVED_LINE))
1160 continue;
1161
1162 /*
1163 * If prev or next are not a plus or minus line,
1164 * pretend they don't exist
1165 */
1166 if (prev && prev->s != DIFF_SYMBOL_PLUS &&
1167 prev->s != DIFF_SYMBOL_MINUS)
1168 prev = NULL;
1169 if (next && next->s != DIFF_SYMBOL_PLUS &&
1170 next->s != DIFF_SYMBOL_MINUS)
1171 next = NULL;
1172
1173 /* Inside a block? */
1174 if ((prev &&
1175 (prev->flags & DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK) ==
1176 (l->flags & DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK)) &&
1177 (next &&
1178 (next->flags & DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK) ==
1179 (l->flags & DIFF_SYMBOL_MOVED_LINE_ZEBRA_MASK))) {
1180 l->flags |= DIFF_SYMBOL_MOVED_LINE_UNINTERESTING;
1181 continue;
1182 }
1183
1184 /* Check if we are at an interesting bound: */
1185 if (prev && (prev->flags & DIFF_SYMBOL_MOVED_LINE) &&
1186 (prev->flags & DIFF_SYMBOL_MOVED_LINE_ALT) !=
1187 (l->flags & DIFF_SYMBOL_MOVED_LINE_ALT))
1188 continue;
1189 if (next && (next->flags & DIFF_SYMBOL_MOVED_LINE) &&
1190 (next->flags & DIFF_SYMBOL_MOVED_LINE_ALT) !=
1191 (l->flags & DIFF_SYMBOL_MOVED_LINE_ALT))
1192 continue;
1193
1194 /*
1195 * The boundary to prev and next are not interesting,
1196 * so this line is not interesting as a whole
1197 */
1198 l->flags |= DIFF_SYMBOL_MOVED_LINE_UNINTERESTING;
1199 }
1200}
1201
091f8e28 1202static void emit_line_ws_markup(struct diff_options *o,
9d1e16bf
SB
1203 const char *set_sign, const char *set,
1204 const char *reset,
1205 char sign, const char *line, int len,
091f8e28 1206 unsigned ws_rule, int blank_at_eof)
6957eb9a 1207{
b8767f79 1208 const char *ws = NULL;
6957eb9a 1209
091f8e28
SB
1210 if (o->ws_error_highlight & ws_rule) {
1211 ws = diff_get_color_opt(o, DIFF_WHITESPACE);
b8767f79
JH
1212 if (!*ws)
1213 ws = NULL;
1214 }
1215
f7c3b4e2 1216 if (!ws && !set_sign)
017ac45e 1217 emit_line_0(o, set, NULL, 0, reset, sign, line, len);
f7c3b4e2 1218 else if (!ws) {
29ef759d 1219 emit_line_0(o, set_sign, set, !!set_sign, reset, sign, line, len);
f7c3b4e2 1220 } else if (blank_at_eof)
6957eb9a 1221 /* Blank line at EOF - paint '+' as well */
017ac45e 1222 emit_line_0(o, ws, NULL, 0, reset, sign, line, len);
6957eb9a
JH
1223 else {
1224 /* Emit just the prefix, then the rest. */
017ac45e 1225 emit_line_0(o, set_sign ? set_sign : set, NULL, !!set_sign, reset,
f7c3b4e2 1226 sign, "", 0);
091f8e28
SB
1227 ws_check_emit(line, len, ws_rule,
1228 o->file, set, reset, ws);
6957eb9a
JH
1229 }
1230}
1231
e6e045f8
SB
1232static void emit_diff_symbol_from_struct(struct diff_options *o,
1233 struct emitted_diff_symbol *eds)
36a4cefd 1234{
b9cbfde6 1235 static const char *nneof = " No newline at end of file\n";
f7c3b4e2 1236 const char *context, *reset, *set, *set_sign, *meta, *fraginfo;
0911c475 1237 struct strbuf sb = STRBUF_INIT;
e6e045f8
SB
1238
1239 enum diff_symbol s = eds->s;
1240 const char *line = eds->line;
1241 int len = eds->len;
1242 unsigned flags = eds->flags;
1243
36a4cefd 1244 switch (s) {
b9cbfde6
SB
1245 case DIFF_SYMBOL_NO_LF_EOF:
1246 context = diff_get_color_opt(o, DIFF_CONTEXT);
1247 reset = diff_get_color_opt(o, DIFF_RESET);
1248 putc('\n', o->file);
017ac45e 1249 emit_line_0(o, context, NULL, 0, reset, '\\',
b9cbfde6
SB
1250 nneof, strlen(nneof));
1251 break;
f3597138
SB
1252 case DIFF_SYMBOL_SUBMODULE_HEADER:
1253 case DIFF_SYMBOL_SUBMODULE_ERROR:
1254 case DIFF_SYMBOL_SUBMODULE_PIPETHROUGH:
0911c475 1255 case DIFF_SYMBOL_STATS_SUMMARY_INSERTS_DELETES:
146fdb0d 1256 case DIFF_SYMBOL_SUMMARY:
0911c475 1257 case DIFF_SYMBOL_STATS_LINE:
4eed0ebd 1258 case DIFF_SYMBOL_BINARY_DIFF_BODY:
68abc6f1
SB
1259 case DIFF_SYMBOL_CONTEXT_FRAGINFO:
1260 emit_line(o, "", "", line, len);
1261 break;
f2bb1218 1262 case DIFF_SYMBOL_CONTEXT_INCOMPLETE:
c64b420b
SB
1263 case DIFF_SYMBOL_CONTEXT_MARKER:
1264 context = diff_get_color_opt(o, DIFF_CONTEXT);
1265 reset = diff_get_color_opt(o, DIFF_RESET);
1266 emit_line(o, context, reset, line, len);
1267 break;
36a4cefd
SB
1268 case DIFF_SYMBOL_SEPARATOR:
1269 fprintf(o->file, "%s%c",
1270 diff_line_prefix(o),
1271 o->line_termination);
1272 break;
091f8e28
SB
1273 case DIFF_SYMBOL_CONTEXT:
1274 set = diff_get_color_opt(o, DIFF_CONTEXT);
1275 reset = diff_get_color_opt(o, DIFF_RESET);
f7c3b4e2
JS
1276 set_sign = NULL;
1277 if (o->flags.dual_color_diffed_diffs) {
1278 char c = !len ? 0 : line[0];
1279
1280 if (c == '+')
1281 set = diff_get_color_opt(o, DIFF_FILE_NEW);
1282 else if (c == '@')
1283 set = diff_get_color_opt(o, DIFF_FRAGINFO);
1284 else if (c == '-')
1285 set = diff_get_color_opt(o, DIFF_FILE_OLD);
1286 }
7648b79e
SB
1287 emit_line_ws_markup(o, set_sign, set, reset,
1288 o->output_indicators[OUTPUT_INDICATOR_CONTEXT],
1289 line, len,
091f8e28
SB
1290 flags & (DIFF_SYMBOL_CONTENT_WS_MASK), 0);
1291 break;
1292 case DIFF_SYMBOL_PLUS:
86b452e2
SB
1293 switch (flags & (DIFF_SYMBOL_MOVED_LINE |
1294 DIFF_SYMBOL_MOVED_LINE_ALT |
1295 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING)) {
1296 case DIFF_SYMBOL_MOVED_LINE |
1297 DIFF_SYMBOL_MOVED_LINE_ALT |
1298 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING:
1299 set = diff_get_color_opt(o, DIFF_FILE_NEW_MOVED_ALT_DIM);
1300 break;
1301 case DIFF_SYMBOL_MOVED_LINE |
1302 DIFF_SYMBOL_MOVED_LINE_ALT:
2e2d5ac1 1303 set = diff_get_color_opt(o, DIFF_FILE_NEW_MOVED_ALT);
86b452e2
SB
1304 break;
1305 case DIFF_SYMBOL_MOVED_LINE |
1306 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING:
1307 set = diff_get_color_opt(o, DIFF_FILE_NEW_MOVED_DIM);
1308 break;
1309 case DIFF_SYMBOL_MOVED_LINE:
2e2d5ac1 1310 set = diff_get_color_opt(o, DIFF_FILE_NEW_MOVED);
86b452e2
SB
1311 break;
1312 default:
2e2d5ac1 1313 set = diff_get_color_opt(o, DIFF_FILE_NEW);
86b452e2 1314 }
091f8e28 1315 reset = diff_get_color_opt(o, DIFF_RESET);
f7c3b4e2
JS
1316 if (!o->flags.dual_color_diffed_diffs)
1317 set_sign = NULL;
1318 else {
1319 char c = !len ? 0 : line[0];
1320
1321 set_sign = set;
1322 if (c == '-')
a7be92ac 1323 set = diff_get_color_opt(o, DIFF_FILE_OLD_BOLD);
f7c3b4e2
JS
1324 else if (c == '@')
1325 set = diff_get_color_opt(o, DIFF_FRAGINFO);
a7be92ac
JS
1326 else if (c == '+')
1327 set = diff_get_color_opt(o, DIFF_FILE_NEW_BOLD);
1328 else
1329 set = diff_get_color_opt(o, DIFF_CONTEXT_BOLD);
0b91faa0 1330 flags &= ~DIFF_SYMBOL_CONTENT_WS_MASK;
f7c3b4e2 1331 }
7648b79e
SB
1332 emit_line_ws_markup(o, set_sign, set, reset,
1333 o->output_indicators[OUTPUT_INDICATOR_NEW],
1334 line, len,
091f8e28
SB
1335 flags & DIFF_SYMBOL_CONTENT_WS_MASK,
1336 flags & DIFF_SYMBOL_CONTENT_BLANK_LINE_EOF);
1337 break;
1338 case DIFF_SYMBOL_MINUS:
86b452e2
SB
1339 switch (flags & (DIFF_SYMBOL_MOVED_LINE |
1340 DIFF_SYMBOL_MOVED_LINE_ALT |
1341 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING)) {
1342 case DIFF_SYMBOL_MOVED_LINE |
1343 DIFF_SYMBOL_MOVED_LINE_ALT |
1344 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING:
1345 set = diff_get_color_opt(o, DIFF_FILE_OLD_MOVED_ALT_DIM);
1346 break;
1347 case DIFF_SYMBOL_MOVED_LINE |
1348 DIFF_SYMBOL_MOVED_LINE_ALT:
2e2d5ac1 1349 set = diff_get_color_opt(o, DIFF_FILE_OLD_MOVED_ALT);
86b452e2
SB
1350 break;
1351 case DIFF_SYMBOL_MOVED_LINE |
1352 DIFF_SYMBOL_MOVED_LINE_UNINTERESTING:
1353 set = diff_get_color_opt(o, DIFF_FILE_OLD_MOVED_DIM);
1354 break;
1355 case DIFF_SYMBOL_MOVED_LINE:
2e2d5ac1 1356 set = diff_get_color_opt(o, DIFF_FILE_OLD_MOVED);
86b452e2
SB
1357 break;
1358 default:
2e2d5ac1 1359 set = diff_get_color_opt(o, DIFF_FILE_OLD);
86b452e2 1360 }
091f8e28 1361 reset = diff_get_color_opt(o, DIFF_RESET);
f7c3b4e2
JS
1362 if (!o->flags.dual_color_diffed_diffs)
1363 set_sign = NULL;
1364 else {
1365 char c = !len ? 0 : line[0];
1366
1367 set_sign = set;
1368 if (c == '+')
a7be92ac 1369 set = diff_get_color_opt(o, DIFF_FILE_NEW_DIM);
f7c3b4e2
JS
1370 else if (c == '@')
1371 set = diff_get_color_opt(o, DIFF_FRAGINFO);
a7be92ac
JS
1372 else if (c == '-')
1373 set = diff_get_color_opt(o, DIFF_FILE_OLD_DIM);
1374 else
1375 set = diff_get_color_opt(o, DIFF_CONTEXT_DIM);
f7c3b4e2 1376 }
7648b79e
SB
1377 emit_line_ws_markup(o, set_sign, set, reset,
1378 o->output_indicators[OUTPUT_INDICATOR_OLD],
1379 line, len,
091f8e28
SB
1380 flags & DIFF_SYMBOL_CONTENT_WS_MASK, 0);
1381 break;
ff958679
SB
1382 case DIFF_SYMBOL_WORDS_PORCELAIN:
1383 context = diff_get_color_opt(o, DIFF_CONTEXT);
1384 reset = diff_get_color_opt(o, DIFF_RESET);
1385 emit_line(o, context, reset, line, len);
1386 fputs("~\n", o->file);
1387 break;
1388 case DIFF_SYMBOL_WORDS:
1389 context = diff_get_color_opt(o, DIFF_CONTEXT);
1390 reset = diff_get_color_opt(o, DIFF_RESET);
1391 /*
1392 * Skip the prefix character, if any. With
1393 * diff_suppress_blank_empty, there may be
1394 * none.
1395 */
1396 if (line[0] != '\n') {
1397 line++;
1398 len--;
1399 }
1400 emit_line(o, context, reset, line, len);
1401 break;
3ee8b7bf
SB
1402 case DIFF_SYMBOL_FILEPAIR_PLUS:
1403 meta = diff_get_color_opt(o, DIFF_METAINFO);
1404 reset = diff_get_color_opt(o, DIFF_RESET);
1405 fprintf(o->file, "%s%s+++ %s%s%s\n", diff_line_prefix(o), meta,
1406 line, reset,
1407 strchr(line, ' ') ? "\t" : "");
1408 break;
1409 case DIFF_SYMBOL_FILEPAIR_MINUS:
1410 meta = diff_get_color_opt(o, DIFF_METAINFO);
1411 reset = diff_get_color_opt(o, DIFF_RESET);
1412 fprintf(o->file, "%s%s--- %s%s%s\n", diff_line_prefix(o), meta,
1413 line, reset,
1414 strchr(line, ' ') ? "\t" : "");
1415 break;
4acaaa7a 1416 case DIFF_SYMBOL_BINARY_FILES:
a29b0a13
SB
1417 case DIFF_SYMBOL_HEADER:
1418 fprintf(o->file, "%s", line);
1419 break;
4eed0ebd
SB
1420 case DIFF_SYMBOL_BINARY_DIFF_HEADER:
1421 fprintf(o->file, "%sGIT binary patch\n", diff_line_prefix(o));
1422 break;
1423 case DIFF_SYMBOL_BINARY_DIFF_HEADER_DELTA:
1424 fprintf(o->file, "%sdelta %s\n", diff_line_prefix(o), line);
1425 break;
1426 case DIFF_SYMBOL_BINARY_DIFF_HEADER_LITERAL:
1427 fprintf(o->file, "%sliteral %s\n", diff_line_prefix(o), line);
1428 break;
1429 case DIFF_SYMBOL_BINARY_DIFF_FOOTER:
1430 fputs(diff_line_prefix(o), o->file);
1431 fputc('\n', o->file);
1432 break;
5af6ea95
SB
1433 case DIFF_SYMBOL_REWRITE_DIFF:
1434 fraginfo = diff_get_color(o->use_color, DIFF_FRAGINFO);
1435 reset = diff_get_color_opt(o, DIFF_RESET);
1436 emit_line(o, fraginfo, reset, line, len);
1437 break;
f3597138
SB
1438 case DIFF_SYMBOL_SUBMODULE_ADD:
1439 set = diff_get_color_opt(o, DIFF_FILE_NEW);
1440 reset = diff_get_color_opt(o, DIFF_RESET);
1441 emit_line(o, set, reset, line, len);
1442 break;
1443 case DIFF_SYMBOL_SUBMODULE_DEL:
1444 set = diff_get_color_opt(o, DIFF_FILE_OLD);
1445 reset = diff_get_color_opt(o, DIFF_RESET);
1446 emit_line(o, set, reset, line, len);
1447 break;
1448 case DIFF_SYMBOL_SUBMODULE_UNTRACKED:
1449 fprintf(o->file, "%sSubmodule %s contains untracked content\n",
1450 diff_line_prefix(o), line);
1451 break;
1452 case DIFF_SYMBOL_SUBMODULE_MODIFIED:
1453 fprintf(o->file, "%sSubmodule %s contains modified content\n",
1454 diff_line_prefix(o), line);
1455 break;
0911c475
SB
1456 case DIFF_SYMBOL_STATS_SUMMARY_NO_FILES:
1457 emit_line(o, "", "", " 0 files changed\n",
1458 strlen(" 0 files changed\n"));
1459 break;
1460 case DIFF_SYMBOL_STATS_SUMMARY_ABBREV:
1461 emit_line(o, "", "", " ...\n", strlen(" ...\n"));
1462 break;
bd033291
SB
1463 case DIFF_SYMBOL_WORD_DIFF:
1464 fprintf(o->file, "%.*s", len, line);
1465 break;
30b7e1e7
SB
1466 case DIFF_SYMBOL_STAT_SEP:
1467 fputs(o->stat_sep, o->file);
1468 break;
36a4cefd 1469 default:
033abf97 1470 BUG("unknown diff symbol");
36a4cefd 1471 }
0911c475 1472 strbuf_release(&sb);
36a4cefd
SB
1473}
1474
e6e045f8
SB
1475static void emit_diff_symbol(struct diff_options *o, enum diff_symbol s,
1476 const char *line, int len, unsigned flags)
1477{
1478 struct emitted_diff_symbol e = {line, len, flags, s};
1479
1480 if (o->emitted_symbols)
1481 append_emitted_diff_symbol(o, &e);
1482 else
1483 emit_diff_symbol_from_struct(o, &e);
1484}
1485
f3597138
SB
1486void diff_emit_submodule_del(struct diff_options *o, const char *line)
1487{
1488 emit_diff_symbol(o, DIFF_SYMBOL_SUBMODULE_DEL, line, strlen(line), 0);
1489}
1490
1491void diff_emit_submodule_add(struct diff_options *o, const char *line)
1492{
1493 emit_diff_symbol(o, DIFF_SYMBOL_SUBMODULE_ADD, line, strlen(line), 0);
1494}
1495
1496void diff_emit_submodule_untracked(struct diff_options *o, const char *path)
1497{
1498 emit_diff_symbol(o, DIFF_SYMBOL_SUBMODULE_UNTRACKED,
1499 path, strlen(path), 0);
1500}
1501
1502void diff_emit_submodule_modified(struct diff_options *o, const char *path)
1503{
1504 emit_diff_symbol(o, DIFF_SYMBOL_SUBMODULE_MODIFIED,
1505 path, strlen(path), 0);
1506}
1507
1508void diff_emit_submodule_header(struct diff_options *o, const char *header)
1509{
1510 emit_diff_symbol(o, DIFF_SYMBOL_SUBMODULE_HEADER,
1511 header, strlen(header), 0);
1512}
1513
1514void diff_emit_submodule_error(struct diff_options *o, const char *err)
1515{
1516 emit_diff_symbol(o, DIFF_SYMBOL_SUBMODULE_ERROR, err, strlen(err), 0);
1517}
1518
1519void diff_emit_submodule_pipethrough(struct diff_options *o,
1520 const char *line, int len)
1521{
1522 emit_diff_symbol(o, DIFF_SYMBOL_SUBMODULE_PIPETHROUGH, line, len, 0);
1523}
1524
6957eb9a
JH
1525static int new_blank_line_at_eof(struct emit_callback *ecbdata, const char *line, int len)
1526{
1527 if (!((ecbdata->ws_rule & WS_BLANK_AT_EOF) &&
1528 ecbdata->blank_at_eof_in_preimage &&
1529 ecbdata->blank_at_eof_in_postimage &&
1530 ecbdata->blank_at_eof_in_preimage <= ecbdata->lno_in_preimage &&
1531 ecbdata->blank_at_eof_in_postimage <= ecbdata->lno_in_postimage))
1532 return 0;
018cff70 1533 return ws_blank_line(line, len, ecbdata->ws_rule);
6957eb9a
JH
1534}
1535
b8767f79 1536static void emit_add_line(const char *reset,
0e383e18
JH
1537 struct emit_callback *ecbdata,
1538 const char *line, int len)
1539{
091f8e28
SB
1540 unsigned flags = WSEH_NEW | ecbdata->ws_rule;
1541 if (new_blank_line_at_eof(ecbdata, line, len))
1542 flags |= DIFF_SYMBOL_CONTENT_BLANK_LINE_EOF;
1543
1544 emit_diff_symbol(ecbdata->opt, DIFF_SYMBOL_PLUS, line, len, flags);
b8767f79 1545}
0e383e18 1546
b8767f79
JH
1547static void emit_del_line(const char *reset,
1548 struct emit_callback *ecbdata,
1549 const char *line, int len)
1550{
091f8e28
SB
1551 unsigned flags = WSEH_OLD | ecbdata->ws_rule;
1552 emit_diff_symbol(ecbdata->opt, DIFF_SYMBOL_MINUS, line, len, flags);
0e383e18
JH
1553}
1554
1555static void emit_context_line(const char *reset,
1556 struct emit_callback *ecbdata,
1557 const char *line, int len)
1558{
091f8e28
SB
1559 unsigned flags = WSEH_CONTEXT | ecbdata->ws_rule;
1560 emit_diff_symbol(ecbdata->opt, DIFF_SYMBOL_CONTEXT, line, len, flags);
0e383e18
JH
1561}
1562
89cb73a1
BW
1563static void emit_hunk_header(struct emit_callback *ecbdata,
1564 const char *line, int len)
1565{
8dbf3eb6 1566 const char *context = diff_get_color(ecbdata->color_diff, DIFF_CONTEXT);
89cb73a1
BW
1567 const char *frag = diff_get_color(ecbdata->color_diff, DIFF_FRAGINFO);
1568 const char *func = diff_get_color(ecbdata->color_diff, DIFF_FUNCINFO);
1569 const char *reset = diff_get_color(ecbdata->color_diff, DIFF_RESET);
f7c3b4e2 1570 const char *reverse = ecbdata->color_diff ? GIT_COLOR_REVERSE : "";
89cb73a1
BW
1571 static const char atat[2] = { '@', '@' };
1572 const char *cp, *ep;
2efcc977
BY
1573 struct strbuf msgbuf = STRBUF_INIT;
1574 int org_len = len;
1575 int i = 1;
89cb73a1
BW
1576
1577 /*
1578 * As a hunk header must begin with "@@ -<old>, +<new> @@",
1579 * it always is at least 10 bytes long.
1580 */
1581 if (len < 10 ||
1582 memcmp(line, atat, 2) ||
1583 !(ep = memmem(line + 2, len - 2, atat, 2))) {
c64b420b 1584 emit_diff_symbol(ecbdata->opt,
091f8e28 1585 DIFF_SYMBOL_CONTEXT_MARKER, line, len, 0);
89cb73a1
BW
1586 return;
1587 }
1588 ep += 2; /* skip over @@ */
1589
1590 /* The hunk header in fraginfo color */
f7c3b4e2
JS
1591 if (ecbdata->opt->flags.dual_color_diffed_diffs)
1592 strbuf_addstr(&msgbuf, reverse);
cedc61a9 1593 strbuf_addstr(&msgbuf, frag);
2efcc977 1594 strbuf_add(&msgbuf, line, ep - line);
cedc61a9 1595 strbuf_addstr(&msgbuf, reset);
2efcc977
BY
1596
1597 /*
1598 * trailing "\r\n"
1599 */
1600 for ( ; i < 3; i++)
1601 if (line[len - i] == '\r' || line[len - i] == '\n')
1602 len--;
89cb73a1
BW
1603
1604 /* blank before the func header */
1605 for (cp = ep; ep - line < len; ep++)
1606 if (*ep != ' ' && *ep != '\t')
1607 break;
2efcc977 1608 if (ep != cp) {
8dbf3eb6 1609 strbuf_addstr(&msgbuf, context);
2efcc977 1610 strbuf_add(&msgbuf, cp, ep - cp);
cedc61a9 1611 strbuf_addstr(&msgbuf, reset);
2efcc977
BY
1612 }
1613
1614 if (ep < line + len) {
cedc61a9 1615 strbuf_addstr(&msgbuf, func);
2efcc977 1616 strbuf_add(&msgbuf, ep, line + len - ep);
cedc61a9 1617 strbuf_addstr(&msgbuf, reset);
2efcc977 1618 }
89cb73a1 1619
2efcc977 1620 strbuf_add(&msgbuf, line + len, org_len - len);
dfb7728f 1621 strbuf_complete_line(&msgbuf);
68abc6f1 1622 emit_diff_symbol(ecbdata->opt,
091f8e28 1623 DIFF_SYMBOL_CONTEXT_FRAGINFO, msgbuf.buf, msgbuf.len, 0);
2efcc977 1624 strbuf_release(&msgbuf);
89cb73a1
BW
1625}
1626
479b0ae8
JK
1627static struct diff_tempfile *claim_diff_tempfile(void) {
1628 int i;
1629 for (i = 0; i < ARRAY_SIZE(diff_temp); i++)
1630 if (!diff_temp[i].name)
1631 return diff_temp + i;
033abf97 1632 BUG("diff is failing to clean up its tempfiles");
479b0ae8
JK
1633}
1634
479b0ae8
JK
1635static void remove_tempfile(void)
1636{
1637 int i;
a8344abe 1638 for (i = 0; i < ARRAY_SIZE(diff_temp); i++) {
076aa2cb 1639 if (is_tempfile_active(diff_temp[i].tempfile))
284098f1 1640 delete_tempfile(&diff_temp[i].tempfile);
a8344abe
NR
1641 diff_temp[i].name = NULL;
1642 }
479b0ae8
JK
1643}
1644
5af6ea95 1645static void add_line_count(struct strbuf *out, int count)
6973dcae
JH
1646{
1647 switch (count) {
1648 case 0:
5af6ea95 1649 strbuf_addstr(out, "0,0");
6973dcae
JH
1650 break;
1651 case 1:
5af6ea95 1652 strbuf_addstr(out, "1");
6973dcae
JH
1653 break;
1654 default:
5af6ea95 1655 strbuf_addf(out, "1,%d", count);
6973dcae
JH
1656 break;
1657 }
1658}
1659
7f7ee2ff
JH
1660static void emit_rewrite_lines(struct emit_callback *ecb,
1661 int prefix, const char *data, int size)
6973dcae 1662{
7f7ee2ff 1663 const char *endp = NULL;
7f7ee2ff
JH
1664 const char *reset = diff_get_color(ecb->color_diff, DIFF_RESET);
1665
1666 while (0 < size) {
1667 int len;
1668
1669 endp = memchr(data, '\n', size);
1670 len = endp ? (endp - data + 1) : size;
1671 if (prefix != '+') {
1672 ecb->lno_in_preimage++;
0e383e18 1673 emit_del_line(reset, ecb, data, len);
7f7ee2ff
JH
1674 } else {
1675 ecb->lno_in_postimage++;
1676 emit_add_line(reset, ecb, data, len);
13e36ec5 1677 }
7f7ee2ff
JH
1678 size -= len;
1679 data += len;
1680 }
b9cbfde6 1681 if (!endp)
091f8e28 1682 emit_diff_symbol(ecb->opt, DIFF_SYMBOL_NO_LF_EOF, NULL, 0, 0);
6973dcae
JH
1683}
1684
1685static void emit_rewrite_diff(const char *name_a,
1686 const char *name_b,
1687 struct diff_filespec *one,
13e36ec5 1688 struct diff_filespec *two,
d9bae1a1
JK
1689 struct userdiff_driver *textconv_one,
1690 struct userdiff_driver *textconv_two,
eab9a40b 1691 struct diff_options *o)
6973dcae
JH
1692{
1693 int lc_a, lc_b;
d5625091 1694 static struct strbuf a_name = STRBUF_INIT, b_name = STRBUF_INIT;
a5a818ee 1695 const char *a_prefix, *b_prefix;
840383b2 1696 char *data_one, *data_two;
3aa1f7ca 1697 size_t size_one, size_two;
7f7ee2ff 1698 struct emit_callback ecbdata;
5af6ea95 1699 struct strbuf out = STRBUF_INIT;
a5a818ee 1700
0d1e0e78 1701 if (diff_mnemonic_prefix && o->flags.reverse_diff) {
a5a818ee
JH
1702 a_prefix = o->b_prefix;
1703 b_prefix = o->a_prefix;
1704 } else {
1705 a_prefix = o->a_prefix;
1706 b_prefix = o->b_prefix;
1707 }
1a9eb3b9 1708
8a13becc
JH
1709 name_a += (*name_a == '/');
1710 name_b += (*name_b == '/');
1a9eb3b9 1711
d5625091
JH
1712 strbuf_reset(&a_name);
1713 strbuf_reset(&b_name);
a5a818ee
JH
1714 quote_two_c_style(&a_name, a_prefix, name_a, 0);
1715 quote_two_c_style(&b_name, b_prefix, name_b, 0);
d5625091 1716
840383b2
JK
1717 size_one = fill_textconv(textconv_one, one, &data_one);
1718 size_two = fill_textconv(textconv_two, two, &data_two);
3aa1f7ca 1719
d91ba8fa 1720 memset(&ecbdata, 0, sizeof(ecbdata));
daa0c3d9 1721 ecbdata.color_diff = want_color(o->use_color);
c189c4f2 1722 ecbdata.ws_rule = whitespace_rule(name_b);
a3c158d4 1723 ecbdata.opt = o;
d91ba8fa
JH
1724 if (ecbdata.ws_rule & WS_BLANK_AT_EOF) {
1725 mmfile_t mf1, mf2;
1726 mf1.ptr = (char *)data_one;
1727 mf2.ptr = (char *)data_two;
1728 mf1.size = size_one;
1729 mf2.size = size_two;
1730 check_blank_at_eof(&mf1, &mf2, &ecbdata);
1731 }
1732 ecbdata.lno_in_preimage = 1;
1733 ecbdata.lno_in_postimage = 1;
1734
3aa1f7ca
JK
1735 lc_a = count_lines(data_one, size_one);
1736 lc_b = count_lines(data_two, size_two);
3ee8b7bf
SB
1737
1738 emit_diff_symbol(o, DIFF_SYMBOL_FILEPAIR_MINUS,
1739 a_name.buf, a_name.len, 0);
1740 emit_diff_symbol(o, DIFF_SYMBOL_FILEPAIR_PLUS,
1741 b_name.buf, b_name.len, 0);
1742
5af6ea95 1743 strbuf_addstr(&out, "@@ -");
467ddc14 1744 if (!o->irreversible_delete)
5af6ea95 1745 add_line_count(&out, lc_a);
467ddc14 1746 else
5af6ea95
SB
1747 strbuf_addstr(&out, "?,?");
1748 strbuf_addstr(&out, " +");
1749 add_line_count(&out, lc_b);
1750 strbuf_addstr(&out, " @@\n");
1751 emit_diff_symbol(o, DIFF_SYMBOL_REWRITE_DIFF, out.buf, out.len, 0);
1752 strbuf_release(&out);
1753
467ddc14 1754 if (lc_a && !o->irreversible_delete)
d91ba8fa 1755 emit_rewrite_lines(&ecbdata, '-', data_one, size_one);
6973dcae 1756 if (lc_b)
d91ba8fa 1757 emit_rewrite_lines(&ecbdata, '+', data_two, size_two);
b76c056b 1758 if (textconv_one)
aed6ca52 1759 free((char *)data_one);
b76c056b 1760 if (textconv_two)
aed6ca52 1761 free((char *)data_two);
6973dcae
JH
1762}
1763
f59a59e2
JS
1764struct diff_words_buffer {
1765 mmfile_t text;
071bcaab 1766 unsigned long alloc;
2e5d2003
JS
1767 struct diff_words_orig {
1768 const char *begin, *end;
1769 } *orig;
1770 int orig_nr, orig_alloc;
f59a59e2
JS
1771};
1772
1773static void diff_words_append(char *line, unsigned long len,
1774 struct diff_words_buffer *buffer)
1775{
23c1575f 1776 ALLOC_GROW(buffer->text.ptr, buffer->text.size + len, buffer->alloc);
f59a59e2
JS
1777 line++;
1778 len--;
1779 memcpy(buffer->text.ptr + buffer->text.size, line, len);
1780 buffer->text.size += len;
2b6a5417 1781 buffer->text.ptr[buffer->text.size] = '\0';
f59a59e2
JS
1782}
1783
9cba13ca 1784struct diff_words_style_elem {
882749a0
TR
1785 const char *prefix;
1786 const char *suffix;
1787 const char *color; /* NULL; filled in by the setup code if
1788 * color is enabled */
1789};
1790
9cba13ca 1791struct diff_words_style {
882749a0 1792 enum diff_words_type type;
63a01c3f 1793 struct diff_words_style_elem new_word, old_word, ctx;
882749a0
TR
1794 const char *newline;
1795};
1796
c2e86add 1797static struct diff_words_style diff_words_styles[] = {
882749a0
TR
1798 { DIFF_WORDS_PORCELAIN, {"+", "\n"}, {"-", "\n"}, {" ", "\n"}, "~\n" },
1799 { DIFF_WORDS_PLAIN, {"{+", "+}"}, {"[-", "-]"}, {"", ""}, "\n" },
1800 { DIFF_WORDS_COLOR, {"", ""}, {"", ""}, {"", ""}, "\n" }
1801};
1802
f59a59e2 1803struct diff_words_data {
f59a59e2 1804 struct diff_words_buffer minus, plus;
2e5d2003 1805 const char *current_plus;
4297c0ae
BY
1806 int last_minus;
1807 struct diff_options *opt;
2b6a5417 1808 regex_t *word_regex;
882749a0
TR
1809 enum diff_words_type type;
1810 struct diff_words_style *style;
f59a59e2
JS
1811};
1812
bd033291 1813static int fn_out_diff_words_write_helper(struct diff_options *o,
882749a0
TR
1814 struct diff_words_style_elem *st_el,
1815 const char *newline,
bd033291 1816 size_t count, const char *buf)
882749a0 1817{
4297c0ae 1818 int print = 0;
bd033291 1819 struct strbuf sb = STRBUF_INIT;
4297c0ae 1820
882749a0
TR
1821 while (count) {
1822 char *p = memchr(buf, '\n', count);
4297c0ae 1823 if (print)
bd033291
SB
1824 strbuf_addstr(&sb, diff_line_prefix(o));
1825
882749a0 1826 if (p != buf) {
bd033291
SB
1827 const char *reset = st_el->color && *st_el->color ?
1828 GIT_COLOR_RESET : NULL;
1829 if (st_el->color && *st_el->color)
1830 strbuf_addstr(&sb, st_el->color);
1831 strbuf_addstr(&sb, st_el->prefix);
1832 strbuf_add(&sb, buf, p ? p - buf : count);
1833 strbuf_addstr(&sb, st_el->suffix);
1834 if (reset)
1835 strbuf_addstr(&sb, reset);
882749a0
TR
1836 }
1837 if (!p)
bd033291
SB
1838 goto out;
1839
1840 strbuf_addstr(&sb, newline);
882749a0
TR
1841 count -= p + 1 - buf;
1842 buf = p + 1;
4297c0ae 1843 print = 1;
bd033291
SB
1844 if (count) {
1845 emit_diff_symbol(o, DIFF_SYMBOL_WORD_DIFF,
1846 sb.buf, sb.len, 0);
1847 strbuf_reset(&sb);
1848 }
882749a0 1849 }
bd033291
SB
1850
1851out:
1852 if (sb.len)
1853 emit_diff_symbol(o, DIFF_SYMBOL_WORD_DIFF,
1854 sb.buf, sb.len, 0);
1855 strbuf_release(&sb);
882749a0
TR
1856 return 0;
1857}
1858
4297c0ae
BY
1859/*
1860 * '--color-words' algorithm can be described as:
1861 *
5621760f 1862 * 1. collect the minus/plus lines of a diff hunk, divided into
4297c0ae
BY
1863 * minus-lines and plus-lines;
1864 *
1865 * 2. break both minus-lines and plus-lines into words and
1866 * place them into two mmfile_t with one word for each line;
1867 *
1868 * 3. use xdiff to run diff on the two mmfile_t to get the words level diff;
1869 *
1870 * And for the common parts of the both file, we output the plus side text.
1871 * diff_words->current_plus is used to trace the current position of the plus file
1872 * which printed. diff_words->last_minus is used to trace the last minus word
1873 * printed.
1874 *
1875 * For '--graph' to work with '--color-words', we need to output the graph prefix
1876 * on each line of color words output. Generally, there are two conditions on
1877 * which we should output the prefix.
1878 *
1879 * 1. diff_words->last_minus == 0 &&
1880 * diff_words->current_plus == diff_words->plus.text.ptr
1881 *
1882 * that is: the plus text must start as a new line, and if there is no minus
1883 * word printed, a graph prefix must be printed.
1884 *
1885 * 2. diff_words->current_plus > diff_words->plus.text.ptr &&
1886 * *(diff_words->current_plus - 1) == '\n'
1887 *
1888 * that is: a graph prefix must be printed following a '\n'
1889 */
1890static int color_words_output_graph_prefix(struct diff_words_data *diff_words)
1891{
1892 if ((diff_words->last_minus == 0 &&
1893 diff_words->current_plus == diff_words->plus.text.ptr) ||
1894 (diff_words->current_plus > diff_words->plus.text.ptr &&
1895 *(diff_words->current_plus - 1) == '\n')) {
1896 return 1;
1897 } else {
1898 return 0;
1899 }
1900}
1901
f59a59e2 1902static void fn_out_diff_words_aux(void *priv, char *line, unsigned long len)
f59a59e2 1903{
f59a59e2 1904 struct diff_words_data *diff_words = priv;
882749a0 1905 struct diff_words_style *style = diff_words->style;
2e5d2003
JS
1906 int minus_first, minus_len, plus_first, plus_len;
1907 const char *minus_begin, *minus_end, *plus_begin, *plus_end;
4297c0ae 1908 struct diff_options *opt = diff_words->opt;
30997bb8 1909 const char *line_prefix;
f59a59e2 1910
2e5d2003
JS
1911 if (line[0] != '@' || parse_hunk_header(line, len,
1912 &minus_first, &minus_len, &plus_first, &plus_len))
f59a59e2
JS
1913 return;
1914
4297c0ae 1915 assert(opt);
30997bb8 1916 line_prefix = diff_line_prefix(opt);
4297c0ae 1917
2e5d2003
JS
1918 /* POSIX requires that first be decremented by one if len == 0... */
1919 if (minus_len) {
1920 minus_begin = diff_words->minus.orig[minus_first].begin;
1921 minus_end =
1922 diff_words->minus.orig[minus_first + minus_len - 1].end;
1923 } else
1924 minus_begin = minus_end =
1925 diff_words->minus.orig[minus_first].end;
1926
1927 if (plus_len) {
1928 plus_begin = diff_words->plus.orig[plus_first].begin;
1929 plus_end = diff_words->plus.orig[plus_first + plus_len - 1].end;
1930 } else
1931 plus_begin = plus_end = diff_words->plus.orig[plus_first].end;
1932
4297c0ae
BY
1933 if (color_words_output_graph_prefix(diff_words)) {
1934 fputs(line_prefix, diff_words->opt->file);
1935 }
1936 if (diff_words->current_plus != plus_begin) {
bd033291 1937 fn_out_diff_words_write_helper(diff_words->opt,
882749a0
TR
1938 &style->ctx, style->newline,
1939 plus_begin - diff_words->current_plus,
bd033291 1940 diff_words->current_plus);
4297c0ae
BY
1941 }
1942 if (minus_begin != minus_end) {
bd033291 1943 fn_out_diff_words_write_helper(diff_words->opt,
63a01c3f 1944 &style->old_word, style->newline,
bd033291 1945 minus_end - minus_begin, minus_begin);
4297c0ae
BY
1946 }
1947 if (plus_begin != plus_end) {
bd033291 1948 fn_out_diff_words_write_helper(diff_words->opt,
63a01c3f 1949 &style->new_word, style->newline,
bd033291 1950 plus_end - plus_begin, plus_begin);
4297c0ae 1951 }
2e5d2003
JS
1952
1953 diff_words->current_plus = plus_end;
4297c0ae 1954 diff_words->last_minus = minus_first;
f59a59e2
JS
1955}
1956
2b6a5417
JS
1957/* This function starts looking at *begin, and returns 0 iff a word was found. */
1958static int find_word_boundaries(mmfile_t *buffer, regex_t *word_regex,
1959 int *begin, int *end)
1960{
1961 if (word_regex && *begin < buffer->size) {
1962 regmatch_t match[1];
b7d36ffc
JS
1963 if (!regexec_buf(word_regex, buffer->ptr + *begin,
1964 buffer->size - *begin, 1, match, 0)) {
2b6a5417
JS
1965 char *p = memchr(buffer->ptr + *begin + match[0].rm_so,
1966 '\n', match[0].rm_eo - match[0].rm_so);
1967 *end = p ? p - buffer->ptr : match[0].rm_eo + *begin;
1968 *begin += match[0].rm_so;
1969 return *begin >= *end;
1970 }
1971 return -1;
f59a59e2
JS
1972 }
1973
2b6a5417
JS
1974 /* find the next word */
1975 while (*begin < buffer->size && isspace(buffer->ptr[*begin]))
1976 (*begin)++;
1977 if (*begin >= buffer->size)
1978 return -1;
f59a59e2 1979
2b6a5417
JS
1980 /* find the end of the word */
1981 *end = *begin + 1;
1982 while (*end < buffer->size && !isspace(buffer->ptr[*end]))
1983 (*end)++;
1984
1985 return 0;
f59a59e2
JS
1986}
1987
23c1575f 1988/*
2e5d2003
JS
1989 * This function splits the words in buffer->text, stores the list with
1990 * newline separator into out, and saves the offsets of the original words
1991 * in buffer->orig.
23c1575f 1992 */
2b6a5417
JS
1993static void diff_words_fill(struct diff_words_buffer *buffer, mmfile_t *out,
1994 regex_t *word_regex)
f59a59e2 1995{
2e5d2003 1996 int i, j;
2b6a5417 1997 long alloc = 0;
f59a59e2 1998
2e5d2003 1999 out->size = 0;
2b6a5417 2000 out->ptr = NULL;
f59a59e2 2001
2e5d2003
JS
2002 /* fake an empty "0th" word */
2003 ALLOC_GROW(buffer->orig, 1, buffer->orig_alloc);
2004 buffer->orig[0].begin = buffer->orig[0].end = buffer->text.ptr;
2005 buffer->orig_nr = 1;
2006
2007 for (i = 0; i < buffer->text.size; i++) {
2b6a5417
JS
2008 if (find_word_boundaries(&buffer->text, word_regex, &i, &j))
2009 return;
2e5d2003
JS
2010
2011 /* store original boundaries */
2012 ALLOC_GROW(buffer->orig, buffer->orig_nr + 1,
2013 buffer->orig_alloc);
2014 buffer->orig[buffer->orig_nr].begin = buffer->text.ptr + i;
2015 buffer->orig[buffer->orig_nr].end = buffer->text.ptr + j;
2016 buffer->orig_nr++;
2017
2018 /* store one word */
2b6a5417 2019 ALLOC_GROW(out->ptr, out->size + j - i + 1, alloc);
2e5d2003
JS
2020 memcpy(out->ptr + out->size, buffer->text.ptr + i, j - i);
2021 out->ptr[out->size + j - i] = '\n';
2022 out->size += j - i + 1;
2023
2024 i = j - 1;
f59a59e2
JS
2025 }
2026}
2027
2028/* this executes the word diff on the accumulated buffers */
2029static void diff_words_show(struct diff_words_data *diff_words)
2030{
2031 xpparam_t xpp;
2032 xdemitconf_t xecfg;
f59a59e2 2033 mmfile_t minus, plus;
882749a0 2034 struct diff_words_style *style = diff_words->style;
f59a59e2 2035
4297c0ae 2036 struct diff_options *opt = diff_words->opt;
30997bb8 2037 const char *line_prefix;
4297c0ae
BY
2038
2039 assert(opt);
30997bb8 2040 line_prefix = diff_line_prefix(opt);
4297c0ae 2041
2e5d2003
JS
2042 /* special case: only removal */
2043 if (!diff_words->plus.text.size) {
bd033291
SB
2044 emit_diff_symbol(diff_words->opt, DIFF_SYMBOL_WORD_DIFF,
2045 line_prefix, strlen(line_prefix), 0);
2046 fn_out_diff_words_write_helper(diff_words->opt,
63a01c3f 2047 &style->old_word, style->newline,
4297c0ae 2048 diff_words->minus.text.size,
bd033291 2049 diff_words->minus.text.ptr);
2e5d2003
JS
2050 diff_words->minus.text.size = 0;
2051 return;
2052 }
2053
2054 diff_words->current_plus = diff_words->plus.text.ptr;
4297c0ae 2055 diff_words->last_minus = 0;
f59a59e2 2056
9ccd0a88 2057 memset(&xpp, 0, sizeof(xpp));
30b25010 2058 memset(&xecfg, 0, sizeof(xecfg));
2b6a5417
JS
2059 diff_words_fill(&diff_words->minus, &minus, diff_words->word_regex);
2060 diff_words_fill(&diff_words->plus, &plus, diff_words->word_regex);
582aa00b 2061 xpp.flags = 0;
2b6a5417 2062 /* as only the hunk header will be parsed, we need a 0-context */
2e5d2003 2063 xecfg.ctxlen = 0;
3efb9880
JK
2064 if (xdi_diff_outf(&minus, &plus, fn_out_diff_words_aux, diff_words,
2065 &xpp, &xecfg))
2066 die("unable to generate word diff");
f59a59e2
JS
2067 free(minus.ptr);
2068 free(plus.ptr);
2e5d2003 2069 if (diff_words->current_plus != diff_words->plus.text.ptr +
4297c0ae
BY
2070 diff_words->plus.text.size) {
2071 if (color_words_output_graph_prefix(diff_words))
bd033291
SB
2072 emit_diff_symbol(diff_words->opt, DIFF_SYMBOL_WORD_DIFF,
2073 line_prefix, strlen(line_prefix), 0);
2074 fn_out_diff_words_write_helper(diff_words->opt,
882749a0 2075 &style->ctx, style->newline,
2e5d2003 2076 diff_words->plus.text.ptr + diff_words->plus.text.size
bd033291 2077 - diff_words->current_plus, diff_words->current_plus);
4297c0ae 2078 }
f59a59e2 2079 diff_words->minus.text.size = diff_words->plus.text.size = 0;
f59a59e2
JS
2080}
2081
76fd2828
JH
2082/* In "color-words" mode, show word-diff of words accumulated in the buffer */
2083static void diff_words_flush(struct emit_callback *ecbdata)
2084{
e6e045f8
SB
2085 struct diff_options *wo = ecbdata->diff_words->opt;
2086
76fd2828
JH
2087 if (ecbdata->diff_words->minus.text.size ||
2088 ecbdata->diff_words->plus.text.size)
2089 diff_words_show(ecbdata->diff_words);
e6e045f8
SB
2090
2091 if (wo->emitted_symbols) {
2092 struct diff_options *o = ecbdata->opt;
2093 struct emitted_diff_symbols *wol = wo->emitted_symbols;
2094 int i;
2095
2096 /*
2097 * NEEDSWORK:
2098 * Instead of appending each, concat all words to a line?
2099 */
2100 for (i = 0; i < wol->nr; i++)
2101 append_emitted_diff_symbol(o, &wol->buf[i]);
2102
2103 for (i = 0; i < wol->nr; i++)
2104 free((void *)wol->buf[i].line);
2105
2106 wol->nr = 0;
2107 }
76fd2828
JH
2108}
2109
77d1a520
TR
2110static void diff_filespec_load_driver(struct diff_filespec *one)
2111{
2112 /* Use already-loaded driver */
2113 if (one->driver)
2114 return;
2115
2116 if (S_ISREG(one->mode))
2117 one->driver = userdiff_find_by_path(one->path);
2118
2119 /* Fallback to default settings */
2120 if (!one->driver)
2121 one->driver = userdiff_find_by_name("default");
2122}
2123
2124static const char *userdiff_word_regex(struct diff_filespec *one)
2125{
2126 diff_filespec_load_driver(one);
2127 return one->driver->word_regex;
2128}
2129
2130static void init_diff_words_data(struct emit_callback *ecbdata,
6440d341 2131 struct diff_options *orig_opts,
77d1a520
TR
2132 struct diff_filespec *one,
2133 struct diff_filespec *two)
2134{
2135 int i;
6440d341
TR
2136 struct diff_options *o = xmalloc(sizeof(struct diff_options));
2137 memcpy(o, orig_opts, sizeof(struct diff_options));
77d1a520
TR
2138
2139 ecbdata->diff_words =
2140 xcalloc(1, sizeof(struct diff_words_data));
2141 ecbdata->diff_words->type = o->word_diff;
2142 ecbdata->diff_words->opt = o;
e6e045f8
SB
2143
2144 if (orig_opts->emitted_symbols)
2145 o->emitted_symbols =
2146 xcalloc(1, sizeof(struct emitted_diff_symbols));
2147
77d1a520
TR
2148 if (!o->word_regex)
2149 o->word_regex = userdiff_word_regex(one);
2150 if (!o->word_regex)
2151 o->word_regex = userdiff_word_regex(two);
2152 if (!o->word_regex)
2153 o->word_regex = diff_word_regex_cfg;
2154 if (o->word_regex) {
2155 ecbdata->diff_words->word_regex = (regex_t *)
2156 xmalloc(sizeof(regex_t));
2157 if (regcomp(ecbdata->diff_words->word_regex,
2158 o->word_regex,
2159 REG_EXTENDED | REG_NEWLINE))
1a07e59c
NTND
2160 die("invalid regular expression: %s",
2161 o->word_regex);
77d1a520
TR
2162 }
2163 for (i = 0; i < ARRAY_SIZE(diff_words_styles); i++) {
2164 if (o->word_diff == diff_words_styles[i].type) {
2165 ecbdata->diff_words->style =
2166 &diff_words_styles[i];
2167 break;
2168 }
2169 }
2170 if (want_color(o->use_color)) {
2171 struct diff_words_style *st = ecbdata->diff_words->style;
63a01c3f
BW
2172 st->old_word.color = diff_get_color_opt(o, DIFF_FILE_OLD);
2173 st->new_word.color = diff_get_color_opt(o, DIFF_FILE_NEW);
8dbf3eb6 2174 st->ctx.color = diff_get_color_opt(o, DIFF_CONTEXT);
77d1a520
TR
2175 }
2176}
2177
f59a59e2
JS
2178static void free_diff_words_data(struct emit_callback *ecbdata)
2179{
2180 if (ecbdata->diff_words) {
76fd2828 2181 diff_words_flush(ecbdata);
e6e045f8 2182 free (ecbdata->diff_words->opt->emitted_symbols);
6440d341 2183 free (ecbdata->diff_words->opt);
8e0f7003 2184 free (ecbdata->diff_words->minus.text.ptr);
2e5d2003 2185 free (ecbdata->diff_words->minus.orig);
8e0f7003 2186 free (ecbdata->diff_words->plus.text.ptr);
2e5d2003 2187 free (ecbdata->diff_words->plus.orig);
ef5644ea
BC
2188 if (ecbdata->diff_words->word_regex) {
2189 regfree(ecbdata->diff_words->word_regex);
2190 free(ecbdata->diff_words->word_regex);
2191 }
6a83d902 2192 FREE_AND_NULL(ecbdata->diff_words);
f59a59e2
JS
2193 }
2194}
2195
ce436973 2196const char *diff_get_color(int diff_use_color, enum color_diff ix)
cd112cef 2197{
daa0c3d9 2198 if (want_color(diff_use_color))
50f575fc
LT
2199 return diff_colors[ix];
2200 return "";
cd112cef
JS
2201}
2202
f1922234
JK
2203const char *diff_line_prefix(struct diff_options *opt)
2204{
2205 struct strbuf *msgbuf;
2206 if (!opt->output_prefix)
2207 return "";
2208
2209 msgbuf = opt->output_prefix(opt, opt->output_prefix_data);
2210 return msgbuf->buf;
2211}
2212
23707811
JH
2213static unsigned long sane_truncate_line(struct emit_callback *ecb, char *line, unsigned long len)
2214{
2215 const char *cp;
2216 unsigned long allot;
2217 size_t l = len;
2218
23707811
JH
2219 cp = line;
2220 allot = l;
2221 while (0 < l) {
2222 (void) utf8_width(&cp, &l);
2223 if (!cp)
2224 break; /* truncated in the middle? */
2225 }
2226 return allot - l;
2227}
2228
d68fe26f 2229static void find_lno(const char *line, struct emit_callback *ecbdata)
690ed843 2230{
d68fe26f
JH
2231 const char *p;
2232 ecbdata->lno_in_preimage = 0;
2233 ecbdata->lno_in_postimage = 0;
2234 p = strchr(line, '-');
690ed843 2235 if (!p)
d68fe26f
JH
2236 return; /* cannot happen */
2237 ecbdata->lno_in_preimage = strtol(p + 1, NULL, 10);
2238 p = strchr(p, '+');
2239 if (!p)
2240 return; /* cannot happen */
2241 ecbdata->lno_in_postimage = strtol(p + 1, NULL, 10);
690ed843
JH
2242}
2243
cd112cef 2244static void fn_out_consume(void *priv, char *line, unsigned long len)
6973dcae 2245{
6973dcae 2246 struct emit_callback *ecbdata = priv;
ce436973 2247 const char *reset = diff_get_color(ecbdata->color_diff, DIFF_RESET);
7be57610 2248 struct diff_options *o = ecbdata->opt;
6973dcae 2249
ba16233c
SB
2250 o->found_changes = 1;
2251
3e97c7c6 2252 if (ecbdata->header) {
a29b0a13
SB
2253 emit_diff_symbol(o, DIFF_SYMBOL_HEADER,
2254 ecbdata->header->buf, ecbdata->header->len, 0);
3e97c7c6
GB
2255 strbuf_reset(ecbdata->header);
2256 ecbdata->header = NULL;
2257 }
34a5e1a2 2258
6973dcae 2259 if (ecbdata->label_path[0]) {
3ee8b7bf
SB
2260 emit_diff_symbol(o, DIFF_SYMBOL_FILEPAIR_MINUS,
2261 ecbdata->label_path[0],
2262 strlen(ecbdata->label_path[0]), 0);
2263 emit_diff_symbol(o, DIFF_SYMBOL_FILEPAIR_PLUS,
2264 ecbdata->label_path[1],
2265 strlen(ecbdata->label_path[1]), 0);
6973dcae
JH
2266 ecbdata->label_path[0] = ecbdata->label_path[1] = NULL;
2267 }
cd112cef 2268
a624eaa7
JM
2269 if (diff_suppress_blank_empty
2270 && len == 2 && line[0] == ' ' && line[1] == '\n') {
2271 line[0] = '\n';
2272 len = 1;
2273 }
2274
b8d9c1a6 2275 if (line[0] == '@') {
76fd2828
JH
2276 if (ecbdata->diff_words)
2277 diff_words_flush(ecbdata);
23707811 2278 len = sane_truncate_line(ecbdata, line, len);
d68fe26f 2279 find_lno(line, ecbdata);
89cb73a1 2280 emit_hunk_header(ecbdata, line, len);
448c3ef1 2281 return;
cd112cef 2282 }
448c3ef1 2283
448c3ef1 2284 if (ecbdata->diff_words) {
ff958679
SB
2285 enum diff_symbol s =
2286 ecbdata->diff_words->type == DIFF_WORDS_PORCELAIN ?
2287 DIFF_SYMBOL_WORDS_PORCELAIN : DIFF_SYMBOL_WORDS;
448c3ef1
JH
2288 if (line[0] == '-') {
2289 diff_words_append(line, len,
2290 &ecbdata->diff_words->minus);
2291 return;
2292 } else if (line[0] == '+') {
2293 diff_words_append(line, len,
2294 &ecbdata->diff_words->plus);
2295 return;
59556548 2296 } else if (starts_with(line, "\\ ")) {
c7c2bc0a
TR
2297 /*
2298 * Eat the "no newline at eof" marker as if we
2299 * saw a "+" or "-" line with nothing on it,
2300 * and return without diff_words_flush() to
2301 * defer processing. If this is the end of
2302 * preimage, more "+" lines may come after it.
2303 */
2304 return;
448c3ef1 2305 }
76fd2828 2306 diff_words_flush(ecbdata);
ff958679 2307 emit_diff_symbol(o, s, line, len, 0);
448c3ef1
JH
2308 return;
2309 }
448c3ef1 2310
0e383e18
JH
2311 switch (line[0]) {
2312 case '+':
d68fe26f 2313 ecbdata->lno_in_postimage++;
018cff70 2314 emit_add_line(reset, ecbdata, line + 1, len - 1);
0e383e18
JH
2315 break;
2316 case '-':
2317 ecbdata->lno_in_preimage++;
2318 emit_del_line(reset, ecbdata, line + 1, len - 1);
2319 break;
2320 case ' ':
2321 ecbdata->lno_in_postimage++;
2322 ecbdata->lno_in_preimage++;
2323 emit_context_line(reset, ecbdata, line + 1, len - 1);
2324 break;
2325 default:
2326 /* incomplete line at the end */
2327 ecbdata->lno_in_preimage++;
f2bb1218
SB
2328 emit_diff_symbol(o, DIFF_SYMBOL_CONTEXT_INCOMPLETE,
2329 line, len, 0);
0e383e18 2330 break;
448c3ef1 2331 }
6973dcae
JH
2332}
2333
c905cbc4 2334static void pprint_rename(struct strbuf *name, const char *a, const char *b)
6973dcae 2335{
63a01c3f
BW
2336 const char *old_name = a;
2337 const char *new_name = b;
6973dcae 2338 int pfx_length, sfx_length;
dd281f09 2339 int pfx_adjust_for_slash;
6973dcae
JH
2340 int len_a = strlen(a);
2341 int len_b = strlen(b);
663af342 2342 int a_midlen, b_midlen;
e5bfbf9b
AJ
2343 int qlen_a = quote_c_style(a, NULL, NULL, 0);
2344 int qlen_b = quote_c_style(b, NULL, NULL, 0);
2345
2346 if (qlen_a || qlen_b) {
c905cbc4
NTND
2347 quote_c_style(a, name, NULL, 0);
2348 strbuf_addstr(name, " => ");
2349 quote_c_style(b, name, NULL, 0);
2350 return;
e5bfbf9b 2351 }
6973dcae
JH
2352
2353 /* Find common prefix */
2354 pfx_length = 0;
63a01c3f
BW
2355 while (*old_name && *new_name && *old_name == *new_name) {
2356 if (*old_name == '/')
2357 pfx_length = old_name - a + 1;
2358 old_name++;
2359 new_name++;
6973dcae
JH
2360 }
2361
2362 /* Find common suffix */
63a01c3f
BW
2363 old_name = a + len_a;
2364 new_name = b + len_b;
6973dcae 2365 sfx_length = 0;
d020e27f 2366 /*
dd281f09
TR
2367 * If there is a common prefix, it must end in a slash. In
2368 * that case we let this loop run 1 into the prefix to see the
2369 * same slash.
2370 *
2371 * If there is no common prefix, we cannot do this as it would
2372 * underrun the input strings.
d020e27f 2373 */
dd281f09 2374 pfx_adjust_for_slash = (pfx_length ? 1 : 0);
63a01c3f
BW
2375 while (a + pfx_length - pfx_adjust_for_slash <= old_name &&
2376 b + pfx_length - pfx_adjust_for_slash <= new_name &&
2377 *old_name == *new_name) {
2378 if (*old_name == '/')
2379 sfx_length = len_a - (old_name - a);
2380 old_name--;
2381 new_name--;
6973dcae
JH
2382 }
2383
2384 /*
2385 * pfx{mid-a => mid-b}sfx
2386 * {pfx-a => pfx-b}sfx
2387 * pfx{sfx-a => sfx-b}
2388 * name-a => name-b
2389 */
663af342
PH
2390 a_midlen = len_a - pfx_length - sfx_length;
2391 b_midlen = len_b - pfx_length - sfx_length;
2392 if (a_midlen < 0)
2393 a_midlen = 0;
2394 if (b_midlen < 0)
2395 b_midlen = 0;
2396
c905cbc4 2397 strbuf_grow(name, pfx_length + a_midlen + b_midlen + sfx_length + 7);
6973dcae 2398 if (pfx_length + sfx_length) {
c905cbc4
NTND
2399 strbuf_add(name, a, pfx_length);
2400 strbuf_addch(name, '{');
6973dcae 2401 }
c905cbc4
NTND
2402 strbuf_add(name, a + pfx_length, a_midlen);
2403 strbuf_addstr(name, " => ");
2404 strbuf_add(name, b + pfx_length, b_midlen);
663af342 2405 if (pfx_length + sfx_length) {
c905cbc4
NTND
2406 strbuf_addch(name, '}');
2407 strbuf_add(name, a + len_a - sfx_length, sfx_length);
6973dcae 2408 }
6973dcae
JH
2409}
2410
2411struct diffstat_t {
6973dcae
JH
2412 int nr;
2413 int alloc;
2414 struct diffstat_file {
f604652e 2415 char *from_name;
6973dcae 2416 char *name;
f604652e 2417 char *print_name;
ddf88fa6 2418 const char *comments;
6973dcae
JH
2419 unsigned is_unmerged:1;
2420 unsigned is_binary:1;
2421 unsigned is_renamed:1;
74faaa16 2422 unsigned is_interesting:1;
0974c117 2423 uintmax_t added, deleted;
6973dcae
JH
2424 } **files;
2425};
2426
2427static struct diffstat_file *diffstat_add(struct diffstat_t *diffstat,
2428 const char *name_a,
2429 const char *name_b)
2430{
2431 struct diffstat_file *x;
1a4927c5 2432 x = xcalloc(1, sizeof(*x));
4c960a43 2433 ALLOC_GROW(diffstat->files, diffstat->nr + 1, diffstat->alloc);
6973dcae
JH
2434 diffstat->files[diffstat->nr++] = x;
2435 if (name_b) {
f604652e
JH
2436 x->from_name = xstrdup(name_a);
2437 x->name = xstrdup(name_b);
6973dcae
JH
2438 x->is_renamed = 1;
2439 }
f604652e
JH
2440 else {
2441 x->from_name = NULL;
9befac47 2442 x->name = xstrdup(name_a);
f604652e 2443 }
6973dcae
JH
2444 return x;
2445}
2446
2447static void diffstat_consume(void *priv, char *line, unsigned long len)
2448{
2449 struct diffstat_t *diffstat = priv;
2450 struct diffstat_file *x = diffstat->files[diffstat->nr - 1];
2451
2452 if (line[0] == '+')
2453 x->added++;
2454 else if (line[0] == '-')
2455 x->deleted++;
2456}
2457
698ce6f8 2458const char mime_boundary_leader[] = "------------";
6973dcae 2459
a2540023
JH
2460static int scale_linear(int it, int width, int max_change)
2461{
2eeeef24
JH
2462 if (!it)
2463 return 0;
a2540023 2464 /*
2eeeef24
JH
2465 * make sure that at least one '-' or '+' is printed if
2466 * there is any change to this path. The easiest way is to
2467 * scale linearly as if the alloted width is one column shorter
2468 * than it is, and then add 1 to the result.
a2540023 2469 */
2eeeef24 2470 return 1 + (it * (width - 1) / max_change);
a2540023
JH
2471}
2472
0911c475
SB
2473static void show_graph(struct strbuf *out, char ch, int cnt,
2474 const char *set, const char *reset)
a2540023
JH
2475{
2476 if (cnt <= 0)
2477 return;
0911c475
SB
2478 strbuf_addstr(out, set);
2479 strbuf_addchars(out, ch, cnt);
2480 strbuf_addstr(out, reset);
a2540023
JH
2481}
2482
f604652e
JH
2483static void fill_print_name(struct diffstat_file *file)
2484{
c905cbc4 2485 struct strbuf pname = STRBUF_INIT;
f604652e
JH
2486
2487 if (file->print_name)
2488 return;
2489
c905cbc4
NTND
2490 if (file->is_renamed)
2491 pprint_rename(&pname, file->from_name, file->name);
2492 else
2493 quote_c_style(file->name, &pname, NULL, 0);
2494
ddf88fa6
NTND
2495 if (file->comments)
2496 strbuf_addf(&pname, " (%s)", file->comments);
2497
c905cbc4 2498 file->print_name = strbuf_detach(&pname, NULL);
f604652e
JH
2499}
2500
0911c475
SB
2501static void print_stat_summary_inserts_deletes(struct diff_options *options,
2502 int files, int insertions, int deletions)
7f814632
NTND
2503{
2504 struct strbuf sb = STRBUF_INIT;
7f814632
NTND
2505
2506 if (!files) {
2507 assert(insertions == 0 && deletions == 0);
0911c475
SB
2508 emit_diff_symbol(options, DIFF_SYMBOL_STATS_SUMMARY_NO_FILES,
2509 NULL, 0, 0);
2510 return;
7f814632
NTND
2511 }
2512
2513 strbuf_addf(&sb,
218adaaa 2514 (files == 1) ? " %d file changed" : " %d files changed",
7f814632
NTND
2515 files);
2516
2517 /*
2518 * For binary diff, the caller may want to print "x files
2519 * changed" with insertions == 0 && deletions == 0.
2520 *
2521 * Not omitting "0 insertions(+), 0 deletions(-)" in this case
2522 * is probably less confusing (i.e skip over "2 files changed
2523 * but nothing about added/removed lines? Is this a bug in Git?").
2524 */
2525 if (insertions || deletions == 0) {
7f814632 2526 strbuf_addf(&sb,
218adaaa 2527 (insertions == 1) ? ", %d insertion(+)" : ", %d insertions(+)",
7f814632
NTND
2528 insertions);
2529 }
2530
2531 if (deletions || insertions == 0) {
7f814632 2532 strbuf_addf(&sb,
218adaaa 2533 (deletions == 1) ? ", %d deletion(-)" : ", %d deletions(-)",
7f814632
NTND
2534 deletions);
2535 }
2536 strbuf_addch(&sb, '\n');
0911c475
SB
2537 emit_diff_symbol(options, DIFF_SYMBOL_STATS_SUMMARY_INSERTS_DELETES,
2538 sb.buf, sb.len, 0);
7f814632 2539 strbuf_release(&sb);
0911c475
SB
2540}
2541
2542void print_stat_summary(FILE *fp, int files,
2543 int insertions, int deletions)
2544{
2545 struct diff_options o;
2546 memset(&o, 0, sizeof(o));
2547 o.file = fp;
2548
2549 print_stat_summary_inserts_deletes(&o, files, insertions, deletions);
7f814632
NTND
2550}
2551
4b25d091 2552static void show_stats(struct diffstat_t *data, struct diff_options *options)
6973dcae 2553{
eb3a9dd3 2554 int i, len, add, del, adds = 0, dels = 0;
0974c117 2555 uintmax_t max_change = 0, max_len = 0;
dc801e71
ZJS
2556 int total_files = data->nr, count;
2557 int width, name_width, graph_width, number_width = 0, bin_width = 0;
c0aa335c 2558 const char *reset, *add_c, *del_c;
e5f85df8 2559 int extra_shown = 0;
0911c475
SB
2560 const char *line_prefix = diff_line_prefix(options);
2561 struct strbuf out = STRBUF_INIT;
6973dcae
JH
2562
2563 if (data->nr == 0)
2564 return;
2565
808e1db2 2566 count = options->stat_count ? options->stat_count : data->nr;
a2540023 2567
8f67f8ae 2568 reset = diff_get_color_opt(options, DIFF_RESET);
8f67f8ae
PH
2569 add_c = diff_get_color_opt(options, DIFF_FILE_NEW);
2570 del_c = diff_get_color_opt(options, DIFF_FILE_OLD);
785f7432 2571
1b058bc3
ZJS
2572 /*
2573 * Find the longest filename and max number of changes
2574 */
808e1db2 2575 for (i = 0; (i < count) && (i < data->nr); i++) {
6973dcae 2576 struct diffstat_file *file = data->files[i];
0974c117 2577 uintmax_t change = file->added + file->deleted;
af0ed819
JH
2578
2579 if (!file->is_interesting && (change == 0)) {
808e1db2 2580 count++; /* not shown == room for one more */
358e460e
MG
2581 continue;
2582 }
f604652e
JH
2583 fill_print_name(file);
2584 len = strlen(file->print_name);
6973dcae
JH
2585 if (max_len < len)
2586 max_len = len;
2587
dc801e71
ZJS
2588 if (file->is_unmerged) {
2589 /* "Unmerged" is 8 characters */
2590 bin_width = bin_width < 8 ? 8 : bin_width;
6973dcae 2591 continue;
dc801e71
ZJS
2592 }
2593 if (file->is_binary) {
2594 /* "Bin XXX -> YYY bytes" */
2595 int w = 14 + decimal_width(file->added)
2596 + decimal_width(file->deleted);
2597 bin_width = bin_width < w ? w : bin_width;
2598 /* Display change counts aligned with "Bin" */
2599 number_width = 3;
2600 continue;
2601 }
2602
a2540023
JH
2603 if (max_change < change)
2604 max_change = change;
6973dcae 2605 }
a20d3c0d 2606 count = i; /* where we can stop scanning in data->files[] */
6973dcae 2607
1b058bc3
ZJS
2608 /*
2609 * We have width = stat_width or term_columns() columns total.
2610 * We want a maximum of min(max_len, stat_name_width) for the name part.
969fe57b 2611 * We want a maximum of min(max_change, stat_graph_width) for the +- part.
1b058bc3
ZJS
2612 * We also need 1 for " " and 4 + decimal_width(max_change)
2613 * for " | NNNN " and one the empty column at the end, altogether
2614 * 6 + decimal_width(max_change).
2615 *
2616 * If there's not enough space, we will use the smaller of
2617 * stat_name_width (if set) and 5/8*width for the filename,
969fe57b
ZJS
2618 * and the rest for constant elements + graph part, but no more
2619 * than stat_graph_width for the graph part.
1b058bc3
ZJS
2620 * (5/8 gives 50 for filename and 30 for the constant parts + graph
2621 * for the standard terminal size).
a2540023 2622 *
1b058bc3
ZJS
2623 * In other words: stat_width limits the maximum width, and
2624 * stat_name_width fixes the maximum width of the filename,
2625 * and is also used to divide available columns if there
2626 * aren't enough.
dc801e71
ZJS
2627 *
2628 * Binary files are displayed with "Bin XXX -> YYY bytes"
2629 * instead of the change count and graph. This part is treated
2630 * similarly to the graph part, except that it is not
41ccfdd9 2631 * "scaled". If total width is too small to accommodate the
dc801e71
ZJS
2632 * guaranteed minimum width of the filename part and the
2633 * separators and this message, this message will "overflow"
2634 * making the line longer than the maximum width.
a2540023 2635 */
1b058bc3
ZJS
2636
2637 if (options->stat_width == -1)
cd48dadb 2638 width = term_columns() - strlen(line_prefix);
a2540023 2639 else
1b058bc3 2640 width = options->stat_width ? options->stat_width : 80;
dc801e71
ZJS
2641 number_width = decimal_width(max_change) > number_width ?
2642 decimal_width(max_change) : number_width;
a2540023 2643
df44483a
ZJS
2644 if (options->stat_graph_width == -1)
2645 options->stat_graph_width = diff_stat_graph_width;
a2540023 2646
1b058bc3
ZJS
2647 /*
2648 * Guarantee 3/8*16==6 for the graph part
2649 * and 5/8*16==10 for the filename part
2650 */
2651 if (width < 16 + 6 + number_width)
2652 width = 16 + 6 + number_width;
2653
2654 /*
2655 * First assign sizes that are wanted, ignoring available width.
dc801e71
ZJS
2656 * strlen("Bin XXX -> YYY bytes") == bin_width, and the part
2657 * starting from "XXX" should fit in graph_width.
1b058bc3 2658 */
dc801e71
ZJS
2659 graph_width = max_change + 4 > bin_width ? max_change : bin_width - 4;
2660 if (options->stat_graph_width &&
2661 options->stat_graph_width < graph_width)
2662 graph_width = options->stat_graph_width;
2663
1b058bc3
ZJS
2664 name_width = (options->stat_name_width > 0 &&
2665 options->stat_name_width < max_len) ?
2666 options->stat_name_width : max_len;
2667
2668 /*
2669 * Adjust adjustable widths not to exceed maximum width
2670 */
2671 if (name_width + number_width + 6 + graph_width > width) {
678c5741 2672 if (graph_width > width * 3/8 - number_width - 6) {
1b058bc3 2673 graph_width = width * 3/8 - number_width - 6;
678c5741
LP
2674 if (graph_width < 6)
2675 graph_width = 6;
2676 }
2677
969fe57b
ZJS
2678 if (options->stat_graph_width &&
2679 graph_width > options->stat_graph_width)
2680 graph_width = options->stat_graph_width;
1b058bc3
ZJS
2681 if (name_width > width - number_width - 6 - graph_width)
2682 name_width = width - number_width - 6 - graph_width;
2683 else
2684 graph_width = width - number_width - 6 - name_width;
2685 }
2686
2687 /*
2688 * From here name_width is the width of the name area,
2689 * and graph_width is the width of the graph area.
2690 * max_change is used to scale graph properly.
2691 */
808e1db2 2692 for (i = 0; i < count; i++) {
d2543b8e 2693 const char *prefix = "";
af0ed819
JH
2694 struct diffstat_file *file = data->files[i];
2695 char *name = file->print_name;
2696 uintmax_t added = file->added;
2697 uintmax_t deleted = file->deleted;
a2540023 2698 int name_len;
6973dcae 2699
a20d3c0d 2700 if (!file->is_interesting && (added + deleted == 0))
358e460e 2701 continue;
a20d3c0d 2702
6973dcae
JH
2703 /*
2704 * "scale" the filename
2705 */
a2540023
JH
2706 len = name_width;
2707 name_len = strlen(name);
2708 if (name_width < name_len) {
6973dcae
JH
2709 char *slash;
2710 prefix = "...";
a2540023
JH
2711 len -= 3;
2712 name += name_len - len;
6973dcae
JH
2713 slash = strchr(name, '/');
2714 if (slash)
2715 name = slash;
2716 }
6973dcae 2717
af0ed819 2718 if (file->is_binary) {
0911c475
SB
2719 strbuf_addf(&out, " %s%-*s |", prefix, len, name);
2720 strbuf_addf(&out, " %*s", number_width, "Bin");
e18872b2 2721 if (!added && !deleted) {
0911c475
SB
2722 strbuf_addch(&out, '\n');
2723 emit_diff_symbol(options, DIFF_SYMBOL_STATS_LINE,
2724 out.buf, out.len, 0);
2725 strbuf_reset(&out);
e18872b2
ZJS
2726 continue;
2727 }
0911c475 2728 strbuf_addf(&out, " %s%"PRIuMAX"%s",
0974c117 2729 del_c, deleted, reset);
0911c475
SB
2730 strbuf_addstr(&out, " -> ");
2731 strbuf_addf(&out, "%s%"PRIuMAX"%s",
0974c117 2732 add_c, added, reset);
0911c475
SB
2733 strbuf_addstr(&out, " bytes\n");
2734 emit_diff_symbol(options, DIFF_SYMBOL_STATS_LINE,
2735 out.buf, out.len, 0);
2736 strbuf_reset(&out);
f604652e 2737 continue;
6973dcae 2738 }
af0ed819 2739 else if (file->is_unmerged) {
0911c475
SB
2740 strbuf_addf(&out, " %s%-*s |", prefix, len, name);
2741 strbuf_addstr(&out, " Unmerged\n");
2742 emit_diff_symbol(options, DIFF_SYMBOL_STATS_LINE,
2743 out.buf, out.len, 0);
2744 strbuf_reset(&out);
f604652e 2745 continue;
6973dcae 2746 }
6973dcae 2747
a2540023
JH
2748 /*
2749 * scale the add/delete
2750 */
6973dcae
JH
2751 add = added;
2752 del = deleted;
6973dcae 2753
1b058bc3 2754 if (graph_width <= max_change) {
d3c9cf32 2755 int total = scale_linear(add + del, graph_width, max_change);
2eeeef24
JH
2756 if (total < 2 && add && del)
2757 /* width >= 2 due to the sanity check */
2758 total = 2;
2759 if (add < del) {
1b058bc3 2760 add = scale_linear(add, graph_width, max_change);
2eeeef24
JH
2761 del = total - add;
2762 } else {
1b058bc3 2763 del = scale_linear(del, graph_width, max_change);
2eeeef24
JH
2764 add = total - del;
2765 }
6973dcae 2766 }
0911c475
SB
2767 strbuf_addf(&out, " %s%-*s |", prefix, len, name);
2768 strbuf_addf(&out, " %*"PRIuMAX"%s",
dc801e71
ZJS
2769 number_width, added + deleted,
2770 added + deleted ? " " : "");
0911c475
SB
2771 show_graph(&out, '+', add, add_c, reset);
2772 show_graph(&out, '-', del, del_c, reset);
2773 strbuf_addch(&out, '\n');
2774 emit_diff_symbol(options, DIFF_SYMBOL_STATS_LINE,
2775 out.buf, out.len, 0);
2776 strbuf_reset(&out);
c0c77734 2777 }
a20d3c0d
JH
2778
2779 for (i = 0; i < data->nr; i++) {
af0ed819
JH
2780 struct diffstat_file *file = data->files[i];
2781 uintmax_t added = file->added;
2782 uintmax_t deleted = file->deleted;
82dfc2c4
JH
2783
2784 if (file->is_unmerged ||
2785 (!file->is_interesting && (added + deleted == 0))) {
808e1db2
MG
2786 total_files--;
2787 continue;
2788 }
a20d3c0d 2789
82dfc2c4 2790 if (!file->is_binary) {
a20d3c0d
JH
2791 adds += added;
2792 dels += deleted;
2793 }
2794 if (i < count)
2795 continue;
e5f85df8 2796 if (!extra_shown)
0911c475
SB
2797 emit_diff_symbol(options,
2798 DIFF_SYMBOL_STATS_SUMMARY_ABBREV,
2799 NULL, 0, 0);
e5f85df8 2800 extra_shown = 1;
808e1db2 2801 }
0911c475
SB
2802
2803 print_stat_summary_inserts_deletes(options, total_files, adds, dels);
5a612017 2804 strbuf_release(&out);
6973dcae
JH
2805}
2806
2775d92c 2807static void show_shortstats(struct diffstat_t *data, struct diff_options *options)
ebd124c6
NP
2808{
2809 int i, adds = 0, dels = 0, total_files = data->nr;
2810
2811 if (data->nr == 0)
2812 return;
2813
2814 for (i = 0; i < data->nr; i++) {
e18872b2 2815 int added = data->files[i]->added;
0911c475 2816 int deleted = data->files[i]->deleted;
e18872b2 2817
20c8cde4
JH
2818 if (data->files[i]->is_unmerged ||
2819 (!data->files[i]->is_interesting && (added + deleted == 0))) {
e18872b2 2820 total_files--;
de9658b5 2821 } else if (!data->files[i]->is_binary) { /* don't count bytes */
e18872b2
ZJS
2822 adds += added;
2823 dels += deleted;
ebd124c6 2824 }
ebd124c6 2825 }
0911c475 2826 print_stat_summary_inserts_deletes(options, total_files, adds, dels);
ebd124c6
NP
2827}
2828
4b25d091 2829static void show_numstat(struct diffstat_t *data, struct diff_options *options)
74e2abe5
JH
2830{
2831 int i;
2832
f604652e
JH
2833 if (data->nr == 0)
2834 return;
2835
74e2abe5
JH
2836 for (i = 0; i < data->nr; i++) {
2837 struct diffstat_file *file = data->files[i];
2838
30997bb8 2839 fprintf(options->file, "%s", diff_line_prefix(options));
7be57610 2840
bfddbc5e 2841 if (file->is_binary)
c0c77734 2842 fprintf(options->file, "-\t-\t");
bfddbc5e 2843 else
c0c77734 2844 fprintf(options->file,
0974c117
JK
2845 "%"PRIuMAX"\t%"PRIuMAX"\t",
2846 file->added, file->deleted);
f604652e
JH
2847 if (options->line_termination) {
2848 fill_print_name(file);
2849 if (!file->is_renamed)
c0c77734 2850 write_name_quoted(file->name, options->file,
f604652e
JH
2851 options->line_termination);
2852 else {
c0c77734
DB
2853 fputs(file->print_name, options->file);
2854 putc(options->line_termination, options->file);
f604652e 2855 }
663af342 2856 } else {
f604652e 2857 if (file->is_renamed) {
c0c77734
DB
2858 putc('\0', options->file);
2859 write_name_quoted(file->from_name, options->file, '\0');
f604652e 2860 }
c0c77734 2861 write_name_quoted(file->name, options->file, '\0');
663af342 2862 }
74e2abe5
JH
2863 }
2864}
2865
c04a7155
JH
2866struct dirstat_file {
2867 const char *name;
2868 unsigned long changed;
7df7c019
LT
2869};
2870
c04a7155
JH
2871struct dirstat_dir {
2872 struct dirstat_file *files;
712d2c7d 2873 int alloc, nr, permille, cumulative;
c04a7155
JH
2874};
2875
7be57610
BY
2876static long gather_dirstat(struct diff_options *opt, struct dirstat_dir *dir,
2877 unsigned long changed, const char *base, int baselen)
7df7c019 2878{
585c0e2e 2879 unsigned long sum_changes = 0;
7df7c019 2880 unsigned int sources = 0;
30997bb8 2881 const char *line_prefix = diff_line_prefix(opt);
7df7c019
LT
2882
2883 while (dir->nr) {
c04a7155 2884 struct dirstat_file *f = dir->files;
7df7c019 2885 int namelen = strlen(f->name);
585c0e2e 2886 unsigned long changes;
7df7c019
LT
2887 char *slash;
2888
2889 if (namelen < baselen)
2890 break;
2891 if (memcmp(f->name, base, baselen))
2892 break;
2893 slash = strchr(f->name + baselen, '/');
2894 if (slash) {
2895 int newbaselen = slash + 1 - f->name;
585c0e2e 2896 changes = gather_dirstat(opt, dir, changed, f->name, newbaselen);
7df7c019
LT
2897 sources++;
2898 } else {
585c0e2e 2899 changes = f->changed;
7df7c019
LT
2900 dir->files++;
2901 dir->nr--;
2902 sources += 2;
2903 }
585c0e2e 2904 sum_changes += changes;
7df7c019
LT
2905 }
2906
2907 /*
2908 * We don't report dirstat's for
2909 * - the top level
2910 * - or cases where everything came from a single directory
2911 * under this directory (sources == 1).
2912 */
2913 if (baselen && sources != 1) {
585c0e2e
BW
2914 if (sum_changes) {
2915 int permille = sum_changes * 1000 / changed;
712d2c7d 2916 if (permille >= dir->permille) {
7be57610 2917 fprintf(opt->file, "%s%4d.%01d%% %.*s\n", line_prefix,
712d2c7d 2918 permille / 10, permille % 10, baselen, base);
7df7c019
LT
2919 if (!dir->cumulative)
2920 return 0;
2921 }
2922 }
2923 }
585c0e2e 2924 return sum_changes;
7df7c019
LT
2925}
2926
441bca0b
LT
2927static int dirstat_compare(const void *_a, const void *_b)
2928{
2929 const struct dirstat_file *a = _a;
2930 const struct dirstat_file *b = _b;
2931 return strcmp(a->name, b->name);
2932}
2933
c04a7155 2934static void show_dirstat(struct diff_options *options)
7df7c019
LT
2935{
2936 int i;
2937 unsigned long changed;
c04a7155
JH
2938 struct dirstat_dir dir;
2939 struct diff_queue_struct *q = &diff_queued_diff;
2940
2941 dir.files = NULL;
2942 dir.alloc = 0;
2943 dir.nr = 0;
712d2c7d 2944 dir.permille = options->dirstat_permille;
0d1e0e78 2945 dir.cumulative = options->flags.dirstat_cumulative;
7df7c019 2946
7df7c019 2947 changed = 0;
c04a7155
JH
2948 for (i = 0; i < q->nr; i++) {
2949 struct diff_filepair *p = q->queue[i];
2950 const char *name;
2951 unsigned long copied, added, damage;
2952
2ca86714 2953 name = p->two->path ? p->two->path : p->one->path;
c04a7155 2954
d9f62dfa
JK
2955 if (p->one->oid_valid && p->two->oid_valid &&
2956 oideq(&p->one->oid, &p->two->oid)) {
2ff3a803
JH
2957 /*
2958 * The SHA1 has not changed, so pre-/post-content is
2959 * identical. We can therefore skip looking at the
2960 * file contents altogether.
2961 */
2962 damage = 0;
2963 goto found_damage;
2964 }
2965
0d1e0e78 2966 if (options->flags.dirstat_by_file) {
0133dab7
JH
2967 /*
2968 * In --dirstat-by-file mode, we don't really need to
2969 * look at the actual file contents at all.
2970 * The fact that the SHA1 changed is enough for us to
2971 * add this file to the list of results
2972 * (with each file contributing equal damage).
2973 */
2ff3a803 2974 damage = 1;
0133dab7
JH
2975 goto found_damage;
2976 }
c04a7155
JH
2977
2978 if (DIFF_FILE_VALID(p->one) && DIFF_FILE_VALID(p->two)) {
2979 diff_populate_filespec(p->one, 0);
2980 diff_populate_filespec(p->two, 0);
974e0044 2981 diffcore_count_changes(p->one, p->two, NULL, NULL,
c04a7155
JH
2982 &copied, &added);
2983 diff_free_filespec_data(p->one);
2984 diff_free_filespec_data(p->two);
2985 } else if (DIFF_FILE_VALID(p->one)) {
8e5dd3d6 2986 diff_populate_filespec(p->one, CHECK_SIZE_ONLY);
c04a7155
JH
2987 copied = added = 0;
2988 diff_free_filespec_data(p->one);
2989 } else if (DIFF_FILE_VALID(p->two)) {
8e5dd3d6 2990 diff_populate_filespec(p->two, CHECK_SIZE_ONLY);
c04a7155
JH
2991 copied = 0;
2992 added = p->two->size;
2993 diff_free_filespec_data(p->two);
2994 } else
2b0b551d 2995 continue;
c04a7155
JH
2996
2997 /*
2998 * Original minus copied is the removed material,
2999 * added is the new material. They are both damages
0133dab7 3000 * made to the preimage.
2ff3a803
JH
3001 * If the resulting damage is zero, we know that
3002 * diffcore_count_changes() considers the two entries to
d9f62dfa 3003 * be identical, but since the oid changed, we
2ff3a803
JH
3004 * know that there must have been _some_ kind of change,
3005 * so we force all entries to have damage > 0.
c04a7155
JH
3006 */
3007 damage = (p->one->size - copied) + added;
2ff3a803 3008 if (!damage)
fd33777b 3009 damage = 1;
c04a7155 3010
0133dab7 3011found_damage:
c04a7155
JH
3012 ALLOC_GROW(dir.files, dir.nr + 1, dir.alloc);
3013 dir.files[dir.nr].name = name;
3014 dir.files[dir.nr].changed = damage;
3015 changed += damage;
3016 dir.nr++;
7df7c019
LT
3017 }
3018
3019 /* This can happen even with many files, if everything was renames */
3020 if (!changed)
3021 return;
3022
3023 /* Show all directories with more than x% of the changes */
9ed0d8d6 3024 QSORT(dir.files, dir.nr, dirstat_compare);
7be57610 3025 gather_dirstat(options, &dir, changed, "", 0);
7df7c019
LT
3026}
3027
1c57a627
JH
3028static void show_dirstat_by_line(struct diffstat_t *data, struct diff_options *options)
3029{
3030 int i;
3031 unsigned long changed;
3032 struct dirstat_dir dir;
3033
3034 if (data->nr == 0)
3035 return;
3036
3037 dir.files = NULL;
3038 dir.alloc = 0;
3039 dir.nr = 0;
3040 dir.permille = options->dirstat_permille;
0d1e0e78 3041 dir.cumulative = options->flags.dirstat_cumulative;
1c57a627
JH
3042
3043 changed = 0;
3044 for (i = 0; i < data->nr; i++) {
3045 struct diffstat_file *file = data->files[i];
3046 unsigned long damage = file->added + file->deleted;
3047 if (file->is_binary)
3048 /*
3049 * binary files counts bytes, not lines. Must find some
3050 * way to normalize binary bytes vs. textual lines.
3051 * The following heuristic assumes that there are 64
3052 * bytes per "line".
3053 * This is stupid and ugly, but very cheap...
3054 */
42c78a21 3055 damage = DIV_ROUND_UP(damage, 64);
1c57a627
JH
3056 ALLOC_GROW(dir.files, dir.nr + 1, dir.alloc);
3057 dir.files[dir.nr].name = file->name;
3058 dir.files[dir.nr].changed = damage;
3059 changed += damage;
3060 dir.nr++;
3061 }
3062
3063 /* This can happen even with many files, if everything was renames */
3064 if (!changed)
3065 return;
3066
3067 /* Show all directories with more than x% of the changes */
9ed0d8d6 3068 QSORT(dir.files, dir.nr, dirstat_compare);
1c57a627
JH
3069 gather_dirstat(options, &dir, changed, "", 0);
3070}
3071
f604652e
JH
3072static void free_diffstat_info(struct diffstat_t *diffstat)
3073{
3074 int i;
3075 for (i = 0; i < diffstat->nr; i++) {
3076 struct diffstat_file *f = diffstat->files[i];
c905cbc4 3077 free(f->print_name);
f604652e
JH
3078 free(f->name);
3079 free(f->from_name);
3080 free(f);
3081 }
3082 free(diffstat->files);
3083}
3084
88246898 3085struct checkdiff_t {
88246898 3086 const char *filename;
1ba111d1 3087 int lineno;
a757c646 3088 int conflict_marker_size;
1ba111d1 3089 struct diff_options *o;
cf1b7869 3090 unsigned ws_rule;
62c64895 3091 unsigned status;
88246898
JS
3092};
3093
a757c646 3094static int is_conflict_marker(const char *line, int marker_size, unsigned long len)
04954043
JH
3095{
3096 char firstchar;
3097 int cnt;
3098
a757c646 3099 if (len < marker_size + 1)
04954043
JH
3100 return 0;
3101 firstchar = line[0];
3102 switch (firstchar) {
a757c646 3103 case '=': case '>': case '<': case '|':
04954043
JH
3104 break;
3105 default:
3106 return 0;
3107 }
a757c646 3108 for (cnt = 1; cnt < marker_size; cnt++)
04954043
JH
3109 if (line[cnt] != firstchar)
3110 return 0;
a757c646
JH
3111 /* line[1] thru line[marker_size-1] are same as firstchar */
3112 if (len < marker_size + 1 || !isspace(line[marker_size]))
04954043 3113 return 0;
04954043
JH
3114 return 1;
3115}
3116
88246898
JS
3117static void checkdiff_consume(void *priv, char *line, unsigned long len)
3118{
3119 struct checkdiff_t *data = priv;
a757c646 3120 int marker_size = data->conflict_marker_size;
f1c96261
JK
3121 const char *ws = diff_get_color(data->o->use_color, DIFF_WHITESPACE);
3122 const char *reset = diff_get_color(data->o->use_color, DIFF_RESET);
3123 const char *set = diff_get_color(data->o->use_color, DIFF_FILE_NEW);
c1795bb0 3124 char *err;
30997bb8 3125 const char *line_prefix;
7be57610
BY
3126
3127 assert(data->o);
30997bb8 3128 line_prefix = diff_line_prefix(data->o);
88246898
JS
3129
3130 if (line[0] == '+') {
18374e58 3131 unsigned bad;
0ef617f4 3132 data->lineno++;
a757c646 3133 if (is_conflict_marker(line + 1, marker_size, len - 1)) {
04954043
JH
3134 data->status |= 1;
3135 fprintf(data->o->file,
7be57610
BY
3136 "%s%s:%d: leftover conflict marker\n",
3137 line_prefix, data->filename, data->lineno);
04954043 3138 }
8f8841e9 3139 bad = ws_check(line + 1, len - 1, data->ws_rule);
18374e58 3140 if (!bad)
c1795bb0 3141 return;
18374e58
JH
3142 data->status |= bad;
3143 err = whitespace_error_string(bad);
7be57610
BY
3144 fprintf(data->o->file, "%s%s:%d: %s.\n",
3145 line_prefix, data->filename, data->lineno, err);
c1795bb0 3146 free(err);
a3c158d4 3147 emit_line(data->o, set, reset, line, 1);
8f8841e9 3148 ws_check_emit(line + 1, len - 1, data->ws_rule,
1ba111d1 3149 data->o->file, set, reset, ws);
877f23cc 3150 } else if (line[0] == ' ') {
88246898 3151 data->lineno++;
877f23cc 3152 } else if (line[0] == '@') {
88246898
JS
3153 char *plus = strchr(line, '+');
3154 if (plus)
0ef617f4 3155 data->lineno = strtol(plus, NULL, 10) - 1;
88246898
JS
3156 else
3157 die("invalid diff");
3158 }
3159}
3160
0660626c
JH
3161static unsigned char *deflate_it(char *data,
3162 unsigned long size,
3163 unsigned long *result_size)
051308f6 3164{
0660626c
JH
3165 int bound;
3166 unsigned char *deflated;
ef49a7a0 3167 git_zstream stream;
0660626c 3168
55bb5c91 3169 git_deflate_init(&stream, zlib_compression_level);
225a6f10 3170 bound = git_deflate_bound(&stream, size);
0660626c
JH
3171 deflated = xmalloc(bound);
3172 stream.next_out = deflated;
3173 stream.avail_out = bound;
3174
3175 stream.next_in = (unsigned char *)data;
3176 stream.avail_in = size;
55bb5c91 3177 while (git_deflate(&stream, Z_FINISH) == Z_OK)
0660626c 3178 ; /* nothing */
55bb5c91 3179 git_deflate_end(&stream);
0660626c
JH
3180 *result_size = stream.total_out;
3181 return deflated;
051308f6
JH
3182}
3183
4eed0ebd
SB
3184static void emit_binary_diff_body(struct diff_options *o,
3185 mmfile_t *one, mmfile_t *two)
051308f6 3186{
0660626c
JH
3187 void *cp;
3188 void *delta;
3189 void *deflated;
3190 void *data;
3191 unsigned long orig_size;
3192 unsigned long delta_size;
3193 unsigned long deflate_size;
3194 unsigned long data_size;
051308f6 3195
0660626c
JH
3196 /* We could do deflated delta, or we could do just deflated two,
3197 * whichever is smaller.
051308f6 3198 */
0660626c
JH
3199 delta = NULL;
3200 deflated = deflate_it(two->ptr, two->size, &deflate_size);
3201 if (one->size && two->size) {
3202 delta = diff_delta(one->ptr, one->size,
3203 two->ptr, two->size,
3204 &delta_size, deflate_size);
3205 if (delta) {
3206 void *to_free = delta;
3207 orig_size = delta_size;
3208 delta = deflate_it(delta, delta_size, &delta_size);
3209 free(to_free);
051308f6
JH
3210 }
3211 }
051308f6 3212
0660626c 3213 if (delta && delta_size < deflate_size) {
4eed0ebd
SB
3214 char *s = xstrfmt("%lu", orig_size);
3215 emit_diff_symbol(o, DIFF_SYMBOL_BINARY_DIFF_HEADER_DELTA,
3216 s, strlen(s), 0);
3217 free(s);
0660626c
JH
3218 free(deflated);
3219 data = delta;
3220 data_size = delta_size;
4eed0ebd
SB
3221 } else {
3222 char *s = xstrfmt("%lu", two->size);
3223 emit_diff_symbol(o, DIFF_SYMBOL_BINARY_DIFF_HEADER_LITERAL,
3224 s, strlen(s), 0);
3225 free(s);
0660626c
JH
3226 free(delta);
3227 data = deflated;
3228 data_size = deflate_size;
3229 }
051308f6 3230
0660626c
JH
3231 /* emit data encoded in base85 */
3232 cp = data;
3233 while (data_size) {
4eed0ebd 3234 int len;
0660626c 3235 int bytes = (52 < data_size) ? 52 : data_size;
4eed0ebd 3236 char line[71];
0660626c 3237 data_size -= bytes;
051308f6
JH
3238 if (bytes <= 26)
3239 line[0] = bytes + 'A' - 1;
3240 else
3241 line[0] = bytes - 26 + 'a' - 1;
3242 encode_85(line + 1, cp, bytes);
1d7f171c 3243 cp = (char *) cp + bytes;
4eed0ebd
SB
3244
3245 len = strlen(line);
3246 line[len++] = '\n';
3247 line[len] = '\0';
3248
3249 emit_diff_symbol(o, DIFF_SYMBOL_BINARY_DIFF_BODY,
3250 line, len, 0);
051308f6 3251 }
4eed0ebd 3252 emit_diff_symbol(o, DIFF_SYMBOL_BINARY_DIFF_FOOTER, NULL, 0, 0);
0660626c 3253 free(data);
051308f6
JH
3254}
3255
4eed0ebd
SB
3256static void emit_binary_diff(struct diff_options *o,
3257 mmfile_t *one, mmfile_t *two)
d4c452f0 3258{
4eed0ebd
SB
3259 emit_diff_symbol(o, DIFF_SYMBOL_BINARY_DIFF_HEADER, NULL, 0, 0);
3260 emit_binary_diff_body(o, one, two);
3261 emit_binary_diff_body(o, two, one);
d4c452f0
JH
3262}
3263
29a3eefd
JH
3264int diff_filespec_is_binary(struct diff_filespec *one)
3265{
122aa6f9
JK
3266 if (one->is_binary == -1) {
3267 diff_filespec_load_driver(one);
3268 if (one->driver->binary != -1)
3269 one->is_binary = one->driver->binary;
3270 else {
3271 if (!one->data && DIFF_FILE_VALID(one))
6bf3b813
NTND
3272 diff_populate_filespec(one, CHECK_BINARY);
3273 if (one->is_binary == -1 && one->data)
122aa6f9
JK
3274 one->is_binary = buffer_is_binary(one->data,
3275 one->size);
3276 if (one->is_binary == -1)
3277 one->is_binary = 0;
3278 }
3279 }
29a3eefd 3280 return one->is_binary;
6973dcae
JH
3281}
3282
be58e70d 3283static const struct userdiff_funcname *diff_funcname_pattern(struct diff_filespec *one)
f258475a 3284{
122aa6f9
JK
3285 diff_filespec_load_driver(one);
3286 return one->driver->funcname.pattern ? &one->driver->funcname : NULL;
f258475a
JH
3287}
3288
a5a818ee
JH
3289void diff_set_mnemonic_prefix(struct diff_options *options, const char *a, const char *b)
3290{
3291 if (!options->a_prefix)
3292 options->a_prefix = a;
3293 if (!options->b_prefix)
3294 options->b_prefix = b;
3295}
3296
a788d7d5 3297struct userdiff_driver *get_textconv(struct diff_filespec *one)
04427ac8
JK
3298{
3299 if (!DIFF_FILE_VALID(one))
3300 return NULL;
d391c0ff 3301
04427ac8 3302 diff_filespec_load_driver(one);
3813e690 3303 return userdiff_get_textconv(one->driver);
04427ac8
JK
3304}
3305
6973dcae
JH
3306static void builtin_diff(const char *name_a,
3307 const char *name_b,
3308 struct diff_filespec *one,
3309 struct diff_filespec *two,
3310 const char *xfrm_msg,
296c6bb2 3311 int must_show_header,
051308f6 3312 struct diff_options *o,
6973dcae
JH
3313 int complete_rewrite)
3314{
3315 mmfile_t mf1, mf2;
3316 const char *lbl[2];
3317 char *a_one, *b_two;
d9c552f1 3318 const char *meta = diff_get_color_opt(o, DIFF_METAINFO);
8f67f8ae 3319 const char *reset = diff_get_color_opt(o, DIFF_RESET);
a5a818ee 3320 const char *a_prefix, *b_prefix;
d9bae1a1
JK
3321 struct userdiff_driver *textconv_one = NULL;
3322 struct userdiff_driver *textconv_two = NULL;
3e97c7c6 3323 struct strbuf header = STRBUF_INIT;
30997bb8 3324 const char *line_prefix = diff_line_prefix(o);
a5a818ee 3325
fd47ae6a 3326 diff_set_mnemonic_prefix(o, "a/", "b/");
0d1e0e78 3327 if (o->flags.reverse_diff) {
fd47ae6a
JK
3328 a_prefix = o->b_prefix;
3329 b_prefix = o->a_prefix;
3330 } else {
3331 a_prefix = o->a_prefix;
3332 b_prefix = o->b_prefix;
3333 }
3334
61cfbc05
JK
3335 if (o->submodule_format == DIFF_SUBMODULE_LOG &&
3336 (!one->mode || S_ISGITLINK(one->mode)) &&
3337 (!two->mode || S_ISGITLINK(two->mode))) {
f3597138 3338 show_submodule_summary(o, one->path ? one->path : two->path,
602a283a 3339 &one->oid, &two->oid,
f3597138 3340 two->dirty_submodule);
752c0c24 3341 return;
fd47ae6a
JK
3342 } else if (o->submodule_format == DIFF_SUBMODULE_INLINE_DIFF &&
3343 (!one->mode || S_ISGITLINK(one->mode)) &&
3344 (!two->mode || S_ISGITLINK(two->mode))) {
f3597138 3345 show_submodule_inline_diff(o, one->path ? one->path : two->path,
fd47ae6a 3346 &one->oid, &two->oid,
f3597138 3347 two->dirty_submodule);
fd47ae6a 3348 return;
752c0c24
JS
3349 }
3350
0d1e0e78 3351 if (o->flags.allow_textconv) {
3aa1f7ca
JK
3352 textconv_one = get_textconv(one);
3353 textconv_two = get_textconv(two);
3354 }
3355
71b989e7
LT
3356 /* Never use a non-valid filename anywhere if at all possible */
3357 name_a = DIFF_FILE_VALID(one) ? name_a : name_b;
3358 name_b = DIFF_FILE_VALID(two) ? name_b : name_a;
3359
a5a818ee
JH
3360 a_one = quote_two(a_prefix, name_a + (*name_a == '/'));
3361 b_two = quote_two(b_prefix, name_b + (*name_b == '/'));
6973dcae
JH
3362 lbl[0] = DIFF_FILE_VALID(one) ? a_one : "/dev/null";
3363 lbl[1] = DIFF_FILE_VALID(two) ? b_two : "/dev/null";
d9c552f1 3364 strbuf_addf(&header, "%s%sdiff --git %s %s%s\n", line_prefix, meta, a_one, b_two, reset);
6973dcae
JH
3365 if (lbl[0][0] == '/') {
3366 /* /dev/null */
d9c552f1 3367 strbuf_addf(&header, "%s%snew file mode %06o%s\n", line_prefix, meta, two->mode, reset);
37466447
BW
3368 if (xfrm_msg)
3369 strbuf_addstr(&header, xfrm_msg);
296c6bb2 3370 must_show_header = 1;
6973dcae
JH
3371 }
3372 else if (lbl[1][0] == '/') {
d9c552f1 3373 strbuf_addf(&header, "%s%sdeleted file mode %06o%s\n", line_prefix, meta, one->mode, reset);
37466447
BW
3374 if (xfrm_msg)
3375 strbuf_addstr(&header, xfrm_msg);
296c6bb2 3376 must_show_header = 1;
6973dcae
JH
3377 }
3378 else {
3379 if (one->mode != two->mode) {
d9c552f1
JK
3380 strbuf_addf(&header, "%s%sold mode %06o%s\n", line_prefix, meta, one->mode, reset);
3381 strbuf_addf(&header, "%s%snew mode %06o%s\n", line_prefix, meta, two->mode, reset);
296c6bb2 3382 must_show_header = 1;
cd112cef 3383 }
37466447
BW
3384 if (xfrm_msg)
3385 strbuf_addstr(&header, xfrm_msg);
3e97c7c6 3386
6973dcae
JH
3387 /*
3388 * we do not run diff between different kind
3389 * of objects.
3390 */
3391 if ((one->mode ^ two->mode) & S_IFMT)
3392 goto free_ab_and_return;
0c01857d 3393 if (complete_rewrite &&
3aa1f7ca
JK
3394 (textconv_one || !diff_filespec_is_binary(one)) &&
3395 (textconv_two || !diff_filespec_is_binary(two))) {
a29b0a13
SB
3396 emit_diff_symbol(o, DIFF_SYMBOL_HEADER,
3397 header.buf, header.len, 0);
3e97c7c6 3398 strbuf_reset(&header);
3aa1f7ca
JK
3399 emit_rewrite_diff(name_a, name_b, one, two,
3400 textconv_one, textconv_two, o);
34a5e1a2 3401 o->found_changes = 1;
6973dcae
JH
3402 goto free_ab_and_return;
3403 }
3404 }
3405
467ddc14 3406 if (o->irreversible_delete && lbl[1][0] == '/') {
a29b0a13
SB
3407 emit_diff_symbol(o, DIFF_SYMBOL_HEADER, header.buf,
3408 header.len, 0);
467ddc14
JH
3409 strbuf_reset(&header);
3410 goto free_ab_and_return;
0d1e0e78 3411 } else if (!o->flags.text &&
b3373982
JK
3412 ( (!textconv_one && diff_filespec_is_binary(one)) ||
3413 (!textconv_two && diff_filespec_is_binary(two)) )) {
4acaaa7a 3414 struct strbuf sb = STRBUF_INIT;
1aaf69e6
NTND
3415 if (!one->data && !two->data &&
3416 S_ISREG(one->mode) && S_ISREG(two->mode) &&
0d1e0e78 3417 !o->flags.binary) {
4a7e27e9 3418 if (oideq(&one->oid, &two->oid)) {
1aaf69e6 3419 if (must_show_header)
a29b0a13
SB
3420 emit_diff_symbol(o, DIFF_SYMBOL_HEADER,
3421 header.buf, header.len,
3422 0);
1aaf69e6
NTND
3423 goto free_ab_and_return;
3424 }
a29b0a13
SB
3425 emit_diff_symbol(o, DIFF_SYMBOL_HEADER,
3426 header.buf, header.len, 0);
4acaaa7a
SB
3427 strbuf_addf(&sb, "%sBinary files %s and %s differ\n",
3428 diff_line_prefix(o), lbl[0], lbl[1]);
3429 emit_diff_symbol(o, DIFF_SYMBOL_BINARY_FILES,
3430 sb.buf, sb.len, 0);
3431 strbuf_release(&sb);
1aaf69e6
NTND
3432 goto free_ab_and_return;
3433 }
b3373982
JK
3434 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
3435 die("unable to read files to diff");
0660626c
JH
3436 /* Quite common confusing case */
3437 if (mf1.size == mf2.size &&
296c6bb2
CC
3438 !memcmp(mf1.ptr, mf2.ptr, mf1.size)) {
3439 if (must_show_header)
a29b0a13
SB
3440 emit_diff_symbol(o, DIFF_SYMBOL_HEADER,
3441 header.buf, header.len, 0);
0660626c 3442 goto free_ab_and_return;
296c6bb2 3443 }
a29b0a13 3444 emit_diff_symbol(o, DIFF_SYMBOL_HEADER, header.buf, header.len, 0);
3e97c7c6 3445 strbuf_reset(&header);
0d1e0e78 3446 if (o->flags.binary)
4eed0ebd 3447 emit_binary_diff(o, &mf1, &mf2);
4acaaa7a
SB
3448 else {
3449 strbuf_addf(&sb, "%sBinary files %s and %s differ\n",
3450 diff_line_prefix(o), lbl[0], lbl[1]);
3451 emit_diff_symbol(o, DIFF_SYMBOL_BINARY_FILES,
3452 sb.buf, sb.len, 0);
3453 strbuf_release(&sb);
3454 }
34a5e1a2 3455 o->found_changes = 1;
467ddc14 3456 } else {
6973dcae
JH
3457 /* Crazy xdl interfaces.. */
3458 const char *diffopts = getenv("GIT_DIFF_OPTS");
ae021d87 3459 const char *v;
6973dcae
JH
3460 xpparam_t xpp;
3461 xdemitconf_t xecfg;
6973dcae 3462 struct emit_callback ecbdata;
be58e70d 3463 const struct userdiff_funcname *pe;
f258475a 3464
b3f01ff2 3465 if (must_show_header) {
a29b0a13
SB
3466 emit_diff_symbol(o, DIFF_SYMBOL_HEADER,
3467 header.buf, header.len, 0);
3e97c7c6
GB
3468 strbuf_reset(&header);
3469 }
3470
840383b2
JK
3471 mf1.size = fill_textconv(textconv_one, one, &mf1.ptr);
3472 mf2.size = fill_textconv(textconv_two, two, &mf2.ptr);
04427ac8 3473
45e7ca0f
BC
3474 pe = diff_funcname_pattern(one);
3475 if (!pe)
3476 pe = diff_funcname_pattern(two);
6973dcae 3477
9ccd0a88 3478 memset(&xpp, 0, sizeof(xpp));
30b25010 3479 memset(&xecfg, 0, sizeof(xecfg));
cd112cef 3480 memset(&ecbdata, 0, sizeof(ecbdata));
1cdde296
JS
3481 if (o->flags.suppress_diff_headers)
3482 lbl[0] = NULL;
6973dcae 3483 ecbdata.label_path = lbl;
daa0c3d9 3484 ecbdata.color_diff = want_color(o->use_color);
c189c4f2 3485 ecbdata.ws_rule = whitespace_rule(name_b);
690ed843 3486 if (ecbdata.ws_rule & WS_BLANK_AT_EOF)
d68fe26f 3487 check_blank_at_eof(&mf1, &mf2, &ecbdata);
a3c158d4 3488 ecbdata.opt = o;
1cdde296
JS
3489 if (header.len && !o->flags.suppress_diff_headers)
3490 ecbdata.header = &header;
582aa00b 3491 xpp.flags = o->xdl_opts;
2477ab2e
JT
3492 xpp.anchors = o->anchors;
3493 xpp.anchors_nr = o->anchors_nr;
ee1e5412 3494 xecfg.ctxlen = o->context;
6d0e674a 3495 xecfg.interhunkctxlen = o->interhunkcontext;
6973dcae 3496 xecfg.flags = XDL_EMIT_FUNCNAMES;
0d1e0e78 3497 if (o->flags.funccontext)
14937c2c 3498 xecfg.flags |= XDL_EMIT_FUNCCONTEXT;
45e7ca0f 3499 if (pe)
a013585b 3500 xdiff_set_find_func(&xecfg, pe->pattern, pe->cflags);
6973dcae
JH
3501 if (!diffopts)
3502 ;
ae021d87
JK
3503 else if (skip_prefix(diffopts, "--unified=", &v))
3504 xecfg.ctxlen = strtoul(v, NULL, 10);
3505 else if (skip_prefix(diffopts, "-u", &v))
3506 xecfg.ctxlen = strtoul(v, NULL, 10);
77d1a520
TR
3507 if (o->word_diff)
3508 init_diff_words_data(&ecbdata, o, one, two);
3efb9880
JK
3509 if (xdi_diff_outf(&mf1, &mf2, fn_out_consume, &ecbdata,
3510 &xpp, &xecfg))
3511 die("unable to generate diff for %s", one->path);
882749a0 3512 if (o->word_diff)
f59a59e2 3513 free_diff_words_data(&ecbdata);
04427ac8
JK
3514 if (textconv_one)
3515 free(mf1.ptr);
3516 if (textconv_two)
3517 free(mf2.ptr);
8cfe5f1c 3518 xdiff_clear_find_func(&xecfg);
6973dcae
JH
3519 }
3520
3521 free_ab_and_return:
3e97c7c6 3522 strbuf_release(&header);
fc3abdf5
JH
3523 diff_free_filespec_data(one);
3524 diff_free_filespec_data(two);
6973dcae
JH
3525 free(a_one);
3526 free(b_two);
3527 return;
3528}
3529
ddf88fa6
NTND
3530static char *get_compact_summary(const struct diff_filepair *p, int is_renamed)
3531{
3532 if (!is_renamed) {
3533 if (p->status == DIFF_STATUS_ADDED) {
3534 if (S_ISLNK(p->two->mode))
3535 return "new +l";
3536 else if ((p->two->mode & 0777) == 0755)
3537 return "new +x";
3538 else
3539 return "new";
3540 } else if (p->status == DIFF_STATUS_DELETED)
3541 return "gone";
3542 }
3543 if (S_ISLNK(p->one->mode) && !S_ISLNK(p->two->mode))
3544 return "mode -l";
3545 else if (!S_ISLNK(p->one->mode) && S_ISLNK(p->two->mode))
3546 return "mode +l";
3547 else if ((p->one->mode & 0777) == 0644 &&
3548 (p->two->mode & 0777) == 0755)
3549 return "mode +x";
3550 else if ((p->one->mode & 0777) == 0755 &&
3551 (p->two->mode & 0777) == 0644)
3552 return "mode -x";
3553 return NULL;
3554}
3555
6973dcae
JH
3556static void builtin_diffstat(const char *name_a, const char *name_b,
3557 struct diff_filespec *one,
3558 struct diff_filespec *two,
710158e3 3559 struct diffstat_t *diffstat,
0d21efa5 3560 struct diff_options *o,
74faaa16 3561 struct diff_filepair *p)
6973dcae
JH
3562{
3563 mmfile_t mf1, mf2;
3564 struct diffstat_file *data;
352ca4e1 3565 int same_contents;
74faaa16
LT
3566 int complete_rewrite = 0;
3567
3568 if (!DIFF_PAIR_UNMERGED(p)) {
3569 if (p->status == DIFF_STATUS_MODIFIED && p->score)
3570 complete_rewrite = 1;
3571 }
6973dcae
JH
3572
3573 data = diffstat_add(diffstat, name_a, name_b);
99bfd407 3574 data->is_interesting = p->status != DIFF_STATUS_UNKNOWN;
ddf88fa6
NTND
3575 if (o->flags.stat_with_summary)
3576 data->comments = get_compact_summary(p, data->is_renamed);
6973dcae
JH
3577
3578 if (!one || !two) {
3579 data->is_unmerged = 1;
3580 return;
3581 }
ded0abc7 3582
4a7e27e9 3583 same_contents = oideq(&one->oid, &two->oid);
352ca4e1 3584
ded0abc7 3585 if (diff_filespec_is_binary(one) || diff_filespec_is_binary(two)) {
ded0abc7 3586 data->is_binary = 1;
352ca4e1 3587 if (same_contents) {
e18872b2
ZJS
3588 data->added = 0;
3589 data->deleted = 0;
3590 } else {
3591 data->added = diff_filespec_size(two);
3592 data->deleted = diff_filespec_size(one);
3593 }
ded0abc7
JK
3594 }
3595
3596 else if (complete_rewrite) {
710158e3
JH
3597 diff_populate_filespec(one, 0);
3598 diff_populate_filespec(two, 0);
3599 data->deleted = count_lines(one->data, one->size);
3600 data->added = count_lines(two->data, two->size);
710158e3 3601 }
6973dcae 3602
352ca4e1 3603 else if (!same_contents) {
6973dcae
JH
3604 /* Crazy xdl interfaces.. */
3605 xpparam_t xpp;
3606 xdemitconf_t xecfg;
6973dcae 3607
ded0abc7
JK
3608 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
3609 die("unable to read files to diff");
3610
9ccd0a88 3611 memset(&xpp, 0, sizeof(xpp));
30b25010 3612 memset(&xecfg, 0, sizeof(xecfg));
582aa00b 3613 xpp.flags = o->xdl_opts;
2477ab2e
JT
3614 xpp.anchors = o->anchors;
3615 xpp.anchors_nr = o->anchors_nr;
f01cae91
JH
3616 xecfg.ctxlen = o->context;
3617 xecfg.interhunkctxlen = o->interhunkcontext;
3efb9880
JK
3618 if (xdi_diff_outf(&mf1, &mf2, diffstat_consume, diffstat,
3619 &xpp, &xecfg))
3620 die("unable to generate diffstat for %s", one->path);
6973dcae 3621 }
fc3abdf5 3622
fc3abdf5
JH
3623 diff_free_filespec_data(one);
3624 diff_free_filespec_data(two);
6973dcae
JH
3625}
3626
88246898 3627static void builtin_checkdiff(const char *name_a, const char *name_b,
cd676a51 3628 const char *attr_path,
5ff10dd6
JH
3629 struct diff_filespec *one,
3630 struct diff_filespec *two,
3631 struct diff_options *o)
88246898
JS
3632{
3633 mmfile_t mf1, mf2;
3634 struct checkdiff_t data;
3635
3636 if (!two)
3637 return;
3638
3639 memset(&data, 0, sizeof(data));
88246898
JS
3640 data.filename = name_b ? name_b : name_a;
3641 data.lineno = 0;
1ba111d1 3642 data.o = o;
cd676a51 3643 data.ws_rule = whitespace_rule(attr_path);
a757c646 3644 data.conflict_marker_size = ll_merge_marker_size(attr_path);
88246898
JS
3645
3646 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
3647 die("unable to read files to diff");
3648
5ff10dd6
JH
3649 /*
3650 * All the other codepaths check both sides, but not checking
3651 * the "old" side here is deliberate. We are checking the newly
3652 * introduced changes, and as long as the "new" side is text, we
3653 * can and should check what it introduces.
3654 */
29a3eefd 3655 if (diff_filespec_is_binary(two))
fc3abdf5 3656 goto free_and_return;
88246898
JS
3657 else {
3658 /* Crazy xdl interfaces.. */
3659 xpparam_t xpp;
3660 xdemitconf_t xecfg;
88246898 3661
9ccd0a88 3662 memset(&xpp, 0, sizeof(xpp));
30b25010 3663 memset(&xecfg, 0, sizeof(xecfg));
c35539eb 3664 xecfg.ctxlen = 1; /* at least one context line */
582aa00b 3665 xpp.flags = 0;
3efb9880
JK
3666 if (xdi_diff_outf(&mf1, &mf2, checkdiff_consume, &data,
3667 &xpp, &xecfg))
3668 die("unable to generate checkdiff for %s", one->path);
877f23cc 3669
467babf8 3670 if (data.ws_rule & WS_BLANK_AT_EOF) {
d68fe26f
JH
3671 struct emit_callback ecbdata;
3672 int blank_at_eof;
3673
3674 ecbdata.ws_rule = data.ws_rule;
3675 check_blank_at_eof(&mf1, &mf2, &ecbdata);
8837d335 3676 blank_at_eof = ecbdata.blank_at_eof_in_postimage;
d68fe26f 3677
467babf8
JH
3678 if (blank_at_eof) {
3679 static char *err;
3680 if (!err)
3681 err = whitespace_error_string(WS_BLANK_AT_EOF);
3682 fprintf(o->file, "%s:%d: %s.\n",
3683 data.filename, blank_at_eof, err);
3684 data.status = 1; /* report errors */
3685 }
877f23cc 3686 }
88246898 3687 }
fc3abdf5
JH
3688 free_and_return:
3689 diff_free_filespec_data(one);
3690 diff_free_filespec_data(two);
62c64895 3691 if (data.status)
0d1e0e78 3692 o->flags.check_failed = 1;
88246898
JS
3693}
3694
6973dcae
JH
3695struct diff_filespec *alloc_filespec(const char *path)
3696{
96ffc06f 3697 struct diff_filespec *spec;
6973dcae 3698
96ffc06f 3699 FLEXPTR_ALLOC_STR(spec, path, path);
9fb88419 3700 spec->count = 1;
122aa6f9 3701 spec->is_binary = -1;
6973dcae
JH
3702 return spec;
3703}
3704
9fb88419
LT
3705void free_filespec(struct diff_filespec *spec)
3706{
3707 if (!--spec->count) {
3708 diff_free_filespec_data(spec);
3709 free(spec);
3710 }
3711}
3712
f9704c2d
BW
3713void fill_filespec(struct diff_filespec *spec, const struct object_id *oid,
3714 int oid_valid, unsigned short mode)
6973dcae
JH
3715{
3716 if (mode) {
3717 spec->mode = canon_mode(mode);
f9704c2d
BW
3718 oidcpy(&spec->oid, oid);
3719 spec->oid_valid = oid_valid;
6973dcae
JH
3720 }
3721}
3722
3723/*
5adf317b 3724 * Given a name and sha1 pair, if the index tells us the file in
6973dcae
JH
3725 * the work tree has that object contents, return true, so that
3726 * prepare_temp_file() does not have to inflate and extract.
3727 */
fb4a1c0d 3728static int reuse_worktree_file(const char *name, const struct object_id *oid, int want_file)
6973dcae 3729{
9c5e6c80 3730 const struct cache_entry *ce;
6973dcae
JH
3731 struct stat st;
3732 int pos, len;
3733
150115ad
JH
3734 /*
3735 * We do not read the cache ourselves here, because the
6973dcae
JH
3736 * benchmark with my previous version that always reads cache
3737 * shows that it makes things worse for diff-tree comparing
3738 * two linux-2.6 kernel trees in an already checked out work
3739 * tree. This is because most diff-tree comparisons deal with
3740 * only a small number of files, while reading the cache is
3741 * expensive for a large project, and its cost outweighs the
3742 * savings we get by not inflating the object to a temporary
3743 * file. Practically, this code only helps when we are used
3744 * by diff-cache --cached, which does read the cache before
3745 * calling us.
3746 */
3747 if (!active_cache)
3748 return 0;
3749
1510fea7
SP
3750 /* We want to avoid the working directory if our caller
3751 * doesn't need the data in a normal file, this system
3752 * is rather slow with its stat/open/mmap/close syscalls,
3753 * and the object is contained in a pack file. The pack
3754 * is probably already open and will be faster to obtain
3755 * the data through than the working directory. Loose
3756 * objects however would tend to be slower as they need
3757 * to be individually opened and inflated.
3758 */
14c3c80c 3759 if (!FAST_WORKING_DIRECTORY && !want_file && has_object_pack(oid))
1510fea7
SP
3760 return 0;
3761
06dec439
JK
3762 /*
3763 * Similarly, if we'd have to convert the file contents anyway, that
3764 * makes the optimization not worthwhile.
3765 */
82b474e0 3766 if (!want_file && would_convert_to_git(&the_index, name))
06dec439
JK
3767 return 0;
3768
6973dcae
JH
3769 len = strlen(name);
3770 pos = cache_name_pos(name, len);
3771 if (pos < 0)
3772 return 0;
3773 ce = active_cache[pos];
eadb5831
JH
3774
3775 /*
3776 * This is not the sha1 we are looking for, or
3777 * unreusable because it is not a regular file.
3778 */
9001dc2a 3779 if (!oideq(oid, &ce->oid) || !S_ISREG(ce->ce_mode))
6973dcae 3780 return 0;
eadb5831 3781
150115ad
JH
3782 /*
3783 * If ce is marked as "assume unchanged", there is no
3784 * guarantee that work tree matches what we are looking for.
3785 */
b4d1690d 3786 if ((ce->ce_flags & CE_VALID) || ce_skip_worktree(ce))
150115ad
JH
3787 return 0;
3788
eadb5831
JH
3789 /*
3790 * If ce matches the file in the work tree, we can reuse it.
6973dcae 3791 */
eadb5831
JH
3792 if (ce_uptodate(ce) ||
3793 (!lstat(name, &st) && !ce_match_stat(ce, &st, 0)))
3794 return 1;
3795
3796 return 0;
6973dcae
JH
3797}
3798
04786756
LT
3799static int diff_populate_gitlink(struct diff_filespec *s, int size_only)
3800{
b1ddfb91
JK
3801 struct strbuf buf = STRBUF_INIT;
3802 char *dirty = "";
8e08b419
JH
3803
3804 /* Are we looking at the work tree? */
85adbf2f 3805 if (s->dirty_submodule)
8e08b419
JH
3806 dirty = "-dirty";
3807
a0d12c44 3808 strbuf_addf(&buf, "Subproject commit %s%s\n",
3809 oid_to_hex(&s->oid), dirty);
b1ddfb91 3810 s->size = buf.len;
04786756
LT
3811 if (size_only) {
3812 s->data = NULL;
b1ddfb91
JK
3813 strbuf_release(&buf);
3814 } else {
3815 s->data = strbuf_detach(&buf, NULL);
3816 s->should_free = 1;
04786756
LT
3817 }
3818 return 0;
3819}
3820
6973dcae
JH
3821/*
3822 * While doing rename detection and pickaxe operation, we may need to
3823 * grab the data for the blob (or file) for our own in-core comparison.
3824 * diff_filespec has data and size fields for this purpose.
3825 */
8e5dd3d6 3826int diff_populate_filespec(struct diff_filespec *s, unsigned int flags)
6973dcae 3827{
8e5dd3d6 3828 int size_only = flags & CHECK_SIZE_ONLY;
6973dcae 3829 int err = 0;
8462ff43 3830 int conv_flags = global_conv_flags_eol;
5430bb28
JH
3831 /*
3832 * demote FAIL to WARN to allow inspecting the situation
3833 * instead of refusing.
3834 */
8462ff43
TB
3835 if (conv_flags & CONV_EOL_RNDTRP_DIE)
3836 conv_flags = CONV_EOL_RNDTRP_WARN;
5430bb28 3837
6973dcae
JH
3838 if (!DIFF_FILE_VALID(s))
3839 die("internal error: asking to populate invalid file.");
3840 if (S_ISDIR(s->mode))
3841 return -1;
3842
6973dcae 3843 if (s->data)
fc3abdf5 3844 return 0;
04786756 3845
6e0b8ed6
JH
3846 if (size_only && 0 < s->size)
3847 return 0;
3848
302b9282 3849 if (S_ISGITLINK(s->mode))
04786756
LT
3850 return diff_populate_gitlink(s, size_only);
3851
41c9560e 3852 if (!s->oid_valid ||
fb4a1c0d 3853 reuse_worktree_file(s->path, &s->oid, 0)) {
f285a2d7 3854 struct strbuf buf = STRBUF_INIT;
6973dcae
JH
3855 struct stat st;
3856 int fd;
6c510bee 3857
6973dcae 3858 if (lstat(s->path, &st) < 0) {
10e0ca84
AO
3859 err_empty:
3860 err = -1;
3861 empty:
3862 s->data = (char *)"";
3863 s->size = 0;
3864 return err;
6973dcae 3865 }
dc49cd76 3866 s->size = xsize_t(st.st_size);
6973dcae
JH
3867 if (!s->size)
3868 goto empty;
6973dcae 3869 if (S_ISLNK(st.st_mode)) {
cf219d8c
LT
3870 struct strbuf sb = STRBUF_INIT;
3871
3872 if (strbuf_readlink(&sb, s->path, s->size))
6973dcae 3873 goto err_empty;
0956a6db
RS
3874 s->size = sb.len;
3875 s->data = strbuf_detach(&sb, NULL);
cf219d8c 3876 s->should_free = 1;
6973dcae
JH
3877 return 0;
3878 }
12426e11
JH
3879
3880 /*
3881 * Even if the caller would be happy with getting
3882 * only the size, we cannot return early at this
3883 * point if the path requires us to run the content
3884 * conversion.
3885 */
82b474e0 3886 if (size_only && !would_convert_to_git(&the_index, s->path))
cf219d8c 3887 return 0;
12426e11
JH
3888
3889 /*
3890 * Note: this check uses xsize_t(st.st_size) that may
3891 * not be the true size of the blob after it goes
3892 * through convert_to_git(). This may not strictly be
3893 * correct, but the whole point of big_file_threshold
3894 * and is_binary check being that we want to avoid
3895 * opening the file and inspecting the contents, this
3896 * is probably fine.
3897 */
6bf3b813
NTND
3898 if ((flags & CHECK_BINARY) &&
3899 s->size > big_file_threshold && s->is_binary == -1) {
3900 s->is_binary = 1;
3901 return 0;
3902 }
6973dcae
JH
3903 fd = open(s->path, O_RDONLY);
3904 if (fd < 0)
3905 goto err_empty;
c4712e45 3906 s->data = xmmap(NULL, s->size, PROT_READ, MAP_PRIVATE, fd, 0);
6973dcae 3907 close(fd);
6973dcae 3908 s->should_munmap = 1;
6c510bee
LT
3909
3910 /*
3911 * Convert from working tree format to canonical git format
3912 */
8462ff43 3913 if (convert_to_git(&the_index, s->path, s->data, s->size, &buf, conv_flags)) {
c32f749f 3914 size_t size = 0;
6c510bee
LT
3915 munmap(s->data, s->size);
3916 s->should_munmap = 0;
c32f749f
RS
3917 s->data = strbuf_detach(&buf, &size);
3918 s->size = size;
6c510bee
LT
3919 s->should_free = 1;
3920 }
6973dcae
JH
3921 }
3922 else {
21666f1a 3923 enum object_type type;
6bf3b813 3924 if (size_only || (flags & CHECK_BINARY)) {
0df8e965
SB
3925 type = oid_object_info(the_repository, &s->oid,
3926 &s->size);
c50c4316 3927 if (type < 0)
a0d12c44 3928 die("unable to read %s",
3929 oid_to_hex(&s->oid));
6bf3b813
NTND
3930 if (size_only)
3931 return 0;
3932 if (s->size > big_file_threshold && s->is_binary == -1) {
3933 s->is_binary = 1;
3934 return 0;
3935 }
6973dcae 3936 }
b4f5aca4 3937 s->data = read_object_file(&s->oid, &type, &s->size);
6bf3b813 3938 if (!s->data)
a0d12c44 3939 die("unable to read %s", oid_to_hex(&s->oid));
6bf3b813 3940 s->should_free = 1;
6973dcae
JH
3941 }
3942 return 0;
3943}
3944
8ae92e63 3945void diff_free_filespec_blob(struct diff_filespec *s)
6973dcae
JH
3946{
3947 if (s->should_free)
3948 free(s->data);
3949 else if (s->should_munmap)
3950 munmap(s->data, s->size);
fc3abdf5
JH
3951
3952 if (s->should_free || s->should_munmap) {
3953 s->should_free = s->should_munmap = 0;
3954 s->data = NULL;
3955 }
eede7b7d
JK
3956}
3957
3958void diff_free_filespec_data(struct diff_filespec *s)
3959{
8ae92e63 3960 diff_free_filespec_blob(s);
6a83d902 3961 FREE_AND_NULL(s->cnt_data);
6973dcae
JH
3962}
3963
4e218f54 3964static void prep_temp_blob(const char *path, struct diff_tempfile *temp,
6973dcae
JH
3965 void *blob,
3966 unsigned long size,
09bdff29 3967 const struct object_id *oid,
6973dcae
JH
3968 int mode)
3969{
4e218f54 3970 struct strbuf buf = STRBUF_INIT;
c2a46a7c 3971 struct strbuf tempfile = STRBUF_INIT;
003b33a8
DA
3972 char *path_dup = xstrdup(path);
3973 const char *base = basename(path_dup);
6973dcae 3974
003b33a8 3975 /* Generate "XXXXXX_basename.ext" */
c2a46a7c
BW
3976 strbuf_addstr(&tempfile, "XXXXXX_");
3977 strbuf_addstr(&tempfile, base);
003b33a8 3978
c2a46a7c 3979 temp->tempfile = mks_tempfile_ts(tempfile.buf, strlen(base) + 1);
076aa2cb 3980 if (!temp->tempfile)
d824cbba 3981 die_errno("unable to create temp-file");
7f944e26 3982 if (convert_to_working_tree(&the_index, path,
4e218f54
JS
3983 (const char *)blob, (size_t)size, &buf)) {
3984 blob = buf.buf;
3985 size = buf.len;
3986 }
c50424a6 3987 if (write_in_full(temp->tempfile->fd, blob, size) < 0 ||
076aa2cb 3988 close_tempfile_gently(temp->tempfile))
0721c314 3989 die_errno("unable to write temp-file");
076aa2cb 3990 temp->name = get_tempfile_path(temp->tempfile);
09bdff29 3991 oid_to_hex_r(temp->hex, oid);
5096d490 3992 xsnprintf(temp->mode, sizeof(temp->mode), "%06o", mode);
4e218f54 3993 strbuf_release(&buf);
c2a46a7c 3994 strbuf_release(&tempfile);
003b33a8 3995 free(path_dup);
6973dcae
JH
3996}
3997
479b0ae8
JK
3998static struct diff_tempfile *prepare_temp_file(const char *name,
3999 struct diff_filespec *one)
6973dcae 4000{
479b0ae8
JK
4001 struct diff_tempfile *temp = claim_diff_tempfile();
4002
6973dcae
JH
4003 if (!DIFF_FILE_VALID(one)) {
4004 not_a_valid_file:
4005 /* A '-' entry produces this for file-2, and
4006 * a '+' entry produces this for file-1.
4007 */
4008 temp->name = "/dev/null";
5096d490
JK
4009 xsnprintf(temp->hex, sizeof(temp->hex), ".");
4010 xsnprintf(temp->mode, sizeof(temp->mode), ".");
479b0ae8
JK
4011 return temp;
4012 }
4013
aba47272 4014 if (!S_ISGITLINK(one->mode) &&
41c9560e 4015 (!one->oid_valid ||
fb4a1c0d 4016 reuse_worktree_file(name, &one->oid, 1))) {
6973dcae
JH
4017 struct stat st;
4018 if (lstat(name, &st) < 0) {
4019 if (errno == ENOENT)
4020 goto not_a_valid_file;
d824cbba 4021 die_errno("stat(%s)", name);
6973dcae
JH
4022 }
4023 if (S_ISLNK(st.st_mode)) {
3cd7388d
JK
4024 struct strbuf sb = STRBUF_INIT;
4025 if (strbuf_readlink(&sb, name, st.st_size) < 0)
0721c314 4026 die_errno("readlink(%s)", name);
3cd7388d 4027 prep_temp_blob(name, temp, sb.buf, sb.len,
41c9560e 4028 (one->oid_valid ?
09bdff29 4029 &one->oid : &null_oid),
41c9560e 4030 (one->oid_valid ?
6973dcae 4031 one->mode : S_IFLNK));
3cd7388d 4032 strbuf_release(&sb);
6973dcae
JH
4033 }
4034 else {
4035 /* we can borrow from the file in the work tree */
4036 temp->name = name;
41c9560e 4037 if (!one->oid_valid)
74014152 4038 oid_to_hex_r(temp->hex, &null_oid);
6973dcae 4039 else
2490574d 4040 oid_to_hex_r(temp->hex, &one->oid);
6973dcae
JH
4041 /* Even though we may sometimes borrow the
4042 * contents from the work tree, we always want
4043 * one->mode. mode is trustworthy even when
74014152 4044 * !(one->oid_valid), as long as
6973dcae
JH
4045 * DIFF_FILE_VALID(one).
4046 */
5096d490 4047 xsnprintf(temp->mode, sizeof(temp->mode), "%06o", one->mode);
6973dcae 4048 }
479b0ae8 4049 return temp;
6973dcae
JH
4050 }
4051 else {
4052 if (diff_populate_filespec(one, 0))
4053 die("cannot read data blob for %s", one->path);
4e218f54 4054 prep_temp_blob(name, temp, one->data, one->size,
09bdff29 4055 &one->oid, one->mode);
6973dcae 4056 }
479b0ae8 4057 return temp;
6973dcae
JH
4058}
4059
f3efe787
JK
4060static void add_external_diff_name(struct argv_array *argv,
4061 const char *name,
4062 struct diff_filespec *df)
4063{
4064 struct diff_tempfile *temp = prepare_temp_file(name, df);
4065 argv_array_push(argv, temp->name);
4066 argv_array_push(argv, temp->hex);
4067 argv_array_push(argv, temp->mode);
4068}
4069
6973dcae
JH
4070/* An external diff command takes:
4071 *
4072 * diff-cmd name infile1 infile1-sha1 infile1-mode \
4073 * infile2 infile2-sha1 infile2-mode [ rename-to ]
4074 *
4075 */
4076static void run_external_diff(const char *pgm,
4077 const char *name,
4078 const char *other,
4079 struct diff_filespec *one,
4080 struct diff_filespec *two,
4081 const char *xfrm_msg,
ee7fb0b1
ZK
4082 int complete_rewrite,
4083 struct diff_options *o)
6973dcae 4084{
82fbf269 4085 struct argv_array argv = ARGV_ARRAY_INIT;
ae049c95 4086 struct argv_array env = ARGV_ARRAY_INIT;
ee7fb0b1 4087 struct diff_queue_struct *q = &diff_queued_diff;
6973dcae 4088
0d4217d9
JK
4089 argv_array_push(&argv, pgm);
4090 argv_array_push(&argv, name);
6973dcae 4091
6973dcae 4092 if (one && two) {
f3efe787
JK
4093 add_external_diff_name(&argv, name, one);
4094 if (!other)
4095 add_external_diff_name(&argv, name, two);
4096 else {
4097 add_external_diff_name(&argv, other, two);
82fbf269
JK
4098 argv_array_push(&argv, other);
4099 argv_array_push(&argv, xfrm_msg);
6973dcae 4100 }
6973dcae 4101 }
ee7fb0b1 4102
ae049c95
JK
4103 argv_array_pushf(&env, "GIT_DIFF_PATH_COUNTER=%d", ++o->diff_path_counter);
4104 argv_array_pushf(&env, "GIT_DIFF_PATH_TOTAL=%d", q->nr);
ee7fb0b1 4105
89294d14
JK
4106 if (run_command_v_opt_cd_env(argv.argv, RUN_USING_SHELL, NULL, env.argv))
4107 die(_("external diff died, stopping at %s"), name);
ee7fb0b1 4108
6973dcae 4109 remove_tempfile();
82fbf269 4110 argv_array_clear(&argv);
ae049c95 4111 argv_array_clear(&env);
6973dcae
JH
4112}
4113
b67b9612
JH
4114static int similarity_index(struct diff_filepair *p)
4115{
4116 return p->score * 100 / MAX_SCORE;
4117}
4118
4f03666a
JK
4119static const char *diff_abbrev_oid(const struct object_id *oid, int abbrev)
4120{
4121 if (startup_info->have_repository)
aab9583f 4122 return find_unique_abbrev(oid, abbrev);
4f03666a
JK
4123 else {
4124 char *hex = oid_to_hex(oid);
0d9c527d
JH
4125 if (abbrev < 0)
4126 abbrev = FALLBACK_DEFAULT_ABBREV;
02afca1e 4127 if (abbrev > the_hash_algo->hexsz)
033abf97 4128 BUG("oid abbreviation out of range: %d", abbrev);
43d1948b
JB
4129 if (abbrev)
4130 hex[abbrev] = '\0';
4f03666a
JK
4131 return hex;
4132 }
4133}
4134
b67b9612
JH
4135static void fill_metainfo(struct strbuf *msg,
4136 const char *name,
4137 const char *other,
4138 struct diff_filespec *one,
4139 struct diff_filespec *two,
4140 struct diff_options *o,
37466447 4141 struct diff_filepair *p,
5977744d 4142 int *must_show_header,
37466447 4143 int use_color)
b67b9612 4144{
37466447
BW
4145 const char *set = diff_get_color(use_color, DIFF_METAINFO);
4146 const char *reset = diff_get_color(use_color, DIFF_RESET);
30997bb8 4147 const char *line_prefix = diff_line_prefix(o);
7be57610 4148
296c6bb2 4149 *must_show_header = 1;
b67b9612
JH
4150 strbuf_init(msg, PATH_MAX * 2 + 300);
4151 switch (p->status) {
4152 case DIFF_STATUS_COPIED:
98ad90fb
JH
4153 strbuf_addf(msg, "%s%ssimilarity index %d%%",
4154 line_prefix, set, similarity_index(p));
4155 strbuf_addf(msg, "%s\n%s%scopy from ",
4156 reset, line_prefix, set);
b67b9612 4157 quote_c_style(name, msg, NULL, 0);
98ad90fb 4158 strbuf_addf(msg, "%s\n%s%scopy to ", reset, line_prefix, set);
b67b9612 4159 quote_c_style(other, msg, NULL, 0);
37466447 4160 strbuf_addf(msg, "%s\n", reset);
b67b9612
JH
4161 break;
4162 case DIFF_STATUS_RENAMED:
98ad90fb
JH
4163 strbuf_addf(msg, "%s%ssimilarity index %d%%",
4164 line_prefix, set, similarity_index(p));
4165 strbuf_addf(msg, "%s\n%s%srename from ",
4166 reset, line_prefix, set);
b67b9612 4167 quote_c_style(name, msg, NULL, 0);
98ad90fb
JH
4168 strbuf_addf(msg, "%s\n%s%srename to ",
4169 reset, line_prefix, set);
b67b9612 4170 quote_c_style(other, msg, NULL, 0);
37466447 4171 strbuf_addf(msg, "%s\n", reset);
b67b9612
JH
4172 break;
4173 case DIFF_STATUS_MODIFIED:
4174 if (p->score) {
98ad90fb
JH
4175 strbuf_addf(msg, "%s%sdissimilarity index %d%%%s\n",
4176 line_prefix,
37466447 4177 set, similarity_index(p), reset);
b67b9612
JH
4178 break;
4179 }
4180 /* fallthru */
4181 default:
296c6bb2 4182 *must_show_header = 0;
b67b9612 4183 }
9001dc2a 4184 if (one && two && !oideq(&one->oid, &two->oid)) {
de1d81d5 4185 const unsigned hexsz = the_hash_algo->hexsz;
4186 int abbrev = o->flags.full_index ? hexsz : DEFAULT_ABBREV;
b67b9612 4187
0d1e0e78 4188 if (o->flags.binary) {
b67b9612
JH
4189 mmfile_t mf;
4190 if ((!fill_mmfile(&mf, one) && diff_filespec_is_binary(one)) ||
4191 (!fill_mmfile(&mf, two) && diff_filespec_is_binary(two)))
de1d81d5 4192 abbrev = hexsz;
b67b9612 4193 }
4f03666a
JK
4194 strbuf_addf(msg, "%s%sindex %s..%s", line_prefix, set,
4195 diff_abbrev_oid(&one->oid, abbrev),
4196 diff_abbrev_oid(&two->oid, abbrev));
b67b9612
JH
4197 if (one->mode == two->mode)
4198 strbuf_addf(msg, " %06o", one->mode);
37466447 4199 strbuf_addf(msg, "%s\n", reset);
b67b9612 4200 }
b67b9612
JH
4201}
4202
6973dcae
JH
4203static void run_diff_cmd(const char *pgm,
4204 const char *name,
4205 const char *other,
cd676a51 4206 const char *attr_path,
6973dcae
JH
4207 struct diff_filespec *one,
4208 struct diff_filespec *two,
b67b9612 4209 struct strbuf *msg,
051308f6 4210 struct diff_options *o,
b67b9612 4211 struct diff_filepair *p)
6973dcae 4212{
b67b9612
JH
4213 const char *xfrm_msg = NULL;
4214 int complete_rewrite = (p->status == DIFF_STATUS_MODIFIED) && p->score;
296c6bb2 4215 int must_show_header = 0;
b67b9612 4216
bd8c1a9b 4217
0d1e0e78 4218 if (o->flags.allow_external) {
be58e70d
JK
4219 struct userdiff_driver *drv = userdiff_find_by_path(attr_path);
4220 if (drv && drv->external)
4221 pgm = drv->external;
f1af60bd
JH
4222 }
4223
37466447
BW
4224 if (msg) {
4225 /*
4226 * don't use colors when the header is intended for an
4227 * external diff driver
4228 */
4229 fill_metainfo(msg, name, other, one, two, o, p,
5977744d 4230 &must_show_header,
daa0c3d9 4231 want_color(o->use_color) && !pgm);
37466447
BW
4232 xfrm_msg = msg->len ? msg->buf : NULL;
4233 }
4234
6973dcae
JH
4235 if (pgm) {
4236 run_external_diff(pgm, name, other, one, two, xfrm_msg,
ee7fb0b1 4237 complete_rewrite, o);
6973dcae
JH
4238 return;
4239 }
4240 if (one && two)
4241 builtin_diff(name, other ? other : name,
296c6bb2
CC
4242 one, two, xfrm_msg, must_show_header,
4243 o, complete_rewrite);
6973dcae 4244 else
c0c77734 4245 fprintf(o->file, "* Unmerged path %s\n", name);
6973dcae
JH
4246}
4247
94e327e9 4248static void diff_fill_oid_info(struct diff_filespec *one)
6973dcae
JH
4249{
4250 if (DIFF_FILE_VALID(one)) {
41c9560e 4251 if (!one->oid_valid) {
6973dcae 4252 struct stat st;
4682d852 4253 if (one->is_stdin) {
a0d12c44 4254 oidclr(&one->oid);
5332b2af
JS
4255 return;
4256 }
6973dcae 4257 if (lstat(one->path, &st) < 0)
0721c314 4258 die_errno("stat '%s'", one->path);
98e019b0 4259 if (index_path(&one->oid, one->path, &st, 0))
d7530708 4260 die("cannot hash %s", one->path);
6973dcae
JH
4261 }
4262 }
4263 else
a0d12c44 4264 oidclr(&one->oid);
6973dcae
JH
4265}
4266
cd676a51
JH
4267static void strip_prefix(int prefix_length, const char **namep, const char **otherp)
4268{
4269 /* Strip the prefix but do not molest /dev/null and absolute paths */
d8faea9d 4270 if (*namep && **namep != '/') {
cd676a51 4271 *namep += prefix_length;
d8faea9d
JN
4272 if (**namep == '/')
4273 ++*namep;
4274 }
4275 if (*otherp && **otherp != '/') {
cd676a51 4276 *otherp += prefix_length;
d8faea9d
JN
4277 if (**otherp == '/')
4278 ++*otherp;
4279 }
cd676a51
JH
4280}
4281
6973dcae
JH
4282static void run_diff(struct diff_filepair *p, struct diff_options *o)
4283{
4284 const char *pgm = external_diff();
663af342 4285 struct strbuf msg;
663af342
PH
4286 struct diff_filespec *one = p->one;
4287 struct diff_filespec *two = p->two;
6973dcae
JH
4288 const char *name;
4289 const char *other;
cd676a51 4290 const char *attr_path;
663af342 4291
f2d2a5de
SB
4292 name = one->path;
4293 other = (strcmp(name, two->path) ? two->path : NULL);
cd676a51
JH
4294 attr_path = name;
4295 if (o->prefix_length)
4296 strip_prefix(o->prefix_length, &name, &other);
6973dcae 4297
0d1e0e78 4298 if (!o->flags.allow_external)
bd8c1a9b
JH
4299 pgm = NULL;
4300
6973dcae 4301 if (DIFF_PAIR_UNMERGED(p)) {
cd676a51 4302 run_diff_cmd(pgm, name, NULL, attr_path,
b67b9612 4303 NULL, NULL, NULL, o, p);
6973dcae
JH
4304 return;
4305 }
4306
94e327e9
BW
4307 diff_fill_oid_info(one);
4308 diff_fill_oid_info(two);
6973dcae 4309
6973dcae
JH
4310 if (!pgm &&
4311 DIFF_FILE_VALID(one) && DIFF_FILE_VALID(two) &&
4312 (S_IFMT & one->mode) != (S_IFMT & two->mode)) {
b67b9612
JH
4313 /*
4314 * a filepair that changes between file and symlink
6973dcae
JH
4315 * needs to be split into deletion and creation.
4316 */
4317 struct diff_filespec *null = alloc_filespec(two->path);
cd676a51 4318 run_diff_cmd(NULL, name, other, attr_path,
b67b9612 4319 one, null, &msg, o, p);
6973dcae 4320 free(null);
b67b9612
JH
4321 strbuf_release(&msg);
4322
6973dcae 4323 null = alloc_filespec(one->path);
cd676a51 4324 run_diff_cmd(NULL, name, other, attr_path,
b67b9612 4325 null, two, &msg, o, p);
6973dcae
JH
4326 free(null);
4327 }
4328 else
cd676a51 4329 run_diff_cmd(pgm, name, other, attr_path,
b67b9612 4330 one, two, &msg, o, p);
6973dcae 4331
663af342 4332 strbuf_release(&msg);
6973dcae
JH
4333}
4334
4335static void run_diffstat(struct diff_filepair *p, struct diff_options *o,
4336 struct diffstat_t *diffstat)
4337{
4338 const char *name;
4339 const char *other;
4340
4341 if (DIFF_PAIR_UNMERGED(p)) {
4342 /* unmerged */
74faaa16 4343 builtin_diffstat(p->one->path, NULL, NULL, NULL, diffstat, o, p);
6973dcae
JH
4344 return;
4345 }
4346
4347 name = p->one->path;
4348 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
4349
cd676a51
JH
4350 if (o->prefix_length)
4351 strip_prefix(o->prefix_length, &name, &other);
4352
94e327e9
BW
4353 diff_fill_oid_info(p->one);
4354 diff_fill_oid_info(p->two);
6973dcae 4355
74faaa16 4356 builtin_diffstat(name, other, p->one, p->two, diffstat, o, p);
6973dcae
JH
4357}
4358
88246898
JS
4359static void run_checkdiff(struct diff_filepair *p, struct diff_options *o)
4360{
4361 const char *name;
4362 const char *other;
cd676a51 4363 const char *attr_path;
88246898
JS
4364
4365 if (DIFF_PAIR_UNMERGED(p)) {
4366 /* unmerged */
4367 return;
4368 }
4369
4370 name = p->one->path;
4371 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
cd676a51
JH
4372 attr_path = other ? other : name;
4373
4374 if (o->prefix_length)
4375 strip_prefix(o->prefix_length, &name, &other);
88246898 4376
94e327e9
BW
4377 diff_fill_oid_info(p->one);
4378 diff_fill_oid_info(p->two);
88246898 4379
cd676a51 4380 builtin_checkdiff(name, other, attr_path, p->one, p->two, o);
88246898
JS
4381}
4382
6973dcae
JH
4383void diff_setup(struct diff_options *options)
4384{
be4f2b40 4385 memcpy(options, &default_diff_options, sizeof(*options));
c0c77734
DB
4386
4387 options->file = stdout;
4388
7648b79e
SB
4389 options->output_indicators[OUTPUT_INDICATOR_NEW] = '+';
4390 options->output_indicators[OUTPUT_INDICATOR_OLD] = '-';
4391 options->output_indicators[OUTPUT_INDICATOR_CONTEXT] = ' ';
43d1948b 4392 options->abbrev = DEFAULT_ABBREV;
6973dcae
JH
4393 options->line_termination = '\n';
4394 options->break_opt = -1;
4395 options->rename_limit = -1;
712d2c7d 4396 options->dirstat_permille = diff_dirstat_permille_default;
6468a4e5 4397 options->context = diff_context_default;
c4888677 4398 options->interhunkcontext = diff_interhunk_context_default;
a17505f2 4399 options->ws_error_highlight = ws_error_highlight_default;
0d1e0e78 4400 options->flags.rename_empty = 1;
15af58c1 4401 options->objfind = NULL;
6973dcae 4402
72441af7 4403 /* pathchange left =NULL by default */
6973dcae
JH
4404 options->change = diff_change;
4405 options->add_remove = diff_addremove;
f1c96261 4406 options->use_color = diff_use_color_default;
b68ea12e 4407 options->detect_rename = diff_detect_rename_default;
07ab4dec 4408 options->xdl_opts |= diff_algorithm;
433860f3
MH
4409 if (diff_indent_heuristic)
4410 DIFF_XDL_SET(options, INDENT_HEURISTIC);
eab9a40b 4411
6d8940b5
SB
4412 options->orderfile = diff_order_file_cfg;
4413
f89504dd
EC
4414 if (diff_no_prefix) {
4415 options->a_prefix = options->b_prefix = "";
4416 } else if (!diff_mnemonic_prefix) {
a5a818ee
JH
4417 options->a_prefix = "a/";
4418 options->b_prefix = "b/";
4419 }
2e2d5ac1
SB
4420
4421 options->color_moved = diff_color_moved_default;
626c0b5d 4422 options->color_moved_ws_handling = diff_color_moved_ws_default;
6973dcae
JH
4423}
4424
28452655 4425void diff_setup_done(struct diff_options *options)
6973dcae 4426{
4d8c51aa
SB
4427 unsigned check_mask = DIFF_FORMAT_NAME |
4428 DIFF_FORMAT_NAME_STATUS |
4429 DIFF_FORMAT_CHECKDIFF |
4430 DIFF_FORMAT_NO_OUTPUT;
de1d81d5 4431 /*
4432 * This must be signed because we're comparing against a potentially
4433 * negative value.
4434 */
4435 const int hexsz = the_hash_algo->hexsz;
d7de00f7 4436
6c374008
JH
4437 if (options->set_default)
4438 options->set_default(options);
4439
4d8c51aa 4440 if (HAS_MULTI_BITS(options->output_format & check_mask))
a2f05c94 4441 die(_("--name-only, --name-status, --check and -s are mutually exclusive"));
d7de00f7 4442
5e505257
SB
4443 if (HAS_MULTI_BITS(options->pickaxe_opts & DIFF_PICKAXE_KINDS_MASK))
4444 die(_("-G, -S and --find-object are mutually exclusive"));
4445
f245194f
JH
4446 /*
4447 * Most of the time we can say "there are changes"
4448 * only by checking if there are changed paths, but
4449 * --ignore-whitespace* options force us to look
97bf2a08 4450 * inside contents.
f245194f
JH
4451 */
4452
446d12cb 4453 if ((options->xdl_opts & XDF_WHITESPACE_FLAGS))
0d1e0e78 4454 options->flags.diff_from_contents = 1;
f245194f 4455 else
0d1e0e78 4456 options->flags.diff_from_contents = 0;
f245194f 4457
0d1e0e78 4458 if (options->flags.find_copies_harder)
03b9d560
JH
4459 options->detect_rename = DIFF_DETECT_COPY;
4460
0d1e0e78 4461 if (!options->flags.relative_name)
cd676a51
JH
4462 options->prefix = NULL;
4463 if (options->prefix)
4464 options->prefix_length = strlen(options->prefix);
4465 else
4466 options->prefix_length = 0;
4467
c6744349
TH
4468 if (options->output_format & (DIFF_FORMAT_NAME |
4469 DIFF_FORMAT_NAME_STATUS |
4470 DIFF_FORMAT_CHECKDIFF |
4471 DIFF_FORMAT_NO_OUTPUT))
4472 options->output_format &= ~(DIFF_FORMAT_RAW |
74e2abe5 4473 DIFF_FORMAT_NUMSTAT |
c6744349 4474 DIFF_FORMAT_DIFFSTAT |
ebd124c6 4475 DIFF_FORMAT_SHORTSTAT |
7df7c019 4476 DIFF_FORMAT_DIRSTAT |
c6744349
TH
4477 DIFF_FORMAT_SUMMARY |
4478 DIFF_FORMAT_PATCH);
4479
6973dcae
JH
4480 /*
4481 * These cases always need recursive; we do not drop caller-supplied
4482 * recursive bits for other formats here.
4483 */
c6744349 4484 if (options->output_format & (DIFF_FORMAT_PATCH |
74e2abe5 4485 DIFF_FORMAT_NUMSTAT |
c6744349 4486 DIFF_FORMAT_DIFFSTAT |
ebd124c6 4487 DIFF_FORMAT_SHORTSTAT |
7df7c019 4488 DIFF_FORMAT_DIRSTAT |
d7014dc0 4489 DIFF_FORMAT_SUMMARY |
c6744349 4490 DIFF_FORMAT_CHECKDIFF))
0d1e0e78 4491 options->flags.recursive = 1;
5e363541 4492 /*
3969cf7d 4493 * Also pickaxe would not work very well if you do not say recursive
5e363541 4494 */
cf63051a 4495 if (options->pickaxe_opts & DIFF_PICKAXE_KINDS_MASK)
0d1e0e78 4496 options->flags.recursive = 1;
ae6d5c1b
JL
4497 /*
4498 * When patches are generated, submodules diffed against the work tree
4499 * must be checked for dirtiness too so it can be shown in the output
4500 */
4501 if (options->output_format & DIFF_FORMAT_PATCH)
0d1e0e78 4502 options->flags.dirty_submodules = 1;
5e363541 4503
6973dcae
JH
4504 if (options->detect_rename && options->rename_limit < 0)
4505 options->rename_limit = diff_rename_limit_default;
de1d81d5 4506 if (hexsz < options->abbrev)
4507 options->abbrev = hexsz; /* full */
6973dcae 4508
68aacb2f
JH
4509 /*
4510 * It does not make sense to show the first hit we happened
4511 * to have found. It does not make sense not to return with
4512 * exit code in such a case either.
4513 */
0d1e0e78 4514 if (options->flags.quick) {
68aacb2f 4515 options->output_format = DIFF_FORMAT_NO_OUTPUT;
0d1e0e78 4516 options->flags.exit_with_status = 1;
68aacb2f 4517 }
ee7fb0b1 4518
0ea7d5b6 4519 options->diff_path_counter = 0;
b0e2c999 4520
0d1e0e78 4521 if (options->flags.follow_renames && options->pathspec.nr != 1)
dd63f169 4522 die(_("--follow requires exactly one pathspec"));
2e2d5ac1
SB
4523
4524 if (!options->use_color || external_diff())
4525 options->color_moved = 0;
6973dcae
JH
4526}
4527
d2543b8e 4528static int opt_arg(const char *arg, int arg_short, const char *arg_long, int *val)
ee1e5412
LT
4529{
4530 char c, *eq;
4531 int len;
4532
4533 if (*arg != '-')
4534 return 0;
4535 c = *++arg;
4536 if (!c)
4537 return 0;
4538 if (c == arg_short) {
4539 c = *++arg;
4540 if (!c)
4541 return 1;
4542 if (val && isdigit(c)) {
4543 char *end;
4544 int n = strtoul(arg, &end, 10);
4545 if (*end)
4546 return 0;
4547 *val = n;
4548 return 1;
4549 }
4550 return 0;
4551 }
4552 if (c != '-')
4553 return 0;
4554 arg++;
2c5495f7
RM
4555 eq = strchrnul(arg, '=');
4556 len = eq - arg;
ee1e5412
LT
4557 if (!len || strncmp(arg, arg_long, len))
4558 return 0;
2c5495f7 4559 if (*eq) {
ee1e5412
LT
4560 int n;
4561 char *end;
4562 if (!isdigit(*++eq))
4563 return 0;
4564 n = strtoul(eq, &end, 10);
4565 if (*end)
4566 return 0;
4567 *val = n;
4568 }
4569 return 1;
4570}
4571
16befb8b
JH
4572static int diff_scoreopt_parse(const char *opt);
4573
dea007fb
MM
4574static inline int short_opt(char opt, const char **argv,
4575 const char **optarg)
4576{
4577 const char *arg = argv[0];
4578 if (arg[0] != '-' || arg[1] != opt)
4579 return 0;
4580 if (arg[2] != '\0') {
4581 *optarg = arg + 2;
4582 return 1;
4583 }
4584 if (!argv[1])
4585 die("Option '%c' requires a value", opt);
4586 *optarg = argv[1];
4587 return 2;
4588}
4589
4590int parse_long_opt(const char *opt, const char **argv,
4591 const char **optarg)
4592{
4593 const char *arg = argv[0];
95b567c7 4594 if (!skip_prefix(arg, "--", &arg))
dea007fb 4595 return 0;
95b567c7 4596 if (!skip_prefix(arg, opt, &arg))
dea007fb 4597 return 0;
b0d12fc9 4598 if (*arg == '=') { /* stuck form: --option=value */
dea007fb
MM
4599 *optarg = arg + 1;
4600 return 1;
4601 }
4602 if (*arg != '\0')
4603 return 0;
4604 /* separate form: --option value */
4605 if (!argv[1])
4606 die("Option '--%s' requires a value", opt);
4607 *optarg = argv[1];
4608 return 2;
4609}
4610
4d7f7a4a
JN
4611static int stat_opt(struct diff_options *options, const char **av)
4612{
4613 const char *arg = av[0];
4614 char *end;
4615 int width = options->stat_width;
4616 int name_width = options->stat_name_width;
969fe57b 4617 int graph_width = options->stat_graph_width;
808e1db2 4618 int count = options->stat_count;
1e57208e 4619 int argcount = 1;
4d7f7a4a 4620
0539cc00 4621 if (!skip_prefix(arg, "--stat", &arg))
033abf97 4622 BUG("stat option does not begin with --stat: %s", arg);
4d7f7a4a
JN
4623 end = (char *)arg;
4624
4625 switch (*arg) {
4626 case '-':
95b567c7 4627 if (skip_prefix(arg, "-width", &arg)) {
1e57208e
MM
4628 if (*arg == '=')
4629 width = strtoul(arg + 1, &end, 10);
4630 else if (!*arg && !av[1])
a2f05c94 4631 die_want_option("--stat-width");
1e57208e
MM
4632 else if (!*arg) {
4633 width = strtoul(av[1], &end, 10);
4634 argcount = 2;
4635 }
95b567c7 4636 } else if (skip_prefix(arg, "-name-width", &arg)) {
1e57208e
MM
4637 if (*arg == '=')
4638 name_width = strtoul(arg + 1, &end, 10);
4639 else if (!*arg && !av[1])
a2f05c94 4640 die_want_option("--stat-name-width");
1e57208e
MM
4641 else if (!*arg) {
4642 name_width = strtoul(av[1], &end, 10);
4643 argcount = 2;
4644 }
95b567c7 4645 } else if (skip_prefix(arg, "-graph-width", &arg)) {
969fe57b
ZJS
4646 if (*arg == '=')
4647 graph_width = strtoul(arg + 1, &end, 10);
4648 else if (!*arg && !av[1])
a2f05c94 4649 die_want_option("--stat-graph-width");
969fe57b
ZJS
4650 else if (!*arg) {
4651 graph_width = strtoul(av[1], &end, 10);
4652 argcount = 2;
4653 }
95b567c7 4654 } else if (skip_prefix(arg, "-count", &arg)) {
808e1db2
MG
4655 if (*arg == '=')
4656 count = strtoul(arg + 1, &end, 10);
4657 else if (!*arg && !av[1])
a2f05c94 4658 die_want_option("--stat-count");
808e1db2
MG
4659 else if (!*arg) {
4660 count = strtoul(av[1], &end, 10);
4661 argcount = 2;
4662 }
1e57208e 4663 }
4d7f7a4a
JN
4664 break;
4665 case '=':
4666 width = strtoul(arg+1, &end, 10);
4667 if (*end == ',')
4668 name_width = strtoul(end+1, &end, 10);
808e1db2
MG
4669 if (*end == ',')
4670 count = strtoul(end+1, &end, 10);
4d7f7a4a
JN
4671 }
4672
4673 /* Important! This checks all the error cases! */
4674 if (*end)
4675 return 0;
4676 options->output_format |= DIFF_FORMAT_DIFFSTAT;
4677 options->stat_name_width = name_width;
969fe57b 4678 options->stat_graph_width = graph_width;
4d7f7a4a 4679 options->stat_width = width;
808e1db2 4680 options->stat_count = count;
1e57208e 4681 return argcount;
4d7f7a4a
JN
4682}
4683
333f3fb0
JH
4684static int parse_dirstat_opt(struct diff_options *options, const char *params)
4685{
51670fc8
JH
4686 struct strbuf errmsg = STRBUF_INIT;
4687 if (parse_dirstat_params(options, params, &errmsg))
7478ac57 4688 die(_("Failed to parse --dirstat/-X option parameter:\n%s"),
51670fc8
JH
4689 errmsg.buf);
4690 strbuf_release(&errmsg);
333f3fb0
JH
4691 /*
4692 * The caller knows a dirstat-related option is given from the command
4693 * line; allow it to say "return this_function();"
4694 */
4695 options->output_format |= DIFF_FORMAT_DIRSTAT;
4696 return 1;
4697}
4698
c47ef57c
RR
4699static int parse_submodule_opt(struct diff_options *options, const char *value)
4700{
4701 if (parse_submodule_params(options, value))
4702 die(_("Failed to parse --submodule option parameter: '%s'"),
4703 value);
4704 return 1;
4705}
4706
1ecc1cbd
JH
4707static const char diff_status_letters[] = {
4708 DIFF_STATUS_ADDED,
4709 DIFF_STATUS_COPIED,
4710 DIFF_STATUS_DELETED,
4711 DIFF_STATUS_MODIFIED,
4712 DIFF_STATUS_RENAMED,
4713 DIFF_STATUS_TYPE_CHANGED,
4714 DIFF_STATUS_UNKNOWN,
4715 DIFF_STATUS_UNMERGED,
4716 DIFF_STATUS_FILTER_AON,
4717 DIFF_STATUS_FILTER_BROKEN,
4718 '\0',
4719};
4720
4721static unsigned int filter_bit['Z' + 1];
4722
4723static void prepare_filter_bits(void)
4724{
4725 int i;
4726
4727 if (!filter_bit[DIFF_STATUS_ADDED]) {
4728 for (i = 0; diff_status_letters[i]; i++)
4729 filter_bit[(int) diff_status_letters[i]] = (1 << i);
4730 }
4731}
4732
4733static unsigned filter_bit_tst(char status, const struct diff_options *opt)
4734{
4735 return opt->filter & filter_bit[(int) status];
4736}
4737
4738static int parse_diff_filter_opt(const char *optarg, struct diff_options *opt)
4739{
4740 int i, optch;
4741
4742 prepare_filter_bits();
7f2ea5f0
JH
4743
4744 /*
4745 * If there is a negation e.g. 'd' in the input, and we haven't
4746 * initialized the filter field with another --diff-filter, start
4747 * from full set of bits, except for AON.
4748 */
4749 if (!opt->filter) {
4750 for (i = 0; (optch = optarg[i]) != '\0'; i++) {
4751 if (optch < 'a' || 'z' < optch)
4752 continue;
4753 opt->filter = (1 << (ARRAY_SIZE(diff_status_letters) - 1)) - 1;
4754 opt->filter &= ~filter_bit[DIFF_STATUS_FILTER_AON];
4755 break;
4756 }
4757 }
4758
1ecc1cbd
JH
4759 for (i = 0; (optch = optarg[i]) != '\0'; i++) {
4760 unsigned int bit;
7f2ea5f0
JH
4761 int negate;
4762
4763 if ('a' <= optch && optch <= 'z') {
4764 negate = 1;
4765 optch = toupper(optch);
4766 } else {
4767 negate = 0;
4768 }
1ecc1cbd
JH
4769
4770 bit = (0 <= optch && optch <= 'Z') ? filter_bit[optch] : 0;
4771 if (!bit)
bf142ec4 4772 return optarg[i];
7f2ea5f0
JH
4773 if (negate)
4774 opt->filter &= ~bit;
4775 else
4776 opt->filter |= bit;
1ecc1cbd
JH
4777 }
4778 return 0;
4779}
4780
71482d38
MM
4781static void enable_patch_output(int *fmt) {
4782 *fmt &= ~DIFF_FORMAT_NO_OUTPUT;
4783 *fmt |= DIFF_FORMAT_PATCH;
4784}
4785
077965f8 4786static int parse_ws_error_highlight_opt(struct diff_options *opt, const char *arg)
b8767f79 4787{
077965f8 4788 int val = parse_ws_error_highlight(arg);
b8767f79 4789
077965f8
JH
4790 if (val < 0) {
4791 error("unknown value after ws-error-highlight=%.*s",
4792 -1 - val, arg);
4793 return 0;
b8767f79
JH
4794 }
4795 opt->ws_error_highlight = val;
4796 return 1;
4797}
4798
15af58c1
SB
4799static int parse_objfind_opt(struct diff_options *opt, const char *arg)
4800{
4801 struct object_id oid;
4802
4803 if (get_oid(arg, &oid))
4804 return error("unable to resolve '%s'", arg);
4805
4806 if (!opt->objfind)
4807 opt->objfind = xcalloc(1, sizeof(*opt->objfind));
4808
4809 opt->pickaxe_opts |= DIFF_PICKAXE_KIND_OBJFIND;
4810 opt->flags.recursive = 1;
4811 opt->flags.tree_in_recursive = 1;
4812 oidset_insert(opt->objfind, &oid);
4813 return 1;
4814}
4815
a97262c6
NTND
4816int diff_opt_parse(struct diff_options *options,
4817 const char **av, int ac, const char *prefix)
6973dcae
JH
4818{
4819 const char *arg = av[0];
dea007fb
MM
4820 const char *optarg;
4821 int argcount;
d054680c 4822
a97262c6
NTND
4823 if (!prefix)
4824 prefix = "";
4825
d054680c 4826 /* Output format options */
71482d38
MM
4827 if (!strcmp(arg, "-p") || !strcmp(arg, "-u") || !strcmp(arg, "--patch")
4828 || opt_arg(arg, 'U', "unified", &options->context))
4829 enable_patch_output(&options->output_format);
a610786f
TH
4830 else if (!strcmp(arg, "--raw"))
4831 options->output_format |= DIFF_FORMAT_RAW;
71482d38
MM
4832 else if (!strcmp(arg, "--patch-with-raw")) {
4833 enable_patch_output(&options->output_format);
4834 options->output_format |= DIFF_FORMAT_RAW;
4835 } else if (!strcmp(arg, "--numstat"))
74e2abe5 4836 options->output_format |= DIFF_FORMAT_NUMSTAT;
8f67f8ae 4837 else if (!strcmp(arg, "--shortstat"))
ebd124c6 4838 options->output_format |= DIFF_FORMAT_SHORTSTAT;
948cbe67
CC
4839 else if (skip_prefix(arg, "-X", &arg) ||
4840 skip_to_optional_arg(arg, "--dirstat", &arg))
ae021d87 4841 return parse_dirstat_opt(options, arg);
333f3fb0
JH
4842 else if (!strcmp(arg, "--cumulative"))
4843 return parse_dirstat_opt(options, "cumulative");
948cbe67 4844 else if (skip_to_optional_arg(arg, "--dirstat-by-file", &arg)) {
333f3fb0 4845 parse_dirstat_opt(options, "files");
ae021d87 4846 return parse_dirstat_opt(options, arg);
f88d225f 4847 }
d054680c
PH
4848 else if (!strcmp(arg, "--check"))
4849 options->output_format |= DIFF_FORMAT_CHECKDIFF;
4850 else if (!strcmp(arg, "--summary"))
4851 options->output_format |= DIFF_FORMAT_SUMMARY;
71482d38
MM
4852 else if (!strcmp(arg, "--patch-with-stat")) {
4853 enable_patch_output(&options->output_format);
4854 options->output_format |= DIFF_FORMAT_DIFFSTAT;
4855 } else if (!strcmp(arg, "--name-only"))
d054680c
PH
4856 options->output_format |= DIFF_FORMAT_NAME;
4857 else if (!strcmp(arg, "--name-status"))
4858 options->output_format |= DIFF_FORMAT_NAME_STATUS;
d09cd15d 4859 else if (!strcmp(arg, "-s") || !strcmp(arg, "--no-patch"))
d054680c 4860 options->output_format |= DIFF_FORMAT_NO_OUTPUT;
59556548 4861 else if (starts_with(arg, "--stat"))
808e1db2 4862 /* --stat, --stat-width, --stat-name-width, or --stat-count */
4d7f7a4a 4863 return stat_opt(options, av);
ddf88fa6
NTND
4864 else if (!strcmp(arg, "--compact-summary")) {
4865 options->flags.stat_with_summary = 1;
4866 options->output_format |= DIFF_FORMAT_DIFFSTAT;
4867 } else if (!strcmp(arg, "--no-compact-summary"))
4868 options->flags.stat_with_summary = 0;
7648b79e
SB
4869 else if (skip_prefix(arg, "--output-indicator-new=", &arg))
4870 options->output_indicators[OUTPUT_INDICATOR_NEW] = arg[0];
4871 else if (skip_prefix(arg, "--output-indicator-old=", &arg))
4872 options->output_indicators[OUTPUT_INDICATOR_OLD] = arg[0];
4873 else if (skip_prefix(arg, "--output-indicator-context=", &arg))
4874 options->output_indicators[OUTPUT_INDICATOR_CONTEXT] = arg[0];
d054680c
PH
4875
4876 /* renames options */
948cbe67
CC
4877 else if (starts_with(arg, "-B") ||
4878 skip_to_optional_arg(arg, "--break-rewrites", NULL)) {
8f67f8ae 4879 if ((options->break_opt = diff_scoreopt_parse(arg)) == -1)
07cd7265 4880 return error("invalid argument to -B: %s", arg+2);
6973dcae 4881 }
948cbe67
CC
4882 else if (starts_with(arg, "-M") ||
4883 skip_to_optional_arg(arg, "--find-renames", NULL)) {
8f67f8ae 4884 if ((options->rename_score = diff_scoreopt_parse(arg)) == -1)
07cd7265 4885 return error("invalid argument to -M: %s", arg+2);
6973dcae
JH
4886 options->detect_rename = DIFF_DETECT_RENAME;
4887 }
467ddc14
JH
4888 else if (!strcmp(arg, "-D") || !strcmp(arg, "--irreversible-delete")) {
4889 options->irreversible_delete = 1;
4890 }
948cbe67
CC
4891 else if (starts_with(arg, "-C") ||
4892 skip_to_optional_arg(arg, "--find-copies", NULL)) {
ca6c0970 4893 if (options->detect_rename == DIFF_DETECT_COPY)
0d1e0e78 4894 options->flags.find_copies_harder = 1;
8f67f8ae 4895 if ((options->rename_score = diff_scoreopt_parse(arg)) == -1)
07cd7265 4896 return error("invalid argument to -C: %s", arg+2);
6973dcae
JH
4897 options->detect_rename = DIFF_DETECT_COPY;
4898 }
d054680c
PH
4899 else if (!strcmp(arg, "--no-renames"))
4900 options->detect_rename = 0;
90d43b07 4901 else if (!strcmp(arg, "--rename-empty"))
0d1e0e78 4902 options->flags.rename_empty = 1;
90d43b07 4903 else if (!strcmp(arg, "--no-rename-empty"))
0d1e0e78 4904 options->flags.rename_empty = 0;
1efad511 4905 else if (skip_to_optional_arg_default(arg, "--relative", &arg, NULL)) {
0d1e0e78 4906 options->flags.relative_name = 1;
1efad511
JH
4907 if (arg)
4908 options->prefix = arg;
c0cb4a06 4909 }
d054680c
PH
4910
4911 /* xdiff options */
81b568c8
JH
4912 else if (!strcmp(arg, "--minimal"))
4913 DIFF_XDL_SET(options, NEED_MINIMAL);
4914 else if (!strcmp(arg, "--no-minimal"))
4915 DIFF_XDL_CLR(options, NEED_MINIMAL);
d054680c 4916 else if (!strcmp(arg, "-w") || !strcmp(arg, "--ignore-all-space"))
628d5c2b 4917 DIFF_XDL_SET(options, IGNORE_WHITESPACE);
d054680c 4918 else if (!strcmp(arg, "-b") || !strcmp(arg, "--ignore-space-change"))
628d5c2b 4919 DIFF_XDL_SET(options, IGNORE_WHITESPACE_CHANGE);
d054680c 4920 else if (!strcmp(arg, "--ignore-space-at-eol"))
628d5c2b 4921 DIFF_XDL_SET(options, IGNORE_WHITESPACE_AT_EOL);
e9282f02
JH
4922 else if (!strcmp(arg, "--ignore-cr-at-eol"))
4923 DIFF_XDL_SET(options, IGNORE_CR_AT_EOL);
36617af7
AP
4924 else if (!strcmp(arg, "--ignore-blank-lines"))
4925 DIFF_XDL_SET(options, IGNORE_BLANK_LINES);
3cde4e02 4926 else if (!strcmp(arg, "--indent-heuristic"))
433860f3 4927 DIFF_XDL_SET(options, INDENT_HEURISTIC);
3cde4e02 4928 else if (!strcmp(arg, "--no-indent-heuristic"))
433860f3 4929 DIFF_XDL_CLR(options, INDENT_HEURISTIC);
2477ab2e
JT
4930 else if (!strcmp(arg, "--patience")) {
4931 int i;
307ab20b 4932 options->xdl_opts = DIFF_WITH_ALG(options, PATIENCE_DIFF);
2477ab2e
JT
4933 /*
4934 * Both --patience and --anchored use PATIENCE_DIFF
4935 * internally, so remove any anchors previously
4936 * specified.
4937 */
4938 for (i = 0; i < options->anchors_nr; i++)
4939 free(options->anchors[i]);
4940 options->anchors_nr = 0;
4941 } else if (!strcmp(arg, "--histogram"))
307ab20b 4942 options->xdl_opts = DIFF_WITH_ALG(options, HISTOGRAM_DIFF);
0895c6d4
JK
4943 else if ((argcount = parse_long_opt("diff-algorithm", av, &optarg))) {
4944 long value = parse_algorithm_value(optarg);
07924d4d
MP
4945 if (value < 0)
4946 return error("option diff-algorithm accepts \"myers\", "
4947 "\"minimal\", \"patience\" and \"histogram\"");
4948 /* clear out previous settings */
4949 DIFF_XDL_CLR(options, NEED_MINIMAL);
4950 options->xdl_opts &= ~XDF_DIFF_ALGORITHM_MASK;
4951 options->xdl_opts |= value;
0895c6d4 4952 return argcount;
2477ab2e
JT
4953 } else if (skip_prefix(arg, "--anchored=", &arg)) {
4954 options->xdl_opts = DIFF_WITH_ALG(options, PATIENCE_DIFF);
4955 ALLOC_GROW(options->anchors, options->anchors_nr + 1,
4956 options->anchors_alloc);
4957 options->anchors[options->anchors_nr++] = xstrdup(arg);
07924d4d 4958 }
d054680c
PH
4959
4960 /* flags options */
4961 else if (!strcmp(arg, "--binary")) {
71482d38 4962 enable_patch_output(&options->output_format);
0d1e0e78 4963 options->flags.binary = 1;
d054680c
PH
4964 }
4965 else if (!strcmp(arg, "--full-index"))
0d1e0e78 4966 options->flags.full_index = 1;
d054680c 4967 else if (!strcmp(arg, "-a") || !strcmp(arg, "--text"))
0d1e0e78 4968 options->flags.text = 1;
d054680c 4969 else if (!strcmp(arg, "-R"))
0d1e0e78 4970 options->flags.reverse_diff = 1;
6973dcae 4971 else if (!strcmp(arg, "--find-copies-harder"))
0d1e0e78 4972 options->flags.find_copies_harder = 1;
750f7b66 4973 else if (!strcmp(arg, "--follow"))
0d1e0e78 4974 options->flags.follow_renames = 1;
076c9837 4975 else if (!strcmp(arg, "--no-follow")) {
0d1e0e78
BW
4976 options->flags.follow_renames = 0;
4977 options->flags.default_follow_renames = 0;
cf81f94d 4978 } else if (skip_to_optional_arg_default(arg, "--color", &arg, "always")) {
ae021d87 4979 int value = git_config_colorbool(NULL, arg);
daa0c3d9 4980 if (value < 0)
73e9da01 4981 return error("option `color' expects \"always\", \"auto\", or \"never\"");
daa0c3d9 4982 options->use_color = value;
73e9da01 4983 }
fef88bb0 4984 else if (!strcmp(arg, "--no-color"))
f1c96261 4985 options->use_color = 0;
2e2d5ac1
SB
4986 else if (!strcmp(arg, "--color-moved")) {
4987 if (diff_color_moved_default)
4988 options->color_moved = diff_color_moved_default;
4989 if (options->color_moved == COLOR_MOVED_NO)
4990 options->color_moved = COLOR_MOVED_DEFAULT;
4991 } else if (!strcmp(arg, "--no-color-moved"))
4992 options->color_moved = COLOR_MOVED_NO;
4993 else if (skip_prefix(arg, "--color-moved=", &arg)) {
4994 int cm = parse_color_moved(arg);
4995 if (cm < 0)
4996 die("bad --color-moved argument: %s", arg);
4997 options->color_moved = cm;
b3095712
SB
4998 } else if (skip_prefix(arg, "--color-moved-ws=", &arg)) {
4999 options->color_moved_ws_handling = parse_color_moved_ws(arg);
cf81f94d 5000 } else if (skip_to_optional_arg_default(arg, "--color-words", &options->word_regex, NULL)) {
f1c96261 5001 options->use_color = 1;
882749a0 5002 options->word_diff = DIFF_WORDS_COLOR;
2b6a5417 5003 }
882749a0
TR
5004 else if (!strcmp(arg, "--word-diff")) {
5005 if (options->word_diff == DIFF_WORDS_NONE)
5006 options->word_diff = DIFF_WORDS_PLAIN;
5007 }
ae021d87
JK
5008 else if (skip_prefix(arg, "--word-diff=", &arg)) {
5009 if (!strcmp(arg, "plain"))
882749a0 5010 options->word_diff = DIFF_WORDS_PLAIN;
ae021d87 5011 else if (!strcmp(arg, "color")) {
f1c96261 5012 options->use_color = 1;
882749a0
TR
5013 options->word_diff = DIFF_WORDS_COLOR;
5014 }
ae021d87 5015 else if (!strcmp(arg, "porcelain"))
882749a0 5016 options->word_diff = DIFF_WORDS_PORCELAIN;
ae021d87 5017 else if (!strcmp(arg, "none"))
882749a0
TR
5018 options->word_diff = DIFF_WORDS_NONE;
5019 else
ae021d87 5020 die("bad --word-diff argument: %s", arg);
882749a0 5021 }
dea007fb 5022 else if ((argcount = parse_long_opt("word-diff-regex", av, &optarg))) {
882749a0
TR
5023 if (options->word_diff == DIFF_WORDS_NONE)
5024 options->word_diff = DIFF_WORDS_PLAIN;
dea007fb
MM
5025 options->word_regex = optarg;
5026 return argcount;
882749a0 5027 }
41bbf9d5 5028 else if (!strcmp(arg, "--exit-code"))
0d1e0e78 5029 options->flags.exit_with_status = 1;
68aacb2f 5030 else if (!strcmp(arg, "--quiet"))
0d1e0e78 5031 options->flags.quick = 1;
72909bef 5032 else if (!strcmp(arg, "--ext-diff"))
0d1e0e78 5033 options->flags.allow_external = 1;
72909bef 5034 else if (!strcmp(arg, "--no-ext-diff"))
0d1e0e78 5035 options->flags.allow_external = 0;
afa73c53 5036 else if (!strcmp(arg, "--textconv")) {
0d1e0e78
BW
5037 options->flags.allow_textconv = 1;
5038 options->flags.textconv_set_via_cmdline = 1;
afa73c53 5039 } else if (!strcmp(arg, "--no-textconv"))
0d1e0e78 5040 options->flags.allow_textconv = 0;
cf81f94d 5041 else if (skip_to_optional_arg_default(arg, "--ignore-submodules", &arg, "all")) {
0d1e0e78 5042 options->flags.override_submodule_config = 1;
ae021d87 5043 handle_ignore_submodules_arg(options, arg);
cf81f94d 5044 } else if (skip_to_optional_arg_default(arg, "--submodule", &arg, "log"))
ae021d87 5045 return parse_submodule_opt(options, arg);
b8767f79 5046 else if (skip_prefix(arg, "--ws-error-highlight=", &arg))
077965f8 5047 return parse_ws_error_highlight_opt(options, arg);
b42b4519
NTND
5048 else if (!strcmp(arg, "--ita-invisible-in-index"))
5049 options->ita_invisible_in_index = 1;
5050 else if (!strcmp(arg, "--ita-visible-in-index"))
5051 options->ita_invisible_in_index = 0;
d054680c
PH
5052
5053 /* misc options */
5054 else if (!strcmp(arg, "-z"))
5055 options->line_termination = 0;
dea007fb
MM
5056 else if ((argcount = short_opt('l', av, &optarg))) {
5057 options->rename_limit = strtoul(optarg, NULL, 10);
5058 return argcount;
5059 }
5060 else if ((argcount = short_opt('S', av, &optarg))) {
5061 options->pickaxe = optarg;
f506b8e8
JH
5062 options->pickaxe_opts |= DIFF_PICKAXE_KIND_S;
5063 return argcount;
5064 } else if ((argcount = short_opt('G', av, &optarg))) {
5065 options->pickaxe = optarg;
5066 options->pickaxe_opts |= DIFF_PICKAXE_KIND_G;
dea007fb
MM
5067 return argcount;
5068 }
d054680c 5069 else if (!strcmp(arg, "--pickaxe-all"))
f506b8e8 5070 options->pickaxe_opts |= DIFF_PICKAXE_ALL;
d054680c 5071 else if (!strcmp(arg, "--pickaxe-regex"))
f506b8e8 5072 options->pickaxe_opts |= DIFF_PICKAXE_REGEX;
dea007fb 5073 else if ((argcount = short_opt('O', av, &optarg))) {
e4da43b1 5074 options->orderfile = prefix_filename(prefix, optarg);
dea007fb 5075 return argcount;
15af58c1
SB
5076 } else if (skip_prefix(arg, "--find-object=", &arg))
5077 return parse_objfind_opt(options, arg);
dea007fb 5078 else if ((argcount = parse_long_opt("diff-filter", av, &optarg))) {
1ecc1cbd
JH
5079 int offending = parse_diff_filter_opt(optarg, options);
5080 if (offending)
5081 die("unknown change class '%c' in --diff-filter=%s",
5082 offending, optarg);
dea007fb
MM
5083 return argcount;
5084 }
43d1948b
JB
5085 else if (!strcmp(arg, "--no-abbrev"))
5086 options->abbrev = 0;
d054680c
PH
5087 else if (!strcmp(arg, "--abbrev"))
5088 options->abbrev = DEFAULT_ABBREV;
ae021d87
JK
5089 else if (skip_prefix(arg, "--abbrev=", &arg)) {
5090 options->abbrev = strtoul(arg, NULL, 10);
d054680c
PH
5091 if (options->abbrev < MINIMUM_ABBREV)
5092 options->abbrev = MINIMUM_ABBREV;
de1d81d5 5093 else if (the_hash_algo->hexsz < options->abbrev)
5094 options->abbrev = the_hash_algo->hexsz;
d054680c 5095 }
dea007fb
MM
5096 else if ((argcount = parse_long_opt("src-prefix", av, &optarg))) {
5097 options->a_prefix = optarg;
5098 return argcount;
5099 }
660e113c
JK
5100 else if ((argcount = parse_long_opt("line-prefix", av, &optarg))) {
5101 options->line_prefix = optarg;
5102 options->line_prefix_length = strlen(options->line_prefix);
5103 graph_setup_line_prefix(options);
5104 return argcount;
5105 }
dea007fb
MM
5106 else if ((argcount = parse_long_opt("dst-prefix", av, &optarg))) {
5107 options->b_prefix = optarg;
5108 return argcount;
5109 }
eab9a40b
JS
5110 else if (!strcmp(arg, "--no-prefix"))
5111 options->a_prefix = options->b_prefix = "";
6d0e674a
RS
5112 else if (opt_arg(arg, '\0', "inter-hunk-context",
5113 &options->interhunkcontext))
5114 ;
14937c2c 5115 else if (!strcmp(arg, "-W"))
0d1e0e78 5116 options->flags.funccontext = 1;
14937c2c 5117 else if (!strcmp(arg, "--function-context"))
0d1e0e78 5118 options->flags.funccontext = 1;
14937c2c 5119 else if (!strcmp(arg, "--no-function-context"))
0d1e0e78 5120 options->flags.funccontext = 0;
dea007fb 5121 else if ((argcount = parse_long_opt("output", av, &optarg))) {
e4da43b1 5122 char *path = prefix_filename(prefix, optarg);
23a9e071 5123 options->file = xfopen(path, "w");
c0c77734 5124 options->close_file = 1;
afc676f2
JS
5125 if (options->use_color != GIT_COLOR_ALWAYS)
5126 options->use_color = GIT_COLOR_NEVER;
e4da43b1 5127 free(path);
dea007fb 5128 return argcount;
c0c77734 5129 } else
6973dcae
JH
5130 return 0;
5131 return 1;
5132}
5133
10ae7526 5134int parse_rename_score(const char **cp_p)
6973dcae
JH
5135{
5136 unsigned long num, scale;
5137 int ch, dot;
5138 const char *cp = *cp_p;
5139
5140 num = 0;
5141 scale = 1;
5142 dot = 0;
eeefa7c9 5143 for (;;) {
6973dcae
JH
5144 ch = *cp;
5145 if ( !dot && ch == '.' ) {
5146 scale = 1;
5147 dot = 1;
5148 } else if ( ch == '%' ) {
5149 scale = dot ? scale*100 : 100;
5150 cp++; /* % is always at the end */
5151 break;
5152 } else if ( ch >= '0' && ch <= '9' ) {
5153 if ( scale < 100000 ) {
5154 scale *= 10;
5155 num = (num*10) + (ch-'0');
5156 }
5157 } else {
5158 break;
5159 }
5160 cp++;
5161 }
5162 *cp_p = cp;
5163
5164 /* user says num divided by scale and we say internally that
5165 * is MAX_SCORE * num / scale.
5166 */
dc49cd76 5167 return (int)((num >= scale) ? MAX_SCORE : (MAX_SCORE * num / scale));
6973dcae
JH
5168}
5169
16befb8b 5170static int diff_scoreopt_parse(const char *opt)
6973dcae
JH
5171{
5172 int opt1, opt2, cmd;
5173
5174 if (*opt++ != '-')
5175 return -1;
5176 cmd = *opt++;
37ab5156
KB
5177 if (cmd == '-') {
5178 /* convert the long-form arguments into short-form versions */
95b567c7 5179 if (skip_prefix(opt, "break-rewrites", &opt)) {
37ab5156
KB
5180 if (*opt == 0 || *opt++ == '=')
5181 cmd = 'B';
95b567c7 5182 } else if (skip_prefix(opt, "find-copies", &opt)) {
37ab5156
KB
5183 if (*opt == 0 || *opt++ == '=')
5184 cmd = 'C';
95b567c7 5185 } else if (skip_prefix(opt, "find-renames", &opt)) {
37ab5156
KB
5186 if (*opt == 0 || *opt++ == '=')
5187 cmd = 'M';
5188 }
5189 }
6973dcae 5190 if (cmd != 'M' && cmd != 'C' && cmd != 'B')
01689909 5191 return -1; /* that is not a -M, -C, or -B option */
6973dcae 5192
10ae7526 5193 opt1 = parse_rename_score(&opt);
6973dcae
JH
5194 if (cmd != 'B')
5195 opt2 = 0;
5196 else {
5197 if (*opt == 0)
5198 opt2 = 0;
5199 else if (*opt != '/')
5200 return -1; /* we expect -B80/99 or -B80 */
5201 else {
5202 opt++;
10ae7526 5203 opt2 = parse_rename_score(&opt);
6973dcae
JH
5204 }
5205 }
5206 if (*opt != 0)
5207 return -1;
5208 return opt1 | (opt2 << 16);
5209}
5210
5211struct diff_queue_struct diff_queued_diff;
5212
5213void diff_q(struct diff_queue_struct *queue, struct diff_filepair *dp)
5214{
4c960a43 5215 ALLOC_GROW(queue->queue, queue->nr + 1, queue->alloc);
6973dcae
JH
5216 queue->queue[queue->nr++] = dp;
5217}
5218
5219struct diff_filepair *diff_queue(struct diff_queue_struct *queue,
5220 struct diff_filespec *one,
5221 struct diff_filespec *two)
5222{
ef677686 5223 struct diff_filepair *dp = xcalloc(1, sizeof(*dp));
6973dcae
JH
5224 dp->one = one;
5225 dp->two = two;
6973dcae
JH
5226 if (queue)
5227 diff_q(queue, dp);
5228 return dp;
5229}
5230
5231void diff_free_filepair(struct diff_filepair *p)
5232{
9fb88419
LT
5233 free_filespec(p->one);
5234 free_filespec(p->two);
6973dcae
JH
5235 free(p);
5236}
5237
d6cece51 5238const char *diff_aligned_abbrev(const struct object_id *oid, int len)
6973dcae
JH
5239{
5240 int abblen;
5241 const char *abbrev;
6973dcae 5242
7cb6ac1e 5243 /* Do we want all 40 hex characters? */
02afca1e 5244 if (len == the_hash_algo->hexsz)
d6cece51
JK
5245 return oid_to_hex(oid);
5246
7cb6ac1e 5247 /* An abbreviated value is fine, possibly followed by an ellipsis. */
4f03666a 5248 abbrev = diff_abbrev_oid(oid, len);
7cb6ac1e
AR
5249
5250 if (!print_sha1_ellipsis())
5251 return abbrev;
5252
6973dcae 5253 abblen = strlen(abbrev);
d709f1fb
JH
5254
5255 /*
7cb6ac1e 5256 * In well-behaved cases, where the abbreviated result is the
d709f1fb
JH
5257 * same as the requested length, append three dots after the
5258 * abbreviation (hence the whole logic is limited to the case
5259 * where abblen < 37); when the actual abbreviated result is a
5260 * bit longer than the requested length, we reduce the number
5261 * of dots so that they match the well-behaved ones. However,
5262 * if the actual abbreviation is longer than the requested
5263 * length by more than three, we give up on aligning, and add
5264 * three dots anyway, to indicate that the output is not the
5265 * full object name. Yes, this may be suboptimal, but this
5266 * appears only in "diff --raw --abbrev" output and it is not
5267 * worth the effort to change it now. Note that this would
5268 * likely to work fine when the automatic sizing of default
5269 * abbreviation length is used--we would be fed -1 in "len" in
5270 * that case, and will end up always appending three-dots, but
5271 * the automatic sizing is supposed to give abblen that ensures
5272 * uniqueness across all objects (statistically speaking).
5273 */
02afca1e 5274 if (abblen < the_hash_algo->hexsz - 3) {
dc01505f 5275 static char hex[GIT_MAX_HEXSZ + 1];
6973dcae 5276 if (len < abblen && abblen <= len + 2)
5096d490 5277 xsnprintf(hex, sizeof(hex), "%s%.*s", abbrev, len+3-abblen, "..");
6973dcae 5278 else
5096d490 5279 xsnprintf(hex, sizeof(hex), "%s...", abbrev);
6973dcae
JH
5280 return hex;
5281 }
d6cece51
JK
5282
5283 return oid_to_hex(oid);
6973dcae
JH
5284}
5285
663af342 5286static void diff_flush_raw(struct diff_filepair *p, struct diff_options *opt)
6973dcae 5287{
663af342
PH
5288 int line_termination = opt->line_termination;
5289 int inter_name_termination = line_termination ? '\t' : '\0';
6973dcae 5290
30997bb8 5291 fprintf(opt->file, "%s", diff_line_prefix(opt));
663af342 5292 if (!(opt->output_format & DIFF_FORMAT_NAME_STATUS)) {
c0c77734 5293 fprintf(opt->file, ":%06o %06o %s ", p->one->mode, p->two->mode,
d6cece51 5294 diff_aligned_abbrev(&p->one->oid, opt->abbrev));
a0d12c44 5295 fprintf(opt->file, "%s ",
d6cece51 5296 diff_aligned_abbrev(&p->two->oid, opt->abbrev));
6973dcae 5297 }
663af342 5298 if (p->score) {
c0c77734
DB
5299 fprintf(opt->file, "%c%03d%c", p->status, similarity_index(p),
5300 inter_name_termination);
663af342 5301 } else {
c0c77734 5302 fprintf(opt->file, "%c%c", p->status, inter_name_termination);
6973dcae 5303 }
6973dcae 5304
cd676a51
JH
5305 if (p->status == DIFF_STATUS_COPIED ||
5306 p->status == DIFF_STATUS_RENAMED) {
5307 const char *name_a, *name_b;
5308 name_a = p->one->path;
5309 name_b = p->two->path;
5310 strip_prefix(opt->prefix_length, &name_a, &name_b);
c0c77734
DB
5311 write_name_quoted(name_a, opt->file, inter_name_termination);
5312 write_name_quoted(name_b, opt->file, line_termination);
663af342 5313 } else {
cd676a51
JH
5314 const char *name_a, *name_b;
5315 name_a = p->one->mode ? p->one->path : p->two->path;
5316 name_b = NULL;
5317 strip_prefix(opt->prefix_length, &name_a, &name_b);
c0c77734 5318 write_name_quoted(name_a, opt->file, line_termination);
663af342 5319 }
6973dcae
JH
5320}
5321
5322int diff_unmodified_pair(struct diff_filepair *p)
5323{
5324 /* This function is written stricter than necessary to support
5325 * the currently implemented transformers, but the idea is to
5326 * let transformers to produce diff_filepairs any way they want,
5327 * and filter and clean them up here before producing the output.
5328 */
663af342 5329 struct diff_filespec *one = p->one, *two = p->two;
6973dcae
JH
5330
5331 if (DIFF_PAIR_UNMERGED(p))
5332 return 0; /* unmerged is interesting */
5333
6973dcae
JH
5334 /* deletion, addition, mode or type change
5335 * and rename are all interesting.
5336 */
5337 if (DIFF_FILE_VALID(one) != DIFF_FILE_VALID(two) ||
5338 DIFF_PAIR_MODE_CHANGED(p) ||
5339 strcmp(one->path, two->path))
5340 return 0;
5341
5342 /* both are valid and point at the same path. that is, we are
5343 * dealing with a change.
5344 */
41c9560e 5345 if (one->oid_valid && two->oid_valid &&
4a7e27e9 5346 oideq(&one->oid, &two->oid) &&
85adbf2f 5347 !one->dirty_submodule && !two->dirty_submodule)
6973dcae 5348 return 1; /* no change */
41c9560e 5349 if (!one->oid_valid && !two->oid_valid)
6973dcae
JH
5350 return 1; /* both look at the same file on the filesystem. */
5351 return 0;
5352}
5353
5354static void diff_flush_patch(struct diff_filepair *p, struct diff_options *o)
5355{
5356 if (diff_unmodified_pair(p))
5357 return;
5358
5359 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
5360 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
5361 return; /* no tree diffs in patch format */
5362
5363 run_diff(p, o);
5364}
5365
5366static void diff_flush_stat(struct diff_filepair *p, struct diff_options *o,
5367 struct diffstat_t *diffstat)
5368{
5369 if (diff_unmodified_pair(p))
5370 return;
5371
5372 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
5373 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
c3fced64 5374 return; /* no useful stat for tree diffs */
6973dcae
JH
5375
5376 run_diffstat(p, o, diffstat);
5377}
5378
88246898
JS
5379static void diff_flush_checkdiff(struct diff_filepair *p,
5380 struct diff_options *o)
5381{
5382 if (diff_unmodified_pair(p))
5383 return;
5384
5385 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
5386 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
c3fced64 5387 return; /* nothing to check in tree diffs */
88246898
JS
5388
5389 run_checkdiff(p, o);
5390}
5391
6973dcae
JH
5392int diff_queue_is_empty(void)
5393{
5394 struct diff_queue_struct *q = &diff_queued_diff;
5395 int i;
5396 for (i = 0; i < q->nr; i++)
5397 if (!diff_unmodified_pair(q->queue[i]))
5398 return 0;
5399 return 1;
5400}
5401
5402#if DIFF_DEBUG
5403void diff_debug_filespec(struct diff_filespec *s, int x, const char *one)
5404{
5405 fprintf(stderr, "queue[%d] %s (%s) %s %06o %s\n",
5406 x, one ? one : "",
5407 s->path,
5408 DIFF_FILE_VALID(s) ? "valid" : "invalid",
5409 s->mode,
41c9560e 5410 s->oid_valid ? oid_to_hex(&s->oid) : "");
428d52a5 5411 fprintf(stderr, "queue[%d] %s size %lu\n",
6973dcae 5412 x, one ? one : "",
428d52a5 5413 s->size);
6973dcae
JH
5414}
5415
5416void diff_debug_filepair(const struct diff_filepair *p, int i)
5417{
5418 diff_debug_filespec(p->one, i, "one");
5419 diff_debug_filespec(p->two, i, "two");
64479711 5420 fprintf(stderr, "score %d, status %c rename_used %d broken %d\n",
6973dcae 5421 p->score, p->status ? p->status : '?',
64479711 5422 p->one->rename_used, p->broken_pair);
6973dcae
JH
5423}
5424
5425void diff_debug_queue(const char *msg, struct diff_queue_struct *q)
5426{
5427 int i;
5428 if (msg)
5429 fprintf(stderr, "%s\n", msg);
5430 fprintf(stderr, "q->nr = %d\n", q->nr);
5431 for (i = 0; i < q->nr; i++) {
5432 struct diff_filepair *p = q->queue[i];
5433 diff_debug_filepair(p, i);
5434 }
5435}
5436#endif
5437
5438static void diff_resolve_rename_copy(void)
5439{
64479711
LT
5440 int i;
5441 struct diff_filepair *p;
6973dcae
JH
5442 struct diff_queue_struct *q = &diff_queued_diff;
5443
5444 diff_debug_queue("resolve-rename-copy", q);
5445
5446 for (i = 0; i < q->nr; i++) {
5447 p = q->queue[i];
5448 p->status = 0; /* undecided */
5449 if (DIFF_PAIR_UNMERGED(p))
5450 p->status = DIFF_STATUS_UNMERGED;
5451 else if (!DIFF_FILE_VALID(p->one))
5452 p->status = DIFF_STATUS_ADDED;
5453 else if (!DIFF_FILE_VALID(p->two))
5454 p->status = DIFF_STATUS_DELETED;
5455 else if (DIFF_PAIR_TYPE_CHANGED(p))
5456 p->status = DIFF_STATUS_TYPE_CHANGED;
5457
5458 /* from this point on, we are dealing with a pair
5459 * whose both sides are valid and of the same type, i.e.
5460 * either in-place edit or rename/copy edit.
5461 */
5462 else if (DIFF_PAIR_RENAME(p)) {
64479711
LT
5463 /*
5464 * A rename might have re-connected a broken
5465 * pair up, causing the pathnames to be the
5466 * same again. If so, that's not a rename at
5467 * all, just a modification..
5468 *
5469 * Otherwise, see if this source was used for
5470 * multiple renames, in which case we decrement
5471 * the count, and call it a copy.
6973dcae 5472 */
64479711
LT
5473 if (!strcmp(p->one->path, p->two->path))
5474 p->status = DIFF_STATUS_MODIFIED;
5475 else if (--p->one->rename_used > 0)
6973dcae 5476 p->status = DIFF_STATUS_COPIED;
64479711 5477 else
6973dcae
JH
5478 p->status = DIFF_STATUS_RENAMED;
5479 }
9001dc2a 5480 else if (!oideq(&p->one->oid, &p->two->oid) ||
d516c2d1 5481 p->one->mode != p->two->mode ||
85adbf2f
JL
5482 p->one->dirty_submodule ||
5483 p->two->dirty_submodule ||
a0d12c44 5484 is_null_oid(&p->one->oid))
6973dcae
JH
5485 p->status = DIFF_STATUS_MODIFIED;
5486 else {
5487 /* This is a "no-change" entry and should not
5488 * happen anymore, but prepare for broken callers.
5489 */
5490 error("feeding unmodified %s to diffcore",
5491 p->one->path);
5492 p->status = DIFF_STATUS_UNKNOWN;
5493 }
5494 }
5495 diff_debug_queue("resolve-rename-copy done", q);
5496}
5497
c6744349 5498static int check_pair_status(struct diff_filepair *p)
6973dcae 5499{
6973dcae
JH
5500 switch (p->status) {
5501 case DIFF_STATUS_UNKNOWN:
c6744349 5502 return 0;
6973dcae
JH
5503 case 0:
5504 die("internal error in diff-resolve-rename-copy");
6973dcae 5505 default:
c6744349 5506 return 1;
6973dcae
JH
5507 }
5508}
5509
c6744349
TH
5510static void flush_one_pair(struct diff_filepair *p, struct diff_options *opt)
5511{
5512 int fmt = opt->output_format;
5513
5514 if (fmt & DIFF_FORMAT_CHECKDIFF)
5515 diff_flush_checkdiff(p, opt);
5516 else if (fmt & (DIFF_FORMAT_RAW | DIFF_FORMAT_NAME_STATUS))
5517 diff_flush_raw(p, opt);
cd676a51
JH
5518 else if (fmt & DIFF_FORMAT_NAME) {
5519 const char *name_a, *name_b;
5520 name_a = p->two->path;
5521 name_b = NULL;
5522 strip_prefix(opt->prefix_length, &name_a, &name_b);
f5022b5f 5523 fprintf(opt->file, "%s", diff_line_prefix(opt));
c0c77734 5524 write_name_quoted(name_a, opt->file, opt->line_termination);
cd676a51 5525 }
c6744349
TH
5526}
5527
146fdb0d 5528static void show_file_mode_name(struct diff_options *opt, const char *newdelete, struct diff_filespec *fs)
4bbd261b 5529{
146fdb0d 5530 struct strbuf sb = STRBUF_INIT;
4bbd261b 5531 if (fs->mode)
146fdb0d 5532 strbuf_addf(&sb, " %s mode %06o ", newdelete, fs->mode);
4bbd261b 5533 else
146fdb0d 5534 strbuf_addf(&sb, " %s ", newdelete);
4bbd261b 5535
146fdb0d
SB
5536 quote_c_style(fs->path, &sb, NULL, 0);
5537 strbuf_addch(&sb, '\n');
5538 emit_diff_symbol(opt, DIFF_SYMBOL_SUMMARY,
5539 sb.buf, sb.len, 0);
5540 strbuf_release(&sb);
5541}
4bbd261b 5542
146fdb0d
SB
5543static void show_mode_change(struct diff_options *opt, struct diff_filepair *p,
5544 int show_name)
4bbd261b
SE
5545{
5546 if (p->one->mode && p->two->mode && p->one->mode != p->two->mode) {
146fdb0d
SB
5547 struct strbuf sb = STRBUF_INIT;
5548 strbuf_addf(&sb, " mode change %06o => %06o",
5549 p->one->mode, p->two->mode);
0d26a64e 5550 if (show_name) {
146fdb0d
SB
5551 strbuf_addch(&sb, ' ');
5552 quote_c_style(p->two->path, &sb, NULL, 0);
0d26a64e 5553 }
58aaced4 5554 strbuf_addch(&sb, '\n');
146fdb0d
SB
5555 emit_diff_symbol(opt, DIFF_SYMBOL_SUMMARY,
5556 sb.buf, sb.len, 0);
5557 strbuf_release(&sb);
4bbd261b
SE
5558 }
5559}
5560
146fdb0d
SB
5561static void show_rename_copy(struct diff_options *opt, const char *renamecopy,
5562 struct diff_filepair *p)
4bbd261b 5563{
146fdb0d 5564 struct strbuf sb = STRBUF_INIT;
c905cbc4
NTND
5565 struct strbuf names = STRBUF_INIT;
5566
5567 pprint_rename(&names, p->one->path, p->two->path);
146fdb0d 5568 strbuf_addf(&sb, " %s %s (%d%%)\n",
c905cbc4
NTND
5569 renamecopy, names.buf, similarity_index(p));
5570 strbuf_release(&names);
146fdb0d
SB
5571 emit_diff_symbol(opt, DIFF_SYMBOL_SUMMARY,
5572 sb.buf, sb.len, 0);
5573 show_mode_change(opt, p, 0);
348eda24 5574 strbuf_release(&sb);
4bbd261b
SE
5575}
5576
7be57610 5577static void diff_summary(struct diff_options *opt, struct diff_filepair *p)
4bbd261b
SE
5578{
5579 switch(p->status) {
5580 case DIFF_STATUS_DELETED:
146fdb0d 5581 show_file_mode_name(opt, "delete", p->one);
4bbd261b
SE
5582 break;
5583 case DIFF_STATUS_ADDED:
146fdb0d 5584 show_file_mode_name(opt, "create", p->two);
4bbd261b
SE
5585 break;
5586 case DIFF_STATUS_COPIED:
146fdb0d 5587 show_rename_copy(opt, "copy", p);
4bbd261b
SE
5588 break;
5589 case DIFF_STATUS_RENAMED:
146fdb0d 5590 show_rename_copy(opt, "rename", p);
4bbd261b
SE
5591 break;
5592 default:
5593 if (p->score) {
146fdb0d
SB
5594 struct strbuf sb = STRBUF_INIT;
5595 strbuf_addstr(&sb, " rewrite ");
5596 quote_c_style(p->two->path, &sb, NULL, 0);
5597 strbuf_addf(&sb, " (%d%%)\n", similarity_index(p));
5598 emit_diff_symbol(opt, DIFF_SYMBOL_SUMMARY,
5599 sb.buf, sb.len, 0);
fa842d84 5600 strbuf_release(&sb);
663af342 5601 }
146fdb0d 5602 show_mode_change(opt, p, !p->score);
4bbd261b
SE
5603 break;
5604 }
5605}
5606
fcb3d0ad 5607struct patch_id_t {
9126f009 5608 git_SHA_CTX *ctx;
fcb3d0ad
JS
5609 int patchlen;
5610};
5611
5612static int remove_space(char *line, int len)
5613{
5614 int i;
663af342
PH
5615 char *dst = line;
5616 unsigned char c;
fcb3d0ad 5617
663af342
PH
5618 for (i = 0; i < len; i++)
5619 if (!isspace((c = line[i])))
5620 *dst++ = c;
fcb3d0ad 5621
663af342 5622 return dst - line;
fcb3d0ad
JS
5623}
5624
5625static void patch_id_consume(void *priv, char *line, unsigned long len)
5626{
5627 struct patch_id_t *data = priv;
5628 int new_len;
5629
5630 /* Ignore line numbers when computing the SHA1 of the patch */
59556548 5631 if (starts_with(line, "@@ -"))
fcb3d0ad
JS
5632 return;
5633
5634 new_len = remove_space(line, len);
5635
9126f009 5636 git_SHA1_Update(data->ctx, line, new_len);
fcb3d0ad
JS
5637 data->patchlen += new_len;
5638}
5639
977db6b4
JK
5640static void patch_id_add_string(git_SHA_CTX *ctx, const char *str)
5641{
5642 git_SHA1_Update(ctx, str, strlen(str));
5643}
5644
5645static void patch_id_add_mode(git_SHA_CTX *ctx, unsigned mode)
5646{
5647 /* large enough for 2^32 in octal */
5648 char buf[12];
5649 int len = xsnprintf(buf, sizeof(buf), "%06o", mode);
5650 git_SHA1_Update(ctx, buf, len);
5651}
5652
fcb3d0ad 5653/* returns 0 upon success, and writes result into sha1 */
bd25f288 5654static int diff_get_patch_id(struct diff_options *options, struct object_id *oid, int diff_header_only)
fcb3d0ad
JS
5655{
5656 struct diff_queue_struct *q = &diff_queued_diff;
5657 int i;
9126f009 5658 git_SHA_CTX ctx;
fcb3d0ad 5659 struct patch_id_t data;
fcb3d0ad 5660
9126f009 5661 git_SHA1_Init(&ctx);
fcb3d0ad
JS
5662 memset(&data, 0, sizeof(struct patch_id_t));
5663 data.ctx = &ctx;
fcb3d0ad
JS
5664
5665 for (i = 0; i < q->nr; i++) {
5666 xpparam_t xpp;
5667 xdemitconf_t xecfg;
fcb3d0ad
JS
5668 mmfile_t mf1, mf2;
5669 struct diff_filepair *p = q->queue[i];
5670 int len1, len2;
5671
9ccd0a88 5672 memset(&xpp, 0, sizeof(xpp));
30b25010 5673 memset(&xecfg, 0, sizeof(xecfg));
fcb3d0ad
JS
5674 if (p->status == 0)
5675 return error("internal diff status error");
5676 if (p->status == DIFF_STATUS_UNKNOWN)
5677 continue;
5678 if (diff_unmodified_pair(p))
5679 continue;
5680 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
5681 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
5682 continue;
5683 if (DIFF_PAIR_UNMERGED(p))
5684 continue;
5685
94e327e9
BW
5686 diff_fill_oid_info(p->one);
5687 diff_fill_oid_info(p->two);
fcb3d0ad 5688
fcb3d0ad
JS
5689 len1 = remove_space(p->one->path, strlen(p->one->path));
5690 len2 = remove_space(p->two->path, strlen(p->two->path));
977db6b4
JK
5691 patch_id_add_string(&ctx, "diff--git");
5692 patch_id_add_string(&ctx, "a/");
5693 git_SHA1_Update(&ctx, p->one->path, len1);
5694 patch_id_add_string(&ctx, "b/");
5695 git_SHA1_Update(&ctx, p->two->path, len2);
5696
5697 if (p->one->mode == 0) {
5698 patch_id_add_string(&ctx, "newfilemode");
5699 patch_id_add_mode(&ctx, p->two->mode);
5700 patch_id_add_string(&ctx, "---/dev/null");
5701 patch_id_add_string(&ctx, "+++b/");
5702 git_SHA1_Update(&ctx, p->two->path, len2);
5703 } else if (p->two->mode == 0) {
5704 patch_id_add_string(&ctx, "deletedfilemode");
5705 patch_id_add_mode(&ctx, p->one->mode);
5706 patch_id_add_string(&ctx, "---a/");
5707 git_SHA1_Update(&ctx, p->one->path, len1);
5708 patch_id_add_string(&ctx, "+++/dev/null");
5709 } else {
5710 patch_id_add_string(&ctx, "---a/");
5711 git_SHA1_Update(&ctx, p->one->path, len1);
5712 patch_id_add_string(&ctx, "+++b/");
5713 git_SHA1_Update(&ctx, p->two->path, len2);
5714 }
fcb3d0ad 5715
3e8e32c3
KW
5716 if (diff_header_only)
5717 continue;
5718
5719 if (fill_mmfile(&mf1, p->one) < 0 ||
5720 fill_mmfile(&mf2, p->two) < 0)
5721 return error("unable to read files to diff");
5722
34597c1f
CB
5723 if (diff_filespec_is_binary(p->one) ||
5724 diff_filespec_is_binary(p->two)) {
a0d12c44 5725 git_SHA1_Update(&ctx, oid_to_hex(&p->one->oid),
bd25f288 5726 GIT_SHA1_HEXSZ);
a0d12c44 5727 git_SHA1_Update(&ctx, oid_to_hex(&p->two->oid),
bd25f288 5728 GIT_SHA1_HEXSZ);
34597c1f
CB
5729 continue;
5730 }
5731
582aa00b 5732 xpp.flags = 0;
fcb3d0ad 5733 xecfg.ctxlen = 3;
ad14b450 5734 xecfg.flags = 0;
3efb9880
JK
5735 if (xdi_diff_outf(&mf1, &mf2, patch_id_consume, &data,
5736 &xpp, &xecfg))
5737 return error("unable to generate patch-id diff for %s",
5738 p->one->path);
fcb3d0ad
JS
5739 }
5740
bd25f288 5741 git_SHA1_Final(oid->hash, &ctx);
fcb3d0ad
JS
5742 return 0;
5743}
5744
bd25f288 5745int diff_flush_patch_id(struct diff_options *options, struct object_id *oid, int diff_header_only)
fcb3d0ad
JS
5746{
5747 struct diff_queue_struct *q = &diff_queued_diff;
5748 int i;
bd25f288 5749 int result = diff_get_patch_id(options, oid, diff_header_only);
fcb3d0ad
JS
5750
5751 for (i = 0; i < q->nr; i++)
5752 diff_free_filepair(q->queue[i]);
5753
5754 free(q->queue);
9ca5df90 5755 DIFF_QUEUE_CLEAR(q);
fcb3d0ad
JS
5756
5757 return result;
5758}
5759
946c3784 5760static int is_summary_empty(const struct diff_queue_struct *q)
6973dcae 5761{
6973dcae 5762 int i;
6973dcae 5763
946c3784
TH
5764 for (i = 0; i < q->nr; i++) {
5765 const struct diff_filepair *p = q->queue[i];
5766
5767 switch (p->status) {
5768 case DIFF_STATUS_DELETED:
5769 case DIFF_STATUS_ADDED:
5770 case DIFF_STATUS_COPIED:
5771 case DIFF_STATUS_RENAMED:
5772 return 0;
5773 default:
5774 if (p->score)
5775 return 0;
5776 if (p->one->mode && p->two->mode &&
5777 p->one->mode != p->two->mode)
5778 return 0;
5779 break;
5780 }
6973dcae 5781 }
946c3784
TH
5782 return 1;
5783}
5784
f31027c9 5785static const char rename_limit_warning[] =
db424979 5786N_("inexact rename detection was skipped due to too many files.");
f31027c9
JH
5787
5788static const char degrade_cc_to_c_warning[] =
db424979 5789N_("only found copies from modified paths due to too many files.");
f31027c9
JH
5790
5791static const char rename_limit_advice[] =
db424979
VA
5792N_("you may want to set your %s variable to at least "
5793 "%d and retry the command.");
f31027c9
JH
5794
5795void diff_warn_rename_limit(const char *varname, int needed, int degraded_cc)
5796{
4e056c98 5797 fflush(stdout);
f31027c9 5798 if (degraded_cc)
db424979 5799 warning(_(degrade_cc_to_c_warning));
f31027c9 5800 else if (needed)
db424979 5801 warning(_(rename_limit_warning));
f31027c9
JH
5802 else
5803 return;
9f7e4bfa 5804 if (0 < needed)
db424979 5805 warning(_(rename_limit_advice), varname, needed);
f31027c9
JH
5806}
5807
ec331506
SB
5808static void diff_flush_patch_all_file_pairs(struct diff_options *o)
5809{
5810 int i;
e6e045f8 5811 static struct emitted_diff_symbols esm = EMITTED_DIFF_SYMBOLS_INIT;
ec331506 5812 struct diff_queue_struct *q = &diff_queued_diff;
091f8e28
SB
5813
5814 if (WSEH_NEW & WS_RULE_MASK)
033abf97 5815 BUG("WS rules bit mask overlaps with diff symbol flags");
091f8e28 5816
2e2d5ac1
SB
5817 if (o->color_moved)
5818 o->emitted_symbols = &esm;
e6e045f8 5819
ec331506
SB
5820 for (i = 0; i < q->nr; i++) {
5821 struct diff_filepair *p = q->queue[i];
5822 if (check_pair_status(p))
5823 diff_flush_patch(p, o);
5824 }
e6e045f8
SB
5825
5826 if (o->emitted_symbols) {
2e2d5ac1
SB
5827 if (o->color_moved) {
5828 struct hashmap add_lines, del_lines;
5829
ca1f4ae4
SB
5830 if (o->color_moved_ws_handling &
5831 COLOR_MOVED_WS_ALLOW_INDENTATION_CHANGE)
5832 o->color_moved_ws_handling |= XDF_IGNORE_WHITESPACE;
5833
ee1df66f
SB
5834 hashmap_init(&del_lines, moved_entry_cmp, o, 0);
5835 hashmap_init(&add_lines, moved_entry_cmp, o, 0);
2e2d5ac1
SB
5836
5837 add_lines_to_move_detection(o, &add_lines, &del_lines);
5838 mark_color_as_moved(o, &add_lines, &del_lines);
86b452e2
SB
5839 if (o->color_moved == COLOR_MOVED_ZEBRA_DIM)
5840 dim_moved_lines(o);
2e2d5ac1
SB
5841
5842 hashmap_free(&add_lines, 0);
5843 hashmap_free(&del_lines, 0);
5844 }
5845
e6e045f8
SB
5846 for (i = 0; i < esm.nr; i++)
5847 emit_diff_symbol_from_struct(o, &esm.buf[i]);
5848
5849 for (i = 0; i < esm.nr; i++)
5850 free((void *)esm.buf[i].line);
5851 }
5852 esm.nr = 0;
ec331506
SB
5853}
5854
6973dcae
JH
5855void diff_flush(struct diff_options *options)
5856{
5857 struct diff_queue_struct *q = &diff_queued_diff;
c6744349 5858 int i, output_format = options->output_format;
946c3784 5859 int separator = 0;
1c57a627 5860 int dirstat_by_line = 0;
6973dcae 5861
c6744349
TH
5862 /*
5863 * Order: raw, stat, summary, patch
5864 * or: name/name-status/checkdiff (other bits clear)
5865 */
946c3784
TH
5866 if (!q->nr)
5867 goto free_queue;
6973dcae 5868
c6744349
TH
5869 if (output_format & (DIFF_FORMAT_RAW |
5870 DIFF_FORMAT_NAME |
5871 DIFF_FORMAT_NAME_STATUS |
5872 DIFF_FORMAT_CHECKDIFF)) {
6973dcae
JH
5873 for (i = 0; i < q->nr; i++) {
5874 struct diff_filepair *p = q->queue[i];
c6744349
TH
5875 if (check_pair_status(p))
5876 flush_one_pair(p, options);
6973dcae 5877 }
946c3784 5878 separator++;
6973dcae 5879 }
c6744349 5880
0d1e0e78 5881 if (output_format & DIFF_FORMAT_DIRSTAT && options->flags.dirstat_by_line)
1c57a627
JH
5882 dirstat_by_line = 1;
5883
5884 if (output_format & (DIFF_FORMAT_DIFFSTAT|DIFF_FORMAT_SHORTSTAT|DIFF_FORMAT_NUMSTAT) ||
5885 dirstat_by_line) {
5e2b0636 5886 struct diffstat_t diffstat;
c6744349 5887
5e2b0636 5888 memset(&diffstat, 0, sizeof(struct diffstat_t));
6973dcae
JH
5889 for (i = 0; i < q->nr; i++) {
5890 struct diff_filepair *p = q->queue[i];
c6744349 5891 if (check_pair_status(p))
5e2b0636 5892 diff_flush_stat(p, options, &diffstat);
6973dcae 5893 }
74e2abe5
JH
5894 if (output_format & DIFF_FORMAT_NUMSTAT)
5895 show_numstat(&diffstat, options);
5896 if (output_format & DIFF_FORMAT_DIFFSTAT)
5897 show_stats(&diffstat, options);
f604652e 5898 if (output_format & DIFF_FORMAT_SHORTSTAT)
c0c77734 5899 show_shortstats(&diffstat, options);
ab27389a 5900 if (output_format & DIFF_FORMAT_DIRSTAT && dirstat_by_line)
1c57a627 5901 show_dirstat_by_line(&diffstat, options);
f604652e 5902 free_diffstat_info(&diffstat);
3969cf7d 5903 separator++;
6973dcae 5904 }
1c57a627 5905 if ((output_format & DIFF_FORMAT_DIRSTAT) && !dirstat_by_line)
c04a7155 5906 show_dirstat(options);
6973dcae 5907
946c3784 5908 if (output_format & DIFF_FORMAT_SUMMARY && !is_summary_empty(q)) {
7be57610
BY
5909 for (i = 0; i < q->nr; i++) {
5910 diff_summary(options, q->queue[i]);
5911 }
3969cf7d 5912 separator++;
6973dcae
JH
5913 }
5914
6977c250 5915 if (output_format & DIFF_FORMAT_NO_OUTPUT &&
0d1e0e78
BW
5916 options->flags.exit_with_status &&
5917 options->flags.diff_from_contents) {
6977c250
LA
5918 /*
5919 * run diff_flush_patch for the exit status. setting
749f763d 5920 * options->file to /dev/null should be safe, because we
6977c250
LA
5921 * aren't supposed to produce any output anyway.
5922 */
5923 if (options->close_file)
5924 fclose(options->file);
23a9e071 5925 options->file = xfopen("/dev/null", "w");
6977c250 5926 options->close_file = 1;
2e2d5ac1 5927 options->color_moved = 0;
6977c250
LA
5928 for (i = 0; i < q->nr; i++) {
5929 struct diff_filepair *p = q->queue[i];
5930 if (check_pair_status(p))
5931 diff_flush_patch(p, options);
5932 if (options->found_changes)
5933 break;
5934 }
5935 }
5936
c6744349 5937 if (output_format & DIFF_FORMAT_PATCH) {
946c3784 5938 if (separator) {
091f8e28 5939 emit_diff_symbol(options, DIFF_SYMBOL_SEPARATOR, NULL, 0, 0);
30b7e1e7 5940 if (options->stat_sep)
946c3784 5941 /* attach patch instead of inline */
30b7e1e7
SB
5942 emit_diff_symbol(options, DIFF_SYMBOL_STAT_SEP,
5943 NULL, 0, 0);
c6744349
TH
5944 }
5945
ec331506 5946 diff_flush_patch_all_file_pairs(options);
4bbd261b
SE
5947 }
5948
04245581
JK
5949 if (output_format & DIFF_FORMAT_CALLBACK)
5950 options->format_callback(q, options, options->format_callback_data);
5951
c6744349
TH
5952 for (i = 0; i < q->nr; i++)
5953 diff_free_filepair(q->queue[i]);
946c3784 5954free_queue:
6973dcae 5955 free(q->queue);
9ca5df90 5956 DIFF_QUEUE_CLEAR(q);
c0c77734
DB
5957 if (options->close_file)
5958 fclose(options->file);
f245194f
JH
5959
5960 /*
97bf2a08 5961 * Report the content-level differences with HAS_CHANGES;
f245194f
JH
5962 * diff_addremove/diff_change does not set the bit when
5963 * DIFF_FROM_CONTENTS is in effect (e.g. with -w).
5964 */
0d1e0e78 5965 if (options->flags.diff_from_contents) {
f245194f 5966 if (options->found_changes)
0d1e0e78 5967 options->flags.has_changes = 1;
f245194f 5968 else
0d1e0e78 5969 options->flags.has_changes = 0;
f245194f 5970 }
6973dcae
JH
5971}
5972
08578fa1
JH
5973static int match_filter(const struct diff_options *options, const struct diff_filepair *p)
5974{
5975 return (((p->status == DIFF_STATUS_MODIFIED) &&
5976 ((p->score &&
1ecc1cbd 5977 filter_bit_tst(DIFF_STATUS_FILTER_BROKEN, options)) ||
08578fa1 5978 (!p->score &&
1ecc1cbd 5979 filter_bit_tst(DIFF_STATUS_MODIFIED, options)))) ||
08578fa1 5980 ((p->status != DIFF_STATUS_MODIFIED) &&
1ecc1cbd 5981 filter_bit_tst(p->status, options)));
08578fa1
JH
5982}
5983
949226fe 5984static void diffcore_apply_filter(struct diff_options *options)
6973dcae
JH
5985{
5986 int i;
5987 struct diff_queue_struct *q = &diff_queued_diff;
5988 struct diff_queue_struct outq;
949226fe 5989
9ca5df90 5990 DIFF_QUEUE_CLEAR(&outq);
6973dcae 5991
1ecc1cbd 5992 if (!options->filter)
6973dcae
JH
5993 return;
5994
1ecc1cbd 5995 if (filter_bit_tst(DIFF_STATUS_FILTER_AON, options)) {
6973dcae
JH
5996 int found;
5997 for (i = found = 0; !found && i < q->nr; i++) {
08578fa1 5998 if (match_filter(options, q->queue[i]))
6973dcae
JH
5999 found++;
6000 }
6001 if (found)
6002 return;
6003
6004 /* otherwise we will clear the whole queue
6005 * by copying the empty outq at the end of this
6006 * function, but first clear the current entries
6007 * in the queue.
6008 */
6009 for (i = 0; i < q->nr; i++)
6010 diff_free_filepair(q->queue[i]);
6011 }
6012 else {
6013 /* Only the matching ones */
6014 for (i = 0; i < q->nr; i++) {
6015 struct diff_filepair *p = q->queue[i];
08578fa1 6016 if (match_filter(options, p))
6973dcae
JH
6017 diff_q(&outq, p);
6018 else
6019 diff_free_filepair(p);
6020 }
6021 }
6022 free(q->queue);
6023 *q = outq;
6024}
6025
5701115a
SV
6026/* Check whether two filespecs with the same mode and size are identical */
6027static int diff_filespec_is_identical(struct diff_filespec *one,
6028 struct diff_filespec *two)
6029{
2b459b48
JH
6030 if (S_ISGITLINK(one->mode))
6031 return 0;
5701115a
SV
6032 if (diff_populate_filespec(one, 0))
6033 return 0;
6034 if (diff_populate_filespec(two, 0))
6035 return 0;
6036 return !memcmp(one->data, two->data, one->size);
6037}
6038
fceb9072
NTND
6039static int diff_filespec_check_stat_unmatch(struct diff_filepair *p)
6040{
f34b205f
NTND
6041 if (p->done_skip_stat_unmatch)
6042 return p->skip_stat_unmatch_result;
6043
6044 p->done_skip_stat_unmatch = 1;
6045 p->skip_stat_unmatch_result = 0;
fceb9072
NTND
6046 /*
6047 * 1. Entries that come from stat info dirtiness
6048 * always have both sides (iow, not create/delete),
6049 * one side of the object name is unknown, with
6050 * the same mode and size. Keep the ones that
6051 * do not match these criteria. They have real
6052 * differences.
6053 *
6054 * 2. At this point, the file is known to be modified,
6055 * with the same mode and size, and the object
6056 * name of one side is unknown. Need to inspect
6057 * the identical contents.
6058 */
6059 if (!DIFF_FILE_VALID(p->one) || /* (1) */
6060 !DIFF_FILE_VALID(p->two) ||
41c9560e 6061 (p->one->oid_valid && p->two->oid_valid) ||
fceb9072 6062 (p->one->mode != p->two->mode) ||
8e5dd3d6
NTND
6063 diff_populate_filespec(p->one, CHECK_SIZE_ONLY) ||
6064 diff_populate_filespec(p->two, CHECK_SIZE_ONLY) ||
fceb9072
NTND
6065 (p->one->size != p->two->size) ||
6066 !diff_filespec_is_identical(p->one, p->two)) /* (2) */
f34b205f
NTND
6067 p->skip_stat_unmatch_result = 1;
6068 return p->skip_stat_unmatch_result;
fceb9072
NTND
6069}
6070
fb13227e
JH
6071static void diffcore_skip_stat_unmatch(struct diff_options *diffopt)
6072{
6073 int i;
6074 struct diff_queue_struct *q = &diff_queued_diff;
6075 struct diff_queue_struct outq;
9ca5df90 6076 DIFF_QUEUE_CLEAR(&outq);
fb13227e
JH
6077
6078 for (i = 0; i < q->nr; i++) {
6079 struct diff_filepair *p = q->queue[i];
6080
fceb9072 6081 if (diff_filespec_check_stat_unmatch(p))
fb13227e
JH
6082 diff_q(&outq, p);
6083 else {
6084 /*
6085 * The caller can subtract 1 from skip_stat_unmatch
6086 * to determine how many paths were dirty only
6087 * due to stat info mismatch.
6088 */
0d1e0e78 6089 if (!diffopt->flags.no_index)
6d2d9e86 6090 diffopt->skip_stat_unmatch++;
fb13227e
JH
6091 diff_free_filepair(p);
6092 }
6093 }
6094 free(q->queue);
6095 *q = outq;
6096}
6097
730f7284
JH
6098static int diffnamecmp(const void *a_, const void *b_)
6099{
6100 const struct diff_filepair *a = *((const struct diff_filepair **)a_);
6101 const struct diff_filepair *b = *((const struct diff_filepair **)b_);
6102 const char *name_a, *name_b;
6103
6104 name_a = a->one ? a->one->path : a->two->path;
6105 name_b = b->one ? b->one->path : b->two->path;
6106 return strcmp(name_a, name_b);
6107}
6108
6109void diffcore_fix_diff_index(struct diff_options *options)
6110{
6111 struct diff_queue_struct *q = &diff_queued_diff;
9ed0d8d6 6112 QSORT(q->queue, q->nr, diffnamecmp);
730f7284
JH
6113}
6114
6973dcae
JH
6115void diffcore_std(struct diff_options *options)
6116{
7195fbfa 6117 /* NOTE please keep the following in sync with diff_tree_combined() */
9d865356 6118 if (options->skip_stat_unmatch)
fb13227e 6119 diffcore_skip_stat_unmatch(options);
44c48a90
JH
6120 if (!options->found_follow) {
6121 /* See try_to_follow_renames() in tree-diff.c */
6122 if (options->break_opt != -1)
6123 diffcore_break(options->break_opt);
6124 if (options->detect_rename)
6125 diffcore_rename(options);
6126 if (options->break_opt != -1)
6127 diffcore_merge_broken();
6128 }
cf63051a 6129 if (options->pickaxe_opts & DIFF_PICKAXE_KINDS_MASK)
382f013b 6130 diffcore_pickaxe(options);
6973dcae
JH
6131 if (options->orderfile)
6132 diffcore_order(options->orderfile);
44c48a90
JH
6133 if (!options->found_follow)
6134 /* See try_to_follow_renames() in tree-diff.c */
6135 diff_resolve_rename_copy();
949226fe 6136 diffcore_apply_filter(options);
68aacb2f 6137
0d1e0e78
BW
6138 if (diff_queued_diff.nr && !options->flags.diff_from_contents)
6139 options->flags.has_changes = 1;
8f67f8ae 6140 else
0d1e0e78 6141 options->flags.has_changes = 0;
1da6175d 6142
44c48a90 6143 options->found_follow = 0;
6973dcae
JH
6144}
6145
da31b358
JH
6146int diff_result_code(struct diff_options *opt, int status)
6147{
6148 int result = 0;
f31027c9 6149
c9fc4415 6150 diff_warn_rename_limit("diff.renameLimit",
f31027c9
JH
6151 opt->needed_rename_limit,
6152 opt->degraded_cc_to_c);
0d1e0e78 6153 if (!opt->flags.exit_with_status &&
da31b358
JH
6154 !(opt->output_format & DIFF_FORMAT_CHECKDIFF))
6155 return status;
0d1e0e78
BW
6156 if (opt->flags.exit_with_status &&
6157 opt->flags.has_changes)
da31b358
JH
6158 result |= 01;
6159 if ((opt->output_format & DIFF_FORMAT_CHECKDIFF) &&
0d1e0e78 6160 opt->flags.check_failed)
da31b358
JH
6161 result |= 02;
6162 return result;
6163}
6973dcae 6164
28b9264d
JH
6165int diff_can_quit_early(struct diff_options *opt)
6166{
0d1e0e78 6167 return (opt->flags.quick &&
28b9264d 6168 !opt->filter &&
0d1e0e78 6169 opt->flags.has_changes);
28b9264d
JH
6170}
6171
aee9c7d6
JL
6172/*
6173 * Shall changes to this submodule be ignored?
6174 *
6175 * Submodule changes can be configured to be ignored separately for each path,
6176 * but that configuration can be overridden from the command line.
6177 */
6178static int is_submodule_ignored(const char *path, struct diff_options *options)
6179{
6180 int ignored = 0;
02f2f56b 6181 struct diff_flags orig_flags = options->flags;
0d1e0e78 6182 if (!options->flags.override_submodule_config)
aee9c7d6 6183 set_diffopt_flags_from_submodule_config(options, path);
0d1e0e78 6184 if (options->flags.ignore_submodules)
aee9c7d6
JL
6185 ignored = 1;
6186 options->flags = orig_flags;
6187 return ignored;
6188}
6189
6973dcae
JH
6190void diff_addremove(struct diff_options *options,
6191 int addremove, unsigned mode,
c26022ea
BW
6192 const struct object_id *oid,
6193 int oid_valid,
e3d42c47 6194 const char *concatpath, unsigned dirty_submodule)
6973dcae 6195{
6973dcae
JH
6196 struct diff_filespec *one, *two;
6197
aee9c7d6 6198 if (S_ISGITLINK(mode) && is_submodule_ignored(concatpath, options))
50fd9bd8
JS
6199 return;
6200
6973dcae
JH
6201 /* This may look odd, but it is a preparation for
6202 * feeding "there are unchanged files which should
6203 * not produce diffs, but when you are doing copy
6204 * detection you would need them, so here they are"
6205 * entries to the diff-core. They will be prefixed
6206 * with something like '=' or '*' (I haven't decided
6207 * which but should not make any difference).
a6080a0a 6208 * Feeding the same new and old to diff_change()
6973dcae
JH
6209 * also has the same effect.
6210 * Before the final output happens, they are pruned after
6211 * merged into rename/copy pairs as appropriate.
6212 */
0d1e0e78 6213 if (options->flags.reverse_diff)
6973dcae
JH
6214 addremove = (addremove == '+' ? '-' :
6215 addremove == '-' ? '+' : addremove);
6216
cd676a51
JH
6217 if (options->prefix &&
6218 strncmp(concatpath, options->prefix, options->prefix_length))
6219 return;
6220
6973dcae
JH
6221 one = alloc_filespec(concatpath);
6222 two = alloc_filespec(concatpath);
6223
6224 if (addremove != '+')
f9704c2d 6225 fill_filespec(one, oid, oid_valid, mode);
e3d42c47 6226 if (addremove != '-') {
f9704c2d 6227 fill_filespec(two, oid, oid_valid, mode);
e3d42c47
JL
6228 two->dirty_submodule = dirty_submodule;
6229 }
6973dcae
JH
6230
6231 diff_queue(&diff_queued_diff, one, two);
0d1e0e78
BW
6232 if (!options->flags.diff_from_contents)
6233 options->flags.has_changes = 1;
6973dcae
JH
6234}
6235
6236void diff_change(struct diff_options *options,
6237 unsigned old_mode, unsigned new_mode,
94a0097a
BW
6238 const struct object_id *old_oid,
6239 const struct object_id *new_oid,
6240 int old_oid_valid, int new_oid_valid,
e3d42c47
JL
6241 const char *concatpath,
6242 unsigned old_dirty_submodule, unsigned new_dirty_submodule)
6973dcae 6243{
6973dcae 6244 struct diff_filespec *one, *two;
f34b205f 6245 struct diff_filepair *p;
6973dcae 6246
aee9c7d6
JL
6247 if (S_ISGITLINK(old_mode) && S_ISGITLINK(new_mode) &&
6248 is_submodule_ignored(concatpath, options))
50fd9bd8
JS
6249 return;
6250
0d1e0e78 6251 if (options->flags.reverse_diff) {
35d803bc 6252 SWAP(old_mode, new_mode);
94a0097a
BW
6253 SWAP(old_oid, new_oid);
6254 SWAP(old_oid_valid, new_oid_valid);
35d803bc 6255 SWAP(old_dirty_submodule, new_dirty_submodule);
6973dcae 6256 }
cd676a51
JH
6257
6258 if (options->prefix &&
6259 strncmp(concatpath, options->prefix, options->prefix_length))
6260 return;
6261
6973dcae
JH
6262 one = alloc_filespec(concatpath);
6263 two = alloc_filespec(concatpath);
f9704c2d
BW
6264 fill_filespec(one, old_oid, old_oid_valid, old_mode);
6265 fill_filespec(two, new_oid, new_oid_valid, new_mode);
e3d42c47
JL
6266 one->dirty_submodule = old_dirty_submodule;
6267 two->dirty_submodule = new_dirty_submodule;
f34b205f 6268 p = diff_queue(&diff_queued_diff, one, two);
6973dcae 6269
0d1e0e78 6270 if (options->flags.diff_from_contents)
f34b205f
NTND
6271 return;
6272
0d1e0e78 6273 if (options->flags.quick && options->skip_stat_unmatch &&
f34b205f
NTND
6274 !diff_filespec_check_stat_unmatch(p))
6275 return;
6276
0d1e0e78 6277 options->flags.has_changes = 1;
6973dcae
JH
6278}
6279
fa7b2908 6280struct diff_filepair *diff_unmerge(struct diff_options *options, const char *path)
6973dcae 6281{
76399c01 6282 struct diff_filepair *pair;
6973dcae 6283 struct diff_filespec *one, *two;
cd676a51
JH
6284
6285 if (options->prefix &&
6286 strncmp(path, options->prefix, options->prefix_length))
76399c01 6287 return NULL;
cd676a51 6288
6973dcae
JH
6289 one = alloc_filespec(path);
6290 two = alloc_filespec(path);
76399c01
JH
6291 pair = diff_queue(&diff_queued_diff, one, two);
6292 pair->is_unmerged = 1;
6293 return pair;
6973dcae 6294}
9cb92c39
JK
6295
6296static char *run_textconv(const char *pgm, struct diff_filespec *spec,
6297 size_t *outsize)
6298{
479b0ae8 6299 struct diff_tempfile *temp;
9cb92c39
JK
6300 const char *argv[3];
6301 const char **arg = argv;
d3180279 6302 struct child_process child = CHILD_PROCESS_INIT;
9cb92c39 6303 struct strbuf buf = STRBUF_INIT;
da1fbed3 6304 int err = 0;
9cb92c39 6305
479b0ae8 6306 temp = prepare_temp_file(spec->path, spec);
9cb92c39 6307 *arg++ = pgm;
479b0ae8 6308 *arg++ = temp->name;
9cb92c39
JK
6309 *arg = NULL;
6310
41a457e4 6311 child.use_shell = 1;
9cb92c39
JK
6312 child.argv = argv;
6313 child.out = -1;
da1fbed3 6314 if (start_command(&child)) {
479b0ae8 6315 remove_tempfile();
9cb92c39
JK
6316 return NULL;
6317 }
da1fbed3
JS
6318
6319 if (strbuf_read(&buf, child.out, 0) < 0)
6320 err = error("error reading from textconv command '%s'", pgm);
70d70999 6321 close(child.out);
da1fbed3
JS
6322
6323 if (finish_command(&child) || err) {
6324 strbuf_release(&buf);
6325 remove_tempfile();
6326 return NULL;
6327 }
479b0ae8 6328 remove_tempfile();
9cb92c39
JK
6329
6330 return strbuf_detach(&buf, outsize);
6331}
840383b2 6332
a788d7d5
AB
6333size_t fill_textconv(struct userdiff_driver *driver,
6334 struct diff_filespec *df,
6335 char **outbuf)
840383b2
JK
6336{
6337 size_t size;
6338
a64e6a44 6339 if (!driver) {
840383b2
JK
6340 if (!DIFF_FILE_VALID(df)) {
6341 *outbuf = "";
6342 return 0;
6343 }
6344 if (diff_populate_filespec(df, 0))
6345 die("unable to read files to diff");
6346 *outbuf = df->data;
6347 return df->size;
6348 }
6349
a64e6a44 6350 if (!driver->textconv)
033abf97 6351 BUG("fill_textconv called with non-textconv driver");
a64e6a44 6352
41c9560e 6353 if (driver->textconv_cache && df->oid_valid) {
a0d12c44 6354 *outbuf = notes_cache_get(driver->textconv_cache,
569aa376 6355 &df->oid,
d9bae1a1
JK
6356 &size);
6357 if (*outbuf)
6358 return size;
6359 }
6360
6361 *outbuf = run_textconv(driver->textconv, df, &size);
840383b2
JK
6362 if (!*outbuf)
6363 die("unable to read files to diff");
d9bae1a1 6364
41c9560e 6365 if (driver->textconv_cache && df->oid_valid) {
d9bae1a1 6366 /* ignore errors, as we might be in a readonly repository */
569aa376 6367 notes_cache_put(driver->textconv_cache, &df->oid, *outbuf,
d9bae1a1
JK
6368 size);
6369 /*
6370 * we could save up changes and flush them all at the end,
6371 * but we would need an extra call after all diffing is done.
6372 * Since generating a cache entry is the slow path anyway,
6373 * this extra overhead probably isn't a big deal.
6374 */
6375 notes_cache_write(driver->textconv_cache);
6376 }
6377
840383b2
JK
6378 return size;
6379}
4914c962 6380
3a35cb2e
JS
6381int textconv_object(const char *path,
6382 unsigned mode,
6383 const struct object_id *oid,
6384 int oid_valid,
6385 char **buf,
6386 unsigned long *buf_size)
6387{
6388 struct diff_filespec *df;
6389 struct userdiff_driver *textconv;
6390
6391 df = alloc_filespec(path);
a6f38c10 6392 fill_filespec(df, oid, oid_valid, mode);
3a35cb2e
JS
6393 textconv = get_textconv(df);
6394 if (!textconv) {
6395 free_filespec(df);
6396 return 0;
6397 }
6398
6399 *buf_size = fill_textconv(textconv, df, buf);
6400 free_filespec(df);
6401 return 1;
6402}
6403
4914c962
NTND
6404void setup_diff_pager(struct diff_options *opt)
6405{
6406 /*
6407 * If the user asked for our exit code, then either they want --quiet
6408 * or --exit-code. We should definitely not bother with a pager in the
6409 * former case, as we will generate no output. Since we still properly
6410 * report our exit code even when a pager is run, we _could_ run a
6411 * pager with --exit-code. But since we have not done so historically,
6412 * and because it is easy to find people oneline advising "git diff
6413 * --exit-code" in hooks and other scripts, we do not do so.
6414 */
0d1e0e78 6415 if (!opt->flags.exit_with_status &&
4914c962
NTND
6416 check_pager_config("diff") != 0)
6417 setup_pager();
6418}