]> git.ipfire.org Git - thirdparty/git.git/blame - diff.c
test-lib: Remove 3 year old no-op --no-python option
[thirdparty/git.git] / diff.c
CommitLineData
6973dcae
JH
1/*
2 * Copyright (C) 2005 Junio C Hamano
3 */
6973dcae
JH
4#include "cache.h"
5#include "quote.h"
6#include "diff.h"
7#include "diffcore.h"
051308f6 8#include "delta.h"
6973dcae 9#include "xdiff-interface.h"
7c92fe0e 10#include "color.h"
8c701249 11#include "attr.h"
d5535ec7 12#include "run-command.h"
23707811 13#include "utf8.h"
be58e70d 14#include "userdiff.h"
4a16d072 15#include "sigchain.h"
752c0c24 16#include "submodule.h"
a757c646 17#include "ll-merge.h"
6973dcae 18
1510fea7
SP
19#ifdef NO_FAST_WORKING_DIRECTORY
20#define FAST_WORKING_DIRECTORY 0
21#else
22#define FAST_WORKING_DIRECTORY 1
23#endif
24
96f1e58f 25static int diff_detect_rename_default;
50705915 26static int diff_rename_limit_default = 200;
a624eaa7 27static int diff_suppress_blank_empty;
6b2f2d98 28int diff_use_color_default = -1;
98a4d87b 29static const char *diff_word_regex_cfg;
cbe02100 30static const char *external_diff_cmd_cfg;
aecbf914 31int diff_auto_refresh_index = 1;
a5a818ee 32static int diff_mnemonic_prefix;
f89504dd 33static int diff_no_prefix;
6973dcae 34
7c92fe0e 35static char diff_colors[][COLOR_MAXLEN] = {
dc6ebd4c
AL
36 GIT_COLOR_RESET,
37 GIT_COLOR_NORMAL, /* PLAIN */
38 GIT_COLOR_BOLD, /* METAINFO */
39 GIT_COLOR_CYAN, /* FRAGINFO */
40 GIT_COLOR_RED, /* OLD */
41 GIT_COLOR_GREEN, /* NEW */
42 GIT_COLOR_YELLOW, /* COMMIT */
43 GIT_COLOR_BG_RED, /* WHITESPACE */
89cb73a1 44 GIT_COLOR_NORMAL, /* FUNCINFO */
cd112cef
JS
45};
46
9cb92c39 47static void diff_filespec_load_driver(struct diff_filespec *one);
d9bae1a1 48static size_t fill_textconv(struct userdiff_driver *driver,
840383b2 49 struct diff_filespec *df, char **outbuf);
9cb92c39 50
801235c5
JH
51static int parse_diff_color_slot(const char *var, int ofs)
52{
53 if (!strcasecmp(var+ofs, "plain"))
54 return DIFF_PLAIN;
55 if (!strcasecmp(var+ofs, "meta"))
56 return DIFF_METAINFO;
57 if (!strcasecmp(var+ofs, "frag"))
58 return DIFF_FRAGINFO;
59 if (!strcasecmp(var+ofs, "old"))
60 return DIFF_FILE_OLD;
61 if (!strcasecmp(var+ofs, "new"))
62 return DIFF_FILE_NEW;
ce436973
JK
63 if (!strcasecmp(var+ofs, "commit"))
64 return DIFF_COMMIT;
448c3ef1
JH
65 if (!strcasecmp(var+ofs, "whitespace"))
66 return DIFF_WHITESPACE;
89cb73a1
BW
67 if (!strcasecmp(var+ofs, "func"))
68 return DIFF_FUNCINFO;
8b8e8624 69 return -1;
801235c5
JH
70}
71
cced5fbc
LT
72static int git_config_rename(const char *var, const char *value)
73{
74 if (!value)
75 return DIFF_DETECT_RENAME;
76 if (!strcasecmp(value, "copies") || !strcasecmp(value, "copy"))
77 return DIFF_DETECT_COPY;
78 return git_config_bool(var,value) ? DIFF_DETECT_RENAME : 0;
79}
80
83ad63cf
JH
81/*
82 * These are to give UI layer defaults.
83 * The core-level commands such as git-diff-files should
84 * never be affected by the setting of diff.renames
85 * the user happens to have in the configuration file.
86 */
ef90d6d4 87int git_diff_ui_config(const char *var, const char *value, void *cb)
801235c5 88{
a159ca0c 89 if (!strcmp(var, "diff.color") || !strcmp(var, "color.diff")) {
0f6f5a40 90 diff_use_color_default = git_config_colorbool(var, value, -1);
801235c5
JH
91 return 0;
92 }
b68ea12e 93 if (!strcmp(var, "diff.renames")) {
cced5fbc 94 diff_detect_rename_default = git_config_rename(var, value);
b68ea12e
EW
95 return 0;
96 }
aecbf914
JH
97 if (!strcmp(var, "diff.autorefreshindex")) {
98 diff_auto_refresh_index = git_config_bool(var, value);
99 return 0;
100 }
a5a818ee
JH
101 if (!strcmp(var, "diff.mnemonicprefix")) {
102 diff_mnemonic_prefix = git_config_bool(var, value);
103 return 0;
104 }
f89504dd
EC
105 if (!strcmp(var, "diff.noprefix")) {
106 diff_no_prefix = git_config_bool(var, value);
107 return 0;
108 }
daec808c
BH
109 if (!strcmp(var, "diff.external"))
110 return git_config_string(&external_diff_cmd_cfg, var, value);
98a4d87b
BSSJ
111 if (!strcmp(var, "diff.wordregex"))
112 return git_config_string(&diff_word_regex_cfg, var, value);
f1af60bd 113
ef90d6d4 114 return git_diff_basic_config(var, value, cb);
9a1805a8
JK
115}
116
ef90d6d4 117int git_diff_basic_config(const char *var, const char *value, void *cb)
9a1805a8 118{
2b6ca6df
LT
119 if (!strcmp(var, "diff.renamelimit")) {
120 diff_rename_limit_default = git_config_int(var, value);
121 return 0;
122 }
123
c7534ef4
JK
124 switch (userdiff_config(var, value)) {
125 case 0: break;
126 case -1: return -1;
127 default: return 0;
128 }
129
1968d77d 130 if (!prefixcmp(var, "diff.color.") || !prefixcmp(var, "color.diff.")) {
801235c5 131 int slot = parse_diff_color_slot(var, 11);
8b8e8624
JK
132 if (slot < 0)
133 return 0;
64f30e94
JH
134 if (!value)
135 return config_error_nonbool(var);
7c92fe0e 136 color_parse(value, var, diff_colors[slot]);
801235c5
JH
137 return 0;
138 }
f1af60bd 139
a624eaa7 140 /* like GNU diff's --suppress-blank-empty option */
950db879
JS
141 if (!strcmp(var, "diff.suppressblankempty") ||
142 /* for backwards compatibility */
143 !strcmp(var, "diff.suppress-blank-empty")) {
a624eaa7
JM
144 diff_suppress_blank_empty = git_config_bool(var, value);
145 return 0;
146 }
147
ef90d6d4 148 return git_color_default_config(var, value, cb);
801235c5
JH
149}
150
6973dcae
JH
151static char *quote_two(const char *one, const char *two)
152{
153 int need_one = quote_c_style(one, NULL, NULL, 1);
154 int need_two = quote_c_style(two, NULL, NULL, 1);
f285a2d7 155 struct strbuf res = STRBUF_INIT;
6973dcae
JH
156
157 if (need_one + need_two) {
663af342
PH
158 strbuf_addch(&res, '"');
159 quote_c_style(one, &res, NULL, 1);
160 quote_c_style(two, &res, NULL, 1);
161 strbuf_addch(&res, '"');
162 } else {
163 strbuf_addstr(&res, one);
164 strbuf_addstr(&res, two);
6973dcae 165 }
b315c5c0 166 return strbuf_detach(&res, NULL);
6973dcae
JH
167}
168
169static const char *external_diff(void)
170{
171 static const char *external_diff_cmd = NULL;
172 static int done_preparing = 0;
173
174 if (done_preparing)
175 return external_diff_cmd;
176 external_diff_cmd = getenv("GIT_EXTERNAL_DIFF");
cbe02100
JS
177 if (!external_diff_cmd)
178 external_diff_cmd = external_diff_cmd_cfg;
6973dcae
JH
179 done_preparing = 1;
180 return external_diff_cmd;
181}
182
6973dcae
JH
183static struct diff_tempfile {
184 const char *name; /* filename external diff should read from */
185 char hex[41];
186 char mode[10];
1472966c 187 char tmp_path[PATH_MAX];
6973dcae
JH
188} diff_temp[2];
189
6957eb9a
JH
190typedef unsigned long (*sane_truncate_fn)(char *line, unsigned long len);
191
192struct emit_callback {
6957eb9a
JH
193 int color_diff;
194 unsigned ws_rule;
195 int blank_at_eof_in_preimage;
196 int blank_at_eof_in_postimage;
197 int lno_in_preimage;
198 int lno_in_postimage;
199 sane_truncate_fn truncate;
200 const char **label_path;
201 struct diff_words_data *diff_words;
a3c158d4 202 struct diff_options *opt;
6957eb9a 203 int *found_changesp;
3e97c7c6 204 struct strbuf *header;
6957eb9a
JH
205};
206
6973dcae
JH
207static int count_lines(const char *data, int size)
208{
209 int count, ch, completely_empty = 1, nl_just_seen = 0;
210 count = 0;
211 while (0 < size--) {
212 ch = *data++;
213 if (ch == '\n') {
214 count++;
215 nl_just_seen = 1;
216 completely_empty = 0;
217 }
218 else {
219 nl_just_seen = 0;
220 completely_empty = 0;
221 }
222 }
223 if (completely_empty)
224 return 0;
225 if (!nl_just_seen)
226 count++; /* no trailing newline */
227 return count;
228}
229
6957eb9a
JH
230static int fill_mmfile(mmfile_t *mf, struct diff_filespec *one)
231{
232 if (!DIFF_FILE_VALID(one)) {
233 mf->ptr = (char *)""; /* does not matter */
234 mf->size = 0;
235 return 0;
236 }
237 else if (diff_populate_filespec(one, 0))
238 return -1;
bb35fefb 239
6957eb9a
JH
240 mf->ptr = one->data;
241 mf->size = one->size;
242 return 0;
243}
244
245static int count_trailing_blank(mmfile_t *mf, unsigned ws_rule)
246{
247 char *ptr = mf->ptr;
248 long size = mf->size;
249 int cnt = 0;
250
251 if (!size)
252 return cnt;
253 ptr += size - 1; /* pointing at the very end */
254 if (*ptr != '\n')
255 ; /* incomplete line */
256 else
257 ptr--; /* skip the last LF */
258 while (mf->ptr < ptr) {
259 char *prev_eol;
260 for (prev_eol = ptr; mf->ptr <= prev_eol; prev_eol--)
261 if (*prev_eol == '\n')
262 break;
263 if (!ws_blank_line(prev_eol + 1, ptr - prev_eol, ws_rule))
264 break;
265 cnt++;
266 ptr = prev_eol - 1;
267 }
268 return cnt;
269}
270
271static void check_blank_at_eof(mmfile_t *mf1, mmfile_t *mf2,
272 struct emit_callback *ecbdata)
273{
274 int l1, l2, at;
275 unsigned ws_rule = ecbdata->ws_rule;
276 l1 = count_trailing_blank(mf1, ws_rule);
277 l2 = count_trailing_blank(mf2, ws_rule);
278 if (l2 <= l1) {
279 ecbdata->blank_at_eof_in_preimage = 0;
280 ecbdata->blank_at_eof_in_postimage = 0;
281 return;
282 }
283 at = count_lines(mf1->ptr, mf1->size);
284 ecbdata->blank_at_eof_in_preimage = (at - l1) + 1;
285
286 at = count_lines(mf2->ptr, mf2->size);
287 ecbdata->blank_at_eof_in_postimage = (at - l2) + 1;
288}
289
a3c158d4 290static void emit_line_0(struct diff_options *o, const char *set, const char *reset,
250f7993 291 int first, const char *line, int len)
6957eb9a
JH
292{
293 int has_trailing_newline, has_trailing_carriage_return;
250f7993 294 int nofirst;
a3c158d4
BY
295 FILE *file = o->file;
296
297 if (o->output_prefix) {
298 struct strbuf *msg = NULL;
299 msg = o->output_prefix(o, o->output_prefix_data);
300 assert(msg);
301 fwrite(msg->buf, msg->len, 1, file);
302 }
6957eb9a 303
250f7993
JH
304 if (len == 0) {
305 has_trailing_newline = (first == '\n');
306 has_trailing_carriage_return = (!has_trailing_newline &&
307 (first == '\r'));
308 nofirst = has_trailing_newline || has_trailing_carriage_return;
309 } else {
310 has_trailing_newline = (len > 0 && line[len-1] == '\n');
311 if (has_trailing_newline)
312 len--;
313 has_trailing_carriage_return = (len > 0 && line[len-1] == '\r');
314 if (has_trailing_carriage_return)
315 len--;
316 nofirst = 0;
317 }
6957eb9a 318
06a47552
JH
319 if (len || !nofirst) {
320 fputs(set, file);
321 if (!nofirst)
322 fputc(first, file);
323 fwrite(line, len, 1, file);
324 fputs(reset, file);
325 }
6957eb9a
JH
326 if (has_trailing_carriage_return)
327 fputc('\r', file);
328 if (has_trailing_newline)
329 fputc('\n', file);
330}
331
a3c158d4 332static void emit_line(struct diff_options *o, const char *set, const char *reset,
250f7993
JH
333 const char *line, int len)
334{
a3c158d4 335 emit_line_0(o, set, reset, line[0], line+1, len-1);
250f7993
JH
336}
337
6957eb9a
JH
338static int new_blank_line_at_eof(struct emit_callback *ecbdata, const char *line, int len)
339{
340 if (!((ecbdata->ws_rule & WS_BLANK_AT_EOF) &&
341 ecbdata->blank_at_eof_in_preimage &&
342 ecbdata->blank_at_eof_in_postimage &&
343 ecbdata->blank_at_eof_in_preimage <= ecbdata->lno_in_preimage &&
344 ecbdata->blank_at_eof_in_postimage <= ecbdata->lno_in_postimage))
345 return 0;
018cff70 346 return ws_blank_line(line, len, ecbdata->ws_rule);
6957eb9a
JH
347}
348
018cff70
JH
349static void emit_add_line(const char *reset,
350 struct emit_callback *ecbdata,
351 const char *line, int len)
6957eb9a
JH
352{
353 const char *ws = diff_get_color(ecbdata->color_diff, DIFF_WHITESPACE);
354 const char *set = diff_get_color(ecbdata->color_diff, DIFF_FILE_NEW);
355
356 if (!*ws)
a3c158d4 357 emit_line_0(ecbdata->opt, set, reset, '+', line, len);
6957eb9a
JH
358 else if (new_blank_line_at_eof(ecbdata, line, len))
359 /* Blank line at EOF - paint '+' as well */
a3c158d4 360 emit_line_0(ecbdata->opt, ws, reset, '+', line, len);
6957eb9a
JH
361 else {
362 /* Emit just the prefix, then the rest. */
a3c158d4 363 emit_line_0(ecbdata->opt, set, reset, '+', "", 0);
018cff70 364 ws_check_emit(line, len, ecbdata->ws_rule,
a3c158d4 365 ecbdata->opt->file, set, reset, ws);
6957eb9a
JH
366 }
367}
368
89cb73a1
BW
369static void emit_hunk_header(struct emit_callback *ecbdata,
370 const char *line, int len)
371{
372 const char *plain = diff_get_color(ecbdata->color_diff, DIFF_PLAIN);
373 const char *frag = diff_get_color(ecbdata->color_diff, DIFF_FRAGINFO);
374 const char *func = diff_get_color(ecbdata->color_diff, DIFF_FUNCINFO);
375 const char *reset = diff_get_color(ecbdata->color_diff, DIFF_RESET);
376 static const char atat[2] = { '@', '@' };
377 const char *cp, *ep;
2efcc977
BY
378 struct strbuf msgbuf = STRBUF_INIT;
379 int org_len = len;
380 int i = 1;
89cb73a1
BW
381
382 /*
383 * As a hunk header must begin with "@@ -<old>, +<new> @@",
384 * it always is at least 10 bytes long.
385 */
386 if (len < 10 ||
387 memcmp(line, atat, 2) ||
388 !(ep = memmem(line + 2, len - 2, atat, 2))) {
a3c158d4 389 emit_line(ecbdata->opt, plain, reset, line, len);
89cb73a1
BW
390 return;
391 }
392 ep += 2; /* skip over @@ */
393
394 /* The hunk header in fraginfo color */
2efcc977
BY
395 strbuf_add(&msgbuf, frag, strlen(frag));
396 strbuf_add(&msgbuf, line, ep - line);
397 strbuf_add(&msgbuf, reset, strlen(reset));
398
399 /*
400 * trailing "\r\n"
401 */
402 for ( ; i < 3; i++)
403 if (line[len - i] == '\r' || line[len - i] == '\n')
404 len--;
89cb73a1
BW
405
406 /* blank before the func header */
407 for (cp = ep; ep - line < len; ep++)
408 if (*ep != ' ' && *ep != '\t')
409 break;
2efcc977
BY
410 if (ep != cp) {
411 strbuf_add(&msgbuf, plain, strlen(plain));
412 strbuf_add(&msgbuf, cp, ep - cp);
413 strbuf_add(&msgbuf, reset, strlen(reset));
414 }
415
416 if (ep < line + len) {
417 strbuf_add(&msgbuf, func, strlen(func));
418 strbuf_add(&msgbuf, ep, line + len - ep);
419 strbuf_add(&msgbuf, reset, strlen(reset));
420 }
89cb73a1 421
2efcc977
BY
422 strbuf_add(&msgbuf, line + len, org_len - len);
423 emit_line(ecbdata->opt, "", "", msgbuf.buf, msgbuf.len);
424 strbuf_release(&msgbuf);
89cb73a1
BW
425}
426
479b0ae8
JK
427static struct diff_tempfile *claim_diff_tempfile(void) {
428 int i;
429 for (i = 0; i < ARRAY_SIZE(diff_temp); i++)
430 if (!diff_temp[i].name)
431 return diff_temp + i;
432 die("BUG: diff is failing to clean up its tempfiles");
433}
434
435static int remove_tempfile_installed;
436
437static void remove_tempfile(void)
438{
439 int i;
a8344abe
NR
440 for (i = 0; i < ARRAY_SIZE(diff_temp); i++) {
441 if (diff_temp[i].name == diff_temp[i].tmp_path)
691f1a28 442 unlink_or_warn(diff_temp[i].name);
a8344abe
NR
443 diff_temp[i].name = NULL;
444 }
479b0ae8
JK
445}
446
447static void remove_tempfile_on_signal(int signo)
448{
449 remove_tempfile();
4a16d072 450 sigchain_pop(signo);
479b0ae8
JK
451 raise(signo);
452}
453
c0c77734 454static void print_line_count(FILE *file, int count)
6973dcae
JH
455{
456 switch (count) {
457 case 0:
c0c77734 458 fprintf(file, "0,0");
6973dcae
JH
459 break;
460 case 1:
c0c77734 461 fprintf(file, "1");
6973dcae
JH
462 break;
463 default:
c0c77734 464 fprintf(file, "1,%d", count);
6973dcae
JH
465 break;
466 }
467}
468
7f7ee2ff
JH
469static void emit_rewrite_lines(struct emit_callback *ecb,
470 int prefix, const char *data, int size)
6973dcae 471{
7f7ee2ff
JH
472 const char *endp = NULL;
473 static const char *nneof = " No newline at end of file\n";
474 const char *old = diff_get_color(ecb->color_diff, DIFF_FILE_OLD);
475 const char *reset = diff_get_color(ecb->color_diff, DIFF_RESET);
476
477 while (0 < size) {
478 int len;
479
480 endp = memchr(data, '\n', size);
481 len = endp ? (endp - data + 1) : size;
482 if (prefix != '+') {
483 ecb->lno_in_preimage++;
a3c158d4 484 emit_line_0(ecb->opt, old, reset, '-',
7f7ee2ff
JH
485 data, len);
486 } else {
487 ecb->lno_in_postimage++;
488 emit_add_line(reset, ecb, data, len);
13e36ec5 489 }
7f7ee2ff
JH
490 size -= len;
491 data += len;
492 }
493 if (!endp) {
494 const char *plain = diff_get_color(ecb->color_diff,
495 DIFF_PLAIN);
a3c158d4 496 emit_line_0(ecb->opt, plain, reset, '\\',
7f7ee2ff 497 nneof, strlen(nneof));
6973dcae 498 }
6973dcae
JH
499}
500
501static void emit_rewrite_diff(const char *name_a,
502 const char *name_b,
503 struct diff_filespec *one,
13e36ec5 504 struct diff_filespec *two,
d9bae1a1
JK
505 struct userdiff_driver *textconv_one,
506 struct userdiff_driver *textconv_two,
eab9a40b 507 struct diff_options *o)
6973dcae
JH
508{
509 int lc_a, lc_b;
eab9a40b 510 int color_diff = DIFF_OPT_TST(o, COLOR_DIFF);
1a9eb3b9 511 const char *name_a_tab, *name_b_tab;
13e36ec5
JS
512 const char *metainfo = diff_get_color(color_diff, DIFF_METAINFO);
513 const char *fraginfo = diff_get_color(color_diff, DIFF_FRAGINFO);
13e36ec5 514 const char *reset = diff_get_color(color_diff, DIFF_RESET);
d5625091 515 static struct strbuf a_name = STRBUF_INIT, b_name = STRBUF_INIT;
a5a818ee 516 const char *a_prefix, *b_prefix;
840383b2 517 char *data_one, *data_two;
3aa1f7ca 518 size_t size_one, size_two;
7f7ee2ff 519 struct emit_callback ecbdata;
7be57610
BY
520 char *line_prefix = "";
521 struct strbuf *msgbuf;
522
523 if (o && o->output_prefix) {
524 msgbuf = o->output_prefix(o, o->output_prefix_data);
525 line_prefix = msgbuf->buf;
526 }
a5a818ee
JH
527
528 if (diff_mnemonic_prefix && DIFF_OPT_TST(o, REVERSE_DIFF)) {
529 a_prefix = o->b_prefix;
530 b_prefix = o->a_prefix;
531 } else {
532 a_prefix = o->a_prefix;
533 b_prefix = o->b_prefix;
534 }
1a9eb3b9 535
8a13becc
JH
536 name_a += (*name_a == '/');
537 name_b += (*name_b == '/');
1a9eb3b9
JH
538 name_a_tab = strchr(name_a, ' ') ? "\t" : "";
539 name_b_tab = strchr(name_b, ' ') ? "\t" : "";
540
d5625091
JH
541 strbuf_reset(&a_name);
542 strbuf_reset(&b_name);
a5a818ee
JH
543 quote_two_c_style(&a_name, a_prefix, name_a, 0);
544 quote_two_c_style(&b_name, b_prefix, name_b, 0);
d5625091 545
840383b2
JK
546 size_one = fill_textconv(textconv_one, one, &data_one);
547 size_two = fill_textconv(textconv_two, two, &data_two);
3aa1f7ca 548
d91ba8fa
JH
549 memset(&ecbdata, 0, sizeof(ecbdata));
550 ecbdata.color_diff = color_diff;
551 ecbdata.found_changesp = &o->found_changes;
552 ecbdata.ws_rule = whitespace_rule(name_b ? name_b : name_a);
a3c158d4 553 ecbdata.opt = o;
d91ba8fa
JH
554 if (ecbdata.ws_rule & WS_BLANK_AT_EOF) {
555 mmfile_t mf1, mf2;
556 mf1.ptr = (char *)data_one;
557 mf2.ptr = (char *)data_two;
558 mf1.size = size_one;
559 mf2.size = size_two;
560 check_blank_at_eof(&mf1, &mf2, &ecbdata);
561 }
562 ecbdata.lno_in_preimage = 1;
563 ecbdata.lno_in_postimage = 1;
564
3aa1f7ca
JK
565 lc_a = count_lines(data_one, size_one);
566 lc_b = count_lines(data_two, size_two);
c0c77734 567 fprintf(o->file,
7be57610
BY
568 "%s%s--- %s%s%s\n%s%s+++ %s%s%s\n%s%s@@ -",
569 line_prefix, metainfo, a_name.buf, name_a_tab, reset,
570 line_prefix, metainfo, b_name.buf, name_b_tab, reset,
571 line_prefix, fraginfo);
c0c77734
DB
572 print_line_count(o->file, lc_a);
573 fprintf(o->file, " +");
574 print_line_count(o->file, lc_b);
575 fprintf(o->file, " @@%s\n", reset);
6973dcae 576 if (lc_a)
d91ba8fa 577 emit_rewrite_lines(&ecbdata, '-', data_one, size_one);
6973dcae 578 if (lc_b)
d91ba8fa 579 emit_rewrite_lines(&ecbdata, '+', data_two, size_two);
b76c056b 580 if (textconv_one)
aed6ca52 581 free((char *)data_one);
b76c056b 582 if (textconv_two)
aed6ca52 583 free((char *)data_two);
6973dcae
JH
584}
585
f59a59e2
JS
586struct diff_words_buffer {
587 mmfile_t text;
588 long alloc;
2e5d2003
JS
589 struct diff_words_orig {
590 const char *begin, *end;
591 } *orig;
592 int orig_nr, orig_alloc;
f59a59e2
JS
593};
594
595static void diff_words_append(char *line, unsigned long len,
596 struct diff_words_buffer *buffer)
597{
23c1575f 598 ALLOC_GROW(buffer->text.ptr, buffer->text.size + len, buffer->alloc);
f59a59e2
JS
599 line++;
600 len--;
601 memcpy(buffer->text.ptr + buffer->text.size, line, len);
602 buffer->text.size += len;
2b6a5417 603 buffer->text.ptr[buffer->text.size] = '\0';
f59a59e2
JS
604}
605
882749a0
TR
606struct diff_words_style_elem
607{
608 const char *prefix;
609 const char *suffix;
610 const char *color; /* NULL; filled in by the setup code if
611 * color is enabled */
612};
613
614struct diff_words_style
615{
616 enum diff_words_type type;
617 struct diff_words_style_elem new, old, ctx;
618 const char *newline;
619};
620
621struct diff_words_style diff_words_styles[] = {
622 { DIFF_WORDS_PORCELAIN, {"+", "\n"}, {"-", "\n"}, {" ", "\n"}, "~\n" },
623 { DIFF_WORDS_PLAIN, {"{+", "+}"}, {"[-", "-]"}, {"", ""}, "\n" },
624 { DIFF_WORDS_COLOR, {"", ""}, {"", ""}, {"", ""}, "\n" }
625};
626
f59a59e2 627struct diff_words_data {
f59a59e2 628 struct diff_words_buffer minus, plus;
2e5d2003 629 const char *current_plus;
4297c0ae
BY
630 int last_minus;
631 struct diff_options *opt;
2b6a5417 632 regex_t *word_regex;
882749a0
TR
633 enum diff_words_type type;
634 struct diff_words_style *style;
f59a59e2
JS
635};
636
882749a0
TR
637static int fn_out_diff_words_write_helper(FILE *fp,
638 struct diff_words_style_elem *st_el,
639 const char *newline,
4297c0ae
BY
640 size_t count, const char *buf,
641 const char *line_prefix)
882749a0 642{
4297c0ae
BY
643 int print = 0;
644
882749a0
TR
645 while (count) {
646 char *p = memchr(buf, '\n', count);
4297c0ae
BY
647 if (print)
648 fputs(line_prefix, fp);
882749a0
TR
649 if (p != buf) {
650 if (st_el->color && fputs(st_el->color, fp) < 0)
651 return -1;
652 if (fputs(st_el->prefix, fp) < 0 ||
653 fwrite(buf, p ? p - buf : count, 1, fp) != 1 ||
654 fputs(st_el->suffix, fp) < 0)
655 return -1;
656 if (st_el->color && *st_el->color
657 && fputs(GIT_COLOR_RESET, fp) < 0)
658 return -1;
659 }
660 if (!p)
661 return 0;
662 if (fputs(newline, fp) < 0)
663 return -1;
664 count -= p + 1 - buf;
665 buf = p + 1;
4297c0ae 666 print = 1;
882749a0
TR
667 }
668 return 0;
669}
670
4297c0ae
BY
671/*
672 * '--color-words' algorithm can be described as:
673 *
674 * 1. collect a the minus/plus lines of a diff hunk, divided into
675 * minus-lines and plus-lines;
676 *
677 * 2. break both minus-lines and plus-lines into words and
678 * place them into two mmfile_t with one word for each line;
679 *
680 * 3. use xdiff to run diff on the two mmfile_t to get the words level diff;
681 *
682 * And for the common parts of the both file, we output the plus side text.
683 * diff_words->current_plus is used to trace the current position of the plus file
684 * which printed. diff_words->last_minus is used to trace the last minus word
685 * printed.
686 *
687 * For '--graph' to work with '--color-words', we need to output the graph prefix
688 * on each line of color words output. Generally, there are two conditions on
689 * which we should output the prefix.
690 *
691 * 1. diff_words->last_minus == 0 &&
692 * diff_words->current_plus == diff_words->plus.text.ptr
693 *
694 * that is: the plus text must start as a new line, and if there is no minus
695 * word printed, a graph prefix must be printed.
696 *
697 * 2. diff_words->current_plus > diff_words->plus.text.ptr &&
698 * *(diff_words->current_plus - 1) == '\n'
699 *
700 * that is: a graph prefix must be printed following a '\n'
701 */
702static int color_words_output_graph_prefix(struct diff_words_data *diff_words)
703{
704 if ((diff_words->last_minus == 0 &&
705 diff_words->current_plus == diff_words->plus.text.ptr) ||
706 (diff_words->current_plus > diff_words->plus.text.ptr &&
707 *(diff_words->current_plus - 1) == '\n')) {
708 return 1;
709 } else {
710 return 0;
711 }
712}
713
f59a59e2 714static void fn_out_diff_words_aux(void *priv, char *line, unsigned long len)
f59a59e2 715{
f59a59e2 716 struct diff_words_data *diff_words = priv;
882749a0 717 struct diff_words_style *style = diff_words->style;
2e5d2003
JS
718 int minus_first, minus_len, plus_first, plus_len;
719 const char *minus_begin, *minus_end, *plus_begin, *plus_end;
4297c0ae
BY
720 struct diff_options *opt = diff_words->opt;
721 struct strbuf *msgbuf;
722 char *line_prefix = "";
f59a59e2 723
2e5d2003
JS
724 if (line[0] != '@' || parse_hunk_header(line, len,
725 &minus_first, &minus_len, &plus_first, &plus_len))
f59a59e2
JS
726 return;
727
4297c0ae
BY
728 assert(opt);
729 if (opt->output_prefix) {
730 msgbuf = opt->output_prefix(opt, opt->output_prefix_data);
731 line_prefix = msgbuf->buf;
732 }
733
2e5d2003
JS
734 /* POSIX requires that first be decremented by one if len == 0... */
735 if (minus_len) {
736 minus_begin = diff_words->minus.orig[minus_first].begin;
737 minus_end =
738 diff_words->minus.orig[minus_first + minus_len - 1].end;
739 } else
740 minus_begin = minus_end =
741 diff_words->minus.orig[minus_first].end;
742
743 if (plus_len) {
744 plus_begin = diff_words->plus.orig[plus_first].begin;
745 plus_end = diff_words->plus.orig[plus_first + plus_len - 1].end;
746 } else
747 plus_begin = plus_end = diff_words->plus.orig[plus_first].end;
748
4297c0ae
BY
749 if (color_words_output_graph_prefix(diff_words)) {
750 fputs(line_prefix, diff_words->opt->file);
751 }
752 if (diff_words->current_plus != plus_begin) {
753 fn_out_diff_words_write_helper(diff_words->opt->file,
882749a0
TR
754 &style->ctx, style->newline,
755 plus_begin - diff_words->current_plus,
4297c0ae
BY
756 diff_words->current_plus, line_prefix);
757 if (*(plus_begin - 1) == '\n')
758 fputs(line_prefix, diff_words->opt->file);
759 }
760 if (minus_begin != minus_end) {
761 fn_out_diff_words_write_helper(diff_words->opt->file,
882749a0 762 &style->old, style->newline,
4297c0ae
BY
763 minus_end - minus_begin, minus_begin,
764 line_prefix);
765 }
766 if (plus_begin != plus_end) {
767 fn_out_diff_words_write_helper(diff_words->opt->file,
882749a0 768 &style->new, style->newline,
4297c0ae
BY
769 plus_end - plus_begin, plus_begin,
770 line_prefix);
771 }
2e5d2003
JS
772
773 diff_words->current_plus = plus_end;
4297c0ae 774 diff_words->last_minus = minus_first;
f59a59e2
JS
775}
776
2b6a5417
JS
777/* This function starts looking at *begin, and returns 0 iff a word was found. */
778static int find_word_boundaries(mmfile_t *buffer, regex_t *word_regex,
779 int *begin, int *end)
780{
781 if (word_regex && *begin < buffer->size) {
782 regmatch_t match[1];
783 if (!regexec(word_regex, buffer->ptr + *begin, 1, match, 0)) {
784 char *p = memchr(buffer->ptr + *begin + match[0].rm_so,
785 '\n', match[0].rm_eo - match[0].rm_so);
786 *end = p ? p - buffer->ptr : match[0].rm_eo + *begin;
787 *begin += match[0].rm_so;
788 return *begin >= *end;
789 }
790 return -1;
f59a59e2
JS
791 }
792
2b6a5417
JS
793 /* find the next word */
794 while (*begin < buffer->size && isspace(buffer->ptr[*begin]))
795 (*begin)++;
796 if (*begin >= buffer->size)
797 return -1;
f59a59e2 798
2b6a5417
JS
799 /* find the end of the word */
800 *end = *begin + 1;
801 while (*end < buffer->size && !isspace(buffer->ptr[*end]))
802 (*end)++;
803
804 return 0;
f59a59e2
JS
805}
806
23c1575f 807/*
2e5d2003
JS
808 * This function splits the words in buffer->text, stores the list with
809 * newline separator into out, and saves the offsets of the original words
810 * in buffer->orig.
23c1575f 811 */
2b6a5417
JS
812static void diff_words_fill(struct diff_words_buffer *buffer, mmfile_t *out,
813 regex_t *word_regex)
f59a59e2 814{
2e5d2003 815 int i, j;
2b6a5417 816 long alloc = 0;
f59a59e2 817
2e5d2003 818 out->size = 0;
2b6a5417 819 out->ptr = NULL;
f59a59e2 820
2e5d2003
JS
821 /* fake an empty "0th" word */
822 ALLOC_GROW(buffer->orig, 1, buffer->orig_alloc);
823 buffer->orig[0].begin = buffer->orig[0].end = buffer->text.ptr;
824 buffer->orig_nr = 1;
825
826 for (i = 0; i < buffer->text.size; i++) {
2b6a5417
JS
827 if (find_word_boundaries(&buffer->text, word_regex, &i, &j))
828 return;
2e5d2003
JS
829
830 /* store original boundaries */
831 ALLOC_GROW(buffer->orig, buffer->orig_nr + 1,
832 buffer->orig_alloc);
833 buffer->orig[buffer->orig_nr].begin = buffer->text.ptr + i;
834 buffer->orig[buffer->orig_nr].end = buffer->text.ptr + j;
835 buffer->orig_nr++;
836
837 /* store one word */
2b6a5417 838 ALLOC_GROW(out->ptr, out->size + j - i + 1, alloc);
2e5d2003
JS
839 memcpy(out->ptr + out->size, buffer->text.ptr + i, j - i);
840 out->ptr[out->size + j - i] = '\n';
841 out->size += j - i + 1;
842
843 i = j - 1;
f59a59e2
JS
844 }
845}
846
847/* this executes the word diff on the accumulated buffers */
848static void diff_words_show(struct diff_words_data *diff_words)
849{
850 xpparam_t xpp;
851 xdemitconf_t xecfg;
f59a59e2 852 mmfile_t minus, plus;
882749a0 853 struct diff_words_style *style = diff_words->style;
f59a59e2 854
4297c0ae
BY
855 struct diff_options *opt = diff_words->opt;
856 struct strbuf *msgbuf;
857 char *line_prefix = "";
858
859 assert(opt);
860 if (opt->output_prefix) {
861 msgbuf = opt->output_prefix(opt, opt->output_prefix_data);
862 line_prefix = msgbuf->buf;
863 }
864
2e5d2003
JS
865 /* special case: only removal */
866 if (!diff_words->plus.text.size) {
4297c0ae
BY
867 fputs(line_prefix, diff_words->opt->file);
868 fn_out_diff_words_write_helper(diff_words->opt->file,
882749a0 869 &style->old, style->newline,
4297c0ae
BY
870 diff_words->minus.text.size,
871 diff_words->minus.text.ptr, line_prefix);
2e5d2003
JS
872 diff_words->minus.text.size = 0;
873 return;
874 }
875
876 diff_words->current_plus = diff_words->plus.text.ptr;
4297c0ae 877 diff_words->last_minus = 0;
f59a59e2 878
9ccd0a88 879 memset(&xpp, 0, sizeof(xpp));
30b25010 880 memset(&xecfg, 0, sizeof(xecfg));
2b6a5417
JS
881 diff_words_fill(&diff_words->minus, &minus, diff_words->word_regex);
882 diff_words_fill(&diff_words->plus, &plus, diff_words->word_regex);
582aa00b 883 xpp.flags = 0;
2b6a5417 884 /* as only the hunk header will be parsed, we need a 0-context */
2e5d2003 885 xecfg.ctxlen = 0;
8a3f524b 886 xdi_diff_outf(&minus, &plus, fn_out_diff_words_aux, diff_words,
dfea7900 887 &xpp, &xecfg);
f59a59e2
JS
888 free(minus.ptr);
889 free(plus.ptr);
2e5d2003 890 if (diff_words->current_plus != diff_words->plus.text.ptr +
4297c0ae
BY
891 diff_words->plus.text.size) {
892 if (color_words_output_graph_prefix(diff_words))
893 fputs(line_prefix, diff_words->opt->file);
894 fn_out_diff_words_write_helper(diff_words->opt->file,
882749a0 895 &style->ctx, style->newline,
2e5d2003 896 diff_words->plus.text.ptr + diff_words->plus.text.size
4297c0ae
BY
897 - diff_words->current_plus, diff_words->current_plus,
898 line_prefix);
899 }
f59a59e2 900 diff_words->minus.text.size = diff_words->plus.text.size = 0;
f59a59e2
JS
901}
902
76fd2828
JH
903/* In "color-words" mode, show word-diff of words accumulated in the buffer */
904static void diff_words_flush(struct emit_callback *ecbdata)
905{
906 if (ecbdata->diff_words->minus.text.size ||
907 ecbdata->diff_words->plus.text.size)
908 diff_words_show(ecbdata->diff_words);
909}
910
f59a59e2
JS
911static void free_diff_words_data(struct emit_callback *ecbdata)
912{
913 if (ecbdata->diff_words) {
76fd2828 914 diff_words_flush(ecbdata);
8e0f7003 915 free (ecbdata->diff_words->minus.text.ptr);
2e5d2003 916 free (ecbdata->diff_words->minus.orig);
8e0f7003 917 free (ecbdata->diff_words->plus.text.ptr);
2e5d2003 918 free (ecbdata->diff_words->plus.orig);
2b6a5417 919 free(ecbdata->diff_words->word_regex);
f59a59e2
JS
920 free(ecbdata->diff_words);
921 ecbdata->diff_words = NULL;
922 }
923}
924
ce436973 925const char *diff_get_color(int diff_use_color, enum color_diff ix)
cd112cef
JS
926{
927 if (diff_use_color)
50f575fc
LT
928 return diff_colors[ix];
929 return "";
cd112cef
JS
930}
931
23707811
JH
932static unsigned long sane_truncate_line(struct emit_callback *ecb, char *line, unsigned long len)
933{
934 const char *cp;
935 unsigned long allot;
936 size_t l = len;
937
938 if (ecb->truncate)
939 return ecb->truncate(line, len);
940 cp = line;
941 allot = l;
942 while (0 < l) {
943 (void) utf8_width(&cp, &l);
944 if (!cp)
945 break; /* truncated in the middle? */
946 }
947 return allot - l;
948}
949
d68fe26f 950static void find_lno(const char *line, struct emit_callback *ecbdata)
690ed843 951{
d68fe26f
JH
952 const char *p;
953 ecbdata->lno_in_preimage = 0;
954 ecbdata->lno_in_postimage = 0;
955 p = strchr(line, '-');
690ed843 956 if (!p)
d68fe26f
JH
957 return; /* cannot happen */
958 ecbdata->lno_in_preimage = strtol(p + 1, NULL, 10);
959 p = strchr(p, '+');
960 if (!p)
961 return; /* cannot happen */
962 ecbdata->lno_in_postimage = strtol(p + 1, NULL, 10);
690ed843
JH
963}
964
cd112cef 965static void fn_out_consume(void *priv, char *line, unsigned long len)
6973dcae 966{
6973dcae 967 struct emit_callback *ecbdata = priv;
472ca780
JK
968 const char *meta = diff_get_color(ecbdata->color_diff, DIFF_METAINFO);
969 const char *plain = diff_get_color(ecbdata->color_diff, DIFF_PLAIN);
ce436973 970 const char *reset = diff_get_color(ecbdata->color_diff, DIFF_RESET);
7be57610
BY
971 struct diff_options *o = ecbdata->opt;
972 char *line_prefix = "";
973 struct strbuf *msgbuf;
974
975 if (o && o->output_prefix) {
976 msgbuf = o->output_prefix(o, o->output_prefix_data);
977 line_prefix = msgbuf->buf;
978 }
6973dcae 979
3e97c7c6 980 if (ecbdata->header) {
a3c158d4 981 fprintf(ecbdata->opt->file, "%s", ecbdata->header->buf);
3e97c7c6
GB
982 strbuf_reset(ecbdata->header);
983 ecbdata->header = NULL;
984 }
34a5e1a2
JS
985 *(ecbdata->found_changesp) = 1;
986
6973dcae 987 if (ecbdata->label_path[0]) {
1a9eb3b9
JH
988 const char *name_a_tab, *name_b_tab;
989
990 name_a_tab = strchr(ecbdata->label_path[0], ' ') ? "\t" : "";
991 name_b_tab = strchr(ecbdata->label_path[1], ' ') ? "\t" : "";
992
7be57610
BY
993 fprintf(ecbdata->opt->file, "%s%s--- %s%s%s\n",
994 line_prefix, meta, ecbdata->label_path[0], reset, name_a_tab);
995 fprintf(ecbdata->opt->file, "%s%s+++ %s%s%s\n",
996 line_prefix, meta, ecbdata->label_path[1], reset, name_b_tab);
6973dcae
JH
997 ecbdata->label_path[0] = ecbdata->label_path[1] = NULL;
998 }
cd112cef 999
a624eaa7
JM
1000 if (diff_suppress_blank_empty
1001 && len == 2 && line[0] == ' ' && line[1] == '\n') {
1002 line[0] = '\n';
1003 len = 1;
1004 }
1005
b8d9c1a6 1006 if (line[0] == '@') {
76fd2828
JH
1007 if (ecbdata->diff_words)
1008 diff_words_flush(ecbdata);
23707811 1009 len = sane_truncate_line(ecbdata, line, len);
d68fe26f 1010 find_lno(line, ecbdata);
89cb73a1 1011 emit_hunk_header(ecbdata, line, len);
23707811 1012 if (line[len-1] != '\n')
a3c158d4 1013 putc('\n', ecbdata->opt->file);
448c3ef1 1014 return;
cd112cef 1015 }
448c3ef1 1016
b8d9c1a6 1017 if (len < 1) {
a3c158d4 1018 emit_line(ecbdata->opt, reset, reset, line, len);
882749a0
TR
1019 if (ecbdata->diff_words
1020 && ecbdata->diff_words->type == DIFF_WORDS_PORCELAIN)
a3c158d4 1021 fputs("~\n", ecbdata->opt->file);
448c3ef1 1022 return;
cd112cef 1023 }
448c3ef1 1024
448c3ef1
JH
1025 if (ecbdata->diff_words) {
1026 if (line[0] == '-') {
1027 diff_words_append(line, len,
1028 &ecbdata->diff_words->minus);
1029 return;
1030 } else if (line[0] == '+') {
1031 diff_words_append(line, len,
1032 &ecbdata->diff_words->plus);
1033 return;
1034 }
76fd2828 1035 diff_words_flush(ecbdata);
882749a0 1036 if (ecbdata->diff_words->type == DIFF_WORDS_PORCELAIN) {
a3c158d4
BY
1037 emit_line(ecbdata->opt, plain, reset, line, len);
1038 fputs("~\n", ecbdata->opt->file);
882749a0
TR
1039 } else {
1040 /* don't print the prefix character */
a3c158d4 1041 emit_line(ecbdata->opt, plain, reset, line+1, len-1);
882749a0 1042 }
448c3ef1
JH
1043 return;
1044 }
448c3ef1 1045
690ed843
JH
1046 if (line[0] != '+') {
1047 const char *color =
1048 diff_get_color(ecbdata->color_diff,
1049 line[0] == '-' ? DIFF_FILE_OLD : DIFF_PLAIN);
1050 ecbdata->lno_in_preimage++;
d68fe26f
JH
1051 if (line[0] == ' ')
1052 ecbdata->lno_in_postimage++;
a3c158d4 1053 emit_line(ecbdata->opt, color, reset, line, len);
d68fe26f
JH
1054 } else {
1055 ecbdata->lno_in_postimage++;
018cff70 1056 emit_add_line(reset, ecbdata, line + 1, len - 1);
448c3ef1 1057 }
6973dcae
JH
1058}
1059
1060static char *pprint_rename(const char *a, const char *b)
1061{
1062 const char *old = a;
1063 const char *new = b;
f285a2d7 1064 struct strbuf name = STRBUF_INIT;
6973dcae
JH
1065 int pfx_length, sfx_length;
1066 int len_a = strlen(a);
1067 int len_b = strlen(b);
663af342 1068 int a_midlen, b_midlen;
e5bfbf9b
AJ
1069 int qlen_a = quote_c_style(a, NULL, NULL, 0);
1070 int qlen_b = quote_c_style(b, NULL, NULL, 0);
1071
1072 if (qlen_a || qlen_b) {
663af342
PH
1073 quote_c_style(a, &name, NULL, 0);
1074 strbuf_addstr(&name, " => ");
1075 quote_c_style(b, &name, NULL, 0);
b315c5c0 1076 return strbuf_detach(&name, NULL);
e5bfbf9b 1077 }
6973dcae
JH
1078
1079 /* Find common prefix */
1080 pfx_length = 0;
1081 while (*old && *new && *old == *new) {
1082 if (*old == '/')
1083 pfx_length = old - a + 1;
1084 old++;
1085 new++;
1086 }
1087
1088 /* Find common suffix */
1089 old = a + len_a;
1090 new = b + len_b;
1091 sfx_length = 0;
1092 while (a <= old && b <= new && *old == *new) {
1093 if (*old == '/')
1094 sfx_length = len_a - (old - a);
1095 old--;
1096 new--;
1097 }
1098
1099 /*
1100 * pfx{mid-a => mid-b}sfx
1101 * {pfx-a => pfx-b}sfx
1102 * pfx{sfx-a => sfx-b}
1103 * name-a => name-b
1104 */
663af342
PH
1105 a_midlen = len_a - pfx_length - sfx_length;
1106 b_midlen = len_b - pfx_length - sfx_length;
1107 if (a_midlen < 0)
1108 a_midlen = 0;
1109 if (b_midlen < 0)
1110 b_midlen = 0;
1111
1112 strbuf_grow(&name, pfx_length + a_midlen + b_midlen + sfx_length + 7);
6973dcae 1113 if (pfx_length + sfx_length) {
663af342
PH
1114 strbuf_add(&name, a, pfx_length);
1115 strbuf_addch(&name, '{');
6973dcae 1116 }
663af342
PH
1117 strbuf_add(&name, a + pfx_length, a_midlen);
1118 strbuf_addstr(&name, " => ");
1119 strbuf_add(&name, b + pfx_length, b_midlen);
1120 if (pfx_length + sfx_length) {
1121 strbuf_addch(&name, '}');
1122 strbuf_add(&name, a + len_a - sfx_length, sfx_length);
6973dcae 1123 }
b315c5c0 1124 return strbuf_detach(&name, NULL);
6973dcae
JH
1125}
1126
1127struct diffstat_t {
6973dcae
JH
1128 int nr;
1129 int alloc;
1130 struct diffstat_file {
f604652e 1131 char *from_name;
6973dcae 1132 char *name;
f604652e 1133 char *print_name;
6973dcae
JH
1134 unsigned is_unmerged:1;
1135 unsigned is_binary:1;
1136 unsigned is_renamed:1;
0974c117 1137 uintmax_t added, deleted;
6973dcae
JH
1138 } **files;
1139};
1140
1141static struct diffstat_file *diffstat_add(struct diffstat_t *diffstat,
1142 const char *name_a,
1143 const char *name_b)
1144{
1145 struct diffstat_file *x;
1146 x = xcalloc(sizeof (*x), 1);
1147 if (diffstat->nr == diffstat->alloc) {
1148 diffstat->alloc = alloc_nr(diffstat->alloc);
1149 diffstat->files = xrealloc(diffstat->files,
1150 diffstat->alloc * sizeof(x));
1151 }
1152 diffstat->files[diffstat->nr++] = x;
1153 if (name_b) {
f604652e
JH
1154 x->from_name = xstrdup(name_a);
1155 x->name = xstrdup(name_b);
6973dcae
JH
1156 x->is_renamed = 1;
1157 }
f604652e
JH
1158 else {
1159 x->from_name = NULL;
9befac47 1160 x->name = xstrdup(name_a);
f604652e 1161 }
6973dcae
JH
1162 return x;
1163}
1164
1165static void diffstat_consume(void *priv, char *line, unsigned long len)
1166{
1167 struct diffstat_t *diffstat = priv;
1168 struct diffstat_file *x = diffstat->files[diffstat->nr - 1];
1169
1170 if (line[0] == '+')
1171 x->added++;
1172 else if (line[0] == '-')
1173 x->deleted++;
1174}
1175
698ce6f8 1176const char mime_boundary_leader[] = "------------";
6973dcae 1177
a2540023
JH
1178static int scale_linear(int it, int width, int max_change)
1179{
1180 /*
3ed74e60
JS
1181 * make sure that at least one '-' is printed if there were deletions,
1182 * and likewise for '+'.
a2540023 1183 */
3ed74e60
JS
1184 if (max_change < 2)
1185 return it;
1186 return ((it - 1) * (width - 1) + max_change - 1) / (max_change - 1);
a2540023
JH
1187}
1188
c0c77734 1189static void show_name(FILE *file,
a408e0e6 1190 const char *prefix, const char *name, int len)
a2540023 1191{
a408e0e6 1192 fprintf(file, " %s%-*s |", prefix, len, name);
a2540023
JH
1193}
1194
c0c77734 1195static void show_graph(FILE *file, char ch, int cnt, const char *set, const char *reset)
a2540023
JH
1196{
1197 if (cnt <= 0)
1198 return;
c0c77734 1199 fprintf(file, "%s", set);
a2540023 1200 while (cnt--)
c0c77734
DB
1201 putc(ch, file);
1202 fprintf(file, "%s", reset);
a2540023
JH
1203}
1204
f604652e
JH
1205static void fill_print_name(struct diffstat_file *file)
1206{
1207 char *pname;
1208
1209 if (file->print_name)
1210 return;
1211
1212 if (!file->is_renamed) {
f285a2d7 1213 struct strbuf buf = STRBUF_INIT;
f604652e
JH
1214 if (quote_c_style(file->name, &buf, NULL, 0)) {
1215 pname = strbuf_detach(&buf, NULL);
1216 } else {
1217 pname = file->name;
1218 strbuf_release(&buf);
1219 }
1220 } else {
1221 pname = pprint_rename(file->from_name, file->name);
1222 }
1223 file->print_name = pname;
1224}
1225
4b25d091 1226static void show_stats(struct diffstat_t *data, struct diff_options *options)
6973dcae 1227{
eb3a9dd3 1228 int i, len, add, del, adds = 0, dels = 0;
0974c117 1229 uintmax_t max_change = 0, max_len = 0;
6973dcae 1230 int total_files = data->nr;
a2540023 1231 int width, name_width;
785f7432 1232 const char *reset, *set, *add_c, *del_c;
7be57610
BY
1233 const char *line_prefix = "";
1234 struct strbuf *msg = NULL;
6973dcae
JH
1235
1236 if (data->nr == 0)
1237 return;
1238
7be57610
BY
1239 if (options->output_prefix) {
1240 msg = options->output_prefix(options, options->output_prefix_data);
1241 line_prefix = msg->buf;
1242 }
1243
a2540023
JH
1244 width = options->stat_width ? options->stat_width : 80;
1245 name_width = options->stat_name_width ? options->stat_name_width : 50;
1246
1247 /* Sanity: give at least 5 columns to the graph,
1248 * but leave at least 10 columns for the name.
1249 */
861d1af3
OM
1250 if (width < 25)
1251 width = 25;
1252 if (name_width < 10)
1253 name_width = 10;
1254 else if (width < name_width + 15)
1255 name_width = width - 15;
a2540023
JH
1256
1257 /* Find the longest filename and max number of changes */
8f67f8ae
PH
1258 reset = diff_get_color_opt(options, DIFF_RESET);
1259 set = diff_get_color_opt(options, DIFF_PLAIN);
1260 add_c = diff_get_color_opt(options, DIFF_FILE_NEW);
1261 del_c = diff_get_color_opt(options, DIFF_FILE_OLD);
785f7432 1262
6973dcae
JH
1263 for (i = 0; i < data->nr; i++) {
1264 struct diffstat_file *file = data->files[i];
0974c117 1265 uintmax_t change = file->added + file->deleted;
f604652e
JH
1266 fill_print_name(file);
1267 len = strlen(file->print_name);
6973dcae
JH
1268 if (max_len < len)
1269 max_len = len;
1270
1271 if (file->is_binary || file->is_unmerged)
1272 continue;
a2540023
JH
1273 if (max_change < change)
1274 max_change = change;
6973dcae
JH
1275 }
1276
a2540023
JH
1277 /* Compute the width of the graph part;
1278 * 10 is for one blank at the beginning of the line plus
1279 * " | count " between the name and the graph.
1280 *
1281 * From here on, name_width is the width of the name area,
1282 * and width is the width of the graph area.
1283 */
1284 name_width = (name_width < max_len) ? name_width : max_len;
1285 if (width < (name_width + 10) + max_change)
1286 width = width - (name_width + 10);
1287 else
1288 width = max_change;
1289
6973dcae 1290 for (i = 0; i < data->nr; i++) {
d2543b8e 1291 const char *prefix = "";
f604652e 1292 char *name = data->files[i]->print_name;
0974c117
JK
1293 uintmax_t added = data->files[i]->added;
1294 uintmax_t deleted = data->files[i]->deleted;
a2540023 1295 int name_len;
6973dcae
JH
1296
1297 /*
1298 * "scale" the filename
1299 */
a2540023
JH
1300 len = name_width;
1301 name_len = strlen(name);
1302 if (name_width < name_len) {
6973dcae
JH
1303 char *slash;
1304 prefix = "...";
a2540023
JH
1305 len -= 3;
1306 name += name_len - len;
6973dcae
JH
1307 slash = strchr(name, '/');
1308 if (slash)
1309 name = slash;
1310 }
6973dcae
JH
1311
1312 if (data->files[i]->is_binary) {
7be57610 1313 fprintf(options->file, "%s", line_prefix);
a408e0e6 1314 show_name(options->file, prefix, name, len);
c0c77734 1315 fprintf(options->file, " Bin ");
0974c117
JK
1316 fprintf(options->file, "%s%"PRIuMAX"%s",
1317 del_c, deleted, reset);
c0c77734 1318 fprintf(options->file, " -> ");
0974c117
JK
1319 fprintf(options->file, "%s%"PRIuMAX"%s",
1320 add_c, added, reset);
c0c77734
DB
1321 fprintf(options->file, " bytes");
1322 fprintf(options->file, "\n");
f604652e 1323 continue;
6973dcae
JH
1324 }
1325 else if (data->files[i]->is_unmerged) {
7be57610 1326 fprintf(options->file, "%s", line_prefix);
a408e0e6 1327 show_name(options->file, prefix, name, len);
c0c77734 1328 fprintf(options->file, " Unmerged\n");
f604652e 1329 continue;
6973dcae
JH
1330 }
1331 else if (!data->files[i]->is_renamed &&
1332 (added + deleted == 0)) {
1333 total_files--;
f604652e 1334 continue;
6973dcae
JH
1335 }
1336
a2540023
JH
1337 /*
1338 * scale the add/delete
1339 */
6973dcae
JH
1340 add = added;
1341 del = deleted;
6973dcae
JH
1342 adds += add;
1343 dels += del;
1344
a2540023 1345 if (width <= max_change) {
a2540023 1346 add = scale_linear(add, width, max_change);
3ed74e60 1347 del = scale_linear(del, width, max_change);
6973dcae 1348 }
7be57610 1349 fprintf(options->file, "%s", line_prefix);
a408e0e6 1350 show_name(options->file, prefix, name, len);
0974c117 1351 fprintf(options->file, "%5"PRIuMAX"%s", added + deleted,
4d9b5359 1352 added + deleted ? " " : "");
c0c77734
DB
1353 show_graph(options->file, '+', add, add_c, reset);
1354 show_graph(options->file, '-', del, del_c, reset);
1355 fprintf(options->file, "\n");
1356 }
7be57610 1357 fprintf(options->file, "%s", line_prefix);
c0c77734 1358 fprintf(options->file,
a408e0e6
MH
1359 " %d files changed, %d insertions(+), %d deletions(-)\n",
1360 total_files, adds, dels);
6973dcae
JH
1361}
1362
2775d92c 1363static void show_shortstats(struct diffstat_t *data, struct diff_options *options)
ebd124c6
NP
1364{
1365 int i, adds = 0, dels = 0, total_files = data->nr;
1366
1367 if (data->nr == 0)
1368 return;
1369
1370 for (i = 0; i < data->nr; i++) {
1371 if (!data->files[i]->is_binary &&
1372 !data->files[i]->is_unmerged) {
1373 int added = data->files[i]->added;
1374 int deleted= data->files[i]->deleted;
1375 if (!data->files[i]->is_renamed &&
1376 (added + deleted == 0)) {
1377 total_files--;
1378 } else {
1379 adds += added;
1380 dels += deleted;
1381 }
1382 }
ebd124c6 1383 }
7be57610
BY
1384 if (options->output_prefix) {
1385 struct strbuf *msg = NULL;
1386 msg = options->output_prefix(options,
1387 options->output_prefix_data);
1388 fprintf(options->file, "%s", msg->buf);
1389 }
c0c77734 1390 fprintf(options->file, " %d files changed, %d insertions(+), %d deletions(-)\n",
ebd124c6
NP
1391 total_files, adds, dels);
1392}
1393
4b25d091 1394static void show_numstat(struct diffstat_t *data, struct diff_options *options)
74e2abe5
JH
1395{
1396 int i;
1397
f604652e
JH
1398 if (data->nr == 0)
1399 return;
1400
74e2abe5
JH
1401 for (i = 0; i < data->nr; i++) {
1402 struct diffstat_file *file = data->files[i];
1403
7be57610
BY
1404 if (options->output_prefix) {
1405 struct strbuf *msg = NULL;
1406 msg = options->output_prefix(options,
1407 options->output_prefix_data);
1408 fprintf(options->file, "%s", msg->buf);
1409 }
1410
bfddbc5e 1411 if (file->is_binary)
c0c77734 1412 fprintf(options->file, "-\t-\t");
bfddbc5e 1413 else
c0c77734 1414 fprintf(options->file,
0974c117
JK
1415 "%"PRIuMAX"\t%"PRIuMAX"\t",
1416 file->added, file->deleted);
f604652e
JH
1417 if (options->line_termination) {
1418 fill_print_name(file);
1419 if (!file->is_renamed)
c0c77734 1420 write_name_quoted(file->name, options->file,
f604652e
JH
1421 options->line_termination);
1422 else {
c0c77734
DB
1423 fputs(file->print_name, options->file);
1424 putc(options->line_termination, options->file);
f604652e 1425 }
663af342 1426 } else {
f604652e 1427 if (file->is_renamed) {
c0c77734
DB
1428 putc('\0', options->file);
1429 write_name_quoted(file->from_name, options->file, '\0');
f604652e 1430 }
c0c77734 1431 write_name_quoted(file->name, options->file, '\0');
663af342 1432 }
74e2abe5
JH
1433 }
1434}
1435
c04a7155
JH
1436struct dirstat_file {
1437 const char *name;
1438 unsigned long changed;
7df7c019
LT
1439};
1440
c04a7155
JH
1441struct dirstat_dir {
1442 struct dirstat_file *files;
1443 int alloc, nr, percent, cumulative;
1444};
1445
7be57610
BY
1446static long gather_dirstat(struct diff_options *opt, struct dirstat_dir *dir,
1447 unsigned long changed, const char *base, int baselen)
7df7c019
LT
1448{
1449 unsigned long this_dir = 0;
1450 unsigned int sources = 0;
7be57610
BY
1451 const char *line_prefix = "";
1452 struct strbuf *msg = NULL;
1453
1454 if (opt->output_prefix) {
1455 msg = opt->output_prefix(opt, opt->output_prefix_data);
1456 line_prefix = msg->buf;
1457 }
7df7c019
LT
1458
1459 while (dir->nr) {
c04a7155 1460 struct dirstat_file *f = dir->files;
7df7c019
LT
1461 int namelen = strlen(f->name);
1462 unsigned long this;
1463 char *slash;
1464
1465 if (namelen < baselen)
1466 break;
1467 if (memcmp(f->name, base, baselen))
1468 break;
1469 slash = strchr(f->name + baselen, '/');
1470 if (slash) {
1471 int newbaselen = slash + 1 - f->name;
7be57610 1472 this = gather_dirstat(opt, dir, changed, f->name, newbaselen);
7df7c019
LT
1473 sources++;
1474 } else {
c04a7155 1475 this = f->changed;
7df7c019
LT
1476 dir->files++;
1477 dir->nr--;
1478 sources += 2;
1479 }
1480 this_dir += this;
1481 }
1482
1483 /*
1484 * We don't report dirstat's for
1485 * - the top level
1486 * - or cases where everything came from a single directory
1487 * under this directory (sources == 1).
1488 */
1489 if (baselen && sources != 1) {
1490 int permille = this_dir * 1000 / changed;
1491 if (permille) {
1492 int percent = permille / 10;
1493 if (percent >= dir->percent) {
7be57610
BY
1494 fprintf(opt->file, "%s%4d.%01d%% %.*s\n", line_prefix,
1495 percent, permille % 10, baselen, base);
7df7c019
LT
1496 if (!dir->cumulative)
1497 return 0;
1498 }
1499 }
1500 }
1501 return this_dir;
1502}
1503
441bca0b
LT
1504static int dirstat_compare(const void *_a, const void *_b)
1505{
1506 const struct dirstat_file *a = _a;
1507 const struct dirstat_file *b = _b;
1508 return strcmp(a->name, b->name);
1509}
1510
c04a7155 1511static void show_dirstat(struct diff_options *options)
7df7c019
LT
1512{
1513 int i;
1514 unsigned long changed;
c04a7155
JH
1515 struct dirstat_dir dir;
1516 struct diff_queue_struct *q = &diff_queued_diff;
1517
1518 dir.files = NULL;
1519 dir.alloc = 0;
1520 dir.nr = 0;
1521 dir.percent = options->dirstat_percent;
f88d225f 1522 dir.cumulative = DIFF_OPT_TST(options, DIRSTAT_CUMULATIVE);
7df7c019 1523
7df7c019 1524 changed = 0;
c04a7155
JH
1525 for (i = 0; i < q->nr; i++) {
1526 struct diff_filepair *p = q->queue[i];
1527 const char *name;
1528 unsigned long copied, added, damage;
1529
1530 name = p->one->path ? p->one->path : p->two->path;
1531
1532 if (DIFF_FILE_VALID(p->one) && DIFF_FILE_VALID(p->two)) {
1533 diff_populate_filespec(p->one, 0);
1534 diff_populate_filespec(p->two, 0);
1535 diffcore_count_changes(p->one, p->two, NULL, NULL, 0,
1536 &copied, &added);
1537 diff_free_filespec_data(p->one);
1538 diff_free_filespec_data(p->two);
1539 } else if (DIFF_FILE_VALID(p->one)) {
1540 diff_populate_filespec(p->one, 1);
1541 copied = added = 0;
1542 diff_free_filespec_data(p->one);
1543 } else if (DIFF_FILE_VALID(p->two)) {
1544 diff_populate_filespec(p->two, 1);
1545 copied = 0;
1546 added = p->two->size;
1547 diff_free_filespec_data(p->two);
1548 } else
2b0b551d 1549 continue;
c04a7155
JH
1550
1551 /*
1552 * Original minus copied is the removed material,
1553 * added is the new material. They are both damages
fd33777b
HO
1554 * made to the preimage. In --dirstat-by-file mode, count
1555 * damaged files, not damaged lines. This is done by
1556 * counting only a single damaged line per file.
c04a7155
JH
1557 */
1558 damage = (p->one->size - copied) + added;
fd33777b
HO
1559 if (DIFF_OPT_TST(options, DIRSTAT_BY_FILE) && damage > 0)
1560 damage = 1;
c04a7155
JH
1561
1562 ALLOC_GROW(dir.files, dir.nr + 1, dir.alloc);
1563 dir.files[dir.nr].name = name;
1564 dir.files[dir.nr].changed = damage;
1565 changed += damage;
1566 dir.nr++;
7df7c019
LT
1567 }
1568
1569 /* This can happen even with many files, if everything was renames */
1570 if (!changed)
1571 return;
1572
1573 /* Show all directories with more than x% of the changes */
441bca0b 1574 qsort(dir.files, dir.nr, sizeof(dir.files[0]), dirstat_compare);
7be57610 1575 gather_dirstat(options, &dir, changed, "", 0);
7df7c019
LT
1576}
1577
f604652e
JH
1578static void free_diffstat_info(struct diffstat_t *diffstat)
1579{
1580 int i;
1581 for (i = 0; i < diffstat->nr; i++) {
1582 struct diffstat_file *f = diffstat->files[i];
1583 if (f->name != f->print_name)
1584 free(f->print_name);
1585 free(f->name);
1586 free(f->from_name);
1587 free(f);
1588 }
1589 free(diffstat->files);
1590}
1591
88246898 1592struct checkdiff_t {
88246898 1593 const char *filename;
1ba111d1 1594 int lineno;
a757c646 1595 int conflict_marker_size;
1ba111d1 1596 struct diff_options *o;
cf1b7869 1597 unsigned ws_rule;
62c64895 1598 unsigned status;
88246898
JS
1599};
1600
a757c646 1601static int is_conflict_marker(const char *line, int marker_size, unsigned long len)
04954043
JH
1602{
1603 char firstchar;
1604 int cnt;
1605
a757c646 1606 if (len < marker_size + 1)
04954043
JH
1607 return 0;
1608 firstchar = line[0];
1609 switch (firstchar) {
a757c646 1610 case '=': case '>': case '<': case '|':
04954043
JH
1611 break;
1612 default:
1613 return 0;
1614 }
a757c646 1615 for (cnt = 1; cnt < marker_size; cnt++)
04954043
JH
1616 if (line[cnt] != firstchar)
1617 return 0;
a757c646
JH
1618 /* line[1] thru line[marker_size-1] are same as firstchar */
1619 if (len < marker_size + 1 || !isspace(line[marker_size]))
04954043 1620 return 0;
04954043
JH
1621 return 1;
1622}
1623
88246898
JS
1624static void checkdiff_consume(void *priv, char *line, unsigned long len)
1625{
1626 struct checkdiff_t *data = priv;
1ba111d1 1627 int color_diff = DIFF_OPT_TST(data->o, COLOR_DIFF);
a757c646 1628 int marker_size = data->conflict_marker_size;
1ba111d1
JH
1629 const char *ws = diff_get_color(color_diff, DIFF_WHITESPACE);
1630 const char *reset = diff_get_color(color_diff, DIFF_RESET);
1631 const char *set = diff_get_color(color_diff, DIFF_FILE_NEW);
c1795bb0 1632 char *err;
7be57610
BY
1633 char *line_prefix = "";
1634 struct strbuf *msgbuf;
1635
1636 assert(data->o);
1637 if (data->o->output_prefix) {
1638 msgbuf = data->o->output_prefix(data->o,
1639 data->o->output_prefix_data);
1640 line_prefix = msgbuf->buf;
1641 }
88246898
JS
1642
1643 if (line[0] == '+') {
18374e58 1644 unsigned bad;
0ef617f4 1645 data->lineno++;
a757c646 1646 if (is_conflict_marker(line + 1, marker_size, len - 1)) {
04954043
JH
1647 data->status |= 1;
1648 fprintf(data->o->file,
7be57610
BY
1649 "%s%s:%d: leftover conflict marker\n",
1650 line_prefix, data->filename, data->lineno);
04954043 1651 }
8f8841e9 1652 bad = ws_check(line + 1, len - 1, data->ws_rule);
18374e58 1653 if (!bad)
c1795bb0 1654 return;
18374e58
JH
1655 data->status |= bad;
1656 err = whitespace_error_string(bad);
7be57610
BY
1657 fprintf(data->o->file, "%s%s:%d: %s.\n",
1658 line_prefix, data->filename, data->lineno, err);
c1795bb0 1659 free(err);
a3c158d4 1660 emit_line(data->o, set, reset, line, 1);
8f8841e9 1661 ws_check_emit(line + 1, len - 1, data->ws_rule,
1ba111d1 1662 data->o->file, set, reset, ws);
877f23cc 1663 } else if (line[0] == ' ') {
88246898 1664 data->lineno++;
877f23cc 1665 } else if (line[0] == '@') {
88246898
JS
1666 char *plus = strchr(line, '+');
1667 if (plus)
0ef617f4 1668 data->lineno = strtol(plus, NULL, 10) - 1;
88246898
JS
1669 else
1670 die("invalid diff");
1671 }
1672}
1673
0660626c
JH
1674static unsigned char *deflate_it(char *data,
1675 unsigned long size,
1676 unsigned long *result_size)
051308f6 1677{
0660626c
JH
1678 int bound;
1679 unsigned char *deflated;
1680 z_stream stream;
1681
1682 memset(&stream, 0, sizeof(stream));
12f6c308 1683 deflateInit(&stream, zlib_compression_level);
0660626c
JH
1684 bound = deflateBound(&stream, size);
1685 deflated = xmalloc(bound);
1686 stream.next_out = deflated;
1687 stream.avail_out = bound;
1688
1689 stream.next_in = (unsigned char *)data;
1690 stream.avail_in = size;
1691 while (deflate(&stream, Z_FINISH) == Z_OK)
1692 ; /* nothing */
1693 deflateEnd(&stream);
1694 *result_size = stream.total_out;
1695 return deflated;
051308f6
JH
1696}
1697
7be57610 1698static void emit_binary_diff_body(FILE *file, mmfile_t *one, mmfile_t *two, char *prefix)
051308f6 1699{
0660626c
JH
1700 void *cp;
1701 void *delta;
1702 void *deflated;
1703 void *data;
1704 unsigned long orig_size;
1705 unsigned long delta_size;
1706 unsigned long deflate_size;
1707 unsigned long data_size;
051308f6 1708
0660626c
JH
1709 /* We could do deflated delta, or we could do just deflated two,
1710 * whichever is smaller.
051308f6 1711 */
0660626c
JH
1712 delta = NULL;
1713 deflated = deflate_it(two->ptr, two->size, &deflate_size);
1714 if (one->size && two->size) {
1715 delta = diff_delta(one->ptr, one->size,
1716 two->ptr, two->size,
1717 &delta_size, deflate_size);
1718 if (delta) {
1719 void *to_free = delta;
1720 orig_size = delta_size;
1721 delta = deflate_it(delta, delta_size, &delta_size);
1722 free(to_free);
051308f6
JH
1723 }
1724 }
051308f6 1725
0660626c 1726 if (delta && delta_size < deflate_size) {
7be57610 1727 fprintf(file, "%sdelta %lu\n", prefix, orig_size);
0660626c
JH
1728 free(deflated);
1729 data = delta;
1730 data_size = delta_size;
1731 }
1732 else {
7be57610 1733 fprintf(file, "%sliteral %lu\n", prefix, two->size);
0660626c
JH
1734 free(delta);
1735 data = deflated;
1736 data_size = deflate_size;
1737 }
051308f6 1738
0660626c
JH
1739 /* emit data encoded in base85 */
1740 cp = data;
1741 while (data_size) {
1742 int bytes = (52 < data_size) ? 52 : data_size;
051308f6 1743 char line[70];
0660626c 1744 data_size -= bytes;
051308f6
JH
1745 if (bytes <= 26)
1746 line[0] = bytes + 'A' - 1;
1747 else
1748 line[0] = bytes - 26 + 'a' - 1;
1749 encode_85(line + 1, cp, bytes);
1d7f171c 1750 cp = (char *) cp + bytes;
7be57610 1751 fprintf(file, "%s", prefix);
c0c77734
DB
1752 fputs(line, file);
1753 fputc('\n', file);
051308f6 1754 }
7be57610 1755 fprintf(file, "%s\n", prefix);
0660626c 1756 free(data);
051308f6
JH
1757}
1758
7be57610 1759static void emit_binary_diff(FILE *file, mmfile_t *one, mmfile_t *two, char *prefix)
d4c452f0 1760{
7be57610
BY
1761 fprintf(file, "%sGIT binary patch\n", prefix);
1762 emit_binary_diff_body(file, one, two, prefix);
1763 emit_binary_diff_body(file, two, one, prefix);
d4c452f0
JH
1764}
1765
72cf4841 1766static void diff_filespec_load_driver(struct diff_filespec *one)
6973dcae 1767{
122aa6f9
JK
1768 if (!one->driver)
1769 one->driver = userdiff_find_by_path(one->path);
1770 if (!one->driver)
1771 one->driver = userdiff_find_by_name("default");
29a3eefd
JH
1772}
1773
1774int diff_filespec_is_binary(struct diff_filespec *one)
1775{
122aa6f9
JK
1776 if (one->is_binary == -1) {
1777 diff_filespec_load_driver(one);
1778 if (one->driver->binary != -1)
1779 one->is_binary = one->driver->binary;
1780 else {
1781 if (!one->data && DIFF_FILE_VALID(one))
1782 diff_populate_filespec(one, 0);
1783 if (one->data)
1784 one->is_binary = buffer_is_binary(one->data,
1785 one->size);
1786 if (one->is_binary == -1)
1787 one->is_binary = 0;
1788 }
1789 }
29a3eefd 1790 return one->is_binary;
6973dcae
JH
1791}
1792
be58e70d 1793static const struct userdiff_funcname *diff_funcname_pattern(struct diff_filespec *one)
f258475a 1794{
122aa6f9
JK
1795 diff_filespec_load_driver(one);
1796 return one->driver->funcname.pattern ? &one->driver->funcname : NULL;
f258475a
JH
1797}
1798
80c49c3d
TR
1799static const char *userdiff_word_regex(struct diff_filespec *one)
1800{
1801 diff_filespec_load_driver(one);
1802 return one->driver->word_regex;
1803}
1804
a5a818ee
JH
1805void diff_set_mnemonic_prefix(struct diff_options *options, const char *a, const char *b)
1806{
1807 if (!options->a_prefix)
1808 options->a_prefix = a;
1809 if (!options->b_prefix)
1810 options->b_prefix = b;
1811}
1812
d9bae1a1 1813static struct userdiff_driver *get_textconv(struct diff_filespec *one)
04427ac8
JK
1814{
1815 if (!DIFF_FILE_VALID(one))
1816 return NULL;
2675773a
JK
1817 if (!S_ISREG(one->mode))
1818 return NULL;
04427ac8 1819 diff_filespec_load_driver(one);
d9bae1a1
JK
1820 if (!one->driver->textconv)
1821 return NULL;
1822
1823 if (one->driver->textconv_want_cache && !one->driver->textconv_cache) {
1824 struct notes_cache *c = xmalloc(sizeof(*c));
1825 struct strbuf name = STRBUF_INIT;
1826
1827 strbuf_addf(&name, "textconv/%s", one->driver->name);
1828 notes_cache_init(c, name.buf, one->driver->textconv);
1829 one->driver->textconv_cache = c;
1830 }
1831
1832 return one->driver;
04427ac8
JK
1833}
1834
6973dcae
JH
1835static void builtin_diff(const char *name_a,
1836 const char *name_b,
1837 struct diff_filespec *one,
1838 struct diff_filespec *two,
1839 const char *xfrm_msg,
296c6bb2 1840 int must_show_header,
051308f6 1841 struct diff_options *o,
6973dcae
JH
1842 int complete_rewrite)
1843{
1844 mmfile_t mf1, mf2;
1845 const char *lbl[2];
1846 char *a_one, *b_two;
8f67f8ae
PH
1847 const char *set = diff_get_color_opt(o, DIFF_METAINFO);
1848 const char *reset = diff_get_color_opt(o, DIFF_RESET);
a5a818ee 1849 const char *a_prefix, *b_prefix;
d9bae1a1
JK
1850 struct userdiff_driver *textconv_one = NULL;
1851 struct userdiff_driver *textconv_two = NULL;
3e97c7c6 1852 struct strbuf header = STRBUF_INIT;
7be57610
BY
1853 struct strbuf *msgbuf;
1854 char *line_prefix = "";
1855
1856 if (o->output_prefix) {
1857 msgbuf = o->output_prefix(o, o->output_prefix_data);
1858 line_prefix = msgbuf->buf;
1859 }
a5a818ee 1860
752c0c24
JS
1861 if (DIFF_OPT_TST(o, SUBMODULE_LOG) &&
1862 (!one->mode || S_ISGITLINK(one->mode)) &&
1863 (!two->mode || S_ISGITLINK(two->mode))) {
1864 const char *del = diff_get_color_opt(o, DIFF_FILE_OLD);
1865 const char *add = diff_get_color_opt(o, DIFF_FILE_NEW);
1866 show_submodule_summary(o->file, one ? one->path : two->path,
721ceec1 1867 one->sha1, two->sha1, two->dirty_submodule,
752c0c24
JS
1868 del, add, reset);
1869 return;
1870 }
1871
3aa1f7ca
JK
1872 if (DIFF_OPT_TST(o, ALLOW_TEXTCONV)) {
1873 textconv_one = get_textconv(one);
1874 textconv_two = get_textconv(two);
1875 }
1876
a5a818ee
JH
1877 diff_set_mnemonic_prefix(o, "a/", "b/");
1878 if (DIFF_OPT_TST(o, REVERSE_DIFF)) {
1879 a_prefix = o->b_prefix;
1880 b_prefix = o->a_prefix;
1881 } else {
1882 a_prefix = o->a_prefix;
1883 b_prefix = o->b_prefix;
1884 }
6973dcae 1885
71b989e7
LT
1886 /* Never use a non-valid filename anywhere if at all possible */
1887 name_a = DIFF_FILE_VALID(one) ? name_a : name_b;
1888 name_b = DIFF_FILE_VALID(two) ? name_b : name_a;
1889
a5a818ee
JH
1890 a_one = quote_two(a_prefix, name_a + (*name_a == '/'));
1891 b_two = quote_two(b_prefix, name_b + (*name_b == '/'));
6973dcae
JH
1892 lbl[0] = DIFF_FILE_VALID(one) ? a_one : "/dev/null";
1893 lbl[1] = DIFF_FILE_VALID(two) ? b_two : "/dev/null";
7be57610 1894 strbuf_addf(&header, "%s%sdiff --git %s %s%s\n", line_prefix, set, a_one, b_two, reset);
6973dcae
JH
1895 if (lbl[0][0] == '/') {
1896 /* /dev/null */
7be57610 1897 strbuf_addf(&header, "%s%snew file mode %06o%s\n", line_prefix, set, two->mode, reset);
37466447
BW
1898 if (xfrm_msg)
1899 strbuf_addstr(&header, xfrm_msg);
296c6bb2 1900 must_show_header = 1;
6973dcae
JH
1901 }
1902 else if (lbl[1][0] == '/') {
7be57610 1903 strbuf_addf(&header, "%s%sdeleted file mode %06o%s\n", line_prefix, set, one->mode, reset);
37466447
BW
1904 if (xfrm_msg)
1905 strbuf_addstr(&header, xfrm_msg);
296c6bb2 1906 must_show_header = 1;
6973dcae
JH
1907 }
1908 else {
1909 if (one->mode != two->mode) {
7be57610
BY
1910 strbuf_addf(&header, "%s%sold mode %06o%s\n", line_prefix, set, one->mode, reset);
1911 strbuf_addf(&header, "%s%snew mode %06o%s\n", line_prefix, set, two->mode, reset);
296c6bb2 1912 must_show_header = 1;
cd112cef 1913 }
37466447
BW
1914 if (xfrm_msg)
1915 strbuf_addstr(&header, xfrm_msg);
3e97c7c6 1916
6973dcae
JH
1917 /*
1918 * we do not run diff between different kind
1919 * of objects.
1920 */
1921 if ((one->mode ^ two->mode) & S_IFMT)
1922 goto free_ab_and_return;
0c01857d 1923 if (complete_rewrite &&
3aa1f7ca
JK
1924 (textconv_one || !diff_filespec_is_binary(one)) &&
1925 (textconv_two || !diff_filespec_is_binary(two))) {
3e97c7c6
GB
1926 fprintf(o->file, "%s", header.buf);
1927 strbuf_reset(&header);
3aa1f7ca
JK
1928 emit_rewrite_diff(name_a, name_b, one, two,
1929 textconv_one, textconv_two, o);
34a5e1a2 1930 o->found_changes = 1;
6973dcae
JH
1931 goto free_ab_and_return;
1932 }
1933 }
1934
8f67f8ae 1935 if (!DIFF_OPT_TST(o, TEXT) &&
b3373982
JK
1936 ( (!textconv_one && diff_filespec_is_binary(one)) ||
1937 (!textconv_two && diff_filespec_is_binary(two)) )) {
1938 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
1939 die("unable to read files to diff");
0660626c
JH
1940 /* Quite common confusing case */
1941 if (mf1.size == mf2.size &&
296c6bb2
CC
1942 !memcmp(mf1.ptr, mf2.ptr, mf1.size)) {
1943 if (must_show_header)
1944 fprintf(o->file, "%s", header.buf);
0660626c 1945 goto free_ab_and_return;
296c6bb2 1946 }
3e97c7c6
GB
1947 fprintf(o->file, "%s", header.buf);
1948 strbuf_reset(&header);
8f67f8ae 1949 if (DIFF_OPT_TST(o, BINARY))
7be57610 1950 emit_binary_diff(o->file, &mf1, &mf2, line_prefix);
051308f6 1951 else
7be57610
BY
1952 fprintf(o->file, "%sBinary files %s and %s differ\n",
1953 line_prefix, lbl[0], lbl[1]);
34a5e1a2 1954 o->found_changes = 1;
051308f6 1955 }
6973dcae
JH
1956 else {
1957 /* Crazy xdl interfaces.. */
1958 const char *diffopts = getenv("GIT_DIFF_OPTS");
1959 xpparam_t xpp;
1960 xdemitconf_t xecfg;
6973dcae 1961 struct emit_callback ecbdata;
be58e70d 1962 const struct userdiff_funcname *pe;
f258475a 1963
296c6bb2 1964 if (!DIFF_XDL_TST(o, WHITESPACE_FLAGS) || must_show_header) {
3e97c7c6
GB
1965 fprintf(o->file, "%s", header.buf);
1966 strbuf_reset(&header);
1967 }
1968
840383b2
JK
1969 mf1.size = fill_textconv(textconv_one, one, &mf1.ptr);
1970 mf2.size = fill_textconv(textconv_two, two, &mf2.ptr);
04427ac8 1971
45e7ca0f
BC
1972 pe = diff_funcname_pattern(one);
1973 if (!pe)
1974 pe = diff_funcname_pattern(two);
6973dcae 1975
9ccd0a88 1976 memset(&xpp, 0, sizeof(xpp));
30b25010 1977 memset(&xecfg, 0, sizeof(xecfg));
cd112cef 1978 memset(&ecbdata, 0, sizeof(ecbdata));
6973dcae 1979 ecbdata.label_path = lbl;
8f67f8ae 1980 ecbdata.color_diff = DIFF_OPT_TST(o, COLOR_DIFF);
34a5e1a2 1981 ecbdata.found_changesp = &o->found_changes;
cf1b7869 1982 ecbdata.ws_rule = whitespace_rule(name_b ? name_b : name_a);
690ed843 1983 if (ecbdata.ws_rule & WS_BLANK_AT_EOF)
d68fe26f 1984 check_blank_at_eof(&mf1, &mf2, &ecbdata);
a3c158d4 1985 ecbdata.opt = o;
3e97c7c6 1986 ecbdata.header = header.len ? &header : NULL;
582aa00b 1987 xpp.flags = o->xdl_opts;
ee1e5412 1988 xecfg.ctxlen = o->context;
6d0e674a 1989 xecfg.interhunkctxlen = o->interhunkcontext;
6973dcae 1990 xecfg.flags = XDL_EMIT_FUNCNAMES;
45e7ca0f 1991 if (pe)
a013585b 1992 xdiff_set_find_func(&xecfg, pe->pattern, pe->cflags);
6973dcae
JH
1993 if (!diffopts)
1994 ;
cc44c765 1995 else if (!prefixcmp(diffopts, "--unified="))
6973dcae 1996 xecfg.ctxlen = strtoul(diffopts + 10, NULL, 10);
cc44c765 1997 else if (!prefixcmp(diffopts, "-u"))
6973dcae 1998 xecfg.ctxlen = strtoul(diffopts + 2, NULL, 10);
882749a0
TR
1999 if (o->word_diff) {
2000 int i;
2001
f59a59e2
JS
2002 ecbdata.diff_words =
2003 xcalloc(1, sizeof(struct diff_words_data));
882749a0 2004 ecbdata.diff_words->type = o->word_diff;
4297c0ae 2005 ecbdata.diff_words->opt = o;
80c49c3d
TR
2006 if (!o->word_regex)
2007 o->word_regex = userdiff_word_regex(one);
2008 if (!o->word_regex)
2009 o->word_regex = userdiff_word_regex(two);
98a4d87b
BSSJ
2010 if (!o->word_regex)
2011 o->word_regex = diff_word_regex_cfg;
2b6a5417
JS
2012 if (o->word_regex) {
2013 ecbdata.diff_words->word_regex = (regex_t *)
2014 xmalloc(sizeof(regex_t));
2015 if (regcomp(ecbdata.diff_words->word_regex,
bf82940d
TR
2016 o->word_regex,
2017 REG_EXTENDED | REG_NEWLINE))
2b6a5417
JS
2018 die ("Invalid regular expression: %s",
2019 o->word_regex);
2020 }
882749a0
TR
2021 for (i = 0; i < ARRAY_SIZE(diff_words_styles); i++) {
2022 if (o->word_diff == diff_words_styles[i].type) {
2023 ecbdata.diff_words->style =
2024 &diff_words_styles[i];
2025 break;
2026 }
2027 }
2028 if (DIFF_OPT_TST(o, COLOR_DIFF)) {
2029 struct diff_words_style *st = ecbdata.diff_words->style;
2030 st->old.color = diff_get_color_opt(o, DIFF_FILE_OLD);
2031 st->new.color = diff_get_color_opt(o, DIFF_FILE_NEW);
2032 st->ctx.color = diff_get_color_opt(o, DIFF_PLAIN);
2033 }
c0c77734 2034 }
8a3f524b 2035 xdi_diff_outf(&mf1, &mf2, fn_out_consume, &ecbdata,
dfea7900 2036 &xpp, &xecfg);
882749a0 2037 if (o->word_diff)
f59a59e2 2038 free_diff_words_data(&ecbdata);
04427ac8
JK
2039 if (textconv_one)
2040 free(mf1.ptr);
2041 if (textconv_two)
2042 free(mf2.ptr);
8cfe5f1c 2043 xdiff_clear_find_func(&xecfg);
6973dcae
JH
2044 }
2045
2046 free_ab_and_return:
3e97c7c6 2047 strbuf_release(&header);
fc3abdf5
JH
2048 diff_free_filespec_data(one);
2049 diff_free_filespec_data(two);
6973dcae
JH
2050 free(a_one);
2051 free(b_two);
2052 return;
2053}
2054
2055static void builtin_diffstat(const char *name_a, const char *name_b,
2056 struct diff_filespec *one,
2057 struct diff_filespec *two,
710158e3 2058 struct diffstat_t *diffstat,
0d21efa5 2059 struct diff_options *o,
710158e3 2060 int complete_rewrite)
6973dcae
JH
2061{
2062 mmfile_t mf1, mf2;
2063 struct diffstat_file *data;
2064
2065 data = diffstat_add(diffstat, name_a, name_b);
2066
2067 if (!one || !two) {
2068 data->is_unmerged = 1;
2069 return;
2070 }
710158e3
JH
2071 if (complete_rewrite) {
2072 diff_populate_filespec(one, 0);
2073 diff_populate_filespec(two, 0);
2074 data->deleted = count_lines(one->data, one->size);
2075 data->added = count_lines(two->data, two->size);
fc3abdf5 2076 goto free_and_return;
710158e3 2077 }
6973dcae
JH
2078 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
2079 die("unable to read files to diff");
2080
29a3eefd 2081 if (diff_filespec_is_binary(one) || diff_filespec_is_binary(two)) {
6973dcae 2082 data->is_binary = 1;
b1882587
AP
2083 data->added = mf2.size;
2084 data->deleted = mf1.size;
2085 } else {
6973dcae
JH
2086 /* Crazy xdl interfaces.. */
2087 xpparam_t xpp;
2088 xdemitconf_t xecfg;
6973dcae 2089
9ccd0a88 2090 memset(&xpp, 0, sizeof(xpp));
30b25010 2091 memset(&xecfg, 0, sizeof(xecfg));
582aa00b 2092 xpp.flags = o->xdl_opts;
8a3f524b 2093 xdi_diff_outf(&mf1, &mf2, diffstat_consume, diffstat,
dfea7900 2094 &xpp, &xecfg);
6973dcae 2095 }
fc3abdf5
JH
2096
2097 free_and_return:
2098 diff_free_filespec_data(one);
2099 diff_free_filespec_data(two);
6973dcae
JH
2100}
2101
88246898 2102static void builtin_checkdiff(const char *name_a, const char *name_b,
cd676a51 2103 const char *attr_path,
5ff10dd6
JH
2104 struct diff_filespec *one,
2105 struct diff_filespec *two,
2106 struct diff_options *o)
88246898
JS
2107{
2108 mmfile_t mf1, mf2;
2109 struct checkdiff_t data;
2110
2111 if (!two)
2112 return;
2113
2114 memset(&data, 0, sizeof(data));
88246898
JS
2115 data.filename = name_b ? name_b : name_a;
2116 data.lineno = 0;
1ba111d1 2117 data.o = o;
cd676a51 2118 data.ws_rule = whitespace_rule(attr_path);
a757c646 2119 data.conflict_marker_size = ll_merge_marker_size(attr_path);
88246898
JS
2120
2121 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
2122 die("unable to read files to diff");
2123
5ff10dd6
JH
2124 /*
2125 * All the other codepaths check both sides, but not checking
2126 * the "old" side here is deliberate. We are checking the newly
2127 * introduced changes, and as long as the "new" side is text, we
2128 * can and should check what it introduces.
2129 */
29a3eefd 2130 if (diff_filespec_is_binary(two))
fc3abdf5 2131 goto free_and_return;
88246898
JS
2132 else {
2133 /* Crazy xdl interfaces.. */
2134 xpparam_t xpp;
2135 xdemitconf_t xecfg;
88246898 2136
9ccd0a88 2137 memset(&xpp, 0, sizeof(xpp));
30b25010 2138 memset(&xecfg, 0, sizeof(xecfg));
c35539eb 2139 xecfg.ctxlen = 1; /* at least one context line */
582aa00b 2140 xpp.flags = 0;
8a3f524b 2141 xdi_diff_outf(&mf1, &mf2, checkdiff_consume, &data,
dfea7900 2142 &xpp, &xecfg);
877f23cc 2143
467babf8 2144 if (data.ws_rule & WS_BLANK_AT_EOF) {
d68fe26f
JH
2145 struct emit_callback ecbdata;
2146 int blank_at_eof;
2147
2148 ecbdata.ws_rule = data.ws_rule;
2149 check_blank_at_eof(&mf1, &mf2, &ecbdata);
2150 blank_at_eof = ecbdata.blank_at_eof_in_preimage;
2151
467babf8
JH
2152 if (blank_at_eof) {
2153 static char *err;
2154 if (!err)
2155 err = whitespace_error_string(WS_BLANK_AT_EOF);
2156 fprintf(o->file, "%s:%d: %s.\n",
2157 data.filename, blank_at_eof, err);
2158 data.status = 1; /* report errors */
2159 }
877f23cc 2160 }
88246898 2161 }
fc3abdf5
JH
2162 free_and_return:
2163 diff_free_filespec_data(one);
2164 diff_free_filespec_data(two);
62c64895
WC
2165 if (data.status)
2166 DIFF_OPT_SET(o, CHECK_FAILED);
88246898
JS
2167}
2168
6973dcae
JH
2169struct diff_filespec *alloc_filespec(const char *path)
2170{
2171 int namelen = strlen(path);
2172 struct diff_filespec *spec = xmalloc(sizeof(*spec) + namelen + 1);
2173
2174 memset(spec, 0, sizeof(*spec));
2175 spec->path = (char *)(spec + 1);
2176 memcpy(spec->path, path, namelen+1);
9fb88419 2177 spec->count = 1;
122aa6f9 2178 spec->is_binary = -1;
6973dcae
JH
2179 return spec;
2180}
2181
9fb88419
LT
2182void free_filespec(struct diff_filespec *spec)
2183{
2184 if (!--spec->count) {
2185 diff_free_filespec_data(spec);
2186 free(spec);
2187 }
2188}
2189
6973dcae
JH
2190void fill_filespec(struct diff_filespec *spec, const unsigned char *sha1,
2191 unsigned short mode)
2192{
2193 if (mode) {
2194 spec->mode = canon_mode(mode);
e702496e 2195 hashcpy(spec->sha1, sha1);
0bef57ee 2196 spec->sha1_valid = !is_null_sha1(sha1);
6973dcae
JH
2197 }
2198}
2199
2200/*
5adf317b 2201 * Given a name and sha1 pair, if the index tells us the file in
6973dcae
JH
2202 * the work tree has that object contents, return true, so that
2203 * prepare_temp_file() does not have to inflate and extract.
2204 */
1510fea7 2205static int reuse_worktree_file(const char *name, const unsigned char *sha1, int want_file)
6973dcae
JH
2206{
2207 struct cache_entry *ce;
2208 struct stat st;
2209 int pos, len;
2210
150115ad
JH
2211 /*
2212 * We do not read the cache ourselves here, because the
6973dcae
JH
2213 * benchmark with my previous version that always reads cache
2214 * shows that it makes things worse for diff-tree comparing
2215 * two linux-2.6 kernel trees in an already checked out work
2216 * tree. This is because most diff-tree comparisons deal with
2217 * only a small number of files, while reading the cache is
2218 * expensive for a large project, and its cost outweighs the
2219 * savings we get by not inflating the object to a temporary
2220 * file. Practically, this code only helps when we are used
2221 * by diff-cache --cached, which does read the cache before
2222 * calling us.
2223 */
2224 if (!active_cache)
2225 return 0;
2226
1510fea7
SP
2227 /* We want to avoid the working directory if our caller
2228 * doesn't need the data in a normal file, this system
2229 * is rather slow with its stat/open/mmap/close syscalls,
2230 * and the object is contained in a pack file. The pack
2231 * is probably already open and will be faster to obtain
2232 * the data through than the working directory. Loose
2233 * objects however would tend to be slower as they need
2234 * to be individually opened and inflated.
2235 */
cd673c1f 2236 if (!FAST_WORKING_DIRECTORY && !want_file && has_sha1_pack(sha1))
1510fea7
SP
2237 return 0;
2238
6973dcae
JH
2239 len = strlen(name);
2240 pos = cache_name_pos(name, len);
2241 if (pos < 0)
2242 return 0;
2243 ce = active_cache[pos];
eadb5831
JH
2244
2245 /*
2246 * This is not the sha1 we are looking for, or
2247 * unreusable because it is not a regular file.
2248 */
2249 if (hashcmp(sha1, ce->sha1) || !S_ISREG(ce->ce_mode))
6973dcae 2250 return 0;
eadb5831 2251
150115ad
JH
2252 /*
2253 * If ce is marked as "assume unchanged", there is no
2254 * guarantee that work tree matches what we are looking for.
2255 */
b4d1690d 2256 if ((ce->ce_flags & CE_VALID) || ce_skip_worktree(ce))
150115ad
JH
2257 return 0;
2258
eadb5831
JH
2259 /*
2260 * If ce matches the file in the work tree, we can reuse it.
6973dcae 2261 */
eadb5831
JH
2262 if (ce_uptodate(ce) ||
2263 (!lstat(name, &st) && !ce_match_stat(ce, &st, 0)))
2264 return 1;
2265
2266 return 0;
6973dcae
JH
2267}
2268
3afaa72d
JH
2269static int populate_from_stdin(struct diff_filespec *s)
2270{
f285a2d7 2271 struct strbuf buf = STRBUF_INIT;
c32f749f 2272 size_t size = 0;
af6eb822 2273
f1696ee3 2274 if (strbuf_read(&buf, 0, 0) < 0)
af6eb822 2275 return error("error while reading from stdin %s",
3afaa72d 2276 strerror(errno));
af6eb822 2277
3afaa72d 2278 s->should_munmap = 0;
c32f749f
RS
2279 s->data = strbuf_detach(&buf, &size);
2280 s->size = size;
3afaa72d
JH
2281 s->should_free = 1;
2282 return 0;
2283}
2284
04786756
LT
2285static int diff_populate_gitlink(struct diff_filespec *s, int size_only)
2286{
2287 int len;
8e08b419
JH
2288 char *data = xmalloc(100), *dirty = "";
2289
2290 /* Are we looking at the work tree? */
85adbf2f 2291 if (s->dirty_submodule)
8e08b419
JH
2292 dirty = "-dirty";
2293
04786756 2294 len = snprintf(data, 100,
8e08b419 2295 "Subproject commit %s%s\n", sha1_to_hex(s->sha1), dirty);
04786756
LT
2296 s->data = data;
2297 s->size = len;
2298 s->should_free = 1;
2299 if (size_only) {
2300 s->data = NULL;
2301 free(data);
2302 }
2303 return 0;
2304}
2305
6973dcae
JH
2306/*
2307 * While doing rename detection and pickaxe operation, we may need to
2308 * grab the data for the blob (or file) for our own in-core comparison.
2309 * diff_filespec has data and size fields for this purpose.
2310 */
2311int diff_populate_filespec(struct diff_filespec *s, int size_only)
2312{
2313 int err = 0;
2314 if (!DIFF_FILE_VALID(s))
2315 die("internal error: asking to populate invalid file.");
2316 if (S_ISDIR(s->mode))
2317 return -1;
2318
6973dcae 2319 if (s->data)
fc3abdf5 2320 return 0;
04786756 2321
6e0b8ed6
JH
2322 if (size_only && 0 < s->size)
2323 return 0;
2324
302b9282 2325 if (S_ISGITLINK(s->mode))
04786756
LT
2326 return diff_populate_gitlink(s, size_only);
2327
6973dcae 2328 if (!s->sha1_valid ||
1510fea7 2329 reuse_worktree_file(s->path, s->sha1, 0)) {
f285a2d7 2330 struct strbuf buf = STRBUF_INIT;
6973dcae
JH
2331 struct stat st;
2332 int fd;
6c510bee 2333
3afaa72d
JH
2334 if (!strcmp(s->path, "-"))
2335 return populate_from_stdin(s);
2336
6973dcae
JH
2337 if (lstat(s->path, &st) < 0) {
2338 if (errno == ENOENT) {
2339 err_empty:
2340 err = -1;
2341 empty:
d2543b8e 2342 s->data = (char *)"";
6973dcae
JH
2343 s->size = 0;
2344 return err;
2345 }
2346 }
dc49cd76 2347 s->size = xsize_t(st.st_size);
6973dcae
JH
2348 if (!s->size)
2349 goto empty;
6973dcae 2350 if (S_ISLNK(st.st_mode)) {
cf219d8c
LT
2351 struct strbuf sb = STRBUF_INIT;
2352
2353 if (strbuf_readlink(&sb, s->path, s->size))
6973dcae 2354 goto err_empty;
0956a6db
RS
2355 s->size = sb.len;
2356 s->data = strbuf_detach(&sb, NULL);
cf219d8c 2357 s->should_free = 1;
6973dcae
JH
2358 return 0;
2359 }
cf219d8c
LT
2360 if (size_only)
2361 return 0;
6973dcae
JH
2362 fd = open(s->path, O_RDONLY);
2363 if (fd < 0)
2364 goto err_empty;
c4712e45 2365 s->data = xmmap(NULL, s->size, PROT_READ, MAP_PRIVATE, fd, 0);
6973dcae 2366 close(fd);
6973dcae 2367 s->should_munmap = 1;
6c510bee
LT
2368
2369 /*
2370 * Convert from working tree format to canonical git format
2371 */
21e5ad50 2372 if (convert_to_git(s->path, s->data, s->size, &buf, safe_crlf)) {
c32f749f 2373 size_t size = 0;
6c510bee
LT
2374 munmap(s->data, s->size);
2375 s->should_munmap = 0;
c32f749f
RS
2376 s->data = strbuf_detach(&buf, &size);
2377 s->size = size;
6c510bee
LT
2378 s->should_free = 1;
2379 }
6973dcae
JH
2380 }
2381 else {
21666f1a 2382 enum object_type type;
6e0b8ed6 2383 if (size_only)
21666f1a 2384 type = sha1_object_info(s->sha1, &s->size);
6973dcae 2385 else {
21666f1a 2386 s->data = read_sha1_file(s->sha1, &type, &s->size);
6973dcae
JH
2387 s->should_free = 1;
2388 }
2389 }
2390 return 0;
2391}
2392
8ae92e63 2393void diff_free_filespec_blob(struct diff_filespec *s)
6973dcae
JH
2394{
2395 if (s->should_free)
2396 free(s->data);
2397 else if (s->should_munmap)
2398 munmap(s->data, s->size);
fc3abdf5
JH
2399
2400 if (s->should_free || s->should_munmap) {
2401 s->should_free = s->should_munmap = 0;
2402 s->data = NULL;
2403 }
eede7b7d
JK
2404}
2405
2406void diff_free_filespec_data(struct diff_filespec *s)
2407{
8ae92e63 2408 diff_free_filespec_blob(s);
6973dcae
JH
2409 free(s->cnt_data);
2410 s->cnt_data = NULL;
2411}
2412
4e218f54 2413static void prep_temp_blob(const char *path, struct diff_tempfile *temp,
6973dcae
JH
2414 void *blob,
2415 unsigned long size,
2416 const unsigned char *sha1,
2417 int mode)
2418{
2419 int fd;
4e218f54 2420 struct strbuf buf = STRBUF_INIT;
003b33a8
DA
2421 struct strbuf template = STRBUF_INIT;
2422 char *path_dup = xstrdup(path);
2423 const char *base = basename(path_dup);
6973dcae 2424
003b33a8
DA
2425 /* Generate "XXXXXX_basename.ext" */
2426 strbuf_addstr(&template, "XXXXXX_");
2427 strbuf_addstr(&template, base);
2428
2429 fd = git_mkstemps(temp->tmp_path, PATH_MAX, template.buf,
2430 strlen(base) + 1);
6973dcae 2431 if (fd < 0)
d824cbba 2432 die_errno("unable to create temp-file");
4e218f54
JS
2433 if (convert_to_working_tree(path,
2434 (const char *)blob, (size_t)size, &buf)) {
2435 blob = buf.buf;
2436 size = buf.len;
2437 }
93822c22 2438 if (write_in_full(fd, blob, size) != size)
0721c314 2439 die_errno("unable to write temp-file");
6973dcae
JH
2440 close(fd);
2441 temp->name = temp->tmp_path;
2442 strcpy(temp->hex, sha1_to_hex(sha1));
2443 temp->hex[40] = 0;
2444 sprintf(temp->mode, "%06o", mode);
4e218f54 2445 strbuf_release(&buf);
003b33a8
DA
2446 strbuf_release(&template);
2447 free(path_dup);
6973dcae
JH
2448}
2449
479b0ae8
JK
2450static struct diff_tempfile *prepare_temp_file(const char *name,
2451 struct diff_filespec *one)
6973dcae 2452{
479b0ae8
JK
2453 struct diff_tempfile *temp = claim_diff_tempfile();
2454
6973dcae
JH
2455 if (!DIFF_FILE_VALID(one)) {
2456 not_a_valid_file:
2457 /* A '-' entry produces this for file-2, and
2458 * a '+' entry produces this for file-1.
2459 */
2460 temp->name = "/dev/null";
2461 strcpy(temp->hex, ".");
2462 strcpy(temp->mode, ".");
479b0ae8
JK
2463 return temp;
2464 }
2465
2466 if (!remove_tempfile_installed) {
2467 atexit(remove_tempfile);
57b235a4 2468 sigchain_push_common(remove_tempfile_on_signal);
479b0ae8 2469 remove_tempfile_installed = 1;
6973dcae
JH
2470 }
2471
2472 if (!one->sha1_valid ||
1510fea7 2473 reuse_worktree_file(name, one->sha1, 1)) {
6973dcae
JH
2474 struct stat st;
2475 if (lstat(name, &st) < 0) {
2476 if (errno == ENOENT)
2477 goto not_a_valid_file;
d824cbba 2478 die_errno("stat(%s)", name);
6973dcae
JH
2479 }
2480 if (S_ISLNK(st.st_mode)) {
3cd7388d
JK
2481 struct strbuf sb = STRBUF_INIT;
2482 if (strbuf_readlink(&sb, name, st.st_size) < 0)
0721c314 2483 die_errno("readlink(%s)", name);
3cd7388d 2484 prep_temp_blob(name, temp, sb.buf, sb.len,
6973dcae
JH
2485 (one->sha1_valid ?
2486 one->sha1 : null_sha1),
2487 (one->sha1_valid ?
2488 one->mode : S_IFLNK));
3cd7388d 2489 strbuf_release(&sb);
6973dcae
JH
2490 }
2491 else {
2492 /* we can borrow from the file in the work tree */
2493 temp->name = name;
2494 if (!one->sha1_valid)
2495 strcpy(temp->hex, sha1_to_hex(null_sha1));
2496 else
2497 strcpy(temp->hex, sha1_to_hex(one->sha1));
2498 /* Even though we may sometimes borrow the
2499 * contents from the work tree, we always want
2500 * one->mode. mode is trustworthy even when
2501 * !(one->sha1_valid), as long as
2502 * DIFF_FILE_VALID(one).
2503 */
2504 sprintf(temp->mode, "%06o", one->mode);
2505 }
479b0ae8 2506 return temp;
6973dcae
JH
2507 }
2508 else {
2509 if (diff_populate_filespec(one, 0))
2510 die("cannot read data blob for %s", one->path);
4e218f54 2511 prep_temp_blob(name, temp, one->data, one->size,
6973dcae
JH
2512 one->sha1, one->mode);
2513 }
479b0ae8 2514 return temp;
6973dcae
JH
2515}
2516
6973dcae
JH
2517/* An external diff command takes:
2518 *
2519 * diff-cmd name infile1 infile1-sha1 infile1-mode \
2520 * infile2 infile2-sha1 infile2-mode [ rename-to ]
2521 *
2522 */
2523static void run_external_diff(const char *pgm,
2524 const char *name,
2525 const char *other,
2526 struct diff_filespec *one,
2527 struct diff_filespec *two,
2528 const char *xfrm_msg,
2529 int complete_rewrite)
2530{
2531 const char *spawn_arg[10];
6973dcae 2532 int retval;
6973dcae
JH
2533 const char **arg = &spawn_arg[0];
2534
6973dcae 2535 if (one && two) {
479b0ae8
JK
2536 struct diff_tempfile *temp_one, *temp_two;
2537 const char *othername = (other ? other : name);
2538 temp_one = prepare_temp_file(name, one);
2539 temp_two = prepare_temp_file(othername, two);
6973dcae
JH
2540 *arg++ = pgm;
2541 *arg++ = name;
479b0ae8
JK
2542 *arg++ = temp_one->name;
2543 *arg++ = temp_one->hex;
2544 *arg++ = temp_one->mode;
2545 *arg++ = temp_two->name;
2546 *arg++ = temp_two->hex;
2547 *arg++ = temp_two->mode;
6973dcae
JH
2548 if (other) {
2549 *arg++ = other;
2550 *arg++ = xfrm_msg;
2551 }
2552 } else {
2553 *arg++ = pgm;
2554 *arg++ = name;
2555 }
2556 *arg = NULL;
d5535ec7 2557 fflush(NULL);
7ed7fac4 2558 retval = run_command_v_opt(spawn_arg, RUN_USING_SHELL);
6973dcae
JH
2559 remove_tempfile();
2560 if (retval) {
2561 fprintf(stderr, "external diff died, stopping at %s.\n", name);
2562 exit(1);
2563 }
2564}
2565
b67b9612
JH
2566static int similarity_index(struct diff_filepair *p)
2567{
2568 return p->score * 100 / MAX_SCORE;
2569}
2570
2571static void fill_metainfo(struct strbuf *msg,
2572 const char *name,
2573 const char *other,
2574 struct diff_filespec *one,
2575 struct diff_filespec *two,
2576 struct diff_options *o,
37466447 2577 struct diff_filepair *p,
5977744d 2578 int *must_show_header,
37466447 2579 int use_color)
b67b9612 2580{
37466447
BW
2581 const char *set = diff_get_color(use_color, DIFF_METAINFO);
2582 const char *reset = diff_get_color(use_color, DIFF_RESET);
7be57610
BY
2583 struct strbuf *msgbuf;
2584 char *line_prefix = "";
2585
296c6bb2 2586 *must_show_header = 1;
7be57610
BY
2587 if (o->output_prefix) {
2588 msgbuf = o->output_prefix(o, o->output_prefix_data);
2589 line_prefix = msgbuf->buf;
2590 }
b67b9612
JH
2591 strbuf_init(msg, PATH_MAX * 2 + 300);
2592 switch (p->status) {
2593 case DIFF_STATUS_COPIED:
98ad90fb
JH
2594 strbuf_addf(msg, "%s%ssimilarity index %d%%",
2595 line_prefix, set, similarity_index(p));
2596 strbuf_addf(msg, "%s\n%s%scopy from ",
2597 reset, line_prefix, set);
b67b9612 2598 quote_c_style(name, msg, NULL, 0);
98ad90fb 2599 strbuf_addf(msg, "%s\n%s%scopy to ", reset, line_prefix, set);
b67b9612 2600 quote_c_style(other, msg, NULL, 0);
37466447 2601 strbuf_addf(msg, "%s\n", reset);
b67b9612
JH
2602 break;
2603 case DIFF_STATUS_RENAMED:
98ad90fb
JH
2604 strbuf_addf(msg, "%s%ssimilarity index %d%%",
2605 line_prefix, set, similarity_index(p));
2606 strbuf_addf(msg, "%s\n%s%srename from ",
2607 reset, line_prefix, set);
b67b9612 2608 quote_c_style(name, msg, NULL, 0);
98ad90fb
JH
2609 strbuf_addf(msg, "%s\n%s%srename to ",
2610 reset, line_prefix, set);
b67b9612 2611 quote_c_style(other, msg, NULL, 0);
37466447 2612 strbuf_addf(msg, "%s\n", reset);
b67b9612
JH
2613 break;
2614 case DIFF_STATUS_MODIFIED:
2615 if (p->score) {
98ad90fb
JH
2616 strbuf_addf(msg, "%s%sdissimilarity index %d%%%s\n",
2617 line_prefix,
37466447 2618 set, similarity_index(p), reset);
b67b9612
JH
2619 break;
2620 }
2621 /* fallthru */
2622 default:
296c6bb2 2623 *must_show_header = 0;
b67b9612
JH
2624 }
2625 if (one && two && hashcmp(one->sha1, two->sha1)) {
2626 int abbrev = DIFF_OPT_TST(o, FULL_INDEX) ? 40 : DEFAULT_ABBREV;
2627
2628 if (DIFF_OPT_TST(o, BINARY)) {
2629 mmfile_t mf;
2630 if ((!fill_mmfile(&mf, one) && diff_filespec_is_binary(one)) ||
2631 (!fill_mmfile(&mf, two) && diff_filespec_is_binary(two)))
2632 abbrev = 40;
2633 }
98ad90fb
JH
2634 strbuf_addf(msg, "%s%sindex %s..", set,
2635 line_prefix,
3e5a188f
JH
2636 find_unique_abbrev(one->sha1, abbrev));
2637 strbuf_addstr(msg, find_unique_abbrev(two->sha1, abbrev));
b67b9612
JH
2638 if (one->mode == two->mode)
2639 strbuf_addf(msg, " %06o", one->mode);
37466447 2640 strbuf_addf(msg, "%s\n", reset);
b67b9612 2641 }
b67b9612
JH
2642}
2643
6973dcae
JH
2644static void run_diff_cmd(const char *pgm,
2645 const char *name,
2646 const char *other,
cd676a51 2647 const char *attr_path,
6973dcae
JH
2648 struct diff_filespec *one,
2649 struct diff_filespec *two,
b67b9612 2650 struct strbuf *msg,
051308f6 2651 struct diff_options *o,
b67b9612 2652 struct diff_filepair *p)
6973dcae 2653{
b67b9612
JH
2654 const char *xfrm_msg = NULL;
2655 int complete_rewrite = (p->status == DIFF_STATUS_MODIFIED) && p->score;
296c6bb2 2656 int must_show_header = 0;
b67b9612 2657
8f67f8ae 2658 if (!DIFF_OPT_TST(o, ALLOW_EXTERNAL))
f1af60bd
JH
2659 pgm = NULL;
2660 else {
be58e70d
JK
2661 struct userdiff_driver *drv = userdiff_find_by_path(attr_path);
2662 if (drv && drv->external)
2663 pgm = drv->external;
f1af60bd
JH
2664 }
2665
37466447
BW
2666 if (msg) {
2667 /*
2668 * don't use colors when the header is intended for an
2669 * external diff driver
2670 */
2671 fill_metainfo(msg, name, other, one, two, o, p,
5977744d 2672 &must_show_header,
37466447
BW
2673 DIFF_OPT_TST(o, COLOR_DIFF) && !pgm);
2674 xfrm_msg = msg->len ? msg->buf : NULL;
2675 }
2676
6973dcae
JH
2677 if (pgm) {
2678 run_external_diff(pgm, name, other, one, two, xfrm_msg,
2679 complete_rewrite);
2680 return;
2681 }
2682 if (one && two)
2683 builtin_diff(name, other ? other : name,
296c6bb2
CC
2684 one, two, xfrm_msg, must_show_header,
2685 o, complete_rewrite);
6973dcae 2686 else
c0c77734 2687 fprintf(o->file, "* Unmerged path %s\n", name);
6973dcae
JH
2688}
2689
2690static void diff_fill_sha1_info(struct diff_filespec *one)
2691{
2692 if (DIFF_FILE_VALID(one)) {
2693 if (!one->sha1_valid) {
2694 struct stat st;
5332b2af
JS
2695 if (!strcmp(one->path, "-")) {
2696 hashcpy(one->sha1, null_sha1);
2697 return;
2698 }
6973dcae 2699 if (lstat(one->path, &st) < 0)
0721c314 2700 die_errno("stat '%s'", one->path);
6973dcae 2701 if (index_path(one->sha1, one->path, &st, 0))
d7530708 2702 die("cannot hash %s", one->path);
6973dcae
JH
2703 }
2704 }
2705 else
e702496e 2706 hashclr(one->sha1);
6973dcae
JH
2707}
2708
cd676a51
JH
2709static void strip_prefix(int prefix_length, const char **namep, const char **otherp)
2710{
2711 /* Strip the prefix but do not molest /dev/null and absolute paths */
2712 if (*namep && **namep != '/')
2713 *namep += prefix_length;
2714 if (*otherp && **otherp != '/')
2715 *otherp += prefix_length;
2716}
2717
6973dcae
JH
2718static void run_diff(struct diff_filepair *p, struct diff_options *o)
2719{
2720 const char *pgm = external_diff();
663af342 2721 struct strbuf msg;
663af342
PH
2722 struct diff_filespec *one = p->one;
2723 struct diff_filespec *two = p->two;
6973dcae
JH
2724 const char *name;
2725 const char *other;
cd676a51 2726 const char *attr_path;
663af342 2727
cd676a51
JH
2728 name = p->one->path;
2729 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
2730 attr_path = name;
2731 if (o->prefix_length)
2732 strip_prefix(o->prefix_length, &name, &other);
6973dcae
JH
2733
2734 if (DIFF_PAIR_UNMERGED(p)) {
cd676a51 2735 run_diff_cmd(pgm, name, NULL, attr_path,
b67b9612 2736 NULL, NULL, NULL, o, p);
6973dcae
JH
2737 return;
2738 }
2739
6973dcae
JH
2740 diff_fill_sha1_info(one);
2741 diff_fill_sha1_info(two);
2742
6973dcae
JH
2743 if (!pgm &&
2744 DIFF_FILE_VALID(one) && DIFF_FILE_VALID(two) &&
2745 (S_IFMT & one->mode) != (S_IFMT & two->mode)) {
b67b9612
JH
2746 /*
2747 * a filepair that changes between file and symlink
6973dcae
JH
2748 * needs to be split into deletion and creation.
2749 */
2750 struct diff_filespec *null = alloc_filespec(two->path);
cd676a51 2751 run_diff_cmd(NULL, name, other, attr_path,
b67b9612 2752 one, null, &msg, o, p);
6973dcae 2753 free(null);
b67b9612
JH
2754 strbuf_release(&msg);
2755
6973dcae 2756 null = alloc_filespec(one->path);
cd676a51 2757 run_diff_cmd(NULL, name, other, attr_path,
b67b9612 2758 null, two, &msg, o, p);
6973dcae
JH
2759 free(null);
2760 }
2761 else
cd676a51 2762 run_diff_cmd(pgm, name, other, attr_path,
b67b9612 2763 one, two, &msg, o, p);
6973dcae 2764
663af342 2765 strbuf_release(&msg);
6973dcae
JH
2766}
2767
2768static void run_diffstat(struct diff_filepair *p, struct diff_options *o,
2769 struct diffstat_t *diffstat)
2770{
2771 const char *name;
2772 const char *other;
710158e3 2773 int complete_rewrite = 0;
6973dcae
JH
2774
2775 if (DIFF_PAIR_UNMERGED(p)) {
2776 /* unmerged */
0d21efa5 2777 builtin_diffstat(p->one->path, NULL, NULL, NULL, diffstat, o, 0);
6973dcae
JH
2778 return;
2779 }
2780
2781 name = p->one->path;
2782 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
2783
cd676a51
JH
2784 if (o->prefix_length)
2785 strip_prefix(o->prefix_length, &name, &other);
2786
6973dcae
JH
2787 diff_fill_sha1_info(p->one);
2788 diff_fill_sha1_info(p->two);
2789
710158e3
JH
2790 if (p->status == DIFF_STATUS_MODIFIED && p->score)
2791 complete_rewrite = 1;
0d21efa5 2792 builtin_diffstat(name, other, p->one, p->two, diffstat, o, complete_rewrite);
6973dcae
JH
2793}
2794
88246898
JS
2795static void run_checkdiff(struct diff_filepair *p, struct diff_options *o)
2796{
2797 const char *name;
2798 const char *other;
cd676a51 2799 const char *attr_path;
88246898
JS
2800
2801 if (DIFF_PAIR_UNMERGED(p)) {
2802 /* unmerged */
2803 return;
2804 }
2805
2806 name = p->one->path;
2807 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
cd676a51
JH
2808 attr_path = other ? other : name;
2809
2810 if (o->prefix_length)
2811 strip_prefix(o->prefix_length, &name, &other);
88246898
JS
2812
2813 diff_fill_sha1_info(p->one);
2814 diff_fill_sha1_info(p->two);
2815
cd676a51 2816 builtin_checkdiff(name, other, attr_path, p->one, p->two, o);
88246898
JS
2817}
2818
6973dcae
JH
2819void diff_setup(struct diff_options *options)
2820{
2821 memset(options, 0, sizeof(*options));
9ca5df90 2822 memset(&diff_queued_diff, 0, sizeof(diff_queued_diff));
c0c77734
DB
2823
2824 options->file = stdout;
2825
6973dcae
JH
2826 options->line_termination = '\n';
2827 options->break_opt = -1;
2828 options->rename_limit = -1;
7df7c019 2829 options->dirstat_percent = 3;
ee1e5412 2830 options->context = 3;
6973dcae
JH
2831
2832 options->change = diff_change;
2833 options->add_remove = diff_addremove;
6b2f2d98 2834 if (diff_use_color_default > 0)
8f67f8ae 2835 DIFF_OPT_SET(options, COLOR_DIFF);
b68ea12e 2836 options->detect_rename = diff_detect_rename_default;
eab9a40b 2837
f89504dd
EC
2838 if (diff_no_prefix) {
2839 options->a_prefix = options->b_prefix = "";
2840 } else if (!diff_mnemonic_prefix) {
a5a818ee
JH
2841 options->a_prefix = "a/";
2842 options->b_prefix = "b/";
2843 }
6973dcae
JH
2844}
2845
2846int diff_setup_done(struct diff_options *options)
2847{
d7de00f7
TH
2848 int count = 0;
2849
2850 if (options->output_format & DIFF_FORMAT_NAME)
2851 count++;
2852 if (options->output_format & DIFF_FORMAT_NAME_STATUS)
2853 count++;
2854 if (options->output_format & DIFF_FORMAT_CHECKDIFF)
2855 count++;
2856 if (options->output_format & DIFF_FORMAT_NO_OUTPUT)
2857 count++;
2858 if (count > 1)
2859 die("--name-only, --name-status, --check and -s are mutually exclusive");
2860
f245194f
JH
2861 /*
2862 * Most of the time we can say "there are changes"
2863 * only by checking if there are changed paths, but
2864 * --ignore-whitespace* options force us to look
97bf2a08 2865 * inside contents.
f245194f
JH
2866 */
2867
2868 if (DIFF_XDL_TST(options, IGNORE_WHITESPACE) ||
2869 DIFF_XDL_TST(options, IGNORE_WHITESPACE_CHANGE) ||
2870 DIFF_XDL_TST(options, IGNORE_WHITESPACE_AT_EOL))
2871 DIFF_OPT_SET(options, DIFF_FROM_CONTENTS);
2872 else
2873 DIFF_OPT_CLR(options, DIFF_FROM_CONTENTS);
2874
8f67f8ae 2875 if (DIFF_OPT_TST(options, FIND_COPIES_HARDER))
03b9d560
JH
2876 options->detect_rename = DIFF_DETECT_COPY;
2877
cd676a51
JH
2878 if (!DIFF_OPT_TST(options, RELATIVE_NAME))
2879 options->prefix = NULL;
2880 if (options->prefix)
2881 options->prefix_length = strlen(options->prefix);
2882 else
2883 options->prefix_length = 0;
2884
c6744349
TH
2885 if (options->output_format & (DIFF_FORMAT_NAME |
2886 DIFF_FORMAT_NAME_STATUS |
2887 DIFF_FORMAT_CHECKDIFF |
2888 DIFF_FORMAT_NO_OUTPUT))
2889 options->output_format &= ~(DIFF_FORMAT_RAW |
74e2abe5 2890 DIFF_FORMAT_NUMSTAT |
c6744349 2891 DIFF_FORMAT_DIFFSTAT |
ebd124c6 2892 DIFF_FORMAT_SHORTSTAT |
7df7c019 2893 DIFF_FORMAT_DIRSTAT |
c6744349
TH
2894 DIFF_FORMAT_SUMMARY |
2895 DIFF_FORMAT_PATCH);
2896
6973dcae
JH
2897 /*
2898 * These cases always need recursive; we do not drop caller-supplied
2899 * recursive bits for other formats here.
2900 */
c6744349 2901 if (options->output_format & (DIFF_FORMAT_PATCH |
74e2abe5 2902 DIFF_FORMAT_NUMSTAT |
c6744349 2903 DIFF_FORMAT_DIFFSTAT |
ebd124c6 2904 DIFF_FORMAT_SHORTSTAT |
7df7c019 2905 DIFF_FORMAT_DIRSTAT |
d7014dc0 2906 DIFF_FORMAT_SUMMARY |
c6744349 2907 DIFF_FORMAT_CHECKDIFF))
8f67f8ae 2908 DIFF_OPT_SET(options, RECURSIVE);
5e363541 2909 /*
3969cf7d 2910 * Also pickaxe would not work very well if you do not say recursive
5e363541 2911 */
3969cf7d 2912 if (options->pickaxe)
8f67f8ae 2913 DIFF_OPT_SET(options, RECURSIVE);
ae6d5c1b
JL
2914 /*
2915 * When patches are generated, submodules diffed against the work tree
2916 * must be checked for dirtiness too so it can be shown in the output
2917 */
2918 if (options->output_format & DIFF_FORMAT_PATCH)
2919 DIFF_OPT_SET(options, DIRTY_SUBMODULES);
5e363541 2920
6973dcae
JH
2921 if (options->detect_rename && options->rename_limit < 0)
2922 options->rename_limit = diff_rename_limit_default;
2923 if (options->setup & DIFF_SETUP_USE_CACHE) {
2924 if (!active_cache)
2925 /* read-cache does not die even when it fails
2926 * so it is safe for us to do this here. Also
2927 * it does not smudge active_cache or active_nr
2928 * when it fails, so we do not have to worry about
2929 * cleaning it up ourselves either.
2930 */
2931 read_cache();
2932 }
6973dcae
JH
2933 if (options->abbrev <= 0 || 40 < options->abbrev)
2934 options->abbrev = 40; /* full */
2935
68aacb2f
JH
2936 /*
2937 * It does not make sense to show the first hit we happened
2938 * to have found. It does not make sense not to return with
2939 * exit code in such a case either.
2940 */
90b19941 2941 if (DIFF_OPT_TST(options, QUICK)) {
68aacb2f 2942 options->output_format = DIFF_FORMAT_NO_OUTPUT;
8f67f8ae 2943 DIFF_OPT_SET(options, EXIT_WITH_STATUS);
68aacb2f
JH
2944 }
2945
6973dcae
JH
2946 return 0;
2947}
2948
d2543b8e 2949static int opt_arg(const char *arg, int arg_short, const char *arg_long, int *val)
ee1e5412
LT
2950{
2951 char c, *eq;
2952 int len;
2953
2954 if (*arg != '-')
2955 return 0;
2956 c = *++arg;
2957 if (!c)
2958 return 0;
2959 if (c == arg_short) {
2960 c = *++arg;
2961 if (!c)
2962 return 1;
2963 if (val && isdigit(c)) {
2964 char *end;
2965 int n = strtoul(arg, &end, 10);
2966 if (*end)
2967 return 0;
2968 *val = n;
2969 return 1;
2970 }
2971 return 0;
2972 }
2973 if (c != '-')
2974 return 0;
2975 arg++;
2976 eq = strchr(arg, '=');
2977 if (eq)
2978 len = eq - arg;
2979 else
2980 len = strlen(arg);
2981 if (!len || strncmp(arg, arg_long, len))
2982 return 0;
2983 if (eq) {
2984 int n;
2985 char *end;
2986 if (!isdigit(*++eq))
2987 return 0;
2988 n = strtoul(eq, &end, 10);
2989 if (*end)
2990 return 0;
2991 *val = n;
2992 }
2993 return 1;
2994}
2995
16befb8b
JH
2996static int diff_scoreopt_parse(const char *opt);
2997
6973dcae
JH
2998int diff_opt_parse(struct diff_options *options, const char **av, int ac)
2999{
3000 const char *arg = av[0];
d054680c
PH
3001
3002 /* Output format options */
1c9eecff 3003 if (!strcmp(arg, "-p") || !strcmp(arg, "-u") || !strcmp(arg, "--patch"))
c6744349 3004 options->output_format |= DIFF_FORMAT_PATCH;
ee1e5412 3005 else if (opt_arg(arg, 'U', "unified", &options->context))
c6744349 3006 options->output_format |= DIFF_FORMAT_PATCH;
a610786f
TH
3007 else if (!strcmp(arg, "--raw"))
3008 options->output_format |= DIFF_FORMAT_RAW;
8f67f8ae 3009 else if (!strcmp(arg, "--patch-with-raw"))
c6744349 3010 options->output_format |= DIFF_FORMAT_PATCH | DIFF_FORMAT_RAW;
8f67f8ae 3011 else if (!strcmp(arg, "--numstat"))
74e2abe5 3012 options->output_format |= DIFF_FORMAT_NUMSTAT;
8f67f8ae 3013 else if (!strcmp(arg, "--shortstat"))
ebd124c6 3014 options->output_format |= DIFF_FORMAT_SHORTSTAT;
7df7c019
LT
3015 else if (opt_arg(arg, 'X', "dirstat", &options->dirstat_percent))
3016 options->output_format |= DIFF_FORMAT_DIRSTAT;
f88d225f
JH
3017 else if (!strcmp(arg, "--cumulative")) {
3018 options->output_format |= DIFF_FORMAT_DIRSTAT;
3019 DIFF_OPT_SET(options, DIRSTAT_CUMULATIVE);
fd33777b
HO
3020 } else if (opt_arg(arg, 0, "dirstat-by-file",
3021 &options->dirstat_percent)) {
3022 options->output_format |= DIFF_FORMAT_DIRSTAT;
3023 DIFF_OPT_SET(options, DIRSTAT_BY_FILE);
f88d225f 3024 }
d054680c
PH
3025 else if (!strcmp(arg, "--check"))
3026 options->output_format |= DIFF_FORMAT_CHECKDIFF;
3027 else if (!strcmp(arg, "--summary"))
3028 options->output_format |= DIFF_FORMAT_SUMMARY;
3029 else if (!strcmp(arg, "--patch-with-stat"))
3030 options->output_format |= DIFF_FORMAT_PATCH | DIFF_FORMAT_DIFFSTAT;
3031 else if (!strcmp(arg, "--name-only"))
3032 options->output_format |= DIFF_FORMAT_NAME;
3033 else if (!strcmp(arg, "--name-status"))
3034 options->output_format |= DIFF_FORMAT_NAME_STATUS;
3035 else if (!strcmp(arg, "-s"))
3036 options->output_format |= DIFF_FORMAT_NO_OUTPUT;
cc44c765 3037 else if (!prefixcmp(arg, "--stat")) {
5c5b2ea9
LT
3038 char *end;
3039 int width = options->stat_width;
3040 int name_width = options->stat_name_width;
3041 arg += 6;
3042 end = (char *)arg;
3043
3044 switch (*arg) {
3045 case '-':
cc44c765 3046 if (!prefixcmp(arg, "-width="))
5c5b2ea9 3047 width = strtoul(arg + 7, &end, 10);
cc44c765 3048 else if (!prefixcmp(arg, "-name-width="))
5c5b2ea9
LT
3049 name_width = strtoul(arg + 12, &end, 10);
3050 break;
3051 case '=':
3052 width = strtoul(arg+1, &end, 10);
3053 if (*end == ',')
3054 name_width = strtoul(end+1, &end, 10);
3055 }
3056
3057 /* Important! This checks all the error cases! */
3058 if (*end)
3059 return 0;
c6744349 3060 options->output_format |= DIFF_FORMAT_DIFFSTAT;
5c5b2ea9
LT
3061 options->stat_name_width = name_width;
3062 options->stat_width = width;
a2540023 3063 }
d054680c
PH
3064
3065 /* renames options */
cc44c765 3066 else if (!prefixcmp(arg, "-B")) {
8f67f8ae 3067 if ((options->break_opt = diff_scoreopt_parse(arg)) == -1)
6973dcae
JH
3068 return -1;
3069 }
cc44c765 3070 else if (!prefixcmp(arg, "-M")) {
8f67f8ae 3071 if ((options->rename_score = diff_scoreopt_parse(arg)) == -1)
6973dcae
JH
3072 return -1;
3073 options->detect_rename = DIFF_DETECT_RENAME;
3074 }
cc44c765 3075 else if (!prefixcmp(arg, "-C")) {
ca6c0970 3076 if (options->detect_rename == DIFF_DETECT_COPY)
8f67f8ae
PH
3077 DIFF_OPT_SET(options, FIND_COPIES_HARDER);
3078 if ((options->rename_score = diff_scoreopt_parse(arg)) == -1)
6973dcae
JH
3079 return -1;
3080 options->detect_rename = DIFF_DETECT_COPY;
3081 }
d054680c
PH
3082 else if (!strcmp(arg, "--no-renames"))
3083 options->detect_rename = 0;
cd676a51
JH
3084 else if (!strcmp(arg, "--relative"))
3085 DIFF_OPT_SET(options, RELATIVE_NAME);
c0cb4a06
JH
3086 else if (!prefixcmp(arg, "--relative=")) {
3087 DIFF_OPT_SET(options, RELATIVE_NAME);
3088 options->prefix = arg + 11;
3089 }
d054680c
PH
3090
3091 /* xdiff options */
3092 else if (!strcmp(arg, "-w") || !strcmp(arg, "--ignore-all-space"))
628d5c2b 3093 DIFF_XDL_SET(options, IGNORE_WHITESPACE);
d054680c 3094 else if (!strcmp(arg, "-b") || !strcmp(arg, "--ignore-space-change"))
628d5c2b 3095 DIFF_XDL_SET(options, IGNORE_WHITESPACE_CHANGE);
d054680c 3096 else if (!strcmp(arg, "--ignore-space-at-eol"))
628d5c2b 3097 DIFF_XDL_SET(options, IGNORE_WHITESPACE_AT_EOL);
34292bdd 3098 else if (!strcmp(arg, "--patience"))
628d5c2b 3099 DIFF_XDL_SET(options, PATIENCE_DIFF);
d054680c
PH
3100
3101 /* flags options */
3102 else if (!strcmp(arg, "--binary")) {
3103 options->output_format |= DIFF_FORMAT_PATCH;
3104 DIFF_OPT_SET(options, BINARY);
3105 }
3106 else if (!strcmp(arg, "--full-index"))
3107 DIFF_OPT_SET(options, FULL_INDEX);
3108 else if (!strcmp(arg, "-a") || !strcmp(arg, "--text"))
3109 DIFF_OPT_SET(options, TEXT);
3110 else if (!strcmp(arg, "-R"))
3111 DIFF_OPT_SET(options, REVERSE_DIFF);
6973dcae 3112 else if (!strcmp(arg, "--find-copies-harder"))
8f67f8ae 3113 DIFF_OPT_SET(options, FIND_COPIES_HARDER);
750f7b66 3114 else if (!strcmp(arg, "--follow"))
8f67f8ae 3115 DIFF_OPT_SET(options, FOLLOW_RENAMES);
cd112cef 3116 else if (!strcmp(arg, "--color"))
8f67f8ae 3117 DIFF_OPT_SET(options, COLOR_DIFF);
73e9da01
ML
3118 else if (!prefixcmp(arg, "--color=")) {
3119 int value = git_config_colorbool(NULL, arg+8, -1);
3120 if (value == 0)
3121 DIFF_OPT_CLR(options, COLOR_DIFF);
3122 else if (value > 0)
3123 DIFF_OPT_SET(options, COLOR_DIFF);
3124 else
3125 return error("option `color' expects \"always\", \"auto\", or \"never\"");
3126 }
fef88bb0 3127 else if (!strcmp(arg, "--no-color"))
8f67f8ae 3128 DIFF_OPT_CLR(options, COLOR_DIFF);
628d5c2b
KC
3129 else if (!strcmp(arg, "--color-words")) {
3130 DIFF_OPT_SET(options, COLOR_DIFF);
882749a0 3131 options->word_diff = DIFF_WORDS_COLOR;
628d5c2b 3132 }
2b6a5417 3133 else if (!prefixcmp(arg, "--color-words=")) {
628d5c2b 3134 DIFF_OPT_SET(options, COLOR_DIFF);
882749a0 3135 options->word_diff = DIFF_WORDS_COLOR;
2b6a5417
JS
3136 options->word_regex = arg + 14;
3137 }
882749a0
TR
3138 else if (!strcmp(arg, "--word-diff")) {
3139 if (options->word_diff == DIFF_WORDS_NONE)
3140 options->word_diff = DIFF_WORDS_PLAIN;
3141 }
3142 else if (!prefixcmp(arg, "--word-diff=")) {
3143 const char *type = arg + 12;
3144 if (!strcmp(type, "plain"))
3145 options->word_diff = DIFF_WORDS_PLAIN;
3146 else if (!strcmp(type, "color")) {
3147 DIFF_OPT_SET(options, COLOR_DIFF);
3148 options->word_diff = DIFF_WORDS_COLOR;
3149 }
3150 else if (!strcmp(type, "porcelain"))
3151 options->word_diff = DIFF_WORDS_PORCELAIN;
3152 else if (!strcmp(type, "none"))
3153 options->word_diff = DIFF_WORDS_NONE;
3154 else
3155 die("bad --word-diff argument: %s", type);
3156 }
3157 else if (!prefixcmp(arg, "--word-diff-regex=")) {
3158 if (options->word_diff == DIFF_WORDS_NONE)
3159 options->word_diff = DIFF_WORDS_PLAIN;
3160 options->word_regex = arg + 18;
3161 }
41bbf9d5 3162 else if (!strcmp(arg, "--exit-code"))
8f67f8ae 3163 DIFF_OPT_SET(options, EXIT_WITH_STATUS);
68aacb2f 3164 else if (!strcmp(arg, "--quiet"))
90b19941 3165 DIFF_OPT_SET(options, QUICK);
72909bef 3166 else if (!strcmp(arg, "--ext-diff"))
8f67f8ae 3167 DIFF_OPT_SET(options, ALLOW_EXTERNAL);
72909bef 3168 else if (!strcmp(arg, "--no-ext-diff"))
8f67f8ae 3169 DIFF_OPT_CLR(options, ALLOW_EXTERNAL);
e10ea812
JK
3170 else if (!strcmp(arg, "--textconv"))
3171 DIFF_OPT_SET(options, ALLOW_TEXTCONV);
3172 else if (!strcmp(arg, "--no-textconv"))
3173 DIFF_OPT_CLR(options, ALLOW_TEXTCONV);
50fd9bd8
JS
3174 else if (!strcmp(arg, "--ignore-submodules"))
3175 DIFF_OPT_SET(options, IGNORE_SUBMODULES);
752c0c24
JS
3176 else if (!strcmp(arg, "--submodule"))
3177 DIFF_OPT_SET(options, SUBMODULE_LOG);
3178 else if (!prefixcmp(arg, "--submodule=")) {
3179 if (!strcmp(arg + 12, "log"))
3180 DIFF_OPT_SET(options, SUBMODULE_LOG);
3181 }
d054680c
PH
3182
3183 /* misc options */
3184 else if (!strcmp(arg, "-z"))
3185 options->line_termination = 0;
3186 else if (!prefixcmp(arg, "-l"))
3187 options->rename_limit = strtoul(arg+2, NULL, 10);
3188 else if (!prefixcmp(arg, "-S"))
3189 options->pickaxe = arg + 2;
3190 else if (!strcmp(arg, "--pickaxe-all"))
3191 options->pickaxe_opts = DIFF_PICKAXE_ALL;
3192 else if (!strcmp(arg, "--pickaxe-regex"))
3193 options->pickaxe_opts = DIFF_PICKAXE_REGEX;
3194 else if (!prefixcmp(arg, "-O"))
3195 options->orderfile = arg + 2;
3196 else if (!prefixcmp(arg, "--diff-filter="))
3197 options->filter = arg + 14;
3198 else if (!strcmp(arg, "--abbrev"))
3199 options->abbrev = DEFAULT_ABBREV;
3200 else if (!prefixcmp(arg, "--abbrev=")) {
3201 options->abbrev = strtoul(arg + 9, NULL, 10);
3202 if (options->abbrev < MINIMUM_ABBREV)
3203 options->abbrev = MINIMUM_ABBREV;
3204 else if (40 < options->abbrev)
3205 options->abbrev = 40;
3206 }
eab9a40b
JS
3207 else if (!prefixcmp(arg, "--src-prefix="))
3208 options->a_prefix = arg + 13;
3209 else if (!prefixcmp(arg, "--dst-prefix="))
3210 options->b_prefix = arg + 13;
3211 else if (!strcmp(arg, "--no-prefix"))
3212 options->a_prefix = options->b_prefix = "";
6d0e674a
RS
3213 else if (opt_arg(arg, '\0', "inter-hunk-context",
3214 &options->interhunkcontext))
3215 ;
c0c77734
DB
3216 else if (!prefixcmp(arg, "--output=")) {
3217 options->file = fopen(arg + strlen("--output="), "w");
8324b977
LA
3218 if (!options->file)
3219 die_errno("Could not open '%s'", arg + strlen("--output="));
c0c77734
DB
3220 options->close_file = 1;
3221 } else
6973dcae
JH
3222 return 0;
3223 return 1;
3224}
3225
3226static int parse_num(const char **cp_p)
3227{
3228 unsigned long num, scale;
3229 int ch, dot;
3230 const char *cp = *cp_p;
3231
3232 num = 0;
3233 scale = 1;
3234 dot = 0;
eeefa7c9 3235 for (;;) {
6973dcae
JH
3236 ch = *cp;
3237 if ( !dot && ch == '.' ) {
3238 scale = 1;
3239 dot = 1;
3240 } else if ( ch == '%' ) {
3241 scale = dot ? scale*100 : 100;
3242 cp++; /* % is always at the end */
3243 break;
3244 } else if ( ch >= '0' && ch <= '9' ) {
3245 if ( scale < 100000 ) {
3246 scale *= 10;
3247 num = (num*10) + (ch-'0');
3248 }
3249 } else {
3250 break;
3251 }
3252 cp++;
3253 }
3254 *cp_p = cp;
3255
3256 /* user says num divided by scale and we say internally that
3257 * is MAX_SCORE * num / scale.
3258 */
dc49cd76 3259 return (int)((num >= scale) ? MAX_SCORE : (MAX_SCORE * num / scale));
6973dcae
JH
3260}
3261
16befb8b 3262static int diff_scoreopt_parse(const char *opt)
6973dcae
JH
3263{
3264 int opt1, opt2, cmd;
3265
3266 if (*opt++ != '-')
3267 return -1;
3268 cmd = *opt++;
3269 if (cmd != 'M' && cmd != 'C' && cmd != 'B')
3270 return -1; /* that is not a -M, -C nor -B option */
3271
3272 opt1 = parse_num(&opt);
3273 if (cmd != 'B')
3274 opt2 = 0;
3275 else {
3276 if (*opt == 0)
3277 opt2 = 0;
3278 else if (*opt != '/')
3279 return -1; /* we expect -B80/99 or -B80 */
3280 else {
3281 opt++;
3282 opt2 = parse_num(&opt);
3283 }
3284 }
3285 if (*opt != 0)
3286 return -1;
3287 return opt1 | (opt2 << 16);
3288}
3289
3290struct diff_queue_struct diff_queued_diff;
3291
3292void diff_q(struct diff_queue_struct *queue, struct diff_filepair *dp)
3293{
3294 if (queue->alloc <= queue->nr) {
3295 queue->alloc = alloc_nr(queue->alloc);
3296 queue->queue = xrealloc(queue->queue,
3297 sizeof(dp) * queue->alloc);
3298 }
3299 queue->queue[queue->nr++] = dp;
3300}
3301
3302struct diff_filepair *diff_queue(struct diff_queue_struct *queue,
3303 struct diff_filespec *one,
3304 struct diff_filespec *two)
3305{
ef677686 3306 struct diff_filepair *dp = xcalloc(1, sizeof(*dp));
6973dcae
JH
3307 dp->one = one;
3308 dp->two = two;
6973dcae
JH
3309 if (queue)
3310 diff_q(queue, dp);
3311 return dp;
3312}
3313
3314void diff_free_filepair(struct diff_filepair *p)
3315{
9fb88419
LT
3316 free_filespec(p->one);
3317 free_filespec(p->two);
6973dcae
JH
3318 free(p);
3319}
3320
3321/* This is different from find_unique_abbrev() in that
3322 * it stuffs the result with dots for alignment.
3323 */
3324const char *diff_unique_abbrev(const unsigned char *sha1, int len)
3325{
3326 int abblen;
3327 const char *abbrev;
3328 if (len == 40)
3329 return sha1_to_hex(sha1);
3330
3331 abbrev = find_unique_abbrev(sha1, len);
6973dcae
JH
3332 abblen = strlen(abbrev);
3333 if (abblen < 37) {
3334 static char hex[41];
3335 if (len < abblen && abblen <= len + 2)
3336 sprintf(hex, "%s%.*s", abbrev, len+3-abblen, "..");
3337 else
3338 sprintf(hex, "%s...", abbrev);
3339 return hex;
3340 }
3341 return sha1_to_hex(sha1);
3342}
3343
663af342 3344static void diff_flush_raw(struct diff_filepair *p, struct diff_options *opt)
6973dcae 3345{
663af342
PH
3346 int line_termination = opt->line_termination;
3347 int inter_name_termination = line_termination ? '\t' : '\0';
7be57610
BY
3348 if (opt->output_prefix) {
3349 struct strbuf *msg = NULL;
3350 msg = opt->output_prefix(opt, opt->output_prefix_data);
3351 fprintf(opt->file, "%s", msg->buf);
3352 }
6973dcae 3353
663af342 3354 if (!(opt->output_format & DIFF_FORMAT_NAME_STATUS)) {
c0c77734
DB
3355 fprintf(opt->file, ":%06o %06o %s ", p->one->mode, p->two->mode,
3356 diff_unique_abbrev(p->one->sha1, opt->abbrev));
3357 fprintf(opt->file, "%s ", diff_unique_abbrev(p->two->sha1, opt->abbrev));
6973dcae 3358 }
663af342 3359 if (p->score) {
c0c77734
DB
3360 fprintf(opt->file, "%c%03d%c", p->status, similarity_index(p),
3361 inter_name_termination);
663af342 3362 } else {
c0c77734 3363 fprintf(opt->file, "%c%c", p->status, inter_name_termination);
6973dcae 3364 }
6973dcae 3365
cd676a51
JH
3366 if (p->status == DIFF_STATUS_COPIED ||
3367 p->status == DIFF_STATUS_RENAMED) {
3368 const char *name_a, *name_b;
3369 name_a = p->one->path;
3370 name_b = p->two->path;
3371 strip_prefix(opt->prefix_length, &name_a, &name_b);
c0c77734
DB
3372 write_name_quoted(name_a, opt->file, inter_name_termination);
3373 write_name_quoted(name_b, opt->file, line_termination);
663af342 3374 } else {
cd676a51
JH
3375 const char *name_a, *name_b;
3376 name_a = p->one->mode ? p->one->path : p->two->path;
3377 name_b = NULL;
3378 strip_prefix(opt->prefix_length, &name_a, &name_b);
c0c77734 3379 write_name_quoted(name_a, opt->file, line_termination);
663af342 3380 }
6973dcae
JH
3381}
3382
3383int diff_unmodified_pair(struct diff_filepair *p)
3384{
3385 /* This function is written stricter than necessary to support
3386 * the currently implemented transformers, but the idea is to
3387 * let transformers to produce diff_filepairs any way they want,
3388 * and filter and clean them up here before producing the output.
3389 */
663af342 3390 struct diff_filespec *one = p->one, *two = p->two;
6973dcae
JH
3391
3392 if (DIFF_PAIR_UNMERGED(p))
3393 return 0; /* unmerged is interesting */
3394
6973dcae
JH
3395 /* deletion, addition, mode or type change
3396 * and rename are all interesting.
3397 */
3398 if (DIFF_FILE_VALID(one) != DIFF_FILE_VALID(two) ||
3399 DIFF_PAIR_MODE_CHANGED(p) ||
3400 strcmp(one->path, two->path))
3401 return 0;
3402
3403 /* both are valid and point at the same path. that is, we are
3404 * dealing with a change.
3405 */
3406 if (one->sha1_valid && two->sha1_valid &&
85adbf2f
JL
3407 !hashcmp(one->sha1, two->sha1) &&
3408 !one->dirty_submodule && !two->dirty_submodule)
6973dcae
JH
3409 return 1; /* no change */
3410 if (!one->sha1_valid && !two->sha1_valid)
3411 return 1; /* both look at the same file on the filesystem. */
3412 return 0;
3413}
3414
3415static void diff_flush_patch(struct diff_filepair *p, struct diff_options *o)
3416{
3417 if (diff_unmodified_pair(p))
3418 return;
3419
3420 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
3421 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
3422 return; /* no tree diffs in patch format */
3423
3424 run_diff(p, o);
3425}
3426
3427static void diff_flush_stat(struct diff_filepair *p, struct diff_options *o,
3428 struct diffstat_t *diffstat)
3429{
3430 if (diff_unmodified_pair(p))
3431 return;
3432
3433 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
3434 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
3435 return; /* no tree diffs in patch format */
3436
3437 run_diffstat(p, o, diffstat);
3438}
3439
88246898
JS
3440static void diff_flush_checkdiff(struct diff_filepair *p,
3441 struct diff_options *o)
3442{
3443 if (diff_unmodified_pair(p))
3444 return;
3445
3446 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
3447 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
3448 return; /* no tree diffs in patch format */
3449
3450 run_checkdiff(p, o);
3451}
3452
6973dcae
JH
3453int diff_queue_is_empty(void)
3454{
3455 struct diff_queue_struct *q = &diff_queued_diff;
3456 int i;
3457 for (i = 0; i < q->nr; i++)
3458 if (!diff_unmodified_pair(q->queue[i]))
3459 return 0;
3460 return 1;
3461}
3462
3463#if DIFF_DEBUG
3464void diff_debug_filespec(struct diff_filespec *s, int x, const char *one)
3465{
3466 fprintf(stderr, "queue[%d] %s (%s) %s %06o %s\n",
3467 x, one ? one : "",
3468 s->path,
3469 DIFF_FILE_VALID(s) ? "valid" : "invalid",
3470 s->mode,
3471 s->sha1_valid ? sha1_to_hex(s->sha1) : "");
3472 fprintf(stderr, "queue[%d] %s size %lu flags %d\n",
3473 x, one ? one : "",
3474 s->size, s->xfrm_flags);
3475}
3476
3477void diff_debug_filepair(const struct diff_filepair *p, int i)
3478{
3479 diff_debug_filespec(p->one, i, "one");
3480 diff_debug_filespec(p->two, i, "two");
64479711 3481 fprintf(stderr, "score %d, status %c rename_used %d broken %d\n",
6973dcae 3482 p->score, p->status ? p->status : '?',
64479711 3483 p->one->rename_used, p->broken_pair);
6973dcae
JH
3484}
3485
3486void diff_debug_queue(const char *msg, struct diff_queue_struct *q)
3487{
3488 int i;
3489 if (msg)
3490 fprintf(stderr, "%s\n", msg);
3491 fprintf(stderr, "q->nr = %d\n", q->nr);
3492 for (i = 0; i < q->nr; i++) {
3493 struct diff_filepair *p = q->queue[i];
3494 diff_debug_filepair(p, i);
3495 }
3496}
3497#endif
3498
3499static void diff_resolve_rename_copy(void)
3500{
64479711
LT
3501 int i;
3502 struct diff_filepair *p;
6973dcae
JH
3503 struct diff_queue_struct *q = &diff_queued_diff;
3504
3505 diff_debug_queue("resolve-rename-copy", q);
3506
3507 for (i = 0; i < q->nr; i++) {
3508 p = q->queue[i];
3509 p->status = 0; /* undecided */
3510 if (DIFF_PAIR_UNMERGED(p))
3511 p->status = DIFF_STATUS_UNMERGED;
3512 else if (!DIFF_FILE_VALID(p->one))
3513 p->status = DIFF_STATUS_ADDED;
3514 else if (!DIFF_FILE_VALID(p->two))
3515 p->status = DIFF_STATUS_DELETED;
3516 else if (DIFF_PAIR_TYPE_CHANGED(p))
3517 p->status = DIFF_STATUS_TYPE_CHANGED;
3518
3519 /* from this point on, we are dealing with a pair
3520 * whose both sides are valid and of the same type, i.e.
3521 * either in-place edit or rename/copy edit.
3522 */
3523 else if (DIFF_PAIR_RENAME(p)) {
64479711
LT
3524 /*
3525 * A rename might have re-connected a broken
3526 * pair up, causing the pathnames to be the
3527 * same again. If so, that's not a rename at
3528 * all, just a modification..
3529 *
3530 * Otherwise, see if this source was used for
3531 * multiple renames, in which case we decrement
3532 * the count, and call it a copy.
6973dcae 3533 */
64479711
LT
3534 if (!strcmp(p->one->path, p->two->path))
3535 p->status = DIFF_STATUS_MODIFIED;
3536 else if (--p->one->rename_used > 0)
6973dcae 3537 p->status = DIFF_STATUS_COPIED;
64479711 3538 else
6973dcae
JH
3539 p->status = DIFF_STATUS_RENAMED;
3540 }
a89fccd2 3541 else if (hashcmp(p->one->sha1, p->two->sha1) ||
d516c2d1 3542 p->one->mode != p->two->mode ||
85adbf2f
JL
3543 p->one->dirty_submodule ||
3544 p->two->dirty_submodule ||
d516c2d1 3545 is_null_sha1(p->one->sha1))
6973dcae
JH
3546 p->status = DIFF_STATUS_MODIFIED;
3547 else {
3548 /* This is a "no-change" entry and should not
3549 * happen anymore, but prepare for broken callers.
3550 */
3551 error("feeding unmodified %s to diffcore",
3552 p->one->path);
3553 p->status = DIFF_STATUS_UNKNOWN;
3554 }
3555 }
3556 diff_debug_queue("resolve-rename-copy done", q);
3557}
3558
c6744349 3559static int check_pair_status(struct diff_filepair *p)
6973dcae 3560{
6973dcae
JH
3561 switch (p->status) {
3562 case DIFF_STATUS_UNKNOWN:
c6744349 3563 return 0;
6973dcae
JH
3564 case 0:
3565 die("internal error in diff-resolve-rename-copy");
6973dcae 3566 default:
c6744349 3567 return 1;
6973dcae
JH
3568 }
3569}
3570
c6744349
TH
3571static void flush_one_pair(struct diff_filepair *p, struct diff_options *opt)
3572{
3573 int fmt = opt->output_format;
3574
3575 if (fmt & DIFF_FORMAT_CHECKDIFF)
3576 diff_flush_checkdiff(p, opt);
3577 else if (fmt & (DIFF_FORMAT_RAW | DIFF_FORMAT_NAME_STATUS))
3578 diff_flush_raw(p, opt);
cd676a51
JH
3579 else if (fmt & DIFF_FORMAT_NAME) {
3580 const char *name_a, *name_b;
3581 name_a = p->two->path;
3582 name_b = NULL;
3583 strip_prefix(opt->prefix_length, &name_a, &name_b);
c0c77734 3584 write_name_quoted(name_a, opt->file, opt->line_termination);
cd676a51 3585 }
c6744349
TH
3586}
3587
c0c77734 3588static void show_file_mode_name(FILE *file, const char *newdelete, struct diff_filespec *fs)
4bbd261b
SE
3589{
3590 if (fs->mode)
c0c77734 3591 fprintf(file, " %s mode %06o ", newdelete, fs->mode);
4bbd261b 3592 else
c0c77734
DB
3593 fprintf(file, " %s ", newdelete);
3594 write_name_quoted(fs->path, file, '\n');
4bbd261b
SE
3595}
3596
3597
7be57610
BY
3598static void show_mode_change(FILE *file, struct diff_filepair *p, int show_name,
3599 const char *line_prefix)
4bbd261b
SE
3600{
3601 if (p->one->mode && p->two->mode && p->one->mode != p->two->mode) {
7be57610
BY
3602 fprintf(file, "%s mode change %06o => %06o%c", line_prefix, p->one->mode,
3603 p->two->mode, show_name ? ' ' : '\n');
0d26a64e 3604 if (show_name) {
c0c77734 3605 write_name_quoted(p->two->path, file, '\n');
0d26a64e 3606 }
4bbd261b
SE
3607 }
3608}
3609
7be57610
BY
3610static void show_rename_copy(FILE *file, const char *renamecopy, struct diff_filepair *p,
3611 const char *line_prefix)
4bbd261b 3612{
b9f44164 3613 char *names = pprint_rename(p->one->path, p->two->path);
4bbd261b 3614
c0c77734 3615 fprintf(file, " %s %s (%d%%)\n", renamecopy, names, similarity_index(p));
b9f44164 3616 free(names);
7be57610 3617 show_mode_change(file, p, 0, line_prefix);
4bbd261b
SE
3618}
3619
7be57610 3620static void diff_summary(struct diff_options *opt, struct diff_filepair *p)
4bbd261b 3621{
7be57610
BY
3622 FILE *file = opt->file;
3623 char *line_prefix = "";
3624
3625 if (opt->output_prefix) {
3626 struct strbuf *buf = opt->output_prefix(opt, opt->output_prefix_data);
3627 line_prefix = buf->buf;
3628 }
3629
4bbd261b
SE
3630 switch(p->status) {
3631 case DIFF_STATUS_DELETED:
7be57610 3632 fputs(line_prefix, file);
c0c77734 3633 show_file_mode_name(file, "delete", p->one);
4bbd261b
SE
3634 break;
3635 case DIFF_STATUS_ADDED:
7be57610 3636 fputs(line_prefix, file);
c0c77734 3637 show_file_mode_name(file, "create", p->two);
4bbd261b
SE
3638 break;
3639 case DIFF_STATUS_COPIED:
7be57610
BY
3640 fputs(line_prefix, file);
3641 show_rename_copy(file, "copy", p, line_prefix);
4bbd261b
SE
3642 break;
3643 case DIFF_STATUS_RENAMED:
7be57610
BY
3644 fputs(line_prefix, file);
3645 show_rename_copy(file, "rename", p, line_prefix);
4bbd261b
SE
3646 break;
3647 default:
3648 if (p->score) {
7be57610 3649 fprintf(file, "%s rewrite ", line_prefix);
c0c77734
DB
3650 write_name_quoted(p->two->path, file, ' ');
3651 fprintf(file, "(%d%%)\n", similarity_index(p));
663af342 3652 }
7be57610 3653 show_mode_change(file, p, !p->score, line_prefix);
4bbd261b
SE
3654 break;
3655 }
3656}
3657
fcb3d0ad 3658struct patch_id_t {
9126f009 3659 git_SHA_CTX *ctx;
fcb3d0ad
JS
3660 int patchlen;
3661};
3662
3663static int remove_space(char *line, int len)
3664{
3665 int i;
663af342
PH
3666 char *dst = line;
3667 unsigned char c;
fcb3d0ad 3668
663af342
PH
3669 for (i = 0; i < len; i++)
3670 if (!isspace((c = line[i])))
3671 *dst++ = c;
fcb3d0ad 3672
663af342 3673 return dst - line;
fcb3d0ad
JS
3674}
3675
3676static void patch_id_consume(void *priv, char *line, unsigned long len)
3677{
3678 struct patch_id_t *data = priv;
3679 int new_len;
3680
3681 /* Ignore line numbers when computing the SHA1 of the patch */
cc44c765 3682 if (!prefixcmp(line, "@@ -"))
fcb3d0ad
JS
3683 return;
3684
3685 new_len = remove_space(line, len);
3686
9126f009 3687 git_SHA1_Update(data->ctx, line, new_len);
fcb3d0ad
JS
3688 data->patchlen += new_len;
3689}
3690
3691/* returns 0 upon success, and writes result into sha1 */
3692static int diff_get_patch_id(struct diff_options *options, unsigned char *sha1)
3693{
3694 struct diff_queue_struct *q = &diff_queued_diff;
3695 int i;
9126f009 3696 git_SHA_CTX ctx;
fcb3d0ad
JS
3697 struct patch_id_t data;
3698 char buffer[PATH_MAX * 4 + 20];
3699
9126f009 3700 git_SHA1_Init(&ctx);
fcb3d0ad
JS
3701 memset(&data, 0, sizeof(struct patch_id_t));
3702 data.ctx = &ctx;
fcb3d0ad
JS
3703
3704 for (i = 0; i < q->nr; i++) {
3705 xpparam_t xpp;
3706 xdemitconf_t xecfg;
fcb3d0ad
JS
3707 mmfile_t mf1, mf2;
3708 struct diff_filepair *p = q->queue[i];
3709 int len1, len2;
3710
9ccd0a88 3711 memset(&xpp, 0, sizeof(xpp));
30b25010 3712 memset(&xecfg, 0, sizeof(xecfg));
fcb3d0ad
JS
3713 if (p->status == 0)
3714 return error("internal diff status error");
3715 if (p->status == DIFF_STATUS_UNKNOWN)
3716 continue;
3717 if (diff_unmodified_pair(p))
3718 continue;
3719 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
3720 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
3721 continue;
3722 if (DIFF_PAIR_UNMERGED(p))
3723 continue;
3724
3725 diff_fill_sha1_info(p->one);
3726 diff_fill_sha1_info(p->two);
3727 if (fill_mmfile(&mf1, p->one) < 0 ||
3728 fill_mmfile(&mf2, p->two) < 0)
3729 return error("unable to read files to diff");
3730
fcb3d0ad
JS
3731 len1 = remove_space(p->one->path, strlen(p->one->path));
3732 len2 = remove_space(p->two->path, strlen(p->two->path));
3733 if (p->one->mode == 0)
3734 len1 = snprintf(buffer, sizeof(buffer),
3735 "diff--gita/%.*sb/%.*s"
3736 "newfilemode%06o"
3737 "---/dev/null"
3738 "+++b/%.*s",
3739 len1, p->one->path,
3740 len2, p->two->path,
3741 p->two->mode,
3742 len2, p->two->path);
3743 else if (p->two->mode == 0)
3744 len1 = snprintf(buffer, sizeof(buffer),
3745 "diff--gita/%.*sb/%.*s"
3746 "deletedfilemode%06o"
3747 "---a/%.*s"
3748 "+++/dev/null",
3749 len1, p->one->path,
3750 len2, p->two->path,
3751 p->one->mode,
3752 len1, p->one->path);
3753 else
3754 len1 = snprintf(buffer, sizeof(buffer),
3755 "diff--gita/%.*sb/%.*s"
3756 "---a/%.*s"
3757 "+++b/%.*s",
3758 len1, p->one->path,
3759 len2, p->two->path,
3760 len1, p->one->path,
3761 len2, p->two->path);
9126f009 3762 git_SHA1_Update(&ctx, buffer, len1);
fcb3d0ad 3763
582aa00b 3764 xpp.flags = 0;
fcb3d0ad 3765 xecfg.ctxlen = 3;
9fdc3bb5 3766 xecfg.flags = XDL_EMIT_FUNCNAMES;
8a3f524b 3767 xdi_diff_outf(&mf1, &mf2, patch_id_consume, &data,
dfea7900 3768 &xpp, &xecfg);
fcb3d0ad
JS
3769 }
3770
9126f009 3771 git_SHA1_Final(sha1, &ctx);
fcb3d0ad
JS
3772 return 0;
3773}
3774
3775int diff_flush_patch_id(struct diff_options *options, unsigned char *sha1)
3776{
3777 struct diff_queue_struct *q = &diff_queued_diff;
3778 int i;
3779 int result = diff_get_patch_id(options, sha1);
3780
3781 for (i = 0; i < q->nr; i++)
3782 diff_free_filepair(q->queue[i]);
3783
3784 free(q->queue);
9ca5df90 3785 DIFF_QUEUE_CLEAR(q);
fcb3d0ad
JS
3786
3787 return result;
3788}
3789
946c3784 3790static int is_summary_empty(const struct diff_queue_struct *q)
6973dcae 3791{
6973dcae 3792 int i;
6973dcae 3793
946c3784
TH
3794 for (i = 0; i < q->nr; i++) {
3795 const struct diff_filepair *p = q->queue[i];
3796
3797 switch (p->status) {
3798 case DIFF_STATUS_DELETED:
3799 case DIFF_STATUS_ADDED:
3800 case DIFF_STATUS_COPIED:
3801 case DIFF_STATUS_RENAMED:
3802 return 0;
3803 default:
3804 if (p->score)
3805 return 0;
3806 if (p->one->mode && p->two->mode &&
3807 p->one->mode != p->two->mode)
3808 return 0;
3809 break;
3810 }
6973dcae 3811 }
946c3784
TH
3812 return 1;
3813}
3814
6973dcae
JH
3815void diff_flush(struct diff_options *options)
3816{
3817 struct diff_queue_struct *q = &diff_queued_diff;
c6744349 3818 int i, output_format = options->output_format;
946c3784 3819 int separator = 0;
6973dcae 3820
c6744349
TH
3821 /*
3822 * Order: raw, stat, summary, patch
3823 * or: name/name-status/checkdiff (other bits clear)
3824 */
946c3784
TH
3825 if (!q->nr)
3826 goto free_queue;
6973dcae 3827
c6744349
TH
3828 if (output_format & (DIFF_FORMAT_RAW |
3829 DIFF_FORMAT_NAME |
3830 DIFF_FORMAT_NAME_STATUS |
3831 DIFF_FORMAT_CHECKDIFF)) {
6973dcae
JH
3832 for (i = 0; i < q->nr; i++) {
3833 struct diff_filepair *p = q->queue[i];
c6744349
TH
3834 if (check_pair_status(p))
3835 flush_one_pair(p, options);
6973dcae 3836 }
946c3784 3837 separator++;
6973dcae 3838 }
c6744349 3839
c04a7155 3840 if (output_format & (DIFF_FORMAT_DIFFSTAT|DIFF_FORMAT_SHORTSTAT|DIFF_FORMAT_NUMSTAT)) {
5e2b0636 3841 struct diffstat_t diffstat;
c6744349 3842
5e2b0636 3843 memset(&diffstat, 0, sizeof(struct diffstat_t));
6973dcae
JH
3844 for (i = 0; i < q->nr; i++) {
3845 struct diff_filepair *p = q->queue[i];
c6744349 3846 if (check_pair_status(p))
5e2b0636 3847 diff_flush_stat(p, options, &diffstat);
6973dcae 3848 }
74e2abe5
JH
3849 if (output_format & DIFF_FORMAT_NUMSTAT)
3850 show_numstat(&diffstat, options);
3851 if (output_format & DIFF_FORMAT_DIFFSTAT)
3852 show_stats(&diffstat, options);
f604652e 3853 if (output_format & DIFF_FORMAT_SHORTSTAT)
c0c77734 3854 show_shortstats(&diffstat, options);
f604652e 3855 free_diffstat_info(&diffstat);
3969cf7d 3856 separator++;
6973dcae 3857 }
c04a7155
JH
3858 if (output_format & DIFF_FORMAT_DIRSTAT)
3859 show_dirstat(options);
6973dcae 3860
946c3784 3861 if (output_format & DIFF_FORMAT_SUMMARY && !is_summary_empty(q)) {
7be57610
BY
3862 for (i = 0; i < q->nr; i++) {
3863 diff_summary(options, q->queue[i]);
3864 }
3969cf7d 3865 separator++;
6973dcae
JH
3866 }
3867
6977c250
LA
3868 if (output_format & DIFF_FORMAT_NO_OUTPUT &&
3869 DIFF_OPT_TST(options, EXIT_WITH_STATUS) &&
3870 DIFF_OPT_TST(options, DIFF_FROM_CONTENTS)) {
3871 /*
3872 * run diff_flush_patch for the exit status. setting
3873 * options->file to /dev/null should be safe, becaue we
3874 * aren't supposed to produce any output anyway.
3875 */
3876 if (options->close_file)
3877 fclose(options->file);
3878 options->file = fopen("/dev/null", "w");
3879 if (!options->file)
3880 die_errno("Could not open /dev/null");
3881 options->close_file = 1;
3882 for (i = 0; i < q->nr; i++) {
3883 struct diff_filepair *p = q->queue[i];
3884 if (check_pair_status(p))
3885 diff_flush_patch(p, options);
3886 if (options->found_changes)
3887 break;
3888 }
3889 }
3890
c6744349 3891 if (output_format & DIFF_FORMAT_PATCH) {
946c3784 3892 if (separator) {
6b2fbaaf 3893 putc(options->line_termination, options->file);
946c3784
TH
3894 if (options->stat_sep) {
3895 /* attach patch instead of inline */
c0c77734 3896 fputs(options->stat_sep, options->file);
946c3784 3897 }
c6744349
TH
3898 }
3899
3900 for (i = 0; i < q->nr; i++) {
3901 struct diff_filepair *p = q->queue[i];
3902 if (check_pair_status(p))
3903 diff_flush_patch(p, options);
3904 }
4bbd261b
SE
3905 }
3906
04245581
JK
3907 if (output_format & DIFF_FORMAT_CALLBACK)
3908 options->format_callback(q, options, options->format_callback_data);
3909
c6744349
TH
3910 for (i = 0; i < q->nr; i++)
3911 diff_free_filepair(q->queue[i]);
946c3784 3912free_queue:
6973dcae 3913 free(q->queue);
9ca5df90 3914 DIFF_QUEUE_CLEAR(q);
c0c77734
DB
3915 if (options->close_file)
3916 fclose(options->file);
f245194f
JH
3917
3918 /*
97bf2a08 3919 * Report the content-level differences with HAS_CHANGES;
f245194f
JH
3920 * diff_addremove/diff_change does not set the bit when
3921 * DIFF_FROM_CONTENTS is in effect (e.g. with -w).
3922 */
3923 if (DIFF_OPT_TST(options, DIFF_FROM_CONTENTS)) {
3924 if (options->found_changes)
3925 DIFF_OPT_SET(options, HAS_CHANGES);
3926 else
3927 DIFF_OPT_CLR(options, HAS_CHANGES);
3928 }
6973dcae
JH
3929}
3930
3931static void diffcore_apply_filter(const char *filter)
3932{
3933 int i;
3934 struct diff_queue_struct *q = &diff_queued_diff;
3935 struct diff_queue_struct outq;
9ca5df90 3936 DIFF_QUEUE_CLEAR(&outq);
6973dcae
JH
3937
3938 if (!filter)
3939 return;
3940
3941 if (strchr(filter, DIFF_STATUS_FILTER_AON)) {
3942 int found;
3943 for (i = found = 0; !found && i < q->nr; i++) {
3944 struct diff_filepair *p = q->queue[i];
3945 if (((p->status == DIFF_STATUS_MODIFIED) &&
3946 ((p->score &&
3947 strchr(filter, DIFF_STATUS_FILTER_BROKEN)) ||
3948 (!p->score &&
3949 strchr(filter, DIFF_STATUS_MODIFIED)))) ||
3950 ((p->status != DIFF_STATUS_MODIFIED) &&
3951 strchr(filter, p->status)))
3952 found++;
3953 }
3954 if (found)
3955 return;
3956
3957 /* otherwise we will clear the whole queue
3958 * by copying the empty outq at the end of this
3959 * function, but first clear the current entries
3960 * in the queue.
3961 */
3962 for (i = 0; i < q->nr; i++)
3963 diff_free_filepair(q->queue[i]);
3964 }
3965 else {
3966 /* Only the matching ones */
3967 for (i = 0; i < q->nr; i++) {
3968 struct diff_filepair *p = q->queue[i];
3969
3970 if (((p->status == DIFF_STATUS_MODIFIED) &&
3971 ((p->score &&
3972 strchr(filter, DIFF_STATUS_FILTER_BROKEN)) ||
3973 (!p->score &&
3974 strchr(filter, DIFF_STATUS_MODIFIED)))) ||
3975 ((p->status != DIFF_STATUS_MODIFIED) &&
3976 strchr(filter, p->status)))
3977 diff_q(&outq, p);
3978 else
3979 diff_free_filepair(p);
3980 }
3981 }
3982 free(q->queue);
3983 *q = outq;
3984}
3985
5701115a
SV
3986/* Check whether two filespecs with the same mode and size are identical */
3987static int diff_filespec_is_identical(struct diff_filespec *one,
3988 struct diff_filespec *two)
3989{
2b459b48
JH
3990 if (S_ISGITLINK(one->mode))
3991 return 0;
5701115a
SV
3992 if (diff_populate_filespec(one, 0))
3993 return 0;
3994 if (diff_populate_filespec(two, 0))
3995 return 0;
3996 return !memcmp(one->data, two->data, one->size);
3997}
3998
fb13227e
JH
3999static void diffcore_skip_stat_unmatch(struct diff_options *diffopt)
4000{
4001 int i;
4002 struct diff_queue_struct *q = &diff_queued_diff;
4003 struct diff_queue_struct outq;
9ca5df90 4004 DIFF_QUEUE_CLEAR(&outq);
fb13227e
JH
4005
4006 for (i = 0; i < q->nr; i++) {
4007 struct diff_filepair *p = q->queue[i];
4008
4009 /*
9517e6b8 4010 * 1. Entries that come from stat info dirtiness
fb13227e
JH
4011 * always have both sides (iow, not create/delete),
4012 * one side of the object name is unknown, with
4013 * the same mode and size. Keep the ones that
4014 * do not match these criteria. They have real
4015 * differences.
4016 *
4017 * 2. At this point, the file is known to be modified,
4018 * with the same mode and size, and the object
4019 * name of one side is unknown. Need to inspect
4020 * the identical contents.
4021 */
4022 if (!DIFF_FILE_VALID(p->one) || /* (1) */
4023 !DIFF_FILE_VALID(p->two) ||
4024 (p->one->sha1_valid && p->two->sha1_valid) ||
4025 (p->one->mode != p->two->mode) ||
4026 diff_populate_filespec(p->one, 1) ||
4027 diff_populate_filespec(p->two, 1) ||
4028 (p->one->size != p->two->size) ||
5701115a 4029 !diff_filespec_is_identical(p->one, p->two)) /* (2) */
fb13227e
JH
4030 diff_q(&outq, p);
4031 else {
4032 /*
4033 * The caller can subtract 1 from skip_stat_unmatch
4034 * to determine how many paths were dirty only
4035 * due to stat info mismatch.
4036 */
8f67f8ae 4037 if (!DIFF_OPT_TST(diffopt, NO_INDEX))
6d2d9e86 4038 diffopt->skip_stat_unmatch++;
fb13227e
JH
4039 diff_free_filepair(p);
4040 }
4041 }
4042 free(q->queue);
4043 *q = outq;
4044}
4045
730f7284
JH
4046static int diffnamecmp(const void *a_, const void *b_)
4047{
4048 const struct diff_filepair *a = *((const struct diff_filepair **)a_);
4049 const struct diff_filepair *b = *((const struct diff_filepair **)b_);
4050 const char *name_a, *name_b;
4051
4052 name_a = a->one ? a->one->path : a->two->path;
4053 name_b = b->one ? b->one->path : b->two->path;
4054 return strcmp(name_a, name_b);
4055}
4056
4057void diffcore_fix_diff_index(struct diff_options *options)
4058{
4059 struct diff_queue_struct *q = &diff_queued_diff;
4060 qsort(q->queue, q->nr, sizeof(q->queue[0]), diffnamecmp);
4061}
4062
6973dcae
JH
4063void diffcore_std(struct diff_options *options)
4064{
1da6175d
BY
4065 /* We never run this function more than one time, because the
4066 * rename/copy detection logic can only run once.
4067 */
4068 if (diff_queued_diff.run)
4069 return;
4070
9d865356 4071 if (options->skip_stat_unmatch)
fb13227e 4072 diffcore_skip_stat_unmatch(options);
6973dcae
JH
4073 if (options->break_opt != -1)
4074 diffcore_break(options->break_opt);
4075 if (options->detect_rename)
4076 diffcore_rename(options);
4077 if (options->break_opt != -1)
4078 diffcore_merge_broken();
4079 if (options->pickaxe)
4080 diffcore_pickaxe(options->pickaxe, options->pickaxe_opts);
4081 if (options->orderfile)
4082 diffcore_order(options->orderfile);
4083 diff_resolve_rename_copy();
4084 diffcore_apply_filter(options->filter);
68aacb2f 4085
f245194f 4086 if (diff_queued_diff.nr && !DIFF_OPT_TST(options, DIFF_FROM_CONTENTS))
8f67f8ae
PH
4087 DIFF_OPT_SET(options, HAS_CHANGES);
4088 else
4089 DIFF_OPT_CLR(options, HAS_CHANGES);
1da6175d
BY
4090
4091 diff_queued_diff.run = 1;
6973dcae
JH
4092}
4093
da31b358
JH
4094int diff_result_code(struct diff_options *opt, int status)
4095{
4096 int result = 0;
4097 if (!DIFF_OPT_TST(opt, EXIT_WITH_STATUS) &&
4098 !(opt->output_format & DIFF_FORMAT_CHECKDIFF))
4099 return status;
4100 if (DIFF_OPT_TST(opt, EXIT_WITH_STATUS) &&
4101 DIFF_OPT_TST(opt, HAS_CHANGES))
4102 result |= 01;
4103 if ((opt->output_format & DIFF_FORMAT_CHECKDIFF) &&
4104 DIFF_OPT_TST(opt, CHECK_FAILED))
4105 result |= 02;
4106 return result;
4107}
6973dcae 4108
6973dcae
JH
4109void diff_addremove(struct diff_options *options,
4110 int addremove, unsigned mode,
4111 const unsigned char *sha1,
e3d42c47 4112 const char *concatpath, unsigned dirty_submodule)
6973dcae 4113{
6973dcae
JH
4114 struct diff_filespec *one, *two;
4115
50fd9bd8
JS
4116 if (DIFF_OPT_TST(options, IGNORE_SUBMODULES) && S_ISGITLINK(mode))
4117 return;
4118
6973dcae
JH
4119 /* This may look odd, but it is a preparation for
4120 * feeding "there are unchanged files which should
4121 * not produce diffs, but when you are doing copy
4122 * detection you would need them, so here they are"
4123 * entries to the diff-core. They will be prefixed
4124 * with something like '=' or '*' (I haven't decided
4125 * which but should not make any difference).
a6080a0a 4126 * Feeding the same new and old to diff_change()
6973dcae
JH
4127 * also has the same effect.
4128 * Before the final output happens, they are pruned after
4129 * merged into rename/copy pairs as appropriate.
4130 */
8f67f8ae 4131 if (DIFF_OPT_TST(options, REVERSE_DIFF))
6973dcae
JH
4132 addremove = (addremove == '+' ? '-' :
4133 addremove == '-' ? '+' : addremove);
4134
cd676a51
JH
4135 if (options->prefix &&
4136 strncmp(concatpath, options->prefix, options->prefix_length))
4137 return;
4138
6973dcae
JH
4139 one = alloc_filespec(concatpath);
4140 two = alloc_filespec(concatpath);
4141
4142 if (addremove != '+')
4143 fill_filespec(one, sha1, mode);
e3d42c47 4144 if (addremove != '-') {
6973dcae 4145 fill_filespec(two, sha1, mode);
e3d42c47
JL
4146 two->dirty_submodule = dirty_submodule;
4147 }
6973dcae
JH
4148
4149 diff_queue(&diff_queued_diff, one, two);
f245194f
JH
4150 if (!DIFF_OPT_TST(options, DIFF_FROM_CONTENTS))
4151 DIFF_OPT_SET(options, HAS_CHANGES);
6973dcae
JH
4152}
4153
4154void diff_change(struct diff_options *options,
4155 unsigned old_mode, unsigned new_mode,
4156 const unsigned char *old_sha1,
4157 const unsigned char *new_sha1,
e3d42c47
JL
4158 const char *concatpath,
4159 unsigned old_dirty_submodule, unsigned new_dirty_submodule)
6973dcae 4160{
6973dcae
JH
4161 struct diff_filespec *one, *two;
4162
50fd9bd8
JS
4163 if (DIFF_OPT_TST(options, IGNORE_SUBMODULES) && S_ISGITLINK(old_mode)
4164 && S_ISGITLINK(new_mode))
4165 return;
4166
8f67f8ae 4167 if (DIFF_OPT_TST(options, REVERSE_DIFF)) {
6973dcae
JH
4168 unsigned tmp;
4169 const unsigned char *tmp_c;
4170 tmp = old_mode; old_mode = new_mode; new_mode = tmp;
4171 tmp_c = old_sha1; old_sha1 = new_sha1; new_sha1 = tmp_c;
e3d42c47
JL
4172 tmp = old_dirty_submodule; old_dirty_submodule = new_dirty_submodule;
4173 new_dirty_submodule = tmp;
6973dcae 4174 }
cd676a51
JH
4175
4176 if (options->prefix &&
4177 strncmp(concatpath, options->prefix, options->prefix_length))
4178 return;
4179
6973dcae
JH
4180 one = alloc_filespec(concatpath);
4181 two = alloc_filespec(concatpath);
4182 fill_filespec(one, old_sha1, old_mode);
4183 fill_filespec(two, new_sha1, new_mode);
e3d42c47
JL
4184 one->dirty_submodule = old_dirty_submodule;
4185 two->dirty_submodule = new_dirty_submodule;
6973dcae
JH
4186
4187 diff_queue(&diff_queued_diff, one, two);
f245194f
JH
4188 if (!DIFF_OPT_TST(options, DIFF_FROM_CONTENTS))
4189 DIFF_OPT_SET(options, HAS_CHANGES);
6973dcae
JH
4190}
4191
4192void diff_unmerge(struct diff_options *options,
e9c84099
JH
4193 const char *path,
4194 unsigned mode, const unsigned char *sha1)
6973dcae
JH
4195{
4196 struct diff_filespec *one, *two;
cd676a51
JH
4197
4198 if (options->prefix &&
4199 strncmp(path, options->prefix, options->prefix_length))
4200 return;
4201
6973dcae
JH
4202 one = alloc_filespec(path);
4203 two = alloc_filespec(path);
e9c84099
JH
4204 fill_filespec(one, sha1, mode);
4205 diff_queue(&diff_queued_diff, one, two)->is_unmerged = 1;
6973dcae 4206}
9cb92c39
JK
4207
4208static char *run_textconv(const char *pgm, struct diff_filespec *spec,
4209 size_t *outsize)
4210{
479b0ae8 4211 struct diff_tempfile *temp;
9cb92c39
JK
4212 const char *argv[3];
4213 const char **arg = argv;
4214 struct child_process child;
4215 struct strbuf buf = STRBUF_INIT;
da1fbed3 4216 int err = 0;
9cb92c39 4217
479b0ae8 4218 temp = prepare_temp_file(spec->path, spec);
9cb92c39 4219 *arg++ = pgm;
479b0ae8 4220 *arg++ = temp->name;
9cb92c39
JK
4221 *arg = NULL;
4222
4223 memset(&child, 0, sizeof(child));
41a457e4 4224 child.use_shell = 1;
9cb92c39
JK
4225 child.argv = argv;
4226 child.out = -1;
da1fbed3 4227 if (start_command(&child)) {
479b0ae8 4228 remove_tempfile();
9cb92c39
JK
4229 return NULL;
4230 }
da1fbed3
JS
4231
4232 if (strbuf_read(&buf, child.out, 0) < 0)
4233 err = error("error reading from textconv command '%s'", pgm);
70d70999 4234 close(child.out);
da1fbed3
JS
4235
4236 if (finish_command(&child) || err) {
4237 strbuf_release(&buf);
4238 remove_tempfile();
4239 return NULL;
4240 }
479b0ae8 4241 remove_tempfile();
9cb92c39
JK
4242
4243 return strbuf_detach(&buf, outsize);
4244}
840383b2 4245
d9bae1a1 4246static size_t fill_textconv(struct userdiff_driver *driver,
840383b2
JK
4247 struct diff_filespec *df,
4248 char **outbuf)
4249{
4250 size_t size;
4251
d9bae1a1 4252 if (!driver || !driver->textconv) {
840383b2
JK
4253 if (!DIFF_FILE_VALID(df)) {
4254 *outbuf = "";
4255 return 0;
4256 }
4257 if (diff_populate_filespec(df, 0))
4258 die("unable to read files to diff");
4259 *outbuf = df->data;
4260 return df->size;
4261 }
4262
d9bae1a1
JK
4263 if (driver->textconv_cache) {
4264 *outbuf = notes_cache_get(driver->textconv_cache, df->sha1,
4265 &size);
4266 if (*outbuf)
4267 return size;
4268 }
4269
4270 *outbuf = run_textconv(driver->textconv, df, &size);
840383b2
JK
4271 if (!*outbuf)
4272 die("unable to read files to diff");
d9bae1a1
JK
4273
4274 if (driver->textconv_cache) {
4275 /* ignore errors, as we might be in a readonly repository */
4276 notes_cache_put(driver->textconv_cache, df->sha1, *outbuf,
4277 size);
4278 /*
4279 * we could save up changes and flush them all at the end,
4280 * but we would need an extra call after all diffing is done.
4281 * Since generating a cache entry is the slow path anyway,
4282 * this extra overhead probably isn't a big deal.
4283 */
4284 notes_cache_write(driver->textconv_cache);
4285 }
4286
840383b2
JK
4287 return size;
4288}