2 * Copyright (C) 2005 Junio C Hamano
11 #include "xdiff/xdiff.h"
13 static int use_size_cache
;
15 int diff_rename_limit_default
= -1;
17 int git_diff_config(const char *var
, const char *value
)
19 if (!strcmp(var
, "diff.renamelimit")) {
20 diff_rename_limit_default
= git_config_int(var
, value
);
24 return git_default_config(var
, value
);
27 static char *quote_one(const char *str
)
34 needlen
= quote_c_style(str
, NULL
, NULL
, 0);
37 xp
= xmalloc(needlen
+ 1);
38 quote_c_style(str
, xp
, NULL
, 0);
42 static char *quote_two(const char *one
, const char *two
)
44 int need_one
= quote_c_style(one
, NULL
, NULL
, 1);
45 int need_two
= quote_c_style(two
, NULL
, NULL
, 1);
48 if (need_one
+ need_two
) {
49 if (!need_one
) need_one
= strlen(one
);
50 if (!need_two
) need_one
= strlen(two
);
52 xp
= xmalloc(need_one
+ need_two
+ 3);
54 quote_c_style(one
, xp
+ 1, NULL
, 1);
55 quote_c_style(two
, xp
+ need_one
+ 1, NULL
, 1);
56 strcpy(xp
+ need_one
+ need_two
+ 1, "\"");
59 need_one
= strlen(one
);
60 need_two
= strlen(two
);
61 xp
= xmalloc(need_one
+ need_two
+ 1);
63 strcpy(xp
+ need_one
, two
);
67 static const char *external_diff(void)
69 static const char *external_diff_cmd
= NULL
;
70 static int done_preparing
= 0;
73 return external_diff_cmd
;
74 external_diff_cmd
= getenv("GIT_EXTERNAL_DIFF");
76 return external_diff_cmd
;
79 #define TEMPFILE_PATH_LEN 50
81 static struct diff_tempfile
{
82 const char *name
; /* filename external diff should read from */
85 char tmp_path
[TEMPFILE_PATH_LEN
];
88 static int count_lines(const char *data
, int size
)
90 int count
, ch
, completely_empty
= 1, nl_just_seen
= 0;
101 completely_empty
= 0;
104 if (completely_empty
)
107 count
++; /* no trailing newline */
111 static void print_line_count(int count
)
121 printf("1,%d", count
);
126 static void copy_file(int prefix
, const char *data
, int size
)
128 int ch
, nl_just_seen
= 1;
140 printf("\n\\ No newline at end of file\n");
143 static void emit_rewrite_diff(const char *name_a
,
145 struct diff_filespec
*one
,
146 struct diff_filespec
*two
)
148 /* Use temp[i].name as input, name_a and name_b as labels */
150 lc_a
= count_lines(one
->data
, one
->size
);
151 lc_b
= count_lines(two
->data
, two
->size
);
152 printf("--- %s\n+++ %s\n@@ -", name_a
, name_b
);
153 print_line_count(lc_a
);
155 print_line_count(lc_b
);
158 copy_file('-', one
->data
, one
->size
);
160 copy_file('+', two
->data
, two
->size
);
163 static int fill_mmfile(mmfile_t
*mf
, struct diff_filespec
*one
)
165 if (!DIFF_FILE_VALID(one
)) {
166 mf
->ptr
= ""; /* does not matter */
170 else if (diff_populate_filespec(one
, 0))
173 mf
->size
= one
->size
;
177 struct emit_callback
{
178 const char **label_path
;
181 static int fn_out(void *priv
, mmbuffer_t
*mb
, int nbuf
)
184 struct emit_callback
*ecbdata
= priv
;
186 if (ecbdata
->label_path
[0]) {
187 printf("--- %s\n", ecbdata
->label_path
[0]);
188 printf("+++ %s\n", ecbdata
->label_path
[1]);
189 ecbdata
->label_path
[0] = ecbdata
->label_path
[1] = NULL
;
191 for (i
= 0; i
< nbuf
; i
++)
192 if (!fwrite(mb
[i
].ptr
, mb
[i
].size
, 1, stdout
))
197 #define FIRST_FEW_BYTES 8000
198 static int mmfile_is_binary(mmfile_t
*mf
)
201 if (FIRST_FEW_BYTES
< sz
)
202 sz
= FIRST_FEW_BYTES
;
203 if (memchr(mf
->ptr
, 0, sz
))
208 static void builtin_diff(const char *name_a
,
210 struct diff_filespec
*one
,
211 struct diff_filespec
*two
,
212 const char *xfrm_msg
,
213 int complete_rewrite
)
219 a_one
= quote_two("a/", name_a
);
220 b_two
= quote_two("b/", name_b
);
221 lbl
[0] = DIFF_FILE_VALID(one
) ? a_one
: "/dev/null";
222 lbl
[1] = DIFF_FILE_VALID(two
) ? b_two
: "/dev/null";
223 printf("diff --git %s %s\n", a_one
, b_two
);
224 if (lbl
[0][0] == '/') {
226 printf("new file mode %06o\n", two
->mode
);
227 if (xfrm_msg
&& xfrm_msg
[0])
230 else if (lbl
[1][0] == '/') {
231 printf("deleted file mode %06o\n", one
->mode
);
232 if (xfrm_msg
&& xfrm_msg
[0])
236 if (one
->mode
!= two
->mode
) {
237 printf("old mode %06o\n", one
->mode
);
238 printf("new mode %06o\n", two
->mode
);
240 if (xfrm_msg
&& xfrm_msg
[0])
243 * we do not run diff between different kind
246 if ((one
->mode
^ two
->mode
) & S_IFMT
)
247 goto free_ab_and_return
;
248 if (complete_rewrite
) {
249 emit_rewrite_diff(name_a
, name_b
, one
, two
);
250 goto free_ab_and_return
;
254 if (fill_mmfile(&mf1
, one
) < 0 || fill_mmfile(&mf2
, two
) < 0)
255 die("unable to read files to diff");
257 if (mmfile_is_binary(&mf1
) || mmfile_is_binary(&mf2
))
258 printf("Binary files %s and %s differ\n", lbl
[0], lbl
[1]);
260 /* Crazy xdl interfaces.. */
261 const char *diffopts
= getenv("GIT_DIFF_OPTS");
265 struct emit_callback ecbdata
;
267 ecbdata
.label_path
= lbl
;
268 xpp
.flags
= XDF_NEED_MINIMAL
;
270 xecfg
.flags
= XDL_EMIT_FUNCNAMES
;
273 else if (!strncmp(diffopts
, "--unified=", 10))
274 xecfg
.ctxlen
= strtoul(diffopts
+ 10, NULL
, 10);
275 else if (!strncmp(diffopts
, "-u", 2))
276 xecfg
.ctxlen
= strtoul(diffopts
+ 2, NULL
, 10);
279 xdl_diff(&mf1
, &mf2
, &xpp
, &xecfg
, &ecb
);
288 struct diff_filespec
*alloc_filespec(const char *path
)
290 int namelen
= strlen(path
);
291 struct diff_filespec
*spec
= xmalloc(sizeof(*spec
) + namelen
+ 1);
293 memset(spec
, 0, sizeof(*spec
));
294 spec
->path
= (char *)(spec
+ 1);
295 memcpy(spec
->path
, path
, namelen
+1);
299 void fill_filespec(struct diff_filespec
*spec
, const unsigned char *sha1
,
303 spec
->mode
= canon_mode(mode
);
304 memcpy(spec
->sha1
, sha1
, 20);
305 spec
->sha1_valid
= !!memcmp(sha1
, null_sha1
, 20);
310 * Given a name and sha1 pair, if the dircache tells us the file in
311 * the work tree has that object contents, return true, so that
312 * prepare_temp_file() does not have to inflate and extract.
314 static int work_tree_matches(const char *name
, const unsigned char *sha1
)
316 struct cache_entry
*ce
;
320 /* We do not read the cache ourselves here, because the
321 * benchmark with my previous version that always reads cache
322 * shows that it makes things worse for diff-tree comparing
323 * two linux-2.6 kernel trees in an already checked out work
324 * tree. This is because most diff-tree comparisons deal with
325 * only a small number of files, while reading the cache is
326 * expensive for a large project, and its cost outweighs the
327 * savings we get by not inflating the object to a temporary
328 * file. Practically, this code only helps when we are used
329 * by diff-cache --cached, which does read the cache before
336 pos
= cache_name_pos(name
, len
);
339 ce
= active_cache
[pos
];
340 if ((lstat(name
, &st
) < 0) ||
341 !S_ISREG(st
.st_mode
) || /* careful! */
342 ce_match_stat(ce
, &st
, 0) ||
343 memcmp(sha1
, ce
->sha1
, 20))
345 /* we return 1 only when we can stat, it is a regular file,
346 * stat information matches, and sha1 recorded in the cache
347 * matches. I.e. we know the file in the work tree really is
348 * the same as the <name, sha1> pair.
353 static struct sha1_size_cache
{
354 unsigned char sha1
[20];
357 static int sha1_size_cache_nr
, sha1_size_cache_alloc
;
359 static struct sha1_size_cache
*locate_size_cache(unsigned char *sha1
,
364 struct sha1_size_cache
*e
;
367 last
= sha1_size_cache_nr
;
368 while (last
> first
) {
369 int cmp
, next
= (last
+ first
) >> 1;
370 e
= sha1_size_cache
[next
];
371 cmp
= memcmp(e
->sha1
, sha1
, 20);
383 /* insert to make it at "first" */
384 if (sha1_size_cache_alloc
<= sha1_size_cache_nr
) {
385 sha1_size_cache_alloc
= alloc_nr(sha1_size_cache_alloc
);
386 sha1_size_cache
= xrealloc(sha1_size_cache
,
387 sha1_size_cache_alloc
*
388 sizeof(*sha1_size_cache
));
390 sha1_size_cache_nr
++;
391 if (first
< sha1_size_cache_nr
)
392 memmove(sha1_size_cache
+ first
+ 1, sha1_size_cache
+ first
,
393 (sha1_size_cache_nr
- first
- 1) *
394 sizeof(*sha1_size_cache
));
395 e
= xmalloc(sizeof(struct sha1_size_cache
));
396 sha1_size_cache
[first
] = e
;
397 memcpy(e
->sha1
, sha1
, 20);
403 * While doing rename detection and pickaxe operation, we may need to
404 * grab the data for the blob (or file) for our own in-core comparison.
405 * diff_filespec has data and size fields for this purpose.
407 int diff_populate_filespec(struct diff_filespec
*s
, int size_only
)
410 if (!DIFF_FILE_VALID(s
))
411 die("internal error: asking to populate invalid file.");
412 if (S_ISDIR(s
->mode
))
420 if (!s
->sha1_valid
||
421 work_tree_matches(s
->path
, s
->sha1
)) {
424 if (lstat(s
->path
, &st
) < 0) {
425 if (errno
== ENOENT
) {
434 s
->size
= st
.st_size
;
439 if (S_ISLNK(st
.st_mode
)) {
441 s
->data
= xmalloc(s
->size
);
443 ret
= readlink(s
->path
, s
->data
, s
->size
);
450 fd
= open(s
->path
, O_RDONLY
);
453 s
->data
= mmap(NULL
, s
->size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
455 if (s
->data
== MAP_FAILED
)
457 s
->should_munmap
= 1;
461 struct sha1_size_cache
*e
;
464 e
= locate_size_cache(s
->sha1
, 1, 0);
469 if (!sha1_object_info(s
->sha1
, type
, &s
->size
))
470 locate_size_cache(s
->sha1
, 0, s
->size
);
473 s
->data
= read_sha1_file(s
->sha1
, type
, &s
->size
);
480 void diff_free_filespec_data(struct diff_filespec
*s
)
484 else if (s
->should_munmap
)
485 munmap(s
->data
, s
->size
);
486 s
->should_free
= s
->should_munmap
= 0;
492 static void prep_temp_blob(struct diff_tempfile
*temp
,
495 const unsigned char *sha1
,
500 fd
= git_mkstemp(temp
->tmp_path
, TEMPFILE_PATH_LEN
, ".diff_XXXXXX");
502 die("unable to create temp-file");
503 if (write(fd
, blob
, size
) != size
)
504 die("unable to write temp-file");
506 temp
->name
= temp
->tmp_path
;
507 strcpy(temp
->hex
, sha1_to_hex(sha1
));
509 sprintf(temp
->mode
, "%06o", mode
);
512 static void prepare_temp_file(const char *name
,
513 struct diff_tempfile
*temp
,
514 struct diff_filespec
*one
)
516 if (!DIFF_FILE_VALID(one
)) {
518 /* A '-' entry produces this for file-2, and
519 * a '+' entry produces this for file-1.
521 temp
->name
= "/dev/null";
522 strcpy(temp
->hex
, ".");
523 strcpy(temp
->mode
, ".");
527 if (!one
->sha1_valid
||
528 work_tree_matches(name
, one
->sha1
)) {
530 if (lstat(name
, &st
) < 0) {
532 goto not_a_valid_file
;
533 die("stat(%s): %s", name
, strerror(errno
));
535 if (S_ISLNK(st
.st_mode
)) {
537 char buf
[PATH_MAX
+ 1]; /* ought to be SYMLINK_MAX */
538 if (sizeof(buf
) <= st
.st_size
)
539 die("symlink too long: %s", name
);
540 ret
= readlink(name
, buf
, st
.st_size
);
542 die("readlink(%s)", name
);
543 prep_temp_blob(temp
, buf
, st
.st_size
,
545 one
->sha1
: null_sha1
),
547 one
->mode
: S_IFLNK
));
550 /* we can borrow from the file in the work tree */
552 if (!one
->sha1_valid
)
553 strcpy(temp
->hex
, sha1_to_hex(null_sha1
));
555 strcpy(temp
->hex
, sha1_to_hex(one
->sha1
));
556 /* Even though we may sometimes borrow the
557 * contents from the work tree, we always want
558 * one->mode. mode is trustworthy even when
559 * !(one->sha1_valid), as long as
560 * DIFF_FILE_VALID(one).
562 sprintf(temp
->mode
, "%06o", one
->mode
);
567 if (diff_populate_filespec(one
, 0))
568 die("cannot read data blob for %s", one
->path
);
569 prep_temp_blob(temp
, one
->data
, one
->size
,
570 one
->sha1
, one
->mode
);
574 static void remove_tempfile(void)
578 for (i
= 0; i
< 2; i
++)
579 if (diff_temp
[i
].name
== diff_temp
[i
].tmp_path
) {
580 unlink(diff_temp
[i
].name
);
581 diff_temp
[i
].name
= NULL
;
585 static void remove_tempfile_on_signal(int signo
)
588 signal(SIGINT
, SIG_DFL
);
592 static int spawn_prog(const char *pgm
, const char **arg
)
600 die("unable to fork");
602 execvp(pgm
, (char *const*) arg
);
606 while (waitpid(pid
, &status
, 0) < 0) {
612 /* Earlier we did not check the exit status because
613 * diff exits non-zero if files are different, and
614 * we are not interested in knowing that. It was a
615 * mistake which made it harder to quit a diff-*
616 * session that uses the git-apply-patch-script as
617 * the GIT_EXTERNAL_DIFF. A custom GIT_EXTERNAL_DIFF
618 * should also exit non-zero only when it wants to
619 * abort the entire diff-* session.
621 if (WIFEXITED(status
) && !WEXITSTATUS(status
))
626 /* An external diff command takes:
628 * diff-cmd name infile1 infile1-sha1 infile1-mode \
629 * infile2 infile2-sha1 infile2-mode [ rename-to ]
632 static void run_external_diff(const char *pgm
,
635 struct diff_filespec
*one
,
636 struct diff_filespec
*two
,
637 const char *xfrm_msg
,
638 int complete_rewrite
)
640 const char *spawn_arg
[10];
641 struct diff_tempfile
*temp
= diff_temp
;
643 static int atexit_asked
= 0;
644 const char *othername
;
645 const char **arg
= &spawn_arg
[0];
647 othername
= (other
? other
: name
);
649 prepare_temp_file(name
, &temp
[0], one
);
650 prepare_temp_file(othername
, &temp
[1], two
);
651 if (! atexit_asked
&&
652 (temp
[0].name
== temp
[0].tmp_path
||
653 temp
[1].name
== temp
[1].tmp_path
)) {
655 atexit(remove_tempfile
);
657 signal(SIGINT
, remove_tempfile_on_signal
);
663 *arg
++ = temp
[0].name
;
664 *arg
++ = temp
[0].hex
;
665 *arg
++ = temp
[0].mode
;
666 *arg
++ = temp
[1].name
;
667 *arg
++ = temp
[1].hex
;
668 *arg
++ = temp
[1].mode
;
678 retval
= spawn_prog(pgm
, spawn_arg
);
681 fprintf(stderr
, "external diff died, stopping at %s.\n", name
);
686 static void run_diff_cmd(const char *pgm
,
689 struct diff_filespec
*one
,
690 struct diff_filespec
*two
,
691 const char *xfrm_msg
,
692 int complete_rewrite
)
695 run_external_diff(pgm
, name
, other
, one
, two
, xfrm_msg
,
700 builtin_diff(name
, other
? other
: name
,
701 one
, two
, xfrm_msg
, complete_rewrite
);
703 printf("* Unmerged path %s\n", name
);
706 static void diff_fill_sha1_info(struct diff_filespec
*one
)
708 if (DIFF_FILE_VALID(one
)) {
709 if (!one
->sha1_valid
) {
711 if (lstat(one
->path
, &st
) < 0)
712 die("stat %s", one
->path
);
713 if (index_path(one
->sha1
, one
->path
, &st
, 0))
714 die("cannot hash %s\n", one
->path
);
718 memset(one
->sha1
, 0, 20);
721 static void run_diff(struct diff_filepair
*p
, struct diff_options
*o
)
723 const char *pgm
= external_diff();
724 char msg
[PATH_MAX
*2+300], *xfrm_msg
;
725 struct diff_filespec
*one
;
726 struct diff_filespec
*two
;
729 char *name_munged
, *other_munged
;
730 int complete_rewrite
= 0;
733 if (DIFF_PAIR_UNMERGED(p
)) {
735 run_diff_cmd(pgm
, p
->one
->path
, NULL
, NULL
, NULL
, NULL
, 0);
740 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
741 name_munged
= quote_one(name
);
742 other_munged
= quote_one(other
);
743 one
= p
->one
; two
= p
->two
;
745 diff_fill_sha1_info(one
);
746 diff_fill_sha1_info(two
);
750 case DIFF_STATUS_COPIED
:
751 len
+= snprintf(msg
+ len
, sizeof(msg
) - len
,
752 "similarity index %d%%\n"
755 (int)(0.5 + p
->score
* 100.0/MAX_SCORE
),
756 name_munged
, other_munged
);
758 case DIFF_STATUS_RENAMED
:
759 len
+= snprintf(msg
+ len
, sizeof(msg
) - len
,
760 "similarity index %d%%\n"
763 (int)(0.5 + p
->score
* 100.0/MAX_SCORE
),
764 name_munged
, other_munged
);
766 case DIFF_STATUS_MODIFIED
:
768 len
+= snprintf(msg
+ len
, sizeof(msg
) - len
,
769 "dissimilarity index %d%%\n",
770 (int)(0.5 + p
->score
*
772 complete_rewrite
= 1;
781 if (memcmp(one
->sha1
, two
->sha1
, 20)) {
783 int abbrev
= o
->full_index
? 40 : DEFAULT_ABBREV
;
784 memcpy(one_sha1
, sha1_to_hex(one
->sha1
), 41);
786 len
+= snprintf(msg
+ len
, sizeof(msg
) - len
,
788 abbrev
, one_sha1
, abbrev
,
789 sha1_to_hex(two
->sha1
));
790 if (one
->mode
== two
->mode
)
791 len
+= snprintf(msg
+ len
, sizeof(msg
) - len
,
793 len
+= snprintf(msg
+ len
, sizeof(msg
) - len
, "\n");
798 xfrm_msg
= len
? msg
: NULL
;
801 DIFF_FILE_VALID(one
) && DIFF_FILE_VALID(two
) &&
802 (S_IFMT
& one
->mode
) != (S_IFMT
& two
->mode
)) {
803 /* a filepair that changes between file and symlink
804 * needs to be split into deletion and creation.
806 struct diff_filespec
*null
= alloc_filespec(two
->path
);
807 run_diff_cmd(NULL
, name
, other
, one
, null
, xfrm_msg
, 0);
809 null
= alloc_filespec(one
->path
);
810 run_diff_cmd(NULL
, name
, other
, null
, two
, xfrm_msg
, 0);
814 run_diff_cmd(pgm
, name
, other
, one
, two
, xfrm_msg
,
821 void diff_setup(struct diff_options
*options
)
823 memset(options
, 0, sizeof(*options
));
824 options
->output_format
= DIFF_FORMAT_RAW
;
825 options
->line_termination
= '\n';
826 options
->break_opt
= -1;
827 options
->rename_limit
= -1;
829 options
->change
= diff_change
;
830 options
->add_remove
= diff_addremove
;
833 int diff_setup_done(struct diff_options
*options
)
835 if ((options
->find_copies_harder
&&
836 options
->detect_rename
!= DIFF_DETECT_COPY
) ||
837 (0 <= options
->rename_limit
&& !options
->detect_rename
))
839 if (options
->detect_rename
&& options
->rename_limit
< 0)
840 options
->rename_limit
= diff_rename_limit_default
;
841 if (options
->setup
& DIFF_SETUP_USE_CACHE
) {
843 /* read-cache does not die even when it fails
844 * so it is safe for us to do this here. Also
845 * it does not smudge active_cache or active_nr
846 * when it fails, so we do not have to worry about
847 * cleaning it up ourselves either.
851 if (options
->setup
& DIFF_SETUP_USE_SIZE_CACHE
)
853 if (options
->abbrev
<= 0 || 40 < options
->abbrev
)
854 options
->abbrev
= 40; /* full */
859 int diff_opt_parse(struct diff_options
*options
, const char **av
, int ac
)
861 const char *arg
= av
[0];
862 if (!strcmp(arg
, "-p") || !strcmp(arg
, "-u"))
863 options
->output_format
= DIFF_FORMAT_PATCH
;
864 else if (!strcmp(arg
, "-z"))
865 options
->line_termination
= 0;
866 else if (!strncmp(arg
, "-l", 2))
867 options
->rename_limit
= strtoul(arg
+2, NULL
, 10);
868 else if (!strcmp(arg
, "--full-index"))
869 options
->full_index
= 1;
870 else if (!strcmp(arg
, "--name-only"))
871 options
->output_format
= DIFF_FORMAT_NAME
;
872 else if (!strcmp(arg
, "--name-status"))
873 options
->output_format
= DIFF_FORMAT_NAME_STATUS
;
874 else if (!strcmp(arg
, "-R"))
875 options
->reverse_diff
= 1;
876 else if (!strncmp(arg
, "-S", 2))
877 options
->pickaxe
= arg
+ 2;
878 else if (!strcmp(arg
, "-s"))
879 options
->output_format
= DIFF_FORMAT_NO_OUTPUT
;
880 else if (!strncmp(arg
, "-O", 2))
881 options
->orderfile
= arg
+ 2;
882 else if (!strncmp(arg
, "--diff-filter=", 14))
883 options
->filter
= arg
+ 14;
884 else if (!strcmp(arg
, "--pickaxe-all"))
885 options
->pickaxe_opts
= DIFF_PICKAXE_ALL
;
886 else if (!strcmp(arg
, "--pickaxe-regex"))
887 options
->pickaxe_opts
= DIFF_PICKAXE_REGEX
;
888 else if (!strncmp(arg
, "-B", 2)) {
889 if ((options
->break_opt
=
890 diff_scoreopt_parse(arg
)) == -1)
893 else if (!strncmp(arg
, "-M", 2)) {
894 if ((options
->rename_score
=
895 diff_scoreopt_parse(arg
)) == -1)
897 options
->detect_rename
= DIFF_DETECT_RENAME
;
899 else if (!strncmp(arg
, "-C", 2)) {
900 if ((options
->rename_score
=
901 diff_scoreopt_parse(arg
)) == -1)
903 options
->detect_rename
= DIFF_DETECT_COPY
;
905 else if (!strcmp(arg
, "--find-copies-harder"))
906 options
->find_copies_harder
= 1;
907 else if (!strcmp(arg
, "--abbrev"))
908 options
->abbrev
= DEFAULT_ABBREV
;
909 else if (!strncmp(arg
, "--abbrev=", 9)) {
910 options
->abbrev
= strtoul(arg
+ 9, NULL
, 10);
911 if (options
->abbrev
< MINIMUM_ABBREV
)
912 options
->abbrev
= MINIMUM_ABBREV
;
913 else if (40 < options
->abbrev
)
914 options
->abbrev
= 40;
921 static int parse_num(const char **cp_p
)
923 unsigned long num
, scale
;
925 const char *cp
= *cp_p
;
932 if ( !dot
&& ch
== '.' ) {
935 } else if ( ch
== '%' ) {
936 scale
= dot
? scale
*100 : 100;
937 cp
++; /* % is always at the end */
939 } else if ( ch
>= '0' && ch
<= '9' ) {
940 if ( scale
< 100000 ) {
942 num
= (num
*10) + (ch
-'0');
951 /* user says num divided by scale and we say internally that
952 * is MAX_SCORE * num / scale.
954 return (num
>= scale
) ? MAX_SCORE
: (MAX_SCORE
* num
/ scale
);
957 int diff_scoreopt_parse(const char *opt
)
964 if (cmd
!= 'M' && cmd
!= 'C' && cmd
!= 'B')
965 return -1; /* that is not a -M, -C nor -B option */
967 opt1
= parse_num(&opt
);
973 else if (*opt
!= '/')
974 return -1; /* we expect -B80/99 or -B80 */
977 opt2
= parse_num(&opt
);
982 return opt1
| (opt2
<< 16);
985 struct diff_queue_struct diff_queued_diff
;
987 void diff_q(struct diff_queue_struct
*queue
, struct diff_filepair
*dp
)
989 if (queue
->alloc
<= queue
->nr
) {
990 queue
->alloc
= alloc_nr(queue
->alloc
);
991 queue
->queue
= xrealloc(queue
->queue
,
992 sizeof(dp
) * queue
->alloc
);
994 queue
->queue
[queue
->nr
++] = dp
;
997 struct diff_filepair
*diff_queue(struct diff_queue_struct
*queue
,
998 struct diff_filespec
*one
,
999 struct diff_filespec
*two
)
1001 struct diff_filepair
*dp
= xmalloc(sizeof(*dp
));
1006 dp
->source_stays
= 0;
1007 dp
->broken_pair
= 0;
1013 void diff_free_filepair(struct diff_filepair
*p
)
1015 diff_free_filespec_data(p
->one
);
1016 diff_free_filespec_data(p
->two
);
1022 /* This is different from find_unique_abbrev() in that
1023 * it stuffs the result with dots for alignment.
1025 const char *diff_unique_abbrev(const unsigned char *sha1
, int len
)
1030 return sha1_to_hex(sha1
);
1032 abbrev
= find_unique_abbrev(sha1
, len
);
1034 return sha1_to_hex(sha1
);
1035 abblen
= strlen(abbrev
);
1037 static char hex
[41];
1038 if (len
< abblen
&& abblen
<= len
+ 2)
1039 sprintf(hex
, "%s%.*s", abbrev
, len
+3-abblen
, "..");
1041 sprintf(hex
, "%s...", abbrev
);
1044 return sha1_to_hex(sha1
);
1047 static void diff_flush_raw(struct diff_filepair
*p
,
1048 int line_termination
,
1049 int inter_name_termination
,
1050 struct diff_options
*options
)
1054 int abbrev
= options
->abbrev
;
1055 const char *path_one
, *path_two
;
1056 int output_format
= options
->output_format
;
1058 path_one
= p
->one
->path
;
1059 path_two
= p
->two
->path
;
1060 if (line_termination
) {
1061 path_one
= quote_one(path_one
);
1062 path_two
= quote_one(path_two
);
1066 sprintf(status
, "%c%03d", p
->status
,
1067 (int)(0.5 + p
->score
* 100.0/MAX_SCORE
));
1069 status
[0] = p
->status
;
1072 switch (p
->status
) {
1073 case DIFF_STATUS_COPIED
:
1074 case DIFF_STATUS_RENAMED
:
1077 case DIFF_STATUS_ADDED
:
1078 case DIFF_STATUS_DELETED
:
1085 if (output_format
!= DIFF_FORMAT_NAME_STATUS
) {
1086 printf(":%06o %06o %s ",
1087 p
->one
->mode
, p
->two
->mode
,
1088 diff_unique_abbrev(p
->one
->sha1
, abbrev
));
1090 diff_unique_abbrev(p
->two
->sha1
, abbrev
));
1092 printf("%s%c%s", status
, inter_name_termination
, path_one
);
1094 printf("%c%s", inter_name_termination
, path_two
);
1095 putchar(line_termination
);
1096 if (path_one
!= p
->one
->path
)
1097 free((void*)path_one
);
1098 if (path_two
!= p
->two
->path
)
1099 free((void*)path_two
);
1102 static void diff_flush_name(struct diff_filepair
*p
,
1103 int inter_name_termination
,
1104 int line_termination
)
1106 char *path
= p
->two
->path
;
1108 if (line_termination
)
1109 path
= quote_one(p
->two
->path
);
1111 path
= p
->two
->path
;
1112 printf("%s%c", path
, line_termination
);
1113 if (p
->two
->path
!= path
)
1117 int diff_unmodified_pair(struct diff_filepair
*p
)
1119 /* This function is written stricter than necessary to support
1120 * the currently implemented transformers, but the idea is to
1121 * let transformers to produce diff_filepairs any way they want,
1122 * and filter and clean them up here before producing the output.
1124 struct diff_filespec
*one
, *two
;
1126 if (DIFF_PAIR_UNMERGED(p
))
1127 return 0; /* unmerged is interesting */
1132 /* deletion, addition, mode or type change
1133 * and rename are all interesting.
1135 if (DIFF_FILE_VALID(one
) != DIFF_FILE_VALID(two
) ||
1136 DIFF_PAIR_MODE_CHANGED(p
) ||
1137 strcmp(one
->path
, two
->path
))
1140 /* both are valid and point at the same path. that is, we are
1141 * dealing with a change.
1143 if (one
->sha1_valid
&& two
->sha1_valid
&&
1144 !memcmp(one
->sha1
, two
->sha1
, sizeof(one
->sha1
)))
1145 return 1; /* no change */
1146 if (!one
->sha1_valid
&& !two
->sha1_valid
)
1147 return 1; /* both look at the same file on the filesystem. */
1151 static void diff_flush_patch(struct diff_filepair
*p
, struct diff_options
*o
)
1153 if (diff_unmodified_pair(p
))
1156 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
1157 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
1158 return; /* no tree diffs in patch format */
1163 int diff_queue_is_empty(void)
1165 struct diff_queue_struct
*q
= &diff_queued_diff
;
1167 for (i
= 0; i
< q
->nr
; i
++)
1168 if (!diff_unmodified_pair(q
->queue
[i
]))
1174 void diff_debug_filespec(struct diff_filespec
*s
, int x
, const char *one
)
1176 fprintf(stderr
, "queue[%d] %s (%s) %s %06o %s\n",
1179 DIFF_FILE_VALID(s
) ? "valid" : "invalid",
1181 s
->sha1_valid
? sha1_to_hex(s
->sha1
) : "");
1182 fprintf(stderr
, "queue[%d] %s size %lu flags %d\n",
1184 s
->size
, s
->xfrm_flags
);
1187 void diff_debug_filepair(const struct diff_filepair
*p
, int i
)
1189 diff_debug_filespec(p
->one
, i
, "one");
1190 diff_debug_filespec(p
->two
, i
, "two");
1191 fprintf(stderr
, "score %d, status %c stays %d broken %d\n",
1192 p
->score
, p
->status
? p
->status
: '?',
1193 p
->source_stays
, p
->broken_pair
);
1196 void diff_debug_queue(const char *msg
, struct diff_queue_struct
*q
)
1200 fprintf(stderr
, "%s\n", msg
);
1201 fprintf(stderr
, "q->nr = %d\n", q
->nr
);
1202 for (i
= 0; i
< q
->nr
; i
++) {
1203 struct diff_filepair
*p
= q
->queue
[i
];
1204 diff_debug_filepair(p
, i
);
1209 static void diff_resolve_rename_copy(void)
1212 struct diff_filepair
*p
, *pp
;
1213 struct diff_queue_struct
*q
= &diff_queued_diff
;
1215 diff_debug_queue("resolve-rename-copy", q
);
1217 for (i
= 0; i
< q
->nr
; i
++) {
1219 p
->status
= 0; /* undecided */
1220 if (DIFF_PAIR_UNMERGED(p
))
1221 p
->status
= DIFF_STATUS_UNMERGED
;
1222 else if (!DIFF_FILE_VALID(p
->one
))
1223 p
->status
= DIFF_STATUS_ADDED
;
1224 else if (!DIFF_FILE_VALID(p
->two
))
1225 p
->status
= DIFF_STATUS_DELETED
;
1226 else if (DIFF_PAIR_TYPE_CHANGED(p
))
1227 p
->status
= DIFF_STATUS_TYPE_CHANGED
;
1229 /* from this point on, we are dealing with a pair
1230 * whose both sides are valid and of the same type, i.e.
1231 * either in-place edit or rename/copy edit.
1233 else if (DIFF_PAIR_RENAME(p
)) {
1234 if (p
->source_stays
) {
1235 p
->status
= DIFF_STATUS_COPIED
;
1238 /* See if there is some other filepair that
1239 * copies from the same source as us. If so
1240 * we are a copy. Otherwise we are either a
1241 * copy if the path stays, or a rename if it
1242 * does not, but we already handled "stays" case.
1244 for (j
= i
+ 1; j
< q
->nr
; j
++) {
1246 if (strcmp(pp
->one
->path
, p
->one
->path
))
1247 continue; /* not us */
1248 if (!DIFF_PAIR_RENAME(pp
))
1249 continue; /* not a rename/copy */
1250 /* pp is a rename/copy from the same source */
1251 p
->status
= DIFF_STATUS_COPIED
;
1255 p
->status
= DIFF_STATUS_RENAMED
;
1257 else if (memcmp(p
->one
->sha1
, p
->two
->sha1
, 20) ||
1258 p
->one
->mode
!= p
->two
->mode
)
1259 p
->status
= DIFF_STATUS_MODIFIED
;
1261 /* This is a "no-change" entry and should not
1262 * happen anymore, but prepare for broken callers.
1264 error("feeding unmodified %s to diffcore",
1266 p
->status
= DIFF_STATUS_UNKNOWN
;
1269 diff_debug_queue("resolve-rename-copy done", q
);
1272 void diff_flush(struct diff_options
*options
)
1274 struct diff_queue_struct
*q
= &diff_queued_diff
;
1276 int inter_name_termination
= '\t';
1277 int diff_output_format
= options
->output_format
;
1278 int line_termination
= options
->line_termination
;
1280 if (!line_termination
)
1281 inter_name_termination
= 0;
1283 for (i
= 0; i
< q
->nr
; i
++) {
1284 struct diff_filepair
*p
= q
->queue
[i
];
1286 switch (p
->status
) {
1287 case DIFF_STATUS_UNKNOWN
:
1290 die("internal error in diff-resolve-rename-copy");
1293 switch (diff_output_format
) {
1294 case DIFF_FORMAT_PATCH
:
1295 diff_flush_patch(p
, options
);
1297 case DIFF_FORMAT_RAW
:
1298 case DIFF_FORMAT_NAME_STATUS
:
1299 diff_flush_raw(p
, line_termination
,
1300 inter_name_termination
,
1303 case DIFF_FORMAT_NAME
:
1305 inter_name_termination
,
1308 case DIFF_FORMAT_NO_OUTPUT
:
1312 diff_free_filepair(p
);
1316 q
->nr
= q
->alloc
= 0;
1319 static void diffcore_apply_filter(const char *filter
)
1322 struct diff_queue_struct
*q
= &diff_queued_diff
;
1323 struct diff_queue_struct outq
;
1325 outq
.nr
= outq
.alloc
= 0;
1330 if (strchr(filter
, DIFF_STATUS_FILTER_AON
)) {
1332 for (i
= found
= 0; !found
&& i
< q
->nr
; i
++) {
1333 struct diff_filepair
*p
= q
->queue
[i
];
1334 if (((p
->status
== DIFF_STATUS_MODIFIED
) &&
1336 strchr(filter
, DIFF_STATUS_FILTER_BROKEN
)) ||
1338 strchr(filter
, DIFF_STATUS_MODIFIED
)))) ||
1339 ((p
->status
!= DIFF_STATUS_MODIFIED
) &&
1340 strchr(filter
, p
->status
)))
1346 /* otherwise we will clear the whole queue
1347 * by copying the empty outq at the end of this
1348 * function, but first clear the current entries
1351 for (i
= 0; i
< q
->nr
; i
++)
1352 diff_free_filepair(q
->queue
[i
]);
1355 /* Only the matching ones */
1356 for (i
= 0; i
< q
->nr
; i
++) {
1357 struct diff_filepair
*p
= q
->queue
[i
];
1359 if (((p
->status
== DIFF_STATUS_MODIFIED
) &&
1361 strchr(filter
, DIFF_STATUS_FILTER_BROKEN
)) ||
1363 strchr(filter
, DIFF_STATUS_MODIFIED
)))) ||
1364 ((p
->status
!= DIFF_STATUS_MODIFIED
) &&
1365 strchr(filter
, p
->status
)))
1368 diff_free_filepair(p
);
1375 void diffcore_std(struct diff_options
*options
)
1377 if (options
->paths
&& options
->paths
[0])
1378 diffcore_pathspec(options
->paths
);
1379 if (options
->break_opt
!= -1)
1380 diffcore_break(options
->break_opt
);
1381 if (options
->detect_rename
)
1382 diffcore_rename(options
);
1383 if (options
->break_opt
!= -1)
1384 diffcore_merge_broken();
1385 if (options
->pickaxe
)
1386 diffcore_pickaxe(options
->pickaxe
, options
->pickaxe_opts
);
1387 if (options
->orderfile
)
1388 diffcore_order(options
->orderfile
);
1389 diff_resolve_rename_copy();
1390 diffcore_apply_filter(options
->filter
);
1394 void diffcore_std_no_resolve(struct diff_options
*options
)
1396 if (options
->pickaxe
)
1397 diffcore_pickaxe(options
->pickaxe
, options
->pickaxe_opts
);
1398 if (options
->orderfile
)
1399 diffcore_order(options
->orderfile
);
1400 diffcore_apply_filter(options
->filter
);
1403 void diff_addremove(struct diff_options
*options
,
1404 int addremove
, unsigned mode
,
1405 const unsigned char *sha1
,
1406 const char *base
, const char *path
)
1408 char concatpath
[PATH_MAX
];
1409 struct diff_filespec
*one
, *two
;
1411 /* This may look odd, but it is a preparation for
1412 * feeding "there are unchanged files which should
1413 * not produce diffs, but when you are doing copy
1414 * detection you would need them, so here they are"
1415 * entries to the diff-core. They will be prefixed
1416 * with something like '=' or '*' (I haven't decided
1417 * which but should not make any difference).
1418 * Feeding the same new and old to diff_change()
1419 * also has the same effect.
1420 * Before the final output happens, they are pruned after
1421 * merged into rename/copy pairs as appropriate.
1423 if (options
->reverse_diff
)
1424 addremove
= (addremove
== '+' ? '-' :
1425 addremove
== '-' ? '+' : addremove
);
1427 if (!path
) path
= "";
1428 sprintf(concatpath
, "%s%s", base
, path
);
1429 one
= alloc_filespec(concatpath
);
1430 two
= alloc_filespec(concatpath
);
1432 if (addremove
!= '+')
1433 fill_filespec(one
, sha1
, mode
);
1434 if (addremove
!= '-')
1435 fill_filespec(two
, sha1
, mode
);
1437 diff_queue(&diff_queued_diff
, one
, two
);
1440 void diff_change(struct diff_options
*options
,
1441 unsigned old_mode
, unsigned new_mode
,
1442 const unsigned char *old_sha1
,
1443 const unsigned char *new_sha1
,
1444 const char *base
, const char *path
)
1446 char concatpath
[PATH_MAX
];
1447 struct diff_filespec
*one
, *two
;
1449 if (options
->reverse_diff
) {
1451 const unsigned char *tmp_c
;
1452 tmp
= old_mode
; old_mode
= new_mode
; new_mode
= tmp
;
1453 tmp_c
= old_sha1
; old_sha1
= new_sha1
; new_sha1
= tmp_c
;
1455 if (!path
) path
= "";
1456 sprintf(concatpath
, "%s%s", base
, path
);
1457 one
= alloc_filespec(concatpath
);
1458 two
= alloc_filespec(concatpath
);
1459 fill_filespec(one
, old_sha1
, old_mode
);
1460 fill_filespec(two
, new_sha1
, new_mode
);
1462 diff_queue(&diff_queued_diff
, one
, two
);
1465 void diff_unmerge(struct diff_options
*options
,
1468 struct diff_filespec
*one
, *two
;
1469 one
= alloc_filespec(path
);
1470 two
= alloc_filespec(path
);
1471 diff_queue(&diff_queued_diff
, one
, two
);