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