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