]> git.ipfire.org Git - thirdparty/git.git/blame - diff.c
i18n: credential-cache--daemon: mark advice for translation
[thirdparty/git.git] / diff.c
CommitLineData
6973dcae
JH
1/*
2 * Copyright (C) 2005 Junio C Hamano
3 */
6973dcae 4#include "cache.h"
284098f1 5#include "tempfile.h"
6973dcae
JH
6#include "quote.h"
7#include "diff.h"
8#include "diffcore.h"
051308f6 9#include "delta.h"
6973dcae 10#include "xdiff-interface.h"
7c92fe0e 11#include "color.h"
8c701249 12#include "attr.h"
d5535ec7 13#include "run-command.h"
23707811 14#include "utf8.h"
be58e70d 15#include "userdiff.h"
851e18c3 16#include "submodule-config.h"
752c0c24 17#include "submodule.h"
a757c646 18#include "ll-merge.h"
02e8ca0e 19#include "string-list.h"
82fbf269 20#include "argv-array.h"
660e113c 21#include "graph.h"
6973dcae 22
1510fea7
SP
23#ifdef NO_FAST_WORKING_DIRECTORY
24#define FAST_WORKING_DIRECTORY 0
25#else
26#define FAST_WORKING_DIRECTORY 1
27#endif
28
96f1e58f 29static int diff_detect_rename_default;
433860f3 30static int diff_indent_heuristic; /* experimental */
5580b271 31static int diff_compaction_heuristic; /* experimental */
92c57e5c 32static int diff_rename_limit_default = 400;
a624eaa7 33static int diff_suppress_blank_empty;
d2aea137 34static int diff_use_color_default = -1;
6468a4e5 35static int diff_context_default = 3;
98a4d87b 36static const char *diff_word_regex_cfg;
cbe02100 37static const char *external_diff_cmd_cfg;
6d8940b5 38static const char *diff_order_file_cfg;
aecbf914 39int diff_auto_refresh_index = 1;
a5a818ee 40static int diff_mnemonic_prefix;
f89504dd 41static int diff_no_prefix;
df44483a 42static int diff_stat_graph_width;
712d2c7d 43static int diff_dirstat_permille_default = 30;
be4f2b40 44static struct diff_options default_diff_options;
07ab4dec 45static long diff_algorithm;
6973dcae 46
7c92fe0e 47static char diff_colors[][COLOR_MAXLEN] = {
dc6ebd4c 48 GIT_COLOR_RESET,
8dbf3eb6 49 GIT_COLOR_NORMAL, /* CONTEXT */
dc6ebd4c
AL
50 GIT_COLOR_BOLD, /* METAINFO */
51 GIT_COLOR_CYAN, /* FRAGINFO */
52 GIT_COLOR_RED, /* OLD */
53 GIT_COLOR_GREEN, /* NEW */
54 GIT_COLOR_YELLOW, /* COMMIT */
55 GIT_COLOR_BG_RED, /* WHITESPACE */
89cb73a1 56 GIT_COLOR_NORMAL, /* FUNCINFO */
cd112cef
JS
57};
58
a2f05c94
JNA
59static NORETURN void die_want_option(const char *option_name)
60{
61 die(_("option '%s' requires a value"), option_name);
62}
63
9e1a5ebe 64static int parse_diff_color_slot(const char *var)
801235c5 65{
74b15bfb 66 if (!strcasecmp(var, "context") || !strcasecmp(var, "plain"))
8dbf3eb6 67 return DIFF_CONTEXT;
9e1a5ebe 68 if (!strcasecmp(var, "meta"))
801235c5 69 return DIFF_METAINFO;
9e1a5ebe 70 if (!strcasecmp(var, "frag"))
801235c5 71 return DIFF_FRAGINFO;
9e1a5ebe 72 if (!strcasecmp(var, "old"))
801235c5 73 return DIFF_FILE_OLD;
9e1a5ebe 74 if (!strcasecmp(var, "new"))
801235c5 75 return DIFF_FILE_NEW;
9e1a5ebe 76 if (!strcasecmp(var, "commit"))
ce436973 77 return DIFF_COMMIT;
9e1a5ebe 78 if (!strcasecmp(var, "whitespace"))
448c3ef1 79 return DIFF_WHITESPACE;
9e1a5ebe 80 if (!strcasecmp(var, "func"))
89cb73a1 81 return DIFF_FUNCINFO;
8b8e8624 82 return -1;
801235c5
JH
83}
84
02e8ca0e 85static int parse_dirstat_params(struct diff_options *options, const char *params_string,
51670fc8 86 struct strbuf *errmsg)
333f3fb0 87{
02e8ca0e
MH
88 char *params_copy = xstrdup(params_string);
89 struct string_list params = STRING_LIST_INIT_NODUP;
90 int ret = 0;
91 int i;
51670fc8 92
02e8ca0e
MH
93 if (*params_copy)
94 string_list_split_in_place(&params, params_copy, ',', -1);
95 for (i = 0; i < params.nr; i++) {
96 const char *p = params.items[i].string;
97 if (!strcmp(p, "changes")) {
1c57a627
JH
98 DIFF_OPT_CLR(options, DIRSTAT_BY_LINE);
99 DIFF_OPT_CLR(options, DIRSTAT_BY_FILE);
02e8ca0e 100 } else if (!strcmp(p, "lines")) {
1c57a627 101 DIFF_OPT_SET(options, DIRSTAT_BY_LINE);
333f3fb0 102 DIFF_OPT_CLR(options, DIRSTAT_BY_FILE);
02e8ca0e 103 } else if (!strcmp(p, "files")) {
1c57a627 104 DIFF_OPT_CLR(options, DIRSTAT_BY_LINE);
333f3fb0 105 DIFF_OPT_SET(options, DIRSTAT_BY_FILE);
02e8ca0e 106 } else if (!strcmp(p, "noncumulative")) {
333f3fb0 107 DIFF_OPT_CLR(options, DIRSTAT_CUMULATIVE);
02e8ca0e 108 } else if (!strcmp(p, "cumulative")) {
333f3fb0
JH
109 DIFF_OPT_SET(options, DIRSTAT_CUMULATIVE);
110 } else if (isdigit(*p)) {
111 char *end;
51670fc8
JH
112 int permille = strtoul(p, &end, 10) * 10;
113 if (*end == '.' && isdigit(*++end)) {
712d2c7d 114 /* only use first digit */
51670fc8 115 permille += *end - '0';
712d2c7d 116 /* .. and ignore any further digits */
51670fc8 117 while (isdigit(*++end))
712d2c7d
JH
118 ; /* nothing */
119 }
02e8ca0e 120 if (!*end)
51670fc8
JH
121 options->dirstat_permille = permille;
122 else {
02e8ca0e
MH
123 strbuf_addf(errmsg, _(" Failed to parse dirstat cut-off percentage '%s'\n"),
124 p);
51670fc8
JH
125 ret++;
126 }
127 } else {
02e8ca0e 128 strbuf_addf(errmsg, _(" Unknown dirstat parameter '%s'\n"), p);
51670fc8 129 ret++;
333f3fb0 130 }
51670fc8 131
333f3fb0 132 }
02e8ca0e
MH
133 string_list_clear(&params, 0);
134 free(params_copy);
51670fc8 135 return ret;
333f3fb0
JH
136}
137
c47ef57c
RR
138static int parse_submodule_params(struct diff_options *options, const char *value)
139{
140 if (!strcmp(value, "log"))
61cfbc05 141 options->submodule_format = DIFF_SUBMODULE_LOG;
c47ef57c 142 else if (!strcmp(value, "short"))
61cfbc05 143 options->submodule_format = DIFF_SUBMODULE_SHORT;
fd47ae6a
JK
144 else if (!strcmp(value, "diff"))
145 options->submodule_format = DIFF_SUBMODULE_INLINE_DIFF;
c47ef57c
RR
146 else
147 return -1;
148 return 0;
149}
150
cced5fbc
LT
151static int git_config_rename(const char *var, const char *value)
152{
153 if (!value)
154 return DIFF_DETECT_RENAME;
155 if (!strcasecmp(value, "copies") || !strcasecmp(value, "copy"))
156 return DIFF_DETECT_COPY;
157 return git_config_bool(var,value) ? DIFF_DETECT_RENAME : 0;
158}
159
07924d4d 160long parse_algorithm_value(const char *value)
07ab4dec
MP
161{
162 if (!value)
163 return -1;
164 else if (!strcasecmp(value, "myers") || !strcasecmp(value, "default"))
165 return 0;
166 else if (!strcasecmp(value, "minimal"))
167 return XDF_NEED_MINIMAL;
168 else if (!strcasecmp(value, "patience"))
169 return XDF_PATIENCE_DIFF;
170 else if (!strcasecmp(value, "histogram"))
171 return XDF_HISTOGRAM_DIFF;
172 return -1;
173}
174
83ad63cf
JH
175/*
176 * These are to give UI layer defaults.
177 * The core-level commands such as git-diff-files should
178 * never be affected by the setting of diff.renames
179 * the user happens to have in the configuration file.
180 */
5404c116
MM
181void init_diff_ui_defaults(void)
182{
183 diff_detect_rename_default = 1;
184}
185
5b162879
MH
186int git_diff_heuristic_config(const char *var, const char *value, void *cb)
187{
188 if (!strcmp(var, "diff.indentheuristic")) {
189 diff_indent_heuristic = git_config_bool(var, value);
190 if (diff_indent_heuristic)
191 diff_compaction_heuristic = 0;
192 }
193 if (!strcmp(var, "diff.compactionheuristic")) {
194 diff_compaction_heuristic = git_config_bool(var, value);
195 if (diff_compaction_heuristic)
196 diff_indent_heuristic = 0;
197 }
198 return 0;
199}
200
ef90d6d4 201int git_diff_ui_config(const char *var, const char *value, void *cb)
801235c5 202{
a159ca0c 203 if (!strcmp(var, "diff.color") || !strcmp(var, "color.diff")) {
e269eb79 204 diff_use_color_default = git_config_colorbool(var, value);
801235c5
JH
205 return 0;
206 }
6468a4e5
JM
207 if (!strcmp(var, "diff.context")) {
208 diff_context_default = git_config_int(var, value);
209 if (diff_context_default < 0)
210 return -1;
211 return 0;
212 }
b68ea12e 213 if (!strcmp(var, "diff.renames")) {
cced5fbc 214 diff_detect_rename_default = git_config_rename(var, value);
b68ea12e
EW
215 return 0;
216 }
aecbf914
JH
217 if (!strcmp(var, "diff.autorefreshindex")) {
218 diff_auto_refresh_index = git_config_bool(var, value);
219 return 0;
220 }
a5a818ee
JH
221 if (!strcmp(var, "diff.mnemonicprefix")) {
222 diff_mnemonic_prefix = git_config_bool(var, value);
223 return 0;
224 }
f89504dd
EC
225 if (!strcmp(var, "diff.noprefix")) {
226 diff_no_prefix = git_config_bool(var, value);
227 return 0;
228 }
df44483a
ZJS
229 if (!strcmp(var, "diff.statgraphwidth")) {
230 diff_stat_graph_width = git_config_int(var, value);
231 return 0;
232 }
daec808c
BH
233 if (!strcmp(var, "diff.external"))
234 return git_config_string(&external_diff_cmd_cfg, var, value);
98a4d87b
BSSJ
235 if (!strcmp(var, "diff.wordregex"))
236 return git_config_string(&diff_word_regex_cfg, var, value);
6d8940b5
SB
237 if (!strcmp(var, "diff.orderfile"))
238 return git_config_pathname(&diff_order_file_cfg, var, value);
f1af60bd 239
be4f2b40
JS
240 if (!strcmp(var, "diff.ignoresubmodules"))
241 handle_ignore_submodules_arg(&default_diff_options, value);
242
c47ef57c
RR
243 if (!strcmp(var, "diff.submodule")) {
244 if (parse_submodule_params(&default_diff_options, value))
245 warning(_("Unknown value for 'diff.submodule' config variable: '%s'"),
246 value);
247 return 0;
248 }
249
07ab4dec
MP
250 if (!strcmp(var, "diff.algorithm")) {
251 diff_algorithm = parse_algorithm_value(value);
252 if (diff_algorithm < 0)
253 return -1;
254 return 0;
255 }
256
5b162879
MH
257 if (git_diff_heuristic_config(var, value, cb) < 0)
258 return -1;
3e1dd17a
JK
259 if (git_color_config(var, value, cb) < 0)
260 return -1;
261
ef90d6d4 262 return git_diff_basic_config(var, value, cb);
9a1805a8
JK
263}
264
ef90d6d4 265int git_diff_basic_config(const char *var, const char *value, void *cb)
9a1805a8 266{
ae021d87
JK
267 const char *name;
268
2b6ca6df
LT
269 if (!strcmp(var, "diff.renamelimit")) {
270 diff_rename_limit_default = git_config_int(var, value);
271 return 0;
272 }
273
6680a087
JK
274 if (userdiff_config(var, value) < 0)
275 return -1;
c7534ef4 276
ae021d87
JK
277 if (skip_prefix(var, "diff.color.", &name) ||
278 skip_prefix(var, "color.diff.", &name)) {
279 int slot = parse_diff_color_slot(name);
8b8e8624
JK
280 if (slot < 0)
281 return 0;
64f30e94
JH
282 if (!value)
283 return config_error_nonbool(var);
f6c5a296 284 return color_parse(value, diff_colors[slot]);
801235c5 285 }
f1af60bd 286
a624eaa7 287 /* like GNU diff's --suppress-blank-empty option */
950db879
JS
288 if (!strcmp(var, "diff.suppressblankempty") ||
289 /* for backwards compatibility */
290 !strcmp(var, "diff.suppress-blank-empty")) {
a624eaa7
JM
291 diff_suppress_blank_empty = git_config_bool(var, value);
292 return 0;
293 }
294
2d174951 295 if (!strcmp(var, "diff.dirstat")) {
51670fc8 296 struct strbuf errmsg = STRBUF_INIT;
712d2c7d 297 default_diff_options.dirstat_permille = diff_dirstat_permille_default;
51670fc8 298 if (parse_dirstat_params(&default_diff_options, value, &errmsg))
7478ac57 299 warning(_("Found errors in 'diff.dirstat' config variable:\n%s"),
51670fc8
JH
300 errmsg.buf);
301 strbuf_release(&errmsg);
712d2c7d 302 diff_dirstat_permille_default = default_diff_options.dirstat_permille;
2d174951
JH
303 return 0;
304 }
305
59556548 306 if (starts_with(var, "submodule."))
aee9c7d6
JL
307 return parse_submodule_config_option(var, value);
308
3e1dd17a 309 return git_default_config(var, value, cb);
801235c5
JH
310}
311
6973dcae
JH
312static char *quote_two(const char *one, const char *two)
313{
314 int need_one = quote_c_style(one, NULL, NULL, 1);
315 int need_two = quote_c_style(two, NULL, NULL, 1);
f285a2d7 316 struct strbuf res = STRBUF_INIT;
6973dcae
JH
317
318 if (need_one + need_two) {
663af342
PH
319 strbuf_addch(&res, '"');
320 quote_c_style(one, &res, NULL, 1);
321 quote_c_style(two, &res, NULL, 1);
322 strbuf_addch(&res, '"');
323 } else {
324 strbuf_addstr(&res, one);
325 strbuf_addstr(&res, two);
6973dcae 326 }
b315c5c0 327 return strbuf_detach(&res, NULL);
6973dcae
JH
328}
329
330static const char *external_diff(void)
331{
332 static const char *external_diff_cmd = NULL;
333 static int done_preparing = 0;
334
335 if (done_preparing)
336 return external_diff_cmd;
337 external_diff_cmd = getenv("GIT_EXTERNAL_DIFF");
cbe02100
JS
338 if (!external_diff_cmd)
339 external_diff_cmd = external_diff_cmd_cfg;
6973dcae
JH
340 done_preparing = 1;
341 return external_diff_cmd;
342}
343
284098f1
MH
344/*
345 * Keep track of files used for diffing. Sometimes such an entry
346 * refers to a temporary file, sometimes to an existing file, and
347 * sometimes to "/dev/null".
348 */
6973dcae 349static struct diff_tempfile {
284098f1
MH
350 /*
351 * filename external diff should read from, or NULL if this
352 * entry is currently not in use:
353 */
354 const char *name;
355
d59f765a 356 char hex[GIT_SHA1_HEXSZ + 1];
6973dcae 357 char mode[10];
284098f1
MH
358
359 /*
360 * If this diff_tempfile instance refers to a temporary file,
361 * this tempfile object is used to manage its lifetime.
362 */
363 struct tempfile tempfile;
6973dcae
JH
364} diff_temp[2];
365
6957eb9a
JH
366typedef unsigned long (*sane_truncate_fn)(char *line, unsigned long len);
367
368struct emit_callback {
6957eb9a
JH
369 int color_diff;
370 unsigned ws_rule;
371 int blank_at_eof_in_preimage;
372 int blank_at_eof_in_postimage;
373 int lno_in_preimage;
374 int lno_in_postimage;
375 sane_truncate_fn truncate;
376 const char **label_path;
377 struct diff_words_data *diff_words;
a3c158d4 378 struct diff_options *opt;
3e97c7c6 379 struct strbuf *header;
6957eb9a
JH
380};
381
6973dcae
JH
382static int count_lines(const char *data, int size)
383{
384 int count, ch, completely_empty = 1, nl_just_seen = 0;
385 count = 0;
386 while (0 < size--) {
387 ch = *data++;
388 if (ch == '\n') {
389 count++;
390 nl_just_seen = 1;
391 completely_empty = 0;
392 }
393 else {
394 nl_just_seen = 0;
395 completely_empty = 0;
396 }
397 }
398 if (completely_empty)
399 return 0;
400 if (!nl_just_seen)
401 count++; /* no trailing newline */
402 return count;
403}
404
6957eb9a
JH
405static int fill_mmfile(mmfile_t *mf, struct diff_filespec *one)
406{
407 if (!DIFF_FILE_VALID(one)) {
408 mf->ptr = (char *)""; /* does not matter */
409 mf->size = 0;
410 return 0;
411 }
412 else if (diff_populate_filespec(one, 0))
413 return -1;
bb35fefb 414
6957eb9a
JH
415 mf->ptr = one->data;
416 mf->size = one->size;
417 return 0;
418}
419
abb371a1
JK
420/* like fill_mmfile, but only for size, so we can avoid retrieving blob */
421static unsigned long diff_filespec_size(struct diff_filespec *one)
422{
423 if (!DIFF_FILE_VALID(one))
424 return 0;
8e5dd3d6 425 diff_populate_filespec(one, CHECK_SIZE_ONLY);
abb371a1
JK
426 return one->size;
427}
428
6957eb9a
JH
429static int count_trailing_blank(mmfile_t *mf, unsigned ws_rule)
430{
431 char *ptr = mf->ptr;
432 long size = mf->size;
433 int cnt = 0;
434
435 if (!size)
436 return cnt;
437 ptr += size - 1; /* pointing at the very end */
438 if (*ptr != '\n')
439 ; /* incomplete line */
440 else
441 ptr--; /* skip the last LF */
442 while (mf->ptr < ptr) {
443 char *prev_eol;
444 for (prev_eol = ptr; mf->ptr <= prev_eol; prev_eol--)
445 if (*prev_eol == '\n')
446 break;
447 if (!ws_blank_line(prev_eol + 1, ptr - prev_eol, ws_rule))
448 break;
449 cnt++;
450 ptr = prev_eol - 1;
451 }
452 return cnt;
453}
454
455static void check_blank_at_eof(mmfile_t *mf1, mmfile_t *mf2,
456 struct emit_callback *ecbdata)
457{
458 int l1, l2, at;
459 unsigned ws_rule = ecbdata->ws_rule;
460 l1 = count_trailing_blank(mf1, ws_rule);
461 l2 = count_trailing_blank(mf2, ws_rule);
462 if (l2 <= l1) {
463 ecbdata->blank_at_eof_in_preimage = 0;
464 ecbdata->blank_at_eof_in_postimage = 0;
465 return;
466 }
467 at = count_lines(mf1->ptr, mf1->size);
468 ecbdata->blank_at_eof_in_preimage = (at - l1) + 1;
469
470 at = count_lines(mf2->ptr, mf2->size);
471 ecbdata->blank_at_eof_in_postimage = (at - l2) + 1;
472}
473
a3c158d4 474static void emit_line_0(struct diff_options *o, const char *set, const char *reset,
250f7993 475 int first, const char *line, int len)
6957eb9a
JH
476{
477 int has_trailing_newline, has_trailing_carriage_return;
250f7993 478 int nofirst;
a3c158d4
BY
479 FILE *file = o->file;
480
30997bb8 481 fputs(diff_line_prefix(o), file);
6957eb9a 482
250f7993
JH
483 if (len == 0) {
484 has_trailing_newline = (first == '\n');
485 has_trailing_carriage_return = (!has_trailing_newline &&
486 (first == '\r'));
487 nofirst = has_trailing_newline || has_trailing_carriage_return;
488 } else {
489 has_trailing_newline = (len > 0 && line[len-1] == '\n');
490 if (has_trailing_newline)
491 len--;
492 has_trailing_carriage_return = (len > 0 && line[len-1] == '\r');
493 if (has_trailing_carriage_return)
494 len--;
495 nofirst = 0;
496 }
6957eb9a 497
06a47552
JH
498 if (len || !nofirst) {
499 fputs(set, file);
500 if (!nofirst)
501 fputc(first, file);
502 fwrite(line, len, 1, file);
503 fputs(reset, file);
504 }
6957eb9a
JH
505 if (has_trailing_carriage_return)
506 fputc('\r', file);
507 if (has_trailing_newline)
508 fputc('\n', file);
509}
510
a3c158d4 511static void emit_line(struct diff_options *o, const char *set, const char *reset,
250f7993
JH
512 const char *line, int len)
513{
a3c158d4 514 emit_line_0(o, set, reset, line[0], line+1, len-1);
250f7993
JH
515}
516
6957eb9a
JH
517static int new_blank_line_at_eof(struct emit_callback *ecbdata, const char *line, int len)
518{
519 if (!((ecbdata->ws_rule & WS_BLANK_AT_EOF) &&
520 ecbdata->blank_at_eof_in_preimage &&
521 ecbdata->blank_at_eof_in_postimage &&
522 ecbdata->blank_at_eof_in_preimage <= ecbdata->lno_in_preimage &&
523 ecbdata->blank_at_eof_in_postimage <= ecbdata->lno_in_postimage))
524 return 0;
018cff70 525 return ws_blank_line(line, len, ecbdata->ws_rule);
6957eb9a
JH
526}
527
b8767f79
JH
528static void emit_line_checked(const char *reset,
529 struct emit_callback *ecbdata,
530 const char *line, int len,
531 enum color_diff color,
532 unsigned ws_error_highlight,
533 char sign)
6957eb9a 534{
b8767f79
JH
535 const char *set = diff_get_color(ecbdata->color_diff, color);
536 const char *ws = NULL;
6957eb9a 537
b8767f79
JH
538 if (ecbdata->opt->ws_error_highlight & ws_error_highlight) {
539 ws = diff_get_color(ecbdata->color_diff, DIFF_WHITESPACE);
540 if (!*ws)
541 ws = NULL;
542 }
543
544 if (!ws)
545 emit_line_0(ecbdata->opt, set, reset, sign, line, len);
546 else if (sign == '+' && new_blank_line_at_eof(ecbdata, line, len))
6957eb9a 547 /* Blank line at EOF - paint '+' as well */
b8767f79 548 emit_line_0(ecbdata->opt, ws, reset, sign, line, len);
6957eb9a
JH
549 else {
550 /* Emit just the prefix, then the rest. */
b8767f79 551 emit_line_0(ecbdata->opt, set, reset, sign, "", 0);
018cff70 552 ws_check_emit(line, len, ecbdata->ws_rule,
a3c158d4 553 ecbdata->opt->file, set, reset, ws);
6957eb9a
JH
554 }
555}
556
b8767f79 557static void emit_add_line(const char *reset,
0e383e18
JH
558 struct emit_callback *ecbdata,
559 const char *line, int len)
560{
b8767f79
JH
561 emit_line_checked(reset, ecbdata, line, len,
562 DIFF_FILE_NEW, WSEH_NEW, '+');
563}
0e383e18 564
b8767f79
JH
565static void emit_del_line(const char *reset,
566 struct emit_callback *ecbdata,
567 const char *line, int len)
568{
569 emit_line_checked(reset, ecbdata, line, len,
570 DIFF_FILE_OLD, WSEH_OLD, '-');
0e383e18
JH
571}
572
573static void emit_context_line(const char *reset,
574 struct emit_callback *ecbdata,
575 const char *line, int len)
576{
b8767f79 577 emit_line_checked(reset, ecbdata, line, len,
db65170e 578 DIFF_CONTEXT, WSEH_CONTEXT, ' ');
0e383e18
JH
579}
580
89cb73a1
BW
581static void emit_hunk_header(struct emit_callback *ecbdata,
582 const char *line, int len)
583{
8dbf3eb6 584 const char *context = diff_get_color(ecbdata->color_diff, DIFF_CONTEXT);
89cb73a1
BW
585 const char *frag = diff_get_color(ecbdata->color_diff, DIFF_FRAGINFO);
586 const char *func = diff_get_color(ecbdata->color_diff, DIFF_FUNCINFO);
587 const char *reset = diff_get_color(ecbdata->color_diff, DIFF_RESET);
588 static const char atat[2] = { '@', '@' };
589 const char *cp, *ep;
2efcc977
BY
590 struct strbuf msgbuf = STRBUF_INIT;
591 int org_len = len;
592 int i = 1;
89cb73a1
BW
593
594 /*
595 * As a hunk header must begin with "@@ -<old>, +<new> @@",
596 * it always is at least 10 bytes long.
597 */
598 if (len < 10 ||
599 memcmp(line, atat, 2) ||
600 !(ep = memmem(line + 2, len - 2, atat, 2))) {
8dbf3eb6 601 emit_line(ecbdata->opt, context, reset, line, len);
89cb73a1
BW
602 return;
603 }
604 ep += 2; /* skip over @@ */
605
606 /* The hunk header in fraginfo color */
cedc61a9 607 strbuf_addstr(&msgbuf, frag);
2efcc977 608 strbuf_add(&msgbuf, line, ep - line);
cedc61a9 609 strbuf_addstr(&msgbuf, reset);
2efcc977
BY
610
611 /*
612 * trailing "\r\n"
613 */
614 for ( ; i < 3; i++)
615 if (line[len - i] == '\r' || line[len - i] == '\n')
616 len--;
89cb73a1
BW
617
618 /* blank before the func header */
619 for (cp = ep; ep - line < len; ep++)
620 if (*ep != ' ' && *ep != '\t')
621 break;
2efcc977 622 if (ep != cp) {
8dbf3eb6 623 strbuf_addstr(&msgbuf, context);
2efcc977 624 strbuf_add(&msgbuf, cp, ep - cp);
cedc61a9 625 strbuf_addstr(&msgbuf, reset);
2efcc977
BY
626 }
627
628 if (ep < line + len) {
cedc61a9 629 strbuf_addstr(&msgbuf, func);
2efcc977 630 strbuf_add(&msgbuf, ep, line + len - ep);
cedc61a9 631 strbuf_addstr(&msgbuf, reset);
2efcc977 632 }
89cb73a1 633
2efcc977
BY
634 strbuf_add(&msgbuf, line + len, org_len - len);
635 emit_line(ecbdata->opt, "", "", msgbuf.buf, msgbuf.len);
636 strbuf_release(&msgbuf);
89cb73a1
BW
637}
638
479b0ae8
JK
639static struct diff_tempfile *claim_diff_tempfile(void) {
640 int i;
641 for (i = 0; i < ARRAY_SIZE(diff_temp); i++)
642 if (!diff_temp[i].name)
643 return diff_temp + i;
644 die("BUG: diff is failing to clean up its tempfiles");
645}
646
479b0ae8
JK
647static void remove_tempfile(void)
648{
649 int i;
a8344abe 650 for (i = 0; i < ARRAY_SIZE(diff_temp); i++) {
284098f1
MH
651 if (is_tempfile_active(&diff_temp[i].tempfile))
652 delete_tempfile(&diff_temp[i].tempfile);
a8344abe
NR
653 diff_temp[i].name = NULL;
654 }
479b0ae8
JK
655}
656
c0c77734 657static void print_line_count(FILE *file, int count)
6973dcae
JH
658{
659 switch (count) {
660 case 0:
c0c77734 661 fprintf(file, "0,0");
6973dcae
JH
662 break;
663 case 1:
c0c77734 664 fprintf(file, "1");
6973dcae
JH
665 break;
666 default:
c0c77734 667 fprintf(file, "1,%d", count);
6973dcae
JH
668 break;
669 }
670}
671
7f7ee2ff
JH
672static void emit_rewrite_lines(struct emit_callback *ecb,
673 int prefix, const char *data, int size)
6973dcae 674{
7f7ee2ff
JH
675 const char *endp = NULL;
676 static const char *nneof = " No newline at end of file\n";
7f7ee2ff
JH
677 const char *reset = diff_get_color(ecb->color_diff, DIFF_RESET);
678
679 while (0 < size) {
680 int len;
681
682 endp = memchr(data, '\n', size);
683 len = endp ? (endp - data + 1) : size;
684 if (prefix != '+') {
685 ecb->lno_in_preimage++;
0e383e18 686 emit_del_line(reset, ecb, data, len);
7f7ee2ff
JH
687 } else {
688 ecb->lno_in_postimage++;
689 emit_add_line(reset, ecb, data, len);
13e36ec5 690 }
7f7ee2ff
JH
691 size -= len;
692 data += len;
693 }
694 if (!endp) {
8dbf3eb6
JK
695 const char *context = diff_get_color(ecb->color_diff,
696 DIFF_CONTEXT);
35e2d03c 697 putc('\n', ecb->opt->file);
8dbf3eb6 698 emit_line_0(ecb->opt, context, reset, '\\',
7f7ee2ff 699 nneof, strlen(nneof));
6973dcae 700 }
6973dcae
JH
701}
702
703static void emit_rewrite_diff(const char *name_a,
704 const char *name_b,
705 struct diff_filespec *one,
13e36ec5 706 struct diff_filespec *two,
d9bae1a1
JK
707 struct userdiff_driver *textconv_one,
708 struct userdiff_driver *textconv_two,
eab9a40b 709 struct diff_options *o)
6973dcae
JH
710{
711 int lc_a, lc_b;
1a9eb3b9 712 const char *name_a_tab, *name_b_tab;
f1c96261
JK
713 const char *metainfo = diff_get_color(o->use_color, DIFF_METAINFO);
714 const char *fraginfo = diff_get_color(o->use_color, DIFF_FRAGINFO);
715 const char *reset = diff_get_color(o->use_color, DIFF_RESET);
d5625091 716 static struct strbuf a_name = STRBUF_INIT, b_name = STRBUF_INIT;
a5a818ee 717 const char *a_prefix, *b_prefix;
840383b2 718 char *data_one, *data_two;
3aa1f7ca 719 size_t size_one, size_two;
7f7ee2ff 720 struct emit_callback ecbdata;
30997bb8 721 const char *line_prefix = diff_line_prefix(o);
a5a818ee
JH
722
723 if (diff_mnemonic_prefix && DIFF_OPT_TST(o, REVERSE_DIFF)) {
724 a_prefix = o->b_prefix;
725 b_prefix = o->a_prefix;
726 } else {
727 a_prefix = o->a_prefix;
728 b_prefix = o->b_prefix;
729 }
1a9eb3b9 730
8a13becc
JH
731 name_a += (*name_a == '/');
732 name_b += (*name_b == '/');
1a9eb3b9
JH
733 name_a_tab = strchr(name_a, ' ') ? "\t" : "";
734 name_b_tab = strchr(name_b, ' ') ? "\t" : "";
735
d5625091
JH
736 strbuf_reset(&a_name);
737 strbuf_reset(&b_name);
a5a818ee
JH
738 quote_two_c_style(&a_name, a_prefix, name_a, 0);
739 quote_two_c_style(&b_name, b_prefix, name_b, 0);
d5625091 740
840383b2
JK
741 size_one = fill_textconv(textconv_one, one, &data_one);
742 size_two = fill_textconv(textconv_two, two, &data_two);
3aa1f7ca 743
d91ba8fa 744 memset(&ecbdata, 0, sizeof(ecbdata));
daa0c3d9 745 ecbdata.color_diff = want_color(o->use_color);
c189c4f2 746 ecbdata.ws_rule = whitespace_rule(name_b);
a3c158d4 747 ecbdata.opt = o;
d91ba8fa
JH
748 if (ecbdata.ws_rule & WS_BLANK_AT_EOF) {
749 mmfile_t mf1, mf2;
750 mf1.ptr = (char *)data_one;
751 mf2.ptr = (char *)data_two;
752 mf1.size = size_one;
753 mf2.size = size_two;
754 check_blank_at_eof(&mf1, &mf2, &ecbdata);
755 }
756 ecbdata.lno_in_preimage = 1;
757 ecbdata.lno_in_postimage = 1;
758
3aa1f7ca
JK
759 lc_a = count_lines(data_one, size_one);
760 lc_b = count_lines(data_two, size_two);
c0c77734 761 fprintf(o->file,
7be57610
BY
762 "%s%s--- %s%s%s\n%s%s+++ %s%s%s\n%s%s@@ -",
763 line_prefix, metainfo, a_name.buf, name_a_tab, reset,
764 line_prefix, metainfo, b_name.buf, name_b_tab, reset,
765 line_prefix, fraginfo);
467ddc14
JH
766 if (!o->irreversible_delete)
767 print_line_count(o->file, lc_a);
768 else
769 fprintf(o->file, "?,?");
c0c77734
DB
770 fprintf(o->file, " +");
771 print_line_count(o->file, lc_b);
772 fprintf(o->file, " @@%s\n", reset);
467ddc14 773 if (lc_a && !o->irreversible_delete)
d91ba8fa 774 emit_rewrite_lines(&ecbdata, '-', data_one, size_one);
6973dcae 775 if (lc_b)
d91ba8fa 776 emit_rewrite_lines(&ecbdata, '+', data_two, size_two);
b76c056b 777 if (textconv_one)
aed6ca52 778 free((char *)data_one);
b76c056b 779 if (textconv_two)
aed6ca52 780 free((char *)data_two);
6973dcae
JH
781}
782
f59a59e2
JS
783struct diff_words_buffer {
784 mmfile_t text;
785 long alloc;
2e5d2003
JS
786 struct diff_words_orig {
787 const char *begin, *end;
788 } *orig;
789 int orig_nr, orig_alloc;
f59a59e2
JS
790};
791
792static void diff_words_append(char *line, unsigned long len,
793 struct diff_words_buffer *buffer)
794{
23c1575f 795 ALLOC_GROW(buffer->text.ptr, buffer->text.size + len, buffer->alloc);
f59a59e2
JS
796 line++;
797 len--;
798 memcpy(buffer->text.ptr + buffer->text.size, line, len);
799 buffer->text.size += len;
2b6a5417 800 buffer->text.ptr[buffer->text.size] = '\0';
f59a59e2
JS
801}
802
9cba13ca 803struct diff_words_style_elem {
882749a0
TR
804 const char *prefix;
805 const char *suffix;
806 const char *color; /* NULL; filled in by the setup code if
807 * color is enabled */
808};
809
9cba13ca 810struct diff_words_style {
882749a0
TR
811 enum diff_words_type type;
812 struct diff_words_style_elem new, old, ctx;
813 const char *newline;
814};
815
c2e86add 816static struct diff_words_style diff_words_styles[] = {
882749a0
TR
817 { DIFF_WORDS_PORCELAIN, {"+", "\n"}, {"-", "\n"}, {" ", "\n"}, "~\n" },
818 { DIFF_WORDS_PLAIN, {"{+", "+}"}, {"[-", "-]"}, {"", ""}, "\n" },
819 { DIFF_WORDS_COLOR, {"", ""}, {"", ""}, {"", ""}, "\n" }
820};
821
f59a59e2 822struct diff_words_data {
f59a59e2 823 struct diff_words_buffer minus, plus;
2e5d2003 824 const char *current_plus;
4297c0ae
BY
825 int last_minus;
826 struct diff_options *opt;
2b6a5417 827 regex_t *word_regex;
882749a0
TR
828 enum diff_words_type type;
829 struct diff_words_style *style;
f59a59e2
JS
830};
831
882749a0
TR
832static int fn_out_diff_words_write_helper(FILE *fp,
833 struct diff_words_style_elem *st_el,
834 const char *newline,
4297c0ae
BY
835 size_t count, const char *buf,
836 const char *line_prefix)
882749a0 837{
4297c0ae
BY
838 int print = 0;
839
882749a0
TR
840 while (count) {
841 char *p = memchr(buf, '\n', count);
4297c0ae
BY
842 if (print)
843 fputs(line_prefix, fp);
882749a0
TR
844 if (p != buf) {
845 if (st_el->color && fputs(st_el->color, fp) < 0)
846 return -1;
847 if (fputs(st_el->prefix, fp) < 0 ||
848 fwrite(buf, p ? p - buf : count, 1, fp) != 1 ||
849 fputs(st_el->suffix, fp) < 0)
850 return -1;
851 if (st_el->color && *st_el->color
852 && fputs(GIT_COLOR_RESET, fp) < 0)
853 return -1;
854 }
855 if (!p)
856 return 0;
857 if (fputs(newline, fp) < 0)
858 return -1;
859 count -= p + 1 - buf;
860 buf = p + 1;
4297c0ae 861 print = 1;
882749a0
TR
862 }
863 return 0;
864}
865
4297c0ae
BY
866/*
867 * '--color-words' algorithm can be described as:
868 *
869 * 1. collect a the minus/plus lines of a diff hunk, divided into
870 * minus-lines and plus-lines;
871 *
872 * 2. break both minus-lines and plus-lines into words and
873 * place them into two mmfile_t with one word for each line;
874 *
875 * 3. use xdiff to run diff on the two mmfile_t to get the words level diff;
876 *
877 * And for the common parts of the both file, we output the plus side text.
878 * diff_words->current_plus is used to trace the current position of the plus file
879 * which printed. diff_words->last_minus is used to trace the last minus word
880 * printed.
881 *
882 * For '--graph' to work with '--color-words', we need to output the graph prefix
883 * on each line of color words output. Generally, there are two conditions on
884 * which we should output the prefix.
885 *
886 * 1. diff_words->last_minus == 0 &&
887 * diff_words->current_plus == diff_words->plus.text.ptr
888 *
889 * that is: the plus text must start as a new line, and if there is no minus
890 * word printed, a graph prefix must be printed.
891 *
892 * 2. diff_words->current_plus > diff_words->plus.text.ptr &&
893 * *(diff_words->current_plus - 1) == '\n'
894 *
895 * that is: a graph prefix must be printed following a '\n'
896 */
897static int color_words_output_graph_prefix(struct diff_words_data *diff_words)
898{
899 if ((diff_words->last_minus == 0 &&
900 diff_words->current_plus == diff_words->plus.text.ptr) ||
901 (diff_words->current_plus > diff_words->plus.text.ptr &&
902 *(diff_words->current_plus - 1) == '\n')) {
903 return 1;
904 } else {
905 return 0;
906 }
907}
908
f59a59e2 909static void fn_out_diff_words_aux(void *priv, char *line, unsigned long len)
f59a59e2 910{
f59a59e2 911 struct diff_words_data *diff_words = priv;
882749a0 912 struct diff_words_style *style = diff_words->style;
2e5d2003
JS
913 int minus_first, minus_len, plus_first, plus_len;
914 const char *minus_begin, *minus_end, *plus_begin, *plus_end;
4297c0ae 915 struct diff_options *opt = diff_words->opt;
30997bb8 916 const char *line_prefix;
f59a59e2 917
2e5d2003
JS
918 if (line[0] != '@' || parse_hunk_header(line, len,
919 &minus_first, &minus_len, &plus_first, &plus_len))
f59a59e2
JS
920 return;
921
4297c0ae 922 assert(opt);
30997bb8 923 line_prefix = diff_line_prefix(opt);
4297c0ae 924
2e5d2003
JS
925 /* POSIX requires that first be decremented by one if len == 0... */
926 if (minus_len) {
927 minus_begin = diff_words->minus.orig[minus_first].begin;
928 minus_end =
929 diff_words->minus.orig[minus_first + minus_len - 1].end;
930 } else
931 minus_begin = minus_end =
932 diff_words->minus.orig[minus_first].end;
933
934 if (plus_len) {
935 plus_begin = diff_words->plus.orig[plus_first].begin;
936 plus_end = diff_words->plus.orig[plus_first + plus_len - 1].end;
937 } else
938 plus_begin = plus_end = diff_words->plus.orig[plus_first].end;
939
4297c0ae
BY
940 if (color_words_output_graph_prefix(diff_words)) {
941 fputs(line_prefix, diff_words->opt->file);
942 }
943 if (diff_words->current_plus != plus_begin) {
944 fn_out_diff_words_write_helper(diff_words->opt->file,
882749a0
TR
945 &style->ctx, style->newline,
946 plus_begin - diff_words->current_plus,
4297c0ae
BY
947 diff_words->current_plus, line_prefix);
948 if (*(plus_begin - 1) == '\n')
949 fputs(line_prefix, diff_words->opt->file);
950 }
951 if (minus_begin != minus_end) {
952 fn_out_diff_words_write_helper(diff_words->opt->file,
882749a0 953 &style->old, style->newline,
4297c0ae
BY
954 minus_end - minus_begin, minus_begin,
955 line_prefix);
956 }
957 if (plus_begin != plus_end) {
958 fn_out_diff_words_write_helper(diff_words->opt->file,
882749a0 959 &style->new, style->newline,
4297c0ae
BY
960 plus_end - plus_begin, plus_begin,
961 line_prefix);
962 }
2e5d2003
JS
963
964 diff_words->current_plus = plus_end;
4297c0ae 965 diff_words->last_minus = minus_first;
f59a59e2
JS
966}
967
2b6a5417
JS
968/* This function starts looking at *begin, and returns 0 iff a word was found. */
969static int find_word_boundaries(mmfile_t *buffer, regex_t *word_regex,
970 int *begin, int *end)
971{
972 if (word_regex && *begin < buffer->size) {
973 regmatch_t match[1];
b7d36ffc
JS
974 if (!regexec_buf(word_regex, buffer->ptr + *begin,
975 buffer->size - *begin, 1, match, 0)) {
2b6a5417
JS
976 char *p = memchr(buffer->ptr + *begin + match[0].rm_so,
977 '\n', match[0].rm_eo - match[0].rm_so);
978 *end = p ? p - buffer->ptr : match[0].rm_eo + *begin;
979 *begin += match[0].rm_so;
980 return *begin >= *end;
981 }
982 return -1;
f59a59e2
JS
983 }
984
2b6a5417
JS
985 /* find the next word */
986 while (*begin < buffer->size && isspace(buffer->ptr[*begin]))
987 (*begin)++;
988 if (*begin >= buffer->size)
989 return -1;
f59a59e2 990
2b6a5417
JS
991 /* find the end of the word */
992 *end = *begin + 1;
993 while (*end < buffer->size && !isspace(buffer->ptr[*end]))
994 (*end)++;
995
996 return 0;
f59a59e2
JS
997}
998
23c1575f 999/*
2e5d2003
JS
1000 * This function splits the words in buffer->text, stores the list with
1001 * newline separator into out, and saves the offsets of the original words
1002 * in buffer->orig.
23c1575f 1003 */
2b6a5417
JS
1004static void diff_words_fill(struct diff_words_buffer *buffer, mmfile_t *out,
1005 regex_t *word_regex)
f59a59e2 1006{
2e5d2003 1007 int i, j;
2b6a5417 1008 long alloc = 0;
f59a59e2 1009
2e5d2003 1010 out->size = 0;
2b6a5417 1011 out->ptr = NULL;
f59a59e2 1012
2e5d2003
JS
1013 /* fake an empty "0th" word */
1014 ALLOC_GROW(buffer->orig, 1, buffer->orig_alloc);
1015 buffer->orig[0].begin = buffer->orig[0].end = buffer->text.ptr;
1016 buffer->orig_nr = 1;
1017
1018 for (i = 0; i < buffer->text.size; i++) {
2b6a5417
JS
1019 if (find_word_boundaries(&buffer->text, word_regex, &i, &j))
1020 return;
2e5d2003
JS
1021
1022 /* store original boundaries */
1023 ALLOC_GROW(buffer->orig, buffer->orig_nr + 1,
1024 buffer->orig_alloc);
1025 buffer->orig[buffer->orig_nr].begin = buffer->text.ptr + i;
1026 buffer->orig[buffer->orig_nr].end = buffer->text.ptr + j;
1027 buffer->orig_nr++;
1028
1029 /* store one word */
2b6a5417 1030 ALLOC_GROW(out->ptr, out->size + j - i + 1, alloc);
2e5d2003
JS
1031 memcpy(out->ptr + out->size, buffer->text.ptr + i, j - i);
1032 out->ptr[out->size + j - i] = '\n';
1033 out->size += j - i + 1;
1034
1035 i = j - 1;
f59a59e2
JS
1036 }
1037}
1038
1039/* this executes the word diff on the accumulated buffers */
1040static void diff_words_show(struct diff_words_data *diff_words)
1041{
1042 xpparam_t xpp;
1043 xdemitconf_t xecfg;
f59a59e2 1044 mmfile_t minus, plus;
882749a0 1045 struct diff_words_style *style = diff_words->style;
f59a59e2 1046
4297c0ae 1047 struct diff_options *opt = diff_words->opt;
30997bb8 1048 const char *line_prefix;
4297c0ae
BY
1049
1050 assert(opt);
30997bb8 1051 line_prefix = diff_line_prefix(opt);
4297c0ae 1052
2e5d2003
JS
1053 /* special case: only removal */
1054 if (!diff_words->plus.text.size) {
4297c0ae
BY
1055 fputs(line_prefix, diff_words->opt->file);
1056 fn_out_diff_words_write_helper(diff_words->opt->file,
882749a0 1057 &style->old, style->newline,
4297c0ae
BY
1058 diff_words->minus.text.size,
1059 diff_words->minus.text.ptr, line_prefix);
2e5d2003
JS
1060 diff_words->minus.text.size = 0;
1061 return;
1062 }
1063
1064 diff_words->current_plus = diff_words->plus.text.ptr;
4297c0ae 1065 diff_words->last_minus = 0;
f59a59e2 1066
9ccd0a88 1067 memset(&xpp, 0, sizeof(xpp));
30b25010 1068 memset(&xecfg, 0, sizeof(xecfg));
2b6a5417
JS
1069 diff_words_fill(&diff_words->minus, &minus, diff_words->word_regex);
1070 diff_words_fill(&diff_words->plus, &plus, diff_words->word_regex);
582aa00b 1071 xpp.flags = 0;
2b6a5417 1072 /* as only the hunk header will be parsed, we need a 0-context */
2e5d2003 1073 xecfg.ctxlen = 0;
3efb9880
JK
1074 if (xdi_diff_outf(&minus, &plus, fn_out_diff_words_aux, diff_words,
1075 &xpp, &xecfg))
1076 die("unable to generate word diff");
f59a59e2
JS
1077 free(minus.ptr);
1078 free(plus.ptr);
2e5d2003 1079 if (diff_words->current_plus != diff_words->plus.text.ptr +
4297c0ae
BY
1080 diff_words->plus.text.size) {
1081 if (color_words_output_graph_prefix(diff_words))
1082 fputs(line_prefix, diff_words->opt->file);
1083 fn_out_diff_words_write_helper(diff_words->opt->file,
882749a0 1084 &style->ctx, style->newline,
2e5d2003 1085 diff_words->plus.text.ptr + diff_words->plus.text.size
4297c0ae
BY
1086 - diff_words->current_plus, diff_words->current_plus,
1087 line_prefix);
1088 }
f59a59e2 1089 diff_words->minus.text.size = diff_words->plus.text.size = 0;
f59a59e2
JS
1090}
1091
76fd2828
JH
1092/* In "color-words" mode, show word-diff of words accumulated in the buffer */
1093static void diff_words_flush(struct emit_callback *ecbdata)
1094{
1095 if (ecbdata->diff_words->minus.text.size ||
1096 ecbdata->diff_words->plus.text.size)
1097 diff_words_show(ecbdata->diff_words);
1098}
1099
77d1a520
TR
1100static void diff_filespec_load_driver(struct diff_filespec *one)
1101{
1102 /* Use already-loaded driver */
1103 if (one->driver)
1104 return;
1105
1106 if (S_ISREG(one->mode))
1107 one->driver = userdiff_find_by_path(one->path);
1108
1109 /* Fallback to default settings */
1110 if (!one->driver)
1111 one->driver = userdiff_find_by_name("default");
1112}
1113
1114static const char *userdiff_word_regex(struct diff_filespec *one)
1115{
1116 diff_filespec_load_driver(one);
1117 return one->driver->word_regex;
1118}
1119
1120static void init_diff_words_data(struct emit_callback *ecbdata,
6440d341 1121 struct diff_options *orig_opts,
77d1a520
TR
1122 struct diff_filespec *one,
1123 struct diff_filespec *two)
1124{
1125 int i;
6440d341
TR
1126 struct diff_options *o = xmalloc(sizeof(struct diff_options));
1127 memcpy(o, orig_opts, sizeof(struct diff_options));
77d1a520
TR
1128
1129 ecbdata->diff_words =
1130 xcalloc(1, sizeof(struct diff_words_data));
1131 ecbdata->diff_words->type = o->word_diff;
1132 ecbdata->diff_words->opt = o;
1133 if (!o->word_regex)
1134 o->word_regex = userdiff_word_regex(one);
1135 if (!o->word_regex)
1136 o->word_regex = userdiff_word_regex(two);
1137 if (!o->word_regex)
1138 o->word_regex = diff_word_regex_cfg;
1139 if (o->word_regex) {
1140 ecbdata->diff_words->word_regex = (regex_t *)
1141 xmalloc(sizeof(regex_t));
1142 if (regcomp(ecbdata->diff_words->word_regex,
1143 o->word_regex,
1144 REG_EXTENDED | REG_NEWLINE))
1145 die ("Invalid regular expression: %s",
1146 o->word_regex);
1147 }
1148 for (i = 0; i < ARRAY_SIZE(diff_words_styles); i++) {
1149 if (o->word_diff == diff_words_styles[i].type) {
1150 ecbdata->diff_words->style =
1151 &diff_words_styles[i];
1152 break;
1153 }
1154 }
1155 if (want_color(o->use_color)) {
1156 struct diff_words_style *st = ecbdata->diff_words->style;
1157 st->old.color = diff_get_color_opt(o, DIFF_FILE_OLD);
1158 st->new.color = diff_get_color_opt(o, DIFF_FILE_NEW);
8dbf3eb6 1159 st->ctx.color = diff_get_color_opt(o, DIFF_CONTEXT);
77d1a520
TR
1160 }
1161}
1162
f59a59e2
JS
1163static void free_diff_words_data(struct emit_callback *ecbdata)
1164{
1165 if (ecbdata->diff_words) {
76fd2828 1166 diff_words_flush(ecbdata);
6440d341 1167 free (ecbdata->diff_words->opt);
8e0f7003 1168 free (ecbdata->diff_words->minus.text.ptr);
2e5d2003 1169 free (ecbdata->diff_words->minus.orig);
8e0f7003 1170 free (ecbdata->diff_words->plus.text.ptr);
2e5d2003 1171 free (ecbdata->diff_words->plus.orig);
ef5644ea
BC
1172 if (ecbdata->diff_words->word_regex) {
1173 regfree(ecbdata->diff_words->word_regex);
1174 free(ecbdata->diff_words->word_regex);
1175 }
f59a59e2
JS
1176 free(ecbdata->diff_words);
1177 ecbdata->diff_words = NULL;
1178 }
1179}
1180
ce436973 1181const char *diff_get_color(int diff_use_color, enum color_diff ix)
cd112cef 1182{
daa0c3d9 1183 if (want_color(diff_use_color))
50f575fc
LT
1184 return diff_colors[ix];
1185 return "";
cd112cef
JS
1186}
1187
f1922234
JK
1188const char *diff_line_prefix(struct diff_options *opt)
1189{
1190 struct strbuf *msgbuf;
1191 if (!opt->output_prefix)
1192 return "";
1193
1194 msgbuf = opt->output_prefix(opt, opt->output_prefix_data);
1195 return msgbuf->buf;
1196}
1197
23707811
JH
1198static unsigned long sane_truncate_line(struct emit_callback *ecb, char *line, unsigned long len)
1199{
1200 const char *cp;
1201 unsigned long allot;
1202 size_t l = len;
1203
1204 if (ecb->truncate)
1205 return ecb->truncate(line, len);
1206 cp = line;
1207 allot = l;
1208 while (0 < l) {
1209 (void) utf8_width(&cp, &l);
1210 if (!cp)
1211 break; /* truncated in the middle? */
1212 }
1213 return allot - l;
1214}
1215
d68fe26f 1216static void find_lno(const char *line, struct emit_callback *ecbdata)
690ed843 1217{
d68fe26f
JH
1218 const char *p;
1219 ecbdata->lno_in_preimage = 0;
1220 ecbdata->lno_in_postimage = 0;
1221 p = strchr(line, '-');
690ed843 1222 if (!p)
d68fe26f
JH
1223 return; /* cannot happen */
1224 ecbdata->lno_in_preimage = strtol(p + 1, NULL, 10);
1225 p = strchr(p, '+');
1226 if (!p)
1227 return; /* cannot happen */
1228 ecbdata->lno_in_postimage = strtol(p + 1, NULL, 10);
690ed843
JH
1229}
1230
cd112cef 1231static void fn_out_consume(void *priv, char *line, unsigned long len)
6973dcae 1232{
6973dcae 1233 struct emit_callback *ecbdata = priv;
472ca780 1234 const char *meta = diff_get_color(ecbdata->color_diff, DIFF_METAINFO);
8dbf3eb6 1235 const char *context = diff_get_color(ecbdata->color_diff, DIFF_CONTEXT);
ce436973 1236 const char *reset = diff_get_color(ecbdata->color_diff, DIFF_RESET);
7be57610 1237 struct diff_options *o = ecbdata->opt;
30997bb8 1238 const char *line_prefix = diff_line_prefix(o);
6973dcae 1239
ba16233c
SB
1240 o->found_changes = 1;
1241
3e97c7c6 1242 if (ecbdata->header) {
fb33b62c 1243 fprintf(o->file, "%s", ecbdata->header->buf);
3e97c7c6
GB
1244 strbuf_reset(ecbdata->header);
1245 ecbdata->header = NULL;
1246 }
34a5e1a2 1247
6973dcae 1248 if (ecbdata->label_path[0]) {
1a9eb3b9
JH
1249 const char *name_a_tab, *name_b_tab;
1250
1251 name_a_tab = strchr(ecbdata->label_path[0], ' ') ? "\t" : "";
1252 name_b_tab = strchr(ecbdata->label_path[1], ' ') ? "\t" : "";
1253
fb33b62c 1254 fprintf(o->file, "%s%s--- %s%s%s\n",
7be57610 1255 line_prefix, meta, ecbdata->label_path[0], reset, name_a_tab);
fb33b62c 1256 fprintf(o->file, "%s%s+++ %s%s%s\n",
7be57610 1257 line_prefix, meta, ecbdata->label_path[1], reset, name_b_tab);
6973dcae
JH
1258 ecbdata->label_path[0] = ecbdata->label_path[1] = NULL;
1259 }
cd112cef 1260
a624eaa7
JM
1261 if (diff_suppress_blank_empty
1262 && len == 2 && line[0] == ' ' && line[1] == '\n') {
1263 line[0] = '\n';
1264 len = 1;
1265 }
1266
b8d9c1a6 1267 if (line[0] == '@') {
76fd2828
JH
1268 if (ecbdata->diff_words)
1269 diff_words_flush(ecbdata);
23707811 1270 len = sane_truncate_line(ecbdata, line, len);
d68fe26f 1271 find_lno(line, ecbdata);
89cb73a1 1272 emit_hunk_header(ecbdata, line, len);
23707811 1273 if (line[len-1] != '\n')
fb33b62c 1274 putc('\n', o->file);
448c3ef1 1275 return;
cd112cef 1276 }
448c3ef1 1277
448c3ef1
JH
1278 if (ecbdata->diff_words) {
1279 if (line[0] == '-') {
1280 diff_words_append(line, len,
1281 &ecbdata->diff_words->minus);
1282 return;
1283 } else if (line[0] == '+') {
1284 diff_words_append(line, len,
1285 &ecbdata->diff_words->plus);
1286 return;
59556548 1287 } else if (starts_with(line, "\\ ")) {
c7c2bc0a
TR
1288 /*
1289 * Eat the "no newline at eof" marker as if we
1290 * saw a "+" or "-" line with nothing on it,
1291 * and return without diff_words_flush() to
1292 * defer processing. If this is the end of
1293 * preimage, more "+" lines may come after it.
1294 */
1295 return;
448c3ef1 1296 }
76fd2828 1297 diff_words_flush(ecbdata);
882749a0 1298 if (ecbdata->diff_words->type == DIFF_WORDS_PORCELAIN) {
fb33b62c
SB
1299 emit_line(o, context, reset, line, len);
1300 fputs("~\n", o->file);
882749a0 1301 } else {
42536dd9
JM
1302 /*
1303 * Skip the prefix character, if any. With
1304 * diff_suppress_blank_empty, there may be
1305 * none.
1306 */
1307 if (line[0] != '\n') {
1308 line++;
1309 len--;
1310 }
fb33b62c 1311 emit_line(o, context, reset, line, len);
882749a0 1312 }
448c3ef1
JH
1313 return;
1314 }
448c3ef1 1315
0e383e18
JH
1316 switch (line[0]) {
1317 case '+':
d68fe26f 1318 ecbdata->lno_in_postimage++;
018cff70 1319 emit_add_line(reset, ecbdata, line + 1, len - 1);
0e383e18
JH
1320 break;
1321 case '-':
1322 ecbdata->lno_in_preimage++;
1323 emit_del_line(reset, ecbdata, line + 1, len - 1);
1324 break;
1325 case ' ':
1326 ecbdata->lno_in_postimage++;
1327 ecbdata->lno_in_preimage++;
1328 emit_context_line(reset, ecbdata, line + 1, len - 1);
1329 break;
1330 default:
1331 /* incomplete line at the end */
1332 ecbdata->lno_in_preimage++;
fb33b62c 1333 emit_line(o, diff_get_color(ecbdata->color_diff, DIFF_CONTEXT),
0e383e18
JH
1334 reset, line, len);
1335 break;
448c3ef1 1336 }
6973dcae
JH
1337}
1338
1339static char *pprint_rename(const char *a, const char *b)
1340{
1341 const char *old = a;
1342 const char *new = b;
f285a2d7 1343 struct strbuf name = STRBUF_INIT;
6973dcae 1344 int pfx_length, sfx_length;
dd281f09 1345 int pfx_adjust_for_slash;
6973dcae
JH
1346 int len_a = strlen(a);
1347 int len_b = strlen(b);
663af342 1348 int a_midlen, b_midlen;
e5bfbf9b
AJ
1349 int qlen_a = quote_c_style(a, NULL, NULL, 0);
1350 int qlen_b = quote_c_style(b, NULL, NULL, 0);
1351
1352 if (qlen_a || qlen_b) {
663af342
PH
1353 quote_c_style(a, &name, NULL, 0);
1354 strbuf_addstr(&name, " => ");
1355 quote_c_style(b, &name, NULL, 0);
b315c5c0 1356 return strbuf_detach(&name, NULL);
e5bfbf9b 1357 }
6973dcae
JH
1358
1359 /* Find common prefix */
1360 pfx_length = 0;
1361 while (*old && *new && *old == *new) {
1362 if (*old == '/')
1363 pfx_length = old - a + 1;
1364 old++;
1365 new++;
1366 }
1367
1368 /* Find common suffix */
1369 old = a + len_a;
1370 new = b + len_b;
1371 sfx_length = 0;
d020e27f 1372 /*
dd281f09
TR
1373 * If there is a common prefix, it must end in a slash. In
1374 * that case we let this loop run 1 into the prefix to see the
1375 * same slash.
1376 *
1377 * If there is no common prefix, we cannot do this as it would
1378 * underrun the input strings.
d020e27f 1379 */
dd281f09
TR
1380 pfx_adjust_for_slash = (pfx_length ? 1 : 0);
1381 while (a + pfx_length - pfx_adjust_for_slash <= old &&
1382 b + pfx_length - pfx_adjust_for_slash <= new &&
d020e27f 1383 *old == *new) {
6973dcae
JH
1384 if (*old == '/')
1385 sfx_length = len_a - (old - a);
1386 old--;
1387 new--;
1388 }
1389
1390 /*
1391 * pfx{mid-a => mid-b}sfx
1392 * {pfx-a => pfx-b}sfx
1393 * pfx{sfx-a => sfx-b}
1394 * name-a => name-b
1395 */
663af342
PH
1396 a_midlen = len_a - pfx_length - sfx_length;
1397 b_midlen = len_b - pfx_length - sfx_length;
1398 if (a_midlen < 0)
1399 a_midlen = 0;
1400 if (b_midlen < 0)
1401 b_midlen = 0;
1402
1403 strbuf_grow(&name, pfx_length + a_midlen + b_midlen + sfx_length + 7);
6973dcae 1404 if (pfx_length + sfx_length) {
663af342
PH
1405 strbuf_add(&name, a, pfx_length);
1406 strbuf_addch(&name, '{');
6973dcae 1407 }
663af342
PH
1408 strbuf_add(&name, a + pfx_length, a_midlen);
1409 strbuf_addstr(&name, " => ");
1410 strbuf_add(&name, b + pfx_length, b_midlen);
1411 if (pfx_length + sfx_length) {
1412 strbuf_addch(&name, '}');
1413 strbuf_add(&name, a + len_a - sfx_length, sfx_length);
6973dcae 1414 }
b315c5c0 1415 return strbuf_detach(&name, NULL);
6973dcae
JH
1416}
1417
1418struct diffstat_t {
6973dcae
JH
1419 int nr;
1420 int alloc;
1421 struct diffstat_file {
f604652e 1422 char *from_name;
6973dcae 1423 char *name;
f604652e 1424 char *print_name;
6973dcae
JH
1425 unsigned is_unmerged:1;
1426 unsigned is_binary:1;
1427 unsigned is_renamed:1;
74faaa16 1428 unsigned is_interesting:1;
0974c117 1429 uintmax_t added, deleted;
6973dcae
JH
1430 } **files;
1431};
1432
1433static struct diffstat_file *diffstat_add(struct diffstat_t *diffstat,
1434 const char *name_a,
1435 const char *name_b)
1436{
1437 struct diffstat_file *x;
1a4927c5 1438 x = xcalloc(1, sizeof(*x));
4c960a43 1439 ALLOC_GROW(diffstat->files, diffstat->nr + 1, diffstat->alloc);
6973dcae
JH
1440 diffstat->files[diffstat->nr++] = x;
1441 if (name_b) {
f604652e
JH
1442 x->from_name = xstrdup(name_a);
1443 x->name = xstrdup(name_b);
6973dcae
JH
1444 x->is_renamed = 1;
1445 }
f604652e
JH
1446 else {
1447 x->from_name = NULL;
9befac47 1448 x->name = xstrdup(name_a);
f604652e 1449 }
6973dcae
JH
1450 return x;
1451}
1452
1453static void diffstat_consume(void *priv, char *line, unsigned long len)
1454{
1455 struct diffstat_t *diffstat = priv;
1456 struct diffstat_file *x = diffstat->files[diffstat->nr - 1];
1457
1458 if (line[0] == '+')
1459 x->added++;
1460 else if (line[0] == '-')
1461 x->deleted++;
1462}
1463
698ce6f8 1464const char mime_boundary_leader[] = "------------";
6973dcae 1465
a2540023
JH
1466static int scale_linear(int it, int width, int max_change)
1467{
2eeeef24
JH
1468 if (!it)
1469 return 0;
a2540023 1470 /*
2eeeef24
JH
1471 * make sure that at least one '-' or '+' is printed if
1472 * there is any change to this path. The easiest way is to
1473 * scale linearly as if the alloted width is one column shorter
1474 * than it is, and then add 1 to the result.
a2540023 1475 */
2eeeef24 1476 return 1 + (it * (width - 1) / max_change);
a2540023
JH
1477}
1478
c0c77734 1479static void show_name(FILE *file,
a408e0e6 1480 const char *prefix, const char *name, int len)
a2540023 1481{
a408e0e6 1482 fprintf(file, " %s%-*s |", prefix, len, name);
a2540023
JH
1483}
1484
c0c77734 1485static void show_graph(FILE *file, char ch, int cnt, const char *set, const char *reset)
a2540023
JH
1486{
1487 if (cnt <= 0)
1488 return;
c0c77734 1489 fprintf(file, "%s", set);
a2540023 1490 while (cnt--)
c0c77734
DB
1491 putc(ch, file);
1492 fprintf(file, "%s", reset);
a2540023
JH
1493}
1494
f604652e
JH
1495static void fill_print_name(struct diffstat_file *file)
1496{
1497 char *pname;
1498
1499 if (file->print_name)
1500 return;
1501
1502 if (!file->is_renamed) {
f285a2d7 1503 struct strbuf buf = STRBUF_INIT;
f604652e
JH
1504 if (quote_c_style(file->name, &buf, NULL, 0)) {
1505 pname = strbuf_detach(&buf, NULL);
1506 } else {
1507 pname = file->name;
1508 strbuf_release(&buf);
1509 }
1510 } else {
1511 pname = pprint_rename(file->from_name, file->name);
1512 }
1513 file->print_name = pname;
1514}
1515
7f814632
NTND
1516int print_stat_summary(FILE *fp, int files, int insertions, int deletions)
1517{
1518 struct strbuf sb = STRBUF_INIT;
1519 int ret;
1520
1521 if (!files) {
1522 assert(insertions == 0 && deletions == 0);
218adaaa 1523 return fprintf(fp, "%s\n", " 0 files changed");
7f814632
NTND
1524 }
1525
1526 strbuf_addf(&sb,
218adaaa 1527 (files == 1) ? " %d file changed" : " %d files changed",
7f814632
NTND
1528 files);
1529
1530 /*
1531 * For binary diff, the caller may want to print "x files
1532 * changed" with insertions == 0 && deletions == 0.
1533 *
1534 * Not omitting "0 insertions(+), 0 deletions(-)" in this case
1535 * is probably less confusing (i.e skip over "2 files changed
1536 * but nothing about added/removed lines? Is this a bug in Git?").
1537 */
1538 if (insertions || deletions == 0) {
7f814632 1539 strbuf_addf(&sb,
218adaaa 1540 (insertions == 1) ? ", %d insertion(+)" : ", %d insertions(+)",
7f814632
NTND
1541 insertions);
1542 }
1543
1544 if (deletions || insertions == 0) {
7f814632 1545 strbuf_addf(&sb,
218adaaa 1546 (deletions == 1) ? ", %d deletion(-)" : ", %d deletions(-)",
7f814632
NTND
1547 deletions);
1548 }
1549 strbuf_addch(&sb, '\n');
1550 ret = fputs(sb.buf, fp);
1551 strbuf_release(&sb);
1552 return ret;
1553}
1554
4b25d091 1555static void show_stats(struct diffstat_t *data, struct diff_options *options)
6973dcae 1556{
eb3a9dd3 1557 int i, len, add, del, adds = 0, dels = 0;
0974c117 1558 uintmax_t max_change = 0, max_len = 0;
dc801e71
ZJS
1559 int total_files = data->nr, count;
1560 int width, name_width, graph_width, number_width = 0, bin_width = 0;
c0aa335c 1561 const char *reset, *add_c, *del_c;
7be57610 1562 const char *line_prefix = "";
e5f85df8 1563 int extra_shown = 0;
6973dcae
JH
1564
1565 if (data->nr == 0)
1566 return;
1567
30997bb8 1568 line_prefix = diff_line_prefix(options);
808e1db2 1569 count = options->stat_count ? options->stat_count : data->nr;
a2540023 1570
8f67f8ae 1571 reset = diff_get_color_opt(options, DIFF_RESET);
8f67f8ae
PH
1572 add_c = diff_get_color_opt(options, DIFF_FILE_NEW);
1573 del_c = diff_get_color_opt(options, DIFF_FILE_OLD);
785f7432 1574
1b058bc3
ZJS
1575 /*
1576 * Find the longest filename and max number of changes
1577 */
808e1db2 1578 for (i = 0; (i < count) && (i < data->nr); i++) {
6973dcae 1579 struct diffstat_file *file = data->files[i];
0974c117 1580 uintmax_t change = file->added + file->deleted;
af0ed819
JH
1581
1582 if (!file->is_interesting && (change == 0)) {
808e1db2 1583 count++; /* not shown == room for one more */
358e460e
MG
1584 continue;
1585 }
f604652e
JH
1586 fill_print_name(file);
1587 len = strlen(file->print_name);
6973dcae
JH
1588 if (max_len < len)
1589 max_len = len;
1590
dc801e71
ZJS
1591 if (file->is_unmerged) {
1592 /* "Unmerged" is 8 characters */
1593 bin_width = bin_width < 8 ? 8 : bin_width;
6973dcae 1594 continue;
dc801e71
ZJS
1595 }
1596 if (file->is_binary) {
1597 /* "Bin XXX -> YYY bytes" */
1598 int w = 14 + decimal_width(file->added)
1599 + decimal_width(file->deleted);
1600 bin_width = bin_width < w ? w : bin_width;
1601 /* Display change counts aligned with "Bin" */
1602 number_width = 3;
1603 continue;
1604 }
1605
a2540023
JH
1606 if (max_change < change)
1607 max_change = change;
6973dcae 1608 }
a20d3c0d 1609 count = i; /* where we can stop scanning in data->files[] */
6973dcae 1610
1b058bc3
ZJS
1611 /*
1612 * We have width = stat_width or term_columns() columns total.
1613 * We want a maximum of min(max_len, stat_name_width) for the name part.
969fe57b 1614 * We want a maximum of min(max_change, stat_graph_width) for the +- part.
1b058bc3
ZJS
1615 * We also need 1 for " " and 4 + decimal_width(max_change)
1616 * for " | NNNN " and one the empty column at the end, altogether
1617 * 6 + decimal_width(max_change).
1618 *
1619 * If there's not enough space, we will use the smaller of
1620 * stat_name_width (if set) and 5/8*width for the filename,
969fe57b
ZJS
1621 * and the rest for constant elements + graph part, but no more
1622 * than stat_graph_width for the graph part.
1b058bc3
ZJS
1623 * (5/8 gives 50 for filename and 30 for the constant parts + graph
1624 * for the standard terminal size).
a2540023 1625 *
1b058bc3
ZJS
1626 * In other words: stat_width limits the maximum width, and
1627 * stat_name_width fixes the maximum width of the filename,
1628 * and is also used to divide available columns if there
1629 * aren't enough.
dc801e71
ZJS
1630 *
1631 * Binary files are displayed with "Bin XXX -> YYY bytes"
1632 * instead of the change count and graph. This part is treated
1633 * similarly to the graph part, except that it is not
41ccfdd9 1634 * "scaled". If total width is too small to accommodate the
dc801e71
ZJS
1635 * guaranteed minimum width of the filename part and the
1636 * separators and this message, this message will "overflow"
1637 * making the line longer than the maximum width.
a2540023 1638 */
1b058bc3
ZJS
1639
1640 if (options->stat_width == -1)
cd48dadb 1641 width = term_columns() - strlen(line_prefix);
a2540023 1642 else
1b058bc3 1643 width = options->stat_width ? options->stat_width : 80;
dc801e71
ZJS
1644 number_width = decimal_width(max_change) > number_width ?
1645 decimal_width(max_change) : number_width;
a2540023 1646
df44483a
ZJS
1647 if (options->stat_graph_width == -1)
1648 options->stat_graph_width = diff_stat_graph_width;
a2540023 1649
1b058bc3
ZJS
1650 /*
1651 * Guarantee 3/8*16==6 for the graph part
1652 * and 5/8*16==10 for the filename part
1653 */
1654 if (width < 16 + 6 + number_width)
1655 width = 16 + 6 + number_width;
1656
1657 /*
1658 * First assign sizes that are wanted, ignoring available width.
dc801e71
ZJS
1659 * strlen("Bin XXX -> YYY bytes") == bin_width, and the part
1660 * starting from "XXX" should fit in graph_width.
1b058bc3 1661 */
dc801e71
ZJS
1662 graph_width = max_change + 4 > bin_width ? max_change : bin_width - 4;
1663 if (options->stat_graph_width &&
1664 options->stat_graph_width < graph_width)
1665 graph_width = options->stat_graph_width;
1666
1b058bc3
ZJS
1667 name_width = (options->stat_name_width > 0 &&
1668 options->stat_name_width < max_len) ?
1669 options->stat_name_width : max_len;
1670
1671 /*
1672 * Adjust adjustable widths not to exceed maximum width
1673 */
1674 if (name_width + number_width + 6 + graph_width > width) {
678c5741 1675 if (graph_width > width * 3/8 - number_width - 6) {
1b058bc3 1676 graph_width = width * 3/8 - number_width - 6;
678c5741
LP
1677 if (graph_width < 6)
1678 graph_width = 6;
1679 }
1680
969fe57b
ZJS
1681 if (options->stat_graph_width &&
1682 graph_width > options->stat_graph_width)
1683 graph_width = options->stat_graph_width;
1b058bc3
ZJS
1684 if (name_width > width - number_width - 6 - graph_width)
1685 name_width = width - number_width - 6 - graph_width;
1686 else
1687 graph_width = width - number_width - 6 - name_width;
1688 }
1689
1690 /*
1691 * From here name_width is the width of the name area,
1692 * and graph_width is the width of the graph area.
1693 * max_change is used to scale graph properly.
1694 */
808e1db2 1695 for (i = 0; i < count; i++) {
d2543b8e 1696 const char *prefix = "";
af0ed819
JH
1697 struct diffstat_file *file = data->files[i];
1698 char *name = file->print_name;
1699 uintmax_t added = file->added;
1700 uintmax_t deleted = file->deleted;
a2540023 1701 int name_len;
6973dcae 1702
a20d3c0d 1703 if (!file->is_interesting && (added + deleted == 0))
358e460e 1704 continue;
a20d3c0d 1705
6973dcae
JH
1706 /*
1707 * "scale" the filename
1708 */
a2540023
JH
1709 len = name_width;
1710 name_len = strlen(name);
1711 if (name_width < name_len) {
6973dcae
JH
1712 char *slash;
1713 prefix = "...";
a2540023
JH
1714 len -= 3;
1715 name += name_len - len;
6973dcae
JH
1716 slash = strchr(name, '/');
1717 if (slash)
1718 name = slash;
1719 }
6973dcae 1720
af0ed819 1721 if (file->is_binary) {
7be57610 1722 fprintf(options->file, "%s", line_prefix);
a408e0e6 1723 show_name(options->file, prefix, name, len);
fc1320bf 1724 fprintf(options->file, " %*s", number_width, "Bin");
e18872b2
ZJS
1725 if (!added && !deleted) {
1726 putc('\n', options->file);
1727 continue;
1728 }
1729 fprintf(options->file, " %s%"PRIuMAX"%s",
0974c117 1730 del_c, deleted, reset);
c0c77734 1731 fprintf(options->file, " -> ");
0974c117
JK
1732 fprintf(options->file, "%s%"PRIuMAX"%s",
1733 add_c, added, reset);
c0c77734
DB
1734 fprintf(options->file, " bytes");
1735 fprintf(options->file, "\n");
f604652e 1736 continue;
6973dcae 1737 }
af0ed819 1738 else if (file->is_unmerged) {
7be57610 1739 fprintf(options->file, "%s", line_prefix);
a408e0e6 1740 show_name(options->file, prefix, name, len);
dc801e71 1741 fprintf(options->file, " Unmerged\n");
f604652e 1742 continue;
6973dcae 1743 }
6973dcae 1744
a2540023
JH
1745 /*
1746 * scale the add/delete
1747 */
6973dcae
JH
1748 add = added;
1749 del = deleted;
6973dcae 1750
1b058bc3 1751 if (graph_width <= max_change) {
d3c9cf32 1752 int total = scale_linear(add + del, graph_width, max_change);
2eeeef24
JH
1753 if (total < 2 && add && del)
1754 /* width >= 2 due to the sanity check */
1755 total = 2;
1756 if (add < del) {
1b058bc3 1757 add = scale_linear(add, graph_width, max_change);
2eeeef24
JH
1758 del = total - add;
1759 } else {
1b058bc3 1760 del = scale_linear(del, graph_width, max_change);
2eeeef24
JH
1761 add = total - del;
1762 }
6973dcae 1763 }
7be57610 1764 fprintf(options->file, "%s", line_prefix);
a408e0e6 1765 show_name(options->file, prefix, name, len);
dc801e71
ZJS
1766 fprintf(options->file, " %*"PRIuMAX"%s",
1767 number_width, added + deleted,
1768 added + deleted ? " " : "");
c0c77734
DB
1769 show_graph(options->file, '+', add, add_c, reset);
1770 show_graph(options->file, '-', del, del_c, reset);
1771 fprintf(options->file, "\n");
1772 }
a20d3c0d
JH
1773
1774 for (i = 0; i < data->nr; i++) {
af0ed819
JH
1775 struct diffstat_file *file = data->files[i];
1776 uintmax_t added = file->added;
1777 uintmax_t deleted = file->deleted;
82dfc2c4
JH
1778
1779 if (file->is_unmerged ||
1780 (!file->is_interesting && (added + deleted == 0))) {
808e1db2
MG
1781 total_files--;
1782 continue;
1783 }
a20d3c0d 1784
82dfc2c4 1785 if (!file->is_binary) {
a20d3c0d
JH
1786 adds += added;
1787 dels += deleted;
1788 }
1789 if (i < count)
1790 continue;
e5f85df8
JH
1791 if (!extra_shown)
1792 fprintf(options->file, "%s ...\n", line_prefix);
1793 extra_shown = 1;
808e1db2 1794 }
7be57610 1795 fprintf(options->file, "%s", line_prefix);
7f814632 1796 print_stat_summary(options->file, total_files, adds, dels);
6973dcae
JH
1797}
1798
2775d92c 1799static void show_shortstats(struct diffstat_t *data, struct diff_options *options)
ebd124c6
NP
1800{
1801 int i, adds = 0, dels = 0, total_files = data->nr;
1802
1803 if (data->nr == 0)
1804 return;
1805
1806 for (i = 0; i < data->nr; i++) {
e18872b2
ZJS
1807 int added = data->files[i]->added;
1808 int deleted= data->files[i]->deleted;
1809
20c8cde4
JH
1810 if (data->files[i]->is_unmerged ||
1811 (!data->files[i]->is_interesting && (added + deleted == 0))) {
e18872b2 1812 total_files--;
de9658b5 1813 } else if (!data->files[i]->is_binary) { /* don't count bytes */
e18872b2
ZJS
1814 adds += added;
1815 dels += deleted;
ebd124c6 1816 }
ebd124c6 1817 }
30997bb8 1818 fprintf(options->file, "%s", diff_line_prefix(options));
7f814632 1819 print_stat_summary(options->file, total_files, adds, dels);
ebd124c6
NP
1820}
1821
4b25d091 1822static void show_numstat(struct diffstat_t *data, struct diff_options *options)
74e2abe5
JH
1823{
1824 int i;
1825
f604652e
JH
1826 if (data->nr == 0)
1827 return;
1828
74e2abe5
JH
1829 for (i = 0; i < data->nr; i++) {
1830 struct diffstat_file *file = data->files[i];
1831
30997bb8 1832 fprintf(options->file, "%s", diff_line_prefix(options));
7be57610 1833
bfddbc5e 1834 if (file->is_binary)
c0c77734 1835 fprintf(options->file, "-\t-\t");
bfddbc5e 1836 else
c0c77734 1837 fprintf(options->file,
0974c117
JK
1838 "%"PRIuMAX"\t%"PRIuMAX"\t",
1839 file->added, file->deleted);
f604652e
JH
1840 if (options->line_termination) {
1841 fill_print_name(file);
1842 if (!file->is_renamed)
c0c77734 1843 write_name_quoted(file->name, options->file,
f604652e
JH
1844 options->line_termination);
1845 else {
c0c77734
DB
1846 fputs(file->print_name, options->file);
1847 putc(options->line_termination, options->file);
f604652e 1848 }
663af342 1849 } else {
f604652e 1850 if (file->is_renamed) {
c0c77734
DB
1851 putc('\0', options->file);
1852 write_name_quoted(file->from_name, options->file, '\0');
f604652e 1853 }
c0c77734 1854 write_name_quoted(file->name, options->file, '\0');
663af342 1855 }
74e2abe5
JH
1856 }
1857}
1858
c04a7155
JH
1859struct dirstat_file {
1860 const char *name;
1861 unsigned long changed;
7df7c019
LT
1862};
1863
c04a7155
JH
1864struct dirstat_dir {
1865 struct dirstat_file *files;
712d2c7d 1866 int alloc, nr, permille, cumulative;
c04a7155
JH
1867};
1868
7be57610
BY
1869static long gather_dirstat(struct diff_options *opt, struct dirstat_dir *dir,
1870 unsigned long changed, const char *base, int baselen)
7df7c019
LT
1871{
1872 unsigned long this_dir = 0;
1873 unsigned int sources = 0;
30997bb8 1874 const char *line_prefix = diff_line_prefix(opt);
7df7c019
LT
1875
1876 while (dir->nr) {
c04a7155 1877 struct dirstat_file *f = dir->files;
7df7c019
LT
1878 int namelen = strlen(f->name);
1879 unsigned long this;
1880 char *slash;
1881
1882 if (namelen < baselen)
1883 break;
1884 if (memcmp(f->name, base, baselen))
1885 break;
1886 slash = strchr(f->name + baselen, '/');
1887 if (slash) {
1888 int newbaselen = slash + 1 - f->name;
7be57610 1889 this = gather_dirstat(opt, dir, changed, f->name, newbaselen);
7df7c019
LT
1890 sources++;
1891 } else {
c04a7155 1892 this = f->changed;
7df7c019
LT
1893 dir->files++;
1894 dir->nr--;
1895 sources += 2;
1896 }
1897 this_dir += this;
1898 }
1899
1900 /*
1901 * We don't report dirstat's for
1902 * - the top level
1903 * - or cases where everything came from a single directory
1904 * under this directory (sources == 1).
1905 */
1906 if (baselen && sources != 1) {
58a8756a
JH
1907 if (this_dir) {
1908 int permille = this_dir * 1000 / changed;
712d2c7d 1909 if (permille >= dir->permille) {
7be57610 1910 fprintf(opt->file, "%s%4d.%01d%% %.*s\n", line_prefix,
712d2c7d 1911 permille / 10, permille % 10, baselen, base);
7df7c019
LT
1912 if (!dir->cumulative)
1913 return 0;
1914 }
1915 }
1916 }
1917 return this_dir;
1918}
1919
441bca0b
LT
1920static int dirstat_compare(const void *_a, const void *_b)
1921{
1922 const struct dirstat_file *a = _a;
1923 const struct dirstat_file *b = _b;
1924 return strcmp(a->name, b->name);
1925}
1926
c04a7155 1927static void show_dirstat(struct diff_options *options)
7df7c019
LT
1928{
1929 int i;
1930 unsigned long changed;
c04a7155
JH
1931 struct dirstat_dir dir;
1932 struct diff_queue_struct *q = &diff_queued_diff;
1933
1934 dir.files = NULL;
1935 dir.alloc = 0;
1936 dir.nr = 0;
712d2c7d 1937 dir.permille = options->dirstat_permille;
f88d225f 1938 dir.cumulative = DIFF_OPT_TST(options, DIRSTAT_CUMULATIVE);
7df7c019 1939
7df7c019 1940 changed = 0;
c04a7155
JH
1941 for (i = 0; i < q->nr; i++) {
1942 struct diff_filepair *p = q->queue[i];
1943 const char *name;
1944 unsigned long copied, added, damage;
0133dab7 1945 int content_changed;
c04a7155 1946
2ca86714 1947 name = p->two->path ? p->two->path : p->one->path;
c04a7155 1948
41c9560e 1949 if (p->one->oid_valid && p->two->oid_valid)
a0d12c44 1950 content_changed = oidcmp(&p->one->oid, &p->two->oid);
0133dab7
JH
1951 else
1952 content_changed = 1;
1953
2ff3a803
JH
1954 if (!content_changed) {
1955 /*
1956 * The SHA1 has not changed, so pre-/post-content is
1957 * identical. We can therefore skip looking at the
1958 * file contents altogether.
1959 */
1960 damage = 0;
1961 goto found_damage;
1962 }
1963
0133dab7
JH
1964 if (DIFF_OPT_TST(options, DIRSTAT_BY_FILE)) {
1965 /*
1966 * In --dirstat-by-file mode, we don't really need to
1967 * look at the actual file contents at all.
1968 * The fact that the SHA1 changed is enough for us to
1969 * add this file to the list of results
1970 * (with each file contributing equal damage).
1971 */
2ff3a803 1972 damage = 1;
0133dab7
JH
1973 goto found_damage;
1974 }
c04a7155
JH
1975
1976 if (DIFF_FILE_VALID(p->one) && DIFF_FILE_VALID(p->two)) {
1977 diff_populate_filespec(p->one, 0);
1978 diff_populate_filespec(p->two, 0);
1979 diffcore_count_changes(p->one, p->two, NULL, NULL, 0,
1980 &copied, &added);
1981 diff_free_filespec_data(p->one);
1982 diff_free_filespec_data(p->two);
1983 } else if (DIFF_FILE_VALID(p->one)) {
8e5dd3d6 1984 diff_populate_filespec(p->one, CHECK_SIZE_ONLY);
c04a7155
JH
1985 copied = added = 0;
1986 diff_free_filespec_data(p->one);
1987 } else if (DIFF_FILE_VALID(p->two)) {
8e5dd3d6 1988 diff_populate_filespec(p->two, CHECK_SIZE_ONLY);
c04a7155
JH
1989 copied = 0;
1990 added = p->two->size;
1991 diff_free_filespec_data(p->two);
1992 } else
2b0b551d 1993 continue;
c04a7155
JH
1994
1995 /*
1996 * Original minus copied is the removed material,
1997 * added is the new material. They are both damages
0133dab7 1998 * made to the preimage.
2ff3a803
JH
1999 * If the resulting damage is zero, we know that
2000 * diffcore_count_changes() considers the two entries to
2001 * be identical, but since content_changed is true, we
2002 * know that there must have been _some_ kind of change,
2003 * so we force all entries to have damage > 0.
c04a7155
JH
2004 */
2005 damage = (p->one->size - copied) + added;
2ff3a803 2006 if (!damage)
fd33777b 2007 damage = 1;
c04a7155 2008
0133dab7 2009found_damage:
c04a7155
JH
2010 ALLOC_GROW(dir.files, dir.nr + 1, dir.alloc);
2011 dir.files[dir.nr].name = name;
2012 dir.files[dir.nr].changed = damage;
2013 changed += damage;
2014 dir.nr++;
7df7c019
LT
2015 }
2016
2017 /* This can happen even with many files, if everything was renames */
2018 if (!changed)
2019 return;
2020
2021 /* Show all directories with more than x% of the changes */
9ed0d8d6 2022 QSORT(dir.files, dir.nr, dirstat_compare);
7be57610 2023 gather_dirstat(options, &dir, changed, "", 0);
7df7c019
LT
2024}
2025
1c57a627
JH
2026static void show_dirstat_by_line(struct diffstat_t *data, struct diff_options *options)
2027{
2028 int i;
2029 unsigned long changed;
2030 struct dirstat_dir dir;
2031
2032 if (data->nr == 0)
2033 return;
2034
2035 dir.files = NULL;
2036 dir.alloc = 0;
2037 dir.nr = 0;
2038 dir.permille = options->dirstat_permille;
2039 dir.cumulative = DIFF_OPT_TST(options, DIRSTAT_CUMULATIVE);
2040
2041 changed = 0;
2042 for (i = 0; i < data->nr; i++) {
2043 struct diffstat_file *file = data->files[i];
2044 unsigned long damage = file->added + file->deleted;
2045 if (file->is_binary)
2046 /*
2047 * binary files counts bytes, not lines. Must find some
2048 * way to normalize binary bytes vs. textual lines.
2049 * The following heuristic assumes that there are 64
2050 * bytes per "line".
2051 * This is stupid and ugly, but very cheap...
2052 */
2053 damage = (damage + 63) / 64;
2054 ALLOC_GROW(dir.files, dir.nr + 1, dir.alloc);
2055 dir.files[dir.nr].name = file->name;
2056 dir.files[dir.nr].changed = damage;
2057 changed += damage;
2058 dir.nr++;
2059 }
2060
2061 /* This can happen even with many files, if everything was renames */
2062 if (!changed)
2063 return;
2064
2065 /* Show all directories with more than x% of the changes */
9ed0d8d6 2066 QSORT(dir.files, dir.nr, dirstat_compare);
1c57a627
JH
2067 gather_dirstat(options, &dir, changed, "", 0);
2068}
2069
f604652e
JH
2070static void free_diffstat_info(struct diffstat_t *diffstat)
2071{
2072 int i;
2073 for (i = 0; i < diffstat->nr; i++) {
2074 struct diffstat_file *f = diffstat->files[i];
2075 if (f->name != f->print_name)
2076 free(f->print_name);
2077 free(f->name);
2078 free(f->from_name);
2079 free(f);
2080 }
2081 free(diffstat->files);
2082}
2083
88246898 2084struct checkdiff_t {
88246898 2085 const char *filename;
1ba111d1 2086 int lineno;
a757c646 2087 int conflict_marker_size;
1ba111d1 2088 struct diff_options *o;
cf1b7869 2089 unsigned ws_rule;
62c64895 2090 unsigned status;
88246898
JS
2091};
2092
a757c646 2093static int is_conflict_marker(const char *line, int marker_size, unsigned long len)
04954043
JH
2094{
2095 char firstchar;
2096 int cnt;
2097
a757c646 2098 if (len < marker_size + 1)
04954043
JH
2099 return 0;
2100 firstchar = line[0];
2101 switch (firstchar) {
a757c646 2102 case '=': case '>': case '<': case '|':
04954043
JH
2103 break;
2104 default:
2105 return 0;
2106 }
a757c646 2107 for (cnt = 1; cnt < marker_size; cnt++)
04954043
JH
2108 if (line[cnt] != firstchar)
2109 return 0;
a757c646
JH
2110 /* line[1] thru line[marker_size-1] are same as firstchar */
2111 if (len < marker_size + 1 || !isspace(line[marker_size]))
04954043 2112 return 0;
04954043
JH
2113 return 1;
2114}
2115
88246898
JS
2116static void checkdiff_consume(void *priv, char *line, unsigned long len)
2117{
2118 struct checkdiff_t *data = priv;
a757c646 2119 int marker_size = data->conflict_marker_size;
f1c96261
JK
2120 const char *ws = diff_get_color(data->o->use_color, DIFF_WHITESPACE);
2121 const char *reset = diff_get_color(data->o->use_color, DIFF_RESET);
2122 const char *set = diff_get_color(data->o->use_color, DIFF_FILE_NEW);
c1795bb0 2123 char *err;
30997bb8 2124 const char *line_prefix;
7be57610
BY
2125
2126 assert(data->o);
30997bb8 2127 line_prefix = diff_line_prefix(data->o);
88246898
JS
2128
2129 if (line[0] == '+') {
18374e58 2130 unsigned bad;
0ef617f4 2131 data->lineno++;
a757c646 2132 if (is_conflict_marker(line + 1, marker_size, len - 1)) {
04954043
JH
2133 data->status |= 1;
2134 fprintf(data->o->file,
7be57610
BY
2135 "%s%s:%d: leftover conflict marker\n",
2136 line_prefix, data->filename, data->lineno);
04954043 2137 }
8f8841e9 2138 bad = ws_check(line + 1, len - 1, data->ws_rule);
18374e58 2139 if (!bad)
c1795bb0 2140 return;
18374e58
JH
2141 data->status |= bad;
2142 err = whitespace_error_string(bad);
7be57610
BY
2143 fprintf(data->o->file, "%s%s:%d: %s.\n",
2144 line_prefix, data->filename, data->lineno, err);
c1795bb0 2145 free(err);
a3c158d4 2146 emit_line(data->o, set, reset, line, 1);
8f8841e9 2147 ws_check_emit(line + 1, len - 1, data->ws_rule,
1ba111d1 2148 data->o->file, set, reset, ws);
877f23cc 2149 } else if (line[0] == ' ') {
88246898 2150 data->lineno++;
877f23cc 2151 } else if (line[0] == '@') {
88246898
JS
2152 char *plus = strchr(line, '+');
2153 if (plus)
0ef617f4 2154 data->lineno = strtol(plus, NULL, 10) - 1;
88246898
JS
2155 else
2156 die("invalid diff");
2157 }
2158}
2159
0660626c
JH
2160static unsigned char *deflate_it(char *data,
2161 unsigned long size,
2162 unsigned long *result_size)
051308f6 2163{
0660626c
JH
2164 int bound;
2165 unsigned char *deflated;
ef49a7a0 2166 git_zstream stream;
0660626c 2167
55bb5c91 2168 git_deflate_init(&stream, zlib_compression_level);
225a6f10 2169 bound = git_deflate_bound(&stream, size);
0660626c
JH
2170 deflated = xmalloc(bound);
2171 stream.next_out = deflated;
2172 stream.avail_out = bound;
2173
2174 stream.next_in = (unsigned char *)data;
2175 stream.avail_in = size;
55bb5c91 2176 while (git_deflate(&stream, Z_FINISH) == Z_OK)
0660626c 2177 ; /* nothing */
55bb5c91 2178 git_deflate_end(&stream);
0660626c
JH
2179 *result_size = stream.total_out;
2180 return deflated;
051308f6
JH
2181}
2182
32b367e4
JK
2183static void emit_binary_diff_body(FILE *file, mmfile_t *one, mmfile_t *two,
2184 const char *prefix)
051308f6 2185{
0660626c
JH
2186 void *cp;
2187 void *delta;
2188 void *deflated;
2189 void *data;
2190 unsigned long orig_size;
2191 unsigned long delta_size;
2192 unsigned long deflate_size;
2193 unsigned long data_size;
051308f6 2194
0660626c
JH
2195 /* We could do deflated delta, or we could do just deflated two,
2196 * whichever is smaller.
051308f6 2197 */
0660626c
JH
2198 delta = NULL;
2199 deflated = deflate_it(two->ptr, two->size, &deflate_size);
2200 if (one->size && two->size) {
2201 delta = diff_delta(one->ptr, one->size,
2202 two->ptr, two->size,
2203 &delta_size, deflate_size);
2204 if (delta) {
2205 void *to_free = delta;
2206 orig_size = delta_size;
2207 delta = deflate_it(delta, delta_size, &delta_size);
2208 free(to_free);
051308f6
JH
2209 }
2210 }
051308f6 2211
0660626c 2212 if (delta && delta_size < deflate_size) {
7be57610 2213 fprintf(file, "%sdelta %lu\n", prefix, orig_size);
0660626c
JH
2214 free(deflated);
2215 data = delta;
2216 data_size = delta_size;
2217 }
2218 else {
7be57610 2219 fprintf(file, "%sliteral %lu\n", prefix, two->size);
0660626c
JH
2220 free(delta);
2221 data = deflated;
2222 data_size = deflate_size;
2223 }
051308f6 2224
0660626c
JH
2225 /* emit data encoded in base85 */
2226 cp = data;
2227 while (data_size) {
2228 int bytes = (52 < data_size) ? 52 : data_size;
051308f6 2229 char line[70];
0660626c 2230 data_size -= bytes;
051308f6
JH
2231 if (bytes <= 26)
2232 line[0] = bytes + 'A' - 1;
2233 else
2234 line[0] = bytes - 26 + 'a' - 1;
2235 encode_85(line + 1, cp, bytes);
1d7f171c 2236 cp = (char *) cp + bytes;
7be57610 2237 fprintf(file, "%s", prefix);
c0c77734
DB
2238 fputs(line, file);
2239 fputc('\n', file);
051308f6 2240 }
7be57610 2241 fprintf(file, "%s\n", prefix);
0660626c 2242 free(data);
051308f6
JH
2243}
2244
32b367e4
JK
2245static void emit_binary_diff(FILE *file, mmfile_t *one, mmfile_t *two,
2246 const char *prefix)
d4c452f0 2247{
7be57610
BY
2248 fprintf(file, "%sGIT binary patch\n", prefix);
2249 emit_binary_diff_body(file, one, two, prefix);
2250 emit_binary_diff_body(file, two, one, prefix);
d4c452f0
JH
2251}
2252
29a3eefd
JH
2253int diff_filespec_is_binary(struct diff_filespec *one)
2254{
122aa6f9
JK
2255 if (one->is_binary == -1) {
2256 diff_filespec_load_driver(one);
2257 if (one->driver->binary != -1)
2258 one->is_binary = one->driver->binary;
2259 else {
2260 if (!one->data && DIFF_FILE_VALID(one))
6bf3b813
NTND
2261 diff_populate_filespec(one, CHECK_BINARY);
2262 if (one->is_binary == -1 && one->data)
122aa6f9
JK
2263 one->is_binary = buffer_is_binary(one->data,
2264 one->size);
2265 if (one->is_binary == -1)
2266 one->is_binary = 0;
2267 }
2268 }
29a3eefd 2269 return one->is_binary;
6973dcae
JH
2270}
2271
be58e70d 2272static const struct userdiff_funcname *diff_funcname_pattern(struct diff_filespec *one)
f258475a 2273{
122aa6f9
JK
2274 diff_filespec_load_driver(one);
2275 return one->driver->funcname.pattern ? &one->driver->funcname : NULL;
f258475a
JH
2276}
2277
a5a818ee
JH
2278void diff_set_mnemonic_prefix(struct diff_options *options, const char *a, const char *b)
2279{
2280 if (!options->a_prefix)
2281 options->a_prefix = a;
2282 if (!options->b_prefix)
2283 options->b_prefix = b;
2284}
2285
a788d7d5 2286struct userdiff_driver *get_textconv(struct diff_filespec *one)
04427ac8
JK
2287{
2288 if (!DIFF_FILE_VALID(one))
2289 return NULL;
d391c0ff 2290
04427ac8 2291 diff_filespec_load_driver(one);
3813e690 2292 return userdiff_get_textconv(one->driver);
04427ac8
JK
2293}
2294
6973dcae
JH
2295static void builtin_diff(const char *name_a,
2296 const char *name_b,
2297 struct diff_filespec *one,
2298 struct diff_filespec *two,
2299 const char *xfrm_msg,
296c6bb2 2300 int must_show_header,
051308f6 2301 struct diff_options *o,
6973dcae
JH
2302 int complete_rewrite)
2303{
2304 mmfile_t mf1, mf2;
2305 const char *lbl[2];
2306 char *a_one, *b_two;
d9c552f1 2307 const char *meta = diff_get_color_opt(o, DIFF_METAINFO);
8f67f8ae 2308 const char *reset = diff_get_color_opt(o, DIFF_RESET);
a5a818ee 2309 const char *a_prefix, *b_prefix;
d9bae1a1
JK
2310 struct userdiff_driver *textconv_one = NULL;
2311 struct userdiff_driver *textconv_two = NULL;
3e97c7c6 2312 struct strbuf header = STRBUF_INIT;
30997bb8 2313 const char *line_prefix = diff_line_prefix(o);
a5a818ee 2314
fd47ae6a
JK
2315 diff_set_mnemonic_prefix(o, "a/", "b/");
2316 if (DIFF_OPT_TST(o, REVERSE_DIFF)) {
2317 a_prefix = o->b_prefix;
2318 b_prefix = o->a_prefix;
2319 } else {
2320 a_prefix = o->a_prefix;
2321 b_prefix = o->b_prefix;
2322 }
2323
61cfbc05
JK
2324 if (o->submodule_format == DIFF_SUBMODULE_LOG &&
2325 (!one->mode || S_ISGITLINK(one->mode)) &&
2326 (!two->mode || S_ISGITLINK(two->mode))) {
752c0c24
JS
2327 const char *del = diff_get_color_opt(o, DIFF_FILE_OLD);
2328 const char *add = diff_get_color_opt(o, DIFF_FILE_NEW);
3b0c18af 2329 show_submodule_summary(o->file, one->path ? one->path : two->path,
0f33a067 2330 line_prefix,
602a283a 2331 &one->oid, &two->oid,
a0d12c44 2332 two->dirty_submodule,
4e215131 2333 meta, del, add, reset);
752c0c24 2334 return;
fd47ae6a
JK
2335 } else if (o->submodule_format == DIFF_SUBMODULE_INLINE_DIFF &&
2336 (!one->mode || S_ISGITLINK(one->mode)) &&
2337 (!two->mode || S_ISGITLINK(two->mode))) {
2338 const char *del = diff_get_color_opt(o, DIFF_FILE_OLD);
2339 const char *add = diff_get_color_opt(o, DIFF_FILE_NEW);
2340 show_submodule_inline_diff(o->file, one->path ? one->path : two->path,
2341 line_prefix,
2342 &one->oid, &two->oid,
2343 two->dirty_submodule,
2344 meta, del, add, reset, o);
2345 return;
752c0c24
JS
2346 }
2347
3aa1f7ca
JK
2348 if (DIFF_OPT_TST(o, ALLOW_TEXTCONV)) {
2349 textconv_one = get_textconv(one);
2350 textconv_two = get_textconv(two);
2351 }
2352
71b989e7
LT
2353 /* Never use a non-valid filename anywhere if at all possible */
2354 name_a = DIFF_FILE_VALID(one) ? name_a : name_b;
2355 name_b = DIFF_FILE_VALID(two) ? name_b : name_a;
2356
a5a818ee
JH
2357 a_one = quote_two(a_prefix, name_a + (*name_a == '/'));
2358 b_two = quote_two(b_prefix, name_b + (*name_b == '/'));
6973dcae
JH
2359 lbl[0] = DIFF_FILE_VALID(one) ? a_one : "/dev/null";
2360 lbl[1] = DIFF_FILE_VALID(two) ? b_two : "/dev/null";
d9c552f1 2361 strbuf_addf(&header, "%s%sdiff --git %s %s%s\n", line_prefix, meta, a_one, b_two, reset);
6973dcae
JH
2362 if (lbl[0][0] == '/') {
2363 /* /dev/null */
d9c552f1 2364 strbuf_addf(&header, "%s%snew file mode %06o%s\n", line_prefix, meta, two->mode, reset);
37466447
BW
2365 if (xfrm_msg)
2366 strbuf_addstr(&header, xfrm_msg);
296c6bb2 2367 must_show_header = 1;
6973dcae
JH
2368 }
2369 else if (lbl[1][0] == '/') {
d9c552f1 2370 strbuf_addf(&header, "%s%sdeleted file mode %06o%s\n", line_prefix, meta, one->mode, reset);
37466447
BW
2371 if (xfrm_msg)
2372 strbuf_addstr(&header, xfrm_msg);
296c6bb2 2373 must_show_header = 1;
6973dcae
JH
2374 }
2375 else {
2376 if (one->mode != two->mode) {
d9c552f1
JK
2377 strbuf_addf(&header, "%s%sold mode %06o%s\n", line_prefix, meta, one->mode, reset);
2378 strbuf_addf(&header, "%s%snew mode %06o%s\n", line_prefix, meta, two->mode, reset);
296c6bb2 2379 must_show_header = 1;
cd112cef 2380 }
37466447
BW
2381 if (xfrm_msg)
2382 strbuf_addstr(&header, xfrm_msg);
3e97c7c6 2383
6973dcae
JH
2384 /*
2385 * we do not run diff between different kind
2386 * of objects.
2387 */
2388 if ((one->mode ^ two->mode) & S_IFMT)
2389 goto free_ab_and_return;
0c01857d 2390 if (complete_rewrite &&
3aa1f7ca
JK
2391 (textconv_one || !diff_filespec_is_binary(one)) &&
2392 (textconv_two || !diff_filespec_is_binary(two))) {
3e97c7c6
GB
2393 fprintf(o->file, "%s", header.buf);
2394 strbuf_reset(&header);
3aa1f7ca
JK
2395 emit_rewrite_diff(name_a, name_b, one, two,
2396 textconv_one, textconv_two, o);
34a5e1a2 2397 o->found_changes = 1;
6973dcae
JH
2398 goto free_ab_and_return;
2399 }
2400 }
2401
467ddc14
JH
2402 if (o->irreversible_delete && lbl[1][0] == '/') {
2403 fprintf(o->file, "%s", header.buf);
2404 strbuf_reset(&header);
2405 goto free_ab_and_return;
2406 } else if (!DIFF_OPT_TST(o, TEXT) &&
b3373982
JK
2407 ( (!textconv_one && diff_filespec_is_binary(one)) ||
2408 (!textconv_two && diff_filespec_is_binary(two)) )) {
1aaf69e6
NTND
2409 if (!one->data && !two->data &&
2410 S_ISREG(one->mode) && S_ISREG(two->mode) &&
2411 !DIFF_OPT_TST(o, BINARY)) {
a0d12c44 2412 if (!oidcmp(&one->oid, &two->oid)) {
1aaf69e6
NTND
2413 if (must_show_header)
2414 fprintf(o->file, "%s", header.buf);
2415 goto free_ab_and_return;
2416 }
2417 fprintf(o->file, "%s", header.buf);
2418 fprintf(o->file, "%sBinary files %s and %s differ\n",
2419 line_prefix, lbl[0], lbl[1]);
2420 goto free_ab_and_return;
2421 }
b3373982
JK
2422 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
2423 die("unable to read files to diff");
0660626c
JH
2424 /* Quite common confusing case */
2425 if (mf1.size == mf2.size &&
296c6bb2
CC
2426 !memcmp(mf1.ptr, mf2.ptr, mf1.size)) {
2427 if (must_show_header)
2428 fprintf(o->file, "%s", header.buf);
0660626c 2429 goto free_ab_and_return;
296c6bb2 2430 }
3e97c7c6
GB
2431 fprintf(o->file, "%s", header.buf);
2432 strbuf_reset(&header);
8f67f8ae 2433 if (DIFF_OPT_TST(o, BINARY))
7be57610 2434 emit_binary_diff(o->file, &mf1, &mf2, line_prefix);
051308f6 2435 else
7be57610
BY
2436 fprintf(o->file, "%sBinary files %s and %s differ\n",
2437 line_prefix, lbl[0], lbl[1]);
34a5e1a2 2438 o->found_changes = 1;
467ddc14 2439 } else {
6973dcae
JH
2440 /* Crazy xdl interfaces.. */
2441 const char *diffopts = getenv("GIT_DIFF_OPTS");
ae021d87 2442 const char *v;
6973dcae
JH
2443 xpparam_t xpp;
2444 xdemitconf_t xecfg;
6973dcae 2445 struct emit_callback ecbdata;
be58e70d 2446 const struct userdiff_funcname *pe;
f258475a 2447
b3f01ff2 2448 if (must_show_header) {
3e97c7c6
GB
2449 fprintf(o->file, "%s", header.buf);
2450 strbuf_reset(&header);
2451 }
2452
840383b2
JK
2453 mf1.size = fill_textconv(textconv_one, one, &mf1.ptr);
2454 mf2.size = fill_textconv(textconv_two, two, &mf2.ptr);
04427ac8 2455
45e7ca0f
BC
2456 pe = diff_funcname_pattern(one);
2457 if (!pe)
2458 pe = diff_funcname_pattern(two);
6973dcae 2459
9ccd0a88 2460 memset(&xpp, 0, sizeof(xpp));
30b25010 2461 memset(&xecfg, 0, sizeof(xecfg));
cd112cef 2462 memset(&ecbdata, 0, sizeof(ecbdata));
6973dcae 2463 ecbdata.label_path = lbl;
daa0c3d9 2464 ecbdata.color_diff = want_color(o->use_color);
c189c4f2 2465 ecbdata.ws_rule = whitespace_rule(name_b);
690ed843 2466 if (ecbdata.ws_rule & WS_BLANK_AT_EOF)
d68fe26f 2467 check_blank_at_eof(&mf1, &mf2, &ecbdata);
a3c158d4 2468 ecbdata.opt = o;
3e97c7c6 2469 ecbdata.header = header.len ? &header : NULL;
582aa00b 2470 xpp.flags = o->xdl_opts;
ee1e5412 2471 xecfg.ctxlen = o->context;
6d0e674a 2472 xecfg.interhunkctxlen = o->interhunkcontext;
6973dcae 2473 xecfg.flags = XDL_EMIT_FUNCNAMES;
14937c2c
RS
2474 if (DIFF_OPT_TST(o, FUNCCONTEXT))
2475 xecfg.flags |= XDL_EMIT_FUNCCONTEXT;
45e7ca0f 2476 if (pe)
a013585b 2477 xdiff_set_find_func(&xecfg, pe->pattern, pe->cflags);
6973dcae
JH
2478 if (!diffopts)
2479 ;
ae021d87
JK
2480 else if (skip_prefix(diffopts, "--unified=", &v))
2481 xecfg.ctxlen = strtoul(v, NULL, 10);
2482 else if (skip_prefix(diffopts, "-u", &v))
2483 xecfg.ctxlen = strtoul(v, NULL, 10);
77d1a520
TR
2484 if (o->word_diff)
2485 init_diff_words_data(&ecbdata, o, one, two);
3efb9880
JK
2486 if (xdi_diff_outf(&mf1, &mf2, fn_out_consume, &ecbdata,
2487 &xpp, &xecfg))
2488 die("unable to generate diff for %s", one->path);
882749a0 2489 if (o->word_diff)
f59a59e2 2490 free_diff_words_data(&ecbdata);
04427ac8
JK
2491 if (textconv_one)
2492 free(mf1.ptr);
2493 if (textconv_two)
2494 free(mf2.ptr);
8cfe5f1c 2495 xdiff_clear_find_func(&xecfg);
6973dcae
JH
2496 }
2497
2498 free_ab_and_return:
3e97c7c6 2499 strbuf_release(&header);
fc3abdf5
JH
2500 diff_free_filespec_data(one);
2501 diff_free_filespec_data(two);
6973dcae
JH
2502 free(a_one);
2503 free(b_two);
2504 return;
2505}
2506
2507static void builtin_diffstat(const char *name_a, const char *name_b,
2508 struct diff_filespec *one,
2509 struct diff_filespec *two,
710158e3 2510 struct diffstat_t *diffstat,
0d21efa5 2511 struct diff_options *o,
74faaa16 2512 struct diff_filepair *p)
6973dcae
JH
2513{
2514 mmfile_t mf1, mf2;
2515 struct diffstat_file *data;
352ca4e1 2516 int same_contents;
74faaa16
LT
2517 int complete_rewrite = 0;
2518
2519 if (!DIFF_PAIR_UNMERGED(p)) {
2520 if (p->status == DIFF_STATUS_MODIFIED && p->score)
2521 complete_rewrite = 1;
2522 }
6973dcae
JH
2523
2524 data = diffstat_add(diffstat, name_a, name_b);
99bfd407 2525 data->is_interesting = p->status != DIFF_STATUS_UNKNOWN;
6973dcae
JH
2526
2527 if (!one || !two) {
2528 data->is_unmerged = 1;
2529 return;
2530 }
ded0abc7 2531
a0d12c44 2532 same_contents = !oidcmp(&one->oid, &two->oid);
352ca4e1 2533
ded0abc7 2534 if (diff_filespec_is_binary(one) || diff_filespec_is_binary(two)) {
ded0abc7 2535 data->is_binary = 1;
352ca4e1 2536 if (same_contents) {
e18872b2
ZJS
2537 data->added = 0;
2538 data->deleted = 0;
2539 } else {
2540 data->added = diff_filespec_size(two);
2541 data->deleted = diff_filespec_size(one);
2542 }
ded0abc7
JK
2543 }
2544
2545 else if (complete_rewrite) {
710158e3
JH
2546 diff_populate_filespec(one, 0);
2547 diff_populate_filespec(two, 0);
2548 data->deleted = count_lines(one->data, one->size);
2549 data->added = count_lines(two->data, two->size);
710158e3 2550 }
6973dcae 2551
352ca4e1 2552 else if (!same_contents) {
6973dcae
JH
2553 /* Crazy xdl interfaces.. */
2554 xpparam_t xpp;
2555 xdemitconf_t xecfg;
6973dcae 2556
ded0abc7
JK
2557 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
2558 die("unable to read files to diff");
2559
9ccd0a88 2560 memset(&xpp, 0, sizeof(xpp));
30b25010 2561 memset(&xecfg, 0, sizeof(xecfg));
582aa00b 2562 xpp.flags = o->xdl_opts;
f01cae91
JH
2563 xecfg.ctxlen = o->context;
2564 xecfg.interhunkctxlen = o->interhunkcontext;
3efb9880
JK
2565 if (xdi_diff_outf(&mf1, &mf2, diffstat_consume, diffstat,
2566 &xpp, &xecfg))
2567 die("unable to generate diffstat for %s", one->path);
6973dcae 2568 }
fc3abdf5 2569
fc3abdf5
JH
2570 diff_free_filespec_data(one);
2571 diff_free_filespec_data(two);
6973dcae
JH
2572}
2573
88246898 2574static void builtin_checkdiff(const char *name_a, const char *name_b,
cd676a51 2575 const char *attr_path,
5ff10dd6
JH
2576 struct diff_filespec *one,
2577 struct diff_filespec *two,
2578 struct diff_options *o)
88246898
JS
2579{
2580 mmfile_t mf1, mf2;
2581 struct checkdiff_t data;
2582
2583 if (!two)
2584 return;
2585
2586 memset(&data, 0, sizeof(data));
88246898
JS
2587 data.filename = name_b ? name_b : name_a;
2588 data.lineno = 0;
1ba111d1 2589 data.o = o;
cd676a51 2590 data.ws_rule = whitespace_rule(attr_path);
a757c646 2591 data.conflict_marker_size = ll_merge_marker_size(attr_path);
88246898
JS
2592
2593 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
2594 die("unable to read files to diff");
2595
5ff10dd6
JH
2596 /*
2597 * All the other codepaths check both sides, but not checking
2598 * the "old" side here is deliberate. We are checking the newly
2599 * introduced changes, and as long as the "new" side is text, we
2600 * can and should check what it introduces.
2601 */
29a3eefd 2602 if (diff_filespec_is_binary(two))
fc3abdf5 2603 goto free_and_return;
88246898
JS
2604 else {
2605 /* Crazy xdl interfaces.. */
2606 xpparam_t xpp;
2607 xdemitconf_t xecfg;
88246898 2608
9ccd0a88 2609 memset(&xpp, 0, sizeof(xpp));
30b25010 2610 memset(&xecfg, 0, sizeof(xecfg));
c35539eb 2611 xecfg.ctxlen = 1; /* at least one context line */
582aa00b 2612 xpp.flags = 0;
3efb9880
JK
2613 if (xdi_diff_outf(&mf1, &mf2, checkdiff_consume, &data,
2614 &xpp, &xecfg))
2615 die("unable to generate checkdiff for %s", one->path);
877f23cc 2616
467babf8 2617 if (data.ws_rule & WS_BLANK_AT_EOF) {
d68fe26f
JH
2618 struct emit_callback ecbdata;
2619 int blank_at_eof;
2620
2621 ecbdata.ws_rule = data.ws_rule;
2622 check_blank_at_eof(&mf1, &mf2, &ecbdata);
8837d335 2623 blank_at_eof = ecbdata.blank_at_eof_in_postimage;
d68fe26f 2624
467babf8
JH
2625 if (blank_at_eof) {
2626 static char *err;
2627 if (!err)
2628 err = whitespace_error_string(WS_BLANK_AT_EOF);
2629 fprintf(o->file, "%s:%d: %s.\n",
2630 data.filename, blank_at_eof, err);
2631 data.status = 1; /* report errors */
2632 }
877f23cc 2633 }
88246898 2634 }
fc3abdf5
JH
2635 free_and_return:
2636 diff_free_filespec_data(one);
2637 diff_free_filespec_data(two);
62c64895
WC
2638 if (data.status)
2639 DIFF_OPT_SET(o, CHECK_FAILED);
88246898
JS
2640}
2641
6973dcae
JH
2642struct diff_filespec *alloc_filespec(const char *path)
2643{
96ffc06f 2644 struct diff_filespec *spec;
6973dcae 2645
96ffc06f 2646 FLEXPTR_ALLOC_STR(spec, path, path);
9fb88419 2647 spec->count = 1;
122aa6f9 2648 spec->is_binary = -1;
6973dcae
JH
2649 return spec;
2650}
2651
9fb88419
LT
2652void free_filespec(struct diff_filespec *spec)
2653{
2654 if (!--spec->count) {
2655 diff_free_filespec_data(spec);
2656 free(spec);
2657 }
2658}
2659
6973dcae 2660void fill_filespec(struct diff_filespec *spec, const unsigned char *sha1,
e5450100 2661 int sha1_valid, unsigned short mode)
6973dcae
JH
2662{
2663 if (mode) {
2664 spec->mode = canon_mode(mode);
a0d12c44 2665 hashcpy(spec->oid.hash, sha1);
41c9560e 2666 spec->oid_valid = sha1_valid;
6973dcae
JH
2667 }
2668}
2669
2670/*
5adf317b 2671 * Given a name and sha1 pair, if the index tells us the file in
6973dcae
JH
2672 * the work tree has that object contents, return true, so that
2673 * prepare_temp_file() does not have to inflate and extract.
2674 */
1510fea7 2675static int reuse_worktree_file(const char *name, const unsigned char *sha1, int want_file)
6973dcae 2676{
9c5e6c80 2677 const struct cache_entry *ce;
6973dcae
JH
2678 struct stat st;
2679 int pos, len;
2680
150115ad
JH
2681 /*
2682 * We do not read the cache ourselves here, because the
6973dcae
JH
2683 * benchmark with my previous version that always reads cache
2684 * shows that it makes things worse for diff-tree comparing
2685 * two linux-2.6 kernel trees in an already checked out work
2686 * tree. This is because most diff-tree comparisons deal with
2687 * only a small number of files, while reading the cache is
2688 * expensive for a large project, and its cost outweighs the
2689 * savings we get by not inflating the object to a temporary
2690 * file. Practically, this code only helps when we are used
2691 * by diff-cache --cached, which does read the cache before
2692 * calling us.
2693 */
2694 if (!active_cache)
2695 return 0;
2696
1510fea7
SP
2697 /* We want to avoid the working directory if our caller
2698 * doesn't need the data in a normal file, this system
2699 * is rather slow with its stat/open/mmap/close syscalls,
2700 * and the object is contained in a pack file. The pack
2701 * is probably already open and will be faster to obtain
2702 * the data through than the working directory. Loose
2703 * objects however would tend to be slower as they need
2704 * to be individually opened and inflated.
2705 */
cd673c1f 2706 if (!FAST_WORKING_DIRECTORY && !want_file && has_sha1_pack(sha1))
1510fea7
SP
2707 return 0;
2708
06dec439
JK
2709 /*
2710 * Similarly, if we'd have to convert the file contents anyway, that
2711 * makes the optimization not worthwhile.
2712 */
2713 if (!want_file && would_convert_to_git(name))
2714 return 0;
2715
6973dcae
JH
2716 len = strlen(name);
2717 pos = cache_name_pos(name, len);
2718 if (pos < 0)
2719 return 0;
2720 ce = active_cache[pos];
eadb5831
JH
2721
2722 /*
2723 * This is not the sha1 we are looking for, or
2724 * unreusable because it is not a regular file.
2725 */
99d1a986 2726 if (hashcmp(sha1, ce->oid.hash) || !S_ISREG(ce->ce_mode))
6973dcae 2727 return 0;
eadb5831 2728
150115ad
JH
2729 /*
2730 * If ce is marked as "assume unchanged", there is no
2731 * guarantee that work tree matches what we are looking for.
2732 */
b4d1690d 2733 if ((ce->ce_flags & CE_VALID) || ce_skip_worktree(ce))
150115ad
JH
2734 return 0;
2735
eadb5831
JH
2736 /*
2737 * If ce matches the file in the work tree, we can reuse it.
6973dcae 2738 */
eadb5831
JH
2739 if (ce_uptodate(ce) ||
2740 (!lstat(name, &st) && !ce_match_stat(ce, &st, 0)))
2741 return 1;
2742
2743 return 0;
6973dcae
JH
2744}
2745
04786756
LT
2746static int diff_populate_gitlink(struct diff_filespec *s, int size_only)
2747{
b1ddfb91
JK
2748 struct strbuf buf = STRBUF_INIT;
2749 char *dirty = "";
8e08b419
JH
2750
2751 /* Are we looking at the work tree? */
85adbf2f 2752 if (s->dirty_submodule)
8e08b419
JH
2753 dirty = "-dirty";
2754
a0d12c44 2755 strbuf_addf(&buf, "Subproject commit %s%s\n",
2756 oid_to_hex(&s->oid), dirty);
b1ddfb91 2757 s->size = buf.len;
04786756
LT
2758 if (size_only) {
2759 s->data = NULL;
b1ddfb91
JK
2760 strbuf_release(&buf);
2761 } else {
2762 s->data = strbuf_detach(&buf, NULL);
2763 s->should_free = 1;
04786756
LT
2764 }
2765 return 0;
2766}
2767
6973dcae
JH
2768/*
2769 * While doing rename detection and pickaxe operation, we may need to
2770 * grab the data for the blob (or file) for our own in-core comparison.
2771 * diff_filespec has data and size fields for this purpose.
2772 */
8e5dd3d6 2773int diff_populate_filespec(struct diff_filespec *s, unsigned int flags)
6973dcae 2774{
8e5dd3d6 2775 int size_only = flags & CHECK_SIZE_ONLY;
6973dcae 2776 int err = 0;
5430bb28
JH
2777 /*
2778 * demote FAIL to WARN to allow inspecting the situation
2779 * instead of refusing.
2780 */
2781 enum safe_crlf crlf_warn = (safe_crlf == SAFE_CRLF_FAIL
2782 ? SAFE_CRLF_WARN
2783 : safe_crlf);
2784
6973dcae
JH
2785 if (!DIFF_FILE_VALID(s))
2786 die("internal error: asking to populate invalid file.");
2787 if (S_ISDIR(s->mode))
2788 return -1;
2789
6973dcae 2790 if (s->data)
fc3abdf5 2791 return 0;
04786756 2792
6e0b8ed6
JH
2793 if (size_only && 0 < s->size)
2794 return 0;
2795
302b9282 2796 if (S_ISGITLINK(s->mode))
04786756
LT
2797 return diff_populate_gitlink(s, size_only);
2798
41c9560e 2799 if (!s->oid_valid ||
a0d12c44 2800 reuse_worktree_file(s->path, s->oid.hash, 0)) {
f285a2d7 2801 struct strbuf buf = STRBUF_INIT;
6973dcae
JH
2802 struct stat st;
2803 int fd;
6c510bee 2804
6973dcae
JH
2805 if (lstat(s->path, &st) < 0) {
2806 if (errno == ENOENT) {
2807 err_empty:
2808 err = -1;
2809 empty:
d2543b8e 2810 s->data = (char *)"";
6973dcae
JH
2811 s->size = 0;
2812 return err;
2813 }
2814 }
dc49cd76 2815 s->size = xsize_t(st.st_size);
6973dcae
JH
2816 if (!s->size)
2817 goto empty;
6973dcae 2818 if (S_ISLNK(st.st_mode)) {
cf219d8c
LT
2819 struct strbuf sb = STRBUF_INIT;
2820
2821 if (strbuf_readlink(&sb, s->path, s->size))
6973dcae 2822 goto err_empty;
0956a6db
RS
2823 s->size = sb.len;
2824 s->data = strbuf_detach(&sb, NULL);
cf219d8c 2825 s->should_free = 1;
6973dcae
JH
2826 return 0;
2827 }
cf219d8c
LT
2828 if (size_only)
2829 return 0;
6bf3b813
NTND
2830 if ((flags & CHECK_BINARY) &&
2831 s->size > big_file_threshold && s->is_binary == -1) {
2832 s->is_binary = 1;
2833 return 0;
2834 }
6973dcae
JH
2835 fd = open(s->path, O_RDONLY);
2836 if (fd < 0)
2837 goto err_empty;
c4712e45 2838 s->data = xmmap(NULL, s->size, PROT_READ, MAP_PRIVATE, fd, 0);
6973dcae 2839 close(fd);
6973dcae 2840 s->should_munmap = 1;
6c510bee
LT
2841
2842 /*
2843 * Convert from working tree format to canonical git format
2844 */
5430bb28 2845 if (convert_to_git(s->path, s->data, s->size, &buf, crlf_warn)) {
c32f749f 2846 size_t size = 0;
6c510bee
LT
2847 munmap(s->data, s->size);
2848 s->should_munmap = 0;
c32f749f
RS
2849 s->data = strbuf_detach(&buf, &size);
2850 s->size = size;
6c510bee
LT
2851 s->should_free = 1;
2852 }
6973dcae
JH
2853 }
2854 else {
21666f1a 2855 enum object_type type;
6bf3b813 2856 if (size_only || (flags & CHECK_BINARY)) {
a0d12c44 2857 type = sha1_object_info(s->oid.hash, &s->size);
c50c4316 2858 if (type < 0)
a0d12c44 2859 die("unable to read %s",
2860 oid_to_hex(&s->oid));
6bf3b813
NTND
2861 if (size_only)
2862 return 0;
2863 if (s->size > big_file_threshold && s->is_binary == -1) {
2864 s->is_binary = 1;
2865 return 0;
2866 }
6973dcae 2867 }
a0d12c44 2868 s->data = read_sha1_file(s->oid.hash, &type, &s->size);
6bf3b813 2869 if (!s->data)
a0d12c44 2870 die("unable to read %s", oid_to_hex(&s->oid));
6bf3b813 2871 s->should_free = 1;
6973dcae
JH
2872 }
2873 return 0;
2874}
2875
8ae92e63 2876void diff_free_filespec_blob(struct diff_filespec *s)
6973dcae
JH
2877{
2878 if (s->should_free)
2879 free(s->data);
2880 else if (s->should_munmap)
2881 munmap(s->data, s->size);
fc3abdf5
JH
2882
2883 if (s->should_free || s->should_munmap) {
2884 s->should_free = s->should_munmap = 0;
2885 s->data = NULL;
2886 }
eede7b7d
JK
2887}
2888
2889void diff_free_filespec_data(struct diff_filespec *s)
2890{
8ae92e63 2891 diff_free_filespec_blob(s);
6973dcae
JH
2892 free(s->cnt_data);
2893 s->cnt_data = NULL;
2894}
2895
4e218f54 2896static void prep_temp_blob(const char *path, struct diff_tempfile *temp,
6973dcae
JH
2897 void *blob,
2898 unsigned long size,
09bdff29 2899 const struct object_id *oid,
6973dcae
JH
2900 int mode)
2901{
2902 int fd;
4e218f54 2903 struct strbuf buf = STRBUF_INIT;
003b33a8
DA
2904 struct strbuf template = STRBUF_INIT;
2905 char *path_dup = xstrdup(path);
2906 const char *base = basename(path_dup);
6973dcae 2907
003b33a8
DA
2908 /* Generate "XXXXXX_basename.ext" */
2909 strbuf_addstr(&template, "XXXXXX_");
2910 strbuf_addstr(&template, base);
2911
284098f1 2912 fd = mks_tempfile_ts(&temp->tempfile, template.buf, strlen(base) + 1);
6973dcae 2913 if (fd < 0)
d824cbba 2914 die_errno("unable to create temp-file");
4e218f54
JS
2915 if (convert_to_working_tree(path,
2916 (const char *)blob, (size_t)size, &buf)) {
2917 blob = buf.buf;
2918 size = buf.len;
2919 }
93822c22 2920 if (write_in_full(fd, blob, size) != size)
0721c314 2921 die_errno("unable to write temp-file");
284098f1
MH
2922 close_tempfile(&temp->tempfile);
2923 temp->name = get_tempfile_path(&temp->tempfile);
09bdff29 2924 oid_to_hex_r(temp->hex, oid);
5096d490 2925 xsnprintf(temp->mode, sizeof(temp->mode), "%06o", mode);
4e218f54 2926 strbuf_release(&buf);
003b33a8
DA
2927 strbuf_release(&template);
2928 free(path_dup);
6973dcae
JH
2929}
2930
479b0ae8
JK
2931static struct diff_tempfile *prepare_temp_file(const char *name,
2932 struct diff_filespec *one)
6973dcae 2933{
479b0ae8
JK
2934 struct diff_tempfile *temp = claim_diff_tempfile();
2935
6973dcae
JH
2936 if (!DIFF_FILE_VALID(one)) {
2937 not_a_valid_file:
2938 /* A '-' entry produces this for file-2, and
2939 * a '+' entry produces this for file-1.
2940 */
2941 temp->name = "/dev/null";
5096d490
JK
2942 xsnprintf(temp->hex, sizeof(temp->hex), ".");
2943 xsnprintf(temp->mode, sizeof(temp->mode), ".");
479b0ae8
JK
2944 return temp;
2945 }
2946
aba47272 2947 if (!S_ISGITLINK(one->mode) &&
41c9560e 2948 (!one->oid_valid ||
a0d12c44 2949 reuse_worktree_file(name, one->oid.hash, 1))) {
6973dcae
JH
2950 struct stat st;
2951 if (lstat(name, &st) < 0) {
2952 if (errno == ENOENT)
2953 goto not_a_valid_file;
d824cbba 2954 die_errno("stat(%s)", name);
6973dcae
JH
2955 }
2956 if (S_ISLNK(st.st_mode)) {
3cd7388d
JK
2957 struct strbuf sb = STRBUF_INIT;
2958 if (strbuf_readlink(&sb, name, st.st_size) < 0)
0721c314 2959 die_errno("readlink(%s)", name);
3cd7388d 2960 prep_temp_blob(name, temp, sb.buf, sb.len,
41c9560e 2961 (one->oid_valid ?
09bdff29 2962 &one->oid : &null_oid),
41c9560e 2963 (one->oid_valid ?
6973dcae 2964 one->mode : S_IFLNK));
3cd7388d 2965 strbuf_release(&sb);
6973dcae
JH
2966 }
2967 else {
2968 /* we can borrow from the file in the work tree */
2969 temp->name = name;
41c9560e 2970 if (!one->oid_valid)
d59f765a 2971 sha1_to_hex_r(temp->hex, null_sha1);
6973dcae 2972 else
a0d12c44 2973 sha1_to_hex_r(temp->hex, one->oid.hash);
6973dcae
JH
2974 /* Even though we may sometimes borrow the
2975 * contents from the work tree, we always want
2976 * one->mode. mode is trustworthy even when
2977 * !(one->sha1_valid), as long as
2978 * DIFF_FILE_VALID(one).
2979 */
5096d490 2980 xsnprintf(temp->mode, sizeof(temp->mode), "%06o", one->mode);
6973dcae 2981 }
479b0ae8 2982 return temp;
6973dcae
JH
2983 }
2984 else {
2985 if (diff_populate_filespec(one, 0))
2986 die("cannot read data blob for %s", one->path);
4e218f54 2987 prep_temp_blob(name, temp, one->data, one->size,
09bdff29 2988 &one->oid, one->mode);
6973dcae 2989 }
479b0ae8 2990 return temp;
6973dcae
JH
2991}
2992
f3efe787
JK
2993static void add_external_diff_name(struct argv_array *argv,
2994 const char *name,
2995 struct diff_filespec *df)
2996{
2997 struct diff_tempfile *temp = prepare_temp_file(name, df);
2998 argv_array_push(argv, temp->name);
2999 argv_array_push(argv, temp->hex);
3000 argv_array_push(argv, temp->mode);
3001}
3002
6973dcae
JH
3003/* An external diff command takes:
3004 *
3005 * diff-cmd name infile1 infile1-sha1 infile1-mode \
3006 * infile2 infile2-sha1 infile2-mode [ rename-to ]
3007 *
3008 */
3009static void run_external_diff(const char *pgm,
3010 const char *name,
3011 const char *other,
3012 struct diff_filespec *one,
3013 struct diff_filespec *two,
3014 const char *xfrm_msg,
ee7fb0b1
ZK
3015 int complete_rewrite,
3016 struct diff_options *o)
6973dcae 3017{
82fbf269 3018 struct argv_array argv = ARGV_ARRAY_INIT;
ae049c95 3019 struct argv_array env = ARGV_ARRAY_INIT;
ee7fb0b1 3020 struct diff_queue_struct *q = &diff_queued_diff;
6973dcae 3021
0d4217d9
JK
3022 argv_array_push(&argv, pgm);
3023 argv_array_push(&argv, name);
6973dcae 3024
6973dcae 3025 if (one && two) {
f3efe787
JK
3026 add_external_diff_name(&argv, name, one);
3027 if (!other)
3028 add_external_diff_name(&argv, name, two);
3029 else {
3030 add_external_diff_name(&argv, other, two);
82fbf269
JK
3031 argv_array_push(&argv, other);
3032 argv_array_push(&argv, xfrm_msg);
6973dcae 3033 }
6973dcae 3034 }
ee7fb0b1 3035
ae049c95
JK
3036 argv_array_pushf(&env, "GIT_DIFF_PATH_COUNTER=%d", ++o->diff_path_counter);
3037 argv_array_pushf(&env, "GIT_DIFF_PATH_TOTAL=%d", q->nr);
ee7fb0b1 3038
89294d14
JK
3039 if (run_command_v_opt_cd_env(argv.argv, RUN_USING_SHELL, NULL, env.argv))
3040 die(_("external diff died, stopping at %s"), name);
ee7fb0b1 3041
6973dcae 3042 remove_tempfile();
82fbf269 3043 argv_array_clear(&argv);
ae049c95 3044 argv_array_clear(&env);
6973dcae
JH
3045}
3046
b67b9612
JH
3047static int similarity_index(struct diff_filepair *p)
3048{
3049 return p->score * 100 / MAX_SCORE;
3050}
3051
3052static void fill_metainfo(struct strbuf *msg,
3053 const char *name,
3054 const char *other,
3055 struct diff_filespec *one,
3056 struct diff_filespec *two,
3057 struct diff_options *o,
37466447 3058 struct diff_filepair *p,
5977744d 3059 int *must_show_header,
37466447 3060 int use_color)
b67b9612 3061{
37466447
BW
3062 const char *set = diff_get_color(use_color, DIFF_METAINFO);
3063 const char *reset = diff_get_color(use_color, DIFF_RESET);
30997bb8 3064 const char *line_prefix = diff_line_prefix(o);
7be57610 3065
296c6bb2 3066 *must_show_header = 1;
b67b9612
JH
3067 strbuf_init(msg, PATH_MAX * 2 + 300);
3068 switch (p->status) {
3069 case DIFF_STATUS_COPIED:
98ad90fb
JH
3070 strbuf_addf(msg, "%s%ssimilarity index %d%%",
3071 line_prefix, set, similarity_index(p));
3072 strbuf_addf(msg, "%s\n%s%scopy from ",
3073 reset, line_prefix, set);
b67b9612 3074 quote_c_style(name, msg, NULL, 0);
98ad90fb 3075 strbuf_addf(msg, "%s\n%s%scopy to ", reset, line_prefix, set);
b67b9612 3076 quote_c_style(other, msg, NULL, 0);
37466447 3077 strbuf_addf(msg, "%s\n", reset);
b67b9612
JH
3078 break;
3079 case DIFF_STATUS_RENAMED:
98ad90fb
JH
3080 strbuf_addf(msg, "%s%ssimilarity index %d%%",
3081 line_prefix, set, similarity_index(p));
3082 strbuf_addf(msg, "%s\n%s%srename from ",
3083 reset, line_prefix, set);
b67b9612 3084 quote_c_style(name, msg, NULL, 0);
98ad90fb
JH
3085 strbuf_addf(msg, "%s\n%s%srename to ",
3086 reset, line_prefix, set);
b67b9612 3087 quote_c_style(other, msg, NULL, 0);
37466447 3088 strbuf_addf(msg, "%s\n", reset);
b67b9612
JH
3089 break;
3090 case DIFF_STATUS_MODIFIED:
3091 if (p->score) {
98ad90fb
JH
3092 strbuf_addf(msg, "%s%sdissimilarity index %d%%%s\n",
3093 line_prefix,
37466447 3094 set, similarity_index(p), reset);
b67b9612
JH
3095 break;
3096 }
3097 /* fallthru */
3098 default:
296c6bb2 3099 *must_show_header = 0;
b67b9612 3100 }
a0d12c44 3101 if (one && two && oidcmp(&one->oid, &two->oid)) {
b67b9612
JH
3102 int abbrev = DIFF_OPT_TST(o, FULL_INDEX) ? 40 : DEFAULT_ABBREV;
3103
3104 if (DIFF_OPT_TST(o, BINARY)) {
3105 mmfile_t mf;
3106 if ((!fill_mmfile(&mf, one) && diff_filespec_is_binary(one)) ||
3107 (!fill_mmfile(&mf, two) && diff_filespec_is_binary(two)))
3108 abbrev = 40;
3109 }
e13f38a3 3110 strbuf_addf(msg, "%s%sindex %s..", line_prefix, set,
a0d12c44 3111 find_unique_abbrev(one->oid.hash, abbrev));
f937d785 3112 strbuf_add_unique_abbrev(msg, two->oid.hash, abbrev);
b67b9612
JH
3113 if (one->mode == two->mode)
3114 strbuf_addf(msg, " %06o", one->mode);
37466447 3115 strbuf_addf(msg, "%s\n", reset);
b67b9612 3116 }
b67b9612
JH
3117}
3118
6973dcae
JH
3119static void run_diff_cmd(const char *pgm,
3120 const char *name,
3121 const char *other,
cd676a51 3122 const char *attr_path,
6973dcae
JH
3123 struct diff_filespec *one,
3124 struct diff_filespec *two,
b67b9612 3125 struct strbuf *msg,
051308f6 3126 struct diff_options *o,
b67b9612 3127 struct diff_filepair *p)
6973dcae 3128{
b67b9612
JH
3129 const char *xfrm_msg = NULL;
3130 int complete_rewrite = (p->status == DIFF_STATUS_MODIFIED) && p->score;
296c6bb2 3131 int must_show_header = 0;
b67b9612 3132
bd8c1a9b
JH
3133
3134 if (DIFF_OPT_TST(o, ALLOW_EXTERNAL)) {
be58e70d
JK
3135 struct userdiff_driver *drv = userdiff_find_by_path(attr_path);
3136 if (drv && drv->external)
3137 pgm = drv->external;
f1af60bd
JH
3138 }
3139
37466447
BW
3140 if (msg) {
3141 /*
3142 * don't use colors when the header is intended for an
3143 * external diff driver
3144 */
3145 fill_metainfo(msg, name, other, one, two, o, p,
5977744d 3146 &must_show_header,
daa0c3d9 3147 want_color(o->use_color) && !pgm);
37466447
BW
3148 xfrm_msg = msg->len ? msg->buf : NULL;
3149 }
3150
6973dcae
JH
3151 if (pgm) {
3152 run_external_diff(pgm, name, other, one, two, xfrm_msg,
ee7fb0b1 3153 complete_rewrite, o);
6973dcae
JH
3154 return;
3155 }
3156 if (one && two)
3157 builtin_diff(name, other ? other : name,
296c6bb2
CC
3158 one, two, xfrm_msg, must_show_header,
3159 o, complete_rewrite);
6973dcae 3160 else
c0c77734 3161 fprintf(o->file, "* Unmerged path %s\n", name);
6973dcae
JH
3162}
3163
3164static void diff_fill_sha1_info(struct diff_filespec *one)
3165{
3166 if (DIFF_FILE_VALID(one)) {
41c9560e 3167 if (!one->oid_valid) {
6973dcae 3168 struct stat st;
4682d852 3169 if (one->is_stdin) {
a0d12c44 3170 oidclr(&one->oid);
5332b2af
JS
3171 return;
3172 }
6973dcae 3173 if (lstat(one->path, &st) < 0)
0721c314 3174 die_errno("stat '%s'", one->path);
a0d12c44 3175 if (index_path(one->oid.hash, one->path, &st, 0))
d7530708 3176 die("cannot hash %s", one->path);
6973dcae
JH
3177 }
3178 }
3179 else
a0d12c44 3180 oidclr(&one->oid);
6973dcae
JH
3181}
3182
cd676a51
JH
3183static void strip_prefix(int prefix_length, const char **namep, const char **otherp)
3184{
3185 /* Strip the prefix but do not molest /dev/null and absolute paths */
d8faea9d 3186 if (*namep && **namep != '/') {
cd676a51 3187 *namep += prefix_length;
d8faea9d
JN
3188 if (**namep == '/')
3189 ++*namep;
3190 }
3191 if (*otherp && **otherp != '/') {
cd676a51 3192 *otherp += prefix_length;
d8faea9d
JN
3193 if (**otherp == '/')
3194 ++*otherp;
3195 }
cd676a51
JH
3196}
3197
6973dcae
JH
3198static void run_diff(struct diff_filepair *p, struct diff_options *o)
3199{
3200 const char *pgm = external_diff();
663af342 3201 struct strbuf msg;
663af342
PH
3202 struct diff_filespec *one = p->one;
3203 struct diff_filespec *two = p->two;
6973dcae
JH
3204 const char *name;
3205 const char *other;
cd676a51 3206 const char *attr_path;
663af342 3207
cd676a51
JH
3208 name = p->one->path;
3209 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
3210 attr_path = name;
3211 if (o->prefix_length)
3212 strip_prefix(o->prefix_length, &name, &other);
6973dcae 3213
bd8c1a9b
JH
3214 if (!DIFF_OPT_TST(o, ALLOW_EXTERNAL))
3215 pgm = NULL;
3216
6973dcae 3217 if (DIFF_PAIR_UNMERGED(p)) {
cd676a51 3218 run_diff_cmd(pgm, name, NULL, attr_path,
b67b9612 3219 NULL, NULL, NULL, o, p);
6973dcae
JH
3220 return;
3221 }
3222
6973dcae
JH
3223 diff_fill_sha1_info(one);
3224 diff_fill_sha1_info(two);
3225
6973dcae
JH
3226 if (!pgm &&
3227 DIFF_FILE_VALID(one) && DIFF_FILE_VALID(two) &&
3228 (S_IFMT & one->mode) != (S_IFMT & two->mode)) {
b67b9612
JH
3229 /*
3230 * a filepair that changes between file and symlink
6973dcae
JH
3231 * needs to be split into deletion and creation.
3232 */
3233 struct diff_filespec *null = alloc_filespec(two->path);
cd676a51 3234 run_diff_cmd(NULL, name, other, attr_path,
b67b9612 3235 one, null, &msg, o, p);
6973dcae 3236 free(null);
b67b9612
JH
3237 strbuf_release(&msg);
3238
6973dcae 3239 null = alloc_filespec(one->path);
cd676a51 3240 run_diff_cmd(NULL, name, other, attr_path,
b67b9612 3241 null, two, &msg, o, p);
6973dcae
JH
3242 free(null);
3243 }
3244 else
cd676a51 3245 run_diff_cmd(pgm, name, other, attr_path,
b67b9612 3246 one, two, &msg, o, p);
6973dcae 3247
663af342 3248 strbuf_release(&msg);
6973dcae
JH
3249}
3250
3251static void run_diffstat(struct diff_filepair *p, struct diff_options *o,
3252 struct diffstat_t *diffstat)
3253{
3254 const char *name;
3255 const char *other;
3256
3257 if (DIFF_PAIR_UNMERGED(p)) {
3258 /* unmerged */
74faaa16 3259 builtin_diffstat(p->one->path, NULL, NULL, NULL, diffstat, o, p);
6973dcae
JH
3260 return;
3261 }
3262
3263 name = p->one->path;
3264 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
3265
cd676a51
JH
3266 if (o->prefix_length)
3267 strip_prefix(o->prefix_length, &name, &other);
3268
6973dcae
JH
3269 diff_fill_sha1_info(p->one);
3270 diff_fill_sha1_info(p->two);
3271
74faaa16 3272 builtin_diffstat(name, other, p->one, p->two, diffstat, o, p);
6973dcae
JH
3273}
3274
88246898
JS
3275static void run_checkdiff(struct diff_filepair *p, struct diff_options *o)
3276{
3277 const char *name;
3278 const char *other;
cd676a51 3279 const char *attr_path;
88246898
JS
3280
3281 if (DIFF_PAIR_UNMERGED(p)) {
3282 /* unmerged */
3283 return;
3284 }
3285
3286 name = p->one->path;
3287 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
cd676a51
JH
3288 attr_path = other ? other : name;
3289
3290 if (o->prefix_length)
3291 strip_prefix(o->prefix_length, &name, &other);
88246898
JS
3292
3293 diff_fill_sha1_info(p->one);
3294 diff_fill_sha1_info(p->two);
3295
cd676a51 3296 builtin_checkdiff(name, other, attr_path, p->one, p->two, o);
88246898
JS
3297}
3298
6973dcae
JH
3299void diff_setup(struct diff_options *options)
3300{
be4f2b40 3301 memcpy(options, &default_diff_options, sizeof(*options));
c0c77734
DB
3302
3303 options->file = stdout;
3304
6973dcae
JH
3305 options->line_termination = '\n';
3306 options->break_opt = -1;
3307 options->rename_limit = -1;
712d2c7d 3308 options->dirstat_permille = diff_dirstat_permille_default;
6468a4e5 3309 options->context = diff_context_default;
b8767f79 3310 options->ws_error_highlight = WSEH_NEW;
90d43b07 3311 DIFF_OPT_SET(options, RENAME_EMPTY);
6973dcae 3312
72441af7 3313 /* pathchange left =NULL by default */
6973dcae
JH
3314 options->change = diff_change;
3315 options->add_remove = diff_addremove;
f1c96261 3316 options->use_color = diff_use_color_default;
b68ea12e 3317 options->detect_rename = diff_detect_rename_default;
07ab4dec 3318 options->xdl_opts |= diff_algorithm;
433860f3
MH
3319 if (diff_indent_heuristic)
3320 DIFF_XDL_SET(options, INDENT_HEURISTIC);
3321 else if (diff_compaction_heuristic)
d634d61e 3322 DIFF_XDL_SET(options, COMPACTION_HEURISTIC);
eab9a40b 3323
6d8940b5
SB
3324 options->orderfile = diff_order_file_cfg;
3325
f89504dd
EC
3326 if (diff_no_prefix) {
3327 options->a_prefix = options->b_prefix = "";
3328 } else if (!diff_mnemonic_prefix) {
a5a818ee
JH
3329 options->a_prefix = "a/";
3330 options->b_prefix = "b/";
3331 }
6973dcae
JH
3332}
3333
28452655 3334void diff_setup_done(struct diff_options *options)
6973dcae 3335{
d7de00f7
TH
3336 int count = 0;
3337
6c374008
JH
3338 if (options->set_default)
3339 options->set_default(options);
3340
d7de00f7
TH
3341 if (options->output_format & DIFF_FORMAT_NAME)
3342 count++;
3343 if (options->output_format & DIFF_FORMAT_NAME_STATUS)
3344 count++;
3345 if (options->output_format & DIFF_FORMAT_CHECKDIFF)
3346 count++;
3347 if (options->output_format & DIFF_FORMAT_NO_OUTPUT)
3348 count++;
3349 if (count > 1)
a2f05c94 3350 die(_("--name-only, --name-status, --check and -s are mutually exclusive"));
d7de00f7 3351
f245194f
JH
3352 /*
3353 * Most of the time we can say "there are changes"
3354 * only by checking if there are changed paths, but
3355 * --ignore-whitespace* options force us to look
97bf2a08 3356 * inside contents.
f245194f
JH
3357 */
3358
3359 if (DIFF_XDL_TST(options, IGNORE_WHITESPACE) ||
3360 DIFF_XDL_TST(options, IGNORE_WHITESPACE_CHANGE) ||
3361 DIFF_XDL_TST(options, IGNORE_WHITESPACE_AT_EOL))
3362 DIFF_OPT_SET(options, DIFF_FROM_CONTENTS);
3363 else
3364 DIFF_OPT_CLR(options, DIFF_FROM_CONTENTS);
3365
8f67f8ae 3366 if (DIFF_OPT_TST(options, FIND_COPIES_HARDER))
03b9d560
JH
3367 options->detect_rename = DIFF_DETECT_COPY;
3368
cd676a51
JH
3369 if (!DIFF_OPT_TST(options, RELATIVE_NAME))
3370 options->prefix = NULL;
3371 if (options->prefix)
3372 options->prefix_length = strlen(options->prefix);
3373 else
3374 options->prefix_length = 0;
3375
c6744349
TH
3376 if (options->output_format & (DIFF_FORMAT_NAME |
3377 DIFF_FORMAT_NAME_STATUS |
3378 DIFF_FORMAT_CHECKDIFF |
3379 DIFF_FORMAT_NO_OUTPUT))
3380 options->output_format &= ~(DIFF_FORMAT_RAW |
74e2abe5 3381 DIFF_FORMAT_NUMSTAT |
c6744349 3382 DIFF_FORMAT_DIFFSTAT |
ebd124c6 3383 DIFF_FORMAT_SHORTSTAT |
7df7c019 3384 DIFF_FORMAT_DIRSTAT |
c6744349
TH
3385 DIFF_FORMAT_SUMMARY |
3386 DIFF_FORMAT_PATCH);
3387
6973dcae
JH
3388 /*
3389 * These cases always need recursive; we do not drop caller-supplied
3390 * recursive bits for other formats here.
3391 */
c6744349 3392 if (options->output_format & (DIFF_FORMAT_PATCH |
74e2abe5 3393 DIFF_FORMAT_NUMSTAT |
c6744349 3394 DIFF_FORMAT_DIFFSTAT |
ebd124c6 3395 DIFF_FORMAT_SHORTSTAT |
7df7c019 3396 DIFF_FORMAT_DIRSTAT |
d7014dc0 3397 DIFF_FORMAT_SUMMARY |
c6744349 3398 DIFF_FORMAT_CHECKDIFF))
8f67f8ae 3399 DIFF_OPT_SET(options, RECURSIVE);
5e363541 3400 /*
3969cf7d 3401 * Also pickaxe would not work very well if you do not say recursive
5e363541 3402 */
3969cf7d 3403 if (options->pickaxe)
8f67f8ae 3404 DIFF_OPT_SET(options, RECURSIVE);
ae6d5c1b
JL
3405 /*
3406 * When patches are generated, submodules diffed against the work tree
3407 * must be checked for dirtiness too so it can be shown in the output
3408 */
3409 if (options->output_format & DIFF_FORMAT_PATCH)
3410 DIFF_OPT_SET(options, DIRTY_SUBMODULES);
5e363541 3411
6973dcae
JH
3412 if (options->detect_rename && options->rename_limit < 0)
3413 options->rename_limit = diff_rename_limit_default;
3414 if (options->setup & DIFF_SETUP_USE_CACHE) {
3415 if (!active_cache)
3416 /* read-cache does not die even when it fails
3417 * so it is safe for us to do this here. Also
3418 * it does not smudge active_cache or active_nr
3419 * when it fails, so we do not have to worry about
3420 * cleaning it up ourselves either.
3421 */
3422 read_cache();
3423 }
6973dcae
JH
3424 if (options->abbrev <= 0 || 40 < options->abbrev)
3425 options->abbrev = 40; /* full */
3426
68aacb2f
JH
3427 /*
3428 * It does not make sense to show the first hit we happened
3429 * to have found. It does not make sense not to return with
3430 * exit code in such a case either.
3431 */
90b19941 3432 if (DIFF_OPT_TST(options, QUICK)) {
68aacb2f 3433 options->output_format = DIFF_FORMAT_NO_OUTPUT;
8f67f8ae 3434 DIFF_OPT_SET(options, EXIT_WITH_STATUS);
68aacb2f 3435 }
ee7fb0b1 3436
0ea7d5b6 3437 options->diff_path_counter = 0;
b0e2c999 3438
dd63f169
JK
3439 if (DIFF_OPT_TST(options, FOLLOW_RENAMES) && options->pathspec.nr != 1)
3440 die(_("--follow requires exactly one pathspec"));
6973dcae
JH
3441}
3442
d2543b8e 3443static int opt_arg(const char *arg, int arg_short, const char *arg_long, int *val)
ee1e5412
LT
3444{
3445 char c, *eq;
3446 int len;
3447
3448 if (*arg != '-')
3449 return 0;
3450 c = *++arg;
3451 if (!c)
3452 return 0;
3453 if (c == arg_short) {
3454 c = *++arg;
3455 if (!c)
3456 return 1;
3457 if (val && isdigit(c)) {
3458 char *end;
3459 int n = strtoul(arg, &end, 10);
3460 if (*end)
3461 return 0;
3462 *val = n;
3463 return 1;
3464 }
3465 return 0;
3466 }
3467 if (c != '-')
3468 return 0;
3469 arg++;
2c5495f7
RM
3470 eq = strchrnul(arg, '=');
3471 len = eq - arg;
ee1e5412
LT
3472 if (!len || strncmp(arg, arg_long, len))
3473 return 0;
2c5495f7 3474 if (*eq) {
ee1e5412
LT
3475 int n;
3476 char *end;
3477 if (!isdigit(*++eq))
3478 return 0;
3479 n = strtoul(eq, &end, 10);
3480 if (*end)
3481 return 0;
3482 *val = n;
3483 }
3484 return 1;
3485}
3486
16befb8b
JH
3487static int diff_scoreopt_parse(const char *opt);
3488
dea007fb
MM
3489static inline int short_opt(char opt, const char **argv,
3490 const char **optarg)
3491{
3492 const char *arg = argv[0];
3493 if (arg[0] != '-' || arg[1] != opt)
3494 return 0;
3495 if (arg[2] != '\0') {
3496 *optarg = arg + 2;
3497 return 1;
3498 }
3499 if (!argv[1])
3500 die("Option '%c' requires a value", opt);
3501 *optarg = argv[1];
3502 return 2;
3503}
3504
3505int parse_long_opt(const char *opt, const char **argv,
3506 const char **optarg)
3507{
3508 const char *arg = argv[0];
95b567c7 3509 if (!skip_prefix(arg, "--", &arg))
dea007fb 3510 return 0;
95b567c7 3511 if (!skip_prefix(arg, opt, &arg))
dea007fb 3512 return 0;
b0d12fc9 3513 if (*arg == '=') { /* stuck form: --option=value */
dea007fb
MM
3514 *optarg = arg + 1;
3515 return 1;
3516 }
3517 if (*arg != '\0')
3518 return 0;
3519 /* separate form: --option value */
3520 if (!argv[1])
3521 die("Option '--%s' requires a value", opt);
3522 *optarg = argv[1];
3523 return 2;
3524}
3525
4d7f7a4a
JN
3526static int stat_opt(struct diff_options *options, const char **av)
3527{
3528 const char *arg = av[0];
3529 char *end;
3530 int width = options->stat_width;
3531 int name_width = options->stat_name_width;
969fe57b 3532 int graph_width = options->stat_graph_width;
808e1db2 3533 int count = options->stat_count;
1e57208e 3534 int argcount = 1;
4d7f7a4a 3535
0539cc00
JK
3536 if (!skip_prefix(arg, "--stat", &arg))
3537 die("BUG: stat option does not begin with --stat: %s", arg);
4d7f7a4a
JN
3538 end = (char *)arg;
3539
3540 switch (*arg) {
3541 case '-':
95b567c7 3542 if (skip_prefix(arg, "-width", &arg)) {
1e57208e
MM
3543 if (*arg == '=')
3544 width = strtoul(arg + 1, &end, 10);
3545 else if (!*arg && !av[1])
a2f05c94 3546 die_want_option("--stat-width");
1e57208e
MM
3547 else if (!*arg) {
3548 width = strtoul(av[1], &end, 10);
3549 argcount = 2;
3550 }
95b567c7 3551 } else if (skip_prefix(arg, "-name-width", &arg)) {
1e57208e
MM
3552 if (*arg == '=')
3553 name_width = strtoul(arg + 1, &end, 10);
3554 else if (!*arg && !av[1])
a2f05c94 3555 die_want_option("--stat-name-width");
1e57208e
MM
3556 else if (!*arg) {
3557 name_width = strtoul(av[1], &end, 10);
3558 argcount = 2;
3559 }
95b567c7 3560 } else if (skip_prefix(arg, "-graph-width", &arg)) {
969fe57b
ZJS
3561 if (*arg == '=')
3562 graph_width = strtoul(arg + 1, &end, 10);
3563 else if (!*arg && !av[1])
a2f05c94 3564 die_want_option("--stat-graph-width");
969fe57b
ZJS
3565 else if (!*arg) {
3566 graph_width = strtoul(av[1], &end, 10);
3567 argcount = 2;
3568 }
95b567c7 3569 } else if (skip_prefix(arg, "-count", &arg)) {
808e1db2
MG
3570 if (*arg == '=')
3571 count = strtoul(arg + 1, &end, 10);
3572 else if (!*arg && !av[1])
a2f05c94 3573 die_want_option("--stat-count");
808e1db2
MG
3574 else if (!*arg) {
3575 count = strtoul(av[1], &end, 10);
3576 argcount = 2;
3577 }
1e57208e 3578 }
4d7f7a4a
JN
3579 break;
3580 case '=':
3581 width = strtoul(arg+1, &end, 10);
3582 if (*end == ',')
3583 name_width = strtoul(end+1, &end, 10);
808e1db2
MG
3584 if (*end == ',')
3585 count = strtoul(end+1, &end, 10);
4d7f7a4a
JN
3586 }
3587
3588 /* Important! This checks all the error cases! */
3589 if (*end)
3590 return 0;
3591 options->output_format |= DIFF_FORMAT_DIFFSTAT;
3592 options->stat_name_width = name_width;
969fe57b 3593 options->stat_graph_width = graph_width;
4d7f7a4a 3594 options->stat_width = width;
808e1db2 3595 options->stat_count = count;
1e57208e 3596 return argcount;
4d7f7a4a
JN
3597}
3598
333f3fb0
JH
3599static int parse_dirstat_opt(struct diff_options *options, const char *params)
3600{
51670fc8
JH
3601 struct strbuf errmsg = STRBUF_INIT;
3602 if (parse_dirstat_params(options, params, &errmsg))
7478ac57 3603 die(_("Failed to parse --dirstat/-X option parameter:\n%s"),
51670fc8
JH
3604 errmsg.buf);
3605 strbuf_release(&errmsg);
333f3fb0
JH
3606 /*
3607 * The caller knows a dirstat-related option is given from the command
3608 * line; allow it to say "return this_function();"
3609 */
3610 options->output_format |= DIFF_FORMAT_DIRSTAT;
3611 return 1;
3612}
3613
c47ef57c
RR
3614static int parse_submodule_opt(struct diff_options *options, const char *value)
3615{
3616 if (parse_submodule_params(options, value))
3617 die(_("Failed to parse --submodule option parameter: '%s'"),
3618 value);
3619 return 1;
3620}
3621
1ecc1cbd
JH
3622static const char diff_status_letters[] = {
3623 DIFF_STATUS_ADDED,
3624 DIFF_STATUS_COPIED,
3625 DIFF_STATUS_DELETED,
3626 DIFF_STATUS_MODIFIED,
3627 DIFF_STATUS_RENAMED,
3628 DIFF_STATUS_TYPE_CHANGED,
3629 DIFF_STATUS_UNKNOWN,
3630 DIFF_STATUS_UNMERGED,
3631 DIFF_STATUS_FILTER_AON,
3632 DIFF_STATUS_FILTER_BROKEN,
3633 '\0',
3634};
3635
3636static unsigned int filter_bit['Z' + 1];
3637
3638static void prepare_filter_bits(void)
3639{
3640 int i;
3641
3642 if (!filter_bit[DIFF_STATUS_ADDED]) {
3643 for (i = 0; diff_status_letters[i]; i++)
3644 filter_bit[(int) diff_status_letters[i]] = (1 << i);
3645 }
3646}
3647
3648static unsigned filter_bit_tst(char status, const struct diff_options *opt)
3649{
3650 return opt->filter & filter_bit[(int) status];
3651}
3652
3653static int parse_diff_filter_opt(const char *optarg, struct diff_options *opt)
3654{
3655 int i, optch;
3656
3657 prepare_filter_bits();
7f2ea5f0
JH
3658
3659 /*
3660 * If there is a negation e.g. 'd' in the input, and we haven't
3661 * initialized the filter field with another --diff-filter, start
3662 * from full set of bits, except for AON.
3663 */
3664 if (!opt->filter) {
3665 for (i = 0; (optch = optarg[i]) != '\0'; i++) {
3666 if (optch < 'a' || 'z' < optch)
3667 continue;
3668 opt->filter = (1 << (ARRAY_SIZE(diff_status_letters) - 1)) - 1;
3669 opt->filter &= ~filter_bit[DIFF_STATUS_FILTER_AON];
3670 break;
3671 }
3672 }
3673
1ecc1cbd
JH
3674 for (i = 0; (optch = optarg[i]) != '\0'; i++) {
3675 unsigned int bit;
7f2ea5f0
JH
3676 int negate;
3677
3678 if ('a' <= optch && optch <= 'z') {
3679 negate = 1;
3680 optch = toupper(optch);
3681 } else {
3682 negate = 0;
3683 }
1ecc1cbd
JH
3684
3685 bit = (0 <= optch && optch <= 'Z') ? filter_bit[optch] : 0;
3686 if (!bit)
bf142ec4 3687 return optarg[i];
7f2ea5f0
JH
3688 if (negate)
3689 opt->filter &= ~bit;
3690 else
3691 opt->filter |= bit;
1ecc1cbd
JH
3692 }
3693 return 0;
3694}
3695
71482d38
MM
3696static void enable_patch_output(int *fmt) {
3697 *fmt &= ~DIFF_FORMAT_NO_OUTPUT;
3698 *fmt |= DIFF_FORMAT_PATCH;
3699}
3700
b8767f79
JH
3701static int parse_one_token(const char **arg, const char *token)
3702{
3f4f17b5
RS
3703 const char *rest;
3704 if (skip_prefix(*arg, token, &rest) && (!*rest || *rest == ',')) {
3705 *arg = rest;
3706 return 1;
3707 }
3708 return 0;
b8767f79
JH
3709}
3710
3711static int parse_ws_error_highlight(struct diff_options *opt, const char *arg)
3712{
3713 const char *orig_arg = arg;
3714 unsigned val = 0;
3715 while (*arg) {
3716 if (parse_one_token(&arg, "none"))
3717 val = 0;
3718 else if (parse_one_token(&arg, "default"))
3719 val = WSEH_NEW;
3720 else if (parse_one_token(&arg, "all"))
3721 val = WSEH_NEW | WSEH_OLD | WSEH_CONTEXT;
3722 else if (parse_one_token(&arg, "new"))
3723 val |= WSEH_NEW;
3724 else if (parse_one_token(&arg, "old"))
3725 val |= WSEH_OLD;
3726 else if (parse_one_token(&arg, "context"))
3727 val |= WSEH_CONTEXT;
3728 else {
3729 error("unknown value after ws-error-highlight=%.*s",
3730 (int)(arg - orig_arg), orig_arg);
3731 return 0;
3732 }
3733 if (*arg)
3734 arg++;
3735 }
3736 opt->ws_error_highlight = val;
3737 return 1;
3738}
3739
a97262c6
NTND
3740int diff_opt_parse(struct diff_options *options,
3741 const char **av, int ac, const char *prefix)
6973dcae
JH
3742{
3743 const char *arg = av[0];
dea007fb
MM
3744 const char *optarg;
3745 int argcount;
d054680c 3746
a97262c6
NTND
3747 if (!prefix)
3748 prefix = "";
3749
d054680c 3750 /* Output format options */
71482d38
MM
3751 if (!strcmp(arg, "-p") || !strcmp(arg, "-u") || !strcmp(arg, "--patch")
3752 || opt_arg(arg, 'U', "unified", &options->context))
3753 enable_patch_output(&options->output_format);
a610786f
TH
3754 else if (!strcmp(arg, "--raw"))
3755 options->output_format |= DIFF_FORMAT_RAW;
71482d38
MM
3756 else if (!strcmp(arg, "--patch-with-raw")) {
3757 enable_patch_output(&options->output_format);
3758 options->output_format |= DIFF_FORMAT_RAW;
3759 } else if (!strcmp(arg, "--numstat"))
74e2abe5 3760 options->output_format |= DIFF_FORMAT_NUMSTAT;
8f67f8ae 3761 else if (!strcmp(arg, "--shortstat"))
ebd124c6 3762 options->output_format |= DIFF_FORMAT_SHORTSTAT;
333f3fb0
JH
3763 else if (!strcmp(arg, "-X") || !strcmp(arg, "--dirstat"))
3764 return parse_dirstat_opt(options, "");
ae021d87
JK
3765 else if (skip_prefix(arg, "-X", &arg))
3766 return parse_dirstat_opt(options, arg);
3767 else if (skip_prefix(arg, "--dirstat=", &arg))
3768 return parse_dirstat_opt(options, arg);
333f3fb0
JH
3769 else if (!strcmp(arg, "--cumulative"))
3770 return parse_dirstat_opt(options, "cumulative");
3771 else if (!strcmp(arg, "--dirstat-by-file"))
3772 return parse_dirstat_opt(options, "files");
ae021d87 3773 else if (skip_prefix(arg, "--dirstat-by-file=", &arg)) {
333f3fb0 3774 parse_dirstat_opt(options, "files");
ae021d87 3775 return parse_dirstat_opt(options, arg);
f88d225f 3776 }
d054680c
PH
3777 else if (!strcmp(arg, "--check"))
3778 options->output_format |= DIFF_FORMAT_CHECKDIFF;
3779 else if (!strcmp(arg, "--summary"))
3780 options->output_format |= DIFF_FORMAT_SUMMARY;
71482d38
MM
3781 else if (!strcmp(arg, "--patch-with-stat")) {
3782 enable_patch_output(&options->output_format);
3783 options->output_format |= DIFF_FORMAT_DIFFSTAT;
3784 } else if (!strcmp(arg, "--name-only"))
d054680c
PH
3785 options->output_format |= DIFF_FORMAT_NAME;
3786 else if (!strcmp(arg, "--name-status"))
3787 options->output_format |= DIFF_FORMAT_NAME_STATUS;
d09cd15d 3788 else if (!strcmp(arg, "-s") || !strcmp(arg, "--no-patch"))
d054680c 3789 options->output_format |= DIFF_FORMAT_NO_OUTPUT;
59556548 3790 else if (starts_with(arg, "--stat"))
808e1db2 3791 /* --stat, --stat-width, --stat-name-width, or --stat-count */
4d7f7a4a 3792 return stat_opt(options, av);
d054680c
PH
3793
3794 /* renames options */
59556548 3795 else if (starts_with(arg, "-B") || starts_with(arg, "--break-rewrites=") ||
37ab5156 3796 !strcmp(arg, "--break-rewrites")) {
8f67f8ae 3797 if ((options->break_opt = diff_scoreopt_parse(arg)) == -1)
07cd7265 3798 return error("invalid argument to -B: %s", arg+2);
6973dcae 3799 }
59556548 3800 else if (starts_with(arg, "-M") || starts_with(arg, "--find-renames=") ||
f611ddc7 3801 !strcmp(arg, "--find-renames")) {
8f67f8ae 3802 if ((options->rename_score = diff_scoreopt_parse(arg)) == -1)
07cd7265 3803 return error("invalid argument to -M: %s", arg+2);
6973dcae
JH
3804 options->detect_rename = DIFF_DETECT_RENAME;
3805 }
467ddc14
JH
3806 else if (!strcmp(arg, "-D") || !strcmp(arg, "--irreversible-delete")) {
3807 options->irreversible_delete = 1;
3808 }
59556548 3809 else if (starts_with(arg, "-C") || starts_with(arg, "--find-copies=") ||
f611ddc7 3810 !strcmp(arg, "--find-copies")) {
ca6c0970 3811 if (options->detect_rename == DIFF_DETECT_COPY)
8f67f8ae
PH
3812 DIFF_OPT_SET(options, FIND_COPIES_HARDER);
3813 if ((options->rename_score = diff_scoreopt_parse(arg)) == -1)
07cd7265 3814 return error("invalid argument to -C: %s", arg+2);
6973dcae
JH
3815 options->detect_rename = DIFF_DETECT_COPY;
3816 }
d054680c
PH
3817 else if (!strcmp(arg, "--no-renames"))
3818 options->detect_rename = 0;
90d43b07
JK
3819 else if (!strcmp(arg, "--rename-empty"))
3820 DIFF_OPT_SET(options, RENAME_EMPTY);
3821 else if (!strcmp(arg, "--no-rename-empty"))
3822 DIFF_OPT_CLR(options, RENAME_EMPTY);
cd676a51
JH
3823 else if (!strcmp(arg, "--relative"))
3824 DIFF_OPT_SET(options, RELATIVE_NAME);
ae021d87 3825 else if (skip_prefix(arg, "--relative=", &arg)) {
c0cb4a06 3826 DIFF_OPT_SET(options, RELATIVE_NAME);
ae021d87 3827 options->prefix = arg;
c0cb4a06 3828 }
d054680c
PH
3829
3830 /* xdiff options */
81b568c8
JH
3831 else if (!strcmp(arg, "--minimal"))
3832 DIFF_XDL_SET(options, NEED_MINIMAL);
3833 else if (!strcmp(arg, "--no-minimal"))
3834 DIFF_XDL_CLR(options, NEED_MINIMAL);
d054680c 3835 else if (!strcmp(arg, "-w") || !strcmp(arg, "--ignore-all-space"))
628d5c2b 3836 DIFF_XDL_SET(options, IGNORE_WHITESPACE);
d054680c 3837 else if (!strcmp(arg, "-b") || !strcmp(arg, "--ignore-space-change"))
628d5c2b 3838 DIFF_XDL_SET(options, IGNORE_WHITESPACE_CHANGE);
d054680c 3839 else if (!strcmp(arg, "--ignore-space-at-eol"))
628d5c2b 3840 DIFF_XDL_SET(options, IGNORE_WHITESPACE_AT_EOL);
36617af7
AP
3841 else if (!strcmp(arg, "--ignore-blank-lines"))
3842 DIFF_XDL_SET(options, IGNORE_BLANK_LINES);
433860f3
MH
3843 else if (!strcmp(arg, "--indent-heuristic")) {
3844 DIFF_XDL_SET(options, INDENT_HEURISTIC);
3845 DIFF_XDL_CLR(options, COMPACTION_HEURISTIC);
3846 } else if (!strcmp(arg, "--no-indent-heuristic"))
3847 DIFF_XDL_CLR(options, INDENT_HEURISTIC);
3848 else if (!strcmp(arg, "--compaction-heuristic")) {
d634d61e 3849 DIFF_XDL_SET(options, COMPACTION_HEURISTIC);
433860f3
MH
3850 DIFF_XDL_CLR(options, INDENT_HEURISTIC);
3851 } else if (!strcmp(arg, "--no-compaction-heuristic"))
d634d61e 3852 DIFF_XDL_CLR(options, COMPACTION_HEURISTIC);
34292bdd 3853 else if (!strcmp(arg, "--patience"))
307ab20b 3854 options->xdl_opts = DIFF_WITH_ALG(options, PATIENCE_DIFF);
8c912eea 3855 else if (!strcmp(arg, "--histogram"))
307ab20b 3856 options->xdl_opts = DIFF_WITH_ALG(options, HISTOGRAM_DIFF);
0895c6d4
JK
3857 else if ((argcount = parse_long_opt("diff-algorithm", av, &optarg))) {
3858 long value = parse_algorithm_value(optarg);
07924d4d
MP
3859 if (value < 0)
3860 return error("option diff-algorithm accepts \"myers\", "
3861 "\"minimal\", \"patience\" and \"histogram\"");
3862 /* clear out previous settings */
3863 DIFF_XDL_CLR(options, NEED_MINIMAL);
3864 options->xdl_opts &= ~XDF_DIFF_ALGORITHM_MASK;
3865 options->xdl_opts |= value;
0895c6d4 3866 return argcount;
07924d4d 3867 }
d054680c
PH
3868
3869 /* flags options */
3870 else if (!strcmp(arg, "--binary")) {
71482d38 3871 enable_patch_output(&options->output_format);
d054680c
PH
3872 DIFF_OPT_SET(options, BINARY);
3873 }
3874 else if (!strcmp(arg, "--full-index"))
3875 DIFF_OPT_SET(options, FULL_INDEX);
3876 else if (!strcmp(arg, "-a") || !strcmp(arg, "--text"))
3877 DIFF_OPT_SET(options, TEXT);
3878 else if (!strcmp(arg, "-R"))
3879 DIFF_OPT_SET(options, REVERSE_DIFF);
6973dcae 3880 else if (!strcmp(arg, "--find-copies-harder"))
8f67f8ae 3881 DIFF_OPT_SET(options, FIND_COPIES_HARDER);
750f7b66 3882 else if (!strcmp(arg, "--follow"))
8f67f8ae 3883 DIFF_OPT_SET(options, FOLLOW_RENAMES);
076c9837 3884 else if (!strcmp(arg, "--no-follow")) {
aebbcf57 3885 DIFF_OPT_CLR(options, FOLLOW_RENAMES);
076c9837
DT
3886 DIFF_OPT_CLR(options, DEFAULT_FOLLOW_RENAMES);
3887 } else if (!strcmp(arg, "--color"))
f1c96261 3888 options->use_color = 1;
ae021d87
JK
3889 else if (skip_prefix(arg, "--color=", &arg)) {
3890 int value = git_config_colorbool(NULL, arg);
daa0c3d9 3891 if (value < 0)
73e9da01 3892 return error("option `color' expects \"always\", \"auto\", or \"never\"");
daa0c3d9 3893 options->use_color = value;
73e9da01 3894 }
fef88bb0 3895 else if (!strcmp(arg, "--no-color"))
f1c96261 3896 options->use_color = 0;
628d5c2b 3897 else if (!strcmp(arg, "--color-words")) {
f1c96261 3898 options->use_color = 1;
882749a0 3899 options->word_diff = DIFF_WORDS_COLOR;
628d5c2b 3900 }
ae021d87 3901 else if (skip_prefix(arg, "--color-words=", &arg)) {
f1c96261 3902 options->use_color = 1;
882749a0 3903 options->word_diff = DIFF_WORDS_COLOR;
ae021d87 3904 options->word_regex = arg;
2b6a5417 3905 }
882749a0
TR
3906 else if (!strcmp(arg, "--word-diff")) {
3907 if (options->word_diff == DIFF_WORDS_NONE)
3908 options->word_diff = DIFF_WORDS_PLAIN;
3909 }
ae021d87
JK
3910 else if (skip_prefix(arg, "--word-diff=", &arg)) {
3911 if (!strcmp(arg, "plain"))
882749a0 3912 options->word_diff = DIFF_WORDS_PLAIN;
ae021d87 3913 else if (!strcmp(arg, "color")) {
f1c96261 3914 options->use_color = 1;
882749a0
TR
3915 options->word_diff = DIFF_WORDS_COLOR;
3916 }
ae021d87 3917 else if (!strcmp(arg, "porcelain"))
882749a0 3918 options->word_diff = DIFF_WORDS_PORCELAIN;
ae021d87 3919 else if (!strcmp(arg, "none"))
882749a0
TR
3920 options->word_diff = DIFF_WORDS_NONE;
3921 else
ae021d87 3922 die("bad --word-diff argument: %s", arg);
882749a0 3923 }
dea007fb 3924 else if ((argcount = parse_long_opt("word-diff-regex", av, &optarg))) {
882749a0
TR
3925 if (options->word_diff == DIFF_WORDS_NONE)
3926 options->word_diff = DIFF_WORDS_PLAIN;
dea007fb
MM
3927 options->word_regex = optarg;
3928 return argcount;
882749a0 3929 }
41bbf9d5 3930 else if (!strcmp(arg, "--exit-code"))
8f67f8ae 3931 DIFF_OPT_SET(options, EXIT_WITH_STATUS);
68aacb2f 3932 else if (!strcmp(arg, "--quiet"))
90b19941 3933 DIFF_OPT_SET(options, QUICK);
72909bef 3934 else if (!strcmp(arg, "--ext-diff"))
8f67f8ae 3935 DIFF_OPT_SET(options, ALLOW_EXTERNAL);
72909bef 3936 else if (!strcmp(arg, "--no-ext-diff"))
8f67f8ae 3937 DIFF_OPT_CLR(options, ALLOW_EXTERNAL);
e10ea812
JK
3938 else if (!strcmp(arg, "--textconv"))
3939 DIFF_OPT_SET(options, ALLOW_TEXTCONV);
3940 else if (!strcmp(arg, "--no-textconv"))
3941 DIFF_OPT_CLR(options, ALLOW_TEXTCONV);
aee9c7d6
JL
3942 else if (!strcmp(arg, "--ignore-submodules")) {
3943 DIFF_OPT_SET(options, OVERRIDE_SUBMODULE_CONFIG);
46a958b3 3944 handle_ignore_submodules_arg(options, "all");
ae021d87 3945 } else if (skip_prefix(arg, "--ignore-submodules=", &arg)) {
aee9c7d6 3946 DIFF_OPT_SET(options, OVERRIDE_SUBMODULE_CONFIG);
ae021d87 3947 handle_ignore_submodules_arg(options, arg);
aee9c7d6 3948 } else if (!strcmp(arg, "--submodule"))
61cfbc05 3949 options->submodule_format = DIFF_SUBMODULE_LOG;
ae021d87
JK
3950 else if (skip_prefix(arg, "--submodule=", &arg))
3951 return parse_submodule_opt(options, arg);
b8767f79
JH
3952 else if (skip_prefix(arg, "--ws-error-highlight=", &arg))
3953 return parse_ws_error_highlight(options, arg);
d054680c
PH
3954
3955 /* misc options */
3956 else if (!strcmp(arg, "-z"))
3957 options->line_termination = 0;
dea007fb
MM
3958 else if ((argcount = short_opt('l', av, &optarg))) {
3959 options->rename_limit = strtoul(optarg, NULL, 10);
3960 return argcount;
3961 }
3962 else if ((argcount = short_opt('S', av, &optarg))) {
3963 options->pickaxe = optarg;
f506b8e8
JH
3964 options->pickaxe_opts |= DIFF_PICKAXE_KIND_S;
3965 return argcount;
3966 } else if ((argcount = short_opt('G', av, &optarg))) {
3967 options->pickaxe = optarg;
3968 options->pickaxe_opts |= DIFF_PICKAXE_KIND_G;
dea007fb
MM
3969 return argcount;
3970 }
d054680c 3971 else if (!strcmp(arg, "--pickaxe-all"))
f506b8e8 3972 options->pickaxe_opts |= DIFF_PICKAXE_ALL;
d054680c 3973 else if (!strcmp(arg, "--pickaxe-regex"))
f506b8e8 3974 options->pickaxe_opts |= DIFF_PICKAXE_REGEX;
dea007fb 3975 else if ((argcount = short_opt('O', av, &optarg))) {
a97262c6
NTND
3976 const char *path = prefix_filename(prefix, strlen(prefix), optarg);
3977 options->orderfile = xstrdup(path);
dea007fb
MM
3978 return argcount;
3979 }
3980 else if ((argcount = parse_long_opt("diff-filter", av, &optarg))) {
1ecc1cbd
JH
3981 int offending = parse_diff_filter_opt(optarg, options);
3982 if (offending)
3983 die("unknown change class '%c' in --diff-filter=%s",
3984 offending, optarg);
dea007fb
MM
3985 return argcount;
3986 }
d054680c
PH
3987 else if (!strcmp(arg, "--abbrev"))
3988 options->abbrev = DEFAULT_ABBREV;
ae021d87
JK
3989 else if (skip_prefix(arg, "--abbrev=", &arg)) {
3990 options->abbrev = strtoul(arg, NULL, 10);
d054680c
PH
3991 if (options->abbrev < MINIMUM_ABBREV)
3992 options->abbrev = MINIMUM_ABBREV;
3993 else if (40 < options->abbrev)
3994 options->abbrev = 40;
3995 }
dea007fb
MM
3996 else if ((argcount = parse_long_opt("src-prefix", av, &optarg))) {
3997 options->a_prefix = optarg;
3998 return argcount;
3999 }
660e113c
JK
4000 else if ((argcount = parse_long_opt("line-prefix", av, &optarg))) {
4001 options->line_prefix = optarg;
4002 options->line_prefix_length = strlen(options->line_prefix);
4003 graph_setup_line_prefix(options);
4004 return argcount;
4005 }
dea007fb
MM
4006 else if ((argcount = parse_long_opt("dst-prefix", av, &optarg))) {
4007 options->b_prefix = optarg;
4008 return argcount;
4009 }
eab9a40b
JS
4010 else if (!strcmp(arg, "--no-prefix"))
4011 options->a_prefix = options->b_prefix = "";
6d0e674a
RS
4012 else if (opt_arg(arg, '\0', "inter-hunk-context",
4013 &options->interhunkcontext))
4014 ;
14937c2c
RS
4015 else if (!strcmp(arg, "-W"))
4016 DIFF_OPT_SET(options, FUNCCONTEXT);
4017 else if (!strcmp(arg, "--function-context"))
4018 DIFF_OPT_SET(options, FUNCCONTEXT);
4019 else if (!strcmp(arg, "--no-function-context"))
4020 DIFF_OPT_CLR(options, FUNCCONTEXT);
dea007fb 4021 else if ((argcount = parse_long_opt("output", av, &optarg))) {
a97262c6
NTND
4022 const char *path = prefix_filename(prefix, strlen(prefix), optarg);
4023 options->file = fopen(path, "w");
8324b977 4024 if (!options->file)
a97262c6 4025 die_errno("Could not open '%s'", path);
c0c77734 4026 options->close_file = 1;
afc676f2
JS
4027 if (options->use_color != GIT_COLOR_ALWAYS)
4028 options->use_color = GIT_COLOR_NEVER;
dea007fb 4029 return argcount;
c0c77734 4030 } else
6973dcae
JH
4031 return 0;
4032 return 1;
4033}
4034
10ae7526 4035int parse_rename_score(const char **cp_p)
6973dcae
JH
4036{
4037 unsigned long num, scale;
4038 int ch, dot;
4039 const char *cp = *cp_p;
4040
4041 num = 0;
4042 scale = 1;
4043 dot = 0;
eeefa7c9 4044 for (;;) {
6973dcae
JH
4045 ch = *cp;
4046 if ( !dot && ch == '.' ) {
4047 scale = 1;
4048 dot = 1;
4049 } else if ( ch == '%' ) {
4050 scale = dot ? scale*100 : 100;
4051 cp++; /* % is always at the end */
4052 break;
4053 } else if ( ch >= '0' && ch <= '9' ) {
4054 if ( scale < 100000 ) {
4055 scale *= 10;
4056 num = (num*10) + (ch-'0');
4057 }
4058 } else {
4059 break;
4060 }
4061 cp++;
4062 }
4063 *cp_p = cp;
4064
4065 /* user says num divided by scale and we say internally that
4066 * is MAX_SCORE * num / scale.
4067 */
dc49cd76 4068 return (int)((num >= scale) ? MAX_SCORE : (MAX_SCORE * num / scale));
6973dcae
JH
4069}
4070
16befb8b 4071static int diff_scoreopt_parse(const char *opt)
6973dcae
JH
4072{
4073 int opt1, opt2, cmd;
4074
4075 if (*opt++ != '-')
4076 return -1;
4077 cmd = *opt++;
37ab5156
KB
4078 if (cmd == '-') {
4079 /* convert the long-form arguments into short-form versions */
95b567c7 4080 if (skip_prefix(opt, "break-rewrites", &opt)) {
37ab5156
KB
4081 if (*opt == 0 || *opt++ == '=')
4082 cmd = 'B';
95b567c7 4083 } else if (skip_prefix(opt, "find-copies", &opt)) {
37ab5156
KB
4084 if (*opt == 0 || *opt++ == '=')
4085 cmd = 'C';
95b567c7 4086 } else if (skip_prefix(opt, "find-renames", &opt)) {
37ab5156
KB
4087 if (*opt == 0 || *opt++ == '=')
4088 cmd = 'M';
4089 }
4090 }
6973dcae 4091 if (cmd != 'M' && cmd != 'C' && cmd != 'B')
01689909 4092 return -1; /* that is not a -M, -C, or -B option */
6973dcae 4093
10ae7526 4094 opt1 = parse_rename_score(&opt);
6973dcae
JH
4095 if (cmd != 'B')
4096 opt2 = 0;
4097 else {
4098 if (*opt == 0)
4099 opt2 = 0;
4100 else if (*opt != '/')
4101 return -1; /* we expect -B80/99 or -B80 */
4102 else {
4103 opt++;
10ae7526 4104 opt2 = parse_rename_score(&opt);
6973dcae
JH
4105 }
4106 }
4107 if (*opt != 0)
4108 return -1;
4109 return opt1 | (opt2 << 16);
4110}
4111
4112struct diff_queue_struct diff_queued_diff;
4113
4114void diff_q(struct diff_queue_struct *queue, struct diff_filepair *dp)
4115{
4c960a43 4116 ALLOC_GROW(queue->queue, queue->nr + 1, queue->alloc);
6973dcae
JH
4117 queue->queue[queue->nr++] = dp;
4118}
4119
4120struct diff_filepair *diff_queue(struct diff_queue_struct *queue,
4121 struct diff_filespec *one,
4122 struct diff_filespec *two)
4123{
ef677686 4124 struct diff_filepair *dp = xcalloc(1, sizeof(*dp));
6973dcae
JH
4125 dp->one = one;
4126 dp->two = two;
6973dcae
JH
4127 if (queue)
4128 diff_q(queue, dp);
4129 return dp;
4130}
4131
4132void diff_free_filepair(struct diff_filepair *p)
4133{
9fb88419
LT
4134 free_filespec(p->one);
4135 free_filespec(p->two);
6973dcae
JH
4136 free(p);
4137}
4138
4139/* This is different from find_unique_abbrev() in that
4140 * it stuffs the result with dots for alignment.
4141 */
4142const char *diff_unique_abbrev(const unsigned char *sha1, int len)
4143{
4144 int abblen;
4145 const char *abbrev;
4146 if (len == 40)
4147 return sha1_to_hex(sha1);
4148
4149 abbrev = find_unique_abbrev(sha1, len);
6973dcae
JH
4150 abblen = strlen(abbrev);
4151 if (abblen < 37) {
4152 static char hex[41];
4153 if (len < abblen && abblen <= len + 2)
5096d490 4154 xsnprintf(hex, sizeof(hex), "%s%.*s", abbrev, len+3-abblen, "..");
6973dcae 4155 else
5096d490 4156 xsnprintf(hex, sizeof(hex), "%s...", abbrev);
6973dcae
JH
4157 return hex;
4158 }
4159 return sha1_to_hex(sha1);
4160}
4161
663af342 4162static void diff_flush_raw(struct diff_filepair *p, struct diff_options *opt)
6973dcae 4163{
663af342
PH
4164 int line_termination = opt->line_termination;
4165 int inter_name_termination = line_termination ? '\t' : '\0';
6973dcae 4166
30997bb8 4167 fprintf(opt->file, "%s", diff_line_prefix(opt));
663af342 4168 if (!(opt->output_format & DIFF_FORMAT_NAME_STATUS)) {
c0c77734 4169 fprintf(opt->file, ":%06o %06o %s ", p->one->mode, p->two->mode,
a0d12c44 4170 diff_unique_abbrev(p->one->oid.hash, opt->abbrev));
4171 fprintf(opt->file, "%s ",
4172 diff_unique_abbrev(p->two->oid.hash, opt->abbrev));
6973dcae 4173 }
663af342 4174 if (p->score) {
c0c77734
DB
4175 fprintf(opt->file, "%c%03d%c", p->status, similarity_index(p),
4176 inter_name_termination);
663af342 4177 } else {
c0c77734 4178 fprintf(opt->file, "%c%c", p->status, inter_name_termination);
6973dcae 4179 }
6973dcae 4180
cd676a51
JH
4181 if (p->status == DIFF_STATUS_COPIED ||
4182 p->status == DIFF_STATUS_RENAMED) {
4183 const char *name_a, *name_b;
4184 name_a = p->one->path;
4185 name_b = p->two->path;
4186 strip_prefix(opt->prefix_length, &name_a, &name_b);
c0c77734
DB
4187 write_name_quoted(name_a, opt->file, inter_name_termination);
4188 write_name_quoted(name_b, opt->file, line_termination);
663af342 4189 } else {
cd676a51
JH
4190 const char *name_a, *name_b;
4191 name_a = p->one->mode ? p->one->path : p->two->path;
4192 name_b = NULL;
4193 strip_prefix(opt->prefix_length, &name_a, &name_b);
c0c77734 4194 write_name_quoted(name_a, opt->file, line_termination);
663af342 4195 }
6973dcae
JH
4196}
4197
4198int diff_unmodified_pair(struct diff_filepair *p)
4199{
4200 /* This function is written stricter than necessary to support
4201 * the currently implemented transformers, but the idea is to
4202 * let transformers to produce diff_filepairs any way they want,
4203 * and filter and clean them up here before producing the output.
4204 */
663af342 4205 struct diff_filespec *one = p->one, *two = p->two;
6973dcae
JH
4206
4207 if (DIFF_PAIR_UNMERGED(p))
4208 return 0; /* unmerged is interesting */
4209
6973dcae
JH
4210 /* deletion, addition, mode or type change
4211 * and rename are all interesting.
4212 */
4213 if (DIFF_FILE_VALID(one) != DIFF_FILE_VALID(two) ||
4214 DIFF_PAIR_MODE_CHANGED(p) ||
4215 strcmp(one->path, two->path))
4216 return 0;
4217
4218 /* both are valid and point at the same path. that is, we are
4219 * dealing with a change.
4220 */
41c9560e 4221 if (one->oid_valid && two->oid_valid &&
a0d12c44 4222 !oidcmp(&one->oid, &two->oid) &&
85adbf2f 4223 !one->dirty_submodule && !two->dirty_submodule)
6973dcae 4224 return 1; /* no change */
41c9560e 4225 if (!one->oid_valid && !two->oid_valid)
6973dcae
JH
4226 return 1; /* both look at the same file on the filesystem. */
4227 return 0;
4228}
4229
4230static void diff_flush_patch(struct diff_filepair *p, struct diff_options *o)
4231{
4232 if (diff_unmodified_pair(p))
4233 return;
4234
4235 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
4236 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
4237 return; /* no tree diffs in patch format */
4238
4239 run_diff(p, o);
4240}
4241
4242static void diff_flush_stat(struct diff_filepair *p, struct diff_options *o,
4243 struct diffstat_t *diffstat)
4244{
4245 if (diff_unmodified_pair(p))
4246 return;
4247
4248 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
4249 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
c3fced64 4250 return; /* no useful stat for tree diffs */
6973dcae
JH
4251
4252 run_diffstat(p, o, diffstat);
4253}
4254
88246898
JS
4255static void diff_flush_checkdiff(struct diff_filepair *p,
4256 struct diff_options *o)
4257{
4258 if (diff_unmodified_pair(p))
4259 return;
4260
4261 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
4262 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
c3fced64 4263 return; /* nothing to check in tree diffs */
88246898
JS
4264
4265 run_checkdiff(p, o);
4266}
4267
6973dcae
JH
4268int diff_queue_is_empty(void)
4269{
4270 struct diff_queue_struct *q = &diff_queued_diff;
4271 int i;
4272 for (i = 0; i < q->nr; i++)
4273 if (!diff_unmodified_pair(q->queue[i]))
4274 return 0;
4275 return 1;
4276}
4277
4278#if DIFF_DEBUG
4279void diff_debug_filespec(struct diff_filespec *s, int x, const char *one)
4280{
4281 fprintf(stderr, "queue[%d] %s (%s) %s %06o %s\n",
4282 x, one ? one : "",
4283 s->path,
4284 DIFF_FILE_VALID(s) ? "valid" : "invalid",
4285 s->mode,
41c9560e 4286 s->oid_valid ? oid_to_hex(&s->oid) : "");
428d52a5 4287 fprintf(stderr, "queue[%d] %s size %lu\n",
6973dcae 4288 x, one ? one : "",
428d52a5 4289 s->size);
6973dcae
JH
4290}
4291
4292void diff_debug_filepair(const struct diff_filepair *p, int i)
4293{
4294 diff_debug_filespec(p->one, i, "one");
4295 diff_debug_filespec(p->two, i, "two");
64479711 4296 fprintf(stderr, "score %d, status %c rename_used %d broken %d\n",
6973dcae 4297 p->score, p->status ? p->status : '?',
64479711 4298 p->one->rename_used, p->broken_pair);
6973dcae
JH
4299}
4300
4301void diff_debug_queue(const char *msg, struct diff_queue_struct *q)
4302{
4303 int i;
4304 if (msg)
4305 fprintf(stderr, "%s\n", msg);
4306 fprintf(stderr, "q->nr = %d\n", q->nr);
4307 for (i = 0; i < q->nr; i++) {
4308 struct diff_filepair *p = q->queue[i];
4309 diff_debug_filepair(p, i);
4310 }
4311}
4312#endif
4313
4314static void diff_resolve_rename_copy(void)
4315{
64479711
LT
4316 int i;
4317 struct diff_filepair *p;
6973dcae
JH
4318 struct diff_queue_struct *q = &diff_queued_diff;
4319
4320 diff_debug_queue("resolve-rename-copy", q);
4321
4322 for (i = 0; i < q->nr; i++) {
4323 p = q->queue[i];
4324 p->status = 0; /* undecided */
4325 if (DIFF_PAIR_UNMERGED(p))
4326 p->status = DIFF_STATUS_UNMERGED;
4327 else if (!DIFF_FILE_VALID(p->one))
4328 p->status = DIFF_STATUS_ADDED;
4329 else if (!DIFF_FILE_VALID(p->two))
4330 p->status = DIFF_STATUS_DELETED;
4331 else if (DIFF_PAIR_TYPE_CHANGED(p))
4332 p->status = DIFF_STATUS_TYPE_CHANGED;
4333
4334 /* from this point on, we are dealing with a pair
4335 * whose both sides are valid and of the same type, i.e.
4336 * either in-place edit or rename/copy edit.
4337 */
4338 else if (DIFF_PAIR_RENAME(p)) {
64479711
LT
4339 /*
4340 * A rename might have re-connected a broken
4341 * pair up, causing the pathnames to be the
4342 * same again. If so, that's not a rename at
4343 * all, just a modification..
4344 *
4345 * Otherwise, see if this source was used for
4346 * multiple renames, in which case we decrement
4347 * the count, and call it a copy.
6973dcae 4348 */
64479711
LT
4349 if (!strcmp(p->one->path, p->two->path))
4350 p->status = DIFF_STATUS_MODIFIED;
4351 else if (--p->one->rename_used > 0)
6973dcae 4352 p->status = DIFF_STATUS_COPIED;
64479711 4353 else
6973dcae
JH
4354 p->status = DIFF_STATUS_RENAMED;
4355 }
a0d12c44 4356 else if (oidcmp(&p->one->oid, &p->two->oid) ||
d516c2d1 4357 p->one->mode != p->two->mode ||
85adbf2f
JL
4358 p->one->dirty_submodule ||
4359 p->two->dirty_submodule ||
a0d12c44 4360 is_null_oid(&p->one->oid))
6973dcae
JH
4361 p->status = DIFF_STATUS_MODIFIED;
4362 else {
4363 /* This is a "no-change" entry and should not
4364 * happen anymore, but prepare for broken callers.
4365 */
4366 error("feeding unmodified %s to diffcore",
4367 p->one->path);
4368 p->status = DIFF_STATUS_UNKNOWN;
4369 }
4370 }
4371 diff_debug_queue("resolve-rename-copy done", q);
4372}
4373
c6744349 4374static int check_pair_status(struct diff_filepair *p)
6973dcae 4375{
6973dcae
JH
4376 switch (p->status) {
4377 case DIFF_STATUS_UNKNOWN:
c6744349 4378 return 0;
6973dcae
JH
4379 case 0:
4380 die("internal error in diff-resolve-rename-copy");
6973dcae 4381 default:
c6744349 4382 return 1;
6973dcae
JH
4383 }
4384}
4385
c6744349
TH
4386static void flush_one_pair(struct diff_filepair *p, struct diff_options *opt)
4387{
4388 int fmt = opt->output_format;
4389
4390 if (fmt & DIFF_FORMAT_CHECKDIFF)
4391 diff_flush_checkdiff(p, opt);
4392 else if (fmt & (DIFF_FORMAT_RAW | DIFF_FORMAT_NAME_STATUS))
4393 diff_flush_raw(p, opt);
cd676a51
JH
4394 else if (fmt & DIFF_FORMAT_NAME) {
4395 const char *name_a, *name_b;
4396 name_a = p->two->path;
4397 name_b = NULL;
4398 strip_prefix(opt->prefix_length, &name_a, &name_b);
c0c77734 4399 write_name_quoted(name_a, opt->file, opt->line_termination);
cd676a51 4400 }
c6744349
TH
4401}
4402
c0c77734 4403static void show_file_mode_name(FILE *file, const char *newdelete, struct diff_filespec *fs)
4bbd261b
SE
4404{
4405 if (fs->mode)
c0c77734 4406 fprintf(file, " %s mode %06o ", newdelete, fs->mode);
4bbd261b 4407 else
c0c77734
DB
4408 fprintf(file, " %s ", newdelete);
4409 write_name_quoted(fs->path, file, '\n');
4bbd261b
SE
4410}
4411
4412
7be57610
BY
4413static void show_mode_change(FILE *file, struct diff_filepair *p, int show_name,
4414 const char *line_prefix)
4bbd261b
SE
4415{
4416 if (p->one->mode && p->two->mode && p->one->mode != p->two->mode) {
7be57610
BY
4417 fprintf(file, "%s mode change %06o => %06o%c", line_prefix, p->one->mode,
4418 p->two->mode, show_name ? ' ' : '\n');
0d26a64e 4419 if (show_name) {
c0c77734 4420 write_name_quoted(p->two->path, file, '\n');
0d26a64e 4421 }
4bbd261b
SE
4422 }
4423}
4424
7be57610
BY
4425static void show_rename_copy(FILE *file, const char *renamecopy, struct diff_filepair *p,
4426 const char *line_prefix)
4bbd261b 4427{
b9f44164 4428 char *names = pprint_rename(p->one->path, p->two->path);
4bbd261b 4429
c0c77734 4430 fprintf(file, " %s %s (%d%%)\n", renamecopy, names, similarity_index(p));
b9f44164 4431 free(names);
7be57610 4432 show_mode_change(file, p, 0, line_prefix);
4bbd261b
SE
4433}
4434
7be57610 4435static void diff_summary(struct diff_options *opt, struct diff_filepair *p)
4bbd261b 4436{
7be57610 4437 FILE *file = opt->file;
30997bb8 4438 const char *line_prefix = diff_line_prefix(opt);
7be57610 4439
4bbd261b
SE
4440 switch(p->status) {
4441 case DIFF_STATUS_DELETED:
7be57610 4442 fputs(line_prefix, file);
c0c77734 4443 show_file_mode_name(file, "delete", p->one);
4bbd261b
SE
4444 break;
4445 case DIFF_STATUS_ADDED:
7be57610 4446 fputs(line_prefix, file);
c0c77734 4447 show_file_mode_name(file, "create", p->two);
4bbd261b
SE
4448 break;
4449 case DIFF_STATUS_COPIED:
7be57610
BY
4450 fputs(line_prefix, file);
4451 show_rename_copy(file, "copy", p, line_prefix);
4bbd261b
SE
4452 break;
4453 case DIFF_STATUS_RENAMED:
7be57610
BY
4454 fputs(line_prefix, file);
4455 show_rename_copy(file, "rename", p, line_prefix);
4bbd261b
SE
4456 break;
4457 default:
4458 if (p->score) {
7be57610 4459 fprintf(file, "%s rewrite ", line_prefix);
c0c77734
DB
4460 write_name_quoted(p->two->path, file, ' ');
4461 fprintf(file, "(%d%%)\n", similarity_index(p));
663af342 4462 }
7be57610 4463 show_mode_change(file, p, !p->score, line_prefix);
4bbd261b
SE
4464 break;
4465 }
4466}
4467
fcb3d0ad 4468struct patch_id_t {
9126f009 4469 git_SHA_CTX *ctx;
fcb3d0ad
JS
4470 int patchlen;
4471};
4472
4473static int remove_space(char *line, int len)
4474{
4475 int i;
663af342
PH
4476 char *dst = line;
4477 unsigned char c;
fcb3d0ad 4478
663af342
PH
4479 for (i = 0; i < len; i++)
4480 if (!isspace((c = line[i])))
4481 *dst++ = c;
fcb3d0ad 4482
663af342 4483 return dst - line;
fcb3d0ad
JS
4484}
4485
4486static void patch_id_consume(void *priv, char *line, unsigned long len)
4487{
4488 struct patch_id_t *data = priv;
4489 int new_len;
4490
4491 /* Ignore line numbers when computing the SHA1 of the patch */
59556548 4492 if (starts_with(line, "@@ -"))
fcb3d0ad
JS
4493 return;
4494
4495 new_len = remove_space(line, len);
4496
9126f009 4497 git_SHA1_Update(data->ctx, line, new_len);
fcb3d0ad
JS
4498 data->patchlen += new_len;
4499}
4500
4501/* returns 0 upon success, and writes result into sha1 */
3e8e32c3 4502static int diff_get_patch_id(struct diff_options *options, unsigned char *sha1, int diff_header_only)
fcb3d0ad
JS
4503{
4504 struct diff_queue_struct *q = &diff_queued_diff;
4505 int i;
9126f009 4506 git_SHA_CTX ctx;
fcb3d0ad
JS
4507 struct patch_id_t data;
4508 char buffer[PATH_MAX * 4 + 20];
4509
9126f009 4510 git_SHA1_Init(&ctx);
fcb3d0ad
JS
4511 memset(&data, 0, sizeof(struct patch_id_t));
4512 data.ctx = &ctx;
fcb3d0ad
JS
4513
4514 for (i = 0; i < q->nr; i++) {
4515 xpparam_t xpp;
4516 xdemitconf_t xecfg;
fcb3d0ad
JS
4517 mmfile_t mf1, mf2;
4518 struct diff_filepair *p = q->queue[i];
4519 int len1, len2;
4520
9ccd0a88 4521 memset(&xpp, 0, sizeof(xpp));
30b25010 4522 memset(&xecfg, 0, sizeof(xecfg));
fcb3d0ad
JS
4523 if (p->status == 0)
4524 return error("internal diff status error");
4525 if (p->status == DIFF_STATUS_UNKNOWN)
4526 continue;
4527 if (diff_unmodified_pair(p))
4528 continue;
4529 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
4530 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
4531 continue;
4532 if (DIFF_PAIR_UNMERGED(p))
4533 continue;
4534
4535 diff_fill_sha1_info(p->one);
4536 diff_fill_sha1_info(p->two);
fcb3d0ad 4537
fcb3d0ad
JS
4538 len1 = remove_space(p->one->path, strlen(p->one->path));
4539 len2 = remove_space(p->two->path, strlen(p->two->path));
4540 if (p->one->mode == 0)
4541 len1 = snprintf(buffer, sizeof(buffer),
4542 "diff--gita/%.*sb/%.*s"
4543 "newfilemode%06o"
4544 "---/dev/null"
4545 "+++b/%.*s",
4546 len1, p->one->path,
4547 len2, p->two->path,
4548 p->two->mode,
4549 len2, p->two->path);
4550 else if (p->two->mode == 0)
4551 len1 = snprintf(buffer, sizeof(buffer),
4552 "diff--gita/%.*sb/%.*s"
4553 "deletedfilemode%06o"
4554 "---a/%.*s"
4555 "+++/dev/null",
4556 len1, p->one->path,
4557 len2, p->two->path,
4558 p->one->mode,
4559 len1, p->one->path);
4560 else
4561 len1 = snprintf(buffer, sizeof(buffer),
4562 "diff--gita/%.*sb/%.*s"
4563 "---a/%.*s"
4564 "+++b/%.*s",
4565 len1, p->one->path,
4566 len2, p->two->path,
4567 len1, p->one->path,
4568 len2, p->two->path);
9126f009 4569 git_SHA1_Update(&ctx, buffer, len1);
fcb3d0ad 4570
3e8e32c3
KW
4571 if (diff_header_only)
4572 continue;
4573
4574 if (fill_mmfile(&mf1, p->one) < 0 ||
4575 fill_mmfile(&mf2, p->two) < 0)
4576 return error("unable to read files to diff");
4577
34597c1f
CB
4578 if (diff_filespec_is_binary(p->one) ||
4579 diff_filespec_is_binary(p->two)) {
a0d12c44 4580 git_SHA1_Update(&ctx, oid_to_hex(&p->one->oid),
4581 40);
4582 git_SHA1_Update(&ctx, oid_to_hex(&p->two->oid),
4583 40);
34597c1f
CB
4584 continue;
4585 }
4586
582aa00b 4587 xpp.flags = 0;
fcb3d0ad 4588 xecfg.ctxlen = 3;
ad14b450 4589 xecfg.flags = 0;
3efb9880
JK
4590 if (xdi_diff_outf(&mf1, &mf2, patch_id_consume, &data,
4591 &xpp, &xecfg))
4592 return error("unable to generate patch-id diff for %s",
4593 p->one->path);
fcb3d0ad
JS
4594 }
4595
9126f009 4596 git_SHA1_Final(sha1, &ctx);
fcb3d0ad
JS
4597 return 0;
4598}
4599
3e8e32c3 4600int diff_flush_patch_id(struct diff_options *options, unsigned char *sha1, int diff_header_only)
fcb3d0ad
JS
4601{
4602 struct diff_queue_struct *q = &diff_queued_diff;
4603 int i;
3e8e32c3 4604 int result = diff_get_patch_id(options, sha1, diff_header_only);
fcb3d0ad
JS
4605
4606 for (i = 0; i < q->nr; i++)
4607 diff_free_filepair(q->queue[i]);
4608
4609 free(q->queue);
9ca5df90 4610 DIFF_QUEUE_CLEAR(q);
fcb3d0ad
JS
4611
4612 return result;
4613}
4614
946c3784 4615static int is_summary_empty(const struct diff_queue_struct *q)
6973dcae 4616{
6973dcae 4617 int i;
6973dcae 4618
946c3784
TH
4619 for (i = 0; i < q->nr; i++) {
4620 const struct diff_filepair *p = q->queue[i];
4621
4622 switch (p->status) {
4623 case DIFF_STATUS_DELETED:
4624 case DIFF_STATUS_ADDED:
4625 case DIFF_STATUS_COPIED:
4626 case DIFF_STATUS_RENAMED:
4627 return 0;
4628 default:
4629 if (p->score)
4630 return 0;
4631 if (p->one->mode && p->two->mode &&
4632 p->one->mode != p->two->mode)
4633 return 0;
4634 break;
4635 }
6973dcae 4636 }
946c3784
TH
4637 return 1;
4638}
4639
f31027c9
JH
4640static const char rename_limit_warning[] =
4641"inexact rename detection was skipped due to too many files.";
4642
4643static const char degrade_cc_to_c_warning[] =
4644"only found copies from modified paths due to too many files.";
4645
4646static const char rename_limit_advice[] =
4647"you may want to set your %s variable to at least "
4648"%d and retry the command.";
4649
4650void diff_warn_rename_limit(const char *varname, int needed, int degraded_cc)
4651{
4652 if (degraded_cc)
4653 warning(degrade_cc_to_c_warning);
4654 else if (needed)
4655 warning(rename_limit_warning);
4656 else
4657 return;
4658 if (0 < needed && needed < 32767)
4659 warning(rename_limit_advice, varname, needed);
4660}
4661
6973dcae
JH
4662void diff_flush(struct diff_options *options)
4663{
4664 struct diff_queue_struct *q = &diff_queued_diff;
c6744349 4665 int i, output_format = options->output_format;
946c3784 4666 int separator = 0;
1c57a627 4667 int dirstat_by_line = 0;
6973dcae 4668
c6744349
TH
4669 /*
4670 * Order: raw, stat, summary, patch
4671 * or: name/name-status/checkdiff (other bits clear)
4672 */
946c3784
TH
4673 if (!q->nr)
4674 goto free_queue;
6973dcae 4675
c6744349
TH
4676 if (output_format & (DIFF_FORMAT_RAW |
4677 DIFF_FORMAT_NAME |
4678 DIFF_FORMAT_NAME_STATUS |
4679 DIFF_FORMAT_CHECKDIFF)) {
6973dcae
JH
4680 for (i = 0; i < q->nr; i++) {
4681 struct diff_filepair *p = q->queue[i];
c6744349
TH
4682 if (check_pair_status(p))
4683 flush_one_pair(p, options);
6973dcae 4684 }
946c3784 4685 separator++;
6973dcae 4686 }
c6744349 4687
1c57a627
JH
4688 if (output_format & DIFF_FORMAT_DIRSTAT && DIFF_OPT_TST(options, DIRSTAT_BY_LINE))
4689 dirstat_by_line = 1;
4690
4691 if (output_format & (DIFF_FORMAT_DIFFSTAT|DIFF_FORMAT_SHORTSTAT|DIFF_FORMAT_NUMSTAT) ||
4692 dirstat_by_line) {
5e2b0636 4693 struct diffstat_t diffstat;
c6744349 4694
5e2b0636 4695 memset(&diffstat, 0, sizeof(struct diffstat_t));
6973dcae
JH
4696 for (i = 0; i < q->nr; i++) {
4697 struct diff_filepair *p = q->queue[i];
c6744349 4698 if (check_pair_status(p))
5e2b0636 4699 diff_flush_stat(p, options, &diffstat);
6973dcae 4700 }
74e2abe5
JH
4701 if (output_format & DIFF_FORMAT_NUMSTAT)
4702 show_numstat(&diffstat, options);
4703 if (output_format & DIFF_FORMAT_DIFFSTAT)
4704 show_stats(&diffstat, options);
f604652e 4705 if (output_format & DIFF_FORMAT_SHORTSTAT)
c0c77734 4706 show_shortstats(&diffstat, options);
ab27389a 4707 if (output_format & DIFF_FORMAT_DIRSTAT && dirstat_by_line)
1c57a627 4708 show_dirstat_by_line(&diffstat, options);
f604652e 4709 free_diffstat_info(&diffstat);
3969cf7d 4710 separator++;
6973dcae 4711 }
1c57a627 4712 if ((output_format & DIFF_FORMAT_DIRSTAT) && !dirstat_by_line)
c04a7155 4713 show_dirstat(options);
6973dcae 4714
946c3784 4715 if (output_format & DIFF_FORMAT_SUMMARY && !is_summary_empty(q)) {
7be57610
BY
4716 for (i = 0; i < q->nr; i++) {
4717 diff_summary(options, q->queue[i]);
4718 }
3969cf7d 4719 separator++;
6973dcae
JH
4720 }
4721
6977c250
LA
4722 if (output_format & DIFF_FORMAT_NO_OUTPUT &&
4723 DIFF_OPT_TST(options, EXIT_WITH_STATUS) &&
4724 DIFF_OPT_TST(options, DIFF_FROM_CONTENTS)) {
4725 /*
4726 * run diff_flush_patch for the exit status. setting
749f763d 4727 * options->file to /dev/null should be safe, because we
6977c250
LA
4728 * aren't supposed to produce any output anyway.
4729 */
4730 if (options->close_file)
4731 fclose(options->file);
4732 options->file = fopen("/dev/null", "w");
4733 if (!options->file)
4734 die_errno("Could not open /dev/null");
4735 options->close_file = 1;
4736 for (i = 0; i < q->nr; i++) {
4737 struct diff_filepair *p = q->queue[i];
4738 if (check_pair_status(p))
4739 diff_flush_patch(p, options);
4740 if (options->found_changes)
4741 break;
4742 }
4743 }
4744
c6744349 4745 if (output_format & DIFF_FORMAT_PATCH) {
946c3784 4746 if (separator) {
30997bb8
JK
4747 fprintf(options->file, "%s%c",
4748 diff_line_prefix(options),
4749 options->line_termination);
946c3784
TH
4750 if (options->stat_sep) {
4751 /* attach patch instead of inline */
c0c77734 4752 fputs(options->stat_sep, options->file);
946c3784 4753 }
c6744349
TH
4754 }
4755
4756 for (i = 0; i < q->nr; i++) {
4757 struct diff_filepair *p = q->queue[i];
4758 if (check_pair_status(p))
4759 diff_flush_patch(p, options);
4760 }
4bbd261b
SE
4761 }
4762
04245581
JK
4763 if (output_format & DIFF_FORMAT_CALLBACK)
4764 options->format_callback(q, options, options->format_callback_data);
4765
c6744349
TH
4766 for (i = 0; i < q->nr; i++)
4767 diff_free_filepair(q->queue[i]);
946c3784 4768free_queue:
6973dcae 4769 free(q->queue);
9ca5df90 4770 DIFF_QUEUE_CLEAR(q);
c0c77734
DB
4771 if (options->close_file)
4772 fclose(options->file);
f245194f
JH
4773
4774 /*
97bf2a08 4775 * Report the content-level differences with HAS_CHANGES;
f245194f
JH
4776 * diff_addremove/diff_change does not set the bit when
4777 * DIFF_FROM_CONTENTS is in effect (e.g. with -w).
4778 */
4779 if (DIFF_OPT_TST(options, DIFF_FROM_CONTENTS)) {
4780 if (options->found_changes)
4781 DIFF_OPT_SET(options, HAS_CHANGES);
4782 else
4783 DIFF_OPT_CLR(options, HAS_CHANGES);
4784 }
6973dcae
JH
4785}
4786
08578fa1
JH
4787static int match_filter(const struct diff_options *options, const struct diff_filepair *p)
4788{
4789 return (((p->status == DIFF_STATUS_MODIFIED) &&
4790 ((p->score &&
1ecc1cbd 4791 filter_bit_tst(DIFF_STATUS_FILTER_BROKEN, options)) ||
08578fa1 4792 (!p->score &&
1ecc1cbd 4793 filter_bit_tst(DIFF_STATUS_MODIFIED, options)))) ||
08578fa1 4794 ((p->status != DIFF_STATUS_MODIFIED) &&
1ecc1cbd 4795 filter_bit_tst(p->status, options)));
08578fa1
JH
4796}
4797
949226fe 4798static void diffcore_apply_filter(struct diff_options *options)
6973dcae
JH
4799{
4800 int i;
4801 struct diff_queue_struct *q = &diff_queued_diff;
4802 struct diff_queue_struct outq;
949226fe 4803
9ca5df90 4804 DIFF_QUEUE_CLEAR(&outq);
6973dcae 4805
1ecc1cbd 4806 if (!options->filter)
6973dcae
JH
4807 return;
4808
1ecc1cbd 4809 if (filter_bit_tst(DIFF_STATUS_FILTER_AON, options)) {
6973dcae
JH
4810 int found;
4811 for (i = found = 0; !found && i < q->nr; i++) {
08578fa1 4812 if (match_filter(options, q->queue[i]))
6973dcae
JH
4813 found++;
4814 }
4815 if (found)
4816 return;
4817
4818 /* otherwise we will clear the whole queue
4819 * by copying the empty outq at the end of this
4820 * function, but first clear the current entries
4821 * in the queue.
4822 */
4823 for (i = 0; i < q->nr; i++)
4824 diff_free_filepair(q->queue[i]);
4825 }
4826 else {
4827 /* Only the matching ones */
4828 for (i = 0; i < q->nr; i++) {
4829 struct diff_filepair *p = q->queue[i];
08578fa1 4830 if (match_filter(options, p))
6973dcae
JH
4831 diff_q(&outq, p);
4832 else
4833 diff_free_filepair(p);
4834 }
4835 }
4836 free(q->queue);
4837 *q = outq;
4838}
4839
5701115a
SV
4840/* Check whether two filespecs with the same mode and size are identical */
4841static int diff_filespec_is_identical(struct diff_filespec *one,
4842 struct diff_filespec *two)
4843{
2b459b48
JH
4844 if (S_ISGITLINK(one->mode))
4845 return 0;
5701115a
SV
4846 if (diff_populate_filespec(one, 0))
4847 return 0;
4848 if (diff_populate_filespec(two, 0))
4849 return 0;
4850 return !memcmp(one->data, two->data, one->size);
4851}
4852
fceb9072
NTND
4853static int diff_filespec_check_stat_unmatch(struct diff_filepair *p)
4854{
f34b205f
NTND
4855 if (p->done_skip_stat_unmatch)
4856 return p->skip_stat_unmatch_result;
4857
4858 p->done_skip_stat_unmatch = 1;
4859 p->skip_stat_unmatch_result = 0;
fceb9072
NTND
4860 /*
4861 * 1. Entries that come from stat info dirtiness
4862 * always have both sides (iow, not create/delete),
4863 * one side of the object name is unknown, with
4864 * the same mode and size. Keep the ones that
4865 * do not match these criteria. They have real
4866 * differences.
4867 *
4868 * 2. At this point, the file is known to be modified,
4869 * with the same mode and size, and the object
4870 * name of one side is unknown. Need to inspect
4871 * the identical contents.
4872 */
4873 if (!DIFF_FILE_VALID(p->one) || /* (1) */
4874 !DIFF_FILE_VALID(p->two) ||
41c9560e 4875 (p->one->oid_valid && p->two->oid_valid) ||
fceb9072 4876 (p->one->mode != p->two->mode) ||
8e5dd3d6
NTND
4877 diff_populate_filespec(p->one, CHECK_SIZE_ONLY) ||
4878 diff_populate_filespec(p->two, CHECK_SIZE_ONLY) ||
fceb9072
NTND
4879 (p->one->size != p->two->size) ||
4880 !diff_filespec_is_identical(p->one, p->two)) /* (2) */
f34b205f
NTND
4881 p->skip_stat_unmatch_result = 1;
4882 return p->skip_stat_unmatch_result;
fceb9072
NTND
4883}
4884
fb13227e
JH
4885static void diffcore_skip_stat_unmatch(struct diff_options *diffopt)
4886{
4887 int i;
4888 struct diff_queue_struct *q = &diff_queued_diff;
4889 struct diff_queue_struct outq;
9ca5df90 4890 DIFF_QUEUE_CLEAR(&outq);
fb13227e
JH
4891
4892 for (i = 0; i < q->nr; i++) {
4893 struct diff_filepair *p = q->queue[i];
4894
fceb9072 4895 if (diff_filespec_check_stat_unmatch(p))
fb13227e
JH
4896 diff_q(&outq, p);
4897 else {
4898 /*
4899 * The caller can subtract 1 from skip_stat_unmatch
4900 * to determine how many paths were dirty only
4901 * due to stat info mismatch.
4902 */
8f67f8ae 4903 if (!DIFF_OPT_TST(diffopt, NO_INDEX))
6d2d9e86 4904 diffopt->skip_stat_unmatch++;
fb13227e
JH
4905 diff_free_filepair(p);
4906 }
4907 }
4908 free(q->queue);
4909 *q = outq;
4910}
4911
730f7284
JH
4912static int diffnamecmp(const void *a_, const void *b_)
4913{
4914 const struct diff_filepair *a = *((const struct diff_filepair **)a_);
4915 const struct diff_filepair *b = *((const struct diff_filepair **)b_);
4916 const char *name_a, *name_b;
4917
4918 name_a = a->one ? a->one->path : a->two->path;
4919 name_b = b->one ? b->one->path : b->two->path;
4920 return strcmp(name_a, name_b);
4921}
4922
4923void diffcore_fix_diff_index(struct diff_options *options)
4924{
4925 struct diff_queue_struct *q = &diff_queued_diff;
9ed0d8d6 4926 QSORT(q->queue, q->nr, diffnamecmp);
730f7284
JH
4927}
4928
6973dcae
JH
4929void diffcore_std(struct diff_options *options)
4930{
7195fbfa 4931 /* NOTE please keep the following in sync with diff_tree_combined() */
9d865356 4932 if (options->skip_stat_unmatch)
fb13227e 4933 diffcore_skip_stat_unmatch(options);
44c48a90
JH
4934 if (!options->found_follow) {
4935 /* See try_to_follow_renames() in tree-diff.c */
4936 if (options->break_opt != -1)
4937 diffcore_break(options->break_opt);
4938 if (options->detect_rename)
4939 diffcore_rename(options);
4940 if (options->break_opt != -1)
4941 diffcore_merge_broken();
4942 }
6973dcae 4943 if (options->pickaxe)
382f013b 4944 diffcore_pickaxe(options);
6973dcae
JH
4945 if (options->orderfile)
4946 diffcore_order(options->orderfile);
44c48a90
JH
4947 if (!options->found_follow)
4948 /* See try_to_follow_renames() in tree-diff.c */
4949 diff_resolve_rename_copy();
949226fe 4950 diffcore_apply_filter(options);
68aacb2f 4951
f245194f 4952 if (diff_queued_diff.nr && !DIFF_OPT_TST(options, DIFF_FROM_CONTENTS))
8f67f8ae
PH
4953 DIFF_OPT_SET(options, HAS_CHANGES);
4954 else
4955 DIFF_OPT_CLR(options, HAS_CHANGES);
1da6175d 4956
44c48a90 4957 options->found_follow = 0;
6973dcae
JH
4958}
4959
da31b358
JH
4960int diff_result_code(struct diff_options *opt, int status)
4961{
4962 int result = 0;
f31027c9 4963
c9fc4415 4964 diff_warn_rename_limit("diff.renameLimit",
f31027c9
JH
4965 opt->needed_rename_limit,
4966 opt->degraded_cc_to_c);
da31b358
JH
4967 if (!DIFF_OPT_TST(opt, EXIT_WITH_STATUS) &&
4968 !(opt->output_format & DIFF_FORMAT_CHECKDIFF))
4969 return status;
4970 if (DIFF_OPT_TST(opt, EXIT_WITH_STATUS) &&
4971 DIFF_OPT_TST(opt, HAS_CHANGES))
4972 result |= 01;
4973 if ((opt->output_format & DIFF_FORMAT_CHECKDIFF) &&
4974 DIFF_OPT_TST(opt, CHECK_FAILED))
4975 result |= 02;
4976 return result;
4977}
6973dcae 4978
28b9264d
JH
4979int diff_can_quit_early(struct diff_options *opt)
4980{
4981 return (DIFF_OPT_TST(opt, QUICK) &&
4982 !opt->filter &&
4983 DIFF_OPT_TST(opt, HAS_CHANGES));
4984}
4985
aee9c7d6
JL
4986/*
4987 * Shall changes to this submodule be ignored?
4988 *
4989 * Submodule changes can be configured to be ignored separately for each path,
4990 * but that configuration can be overridden from the command line.
4991 */
4992static int is_submodule_ignored(const char *path, struct diff_options *options)
4993{
4994 int ignored = 0;
4995 unsigned orig_flags = options->flags;
4996 if (!DIFF_OPT_TST(options, OVERRIDE_SUBMODULE_CONFIG))
4997 set_diffopt_flags_from_submodule_config(options, path);
4998 if (DIFF_OPT_TST(options, IGNORE_SUBMODULES))
4999 ignored = 1;
5000 options->flags = orig_flags;
5001 return ignored;
5002}
5003
6973dcae
JH
5004void diff_addremove(struct diff_options *options,
5005 int addremove, unsigned mode,
5006 const unsigned char *sha1,
e5450100 5007 int sha1_valid,
e3d42c47 5008 const char *concatpath, unsigned dirty_submodule)
6973dcae 5009{
6973dcae
JH
5010 struct diff_filespec *one, *two;
5011
aee9c7d6 5012 if (S_ISGITLINK(mode) && is_submodule_ignored(concatpath, options))
50fd9bd8
JS
5013 return;
5014
6973dcae
JH
5015 /* This may look odd, but it is a preparation for
5016 * feeding "there are unchanged files which should
5017 * not produce diffs, but when you are doing copy
5018 * detection you would need them, so here they are"
5019 * entries to the diff-core. They will be prefixed
5020 * with something like '=' or '*' (I haven't decided
5021 * which but should not make any difference).
a6080a0a 5022 * Feeding the same new and old to diff_change()
6973dcae
JH
5023 * also has the same effect.
5024 * Before the final output happens, they are pruned after
5025 * merged into rename/copy pairs as appropriate.
5026 */
8f67f8ae 5027 if (DIFF_OPT_TST(options, REVERSE_DIFF))
6973dcae
JH
5028 addremove = (addremove == '+' ? '-' :
5029 addremove == '-' ? '+' : addremove);
5030
cd676a51
JH
5031 if (options->prefix &&
5032 strncmp(concatpath, options->prefix, options->prefix_length))
5033 return;
5034
6973dcae
JH
5035 one = alloc_filespec(concatpath);
5036 two = alloc_filespec(concatpath);
5037
5038 if (addremove != '+')
e5450100 5039 fill_filespec(one, sha1, sha1_valid, mode);
e3d42c47 5040 if (addremove != '-') {
e5450100 5041 fill_filespec(two, sha1, sha1_valid, mode);
e3d42c47
JL
5042 two->dirty_submodule = dirty_submodule;
5043 }
6973dcae
JH
5044
5045 diff_queue(&diff_queued_diff, one, two);
f245194f
JH
5046 if (!DIFF_OPT_TST(options, DIFF_FROM_CONTENTS))
5047 DIFF_OPT_SET(options, HAS_CHANGES);
6973dcae
JH
5048}
5049
5050void diff_change(struct diff_options *options,
5051 unsigned old_mode, unsigned new_mode,
5052 const unsigned char *old_sha1,
5053 const unsigned char *new_sha1,
e5450100 5054 int old_sha1_valid, int new_sha1_valid,
e3d42c47
JL
5055 const char *concatpath,
5056 unsigned old_dirty_submodule, unsigned new_dirty_submodule)
6973dcae 5057{
6973dcae 5058 struct diff_filespec *one, *two;
f34b205f 5059 struct diff_filepair *p;
6973dcae 5060
aee9c7d6
JL
5061 if (S_ISGITLINK(old_mode) && S_ISGITLINK(new_mode) &&
5062 is_submodule_ignored(concatpath, options))
50fd9bd8
JS
5063 return;
5064
8f67f8ae 5065 if (DIFF_OPT_TST(options, REVERSE_DIFF)) {
6973dcae
JH
5066 unsigned tmp;
5067 const unsigned char *tmp_c;
5068 tmp = old_mode; old_mode = new_mode; new_mode = tmp;
5069 tmp_c = old_sha1; old_sha1 = new_sha1; new_sha1 = tmp_c;
e5450100
JK
5070 tmp = old_sha1_valid; old_sha1_valid = new_sha1_valid;
5071 new_sha1_valid = tmp;
e3d42c47
JL
5072 tmp = old_dirty_submodule; old_dirty_submodule = new_dirty_submodule;
5073 new_dirty_submodule = tmp;
6973dcae 5074 }
cd676a51
JH
5075
5076 if (options->prefix &&
5077 strncmp(concatpath, options->prefix, options->prefix_length))
5078 return;
5079
6973dcae
JH
5080 one = alloc_filespec(concatpath);
5081 two = alloc_filespec(concatpath);
e5450100
JK
5082 fill_filespec(one, old_sha1, old_sha1_valid, old_mode);
5083 fill_filespec(two, new_sha1, new_sha1_valid, new_mode);
e3d42c47
JL
5084 one->dirty_submodule = old_dirty_submodule;
5085 two->dirty_submodule = new_dirty_submodule;
f34b205f 5086 p = diff_queue(&diff_queued_diff, one, two);
6973dcae 5087
f34b205f
NTND
5088 if (DIFF_OPT_TST(options, DIFF_FROM_CONTENTS))
5089 return;
5090
5091 if (DIFF_OPT_TST(options, QUICK) && options->skip_stat_unmatch &&
5092 !diff_filespec_check_stat_unmatch(p))
5093 return;
5094
5095 DIFF_OPT_SET(options, HAS_CHANGES);
6973dcae
JH
5096}
5097
fa7b2908 5098struct diff_filepair *diff_unmerge(struct diff_options *options, const char *path)
6973dcae 5099{
76399c01 5100 struct diff_filepair *pair;
6973dcae 5101 struct diff_filespec *one, *two;
cd676a51
JH
5102
5103 if (options->prefix &&
5104 strncmp(path, options->prefix, options->prefix_length))
76399c01 5105 return NULL;
cd676a51 5106
6973dcae
JH
5107 one = alloc_filespec(path);
5108 two = alloc_filespec(path);
76399c01
JH
5109 pair = diff_queue(&diff_queued_diff, one, two);
5110 pair->is_unmerged = 1;
5111 return pair;
6973dcae 5112}
9cb92c39
JK
5113
5114static char *run_textconv(const char *pgm, struct diff_filespec *spec,
5115 size_t *outsize)
5116{
479b0ae8 5117 struct diff_tempfile *temp;
9cb92c39
JK
5118 const char *argv[3];
5119 const char **arg = argv;
d3180279 5120 struct child_process child = CHILD_PROCESS_INIT;
9cb92c39 5121 struct strbuf buf = STRBUF_INIT;
da1fbed3 5122 int err = 0;
9cb92c39 5123
479b0ae8 5124 temp = prepare_temp_file(spec->path, spec);
9cb92c39 5125 *arg++ = pgm;
479b0ae8 5126 *arg++ = temp->name;
9cb92c39
JK
5127 *arg = NULL;
5128
41a457e4 5129 child.use_shell = 1;
9cb92c39
JK
5130 child.argv = argv;
5131 child.out = -1;
da1fbed3 5132 if (start_command(&child)) {
479b0ae8 5133 remove_tempfile();
9cb92c39
JK
5134 return NULL;
5135 }
da1fbed3
JS
5136
5137 if (strbuf_read(&buf, child.out, 0) < 0)
5138 err = error("error reading from textconv command '%s'", pgm);
70d70999 5139 close(child.out);
da1fbed3
JS
5140
5141 if (finish_command(&child) || err) {
5142 strbuf_release(&buf);
5143 remove_tempfile();
5144 return NULL;
5145 }
479b0ae8 5146 remove_tempfile();
9cb92c39
JK
5147
5148 return strbuf_detach(&buf, outsize);
5149}
840383b2 5150
a788d7d5
AB
5151size_t fill_textconv(struct userdiff_driver *driver,
5152 struct diff_filespec *df,
5153 char **outbuf)
840383b2
JK
5154{
5155 size_t size;
5156
a64e6a44 5157 if (!driver) {
840383b2
JK
5158 if (!DIFF_FILE_VALID(df)) {
5159 *outbuf = "";
5160 return 0;
5161 }
5162 if (diff_populate_filespec(df, 0))
5163 die("unable to read files to diff");
5164 *outbuf = df->data;
5165 return df->size;
5166 }
5167
a64e6a44
JK
5168 if (!driver->textconv)
5169 die("BUG: fill_textconv called with non-textconv driver");
5170
41c9560e 5171 if (driver->textconv_cache && df->oid_valid) {
a0d12c44 5172 *outbuf = notes_cache_get(driver->textconv_cache,
5173 df->oid.hash,
d9bae1a1
JK
5174 &size);
5175 if (*outbuf)
5176 return size;
5177 }
5178
5179 *outbuf = run_textconv(driver->textconv, df, &size);
840383b2
JK
5180 if (!*outbuf)
5181 die("unable to read files to diff");
d9bae1a1 5182
41c9560e 5183 if (driver->textconv_cache && df->oid_valid) {
d9bae1a1 5184 /* ignore errors, as we might be in a readonly repository */
a0d12c44 5185 notes_cache_put(driver->textconv_cache, df->oid.hash, *outbuf,
d9bae1a1
JK
5186 size);
5187 /*
5188 * we could save up changes and flush them all at the end,
5189 * but we would need an extra call after all diffing is done.
5190 * Since generating a cache entry is the slow path anyway,
5191 * this extra overhead probably isn't a big deal.
5192 */
5193 notes_cache_write(driver->textconv_cache);
5194 }
5195
840383b2
JK
5196 return size;
5197}
4914c962
NTND
5198
5199void setup_diff_pager(struct diff_options *opt)
5200{
5201 /*
5202 * If the user asked for our exit code, then either they want --quiet
5203 * or --exit-code. We should definitely not bother with a pager in the
5204 * former case, as we will generate no output. Since we still properly
5205 * report our exit code even when a pager is run, we _could_ run a
5206 * pager with --exit-code. But since we have not done so historically,
5207 * and because it is easy to find people oneline advising "git diff
5208 * --exit-code" in hooks and other scripts, we do not do so.
5209 */
5210 if (!DIFF_OPT_TST(opt, EXIT_WITH_STATUS) &&
5211 check_pager_config("diff") != 0)
5212 setup_pager();
5213}