3 #include "xdiff/xdiff.h"
4 #include "xdiff-interface.h"
8 static const char git_rerere_usage
[] =
9 "git-rerere [clear | status | diff | gc]";
11 /* these values are days */
12 static int cutoff_noresolve
= 15;
13 static int cutoff_resolve
= 60;
15 static char *merge_rr_path
;
17 static const char *rr_path(const char *name
, const char *file
)
19 return git_path("rr-cache/%s/%s", name
, file
);
22 static void read_rr(struct path_list
*rr
)
24 unsigned char sha1
[20];
26 FILE *in
= fopen(merge_rr_path
, "r");
29 while (fread(buf
, 40, 1, in
) == 1) {
32 if (get_sha1_hex(buf
, sha1
))
33 die("corrupt MERGE_RR");
36 if (fgetc(in
) != '\t')
37 die("corrupt MERGE_RR");
38 for (i
= 0; i
< sizeof(buf
) && (buf
[i
] = fgetc(in
)); i
++)
41 die("filename too long");
42 path_list_insert(buf
, rr
)->util
= xstrdup(name
);
47 static struct lock_file write_lock
;
49 static int write_rr(struct path_list
*rr
, int out_fd
)
52 for (i
= 0; i
< rr
->nr
; i
++) {
53 const char *path
= rr
->items
[i
].path
;
54 int length
= strlen(path
) + 1;
55 if (write_in_full(out_fd
, rr
->items
[i
].util
, 40) != 40 ||
56 write_in_full(out_fd
, "\t", 1) != 1 ||
57 write_in_full(out_fd
, path
, length
) != length
)
58 die("unable to write rerere record");
61 return commit_lock_file(&write_lock
);
69 static void append_line(struct buffer
*buffer
, const char *line
)
71 int len
= strlen(line
);
73 if (buffer
->nr
+ len
> buffer
->alloc
) {
74 buffer
->alloc
= alloc_nr(buffer
->nr
+ len
);
75 buffer
->ptr
= xrealloc(buffer
->ptr
, buffer
->alloc
);
77 memcpy(buffer
->ptr
+ buffer
->nr
, line
, len
);
81 static void clear_buffer(struct buffer
*buffer
)
85 buffer
->nr
= buffer
->alloc
= 0;
88 static int handle_file(const char *path
,
89 unsigned char *sha1
, const char *output
)
93 int hunk
= 0, hunk_no
= 0;
94 struct buffer minus
= { NULL
, 0, 0 }, plus
= { NULL
, 0, 0 };
95 struct buffer
*one
= &minus
, *two
= &plus
;
96 FILE *f
= fopen(path
, "r");
100 return error("Could not open %s", path
);
103 out
= fopen(output
, "w");
106 return error("Could not write %s", output
);
114 while (fgets(buf
, sizeof(buf
), f
)) {
115 if (!prefixcmp(buf
, "<<<<<<< "))
117 else if (!prefixcmp(buf
, "======="))
119 else if (!prefixcmp(buf
, ">>>>>>> ")) {
120 int one_is_longer
= (one
->nr
> two
->nr
);
121 int common_len
= one_is_longer
? two
->nr
: one
->nr
;
122 int cmp
= memcmp(one
->ptr
, two
->ptr
, common_len
);
126 if ((cmp
> 0) || ((cmp
== 0) && one_is_longer
)) {
127 struct buffer
*swap
= one
;
132 fputs("<<<<<<<\n", out
);
133 fwrite(one
->ptr
, one
->nr
, 1, out
);
134 fputs("=======\n", out
);
135 fwrite(two
->ptr
, two
->nr
, 1, out
);
136 fputs(">>>>>>>\n", out
);
139 SHA1_Update(&ctx
, one
->ptr
, one
->nr
);
140 SHA1_Update(&ctx
, "\0", 1);
141 SHA1_Update(&ctx
, two
->ptr
, two
->nr
);
142 SHA1_Update(&ctx
, "\0", 1);
146 } else if (hunk
== 1)
147 append_line(one
, buf
);
149 append_line(two
, buf
);
158 SHA1_Final(sha1
, &ctx
);
162 static int find_conflict(struct path_list
*conflict
)
165 if (read_cache() < 0)
166 return error("Could not read index");
167 for (i
= 0; i
+ 2 < active_nr
; i
++) {
168 struct cache_entry
*e1
= active_cache
[i
];
169 struct cache_entry
*e2
= active_cache
[i
+1];
170 struct cache_entry
*e3
= active_cache
[i
+2];
171 if (ce_stage(e1
) == 1 &&
174 ce_same_name(e1
, e2
) && ce_same_name(e1
, e3
) &&
175 S_ISREG(ntohl(e1
->ce_mode
)) &&
176 S_ISREG(ntohl(e2
->ce_mode
)) &&
177 S_ISREG(ntohl(e3
->ce_mode
))) {
178 path_list_insert((const char *)e1
->name
, conflict
);
185 static int merge(const char *name
, const char *path
)
188 mmfile_t cur
, base
, other
;
189 mmbuffer_t result
= {NULL
, 0};
190 xpparam_t xpp
= {XDF_NEED_MINIMAL
};
192 if (handle_file(path
, NULL
, rr_path(name
, "thisimage")) < 0)
195 if (read_mmfile(&cur
, rr_path(name
, "thisimage")) ||
196 read_mmfile(&base
, rr_path(name
, "preimage")) ||
197 read_mmfile(&other
, rr_path(name
, "postimage")))
199 ret
= xdl_merge(&base
, &cur
, "", &other
, "",
200 &xpp
, XDL_MERGE_ZEALOUS
, &result
);
202 FILE *f
= fopen(path
, "w");
204 return error("Could not write to %s", path
);
205 fwrite(result
.ptr
, result
.size
, 1, f
);
217 static void unlink_rr_item(const char *name
)
219 unlink(rr_path(name
, "thisimage"));
220 unlink(rr_path(name
, "preimage"));
221 unlink(rr_path(name
, "postimage"));
222 rmdir(git_path("rr-cache/%s", name
));
225 static void garbage_collect(struct path_list
*rr
)
227 struct path_list to_remove
= { NULL
, 0, 0, 1 };
232 time_t now
= time(NULL
), then
;
234 strlcpy(buf
, git_path("rr-cache"), sizeof(buf
));
237 strcpy(buf
+ len
++, "/");
238 while ((e
= readdir(dir
))) {
239 const char *name
= e
->d_name
;
241 if (name
[0] == '.' && (name
[1] == '\0' ||
242 (name
[1] == '.' && name
[2] == '\0')))
244 i
= snprintf(buf
+ len
, sizeof(buf
) - len
, "%s", name
);
245 strlcpy(buf
+ len
+ i
, "/preimage", sizeof(buf
) - len
- i
);
249 strlcpy(buf
+ len
+ i
, "/postimage", sizeof(buf
) - len
- i
);
250 cutoff
= stat(buf
, &st
) ? cutoff_noresolve
: cutoff_resolve
;
251 if (then
< now
- cutoff
* 86400) {
253 path_list_insert(xstrdup(name
), &to_remove
);
256 for (i
= 0; i
< to_remove
.nr
; i
++)
257 unlink_rr_item(to_remove
.items
[i
].path
);
258 path_list_clear(&to_remove
, 0);
261 static int outf(void *dummy
, mmbuffer_t
*ptr
, int nbuf
)
264 for (i
= 0; i
< nbuf
; i
++)
265 if (write_in_full(1, ptr
[i
].ptr
, ptr
[i
].size
) != ptr
[i
].size
)
270 static int diff_two(const char *file1
, const char *label1
,
271 const char *file2
, const char *label2
)
276 mmfile_t minus
, plus
;
278 if (read_mmfile(&minus
, file1
) || read_mmfile(&plus
, file2
))
281 printf("--- a/%s\n+++ b/%s\n", label1
, label2
);
283 xpp
.flags
= XDF_NEED_MINIMAL
;
287 xdl_diff(&minus
, &plus
, &xpp
, &xecfg
, &ecb
);
294 static int copy_file(const char *src
, const char *dest
)
300 if (!(in
= fopen(src
, "r")))
301 return error("Could not open %s", src
);
302 if (!(out
= fopen(dest
, "w")))
303 return error("Could not open %s", dest
);
304 while ((count
= fread(buffer
, 1, sizeof(buffer
), in
)))
305 fwrite(buffer
, 1, count
, out
);
311 static int do_plain_rerere(struct path_list
*rr
, int fd
)
313 struct path_list conflict
= { NULL
, 0, 0, 1 };
316 find_conflict(&conflict
);
319 * MERGE_RR records paths with conflicts immediately after merge
320 * failed. Some of the conflicted paths might have been hand resolved
321 * in the working tree since then, but the initial run would catch all
322 * and register their preimages.
325 for (i
= 0; i
< conflict
.nr
; i
++) {
326 const char *path
= conflict
.items
[i
].path
;
327 if (!path_list_has_path(rr
, path
)) {
328 unsigned char sha1
[20];
331 ret
= handle_file(path
, sha1
, NULL
);
334 hex
= xstrdup(sha1_to_hex(sha1
));
335 path_list_insert(path
, rr
)->util
= hex
;
336 if (mkdir(git_path("rr-cache/%s", hex
), 0755))
338 handle_file(path
, NULL
, rr_path(hex
, "preimage"));
339 fprintf(stderr
, "Recorded preimage for '%s'\n", path
);
344 * Now some of the paths that had conflicts earlier might have been
345 * hand resolved. Others may be similar to a conflict already that
346 * was resolved before.
349 for (i
= 0; i
< rr
->nr
; i
++) {
352 const char *path
= rr
->items
[i
].path
;
353 const char *name
= (const char *)rr
->items
[i
].util
;
355 if (!stat(rr_path(name
, "preimage"), &st
) &&
356 !stat(rr_path(name
, "postimage"), &st
)) {
357 if (!merge(name
, path
)) {
358 fprintf(stderr
, "Resolved '%s' using "
359 "previous resolution.\n", path
);
360 goto tail_optimization
;
364 /* Let's see if we have resolved it. */
365 ret
= handle_file(path
, NULL
, NULL
);
369 fprintf(stderr
, "Recorded resolution for '%s'.\n", path
);
370 copy_file(path
, rr_path(name
, "postimage"));
373 memmove(rr
->items
+ i
,
375 sizeof(rr
->items
[0]) * (rr
->nr
- i
- 1));
380 return write_rr(rr
, fd
);
383 static int git_rerere_config(const char *var
, const char *value
)
385 if (!strcmp(var
, "gc.rerereresolved"))
386 cutoff_resolve
= git_config_int(var
, value
);
387 else if (!strcmp(var
, "gc.rerereunresolved"))
388 cutoff_noresolve
= git_config_int(var
, value
);
390 return git_default_config(var
, value
);
394 int cmd_rerere(int argc
, const char **argv
, const char *prefix
)
396 struct path_list merge_rr
= { NULL
, 0, 0, 1 };
400 if (stat(git_path("rr-cache"), &st
) || !S_ISDIR(st
.st_mode
))
403 git_config(git_rerere_config
);
405 merge_rr_path
= xstrdup(git_path("rr-cache/MERGE_RR"));
406 fd
= hold_lock_file_for_update(&write_lock
, merge_rr_path
, 1);
410 return do_plain_rerere(&merge_rr
, fd
);
411 else if (!strcmp(argv
[1], "clear")) {
412 for (i
= 0; i
< merge_rr
.nr
; i
++) {
413 const char *name
= (const char *)merge_rr
.items
[i
].util
;
414 if (!stat(git_path("rr-cache/%s", name
), &st
) &&
415 S_ISDIR(st
.st_mode
) &&
416 stat(rr_path(name
, "postimage"), &st
))
417 unlink_rr_item(name
);
419 unlink(merge_rr_path
);
420 } else if (!strcmp(argv
[1], "gc"))
421 garbage_collect(&merge_rr
);
422 else if (!strcmp(argv
[1], "status"))
423 for (i
= 0; i
< merge_rr
.nr
; i
++)
424 printf("%s\n", merge_rr
.items
[i
].path
);
425 else if (!strcmp(argv
[1], "diff"))
426 for (i
= 0; i
< merge_rr
.nr
; i
++) {
427 const char *path
= merge_rr
.items
[i
].path
;
428 const char *name
= (const char *)merge_rr
.items
[i
].util
;
429 diff_two(rr_path(name
, "preimage"), path
, path
, path
);
432 usage(git_rerere_usage
);
434 path_list_clear(&merge_rr
, 1);