2 * Copyright (C) 2005 Junio C Hamano
11 static const char *diff_opts
= "-pu";
12 static unsigned char null_sha1
[20] = { 0, };
14 static int reverse_diff
;
15 static int use_size_cache
;
17 static const char *external_diff(void)
19 static const char *external_diff_cmd
= NULL
;
20 static int done_preparing
= 0;
23 return external_diff_cmd
;
26 * Default values above are meant to match the
27 * Linux kernel development style. Examples of
28 * alternative styles you can specify via environment
33 if (gitenv("GIT_EXTERNAL_DIFF"))
34 external_diff_cmd
= gitenv("GIT_EXTERNAL_DIFF");
36 /* In case external diff fails... */
37 diff_opts
= gitenv("GIT_DIFF_OPTS") ? : diff_opts
;
40 return external_diff_cmd
;
43 /* Help to copy the thing properly quoted for the shell safety.
44 * any single quote is replaced with '\'', and the caller is
45 * expected to enclose the result within a single quote pair.
48 * original sq_expand result
49 * name ==> name ==> 'name'
50 * a b ==> a b ==> 'a b'
51 * a'b ==> a'\''b ==> 'a'\''b'
53 static char *sq_expand(const char *src
)
55 static char *buf
= NULL
;
60 /* count bytes needed to store the quoted string. */
61 for (cnt
= 1, cp
= src
; *cp
; cnt
++, cp
++)
67 while ((c
= *src
++)) {
71 bp
= strcpy(bp
, "'\\''");
79 static struct diff_tempfile
{
80 const char *name
; /* filename external diff should read from */
86 static void builtin_diff(const char *name_a
,
88 struct diff_tempfile
*temp
,
91 int i
, next_at
, cmd_size
;
92 const char *diff_cmd
= "diff -L'%s%s' -L'%s%s'";
93 const char *diff_arg
= "'%s' '%s'||:"; /* "||:" is to return 0 */
94 const char *input_name_sq
[2];
97 const char *name_sq
[2];
100 name_sq
[0] = sq_expand(name_a
);
101 name_sq
[1] = sq_expand(name_b
);
103 /* diff_cmd and diff_arg have 6 %s in total which makes
104 * the sum of these strings 12 bytes larger than required.
105 * we use 2 spaces around diff-opts, and we need to count
106 * terminating NUL, so we subtract 9 here.
108 cmd_size
= (strlen(diff_cmd
) + strlen(diff_opts
) +
109 strlen(diff_arg
) - 9);
110 for (i
= 0; i
< 2; i
++) {
111 input_name_sq
[i
] = sq_expand(temp
[i
].name
);
112 if (!strcmp(temp
[i
].name
, "/dev/null")) {
113 path0
[i
] = "/dev/null";
116 path0
[i
] = i
? "b/" : "a/";
117 path1
[i
] = name_sq
[i
];
119 cmd_size
+= (strlen(path0
[i
]) + strlen(path1
[i
]) +
120 strlen(input_name_sq
[i
]));
123 cmd
= xmalloc(cmd_size
);
126 next_at
+= snprintf(cmd
+next_at
, cmd_size
-next_at
,
128 path0
[0], path1
[0], path0
[1], path1
[1]);
129 next_at
+= snprintf(cmd
+next_at
, cmd_size
-next_at
,
131 next_at
+= snprintf(cmd
+next_at
, cmd_size
-next_at
,
132 diff_arg
, input_name_sq
[0], input_name_sq
[1]);
134 printf("diff --git a/%s b/%s\n", name_a
, name_b
);
136 printf("new file mode %s\n", temp
[1].mode
);
137 else if (!path1
[1][0])
138 printf("deleted file mode %s\n", temp
[0].mode
);
140 if (strcmp(temp
[0].mode
, temp
[1].mode
)) {
141 printf("old mode %s\n", temp
[0].mode
);
142 printf("new mode %s\n", temp
[1].mode
);
144 if (xfrm_msg
&& xfrm_msg
[0])
147 if (strncmp(temp
[0].mode
, temp
[1].mode
, 3))
148 /* we do not run diff between different kind
154 execlp("/bin/sh","sh", "-c", cmd
, NULL
);
157 struct diff_filespec
*alloc_filespec(const char *path
)
159 int namelen
= strlen(path
);
160 struct diff_filespec
*spec
= xmalloc(sizeof(*spec
) + namelen
+ 1);
161 spec
->path
= (char *)(spec
+ 1);
162 strcpy(spec
->path
, path
);
163 spec
->should_free
= spec
->should_munmap
= 0;
164 spec
->xfrm_flags
= 0;
168 memset(spec
->sha1
, 0, 20);
172 void fill_filespec(struct diff_filespec
*spec
, const unsigned char *sha1
,
176 spec
->mode
= DIFF_FILE_CANON_MODE(mode
);
177 memcpy(spec
->sha1
, sha1
, 20);
178 spec
->sha1_valid
= !!memcmp(sha1
, null_sha1
, 20);
183 * Given a name and sha1 pair, if the dircache tells us the file in
184 * the work tree has that object contents, return true, so that
185 * prepare_temp_file() does not have to inflate and extract.
187 static int work_tree_matches(const char *name
, const unsigned char *sha1
)
189 struct cache_entry
*ce
;
193 /* We do not read the cache ourselves here, because the
194 * benchmark with my previous version that always reads cache
195 * shows that it makes things worse for diff-tree comparing
196 * two linux-2.6 kernel trees in an already checked out work
197 * tree. This is because most diff-tree comparisons deal with
198 * only a small number of files, while reading the cache is
199 * expensive for a large project, and its cost outweighs the
200 * savings we get by not inflating the object to a temporary
201 * file. Practically, this code only helps when we are used
202 * by diff-cache --cached, which does read the cache before
209 pos
= cache_name_pos(name
, len
);
212 ce
= active_cache
[pos
];
213 if ((lstat(name
, &st
) < 0) ||
214 !S_ISREG(st
.st_mode
) || /* careful! */
215 ce_match_stat(ce
, &st
) ||
216 memcmp(sha1
, ce
->sha1
, 20))
218 /* we return 1 only when we can stat, it is a regular file,
219 * stat information matches, and sha1 recorded in the cache
220 * matches. I.e. we know the file in the work tree really is
221 * the same as the <name, sha1> pair.
226 static struct sha1_size_cache
{
227 unsigned char sha1
[20];
230 static int sha1_size_cache_nr
, sha1_size_cache_alloc
;
232 static struct sha1_size_cache
*locate_size_cache(unsigned char *sha1
,
236 struct sha1_size_cache
*e
;
239 last
= sha1_size_cache_nr
;
240 while (last
> first
) {
241 int next
= (last
+ first
) >> 1;
242 e
= sha1_size_cache
[next
];
243 int cmp
= memcmp(e
->sha1
, sha1
, 20);
253 if (size
== UINT_MAX
)
255 /* insert to make it at "first" */
256 if (sha1_size_cache_alloc
<= sha1_size_cache_nr
) {
257 sha1_size_cache_alloc
= alloc_nr(sha1_size_cache_alloc
);
258 sha1_size_cache
= xrealloc(sha1_size_cache
,
259 sha1_size_cache_alloc
*
260 sizeof(*sha1_size_cache
));
262 sha1_size_cache_nr
++;
263 if (first
< sha1_size_cache_nr
)
264 memmove(sha1_size_cache
+ first
+ 1, sha1_size_cache
+ first
,
265 (sha1_size_cache_nr
- first
- 1) *
266 sizeof(*sha1_size_cache
));
267 e
= xmalloc(sizeof(struct sha1_size_cache
));
268 sha1_size_cache
[first
] = e
;
269 memcpy(e
->sha1
, sha1
, 20);
275 * While doing rename detection and pickaxe operation, we may need to
276 * grab the data for the blob (or file) for our own in-core comparison.
277 * diff_filespec has data and size fields for this purpose.
279 int diff_populate_filespec(struct diff_filespec
*s
, int size_only
)
282 if (!DIFF_FILE_VALID(s
))
283 die("internal error: asking to populate invalid file.");
284 if (S_ISDIR(s
->mode
))
292 if (!s
->sha1_valid
||
293 work_tree_matches(s
->path
, s
->sha1
)) {
296 if (lstat(s
->path
, &st
) < 0) {
297 if (errno
== ENOENT
) {
306 s
->size
= st
.st_size
;
311 if (S_ISLNK(st
.st_mode
)) {
313 s
->data
= xmalloc(s
->size
);
315 ret
= readlink(s
->path
, s
->data
, s
->size
);
322 fd
= open(s
->path
, O_RDONLY
);
325 s
->data
= mmap(NULL
, s
->size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
326 s
->should_munmap
= 1;
330 /* We cannot do size only for SHA1 blobs */
332 struct sha1_size_cache
*e
;
335 e
= locate_size_cache(s
->sha1
, UINT_MAX
);
341 s
->data
= read_sha1_file(s
->sha1
, type
, &s
->size
);
343 if (s
->data
&& size_only
)
344 locate_size_cache(s
->sha1
, s
->size
);
349 void diff_free_filespec_data(struct diff_filespec
*s
)
353 else if (s
->should_munmap
)
354 munmap(s
->data
, s
->size
);
355 s
->should_free
= s
->should_munmap
= 0;
359 static void prep_temp_blob(struct diff_tempfile
*temp
,
367 strcpy(temp
->tmp_path
, ".diff_XXXXXX");
368 fd
= mkstemp(temp
->tmp_path
);
370 die("unable to create temp-file");
371 if (write(fd
, blob
, size
) != size
)
372 die("unable to write temp-file");
374 temp
->name
= temp
->tmp_path
;
375 strcpy(temp
->hex
, sha1_to_hex(sha1
));
377 sprintf(temp
->mode
, "%06o", mode
);
380 static void prepare_temp_file(const char *name
,
381 struct diff_tempfile
*temp
,
382 struct diff_filespec
*one
)
384 if (!DIFF_FILE_VALID(one
)) {
386 /* A '-' entry produces this for file-2, and
387 * a '+' entry produces this for file-1.
389 temp
->name
= "/dev/null";
390 strcpy(temp
->hex
, ".");
391 strcpy(temp
->mode
, ".");
395 if (!one
->sha1_valid
||
396 work_tree_matches(name
, one
->sha1
)) {
398 if (lstat(name
, &st
) < 0) {
400 goto not_a_valid_file
;
401 die("stat(%s): %s", name
, strerror(errno
));
403 if (S_ISLNK(st
.st_mode
)) {
405 char *buf
, buf_
[1024];
406 buf
= ((sizeof(buf_
) < st
.st_size
) ?
407 xmalloc(st
.st_size
) : buf_
);
408 ret
= readlink(name
, buf
, st
.st_size
);
410 die("readlink(%s)", name
);
411 prep_temp_blob(temp
, buf
, st
.st_size
,
413 one
->sha1
: null_sha1
),
415 one
->mode
: S_IFLNK
));
418 /* we can borrow from the file in the work tree */
420 if (!one
->sha1_valid
)
421 strcpy(temp
->hex
, sha1_to_hex(null_sha1
));
423 strcpy(temp
->hex
, sha1_to_hex(one
->sha1
));
424 sprintf(temp
->mode
, "%06o",
425 S_IFREG
|ce_permissions(st
.st_mode
));
430 if (diff_populate_filespec(one
, 0))
431 die("cannot read data blob for %s", one
->path
);
432 prep_temp_blob(temp
, one
->data
, one
->size
,
433 one
->sha1
, one
->mode
);
437 static void remove_tempfile(void)
441 for (i
= 0; i
< 2; i
++)
442 if (diff_temp
[i
].name
== diff_temp
[i
].tmp_path
) {
443 unlink(diff_temp
[i
].name
);
444 diff_temp
[i
].name
= NULL
;
448 static void remove_tempfile_on_signal(int signo
)
453 /* An external diff command takes:
455 * diff-cmd name infile1 infile1-sha1 infile1-mode \
456 * infile2 infile2-sha1 infile2-mode [ rename-to ]
459 static void run_external_diff(const char *pgm
,
462 struct diff_filespec
*one
,
463 struct diff_filespec
*two
,
464 const char *xfrm_msg
)
466 struct diff_tempfile
*temp
= diff_temp
;
469 static int atexit_asked
= 0;
472 prepare_temp_file(name
, &temp
[0], one
);
473 prepare_temp_file(other
? : name
, &temp
[1], two
);
474 if (! atexit_asked
&&
475 (temp
[0].name
== temp
[0].tmp_path
||
476 temp
[1].name
== temp
[1].tmp_path
)) {
478 atexit(remove_tempfile
);
480 signal(SIGINT
, remove_tempfile_on_signal
);
486 die("unable to fork");
490 const char *exec_arg
[10];
491 const char **arg
= &exec_arg
[0];
494 *arg
++ = temp
[0].name
;
495 *arg
++ = temp
[0].hex
;
496 *arg
++ = temp
[0].mode
;
497 *arg
++ = temp
[1].name
;
498 *arg
++ = temp
[1].hex
;
499 *arg
++ = temp
[1].mode
;
505 execvp(pgm
, (char *const*) exec_arg
);
508 execlp(pgm
, pgm
, name
, NULL
);
511 * otherwise we use the built-in one.
514 builtin_diff(name
, other
? : name
, temp
, xfrm_msg
);
516 printf("* Unmerged path %s\n", name
);
519 if (waitpid(pid
, &status
, 0) < 0 ||
520 !WIFEXITED(status
) || WEXITSTATUS(status
)) {
521 /* Earlier we did not check the exit status because
522 * diff exits non-zero if files are different, and
523 * we are not interested in knowing that. It was a
524 * mistake which made it harder to quit a diff-*
525 * session that uses the git-apply-patch-script as
526 * the GIT_EXTERNAL_DIFF. A custom GIT_EXTERNAL_DIFF
527 * should also exit non-zero only when it wants to
528 * abort the entire diff-* session.
531 fprintf(stderr
, "external diff died, stopping at %s.\n", name
);
537 static void run_diff(const char *name
,
539 struct diff_filespec
*one
,
540 struct diff_filespec
*two
,
541 const char *xfrm_msg
)
543 const char *pgm
= external_diff();
545 DIFF_FILE_VALID(one
) && DIFF_FILE_VALID(two
) &&
546 (S_IFMT
& one
->mode
) != (S_IFMT
& two
->mode
)) {
547 /* a filepair that changes between file and symlink
548 * needs to be split into deletion and creation.
550 struct diff_filespec
*null
= alloc_filespec(two
->path
);
551 run_external_diff(NULL
, name
, other
, one
, null
, xfrm_msg
);
553 null
= alloc_filespec(one
->path
);
554 run_external_diff(NULL
, name
, other
, null
, two
, xfrm_msg
);
558 run_external_diff(pgm
, name
, other
, one
, two
, xfrm_msg
);
561 void diff_setup(int flags
)
563 if (flags
& DIFF_SETUP_REVERSE
)
565 if (flags
& DIFF_SETUP_USE_CACHE
) {
567 /* read-cache does not die even when it fails
568 * so it is safe for us to do this here. Also
569 * it does not smudge active_cache or active_nr
570 * when it fails, so we do not have to worry about
571 * cleaning it up oufselves either.
575 if (flags
& DIFF_SETUP_USE_SIZE_CACHE
)
580 struct diff_queue_struct diff_queued_diff
;
582 void diff_q(struct diff_queue_struct
*queue
, struct diff_filepair
*dp
)
584 if (queue
->alloc
<= queue
->nr
) {
585 queue
->alloc
= alloc_nr(queue
->alloc
);
586 queue
->queue
= xrealloc(queue
->queue
,
587 sizeof(dp
) * queue
->alloc
);
589 queue
->queue
[queue
->nr
++] = dp
;
592 struct diff_filepair
*diff_queue(struct diff_queue_struct
*queue
,
593 struct diff_filespec
*one
,
594 struct diff_filespec
*two
)
596 struct diff_filepair
*dp
= xmalloc(sizeof(*dp
));
600 dp
->source_stays
= 0;
605 void diff_free_filepair(struct diff_filepair
*p
)
607 diff_free_filespec_data(p
->one
);
608 diff_free_filespec_data(p
->two
);
612 static void diff_flush_raw(struct diff_filepair
*p
,
613 int line_termination
,
614 int inter_name_termination
)
619 if (line_termination
) {
620 const char *err
= "path %s cannot be expressed without -z";
621 if (strchr(p
->one
->path
, line_termination
) ||
622 strchr(p
->one
->path
, inter_name_termination
))
623 die(err
, p
->one
->path
);
624 if (strchr(p
->two
->path
, line_termination
) ||
625 strchr(p
->two
->path
, inter_name_termination
))
626 die(err
, p
->two
->path
);
632 sprintf(status
, "%c%03d", p
->status
,
633 (int)(0.5 + p
->score
* 100.0/MAX_SCORE
));
637 status
[0] = p
->status
;
641 printf(":%06o %06o %s ",
642 p
->one
->mode
, p
->two
->mode
, sha1_to_hex(p
->one
->sha1
));
644 sha1_to_hex(p
->two
->sha1
),
646 inter_name_termination
,
649 printf("%c%s", inter_name_termination
, p
->two
->path
);
650 putchar(line_termination
);
653 int diff_unmodified_pair(struct diff_filepair
*p
)
655 /* This function is written stricter than necessary to support
656 * the currently implemented transformers, but the idea is to
657 * let transformers to produce diff_filepairs any way they want,
658 * and filter and clean them up here before producing the output.
660 struct diff_filespec
*one
, *two
;
662 if (DIFF_PAIR_UNMERGED(p
))
663 return 0; /* unmerged is interesting */
668 /* deletion, addition, mode or type change
669 * and rename are all interesting.
671 if (DIFF_FILE_VALID(one
) != DIFF_FILE_VALID(two
) ||
672 DIFF_PAIR_MODE_CHANGED(p
) ||
673 strcmp(one
->path
, two
->path
))
676 /* both are valid and point at the same path. that is, we are
677 * dealing with a change.
679 if (one
->sha1_valid
&& two
->sha1_valid
&&
680 !memcmp(one
->sha1
, two
->sha1
, sizeof(one
->sha1
)))
681 return 1; /* no change */
682 if (!one
->sha1_valid
&& !two
->sha1_valid
)
683 return 1; /* both look at the same file on the filesystem. */
687 static void diff_flush_patch(struct diff_filepair
*p
)
689 const char *name
, *other
;
690 char msg_
[PATH_MAX
*2+200], *msg
;
692 if (diff_unmodified_pair(p
))
696 other
= (strcmp(name
, p
->two
->path
) ? p
->two
->path
: NULL
);
697 if ((DIFF_FILE_VALID(p
->one
) && S_ISDIR(p
->one
->mode
)) ||
698 (DIFF_FILE_VALID(p
->two
) && S_ISDIR(p
->two
->mode
)))
699 return; /* no tree diffs in patch format */
704 "similarity index %d%%\n"
707 (int)(0.5 + p
->score
* 100.0/MAX_SCORE
),
708 p
->one
->path
, p
->two
->path
);
713 "similarity index %d%%\n"
716 (int)(0.5 + p
->score
* 100.0/MAX_SCORE
),
717 p
->one
->path
, p
->two
->path
);
724 if (DIFF_PAIR_UNMERGED(p
))
725 run_diff(name
, NULL
, NULL
, NULL
, NULL
);
727 run_diff(name
, other
, p
->one
, p
->two
, msg
);
730 int diff_queue_is_empty(void)
732 struct diff_queue_struct
*q
= &diff_queued_diff
;
734 for (i
= 0; i
< q
->nr
; i
++)
735 if (!diff_unmodified_pair(q
->queue
[i
]))
741 void diff_debug_filespec(struct diff_filespec
*s
, int x
, const char *one
)
743 fprintf(stderr
, "queue[%d] %s (%s) %s %06o %s\n",
746 DIFF_FILE_VALID(s
) ? "valid" : "invalid",
748 s
->sha1_valid
? sha1_to_hex(s
->sha1
) : "");
749 fprintf(stderr
, "queue[%d] %s size %lu flags %d\n",
751 s
->size
, s
->xfrm_flags
);
754 void diff_debug_filepair(const struct diff_filepair
*p
, int i
)
756 diff_debug_filespec(p
->one
, i
, "one");
757 diff_debug_filespec(p
->two
, i
, "two");
758 fprintf(stderr
, "score %d, status %c source_stays %d\n",
759 p
->score
, p
->status
? : '?', p
->source_stays
);
762 void diff_debug_queue(const char *msg
, struct diff_queue_struct
*q
)
766 fprintf(stderr
, "%s\n", msg
);
767 fprintf(stderr
, "q->nr = %d\n", q
->nr
);
768 for (i
= 0; i
< q
->nr
; i
++) {
769 struct diff_filepair
*p
= q
->queue
[i
];
770 diff_debug_filepair(p
, i
);
775 static void diff_resolve_rename_copy(void)
778 struct diff_filepair
*p
, *pp
;
779 struct diff_queue_struct
*q
= &diff_queued_diff
;
781 diff_debug_queue("resolve-rename-copy", q
);
783 for (i
= 0; i
< q
->nr
; i
++) {
785 p
->status
= 0; /* undecided */
786 if (DIFF_PAIR_UNMERGED(p
))
788 else if (!DIFF_FILE_VALID(p
->one
))
790 else if (!DIFF_FILE_VALID(p
->two
)) {
791 /* Deleted entry may have been picked up by
792 * another rename-copy entry. So we scan the
793 * queue and if we find one that uses us as the
794 * source we do not say delete for this entry.
796 for (j
= 0; j
< q
->nr
; j
++) {
798 if (!strcmp(p
->one
->path
, pp
->one
->path
) &&
799 DIFF_PAIR_RENAME(pp
)) {
800 /* rename/copy are always valid
801 * so we do not say DIFF_FILE_VALID()
802 * on pp->one and pp->two.
811 else if (DIFF_PAIR_TYPE_CHANGED(p
))
814 /* from this point on, we are dealing with a pair
815 * whose both sides are valid and of the same type, i.e.
816 * either in-place edit or rename/copy edit.
818 else if (DIFF_PAIR_RENAME(p
)) {
819 if (p
->source_stays
) {
823 /* See if there is some other filepair that
824 * copies from the same source as us. If so
825 * we are a copy. Otherwise we are a rename.
827 for (j
= i
+ 1; j
< q
->nr
; j
++) {
829 if (strcmp(pp
->one
->path
, p
->one
->path
))
830 continue; /* not us */
831 if (!DIFF_PAIR_RENAME(pp
))
832 continue; /* not a rename/copy */
833 /* pp is a rename/copy from the same source */
840 else if (memcmp(p
->one
->sha1
, p
->two
->sha1
, 20) ||
841 p
->one
->mode
!= p
->two
->mode
)
844 /* this is a "no-change" entry.
845 * should not happen anymore.
848 die("internal error in diffcore: unmodified entry remains");
850 diff_debug_queue("resolve-rename-copy done", q
);
853 void diff_flush(int diff_output_style
, int resolve_rename_copy
)
855 struct diff_queue_struct
*q
= &diff_queued_diff
;
857 int line_termination
= '\n';
858 int inter_name_termination
= '\t';
860 if (diff_output_style
== DIFF_FORMAT_MACHINE
)
861 line_termination
= inter_name_termination
= 0;
862 if (resolve_rename_copy
)
863 diff_resolve_rename_copy();
865 for (i
= 0; i
< q
->nr
; i
++) {
866 struct diff_filepair
*p
= q
->queue
[i
];
867 if ((diff_output_style
== DIFF_FORMAT_NO_OUTPUT
) ||
871 die("internal error in diff-resolve-rename-copy");
872 switch (diff_output_style
) {
873 case DIFF_FORMAT_PATCH
:
876 case DIFF_FORMAT_HUMAN
:
877 case DIFF_FORMAT_MACHINE
:
878 diff_flush_raw(p
, line_termination
,
879 inter_name_termination
);
883 for (i
= 0; i
< q
->nr
; i
++)
884 diff_free_filepair(q
->queue
[i
]);
887 q
->nr
= q
->alloc
= 0;
890 void diffcore_std(const char **paths
,
891 int detect_rename
, int rename_score
,
892 const char *pickaxe
, int pickaxe_opts
)
894 if (paths
&& paths
[0])
895 diffcore_pathspec(paths
);
897 diffcore_rename(detect_rename
, rename_score
);
899 diffcore_pickaxe(pickaxe
, pickaxe_opts
);
902 void diff_addremove(int addremove
, unsigned mode
,
903 const unsigned char *sha1
,
904 const char *base
, const char *path
)
906 char concatpath
[PATH_MAX
];
907 struct diff_filespec
*one
, *two
;
909 /* This may look odd, but it is a preparation for
910 * feeding "there are unchanged files which should
911 * not produce diffs, but when you are doing copy
912 * detection you would need them, so here they are"
913 * entries to the diff-core. They will be prefixed
914 * with something like '=' or '*' (I haven't decided
915 * which but should not make any difference).
916 * Feeding the same new and old to diff_change()
917 * also has the same effect.
918 * Before the final output happens, they are pruned after
919 * merged into rename/copy pairs as appropriate.
922 addremove
= (addremove
== '+' ? '-' :
923 addremove
== '-' ? '+' : addremove
);
925 if (!path
) path
= "";
926 sprintf(concatpath
, "%s%s", base
, path
);
927 one
= alloc_filespec(concatpath
);
928 two
= alloc_filespec(concatpath
);
930 if (addremove
!= '+')
931 fill_filespec(one
, sha1
, mode
);
932 if (addremove
!= '-')
933 fill_filespec(two
, sha1
, mode
);
935 diff_queue(&diff_queued_diff
, one
, two
);
938 void diff_helper_input(unsigned old_mode
,
940 const unsigned char *old_sha1
,
941 const unsigned char *new_sha1
,
942 const char *old_path
,
945 const char *new_path
)
947 struct diff_filespec
*one
, *two
;
948 struct diff_filepair
*dp
;
950 one
= alloc_filespec(old_path
);
951 two
= alloc_filespec(new_path
);
953 fill_filespec(one
, old_sha1
, old_mode
);
955 fill_filespec(two
, new_sha1
, new_mode
);
956 dp
= diff_queue(&diff_queued_diff
, one
, two
);
957 dp
->score
= score
* MAX_SCORE
/ 100;
961 void diff_change(unsigned old_mode
, unsigned new_mode
,
962 const unsigned char *old_sha1
,
963 const unsigned char *new_sha1
,
964 const char *base
, const char *path
)
966 char concatpath
[PATH_MAX
];
967 struct diff_filespec
*one
, *two
;
971 const unsigned char *tmp_c
;
972 tmp
= old_mode
; old_mode
= new_mode
; new_mode
= tmp
;
973 tmp_c
= old_sha1
; old_sha1
= new_sha1
; new_sha1
= tmp_c
;
975 if (!path
) path
= "";
976 sprintf(concatpath
, "%s%s", base
, path
);
977 one
= alloc_filespec(concatpath
);
978 two
= alloc_filespec(concatpath
);
979 fill_filespec(one
, old_sha1
, old_mode
);
980 fill_filespec(two
, new_sha1
, new_mode
);
982 diff_queue(&diff_queued_diff
, one
, two
);
985 void diff_unmerge(const char *path
)
987 struct diff_filespec
*one
, *two
;
988 one
= alloc_filespec(path
);
989 two
= alloc_filespec(path
);
990 diff_queue(&diff_queued_diff
, one
, two
);