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