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