2 * Copyright (C) 2005 Junio C Hamano
12 #include "xdiff-interface.h"
14 static int use_size_cache
;
16 int diff_rename_limit_default
= -1;
18 int git_diff_config(const char *var
, const char *value
)
20 if (!strcmp(var
, "diff.renamelimit")) {
21 diff_rename_limit_default
= git_config_int(var
, value
);
25 return git_default_config(var
, value
);
28 static char *quote_one(const char *str
)
35 needlen
= quote_c_style(str
, NULL
, NULL
, 0);
38 xp
= xmalloc(needlen
+ 1);
39 quote_c_style(str
, xp
, NULL
, 0);
43 static char *quote_two(const char *one
, const char *two
)
45 int need_one
= quote_c_style(one
, NULL
, NULL
, 1);
46 int need_two
= quote_c_style(two
, NULL
, NULL
, 1);
49 if (need_one
+ need_two
) {
50 if (!need_one
) need_one
= strlen(one
);
51 if (!need_two
) need_one
= strlen(two
);
53 xp
= xmalloc(need_one
+ need_two
+ 3);
55 quote_c_style(one
, xp
+ 1, NULL
, 1);
56 quote_c_style(two
, xp
+ need_one
+ 1, NULL
, 1);
57 strcpy(xp
+ need_one
+ need_two
+ 1, "\"");
60 need_one
= strlen(one
);
61 need_two
= strlen(two
);
62 xp
= xmalloc(need_one
+ need_two
+ 1);
64 strcpy(xp
+ need_one
, two
);
68 static const char *external_diff(void)
70 static const char *external_diff_cmd
= NULL
;
71 static int done_preparing
= 0;
74 return external_diff_cmd
;
75 external_diff_cmd
= getenv("GIT_EXTERNAL_DIFF");
77 return external_diff_cmd
;
80 #define TEMPFILE_PATH_LEN 50
82 static struct diff_tempfile
{
83 const char *name
; /* filename external diff should read from */
86 char tmp_path
[TEMPFILE_PATH_LEN
];
89 static int count_lines(const char *data
, int size
)
91 int count
, ch
, completely_empty
= 1, nl_just_seen
= 0;
102 completely_empty
= 0;
105 if (completely_empty
)
108 count
++; /* no trailing newline */
112 static void print_line_count(int count
)
122 printf("1,%d", count
);
127 static void copy_file(int prefix
, const char *data
, int size
)
129 int ch
, nl_just_seen
= 1;
141 printf("\n\\ No newline at end of file\n");
144 static void emit_rewrite_diff(const char *name_a
,
146 struct diff_filespec
*one
,
147 struct diff_filespec
*two
)
150 diff_populate_filespec(one
, 0);
151 diff_populate_filespec(two
, 0);
152 lc_a
= count_lines(one
->data
, one
->size
);
153 lc_b
= count_lines(two
->data
, two
->size
);
154 printf("--- %s\n+++ %s\n@@ -", name_a
, name_b
);
155 print_line_count(lc_a
);
157 print_line_count(lc_b
);
160 copy_file('-', one
->data
, one
->size
);
162 copy_file('+', two
->data
, two
->size
);
165 static int fill_mmfile(mmfile_t
*mf
, struct diff_filespec
*one
)
167 if (!DIFF_FILE_VALID(one
)) {
168 mf
->ptr
= ""; /* does not matter */
172 else if (diff_populate_filespec(one
, 0))
175 mf
->size
= one
->size
;
179 struct emit_callback
{
180 const char **label_path
;
183 static int fn_out(void *priv
, mmbuffer_t
*mb
, int nbuf
)
186 struct emit_callback
*ecbdata
= priv
;
188 if (ecbdata
->label_path
[0]) {
189 printf("--- %s\n", ecbdata
->label_path
[0]);
190 printf("+++ %s\n", ecbdata
->label_path
[1]);
191 ecbdata
->label_path
[0] = ecbdata
->label_path
[1] = NULL
;
193 for (i
= 0; i
< nbuf
; i
++)
194 if (!fwrite(mb
[i
].ptr
, mb
[i
].size
, 1, stdout
))
199 static char *pprint_rename(const char *a
, const char *b
)
204 int pfx_length
, sfx_length
;
205 int len_a
= strlen(a
);
206 int len_b
= strlen(b
);
208 /* Find common prefix */
210 while (*old
&& *new && *old
== *new) {
212 pfx_length
= old
- a
+ 1;
217 /* Find common suffix */
221 while (a
<= old
&& b
<= new && *old
== *new) {
223 sfx_length
= len_a
- (old
- a
);
229 * pfx{mid-a => mid-b}sfx
230 * {pfx-a => pfx-b}sfx
231 * pfx{sfx-a => sfx-b}
234 if (pfx_length
+ sfx_length
) {
235 int a_midlen
= len_a
- pfx_length
- sfx_length
;
236 int b_midlen
= len_b
- pfx_length
- sfx_length
;
237 if (a_midlen
< 0) a_midlen
= 0;
238 if (b_midlen
< 0) b_midlen
= 0;
240 name
= xmalloc(len_a
+ len_b
- pfx_length
- sfx_length
+ 7);
241 sprintf(name
, "%.*s{%.*s => %.*s}%s",
243 a_midlen
, a
+ pfx_length
,
244 b_midlen
, b
+ pfx_length
,
245 a
+ len_a
- sfx_length
);
248 name
= xmalloc(len_a
+ len_b
+ 5);
249 sprintf(name
, "%s => %s", a
, b
);
255 struct xdiff_emit_state xm
;
259 struct diffstat_file
{
261 unsigned is_unmerged
:1;
262 unsigned is_binary
:1;
263 unsigned is_renamed
:1;
264 unsigned int added
, deleted
;
268 static struct diffstat_file
*diffstat_add(struct diffstat_t
*diffstat
,
272 struct diffstat_file
*x
;
273 x
= xcalloc(sizeof (*x
), 1);
274 if (diffstat
->nr
== diffstat
->alloc
) {
275 diffstat
->alloc
= alloc_nr(diffstat
->alloc
);
276 diffstat
->files
= xrealloc(diffstat
->files
,
277 diffstat
->alloc
* sizeof(x
));
279 diffstat
->files
[diffstat
->nr
++] = x
;
281 x
->name
= pprint_rename(name_a
, name_b
);
285 x
->name
= strdup(name_a
);
289 static void diffstat_consume(void *priv
, char *line
, unsigned long len
)
291 struct diffstat_t
*diffstat
= priv
;
292 struct diffstat_file
*x
= diffstat
->files
[diffstat
->nr
- 1];
296 else if (line
[0] == '-')
300 static const char pluses
[] = "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
301 static const char minuses
[]= "----------------------------------------------------------------------";
303 static void show_stats(struct diffstat_t
* data
)
305 int i
, len
, add
, del
, total
, adds
= 0, dels
= 0;
306 int max
, max_change
= 0, max_len
= 0;
307 int total_files
= data
->nr
;
312 for (i
= 0; i
< data
->nr
; i
++) {
313 struct diffstat_file
*file
= data
->files
[i
];
315 len
= strlen(file
->name
);
319 if (file
->is_binary
|| file
->is_unmerged
)
321 if (max_change
< file
->added
+ file
->deleted
)
322 max_change
= file
->added
+ file
->deleted
;
325 for (i
= 0; i
< data
->nr
; i
++) {
327 char *name
= data
->files
[i
]->name
;
328 int added
= data
->files
[i
]->added
;
329 int deleted
= data
->files
[i
]->deleted
;
331 if (0 < (len
= quote_c_style(name
, NULL
, NULL
, 0))) {
332 char *qname
= xmalloc(len
+ 1);
333 quote_c_style(name
, qname
, NULL
, 0);
335 data
->files
[i
]->name
= name
= qname
;
339 * "scale" the filename
350 slash
= strchr(name
, '/');
357 * scale the add/delete
363 if (data
->files
[i
]->is_binary
) {
364 printf(" %s%-*s | Bin\n", prefix
, len
, name
);
365 goto free_diffstat_file
;
367 else if (data
->files
[i
]->is_unmerged
) {
368 printf(" %s%-*s | Unmerged\n", prefix
, len
, name
);
369 goto free_diffstat_file
;
371 else if (!data
->files
[i
]->is_renamed
&&
372 (added
+ deleted
== 0)) {
374 goto free_diffstat_file
;
383 if (max_change
> 0) {
384 total
= (total
* max
+ max_change
/ 2) / max_change
;
385 add
= (add
* max
+ max_change
/ 2) / max_change
;
388 printf(" %s%-*s |%5d %.*s%.*s\n", prefix
,
389 len
, name
, added
+ deleted
,
390 add
, pluses
, del
, minuses
);
392 free(data
->files
[i
]->name
);
393 free(data
->files
[i
]);
396 printf(" %d files changed, %d insertions(+), %d deletions(-)\n",
397 total_files
, adds
, dels
);
401 struct xdiff_emit_state xm
;
402 const char *filename
;
406 static void checkdiff_consume(void *priv
, char *line
, unsigned long len
)
408 struct checkdiff_t
*data
= priv
;
410 if (line
[0] == '+') {
415 /* check space before tab */
416 for (i
= 1; i
< len
&& (line
[i
] == ' ' || line
[i
] == '\t'); i
++)
419 if (line
[i
- 1] == '\t' && spaces
)
420 printf("%s:%d: space before tab:%.*s\n",
421 data
->filename
, data
->lineno
, (int)len
, line
);
423 /* check white space at line end */
424 if (line
[len
- 1] == '\n')
426 if (isspace(line
[len
- 1]))
427 printf("%s:%d: white space at end: %.*s\n",
428 data
->filename
, data
->lineno
, (int)len
, line
);
429 } else if (line
[0] == ' ')
431 else if (line
[0] == '@') {
432 char *plus
= strchr(line
, '+');
434 data
->lineno
= strtol(plus
, NULL
, 10);
440 static unsigned char *deflate_it(char *data
,
442 unsigned long *result_size
)
445 unsigned char *deflated
;
448 memset(&stream
, 0, sizeof(stream
));
449 deflateInit(&stream
, Z_BEST_COMPRESSION
);
450 bound
= deflateBound(&stream
, size
);
451 deflated
= xmalloc(bound
);
452 stream
.next_out
= deflated
;
453 stream
.avail_out
= bound
;
455 stream
.next_in
= (unsigned char *)data
;
456 stream
.avail_in
= size
;
457 while (deflate(&stream
, Z_FINISH
) == Z_OK
)
460 *result_size
= stream
.total_out
;
464 static void emit_binary_diff(mmfile_t
*one
, mmfile_t
*two
)
470 unsigned long orig_size
;
471 unsigned long delta_size
;
472 unsigned long deflate_size
;
473 unsigned long data_size
;
475 printf("GIT binary patch\n");
476 /* We could do deflated delta, or we could do just deflated two,
477 * whichever is smaller.
480 deflated
= deflate_it(two
->ptr
, two
->size
, &deflate_size
);
481 if (one
->size
&& two
->size
) {
482 delta
= diff_delta(one
->ptr
, one
->size
,
484 &delta_size
, deflate_size
);
486 void *to_free
= delta
;
487 orig_size
= delta_size
;
488 delta
= deflate_it(delta
, delta_size
, &delta_size
);
493 if (delta
&& delta_size
< deflate_size
) {
494 printf("delta %lu\n", orig_size
);
497 data_size
= delta_size
;
500 printf("literal %lu\n", two
->size
);
503 data_size
= deflate_size
;
506 /* emit data encoded in base85 */
509 int bytes
= (52 < data_size
) ? 52 : data_size
;
513 line
[0] = bytes
+ 'A' - 1;
515 line
[0] = bytes
- 26 + 'a' - 1;
516 encode_85(line
+ 1, cp
, bytes
);
524 #define FIRST_FEW_BYTES 8000
525 static int mmfile_is_binary(mmfile_t
*mf
)
528 if (FIRST_FEW_BYTES
< sz
)
529 sz
= FIRST_FEW_BYTES
;
530 if (memchr(mf
->ptr
, 0, sz
))
535 static void builtin_diff(const char *name_a
,
537 struct diff_filespec
*one
,
538 struct diff_filespec
*two
,
539 const char *xfrm_msg
,
540 struct diff_options
*o
,
541 int complete_rewrite
)
547 a_one
= quote_two("a/", name_a
);
548 b_two
= quote_two("b/", name_b
);
549 lbl
[0] = DIFF_FILE_VALID(one
) ? a_one
: "/dev/null";
550 lbl
[1] = DIFF_FILE_VALID(two
) ? b_two
: "/dev/null";
551 printf("diff --git %s %s\n", a_one
, b_two
);
552 if (lbl
[0][0] == '/') {
554 printf("new file mode %06o\n", two
->mode
);
555 if (xfrm_msg
&& xfrm_msg
[0])
558 else if (lbl
[1][0] == '/') {
559 printf("deleted file mode %06o\n", one
->mode
);
560 if (xfrm_msg
&& xfrm_msg
[0])
564 if (one
->mode
!= two
->mode
) {
565 printf("old mode %06o\n", one
->mode
);
566 printf("new mode %06o\n", two
->mode
);
568 if (xfrm_msg
&& xfrm_msg
[0])
571 * we do not run diff between different kind
574 if ((one
->mode
^ two
->mode
) & S_IFMT
)
575 goto free_ab_and_return
;
576 if (complete_rewrite
) {
577 emit_rewrite_diff(name_a
, name_b
, one
, two
);
578 goto free_ab_and_return
;
582 if (fill_mmfile(&mf1
, one
) < 0 || fill_mmfile(&mf2
, two
) < 0)
583 die("unable to read files to diff");
585 if (mmfile_is_binary(&mf1
) || mmfile_is_binary(&mf2
)) {
586 /* Quite common confusing case */
587 if (mf1
.size
== mf2
.size
&&
588 !memcmp(mf1
.ptr
, mf2
.ptr
, mf1
.size
))
589 goto free_ab_and_return
;
591 emit_binary_diff(&mf1
, &mf2
);
593 printf("Binary files %s and %s differ\n",
597 /* Crazy xdl interfaces.. */
598 const char *diffopts
= getenv("GIT_DIFF_OPTS");
602 struct emit_callback ecbdata
;
604 ecbdata
.label_path
= lbl
;
605 xpp
.flags
= XDF_NEED_MINIMAL
;
606 xecfg
.ctxlen
= o
->context
;
607 xecfg
.flags
= XDL_EMIT_FUNCNAMES
;
610 else if (!strncmp(diffopts
, "--unified=", 10))
611 xecfg
.ctxlen
= strtoul(diffopts
+ 10, NULL
, 10);
612 else if (!strncmp(diffopts
, "-u", 2))
613 xecfg
.ctxlen
= strtoul(diffopts
+ 2, NULL
, 10);
616 xdl_diff(&mf1
, &mf2
, &xpp
, &xecfg
, &ecb
);
625 static void builtin_diffstat(const char *name_a
, const char *name_b
,
626 struct diff_filespec
*one
,
627 struct diff_filespec
*two
,
628 struct diffstat_t
*diffstat
,
629 int complete_rewrite
)
632 struct diffstat_file
*data
;
634 data
= diffstat_add(diffstat
, name_a
, name_b
);
637 data
->is_unmerged
= 1;
640 if (complete_rewrite
) {
641 diff_populate_filespec(one
, 0);
642 diff_populate_filespec(two
, 0);
643 data
->deleted
= count_lines(one
->data
, one
->size
);
644 data
->added
= count_lines(two
->data
, two
->size
);
647 if (fill_mmfile(&mf1
, one
) < 0 || fill_mmfile(&mf2
, two
) < 0)
648 die("unable to read files to diff");
650 if (mmfile_is_binary(&mf1
) || mmfile_is_binary(&mf2
))
653 /* Crazy xdl interfaces.. */
658 xpp
.flags
= XDF_NEED_MINIMAL
;
661 ecb
.outf
= xdiff_outf
;
663 xdl_diff(&mf1
, &mf2
, &xpp
, &xecfg
, &ecb
);
667 static void builtin_checkdiff(const char *name_a
, const char *name_b
,
668 struct diff_filespec
*one
,
669 struct diff_filespec
*two
)
672 struct checkdiff_t data
;
677 memset(&data
, 0, sizeof(data
));
678 data
.xm
.consume
= checkdiff_consume
;
679 data
.filename
= name_b
? name_b
: name_a
;
682 if (fill_mmfile(&mf1
, one
) < 0 || fill_mmfile(&mf2
, two
) < 0)
683 die("unable to read files to diff");
685 if (mmfile_is_binary(&mf2
))
688 /* Crazy xdl interfaces.. */
693 xpp
.flags
= XDF_NEED_MINIMAL
;
696 ecb
.outf
= xdiff_outf
;
698 xdl_diff(&mf1
, &mf2
, &xpp
, &xecfg
, &ecb
);
702 struct diff_filespec
*alloc_filespec(const char *path
)
704 int namelen
= strlen(path
);
705 struct diff_filespec
*spec
= xmalloc(sizeof(*spec
) + namelen
+ 1);
707 memset(spec
, 0, sizeof(*spec
));
708 spec
->path
= (char *)(spec
+ 1);
709 memcpy(spec
->path
, path
, namelen
+1);
713 void fill_filespec(struct diff_filespec
*spec
, const unsigned char *sha1
,
717 spec
->mode
= canon_mode(mode
);
718 memcpy(spec
->sha1
, sha1
, 20);
719 spec
->sha1_valid
= !!memcmp(sha1
, null_sha1
, 20);
724 * Given a name and sha1 pair, if the dircache tells us the file in
725 * the work tree has that object contents, return true, so that
726 * prepare_temp_file() does not have to inflate and extract.
728 static int work_tree_matches(const char *name
, const unsigned char *sha1
)
730 struct cache_entry
*ce
;
734 /* We do not read the cache ourselves here, because the
735 * benchmark with my previous version that always reads cache
736 * shows that it makes things worse for diff-tree comparing
737 * two linux-2.6 kernel trees in an already checked out work
738 * tree. This is because most diff-tree comparisons deal with
739 * only a small number of files, while reading the cache is
740 * expensive for a large project, and its cost outweighs the
741 * savings we get by not inflating the object to a temporary
742 * file. Practically, this code only helps when we are used
743 * by diff-cache --cached, which does read the cache before
750 pos
= cache_name_pos(name
, len
);
753 ce
= active_cache
[pos
];
754 if ((lstat(name
, &st
) < 0) ||
755 !S_ISREG(st
.st_mode
) || /* careful! */
756 ce_match_stat(ce
, &st
, 0) ||
757 memcmp(sha1
, ce
->sha1
, 20))
759 /* we return 1 only when we can stat, it is a regular file,
760 * stat information matches, and sha1 recorded in the cache
761 * matches. I.e. we know the file in the work tree really is
762 * the same as the <name, sha1> pair.
767 static struct sha1_size_cache
{
768 unsigned char sha1
[20];
771 static int sha1_size_cache_nr
, sha1_size_cache_alloc
;
773 static struct sha1_size_cache
*locate_size_cache(unsigned char *sha1
,
778 struct sha1_size_cache
*e
;
781 last
= sha1_size_cache_nr
;
782 while (last
> first
) {
783 int cmp
, next
= (last
+ first
) >> 1;
784 e
= sha1_size_cache
[next
];
785 cmp
= memcmp(e
->sha1
, sha1
, 20);
797 /* insert to make it at "first" */
798 if (sha1_size_cache_alloc
<= sha1_size_cache_nr
) {
799 sha1_size_cache_alloc
= alloc_nr(sha1_size_cache_alloc
);
800 sha1_size_cache
= xrealloc(sha1_size_cache
,
801 sha1_size_cache_alloc
*
802 sizeof(*sha1_size_cache
));
804 sha1_size_cache_nr
++;
805 if (first
< sha1_size_cache_nr
)
806 memmove(sha1_size_cache
+ first
+ 1, sha1_size_cache
+ first
,
807 (sha1_size_cache_nr
- first
- 1) *
808 sizeof(*sha1_size_cache
));
809 e
= xmalloc(sizeof(struct sha1_size_cache
));
810 sha1_size_cache
[first
] = e
;
811 memcpy(e
->sha1
, sha1
, 20);
817 * While doing rename detection and pickaxe operation, we may need to
818 * grab the data for the blob (or file) for our own in-core comparison.
819 * diff_filespec has data and size fields for this purpose.
821 int diff_populate_filespec(struct diff_filespec
*s
, int size_only
)
824 if (!DIFF_FILE_VALID(s
))
825 die("internal error: asking to populate invalid file.");
826 if (S_ISDIR(s
->mode
))
834 if (!s
->sha1_valid
||
835 work_tree_matches(s
->path
, s
->sha1
)) {
838 if (lstat(s
->path
, &st
) < 0) {
839 if (errno
== ENOENT
) {
848 s
->size
= st
.st_size
;
853 if (S_ISLNK(st
.st_mode
)) {
855 s
->data
= xmalloc(s
->size
);
857 ret
= readlink(s
->path
, s
->data
, s
->size
);
864 fd
= open(s
->path
, O_RDONLY
);
867 s
->data
= mmap(NULL
, s
->size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
869 if (s
->data
== MAP_FAILED
)
871 s
->should_munmap
= 1;
875 struct sha1_size_cache
*e
;
878 e
= locate_size_cache(s
->sha1
, 1, 0);
883 if (!sha1_object_info(s
->sha1
, type
, &s
->size
))
884 locate_size_cache(s
->sha1
, 0, s
->size
);
887 s
->data
= read_sha1_file(s
->sha1
, type
, &s
->size
);
894 void diff_free_filespec_data(struct diff_filespec
*s
)
898 else if (s
->should_munmap
)
899 munmap(s
->data
, s
->size
);
900 s
->should_free
= s
->should_munmap
= 0;
906 static void prep_temp_blob(struct diff_tempfile
*temp
,
909 const unsigned char *sha1
,
914 fd
= git_mkstemp(temp
->tmp_path
, TEMPFILE_PATH_LEN
, ".diff_XXXXXX");
916 die("unable to create temp-file");
917 if (write(fd
, blob
, size
) != size
)
918 die("unable to write temp-file");
920 temp
->name
= temp
->tmp_path
;
921 strcpy(temp
->hex
, sha1_to_hex(sha1
));
923 sprintf(temp
->mode
, "%06o", mode
);
926 static void prepare_temp_file(const char *name
,
927 struct diff_tempfile
*temp
,
928 struct diff_filespec
*one
)
930 if (!DIFF_FILE_VALID(one
)) {
932 /* A '-' entry produces this for file-2, and
933 * a '+' entry produces this for file-1.
935 temp
->name
= "/dev/null";
936 strcpy(temp
->hex
, ".");
937 strcpy(temp
->mode
, ".");
941 if (!one
->sha1_valid
||
942 work_tree_matches(name
, one
->sha1
)) {
944 if (lstat(name
, &st
) < 0) {
946 goto not_a_valid_file
;
947 die("stat(%s): %s", name
, strerror(errno
));
949 if (S_ISLNK(st
.st_mode
)) {
951 char buf
[PATH_MAX
+ 1]; /* ought to be SYMLINK_MAX */
952 if (sizeof(buf
) <= st
.st_size
)
953 die("symlink too long: %s", name
);
954 ret
= readlink(name
, buf
, st
.st_size
);
956 die("readlink(%s)", name
);
957 prep_temp_blob(temp
, buf
, st
.st_size
,
959 one
->sha1
: null_sha1
),
961 one
->mode
: S_IFLNK
));
964 /* we can borrow from the file in the work tree */
966 if (!one
->sha1_valid
)
967 strcpy(temp
->hex
, sha1_to_hex(null_sha1
));
969 strcpy(temp
->hex
, sha1_to_hex(one
->sha1
));
970 /* Even though we may sometimes borrow the
971 * contents from the work tree, we always want
972 * one->mode. mode is trustworthy even when
973 * !(one->sha1_valid), as long as
974 * DIFF_FILE_VALID(one).
976 sprintf(temp
->mode
, "%06o", one
->mode
);
981 if (diff_populate_filespec(one
, 0))
982 die("cannot read data blob for %s", one
->path
);
983 prep_temp_blob(temp
, one
->data
, one
->size
,
984 one
->sha1
, one
->mode
);
988 static void remove_tempfile(void)
992 for (i
= 0; i
< 2; i
++)
993 if (diff_temp
[i
].name
== diff_temp
[i
].tmp_path
) {
994 unlink(diff_temp
[i
].name
);
995 diff_temp
[i
].name
= NULL
;
999 static void remove_tempfile_on_signal(int signo
)
1002 signal(SIGINT
, SIG_DFL
);
1006 static int spawn_prog(const char *pgm
, const char **arg
)
1014 die("unable to fork");
1016 execvp(pgm
, (char *const*) arg
);
1020 while (waitpid(pid
, &status
, 0) < 0) {
1026 /* Earlier we did not check the exit status because
1027 * diff exits non-zero if files are different, and
1028 * we are not interested in knowing that. It was a
1029 * mistake which made it harder to quit a diff-*
1030 * session that uses the git-apply-patch-script as
1031 * the GIT_EXTERNAL_DIFF. A custom GIT_EXTERNAL_DIFF
1032 * should also exit non-zero only when it wants to
1033 * abort the entire diff-* session.
1035 if (WIFEXITED(status
) && !WEXITSTATUS(status
))
1040 /* An external diff command takes:
1042 * diff-cmd name infile1 infile1-sha1 infile1-mode \
1043 * infile2 infile2-sha1 infile2-mode [ rename-to ]
1046 static void run_external_diff(const char *pgm
,
1049 struct diff_filespec
*one
,
1050 struct diff_filespec
*two
,
1051 const char *xfrm_msg
,
1052 int complete_rewrite
)
1054 const char *spawn_arg
[10];
1055 struct diff_tempfile
*temp
= diff_temp
;
1057 static int atexit_asked
= 0;
1058 const char *othername
;
1059 const char **arg
= &spawn_arg
[0];
1061 othername
= (other
? other
: name
);
1063 prepare_temp_file(name
, &temp
[0], one
);
1064 prepare_temp_file(othername
, &temp
[1], two
);
1065 if (! atexit_asked
&&
1066 (temp
[0].name
== temp
[0].tmp_path
||
1067 temp
[1].name
== temp
[1].tmp_path
)) {
1069 atexit(remove_tempfile
);
1071 signal(SIGINT
, remove_tempfile_on_signal
);
1077 *arg
++ = temp
[0].name
;
1078 *arg
++ = temp
[0].hex
;
1079 *arg
++ = temp
[0].mode
;
1080 *arg
++ = temp
[1].name
;
1081 *arg
++ = temp
[1].hex
;
1082 *arg
++ = temp
[1].mode
;
1092 retval
= spawn_prog(pgm
, spawn_arg
);
1095 fprintf(stderr
, "external diff died, stopping at %s.\n", name
);
1100 static void run_diff_cmd(const char *pgm
,
1103 struct diff_filespec
*one
,
1104 struct diff_filespec
*two
,
1105 const char *xfrm_msg
,
1106 struct diff_options
*o
,
1107 int complete_rewrite
)
1110 run_external_diff(pgm
, name
, other
, one
, two
, xfrm_msg
,
1115 builtin_diff(name
, other
? other
: name
,
1116 one
, two
, xfrm_msg
, o
, complete_rewrite
);
1118 printf("* Unmerged path %s\n", name
);
1121 static void diff_fill_sha1_info(struct diff_filespec
*one
)
1123 if (DIFF_FILE_VALID(one
)) {
1124 if (!one
->sha1_valid
) {
1126 if (lstat(one
->path
, &st
) < 0)
1127 die("stat %s", one
->path
);
1128 if (index_path(one
->sha1
, one
->path
, &st
, 0))
1129 die("cannot hash %s\n", one
->path
);
1133 memset(one
->sha1
, 0, 20);
1136 static void run_diff(struct diff_filepair
*p
, struct diff_options
*o
)
1138 const char *pgm
= external_diff();
1139 char msg
[PATH_MAX
*2+300], *xfrm_msg
;
1140 struct diff_filespec
*one
;
1141 struct diff_filespec
*two
;
1144 char *name_munged
, *other_munged
;
1145 int complete_rewrite
= 0;
1148 if (DIFF_PAIR_UNMERGED(p
)) {
1150 run_diff_cmd(pgm
, p
->one
->path
, NULL
, NULL
, NULL
, NULL
, o
, 0);
1154 name
= p
->one
->path
;
1155 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
1156 name_munged
= quote_one(name
);
1157 other_munged
= quote_one(other
);
1158 one
= p
->one
; two
= p
->two
;
1160 diff_fill_sha1_info(one
);
1161 diff_fill_sha1_info(two
);
1164 switch (p
->status
) {
1165 case DIFF_STATUS_COPIED
:
1166 len
+= snprintf(msg
+ len
, sizeof(msg
) - len
,
1167 "similarity index %d%%\n"
1170 (int)(0.5 + p
->score
* 100.0/MAX_SCORE
),
1171 name_munged
, other_munged
);
1173 case DIFF_STATUS_RENAMED
:
1174 len
+= snprintf(msg
+ len
, sizeof(msg
) - len
,
1175 "similarity index %d%%\n"
1178 (int)(0.5 + p
->score
* 100.0/MAX_SCORE
),
1179 name_munged
, other_munged
);
1181 case DIFF_STATUS_MODIFIED
:
1183 len
+= snprintf(msg
+ len
, sizeof(msg
) - len
,
1184 "dissimilarity index %d%%\n",
1185 (int)(0.5 + p
->score
*
1187 complete_rewrite
= 1;
1196 if (memcmp(one
->sha1
, two
->sha1
, 20)) {
1197 int abbrev
= o
->full_index
? 40 : DEFAULT_ABBREV
;
1199 len
+= snprintf(msg
+ len
, sizeof(msg
) - len
,
1201 abbrev
, sha1_to_hex(one
->sha1
),
1202 abbrev
, sha1_to_hex(two
->sha1
));
1203 if (one
->mode
== two
->mode
)
1204 len
+= snprintf(msg
+ len
, sizeof(msg
) - len
,
1205 " %06o", one
->mode
);
1206 len
+= snprintf(msg
+ len
, sizeof(msg
) - len
, "\n");
1211 xfrm_msg
= len
? msg
: NULL
;
1214 DIFF_FILE_VALID(one
) && DIFF_FILE_VALID(two
) &&
1215 (S_IFMT
& one
->mode
) != (S_IFMT
& two
->mode
)) {
1216 /* a filepair that changes between file and symlink
1217 * needs to be split into deletion and creation.
1219 struct diff_filespec
*null
= alloc_filespec(two
->path
);
1220 run_diff_cmd(NULL
, name
, other
, one
, null
, xfrm_msg
, o
, 0);
1222 null
= alloc_filespec(one
->path
);
1223 run_diff_cmd(NULL
, name
, other
, null
, two
, xfrm_msg
, o
, 0);
1227 run_diff_cmd(pgm
, name
, other
, one
, two
, xfrm_msg
, o
,
1234 static void run_diffstat(struct diff_filepair
*p
, struct diff_options
*o
,
1235 struct diffstat_t
*diffstat
)
1239 int complete_rewrite
= 0;
1241 if (DIFF_PAIR_UNMERGED(p
)) {
1243 builtin_diffstat(p
->one
->path
, NULL
, NULL
, NULL
, diffstat
, 0);
1247 name
= p
->one
->path
;
1248 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
1250 diff_fill_sha1_info(p
->one
);
1251 diff_fill_sha1_info(p
->two
);
1253 if (p
->status
== DIFF_STATUS_MODIFIED
&& p
->score
)
1254 complete_rewrite
= 1;
1255 builtin_diffstat(name
, other
, p
->one
, p
->two
, diffstat
, complete_rewrite
);
1258 static void run_checkdiff(struct diff_filepair
*p
, struct diff_options
*o
)
1263 if (DIFF_PAIR_UNMERGED(p
)) {
1268 name
= p
->one
->path
;
1269 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
1271 diff_fill_sha1_info(p
->one
);
1272 diff_fill_sha1_info(p
->two
);
1274 builtin_checkdiff(name
, other
, p
->one
, p
->two
);
1277 void diff_setup(struct diff_options
*options
)
1279 memset(options
, 0, sizeof(*options
));
1280 options
->output_format
= DIFF_FORMAT_RAW
;
1281 options
->line_termination
= '\n';
1282 options
->break_opt
= -1;
1283 options
->rename_limit
= -1;
1284 options
->context
= 3;
1286 options
->change
= diff_change
;
1287 options
->add_remove
= diff_addremove
;
1290 int diff_setup_done(struct diff_options
*options
)
1292 if ((options
->find_copies_harder
&&
1293 options
->detect_rename
!= DIFF_DETECT_COPY
) ||
1294 (0 <= options
->rename_limit
&& !options
->detect_rename
))
1298 * These cases always need recursive; we do not drop caller-supplied
1299 * recursive bits for other formats here.
1301 if ((options
->output_format
== DIFF_FORMAT_PATCH
) ||
1302 (options
->output_format
== DIFF_FORMAT_DIFFSTAT
) ||
1303 (options
->output_format
== DIFF_FORMAT_CHECKDIFF
))
1304 options
->recursive
= 1;
1306 if (options
->detect_rename
&& options
->rename_limit
< 0)
1307 options
->rename_limit
= diff_rename_limit_default
;
1308 if (options
->setup
& DIFF_SETUP_USE_CACHE
) {
1310 /* read-cache does not die even when it fails
1311 * so it is safe for us to do this here. Also
1312 * it does not smudge active_cache or active_nr
1313 * when it fails, so we do not have to worry about
1314 * cleaning it up ourselves either.
1318 if (options
->setup
& DIFF_SETUP_USE_SIZE_CACHE
)
1320 if (options
->abbrev
<= 0 || 40 < options
->abbrev
)
1321 options
->abbrev
= 40; /* full */
1326 int opt_arg(const char *arg
, int arg_short
, const char *arg_long
, int *val
)
1336 if (c
== arg_short
) {
1340 if (val
&& isdigit(c
)) {
1342 int n
= strtoul(arg
, &end
, 10);
1353 eq
= strchr(arg
, '=');
1358 if (!len
|| strncmp(arg
, arg_long
, len
))
1363 if (!isdigit(*++eq
))
1365 n
= strtoul(eq
, &end
, 10);
1373 int diff_opt_parse(struct diff_options
*options
, const char **av
, int ac
)
1375 const char *arg
= av
[0];
1376 if (!strcmp(arg
, "-p") || !strcmp(arg
, "-u"))
1377 options
->output_format
= DIFF_FORMAT_PATCH
;
1378 else if (opt_arg(arg
, 'U', "unified", &options
->context
))
1379 options
->output_format
= DIFF_FORMAT_PATCH
;
1380 else if (!strcmp(arg
, "--patch-with-raw")) {
1381 options
->output_format
= DIFF_FORMAT_PATCH
;
1382 options
->with_raw
= 1;
1384 else if (!strcmp(arg
, "--stat"))
1385 options
->output_format
= DIFF_FORMAT_DIFFSTAT
;
1386 else if (!strcmp(arg
, "--check"))
1387 options
->output_format
= DIFF_FORMAT_CHECKDIFF
;
1388 else if (!strcmp(arg
, "--summary"))
1389 options
->summary
= 1;
1390 else if (!strcmp(arg
, "--patch-with-stat")) {
1391 options
->output_format
= DIFF_FORMAT_PATCH
;
1392 options
->with_stat
= 1;
1394 else if (!strcmp(arg
, "-z"))
1395 options
->line_termination
= 0;
1396 else if (!strncmp(arg
, "-l", 2))
1397 options
->rename_limit
= strtoul(arg
+2, NULL
, 10);
1398 else if (!strcmp(arg
, "--full-index"))
1399 options
->full_index
= 1;
1400 else if (!strcmp(arg
, "--binary")) {
1401 options
->output_format
= DIFF_FORMAT_PATCH
;
1402 options
->full_index
= options
->binary
= 1;
1404 else if (!strcmp(arg
, "--name-only"))
1405 options
->output_format
= DIFF_FORMAT_NAME
;
1406 else if (!strcmp(arg
, "--name-status"))
1407 options
->output_format
= DIFF_FORMAT_NAME_STATUS
;
1408 else if (!strcmp(arg
, "-R"))
1409 options
->reverse_diff
= 1;
1410 else if (!strncmp(arg
, "-S", 2))
1411 options
->pickaxe
= arg
+ 2;
1412 else if (!strcmp(arg
, "-s"))
1413 options
->output_format
= DIFF_FORMAT_NO_OUTPUT
;
1414 else if (!strncmp(arg
, "-O", 2))
1415 options
->orderfile
= arg
+ 2;
1416 else if (!strncmp(arg
, "--diff-filter=", 14))
1417 options
->filter
= arg
+ 14;
1418 else if (!strcmp(arg
, "--pickaxe-all"))
1419 options
->pickaxe_opts
= DIFF_PICKAXE_ALL
;
1420 else if (!strcmp(arg
, "--pickaxe-regex"))
1421 options
->pickaxe_opts
= DIFF_PICKAXE_REGEX
;
1422 else if (!strncmp(arg
, "-B", 2)) {
1423 if ((options
->break_opt
=
1424 diff_scoreopt_parse(arg
)) == -1)
1427 else if (!strncmp(arg
, "-M", 2)) {
1428 if ((options
->rename_score
=
1429 diff_scoreopt_parse(arg
)) == -1)
1431 options
->detect_rename
= DIFF_DETECT_RENAME
;
1433 else if (!strncmp(arg
, "-C", 2)) {
1434 if ((options
->rename_score
=
1435 diff_scoreopt_parse(arg
)) == -1)
1437 options
->detect_rename
= DIFF_DETECT_COPY
;
1439 else if (!strcmp(arg
, "--find-copies-harder"))
1440 options
->find_copies_harder
= 1;
1441 else if (!strcmp(arg
, "--abbrev"))
1442 options
->abbrev
= DEFAULT_ABBREV
;
1443 else if (!strncmp(arg
, "--abbrev=", 9)) {
1444 options
->abbrev
= strtoul(arg
+ 9, NULL
, 10);
1445 if (options
->abbrev
< MINIMUM_ABBREV
)
1446 options
->abbrev
= MINIMUM_ABBREV
;
1447 else if (40 < options
->abbrev
)
1448 options
->abbrev
= 40;
1455 static int parse_num(const char **cp_p
)
1457 unsigned long num
, scale
;
1459 const char *cp
= *cp_p
;
1466 if ( !dot
&& ch
== '.' ) {
1469 } else if ( ch
== '%' ) {
1470 scale
= dot
? scale
*100 : 100;
1471 cp
++; /* % is always at the end */
1473 } else if ( ch
>= '0' && ch
<= '9' ) {
1474 if ( scale
< 100000 ) {
1476 num
= (num
*10) + (ch
-'0');
1485 /* user says num divided by scale and we say internally that
1486 * is MAX_SCORE * num / scale.
1488 return (num
>= scale
) ? MAX_SCORE
: (MAX_SCORE
* num
/ scale
);
1491 int diff_scoreopt_parse(const char *opt
)
1493 int opt1
, opt2
, cmd
;
1498 if (cmd
!= 'M' && cmd
!= 'C' && cmd
!= 'B')
1499 return -1; /* that is not a -M, -C nor -B option */
1501 opt1
= parse_num(&opt
);
1507 else if (*opt
!= '/')
1508 return -1; /* we expect -B80/99 or -B80 */
1511 opt2
= parse_num(&opt
);
1516 return opt1
| (opt2
<< 16);
1519 struct diff_queue_struct diff_queued_diff
;
1521 void diff_q(struct diff_queue_struct
*queue
, struct diff_filepair
*dp
)
1523 if (queue
->alloc
<= queue
->nr
) {
1524 queue
->alloc
= alloc_nr(queue
->alloc
);
1525 queue
->queue
= xrealloc(queue
->queue
,
1526 sizeof(dp
) * queue
->alloc
);
1528 queue
->queue
[queue
->nr
++] = dp
;
1531 struct diff_filepair
*diff_queue(struct diff_queue_struct
*queue
,
1532 struct diff_filespec
*one
,
1533 struct diff_filespec
*two
)
1535 struct diff_filepair
*dp
= xmalloc(sizeof(*dp
));
1540 dp
->source_stays
= 0;
1541 dp
->broken_pair
= 0;
1547 void diff_free_filepair(struct diff_filepair
*p
)
1549 diff_free_filespec_data(p
->one
);
1550 diff_free_filespec_data(p
->two
);
1556 /* This is different from find_unique_abbrev() in that
1557 * it stuffs the result with dots for alignment.
1559 const char *diff_unique_abbrev(const unsigned char *sha1
, int len
)
1564 return sha1_to_hex(sha1
);
1566 abbrev
= find_unique_abbrev(sha1
, len
);
1568 return sha1_to_hex(sha1
);
1569 abblen
= strlen(abbrev
);
1571 static char hex
[41];
1572 if (len
< abblen
&& abblen
<= len
+ 2)
1573 sprintf(hex
, "%s%.*s", abbrev
, len
+3-abblen
, "..");
1575 sprintf(hex
, "%s...", abbrev
);
1578 return sha1_to_hex(sha1
);
1581 static void diff_flush_raw(struct diff_filepair
*p
,
1582 int line_termination
,
1583 int inter_name_termination
,
1584 struct diff_options
*options
,
1589 int abbrev
= options
->abbrev
;
1590 const char *path_one
, *path_two
;
1592 path_one
= p
->one
->path
;
1593 path_two
= p
->two
->path
;
1594 if (line_termination
) {
1595 path_one
= quote_one(path_one
);
1596 path_two
= quote_one(path_two
);
1600 sprintf(status
, "%c%03d", p
->status
,
1601 (int)(0.5 + p
->score
* 100.0/MAX_SCORE
));
1603 status
[0] = p
->status
;
1606 switch (p
->status
) {
1607 case DIFF_STATUS_COPIED
:
1608 case DIFF_STATUS_RENAMED
:
1611 case DIFF_STATUS_ADDED
:
1612 case DIFF_STATUS_DELETED
:
1619 if (output_format
!= DIFF_FORMAT_NAME_STATUS
) {
1620 printf(":%06o %06o %s ",
1621 p
->one
->mode
, p
->two
->mode
,
1622 diff_unique_abbrev(p
->one
->sha1
, abbrev
));
1624 diff_unique_abbrev(p
->two
->sha1
, abbrev
));
1626 printf("%s%c%s", status
, inter_name_termination
, path_one
);
1628 printf("%c%s", inter_name_termination
, path_two
);
1629 putchar(line_termination
);
1630 if (path_one
!= p
->one
->path
)
1631 free((void*)path_one
);
1632 if (path_two
!= p
->two
->path
)
1633 free((void*)path_two
);
1636 static void diff_flush_name(struct diff_filepair
*p
,
1637 int inter_name_termination
,
1638 int line_termination
)
1640 char *path
= p
->two
->path
;
1642 if (line_termination
)
1643 path
= quote_one(p
->two
->path
);
1645 path
= p
->two
->path
;
1646 printf("%s%c", path
, line_termination
);
1647 if (p
->two
->path
!= path
)
1651 int diff_unmodified_pair(struct diff_filepair
*p
)
1653 /* This function is written stricter than necessary to support
1654 * the currently implemented transformers, but the idea is to
1655 * let transformers to produce diff_filepairs any way they want,
1656 * and filter and clean them up here before producing the output.
1658 struct diff_filespec
*one
, *two
;
1660 if (DIFF_PAIR_UNMERGED(p
))
1661 return 0; /* unmerged is interesting */
1666 /* deletion, addition, mode or type change
1667 * and rename are all interesting.
1669 if (DIFF_FILE_VALID(one
) != DIFF_FILE_VALID(two
) ||
1670 DIFF_PAIR_MODE_CHANGED(p
) ||
1671 strcmp(one
->path
, two
->path
))
1674 /* both are valid and point at the same path. that is, we are
1675 * dealing with a change.
1677 if (one
->sha1_valid
&& two
->sha1_valid
&&
1678 !memcmp(one
->sha1
, two
->sha1
, sizeof(one
->sha1
)))
1679 return 1; /* no change */
1680 if (!one
->sha1_valid
&& !two
->sha1_valid
)
1681 return 1; /* both look at the same file on the filesystem. */
1685 static void diff_flush_patch(struct diff_filepair
*p
, struct diff_options
*o
)
1687 if (diff_unmodified_pair(p
))
1690 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
1691 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
1692 return; /* no tree diffs in patch format */
1697 static void diff_flush_stat(struct diff_filepair
*p
, struct diff_options
*o
,
1698 struct diffstat_t
*diffstat
)
1700 if (diff_unmodified_pair(p
))
1703 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
1704 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
1705 return; /* no tree diffs in patch format */
1707 run_diffstat(p
, o
, diffstat
);
1710 static void diff_flush_checkdiff(struct diff_filepair
*p
,
1711 struct diff_options
*o
)
1713 if (diff_unmodified_pair(p
))
1716 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
1717 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
1718 return; /* no tree diffs in patch format */
1720 run_checkdiff(p
, o
);
1723 int diff_queue_is_empty(void)
1725 struct diff_queue_struct
*q
= &diff_queued_diff
;
1727 for (i
= 0; i
< q
->nr
; i
++)
1728 if (!diff_unmodified_pair(q
->queue
[i
]))
1734 void diff_debug_filespec(struct diff_filespec
*s
, int x
, const char *one
)
1736 fprintf(stderr
, "queue[%d] %s (%s) %s %06o %s\n",
1739 DIFF_FILE_VALID(s
) ? "valid" : "invalid",
1741 s
->sha1_valid
? sha1_to_hex(s
->sha1
) : "");
1742 fprintf(stderr
, "queue[%d] %s size %lu flags %d\n",
1744 s
->size
, s
->xfrm_flags
);
1747 void diff_debug_filepair(const struct diff_filepair
*p
, int i
)
1749 diff_debug_filespec(p
->one
, i
, "one");
1750 diff_debug_filespec(p
->two
, i
, "two");
1751 fprintf(stderr
, "score %d, status %c stays %d broken %d\n",
1752 p
->score
, p
->status
? p
->status
: '?',
1753 p
->source_stays
, p
->broken_pair
);
1756 void diff_debug_queue(const char *msg
, struct diff_queue_struct
*q
)
1760 fprintf(stderr
, "%s\n", msg
);
1761 fprintf(stderr
, "q->nr = %d\n", q
->nr
);
1762 for (i
= 0; i
< q
->nr
; i
++) {
1763 struct diff_filepair
*p
= q
->queue
[i
];
1764 diff_debug_filepair(p
, i
);
1769 static void diff_resolve_rename_copy(void)
1772 struct diff_filepair
*p
, *pp
;
1773 struct diff_queue_struct
*q
= &diff_queued_diff
;
1775 diff_debug_queue("resolve-rename-copy", q
);
1777 for (i
= 0; i
< q
->nr
; i
++) {
1779 p
->status
= 0; /* undecided */
1780 if (DIFF_PAIR_UNMERGED(p
))
1781 p
->status
= DIFF_STATUS_UNMERGED
;
1782 else if (!DIFF_FILE_VALID(p
->one
))
1783 p
->status
= DIFF_STATUS_ADDED
;
1784 else if (!DIFF_FILE_VALID(p
->two
))
1785 p
->status
= DIFF_STATUS_DELETED
;
1786 else if (DIFF_PAIR_TYPE_CHANGED(p
))
1787 p
->status
= DIFF_STATUS_TYPE_CHANGED
;
1789 /* from this point on, we are dealing with a pair
1790 * whose both sides are valid and of the same type, i.e.
1791 * either in-place edit or rename/copy edit.
1793 else if (DIFF_PAIR_RENAME(p
)) {
1794 if (p
->source_stays
) {
1795 p
->status
= DIFF_STATUS_COPIED
;
1798 /* See if there is some other filepair that
1799 * copies from the same source as us. If so
1800 * we are a copy. Otherwise we are either a
1801 * copy if the path stays, or a rename if it
1802 * does not, but we already handled "stays" case.
1804 for (j
= i
+ 1; j
< q
->nr
; j
++) {
1806 if (strcmp(pp
->one
->path
, p
->one
->path
))
1807 continue; /* not us */
1808 if (!DIFF_PAIR_RENAME(pp
))
1809 continue; /* not a rename/copy */
1810 /* pp is a rename/copy from the same source */
1811 p
->status
= DIFF_STATUS_COPIED
;
1815 p
->status
= DIFF_STATUS_RENAMED
;
1817 else if (memcmp(p
->one
->sha1
, p
->two
->sha1
, 20) ||
1818 p
->one
->mode
!= p
->two
->mode
)
1819 p
->status
= DIFF_STATUS_MODIFIED
;
1821 /* This is a "no-change" entry and should not
1822 * happen anymore, but prepare for broken callers.
1824 error("feeding unmodified %s to diffcore",
1826 p
->status
= DIFF_STATUS_UNKNOWN
;
1829 diff_debug_queue("resolve-rename-copy done", q
);
1832 static void flush_one_pair(struct diff_filepair
*p
,
1833 int diff_output_format
,
1834 struct diff_options
*options
,
1835 struct diffstat_t
*diffstat
)
1837 int inter_name_termination
= '\t';
1838 int line_termination
= options
->line_termination
;
1839 if (!line_termination
)
1840 inter_name_termination
= 0;
1842 switch (p
->status
) {
1843 case DIFF_STATUS_UNKNOWN
:
1846 die("internal error in diff-resolve-rename-copy");
1849 switch (diff_output_format
) {
1850 case DIFF_FORMAT_DIFFSTAT
:
1851 diff_flush_stat(p
, options
, diffstat
);
1853 case DIFF_FORMAT_CHECKDIFF
:
1854 diff_flush_checkdiff(p
, options
);
1856 case DIFF_FORMAT_PATCH
:
1857 diff_flush_patch(p
, options
);
1859 case DIFF_FORMAT_RAW
:
1860 case DIFF_FORMAT_NAME_STATUS
:
1861 diff_flush_raw(p
, line_termination
,
1862 inter_name_termination
,
1863 options
, diff_output_format
);
1865 case DIFF_FORMAT_NAME
:
1867 inter_name_termination
,
1870 case DIFF_FORMAT_NO_OUTPUT
:
1876 static void show_file_mode_name(const char *newdelete
, struct diff_filespec
*fs
)
1879 printf(" %s mode %06o %s\n", newdelete
, fs
->mode
, fs
->path
);
1881 printf(" %s %s\n", newdelete
, fs
->path
);
1885 static void show_mode_change(struct diff_filepair
*p
, int show_name
)
1887 if (p
->one
->mode
&& p
->two
->mode
&& p
->one
->mode
!= p
->two
->mode
) {
1889 printf(" mode change %06o => %06o %s\n",
1890 p
->one
->mode
, p
->two
->mode
, p
->two
->path
);
1892 printf(" mode change %06o => %06o\n",
1893 p
->one
->mode
, p
->two
->mode
);
1897 static void show_rename_copy(const char *renamecopy
, struct diff_filepair
*p
)
1899 const char *old
, *new;
1901 /* Find common prefix */
1905 const char *slash_old
, *slash_new
;
1906 slash_old
= strchr(old
, '/');
1907 slash_new
= strchr(new, '/');
1910 slash_old
- old
!= slash_new
- new ||
1911 memcmp(old
, new, slash_new
- new))
1913 old
= slash_old
+ 1;
1914 new = slash_new
+ 1;
1916 /* p->one->path thru old is the common prefix, and old and new
1917 * through the end of names are renames
1919 if (old
!= p
->one
->path
)
1920 printf(" %s %.*s{%s => %s} (%d%%)\n", renamecopy
,
1921 (int)(old
- p
->one
->path
), p
->one
->path
,
1922 old
, new, (int)(0.5 + p
->score
* 100.0/MAX_SCORE
));
1924 printf(" %s %s => %s (%d%%)\n", renamecopy
,
1925 p
->one
->path
, p
->two
->path
,
1926 (int)(0.5 + p
->score
* 100.0/MAX_SCORE
));
1927 show_mode_change(p
, 0);
1930 static void diff_summary(struct diff_filepair
*p
)
1933 case DIFF_STATUS_DELETED
:
1934 show_file_mode_name("delete", p
->one
);
1936 case DIFF_STATUS_ADDED
:
1937 show_file_mode_name("create", p
->two
);
1939 case DIFF_STATUS_COPIED
:
1940 show_rename_copy("copy", p
);
1942 case DIFF_STATUS_RENAMED
:
1943 show_rename_copy("rename", p
);
1947 printf(" rewrite %s (%d%%)\n", p
->two
->path
,
1948 (int)(0.5 + p
->score
* 100.0/MAX_SCORE
));
1949 show_mode_change(p
, 0);
1950 } else show_mode_change(p
, 1);
1955 void diff_flush(struct diff_options
*options
)
1957 struct diff_queue_struct
*q
= &diff_queued_diff
;
1959 int diff_output_format
= options
->output_format
;
1960 struct diffstat_t
*diffstat
= NULL
;
1962 if (diff_output_format
== DIFF_FORMAT_DIFFSTAT
|| options
->with_stat
) {
1963 diffstat
= xcalloc(sizeof (struct diffstat_t
), 1);
1964 diffstat
->xm
.consume
= diffstat_consume
;
1967 if (options
->with_raw
) {
1968 for (i
= 0; i
< q
->nr
; i
++) {
1969 struct diff_filepair
*p
= q
->queue
[i
];
1970 flush_one_pair(p
, DIFF_FORMAT_RAW
, options
, NULL
);
1972 putchar(options
->line_termination
);
1974 if (options
->with_stat
) {
1975 for (i
= 0; i
< q
->nr
; i
++) {
1976 struct diff_filepair
*p
= q
->queue
[i
];
1977 flush_one_pair(p
, DIFF_FORMAT_DIFFSTAT
, options
,
1980 show_stats(diffstat
);
1983 putchar(options
->line_termination
);
1985 for (i
= 0; i
< q
->nr
; i
++) {
1986 struct diff_filepair
*p
= q
->queue
[i
];
1987 flush_one_pair(p
, diff_output_format
, options
, diffstat
);
1991 show_stats(diffstat
);
1995 for (i
= 0; i
< q
->nr
; i
++) {
1996 if (options
->summary
)
1997 diff_summary(q
->queue
[i
]);
1998 diff_free_filepair(q
->queue
[i
]);
2003 q
->nr
= q
->alloc
= 0;
2006 static void diffcore_apply_filter(const char *filter
)
2009 struct diff_queue_struct
*q
= &diff_queued_diff
;
2010 struct diff_queue_struct outq
;
2012 outq
.nr
= outq
.alloc
= 0;
2017 if (strchr(filter
, DIFF_STATUS_FILTER_AON
)) {
2019 for (i
= found
= 0; !found
&& i
< q
->nr
; i
++) {
2020 struct diff_filepair
*p
= q
->queue
[i
];
2021 if (((p
->status
== DIFF_STATUS_MODIFIED
) &&
2023 strchr(filter
, DIFF_STATUS_FILTER_BROKEN
)) ||
2025 strchr(filter
, DIFF_STATUS_MODIFIED
)))) ||
2026 ((p
->status
!= DIFF_STATUS_MODIFIED
) &&
2027 strchr(filter
, p
->status
)))
2033 /* otherwise we will clear the whole queue
2034 * by copying the empty outq at the end of this
2035 * function, but first clear the current entries
2038 for (i
= 0; i
< q
->nr
; i
++)
2039 diff_free_filepair(q
->queue
[i
]);
2042 /* Only the matching ones */
2043 for (i
= 0; i
< q
->nr
; i
++) {
2044 struct diff_filepair
*p
= q
->queue
[i
];
2046 if (((p
->status
== DIFF_STATUS_MODIFIED
) &&
2048 strchr(filter
, DIFF_STATUS_FILTER_BROKEN
)) ||
2050 strchr(filter
, DIFF_STATUS_MODIFIED
)))) ||
2051 ((p
->status
!= DIFF_STATUS_MODIFIED
) &&
2052 strchr(filter
, p
->status
)))
2055 diff_free_filepair(p
);
2062 void diffcore_std(struct diff_options
*options
)
2064 if (options
->break_opt
!= -1)
2065 diffcore_break(options
->break_opt
);
2066 if (options
->detect_rename
)
2067 diffcore_rename(options
);
2068 if (options
->break_opt
!= -1)
2069 diffcore_merge_broken();
2070 if (options
->pickaxe
)
2071 diffcore_pickaxe(options
->pickaxe
, options
->pickaxe_opts
);
2072 if (options
->orderfile
)
2073 diffcore_order(options
->orderfile
);
2074 diff_resolve_rename_copy();
2075 diffcore_apply_filter(options
->filter
);
2079 void diffcore_std_no_resolve(struct diff_options
*options
)
2081 if (options
->pickaxe
)
2082 diffcore_pickaxe(options
->pickaxe
, options
->pickaxe_opts
);
2083 if (options
->orderfile
)
2084 diffcore_order(options
->orderfile
);
2085 diffcore_apply_filter(options
->filter
);
2088 void diff_addremove(struct diff_options
*options
,
2089 int addremove
, unsigned mode
,
2090 const unsigned char *sha1
,
2091 const char *base
, const char *path
)
2093 char concatpath
[PATH_MAX
];
2094 struct diff_filespec
*one
, *two
;
2096 /* This may look odd, but it is a preparation for
2097 * feeding "there are unchanged files which should
2098 * not produce diffs, but when you are doing copy
2099 * detection you would need them, so here they are"
2100 * entries to the diff-core. They will be prefixed
2101 * with something like '=' or '*' (I haven't decided
2102 * which but should not make any difference).
2103 * Feeding the same new and old to diff_change()
2104 * also has the same effect.
2105 * Before the final output happens, they are pruned after
2106 * merged into rename/copy pairs as appropriate.
2108 if (options
->reverse_diff
)
2109 addremove
= (addremove
== '+' ? '-' :
2110 addremove
== '-' ? '+' : addremove
);
2112 if (!path
) path
= "";
2113 sprintf(concatpath
, "%s%s", base
, path
);
2114 one
= alloc_filespec(concatpath
);
2115 two
= alloc_filespec(concatpath
);
2117 if (addremove
!= '+')
2118 fill_filespec(one
, sha1
, mode
);
2119 if (addremove
!= '-')
2120 fill_filespec(two
, sha1
, mode
);
2122 diff_queue(&diff_queued_diff
, one
, two
);
2125 void diff_change(struct diff_options
*options
,
2126 unsigned old_mode
, unsigned new_mode
,
2127 const unsigned char *old_sha1
,
2128 const unsigned char *new_sha1
,
2129 const char *base
, const char *path
)
2131 char concatpath
[PATH_MAX
];
2132 struct diff_filespec
*one
, *two
;
2134 if (options
->reverse_diff
) {
2136 const unsigned char *tmp_c
;
2137 tmp
= old_mode
; old_mode
= new_mode
; new_mode
= tmp
;
2138 tmp_c
= old_sha1
; old_sha1
= new_sha1
; new_sha1
= tmp_c
;
2140 if (!path
) path
= "";
2141 sprintf(concatpath
, "%s%s", base
, path
);
2142 one
= alloc_filespec(concatpath
);
2143 two
= alloc_filespec(concatpath
);
2144 fill_filespec(one
, old_sha1
, old_mode
);
2145 fill_filespec(two
, new_sha1
, new_mode
);
2147 diff_queue(&diff_queued_diff
, one
, two
);
2150 void diff_unmerge(struct diff_options
*options
,
2153 struct diff_filespec
*one
, *two
;
2154 one
= alloc_filespec(path
);
2155 two
= alloc_filespec(path
);
2156 diff_queue(&diff_queued_diff
, one
, two
);