2 * Copyright (C) 2005 Junio C Hamano
11 static const char *diff_opts
= "-pu";
13 static const char *external_diff(void)
15 static const char *external_diff_cmd
= NULL
;
16 static int done_preparing
= 0;
19 return external_diff_cmd
;
22 * Default values above are meant to match the
23 * Linux kernel development style. Examples of
24 * alternative styles you can specify via environment
29 if (gitenv("GIT_EXTERNAL_DIFF"))
30 external_diff_cmd
= gitenv("GIT_EXTERNAL_DIFF");
32 /* In case external diff fails... */
33 diff_opts
= gitenv("GIT_DIFF_OPTS") ? : diff_opts
;
36 return external_diff_cmd
;
39 /* Help to copy the thing properly quoted for the shell safety.
40 * any single quote is replaced with '\'', and the caller is
41 * expected to enclose the result within a single quote pair.
44 * original sq_expand result
45 * name ==> name ==> 'name'
46 * a b ==> a b ==> 'a b'
47 * a'b ==> a'\''b ==> 'a'\''b'
49 static char *sq_expand(const char *src
)
51 static char *buf
= NULL
;
56 /* count bytes needed to store the quoted string. */
57 for (cnt
= 1, cp
= src
; *cp
; cnt
++, cp
++)
63 while ((c
= *src
++)) {
67 bp
= strcpy(bp
, "'\\''");
75 static struct diff_tempfile
{
82 static void builtin_diff(const char *name
,
83 struct diff_tempfile
*temp
)
86 const char *diff_cmd
= "diff -L'%s%s' -L'%s%s'";
87 const char *diff_arg
= "'%s' '%s'||:"; /* "||:" is to return 0 */
88 const char *input_name_sq
[2];
91 const char *name_sq
= sq_expand(name
);
94 /* diff_cmd and diff_arg have 6 %s in total which makes
95 * the sum of these strings 12 bytes larger than required.
96 * we use 2 spaces around diff-opts, and we need to count
97 * terminating NUL, so we subtract 9 here.
99 int cmd_size
= (strlen(diff_cmd
) + strlen(diff_opts
) +
100 strlen(diff_arg
) - 9);
101 for (i
= 0; i
< 2; i
++) {
102 input_name_sq
[i
] = sq_expand(temp
[i
].name
);
103 if (!strcmp(temp
[i
].name
, "/dev/null")) {
104 path0
[i
] = "/dev/null";
107 path0
[i
] = i
? "b/" : "a/";
110 cmd_size
+= (strlen(path0
[i
]) + strlen(path1
[i
]) +
111 strlen(input_name_sq
[i
]));
114 cmd
= xmalloc(cmd_size
);
117 next_at
+= snprintf(cmd
+next_at
, cmd_size
-next_at
,
119 path0
[0], path1
[0], path0
[1], path1
[1]);
120 next_at
+= snprintf(cmd
+next_at
, cmd_size
-next_at
,
122 next_at
+= snprintf(cmd
+next_at
, cmd_size
-next_at
,
123 diff_arg
, input_name_sq
[0], input_name_sq
[1]);
125 printf("diff --git a/%s b/%s\n", name
, name
);
127 printf("new file mode %s\n", temp
[1].mode
);
128 else if (!path1
[1][0])
129 printf("deleted file mode %s\n", temp
[0].mode
);
131 if (strcmp(temp
[0].mode
, temp
[1].mode
)) {
132 printf("old mode %s\n", temp
[0].mode
);
133 printf("new mode %s\n", temp
[1].mode
);
135 if (strncmp(temp
[0].mode
, temp
[1].mode
, 3))
136 /* we do not run diff between different kind
142 execlp("/bin/sh","sh", "-c", cmd
, NULL
);
146 * Given a name and sha1 pair, if the dircache tells us the file in
147 * the work tree has that object contents, return true, so that
148 * prepare_temp_file() does not have to inflate and extract.
150 static int work_tree_matches(const char *name
, const unsigned char *sha1
)
152 struct cache_entry
*ce
;
156 /* We do not read the cache ourselves here, because the
157 * benchmark with my previous version that always reads cache
158 * shows that it makes things worse for diff-tree comparing
159 * two linux-2.6 kernel trees in an already checked out work
160 * tree. This is because most diff-tree comparison deals with
161 * only a small number of files, while reading the cache is
162 * expensive for a large project, and its cost outweighs the
163 * savings we get by not inflating the object to a temporary
164 * file. Practically, this code only helps when we are used
165 * by diff-cache --cached, which does read the cache before
172 pos
= cache_name_pos(name
, len
);
175 ce
= active_cache
[pos
];
176 if ((lstat(name
, &st
) < 0) ||
177 !S_ISREG(st
.st_mode
) ||
178 ce_match_stat(ce
, &st
) ||
179 memcmp(sha1
, ce
->sha1
, 20))
184 static void prep_temp_blob(struct diff_tempfile
*temp
,
192 strcpy(temp
->tmp_path
, ".diff_XXXXXX");
193 fd
= mkstemp(temp
->tmp_path
);
195 die("unable to create temp-file");
196 if (write(fd
, blob
, size
) != size
)
197 die("unable to write temp-file");
199 temp
->name
= temp
->tmp_path
;
200 strcpy(temp
->hex
, sha1_to_hex(sha1
));
202 sprintf(temp
->mode
, "%06o", mode
);
205 static void prepare_temp_file(const char *name
,
206 struct diff_tempfile
*temp
,
207 struct diff_spec
*one
)
209 static unsigned char null_sha1
[20] = { 0, };
210 int use_work_tree
= 0;
212 if (!one
->file_valid
) {
214 /* A '-' entry produces this for file-2, and
215 * a '+' entry produces this for file-1.
217 temp
->name
= "/dev/null";
218 strcpy(temp
->hex
, ".");
219 strcpy(temp
->mode
, ".");
223 if (one
->sha1_valid
&&
224 (!memcmp(one
->blob_sha1
, null_sha1
, sizeof(null_sha1
)) ||
225 work_tree_matches(name
, one
->blob_sha1
)))
228 if (!one
->sha1_valid
|| use_work_tree
) {
231 if (lstat(temp
->name
, &st
) < 0) {
233 goto not_a_valid_file
;
234 die("stat(%s): %s", temp
->name
, strerror(errno
));
236 if (S_ISLNK(st
.st_mode
)) {
238 char *buf
, buf_
[1024];
239 buf
= ((sizeof(buf_
) < st
.st_size
) ?
240 xmalloc(st
.st_size
) : buf_
);
241 ret
= readlink(name
, buf
, st
.st_size
);
243 die("readlink(%s)", name
);
244 prep_temp_blob(temp
, buf
, st
.st_size
,
246 one
->blob_sha1
: null_sha1
),
248 one
->mode
: S_IFLNK
));
251 if (!one
->sha1_valid
)
252 strcpy(temp
->hex
, sha1_to_hex(null_sha1
));
254 strcpy(temp
->hex
, sha1_to_hex(one
->blob_sha1
));
255 sprintf(temp
->mode
, "%06o",
256 S_IFREG
|ce_permissions(st
.st_mode
));
265 blob
= read_sha1_file(one
->blob_sha1
, type
, &size
);
266 if (!blob
|| strcmp(type
, "blob"))
267 die("unable to read blob object for %s (%s)",
268 name
, sha1_to_hex(one
->blob_sha1
));
269 prep_temp_blob(temp
, blob
, size
, one
->blob_sha1
, one
->mode
);
274 static void remove_tempfile(void)
278 for (i
= 0; i
< 2; i
++)
279 if (diff_temp
[i
].name
== diff_temp
[i
].tmp_path
) {
280 unlink(diff_temp
[i
].name
);
281 diff_temp
[i
].name
= NULL
;
285 static void remove_tempfile_on_signal(int signo
)
290 /* An external diff command takes:
292 * diff-cmd name infile1 infile1-sha1 infile1-mode \
293 * infile2 infile2-sha1 infile2-mode.
296 void run_external_diff(const char *name
,
297 struct diff_spec
*one
,
298 struct diff_spec
*two
)
300 struct diff_tempfile
*temp
= diff_temp
;
303 static int atexit_asked
= 0;
306 prepare_temp_file(name
, &temp
[0], one
);
307 prepare_temp_file(name
, &temp
[1], two
);
308 if (! atexit_asked
&&
309 (temp
[0].name
== temp
[0].tmp_path
||
310 temp
[1].name
== temp
[1].tmp_path
)) {
312 atexit(remove_tempfile
);
314 signal(SIGINT
, remove_tempfile_on_signal
);
320 die("unable to fork");
322 const char *pgm
= external_diff();
327 temp
[0].name
, temp
[0].hex
, temp
[0].mode
,
328 temp
[1].name
, temp
[1].hex
, temp
[1].mode
,
331 execlp(pgm
, pgm
, name
, NULL
);
334 * otherwise we use the built-in one.
337 builtin_diff(name
, temp
);
339 printf("* Unmerged path %s\n", name
);
342 if (waitpid(pid
, &status
, 0) < 0 ||
343 !WIFEXITED(status
) || WEXITSTATUS(status
)) {
344 /* Earlier we did not check the exit status because
345 * diff exits non-zero if files are different, and
346 * we are not interested in knowing that. It was a
347 * mistake which made it harder to quit a diff-*
348 * session that uses the git-apply-patch-script as
349 * the GIT_EXTERNAL_DIFF. A custom GIT_EXTERNAL_DIFF
350 * should also exit non-zero only when it wants to
351 * abort the entire diff-* session.
354 fprintf(stderr
, "external diff died, stopping at %s.\n", name
);
360 void diff_addremove(int addremove
, unsigned mode
,
361 const unsigned char *sha1
,
362 const char *base
, const char *path
)
364 char concatpath
[PATH_MAX
];
365 struct diff_spec spec
[2], *one
, *two
;
367 memcpy(spec
[0].blob_sha1
, sha1
, 20);
369 spec
[0].sha1_valid
= spec
[0].file_valid
= 1;
370 spec
[1].file_valid
= 0;
372 if (addremove
== '+') {
373 one
= spec
+ 1; two
= spec
;
375 one
= spec
; two
= one
+ 1;
379 strcpy(concatpath
, base
);
380 strcat(concatpath
, path
);
382 run_external_diff(path
? concatpath
: base
, one
, two
);
385 void diff_change(unsigned old_mode
, unsigned new_mode
,
386 const unsigned char *old_sha1
,
387 const unsigned char *new_sha1
,
388 const char *base
, const char *path
) {
389 char concatpath
[PATH_MAX
];
390 struct diff_spec spec
[2];
392 memcpy(spec
[0].blob_sha1
, old_sha1
, 20);
393 spec
[0].mode
= old_mode
;
394 memcpy(spec
[1].blob_sha1
, new_sha1
, 20);
395 spec
[1].mode
= new_mode
;
396 spec
[0].sha1_valid
= spec
[0].file_valid
= 1;
397 spec
[1].sha1_valid
= spec
[1].file_valid
= 1;
400 strcpy(concatpath
, base
);
401 strcat(concatpath
, path
);
403 run_external_diff(path
? concatpath
: base
, &spec
[0], &spec
[1]);
406 void diff_unmerge(const char *path
)
408 run_external_diff(path
, NULL
, NULL
);