color-words: take an optional regular expression describing words
[git/spearce.git] / diff.c
blob9fb3d0df31895e81a02d6bb67b9c4e0c13640155
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"
16 #ifdef NO_FAST_WORKING_DIRECTORY
17 #define FAST_WORKING_DIRECTORY 0
18 #else
19 #define FAST_WORKING_DIRECTORY 1
20 #endif
22 static int diff_detect_rename_default;
23 static int diff_rename_limit_default = 200;
24 static int diff_suppress_blank_empty;
25 int diff_use_color_default = -1;
26 static const char *external_diff_cmd_cfg;
27 int diff_auto_refresh_index = 1;
28 static int diff_mnemonic_prefix;
30 static char diff_colors[][COLOR_MAXLEN] = {
31 "\033[m", /* reset */
32 "", /* PLAIN (normal) */
33 "\033[1m", /* METAINFO (bold) */
34 "\033[36m", /* FRAGINFO (cyan) */
35 "\033[31m", /* OLD (red) */
36 "\033[32m", /* NEW (green) */
37 "\033[33m", /* COMMIT (yellow) */
38 "\033[41m", /* WHITESPACE (red background) */
41 static void diff_filespec_load_driver(struct diff_filespec *one);
42 static char *run_textconv(const char *, struct diff_filespec *, size_t *);
44 static int parse_diff_color_slot(const char *var, int ofs)
46 if (!strcasecmp(var+ofs, "plain"))
47 return DIFF_PLAIN;
48 if (!strcasecmp(var+ofs, "meta"))
49 return DIFF_METAINFO;
50 if (!strcasecmp(var+ofs, "frag"))
51 return DIFF_FRAGINFO;
52 if (!strcasecmp(var+ofs, "old"))
53 return DIFF_FILE_OLD;
54 if (!strcasecmp(var+ofs, "new"))
55 return DIFF_FILE_NEW;
56 if (!strcasecmp(var+ofs, "commit"))
57 return DIFF_COMMIT;
58 if (!strcasecmp(var+ofs, "whitespace"))
59 return DIFF_WHITESPACE;
60 die("bad config variable '%s'", var);
64 * These are to give UI layer defaults.
65 * The core-level commands such as git-diff-files should
66 * never be affected by the setting of diff.renames
67 * the user happens to have in the configuration file.
69 int git_diff_ui_config(const char *var, const char *value, void *cb)
71 if (!strcmp(var, "diff.color") || !strcmp(var, "color.diff")) {
72 diff_use_color_default = git_config_colorbool(var, value, -1);
73 return 0;
75 if (!strcmp(var, "diff.renames")) {
76 if (!value)
77 diff_detect_rename_default = DIFF_DETECT_RENAME;
78 else if (!strcasecmp(value, "copies") ||
79 !strcasecmp(value, "copy"))
80 diff_detect_rename_default = DIFF_DETECT_COPY;
81 else if (git_config_bool(var,value))
82 diff_detect_rename_default = DIFF_DETECT_RENAME;
83 return 0;
85 if (!strcmp(var, "diff.autorefreshindex")) {
86 diff_auto_refresh_index = git_config_bool(var, value);
87 return 0;
89 if (!strcmp(var, "diff.mnemonicprefix")) {
90 diff_mnemonic_prefix = git_config_bool(var, value);
91 return 0;
93 if (!strcmp(var, "diff.external"))
94 return git_config_string(&external_diff_cmd_cfg, var, value);
96 return git_diff_basic_config(var, value, cb);
99 int git_diff_basic_config(const char *var, const char *value, void *cb)
101 if (!strcmp(var, "diff.renamelimit")) {
102 diff_rename_limit_default = git_config_int(var, value);
103 return 0;
106 switch (userdiff_config(var, value)) {
107 case 0: break;
108 case -1: return -1;
109 default: return 0;
112 if (!prefixcmp(var, "diff.color.") || !prefixcmp(var, "color.diff.")) {
113 int slot = parse_diff_color_slot(var, 11);
114 if (!value)
115 return config_error_nonbool(var);
116 color_parse(value, var, diff_colors[slot]);
117 return 0;
120 /* like GNU diff's --suppress-blank-empty option */
121 if (!strcmp(var, "diff.suppress-blank-empty")) {
122 diff_suppress_blank_empty = git_config_bool(var, value);
123 return 0;
126 return git_color_default_config(var, value, cb);
129 static char *quote_two(const char *one, const char *two)
131 int need_one = quote_c_style(one, NULL, NULL, 1);
132 int need_two = quote_c_style(two, NULL, NULL, 1);
133 struct strbuf res = STRBUF_INIT;
135 if (need_one + need_two) {
136 strbuf_addch(&res, '"');
137 quote_c_style(one, &res, NULL, 1);
138 quote_c_style(two, &res, NULL, 1);
139 strbuf_addch(&res, '"');
140 } else {
141 strbuf_addstr(&res, one);
142 strbuf_addstr(&res, two);
144 return strbuf_detach(&res, NULL);
147 static const char *external_diff(void)
149 static const char *external_diff_cmd = NULL;
150 static int done_preparing = 0;
152 if (done_preparing)
153 return external_diff_cmd;
154 external_diff_cmd = getenv("GIT_EXTERNAL_DIFF");
155 if (!external_diff_cmd)
156 external_diff_cmd = external_diff_cmd_cfg;
157 done_preparing = 1;
158 return external_diff_cmd;
161 static struct diff_tempfile {
162 const char *name; /* filename external diff should read from */
163 char hex[41];
164 char mode[10];
165 char tmp_path[PATH_MAX];
166 } diff_temp[2];
168 static int count_lines(const char *data, int size)
170 int count, ch, completely_empty = 1, nl_just_seen = 0;
171 count = 0;
172 while (0 < size--) {
173 ch = *data++;
174 if (ch == '\n') {
175 count++;
176 nl_just_seen = 1;
177 completely_empty = 0;
179 else {
180 nl_just_seen = 0;
181 completely_empty = 0;
184 if (completely_empty)
185 return 0;
186 if (!nl_just_seen)
187 count++; /* no trailing newline */
188 return count;
191 static void print_line_count(FILE *file, int count)
193 switch (count) {
194 case 0:
195 fprintf(file, "0,0");
196 break;
197 case 1:
198 fprintf(file, "1");
199 break;
200 default:
201 fprintf(file, "1,%d", count);
202 break;
206 static void copy_file_with_prefix(FILE *file,
207 int prefix, const char *data, int size,
208 const char *set, const char *reset)
210 int ch, nl_just_seen = 1;
211 while (0 < size--) {
212 ch = *data++;
213 if (nl_just_seen) {
214 fputs(set, file);
215 putc(prefix, file);
217 if (ch == '\n') {
218 nl_just_seen = 1;
219 fputs(reset, file);
220 } else
221 nl_just_seen = 0;
222 putc(ch, file);
224 if (!nl_just_seen)
225 fprintf(file, "%s\n\\ No newline at end of file\n", reset);
228 static void emit_rewrite_diff(const char *name_a,
229 const char *name_b,
230 struct diff_filespec *one,
231 struct diff_filespec *two,
232 const char *textconv_one,
233 const char *textconv_two,
234 struct diff_options *o)
236 int lc_a, lc_b;
237 int color_diff = DIFF_OPT_TST(o, COLOR_DIFF);
238 const char *name_a_tab, *name_b_tab;
239 const char *metainfo = diff_get_color(color_diff, DIFF_METAINFO);
240 const char *fraginfo = diff_get_color(color_diff, DIFF_FRAGINFO);
241 const char *old = diff_get_color(color_diff, DIFF_FILE_OLD);
242 const char *new = diff_get_color(color_diff, DIFF_FILE_NEW);
243 const char *reset = diff_get_color(color_diff, DIFF_RESET);
244 static struct strbuf a_name = STRBUF_INIT, b_name = STRBUF_INIT;
245 const char *a_prefix, *b_prefix;
246 const char *data_one, *data_two;
247 size_t size_one, size_two;
249 if (diff_mnemonic_prefix && DIFF_OPT_TST(o, REVERSE_DIFF)) {
250 a_prefix = o->b_prefix;
251 b_prefix = o->a_prefix;
252 } else {
253 a_prefix = o->a_prefix;
254 b_prefix = o->b_prefix;
257 name_a += (*name_a == '/');
258 name_b += (*name_b == '/');
259 name_a_tab = strchr(name_a, ' ') ? "\t" : "";
260 name_b_tab = strchr(name_b, ' ') ? "\t" : "";
262 strbuf_reset(&a_name);
263 strbuf_reset(&b_name);
264 quote_two_c_style(&a_name, a_prefix, name_a, 0);
265 quote_two_c_style(&b_name, b_prefix, name_b, 0);
267 diff_populate_filespec(one, 0);
268 diff_populate_filespec(two, 0);
269 if (textconv_one) {
270 data_one = run_textconv(textconv_one, one, &size_one);
271 if (!data_one)
272 die("unable to read files to diff");
274 else {
275 data_one = one->data;
276 size_one = one->size;
278 if (textconv_two) {
279 data_two = run_textconv(textconv_two, two, &size_two);
280 if (!data_two)
281 die("unable to read files to diff");
283 else {
284 data_two = two->data;
285 size_two = two->size;
288 lc_a = count_lines(data_one, size_one);
289 lc_b = count_lines(data_two, size_two);
290 fprintf(o->file,
291 "%s--- %s%s%s\n%s+++ %s%s%s\n%s@@ -",
292 metainfo, a_name.buf, name_a_tab, reset,
293 metainfo, b_name.buf, name_b_tab, reset, fraginfo);
294 print_line_count(o->file, lc_a);
295 fprintf(o->file, " +");
296 print_line_count(o->file, lc_b);
297 fprintf(o->file, " @@%s\n", reset);
298 if (lc_a)
299 copy_file_with_prefix(o->file, '-', data_one, size_one, old, reset);
300 if (lc_b)
301 copy_file_with_prefix(o->file, '+', data_two, size_two, new, reset);
304 static int fill_mmfile(mmfile_t *mf, struct diff_filespec *one)
306 if (!DIFF_FILE_VALID(one)) {
307 mf->ptr = (char *)""; /* does not matter */
308 mf->size = 0;
309 return 0;
311 else if (diff_populate_filespec(one, 0))
312 return -1;
314 mf->ptr = one->data;
315 mf->size = one->size;
316 return 0;
319 struct diff_words_buffer {
320 mmfile_t text;
321 long alloc;
322 struct diff_words_orig {
323 const char *begin, *end;
324 } *orig;
325 int orig_nr, orig_alloc;
328 static void diff_words_append(char *line, unsigned long len,
329 struct diff_words_buffer *buffer)
331 ALLOC_GROW(buffer->text.ptr, buffer->text.size + len, buffer->alloc);
332 line++;
333 len--;
334 memcpy(buffer->text.ptr + buffer->text.size, line, len);
335 buffer->text.size += len;
336 buffer->text.ptr[buffer->text.size] = '\0';
339 struct diff_words_data {
340 struct diff_words_buffer minus, plus;
341 const char *current_plus;
342 FILE *file;
343 regex_t *word_regex;
346 static void fn_out_diff_words_aux(void *priv, char *line, unsigned long len)
348 struct diff_words_data *diff_words = priv;
349 int minus_first, minus_len, plus_first, plus_len;
350 const char *minus_begin, *minus_end, *plus_begin, *plus_end;
352 if (line[0] != '@' || parse_hunk_header(line, len,
353 &minus_first, &minus_len, &plus_first, &plus_len))
354 return;
356 /* POSIX requires that first be decremented by one if len == 0... */
357 if (minus_len) {
358 minus_begin = diff_words->minus.orig[minus_first].begin;
359 minus_end =
360 diff_words->minus.orig[minus_first + minus_len - 1].end;
361 } else
362 minus_begin = minus_end =
363 diff_words->minus.orig[minus_first].end;
365 if (plus_len) {
366 plus_begin = diff_words->plus.orig[plus_first].begin;
367 plus_end = diff_words->plus.orig[plus_first + plus_len - 1].end;
368 } else
369 plus_begin = plus_end = diff_words->plus.orig[plus_first].end;
371 if (diff_words->current_plus != plus_begin)
372 fwrite(diff_words->current_plus,
373 plus_begin - diff_words->current_plus, 1,
374 diff_words->file);
375 if (minus_begin != minus_end)
376 color_fwrite_lines(diff_words->file,
377 diff_get_color(1, DIFF_FILE_OLD),
378 minus_end - minus_begin, minus_begin);
379 if (plus_begin != plus_end)
380 color_fwrite_lines(diff_words->file,
381 diff_get_color(1, DIFF_FILE_NEW),
382 plus_end - plus_begin, plus_begin);
384 diff_words->current_plus = plus_end;
387 /* This function starts looking at *begin, and returns 0 iff a word was found. */
388 static int find_word_boundaries(mmfile_t *buffer, regex_t *word_regex,
389 int *begin, int *end)
391 if (word_regex && *begin < buffer->size) {
392 regmatch_t match[1];
393 if (!regexec(word_regex, buffer->ptr + *begin, 1, match, 0)) {
394 char *p = memchr(buffer->ptr + *begin + match[0].rm_so,
395 '\n', match[0].rm_eo - match[0].rm_so);
396 *end = p ? p - buffer->ptr : match[0].rm_eo + *begin;
397 *begin += match[0].rm_so;
398 return *begin >= *end;
400 return -1;
403 /* find the next word */
404 while (*begin < buffer->size && isspace(buffer->ptr[*begin]))
405 (*begin)++;
406 if (*begin >= buffer->size)
407 return -1;
409 /* find the end of the word */
410 *end = *begin + 1;
411 while (*end < buffer->size && !isspace(buffer->ptr[*end]))
412 (*end)++;
414 return 0;
418 * This function splits the words in buffer->text, stores the list with
419 * newline separator into out, and saves the offsets of the original words
420 * in buffer->orig.
422 static void diff_words_fill(struct diff_words_buffer *buffer, mmfile_t *out,
423 regex_t *word_regex)
425 int i, j;
426 long alloc = 0;
428 out->size = 0;
429 out->ptr = NULL;
431 /* fake an empty "0th" word */
432 ALLOC_GROW(buffer->orig, 1, buffer->orig_alloc);
433 buffer->orig[0].begin = buffer->orig[0].end = buffer->text.ptr;
434 buffer->orig_nr = 1;
436 for (i = 0; i < buffer->text.size; i++) {
437 if (find_word_boundaries(&buffer->text, word_regex, &i, &j))
438 return;
440 /* store original boundaries */
441 ALLOC_GROW(buffer->orig, buffer->orig_nr + 1,
442 buffer->orig_alloc);
443 buffer->orig[buffer->orig_nr].begin = buffer->text.ptr + i;
444 buffer->orig[buffer->orig_nr].end = buffer->text.ptr + j;
445 buffer->orig_nr++;
447 /* store one word */
448 ALLOC_GROW(out->ptr, out->size + j - i + 1, alloc);
449 memcpy(out->ptr + out->size, buffer->text.ptr + i, j - i);
450 out->ptr[out->size + j - i] = '\n';
451 out->size += j - i + 1;
453 i = j - 1;
457 /* this executes the word diff on the accumulated buffers */
458 static void diff_words_show(struct diff_words_data *diff_words)
460 xpparam_t xpp;
461 xdemitconf_t xecfg;
462 xdemitcb_t ecb;
463 mmfile_t minus, plus;
465 /* special case: only removal */
466 if (!diff_words->plus.text.size) {
467 color_fwrite_lines(diff_words->file,
468 diff_get_color(1, DIFF_FILE_OLD),
469 diff_words->minus.text.size, diff_words->minus.text.ptr);
470 diff_words->minus.text.size = 0;
471 return;
474 diff_words->current_plus = diff_words->plus.text.ptr;
476 memset(&xpp, 0, sizeof(xpp));
477 memset(&xecfg, 0, sizeof(xecfg));
478 diff_words_fill(&diff_words->minus, &minus, diff_words->word_regex);
479 diff_words_fill(&diff_words->plus, &plus, diff_words->word_regex);
480 xpp.flags = XDF_NEED_MINIMAL;
481 /* as only the hunk header will be parsed, we need a 0-context */
482 xecfg.ctxlen = 0;
483 xdi_diff_outf(&minus, &plus, fn_out_diff_words_aux, diff_words,
484 &xpp, &xecfg, &ecb);
485 free(minus.ptr);
486 free(plus.ptr);
487 if (diff_words->current_plus != diff_words->plus.text.ptr +
488 diff_words->plus.text.size)
489 fwrite(diff_words->current_plus,
490 diff_words->plus.text.ptr + diff_words->plus.text.size
491 - diff_words->current_plus, 1,
492 diff_words->file);
493 diff_words->minus.text.size = diff_words->plus.text.size = 0;
496 typedef unsigned long (*sane_truncate_fn)(char *line, unsigned long len);
498 struct emit_callback {
499 int nparents, color_diff;
500 unsigned ws_rule;
501 sane_truncate_fn truncate;
502 const char **label_path;
503 struct diff_words_data *diff_words;
504 int *found_changesp;
505 FILE *file;
508 static void free_diff_words_data(struct emit_callback *ecbdata)
510 if (ecbdata->diff_words) {
511 /* flush buffers */
512 if (ecbdata->diff_words->minus.text.size ||
513 ecbdata->diff_words->plus.text.size)
514 diff_words_show(ecbdata->diff_words);
516 free (ecbdata->diff_words->minus.text.ptr);
517 free (ecbdata->diff_words->minus.orig);
518 free (ecbdata->diff_words->plus.text.ptr);
519 free (ecbdata->diff_words->plus.orig);
520 free(ecbdata->diff_words->word_regex);
521 free(ecbdata->diff_words);
522 ecbdata->diff_words = NULL;
526 const char *diff_get_color(int diff_use_color, enum color_diff ix)
528 if (diff_use_color)
529 return diff_colors[ix];
530 return "";
533 static void emit_line(FILE *file, const char *set, const char *reset, const char *line, int len)
535 int has_trailing_newline, has_trailing_carriage_return;
537 has_trailing_newline = (len > 0 && line[len-1] == '\n');
538 if (has_trailing_newline)
539 len--;
540 has_trailing_carriage_return = (len > 0 && line[len-1] == '\r');
541 if (has_trailing_carriage_return)
542 len--;
544 fputs(set, file);
545 fwrite(line, len, 1, file);
546 fputs(reset, file);
547 if (has_trailing_carriage_return)
548 fputc('\r', file);
549 if (has_trailing_newline)
550 fputc('\n', file);
553 static void emit_add_line(const char *reset, struct emit_callback *ecbdata, const char *line, int len)
555 const char *ws = diff_get_color(ecbdata->color_diff, DIFF_WHITESPACE);
556 const char *set = diff_get_color(ecbdata->color_diff, DIFF_FILE_NEW);
558 if (!*ws)
559 emit_line(ecbdata->file, set, reset, line, len);
560 else {
561 /* Emit just the prefix, then the rest. */
562 emit_line(ecbdata->file, set, reset, line, ecbdata->nparents);
563 ws_check_emit(line + ecbdata->nparents,
564 len - ecbdata->nparents, ecbdata->ws_rule,
565 ecbdata->file, set, reset, ws);
569 static unsigned long sane_truncate_line(struct emit_callback *ecb, char *line, unsigned long len)
571 const char *cp;
572 unsigned long allot;
573 size_t l = len;
575 if (ecb->truncate)
576 return ecb->truncate(line, len);
577 cp = line;
578 allot = l;
579 while (0 < l) {
580 (void) utf8_width(&cp, &l);
581 if (!cp)
582 break; /* truncated in the middle? */
584 return allot - l;
587 static void fn_out_consume(void *priv, char *line, unsigned long len)
589 int i;
590 int color;
591 struct emit_callback *ecbdata = priv;
592 const char *meta = diff_get_color(ecbdata->color_diff, DIFF_METAINFO);
593 const char *plain = diff_get_color(ecbdata->color_diff, DIFF_PLAIN);
594 const char *reset = diff_get_color(ecbdata->color_diff, DIFF_RESET);
596 *(ecbdata->found_changesp) = 1;
598 if (ecbdata->label_path[0]) {
599 const char *name_a_tab, *name_b_tab;
601 name_a_tab = strchr(ecbdata->label_path[0], ' ') ? "\t" : "";
602 name_b_tab = strchr(ecbdata->label_path[1], ' ') ? "\t" : "";
604 fprintf(ecbdata->file, "%s--- %s%s%s\n",
605 meta, ecbdata->label_path[0], reset, name_a_tab);
606 fprintf(ecbdata->file, "%s+++ %s%s%s\n",
607 meta, ecbdata->label_path[1], reset, name_b_tab);
608 ecbdata->label_path[0] = ecbdata->label_path[1] = NULL;
611 if (diff_suppress_blank_empty
612 && len == 2 && line[0] == ' ' && line[1] == '\n') {
613 line[0] = '\n';
614 len = 1;
617 /* This is not really necessary for now because
618 * this codepath only deals with two-way diffs.
620 for (i = 0; i < len && line[i] == '@'; i++)
622 if (2 <= i && i < len && line[i] == ' ') {
623 ecbdata->nparents = i - 1;
624 len = sane_truncate_line(ecbdata, line, len);
625 emit_line(ecbdata->file,
626 diff_get_color(ecbdata->color_diff, DIFF_FRAGINFO),
627 reset, line, len);
628 if (line[len-1] != '\n')
629 putc('\n', ecbdata->file);
630 return;
633 if (len < ecbdata->nparents) {
634 emit_line(ecbdata->file, reset, reset, line, len);
635 return;
638 color = DIFF_PLAIN;
639 if (ecbdata->diff_words && ecbdata->nparents != 1)
640 /* fall back to normal diff */
641 free_diff_words_data(ecbdata);
642 if (ecbdata->diff_words) {
643 if (line[0] == '-') {
644 diff_words_append(line, len,
645 &ecbdata->diff_words->minus);
646 return;
647 } else if (line[0] == '+') {
648 diff_words_append(line, len,
649 &ecbdata->diff_words->plus);
650 return;
652 if (ecbdata->diff_words->minus.text.size ||
653 ecbdata->diff_words->plus.text.size)
654 diff_words_show(ecbdata->diff_words);
655 line++;
656 len--;
657 emit_line(ecbdata->file, plain, reset, line, len);
658 return;
660 for (i = 0; i < ecbdata->nparents && len; i++) {
661 if (line[i] == '-')
662 color = DIFF_FILE_OLD;
663 else if (line[i] == '+')
664 color = DIFF_FILE_NEW;
667 if (color != DIFF_FILE_NEW) {
668 emit_line(ecbdata->file,
669 diff_get_color(ecbdata->color_diff, color),
670 reset, line, len);
671 return;
673 emit_add_line(reset, ecbdata, line, len);
676 static char *pprint_rename(const char *a, const char *b)
678 const char *old = a;
679 const char *new = b;
680 struct strbuf name = STRBUF_INIT;
681 int pfx_length, sfx_length;
682 int len_a = strlen(a);
683 int len_b = strlen(b);
684 int a_midlen, b_midlen;
685 int qlen_a = quote_c_style(a, NULL, NULL, 0);
686 int qlen_b = quote_c_style(b, NULL, NULL, 0);
688 if (qlen_a || qlen_b) {
689 quote_c_style(a, &name, NULL, 0);
690 strbuf_addstr(&name, " => ");
691 quote_c_style(b, &name, NULL, 0);
692 return strbuf_detach(&name, NULL);
695 /* Find common prefix */
696 pfx_length = 0;
697 while (*old && *new && *old == *new) {
698 if (*old == '/')
699 pfx_length = old - a + 1;
700 old++;
701 new++;
704 /* Find common suffix */
705 old = a + len_a;
706 new = b + len_b;
707 sfx_length = 0;
708 while (a <= old && b <= new && *old == *new) {
709 if (*old == '/')
710 sfx_length = len_a - (old - a);
711 old--;
712 new--;
716 * pfx{mid-a => mid-b}sfx
717 * {pfx-a => pfx-b}sfx
718 * pfx{sfx-a => sfx-b}
719 * name-a => name-b
721 a_midlen = len_a - pfx_length - sfx_length;
722 b_midlen = len_b - pfx_length - sfx_length;
723 if (a_midlen < 0)
724 a_midlen = 0;
725 if (b_midlen < 0)
726 b_midlen = 0;
728 strbuf_grow(&name, pfx_length + a_midlen + b_midlen + sfx_length + 7);
729 if (pfx_length + sfx_length) {
730 strbuf_add(&name, a, pfx_length);
731 strbuf_addch(&name, '{');
733 strbuf_add(&name, a + pfx_length, a_midlen);
734 strbuf_addstr(&name, " => ");
735 strbuf_add(&name, b + pfx_length, b_midlen);
736 if (pfx_length + sfx_length) {
737 strbuf_addch(&name, '}');
738 strbuf_add(&name, a + len_a - sfx_length, sfx_length);
740 return strbuf_detach(&name, NULL);
743 struct diffstat_t {
744 int nr;
745 int alloc;
746 struct diffstat_file {
747 char *from_name;
748 char *name;
749 char *print_name;
750 unsigned is_unmerged:1;
751 unsigned is_binary:1;
752 unsigned is_renamed:1;
753 unsigned int added, deleted;
754 } **files;
757 static struct diffstat_file *diffstat_add(struct diffstat_t *diffstat,
758 const char *name_a,
759 const char *name_b)
761 struct diffstat_file *x;
762 x = xcalloc(sizeof (*x), 1);
763 if (diffstat->nr == diffstat->alloc) {
764 diffstat->alloc = alloc_nr(diffstat->alloc);
765 diffstat->files = xrealloc(diffstat->files,
766 diffstat->alloc * sizeof(x));
768 diffstat->files[diffstat->nr++] = x;
769 if (name_b) {
770 x->from_name = xstrdup(name_a);
771 x->name = xstrdup(name_b);
772 x->is_renamed = 1;
774 else {
775 x->from_name = NULL;
776 x->name = xstrdup(name_a);
778 return x;
781 static void diffstat_consume(void *priv, char *line, unsigned long len)
783 struct diffstat_t *diffstat = priv;
784 struct diffstat_file *x = diffstat->files[diffstat->nr - 1];
786 if (line[0] == '+')
787 x->added++;
788 else if (line[0] == '-')
789 x->deleted++;
792 const char mime_boundary_leader[] = "------------";
794 static int scale_linear(int it, int width, int max_change)
797 * make sure that at least one '-' is printed if there were deletions,
798 * and likewise for '+'.
800 if (max_change < 2)
801 return it;
802 return ((it - 1) * (width - 1) + max_change - 1) / (max_change - 1);
805 static void show_name(FILE *file,
806 const char *prefix, const char *name, int len,
807 const char *reset, const char *set)
809 fprintf(file, " %s%s%-*s%s |", set, prefix, len, name, reset);
812 static void show_graph(FILE *file, char ch, int cnt, const char *set, const char *reset)
814 if (cnt <= 0)
815 return;
816 fprintf(file, "%s", set);
817 while (cnt--)
818 putc(ch, file);
819 fprintf(file, "%s", reset);
822 static void fill_print_name(struct diffstat_file *file)
824 char *pname;
826 if (file->print_name)
827 return;
829 if (!file->is_renamed) {
830 struct strbuf buf = STRBUF_INIT;
831 if (quote_c_style(file->name, &buf, NULL, 0)) {
832 pname = strbuf_detach(&buf, NULL);
833 } else {
834 pname = file->name;
835 strbuf_release(&buf);
837 } else {
838 pname = pprint_rename(file->from_name, file->name);
840 file->print_name = pname;
843 static void show_stats(struct diffstat_t* data, struct diff_options *options)
845 int i, len, add, del, total, adds = 0, dels = 0;
846 int max_change = 0, max_len = 0;
847 int total_files = data->nr;
848 int width, name_width;
849 const char *reset, *set, *add_c, *del_c;
851 if (data->nr == 0)
852 return;
854 width = options->stat_width ? options->stat_width : 80;
855 name_width = options->stat_name_width ? options->stat_name_width : 50;
857 /* Sanity: give at least 5 columns to the graph,
858 * but leave at least 10 columns for the name.
860 if (width < 25)
861 width = 25;
862 if (name_width < 10)
863 name_width = 10;
864 else if (width < name_width + 15)
865 name_width = width - 15;
867 /* Find the longest filename and max number of changes */
868 reset = diff_get_color_opt(options, DIFF_RESET);
869 set = diff_get_color_opt(options, DIFF_PLAIN);
870 add_c = diff_get_color_opt(options, DIFF_FILE_NEW);
871 del_c = diff_get_color_opt(options, DIFF_FILE_OLD);
873 for (i = 0; i < data->nr; i++) {
874 struct diffstat_file *file = data->files[i];
875 int change = file->added + file->deleted;
876 fill_print_name(file);
877 len = strlen(file->print_name);
878 if (max_len < len)
879 max_len = len;
881 if (file->is_binary || file->is_unmerged)
882 continue;
883 if (max_change < change)
884 max_change = change;
887 /* Compute the width of the graph part;
888 * 10 is for one blank at the beginning of the line plus
889 * " | count " between the name and the graph.
891 * From here on, name_width is the width of the name area,
892 * and width is the width of the graph area.
894 name_width = (name_width < max_len) ? name_width : max_len;
895 if (width < (name_width + 10) + max_change)
896 width = width - (name_width + 10);
897 else
898 width = max_change;
900 for (i = 0; i < data->nr; i++) {
901 const char *prefix = "";
902 char *name = data->files[i]->print_name;
903 int added = data->files[i]->added;
904 int deleted = data->files[i]->deleted;
905 int name_len;
908 * "scale" the filename
910 len = name_width;
911 name_len = strlen(name);
912 if (name_width < name_len) {
913 char *slash;
914 prefix = "...";
915 len -= 3;
916 name += name_len - len;
917 slash = strchr(name, '/');
918 if (slash)
919 name = slash;
922 if (data->files[i]->is_binary) {
923 show_name(options->file, prefix, name, len, reset, set);
924 fprintf(options->file, " Bin ");
925 fprintf(options->file, "%s%d%s", del_c, deleted, reset);
926 fprintf(options->file, " -> ");
927 fprintf(options->file, "%s%d%s", add_c, added, reset);
928 fprintf(options->file, " bytes");
929 fprintf(options->file, "\n");
930 continue;
932 else if (data->files[i]->is_unmerged) {
933 show_name(options->file, prefix, name, len, reset, set);
934 fprintf(options->file, " Unmerged\n");
935 continue;
937 else if (!data->files[i]->is_renamed &&
938 (added + deleted == 0)) {
939 total_files--;
940 continue;
944 * scale the add/delete
946 add = added;
947 del = deleted;
948 total = add + del;
949 adds += add;
950 dels += del;
952 if (width <= max_change) {
953 add = scale_linear(add, width, max_change);
954 del = scale_linear(del, width, max_change);
955 total = add + del;
957 show_name(options->file, prefix, name, len, reset, set);
958 fprintf(options->file, "%5d%s", added + deleted,
959 added + deleted ? " " : "");
960 show_graph(options->file, '+', add, add_c, reset);
961 show_graph(options->file, '-', del, del_c, reset);
962 fprintf(options->file, "\n");
964 fprintf(options->file,
965 "%s %d files changed, %d insertions(+), %d deletions(-)%s\n",
966 set, total_files, adds, dels, reset);
969 static void show_shortstats(struct diffstat_t* data, struct diff_options *options)
971 int i, adds = 0, dels = 0, total_files = data->nr;
973 if (data->nr == 0)
974 return;
976 for (i = 0; i < data->nr; i++) {
977 if (!data->files[i]->is_binary &&
978 !data->files[i]->is_unmerged) {
979 int added = data->files[i]->added;
980 int deleted= data->files[i]->deleted;
981 if (!data->files[i]->is_renamed &&
982 (added + deleted == 0)) {
983 total_files--;
984 } else {
985 adds += added;
986 dels += deleted;
990 fprintf(options->file, " %d files changed, %d insertions(+), %d deletions(-)\n",
991 total_files, adds, dels);
994 static void show_numstat(struct diffstat_t* data, struct diff_options *options)
996 int i;
998 if (data->nr == 0)
999 return;
1001 for (i = 0; i < data->nr; i++) {
1002 struct diffstat_file *file = data->files[i];
1004 if (file->is_binary)
1005 fprintf(options->file, "-\t-\t");
1006 else
1007 fprintf(options->file,
1008 "%d\t%d\t", file->added, file->deleted);
1009 if (options->line_termination) {
1010 fill_print_name(file);
1011 if (!file->is_renamed)
1012 write_name_quoted(file->name, options->file,
1013 options->line_termination);
1014 else {
1015 fputs(file->print_name, options->file);
1016 putc(options->line_termination, options->file);
1018 } else {
1019 if (file->is_renamed) {
1020 putc('\0', options->file);
1021 write_name_quoted(file->from_name, options->file, '\0');
1023 write_name_quoted(file->name, options->file, '\0');
1028 struct dirstat_file {
1029 const char *name;
1030 unsigned long changed;
1033 struct dirstat_dir {
1034 struct dirstat_file *files;
1035 int alloc, nr, percent, cumulative;
1038 static long gather_dirstat(FILE *file, struct dirstat_dir *dir, unsigned long changed, const char *base, int baselen)
1040 unsigned long this_dir = 0;
1041 unsigned int sources = 0;
1043 while (dir->nr) {
1044 struct dirstat_file *f = dir->files;
1045 int namelen = strlen(f->name);
1046 unsigned long this;
1047 char *slash;
1049 if (namelen < baselen)
1050 break;
1051 if (memcmp(f->name, base, baselen))
1052 break;
1053 slash = strchr(f->name + baselen, '/');
1054 if (slash) {
1055 int newbaselen = slash + 1 - f->name;
1056 this = gather_dirstat(file, dir, changed, f->name, newbaselen);
1057 sources++;
1058 } else {
1059 this = f->changed;
1060 dir->files++;
1061 dir->nr--;
1062 sources += 2;
1064 this_dir += this;
1068 * We don't report dirstat's for
1069 * - the top level
1070 * - or cases where everything came from a single directory
1071 * under this directory (sources == 1).
1073 if (baselen && sources != 1) {
1074 int permille = this_dir * 1000 / changed;
1075 if (permille) {
1076 int percent = permille / 10;
1077 if (percent >= dir->percent) {
1078 fprintf(file, "%4d.%01d%% %.*s\n", percent, permille % 10, baselen, base);
1079 if (!dir->cumulative)
1080 return 0;
1084 return this_dir;
1087 static int dirstat_compare(const void *_a, const void *_b)
1089 const struct dirstat_file *a = _a;
1090 const struct dirstat_file *b = _b;
1091 return strcmp(a->name, b->name);
1094 static void show_dirstat(struct diff_options *options)
1096 int i;
1097 unsigned long changed;
1098 struct dirstat_dir dir;
1099 struct diff_queue_struct *q = &diff_queued_diff;
1101 dir.files = NULL;
1102 dir.alloc = 0;
1103 dir.nr = 0;
1104 dir.percent = options->dirstat_percent;
1105 dir.cumulative = DIFF_OPT_TST(options, DIRSTAT_CUMULATIVE);
1107 changed = 0;
1108 for (i = 0; i < q->nr; i++) {
1109 struct diff_filepair *p = q->queue[i];
1110 const char *name;
1111 unsigned long copied, added, damage;
1113 name = p->one->path ? p->one->path : p->two->path;
1115 if (DIFF_FILE_VALID(p->one) && DIFF_FILE_VALID(p->two)) {
1116 diff_populate_filespec(p->one, 0);
1117 diff_populate_filespec(p->two, 0);
1118 diffcore_count_changes(p->one, p->two, NULL, NULL, 0,
1119 &copied, &added);
1120 diff_free_filespec_data(p->one);
1121 diff_free_filespec_data(p->two);
1122 } else if (DIFF_FILE_VALID(p->one)) {
1123 diff_populate_filespec(p->one, 1);
1124 copied = added = 0;
1125 diff_free_filespec_data(p->one);
1126 } else if (DIFF_FILE_VALID(p->two)) {
1127 diff_populate_filespec(p->two, 1);
1128 copied = 0;
1129 added = p->two->size;
1130 diff_free_filespec_data(p->two);
1131 } else
1132 continue;
1135 * Original minus copied is the removed material,
1136 * added is the new material. They are both damages
1137 * made to the preimage. In --dirstat-by-file mode, count
1138 * damaged files, not damaged lines. This is done by
1139 * counting only a single damaged line per file.
1141 damage = (p->one->size - copied) + added;
1142 if (DIFF_OPT_TST(options, DIRSTAT_BY_FILE) && damage > 0)
1143 damage = 1;
1145 ALLOC_GROW(dir.files, dir.nr + 1, dir.alloc);
1146 dir.files[dir.nr].name = name;
1147 dir.files[dir.nr].changed = damage;
1148 changed += damage;
1149 dir.nr++;
1152 /* This can happen even with many files, if everything was renames */
1153 if (!changed)
1154 return;
1156 /* Show all directories with more than x% of the changes */
1157 qsort(dir.files, dir.nr, sizeof(dir.files[0]), dirstat_compare);
1158 gather_dirstat(options->file, &dir, changed, "", 0);
1161 static void free_diffstat_info(struct diffstat_t *diffstat)
1163 int i;
1164 for (i = 0; i < diffstat->nr; i++) {
1165 struct diffstat_file *f = diffstat->files[i];
1166 if (f->name != f->print_name)
1167 free(f->print_name);
1168 free(f->name);
1169 free(f->from_name);
1170 free(f);
1172 free(diffstat->files);
1175 struct checkdiff_t {
1176 const char *filename;
1177 int lineno;
1178 struct diff_options *o;
1179 unsigned ws_rule;
1180 unsigned status;
1181 int trailing_blanks_start;
1184 static int is_conflict_marker(const char *line, unsigned long len)
1186 char firstchar;
1187 int cnt;
1189 if (len < 8)
1190 return 0;
1191 firstchar = line[0];
1192 switch (firstchar) {
1193 case '=': case '>': case '<':
1194 break;
1195 default:
1196 return 0;
1198 for (cnt = 1; cnt < 7; cnt++)
1199 if (line[cnt] != firstchar)
1200 return 0;
1201 /* line[0] thru line[6] are same as firstchar */
1202 if (firstchar == '=') {
1203 /* divider between ours and theirs? */
1204 if (len != 8 || line[7] != '\n')
1205 return 0;
1206 } else if (len < 8 || !isspace(line[7])) {
1207 /* not divider before ours nor after theirs */
1208 return 0;
1210 return 1;
1213 static void checkdiff_consume(void *priv, char *line, unsigned long len)
1215 struct checkdiff_t *data = priv;
1216 int color_diff = DIFF_OPT_TST(data->o, COLOR_DIFF);
1217 const char *ws = diff_get_color(color_diff, DIFF_WHITESPACE);
1218 const char *reset = diff_get_color(color_diff, DIFF_RESET);
1219 const char *set = diff_get_color(color_diff, DIFF_FILE_NEW);
1220 char *err;
1222 if (line[0] == '+') {
1223 unsigned bad;
1224 data->lineno++;
1225 if (!ws_blank_line(line + 1, len - 1, data->ws_rule))
1226 data->trailing_blanks_start = 0;
1227 else if (!data->trailing_blanks_start)
1228 data->trailing_blanks_start = data->lineno;
1229 if (is_conflict_marker(line + 1, len - 1)) {
1230 data->status |= 1;
1231 fprintf(data->o->file,
1232 "%s:%d: leftover conflict marker\n",
1233 data->filename, data->lineno);
1235 bad = ws_check(line + 1, len - 1, data->ws_rule);
1236 if (!bad)
1237 return;
1238 data->status |= bad;
1239 err = whitespace_error_string(bad);
1240 fprintf(data->o->file, "%s:%d: %s.\n",
1241 data->filename, data->lineno, err);
1242 free(err);
1243 emit_line(data->o->file, set, reset, line, 1);
1244 ws_check_emit(line + 1, len - 1, data->ws_rule,
1245 data->o->file, set, reset, ws);
1246 } else if (line[0] == ' ') {
1247 data->lineno++;
1248 data->trailing_blanks_start = 0;
1249 } else if (line[0] == '@') {
1250 char *plus = strchr(line, '+');
1251 if (plus)
1252 data->lineno = strtol(plus, NULL, 10) - 1;
1253 else
1254 die("invalid diff");
1255 data->trailing_blanks_start = 0;
1259 static unsigned char *deflate_it(char *data,
1260 unsigned long size,
1261 unsigned long *result_size)
1263 int bound;
1264 unsigned char *deflated;
1265 z_stream stream;
1267 memset(&stream, 0, sizeof(stream));
1268 deflateInit(&stream, zlib_compression_level);
1269 bound = deflateBound(&stream, size);
1270 deflated = xmalloc(bound);
1271 stream.next_out = deflated;
1272 stream.avail_out = bound;
1274 stream.next_in = (unsigned char *)data;
1275 stream.avail_in = size;
1276 while (deflate(&stream, Z_FINISH) == Z_OK)
1277 ; /* nothing */
1278 deflateEnd(&stream);
1279 *result_size = stream.total_out;
1280 return deflated;
1283 static void emit_binary_diff_body(FILE *file, mmfile_t *one, mmfile_t *two)
1285 void *cp;
1286 void *delta;
1287 void *deflated;
1288 void *data;
1289 unsigned long orig_size;
1290 unsigned long delta_size;
1291 unsigned long deflate_size;
1292 unsigned long data_size;
1294 /* We could do deflated delta, or we could do just deflated two,
1295 * whichever is smaller.
1297 delta = NULL;
1298 deflated = deflate_it(two->ptr, two->size, &deflate_size);
1299 if (one->size && two->size) {
1300 delta = diff_delta(one->ptr, one->size,
1301 two->ptr, two->size,
1302 &delta_size, deflate_size);
1303 if (delta) {
1304 void *to_free = delta;
1305 orig_size = delta_size;
1306 delta = deflate_it(delta, delta_size, &delta_size);
1307 free(to_free);
1311 if (delta && delta_size < deflate_size) {
1312 fprintf(file, "delta %lu\n", orig_size);
1313 free(deflated);
1314 data = delta;
1315 data_size = delta_size;
1317 else {
1318 fprintf(file, "literal %lu\n", two->size);
1319 free(delta);
1320 data = deflated;
1321 data_size = deflate_size;
1324 /* emit data encoded in base85 */
1325 cp = data;
1326 while (data_size) {
1327 int bytes = (52 < data_size) ? 52 : data_size;
1328 char line[70];
1329 data_size -= bytes;
1330 if (bytes <= 26)
1331 line[0] = bytes + 'A' - 1;
1332 else
1333 line[0] = bytes - 26 + 'a' - 1;
1334 encode_85(line + 1, cp, bytes);
1335 cp = (char *) cp + bytes;
1336 fputs(line, file);
1337 fputc('\n', file);
1339 fprintf(file, "\n");
1340 free(data);
1343 static void emit_binary_diff(FILE *file, mmfile_t *one, mmfile_t *two)
1345 fprintf(file, "GIT binary patch\n");
1346 emit_binary_diff_body(file, one, two);
1347 emit_binary_diff_body(file, two, one);
1350 static void diff_filespec_load_driver(struct diff_filespec *one)
1352 if (!one->driver)
1353 one->driver = userdiff_find_by_path(one->path);
1354 if (!one->driver)
1355 one->driver = userdiff_find_by_name("default");
1358 int diff_filespec_is_binary(struct diff_filespec *one)
1360 if (one->is_binary == -1) {
1361 diff_filespec_load_driver(one);
1362 if (one->driver->binary != -1)
1363 one->is_binary = one->driver->binary;
1364 else {
1365 if (!one->data && DIFF_FILE_VALID(one))
1366 diff_populate_filespec(one, 0);
1367 if (one->data)
1368 one->is_binary = buffer_is_binary(one->data,
1369 one->size);
1370 if (one->is_binary == -1)
1371 one->is_binary = 0;
1374 return one->is_binary;
1377 static const struct userdiff_funcname *diff_funcname_pattern(struct diff_filespec *one)
1379 diff_filespec_load_driver(one);
1380 return one->driver->funcname.pattern ? &one->driver->funcname : NULL;
1383 void diff_set_mnemonic_prefix(struct diff_options *options, const char *a, const char *b)
1385 if (!options->a_prefix)
1386 options->a_prefix = a;
1387 if (!options->b_prefix)
1388 options->b_prefix = b;
1391 static const char *get_textconv(struct diff_filespec *one)
1393 if (!DIFF_FILE_VALID(one))
1394 return NULL;
1395 if (!S_ISREG(one->mode))
1396 return NULL;
1397 diff_filespec_load_driver(one);
1398 return one->driver->textconv;
1401 static void builtin_diff(const char *name_a,
1402 const char *name_b,
1403 struct diff_filespec *one,
1404 struct diff_filespec *two,
1405 const char *xfrm_msg,
1406 struct diff_options *o,
1407 int complete_rewrite)
1409 mmfile_t mf1, mf2;
1410 const char *lbl[2];
1411 char *a_one, *b_two;
1412 const char *set = diff_get_color_opt(o, DIFF_METAINFO);
1413 const char *reset = diff_get_color_opt(o, DIFF_RESET);
1414 const char *a_prefix, *b_prefix;
1415 const char *textconv_one = NULL, *textconv_two = NULL;
1417 if (DIFF_OPT_TST(o, ALLOW_TEXTCONV)) {
1418 textconv_one = get_textconv(one);
1419 textconv_two = get_textconv(two);
1422 diff_set_mnemonic_prefix(o, "a/", "b/");
1423 if (DIFF_OPT_TST(o, REVERSE_DIFF)) {
1424 a_prefix = o->b_prefix;
1425 b_prefix = o->a_prefix;
1426 } else {
1427 a_prefix = o->a_prefix;
1428 b_prefix = o->b_prefix;
1431 /* Never use a non-valid filename anywhere if at all possible */
1432 name_a = DIFF_FILE_VALID(one) ? name_a : name_b;
1433 name_b = DIFF_FILE_VALID(two) ? name_b : name_a;
1435 a_one = quote_two(a_prefix, name_a + (*name_a == '/'));
1436 b_two = quote_two(b_prefix, name_b + (*name_b == '/'));
1437 lbl[0] = DIFF_FILE_VALID(one) ? a_one : "/dev/null";
1438 lbl[1] = DIFF_FILE_VALID(two) ? b_two : "/dev/null";
1439 fprintf(o->file, "%sdiff --git %s %s%s\n", set, a_one, b_two, reset);
1440 if (lbl[0][0] == '/') {
1441 /* /dev/null */
1442 fprintf(o->file, "%snew file mode %06o%s\n", set, two->mode, reset);
1443 if (xfrm_msg && xfrm_msg[0])
1444 fprintf(o->file, "%s%s%s\n", set, xfrm_msg, reset);
1446 else if (lbl[1][0] == '/') {
1447 fprintf(o->file, "%sdeleted file mode %06o%s\n", set, one->mode, reset);
1448 if (xfrm_msg && xfrm_msg[0])
1449 fprintf(o->file, "%s%s%s\n", set, xfrm_msg, reset);
1451 else {
1452 if (one->mode != two->mode) {
1453 fprintf(o->file, "%sold mode %06o%s\n", set, one->mode, reset);
1454 fprintf(o->file, "%snew mode %06o%s\n", set, two->mode, reset);
1456 if (xfrm_msg && xfrm_msg[0])
1457 fprintf(o->file, "%s%s%s\n", set, xfrm_msg, reset);
1459 * we do not run diff between different kind
1460 * of objects.
1462 if ((one->mode ^ two->mode) & S_IFMT)
1463 goto free_ab_and_return;
1464 if (complete_rewrite &&
1465 (textconv_one || !diff_filespec_is_binary(one)) &&
1466 (textconv_two || !diff_filespec_is_binary(two))) {
1467 emit_rewrite_diff(name_a, name_b, one, two,
1468 textconv_one, textconv_two, o);
1469 o->found_changes = 1;
1470 goto free_ab_and_return;
1474 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
1475 die("unable to read files to diff");
1477 if (!DIFF_OPT_TST(o, TEXT) &&
1478 ( (diff_filespec_is_binary(one) && !textconv_one) ||
1479 (diff_filespec_is_binary(two) && !textconv_two) )) {
1480 /* Quite common confusing case */
1481 if (mf1.size == mf2.size &&
1482 !memcmp(mf1.ptr, mf2.ptr, mf1.size))
1483 goto free_ab_and_return;
1484 if (DIFF_OPT_TST(o, BINARY))
1485 emit_binary_diff(o->file, &mf1, &mf2);
1486 else
1487 fprintf(o->file, "Binary files %s and %s differ\n",
1488 lbl[0], lbl[1]);
1489 o->found_changes = 1;
1491 else {
1492 /* Crazy xdl interfaces.. */
1493 const char *diffopts = getenv("GIT_DIFF_OPTS");
1494 xpparam_t xpp;
1495 xdemitconf_t xecfg;
1496 xdemitcb_t ecb;
1497 struct emit_callback ecbdata;
1498 const struct userdiff_funcname *pe;
1500 if (textconv_one) {
1501 size_t size;
1502 mf1.ptr = run_textconv(textconv_one, one, &size);
1503 if (!mf1.ptr)
1504 die("unable to read files to diff");
1505 mf1.size = size;
1507 if (textconv_two) {
1508 size_t size;
1509 mf2.ptr = run_textconv(textconv_two, two, &size);
1510 if (!mf2.ptr)
1511 die("unable to read files to diff");
1512 mf2.size = size;
1515 pe = diff_funcname_pattern(one);
1516 if (!pe)
1517 pe = diff_funcname_pattern(two);
1519 memset(&xpp, 0, sizeof(xpp));
1520 memset(&xecfg, 0, sizeof(xecfg));
1521 memset(&ecbdata, 0, sizeof(ecbdata));
1522 ecbdata.label_path = lbl;
1523 ecbdata.color_diff = DIFF_OPT_TST(o, COLOR_DIFF);
1524 ecbdata.found_changesp = &o->found_changes;
1525 ecbdata.ws_rule = whitespace_rule(name_b ? name_b : name_a);
1526 ecbdata.file = o->file;
1527 xpp.flags = XDF_NEED_MINIMAL | o->xdl_opts;
1528 xecfg.ctxlen = o->context;
1529 xecfg.interhunkctxlen = o->interhunkcontext;
1530 xecfg.flags = XDL_EMIT_FUNCNAMES;
1531 if (pe)
1532 xdiff_set_find_func(&xecfg, pe->pattern, pe->cflags);
1533 if (!diffopts)
1535 else if (!prefixcmp(diffopts, "--unified="))
1536 xecfg.ctxlen = strtoul(diffopts + 10, NULL, 10);
1537 else if (!prefixcmp(diffopts, "-u"))
1538 xecfg.ctxlen = strtoul(diffopts + 2, NULL, 10);
1539 if (DIFF_OPT_TST(o, COLOR_DIFF_WORDS)) {
1540 ecbdata.diff_words =
1541 xcalloc(1, sizeof(struct diff_words_data));
1542 ecbdata.diff_words->file = o->file;
1543 if (o->word_regex) {
1544 ecbdata.diff_words->word_regex = (regex_t *)
1545 xmalloc(sizeof(regex_t));
1546 if (regcomp(ecbdata.diff_words->word_regex,
1547 o->word_regex, REG_EXTENDED))
1548 die ("Invalid regular expression: %s",
1549 o->word_regex);
1552 xdi_diff_outf(&mf1, &mf2, fn_out_consume, &ecbdata,
1553 &xpp, &xecfg, &ecb);
1554 if (DIFF_OPT_TST(o, COLOR_DIFF_WORDS))
1555 free_diff_words_data(&ecbdata);
1556 if (textconv_one)
1557 free(mf1.ptr);
1558 if (textconv_two)
1559 free(mf2.ptr);
1562 free_ab_and_return:
1563 diff_free_filespec_data(one);
1564 diff_free_filespec_data(two);
1565 free(a_one);
1566 free(b_two);
1567 return;
1570 static void builtin_diffstat(const char *name_a, const char *name_b,
1571 struct diff_filespec *one,
1572 struct diff_filespec *two,
1573 struct diffstat_t *diffstat,
1574 struct diff_options *o,
1575 int complete_rewrite)
1577 mmfile_t mf1, mf2;
1578 struct diffstat_file *data;
1580 data = diffstat_add(diffstat, name_a, name_b);
1582 if (!one || !two) {
1583 data->is_unmerged = 1;
1584 return;
1586 if (complete_rewrite) {
1587 diff_populate_filespec(one, 0);
1588 diff_populate_filespec(two, 0);
1589 data->deleted = count_lines(one->data, one->size);
1590 data->added = count_lines(two->data, two->size);
1591 goto free_and_return;
1593 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
1594 die("unable to read files to diff");
1596 if (diff_filespec_is_binary(one) || diff_filespec_is_binary(two)) {
1597 data->is_binary = 1;
1598 data->added = mf2.size;
1599 data->deleted = mf1.size;
1600 } else {
1601 /* Crazy xdl interfaces.. */
1602 xpparam_t xpp;
1603 xdemitconf_t xecfg;
1604 xdemitcb_t ecb;
1606 memset(&xpp, 0, sizeof(xpp));
1607 memset(&xecfg, 0, sizeof(xecfg));
1608 xpp.flags = XDF_NEED_MINIMAL | o->xdl_opts;
1609 xdi_diff_outf(&mf1, &mf2, diffstat_consume, diffstat,
1610 &xpp, &xecfg, &ecb);
1613 free_and_return:
1614 diff_free_filespec_data(one);
1615 diff_free_filespec_data(two);
1618 static void builtin_checkdiff(const char *name_a, const char *name_b,
1619 const char *attr_path,
1620 struct diff_filespec *one,
1621 struct diff_filespec *two,
1622 struct diff_options *o)
1624 mmfile_t mf1, mf2;
1625 struct checkdiff_t data;
1627 if (!two)
1628 return;
1630 memset(&data, 0, sizeof(data));
1631 data.filename = name_b ? name_b : name_a;
1632 data.lineno = 0;
1633 data.o = o;
1634 data.ws_rule = whitespace_rule(attr_path);
1636 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
1637 die("unable to read files to diff");
1640 * All the other codepaths check both sides, but not checking
1641 * the "old" side here is deliberate. We are checking the newly
1642 * introduced changes, and as long as the "new" side is text, we
1643 * can and should check what it introduces.
1645 if (diff_filespec_is_binary(two))
1646 goto free_and_return;
1647 else {
1648 /* Crazy xdl interfaces.. */
1649 xpparam_t xpp;
1650 xdemitconf_t xecfg;
1651 xdemitcb_t ecb;
1653 memset(&xpp, 0, sizeof(xpp));
1654 memset(&xecfg, 0, sizeof(xecfg));
1655 xecfg.ctxlen = 1; /* at least one context line */
1656 xpp.flags = XDF_NEED_MINIMAL;
1657 xdi_diff_outf(&mf1, &mf2, checkdiff_consume, &data,
1658 &xpp, &xecfg, &ecb);
1660 if ((data.ws_rule & WS_TRAILING_SPACE) &&
1661 data.trailing_blanks_start) {
1662 fprintf(o->file, "%s:%d: ends with blank lines.\n",
1663 data.filename, data.trailing_blanks_start);
1664 data.status = 1; /* report errors */
1667 free_and_return:
1668 diff_free_filespec_data(one);
1669 diff_free_filespec_data(two);
1670 if (data.status)
1671 DIFF_OPT_SET(o, CHECK_FAILED);
1674 struct diff_filespec *alloc_filespec(const char *path)
1676 int namelen = strlen(path);
1677 struct diff_filespec *spec = xmalloc(sizeof(*spec) + namelen + 1);
1679 memset(spec, 0, sizeof(*spec));
1680 spec->path = (char *)(spec + 1);
1681 memcpy(spec->path, path, namelen+1);
1682 spec->count = 1;
1683 spec->is_binary = -1;
1684 return spec;
1687 void free_filespec(struct diff_filespec *spec)
1689 if (!--spec->count) {
1690 diff_free_filespec_data(spec);
1691 free(spec);
1695 void fill_filespec(struct diff_filespec *spec, const unsigned char *sha1,
1696 unsigned short mode)
1698 if (mode) {
1699 spec->mode = canon_mode(mode);
1700 hashcpy(spec->sha1, sha1);
1701 spec->sha1_valid = !is_null_sha1(sha1);
1706 * Given a name and sha1 pair, if the index tells us the file in
1707 * the work tree has that object contents, return true, so that
1708 * prepare_temp_file() does not have to inflate and extract.
1710 static int reuse_worktree_file(const char *name, const unsigned char *sha1, int want_file)
1712 struct cache_entry *ce;
1713 struct stat st;
1714 int pos, len;
1716 /* We do not read the cache ourselves here, because the
1717 * benchmark with my previous version that always reads cache
1718 * shows that it makes things worse for diff-tree comparing
1719 * two linux-2.6 kernel trees in an already checked out work
1720 * tree. This is because most diff-tree comparisons deal with
1721 * only a small number of files, while reading the cache is
1722 * expensive for a large project, and its cost outweighs the
1723 * savings we get by not inflating the object to a temporary
1724 * file. Practically, this code only helps when we are used
1725 * by diff-cache --cached, which does read the cache before
1726 * calling us.
1728 if (!active_cache)
1729 return 0;
1731 /* We want to avoid the working directory if our caller
1732 * doesn't need the data in a normal file, this system
1733 * is rather slow with its stat/open/mmap/close syscalls,
1734 * and the object is contained in a pack file. The pack
1735 * is probably already open and will be faster to obtain
1736 * the data through than the working directory. Loose
1737 * objects however would tend to be slower as they need
1738 * to be individually opened and inflated.
1740 if (!FAST_WORKING_DIRECTORY && !want_file && has_sha1_pack(sha1, NULL))
1741 return 0;
1743 len = strlen(name);
1744 pos = cache_name_pos(name, len);
1745 if (pos < 0)
1746 return 0;
1747 ce = active_cache[pos];
1750 * This is not the sha1 we are looking for, or
1751 * unreusable because it is not a regular file.
1753 if (hashcmp(sha1, ce->sha1) || !S_ISREG(ce->ce_mode))
1754 return 0;
1757 * If ce matches the file in the work tree, we can reuse it.
1759 if (ce_uptodate(ce) ||
1760 (!lstat(name, &st) && !ce_match_stat(ce, &st, 0)))
1761 return 1;
1763 return 0;
1766 static int populate_from_stdin(struct diff_filespec *s)
1768 struct strbuf buf = STRBUF_INIT;
1769 size_t size = 0;
1771 if (strbuf_read(&buf, 0, 0) < 0)
1772 return error("error while reading from stdin %s",
1773 strerror(errno));
1775 s->should_munmap = 0;
1776 s->data = strbuf_detach(&buf, &size);
1777 s->size = size;
1778 s->should_free = 1;
1779 return 0;
1782 static int diff_populate_gitlink(struct diff_filespec *s, int size_only)
1784 int len;
1785 char *data = xmalloc(100);
1786 len = snprintf(data, 100,
1787 "Subproject commit %s\n", sha1_to_hex(s->sha1));
1788 s->data = data;
1789 s->size = len;
1790 s->should_free = 1;
1791 if (size_only) {
1792 s->data = NULL;
1793 free(data);
1795 return 0;
1799 * While doing rename detection and pickaxe operation, we may need to
1800 * grab the data for the blob (or file) for our own in-core comparison.
1801 * diff_filespec has data and size fields for this purpose.
1803 int diff_populate_filespec(struct diff_filespec *s, int size_only)
1805 int err = 0;
1806 if (!DIFF_FILE_VALID(s))
1807 die("internal error: asking to populate invalid file.");
1808 if (S_ISDIR(s->mode))
1809 return -1;
1811 if (s->data)
1812 return 0;
1814 if (size_only && 0 < s->size)
1815 return 0;
1817 if (S_ISGITLINK(s->mode))
1818 return diff_populate_gitlink(s, size_only);
1820 if (!s->sha1_valid ||
1821 reuse_worktree_file(s->path, s->sha1, 0)) {
1822 struct strbuf buf = STRBUF_INIT;
1823 struct stat st;
1824 int fd;
1826 if (!strcmp(s->path, "-"))
1827 return populate_from_stdin(s);
1829 if (lstat(s->path, &st) < 0) {
1830 if (errno == ENOENT) {
1831 err_empty:
1832 err = -1;
1833 empty:
1834 s->data = (char *)"";
1835 s->size = 0;
1836 return err;
1839 s->size = xsize_t(st.st_size);
1840 if (!s->size)
1841 goto empty;
1842 if (S_ISLNK(st.st_mode)) {
1843 struct strbuf sb = STRBUF_INIT;
1845 if (strbuf_readlink(&sb, s->path, s->size))
1846 goto err_empty;
1847 s->size = sb.len;
1848 s->data = strbuf_detach(&sb, NULL);
1849 s->should_free = 1;
1850 return 0;
1852 if (size_only)
1853 return 0;
1854 fd = open(s->path, O_RDONLY);
1855 if (fd < 0)
1856 goto err_empty;
1857 s->data = xmmap(NULL, s->size, PROT_READ, MAP_PRIVATE, fd, 0);
1858 close(fd);
1859 s->should_munmap = 1;
1862 * Convert from working tree format to canonical git format
1864 if (convert_to_git(s->path, s->data, s->size, &buf, safe_crlf)) {
1865 size_t size = 0;
1866 munmap(s->data, s->size);
1867 s->should_munmap = 0;
1868 s->data = strbuf_detach(&buf, &size);
1869 s->size = size;
1870 s->should_free = 1;
1873 else {
1874 enum object_type type;
1875 if (size_only)
1876 type = sha1_object_info(s->sha1, &s->size);
1877 else {
1878 s->data = read_sha1_file(s->sha1, &type, &s->size);
1879 s->should_free = 1;
1882 return 0;
1885 void diff_free_filespec_blob(struct diff_filespec *s)
1887 if (s->should_free)
1888 free(s->data);
1889 else if (s->should_munmap)
1890 munmap(s->data, s->size);
1892 if (s->should_free || s->should_munmap) {
1893 s->should_free = s->should_munmap = 0;
1894 s->data = NULL;
1898 void diff_free_filespec_data(struct diff_filespec *s)
1900 diff_free_filespec_blob(s);
1901 free(s->cnt_data);
1902 s->cnt_data = NULL;
1905 static void prep_temp_blob(struct diff_tempfile *temp,
1906 void *blob,
1907 unsigned long size,
1908 const unsigned char *sha1,
1909 int mode)
1911 int fd;
1913 fd = git_mkstemp(temp->tmp_path, PATH_MAX, ".diff_XXXXXX");
1914 if (fd < 0)
1915 die("unable to create temp-file: %s", strerror(errno));
1916 if (write_in_full(fd, blob, size) != size)
1917 die("unable to write temp-file");
1918 close(fd);
1919 temp->name = temp->tmp_path;
1920 strcpy(temp->hex, sha1_to_hex(sha1));
1921 temp->hex[40] = 0;
1922 sprintf(temp->mode, "%06o", mode);
1925 static void prepare_temp_file(const char *name,
1926 struct diff_tempfile *temp,
1927 struct diff_filespec *one)
1929 if (!DIFF_FILE_VALID(one)) {
1930 not_a_valid_file:
1931 /* A '-' entry produces this for file-2, and
1932 * a '+' entry produces this for file-1.
1934 temp->name = "/dev/null";
1935 strcpy(temp->hex, ".");
1936 strcpy(temp->mode, ".");
1937 return;
1940 if (!one->sha1_valid ||
1941 reuse_worktree_file(name, one->sha1, 1)) {
1942 struct stat st;
1943 if (lstat(name, &st) < 0) {
1944 if (errno == ENOENT)
1945 goto not_a_valid_file;
1946 die("stat(%s): %s", name, strerror(errno));
1948 if (S_ISLNK(st.st_mode)) {
1949 int ret;
1950 char buf[PATH_MAX + 1]; /* ought to be SYMLINK_MAX */
1951 ret = readlink(name, buf, sizeof(buf));
1952 if (ret < 0)
1953 die("readlink(%s)", name);
1954 if (ret == sizeof(buf))
1955 die("symlink too long: %s", name);
1956 prep_temp_blob(temp, buf, ret,
1957 (one->sha1_valid ?
1958 one->sha1 : null_sha1),
1959 (one->sha1_valid ?
1960 one->mode : S_IFLNK));
1962 else {
1963 /* we can borrow from the file in the work tree */
1964 temp->name = name;
1965 if (!one->sha1_valid)
1966 strcpy(temp->hex, sha1_to_hex(null_sha1));
1967 else
1968 strcpy(temp->hex, sha1_to_hex(one->sha1));
1969 /* Even though we may sometimes borrow the
1970 * contents from the work tree, we always want
1971 * one->mode. mode is trustworthy even when
1972 * !(one->sha1_valid), as long as
1973 * DIFF_FILE_VALID(one).
1975 sprintf(temp->mode, "%06o", one->mode);
1977 return;
1979 else {
1980 if (diff_populate_filespec(one, 0))
1981 die("cannot read data blob for %s", one->path);
1982 prep_temp_blob(temp, one->data, one->size,
1983 one->sha1, one->mode);
1987 static void remove_tempfile(void)
1989 int i;
1991 for (i = 0; i < 2; i++)
1992 if (diff_temp[i].name == diff_temp[i].tmp_path) {
1993 unlink(diff_temp[i].name);
1994 diff_temp[i].name = NULL;
1998 static void remove_tempfile_on_signal(int signo)
2000 remove_tempfile();
2001 signal(SIGINT, SIG_DFL);
2002 raise(signo);
2005 /* An external diff command takes:
2007 * diff-cmd name infile1 infile1-sha1 infile1-mode \
2008 * infile2 infile2-sha1 infile2-mode [ rename-to ]
2011 static void run_external_diff(const char *pgm,
2012 const char *name,
2013 const char *other,
2014 struct diff_filespec *one,
2015 struct diff_filespec *two,
2016 const char *xfrm_msg,
2017 int complete_rewrite)
2019 const char *spawn_arg[10];
2020 struct diff_tempfile *temp = diff_temp;
2021 int retval;
2022 static int atexit_asked = 0;
2023 const char *othername;
2024 const char **arg = &spawn_arg[0];
2026 othername = (other? other : name);
2027 if (one && two) {
2028 prepare_temp_file(name, &temp[0], one);
2029 prepare_temp_file(othername, &temp[1], two);
2030 if (! atexit_asked &&
2031 (temp[0].name == temp[0].tmp_path ||
2032 temp[1].name == temp[1].tmp_path)) {
2033 atexit_asked = 1;
2034 atexit(remove_tempfile);
2036 signal(SIGINT, remove_tempfile_on_signal);
2039 if (one && two) {
2040 *arg++ = pgm;
2041 *arg++ = name;
2042 *arg++ = temp[0].name;
2043 *arg++ = temp[0].hex;
2044 *arg++ = temp[0].mode;
2045 *arg++ = temp[1].name;
2046 *arg++ = temp[1].hex;
2047 *arg++ = temp[1].mode;
2048 if (other) {
2049 *arg++ = other;
2050 *arg++ = xfrm_msg;
2052 } else {
2053 *arg++ = pgm;
2054 *arg++ = name;
2056 *arg = NULL;
2057 fflush(NULL);
2058 retval = run_command_v_opt(spawn_arg, 0);
2059 remove_tempfile();
2060 if (retval) {
2061 fprintf(stderr, "external diff died, stopping at %s.\n", name);
2062 exit(1);
2066 static void run_diff_cmd(const char *pgm,
2067 const char *name,
2068 const char *other,
2069 const char *attr_path,
2070 struct diff_filespec *one,
2071 struct diff_filespec *two,
2072 const char *xfrm_msg,
2073 struct diff_options *o,
2074 int complete_rewrite)
2076 if (!DIFF_OPT_TST(o, ALLOW_EXTERNAL))
2077 pgm = NULL;
2078 else {
2079 struct userdiff_driver *drv = userdiff_find_by_path(attr_path);
2080 if (drv && drv->external)
2081 pgm = drv->external;
2084 if (pgm) {
2085 run_external_diff(pgm, name, other, one, two, xfrm_msg,
2086 complete_rewrite);
2087 return;
2089 if (one && two)
2090 builtin_diff(name, other ? other : name,
2091 one, two, xfrm_msg, o, complete_rewrite);
2092 else
2093 fprintf(o->file, "* Unmerged path %s\n", name);
2096 static void diff_fill_sha1_info(struct diff_filespec *one)
2098 if (DIFF_FILE_VALID(one)) {
2099 if (!one->sha1_valid) {
2100 struct stat st;
2101 if (!strcmp(one->path, "-")) {
2102 hashcpy(one->sha1, null_sha1);
2103 return;
2105 if (lstat(one->path, &st) < 0)
2106 die("stat %s", one->path);
2107 if (index_path(one->sha1, one->path, &st, 0))
2108 die("cannot hash %s", one->path);
2111 else
2112 hashclr(one->sha1);
2115 static int similarity_index(struct diff_filepair *p)
2117 return p->score * 100 / MAX_SCORE;
2120 static void strip_prefix(int prefix_length, const char **namep, const char **otherp)
2122 /* Strip the prefix but do not molest /dev/null and absolute paths */
2123 if (*namep && **namep != '/')
2124 *namep += prefix_length;
2125 if (*otherp && **otherp != '/')
2126 *otherp += prefix_length;
2129 static void run_diff(struct diff_filepair *p, struct diff_options *o)
2131 const char *pgm = external_diff();
2132 struct strbuf msg;
2133 char *xfrm_msg;
2134 struct diff_filespec *one = p->one;
2135 struct diff_filespec *two = p->two;
2136 const char *name;
2137 const char *other;
2138 const char *attr_path;
2139 int complete_rewrite = 0;
2141 name = p->one->path;
2142 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
2143 attr_path = name;
2144 if (o->prefix_length)
2145 strip_prefix(o->prefix_length, &name, &other);
2147 if (DIFF_PAIR_UNMERGED(p)) {
2148 run_diff_cmd(pgm, name, NULL, attr_path,
2149 NULL, NULL, NULL, o, 0);
2150 return;
2153 diff_fill_sha1_info(one);
2154 diff_fill_sha1_info(two);
2156 strbuf_init(&msg, PATH_MAX * 2 + 300);
2157 switch (p->status) {
2158 case DIFF_STATUS_COPIED:
2159 strbuf_addf(&msg, "similarity index %d%%", similarity_index(p));
2160 strbuf_addstr(&msg, "\ncopy from ");
2161 quote_c_style(name, &msg, NULL, 0);
2162 strbuf_addstr(&msg, "\ncopy to ");
2163 quote_c_style(other, &msg, NULL, 0);
2164 strbuf_addch(&msg, '\n');
2165 break;
2166 case DIFF_STATUS_RENAMED:
2167 strbuf_addf(&msg, "similarity index %d%%", similarity_index(p));
2168 strbuf_addstr(&msg, "\nrename from ");
2169 quote_c_style(name, &msg, NULL, 0);
2170 strbuf_addstr(&msg, "\nrename to ");
2171 quote_c_style(other, &msg, NULL, 0);
2172 strbuf_addch(&msg, '\n');
2173 break;
2174 case DIFF_STATUS_MODIFIED:
2175 if (p->score) {
2176 strbuf_addf(&msg, "dissimilarity index %d%%\n",
2177 similarity_index(p));
2178 complete_rewrite = 1;
2179 break;
2181 /* fallthru */
2182 default:
2183 /* nothing */
2187 if (hashcmp(one->sha1, two->sha1)) {
2188 int abbrev = DIFF_OPT_TST(o, FULL_INDEX) ? 40 : DEFAULT_ABBREV;
2190 if (DIFF_OPT_TST(o, BINARY)) {
2191 mmfile_t mf;
2192 if ((!fill_mmfile(&mf, one) && diff_filespec_is_binary(one)) ||
2193 (!fill_mmfile(&mf, two) && diff_filespec_is_binary(two)))
2194 abbrev = 40;
2196 strbuf_addf(&msg, "index %.*s..%.*s",
2197 abbrev, sha1_to_hex(one->sha1),
2198 abbrev, sha1_to_hex(two->sha1));
2199 if (one->mode == two->mode)
2200 strbuf_addf(&msg, " %06o", one->mode);
2201 strbuf_addch(&msg, '\n');
2204 if (msg.len)
2205 strbuf_setlen(&msg, msg.len - 1);
2206 xfrm_msg = msg.len ? msg.buf : NULL;
2208 if (!pgm &&
2209 DIFF_FILE_VALID(one) && DIFF_FILE_VALID(two) &&
2210 (S_IFMT & one->mode) != (S_IFMT & two->mode)) {
2211 /* a filepair that changes between file and symlink
2212 * needs to be split into deletion and creation.
2214 struct diff_filespec *null = alloc_filespec(two->path);
2215 run_diff_cmd(NULL, name, other, attr_path,
2216 one, null, xfrm_msg, o, 0);
2217 free(null);
2218 null = alloc_filespec(one->path);
2219 run_diff_cmd(NULL, name, other, attr_path,
2220 null, two, xfrm_msg, o, 0);
2221 free(null);
2223 else
2224 run_diff_cmd(pgm, name, other, attr_path,
2225 one, two, xfrm_msg, o, complete_rewrite);
2227 strbuf_release(&msg);
2230 static void run_diffstat(struct diff_filepair *p, struct diff_options *o,
2231 struct diffstat_t *diffstat)
2233 const char *name;
2234 const char *other;
2235 int complete_rewrite = 0;
2237 if (DIFF_PAIR_UNMERGED(p)) {
2238 /* unmerged */
2239 builtin_diffstat(p->one->path, NULL, NULL, NULL, diffstat, o, 0);
2240 return;
2243 name = p->one->path;
2244 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
2246 if (o->prefix_length)
2247 strip_prefix(o->prefix_length, &name, &other);
2249 diff_fill_sha1_info(p->one);
2250 diff_fill_sha1_info(p->two);
2252 if (p->status == DIFF_STATUS_MODIFIED && p->score)
2253 complete_rewrite = 1;
2254 builtin_diffstat(name, other, p->one, p->two, diffstat, o, complete_rewrite);
2257 static void run_checkdiff(struct diff_filepair *p, struct diff_options *o)
2259 const char *name;
2260 const char *other;
2261 const char *attr_path;
2263 if (DIFF_PAIR_UNMERGED(p)) {
2264 /* unmerged */
2265 return;
2268 name = p->one->path;
2269 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
2270 attr_path = other ? other : name;
2272 if (o->prefix_length)
2273 strip_prefix(o->prefix_length, &name, &other);
2275 diff_fill_sha1_info(p->one);
2276 diff_fill_sha1_info(p->two);
2278 builtin_checkdiff(name, other, attr_path, p->one, p->two, o);
2281 void diff_setup(struct diff_options *options)
2283 memset(options, 0, sizeof(*options));
2285 options->file = stdout;
2287 options->line_termination = '\n';
2288 options->break_opt = -1;
2289 options->rename_limit = -1;
2290 options->dirstat_percent = 3;
2291 DIFF_OPT_CLR(options, DIRSTAT_CUMULATIVE);
2292 options->context = 3;
2294 options->change = diff_change;
2295 options->add_remove = diff_addremove;
2296 if (diff_use_color_default > 0)
2297 DIFF_OPT_SET(options, COLOR_DIFF);
2298 else
2299 DIFF_OPT_CLR(options, COLOR_DIFF);
2300 options->detect_rename = diff_detect_rename_default;
2302 if (!diff_mnemonic_prefix) {
2303 options->a_prefix = "a/";
2304 options->b_prefix = "b/";
2308 int diff_setup_done(struct diff_options *options)
2310 int count = 0;
2312 if (options->output_format & DIFF_FORMAT_NAME)
2313 count++;
2314 if (options->output_format & DIFF_FORMAT_NAME_STATUS)
2315 count++;
2316 if (options->output_format & DIFF_FORMAT_CHECKDIFF)
2317 count++;
2318 if (options->output_format & DIFF_FORMAT_NO_OUTPUT)
2319 count++;
2320 if (count > 1)
2321 die("--name-only, --name-status, --check and -s are mutually exclusive");
2323 if (DIFF_OPT_TST(options, FIND_COPIES_HARDER))
2324 options->detect_rename = DIFF_DETECT_COPY;
2326 if (!DIFF_OPT_TST(options, RELATIVE_NAME))
2327 options->prefix = NULL;
2328 if (options->prefix)
2329 options->prefix_length = strlen(options->prefix);
2330 else
2331 options->prefix_length = 0;
2333 if (options->output_format & (DIFF_FORMAT_NAME |
2334 DIFF_FORMAT_NAME_STATUS |
2335 DIFF_FORMAT_CHECKDIFF |
2336 DIFF_FORMAT_NO_OUTPUT))
2337 options->output_format &= ~(DIFF_FORMAT_RAW |
2338 DIFF_FORMAT_NUMSTAT |
2339 DIFF_FORMAT_DIFFSTAT |
2340 DIFF_FORMAT_SHORTSTAT |
2341 DIFF_FORMAT_DIRSTAT |
2342 DIFF_FORMAT_SUMMARY |
2343 DIFF_FORMAT_PATCH);
2346 * These cases always need recursive; we do not drop caller-supplied
2347 * recursive bits for other formats here.
2349 if (options->output_format & (DIFF_FORMAT_PATCH |
2350 DIFF_FORMAT_NUMSTAT |
2351 DIFF_FORMAT_DIFFSTAT |
2352 DIFF_FORMAT_SHORTSTAT |
2353 DIFF_FORMAT_DIRSTAT |
2354 DIFF_FORMAT_SUMMARY |
2355 DIFF_FORMAT_CHECKDIFF))
2356 DIFF_OPT_SET(options, RECURSIVE);
2358 * Also pickaxe would not work very well if you do not say recursive
2360 if (options->pickaxe)
2361 DIFF_OPT_SET(options, RECURSIVE);
2363 if (options->detect_rename && options->rename_limit < 0)
2364 options->rename_limit = diff_rename_limit_default;
2365 if (options->setup & DIFF_SETUP_USE_CACHE) {
2366 if (!active_cache)
2367 /* read-cache does not die even when it fails
2368 * so it is safe for us to do this here. Also
2369 * it does not smudge active_cache or active_nr
2370 * when it fails, so we do not have to worry about
2371 * cleaning it up ourselves either.
2373 read_cache();
2375 if (options->abbrev <= 0 || 40 < options->abbrev)
2376 options->abbrev = 40; /* full */
2379 * It does not make sense to show the first hit we happened
2380 * to have found. It does not make sense not to return with
2381 * exit code in such a case either.
2383 if (DIFF_OPT_TST(options, QUIET)) {
2384 options->output_format = DIFF_FORMAT_NO_OUTPUT;
2385 DIFF_OPT_SET(options, EXIT_WITH_STATUS);
2388 return 0;
2391 static int opt_arg(const char *arg, int arg_short, const char *arg_long, int *val)
2393 char c, *eq;
2394 int len;
2396 if (*arg != '-')
2397 return 0;
2398 c = *++arg;
2399 if (!c)
2400 return 0;
2401 if (c == arg_short) {
2402 c = *++arg;
2403 if (!c)
2404 return 1;
2405 if (val && isdigit(c)) {
2406 char *end;
2407 int n = strtoul(arg, &end, 10);
2408 if (*end)
2409 return 0;
2410 *val = n;
2411 return 1;
2413 return 0;
2415 if (c != '-')
2416 return 0;
2417 arg++;
2418 eq = strchr(arg, '=');
2419 if (eq)
2420 len = eq - arg;
2421 else
2422 len = strlen(arg);
2423 if (!len || strncmp(arg, arg_long, len))
2424 return 0;
2425 if (eq) {
2426 int n;
2427 char *end;
2428 if (!isdigit(*++eq))
2429 return 0;
2430 n = strtoul(eq, &end, 10);
2431 if (*end)
2432 return 0;
2433 *val = n;
2435 return 1;
2438 static int diff_scoreopt_parse(const char *opt);
2440 int diff_opt_parse(struct diff_options *options, const char **av, int ac)
2442 const char *arg = av[0];
2444 /* Output format options */
2445 if (!strcmp(arg, "-p") || !strcmp(arg, "-u"))
2446 options->output_format |= DIFF_FORMAT_PATCH;
2447 else if (opt_arg(arg, 'U', "unified", &options->context))
2448 options->output_format |= DIFF_FORMAT_PATCH;
2449 else if (!strcmp(arg, "--raw"))
2450 options->output_format |= DIFF_FORMAT_RAW;
2451 else if (!strcmp(arg, "--patch-with-raw"))
2452 options->output_format |= DIFF_FORMAT_PATCH | DIFF_FORMAT_RAW;
2453 else if (!strcmp(arg, "--numstat"))
2454 options->output_format |= DIFF_FORMAT_NUMSTAT;
2455 else if (!strcmp(arg, "--shortstat"))
2456 options->output_format |= DIFF_FORMAT_SHORTSTAT;
2457 else if (opt_arg(arg, 'X', "dirstat", &options->dirstat_percent))
2458 options->output_format |= DIFF_FORMAT_DIRSTAT;
2459 else if (!strcmp(arg, "--cumulative")) {
2460 options->output_format |= DIFF_FORMAT_DIRSTAT;
2461 DIFF_OPT_SET(options, DIRSTAT_CUMULATIVE);
2462 } else if (opt_arg(arg, 0, "dirstat-by-file",
2463 &options->dirstat_percent)) {
2464 options->output_format |= DIFF_FORMAT_DIRSTAT;
2465 DIFF_OPT_SET(options, DIRSTAT_BY_FILE);
2467 else if (!strcmp(arg, "--check"))
2468 options->output_format |= DIFF_FORMAT_CHECKDIFF;
2469 else if (!strcmp(arg, "--summary"))
2470 options->output_format |= DIFF_FORMAT_SUMMARY;
2471 else if (!strcmp(arg, "--patch-with-stat"))
2472 options->output_format |= DIFF_FORMAT_PATCH | DIFF_FORMAT_DIFFSTAT;
2473 else if (!strcmp(arg, "--name-only"))
2474 options->output_format |= DIFF_FORMAT_NAME;
2475 else if (!strcmp(arg, "--name-status"))
2476 options->output_format |= DIFF_FORMAT_NAME_STATUS;
2477 else if (!strcmp(arg, "-s"))
2478 options->output_format |= DIFF_FORMAT_NO_OUTPUT;
2479 else if (!prefixcmp(arg, "--stat")) {
2480 char *end;
2481 int width = options->stat_width;
2482 int name_width = options->stat_name_width;
2483 arg += 6;
2484 end = (char *)arg;
2486 switch (*arg) {
2487 case '-':
2488 if (!prefixcmp(arg, "-width="))
2489 width = strtoul(arg + 7, &end, 10);
2490 else if (!prefixcmp(arg, "-name-width="))
2491 name_width = strtoul(arg + 12, &end, 10);
2492 break;
2493 case '=':
2494 width = strtoul(arg+1, &end, 10);
2495 if (*end == ',')
2496 name_width = strtoul(end+1, &end, 10);
2499 /* Important! This checks all the error cases! */
2500 if (*end)
2501 return 0;
2502 options->output_format |= DIFF_FORMAT_DIFFSTAT;
2503 options->stat_name_width = name_width;
2504 options->stat_width = width;
2507 /* renames options */
2508 else if (!prefixcmp(arg, "-B")) {
2509 if ((options->break_opt = diff_scoreopt_parse(arg)) == -1)
2510 return -1;
2512 else if (!prefixcmp(arg, "-M")) {
2513 if ((options->rename_score = diff_scoreopt_parse(arg)) == -1)
2514 return -1;
2515 options->detect_rename = DIFF_DETECT_RENAME;
2517 else if (!prefixcmp(arg, "-C")) {
2518 if (options->detect_rename == DIFF_DETECT_COPY)
2519 DIFF_OPT_SET(options, FIND_COPIES_HARDER);
2520 if ((options->rename_score = diff_scoreopt_parse(arg)) == -1)
2521 return -1;
2522 options->detect_rename = DIFF_DETECT_COPY;
2524 else if (!strcmp(arg, "--no-renames"))
2525 options->detect_rename = 0;
2526 else if (!strcmp(arg, "--relative"))
2527 DIFF_OPT_SET(options, RELATIVE_NAME);
2528 else if (!prefixcmp(arg, "--relative=")) {
2529 DIFF_OPT_SET(options, RELATIVE_NAME);
2530 options->prefix = arg + 11;
2533 /* xdiff options */
2534 else if (!strcmp(arg, "-w") || !strcmp(arg, "--ignore-all-space"))
2535 options->xdl_opts |= XDF_IGNORE_WHITESPACE;
2536 else if (!strcmp(arg, "-b") || !strcmp(arg, "--ignore-space-change"))
2537 options->xdl_opts |= XDF_IGNORE_WHITESPACE_CHANGE;
2538 else if (!strcmp(arg, "--ignore-space-at-eol"))
2539 options->xdl_opts |= XDF_IGNORE_WHITESPACE_AT_EOL;
2541 /* flags options */
2542 else if (!strcmp(arg, "--binary")) {
2543 options->output_format |= DIFF_FORMAT_PATCH;
2544 DIFF_OPT_SET(options, BINARY);
2546 else if (!strcmp(arg, "--full-index"))
2547 DIFF_OPT_SET(options, FULL_INDEX);
2548 else if (!strcmp(arg, "-a") || !strcmp(arg, "--text"))
2549 DIFF_OPT_SET(options, TEXT);
2550 else if (!strcmp(arg, "-R"))
2551 DIFF_OPT_SET(options, REVERSE_DIFF);
2552 else if (!strcmp(arg, "--find-copies-harder"))
2553 DIFF_OPT_SET(options, FIND_COPIES_HARDER);
2554 else if (!strcmp(arg, "--follow"))
2555 DIFF_OPT_SET(options, FOLLOW_RENAMES);
2556 else if (!strcmp(arg, "--color"))
2557 DIFF_OPT_SET(options, COLOR_DIFF);
2558 else if (!strcmp(arg, "--no-color"))
2559 DIFF_OPT_CLR(options, COLOR_DIFF);
2560 else if (!strcmp(arg, "--color-words"))
2561 options->flags |= DIFF_OPT_COLOR_DIFF | DIFF_OPT_COLOR_DIFF_WORDS;
2562 else if (!prefixcmp(arg, "--color-words=")) {
2563 options->flags |= DIFF_OPT_COLOR_DIFF | DIFF_OPT_COLOR_DIFF_WORDS;
2564 options->word_regex = arg + 14;
2566 else if (!strcmp(arg, "--exit-code"))
2567 DIFF_OPT_SET(options, EXIT_WITH_STATUS);
2568 else if (!strcmp(arg, "--quiet"))
2569 DIFF_OPT_SET(options, QUIET);
2570 else if (!strcmp(arg, "--ext-diff"))
2571 DIFF_OPT_SET(options, ALLOW_EXTERNAL);
2572 else if (!strcmp(arg, "--no-ext-diff"))
2573 DIFF_OPT_CLR(options, ALLOW_EXTERNAL);
2574 else if (!strcmp(arg, "--textconv"))
2575 DIFF_OPT_SET(options, ALLOW_TEXTCONV);
2576 else if (!strcmp(arg, "--no-textconv"))
2577 DIFF_OPT_CLR(options, ALLOW_TEXTCONV);
2578 else if (!strcmp(arg, "--ignore-submodules"))
2579 DIFF_OPT_SET(options, IGNORE_SUBMODULES);
2581 /* misc options */
2582 else if (!strcmp(arg, "-z"))
2583 options->line_termination = 0;
2584 else if (!prefixcmp(arg, "-l"))
2585 options->rename_limit = strtoul(arg+2, NULL, 10);
2586 else if (!prefixcmp(arg, "-S"))
2587 options->pickaxe = arg + 2;
2588 else if (!strcmp(arg, "--pickaxe-all"))
2589 options->pickaxe_opts = DIFF_PICKAXE_ALL;
2590 else if (!strcmp(arg, "--pickaxe-regex"))
2591 options->pickaxe_opts = DIFF_PICKAXE_REGEX;
2592 else if (!prefixcmp(arg, "-O"))
2593 options->orderfile = arg + 2;
2594 else if (!prefixcmp(arg, "--diff-filter="))
2595 options->filter = arg + 14;
2596 else if (!strcmp(arg, "--abbrev"))
2597 options->abbrev = DEFAULT_ABBREV;
2598 else if (!prefixcmp(arg, "--abbrev=")) {
2599 options->abbrev = strtoul(arg + 9, NULL, 10);
2600 if (options->abbrev < MINIMUM_ABBREV)
2601 options->abbrev = MINIMUM_ABBREV;
2602 else if (40 < options->abbrev)
2603 options->abbrev = 40;
2605 else if (!prefixcmp(arg, "--src-prefix="))
2606 options->a_prefix = arg + 13;
2607 else if (!prefixcmp(arg, "--dst-prefix="))
2608 options->b_prefix = arg + 13;
2609 else if (!strcmp(arg, "--no-prefix"))
2610 options->a_prefix = options->b_prefix = "";
2611 else if (opt_arg(arg, '\0', "inter-hunk-context",
2612 &options->interhunkcontext))
2614 else if (!prefixcmp(arg, "--output=")) {
2615 options->file = fopen(arg + strlen("--output="), "w");
2616 options->close_file = 1;
2617 } else
2618 return 0;
2619 return 1;
2622 static int parse_num(const char **cp_p)
2624 unsigned long num, scale;
2625 int ch, dot;
2626 const char *cp = *cp_p;
2628 num = 0;
2629 scale = 1;
2630 dot = 0;
2631 for(;;) {
2632 ch = *cp;
2633 if ( !dot && ch == '.' ) {
2634 scale = 1;
2635 dot = 1;
2636 } else if ( ch == '%' ) {
2637 scale = dot ? scale*100 : 100;
2638 cp++; /* % is always at the end */
2639 break;
2640 } else if ( ch >= '0' && ch <= '9' ) {
2641 if ( scale < 100000 ) {
2642 scale *= 10;
2643 num = (num*10) + (ch-'0');
2645 } else {
2646 break;
2648 cp++;
2650 *cp_p = cp;
2652 /* user says num divided by scale and we say internally that
2653 * is MAX_SCORE * num / scale.
2655 return (int)((num >= scale) ? MAX_SCORE : (MAX_SCORE * num / scale));
2658 static int diff_scoreopt_parse(const char *opt)
2660 int opt1, opt2, cmd;
2662 if (*opt++ != '-')
2663 return -1;
2664 cmd = *opt++;
2665 if (cmd != 'M' && cmd != 'C' && cmd != 'B')
2666 return -1; /* that is not a -M, -C nor -B option */
2668 opt1 = parse_num(&opt);
2669 if (cmd != 'B')
2670 opt2 = 0;
2671 else {
2672 if (*opt == 0)
2673 opt2 = 0;
2674 else if (*opt != '/')
2675 return -1; /* we expect -B80/99 or -B80 */
2676 else {
2677 opt++;
2678 opt2 = parse_num(&opt);
2681 if (*opt != 0)
2682 return -1;
2683 return opt1 | (opt2 << 16);
2686 struct diff_queue_struct diff_queued_diff;
2688 void diff_q(struct diff_queue_struct *queue, struct diff_filepair *dp)
2690 if (queue->alloc <= queue->nr) {
2691 queue->alloc = alloc_nr(queue->alloc);
2692 queue->queue = xrealloc(queue->queue,
2693 sizeof(dp) * queue->alloc);
2695 queue->queue[queue->nr++] = dp;
2698 struct diff_filepair *diff_queue(struct diff_queue_struct *queue,
2699 struct diff_filespec *one,
2700 struct diff_filespec *two)
2702 struct diff_filepair *dp = xcalloc(1, sizeof(*dp));
2703 dp->one = one;
2704 dp->two = two;
2705 if (queue)
2706 diff_q(queue, dp);
2707 return dp;
2710 void diff_free_filepair(struct diff_filepair *p)
2712 free_filespec(p->one);
2713 free_filespec(p->two);
2714 free(p);
2717 /* This is different from find_unique_abbrev() in that
2718 * it stuffs the result with dots for alignment.
2720 const char *diff_unique_abbrev(const unsigned char *sha1, int len)
2722 int abblen;
2723 const char *abbrev;
2724 if (len == 40)
2725 return sha1_to_hex(sha1);
2727 abbrev = find_unique_abbrev(sha1, len);
2728 abblen = strlen(abbrev);
2729 if (abblen < 37) {
2730 static char hex[41];
2731 if (len < abblen && abblen <= len + 2)
2732 sprintf(hex, "%s%.*s", abbrev, len+3-abblen, "..");
2733 else
2734 sprintf(hex, "%s...", abbrev);
2735 return hex;
2737 return sha1_to_hex(sha1);
2740 static void diff_flush_raw(struct diff_filepair *p, struct diff_options *opt)
2742 int line_termination = opt->line_termination;
2743 int inter_name_termination = line_termination ? '\t' : '\0';
2745 if (!(opt->output_format & DIFF_FORMAT_NAME_STATUS)) {
2746 fprintf(opt->file, ":%06o %06o %s ", p->one->mode, p->two->mode,
2747 diff_unique_abbrev(p->one->sha1, opt->abbrev));
2748 fprintf(opt->file, "%s ", diff_unique_abbrev(p->two->sha1, opt->abbrev));
2750 if (p->score) {
2751 fprintf(opt->file, "%c%03d%c", p->status, similarity_index(p),
2752 inter_name_termination);
2753 } else {
2754 fprintf(opt->file, "%c%c", p->status, inter_name_termination);
2757 if (p->status == DIFF_STATUS_COPIED ||
2758 p->status == DIFF_STATUS_RENAMED) {
2759 const char *name_a, *name_b;
2760 name_a = p->one->path;
2761 name_b = p->two->path;
2762 strip_prefix(opt->prefix_length, &name_a, &name_b);
2763 write_name_quoted(name_a, opt->file, inter_name_termination);
2764 write_name_quoted(name_b, opt->file, line_termination);
2765 } else {
2766 const char *name_a, *name_b;
2767 name_a = p->one->mode ? p->one->path : p->two->path;
2768 name_b = NULL;
2769 strip_prefix(opt->prefix_length, &name_a, &name_b);
2770 write_name_quoted(name_a, opt->file, line_termination);
2774 int diff_unmodified_pair(struct diff_filepair *p)
2776 /* This function is written stricter than necessary to support
2777 * the currently implemented transformers, but the idea is to
2778 * let transformers to produce diff_filepairs any way they want,
2779 * and filter and clean them up here before producing the output.
2781 struct diff_filespec *one = p->one, *two = p->two;
2783 if (DIFF_PAIR_UNMERGED(p))
2784 return 0; /* unmerged is interesting */
2786 /* deletion, addition, mode or type change
2787 * and rename are all interesting.
2789 if (DIFF_FILE_VALID(one) != DIFF_FILE_VALID(two) ||
2790 DIFF_PAIR_MODE_CHANGED(p) ||
2791 strcmp(one->path, two->path))
2792 return 0;
2794 /* both are valid and point at the same path. that is, we are
2795 * dealing with a change.
2797 if (one->sha1_valid && two->sha1_valid &&
2798 !hashcmp(one->sha1, two->sha1))
2799 return 1; /* no change */
2800 if (!one->sha1_valid && !two->sha1_valid)
2801 return 1; /* both look at the same file on the filesystem. */
2802 return 0;
2805 static void diff_flush_patch(struct diff_filepair *p, struct diff_options *o)
2807 if (diff_unmodified_pair(p))
2808 return;
2810 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
2811 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
2812 return; /* no tree diffs in patch format */
2814 run_diff(p, o);
2817 static void diff_flush_stat(struct diff_filepair *p, struct diff_options *o,
2818 struct diffstat_t *diffstat)
2820 if (diff_unmodified_pair(p))
2821 return;
2823 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
2824 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
2825 return; /* no tree diffs in patch format */
2827 run_diffstat(p, o, diffstat);
2830 static void diff_flush_checkdiff(struct diff_filepair *p,
2831 struct diff_options *o)
2833 if (diff_unmodified_pair(p))
2834 return;
2836 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
2837 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
2838 return; /* no tree diffs in patch format */
2840 run_checkdiff(p, o);
2843 int diff_queue_is_empty(void)
2845 struct diff_queue_struct *q = &diff_queued_diff;
2846 int i;
2847 for (i = 0; i < q->nr; i++)
2848 if (!diff_unmodified_pair(q->queue[i]))
2849 return 0;
2850 return 1;
2853 #if DIFF_DEBUG
2854 void diff_debug_filespec(struct diff_filespec *s, int x, const char *one)
2856 fprintf(stderr, "queue[%d] %s (%s) %s %06o %s\n",
2857 x, one ? one : "",
2858 s->path,
2859 DIFF_FILE_VALID(s) ? "valid" : "invalid",
2860 s->mode,
2861 s->sha1_valid ? sha1_to_hex(s->sha1) : "");
2862 fprintf(stderr, "queue[%d] %s size %lu flags %d\n",
2863 x, one ? one : "",
2864 s->size, s->xfrm_flags);
2867 void diff_debug_filepair(const struct diff_filepair *p, int i)
2869 diff_debug_filespec(p->one, i, "one");
2870 diff_debug_filespec(p->two, i, "two");
2871 fprintf(stderr, "score %d, status %c rename_used %d broken %d\n",
2872 p->score, p->status ? p->status : '?',
2873 p->one->rename_used, p->broken_pair);
2876 void diff_debug_queue(const char *msg, struct diff_queue_struct *q)
2878 int i;
2879 if (msg)
2880 fprintf(stderr, "%s\n", msg);
2881 fprintf(stderr, "q->nr = %d\n", q->nr);
2882 for (i = 0; i < q->nr; i++) {
2883 struct diff_filepair *p = q->queue[i];
2884 diff_debug_filepair(p, i);
2887 #endif
2889 static void diff_resolve_rename_copy(void)
2891 int i;
2892 struct diff_filepair *p;
2893 struct diff_queue_struct *q = &diff_queued_diff;
2895 diff_debug_queue("resolve-rename-copy", q);
2897 for (i = 0; i < q->nr; i++) {
2898 p = q->queue[i];
2899 p->status = 0; /* undecided */
2900 if (DIFF_PAIR_UNMERGED(p))
2901 p->status = DIFF_STATUS_UNMERGED;
2902 else if (!DIFF_FILE_VALID(p->one))
2903 p->status = DIFF_STATUS_ADDED;
2904 else if (!DIFF_FILE_VALID(p->two))
2905 p->status = DIFF_STATUS_DELETED;
2906 else if (DIFF_PAIR_TYPE_CHANGED(p))
2907 p->status = DIFF_STATUS_TYPE_CHANGED;
2909 /* from this point on, we are dealing with a pair
2910 * whose both sides are valid and of the same type, i.e.
2911 * either in-place edit or rename/copy edit.
2913 else if (DIFF_PAIR_RENAME(p)) {
2915 * A rename might have re-connected a broken
2916 * pair up, causing the pathnames to be the
2917 * same again. If so, that's not a rename at
2918 * all, just a modification..
2920 * Otherwise, see if this source was used for
2921 * multiple renames, in which case we decrement
2922 * the count, and call it a copy.
2924 if (!strcmp(p->one->path, p->two->path))
2925 p->status = DIFF_STATUS_MODIFIED;
2926 else if (--p->one->rename_used > 0)
2927 p->status = DIFF_STATUS_COPIED;
2928 else
2929 p->status = DIFF_STATUS_RENAMED;
2931 else if (hashcmp(p->one->sha1, p->two->sha1) ||
2932 p->one->mode != p->two->mode ||
2933 is_null_sha1(p->one->sha1))
2934 p->status = DIFF_STATUS_MODIFIED;
2935 else {
2936 /* This is a "no-change" entry and should not
2937 * happen anymore, but prepare for broken callers.
2939 error("feeding unmodified %s to diffcore",
2940 p->one->path);
2941 p->status = DIFF_STATUS_UNKNOWN;
2944 diff_debug_queue("resolve-rename-copy done", q);
2947 static int check_pair_status(struct diff_filepair *p)
2949 switch (p->status) {
2950 case DIFF_STATUS_UNKNOWN:
2951 return 0;
2952 case 0:
2953 die("internal error in diff-resolve-rename-copy");
2954 default:
2955 return 1;
2959 static void flush_one_pair(struct diff_filepair *p, struct diff_options *opt)
2961 int fmt = opt->output_format;
2963 if (fmt & DIFF_FORMAT_CHECKDIFF)
2964 diff_flush_checkdiff(p, opt);
2965 else if (fmt & (DIFF_FORMAT_RAW | DIFF_FORMAT_NAME_STATUS))
2966 diff_flush_raw(p, opt);
2967 else if (fmt & DIFF_FORMAT_NAME) {
2968 const char *name_a, *name_b;
2969 name_a = p->two->path;
2970 name_b = NULL;
2971 strip_prefix(opt->prefix_length, &name_a, &name_b);
2972 write_name_quoted(name_a, opt->file, opt->line_termination);
2976 static void show_file_mode_name(FILE *file, const char *newdelete, struct diff_filespec *fs)
2978 if (fs->mode)
2979 fprintf(file, " %s mode %06o ", newdelete, fs->mode);
2980 else
2981 fprintf(file, " %s ", newdelete);
2982 write_name_quoted(fs->path, file, '\n');
2986 static void show_mode_change(FILE *file, struct diff_filepair *p, int show_name)
2988 if (p->one->mode && p->two->mode && p->one->mode != p->two->mode) {
2989 fprintf(file, " mode change %06o => %06o%c", p->one->mode, p->two->mode,
2990 show_name ? ' ' : '\n');
2991 if (show_name) {
2992 write_name_quoted(p->two->path, file, '\n');
2997 static void show_rename_copy(FILE *file, const char *renamecopy, struct diff_filepair *p)
2999 char *names = pprint_rename(p->one->path, p->two->path);
3001 fprintf(file, " %s %s (%d%%)\n", renamecopy, names, similarity_index(p));
3002 free(names);
3003 show_mode_change(file, p, 0);
3006 static void diff_summary(FILE *file, struct diff_filepair *p)
3008 switch(p->status) {
3009 case DIFF_STATUS_DELETED:
3010 show_file_mode_name(file, "delete", p->one);
3011 break;
3012 case DIFF_STATUS_ADDED:
3013 show_file_mode_name(file, "create", p->two);
3014 break;
3015 case DIFF_STATUS_COPIED:
3016 show_rename_copy(file, "copy", p);
3017 break;
3018 case DIFF_STATUS_RENAMED:
3019 show_rename_copy(file, "rename", p);
3020 break;
3021 default:
3022 if (p->score) {
3023 fputs(" rewrite ", file);
3024 write_name_quoted(p->two->path, file, ' ');
3025 fprintf(file, "(%d%%)\n", similarity_index(p));
3027 show_mode_change(file, p, !p->score);
3028 break;
3032 struct patch_id_t {
3033 git_SHA_CTX *ctx;
3034 int patchlen;
3037 static int remove_space(char *line, int len)
3039 int i;
3040 char *dst = line;
3041 unsigned char c;
3043 for (i = 0; i < len; i++)
3044 if (!isspace((c = line[i])))
3045 *dst++ = c;
3047 return dst - line;
3050 static void patch_id_consume(void *priv, char *line, unsigned long len)
3052 struct patch_id_t *data = priv;
3053 int new_len;
3055 /* Ignore line numbers when computing the SHA1 of the patch */
3056 if (!prefixcmp(line, "@@ -"))
3057 return;
3059 new_len = remove_space(line, len);
3061 git_SHA1_Update(data->ctx, line, new_len);
3062 data->patchlen += new_len;
3065 /* returns 0 upon success, and writes result into sha1 */
3066 static int diff_get_patch_id(struct diff_options *options, unsigned char *sha1)
3068 struct diff_queue_struct *q = &diff_queued_diff;
3069 int i;
3070 git_SHA_CTX ctx;
3071 struct patch_id_t data;
3072 char buffer[PATH_MAX * 4 + 20];
3074 git_SHA1_Init(&ctx);
3075 memset(&data, 0, sizeof(struct patch_id_t));
3076 data.ctx = &ctx;
3078 for (i = 0; i < q->nr; i++) {
3079 xpparam_t xpp;
3080 xdemitconf_t xecfg;
3081 xdemitcb_t ecb;
3082 mmfile_t mf1, mf2;
3083 struct diff_filepair *p = q->queue[i];
3084 int len1, len2;
3086 memset(&xpp, 0, sizeof(xpp));
3087 memset(&xecfg, 0, sizeof(xecfg));
3088 if (p->status == 0)
3089 return error("internal diff status error");
3090 if (p->status == DIFF_STATUS_UNKNOWN)
3091 continue;
3092 if (diff_unmodified_pair(p))
3093 continue;
3094 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
3095 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
3096 continue;
3097 if (DIFF_PAIR_UNMERGED(p))
3098 continue;
3100 diff_fill_sha1_info(p->one);
3101 diff_fill_sha1_info(p->two);
3102 if (fill_mmfile(&mf1, p->one) < 0 ||
3103 fill_mmfile(&mf2, p->two) < 0)
3104 return error("unable to read files to diff");
3106 len1 = remove_space(p->one->path, strlen(p->one->path));
3107 len2 = remove_space(p->two->path, strlen(p->two->path));
3108 if (p->one->mode == 0)
3109 len1 = snprintf(buffer, sizeof(buffer),
3110 "diff--gita/%.*sb/%.*s"
3111 "newfilemode%06o"
3112 "---/dev/null"
3113 "+++b/%.*s",
3114 len1, p->one->path,
3115 len2, p->two->path,
3116 p->two->mode,
3117 len2, p->two->path);
3118 else if (p->two->mode == 0)
3119 len1 = snprintf(buffer, sizeof(buffer),
3120 "diff--gita/%.*sb/%.*s"
3121 "deletedfilemode%06o"
3122 "---a/%.*s"
3123 "+++/dev/null",
3124 len1, p->one->path,
3125 len2, p->two->path,
3126 p->one->mode,
3127 len1, p->one->path);
3128 else
3129 len1 = snprintf(buffer, sizeof(buffer),
3130 "diff--gita/%.*sb/%.*s"
3131 "---a/%.*s"
3132 "+++b/%.*s",
3133 len1, p->one->path,
3134 len2, p->two->path,
3135 len1, p->one->path,
3136 len2, p->two->path);
3137 git_SHA1_Update(&ctx, buffer, len1);
3139 xpp.flags = XDF_NEED_MINIMAL;
3140 xecfg.ctxlen = 3;
3141 xecfg.flags = XDL_EMIT_FUNCNAMES;
3142 xdi_diff_outf(&mf1, &mf2, patch_id_consume, &data,
3143 &xpp, &xecfg, &ecb);
3146 git_SHA1_Final(sha1, &ctx);
3147 return 0;
3150 int diff_flush_patch_id(struct diff_options *options, unsigned char *sha1)
3152 struct diff_queue_struct *q = &diff_queued_diff;
3153 int i;
3154 int result = diff_get_patch_id(options, sha1);
3156 for (i = 0; i < q->nr; i++)
3157 diff_free_filepair(q->queue[i]);
3159 free(q->queue);
3160 q->queue = NULL;
3161 q->nr = q->alloc = 0;
3163 return result;
3166 static int is_summary_empty(const struct diff_queue_struct *q)
3168 int i;
3170 for (i = 0; i < q->nr; i++) {
3171 const struct diff_filepair *p = q->queue[i];
3173 switch (p->status) {
3174 case DIFF_STATUS_DELETED:
3175 case DIFF_STATUS_ADDED:
3176 case DIFF_STATUS_COPIED:
3177 case DIFF_STATUS_RENAMED:
3178 return 0;
3179 default:
3180 if (p->score)
3181 return 0;
3182 if (p->one->mode && p->two->mode &&
3183 p->one->mode != p->two->mode)
3184 return 0;
3185 break;
3188 return 1;
3191 void diff_flush(struct diff_options *options)
3193 struct diff_queue_struct *q = &diff_queued_diff;
3194 int i, output_format = options->output_format;
3195 int separator = 0;
3198 * Order: raw, stat, summary, patch
3199 * or: name/name-status/checkdiff (other bits clear)
3201 if (!q->nr)
3202 goto free_queue;
3204 if (output_format & (DIFF_FORMAT_RAW |
3205 DIFF_FORMAT_NAME |
3206 DIFF_FORMAT_NAME_STATUS |
3207 DIFF_FORMAT_CHECKDIFF)) {
3208 for (i = 0; i < q->nr; i++) {
3209 struct diff_filepair *p = q->queue[i];
3210 if (check_pair_status(p))
3211 flush_one_pair(p, options);
3213 separator++;
3216 if (output_format & (DIFF_FORMAT_DIFFSTAT|DIFF_FORMAT_SHORTSTAT|DIFF_FORMAT_NUMSTAT)) {
3217 struct diffstat_t diffstat;
3219 memset(&diffstat, 0, sizeof(struct diffstat_t));
3220 for (i = 0; i < q->nr; i++) {
3221 struct diff_filepair *p = q->queue[i];
3222 if (check_pair_status(p))
3223 diff_flush_stat(p, options, &diffstat);
3225 if (output_format & DIFF_FORMAT_NUMSTAT)
3226 show_numstat(&diffstat, options);
3227 if (output_format & DIFF_FORMAT_DIFFSTAT)
3228 show_stats(&diffstat, options);
3229 if (output_format & DIFF_FORMAT_SHORTSTAT)
3230 show_shortstats(&diffstat, options);
3231 free_diffstat_info(&diffstat);
3232 separator++;
3234 if (output_format & DIFF_FORMAT_DIRSTAT)
3235 show_dirstat(options);
3237 if (output_format & DIFF_FORMAT_SUMMARY && !is_summary_empty(q)) {
3238 for (i = 0; i < q->nr; i++)
3239 diff_summary(options->file, q->queue[i]);
3240 separator++;
3243 if (output_format & DIFF_FORMAT_PATCH) {
3244 if (separator) {
3245 putc(options->line_termination, options->file);
3246 if (options->stat_sep) {
3247 /* attach patch instead of inline */
3248 fputs(options->stat_sep, options->file);
3252 for (i = 0; i < q->nr; i++) {
3253 struct diff_filepair *p = q->queue[i];
3254 if (check_pair_status(p))
3255 diff_flush_patch(p, options);
3259 if (output_format & DIFF_FORMAT_CALLBACK)
3260 options->format_callback(q, options, options->format_callback_data);
3262 for (i = 0; i < q->nr; i++)
3263 diff_free_filepair(q->queue[i]);
3264 free_queue:
3265 free(q->queue);
3266 q->queue = NULL;
3267 q->nr = q->alloc = 0;
3268 if (options->close_file)
3269 fclose(options->file);
3272 static void diffcore_apply_filter(const char *filter)
3274 int i;
3275 struct diff_queue_struct *q = &diff_queued_diff;
3276 struct diff_queue_struct outq;
3277 outq.queue = NULL;
3278 outq.nr = outq.alloc = 0;
3280 if (!filter)
3281 return;
3283 if (strchr(filter, DIFF_STATUS_FILTER_AON)) {
3284 int found;
3285 for (i = found = 0; !found && i < q->nr; i++) {
3286 struct diff_filepair *p = q->queue[i];
3287 if (((p->status == DIFF_STATUS_MODIFIED) &&
3288 ((p->score &&
3289 strchr(filter, DIFF_STATUS_FILTER_BROKEN)) ||
3290 (!p->score &&
3291 strchr(filter, DIFF_STATUS_MODIFIED)))) ||
3292 ((p->status != DIFF_STATUS_MODIFIED) &&
3293 strchr(filter, p->status)))
3294 found++;
3296 if (found)
3297 return;
3299 /* otherwise we will clear the whole queue
3300 * by copying the empty outq at the end of this
3301 * function, but first clear the current entries
3302 * in the queue.
3304 for (i = 0; i < q->nr; i++)
3305 diff_free_filepair(q->queue[i]);
3307 else {
3308 /* Only the matching ones */
3309 for (i = 0; i < q->nr; i++) {
3310 struct diff_filepair *p = q->queue[i];
3312 if (((p->status == DIFF_STATUS_MODIFIED) &&
3313 ((p->score &&
3314 strchr(filter, DIFF_STATUS_FILTER_BROKEN)) ||
3315 (!p->score &&
3316 strchr(filter, DIFF_STATUS_MODIFIED)))) ||
3317 ((p->status != DIFF_STATUS_MODIFIED) &&
3318 strchr(filter, p->status)))
3319 diff_q(&outq, p);
3320 else
3321 diff_free_filepair(p);
3324 free(q->queue);
3325 *q = outq;
3328 /* Check whether two filespecs with the same mode and size are identical */
3329 static int diff_filespec_is_identical(struct diff_filespec *one,
3330 struct diff_filespec *two)
3332 if (S_ISGITLINK(one->mode))
3333 return 0;
3334 if (diff_populate_filespec(one, 0))
3335 return 0;
3336 if (diff_populate_filespec(two, 0))
3337 return 0;
3338 return !memcmp(one->data, two->data, one->size);
3341 static void diffcore_skip_stat_unmatch(struct diff_options *diffopt)
3343 int i;
3344 struct diff_queue_struct *q = &diff_queued_diff;
3345 struct diff_queue_struct outq;
3346 outq.queue = NULL;
3347 outq.nr = outq.alloc = 0;
3349 for (i = 0; i < q->nr; i++) {
3350 struct diff_filepair *p = q->queue[i];
3353 * 1. Entries that come from stat info dirtyness
3354 * always have both sides (iow, not create/delete),
3355 * one side of the object name is unknown, with
3356 * the same mode and size. Keep the ones that
3357 * do not match these criteria. They have real
3358 * differences.
3360 * 2. At this point, the file is known to be modified,
3361 * with the same mode and size, and the object
3362 * name of one side is unknown. Need to inspect
3363 * the identical contents.
3365 if (!DIFF_FILE_VALID(p->one) || /* (1) */
3366 !DIFF_FILE_VALID(p->two) ||
3367 (p->one->sha1_valid && p->two->sha1_valid) ||
3368 (p->one->mode != p->two->mode) ||
3369 diff_populate_filespec(p->one, 1) ||
3370 diff_populate_filespec(p->two, 1) ||
3371 (p->one->size != p->two->size) ||
3372 !diff_filespec_is_identical(p->one, p->two)) /* (2) */
3373 diff_q(&outq, p);
3374 else {
3376 * The caller can subtract 1 from skip_stat_unmatch
3377 * to determine how many paths were dirty only
3378 * due to stat info mismatch.
3380 if (!DIFF_OPT_TST(diffopt, NO_INDEX))
3381 diffopt->skip_stat_unmatch++;
3382 diff_free_filepair(p);
3385 free(q->queue);
3386 *q = outq;
3389 void diffcore_std(struct diff_options *options)
3391 if (options->skip_stat_unmatch)
3392 diffcore_skip_stat_unmatch(options);
3393 if (options->break_opt != -1)
3394 diffcore_break(options->break_opt);
3395 if (options->detect_rename)
3396 diffcore_rename(options);
3397 if (options->break_opt != -1)
3398 diffcore_merge_broken();
3399 if (options->pickaxe)
3400 diffcore_pickaxe(options->pickaxe, options->pickaxe_opts);
3401 if (options->orderfile)
3402 diffcore_order(options->orderfile);
3403 diff_resolve_rename_copy();
3404 diffcore_apply_filter(options->filter);
3406 if (diff_queued_diff.nr)
3407 DIFF_OPT_SET(options, HAS_CHANGES);
3408 else
3409 DIFF_OPT_CLR(options, HAS_CHANGES);
3412 int diff_result_code(struct diff_options *opt, int status)
3414 int result = 0;
3415 if (!DIFF_OPT_TST(opt, EXIT_WITH_STATUS) &&
3416 !(opt->output_format & DIFF_FORMAT_CHECKDIFF))
3417 return status;
3418 if (DIFF_OPT_TST(opt, EXIT_WITH_STATUS) &&
3419 DIFF_OPT_TST(opt, HAS_CHANGES))
3420 result |= 01;
3421 if ((opt->output_format & DIFF_FORMAT_CHECKDIFF) &&
3422 DIFF_OPT_TST(opt, CHECK_FAILED))
3423 result |= 02;
3424 return result;
3427 void diff_addremove(struct diff_options *options,
3428 int addremove, unsigned mode,
3429 const unsigned char *sha1,
3430 const char *concatpath)
3432 struct diff_filespec *one, *two;
3434 if (DIFF_OPT_TST(options, IGNORE_SUBMODULES) && S_ISGITLINK(mode))
3435 return;
3437 /* This may look odd, but it is a preparation for
3438 * feeding "there are unchanged files which should
3439 * not produce diffs, but when you are doing copy
3440 * detection you would need them, so here they are"
3441 * entries to the diff-core. They will be prefixed
3442 * with something like '=' or '*' (I haven't decided
3443 * which but should not make any difference).
3444 * Feeding the same new and old to diff_change()
3445 * also has the same effect.
3446 * Before the final output happens, they are pruned after
3447 * merged into rename/copy pairs as appropriate.
3449 if (DIFF_OPT_TST(options, REVERSE_DIFF))
3450 addremove = (addremove == '+' ? '-' :
3451 addremove == '-' ? '+' : addremove);
3453 if (options->prefix &&
3454 strncmp(concatpath, options->prefix, options->prefix_length))
3455 return;
3457 one = alloc_filespec(concatpath);
3458 two = alloc_filespec(concatpath);
3460 if (addremove != '+')
3461 fill_filespec(one, sha1, mode);
3462 if (addremove != '-')
3463 fill_filespec(two, sha1, mode);
3465 diff_queue(&diff_queued_diff, one, two);
3466 DIFF_OPT_SET(options, HAS_CHANGES);
3469 void diff_change(struct diff_options *options,
3470 unsigned old_mode, unsigned new_mode,
3471 const unsigned char *old_sha1,
3472 const unsigned char *new_sha1,
3473 const char *concatpath)
3475 struct diff_filespec *one, *two;
3477 if (DIFF_OPT_TST(options, IGNORE_SUBMODULES) && S_ISGITLINK(old_mode)
3478 && S_ISGITLINK(new_mode))
3479 return;
3481 if (DIFF_OPT_TST(options, REVERSE_DIFF)) {
3482 unsigned tmp;
3483 const unsigned char *tmp_c;
3484 tmp = old_mode; old_mode = new_mode; new_mode = tmp;
3485 tmp_c = old_sha1; old_sha1 = new_sha1; new_sha1 = tmp_c;
3488 if (options->prefix &&
3489 strncmp(concatpath, options->prefix, options->prefix_length))
3490 return;
3492 one = alloc_filespec(concatpath);
3493 two = alloc_filespec(concatpath);
3494 fill_filespec(one, old_sha1, old_mode);
3495 fill_filespec(two, new_sha1, new_mode);
3497 diff_queue(&diff_queued_diff, one, two);
3498 DIFF_OPT_SET(options, HAS_CHANGES);
3501 void diff_unmerge(struct diff_options *options,
3502 const char *path,
3503 unsigned mode, const unsigned char *sha1)
3505 struct diff_filespec *one, *two;
3507 if (options->prefix &&
3508 strncmp(path, options->prefix, options->prefix_length))
3509 return;
3511 one = alloc_filespec(path);
3512 two = alloc_filespec(path);
3513 fill_filespec(one, sha1, mode);
3514 diff_queue(&diff_queued_diff, one, two)->is_unmerged = 1;
3517 static char *run_textconv(const char *pgm, struct diff_filespec *spec,
3518 size_t *outsize)
3520 struct diff_tempfile temp;
3521 const char *argv[3];
3522 const char **arg = argv;
3523 struct child_process child;
3524 struct strbuf buf = STRBUF_INIT;
3526 prepare_temp_file(spec->path, &temp, spec);
3527 *arg++ = pgm;
3528 *arg++ = temp.name;
3529 *arg = NULL;
3531 memset(&child, 0, sizeof(child));
3532 child.argv = argv;
3533 child.out = -1;
3534 if (start_command(&child) != 0 ||
3535 strbuf_read(&buf, child.out, 0) < 0 ||
3536 finish_command(&child) != 0) {
3537 if (temp.name == temp.tmp_path)
3538 unlink(temp.name);
3539 error("error running textconv command '%s'", pgm);
3540 return NULL;
3542 if (temp.name == temp.tmp_path)
3543 unlink(temp.name);
3545 return strbuf_detach(&buf, outsize);