Code

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