Merge branch 'jc/1.7.0-diff-whitespace-only-status'
[git.git] / diff.c
blob57aa72c6c575d1014cbb716d3993f600bdc1f2c5
1 /*
2 * Copyright (C) 2005 Junio C Hamano
3 */
4 #include "cache.h"
5 #include "quote.h"
6 #include "diff.h"
7 #include "diffcore.h"
8 #include "delta.h"
9 #include "xdiff-interface.h"
10 #include "color.h"
11 #include "attr.h"
12 #include "run-command.h"
13 #include "utf8.h"
14 #include "userdiff.h"
15 #include "sigchain.h"
16 #include "submodule.h"
18 #ifdef NO_FAST_WORKING_DIRECTORY
19 #define FAST_WORKING_DIRECTORY 0
20 #else
21 #define FAST_WORKING_DIRECTORY 1
22 #endif
24 static int diff_detect_rename_default;
25 static int diff_rename_limit_default = 200;
26 static int diff_suppress_blank_empty;
27 int diff_use_color_default = -1;
28 static const char *diff_word_regex_cfg;
29 static const char *external_diff_cmd_cfg;
30 int diff_auto_refresh_index = 1;
31 static int diff_mnemonic_prefix;
33 static char diff_colors[][COLOR_MAXLEN] = {
34 GIT_COLOR_RESET,
35 GIT_COLOR_NORMAL, /* PLAIN */
36 GIT_COLOR_BOLD, /* METAINFO */
37 GIT_COLOR_CYAN, /* FRAGINFO */
38 GIT_COLOR_RED, /* OLD */
39 GIT_COLOR_GREEN, /* NEW */
40 GIT_COLOR_YELLOW, /* COMMIT */
41 GIT_COLOR_BG_RED, /* WHITESPACE */
42 GIT_COLOR_NORMAL, /* FUNCINFO */
45 static void diff_filespec_load_driver(struct diff_filespec *one);
46 static char *run_textconv(const char *, struct diff_filespec *, size_t *);
48 static int parse_diff_color_slot(const char *var, int ofs)
50 if (!strcasecmp(var+ofs, "plain"))
51 return DIFF_PLAIN;
52 if (!strcasecmp(var+ofs, "meta"))
53 return DIFF_METAINFO;
54 if (!strcasecmp(var+ofs, "frag"))
55 return DIFF_FRAGINFO;
56 if (!strcasecmp(var+ofs, "old"))
57 return DIFF_FILE_OLD;
58 if (!strcasecmp(var+ofs, "new"))
59 return DIFF_FILE_NEW;
60 if (!strcasecmp(var+ofs, "commit"))
61 return DIFF_COMMIT;
62 if (!strcasecmp(var+ofs, "whitespace"))
63 return DIFF_WHITESPACE;
64 if (!strcasecmp(var+ofs, "func"))
65 return DIFF_FUNCINFO;
66 return -1;
69 static int git_config_rename(const char *var, const char *value)
71 if (!value)
72 return DIFF_DETECT_RENAME;
73 if (!strcasecmp(value, "copies") || !strcasecmp(value, "copy"))
74 return DIFF_DETECT_COPY;
75 return git_config_bool(var,value) ? DIFF_DETECT_RENAME : 0;
79 * These are to give UI layer defaults.
80 * The core-level commands such as git-diff-files should
81 * never be affected by the setting of diff.renames
82 * the user happens to have in the configuration file.
84 int git_diff_ui_config(const char *var, const char *value, void *cb)
86 if (!strcmp(var, "diff.color") || !strcmp(var, "color.diff")) {
87 diff_use_color_default = git_config_colorbool(var, value, -1);
88 return 0;
90 if (!strcmp(var, "diff.renames")) {
91 diff_detect_rename_default = git_config_rename(var, value);
92 return 0;
94 if (!strcmp(var, "diff.autorefreshindex")) {
95 diff_auto_refresh_index = git_config_bool(var, value);
96 return 0;
98 if (!strcmp(var, "diff.mnemonicprefix")) {
99 diff_mnemonic_prefix = git_config_bool(var, value);
100 return 0;
102 if (!strcmp(var, "diff.external"))
103 return git_config_string(&external_diff_cmd_cfg, var, value);
104 if (!strcmp(var, "diff.wordregex"))
105 return git_config_string(&diff_word_regex_cfg, var, value);
107 return git_diff_basic_config(var, value, cb);
110 int git_diff_basic_config(const char *var, const char *value, void *cb)
112 if (!strcmp(var, "diff.renamelimit")) {
113 diff_rename_limit_default = git_config_int(var, value);
114 return 0;
117 switch (userdiff_config(var, value)) {
118 case 0: break;
119 case -1: return -1;
120 default: return 0;
123 if (!prefixcmp(var, "diff.color.") || !prefixcmp(var, "color.diff.")) {
124 int slot = parse_diff_color_slot(var, 11);
125 if (slot < 0)
126 return 0;
127 if (!value)
128 return config_error_nonbool(var);
129 color_parse(value, var, diff_colors[slot]);
130 return 0;
133 /* like GNU diff's --suppress-blank-empty option */
134 if (!strcmp(var, "diff.suppressblankempty") ||
135 /* for backwards compatibility */
136 !strcmp(var, "diff.suppress-blank-empty")) {
137 diff_suppress_blank_empty = git_config_bool(var, value);
138 return 0;
141 return git_color_default_config(var, value, cb);
144 static char *quote_two(const char *one, const char *two)
146 int need_one = quote_c_style(one, NULL, NULL, 1);
147 int need_two = quote_c_style(two, NULL, NULL, 1);
148 struct strbuf res = STRBUF_INIT;
150 if (need_one + need_two) {
151 strbuf_addch(&res, '"');
152 quote_c_style(one, &res, NULL, 1);
153 quote_c_style(two, &res, NULL, 1);
154 strbuf_addch(&res, '"');
155 } else {
156 strbuf_addstr(&res, one);
157 strbuf_addstr(&res, two);
159 return strbuf_detach(&res, NULL);
162 static const char *external_diff(void)
164 static const char *external_diff_cmd = NULL;
165 static int done_preparing = 0;
167 if (done_preparing)
168 return external_diff_cmd;
169 external_diff_cmd = getenv("GIT_EXTERNAL_DIFF");
170 if (!external_diff_cmd)
171 external_diff_cmd = external_diff_cmd_cfg;
172 done_preparing = 1;
173 return external_diff_cmd;
176 static struct diff_tempfile {
177 const char *name; /* filename external diff should read from */
178 char hex[41];
179 char mode[10];
180 char tmp_path[PATH_MAX];
181 } diff_temp[2];
183 typedef unsigned long (*sane_truncate_fn)(char *line, unsigned long len);
185 struct emit_callback {
186 int color_diff;
187 unsigned ws_rule;
188 int blank_at_eof_in_preimage;
189 int blank_at_eof_in_postimage;
190 int lno_in_preimage;
191 int lno_in_postimage;
192 sane_truncate_fn truncate;
193 const char **label_path;
194 struct diff_words_data *diff_words;
195 int *found_changesp;
196 FILE *file;
199 static int count_lines(const char *data, int size)
201 int count, ch, completely_empty = 1, nl_just_seen = 0;
202 count = 0;
203 while (0 < size--) {
204 ch = *data++;
205 if (ch == '\n') {
206 count++;
207 nl_just_seen = 1;
208 completely_empty = 0;
210 else {
211 nl_just_seen = 0;
212 completely_empty = 0;
215 if (completely_empty)
216 return 0;
217 if (!nl_just_seen)
218 count++; /* no trailing newline */
219 return count;
222 static int fill_mmfile(mmfile_t *mf, struct diff_filespec *one)
224 if (!DIFF_FILE_VALID(one)) {
225 mf->ptr = (char *)""; /* does not matter */
226 mf->size = 0;
227 return 0;
229 else if (diff_populate_filespec(one, 0))
230 return -1;
232 mf->ptr = one->data;
233 mf->size = one->size;
234 return 0;
237 static int count_trailing_blank(mmfile_t *mf, unsigned ws_rule)
239 char *ptr = mf->ptr;
240 long size = mf->size;
241 int cnt = 0;
243 if (!size)
244 return cnt;
245 ptr += size - 1; /* pointing at the very end */
246 if (*ptr != '\n')
247 ; /* incomplete line */
248 else
249 ptr--; /* skip the last LF */
250 while (mf->ptr < ptr) {
251 char *prev_eol;
252 for (prev_eol = ptr; mf->ptr <= prev_eol; prev_eol--)
253 if (*prev_eol == '\n')
254 break;
255 if (!ws_blank_line(prev_eol + 1, ptr - prev_eol, ws_rule))
256 break;
257 cnt++;
258 ptr = prev_eol - 1;
260 return cnt;
263 static void check_blank_at_eof(mmfile_t *mf1, mmfile_t *mf2,
264 struct emit_callback *ecbdata)
266 int l1, l2, at;
267 unsigned ws_rule = ecbdata->ws_rule;
268 l1 = count_trailing_blank(mf1, ws_rule);
269 l2 = count_trailing_blank(mf2, ws_rule);
270 if (l2 <= l1) {
271 ecbdata->blank_at_eof_in_preimage = 0;
272 ecbdata->blank_at_eof_in_postimage = 0;
273 return;
275 at = count_lines(mf1->ptr, mf1->size);
276 ecbdata->blank_at_eof_in_preimage = (at - l1) + 1;
278 at = count_lines(mf2->ptr, mf2->size);
279 ecbdata->blank_at_eof_in_postimage = (at - l2) + 1;
282 static void emit_line_0(FILE *file, const char *set, const char *reset,
283 int first, const char *line, int len)
285 int has_trailing_newline, has_trailing_carriage_return;
286 int nofirst;
288 if (len == 0) {
289 has_trailing_newline = (first == '\n');
290 has_trailing_carriage_return = (!has_trailing_newline &&
291 (first == '\r'));
292 nofirst = has_trailing_newline || has_trailing_carriage_return;
293 } else {
294 has_trailing_newline = (len > 0 && line[len-1] == '\n');
295 if (has_trailing_newline)
296 len--;
297 has_trailing_carriage_return = (len > 0 && line[len-1] == '\r');
298 if (has_trailing_carriage_return)
299 len--;
300 nofirst = 0;
303 if (len || !nofirst) {
304 fputs(set, file);
305 if (!nofirst)
306 fputc(first, file);
307 fwrite(line, len, 1, file);
308 fputs(reset, file);
310 if (has_trailing_carriage_return)
311 fputc('\r', file);
312 if (has_trailing_newline)
313 fputc('\n', file);
316 static void emit_line(FILE *file, const char *set, const char *reset,
317 const char *line, int len)
319 emit_line_0(file, set, reset, line[0], line+1, len-1);
322 static int new_blank_line_at_eof(struct emit_callback *ecbdata, const char *line, int len)
324 if (!((ecbdata->ws_rule & WS_BLANK_AT_EOF) &&
325 ecbdata->blank_at_eof_in_preimage &&
326 ecbdata->blank_at_eof_in_postimage &&
327 ecbdata->blank_at_eof_in_preimage <= ecbdata->lno_in_preimage &&
328 ecbdata->blank_at_eof_in_postimage <= ecbdata->lno_in_postimage))
329 return 0;
330 return ws_blank_line(line, len, ecbdata->ws_rule);
333 static void emit_add_line(const char *reset,
334 struct emit_callback *ecbdata,
335 const char *line, int len)
337 const char *ws = diff_get_color(ecbdata->color_diff, DIFF_WHITESPACE);
338 const char *set = diff_get_color(ecbdata->color_diff, DIFF_FILE_NEW);
340 if (!*ws)
341 emit_line_0(ecbdata->file, set, reset, '+', line, len);
342 else if (new_blank_line_at_eof(ecbdata, line, len))
343 /* Blank line at EOF - paint '+' as well */
344 emit_line_0(ecbdata->file, ws, reset, '+', line, len);
345 else {
346 /* Emit just the prefix, then the rest. */
347 emit_line_0(ecbdata->file, set, reset, '+', "", 0);
348 ws_check_emit(line, len, ecbdata->ws_rule,
349 ecbdata->file, set, reset, ws);
353 static void emit_hunk_header(struct emit_callback *ecbdata,
354 const char *line, int len)
356 const char *plain = diff_get_color(ecbdata->color_diff, DIFF_PLAIN);
357 const char *frag = diff_get_color(ecbdata->color_diff, DIFF_FRAGINFO);
358 const char *func = diff_get_color(ecbdata->color_diff, DIFF_FUNCINFO);
359 const char *reset = diff_get_color(ecbdata->color_diff, DIFF_RESET);
360 static const char atat[2] = { '@', '@' };
361 const char *cp, *ep;
364 * As a hunk header must begin with "@@ -<old>, +<new> @@",
365 * it always is at least 10 bytes long.
367 if (len < 10 ||
368 memcmp(line, atat, 2) ||
369 !(ep = memmem(line + 2, len - 2, atat, 2))) {
370 emit_line(ecbdata->file, plain, reset, line, len);
371 return;
373 ep += 2; /* skip over @@ */
375 /* The hunk header in fraginfo color */
376 emit_line(ecbdata->file, frag, reset, line, ep - line);
378 /* blank before the func header */
379 for (cp = ep; ep - line < len; ep++)
380 if (*ep != ' ' && *ep != '\t')
381 break;
382 if (ep != cp)
383 emit_line(ecbdata->file, plain, reset, cp, ep - cp);
385 if (ep < line + len)
386 emit_line(ecbdata->file, func, reset, ep, line + len - ep);
389 static struct diff_tempfile *claim_diff_tempfile(void) {
390 int i;
391 for (i = 0; i < ARRAY_SIZE(diff_temp); i++)
392 if (!diff_temp[i].name)
393 return diff_temp + i;
394 die("BUG: diff is failing to clean up its tempfiles");
397 static int remove_tempfile_installed;
399 static void remove_tempfile(void)
401 int i;
402 for (i = 0; i < ARRAY_SIZE(diff_temp); i++) {
403 if (diff_temp[i].name == diff_temp[i].tmp_path)
404 unlink_or_warn(diff_temp[i].name);
405 diff_temp[i].name = NULL;
409 static void remove_tempfile_on_signal(int signo)
411 remove_tempfile();
412 sigchain_pop(signo);
413 raise(signo);
416 static void print_line_count(FILE *file, int count)
418 switch (count) {
419 case 0:
420 fprintf(file, "0,0");
421 break;
422 case 1:
423 fprintf(file, "1");
424 break;
425 default:
426 fprintf(file, "1,%d", count);
427 break;
431 static void emit_rewrite_lines(struct emit_callback *ecb,
432 int prefix, const char *data, int size)
434 const char *endp = NULL;
435 static const char *nneof = " No newline at end of file\n";
436 const char *old = diff_get_color(ecb->color_diff, DIFF_FILE_OLD);
437 const char *reset = diff_get_color(ecb->color_diff, DIFF_RESET);
439 while (0 < size) {
440 int len;
442 endp = memchr(data, '\n', size);
443 len = endp ? (endp - data + 1) : size;
444 if (prefix != '+') {
445 ecb->lno_in_preimage++;
446 emit_line_0(ecb->file, old, reset, '-',
447 data, len);
448 } else {
449 ecb->lno_in_postimage++;
450 emit_add_line(reset, ecb, data, len);
452 size -= len;
453 data += len;
455 if (!endp) {
456 const char *plain = diff_get_color(ecb->color_diff,
457 DIFF_PLAIN);
458 emit_line_0(ecb->file, plain, reset, '\\',
459 nneof, strlen(nneof));
463 static void emit_rewrite_diff(const char *name_a,
464 const char *name_b,
465 struct diff_filespec *one,
466 struct diff_filespec *two,
467 const char *textconv_one,
468 const char *textconv_two,
469 struct diff_options *o)
471 int lc_a, lc_b;
472 int color_diff = DIFF_OPT_TST(o, COLOR_DIFF);
473 const char *name_a_tab, *name_b_tab;
474 const char *metainfo = diff_get_color(color_diff, DIFF_METAINFO);
475 const char *fraginfo = diff_get_color(color_diff, DIFF_FRAGINFO);
476 const char *reset = diff_get_color(color_diff, DIFF_RESET);
477 static struct strbuf a_name = STRBUF_INIT, b_name = STRBUF_INIT;
478 const char *a_prefix, *b_prefix;
479 const char *data_one, *data_two;
480 size_t size_one, size_two;
481 struct emit_callback ecbdata;
483 if (diff_mnemonic_prefix && DIFF_OPT_TST(o, REVERSE_DIFF)) {
484 a_prefix = o->b_prefix;
485 b_prefix = o->a_prefix;
486 } else {
487 a_prefix = o->a_prefix;
488 b_prefix = o->b_prefix;
491 name_a += (*name_a == '/');
492 name_b += (*name_b == '/');
493 name_a_tab = strchr(name_a, ' ') ? "\t" : "";
494 name_b_tab = strchr(name_b, ' ') ? "\t" : "";
496 strbuf_reset(&a_name);
497 strbuf_reset(&b_name);
498 quote_two_c_style(&a_name, a_prefix, name_a, 0);
499 quote_two_c_style(&b_name, b_prefix, name_b, 0);
501 diff_populate_filespec(one, 0);
502 diff_populate_filespec(two, 0);
503 if (textconv_one) {
504 data_one = run_textconv(textconv_one, one, &size_one);
505 if (!data_one)
506 die("unable to read files to diff");
508 else {
509 data_one = one->data;
510 size_one = one->size;
512 if (textconv_two) {
513 data_two = run_textconv(textconv_two, two, &size_two);
514 if (!data_two)
515 die("unable to read files to diff");
517 else {
518 data_two = two->data;
519 size_two = two->size;
522 memset(&ecbdata, 0, sizeof(ecbdata));
523 ecbdata.color_diff = color_diff;
524 ecbdata.found_changesp = &o->found_changes;
525 ecbdata.ws_rule = whitespace_rule(name_b ? name_b : name_a);
526 ecbdata.file = o->file;
527 if (ecbdata.ws_rule & WS_BLANK_AT_EOF) {
528 mmfile_t mf1, mf2;
529 mf1.ptr = (char *)data_one;
530 mf2.ptr = (char *)data_two;
531 mf1.size = size_one;
532 mf2.size = size_two;
533 check_blank_at_eof(&mf1, &mf2, &ecbdata);
535 ecbdata.lno_in_preimage = 1;
536 ecbdata.lno_in_postimage = 1;
538 lc_a = count_lines(data_one, size_one);
539 lc_b = count_lines(data_two, size_two);
540 fprintf(o->file,
541 "%s--- %s%s%s\n%s+++ %s%s%s\n%s@@ -",
542 metainfo, a_name.buf, name_a_tab, reset,
543 metainfo, b_name.buf, name_b_tab, reset, fraginfo);
544 print_line_count(o->file, lc_a);
545 fprintf(o->file, " +");
546 print_line_count(o->file, lc_b);
547 fprintf(o->file, " @@%s\n", reset);
548 if (lc_a)
549 emit_rewrite_lines(&ecbdata, '-', data_one, size_one);
550 if (lc_b)
551 emit_rewrite_lines(&ecbdata, '+', data_two, size_two);
554 struct diff_words_buffer {
555 mmfile_t text;
556 long alloc;
557 struct diff_words_orig {
558 const char *begin, *end;
559 } *orig;
560 int orig_nr, orig_alloc;
563 static void diff_words_append(char *line, unsigned long len,
564 struct diff_words_buffer *buffer)
566 ALLOC_GROW(buffer->text.ptr, buffer->text.size + len, buffer->alloc);
567 line++;
568 len--;
569 memcpy(buffer->text.ptr + buffer->text.size, line, len);
570 buffer->text.size += len;
571 buffer->text.ptr[buffer->text.size] = '\0';
574 struct diff_words_data {
575 struct diff_words_buffer minus, plus;
576 const char *current_plus;
577 FILE *file;
578 regex_t *word_regex;
581 static void fn_out_diff_words_aux(void *priv, char *line, unsigned long len)
583 struct diff_words_data *diff_words = priv;
584 int minus_first, minus_len, plus_first, plus_len;
585 const char *minus_begin, *minus_end, *plus_begin, *plus_end;
587 if (line[0] != '@' || parse_hunk_header(line, len,
588 &minus_first, &minus_len, &plus_first, &plus_len))
589 return;
591 /* POSIX requires that first be decremented by one if len == 0... */
592 if (minus_len) {
593 minus_begin = diff_words->minus.orig[minus_first].begin;
594 minus_end =
595 diff_words->minus.orig[minus_first + minus_len - 1].end;
596 } else
597 minus_begin = minus_end =
598 diff_words->minus.orig[minus_first].end;
600 if (plus_len) {
601 plus_begin = diff_words->plus.orig[plus_first].begin;
602 plus_end = diff_words->plus.orig[plus_first + plus_len - 1].end;
603 } else
604 plus_begin = plus_end = diff_words->plus.orig[plus_first].end;
606 if (diff_words->current_plus != plus_begin)
607 fwrite(diff_words->current_plus,
608 plus_begin - diff_words->current_plus, 1,
609 diff_words->file);
610 if (minus_begin != minus_end)
611 color_fwrite_lines(diff_words->file,
612 diff_get_color(1, DIFF_FILE_OLD),
613 minus_end - minus_begin, minus_begin);
614 if (plus_begin != plus_end)
615 color_fwrite_lines(diff_words->file,
616 diff_get_color(1, DIFF_FILE_NEW),
617 plus_end - plus_begin, plus_begin);
619 diff_words->current_plus = plus_end;
622 /* This function starts looking at *begin, and returns 0 iff a word was found. */
623 static int find_word_boundaries(mmfile_t *buffer, regex_t *word_regex,
624 int *begin, int *end)
626 if (word_regex && *begin < buffer->size) {
627 regmatch_t match[1];
628 if (!regexec(word_regex, buffer->ptr + *begin, 1, match, 0)) {
629 char *p = memchr(buffer->ptr + *begin + match[0].rm_so,
630 '\n', match[0].rm_eo - match[0].rm_so);
631 *end = p ? p - buffer->ptr : match[0].rm_eo + *begin;
632 *begin += match[0].rm_so;
633 return *begin >= *end;
635 return -1;
638 /* find the next word */
639 while (*begin < buffer->size && isspace(buffer->ptr[*begin]))
640 (*begin)++;
641 if (*begin >= buffer->size)
642 return -1;
644 /* find the end of the word */
645 *end = *begin + 1;
646 while (*end < buffer->size && !isspace(buffer->ptr[*end]))
647 (*end)++;
649 return 0;
653 * This function splits the words in buffer->text, stores the list with
654 * newline separator into out, and saves the offsets of the original words
655 * in buffer->orig.
657 static void diff_words_fill(struct diff_words_buffer *buffer, mmfile_t *out,
658 regex_t *word_regex)
660 int i, j;
661 long alloc = 0;
663 out->size = 0;
664 out->ptr = NULL;
666 /* fake an empty "0th" word */
667 ALLOC_GROW(buffer->orig, 1, buffer->orig_alloc);
668 buffer->orig[0].begin = buffer->orig[0].end = buffer->text.ptr;
669 buffer->orig_nr = 1;
671 for (i = 0; i < buffer->text.size; i++) {
672 if (find_word_boundaries(&buffer->text, word_regex, &i, &j))
673 return;
675 /* store original boundaries */
676 ALLOC_GROW(buffer->orig, buffer->orig_nr + 1,
677 buffer->orig_alloc);
678 buffer->orig[buffer->orig_nr].begin = buffer->text.ptr + i;
679 buffer->orig[buffer->orig_nr].end = buffer->text.ptr + j;
680 buffer->orig_nr++;
682 /* store one word */
683 ALLOC_GROW(out->ptr, out->size + j - i + 1, alloc);
684 memcpy(out->ptr + out->size, buffer->text.ptr + i, j - i);
685 out->ptr[out->size + j - i] = '\n';
686 out->size += j - i + 1;
688 i = j - 1;
692 /* this executes the word diff on the accumulated buffers */
693 static void diff_words_show(struct diff_words_data *diff_words)
695 xpparam_t xpp;
696 xdemitconf_t xecfg;
697 xdemitcb_t ecb;
698 mmfile_t minus, plus;
700 /* special case: only removal */
701 if (!diff_words->plus.text.size) {
702 color_fwrite_lines(diff_words->file,
703 diff_get_color(1, DIFF_FILE_OLD),
704 diff_words->minus.text.size, diff_words->minus.text.ptr);
705 diff_words->minus.text.size = 0;
706 return;
709 diff_words->current_plus = diff_words->plus.text.ptr;
711 memset(&xpp, 0, sizeof(xpp));
712 memset(&xecfg, 0, sizeof(xecfg));
713 diff_words_fill(&diff_words->minus, &minus, diff_words->word_regex);
714 diff_words_fill(&diff_words->plus, &plus, diff_words->word_regex);
715 xpp.flags = XDF_NEED_MINIMAL;
716 /* as only the hunk header will be parsed, we need a 0-context */
717 xecfg.ctxlen = 0;
718 xdi_diff_outf(&minus, &plus, fn_out_diff_words_aux, diff_words,
719 &xpp, &xecfg, &ecb);
720 free(minus.ptr);
721 free(plus.ptr);
722 if (diff_words->current_plus != diff_words->plus.text.ptr +
723 diff_words->plus.text.size)
724 fwrite(diff_words->current_plus,
725 diff_words->plus.text.ptr + diff_words->plus.text.size
726 - diff_words->current_plus, 1,
727 diff_words->file);
728 diff_words->minus.text.size = diff_words->plus.text.size = 0;
731 /* In "color-words" mode, show word-diff of words accumulated in the buffer */
732 static void diff_words_flush(struct emit_callback *ecbdata)
734 if (ecbdata->diff_words->minus.text.size ||
735 ecbdata->diff_words->plus.text.size)
736 diff_words_show(ecbdata->diff_words);
739 static void free_diff_words_data(struct emit_callback *ecbdata)
741 if (ecbdata->diff_words) {
742 diff_words_flush(ecbdata);
743 free (ecbdata->diff_words->minus.text.ptr);
744 free (ecbdata->diff_words->minus.orig);
745 free (ecbdata->diff_words->plus.text.ptr);
746 free (ecbdata->diff_words->plus.orig);
747 free(ecbdata->diff_words->word_regex);
748 free(ecbdata->diff_words);
749 ecbdata->diff_words = NULL;
753 const char *diff_get_color(int diff_use_color, enum color_diff ix)
755 if (diff_use_color)
756 return diff_colors[ix];
757 return "";
760 static unsigned long sane_truncate_line(struct emit_callback *ecb, char *line, unsigned long len)
762 const char *cp;
763 unsigned long allot;
764 size_t l = len;
766 if (ecb->truncate)
767 return ecb->truncate(line, len);
768 cp = line;
769 allot = l;
770 while (0 < l) {
771 (void) utf8_width(&cp, &l);
772 if (!cp)
773 break; /* truncated in the middle? */
775 return allot - l;
778 static void find_lno(const char *line, struct emit_callback *ecbdata)
780 const char *p;
781 ecbdata->lno_in_preimage = 0;
782 ecbdata->lno_in_postimage = 0;
783 p = strchr(line, '-');
784 if (!p)
785 return; /* cannot happen */
786 ecbdata->lno_in_preimage = strtol(p + 1, NULL, 10);
787 p = strchr(p, '+');
788 if (!p)
789 return; /* cannot happen */
790 ecbdata->lno_in_postimage = strtol(p + 1, NULL, 10);
793 static void fn_out_consume(void *priv, char *line, unsigned long len)
795 struct emit_callback *ecbdata = priv;
796 const char *meta = diff_get_color(ecbdata->color_diff, DIFF_METAINFO);
797 const char *plain = diff_get_color(ecbdata->color_diff, DIFF_PLAIN);
798 const char *reset = diff_get_color(ecbdata->color_diff, DIFF_RESET);
800 *(ecbdata->found_changesp) = 1;
802 if (ecbdata->label_path[0]) {
803 const char *name_a_tab, *name_b_tab;
805 name_a_tab = strchr(ecbdata->label_path[0], ' ') ? "\t" : "";
806 name_b_tab = strchr(ecbdata->label_path[1], ' ') ? "\t" : "";
808 fprintf(ecbdata->file, "%s--- %s%s%s\n",
809 meta, ecbdata->label_path[0], reset, name_a_tab);
810 fprintf(ecbdata->file, "%s+++ %s%s%s\n",
811 meta, ecbdata->label_path[1], reset, name_b_tab);
812 ecbdata->label_path[0] = ecbdata->label_path[1] = NULL;
815 if (diff_suppress_blank_empty
816 && len == 2 && line[0] == ' ' && line[1] == '\n') {
817 line[0] = '\n';
818 len = 1;
821 if (line[0] == '@') {
822 if (ecbdata->diff_words)
823 diff_words_flush(ecbdata);
824 len = sane_truncate_line(ecbdata, line, len);
825 find_lno(line, ecbdata);
826 emit_hunk_header(ecbdata, line, len);
827 if (line[len-1] != '\n')
828 putc('\n', ecbdata->file);
829 return;
832 if (len < 1) {
833 emit_line(ecbdata->file, reset, reset, line, len);
834 return;
837 if (ecbdata->diff_words) {
838 if (line[0] == '-') {
839 diff_words_append(line, len,
840 &ecbdata->diff_words->minus);
841 return;
842 } else if (line[0] == '+') {
843 diff_words_append(line, len,
844 &ecbdata->diff_words->plus);
845 return;
847 diff_words_flush(ecbdata);
848 line++;
849 len--;
850 emit_line(ecbdata->file, plain, reset, line, len);
851 return;
854 if (line[0] != '+') {
855 const char *color =
856 diff_get_color(ecbdata->color_diff,
857 line[0] == '-' ? DIFF_FILE_OLD : DIFF_PLAIN);
858 ecbdata->lno_in_preimage++;
859 if (line[0] == ' ')
860 ecbdata->lno_in_postimage++;
861 emit_line(ecbdata->file, color, reset, line, len);
862 } else {
863 ecbdata->lno_in_postimage++;
864 emit_add_line(reset, ecbdata, line + 1, len - 1);
868 static char *pprint_rename(const char *a, const char *b)
870 const char *old = a;
871 const char *new = b;
872 struct strbuf name = STRBUF_INIT;
873 int pfx_length, sfx_length;
874 int len_a = strlen(a);
875 int len_b = strlen(b);
876 int a_midlen, b_midlen;
877 int qlen_a = quote_c_style(a, NULL, NULL, 0);
878 int qlen_b = quote_c_style(b, NULL, NULL, 0);
880 if (qlen_a || qlen_b) {
881 quote_c_style(a, &name, NULL, 0);
882 strbuf_addstr(&name, " => ");
883 quote_c_style(b, &name, NULL, 0);
884 return strbuf_detach(&name, NULL);
887 /* Find common prefix */
888 pfx_length = 0;
889 while (*old && *new && *old == *new) {
890 if (*old == '/')
891 pfx_length = old - a + 1;
892 old++;
893 new++;
896 /* Find common suffix */
897 old = a + len_a;
898 new = b + len_b;
899 sfx_length = 0;
900 while (a <= old && b <= new && *old == *new) {
901 if (*old == '/')
902 sfx_length = len_a - (old - a);
903 old--;
904 new--;
908 * pfx{mid-a => mid-b}sfx
909 * {pfx-a => pfx-b}sfx
910 * pfx{sfx-a => sfx-b}
911 * name-a => name-b
913 a_midlen = len_a - pfx_length - sfx_length;
914 b_midlen = len_b - pfx_length - sfx_length;
915 if (a_midlen < 0)
916 a_midlen = 0;
917 if (b_midlen < 0)
918 b_midlen = 0;
920 strbuf_grow(&name, pfx_length + a_midlen + b_midlen + sfx_length + 7);
921 if (pfx_length + sfx_length) {
922 strbuf_add(&name, a, pfx_length);
923 strbuf_addch(&name, '{');
925 strbuf_add(&name, a + pfx_length, a_midlen);
926 strbuf_addstr(&name, " => ");
927 strbuf_add(&name, b + pfx_length, b_midlen);
928 if (pfx_length + sfx_length) {
929 strbuf_addch(&name, '}');
930 strbuf_add(&name, a + len_a - sfx_length, sfx_length);
932 return strbuf_detach(&name, NULL);
935 struct diffstat_t {
936 int nr;
937 int alloc;
938 struct diffstat_file {
939 char *from_name;
940 char *name;
941 char *print_name;
942 unsigned is_unmerged:1;
943 unsigned is_binary:1;
944 unsigned is_renamed:1;
945 unsigned int added, deleted;
946 } **files;
949 static struct diffstat_file *diffstat_add(struct diffstat_t *diffstat,
950 const char *name_a,
951 const char *name_b)
953 struct diffstat_file *x;
954 x = xcalloc(sizeof (*x), 1);
955 if (diffstat->nr == diffstat->alloc) {
956 diffstat->alloc = alloc_nr(diffstat->alloc);
957 diffstat->files = xrealloc(diffstat->files,
958 diffstat->alloc * sizeof(x));
960 diffstat->files[diffstat->nr++] = x;
961 if (name_b) {
962 x->from_name = xstrdup(name_a);
963 x->name = xstrdup(name_b);
964 x->is_renamed = 1;
966 else {
967 x->from_name = NULL;
968 x->name = xstrdup(name_a);
970 return x;
973 static void diffstat_consume(void *priv, char *line, unsigned long len)
975 struct diffstat_t *diffstat = priv;
976 struct diffstat_file *x = diffstat->files[diffstat->nr - 1];
978 if (line[0] == '+')
979 x->added++;
980 else if (line[0] == '-')
981 x->deleted++;
984 const char mime_boundary_leader[] = "------------";
986 static int scale_linear(int it, int width, int max_change)
989 * make sure that at least one '-' is printed if there were deletions,
990 * and likewise for '+'.
992 if (max_change < 2)
993 return it;
994 return ((it - 1) * (width - 1) + max_change - 1) / (max_change - 1);
997 static void show_name(FILE *file,
998 const char *prefix, const char *name, int len)
1000 fprintf(file, " %s%-*s |", prefix, len, name);
1003 static void show_graph(FILE *file, char ch, int cnt, const char *set, const char *reset)
1005 if (cnt <= 0)
1006 return;
1007 fprintf(file, "%s", set);
1008 while (cnt--)
1009 putc(ch, file);
1010 fprintf(file, "%s", reset);
1013 static void fill_print_name(struct diffstat_file *file)
1015 char *pname;
1017 if (file->print_name)
1018 return;
1020 if (!file->is_renamed) {
1021 struct strbuf buf = STRBUF_INIT;
1022 if (quote_c_style(file->name, &buf, NULL, 0)) {
1023 pname = strbuf_detach(&buf, NULL);
1024 } else {
1025 pname = file->name;
1026 strbuf_release(&buf);
1028 } else {
1029 pname = pprint_rename(file->from_name, file->name);
1031 file->print_name = pname;
1034 static void show_stats(struct diffstat_t *data, struct diff_options *options)
1036 int i, len, add, del, adds = 0, dels = 0;
1037 int max_change = 0, max_len = 0;
1038 int total_files = data->nr;
1039 int width, name_width;
1040 const char *reset, *set, *add_c, *del_c;
1042 if (data->nr == 0)
1043 return;
1045 width = options->stat_width ? options->stat_width : 80;
1046 name_width = options->stat_name_width ? options->stat_name_width : 50;
1048 /* Sanity: give at least 5 columns to the graph,
1049 * but leave at least 10 columns for the name.
1051 if (width < 25)
1052 width = 25;
1053 if (name_width < 10)
1054 name_width = 10;
1055 else if (width < name_width + 15)
1056 name_width = width - 15;
1058 /* Find the longest filename and max number of changes */
1059 reset = diff_get_color_opt(options, DIFF_RESET);
1060 set = diff_get_color_opt(options, DIFF_PLAIN);
1061 add_c = diff_get_color_opt(options, DIFF_FILE_NEW);
1062 del_c = diff_get_color_opt(options, DIFF_FILE_OLD);
1064 for (i = 0; i < data->nr; i++) {
1065 struct diffstat_file *file = data->files[i];
1066 int change = file->added + file->deleted;
1067 fill_print_name(file);
1068 len = strlen(file->print_name);
1069 if (max_len < len)
1070 max_len = len;
1072 if (file->is_binary || file->is_unmerged)
1073 continue;
1074 if (max_change < change)
1075 max_change = change;
1078 /* Compute the width of the graph part;
1079 * 10 is for one blank at the beginning of the line plus
1080 * " | count " between the name and the graph.
1082 * From here on, name_width is the width of the name area,
1083 * and width is the width of the graph area.
1085 name_width = (name_width < max_len) ? name_width : max_len;
1086 if (width < (name_width + 10) + max_change)
1087 width = width - (name_width + 10);
1088 else
1089 width = max_change;
1091 for (i = 0; i < data->nr; i++) {
1092 const char *prefix = "";
1093 char *name = data->files[i]->print_name;
1094 int added = data->files[i]->added;
1095 int deleted = data->files[i]->deleted;
1096 int name_len;
1099 * "scale" the filename
1101 len = name_width;
1102 name_len = strlen(name);
1103 if (name_width < name_len) {
1104 char *slash;
1105 prefix = "...";
1106 len -= 3;
1107 name += name_len - len;
1108 slash = strchr(name, '/');
1109 if (slash)
1110 name = slash;
1113 if (data->files[i]->is_binary) {
1114 show_name(options->file, prefix, name, len);
1115 fprintf(options->file, " Bin ");
1116 fprintf(options->file, "%s%d%s", del_c, deleted, reset);
1117 fprintf(options->file, " -> ");
1118 fprintf(options->file, "%s%d%s", add_c, added, reset);
1119 fprintf(options->file, " bytes");
1120 fprintf(options->file, "\n");
1121 continue;
1123 else if (data->files[i]->is_unmerged) {
1124 show_name(options->file, prefix, name, len);
1125 fprintf(options->file, " Unmerged\n");
1126 continue;
1128 else if (!data->files[i]->is_renamed &&
1129 (added + deleted == 0)) {
1130 total_files--;
1131 continue;
1135 * scale the add/delete
1137 add = added;
1138 del = deleted;
1139 adds += add;
1140 dels += del;
1142 if (width <= max_change) {
1143 add = scale_linear(add, width, max_change);
1144 del = scale_linear(del, width, max_change);
1146 show_name(options->file, prefix, name, len);
1147 fprintf(options->file, "%5d%s", added + deleted,
1148 added + deleted ? " " : "");
1149 show_graph(options->file, '+', add, add_c, reset);
1150 show_graph(options->file, '-', del, del_c, reset);
1151 fprintf(options->file, "\n");
1153 fprintf(options->file,
1154 " %d files changed, %d insertions(+), %d deletions(-)\n",
1155 total_files, adds, dels);
1158 static void show_shortstats(struct diffstat_t *data, struct diff_options *options)
1160 int i, adds = 0, dels = 0, total_files = data->nr;
1162 if (data->nr == 0)
1163 return;
1165 for (i = 0; i < data->nr; i++) {
1166 if (!data->files[i]->is_binary &&
1167 !data->files[i]->is_unmerged) {
1168 int added = data->files[i]->added;
1169 int deleted= data->files[i]->deleted;
1170 if (!data->files[i]->is_renamed &&
1171 (added + deleted == 0)) {
1172 total_files--;
1173 } else {
1174 adds += added;
1175 dels += deleted;
1179 fprintf(options->file, " %d files changed, %d insertions(+), %d deletions(-)\n",
1180 total_files, adds, dels);
1183 static void show_numstat(struct diffstat_t *data, struct diff_options *options)
1185 int i;
1187 if (data->nr == 0)
1188 return;
1190 for (i = 0; i < data->nr; i++) {
1191 struct diffstat_file *file = data->files[i];
1193 if (file->is_binary)
1194 fprintf(options->file, "-\t-\t");
1195 else
1196 fprintf(options->file,
1197 "%d\t%d\t", file->added, file->deleted);
1198 if (options->line_termination) {
1199 fill_print_name(file);
1200 if (!file->is_renamed)
1201 write_name_quoted(file->name, options->file,
1202 options->line_termination);
1203 else {
1204 fputs(file->print_name, options->file);
1205 putc(options->line_termination, options->file);
1207 } else {
1208 if (file->is_renamed) {
1209 putc('\0', options->file);
1210 write_name_quoted(file->from_name, options->file, '\0');
1212 write_name_quoted(file->name, options->file, '\0');
1217 struct dirstat_file {
1218 const char *name;
1219 unsigned long changed;
1222 struct dirstat_dir {
1223 struct dirstat_file *files;
1224 int alloc, nr, percent, cumulative;
1227 static long gather_dirstat(FILE *file, struct dirstat_dir *dir, unsigned long changed, const char *base, int baselen)
1229 unsigned long this_dir = 0;
1230 unsigned int sources = 0;
1232 while (dir->nr) {
1233 struct dirstat_file *f = dir->files;
1234 int namelen = strlen(f->name);
1235 unsigned long this;
1236 char *slash;
1238 if (namelen < baselen)
1239 break;
1240 if (memcmp(f->name, base, baselen))
1241 break;
1242 slash = strchr(f->name + baselen, '/');
1243 if (slash) {
1244 int newbaselen = slash + 1 - f->name;
1245 this = gather_dirstat(file, dir, changed, f->name, newbaselen);
1246 sources++;
1247 } else {
1248 this = f->changed;
1249 dir->files++;
1250 dir->nr--;
1251 sources += 2;
1253 this_dir += this;
1257 * We don't report dirstat's for
1258 * - the top level
1259 * - or cases where everything came from a single directory
1260 * under this directory (sources == 1).
1262 if (baselen && sources != 1) {
1263 int permille = this_dir * 1000 / changed;
1264 if (permille) {
1265 int percent = permille / 10;
1266 if (percent >= dir->percent) {
1267 fprintf(file, "%4d.%01d%% %.*s\n", percent, permille % 10, baselen, base);
1268 if (!dir->cumulative)
1269 return 0;
1273 return this_dir;
1276 static int dirstat_compare(const void *_a, const void *_b)
1278 const struct dirstat_file *a = _a;
1279 const struct dirstat_file *b = _b;
1280 return strcmp(a->name, b->name);
1283 static void show_dirstat(struct diff_options *options)
1285 int i;
1286 unsigned long changed;
1287 struct dirstat_dir dir;
1288 struct diff_queue_struct *q = &diff_queued_diff;
1290 dir.files = NULL;
1291 dir.alloc = 0;
1292 dir.nr = 0;
1293 dir.percent = options->dirstat_percent;
1294 dir.cumulative = DIFF_OPT_TST(options, DIRSTAT_CUMULATIVE);
1296 changed = 0;
1297 for (i = 0; i < q->nr; i++) {
1298 struct diff_filepair *p = q->queue[i];
1299 const char *name;
1300 unsigned long copied, added, damage;
1302 name = p->one->path ? p->one->path : p->two->path;
1304 if (DIFF_FILE_VALID(p->one) && DIFF_FILE_VALID(p->two)) {
1305 diff_populate_filespec(p->one, 0);
1306 diff_populate_filespec(p->two, 0);
1307 diffcore_count_changes(p->one, p->two, NULL, NULL, 0,
1308 &copied, &added);
1309 diff_free_filespec_data(p->one);
1310 diff_free_filespec_data(p->two);
1311 } else if (DIFF_FILE_VALID(p->one)) {
1312 diff_populate_filespec(p->one, 1);
1313 copied = added = 0;
1314 diff_free_filespec_data(p->one);
1315 } else if (DIFF_FILE_VALID(p->two)) {
1316 diff_populate_filespec(p->two, 1);
1317 copied = 0;
1318 added = p->two->size;
1319 diff_free_filespec_data(p->two);
1320 } else
1321 continue;
1324 * Original minus copied is the removed material,
1325 * added is the new material. They are both damages
1326 * made to the preimage. In --dirstat-by-file mode, count
1327 * damaged files, not damaged lines. This is done by
1328 * counting only a single damaged line per file.
1330 damage = (p->one->size - copied) + added;
1331 if (DIFF_OPT_TST(options, DIRSTAT_BY_FILE) && damage > 0)
1332 damage = 1;
1334 ALLOC_GROW(dir.files, dir.nr + 1, dir.alloc);
1335 dir.files[dir.nr].name = name;
1336 dir.files[dir.nr].changed = damage;
1337 changed += damage;
1338 dir.nr++;
1341 /* This can happen even with many files, if everything was renames */
1342 if (!changed)
1343 return;
1345 /* Show all directories with more than x% of the changes */
1346 qsort(dir.files, dir.nr, sizeof(dir.files[0]), dirstat_compare);
1347 gather_dirstat(options->file, &dir, changed, "", 0);
1350 static void free_diffstat_info(struct diffstat_t *diffstat)
1352 int i;
1353 for (i = 0; i < diffstat->nr; i++) {
1354 struct diffstat_file *f = diffstat->files[i];
1355 if (f->name != f->print_name)
1356 free(f->print_name);
1357 free(f->name);
1358 free(f->from_name);
1359 free(f);
1361 free(diffstat->files);
1364 struct checkdiff_t {
1365 const char *filename;
1366 int lineno;
1367 struct diff_options *o;
1368 unsigned ws_rule;
1369 unsigned status;
1372 static int is_conflict_marker(const char *line, unsigned long len)
1374 char firstchar;
1375 int cnt;
1377 if (len < 8)
1378 return 0;
1379 firstchar = line[0];
1380 switch (firstchar) {
1381 case '=': case '>': case '<':
1382 break;
1383 default:
1384 return 0;
1386 for (cnt = 1; cnt < 7; cnt++)
1387 if (line[cnt] != firstchar)
1388 return 0;
1389 /* line[0] thru line[6] are same as firstchar */
1390 if (firstchar == '=') {
1391 /* divider between ours and theirs? */
1392 if (len != 8 || line[7] != '\n')
1393 return 0;
1394 } else if (len < 8 || !isspace(line[7])) {
1395 /* not divider before ours nor after theirs */
1396 return 0;
1398 return 1;
1401 static void checkdiff_consume(void *priv, char *line, unsigned long len)
1403 struct checkdiff_t *data = priv;
1404 int color_diff = DIFF_OPT_TST(data->o, COLOR_DIFF);
1405 const char *ws = diff_get_color(color_diff, DIFF_WHITESPACE);
1406 const char *reset = diff_get_color(color_diff, DIFF_RESET);
1407 const char *set = diff_get_color(color_diff, DIFF_FILE_NEW);
1408 char *err;
1410 if (line[0] == '+') {
1411 unsigned bad;
1412 data->lineno++;
1413 if (is_conflict_marker(line + 1, len - 1)) {
1414 data->status |= 1;
1415 fprintf(data->o->file,
1416 "%s:%d: leftover conflict marker\n",
1417 data->filename, data->lineno);
1419 bad = ws_check(line + 1, len - 1, data->ws_rule);
1420 if (!bad)
1421 return;
1422 data->status |= bad;
1423 err = whitespace_error_string(bad);
1424 fprintf(data->o->file, "%s:%d: %s.\n",
1425 data->filename, data->lineno, err);
1426 free(err);
1427 emit_line(data->o->file, set, reset, line, 1);
1428 ws_check_emit(line + 1, len - 1, data->ws_rule,
1429 data->o->file, set, reset, ws);
1430 } else if (line[0] == ' ') {
1431 data->lineno++;
1432 } else if (line[0] == '@') {
1433 char *plus = strchr(line, '+');
1434 if (plus)
1435 data->lineno = strtol(plus, NULL, 10) - 1;
1436 else
1437 die("invalid diff");
1441 static unsigned char *deflate_it(char *data,
1442 unsigned long size,
1443 unsigned long *result_size)
1445 int bound;
1446 unsigned char *deflated;
1447 z_stream stream;
1449 memset(&stream, 0, sizeof(stream));
1450 deflateInit(&stream, zlib_compression_level);
1451 bound = deflateBound(&stream, size);
1452 deflated = xmalloc(bound);
1453 stream.next_out = deflated;
1454 stream.avail_out = bound;
1456 stream.next_in = (unsigned char *)data;
1457 stream.avail_in = size;
1458 while (deflate(&stream, Z_FINISH) == Z_OK)
1459 ; /* nothing */
1460 deflateEnd(&stream);
1461 *result_size = stream.total_out;
1462 return deflated;
1465 static void emit_binary_diff_body(FILE *file, mmfile_t *one, mmfile_t *two)
1467 void *cp;
1468 void *delta;
1469 void *deflated;
1470 void *data;
1471 unsigned long orig_size;
1472 unsigned long delta_size;
1473 unsigned long deflate_size;
1474 unsigned long data_size;
1476 /* We could do deflated delta, or we could do just deflated two,
1477 * whichever is smaller.
1479 delta = NULL;
1480 deflated = deflate_it(two->ptr, two->size, &deflate_size);
1481 if (one->size && two->size) {
1482 delta = diff_delta(one->ptr, one->size,
1483 two->ptr, two->size,
1484 &delta_size, deflate_size);
1485 if (delta) {
1486 void *to_free = delta;
1487 orig_size = delta_size;
1488 delta = deflate_it(delta, delta_size, &delta_size);
1489 free(to_free);
1493 if (delta && delta_size < deflate_size) {
1494 fprintf(file, "delta %lu\n", orig_size);
1495 free(deflated);
1496 data = delta;
1497 data_size = delta_size;
1499 else {
1500 fprintf(file, "literal %lu\n", two->size);
1501 free(delta);
1502 data = deflated;
1503 data_size = deflate_size;
1506 /* emit data encoded in base85 */
1507 cp = data;
1508 while (data_size) {
1509 int bytes = (52 < data_size) ? 52 : data_size;
1510 char line[70];
1511 data_size -= bytes;
1512 if (bytes <= 26)
1513 line[0] = bytes + 'A' - 1;
1514 else
1515 line[0] = bytes - 26 + 'a' - 1;
1516 encode_85(line + 1, cp, bytes);
1517 cp = (char *) cp + bytes;
1518 fputs(line, file);
1519 fputc('\n', file);
1521 fprintf(file, "\n");
1522 free(data);
1525 static void emit_binary_diff(FILE *file, mmfile_t *one, mmfile_t *two)
1527 fprintf(file, "GIT binary patch\n");
1528 emit_binary_diff_body(file, one, two);
1529 emit_binary_diff_body(file, two, one);
1532 static void diff_filespec_load_driver(struct diff_filespec *one)
1534 if (!one->driver)
1535 one->driver = userdiff_find_by_path(one->path);
1536 if (!one->driver)
1537 one->driver = userdiff_find_by_name("default");
1540 int diff_filespec_is_binary(struct diff_filespec *one)
1542 if (one->is_binary == -1) {
1543 diff_filespec_load_driver(one);
1544 if (one->driver->binary != -1)
1545 one->is_binary = one->driver->binary;
1546 else {
1547 if (!one->data && DIFF_FILE_VALID(one))
1548 diff_populate_filespec(one, 0);
1549 if (one->data)
1550 one->is_binary = buffer_is_binary(one->data,
1551 one->size);
1552 if (one->is_binary == -1)
1553 one->is_binary = 0;
1556 return one->is_binary;
1559 static const struct userdiff_funcname *diff_funcname_pattern(struct diff_filespec *one)
1561 diff_filespec_load_driver(one);
1562 return one->driver->funcname.pattern ? &one->driver->funcname : NULL;
1565 static const char *userdiff_word_regex(struct diff_filespec *one)
1567 diff_filespec_load_driver(one);
1568 return one->driver->word_regex;
1571 void diff_set_mnemonic_prefix(struct diff_options *options, const char *a, const char *b)
1573 if (!options->a_prefix)
1574 options->a_prefix = a;
1575 if (!options->b_prefix)
1576 options->b_prefix = b;
1579 static const char *get_textconv(struct diff_filespec *one)
1581 if (!DIFF_FILE_VALID(one))
1582 return NULL;
1583 if (!S_ISREG(one->mode))
1584 return NULL;
1585 diff_filespec_load_driver(one);
1586 return one->driver->textconv;
1589 static void builtin_diff(const char *name_a,
1590 const char *name_b,
1591 struct diff_filespec *one,
1592 struct diff_filespec *two,
1593 const char *xfrm_msg,
1594 struct diff_options *o,
1595 int complete_rewrite)
1597 mmfile_t mf1, mf2;
1598 const char *lbl[2];
1599 char *a_one, *b_two;
1600 const char *set = diff_get_color_opt(o, DIFF_METAINFO);
1601 const char *reset = diff_get_color_opt(o, DIFF_RESET);
1602 const char *a_prefix, *b_prefix;
1603 const char *textconv_one = NULL, *textconv_two = NULL;
1605 if (DIFF_OPT_TST(o, SUBMODULE_LOG) &&
1606 (!one->mode || S_ISGITLINK(one->mode)) &&
1607 (!two->mode || S_ISGITLINK(two->mode))) {
1608 const char *del = diff_get_color_opt(o, DIFF_FILE_OLD);
1609 const char *add = diff_get_color_opt(o, DIFF_FILE_NEW);
1610 show_submodule_summary(o->file, one ? one->path : two->path,
1611 one->sha1, two->sha1,
1612 del, add, reset);
1613 return;
1616 if (DIFF_OPT_TST(o, ALLOW_TEXTCONV)) {
1617 textconv_one = get_textconv(one);
1618 textconv_two = get_textconv(two);
1621 diff_set_mnemonic_prefix(o, "a/", "b/");
1622 if (DIFF_OPT_TST(o, REVERSE_DIFF)) {
1623 a_prefix = o->b_prefix;
1624 b_prefix = o->a_prefix;
1625 } else {
1626 a_prefix = o->a_prefix;
1627 b_prefix = o->b_prefix;
1630 /* Never use a non-valid filename anywhere if at all possible */
1631 name_a = DIFF_FILE_VALID(one) ? name_a : name_b;
1632 name_b = DIFF_FILE_VALID(two) ? name_b : name_a;
1634 a_one = quote_two(a_prefix, name_a + (*name_a == '/'));
1635 b_two = quote_two(b_prefix, name_b + (*name_b == '/'));
1636 lbl[0] = DIFF_FILE_VALID(one) ? a_one : "/dev/null";
1637 lbl[1] = DIFF_FILE_VALID(two) ? b_two : "/dev/null";
1638 fprintf(o->file, "%sdiff --git %s %s%s\n", set, a_one, b_two, reset);
1639 if (lbl[0][0] == '/') {
1640 /* /dev/null */
1641 fprintf(o->file, "%snew file mode %06o%s\n", set, two->mode, reset);
1642 if (xfrm_msg && xfrm_msg[0])
1643 fprintf(o->file, "%s%s%s\n", set, xfrm_msg, reset);
1645 else if (lbl[1][0] == '/') {
1646 fprintf(o->file, "%sdeleted file mode %06o%s\n", set, one->mode, reset);
1647 if (xfrm_msg && xfrm_msg[0])
1648 fprintf(o->file, "%s%s%s\n", set, xfrm_msg, reset);
1650 else {
1651 if (one->mode != two->mode) {
1652 fprintf(o->file, "%sold mode %06o%s\n", set, one->mode, reset);
1653 fprintf(o->file, "%snew mode %06o%s\n", set, two->mode, reset);
1655 if (xfrm_msg && xfrm_msg[0])
1656 fprintf(o->file, "%s%s%s\n", set, xfrm_msg, reset);
1658 * we do not run diff between different kind
1659 * of objects.
1661 if ((one->mode ^ two->mode) & S_IFMT)
1662 goto free_ab_and_return;
1663 if (complete_rewrite &&
1664 (textconv_one || !diff_filespec_is_binary(one)) &&
1665 (textconv_two || !diff_filespec_is_binary(two))) {
1666 emit_rewrite_diff(name_a, name_b, one, two,
1667 textconv_one, textconv_two, o);
1668 o->found_changes = 1;
1669 goto free_ab_and_return;
1673 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
1674 die("unable to read files to diff");
1676 if (!DIFF_OPT_TST(o, TEXT) &&
1677 ( (diff_filespec_is_binary(one) && !textconv_one) ||
1678 (diff_filespec_is_binary(two) && !textconv_two) )) {
1679 /* Quite common confusing case */
1680 if (mf1.size == mf2.size &&
1681 !memcmp(mf1.ptr, mf2.ptr, mf1.size))
1682 goto free_ab_and_return;
1683 if (DIFF_OPT_TST(o, BINARY))
1684 emit_binary_diff(o->file, &mf1, &mf2);
1685 else
1686 fprintf(o->file, "Binary files %s and %s differ\n",
1687 lbl[0], lbl[1]);
1688 o->found_changes = 1;
1690 else {
1691 /* Crazy xdl interfaces.. */
1692 const char *diffopts = getenv("GIT_DIFF_OPTS");
1693 xpparam_t xpp;
1694 xdemitconf_t xecfg;
1695 xdemitcb_t ecb;
1696 struct emit_callback ecbdata;
1697 const struct userdiff_funcname *pe;
1699 if (textconv_one) {
1700 size_t size;
1701 mf1.ptr = run_textconv(textconv_one, one, &size);
1702 if (!mf1.ptr)
1703 die("unable to read files to diff");
1704 mf1.size = size;
1706 if (textconv_two) {
1707 size_t size;
1708 mf2.ptr = run_textconv(textconv_two, two, &size);
1709 if (!mf2.ptr)
1710 die("unable to read files to diff");
1711 mf2.size = size;
1714 pe = diff_funcname_pattern(one);
1715 if (!pe)
1716 pe = diff_funcname_pattern(two);
1718 memset(&xpp, 0, sizeof(xpp));
1719 memset(&xecfg, 0, sizeof(xecfg));
1720 memset(&ecbdata, 0, sizeof(ecbdata));
1721 ecbdata.label_path = lbl;
1722 ecbdata.color_diff = DIFF_OPT_TST(o, COLOR_DIFF);
1723 ecbdata.found_changesp = &o->found_changes;
1724 ecbdata.ws_rule = whitespace_rule(name_b ? name_b : name_a);
1725 if (ecbdata.ws_rule & WS_BLANK_AT_EOF)
1726 check_blank_at_eof(&mf1, &mf2, &ecbdata);
1727 ecbdata.file = o->file;
1728 xpp.flags = XDF_NEED_MINIMAL | o->xdl_opts;
1729 xecfg.ctxlen = o->context;
1730 xecfg.interhunkctxlen = o->interhunkcontext;
1731 xecfg.flags = XDL_EMIT_FUNCNAMES;
1732 if (pe)
1733 xdiff_set_find_func(&xecfg, pe->pattern, pe->cflags);
1734 if (!diffopts)
1736 else if (!prefixcmp(diffopts, "--unified="))
1737 xecfg.ctxlen = strtoul(diffopts + 10, NULL, 10);
1738 else if (!prefixcmp(diffopts, "-u"))
1739 xecfg.ctxlen = strtoul(diffopts + 2, NULL, 10);
1740 if (DIFF_OPT_TST(o, COLOR_DIFF_WORDS)) {
1741 ecbdata.diff_words =
1742 xcalloc(1, sizeof(struct diff_words_data));
1743 ecbdata.diff_words->file = o->file;
1744 if (!o->word_regex)
1745 o->word_regex = userdiff_word_regex(one);
1746 if (!o->word_regex)
1747 o->word_regex = userdiff_word_regex(two);
1748 if (!o->word_regex)
1749 o->word_regex = diff_word_regex_cfg;
1750 if (o->word_regex) {
1751 ecbdata.diff_words->word_regex = (regex_t *)
1752 xmalloc(sizeof(regex_t));
1753 if (regcomp(ecbdata.diff_words->word_regex,
1754 o->word_regex,
1755 REG_EXTENDED | REG_NEWLINE))
1756 die ("Invalid regular expression: %s",
1757 o->word_regex);
1760 xdi_diff_outf(&mf1, &mf2, fn_out_consume, &ecbdata,
1761 &xpp, &xecfg, &ecb);
1762 if (DIFF_OPT_TST(o, COLOR_DIFF_WORDS))
1763 free_diff_words_data(&ecbdata);
1764 if (textconv_one)
1765 free(mf1.ptr);
1766 if (textconv_two)
1767 free(mf2.ptr);
1768 xdiff_clear_find_func(&xecfg);
1771 free_ab_and_return:
1772 diff_free_filespec_data(one);
1773 diff_free_filespec_data(two);
1774 free(a_one);
1775 free(b_two);
1776 return;
1779 static void builtin_diffstat(const char *name_a, const char *name_b,
1780 struct diff_filespec *one,
1781 struct diff_filespec *two,
1782 struct diffstat_t *diffstat,
1783 struct diff_options *o,
1784 int complete_rewrite)
1786 mmfile_t mf1, mf2;
1787 struct diffstat_file *data;
1789 data = diffstat_add(diffstat, name_a, name_b);
1791 if (!one || !two) {
1792 data->is_unmerged = 1;
1793 return;
1795 if (complete_rewrite) {
1796 diff_populate_filespec(one, 0);
1797 diff_populate_filespec(two, 0);
1798 data->deleted = count_lines(one->data, one->size);
1799 data->added = count_lines(two->data, two->size);
1800 goto free_and_return;
1802 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
1803 die("unable to read files to diff");
1805 if (diff_filespec_is_binary(one) || diff_filespec_is_binary(two)) {
1806 data->is_binary = 1;
1807 data->added = mf2.size;
1808 data->deleted = mf1.size;
1809 } else {
1810 /* Crazy xdl interfaces.. */
1811 xpparam_t xpp;
1812 xdemitconf_t xecfg;
1813 xdemitcb_t ecb;
1815 memset(&xpp, 0, sizeof(xpp));
1816 memset(&xecfg, 0, sizeof(xecfg));
1817 xpp.flags = XDF_NEED_MINIMAL | o->xdl_opts;
1818 xdi_diff_outf(&mf1, &mf2, diffstat_consume, diffstat,
1819 &xpp, &xecfg, &ecb);
1822 free_and_return:
1823 diff_free_filespec_data(one);
1824 diff_free_filespec_data(two);
1827 static void builtin_checkdiff(const char *name_a, const char *name_b,
1828 const char *attr_path,
1829 struct diff_filespec *one,
1830 struct diff_filespec *two,
1831 struct diff_options *o)
1833 mmfile_t mf1, mf2;
1834 struct checkdiff_t data;
1836 if (!two)
1837 return;
1839 memset(&data, 0, sizeof(data));
1840 data.filename = name_b ? name_b : name_a;
1841 data.lineno = 0;
1842 data.o = o;
1843 data.ws_rule = whitespace_rule(attr_path);
1845 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
1846 die("unable to read files to diff");
1849 * All the other codepaths check both sides, but not checking
1850 * the "old" side here is deliberate. We are checking the newly
1851 * introduced changes, and as long as the "new" side is text, we
1852 * can and should check what it introduces.
1854 if (diff_filespec_is_binary(two))
1855 goto free_and_return;
1856 else {
1857 /* Crazy xdl interfaces.. */
1858 xpparam_t xpp;
1859 xdemitconf_t xecfg;
1860 xdemitcb_t ecb;
1862 memset(&xpp, 0, sizeof(xpp));
1863 memset(&xecfg, 0, sizeof(xecfg));
1864 xecfg.ctxlen = 1; /* at least one context line */
1865 xpp.flags = XDF_NEED_MINIMAL;
1866 xdi_diff_outf(&mf1, &mf2, checkdiff_consume, &data,
1867 &xpp, &xecfg, &ecb);
1869 if (data.ws_rule & WS_BLANK_AT_EOF) {
1870 struct emit_callback ecbdata;
1871 int blank_at_eof;
1873 ecbdata.ws_rule = data.ws_rule;
1874 check_blank_at_eof(&mf1, &mf2, &ecbdata);
1875 blank_at_eof = ecbdata.blank_at_eof_in_preimage;
1877 if (blank_at_eof) {
1878 static char *err;
1879 if (!err)
1880 err = whitespace_error_string(WS_BLANK_AT_EOF);
1881 fprintf(o->file, "%s:%d: %s.\n",
1882 data.filename, blank_at_eof, err);
1883 data.status = 1; /* report errors */
1887 free_and_return:
1888 diff_free_filespec_data(one);
1889 diff_free_filespec_data(two);
1890 if (data.status)
1891 DIFF_OPT_SET(o, CHECK_FAILED);
1894 struct diff_filespec *alloc_filespec(const char *path)
1896 int namelen = strlen(path);
1897 struct diff_filespec *spec = xmalloc(sizeof(*spec) + namelen + 1);
1899 memset(spec, 0, sizeof(*spec));
1900 spec->path = (char *)(spec + 1);
1901 memcpy(spec->path, path, namelen+1);
1902 spec->count = 1;
1903 spec->is_binary = -1;
1904 return spec;
1907 void free_filespec(struct diff_filespec *spec)
1909 if (!--spec->count) {
1910 diff_free_filespec_data(spec);
1911 free(spec);
1915 void fill_filespec(struct diff_filespec *spec, const unsigned char *sha1,
1916 unsigned short mode)
1918 if (mode) {
1919 spec->mode = canon_mode(mode);
1920 hashcpy(spec->sha1, sha1);
1921 spec->sha1_valid = !is_null_sha1(sha1);
1926 * Given a name and sha1 pair, if the index tells us the file in
1927 * the work tree has that object contents, return true, so that
1928 * prepare_temp_file() does not have to inflate and extract.
1930 static int reuse_worktree_file(const char *name, const unsigned char *sha1, int want_file)
1932 struct cache_entry *ce;
1933 struct stat st;
1934 int pos, len;
1937 * We do not read the cache ourselves here, because the
1938 * benchmark with my previous version that always reads cache
1939 * shows that it makes things worse for diff-tree comparing
1940 * two linux-2.6 kernel trees in an already checked out work
1941 * tree. This is because most diff-tree comparisons deal with
1942 * only a small number of files, while reading the cache is
1943 * expensive for a large project, and its cost outweighs the
1944 * savings we get by not inflating the object to a temporary
1945 * file. Practically, this code only helps when we are used
1946 * by diff-cache --cached, which does read the cache before
1947 * calling us.
1949 if (!active_cache)
1950 return 0;
1952 /* We want to avoid the working directory if our caller
1953 * doesn't need the data in a normal file, this system
1954 * is rather slow with its stat/open/mmap/close syscalls,
1955 * and the object is contained in a pack file. The pack
1956 * is probably already open and will be faster to obtain
1957 * the data through than the working directory. Loose
1958 * objects however would tend to be slower as they need
1959 * to be individually opened and inflated.
1961 if (!FAST_WORKING_DIRECTORY && !want_file && has_sha1_pack(sha1))
1962 return 0;
1964 len = strlen(name);
1965 pos = cache_name_pos(name, len);
1966 if (pos < 0)
1967 return 0;
1968 ce = active_cache[pos];
1971 * This is not the sha1 we are looking for, or
1972 * unreusable because it is not a regular file.
1974 if (hashcmp(sha1, ce->sha1) || !S_ISREG(ce->ce_mode))
1975 return 0;
1978 * If ce is marked as "assume unchanged", there is no
1979 * guarantee that work tree matches what we are looking for.
1981 if (ce->ce_flags & CE_VALID)
1982 return 0;
1985 * If ce matches the file in the work tree, we can reuse it.
1987 if (ce_uptodate(ce) ||
1988 (!lstat(name, &st) && !ce_match_stat(ce, &st, 0)))
1989 return 1;
1991 return 0;
1994 static int populate_from_stdin(struct diff_filespec *s)
1996 struct strbuf buf = STRBUF_INIT;
1997 size_t size = 0;
1999 if (strbuf_read(&buf, 0, 0) < 0)
2000 return error("error while reading from stdin %s",
2001 strerror(errno));
2003 s->should_munmap = 0;
2004 s->data = strbuf_detach(&buf, &size);
2005 s->size = size;
2006 s->should_free = 1;
2007 return 0;
2010 static int diff_populate_gitlink(struct diff_filespec *s, int size_only)
2012 int len;
2013 char *data = xmalloc(100);
2014 len = snprintf(data, 100,
2015 "Subproject commit %s\n", sha1_to_hex(s->sha1));
2016 s->data = data;
2017 s->size = len;
2018 s->should_free = 1;
2019 if (size_only) {
2020 s->data = NULL;
2021 free(data);
2023 return 0;
2027 * While doing rename detection and pickaxe operation, we may need to
2028 * grab the data for the blob (or file) for our own in-core comparison.
2029 * diff_filespec has data and size fields for this purpose.
2031 int diff_populate_filespec(struct diff_filespec *s, int size_only)
2033 int err = 0;
2034 if (!DIFF_FILE_VALID(s))
2035 die("internal error: asking to populate invalid file.");
2036 if (S_ISDIR(s->mode))
2037 return -1;
2039 if (s->data)
2040 return 0;
2042 if (size_only && 0 < s->size)
2043 return 0;
2045 if (S_ISGITLINK(s->mode))
2046 return diff_populate_gitlink(s, size_only);
2048 if (!s->sha1_valid ||
2049 reuse_worktree_file(s->path, s->sha1, 0)) {
2050 struct strbuf buf = STRBUF_INIT;
2051 struct stat st;
2052 int fd;
2054 if (!strcmp(s->path, "-"))
2055 return populate_from_stdin(s);
2057 if (lstat(s->path, &st) < 0) {
2058 if (errno == ENOENT) {
2059 err_empty:
2060 err = -1;
2061 empty:
2062 s->data = (char *)"";
2063 s->size = 0;
2064 return err;
2067 s->size = xsize_t(st.st_size);
2068 if (!s->size)
2069 goto empty;
2070 if (S_ISLNK(st.st_mode)) {
2071 struct strbuf sb = STRBUF_INIT;
2073 if (strbuf_readlink(&sb, s->path, s->size))
2074 goto err_empty;
2075 s->size = sb.len;
2076 s->data = strbuf_detach(&sb, NULL);
2077 s->should_free = 1;
2078 return 0;
2080 if (size_only)
2081 return 0;
2082 fd = open(s->path, O_RDONLY);
2083 if (fd < 0)
2084 goto err_empty;
2085 s->data = xmmap(NULL, s->size, PROT_READ, MAP_PRIVATE, fd, 0);
2086 close(fd);
2087 s->should_munmap = 1;
2090 * Convert from working tree format to canonical git format
2092 if (convert_to_git(s->path, s->data, s->size, &buf, safe_crlf)) {
2093 size_t size = 0;
2094 munmap(s->data, s->size);
2095 s->should_munmap = 0;
2096 s->data = strbuf_detach(&buf, &size);
2097 s->size = size;
2098 s->should_free = 1;
2101 else {
2102 enum object_type type;
2103 if (size_only)
2104 type = sha1_object_info(s->sha1, &s->size);
2105 else {
2106 s->data = read_sha1_file(s->sha1, &type, &s->size);
2107 s->should_free = 1;
2110 return 0;
2113 void diff_free_filespec_blob(struct diff_filespec *s)
2115 if (s->should_free)
2116 free(s->data);
2117 else if (s->should_munmap)
2118 munmap(s->data, s->size);
2120 if (s->should_free || s->should_munmap) {
2121 s->should_free = s->should_munmap = 0;
2122 s->data = NULL;
2126 void diff_free_filespec_data(struct diff_filespec *s)
2128 diff_free_filespec_blob(s);
2129 free(s->cnt_data);
2130 s->cnt_data = NULL;
2133 static void prep_temp_blob(const char *path, struct diff_tempfile *temp,
2134 void *blob,
2135 unsigned long size,
2136 const unsigned char *sha1,
2137 int mode)
2139 int fd;
2140 struct strbuf buf = STRBUF_INIT;
2141 struct strbuf template = STRBUF_INIT;
2142 char *path_dup = xstrdup(path);
2143 const char *base = basename(path_dup);
2145 /* Generate "XXXXXX_basename.ext" */
2146 strbuf_addstr(&template, "XXXXXX_");
2147 strbuf_addstr(&template, base);
2149 fd = git_mkstemps(temp->tmp_path, PATH_MAX, template.buf,
2150 strlen(base) + 1);
2151 if (fd < 0)
2152 die_errno("unable to create temp-file");
2153 if (convert_to_working_tree(path,
2154 (const char *)blob, (size_t)size, &buf)) {
2155 blob = buf.buf;
2156 size = buf.len;
2158 if (write_in_full(fd, blob, size) != size)
2159 die_errno("unable to write temp-file");
2160 close(fd);
2161 temp->name = temp->tmp_path;
2162 strcpy(temp->hex, sha1_to_hex(sha1));
2163 temp->hex[40] = 0;
2164 sprintf(temp->mode, "%06o", mode);
2165 strbuf_release(&buf);
2166 strbuf_release(&template);
2167 free(path_dup);
2170 static struct diff_tempfile *prepare_temp_file(const char *name,
2171 struct diff_filespec *one)
2173 struct diff_tempfile *temp = claim_diff_tempfile();
2175 if (!DIFF_FILE_VALID(one)) {
2176 not_a_valid_file:
2177 /* A '-' entry produces this for file-2, and
2178 * a '+' entry produces this for file-1.
2180 temp->name = "/dev/null";
2181 strcpy(temp->hex, ".");
2182 strcpy(temp->mode, ".");
2183 return temp;
2186 if (!remove_tempfile_installed) {
2187 atexit(remove_tempfile);
2188 sigchain_push_common(remove_tempfile_on_signal);
2189 remove_tempfile_installed = 1;
2192 if (!one->sha1_valid ||
2193 reuse_worktree_file(name, one->sha1, 1)) {
2194 struct stat st;
2195 if (lstat(name, &st) < 0) {
2196 if (errno == ENOENT)
2197 goto not_a_valid_file;
2198 die_errno("stat(%s)", name);
2200 if (S_ISLNK(st.st_mode)) {
2201 struct strbuf sb = STRBUF_INIT;
2202 if (strbuf_readlink(&sb, name, st.st_size) < 0)
2203 die_errno("readlink(%s)", name);
2204 prep_temp_blob(name, temp, sb.buf, sb.len,
2205 (one->sha1_valid ?
2206 one->sha1 : null_sha1),
2207 (one->sha1_valid ?
2208 one->mode : S_IFLNK));
2209 strbuf_release(&sb);
2211 else {
2212 /* we can borrow from the file in the work tree */
2213 temp->name = name;
2214 if (!one->sha1_valid)
2215 strcpy(temp->hex, sha1_to_hex(null_sha1));
2216 else
2217 strcpy(temp->hex, sha1_to_hex(one->sha1));
2218 /* Even though we may sometimes borrow the
2219 * contents from the work tree, we always want
2220 * one->mode. mode is trustworthy even when
2221 * !(one->sha1_valid), as long as
2222 * DIFF_FILE_VALID(one).
2224 sprintf(temp->mode, "%06o", one->mode);
2226 return temp;
2228 else {
2229 if (diff_populate_filespec(one, 0))
2230 die("cannot read data blob for %s", one->path);
2231 prep_temp_blob(name, temp, one->data, one->size,
2232 one->sha1, one->mode);
2234 return temp;
2237 /* An external diff command takes:
2239 * diff-cmd name infile1 infile1-sha1 infile1-mode \
2240 * infile2 infile2-sha1 infile2-mode [ rename-to ]
2243 static void run_external_diff(const char *pgm,
2244 const char *name,
2245 const char *other,
2246 struct diff_filespec *one,
2247 struct diff_filespec *two,
2248 const char *xfrm_msg,
2249 int complete_rewrite)
2251 const char *spawn_arg[10];
2252 int retval;
2253 const char **arg = &spawn_arg[0];
2255 if (one && two) {
2256 struct diff_tempfile *temp_one, *temp_two;
2257 const char *othername = (other ? other : name);
2258 temp_one = prepare_temp_file(name, one);
2259 temp_two = prepare_temp_file(othername, two);
2260 *arg++ = pgm;
2261 *arg++ = name;
2262 *arg++ = temp_one->name;
2263 *arg++ = temp_one->hex;
2264 *arg++ = temp_one->mode;
2265 *arg++ = temp_two->name;
2266 *arg++ = temp_two->hex;
2267 *arg++ = temp_two->mode;
2268 if (other) {
2269 *arg++ = other;
2270 *arg++ = xfrm_msg;
2272 } else {
2273 *arg++ = pgm;
2274 *arg++ = name;
2276 *arg = NULL;
2277 fflush(NULL);
2278 retval = run_command_v_opt(spawn_arg, 0);
2279 remove_tempfile();
2280 if (retval) {
2281 fprintf(stderr, "external diff died, stopping at %s.\n", name);
2282 exit(1);
2286 static int similarity_index(struct diff_filepair *p)
2288 return p->score * 100 / MAX_SCORE;
2291 static void fill_metainfo(struct strbuf *msg,
2292 const char *name,
2293 const char *other,
2294 struct diff_filespec *one,
2295 struct diff_filespec *two,
2296 struct diff_options *o,
2297 struct diff_filepair *p)
2299 strbuf_init(msg, PATH_MAX * 2 + 300);
2300 switch (p->status) {
2301 case DIFF_STATUS_COPIED:
2302 strbuf_addf(msg, "similarity index %d%%", similarity_index(p));
2303 strbuf_addstr(msg, "\ncopy from ");
2304 quote_c_style(name, msg, NULL, 0);
2305 strbuf_addstr(msg, "\ncopy to ");
2306 quote_c_style(other, msg, NULL, 0);
2307 strbuf_addch(msg, '\n');
2308 break;
2309 case DIFF_STATUS_RENAMED:
2310 strbuf_addf(msg, "similarity index %d%%", similarity_index(p));
2311 strbuf_addstr(msg, "\nrename from ");
2312 quote_c_style(name, msg, NULL, 0);
2313 strbuf_addstr(msg, "\nrename to ");
2314 quote_c_style(other, msg, NULL, 0);
2315 strbuf_addch(msg, '\n');
2316 break;
2317 case DIFF_STATUS_MODIFIED:
2318 if (p->score) {
2319 strbuf_addf(msg, "dissimilarity index %d%%\n",
2320 similarity_index(p));
2321 break;
2323 /* fallthru */
2324 default:
2325 /* nothing */
2328 if (one && two && hashcmp(one->sha1, two->sha1)) {
2329 int abbrev = DIFF_OPT_TST(o, FULL_INDEX) ? 40 : DEFAULT_ABBREV;
2331 if (DIFF_OPT_TST(o, BINARY)) {
2332 mmfile_t mf;
2333 if ((!fill_mmfile(&mf, one) && diff_filespec_is_binary(one)) ||
2334 (!fill_mmfile(&mf, two) && diff_filespec_is_binary(two)))
2335 abbrev = 40;
2337 strbuf_addf(msg, "index %.*s..%.*s",
2338 abbrev, sha1_to_hex(one->sha1),
2339 abbrev, sha1_to_hex(two->sha1));
2340 if (one->mode == two->mode)
2341 strbuf_addf(msg, " %06o", one->mode);
2342 strbuf_addch(msg, '\n');
2344 if (msg->len)
2345 strbuf_setlen(msg, msg->len - 1);
2348 static void run_diff_cmd(const char *pgm,
2349 const char *name,
2350 const char *other,
2351 const char *attr_path,
2352 struct diff_filespec *one,
2353 struct diff_filespec *two,
2354 struct strbuf *msg,
2355 struct diff_options *o,
2356 struct diff_filepair *p)
2358 const char *xfrm_msg = NULL;
2359 int complete_rewrite = (p->status == DIFF_STATUS_MODIFIED) && p->score;
2361 if (msg) {
2362 fill_metainfo(msg, name, other, one, two, o, p);
2363 xfrm_msg = msg->len ? msg->buf : NULL;
2366 if (!DIFF_OPT_TST(o, ALLOW_EXTERNAL))
2367 pgm = NULL;
2368 else {
2369 struct userdiff_driver *drv = userdiff_find_by_path(attr_path);
2370 if (drv && drv->external)
2371 pgm = drv->external;
2374 if (pgm) {
2375 run_external_diff(pgm, name, other, one, two, xfrm_msg,
2376 complete_rewrite);
2377 return;
2379 if (one && two)
2380 builtin_diff(name, other ? other : name,
2381 one, two, xfrm_msg, o, complete_rewrite);
2382 else
2383 fprintf(o->file, "* Unmerged path %s\n", name);
2386 static void diff_fill_sha1_info(struct diff_filespec *one)
2388 if (DIFF_FILE_VALID(one)) {
2389 if (!one->sha1_valid) {
2390 struct stat st;
2391 if (!strcmp(one->path, "-")) {
2392 hashcpy(one->sha1, null_sha1);
2393 return;
2395 if (lstat(one->path, &st) < 0)
2396 die_errno("stat '%s'", one->path);
2397 if (index_path(one->sha1, one->path, &st, 0))
2398 die("cannot hash %s", one->path);
2401 else
2402 hashclr(one->sha1);
2405 static void strip_prefix(int prefix_length, const char **namep, const char **otherp)
2407 /* Strip the prefix but do not molest /dev/null and absolute paths */
2408 if (*namep && **namep != '/')
2409 *namep += prefix_length;
2410 if (*otherp && **otherp != '/')
2411 *otherp += prefix_length;
2414 static void run_diff(struct diff_filepair *p, struct diff_options *o)
2416 const char *pgm = external_diff();
2417 struct strbuf msg;
2418 struct diff_filespec *one = p->one;
2419 struct diff_filespec *two = p->two;
2420 const char *name;
2421 const char *other;
2422 const char *attr_path;
2424 name = p->one->path;
2425 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
2426 attr_path = name;
2427 if (o->prefix_length)
2428 strip_prefix(o->prefix_length, &name, &other);
2430 if (DIFF_PAIR_UNMERGED(p)) {
2431 run_diff_cmd(pgm, name, NULL, attr_path,
2432 NULL, NULL, NULL, o, p);
2433 return;
2436 diff_fill_sha1_info(one);
2437 diff_fill_sha1_info(two);
2439 if (!pgm &&
2440 DIFF_FILE_VALID(one) && DIFF_FILE_VALID(two) &&
2441 (S_IFMT & one->mode) != (S_IFMT & two->mode)) {
2443 * a filepair that changes between file and symlink
2444 * needs to be split into deletion and creation.
2446 struct diff_filespec *null = alloc_filespec(two->path);
2447 run_diff_cmd(NULL, name, other, attr_path,
2448 one, null, &msg, o, p);
2449 free(null);
2450 strbuf_release(&msg);
2452 null = alloc_filespec(one->path);
2453 run_diff_cmd(NULL, name, other, attr_path,
2454 null, two, &msg, o, p);
2455 free(null);
2457 else
2458 run_diff_cmd(pgm, name, other, attr_path,
2459 one, two, &msg, o, p);
2461 strbuf_release(&msg);
2464 static void run_diffstat(struct diff_filepair *p, struct diff_options *o,
2465 struct diffstat_t *diffstat)
2467 const char *name;
2468 const char *other;
2469 int complete_rewrite = 0;
2471 if (DIFF_PAIR_UNMERGED(p)) {
2472 /* unmerged */
2473 builtin_diffstat(p->one->path, NULL, NULL, NULL, diffstat, o, 0);
2474 return;
2477 name = p->one->path;
2478 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
2480 if (o->prefix_length)
2481 strip_prefix(o->prefix_length, &name, &other);
2483 diff_fill_sha1_info(p->one);
2484 diff_fill_sha1_info(p->two);
2486 if (p->status == DIFF_STATUS_MODIFIED && p->score)
2487 complete_rewrite = 1;
2488 builtin_diffstat(name, other, p->one, p->two, diffstat, o, complete_rewrite);
2491 static void run_checkdiff(struct diff_filepair *p, struct diff_options *o)
2493 const char *name;
2494 const char *other;
2495 const char *attr_path;
2497 if (DIFF_PAIR_UNMERGED(p)) {
2498 /* unmerged */
2499 return;
2502 name = p->one->path;
2503 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
2504 attr_path = other ? other : name;
2506 if (o->prefix_length)
2507 strip_prefix(o->prefix_length, &name, &other);
2509 diff_fill_sha1_info(p->one);
2510 diff_fill_sha1_info(p->two);
2512 builtin_checkdiff(name, other, attr_path, p->one, p->two, o);
2515 void diff_setup(struct diff_options *options)
2517 memset(options, 0, sizeof(*options));
2519 options->file = stdout;
2521 options->line_termination = '\n';
2522 options->break_opt = -1;
2523 options->rename_limit = -1;
2524 options->dirstat_percent = 3;
2525 options->context = 3;
2527 options->change = diff_change;
2528 options->add_remove = diff_addremove;
2529 if (diff_use_color_default > 0)
2530 DIFF_OPT_SET(options, COLOR_DIFF);
2531 options->detect_rename = diff_detect_rename_default;
2533 if (!diff_mnemonic_prefix) {
2534 options->a_prefix = "a/";
2535 options->b_prefix = "b/";
2539 int diff_setup_done(struct diff_options *options)
2541 int count = 0;
2543 if (options->output_format & DIFF_FORMAT_NAME)
2544 count++;
2545 if (options->output_format & DIFF_FORMAT_NAME_STATUS)
2546 count++;
2547 if (options->output_format & DIFF_FORMAT_CHECKDIFF)
2548 count++;
2549 if (options->output_format & DIFF_FORMAT_NO_OUTPUT)
2550 count++;
2551 if (count > 1)
2552 die("--name-only, --name-status, --check and -s are mutually exclusive");
2555 * Most of the time we can say "there are changes"
2556 * only by checking if there are changed paths, but
2557 * --ignore-whitespace* options force us to look
2558 * inside contents.
2561 if (DIFF_XDL_TST(options, IGNORE_WHITESPACE) ||
2562 DIFF_XDL_TST(options, IGNORE_WHITESPACE_CHANGE) ||
2563 DIFF_XDL_TST(options, IGNORE_WHITESPACE_AT_EOL))
2564 DIFF_OPT_SET(options, DIFF_FROM_CONTENTS);
2565 else
2566 DIFF_OPT_CLR(options, DIFF_FROM_CONTENTS);
2568 if (DIFF_OPT_TST(options, FIND_COPIES_HARDER))
2569 options->detect_rename = DIFF_DETECT_COPY;
2571 if (!DIFF_OPT_TST(options, RELATIVE_NAME))
2572 options->prefix = NULL;
2573 if (options->prefix)
2574 options->prefix_length = strlen(options->prefix);
2575 else
2576 options->prefix_length = 0;
2578 if (options->output_format & (DIFF_FORMAT_NAME |
2579 DIFF_FORMAT_NAME_STATUS |
2580 DIFF_FORMAT_CHECKDIFF |
2581 DIFF_FORMAT_NO_OUTPUT))
2582 options->output_format &= ~(DIFF_FORMAT_RAW |
2583 DIFF_FORMAT_NUMSTAT |
2584 DIFF_FORMAT_DIFFSTAT |
2585 DIFF_FORMAT_SHORTSTAT |
2586 DIFF_FORMAT_DIRSTAT |
2587 DIFF_FORMAT_SUMMARY |
2588 DIFF_FORMAT_PATCH);
2591 * These cases always need recursive; we do not drop caller-supplied
2592 * recursive bits for other formats here.
2594 if (options->output_format & (DIFF_FORMAT_PATCH |
2595 DIFF_FORMAT_NUMSTAT |
2596 DIFF_FORMAT_DIFFSTAT |
2597 DIFF_FORMAT_SHORTSTAT |
2598 DIFF_FORMAT_DIRSTAT |
2599 DIFF_FORMAT_SUMMARY |
2600 DIFF_FORMAT_CHECKDIFF))
2601 DIFF_OPT_SET(options, RECURSIVE);
2603 * Also pickaxe would not work very well if you do not say recursive
2605 if (options->pickaxe)
2606 DIFF_OPT_SET(options, RECURSIVE);
2608 if (options->detect_rename && options->rename_limit < 0)
2609 options->rename_limit = diff_rename_limit_default;
2610 if (options->setup & DIFF_SETUP_USE_CACHE) {
2611 if (!active_cache)
2612 /* read-cache does not die even when it fails
2613 * so it is safe for us to do this here. Also
2614 * it does not smudge active_cache or active_nr
2615 * when it fails, so we do not have to worry about
2616 * cleaning it up ourselves either.
2618 read_cache();
2620 if (options->abbrev <= 0 || 40 < options->abbrev)
2621 options->abbrev = 40; /* full */
2624 * It does not make sense to show the first hit we happened
2625 * to have found. It does not make sense not to return with
2626 * exit code in such a case either.
2628 if (DIFF_OPT_TST(options, QUICK)) {
2629 options->output_format = DIFF_FORMAT_NO_OUTPUT;
2630 DIFF_OPT_SET(options, EXIT_WITH_STATUS);
2633 return 0;
2636 static int opt_arg(const char *arg, int arg_short, const char *arg_long, int *val)
2638 char c, *eq;
2639 int len;
2641 if (*arg != '-')
2642 return 0;
2643 c = *++arg;
2644 if (!c)
2645 return 0;
2646 if (c == arg_short) {
2647 c = *++arg;
2648 if (!c)
2649 return 1;
2650 if (val && isdigit(c)) {
2651 char *end;
2652 int n = strtoul(arg, &end, 10);
2653 if (*end)
2654 return 0;
2655 *val = n;
2656 return 1;
2658 return 0;
2660 if (c != '-')
2661 return 0;
2662 arg++;
2663 eq = strchr(arg, '=');
2664 if (eq)
2665 len = eq - arg;
2666 else
2667 len = strlen(arg);
2668 if (!len || strncmp(arg, arg_long, len))
2669 return 0;
2670 if (eq) {
2671 int n;
2672 char *end;
2673 if (!isdigit(*++eq))
2674 return 0;
2675 n = strtoul(eq, &end, 10);
2676 if (*end)
2677 return 0;
2678 *val = n;
2680 return 1;
2683 static int diff_scoreopt_parse(const char *opt);
2685 int diff_opt_parse(struct diff_options *options, const char **av, int ac)
2687 const char *arg = av[0];
2689 /* Output format options */
2690 if (!strcmp(arg, "-p") || !strcmp(arg, "-u"))
2691 options->output_format |= DIFF_FORMAT_PATCH;
2692 else if (opt_arg(arg, 'U', "unified", &options->context))
2693 options->output_format |= DIFF_FORMAT_PATCH;
2694 else if (!strcmp(arg, "--raw"))
2695 options->output_format |= DIFF_FORMAT_RAW;
2696 else if (!strcmp(arg, "--patch-with-raw"))
2697 options->output_format |= DIFF_FORMAT_PATCH | DIFF_FORMAT_RAW;
2698 else if (!strcmp(arg, "--numstat"))
2699 options->output_format |= DIFF_FORMAT_NUMSTAT;
2700 else if (!strcmp(arg, "--shortstat"))
2701 options->output_format |= DIFF_FORMAT_SHORTSTAT;
2702 else if (opt_arg(arg, 'X', "dirstat", &options->dirstat_percent))
2703 options->output_format |= DIFF_FORMAT_DIRSTAT;
2704 else if (!strcmp(arg, "--cumulative")) {
2705 options->output_format |= DIFF_FORMAT_DIRSTAT;
2706 DIFF_OPT_SET(options, DIRSTAT_CUMULATIVE);
2707 } else if (opt_arg(arg, 0, "dirstat-by-file",
2708 &options->dirstat_percent)) {
2709 options->output_format |= DIFF_FORMAT_DIRSTAT;
2710 DIFF_OPT_SET(options, DIRSTAT_BY_FILE);
2712 else if (!strcmp(arg, "--check"))
2713 options->output_format |= DIFF_FORMAT_CHECKDIFF;
2714 else if (!strcmp(arg, "--summary"))
2715 options->output_format |= DIFF_FORMAT_SUMMARY;
2716 else if (!strcmp(arg, "--patch-with-stat"))
2717 options->output_format |= DIFF_FORMAT_PATCH | DIFF_FORMAT_DIFFSTAT;
2718 else if (!strcmp(arg, "--name-only"))
2719 options->output_format |= DIFF_FORMAT_NAME;
2720 else if (!strcmp(arg, "--name-status"))
2721 options->output_format |= DIFF_FORMAT_NAME_STATUS;
2722 else if (!strcmp(arg, "-s"))
2723 options->output_format |= DIFF_FORMAT_NO_OUTPUT;
2724 else if (!prefixcmp(arg, "--stat")) {
2725 char *end;
2726 int width = options->stat_width;
2727 int name_width = options->stat_name_width;
2728 arg += 6;
2729 end = (char *)arg;
2731 switch (*arg) {
2732 case '-':
2733 if (!prefixcmp(arg, "-width="))
2734 width = strtoul(arg + 7, &end, 10);
2735 else if (!prefixcmp(arg, "-name-width="))
2736 name_width = strtoul(arg + 12, &end, 10);
2737 break;
2738 case '=':
2739 width = strtoul(arg+1, &end, 10);
2740 if (*end == ',')
2741 name_width = strtoul(end+1, &end, 10);
2744 /* Important! This checks all the error cases! */
2745 if (*end)
2746 return 0;
2747 options->output_format |= DIFF_FORMAT_DIFFSTAT;
2748 options->stat_name_width = name_width;
2749 options->stat_width = width;
2752 /* renames options */
2753 else if (!prefixcmp(arg, "-B")) {
2754 if ((options->break_opt = diff_scoreopt_parse(arg)) == -1)
2755 return -1;
2757 else if (!prefixcmp(arg, "-M")) {
2758 if ((options->rename_score = diff_scoreopt_parse(arg)) == -1)
2759 return -1;
2760 options->detect_rename = DIFF_DETECT_RENAME;
2762 else if (!prefixcmp(arg, "-C")) {
2763 if (options->detect_rename == DIFF_DETECT_COPY)
2764 DIFF_OPT_SET(options, FIND_COPIES_HARDER);
2765 if ((options->rename_score = diff_scoreopt_parse(arg)) == -1)
2766 return -1;
2767 options->detect_rename = DIFF_DETECT_COPY;
2769 else if (!strcmp(arg, "--no-renames"))
2770 options->detect_rename = 0;
2771 else if (!strcmp(arg, "--relative"))
2772 DIFF_OPT_SET(options, RELATIVE_NAME);
2773 else if (!prefixcmp(arg, "--relative=")) {
2774 DIFF_OPT_SET(options, RELATIVE_NAME);
2775 options->prefix = arg + 11;
2778 /* xdiff options */
2779 else if (!strcmp(arg, "-w") || !strcmp(arg, "--ignore-all-space"))
2780 DIFF_XDL_SET(options, IGNORE_WHITESPACE);
2781 else if (!strcmp(arg, "-b") || !strcmp(arg, "--ignore-space-change"))
2782 DIFF_XDL_SET(options, IGNORE_WHITESPACE_CHANGE);
2783 else if (!strcmp(arg, "--ignore-space-at-eol"))
2784 DIFF_XDL_SET(options, IGNORE_WHITESPACE_AT_EOL);
2785 else if (!strcmp(arg, "--patience"))
2786 DIFF_XDL_SET(options, PATIENCE_DIFF);
2788 /* flags options */
2789 else if (!strcmp(arg, "--binary")) {
2790 options->output_format |= DIFF_FORMAT_PATCH;
2791 DIFF_OPT_SET(options, BINARY);
2793 else if (!strcmp(arg, "--full-index"))
2794 DIFF_OPT_SET(options, FULL_INDEX);
2795 else if (!strcmp(arg, "-a") || !strcmp(arg, "--text"))
2796 DIFF_OPT_SET(options, TEXT);
2797 else if (!strcmp(arg, "-R"))
2798 DIFF_OPT_SET(options, REVERSE_DIFF);
2799 else if (!strcmp(arg, "--find-copies-harder"))
2800 DIFF_OPT_SET(options, FIND_COPIES_HARDER);
2801 else if (!strcmp(arg, "--follow"))
2802 DIFF_OPT_SET(options, FOLLOW_RENAMES);
2803 else if (!strcmp(arg, "--color"))
2804 DIFF_OPT_SET(options, COLOR_DIFF);
2805 else if (!strcmp(arg, "--no-color"))
2806 DIFF_OPT_CLR(options, COLOR_DIFF);
2807 else if (!strcmp(arg, "--color-words")) {
2808 DIFF_OPT_SET(options, COLOR_DIFF);
2809 DIFF_OPT_SET(options, COLOR_DIFF_WORDS);
2811 else if (!prefixcmp(arg, "--color-words=")) {
2812 DIFF_OPT_SET(options, COLOR_DIFF);
2813 DIFF_OPT_SET(options, COLOR_DIFF_WORDS);
2814 options->word_regex = arg + 14;
2816 else if (!strcmp(arg, "--exit-code"))
2817 DIFF_OPT_SET(options, EXIT_WITH_STATUS);
2818 else if (!strcmp(arg, "--quiet"))
2819 DIFF_OPT_SET(options, QUICK);
2820 else if (!strcmp(arg, "--ext-diff"))
2821 DIFF_OPT_SET(options, ALLOW_EXTERNAL);
2822 else if (!strcmp(arg, "--no-ext-diff"))
2823 DIFF_OPT_CLR(options, ALLOW_EXTERNAL);
2824 else if (!strcmp(arg, "--textconv"))
2825 DIFF_OPT_SET(options, ALLOW_TEXTCONV);
2826 else if (!strcmp(arg, "--no-textconv"))
2827 DIFF_OPT_CLR(options, ALLOW_TEXTCONV);
2828 else if (!strcmp(arg, "--ignore-submodules"))
2829 DIFF_OPT_SET(options, IGNORE_SUBMODULES);
2830 else if (!strcmp(arg, "--submodule"))
2831 DIFF_OPT_SET(options, SUBMODULE_LOG);
2832 else if (!prefixcmp(arg, "--submodule=")) {
2833 if (!strcmp(arg + 12, "log"))
2834 DIFF_OPT_SET(options, SUBMODULE_LOG);
2837 /* misc options */
2838 else if (!strcmp(arg, "-z"))
2839 options->line_termination = 0;
2840 else if (!prefixcmp(arg, "-l"))
2841 options->rename_limit = strtoul(arg+2, NULL, 10);
2842 else if (!prefixcmp(arg, "-S"))
2843 options->pickaxe = arg + 2;
2844 else if (!strcmp(arg, "--pickaxe-all"))
2845 options->pickaxe_opts = DIFF_PICKAXE_ALL;
2846 else if (!strcmp(arg, "--pickaxe-regex"))
2847 options->pickaxe_opts = DIFF_PICKAXE_REGEX;
2848 else if (!prefixcmp(arg, "-O"))
2849 options->orderfile = arg + 2;
2850 else if (!prefixcmp(arg, "--diff-filter="))
2851 options->filter = arg + 14;
2852 else if (!strcmp(arg, "--abbrev"))
2853 options->abbrev = DEFAULT_ABBREV;
2854 else if (!prefixcmp(arg, "--abbrev=")) {
2855 options->abbrev = strtoul(arg + 9, NULL, 10);
2856 if (options->abbrev < MINIMUM_ABBREV)
2857 options->abbrev = MINIMUM_ABBREV;
2858 else if (40 < options->abbrev)
2859 options->abbrev = 40;
2861 else if (!prefixcmp(arg, "--src-prefix="))
2862 options->a_prefix = arg + 13;
2863 else if (!prefixcmp(arg, "--dst-prefix="))
2864 options->b_prefix = arg + 13;
2865 else if (!strcmp(arg, "--no-prefix"))
2866 options->a_prefix = options->b_prefix = "";
2867 else if (opt_arg(arg, '\0', "inter-hunk-context",
2868 &options->interhunkcontext))
2870 else if (!prefixcmp(arg, "--output=")) {
2871 options->file = fopen(arg + strlen("--output="), "w");
2872 options->close_file = 1;
2873 } else
2874 return 0;
2875 return 1;
2878 static int parse_num(const char **cp_p)
2880 unsigned long num, scale;
2881 int ch, dot;
2882 const char *cp = *cp_p;
2884 num = 0;
2885 scale = 1;
2886 dot = 0;
2887 for (;;) {
2888 ch = *cp;
2889 if ( !dot && ch == '.' ) {
2890 scale = 1;
2891 dot = 1;
2892 } else if ( ch == '%' ) {
2893 scale = dot ? scale*100 : 100;
2894 cp++; /* % is always at the end */
2895 break;
2896 } else if ( ch >= '0' && ch <= '9' ) {
2897 if ( scale < 100000 ) {
2898 scale *= 10;
2899 num = (num*10) + (ch-'0');
2901 } else {
2902 break;
2904 cp++;
2906 *cp_p = cp;
2908 /* user says num divided by scale and we say internally that
2909 * is MAX_SCORE * num / scale.
2911 return (int)((num >= scale) ? MAX_SCORE : (MAX_SCORE * num / scale));
2914 static int diff_scoreopt_parse(const char *opt)
2916 int opt1, opt2, cmd;
2918 if (*opt++ != '-')
2919 return -1;
2920 cmd = *opt++;
2921 if (cmd != 'M' && cmd != 'C' && cmd != 'B')
2922 return -1; /* that is not a -M, -C nor -B option */
2924 opt1 = parse_num(&opt);
2925 if (cmd != 'B')
2926 opt2 = 0;
2927 else {
2928 if (*opt == 0)
2929 opt2 = 0;
2930 else if (*opt != '/')
2931 return -1; /* we expect -B80/99 or -B80 */
2932 else {
2933 opt++;
2934 opt2 = parse_num(&opt);
2937 if (*opt != 0)
2938 return -1;
2939 return opt1 | (opt2 << 16);
2942 struct diff_queue_struct diff_queued_diff;
2944 void diff_q(struct diff_queue_struct *queue, struct diff_filepair *dp)
2946 if (queue->alloc <= queue->nr) {
2947 queue->alloc = alloc_nr(queue->alloc);
2948 queue->queue = xrealloc(queue->queue,
2949 sizeof(dp) * queue->alloc);
2951 queue->queue[queue->nr++] = dp;
2954 struct diff_filepair *diff_queue(struct diff_queue_struct *queue,
2955 struct diff_filespec *one,
2956 struct diff_filespec *two)
2958 struct diff_filepair *dp = xcalloc(1, sizeof(*dp));
2959 dp->one = one;
2960 dp->two = two;
2961 if (queue)
2962 diff_q(queue, dp);
2963 return dp;
2966 void diff_free_filepair(struct diff_filepair *p)
2968 free_filespec(p->one);
2969 free_filespec(p->two);
2970 free(p);
2973 /* This is different from find_unique_abbrev() in that
2974 * it stuffs the result with dots for alignment.
2976 const char *diff_unique_abbrev(const unsigned char *sha1, int len)
2978 int abblen;
2979 const char *abbrev;
2980 if (len == 40)
2981 return sha1_to_hex(sha1);
2983 abbrev = find_unique_abbrev(sha1, len);
2984 abblen = strlen(abbrev);
2985 if (abblen < 37) {
2986 static char hex[41];
2987 if (len < abblen && abblen <= len + 2)
2988 sprintf(hex, "%s%.*s", abbrev, len+3-abblen, "..");
2989 else
2990 sprintf(hex, "%s...", abbrev);
2991 return hex;
2993 return sha1_to_hex(sha1);
2996 static void diff_flush_raw(struct diff_filepair *p, struct diff_options *opt)
2998 int line_termination = opt->line_termination;
2999 int inter_name_termination = line_termination ? '\t' : '\0';
3001 if (!(opt->output_format & DIFF_FORMAT_NAME_STATUS)) {
3002 fprintf(opt->file, ":%06o %06o %s ", p->one->mode, p->two->mode,
3003 diff_unique_abbrev(p->one->sha1, opt->abbrev));
3004 fprintf(opt->file, "%s ", diff_unique_abbrev(p->two->sha1, opt->abbrev));
3006 if (p->score) {
3007 fprintf(opt->file, "%c%03d%c", p->status, similarity_index(p),
3008 inter_name_termination);
3009 } else {
3010 fprintf(opt->file, "%c%c", p->status, inter_name_termination);
3013 if (p->status == DIFF_STATUS_COPIED ||
3014 p->status == DIFF_STATUS_RENAMED) {
3015 const char *name_a, *name_b;
3016 name_a = p->one->path;
3017 name_b = p->two->path;
3018 strip_prefix(opt->prefix_length, &name_a, &name_b);
3019 write_name_quoted(name_a, opt->file, inter_name_termination);
3020 write_name_quoted(name_b, opt->file, line_termination);
3021 } else {
3022 const char *name_a, *name_b;
3023 name_a = p->one->mode ? p->one->path : p->two->path;
3024 name_b = NULL;
3025 strip_prefix(opt->prefix_length, &name_a, &name_b);
3026 write_name_quoted(name_a, opt->file, line_termination);
3030 int diff_unmodified_pair(struct diff_filepair *p)
3032 /* This function is written stricter than necessary to support
3033 * the currently implemented transformers, but the idea is to
3034 * let transformers to produce diff_filepairs any way they want,
3035 * and filter and clean them up here before producing the output.
3037 struct diff_filespec *one = p->one, *two = p->two;
3039 if (DIFF_PAIR_UNMERGED(p))
3040 return 0; /* unmerged is interesting */
3042 /* deletion, addition, mode or type change
3043 * and rename are all interesting.
3045 if (DIFF_FILE_VALID(one) != DIFF_FILE_VALID(two) ||
3046 DIFF_PAIR_MODE_CHANGED(p) ||
3047 strcmp(one->path, two->path))
3048 return 0;
3050 /* both are valid and point at the same path. that is, we are
3051 * dealing with a change.
3053 if (one->sha1_valid && two->sha1_valid &&
3054 !hashcmp(one->sha1, two->sha1))
3055 return 1; /* no change */
3056 if (!one->sha1_valid && !two->sha1_valid)
3057 return 1; /* both look at the same file on the filesystem. */
3058 return 0;
3061 static void diff_flush_patch(struct diff_filepair *p, struct diff_options *o)
3063 if (diff_unmodified_pair(p))
3064 return;
3066 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
3067 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
3068 return; /* no tree diffs in patch format */
3070 run_diff(p, o);
3073 static void diff_flush_stat(struct diff_filepair *p, struct diff_options *o,
3074 struct diffstat_t *diffstat)
3076 if (diff_unmodified_pair(p))
3077 return;
3079 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
3080 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
3081 return; /* no tree diffs in patch format */
3083 run_diffstat(p, o, diffstat);
3086 static void diff_flush_checkdiff(struct diff_filepair *p,
3087 struct diff_options *o)
3089 if (diff_unmodified_pair(p))
3090 return;
3092 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
3093 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
3094 return; /* no tree diffs in patch format */
3096 run_checkdiff(p, o);
3099 int diff_queue_is_empty(void)
3101 struct diff_queue_struct *q = &diff_queued_diff;
3102 int i;
3103 for (i = 0; i < q->nr; i++)
3104 if (!diff_unmodified_pair(q->queue[i]))
3105 return 0;
3106 return 1;
3109 #if DIFF_DEBUG
3110 void diff_debug_filespec(struct diff_filespec *s, int x, const char *one)
3112 fprintf(stderr, "queue[%d] %s (%s) %s %06o %s\n",
3113 x, one ? one : "",
3114 s->path,
3115 DIFF_FILE_VALID(s) ? "valid" : "invalid",
3116 s->mode,
3117 s->sha1_valid ? sha1_to_hex(s->sha1) : "");
3118 fprintf(stderr, "queue[%d] %s size %lu flags %d\n",
3119 x, one ? one : "",
3120 s->size, s->xfrm_flags);
3123 void diff_debug_filepair(const struct diff_filepair *p, int i)
3125 diff_debug_filespec(p->one, i, "one");
3126 diff_debug_filespec(p->two, i, "two");
3127 fprintf(stderr, "score %d, status %c rename_used %d broken %d\n",
3128 p->score, p->status ? p->status : '?',
3129 p->one->rename_used, p->broken_pair);
3132 void diff_debug_queue(const char *msg, struct diff_queue_struct *q)
3134 int i;
3135 if (msg)
3136 fprintf(stderr, "%s\n", msg);
3137 fprintf(stderr, "q->nr = %d\n", q->nr);
3138 for (i = 0; i < q->nr; i++) {
3139 struct diff_filepair *p = q->queue[i];
3140 diff_debug_filepair(p, i);
3143 #endif
3145 static void diff_resolve_rename_copy(void)
3147 int i;
3148 struct diff_filepair *p;
3149 struct diff_queue_struct *q = &diff_queued_diff;
3151 diff_debug_queue("resolve-rename-copy", q);
3153 for (i = 0; i < q->nr; i++) {
3154 p = q->queue[i];
3155 p->status = 0; /* undecided */
3156 if (DIFF_PAIR_UNMERGED(p))
3157 p->status = DIFF_STATUS_UNMERGED;
3158 else if (!DIFF_FILE_VALID(p->one))
3159 p->status = DIFF_STATUS_ADDED;
3160 else if (!DIFF_FILE_VALID(p->two))
3161 p->status = DIFF_STATUS_DELETED;
3162 else if (DIFF_PAIR_TYPE_CHANGED(p))
3163 p->status = DIFF_STATUS_TYPE_CHANGED;
3165 /* from this point on, we are dealing with a pair
3166 * whose both sides are valid and of the same type, i.e.
3167 * either in-place edit or rename/copy edit.
3169 else if (DIFF_PAIR_RENAME(p)) {
3171 * A rename might have re-connected a broken
3172 * pair up, causing the pathnames to be the
3173 * same again. If so, that's not a rename at
3174 * all, just a modification..
3176 * Otherwise, see if this source was used for
3177 * multiple renames, in which case we decrement
3178 * the count, and call it a copy.
3180 if (!strcmp(p->one->path, p->two->path))
3181 p->status = DIFF_STATUS_MODIFIED;
3182 else if (--p->one->rename_used > 0)
3183 p->status = DIFF_STATUS_COPIED;
3184 else
3185 p->status = DIFF_STATUS_RENAMED;
3187 else if (hashcmp(p->one->sha1, p->two->sha1) ||
3188 p->one->mode != p->two->mode ||
3189 is_null_sha1(p->one->sha1))
3190 p->status = DIFF_STATUS_MODIFIED;
3191 else {
3192 /* This is a "no-change" entry and should not
3193 * happen anymore, but prepare for broken callers.
3195 error("feeding unmodified %s to diffcore",
3196 p->one->path);
3197 p->status = DIFF_STATUS_UNKNOWN;
3200 diff_debug_queue("resolve-rename-copy done", q);
3203 static int check_pair_status(struct diff_filepair *p)
3205 switch (p->status) {
3206 case DIFF_STATUS_UNKNOWN:
3207 return 0;
3208 case 0:
3209 die("internal error in diff-resolve-rename-copy");
3210 default:
3211 return 1;
3215 static void flush_one_pair(struct diff_filepair *p, struct diff_options *opt)
3217 int fmt = opt->output_format;
3219 if (fmt & DIFF_FORMAT_CHECKDIFF)
3220 diff_flush_checkdiff(p, opt);
3221 else if (fmt & (DIFF_FORMAT_RAW | DIFF_FORMAT_NAME_STATUS))
3222 diff_flush_raw(p, opt);
3223 else if (fmt & DIFF_FORMAT_NAME) {
3224 const char *name_a, *name_b;
3225 name_a = p->two->path;
3226 name_b = NULL;
3227 strip_prefix(opt->prefix_length, &name_a, &name_b);
3228 write_name_quoted(name_a, opt->file, opt->line_termination);
3232 static void show_file_mode_name(FILE *file, const char *newdelete, struct diff_filespec *fs)
3234 if (fs->mode)
3235 fprintf(file, " %s mode %06o ", newdelete, fs->mode);
3236 else
3237 fprintf(file, " %s ", newdelete);
3238 write_name_quoted(fs->path, file, '\n');
3242 static void show_mode_change(FILE *file, struct diff_filepair *p, int show_name)
3244 if (p->one->mode && p->two->mode && p->one->mode != p->two->mode) {
3245 fprintf(file, " mode change %06o => %06o%c", p->one->mode, p->two->mode,
3246 show_name ? ' ' : '\n');
3247 if (show_name) {
3248 write_name_quoted(p->two->path, file, '\n');
3253 static void show_rename_copy(FILE *file, const char *renamecopy, struct diff_filepair *p)
3255 char *names = pprint_rename(p->one->path, p->two->path);
3257 fprintf(file, " %s %s (%d%%)\n", renamecopy, names, similarity_index(p));
3258 free(names);
3259 show_mode_change(file, p, 0);
3262 static void diff_summary(FILE *file, struct diff_filepair *p)
3264 switch(p->status) {
3265 case DIFF_STATUS_DELETED:
3266 show_file_mode_name(file, "delete", p->one);
3267 break;
3268 case DIFF_STATUS_ADDED:
3269 show_file_mode_name(file, "create", p->two);
3270 break;
3271 case DIFF_STATUS_COPIED:
3272 show_rename_copy(file, "copy", p);
3273 break;
3274 case DIFF_STATUS_RENAMED:
3275 show_rename_copy(file, "rename", p);
3276 break;
3277 default:
3278 if (p->score) {
3279 fputs(" rewrite ", file);
3280 write_name_quoted(p->two->path, file, ' ');
3281 fprintf(file, "(%d%%)\n", similarity_index(p));
3283 show_mode_change(file, p, !p->score);
3284 break;
3288 struct patch_id_t {
3289 git_SHA_CTX *ctx;
3290 int patchlen;
3293 static int remove_space(char *line, int len)
3295 int i;
3296 char *dst = line;
3297 unsigned char c;
3299 for (i = 0; i < len; i++)
3300 if (!isspace((c = line[i])))
3301 *dst++ = c;
3303 return dst - line;
3306 static void patch_id_consume(void *priv, char *line, unsigned long len)
3308 struct patch_id_t *data = priv;
3309 int new_len;
3311 /* Ignore line numbers when computing the SHA1 of the patch */
3312 if (!prefixcmp(line, "@@ -"))
3313 return;
3315 new_len = remove_space(line, len);
3317 git_SHA1_Update(data->ctx, line, new_len);
3318 data->patchlen += new_len;
3321 /* returns 0 upon success, and writes result into sha1 */
3322 static int diff_get_patch_id(struct diff_options *options, unsigned char *sha1)
3324 struct diff_queue_struct *q = &diff_queued_diff;
3325 int i;
3326 git_SHA_CTX ctx;
3327 struct patch_id_t data;
3328 char buffer[PATH_MAX * 4 + 20];
3330 git_SHA1_Init(&ctx);
3331 memset(&data, 0, sizeof(struct patch_id_t));
3332 data.ctx = &ctx;
3334 for (i = 0; i < q->nr; i++) {
3335 xpparam_t xpp;
3336 xdemitconf_t xecfg;
3337 xdemitcb_t ecb;
3338 mmfile_t mf1, mf2;
3339 struct diff_filepair *p = q->queue[i];
3340 int len1, len2;
3342 memset(&xpp, 0, sizeof(xpp));
3343 memset(&xecfg, 0, sizeof(xecfg));
3344 if (p->status == 0)
3345 return error("internal diff status error");
3346 if (p->status == DIFF_STATUS_UNKNOWN)
3347 continue;
3348 if (diff_unmodified_pair(p))
3349 continue;
3350 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
3351 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
3352 continue;
3353 if (DIFF_PAIR_UNMERGED(p))
3354 continue;
3356 diff_fill_sha1_info(p->one);
3357 diff_fill_sha1_info(p->two);
3358 if (fill_mmfile(&mf1, p->one) < 0 ||
3359 fill_mmfile(&mf2, p->two) < 0)
3360 return error("unable to read files to diff");
3362 len1 = remove_space(p->one->path, strlen(p->one->path));
3363 len2 = remove_space(p->two->path, strlen(p->two->path));
3364 if (p->one->mode == 0)
3365 len1 = snprintf(buffer, sizeof(buffer),
3366 "diff--gita/%.*sb/%.*s"
3367 "newfilemode%06o"
3368 "---/dev/null"
3369 "+++b/%.*s",
3370 len1, p->one->path,
3371 len2, p->two->path,
3372 p->two->mode,
3373 len2, p->two->path);
3374 else if (p->two->mode == 0)
3375 len1 = snprintf(buffer, sizeof(buffer),
3376 "diff--gita/%.*sb/%.*s"
3377 "deletedfilemode%06o"
3378 "---a/%.*s"
3379 "+++/dev/null",
3380 len1, p->one->path,
3381 len2, p->two->path,
3382 p->one->mode,
3383 len1, p->one->path);
3384 else
3385 len1 = snprintf(buffer, sizeof(buffer),
3386 "diff--gita/%.*sb/%.*s"
3387 "---a/%.*s"
3388 "+++b/%.*s",
3389 len1, p->one->path,
3390 len2, p->two->path,
3391 len1, p->one->path,
3392 len2, p->two->path);
3393 git_SHA1_Update(&ctx, buffer, len1);
3395 xpp.flags = XDF_NEED_MINIMAL;
3396 xecfg.ctxlen = 3;
3397 xecfg.flags = XDL_EMIT_FUNCNAMES;
3398 xdi_diff_outf(&mf1, &mf2, patch_id_consume, &data,
3399 &xpp, &xecfg, &ecb);
3402 git_SHA1_Final(sha1, &ctx);
3403 return 0;
3406 int diff_flush_patch_id(struct diff_options *options, unsigned char *sha1)
3408 struct diff_queue_struct *q = &diff_queued_diff;
3409 int i;
3410 int result = diff_get_patch_id(options, sha1);
3412 for (i = 0; i < q->nr; i++)
3413 diff_free_filepair(q->queue[i]);
3415 free(q->queue);
3416 q->queue = NULL;
3417 q->nr = q->alloc = 0;
3419 return result;
3422 static int is_summary_empty(const struct diff_queue_struct *q)
3424 int i;
3426 for (i = 0; i < q->nr; i++) {
3427 const struct diff_filepair *p = q->queue[i];
3429 switch (p->status) {
3430 case DIFF_STATUS_DELETED:
3431 case DIFF_STATUS_ADDED:
3432 case DIFF_STATUS_COPIED:
3433 case DIFF_STATUS_RENAMED:
3434 return 0;
3435 default:
3436 if (p->score)
3437 return 0;
3438 if (p->one->mode && p->two->mode &&
3439 p->one->mode != p->two->mode)
3440 return 0;
3441 break;
3444 return 1;
3447 void diff_flush(struct diff_options *options)
3449 struct diff_queue_struct *q = &diff_queued_diff;
3450 int i, output_format = options->output_format;
3451 int separator = 0;
3454 * Order: raw, stat, summary, patch
3455 * or: name/name-status/checkdiff (other bits clear)
3457 if (!q->nr)
3458 goto free_queue;
3460 if (output_format & (DIFF_FORMAT_RAW |
3461 DIFF_FORMAT_NAME |
3462 DIFF_FORMAT_NAME_STATUS |
3463 DIFF_FORMAT_CHECKDIFF)) {
3464 for (i = 0; i < q->nr; i++) {
3465 struct diff_filepair *p = q->queue[i];
3466 if (check_pair_status(p))
3467 flush_one_pair(p, options);
3469 separator++;
3472 if (output_format & (DIFF_FORMAT_DIFFSTAT|DIFF_FORMAT_SHORTSTAT|DIFF_FORMAT_NUMSTAT)) {
3473 struct diffstat_t diffstat;
3475 memset(&diffstat, 0, sizeof(struct diffstat_t));
3476 for (i = 0; i < q->nr; i++) {
3477 struct diff_filepair *p = q->queue[i];
3478 if (check_pair_status(p))
3479 diff_flush_stat(p, options, &diffstat);
3481 if (output_format & DIFF_FORMAT_NUMSTAT)
3482 show_numstat(&diffstat, options);
3483 if (output_format & DIFF_FORMAT_DIFFSTAT)
3484 show_stats(&diffstat, options);
3485 if (output_format & DIFF_FORMAT_SHORTSTAT)
3486 show_shortstats(&diffstat, options);
3487 free_diffstat_info(&diffstat);
3488 separator++;
3490 if (output_format & DIFF_FORMAT_DIRSTAT)
3491 show_dirstat(options);
3493 if (output_format & DIFF_FORMAT_SUMMARY && !is_summary_empty(q)) {
3494 for (i = 0; i < q->nr; i++)
3495 diff_summary(options->file, q->queue[i]);
3496 separator++;
3499 if (output_format & DIFF_FORMAT_PATCH) {
3500 if (separator) {
3501 putc(options->line_termination, options->file);
3502 if (options->stat_sep) {
3503 /* attach patch instead of inline */
3504 fputs(options->stat_sep, options->file);
3508 for (i = 0; i < q->nr; i++) {
3509 struct diff_filepair *p = q->queue[i];
3510 if (check_pair_status(p))
3511 diff_flush_patch(p, options);
3515 if (output_format & DIFF_FORMAT_CALLBACK)
3516 options->format_callback(q, options, options->format_callback_data);
3518 for (i = 0; i < q->nr; i++)
3519 diff_free_filepair(q->queue[i]);
3520 free_queue:
3521 free(q->queue);
3522 q->queue = NULL;
3523 q->nr = q->alloc = 0;
3524 if (options->close_file)
3525 fclose(options->file);
3528 * Report the content-level differences with HAS_CHANGES;
3529 * diff_addremove/diff_change does not set the bit when
3530 * DIFF_FROM_CONTENTS is in effect (e.g. with -w).
3532 if (DIFF_OPT_TST(options, DIFF_FROM_CONTENTS)) {
3533 if (options->found_changes)
3534 DIFF_OPT_SET(options, HAS_CHANGES);
3535 else
3536 DIFF_OPT_CLR(options, HAS_CHANGES);
3540 static void diffcore_apply_filter(const char *filter)
3542 int i;
3543 struct diff_queue_struct *q = &diff_queued_diff;
3544 struct diff_queue_struct outq;
3545 outq.queue = NULL;
3546 outq.nr = outq.alloc = 0;
3548 if (!filter)
3549 return;
3551 if (strchr(filter, DIFF_STATUS_FILTER_AON)) {
3552 int found;
3553 for (i = found = 0; !found && i < q->nr; i++) {
3554 struct diff_filepair *p = q->queue[i];
3555 if (((p->status == DIFF_STATUS_MODIFIED) &&
3556 ((p->score &&
3557 strchr(filter, DIFF_STATUS_FILTER_BROKEN)) ||
3558 (!p->score &&
3559 strchr(filter, DIFF_STATUS_MODIFIED)))) ||
3560 ((p->status != DIFF_STATUS_MODIFIED) &&
3561 strchr(filter, p->status)))
3562 found++;
3564 if (found)
3565 return;
3567 /* otherwise we will clear the whole queue
3568 * by copying the empty outq at the end of this
3569 * function, but first clear the current entries
3570 * in the queue.
3572 for (i = 0; i < q->nr; i++)
3573 diff_free_filepair(q->queue[i]);
3575 else {
3576 /* Only the matching ones */
3577 for (i = 0; i < q->nr; i++) {
3578 struct diff_filepair *p = q->queue[i];
3580 if (((p->status == DIFF_STATUS_MODIFIED) &&
3581 ((p->score &&
3582 strchr(filter, DIFF_STATUS_FILTER_BROKEN)) ||
3583 (!p->score &&
3584 strchr(filter, DIFF_STATUS_MODIFIED)))) ||
3585 ((p->status != DIFF_STATUS_MODIFIED) &&
3586 strchr(filter, p->status)))
3587 diff_q(&outq, p);
3588 else
3589 diff_free_filepair(p);
3592 free(q->queue);
3593 *q = outq;
3596 /* Check whether two filespecs with the same mode and size are identical */
3597 static int diff_filespec_is_identical(struct diff_filespec *one,
3598 struct diff_filespec *two)
3600 if (S_ISGITLINK(one->mode))
3601 return 0;
3602 if (diff_populate_filespec(one, 0))
3603 return 0;
3604 if (diff_populate_filespec(two, 0))
3605 return 0;
3606 return !memcmp(one->data, two->data, one->size);
3609 static void diffcore_skip_stat_unmatch(struct diff_options *diffopt)
3611 int i;
3612 struct diff_queue_struct *q = &diff_queued_diff;
3613 struct diff_queue_struct outq;
3614 outq.queue = NULL;
3615 outq.nr = outq.alloc = 0;
3617 for (i = 0; i < q->nr; i++) {
3618 struct diff_filepair *p = q->queue[i];
3621 * 1. Entries that come from stat info dirtyness
3622 * always have both sides (iow, not create/delete),
3623 * one side of the object name is unknown, with
3624 * the same mode and size. Keep the ones that
3625 * do not match these criteria. They have real
3626 * differences.
3628 * 2. At this point, the file is known to be modified,
3629 * with the same mode and size, and the object
3630 * name of one side is unknown. Need to inspect
3631 * the identical contents.
3633 if (!DIFF_FILE_VALID(p->one) || /* (1) */
3634 !DIFF_FILE_VALID(p->two) ||
3635 (p->one->sha1_valid && p->two->sha1_valid) ||
3636 (p->one->mode != p->two->mode) ||
3637 diff_populate_filespec(p->one, 1) ||
3638 diff_populate_filespec(p->two, 1) ||
3639 (p->one->size != p->two->size) ||
3640 !diff_filespec_is_identical(p->one, p->two)) /* (2) */
3641 diff_q(&outq, p);
3642 else {
3644 * The caller can subtract 1 from skip_stat_unmatch
3645 * to determine how many paths were dirty only
3646 * due to stat info mismatch.
3648 if (!DIFF_OPT_TST(diffopt, NO_INDEX))
3649 diffopt->skip_stat_unmatch++;
3650 diff_free_filepair(p);
3653 free(q->queue);
3654 *q = outq;
3657 void diffcore_std(struct diff_options *options)
3659 if (options->skip_stat_unmatch)
3660 diffcore_skip_stat_unmatch(options);
3661 if (options->break_opt != -1)
3662 diffcore_break(options->break_opt);
3663 if (options->detect_rename)
3664 diffcore_rename(options);
3665 if (options->break_opt != -1)
3666 diffcore_merge_broken();
3667 if (options->pickaxe)
3668 diffcore_pickaxe(options->pickaxe, options->pickaxe_opts);
3669 if (options->orderfile)
3670 diffcore_order(options->orderfile);
3671 diff_resolve_rename_copy();
3672 diffcore_apply_filter(options->filter);
3674 if (diff_queued_diff.nr && !DIFF_OPT_TST(options, DIFF_FROM_CONTENTS))
3675 DIFF_OPT_SET(options, HAS_CHANGES);
3676 else
3677 DIFF_OPT_CLR(options, HAS_CHANGES);
3680 int diff_result_code(struct diff_options *opt, int status)
3682 int result = 0;
3683 if (!DIFF_OPT_TST(opt, EXIT_WITH_STATUS) &&
3684 !(opt->output_format & DIFF_FORMAT_CHECKDIFF))
3685 return status;
3686 if (DIFF_OPT_TST(opt, EXIT_WITH_STATUS) &&
3687 DIFF_OPT_TST(opt, HAS_CHANGES))
3688 result |= 01;
3689 if ((opt->output_format & DIFF_FORMAT_CHECKDIFF) &&
3690 DIFF_OPT_TST(opt, CHECK_FAILED))
3691 result |= 02;
3692 return result;
3695 void diff_addremove(struct diff_options *options,
3696 int addremove, unsigned mode,
3697 const unsigned char *sha1,
3698 const char *concatpath)
3700 struct diff_filespec *one, *two;
3702 if (DIFF_OPT_TST(options, IGNORE_SUBMODULES) && S_ISGITLINK(mode))
3703 return;
3705 /* This may look odd, but it is a preparation for
3706 * feeding "there are unchanged files which should
3707 * not produce diffs, but when you are doing copy
3708 * detection you would need them, so here they are"
3709 * entries to the diff-core. They will be prefixed
3710 * with something like '=' or '*' (I haven't decided
3711 * which but should not make any difference).
3712 * Feeding the same new and old to diff_change()
3713 * also has the same effect.
3714 * Before the final output happens, they are pruned after
3715 * merged into rename/copy pairs as appropriate.
3717 if (DIFF_OPT_TST(options, REVERSE_DIFF))
3718 addremove = (addremove == '+' ? '-' :
3719 addremove == '-' ? '+' : addremove);
3721 if (options->prefix &&
3722 strncmp(concatpath, options->prefix, options->prefix_length))
3723 return;
3725 one = alloc_filespec(concatpath);
3726 two = alloc_filespec(concatpath);
3728 if (addremove != '+')
3729 fill_filespec(one, sha1, mode);
3730 if (addremove != '-')
3731 fill_filespec(two, sha1, mode);
3733 diff_queue(&diff_queued_diff, one, two);
3734 if (!DIFF_OPT_TST(options, DIFF_FROM_CONTENTS))
3735 DIFF_OPT_SET(options, HAS_CHANGES);
3738 void diff_change(struct diff_options *options,
3739 unsigned old_mode, unsigned new_mode,
3740 const unsigned char *old_sha1,
3741 const unsigned char *new_sha1,
3742 const char *concatpath)
3744 struct diff_filespec *one, *two;
3746 if (DIFF_OPT_TST(options, IGNORE_SUBMODULES) && S_ISGITLINK(old_mode)
3747 && S_ISGITLINK(new_mode))
3748 return;
3750 if (DIFF_OPT_TST(options, REVERSE_DIFF)) {
3751 unsigned tmp;
3752 const unsigned char *tmp_c;
3753 tmp = old_mode; old_mode = new_mode; new_mode = tmp;
3754 tmp_c = old_sha1; old_sha1 = new_sha1; new_sha1 = tmp_c;
3757 if (options->prefix &&
3758 strncmp(concatpath, options->prefix, options->prefix_length))
3759 return;
3761 one = alloc_filespec(concatpath);
3762 two = alloc_filespec(concatpath);
3763 fill_filespec(one, old_sha1, old_mode);
3764 fill_filespec(two, new_sha1, new_mode);
3766 diff_queue(&diff_queued_diff, one, two);
3767 if (!DIFF_OPT_TST(options, DIFF_FROM_CONTENTS))
3768 DIFF_OPT_SET(options, HAS_CHANGES);
3771 void diff_unmerge(struct diff_options *options,
3772 const char *path,
3773 unsigned mode, const unsigned char *sha1)
3775 struct diff_filespec *one, *two;
3777 if (options->prefix &&
3778 strncmp(path, options->prefix, options->prefix_length))
3779 return;
3781 one = alloc_filespec(path);
3782 two = alloc_filespec(path);
3783 fill_filespec(one, sha1, mode);
3784 diff_queue(&diff_queued_diff, one, two)->is_unmerged = 1;
3787 static char *run_textconv(const char *pgm, struct diff_filespec *spec,
3788 size_t *outsize)
3790 struct diff_tempfile *temp;
3791 const char *argv[3];
3792 const char **arg = argv;
3793 struct child_process child;
3794 struct strbuf buf = STRBUF_INIT;
3796 temp = prepare_temp_file(spec->path, spec);
3797 *arg++ = pgm;
3798 *arg++ = temp->name;
3799 *arg = NULL;
3801 memset(&child, 0, sizeof(child));
3802 child.argv = argv;
3803 child.out = -1;
3804 if (start_command(&child) != 0 ||
3805 strbuf_read(&buf, child.out, 0) < 0 ||
3806 finish_command(&child) != 0) {
3807 strbuf_release(&buf);
3808 remove_tempfile();
3809 error("error running textconv command '%s'", pgm);
3810 return NULL;
3812 remove_tempfile();
3814 return strbuf_detach(&buf, outsize);