]> git.ipfire.org Git - thirdparty/git.git/blame - diff.c
Merge branch 'ml/submodule-foreach'
[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"
6973dcae 14
1510fea7
SP
15#ifdef NO_FAST_WORKING_DIRECTORY
16#define FAST_WORKING_DIRECTORY 0
17#else
18#define FAST_WORKING_DIRECTORY 1
19#endif
20
96f1e58f 21static int diff_detect_rename_default;
50705915 22static int diff_rename_limit_default = 200;
a624eaa7 23static int diff_suppress_blank_empty;
6b2f2d98 24int diff_use_color_default = -1;
cbe02100 25static const char *external_diff_cmd_cfg;
aecbf914 26int diff_auto_refresh_index = 1;
6973dcae 27
7c92fe0e 28static char diff_colors[][COLOR_MAXLEN] = {
f37399e6 29 "\033[m", /* reset */
448c3ef1
JH
30 "", /* PLAIN (normal) */
31 "\033[1m", /* METAINFO (bold) */
32 "\033[36m", /* FRAGINFO (cyan) */
33 "\033[31m", /* OLD (red) */
34 "\033[32m", /* NEW (green) */
35 "\033[33m", /* COMMIT (yellow) */
36 "\033[41m", /* WHITESPACE (red background) */
cd112cef
JS
37};
38
801235c5
JH
39static int parse_diff_color_slot(const char *var, int ofs)
40{
41 if (!strcasecmp(var+ofs, "plain"))
42 return DIFF_PLAIN;
43 if (!strcasecmp(var+ofs, "meta"))
44 return DIFF_METAINFO;
45 if (!strcasecmp(var+ofs, "frag"))
46 return DIFF_FRAGINFO;
47 if (!strcasecmp(var+ofs, "old"))
48 return DIFF_FILE_OLD;
49 if (!strcasecmp(var+ofs, "new"))
50 return DIFF_FILE_NEW;
ce436973
JK
51 if (!strcasecmp(var+ofs, "commit"))
52 return DIFF_COMMIT;
448c3ef1
JH
53 if (!strcasecmp(var+ofs, "whitespace"))
54 return DIFF_WHITESPACE;
801235c5
JH
55 die("bad config variable '%s'", var);
56}
57
f1af60bd
JH
58static struct ll_diff_driver {
59 const char *name;
60 struct ll_diff_driver *next;
b20a60d0 61 const char *cmd;
f1af60bd
JH
62} *user_diff, **user_diff_tail;
63
64/*
65 * Currently there is only "diff.<drivername>.command" variable;
66 * because there are "diff.color.<slot>" variables, we are parsing
67 * this in a bit convoluted way to allow low level diff driver
68 * called "color".
69 */
70static int parse_lldiff_command(const char *var, const char *ep, const char *value)
71{
72 const char *name;
73 int namelen;
74 struct ll_diff_driver *drv;
75
76 name = var + 5;
77 namelen = ep - name;
78 for (drv = user_diff; drv; drv = drv->next)
79 if (!strncmp(drv->name, name, namelen) && !drv->name[namelen])
80 break;
81 if (!drv) {
f1af60bd 82 drv = xcalloc(1, sizeof(struct ll_diff_driver));
182af834 83 drv->name = xmemdupz(name, namelen);
f1af60bd
JH
84 if (!user_diff_tail)
85 user_diff_tail = &user_diff;
86 *user_diff_tail = drv;
87 user_diff_tail = &(drv->next);
88 }
89
b20a60d0 90 return git_config_string(&(drv->cmd), var, value);
f1af60bd
JH
91}
92
e0e324a4
JH
93/*
94 * 'diff.<what>.funcname' attribute can be specified in the configuration
95 * to define a customized regexp to find the beginning of a function to
96 * be used for hunk header lines of "diff -p" style output.
97 */
98static struct funcname_pattern {
99 char *name;
100 char *pattern;
101 struct funcname_pattern *next;
102} *funcname_pattern_list;
103
104static int parse_funcname_pattern(const char *var, const char *ep, const char *value)
105{
106 const char *name;
107 int namelen;
108 struct funcname_pattern *pp;
109
110 name = var + 5; /* "diff." */
111 namelen = ep - name;
112
113 for (pp = funcname_pattern_list; pp; pp = pp->next)
114 if (!strncmp(pp->name, name, namelen) && !pp->name[namelen])
115 break;
116 if (!pp) {
e0e324a4 117 pp = xcalloc(1, sizeof(*pp));
182af834 118 pp->name = xmemdupz(name, namelen);
e0e324a4
JH
119 pp->next = funcname_pattern_list;
120 funcname_pattern_list = pp;
121 }
8e0f7003 122 free(pp->pattern);
e0e324a4
JH
123 pp->pattern = xstrdup(value);
124 return 0;
125}
126
83ad63cf
JH
127/*
128 * These are to give UI layer defaults.
129 * The core-level commands such as git-diff-files should
130 * never be affected by the setting of diff.renames
131 * the user happens to have in the configuration file.
132 */
ef90d6d4 133int git_diff_ui_config(const char *var, const char *value, void *cb)
801235c5 134{
a159ca0c 135 if (!strcmp(var, "diff.color") || !strcmp(var, "color.diff")) {
0f6f5a40 136 diff_use_color_default = git_config_colorbool(var, value, -1);
801235c5
JH
137 return 0;
138 }
b68ea12e
EW
139 if (!strcmp(var, "diff.renames")) {
140 if (!value)
141 diff_detect_rename_default = DIFF_DETECT_RENAME;
142 else if (!strcasecmp(value, "copies") ||
143 !strcasecmp(value, "copy"))
144 diff_detect_rename_default = DIFF_DETECT_COPY;
145 else if (git_config_bool(var,value))
146 diff_detect_rename_default = DIFF_DETECT_RENAME;
147 return 0;
148 }
aecbf914
JH
149 if (!strcmp(var, "diff.autorefreshindex")) {
150 diff_auto_refresh_index = git_config_bool(var, value);
151 return 0;
152 }
daec808c
BH
153 if (!strcmp(var, "diff.external"))
154 return git_config_string(&external_diff_cmd_cfg, var, value);
f1af60bd
JH
155 if (!prefixcmp(var, "diff.")) {
156 const char *ep = strrchr(var, '.');
157
2c778210
CC
158 if (ep != var + 4 && !strcmp(ep, ".command"))
159 return parse_lldiff_command(var, ep, value);
f1af60bd 160 }
9a1805a8 161
ef90d6d4 162 return git_diff_basic_config(var, value, cb);
9a1805a8
JK
163}
164
ef90d6d4 165int git_diff_basic_config(const char *var, const char *value, void *cb)
9a1805a8 166{
2b6ca6df
LT
167 if (!strcmp(var, "diff.renamelimit")) {
168 diff_rename_limit_default = git_config_int(var, value);
169 return 0;
170 }
171
1968d77d 172 if (!prefixcmp(var, "diff.color.") || !prefixcmp(var, "color.diff.")) {
801235c5 173 int slot = parse_diff_color_slot(var, 11);
64f30e94
JH
174 if (!value)
175 return config_error_nonbool(var);
7c92fe0e 176 color_parse(value, var, diff_colors[slot]);
801235c5
JH
177 return 0;
178 }
f1af60bd 179
a624eaa7
JM
180 /* like GNU diff's --suppress-blank-empty option */
181 if (!strcmp(var, "diff.suppress-blank-empty")) {
182 diff_suppress_blank_empty = git_config_bool(var, value);
183 return 0;
184 }
185
e467193f
JK
186 if (!prefixcmp(var, "diff.")) {
187 const char *ep = strrchr(var, '.');
188 if (ep != var + 4) {
64f30e94
JH
189 if (!strcmp(ep, ".funcname")) {
190 if (!value)
191 return config_error_nonbool(var);
e467193f 192 return parse_funcname_pattern(var, ep, value);
64f30e94 193 }
e467193f
JK
194 }
195 }
196
ef90d6d4 197 return git_color_default_config(var, value, cb);
801235c5
JH
198}
199
6973dcae
JH
200static char *quote_two(const char *one, const char *two)
201{
202 int need_one = quote_c_style(one, NULL, NULL, 1);
203 int need_two = quote_c_style(two, NULL, NULL, 1);
663af342 204 struct strbuf res;
6973dcae 205
663af342 206 strbuf_init(&res, 0);
6973dcae 207 if (need_one + need_two) {
663af342
PH
208 strbuf_addch(&res, '"');
209 quote_c_style(one, &res, NULL, 1);
210 quote_c_style(two, &res, NULL, 1);
211 strbuf_addch(&res, '"');
212 } else {
213 strbuf_addstr(&res, one);
214 strbuf_addstr(&res, two);
6973dcae 215 }
b315c5c0 216 return strbuf_detach(&res, NULL);
6973dcae
JH
217}
218
219static const char *external_diff(void)
220{
221 static const char *external_diff_cmd = NULL;
222 static int done_preparing = 0;
223
224 if (done_preparing)
225 return external_diff_cmd;
226 external_diff_cmd = getenv("GIT_EXTERNAL_DIFF");
cbe02100
JS
227 if (!external_diff_cmd)
228 external_diff_cmd = external_diff_cmd_cfg;
6973dcae
JH
229 done_preparing = 1;
230 return external_diff_cmd;
231}
232
6973dcae
JH
233static struct diff_tempfile {
234 const char *name; /* filename external diff should read from */
235 char hex[41];
236 char mode[10];
1472966c 237 char tmp_path[PATH_MAX];
6973dcae
JH
238} diff_temp[2];
239
240static int count_lines(const char *data, int size)
241{
242 int count, ch, completely_empty = 1, nl_just_seen = 0;
243 count = 0;
244 while (0 < size--) {
245 ch = *data++;
246 if (ch == '\n') {
247 count++;
248 nl_just_seen = 1;
249 completely_empty = 0;
250 }
251 else {
252 nl_just_seen = 0;
253 completely_empty = 0;
254 }
255 }
256 if (completely_empty)
257 return 0;
258 if (!nl_just_seen)
259 count++; /* no trailing newline */
260 return count;
261}
262
c0c77734 263static void print_line_count(FILE *file, int count)
6973dcae
JH
264{
265 switch (count) {
266 case 0:
c0c77734 267 fprintf(file, "0,0");
6973dcae
JH
268 break;
269 case 1:
c0c77734 270 fprintf(file, "1");
6973dcae
JH
271 break;
272 default:
c0c77734 273 fprintf(file, "1,%d", count);
6973dcae
JH
274 break;
275 }
276}
277
c0c77734
DB
278static void copy_file_with_prefix(FILE *file,
279 int prefix, const char *data, int size,
1468bd47 280 const char *set, const char *reset)
6973dcae
JH
281{
282 int ch, nl_just_seen = 1;
283 while (0 < size--) {
284 ch = *data++;
13e36ec5 285 if (nl_just_seen) {
c0c77734
DB
286 fputs(set, file);
287 putc(prefix, file);
13e36ec5
JS
288 }
289 if (ch == '\n') {
6973dcae 290 nl_just_seen = 1;
c0c77734 291 fputs(reset, file);
13e36ec5 292 } else
6973dcae 293 nl_just_seen = 0;
c0c77734 294 putc(ch, file);
6973dcae
JH
295 }
296 if (!nl_just_seen)
c0c77734 297 fprintf(file, "%s\n\\ No newline at end of file\n", reset);
6973dcae
JH
298}
299
300static void emit_rewrite_diff(const char *name_a,
301 const char *name_b,
302 struct diff_filespec *one,
13e36ec5 303 struct diff_filespec *two,
eab9a40b 304 struct diff_options *o)
6973dcae
JH
305{
306 int lc_a, lc_b;
eab9a40b 307 int color_diff = DIFF_OPT_TST(o, COLOR_DIFF);
1a9eb3b9 308 const char *name_a_tab, *name_b_tab;
13e36ec5
JS
309 const char *metainfo = diff_get_color(color_diff, DIFF_METAINFO);
310 const char *fraginfo = diff_get_color(color_diff, DIFF_FRAGINFO);
311 const char *old = diff_get_color(color_diff, DIFF_FILE_OLD);
312 const char *new = diff_get_color(color_diff, DIFF_FILE_NEW);
313 const char *reset = diff_get_color(color_diff, DIFF_RESET);
d5625091 314 static struct strbuf a_name = STRBUF_INIT, b_name = STRBUF_INIT;
1a9eb3b9 315
8a13becc
JH
316 name_a += (*name_a == '/');
317 name_b += (*name_b == '/');
1a9eb3b9
JH
318 name_a_tab = strchr(name_a, ' ') ? "\t" : "";
319 name_b_tab = strchr(name_b, ' ') ? "\t" : "";
320
d5625091
JH
321 strbuf_reset(&a_name);
322 strbuf_reset(&b_name);
323 quote_two_c_style(&a_name, o->a_prefix, name_a, 0);
324 quote_two_c_style(&b_name, o->b_prefix, name_b, 0);
325
6973dcae
JH
326 diff_populate_filespec(one, 0);
327 diff_populate_filespec(two, 0);
328 lc_a = count_lines(one->data, one->size);
329 lc_b = count_lines(two->data, two->size);
c0c77734
DB
330 fprintf(o->file,
331 "%s--- %s%s%s\n%s+++ %s%s%s\n%s@@ -",
332 metainfo, a_name.buf, name_a_tab, reset,
333 metainfo, b_name.buf, name_b_tab, reset, fraginfo);
334 print_line_count(o->file, lc_a);
335 fprintf(o->file, " +");
336 print_line_count(o->file, lc_b);
337 fprintf(o->file, " @@%s\n", reset);
6973dcae 338 if (lc_a)
c0c77734 339 copy_file_with_prefix(o->file, '-', one->data, one->size, old, reset);
6973dcae 340 if (lc_b)
c0c77734 341 copy_file_with_prefix(o->file, '+', two->data, two->size, new, reset);
6973dcae
JH
342}
343
344static int fill_mmfile(mmfile_t *mf, struct diff_filespec *one)
345{
346 if (!DIFF_FILE_VALID(one)) {
d2543b8e 347 mf->ptr = (char *)""; /* does not matter */
6973dcae
JH
348 mf->size = 0;
349 return 0;
350 }
351 else if (diff_populate_filespec(one, 0))
352 return -1;
353 mf->ptr = one->data;
354 mf->size = one->size;
355 return 0;
356}
357
f59a59e2
JS
358struct diff_words_buffer {
359 mmfile_t text;
360 long alloc;
361 long current; /* output pointer */
362 int suppressed_newline;
363};
364
365static void diff_words_append(char *line, unsigned long len,
366 struct diff_words_buffer *buffer)
367{
368 if (buffer->text.size + len > buffer->alloc) {
369 buffer->alloc = (buffer->text.size + len) * 3 / 2;
370 buffer->text.ptr = xrealloc(buffer->text.ptr, buffer->alloc);
371 }
372 line++;
373 len--;
374 memcpy(buffer->text.ptr + buffer->text.size, line, len);
375 buffer->text.size += len;
376}
377
378struct diff_words_data {
f59a59e2 379 struct diff_words_buffer minus, plus;
c0c77734 380 FILE *file;
f59a59e2
JS
381};
382
c0c77734 383static void print_word(FILE *file, struct diff_words_buffer *buffer, int len, int color,
f59a59e2
JS
384 int suppress_newline)
385{
386 const char *ptr;
387 int eol = 0;
388
389 if (len == 0)
390 return;
391
392 ptr = buffer->text.ptr + buffer->current;
393 buffer->current += len;
394
395 if (ptr[len - 1] == '\n') {
396 eol = 1;
397 len--;
398 }
399
c0c77734
DB
400 fputs(diff_get_color(1, color), file);
401 fwrite(ptr, len, 1, file);
402 fputs(diff_get_color(1, DIFF_RESET), file);
f59a59e2
JS
403
404 if (eol) {
405 if (suppress_newline)
406 buffer->suppressed_newline = 1;
407 else
c0c77734 408 putc('\n', file);
f59a59e2
JS
409 }
410}
411
412static void fn_out_diff_words_aux(void *priv, char *line, unsigned long len)
413{
414 struct diff_words_data *diff_words = priv;
415
416 if (diff_words->minus.suppressed_newline) {
417 if (line[0] != '+')
c0c77734 418 putc('\n', diff_words->file);
f59a59e2
JS
419 diff_words->minus.suppressed_newline = 0;
420 }
421
422 len--;
423 switch (line[0]) {
424 case '-':
c0c77734
DB
425 print_word(diff_words->file,
426 &diff_words->minus, len, DIFF_FILE_OLD, 1);
f59a59e2
JS
427 break;
428 case '+':
c0c77734
DB
429 print_word(diff_words->file,
430 &diff_words->plus, len, DIFF_FILE_NEW, 0);
f59a59e2
JS
431 break;
432 case ' ':
c0c77734
DB
433 print_word(diff_words->file,
434 &diff_words->plus, len, DIFF_PLAIN, 0);
f59a59e2
JS
435 diff_words->minus.current += len;
436 break;
437 }
438}
439
440/* this executes the word diff on the accumulated buffers */
441static void diff_words_show(struct diff_words_data *diff_words)
442{
443 xpparam_t xpp;
444 xdemitconf_t xecfg;
445 xdemitcb_t ecb;
446 mmfile_t minus, plus;
447 int i;
448
30b25010 449 memset(&xecfg, 0, sizeof(xecfg));
f59a59e2
JS
450 minus.size = diff_words->minus.text.size;
451 minus.ptr = xmalloc(minus.size);
452 memcpy(minus.ptr, diff_words->minus.text.ptr, minus.size);
453 for (i = 0; i < minus.size; i++)
454 if (isspace(minus.ptr[i]))
455 minus.ptr[i] = '\n';
456 diff_words->minus.current = 0;
457
458 plus.size = diff_words->plus.text.size;
459 plus.ptr = xmalloc(plus.size);
460 memcpy(plus.ptr, diff_words->plus.text.ptr, plus.size);
461 for (i = 0; i < plus.size; i++)
462 if (isspace(plus.ptr[i]))
463 plus.ptr[i] = '\n';
464 diff_words->plus.current = 0;
465
466 xpp.flags = XDF_NEED_MINIMAL;
467 xecfg.ctxlen = diff_words->minus.alloc + diff_words->plus.alloc;
8a3f524b
JH
468 xdi_diff_outf(&minus, &plus, fn_out_diff_words_aux, diff_words,
469 &xpp, &xecfg, &ecb);
f59a59e2
JS
470 free(minus.ptr);
471 free(plus.ptr);
472 diff_words->minus.text.size = diff_words->plus.text.size = 0;
473
474 if (diff_words->minus.suppressed_newline) {
c0c77734 475 putc('\n', diff_words->file);
f59a59e2
JS
476 diff_words->minus.suppressed_newline = 0;
477 }
478}
479
23707811
JH
480typedef unsigned long (*sane_truncate_fn)(char *line, unsigned long len);
481
6973dcae 482struct emit_callback {
cd112cef 483 int nparents, color_diff;
cf1b7869 484 unsigned ws_rule;
23707811 485 sane_truncate_fn truncate;
6973dcae 486 const char **label_path;
f59a59e2 487 struct diff_words_data *diff_words;
34a5e1a2 488 int *found_changesp;
c0c77734 489 FILE *file;
6973dcae
JH
490};
491
f59a59e2
JS
492static void free_diff_words_data(struct emit_callback *ecbdata)
493{
494 if (ecbdata->diff_words) {
495 /* flush buffers */
496 if (ecbdata->diff_words->minus.text.size ||
497 ecbdata->diff_words->plus.text.size)
498 diff_words_show(ecbdata->diff_words);
499
8e0f7003
JM
500 free (ecbdata->diff_words->minus.text.ptr);
501 free (ecbdata->diff_words->plus.text.ptr);
f59a59e2
JS
502 free(ecbdata->diff_words);
503 ecbdata->diff_words = NULL;
504 }
505}
506
ce436973 507const char *diff_get_color(int diff_use_color, enum color_diff ix)
cd112cef
JS
508{
509 if (diff_use_color)
50f575fc
LT
510 return diff_colors[ix];
511 return "";
cd112cef
JS
512}
513
c0c77734 514static void emit_line(FILE *file, const char *set, const char *reset, const char *line, int len)
448c3ef1 515{
4afbcab9
JH
516 int has_trailing_newline = (len > 0 && line[len-1] == '\n');
517 if (has_trailing_newline)
06ff64ae
SG
518 len--;
519
c0c77734
DB
520 fputs(set, file);
521 fwrite(line, len, 1, file);
522 fputs(reset, file);
4afbcab9
JH
523 if (has_trailing_newline)
524 fputc('\n', file);
448c3ef1
JH
525}
526
c5a8c3ec
JS
527static void emit_add_line(const char *reset, struct emit_callback *ecbdata, const char *line, int len)
528{
529 const char *ws = diff_get_color(ecbdata->color_diff, DIFF_WHITESPACE);
530 const char *set = diff_get_color(ecbdata->color_diff, DIFF_FILE_NEW);
531
532 if (!*ws)
c0c77734 533 emit_line(ecbdata->file, set, reset, line, len);
c1795bb0
WC
534 else {
535 /* Emit just the prefix, then the rest. */
c0c77734 536 emit_line(ecbdata->file, set, reset, line, ecbdata->nparents);
8f8841e9
JH
537 ws_check_emit(line + ecbdata->nparents,
538 len - ecbdata->nparents, ecbdata->ws_rule,
539 ecbdata->file, set, reset, ws);
c1795bb0 540 }
c5a8c3ec
JS
541}
542
23707811
JH
543static unsigned long sane_truncate_line(struct emit_callback *ecb, char *line, unsigned long len)
544{
545 const char *cp;
546 unsigned long allot;
547 size_t l = len;
548
549 if (ecb->truncate)
550 return ecb->truncate(line, len);
551 cp = line;
552 allot = l;
553 while (0 < l) {
554 (void) utf8_width(&cp, &l);
555 if (!cp)
556 break; /* truncated in the middle? */
557 }
558 return allot - l;
559}
560
cd112cef 561static void fn_out_consume(void *priv, char *line, unsigned long len)
6973dcae
JH
562{
563 int i;
448c3ef1 564 int color;
6973dcae 565 struct emit_callback *ecbdata = priv;
472ca780
JK
566 const char *meta = diff_get_color(ecbdata->color_diff, DIFF_METAINFO);
567 const char *plain = diff_get_color(ecbdata->color_diff, DIFF_PLAIN);
ce436973 568 const char *reset = diff_get_color(ecbdata->color_diff, DIFF_RESET);
6973dcae 569
34a5e1a2
JS
570 *(ecbdata->found_changesp) = 1;
571
6973dcae 572 if (ecbdata->label_path[0]) {
1a9eb3b9
JH
573 const char *name_a_tab, *name_b_tab;
574
575 name_a_tab = strchr(ecbdata->label_path[0], ' ') ? "\t" : "";
576 name_b_tab = strchr(ecbdata->label_path[1], ' ') ? "\t" : "";
577
c0c77734
DB
578 fprintf(ecbdata->file, "%s--- %s%s%s\n",
579 meta, ecbdata->label_path[0], reset, name_a_tab);
580 fprintf(ecbdata->file, "%s+++ %s%s%s\n",
581 meta, ecbdata->label_path[1], reset, name_b_tab);
6973dcae
JH
582 ecbdata->label_path[0] = ecbdata->label_path[1] = NULL;
583 }
cd112cef 584
a624eaa7
JM
585 if (diff_suppress_blank_empty
586 && len == 2 && line[0] == ' ' && line[1] == '\n') {
587 line[0] = '\n';
588 len = 1;
589 }
590
cd112cef
JS
591 /* This is not really necessary for now because
592 * this codepath only deals with two-way diffs.
593 */
594 for (i = 0; i < len && line[i] == '@'; i++)
595 ;
596 if (2 <= i && i < len && line[i] == ' ') {
597 ecbdata->nparents = i - 1;
23707811 598 len = sane_truncate_line(ecbdata, line, len);
c0c77734
DB
599 emit_line(ecbdata->file,
600 diff_get_color(ecbdata->color_diff, DIFF_FRAGINFO),
448c3ef1 601 reset, line, len);
23707811 602 if (line[len-1] != '\n')
c0c77734 603 putc('\n', ecbdata->file);
448c3ef1 604 return;
cd112cef 605 }
448c3ef1
JH
606
607 if (len < ecbdata->nparents) {
c0c77734 608 emit_line(ecbdata->file, reset, reset, line, len);
448c3ef1 609 return;
cd112cef 610 }
448c3ef1
JH
611
612 color = DIFF_PLAIN;
613 if (ecbdata->diff_words && ecbdata->nparents != 1)
614 /* fall back to normal diff */
615 free_diff_words_data(ecbdata);
616 if (ecbdata->diff_words) {
617 if (line[0] == '-') {
618 diff_words_append(line, len,
619 &ecbdata->diff_words->minus);
620 return;
621 } else if (line[0] == '+') {
622 diff_words_append(line, len,
623 &ecbdata->diff_words->plus);
624 return;
625 }
626 if (ecbdata->diff_words->minus.text.size ||
627 ecbdata->diff_words->plus.text.size)
628 diff_words_show(ecbdata->diff_words);
629 line++;
50f575fc 630 len--;
c0c77734 631 emit_line(ecbdata->file, plain, reset, line, len);
448c3ef1
JH
632 return;
633 }
634 for (i = 0; i < ecbdata->nparents && len; i++) {
635 if (line[i] == '-')
636 color = DIFF_FILE_OLD;
637 else if (line[i] == '+')
638 color = DIFF_FILE_NEW;
639 }
640
641 if (color != DIFF_FILE_NEW) {
c0c77734
DB
642 emit_line(ecbdata->file,
643 diff_get_color(ecbdata->color_diff, color),
448c3ef1
JH
644 reset, line, len);
645 return;
646 }
647 emit_add_line(reset, ecbdata, line, len);
6973dcae
JH
648}
649
650static char *pprint_rename(const char *a, const char *b)
651{
652 const char *old = a;
653 const char *new = b;
663af342 654 struct strbuf name;
6973dcae
JH
655 int pfx_length, sfx_length;
656 int len_a = strlen(a);
657 int len_b = strlen(b);
663af342 658 int a_midlen, b_midlen;
e5bfbf9b
AJ
659 int qlen_a = quote_c_style(a, NULL, NULL, 0);
660 int qlen_b = quote_c_style(b, NULL, NULL, 0);
661
663af342 662 strbuf_init(&name, 0);
e5bfbf9b 663 if (qlen_a || qlen_b) {
663af342
PH
664 quote_c_style(a, &name, NULL, 0);
665 strbuf_addstr(&name, " => ");
666 quote_c_style(b, &name, NULL, 0);
b315c5c0 667 return strbuf_detach(&name, NULL);
e5bfbf9b 668 }
6973dcae
JH
669
670 /* Find common prefix */
671 pfx_length = 0;
672 while (*old && *new && *old == *new) {
673 if (*old == '/')
674 pfx_length = old - a + 1;
675 old++;
676 new++;
677 }
678
679 /* Find common suffix */
680 old = a + len_a;
681 new = b + len_b;
682 sfx_length = 0;
683 while (a <= old && b <= new && *old == *new) {
684 if (*old == '/')
685 sfx_length = len_a - (old - a);
686 old--;
687 new--;
688 }
689
690 /*
691 * pfx{mid-a => mid-b}sfx
692 * {pfx-a => pfx-b}sfx
693 * pfx{sfx-a => sfx-b}
694 * name-a => name-b
695 */
663af342
PH
696 a_midlen = len_a - pfx_length - sfx_length;
697 b_midlen = len_b - pfx_length - sfx_length;
698 if (a_midlen < 0)
699 a_midlen = 0;
700 if (b_midlen < 0)
701 b_midlen = 0;
702
703 strbuf_grow(&name, pfx_length + a_midlen + b_midlen + sfx_length + 7);
6973dcae 704 if (pfx_length + sfx_length) {
663af342
PH
705 strbuf_add(&name, a, pfx_length);
706 strbuf_addch(&name, '{');
6973dcae 707 }
663af342
PH
708 strbuf_add(&name, a + pfx_length, a_midlen);
709 strbuf_addstr(&name, " => ");
710 strbuf_add(&name, b + pfx_length, b_midlen);
711 if (pfx_length + sfx_length) {
712 strbuf_addch(&name, '}');
713 strbuf_add(&name, a + len_a - sfx_length, sfx_length);
6973dcae 714 }
b315c5c0 715 return strbuf_detach(&name, NULL);
6973dcae
JH
716}
717
718struct diffstat_t {
6973dcae
JH
719 int nr;
720 int alloc;
721 struct diffstat_file {
f604652e 722 char *from_name;
6973dcae 723 char *name;
f604652e 724 char *print_name;
6973dcae
JH
725 unsigned is_unmerged:1;
726 unsigned is_binary:1;
727 unsigned is_renamed:1;
728 unsigned int added, deleted;
729 } **files;
730};
731
732static struct diffstat_file *diffstat_add(struct diffstat_t *diffstat,
733 const char *name_a,
734 const char *name_b)
735{
736 struct diffstat_file *x;
737 x = xcalloc(sizeof (*x), 1);
738 if (diffstat->nr == diffstat->alloc) {
739 diffstat->alloc = alloc_nr(diffstat->alloc);
740 diffstat->files = xrealloc(diffstat->files,
741 diffstat->alloc * sizeof(x));
742 }
743 diffstat->files[diffstat->nr++] = x;
744 if (name_b) {
f604652e
JH
745 x->from_name = xstrdup(name_a);
746 x->name = xstrdup(name_b);
6973dcae
JH
747 x->is_renamed = 1;
748 }
f604652e
JH
749 else {
750 x->from_name = NULL;
9befac47 751 x->name = xstrdup(name_a);
f604652e 752 }
6973dcae
JH
753 return x;
754}
755
756static void diffstat_consume(void *priv, char *line, unsigned long len)
757{
758 struct diffstat_t *diffstat = priv;
759 struct diffstat_file *x = diffstat->files[diffstat->nr - 1];
760
761 if (line[0] == '+')
762 x->added++;
763 else if (line[0] == '-')
764 x->deleted++;
765}
766
698ce6f8 767const char mime_boundary_leader[] = "------------";
6973dcae 768
a2540023
JH
769static int scale_linear(int it, int width, int max_change)
770{
771 /*
3ed74e60
JS
772 * make sure that at least one '-' is printed if there were deletions,
773 * and likewise for '+'.
a2540023 774 */
3ed74e60
JS
775 if (max_change < 2)
776 return it;
777 return ((it - 1) * (width - 1) + max_change - 1) / (max_change - 1);
a2540023
JH
778}
779
c0c77734
DB
780static void show_name(FILE *file,
781 const char *prefix, const char *name, int len,
785f7432 782 const char *reset, const char *set)
a2540023 783{
c0c77734 784 fprintf(file, " %s%s%-*s%s |", set, prefix, len, name, reset);
a2540023
JH
785}
786
c0c77734 787static void show_graph(FILE *file, char ch, int cnt, const char *set, const char *reset)
a2540023
JH
788{
789 if (cnt <= 0)
790 return;
c0c77734 791 fprintf(file, "%s", set);
a2540023 792 while (cnt--)
c0c77734
DB
793 putc(ch, file);
794 fprintf(file, "%s", reset);
a2540023
JH
795}
796
f604652e
JH
797static void fill_print_name(struct diffstat_file *file)
798{
799 char *pname;
800
801 if (file->print_name)
802 return;
803
804 if (!file->is_renamed) {
805 struct strbuf buf;
806 strbuf_init(&buf, 0);
807 if (quote_c_style(file->name, &buf, NULL, 0)) {
808 pname = strbuf_detach(&buf, NULL);
809 } else {
810 pname = file->name;
811 strbuf_release(&buf);
812 }
813 } else {
814 pname = pprint_rename(file->from_name, file->name);
815 }
816 file->print_name = pname;
817}
818
a2540023 819static void show_stats(struct diffstat_t* data, struct diff_options *options)
6973dcae 820{
6973dcae 821 int i, len, add, del, total, adds = 0, dels = 0;
a2540023 822 int max_change = 0, max_len = 0;
6973dcae 823 int total_files = data->nr;
a2540023 824 int width, name_width;
785f7432 825 const char *reset, *set, *add_c, *del_c;
6973dcae
JH
826
827 if (data->nr == 0)
828 return;
829
a2540023
JH
830 width = options->stat_width ? options->stat_width : 80;
831 name_width = options->stat_name_width ? options->stat_name_width : 50;
832
833 /* Sanity: give at least 5 columns to the graph,
834 * but leave at least 10 columns for the name.
835 */
861d1af3
OM
836 if (width < 25)
837 width = 25;
838 if (name_width < 10)
839 name_width = 10;
840 else if (width < name_width + 15)
841 name_width = width - 15;
a2540023
JH
842
843 /* Find the longest filename and max number of changes */
8f67f8ae
PH
844 reset = diff_get_color_opt(options, DIFF_RESET);
845 set = diff_get_color_opt(options, DIFF_PLAIN);
846 add_c = diff_get_color_opt(options, DIFF_FILE_NEW);
847 del_c = diff_get_color_opt(options, DIFF_FILE_OLD);
785f7432 848
6973dcae
JH
849 for (i = 0; i < data->nr; i++) {
850 struct diffstat_file *file = data->files[i];
a2540023 851 int change = file->added + file->deleted;
f604652e
JH
852 fill_print_name(file);
853 len = strlen(file->print_name);
6973dcae
JH
854 if (max_len < len)
855 max_len = len;
856
857 if (file->is_binary || file->is_unmerged)
858 continue;
a2540023
JH
859 if (max_change < change)
860 max_change = change;
6973dcae
JH
861 }
862
a2540023
JH
863 /* Compute the width of the graph part;
864 * 10 is for one blank at the beginning of the line plus
865 * " | count " between the name and the graph.
866 *
867 * From here on, name_width is the width of the name area,
868 * and width is the width of the graph area.
869 */
870 name_width = (name_width < max_len) ? name_width : max_len;
871 if (width < (name_width + 10) + max_change)
872 width = width - (name_width + 10);
873 else
874 width = max_change;
875
6973dcae 876 for (i = 0; i < data->nr; i++) {
d2543b8e 877 const char *prefix = "";
f604652e 878 char *name = data->files[i]->print_name;
6973dcae
JH
879 int added = data->files[i]->added;
880 int deleted = data->files[i]->deleted;
a2540023 881 int name_len;
6973dcae
JH
882
883 /*
884 * "scale" the filename
885 */
a2540023
JH
886 len = name_width;
887 name_len = strlen(name);
888 if (name_width < name_len) {
6973dcae
JH
889 char *slash;
890 prefix = "...";
a2540023
JH
891 len -= 3;
892 name += name_len - len;
6973dcae
JH
893 slash = strchr(name, '/');
894 if (slash)
895 name = slash;
896 }
6973dcae
JH
897
898 if (data->files[i]->is_binary) {
c0c77734
DB
899 show_name(options->file, prefix, name, len, reset, set);
900 fprintf(options->file, " Bin ");
901 fprintf(options->file, "%s%d%s", del_c, deleted, reset);
902 fprintf(options->file, " -> ");
903 fprintf(options->file, "%s%d%s", add_c, added, reset);
904 fprintf(options->file, " bytes");
905 fprintf(options->file, "\n");
f604652e 906 continue;
6973dcae
JH
907 }
908 else if (data->files[i]->is_unmerged) {
c0c77734
DB
909 show_name(options->file, prefix, name, len, reset, set);
910 fprintf(options->file, " Unmerged\n");
f604652e 911 continue;
6973dcae
JH
912 }
913 else if (!data->files[i]->is_renamed &&
914 (added + deleted == 0)) {
915 total_files--;
f604652e 916 continue;
6973dcae
JH
917 }
918
a2540023
JH
919 /*
920 * scale the add/delete
921 */
6973dcae
JH
922 add = added;
923 del = deleted;
924 total = add + del;
925 adds += add;
926 dels += del;
927
a2540023 928 if (width <= max_change) {
a2540023 929 add = scale_linear(add, width, max_change);
3ed74e60
JS
930 del = scale_linear(del, width, max_change);
931 total = add + del;
6973dcae 932 }
c0c77734 933 show_name(options->file, prefix, name, len, reset, set);
4d9b5359
JK
934 fprintf(options->file, "%5d%s", added + deleted,
935 added + deleted ? " " : "");
c0c77734
DB
936 show_graph(options->file, '+', add, add_c, reset);
937 show_graph(options->file, '-', del, del_c, reset);
938 fprintf(options->file, "\n");
939 }
940 fprintf(options->file,
941 "%s %d files changed, %d insertions(+), %d deletions(-)%s\n",
785f7432 942 set, total_files, adds, dels, reset);
6973dcae
JH
943}
944
c0c77734 945static void show_shortstats(struct diffstat_t* data, struct diff_options *options)
ebd124c6
NP
946{
947 int i, adds = 0, dels = 0, total_files = data->nr;
948
949 if (data->nr == 0)
950 return;
951
952 for (i = 0; i < data->nr; i++) {
953 if (!data->files[i]->is_binary &&
954 !data->files[i]->is_unmerged) {
955 int added = data->files[i]->added;
956 int deleted= data->files[i]->deleted;
957 if (!data->files[i]->is_renamed &&
958 (added + deleted == 0)) {
959 total_files--;
960 } else {
961 adds += added;
962 dels += deleted;
963 }
964 }
ebd124c6 965 }
c0c77734 966 fprintf(options->file, " %d files changed, %d insertions(+), %d deletions(-)\n",
ebd124c6
NP
967 total_files, adds, dels);
968}
969
74e2abe5
JH
970static void show_numstat(struct diffstat_t* data, struct diff_options *options)
971{
972 int i;
973
f604652e
JH
974 if (data->nr == 0)
975 return;
976
74e2abe5
JH
977 for (i = 0; i < data->nr; i++) {
978 struct diffstat_file *file = data->files[i];
979
bfddbc5e 980 if (file->is_binary)
c0c77734 981 fprintf(options->file, "-\t-\t");
bfddbc5e 982 else
c0c77734
DB
983 fprintf(options->file,
984 "%d\t%d\t", file->added, file->deleted);
f604652e
JH
985 if (options->line_termination) {
986 fill_print_name(file);
987 if (!file->is_renamed)
c0c77734 988 write_name_quoted(file->name, options->file,
f604652e
JH
989 options->line_termination);
990 else {
c0c77734
DB
991 fputs(file->print_name, options->file);
992 putc(options->line_termination, options->file);
f604652e 993 }
663af342 994 } else {
f604652e 995 if (file->is_renamed) {
c0c77734
DB
996 putc('\0', options->file);
997 write_name_quoted(file->from_name, options->file, '\0');
f604652e 998 }
c0c77734 999 write_name_quoted(file->name, options->file, '\0');
663af342 1000 }
74e2abe5
JH
1001 }
1002}
1003
c04a7155
JH
1004struct dirstat_file {
1005 const char *name;
1006 unsigned long changed;
7df7c019
LT
1007};
1008
c04a7155
JH
1009struct dirstat_dir {
1010 struct dirstat_file *files;
1011 int alloc, nr, percent, cumulative;
1012};
1013
1014static long gather_dirstat(FILE *file, struct dirstat_dir *dir, unsigned long changed, const char *base, int baselen)
7df7c019
LT
1015{
1016 unsigned long this_dir = 0;
1017 unsigned int sources = 0;
1018
1019 while (dir->nr) {
c04a7155 1020 struct dirstat_file *f = dir->files;
7df7c019
LT
1021 int namelen = strlen(f->name);
1022 unsigned long this;
1023 char *slash;
1024
1025 if (namelen < baselen)
1026 break;
1027 if (memcmp(f->name, base, baselen))
1028 break;
1029 slash = strchr(f->name + baselen, '/');
1030 if (slash) {
1031 int newbaselen = slash + 1 - f->name;
c0c77734 1032 this = gather_dirstat(file, dir, changed, f->name, newbaselen);
7df7c019
LT
1033 sources++;
1034 } else {
c04a7155 1035 this = f->changed;
7df7c019
LT
1036 dir->files++;
1037 dir->nr--;
1038 sources += 2;
1039 }
1040 this_dir += this;
1041 }
1042
1043 /*
1044 * We don't report dirstat's for
1045 * - the top level
1046 * - or cases where everything came from a single directory
1047 * under this directory (sources == 1).
1048 */
1049 if (baselen && sources != 1) {
1050 int permille = this_dir * 1000 / changed;
1051 if (permille) {
1052 int percent = permille / 10;
1053 if (percent >= dir->percent) {
c0c77734 1054 fprintf(file, "%4d.%01d%% %.*s\n", percent, permille % 10, baselen, base);
7df7c019
LT
1055 if (!dir->cumulative)
1056 return 0;
1057 }
1058 }
1059 }
1060 return this_dir;
1061}
1062
c04a7155 1063static void show_dirstat(struct diff_options *options)
7df7c019
LT
1064{
1065 int i;
1066 unsigned long changed;
c04a7155
JH
1067 struct dirstat_dir dir;
1068 struct diff_queue_struct *q = &diff_queued_diff;
1069
1070 dir.files = NULL;
1071 dir.alloc = 0;
1072 dir.nr = 0;
1073 dir.percent = options->dirstat_percent;
1074 dir.cumulative = options->output_format & DIFF_FORMAT_CUMULATIVE;
7df7c019 1075
7df7c019 1076 changed = 0;
c04a7155
JH
1077 for (i = 0; i < q->nr; i++) {
1078 struct diff_filepair *p = q->queue[i];
1079 const char *name;
1080 unsigned long copied, added, damage;
1081
1082 name = p->one->path ? p->one->path : p->two->path;
1083
1084 if (DIFF_FILE_VALID(p->one) && DIFF_FILE_VALID(p->two)) {
1085 diff_populate_filespec(p->one, 0);
1086 diff_populate_filespec(p->two, 0);
1087 diffcore_count_changes(p->one, p->two, NULL, NULL, 0,
1088 &copied, &added);
1089 diff_free_filespec_data(p->one);
1090 diff_free_filespec_data(p->two);
1091 } else if (DIFF_FILE_VALID(p->one)) {
1092 diff_populate_filespec(p->one, 1);
1093 copied = added = 0;
1094 diff_free_filespec_data(p->one);
1095 } else if (DIFF_FILE_VALID(p->two)) {
1096 diff_populate_filespec(p->two, 1);
1097 copied = 0;
1098 added = p->two->size;
1099 diff_free_filespec_data(p->two);
1100 } else
2b0b551d 1101 continue;
c04a7155
JH
1102
1103 /*
1104 * Original minus copied is the removed material,
1105 * added is the new material. They are both damages
1106 * made to the preimage.
1107 */
1108 damage = (p->one->size - copied) + added;
1109
1110 ALLOC_GROW(dir.files, dir.nr + 1, dir.alloc);
1111 dir.files[dir.nr].name = name;
1112 dir.files[dir.nr].changed = damage;
1113 changed += damage;
1114 dir.nr++;
7df7c019
LT
1115 }
1116
1117 /* This can happen even with many files, if everything was renames */
1118 if (!changed)
1119 return;
1120
1121 /* Show all directories with more than x% of the changes */
c0c77734 1122 gather_dirstat(options->file, &dir, changed, "", 0);
7df7c019
LT
1123}
1124
f604652e
JH
1125static void free_diffstat_info(struct diffstat_t *diffstat)
1126{
1127 int i;
1128 for (i = 0; i < diffstat->nr; i++) {
1129 struct diffstat_file *f = diffstat->files[i];
1130 if (f->name != f->print_name)
1131 free(f->print_name);
1132 free(f->name);
1133 free(f->from_name);
1134 free(f);
1135 }
1136 free(diffstat->files);
1137}
1138
88246898 1139struct checkdiff_t {
88246898 1140 const char *filename;
1ba111d1
JH
1141 int lineno;
1142 struct diff_options *o;
cf1b7869 1143 unsigned ws_rule;
62c64895 1144 unsigned status;
877f23cc 1145 int trailing_blanks_start;
88246898
JS
1146};
1147
04954043
JH
1148static int is_conflict_marker(const char *line, unsigned long len)
1149{
1150 char firstchar;
1151 int cnt;
1152
1153 if (len < 8)
1154 return 0;
1155 firstchar = line[0];
1156 switch (firstchar) {
1157 case '=': case '>': case '<':
1158 break;
1159 default:
1160 return 0;
1161 }
1162 for (cnt = 1; cnt < 7; cnt++)
1163 if (line[cnt] != firstchar)
1164 return 0;
1165 /* line[0] thru line[6] are same as firstchar */
1166 if (firstchar == '=') {
1167 /* divider between ours and theirs? */
1168 if (len != 8 || line[7] != '\n')
1169 return 0;
1170 } else if (len < 8 || !isspace(line[7])) {
1171 /* not divider before ours nor after theirs */
1172 return 0;
1173 }
1174 return 1;
1175}
1176
88246898
JS
1177static void checkdiff_consume(void *priv, char *line, unsigned long len)
1178{
1179 struct checkdiff_t *data = priv;
1ba111d1
JH
1180 int color_diff = DIFF_OPT_TST(data->o, COLOR_DIFF);
1181 const char *ws = diff_get_color(color_diff, DIFF_WHITESPACE);
1182 const char *reset = diff_get_color(color_diff, DIFF_RESET);
1183 const char *set = diff_get_color(color_diff, DIFF_FILE_NEW);
c1795bb0 1184 char *err;
88246898
JS
1185
1186 if (line[0] == '+') {
18374e58 1187 unsigned bad;
0ef617f4 1188 data->lineno++;
877f23cc
JH
1189 if (!ws_blank_line(line + 1, len - 1, data->ws_rule))
1190 data->trailing_blanks_start = 0;
1191 else if (!data->trailing_blanks_start)
1192 data->trailing_blanks_start = data->lineno;
04954043
JH
1193 if (is_conflict_marker(line + 1, len - 1)) {
1194 data->status |= 1;
1195 fprintf(data->o->file,
1196 "%s:%d: leftover conflict marker\n",
1197 data->filename, data->lineno);
1198 }
8f8841e9 1199 bad = ws_check(line + 1, len - 1, data->ws_rule);
18374e58 1200 if (!bad)
c1795bb0 1201 return;
18374e58
JH
1202 data->status |= bad;
1203 err = whitespace_error_string(bad);
1ba111d1
JH
1204 fprintf(data->o->file, "%s:%d: %s.\n",
1205 data->filename, data->lineno, err);
c1795bb0 1206 free(err);
1ba111d1 1207 emit_line(data->o->file, set, reset, line, 1);
8f8841e9 1208 ws_check_emit(line + 1, len - 1, data->ws_rule,
1ba111d1 1209 data->o->file, set, reset, ws);
877f23cc 1210 } else if (line[0] == ' ') {
88246898 1211 data->lineno++;
877f23cc
JH
1212 data->trailing_blanks_start = 0;
1213 } else if (line[0] == '@') {
88246898
JS
1214 char *plus = strchr(line, '+');
1215 if (plus)
0ef617f4 1216 data->lineno = strtol(plus, NULL, 10) - 1;
88246898
JS
1217 else
1218 die("invalid diff");
877f23cc 1219 data->trailing_blanks_start = 0;
88246898
JS
1220 }
1221}
1222
0660626c
JH
1223static unsigned char *deflate_it(char *data,
1224 unsigned long size,
1225 unsigned long *result_size)
051308f6 1226{
0660626c
JH
1227 int bound;
1228 unsigned char *deflated;
1229 z_stream stream;
1230
1231 memset(&stream, 0, sizeof(stream));
12f6c308 1232 deflateInit(&stream, zlib_compression_level);
0660626c
JH
1233 bound = deflateBound(&stream, size);
1234 deflated = xmalloc(bound);
1235 stream.next_out = deflated;
1236 stream.avail_out = bound;
1237
1238 stream.next_in = (unsigned char *)data;
1239 stream.avail_in = size;
1240 while (deflate(&stream, Z_FINISH) == Z_OK)
1241 ; /* nothing */
1242 deflateEnd(&stream);
1243 *result_size = stream.total_out;
1244 return deflated;
051308f6
JH
1245}
1246
c0c77734 1247static void emit_binary_diff_body(FILE *file, mmfile_t *one, mmfile_t *two)
051308f6 1248{
0660626c
JH
1249 void *cp;
1250 void *delta;
1251 void *deflated;
1252 void *data;
1253 unsigned long orig_size;
1254 unsigned long delta_size;
1255 unsigned long deflate_size;
1256 unsigned long data_size;
051308f6 1257
0660626c
JH
1258 /* We could do deflated delta, or we could do just deflated two,
1259 * whichever is smaller.
051308f6 1260 */
0660626c
JH
1261 delta = NULL;
1262 deflated = deflate_it(two->ptr, two->size, &deflate_size);
1263 if (one->size && two->size) {
1264 delta = diff_delta(one->ptr, one->size,
1265 two->ptr, two->size,
1266 &delta_size, deflate_size);
1267 if (delta) {
1268 void *to_free = delta;
1269 orig_size = delta_size;
1270 delta = deflate_it(delta, delta_size, &delta_size);
1271 free(to_free);
051308f6
JH
1272 }
1273 }
051308f6 1274
0660626c 1275 if (delta && delta_size < deflate_size) {
c0c77734 1276 fprintf(file, "delta %lu\n", orig_size);
0660626c
JH
1277 free(deflated);
1278 data = delta;
1279 data_size = delta_size;
1280 }
1281 else {
c0c77734 1282 fprintf(file, "literal %lu\n", two->size);
0660626c
JH
1283 free(delta);
1284 data = deflated;
1285 data_size = deflate_size;
1286 }
051308f6 1287
0660626c
JH
1288 /* emit data encoded in base85 */
1289 cp = data;
1290 while (data_size) {
1291 int bytes = (52 < data_size) ? 52 : data_size;
051308f6 1292 char line[70];
0660626c 1293 data_size -= bytes;
051308f6
JH
1294 if (bytes <= 26)
1295 line[0] = bytes + 'A' - 1;
1296 else
1297 line[0] = bytes - 26 + 'a' - 1;
1298 encode_85(line + 1, cp, bytes);
1d7f171c 1299 cp = (char *) cp + bytes;
c0c77734
DB
1300 fputs(line, file);
1301 fputc('\n', file);
051308f6 1302 }
c0c77734 1303 fprintf(file, "\n");
0660626c 1304 free(data);
051308f6
JH
1305}
1306
c0c77734 1307static void emit_binary_diff(FILE *file, mmfile_t *one, mmfile_t *two)
d4c452f0 1308{
c0c77734
DB
1309 fprintf(file, "GIT binary patch\n");
1310 emit_binary_diff_body(file, one, two);
1311 emit_binary_diff_body(file, two, one);
d4c452f0
JH
1312}
1313
8c701249
JH
1314static void setup_diff_attr_check(struct git_attr_check *check)
1315{
1316 static struct git_attr *attr_diff;
1317
29a3eefd 1318 if (!attr_diff) {
8c701249 1319 attr_diff = git_attr("diff", 4);
29a3eefd
JH
1320 }
1321 check[0].attr = attr_diff;
8c701249
JH
1322}
1323
29a3eefd 1324static void diff_filespec_check_attr(struct diff_filespec *one)
6973dcae 1325{
e0e324a4 1326 struct git_attr_check attr_diff_check;
2c3fa66f 1327 int check_from_data = 0;
8c701249 1328
29a3eefd
JH
1329 if (one->checked_attr)
1330 return;
1331
e0e324a4 1332 setup_diff_attr_check(&attr_diff_check);
29a3eefd 1333 one->is_binary = 0;
e0e324a4 1334 one->funcname_pattern_ident = NULL;
29a3eefd 1335
e0e324a4 1336 if (!git_checkattr(one->path, 1, &attr_diff_check)) {
29a3eefd
JH
1337 const char *value;
1338
1339 /* binaryness */
e0e324a4 1340 value = attr_diff_check.value;
515106fa 1341 if (ATTR_TRUE(value))
29a3eefd 1342 ;
515106fa 1343 else if (ATTR_FALSE(value))
29a3eefd 1344 one->is_binary = 1;
2c3fa66f
JH
1345 else
1346 check_from_data = 1;
f258475a 1347
e0e324a4 1348 /* funcname pattern ident */
f258475a
JH
1349 if (ATTR_TRUE(value) || ATTR_FALSE(value) || ATTR_UNSET(value))
1350 ;
1351 else
e0e324a4 1352 one->funcname_pattern_ident = value;
515106fa 1353 }
40250af4 1354
2c3fa66f
JH
1355 if (check_from_data) {
1356 if (!one->data && DIFF_FILE_VALID(one))
1357 diff_populate_filespec(one, 0);
29a3eefd 1358
2c3fa66f
JH
1359 if (one->data)
1360 one->is_binary = buffer_is_binary(one->data, one->size);
1361 }
29a3eefd
JH
1362}
1363
1364int diff_filespec_is_binary(struct diff_filespec *one)
1365{
1366 diff_filespec_check_attr(one);
1367 return one->is_binary;
6973dcae
JH
1368}
1369
e0e324a4 1370static const char *funcname_pattern(const char *ident)
f258475a 1371{
e0e324a4 1372 struct funcname_pattern *pp;
f258475a 1373
e0e324a4
JH
1374 for (pp = funcname_pattern_list; pp; pp = pp->next)
1375 if (!strcmp(ident, pp->name))
1376 return pp->pattern;
f258475a
JH
1377 return NULL;
1378}
1379
d3a93dc9
JH
1380static struct builtin_funcname_pattern {
1381 const char *name;
1382 const char *pattern;
1383} builtin_funcname_pattern[] = {
1384 { "java", "!^[ ]*\\(catch\\|do\\|for\\|if\\|instanceof\\|"
1385 "new\\|return\\|switch\\|throw\\|while\\)\n"
1386 "^[ ]*\\(\\([ ]*"
1387 "[A-Za-z_][A-Za-z_0-9]*\\)\\{2,\\}"
14a5c7c1 1388 "[ ]*([^;]*\\)$" },
b50005b7
AP
1389 { "pascal", "^\\(\\(procedure\\|function\\|constructor\\|"
1390 "destructor\\|interface\\|implementation\\|"
1391 "initialization\\|finalization\\)[ \t]*.*\\)$"
1392 "\\|"
1393 "^\\(.*=[ \t]*\\(class\\|record\\).*\\)$"
1394 },
23b5beb2 1395 { "bibtex", "\\(@[a-zA-Z]\\{1,\\}[ \t]*{\\{0,1\\}[ \t]*[^ \t\"@',\\#}{~%]*\\).*$" },
807d8694 1396 { "tex", "^\\(\\\\\\(\\(sub\\)*section\\|chapter\\|part\\)\\*\\{0,1\\}{.*\\)$" },
ad8c1d92 1397 { "ruby", "^\\s*\\(\\(class\\|module\\|def\\)\\s.*\\)$" },
d3a93dc9
JH
1398};
1399
e0e324a4 1400static const char *diff_funcname_pattern(struct diff_filespec *one)
f258475a 1401{
e0e324a4 1402 const char *ident, *pattern;
d3a93dc9 1403 int i;
f258475a
JH
1404
1405 diff_filespec_check_attr(one);
e0e324a4 1406 ident = one->funcname_pattern_ident;
f258475a
JH
1407
1408 if (!ident)
1409 /*
1410 * If the config file has "funcname.default" defined, that
1411 * regexp is used; otherwise NULL is returned and xemit uses
1412 * the built-in default.
1413 */
e0e324a4 1414 return funcname_pattern("default");
f258475a
JH
1415
1416 /* Look up custom "funcname.$ident" regexp from config. */
e0e324a4
JH
1417 pattern = funcname_pattern(ident);
1418 if (pattern)
1419 return pattern;
f258475a
JH
1420
1421 /*
1422 * And define built-in fallback patterns here. Note that
9f6fe822 1423 * these can be overridden by the user's config settings.
f258475a 1424 */
d3a93dc9
JH
1425 for (i = 0; i < ARRAY_SIZE(builtin_funcname_pattern); i++)
1426 if (!strcmp(ident, builtin_funcname_pattern[i].name))
1427 return builtin_funcname_pattern[i].pattern;
f258475a
JH
1428
1429 return NULL;
1430}
1431
6973dcae
JH
1432static void builtin_diff(const char *name_a,
1433 const char *name_b,
1434 struct diff_filespec *one,
1435 struct diff_filespec *two,
1436 const char *xfrm_msg,
051308f6 1437 struct diff_options *o,
6973dcae
JH
1438 int complete_rewrite)
1439{
1440 mmfile_t mf1, mf2;
1441 const char *lbl[2];
1442 char *a_one, *b_two;
8f67f8ae
PH
1443 const char *set = diff_get_color_opt(o, DIFF_METAINFO);
1444 const char *reset = diff_get_color_opt(o, DIFF_RESET);
6973dcae 1445
eab9a40b
JS
1446 a_one = quote_two(o->a_prefix, name_a + (*name_a == '/'));
1447 b_two = quote_two(o->b_prefix, name_b + (*name_b == '/'));
6973dcae
JH
1448 lbl[0] = DIFF_FILE_VALID(one) ? a_one : "/dev/null";
1449 lbl[1] = DIFF_FILE_VALID(two) ? b_two : "/dev/null";
c0c77734 1450 fprintf(o->file, "%sdiff --git %s %s%s\n", set, a_one, b_two, reset);
6973dcae
JH
1451 if (lbl[0][0] == '/') {
1452 /* /dev/null */
c0c77734 1453 fprintf(o->file, "%snew file mode %06o%s\n", set, two->mode, reset);
50f575fc 1454 if (xfrm_msg && xfrm_msg[0])
c0c77734 1455 fprintf(o->file, "%s%s%s\n", set, xfrm_msg, reset);
6973dcae
JH
1456 }
1457 else if (lbl[1][0] == '/') {
c0c77734 1458 fprintf(o->file, "%sdeleted file mode %06o%s\n", set, one->mode, reset);
50f575fc 1459 if (xfrm_msg && xfrm_msg[0])
c0c77734 1460 fprintf(o->file, "%s%s%s\n", set, xfrm_msg, reset);
6973dcae
JH
1461 }
1462 else {
1463 if (one->mode != two->mode) {
c0c77734
DB
1464 fprintf(o->file, "%sold mode %06o%s\n", set, one->mode, reset);
1465 fprintf(o->file, "%snew mode %06o%s\n", set, two->mode, reset);
cd112cef 1466 }
50f575fc 1467 if (xfrm_msg && xfrm_msg[0])
c0c77734 1468 fprintf(o->file, "%s%s%s\n", set, xfrm_msg, reset);
6973dcae
JH
1469 /*
1470 * we do not run diff between different kind
1471 * of objects.
1472 */
1473 if ((one->mode ^ two->mode) & S_IFMT)
1474 goto free_ab_and_return;
1475 if (complete_rewrite) {
eab9a40b 1476 emit_rewrite_diff(name_a, name_b, one, two, o);
34a5e1a2 1477 o->found_changes = 1;
6973dcae
JH
1478 goto free_ab_and_return;
1479 }
1480 }
1481
1482 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
1483 die("unable to read files to diff");
1484
8f67f8ae 1485 if (!DIFF_OPT_TST(o, TEXT) &&
29a3eefd 1486 (diff_filespec_is_binary(one) || diff_filespec_is_binary(two))) {
0660626c
JH
1487 /* Quite common confusing case */
1488 if (mf1.size == mf2.size &&
1489 !memcmp(mf1.ptr, mf2.ptr, mf1.size))
1490 goto free_ab_and_return;
8f67f8ae 1491 if (DIFF_OPT_TST(o, BINARY))
c0c77734 1492 emit_binary_diff(o->file, &mf1, &mf2);
051308f6 1493 else
c0c77734
DB
1494 fprintf(o->file, "Binary files %s and %s differ\n",
1495 lbl[0], lbl[1]);
34a5e1a2 1496 o->found_changes = 1;
051308f6 1497 }
6973dcae
JH
1498 else {
1499 /* Crazy xdl interfaces.. */
1500 const char *diffopts = getenv("GIT_DIFF_OPTS");
1501 xpparam_t xpp;
1502 xdemitconf_t xecfg;
1503 xdemitcb_t ecb;
1504 struct emit_callback ecbdata;
e0e324a4 1505 const char *funcname_pattern;
f258475a 1506
e0e324a4
JH
1507 funcname_pattern = diff_funcname_pattern(one);
1508 if (!funcname_pattern)
1509 funcname_pattern = diff_funcname_pattern(two);
6973dcae 1510
30b25010 1511 memset(&xecfg, 0, sizeof(xecfg));
cd112cef 1512 memset(&ecbdata, 0, sizeof(ecbdata));
6973dcae 1513 ecbdata.label_path = lbl;
8f67f8ae 1514 ecbdata.color_diff = DIFF_OPT_TST(o, COLOR_DIFF);
34a5e1a2 1515 ecbdata.found_changesp = &o->found_changes;
cf1b7869 1516 ecbdata.ws_rule = whitespace_rule(name_b ? name_b : name_a);
c0c77734 1517 ecbdata.file = o->file;
0d21efa5 1518 xpp.flags = XDF_NEED_MINIMAL | o->xdl_opts;
ee1e5412 1519 xecfg.ctxlen = o->context;
6973dcae 1520 xecfg.flags = XDL_EMIT_FUNCNAMES;
e0e324a4
JH
1521 if (funcname_pattern)
1522 xdiff_set_find_func(&xecfg, funcname_pattern);
6973dcae
JH
1523 if (!diffopts)
1524 ;
cc44c765 1525 else if (!prefixcmp(diffopts, "--unified="))
6973dcae 1526 xecfg.ctxlen = strtoul(diffopts + 10, NULL, 10);
cc44c765 1527 else if (!prefixcmp(diffopts, "-u"))
6973dcae 1528 xecfg.ctxlen = strtoul(diffopts + 2, NULL, 10);
c0c77734 1529 if (DIFF_OPT_TST(o, COLOR_DIFF_WORDS)) {
f59a59e2
JS
1530 ecbdata.diff_words =
1531 xcalloc(1, sizeof(struct diff_words_data));
c0c77734
DB
1532 ecbdata.diff_words->file = o->file;
1533 }
8a3f524b
JH
1534 xdi_diff_outf(&mf1, &mf2, fn_out_consume, &ecbdata,
1535 &xpp, &xecfg, &ecb);
8f67f8ae 1536 if (DIFF_OPT_TST(o, COLOR_DIFF_WORDS))
f59a59e2 1537 free_diff_words_data(&ecbdata);
6973dcae
JH
1538 }
1539
1540 free_ab_and_return:
fc3abdf5
JH
1541 diff_free_filespec_data(one);
1542 diff_free_filespec_data(two);
6973dcae
JH
1543 free(a_one);
1544 free(b_two);
1545 return;
1546}
1547
1548static void builtin_diffstat(const char *name_a, const char *name_b,
1549 struct diff_filespec *one,
1550 struct diff_filespec *two,
710158e3 1551 struct diffstat_t *diffstat,
0d21efa5 1552 struct diff_options *o,
710158e3 1553 int complete_rewrite)
6973dcae
JH
1554{
1555 mmfile_t mf1, mf2;
1556 struct diffstat_file *data;
1557
1558 data = diffstat_add(diffstat, name_a, name_b);
1559
1560 if (!one || !two) {
1561 data->is_unmerged = 1;
1562 return;
1563 }
710158e3
JH
1564 if (complete_rewrite) {
1565 diff_populate_filespec(one, 0);
1566 diff_populate_filespec(two, 0);
1567 data->deleted = count_lines(one->data, one->size);
1568 data->added = count_lines(two->data, two->size);
fc3abdf5 1569 goto free_and_return;
710158e3 1570 }
6973dcae
JH
1571 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
1572 die("unable to read files to diff");
1573
29a3eefd 1574 if (diff_filespec_is_binary(one) || diff_filespec_is_binary(two)) {
6973dcae 1575 data->is_binary = 1;
b1882587
AP
1576 data->added = mf2.size;
1577 data->deleted = mf1.size;
1578 } else {
6973dcae
JH
1579 /* Crazy xdl interfaces.. */
1580 xpparam_t xpp;
1581 xdemitconf_t xecfg;
1582 xdemitcb_t ecb;
1583
30b25010 1584 memset(&xecfg, 0, sizeof(xecfg));
0d21efa5 1585 xpp.flags = XDF_NEED_MINIMAL | o->xdl_opts;
8a3f524b
JH
1586 xdi_diff_outf(&mf1, &mf2, diffstat_consume, diffstat,
1587 &xpp, &xecfg, &ecb);
6973dcae 1588 }
fc3abdf5
JH
1589
1590 free_and_return:
1591 diff_free_filespec_data(one);
1592 diff_free_filespec_data(two);
6973dcae
JH
1593}
1594
88246898 1595static void builtin_checkdiff(const char *name_a, const char *name_b,
cd676a51 1596 const char *attr_path,
5ff10dd6
JH
1597 struct diff_filespec *one,
1598 struct diff_filespec *two,
1599 struct diff_options *o)
88246898
JS
1600{
1601 mmfile_t mf1, mf2;
1602 struct checkdiff_t data;
1603
1604 if (!two)
1605 return;
1606
1607 memset(&data, 0, sizeof(data));
88246898
JS
1608 data.filename = name_b ? name_b : name_a;
1609 data.lineno = 0;
1ba111d1 1610 data.o = o;
cd676a51 1611 data.ws_rule = whitespace_rule(attr_path);
88246898
JS
1612
1613 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
1614 die("unable to read files to diff");
1615
5ff10dd6
JH
1616 /*
1617 * All the other codepaths check both sides, but not checking
1618 * the "old" side here is deliberate. We are checking the newly
1619 * introduced changes, and as long as the "new" side is text, we
1620 * can and should check what it introduces.
1621 */
29a3eefd 1622 if (diff_filespec_is_binary(two))
fc3abdf5 1623 goto free_and_return;
88246898
JS
1624 else {
1625 /* Crazy xdl interfaces.. */
1626 xpparam_t xpp;
1627 xdemitconf_t xecfg;
1628 xdemitcb_t ecb;
1629
30b25010 1630 memset(&xecfg, 0, sizeof(xecfg));
c35539eb 1631 xecfg.ctxlen = 1; /* at least one context line */
88246898 1632 xpp.flags = XDF_NEED_MINIMAL;
8a3f524b
JH
1633 xdi_diff_outf(&mf1, &mf2, checkdiff_consume, &data,
1634 &xpp, &xecfg, &ecb);
877f23cc 1635
04c6e9e9
JH
1636 if ((data.ws_rule & WS_TRAILING_SPACE) &&
1637 data.trailing_blanks_start) {
877f23cc
JH
1638 fprintf(o->file, "%s:%d: ends with blank lines.\n",
1639 data.filename, data.trailing_blanks_start);
1640 data.status = 1; /* report errors */
1641 }
88246898 1642 }
fc3abdf5
JH
1643 free_and_return:
1644 diff_free_filespec_data(one);
1645 diff_free_filespec_data(two);
62c64895
WC
1646 if (data.status)
1647 DIFF_OPT_SET(o, CHECK_FAILED);
88246898
JS
1648}
1649
6973dcae
JH
1650struct diff_filespec *alloc_filespec(const char *path)
1651{
1652 int namelen = strlen(path);
1653 struct diff_filespec *spec = xmalloc(sizeof(*spec) + namelen + 1);
1654
1655 memset(spec, 0, sizeof(*spec));
1656 spec->path = (char *)(spec + 1);
1657 memcpy(spec->path, path, namelen+1);
9fb88419 1658 spec->count = 1;
6973dcae
JH
1659 return spec;
1660}
1661
9fb88419
LT
1662void free_filespec(struct diff_filespec *spec)
1663{
1664 if (!--spec->count) {
1665 diff_free_filespec_data(spec);
1666 free(spec);
1667 }
1668}
1669
6973dcae
JH
1670void fill_filespec(struct diff_filespec *spec, const unsigned char *sha1,
1671 unsigned short mode)
1672{
1673 if (mode) {
1674 spec->mode = canon_mode(mode);
e702496e 1675 hashcpy(spec->sha1, sha1);
0bef57ee 1676 spec->sha1_valid = !is_null_sha1(sha1);
6973dcae
JH
1677 }
1678}
1679
1680/*
5adf317b 1681 * Given a name and sha1 pair, if the index tells us the file in
6973dcae
JH
1682 * the work tree has that object contents, return true, so that
1683 * prepare_temp_file() does not have to inflate and extract.
1684 */
1510fea7 1685static int reuse_worktree_file(const char *name, const unsigned char *sha1, int want_file)
6973dcae
JH
1686{
1687 struct cache_entry *ce;
1688 struct stat st;
1689 int pos, len;
1690
1691 /* We do not read the cache ourselves here, because the
1692 * benchmark with my previous version that always reads cache
1693 * shows that it makes things worse for diff-tree comparing
1694 * two linux-2.6 kernel trees in an already checked out work
1695 * tree. This is because most diff-tree comparisons deal with
1696 * only a small number of files, while reading the cache is
1697 * expensive for a large project, and its cost outweighs the
1698 * savings we get by not inflating the object to a temporary
1699 * file. Practically, this code only helps when we are used
1700 * by diff-cache --cached, which does read the cache before
1701 * calling us.
1702 */
1703 if (!active_cache)
1704 return 0;
1705
1510fea7
SP
1706 /* We want to avoid the working directory if our caller
1707 * doesn't need the data in a normal file, this system
1708 * is rather slow with its stat/open/mmap/close syscalls,
1709 * and the object is contained in a pack file. The pack
1710 * is probably already open and will be faster to obtain
1711 * the data through than the working directory. Loose
1712 * objects however would tend to be slower as they need
1713 * to be individually opened and inflated.
1714 */
5caf9232 1715 if (!FAST_WORKING_DIRECTORY && !want_file && has_sha1_pack(sha1, NULL))
1510fea7
SP
1716 return 0;
1717
6973dcae
JH
1718 len = strlen(name);
1719 pos = cache_name_pos(name, len);
1720 if (pos < 0)
1721 return 0;
1722 ce = active_cache[pos];
eadb5831
JH
1723
1724 /*
1725 * This is not the sha1 we are looking for, or
1726 * unreusable because it is not a regular file.
1727 */
1728 if (hashcmp(sha1, ce->sha1) || !S_ISREG(ce->ce_mode))
6973dcae 1729 return 0;
eadb5831
JH
1730
1731 /*
1732 * If ce matches the file in the work tree, we can reuse it.
6973dcae 1733 */
eadb5831
JH
1734 if (ce_uptodate(ce) ||
1735 (!lstat(name, &st) && !ce_match_stat(ce, &st, 0)))
1736 return 1;
1737
1738 return 0;
6973dcae
JH
1739}
1740
3afaa72d
JH
1741static int populate_from_stdin(struct diff_filespec *s)
1742{
af6eb822 1743 struct strbuf buf;
c32f749f 1744 size_t size = 0;
af6eb822 1745
f1696ee3
PH
1746 strbuf_init(&buf, 0);
1747 if (strbuf_read(&buf, 0, 0) < 0)
af6eb822 1748 return error("error while reading from stdin %s",
3afaa72d 1749 strerror(errno));
af6eb822 1750
3afaa72d 1751 s->should_munmap = 0;
c32f749f
RS
1752 s->data = strbuf_detach(&buf, &size);
1753 s->size = size;
3afaa72d
JH
1754 s->should_free = 1;
1755 return 0;
1756}
1757
04786756
LT
1758static int diff_populate_gitlink(struct diff_filespec *s, int size_only)
1759{
1760 int len;
1761 char *data = xmalloc(100);
1762 len = snprintf(data, 100,
1763 "Subproject commit %s\n", sha1_to_hex(s->sha1));
1764 s->data = data;
1765 s->size = len;
1766 s->should_free = 1;
1767 if (size_only) {
1768 s->data = NULL;
1769 free(data);
1770 }
1771 return 0;
1772}
1773
6973dcae
JH
1774/*
1775 * While doing rename detection and pickaxe operation, we may need to
1776 * grab the data for the blob (or file) for our own in-core comparison.
1777 * diff_filespec has data and size fields for this purpose.
1778 */
1779int diff_populate_filespec(struct diff_filespec *s, int size_only)
1780{
1781 int err = 0;
1782 if (!DIFF_FILE_VALID(s))
1783 die("internal error: asking to populate invalid file.");
1784 if (S_ISDIR(s->mode))
1785 return -1;
1786
6973dcae 1787 if (s->data)
fc3abdf5 1788 return 0;
04786756 1789
6e0b8ed6
JH
1790 if (size_only && 0 < s->size)
1791 return 0;
1792
302b9282 1793 if (S_ISGITLINK(s->mode))
04786756
LT
1794 return diff_populate_gitlink(s, size_only);
1795
6973dcae 1796 if (!s->sha1_valid ||
1510fea7 1797 reuse_worktree_file(s->path, s->sha1, 0)) {
5ecd293d 1798 struct strbuf buf;
6973dcae
JH
1799 struct stat st;
1800 int fd;
6c510bee 1801
3afaa72d
JH
1802 if (!strcmp(s->path, "-"))
1803 return populate_from_stdin(s);
1804
6973dcae
JH
1805 if (lstat(s->path, &st) < 0) {
1806 if (errno == ENOENT) {
1807 err_empty:
1808 err = -1;
1809 empty:
d2543b8e 1810 s->data = (char *)"";
6973dcae
JH
1811 s->size = 0;
1812 return err;
1813 }
1814 }
dc49cd76 1815 s->size = xsize_t(st.st_size);
6973dcae
JH
1816 if (!s->size)
1817 goto empty;
1818 if (size_only)
1819 return 0;
1820 if (S_ISLNK(st.st_mode)) {
1821 int ret;
1822 s->data = xmalloc(s->size);
1823 s->should_free = 1;
1824 ret = readlink(s->path, s->data, s->size);
1825 if (ret < 0) {
1826 free(s->data);
1827 goto err_empty;
1828 }
1829 return 0;
1830 }
1831 fd = open(s->path, O_RDONLY);
1832 if (fd < 0)
1833 goto err_empty;
c4712e45 1834 s->data = xmmap(NULL, s->size, PROT_READ, MAP_PRIVATE, fd, 0);
6973dcae 1835 close(fd);
6973dcae 1836 s->should_munmap = 1;
6c510bee
LT
1837
1838 /*
1839 * Convert from working tree format to canonical git format
1840 */
5ecd293d 1841 strbuf_init(&buf, 0);
21e5ad50 1842 if (convert_to_git(s->path, s->data, s->size, &buf, safe_crlf)) {
c32f749f 1843 size_t size = 0;
6c510bee
LT
1844 munmap(s->data, s->size);
1845 s->should_munmap = 0;
c32f749f
RS
1846 s->data = strbuf_detach(&buf, &size);
1847 s->size = size;
6c510bee
LT
1848 s->should_free = 1;
1849 }
6973dcae
JH
1850 }
1851 else {
21666f1a 1852 enum object_type type;
6e0b8ed6 1853 if (size_only)
21666f1a 1854 type = sha1_object_info(s->sha1, &s->size);
6973dcae 1855 else {
21666f1a 1856 s->data = read_sha1_file(s->sha1, &type, &s->size);
6973dcae
JH
1857 s->should_free = 1;
1858 }
1859 }
1860 return 0;
1861}
1862
8ae92e63 1863void diff_free_filespec_blob(struct diff_filespec *s)
6973dcae
JH
1864{
1865 if (s->should_free)
1866 free(s->data);
1867 else if (s->should_munmap)
1868 munmap(s->data, s->size);
fc3abdf5
JH
1869
1870 if (s->should_free || s->should_munmap) {
1871 s->should_free = s->should_munmap = 0;
1872 s->data = NULL;
1873 }
eede7b7d
JK
1874}
1875
1876void diff_free_filespec_data(struct diff_filespec *s)
1877{
8ae92e63 1878 diff_free_filespec_blob(s);
6973dcae
JH
1879 free(s->cnt_data);
1880 s->cnt_data = NULL;
1881}
1882
1883static void prep_temp_blob(struct diff_tempfile *temp,
1884 void *blob,
1885 unsigned long size,
1886 const unsigned char *sha1,
1887 int mode)
1888{
1889 int fd;
1890
1472966c 1891 fd = git_mkstemp(temp->tmp_path, PATH_MAX, ".diff_XXXXXX");
6973dcae 1892 if (fd < 0)
e7a7be88 1893 die("unable to create temp-file: %s", strerror(errno));
93822c22 1894 if (write_in_full(fd, blob, size) != size)
6973dcae
JH
1895 die("unable to write temp-file");
1896 close(fd);
1897 temp->name = temp->tmp_path;
1898 strcpy(temp->hex, sha1_to_hex(sha1));
1899 temp->hex[40] = 0;
1900 sprintf(temp->mode, "%06o", mode);
1901}
1902
1903static void prepare_temp_file(const char *name,
1904 struct diff_tempfile *temp,
1905 struct diff_filespec *one)
1906{
1907 if (!DIFF_FILE_VALID(one)) {
1908 not_a_valid_file:
1909 /* A '-' entry produces this for file-2, and
1910 * a '+' entry produces this for file-1.
1911 */
1912 temp->name = "/dev/null";
1913 strcpy(temp->hex, ".");
1914 strcpy(temp->mode, ".");
1915 return;
1916 }
1917
1918 if (!one->sha1_valid ||
1510fea7 1919 reuse_worktree_file(name, one->sha1, 1)) {
6973dcae
JH
1920 struct stat st;
1921 if (lstat(name, &st) < 0) {
1922 if (errno == ENOENT)
1923 goto not_a_valid_file;
1924 die("stat(%s): %s", name, strerror(errno));
1925 }
1926 if (S_ISLNK(st.st_mode)) {
1927 int ret;
1928 char buf[PATH_MAX + 1]; /* ought to be SYMLINK_MAX */
dc49cd76 1929 size_t sz = xsize_t(st.st_size);
6973dcae
JH
1930 if (sizeof(buf) <= st.st_size)
1931 die("symlink too long: %s", name);
dc49cd76 1932 ret = readlink(name, buf, sz);
6973dcae
JH
1933 if (ret < 0)
1934 die("readlink(%s)", name);
dc49cd76 1935 prep_temp_blob(temp, buf, sz,
6973dcae
JH
1936 (one->sha1_valid ?
1937 one->sha1 : null_sha1),
1938 (one->sha1_valid ?
1939 one->mode : S_IFLNK));
1940 }
1941 else {
1942 /* we can borrow from the file in the work tree */
1943 temp->name = name;
1944 if (!one->sha1_valid)
1945 strcpy(temp->hex, sha1_to_hex(null_sha1));
1946 else
1947 strcpy(temp->hex, sha1_to_hex(one->sha1));
1948 /* Even though we may sometimes borrow the
1949 * contents from the work tree, we always want
1950 * one->mode. mode is trustworthy even when
1951 * !(one->sha1_valid), as long as
1952 * DIFF_FILE_VALID(one).
1953 */
1954 sprintf(temp->mode, "%06o", one->mode);
1955 }
1956 return;
1957 }
1958 else {
1959 if (diff_populate_filespec(one, 0))
1960 die("cannot read data blob for %s", one->path);
1961 prep_temp_blob(temp, one->data, one->size,
1962 one->sha1, one->mode);
1963 }
1964}
1965
1966static void remove_tempfile(void)
1967{
1968 int i;
1969
1970 for (i = 0; i < 2; i++)
1971 if (diff_temp[i].name == diff_temp[i].tmp_path) {
1972 unlink(diff_temp[i].name);
1973 diff_temp[i].name = NULL;
1974 }
1975}
1976
1977static void remove_tempfile_on_signal(int signo)
1978{
1979 remove_tempfile();
1980 signal(SIGINT, SIG_DFL);
1981 raise(signo);
1982}
1983
6973dcae
JH
1984/* An external diff command takes:
1985 *
1986 * diff-cmd name infile1 infile1-sha1 infile1-mode \
1987 * infile2 infile2-sha1 infile2-mode [ rename-to ]
1988 *
1989 */
1990static void run_external_diff(const char *pgm,
1991 const char *name,
1992 const char *other,
1993 struct diff_filespec *one,
1994 struct diff_filespec *two,
1995 const char *xfrm_msg,
1996 int complete_rewrite)
1997{
1998 const char *spawn_arg[10];
1999 struct diff_tempfile *temp = diff_temp;
2000 int retval;
2001 static int atexit_asked = 0;
2002 const char *othername;
2003 const char **arg = &spawn_arg[0];
2004
2005 othername = (other? other : name);
2006 if (one && two) {
2007 prepare_temp_file(name, &temp[0], one);
2008 prepare_temp_file(othername, &temp[1], two);
2009 if (! atexit_asked &&
2010 (temp[0].name == temp[0].tmp_path ||
2011 temp[1].name == temp[1].tmp_path)) {
2012 atexit_asked = 1;
2013 atexit(remove_tempfile);
2014 }
2015 signal(SIGINT, remove_tempfile_on_signal);
2016 }
2017
2018 if (one && two) {
2019 *arg++ = pgm;
2020 *arg++ = name;
2021 *arg++ = temp[0].name;
2022 *arg++ = temp[0].hex;
2023 *arg++ = temp[0].mode;
2024 *arg++ = temp[1].name;
2025 *arg++ = temp[1].hex;
2026 *arg++ = temp[1].mode;
2027 if (other) {
2028 *arg++ = other;
2029 *arg++ = xfrm_msg;
2030 }
2031 } else {
2032 *arg++ = pgm;
2033 *arg++ = name;
2034 }
2035 *arg = NULL;
d5535ec7
JS
2036 fflush(NULL);
2037 retval = run_command_v_opt(spawn_arg, 0);
6973dcae
JH
2038 remove_tempfile();
2039 if (retval) {
2040 fprintf(stderr, "external diff died, stopping at %s.\n", name);
2041 exit(1);
2042 }
2043}
2044
f1af60bd
JH
2045static const char *external_diff_attr(const char *name)
2046{
2047 struct git_attr_check attr_diff_check;
2048
cd676a51
JH
2049 if (!name)
2050 return NULL;
2051
f1af60bd
JH
2052 setup_diff_attr_check(&attr_diff_check);
2053 if (!git_checkattr(name, 1, &attr_diff_check)) {
2054 const char *value = attr_diff_check.value;
2055 if (!ATTR_TRUE(value) &&
2056 !ATTR_FALSE(value) &&
2057 !ATTR_UNSET(value)) {
2058 struct ll_diff_driver *drv;
2059
f1af60bd
JH
2060 for (drv = user_diff; drv; drv = drv->next)
2061 if (!strcmp(drv->name, value))
2062 return drv->cmd;
2063 }
2064 }
2065 return NULL;
2066}
2067
6973dcae
JH
2068static void run_diff_cmd(const char *pgm,
2069 const char *name,
2070 const char *other,
cd676a51 2071 const char *attr_path,
6973dcae
JH
2072 struct diff_filespec *one,
2073 struct diff_filespec *two,
2074 const char *xfrm_msg,
051308f6 2075 struct diff_options *o,
6973dcae
JH
2076 int complete_rewrite)
2077{
8f67f8ae 2078 if (!DIFF_OPT_TST(o, ALLOW_EXTERNAL))
f1af60bd
JH
2079 pgm = NULL;
2080 else {
cd676a51 2081 const char *cmd = external_diff_attr(attr_path);
f1af60bd
JH
2082 if (cmd)
2083 pgm = cmd;
2084 }
2085
6973dcae
JH
2086 if (pgm) {
2087 run_external_diff(pgm, name, other, one, two, xfrm_msg,
2088 complete_rewrite);
2089 return;
2090 }
2091 if (one && two)
2092 builtin_diff(name, other ? other : name,
051308f6 2093 one, two, xfrm_msg, o, complete_rewrite);
6973dcae 2094 else
c0c77734 2095 fprintf(o->file, "* Unmerged path %s\n", name);
6973dcae
JH
2096}
2097
2098static void diff_fill_sha1_info(struct diff_filespec *one)
2099{
2100 if (DIFF_FILE_VALID(one)) {
2101 if (!one->sha1_valid) {
2102 struct stat st;
5332b2af
JS
2103 if (!strcmp(one->path, "-")) {
2104 hashcpy(one->sha1, null_sha1);
2105 return;
2106 }
6973dcae
JH
2107 if (lstat(one->path, &st) < 0)
2108 die("stat %s", one->path);
2109 if (index_path(one->sha1, one->path, &st, 0))
2110 die("cannot hash %s\n", one->path);
2111 }
2112 }
2113 else
e702496e 2114 hashclr(one->sha1);
6973dcae
JH
2115}
2116
125b7630
RS
2117static int similarity_index(struct diff_filepair *p)
2118{
2119 return p->score * 100 / MAX_SCORE;
2120}
2121
cd676a51
JH
2122static void strip_prefix(int prefix_length, const char **namep, const char **otherp)
2123{
2124 /* Strip the prefix but do not molest /dev/null and absolute paths */
2125 if (*namep && **namep != '/')
2126 *namep += prefix_length;
2127 if (*otherp && **otherp != '/')
2128 *otherp += prefix_length;
2129}
2130
6973dcae
JH
2131static void run_diff(struct diff_filepair *p, struct diff_options *o)
2132{
2133 const char *pgm = external_diff();
663af342
PH
2134 struct strbuf msg;
2135 char *xfrm_msg;
2136 struct diff_filespec *one = p->one;
2137 struct diff_filespec *two = p->two;
6973dcae
JH
2138 const char *name;
2139 const char *other;
cd676a51 2140 const char *attr_path;
6973dcae 2141 int complete_rewrite = 0;
663af342 2142
cd676a51
JH
2143 name = p->one->path;
2144 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
2145 attr_path = name;
2146 if (o->prefix_length)
2147 strip_prefix(o->prefix_length, &name, &other);
6973dcae
JH
2148
2149 if (DIFF_PAIR_UNMERGED(p)) {
cd676a51
JH
2150 run_diff_cmd(pgm, name, NULL, attr_path,
2151 NULL, NULL, NULL, o, 0);
6973dcae
JH
2152 return;
2153 }
2154
6973dcae
JH
2155 diff_fill_sha1_info(one);
2156 diff_fill_sha1_info(two);
2157
663af342 2158 strbuf_init(&msg, PATH_MAX * 2 + 300);
6973dcae
JH
2159 switch (p->status) {
2160 case DIFF_STATUS_COPIED:
663af342
PH
2161 strbuf_addf(&msg, "similarity index %d%%", similarity_index(p));
2162 strbuf_addstr(&msg, "\ncopy from ");
2163 quote_c_style(name, &msg, NULL, 0);
2164 strbuf_addstr(&msg, "\ncopy to ");
2165 quote_c_style(other, &msg, NULL, 0);
2166 strbuf_addch(&msg, '\n');
6973dcae
JH
2167 break;
2168 case DIFF_STATUS_RENAMED:
663af342
PH
2169 strbuf_addf(&msg, "similarity index %d%%", similarity_index(p));
2170 strbuf_addstr(&msg, "\nrename from ");
2171 quote_c_style(name, &msg, NULL, 0);
2172 strbuf_addstr(&msg, "\nrename to ");
2173 quote_c_style(other, &msg, NULL, 0);
2174 strbuf_addch(&msg, '\n');
6973dcae
JH
2175 break;
2176 case DIFF_STATUS_MODIFIED:
2177 if (p->score) {
663af342 2178 strbuf_addf(&msg, "dissimilarity index %d%%\n",
125b7630 2179 similarity_index(p));
6973dcae
JH
2180 complete_rewrite = 1;
2181 break;
2182 }
2183 /* fallthru */
2184 default:
2185 /* nothing */
2186 ;
2187 }
2188
a89fccd2 2189 if (hashcmp(one->sha1, two->sha1)) {
8f67f8ae 2190 int abbrev = DIFF_OPT_TST(o, FULL_INDEX) ? 40 : DEFAULT_ABBREV;
6973dcae 2191
8f67f8ae 2192 if (DIFF_OPT_TST(o, BINARY)) {
82793c55 2193 mmfile_t mf;
29a3eefd
JH
2194 if ((!fill_mmfile(&mf, one) && diff_filespec_is_binary(one)) ||
2195 (!fill_mmfile(&mf, two) && diff_filespec_is_binary(two)))
82793c55
JH
2196 abbrev = 40;
2197 }
663af342 2198 strbuf_addf(&msg, "index %.*s..%.*s",
dcb3450f
LT
2199 abbrev, sha1_to_hex(one->sha1),
2200 abbrev, sha1_to_hex(two->sha1));
6973dcae 2201 if (one->mode == two->mode)
663af342
PH
2202 strbuf_addf(&msg, " %06o", one->mode);
2203 strbuf_addch(&msg, '\n');
6973dcae
JH
2204 }
2205
663af342
PH
2206 if (msg.len)
2207 strbuf_setlen(&msg, msg.len - 1);
2208 xfrm_msg = msg.len ? msg.buf : NULL;
6973dcae
JH
2209
2210 if (!pgm &&
2211 DIFF_FILE_VALID(one) && DIFF_FILE_VALID(two) &&
2212 (S_IFMT & one->mode) != (S_IFMT & two->mode)) {
2213 /* a filepair that changes between file and symlink
2214 * needs to be split into deletion and creation.
2215 */
2216 struct diff_filespec *null = alloc_filespec(two->path);
cd676a51
JH
2217 run_diff_cmd(NULL, name, other, attr_path,
2218 one, null, xfrm_msg, o, 0);
6973dcae
JH
2219 free(null);
2220 null = alloc_filespec(one->path);
cd676a51
JH
2221 run_diff_cmd(NULL, name, other, attr_path,
2222 null, two, xfrm_msg, o, 0);
6973dcae
JH
2223 free(null);
2224 }
2225 else
cd676a51
JH
2226 run_diff_cmd(pgm, name, other, attr_path,
2227 one, two, xfrm_msg, o, complete_rewrite);
6973dcae 2228
663af342 2229 strbuf_release(&msg);
6973dcae
JH
2230}
2231
2232static void run_diffstat(struct diff_filepair *p, struct diff_options *o,
2233 struct diffstat_t *diffstat)
2234{
2235 const char *name;
2236 const char *other;
710158e3 2237 int complete_rewrite = 0;
6973dcae
JH
2238
2239 if (DIFF_PAIR_UNMERGED(p)) {
2240 /* unmerged */
0d21efa5 2241 builtin_diffstat(p->one->path, NULL, NULL, NULL, diffstat, o, 0);
6973dcae
JH
2242 return;
2243 }
2244
2245 name = p->one->path;
2246 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
2247
cd676a51
JH
2248 if (o->prefix_length)
2249 strip_prefix(o->prefix_length, &name, &other);
2250
6973dcae
JH
2251 diff_fill_sha1_info(p->one);
2252 diff_fill_sha1_info(p->two);
2253
710158e3
JH
2254 if (p->status == DIFF_STATUS_MODIFIED && p->score)
2255 complete_rewrite = 1;
0d21efa5 2256 builtin_diffstat(name, other, p->one, p->two, diffstat, o, complete_rewrite);
6973dcae
JH
2257}
2258
88246898
JS
2259static void run_checkdiff(struct diff_filepair *p, struct diff_options *o)
2260{
2261 const char *name;
2262 const char *other;
cd676a51 2263 const char *attr_path;
88246898
JS
2264
2265 if (DIFF_PAIR_UNMERGED(p)) {
2266 /* unmerged */
2267 return;
2268 }
2269
2270 name = p->one->path;
2271 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
cd676a51
JH
2272 attr_path = other ? other : name;
2273
2274 if (o->prefix_length)
2275 strip_prefix(o->prefix_length, &name, &other);
88246898
JS
2276
2277 diff_fill_sha1_info(p->one);
2278 diff_fill_sha1_info(p->two);
2279
cd676a51 2280 builtin_checkdiff(name, other, attr_path, p->one, p->two, o);
88246898
JS
2281}
2282
6973dcae
JH
2283void diff_setup(struct diff_options *options)
2284{
2285 memset(options, 0, sizeof(*options));
c0c77734
DB
2286
2287 options->file = stdout;
2288
6973dcae
JH
2289 options->line_termination = '\n';
2290 options->break_opt = -1;
2291 options->rename_limit = -1;
7df7c019 2292 options->dirstat_percent = 3;
ee1e5412 2293 options->context = 3;
6973dcae
JH
2294
2295 options->change = diff_change;
2296 options->add_remove = diff_addremove;
6b2f2d98 2297 if (diff_use_color_default > 0)
8f67f8ae
PH
2298 DIFF_OPT_SET(options, COLOR_DIFF);
2299 else
2300 DIFF_OPT_CLR(options, COLOR_DIFF);
b68ea12e 2301 options->detect_rename = diff_detect_rename_default;
eab9a40b
JS
2302
2303 options->a_prefix = "a/";
2304 options->b_prefix = "b/";
6973dcae
JH
2305}
2306
2307int diff_setup_done(struct diff_options *options)
2308{
d7de00f7
TH
2309 int count = 0;
2310
2311 if (options->output_format & DIFF_FORMAT_NAME)
2312 count++;
2313 if (options->output_format & DIFF_FORMAT_NAME_STATUS)
2314 count++;
2315 if (options->output_format & DIFF_FORMAT_CHECKDIFF)
2316 count++;
2317 if (options->output_format & DIFF_FORMAT_NO_OUTPUT)
2318 count++;
2319 if (count > 1)
2320 die("--name-only, --name-status, --check and -s are mutually exclusive");
2321
8f67f8ae 2322 if (DIFF_OPT_TST(options, FIND_COPIES_HARDER))
03b9d560
JH
2323 options->detect_rename = DIFF_DETECT_COPY;
2324
cd676a51
JH
2325 if (!DIFF_OPT_TST(options, RELATIVE_NAME))
2326 options->prefix = NULL;
2327 if (options->prefix)
2328 options->prefix_length = strlen(options->prefix);
2329 else
2330 options->prefix_length = 0;
2331
c6744349
TH
2332 if (options->output_format & (DIFF_FORMAT_NAME |
2333 DIFF_FORMAT_NAME_STATUS |
2334 DIFF_FORMAT_CHECKDIFF |
2335 DIFF_FORMAT_NO_OUTPUT))
2336 options->output_format &= ~(DIFF_FORMAT_RAW |
74e2abe5 2337 DIFF_FORMAT_NUMSTAT |
c6744349 2338 DIFF_FORMAT_DIFFSTAT |
ebd124c6 2339 DIFF_FORMAT_SHORTSTAT |
7df7c019 2340 DIFF_FORMAT_DIRSTAT |
c6744349
TH
2341 DIFF_FORMAT_SUMMARY |
2342 DIFF_FORMAT_PATCH);
2343
6973dcae
JH
2344 /*
2345 * These cases always need recursive; we do not drop caller-supplied
2346 * recursive bits for other formats here.
2347 */
c6744349 2348 if (options->output_format & (DIFF_FORMAT_PATCH |
74e2abe5 2349 DIFF_FORMAT_NUMSTAT |
c6744349 2350 DIFF_FORMAT_DIFFSTAT |
ebd124c6 2351 DIFF_FORMAT_SHORTSTAT |
7df7c019 2352 DIFF_FORMAT_DIRSTAT |
d7014dc0 2353 DIFF_FORMAT_SUMMARY |
c6744349 2354 DIFF_FORMAT_CHECKDIFF))
8f67f8ae 2355 DIFF_OPT_SET(options, RECURSIVE);
5e363541 2356 /*
3969cf7d 2357 * Also pickaxe would not work very well if you do not say recursive
5e363541 2358 */
3969cf7d 2359 if (options->pickaxe)
8f67f8ae 2360 DIFF_OPT_SET(options, RECURSIVE);
5e363541 2361
6973dcae
JH
2362 if (options->detect_rename && options->rename_limit < 0)
2363 options->rename_limit = diff_rename_limit_default;
2364 if (options->setup & DIFF_SETUP_USE_CACHE) {
2365 if (!active_cache)
2366 /* read-cache does not die even when it fails
2367 * so it is safe for us to do this here. Also
2368 * it does not smudge active_cache or active_nr
2369 * when it fails, so we do not have to worry about
2370 * cleaning it up ourselves either.
2371 */
2372 read_cache();
2373 }
6973dcae
JH
2374 if (options->abbrev <= 0 || 40 < options->abbrev)
2375 options->abbrev = 40; /* full */
2376
68aacb2f
JH
2377 /*
2378 * It does not make sense to show the first hit we happened
2379 * to have found. It does not make sense not to return with
2380 * exit code in such a case either.
2381 */
8f67f8ae 2382 if (DIFF_OPT_TST(options, QUIET)) {
68aacb2f 2383 options->output_format = DIFF_FORMAT_NO_OUTPUT;
8f67f8ae 2384 DIFF_OPT_SET(options, EXIT_WITH_STATUS);
68aacb2f
JH
2385 }
2386
2387 /*
2388 * If we postprocess in diffcore, we cannot simply return
2389 * upon the first hit. We need to run diff as usual.
2390 */
2391 if (options->pickaxe || options->filter)
8f67f8ae 2392 DIFF_OPT_CLR(options, QUIET);
68aacb2f 2393
6973dcae
JH
2394 return 0;
2395}
2396
d2543b8e 2397static int opt_arg(const char *arg, int arg_short, const char *arg_long, int *val)
ee1e5412
LT
2398{
2399 char c, *eq;
2400 int len;
2401
2402 if (*arg != '-')
2403 return 0;
2404 c = *++arg;
2405 if (!c)
2406 return 0;
2407 if (c == arg_short) {
2408 c = *++arg;
2409 if (!c)
2410 return 1;
2411 if (val && isdigit(c)) {
2412 char *end;
2413 int n = strtoul(arg, &end, 10);
2414 if (*end)
2415 return 0;
2416 *val = n;
2417 return 1;
2418 }
2419 return 0;
2420 }
2421 if (c != '-')
2422 return 0;
2423 arg++;
2424 eq = strchr(arg, '=');
2425 if (eq)
2426 len = eq - arg;
2427 else
2428 len = strlen(arg);
2429 if (!len || strncmp(arg, arg_long, len))
2430 return 0;
2431 if (eq) {
2432 int n;
2433 char *end;
2434 if (!isdigit(*++eq))
2435 return 0;
2436 n = strtoul(eq, &end, 10);
2437 if (*end)
2438 return 0;
2439 *val = n;
2440 }
2441 return 1;
2442}
2443
16befb8b
JH
2444static int diff_scoreopt_parse(const char *opt);
2445
6973dcae
JH
2446int diff_opt_parse(struct diff_options *options, const char **av, int ac)
2447{
2448 const char *arg = av[0];
d054680c
PH
2449
2450 /* Output format options */
6973dcae 2451 if (!strcmp(arg, "-p") || !strcmp(arg, "-u"))
c6744349 2452 options->output_format |= DIFF_FORMAT_PATCH;
ee1e5412 2453 else if (opt_arg(arg, 'U', "unified", &options->context))
c6744349 2454 options->output_format |= DIFF_FORMAT_PATCH;
a610786f
TH
2455 else if (!strcmp(arg, "--raw"))
2456 options->output_format |= DIFF_FORMAT_RAW;
8f67f8ae 2457 else if (!strcmp(arg, "--patch-with-raw"))
c6744349 2458 options->output_format |= DIFF_FORMAT_PATCH | DIFF_FORMAT_RAW;
8f67f8ae 2459 else if (!strcmp(arg, "--numstat"))
74e2abe5 2460 options->output_format |= DIFF_FORMAT_NUMSTAT;
8f67f8ae 2461 else if (!strcmp(arg, "--shortstat"))
ebd124c6 2462 options->output_format |= DIFF_FORMAT_SHORTSTAT;
7df7c019
LT
2463 else if (opt_arg(arg, 'X', "dirstat", &options->dirstat_percent))
2464 options->output_format |= DIFF_FORMAT_DIRSTAT;
2465 else if (!strcmp(arg, "--cumulative"))
2466 options->output_format |= DIFF_FORMAT_CUMULATIVE;
d054680c
PH
2467 else if (!strcmp(arg, "--check"))
2468 options->output_format |= DIFF_FORMAT_CHECKDIFF;
2469 else if (!strcmp(arg, "--summary"))
2470 options->output_format |= DIFF_FORMAT_SUMMARY;
2471 else if (!strcmp(arg, "--patch-with-stat"))
2472 options->output_format |= DIFF_FORMAT_PATCH | DIFF_FORMAT_DIFFSTAT;
2473 else if (!strcmp(arg, "--name-only"))
2474 options->output_format |= DIFF_FORMAT_NAME;
2475 else if (!strcmp(arg, "--name-status"))
2476 options->output_format |= DIFF_FORMAT_NAME_STATUS;
2477 else if (!strcmp(arg, "-s"))
2478 options->output_format |= DIFF_FORMAT_NO_OUTPUT;
cc44c765 2479 else if (!prefixcmp(arg, "--stat")) {
5c5b2ea9
LT
2480 char *end;
2481 int width = options->stat_width;
2482 int name_width = options->stat_name_width;
2483 arg += 6;
2484 end = (char *)arg;
2485
2486 switch (*arg) {
2487 case '-':
cc44c765 2488 if (!prefixcmp(arg, "-width="))
5c5b2ea9 2489 width = strtoul(arg + 7, &end, 10);
cc44c765 2490 else if (!prefixcmp(arg, "-name-width="))
5c5b2ea9
LT
2491 name_width = strtoul(arg + 12, &end, 10);
2492 break;
2493 case '=':
2494 width = strtoul(arg+1, &end, 10);
2495 if (*end == ',')
2496 name_width = strtoul(end+1, &end, 10);
2497 }
2498
2499 /* Important! This checks all the error cases! */
2500 if (*end)
2501 return 0;
c6744349 2502 options->output_format |= DIFF_FORMAT_DIFFSTAT;
5c5b2ea9
LT
2503 options->stat_name_width = name_width;
2504 options->stat_width = width;
a2540023 2505 }
d054680c
PH
2506
2507 /* renames options */
cc44c765 2508 else if (!prefixcmp(arg, "-B")) {
8f67f8ae 2509 if ((options->break_opt = diff_scoreopt_parse(arg)) == -1)
6973dcae
JH
2510 return -1;
2511 }
cc44c765 2512 else if (!prefixcmp(arg, "-M")) {
8f67f8ae 2513 if ((options->rename_score = diff_scoreopt_parse(arg)) == -1)
6973dcae
JH
2514 return -1;
2515 options->detect_rename = DIFF_DETECT_RENAME;
2516 }
cc44c765 2517 else if (!prefixcmp(arg, "-C")) {
ca6c0970 2518 if (options->detect_rename == DIFF_DETECT_COPY)
8f67f8ae
PH
2519 DIFF_OPT_SET(options, FIND_COPIES_HARDER);
2520 if ((options->rename_score = diff_scoreopt_parse(arg)) == -1)
6973dcae
JH
2521 return -1;
2522 options->detect_rename = DIFF_DETECT_COPY;
2523 }
d054680c
PH
2524 else if (!strcmp(arg, "--no-renames"))
2525 options->detect_rename = 0;
cd676a51
JH
2526 else if (!strcmp(arg, "--relative"))
2527 DIFF_OPT_SET(options, RELATIVE_NAME);
c0cb4a06
JH
2528 else if (!prefixcmp(arg, "--relative=")) {
2529 DIFF_OPT_SET(options, RELATIVE_NAME);
2530 options->prefix = arg + 11;
2531 }
d054680c
PH
2532
2533 /* xdiff options */
2534 else if (!strcmp(arg, "-w") || !strcmp(arg, "--ignore-all-space"))
2535 options->xdl_opts |= XDF_IGNORE_WHITESPACE;
2536 else if (!strcmp(arg, "-b") || !strcmp(arg, "--ignore-space-change"))
2537 options->xdl_opts |= XDF_IGNORE_WHITESPACE_CHANGE;
2538 else if (!strcmp(arg, "--ignore-space-at-eol"))
2539 options->xdl_opts |= XDF_IGNORE_WHITESPACE_AT_EOL;
2540
2541 /* flags options */
2542 else if (!strcmp(arg, "--binary")) {
2543 options->output_format |= DIFF_FORMAT_PATCH;
2544 DIFF_OPT_SET(options, BINARY);
2545 }
2546 else if (!strcmp(arg, "--full-index"))
2547 DIFF_OPT_SET(options, FULL_INDEX);
2548 else if (!strcmp(arg, "-a") || !strcmp(arg, "--text"))
2549 DIFF_OPT_SET(options, TEXT);
2550 else if (!strcmp(arg, "-R"))
2551 DIFF_OPT_SET(options, REVERSE_DIFF);
6973dcae 2552 else if (!strcmp(arg, "--find-copies-harder"))
8f67f8ae 2553 DIFF_OPT_SET(options, FIND_COPIES_HARDER);
750f7b66 2554 else if (!strcmp(arg, "--follow"))
8f67f8ae 2555 DIFF_OPT_SET(options, FOLLOW_RENAMES);
cd112cef 2556 else if (!strcmp(arg, "--color"))
8f67f8ae 2557 DIFF_OPT_SET(options, COLOR_DIFF);
fef88bb0 2558 else if (!strcmp(arg, "--no-color"))
8f67f8ae 2559 DIFF_OPT_CLR(options, COLOR_DIFF);
f59a59e2 2560 else if (!strcmp(arg, "--color-words"))
8f67f8ae 2561 options->flags |= DIFF_OPT_COLOR_DIFF | DIFF_OPT_COLOR_DIFF_WORDS;
41bbf9d5 2562 else if (!strcmp(arg, "--exit-code"))
8f67f8ae 2563 DIFF_OPT_SET(options, EXIT_WITH_STATUS);
68aacb2f 2564 else if (!strcmp(arg, "--quiet"))
8f67f8ae 2565 DIFF_OPT_SET(options, QUIET);
72909bef 2566 else if (!strcmp(arg, "--ext-diff"))
8f67f8ae 2567 DIFF_OPT_SET(options, ALLOW_EXTERNAL);
72909bef 2568 else if (!strcmp(arg, "--no-ext-diff"))
8f67f8ae 2569 DIFF_OPT_CLR(options, ALLOW_EXTERNAL);
50fd9bd8
JS
2570 else if (!strcmp(arg, "--ignore-submodules"))
2571 DIFF_OPT_SET(options, IGNORE_SUBMODULES);
d054680c
PH
2572
2573 /* misc options */
2574 else if (!strcmp(arg, "-z"))
2575 options->line_termination = 0;
2576 else if (!prefixcmp(arg, "-l"))
2577 options->rename_limit = strtoul(arg+2, NULL, 10);
2578 else if (!prefixcmp(arg, "-S"))
2579 options->pickaxe = arg + 2;
2580 else if (!strcmp(arg, "--pickaxe-all"))
2581 options->pickaxe_opts = DIFF_PICKAXE_ALL;
2582 else if (!strcmp(arg, "--pickaxe-regex"))
2583 options->pickaxe_opts = DIFF_PICKAXE_REGEX;
2584 else if (!prefixcmp(arg, "-O"))
2585 options->orderfile = arg + 2;
2586 else if (!prefixcmp(arg, "--diff-filter="))
2587 options->filter = arg + 14;
2588 else if (!strcmp(arg, "--abbrev"))
2589 options->abbrev = DEFAULT_ABBREV;
2590 else if (!prefixcmp(arg, "--abbrev=")) {
2591 options->abbrev = strtoul(arg + 9, NULL, 10);
2592 if (options->abbrev < MINIMUM_ABBREV)
2593 options->abbrev = MINIMUM_ABBREV;
2594 else if (40 < options->abbrev)
2595 options->abbrev = 40;
2596 }
eab9a40b
JS
2597 else if (!prefixcmp(arg, "--src-prefix="))
2598 options->a_prefix = arg + 13;
2599 else if (!prefixcmp(arg, "--dst-prefix="))
2600 options->b_prefix = arg + 13;
2601 else if (!strcmp(arg, "--no-prefix"))
2602 options->a_prefix = options->b_prefix = "";
c0c77734
DB
2603 else if (!prefixcmp(arg, "--output=")) {
2604 options->file = fopen(arg + strlen("--output="), "w");
2605 options->close_file = 1;
2606 } else
6973dcae
JH
2607 return 0;
2608 return 1;
2609}
2610
2611static int parse_num(const char **cp_p)
2612{
2613 unsigned long num, scale;
2614 int ch, dot;
2615 const char *cp = *cp_p;
2616
2617 num = 0;
2618 scale = 1;
2619 dot = 0;
2620 for(;;) {
2621 ch = *cp;
2622 if ( !dot && ch == '.' ) {
2623 scale = 1;
2624 dot = 1;
2625 } else if ( ch == '%' ) {
2626 scale = dot ? scale*100 : 100;
2627 cp++; /* % is always at the end */
2628 break;
2629 } else if ( ch >= '0' && ch <= '9' ) {
2630 if ( scale < 100000 ) {
2631 scale *= 10;
2632 num = (num*10) + (ch-'0');
2633 }
2634 } else {
2635 break;
2636 }
2637 cp++;
2638 }
2639 *cp_p = cp;
2640
2641 /* user says num divided by scale and we say internally that
2642 * is MAX_SCORE * num / scale.
2643 */
dc49cd76 2644 return (int)((num >= scale) ? MAX_SCORE : (MAX_SCORE * num / scale));
6973dcae
JH
2645}
2646
16befb8b 2647static int diff_scoreopt_parse(const char *opt)
6973dcae
JH
2648{
2649 int opt1, opt2, cmd;
2650
2651 if (*opt++ != '-')
2652 return -1;
2653 cmd = *opt++;
2654 if (cmd != 'M' && cmd != 'C' && cmd != 'B')
2655 return -1; /* that is not a -M, -C nor -B option */
2656
2657 opt1 = parse_num(&opt);
2658 if (cmd != 'B')
2659 opt2 = 0;
2660 else {
2661 if (*opt == 0)
2662 opt2 = 0;
2663 else if (*opt != '/')
2664 return -1; /* we expect -B80/99 or -B80 */
2665 else {
2666 opt++;
2667 opt2 = parse_num(&opt);
2668 }
2669 }
2670 if (*opt != 0)
2671 return -1;
2672 return opt1 | (opt2 << 16);
2673}
2674
2675struct diff_queue_struct diff_queued_diff;
2676
2677void diff_q(struct diff_queue_struct *queue, struct diff_filepair *dp)
2678{
2679 if (queue->alloc <= queue->nr) {
2680 queue->alloc = alloc_nr(queue->alloc);
2681 queue->queue = xrealloc(queue->queue,
2682 sizeof(dp) * queue->alloc);
2683 }
2684 queue->queue[queue->nr++] = dp;
2685}
2686
2687struct diff_filepair *diff_queue(struct diff_queue_struct *queue,
2688 struct diff_filespec *one,
2689 struct diff_filespec *two)
2690{
ef677686 2691 struct diff_filepair *dp = xcalloc(1, sizeof(*dp));
6973dcae
JH
2692 dp->one = one;
2693 dp->two = two;
6973dcae
JH
2694 if (queue)
2695 diff_q(queue, dp);
2696 return dp;
2697}
2698
2699void diff_free_filepair(struct diff_filepair *p)
2700{
9fb88419
LT
2701 free_filespec(p->one);
2702 free_filespec(p->two);
6973dcae
JH
2703 free(p);
2704}
2705
2706/* This is different from find_unique_abbrev() in that
2707 * it stuffs the result with dots for alignment.
2708 */
2709const char *diff_unique_abbrev(const unsigned char *sha1, int len)
2710{
2711 int abblen;
2712 const char *abbrev;
2713 if (len == 40)
2714 return sha1_to_hex(sha1);
2715
2716 abbrev = find_unique_abbrev(sha1, len);
6973dcae
JH
2717 abblen = strlen(abbrev);
2718 if (abblen < 37) {
2719 static char hex[41];
2720 if (len < abblen && abblen <= len + 2)
2721 sprintf(hex, "%s%.*s", abbrev, len+3-abblen, "..");
2722 else
2723 sprintf(hex, "%s...", abbrev);
2724 return hex;
2725 }
2726 return sha1_to_hex(sha1);
2727}
2728
663af342 2729static void diff_flush_raw(struct diff_filepair *p, struct diff_options *opt)
6973dcae 2730{
663af342
PH
2731 int line_termination = opt->line_termination;
2732 int inter_name_termination = line_termination ? '\t' : '\0';
6973dcae 2733
663af342 2734 if (!(opt->output_format & DIFF_FORMAT_NAME_STATUS)) {
c0c77734
DB
2735 fprintf(opt->file, ":%06o %06o %s ", p->one->mode, p->two->mode,
2736 diff_unique_abbrev(p->one->sha1, opt->abbrev));
2737 fprintf(opt->file, "%s ", diff_unique_abbrev(p->two->sha1, opt->abbrev));
6973dcae 2738 }
663af342 2739 if (p->score) {
c0c77734
DB
2740 fprintf(opt->file, "%c%03d%c", p->status, similarity_index(p),
2741 inter_name_termination);
663af342 2742 } else {
c0c77734 2743 fprintf(opt->file, "%c%c", p->status, inter_name_termination);
6973dcae 2744 }
6973dcae 2745
cd676a51
JH
2746 if (p->status == DIFF_STATUS_COPIED ||
2747 p->status == DIFF_STATUS_RENAMED) {
2748 const char *name_a, *name_b;
2749 name_a = p->one->path;
2750 name_b = p->two->path;
2751 strip_prefix(opt->prefix_length, &name_a, &name_b);
c0c77734
DB
2752 write_name_quoted(name_a, opt->file, inter_name_termination);
2753 write_name_quoted(name_b, opt->file, line_termination);
663af342 2754 } else {
cd676a51
JH
2755 const char *name_a, *name_b;
2756 name_a = p->one->mode ? p->one->path : p->two->path;
2757 name_b = NULL;
2758 strip_prefix(opt->prefix_length, &name_a, &name_b);
c0c77734 2759 write_name_quoted(name_a, opt->file, line_termination);
663af342 2760 }
6973dcae
JH
2761}
2762
2763int diff_unmodified_pair(struct diff_filepair *p)
2764{
2765 /* This function is written stricter than necessary to support
2766 * the currently implemented transformers, but the idea is to
2767 * let transformers to produce diff_filepairs any way they want,
2768 * and filter and clean them up here before producing the output.
2769 */
663af342 2770 struct diff_filespec *one = p->one, *two = p->two;
6973dcae
JH
2771
2772 if (DIFF_PAIR_UNMERGED(p))
2773 return 0; /* unmerged is interesting */
2774
6973dcae
JH
2775 /* deletion, addition, mode or type change
2776 * and rename are all interesting.
2777 */
2778 if (DIFF_FILE_VALID(one) != DIFF_FILE_VALID(two) ||
2779 DIFF_PAIR_MODE_CHANGED(p) ||
2780 strcmp(one->path, two->path))
2781 return 0;
2782
2783 /* both are valid and point at the same path. that is, we are
2784 * dealing with a change.
2785 */
2786 if (one->sha1_valid && two->sha1_valid &&
a89fccd2 2787 !hashcmp(one->sha1, two->sha1))
6973dcae
JH
2788 return 1; /* no change */
2789 if (!one->sha1_valid && !two->sha1_valid)
2790 return 1; /* both look at the same file on the filesystem. */
2791 return 0;
2792}
2793
2794static void diff_flush_patch(struct diff_filepair *p, struct diff_options *o)
2795{
2796 if (diff_unmodified_pair(p))
2797 return;
2798
2799 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
2800 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
2801 return; /* no tree diffs in patch format */
2802
2803 run_diff(p, o);
2804}
2805
2806static void diff_flush_stat(struct diff_filepair *p, struct diff_options *o,
2807 struct diffstat_t *diffstat)
2808{
2809 if (diff_unmodified_pair(p))
2810 return;
2811
2812 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
2813 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
2814 return; /* no tree diffs in patch format */
2815
2816 run_diffstat(p, o, diffstat);
2817}
2818
88246898
JS
2819static void diff_flush_checkdiff(struct diff_filepair *p,
2820 struct diff_options *o)
2821{
2822 if (diff_unmodified_pair(p))
2823 return;
2824
2825 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
2826 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
2827 return; /* no tree diffs in patch format */
2828
2829 run_checkdiff(p, o);
2830}
2831
6973dcae
JH
2832int diff_queue_is_empty(void)
2833{
2834 struct diff_queue_struct *q = &diff_queued_diff;
2835 int i;
2836 for (i = 0; i < q->nr; i++)
2837 if (!diff_unmodified_pair(q->queue[i]))
2838 return 0;
2839 return 1;
2840}
2841
2842#if DIFF_DEBUG
2843void diff_debug_filespec(struct diff_filespec *s, int x, const char *one)
2844{
2845 fprintf(stderr, "queue[%d] %s (%s) %s %06o %s\n",
2846 x, one ? one : "",
2847 s->path,
2848 DIFF_FILE_VALID(s) ? "valid" : "invalid",
2849 s->mode,
2850 s->sha1_valid ? sha1_to_hex(s->sha1) : "");
2851 fprintf(stderr, "queue[%d] %s size %lu flags %d\n",
2852 x, one ? one : "",
2853 s->size, s->xfrm_flags);
2854}
2855
2856void diff_debug_filepair(const struct diff_filepair *p, int i)
2857{
2858 diff_debug_filespec(p->one, i, "one");
2859 diff_debug_filespec(p->two, i, "two");
64479711 2860 fprintf(stderr, "score %d, status %c rename_used %d broken %d\n",
6973dcae 2861 p->score, p->status ? p->status : '?',
64479711 2862 p->one->rename_used, p->broken_pair);
6973dcae
JH
2863}
2864
2865void diff_debug_queue(const char *msg, struct diff_queue_struct *q)
2866{
2867 int i;
2868 if (msg)
2869 fprintf(stderr, "%s\n", msg);
2870 fprintf(stderr, "q->nr = %d\n", q->nr);
2871 for (i = 0; i < q->nr; i++) {
2872 struct diff_filepair *p = q->queue[i];
2873 diff_debug_filepair(p, i);
2874 }
2875}
2876#endif
2877
2878static void diff_resolve_rename_copy(void)
2879{
64479711
LT
2880 int i;
2881 struct diff_filepair *p;
6973dcae
JH
2882 struct diff_queue_struct *q = &diff_queued_diff;
2883
2884 diff_debug_queue("resolve-rename-copy", q);
2885
2886 for (i = 0; i < q->nr; i++) {
2887 p = q->queue[i];
2888 p->status = 0; /* undecided */
2889 if (DIFF_PAIR_UNMERGED(p))
2890 p->status = DIFF_STATUS_UNMERGED;
2891 else if (!DIFF_FILE_VALID(p->one))
2892 p->status = DIFF_STATUS_ADDED;
2893 else if (!DIFF_FILE_VALID(p->two))
2894 p->status = DIFF_STATUS_DELETED;
2895 else if (DIFF_PAIR_TYPE_CHANGED(p))
2896 p->status = DIFF_STATUS_TYPE_CHANGED;
2897
2898 /* from this point on, we are dealing with a pair
2899 * whose both sides are valid and of the same type, i.e.
2900 * either in-place edit or rename/copy edit.
2901 */
2902 else if (DIFF_PAIR_RENAME(p)) {
64479711
LT
2903 /*
2904 * A rename might have re-connected a broken
2905 * pair up, causing the pathnames to be the
2906 * same again. If so, that's not a rename at
2907 * all, just a modification..
2908 *
2909 * Otherwise, see if this source was used for
2910 * multiple renames, in which case we decrement
2911 * the count, and call it a copy.
6973dcae 2912 */
64479711
LT
2913 if (!strcmp(p->one->path, p->two->path))
2914 p->status = DIFF_STATUS_MODIFIED;
2915 else if (--p->one->rename_used > 0)
6973dcae 2916 p->status = DIFF_STATUS_COPIED;
64479711 2917 else
6973dcae
JH
2918 p->status = DIFF_STATUS_RENAMED;
2919 }
a89fccd2 2920 else if (hashcmp(p->one->sha1, p->two->sha1) ||
d516c2d1
JS
2921 p->one->mode != p->two->mode ||
2922 is_null_sha1(p->one->sha1))
6973dcae
JH
2923 p->status = DIFF_STATUS_MODIFIED;
2924 else {
2925 /* This is a "no-change" entry and should not
2926 * happen anymore, but prepare for broken callers.
2927 */
2928 error("feeding unmodified %s to diffcore",
2929 p->one->path);
2930 p->status = DIFF_STATUS_UNKNOWN;
2931 }
2932 }
2933 diff_debug_queue("resolve-rename-copy done", q);
2934}
2935
c6744349 2936static int check_pair_status(struct diff_filepair *p)
6973dcae 2937{
6973dcae
JH
2938 switch (p->status) {
2939 case DIFF_STATUS_UNKNOWN:
c6744349 2940 return 0;
6973dcae
JH
2941 case 0:
2942 die("internal error in diff-resolve-rename-copy");
6973dcae 2943 default:
c6744349 2944 return 1;
6973dcae
JH
2945 }
2946}
2947
c6744349
TH
2948static void flush_one_pair(struct diff_filepair *p, struct diff_options *opt)
2949{
2950 int fmt = opt->output_format;
2951
2952 if (fmt & DIFF_FORMAT_CHECKDIFF)
2953 diff_flush_checkdiff(p, opt);
2954 else if (fmt & (DIFF_FORMAT_RAW | DIFF_FORMAT_NAME_STATUS))
2955 diff_flush_raw(p, opt);
cd676a51
JH
2956 else if (fmt & DIFF_FORMAT_NAME) {
2957 const char *name_a, *name_b;
2958 name_a = p->two->path;
2959 name_b = NULL;
2960 strip_prefix(opt->prefix_length, &name_a, &name_b);
c0c77734 2961 write_name_quoted(name_a, opt->file, opt->line_termination);
cd676a51 2962 }
c6744349
TH
2963}
2964
c0c77734 2965static void show_file_mode_name(FILE *file, const char *newdelete, struct diff_filespec *fs)
4bbd261b
SE
2966{
2967 if (fs->mode)
c0c77734 2968 fprintf(file, " %s mode %06o ", newdelete, fs->mode);
4bbd261b 2969 else
c0c77734
DB
2970 fprintf(file, " %s ", newdelete);
2971 write_name_quoted(fs->path, file, '\n');
4bbd261b
SE
2972}
2973
2974
c0c77734 2975static void show_mode_change(FILE *file, struct diff_filepair *p, int show_name)
4bbd261b
SE
2976{
2977 if (p->one->mode && p->two->mode && p->one->mode != p->two->mode) {
c0c77734 2978 fprintf(file, " mode change %06o => %06o%c", p->one->mode, p->two->mode,
663af342 2979 show_name ? ' ' : '\n');
0d26a64e 2980 if (show_name) {
c0c77734 2981 write_name_quoted(p->two->path, file, '\n');
0d26a64e 2982 }
4bbd261b
SE
2983 }
2984}
2985
c0c77734 2986static void show_rename_copy(FILE *file, const char *renamecopy, struct diff_filepair *p)
4bbd261b 2987{
b9f44164 2988 char *names = pprint_rename(p->one->path, p->two->path);
4bbd261b 2989
c0c77734 2990 fprintf(file, " %s %s (%d%%)\n", renamecopy, names, similarity_index(p));
b9f44164 2991 free(names);
c0c77734 2992 show_mode_change(file, p, 0);
4bbd261b
SE
2993}
2994
c0c77734 2995static void diff_summary(FILE *file, struct diff_filepair *p)
4bbd261b
SE
2996{
2997 switch(p->status) {
2998 case DIFF_STATUS_DELETED:
c0c77734 2999 show_file_mode_name(file, "delete", p->one);
4bbd261b
SE
3000 break;
3001 case DIFF_STATUS_ADDED:
c0c77734 3002 show_file_mode_name(file, "create", p->two);
4bbd261b
SE
3003 break;
3004 case DIFF_STATUS_COPIED:
c0c77734 3005 show_rename_copy(file, "copy", p);
4bbd261b
SE
3006 break;
3007 case DIFF_STATUS_RENAMED:
c0c77734 3008 show_rename_copy(file, "rename", p);
4bbd261b
SE
3009 break;
3010 default:
3011 if (p->score) {
c0c77734
DB
3012 fputs(" rewrite ", file);
3013 write_name_quoted(p->two->path, file, ' ');
3014 fprintf(file, "(%d%%)\n", similarity_index(p));
663af342 3015 }
c0c77734 3016 show_mode_change(file, p, !p->score);
4bbd261b
SE
3017 break;
3018 }
3019}
3020
fcb3d0ad 3021struct patch_id_t {
fcb3d0ad
JS
3022 SHA_CTX *ctx;
3023 int patchlen;
3024};
3025
3026static int remove_space(char *line, int len)
3027{
3028 int i;
663af342
PH
3029 char *dst = line;
3030 unsigned char c;
fcb3d0ad 3031
663af342
PH
3032 for (i = 0; i < len; i++)
3033 if (!isspace((c = line[i])))
3034 *dst++ = c;
fcb3d0ad 3035
663af342 3036 return dst - line;
fcb3d0ad
JS
3037}
3038
3039static void patch_id_consume(void *priv, char *line, unsigned long len)
3040{
3041 struct patch_id_t *data = priv;
3042 int new_len;
3043
3044 /* Ignore line numbers when computing the SHA1 of the patch */
cc44c765 3045 if (!prefixcmp(line, "@@ -"))
fcb3d0ad
JS
3046 return;
3047
3048 new_len = remove_space(line, len);
3049
3050 SHA1_Update(data->ctx, line, new_len);
3051 data->patchlen += new_len;
3052}
3053
3054/* returns 0 upon success, and writes result into sha1 */
3055static int diff_get_patch_id(struct diff_options *options, unsigned char *sha1)
3056{
3057 struct diff_queue_struct *q = &diff_queued_diff;
3058 int i;
3059 SHA_CTX ctx;
3060 struct patch_id_t data;
3061 char buffer[PATH_MAX * 4 + 20];
3062
3063 SHA1_Init(&ctx);
3064 memset(&data, 0, sizeof(struct patch_id_t));
3065 data.ctx = &ctx;
fcb3d0ad
JS
3066
3067 for (i = 0; i < q->nr; i++) {
3068 xpparam_t xpp;
3069 xdemitconf_t xecfg;
3070 xdemitcb_t ecb;
3071 mmfile_t mf1, mf2;
3072 struct diff_filepair *p = q->queue[i];
3073 int len1, len2;
3074
30b25010 3075 memset(&xecfg, 0, sizeof(xecfg));
fcb3d0ad
JS
3076 if (p->status == 0)
3077 return error("internal diff status error");
3078 if (p->status == DIFF_STATUS_UNKNOWN)
3079 continue;
3080 if (diff_unmodified_pair(p))
3081 continue;
3082 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
3083 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
3084 continue;
3085 if (DIFF_PAIR_UNMERGED(p))
3086 continue;
3087
3088 diff_fill_sha1_info(p->one);
3089 diff_fill_sha1_info(p->two);
3090 if (fill_mmfile(&mf1, p->one) < 0 ||
3091 fill_mmfile(&mf2, p->two) < 0)
3092 return error("unable to read files to diff");
3093
fcb3d0ad
JS
3094 len1 = remove_space(p->one->path, strlen(p->one->path));
3095 len2 = remove_space(p->two->path, strlen(p->two->path));
3096 if (p->one->mode == 0)
3097 len1 = snprintf(buffer, sizeof(buffer),
3098 "diff--gita/%.*sb/%.*s"
3099 "newfilemode%06o"
3100 "---/dev/null"
3101 "+++b/%.*s",
3102 len1, p->one->path,
3103 len2, p->two->path,
3104 p->two->mode,
3105 len2, p->two->path);
3106 else if (p->two->mode == 0)
3107 len1 = snprintf(buffer, sizeof(buffer),
3108 "diff--gita/%.*sb/%.*s"
3109 "deletedfilemode%06o"
3110 "---a/%.*s"
3111 "+++/dev/null",
3112 len1, p->one->path,
3113 len2, p->two->path,
3114 p->one->mode,
3115 len1, p->one->path);
3116 else
3117 len1 = snprintf(buffer, sizeof(buffer),
3118 "diff--gita/%.*sb/%.*s"
3119 "---a/%.*s"
3120 "+++b/%.*s",
3121 len1, p->one->path,
3122 len2, p->two->path,
3123 len1, p->one->path,
3124 len2, p->two->path);
3125 SHA1_Update(&ctx, buffer, len1);
3126
3127 xpp.flags = XDF_NEED_MINIMAL;
3128 xecfg.ctxlen = 3;
9fdc3bb5 3129 xecfg.flags = XDL_EMIT_FUNCNAMES;
8a3f524b
JH
3130 xdi_diff_outf(&mf1, &mf2, patch_id_consume, &data,
3131 &xpp, &xecfg, &ecb);
fcb3d0ad
JS
3132 }
3133
3134 SHA1_Final(sha1, &ctx);
3135 return 0;
3136}
3137
3138int diff_flush_patch_id(struct diff_options *options, unsigned char *sha1)
3139{
3140 struct diff_queue_struct *q = &diff_queued_diff;
3141 int i;
3142 int result = diff_get_patch_id(options, sha1);
3143
3144 for (i = 0; i < q->nr; i++)
3145 diff_free_filepair(q->queue[i]);
3146
3147 free(q->queue);
3148 q->queue = NULL;
3149 q->nr = q->alloc = 0;
3150
3151 return result;
3152}
3153
946c3784 3154static int is_summary_empty(const struct diff_queue_struct *q)
6973dcae 3155{
6973dcae 3156 int i;
6973dcae 3157
946c3784
TH
3158 for (i = 0; i < q->nr; i++) {
3159 const struct diff_filepair *p = q->queue[i];
3160
3161 switch (p->status) {
3162 case DIFF_STATUS_DELETED:
3163 case DIFF_STATUS_ADDED:
3164 case DIFF_STATUS_COPIED:
3165 case DIFF_STATUS_RENAMED:
3166 return 0;
3167 default:
3168 if (p->score)
3169 return 0;
3170 if (p->one->mode && p->two->mode &&
3171 p->one->mode != p->two->mode)
3172 return 0;
3173 break;
3174 }
6973dcae 3175 }
946c3784
TH
3176 return 1;
3177}
3178
6973dcae
JH
3179void diff_flush(struct diff_options *options)
3180{
3181 struct diff_queue_struct *q = &diff_queued_diff;
c6744349 3182 int i, output_format = options->output_format;
946c3784 3183 int separator = 0;
6973dcae 3184
c6744349
TH
3185 /*
3186 * Order: raw, stat, summary, patch
3187 * or: name/name-status/checkdiff (other bits clear)
3188 */
946c3784
TH
3189 if (!q->nr)
3190 goto free_queue;
6973dcae 3191
c6744349
TH
3192 if (output_format & (DIFF_FORMAT_RAW |
3193 DIFF_FORMAT_NAME |
3194 DIFF_FORMAT_NAME_STATUS |
3195 DIFF_FORMAT_CHECKDIFF)) {
6973dcae
JH
3196 for (i = 0; i < q->nr; i++) {
3197 struct diff_filepair *p = q->queue[i];
c6744349
TH
3198 if (check_pair_status(p))
3199 flush_one_pair(p, options);
6973dcae 3200 }
946c3784 3201 separator++;
6973dcae 3202 }
c6744349 3203
c04a7155 3204 if (output_format & (DIFF_FORMAT_DIFFSTAT|DIFF_FORMAT_SHORTSTAT|DIFF_FORMAT_NUMSTAT)) {
5e2b0636 3205 struct diffstat_t diffstat;
c6744349 3206
5e2b0636 3207 memset(&diffstat, 0, sizeof(struct diffstat_t));
6973dcae
JH
3208 for (i = 0; i < q->nr; i++) {
3209 struct diff_filepair *p = q->queue[i];
c6744349 3210 if (check_pair_status(p))
5e2b0636 3211 diff_flush_stat(p, options, &diffstat);
6973dcae 3212 }
74e2abe5
JH
3213 if (output_format & DIFF_FORMAT_NUMSTAT)
3214 show_numstat(&diffstat, options);
3215 if (output_format & DIFF_FORMAT_DIFFSTAT)
3216 show_stats(&diffstat, options);
f604652e 3217 if (output_format & DIFF_FORMAT_SHORTSTAT)
c0c77734 3218 show_shortstats(&diffstat, options);
f604652e 3219 free_diffstat_info(&diffstat);
3969cf7d 3220 separator++;
6973dcae 3221 }
c04a7155
JH
3222 if (output_format & DIFF_FORMAT_DIRSTAT)
3223 show_dirstat(options);
6973dcae 3224
946c3784 3225 if (output_format & DIFF_FORMAT_SUMMARY && !is_summary_empty(q)) {
c6744349 3226 for (i = 0; i < q->nr; i++)
c0c77734 3227 diff_summary(options->file, q->queue[i]);
3969cf7d 3228 separator++;
6973dcae
JH
3229 }
3230
c6744349 3231 if (output_format & DIFF_FORMAT_PATCH) {
946c3784 3232 if (separator) {
6b2fbaaf 3233 putc(options->line_termination, options->file);
946c3784
TH
3234 if (options->stat_sep) {
3235 /* attach patch instead of inline */
c0c77734 3236 fputs(options->stat_sep, options->file);
946c3784 3237 }
c6744349
TH
3238 }
3239
3240 for (i = 0; i < q->nr; i++) {
3241 struct diff_filepair *p = q->queue[i];
3242 if (check_pair_status(p))
3243 diff_flush_patch(p, options);
3244 }
4bbd261b
SE
3245 }
3246
04245581
JK
3247 if (output_format & DIFF_FORMAT_CALLBACK)
3248 options->format_callback(q, options, options->format_callback_data);
3249
c6744349
TH
3250 for (i = 0; i < q->nr; i++)
3251 diff_free_filepair(q->queue[i]);
946c3784 3252free_queue:
6973dcae
JH
3253 free(q->queue);
3254 q->queue = NULL;
3255 q->nr = q->alloc = 0;
c0c77734
DB
3256 if (options->close_file)
3257 fclose(options->file);
6973dcae
JH
3258}
3259
3260static void diffcore_apply_filter(const char *filter)
3261{
3262 int i;
3263 struct diff_queue_struct *q = &diff_queued_diff;
3264 struct diff_queue_struct outq;
3265 outq.queue = NULL;
3266 outq.nr = outq.alloc = 0;
3267
3268 if (!filter)
3269 return;
3270
3271 if (strchr(filter, DIFF_STATUS_FILTER_AON)) {
3272 int found;
3273 for (i = found = 0; !found && i < q->nr; i++) {
3274 struct diff_filepair *p = q->queue[i];
3275 if (((p->status == DIFF_STATUS_MODIFIED) &&
3276 ((p->score &&
3277 strchr(filter, DIFF_STATUS_FILTER_BROKEN)) ||
3278 (!p->score &&
3279 strchr(filter, DIFF_STATUS_MODIFIED)))) ||
3280 ((p->status != DIFF_STATUS_MODIFIED) &&
3281 strchr(filter, p->status)))
3282 found++;
3283 }
3284 if (found)
3285 return;
3286
3287 /* otherwise we will clear the whole queue
3288 * by copying the empty outq at the end of this
3289 * function, but first clear the current entries
3290 * in the queue.
3291 */
3292 for (i = 0; i < q->nr; i++)
3293 diff_free_filepair(q->queue[i]);
3294 }
3295 else {
3296 /* Only the matching ones */
3297 for (i = 0; i < q->nr; i++) {
3298 struct diff_filepair *p = q->queue[i];
3299
3300 if (((p->status == DIFF_STATUS_MODIFIED) &&
3301 ((p->score &&
3302 strchr(filter, DIFF_STATUS_FILTER_BROKEN)) ||
3303 (!p->score &&
3304 strchr(filter, DIFF_STATUS_MODIFIED)))) ||
3305 ((p->status != DIFF_STATUS_MODIFIED) &&
3306 strchr(filter, p->status)))
3307 diff_q(&outq, p);
3308 else
3309 diff_free_filepair(p);
3310 }
3311 }
3312 free(q->queue);
3313 *q = outq;
3314}
3315
5701115a
SV
3316/* Check whether two filespecs with the same mode and size are identical */
3317static int diff_filespec_is_identical(struct diff_filespec *one,
3318 struct diff_filespec *two)
3319{
2b459b48
JH
3320 if (S_ISGITLINK(one->mode))
3321 return 0;
5701115a
SV
3322 if (diff_populate_filespec(one, 0))
3323 return 0;
3324 if (diff_populate_filespec(two, 0))
3325 return 0;
3326 return !memcmp(one->data, two->data, one->size);
3327}
3328
fb13227e
JH
3329static void diffcore_skip_stat_unmatch(struct diff_options *diffopt)
3330{
3331 int i;
3332 struct diff_queue_struct *q = &diff_queued_diff;
3333 struct diff_queue_struct outq;
3334 outq.queue = NULL;
3335 outq.nr = outq.alloc = 0;
3336
3337 for (i = 0; i < q->nr; i++) {
3338 struct diff_filepair *p = q->queue[i];
3339
3340 /*
3341 * 1. Entries that come from stat info dirtyness
3342 * always have both sides (iow, not create/delete),
3343 * one side of the object name is unknown, with
3344 * the same mode and size. Keep the ones that
3345 * do not match these criteria. They have real
3346 * differences.
3347 *
3348 * 2. At this point, the file is known to be modified,
3349 * with the same mode and size, and the object
3350 * name of one side is unknown. Need to inspect
3351 * the identical contents.
3352 */
3353 if (!DIFF_FILE_VALID(p->one) || /* (1) */
3354 !DIFF_FILE_VALID(p->two) ||
3355 (p->one->sha1_valid && p->two->sha1_valid) ||
3356 (p->one->mode != p->two->mode) ||
3357 diff_populate_filespec(p->one, 1) ||
3358 diff_populate_filespec(p->two, 1) ||
3359 (p->one->size != p->two->size) ||
5701115a 3360 !diff_filespec_is_identical(p->one, p->two)) /* (2) */
fb13227e
JH
3361 diff_q(&outq, p);
3362 else {
3363 /*
3364 * The caller can subtract 1 from skip_stat_unmatch
3365 * to determine how many paths were dirty only
3366 * due to stat info mismatch.
3367 */
8f67f8ae 3368 if (!DIFF_OPT_TST(diffopt, NO_INDEX))
6d2d9e86 3369 diffopt->skip_stat_unmatch++;
fb13227e
JH
3370 diff_free_filepair(p);
3371 }
3372 }
3373 free(q->queue);
3374 *q = outq;
3375}
3376
6973dcae
JH
3377void diffcore_std(struct diff_options *options)
3378{
8f67f8ae 3379 if (DIFF_OPT_TST(options, QUIET))
68aacb2f 3380 return;
706098af 3381
8f67f8ae 3382 if (options->skip_stat_unmatch && !DIFF_OPT_TST(options, FIND_COPIES_HARDER))
fb13227e 3383 diffcore_skip_stat_unmatch(options);
6973dcae
JH
3384 if (options->break_opt != -1)
3385 diffcore_break(options->break_opt);
3386 if (options->detect_rename)
3387 diffcore_rename(options);
3388 if (options->break_opt != -1)
3389 diffcore_merge_broken();
3390 if (options->pickaxe)
3391 diffcore_pickaxe(options->pickaxe, options->pickaxe_opts);
3392 if (options->orderfile)
3393 diffcore_order(options->orderfile);
3394 diff_resolve_rename_copy();
3395 diffcore_apply_filter(options->filter);
68aacb2f 3396
8f67f8ae
PH
3397 if (diff_queued_diff.nr)
3398 DIFF_OPT_SET(options, HAS_CHANGES);
3399 else
3400 DIFF_OPT_CLR(options, HAS_CHANGES);
6973dcae
JH
3401}
3402
da31b358
JH
3403int diff_result_code(struct diff_options *opt, int status)
3404{
3405 int result = 0;
3406 if (!DIFF_OPT_TST(opt, EXIT_WITH_STATUS) &&
3407 !(opt->output_format & DIFF_FORMAT_CHECKDIFF))
3408 return status;
3409 if (DIFF_OPT_TST(opt, EXIT_WITH_STATUS) &&
3410 DIFF_OPT_TST(opt, HAS_CHANGES))
3411 result |= 01;
3412 if ((opt->output_format & DIFF_FORMAT_CHECKDIFF) &&
3413 DIFF_OPT_TST(opt, CHECK_FAILED))
3414 result |= 02;
3415 return result;
3416}
6973dcae 3417
6973dcae
JH
3418void diff_addremove(struct diff_options *options,
3419 int addremove, unsigned mode,
3420 const unsigned char *sha1,
fd55a19e 3421 const char *concatpath)
6973dcae 3422{
6973dcae
JH
3423 struct diff_filespec *one, *two;
3424
50fd9bd8
JS
3425 if (DIFF_OPT_TST(options, IGNORE_SUBMODULES) && S_ISGITLINK(mode))
3426 return;
3427
6973dcae
JH
3428 /* This may look odd, but it is a preparation for
3429 * feeding "there are unchanged files which should
3430 * not produce diffs, but when you are doing copy
3431 * detection you would need them, so here they are"
3432 * entries to the diff-core. They will be prefixed
3433 * with something like '=' or '*' (I haven't decided
3434 * which but should not make any difference).
a6080a0a 3435 * Feeding the same new and old to diff_change()
6973dcae
JH
3436 * also has the same effect.
3437 * Before the final output happens, they are pruned after
3438 * merged into rename/copy pairs as appropriate.
3439 */
8f67f8ae 3440 if (DIFF_OPT_TST(options, REVERSE_DIFF))
6973dcae
JH
3441 addremove = (addremove == '+' ? '-' :
3442 addremove == '-' ? '+' : addremove);
3443
cd676a51
JH
3444 if (options->prefix &&
3445 strncmp(concatpath, options->prefix, options->prefix_length))
3446 return;
3447
6973dcae
JH
3448 one = alloc_filespec(concatpath);
3449 two = alloc_filespec(concatpath);
3450
3451 if (addremove != '+')
3452 fill_filespec(one, sha1, mode);
3453 if (addremove != '-')
3454 fill_filespec(two, sha1, mode);
3455
3456 diff_queue(&diff_queued_diff, one, two);
8f67f8ae 3457 DIFF_OPT_SET(options, HAS_CHANGES);
6973dcae
JH
3458}
3459
3460void diff_change(struct diff_options *options,
3461 unsigned old_mode, unsigned new_mode,
3462 const unsigned char *old_sha1,
3463 const unsigned char *new_sha1,
fd55a19e 3464 const char *concatpath)
6973dcae 3465{
6973dcae
JH
3466 struct diff_filespec *one, *two;
3467
50fd9bd8
JS
3468 if (DIFF_OPT_TST(options, IGNORE_SUBMODULES) && S_ISGITLINK(old_mode)
3469 && S_ISGITLINK(new_mode))
3470 return;
3471
8f67f8ae 3472 if (DIFF_OPT_TST(options, REVERSE_DIFF)) {
6973dcae
JH
3473 unsigned tmp;
3474 const unsigned char *tmp_c;
3475 tmp = old_mode; old_mode = new_mode; new_mode = tmp;
3476 tmp_c = old_sha1; old_sha1 = new_sha1; new_sha1 = tmp_c;
3477 }
cd676a51
JH
3478
3479 if (options->prefix &&
3480 strncmp(concatpath, options->prefix, options->prefix_length))
3481 return;
3482
6973dcae
JH
3483 one = alloc_filespec(concatpath);
3484 two = alloc_filespec(concatpath);
3485 fill_filespec(one, old_sha1, old_mode);
3486 fill_filespec(two, new_sha1, new_mode);
3487
3488 diff_queue(&diff_queued_diff, one, two);
8f67f8ae 3489 DIFF_OPT_SET(options, HAS_CHANGES);
6973dcae
JH
3490}
3491
3492void diff_unmerge(struct diff_options *options,
e9c84099
JH
3493 const char *path,
3494 unsigned mode, const unsigned char *sha1)
6973dcae
JH
3495{
3496 struct diff_filespec *one, *two;
cd676a51
JH
3497
3498 if (options->prefix &&
3499 strncmp(path, options->prefix, options->prefix_length))
3500 return;
3501
6973dcae
JH
3502 one = alloc_filespec(path);
3503 two = alloc_filespec(path);
e9c84099
JH
3504 fill_filespec(one, sha1, mode);
3505 diff_queue(&diff_queued_diff, one, two)->is_unmerged = 1;
6973dcae 3506}