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
, ">>>>>>> ")) {
122 if (memcmp(one
->ptr
, two
->ptr
, one
->nr
< two
->nr
?
123 one
->nr
: two
->nr
) > 0) {
124 struct buffer
*swap
= one
;
129 fputs("<<<<<<<\n", out
);
130 fwrite(one
->ptr
, one
->nr
, 1, out
);
131 fputs("=======\n", out
);
132 fwrite(two
->ptr
, two
->nr
, 1, out
);
133 fputs(">>>>>>>\n", out
);
136 SHA1_Update(&ctx
, one
->ptr
, one
->nr
);
137 SHA1_Update(&ctx
, "\0", 1);
138 SHA1_Update(&ctx
, two
->ptr
, two
->nr
);
139 SHA1_Update(&ctx
, "\0", 1);
143 } else if (hunk
== 1)
144 append_line(one
, buf
);
146 append_line(two
, buf
);
155 SHA1_Final(sha1
, &ctx
);
159 static int find_conflict(struct path_list
*conflict
)
162 if (read_cache() < 0)
163 return error("Could not read index");
164 for (i
= 0; i
+ 2 < active_nr
; i
++) {
165 struct cache_entry
*e1
= active_cache
[i
];
166 struct cache_entry
*e2
= active_cache
[i
+1];
167 struct cache_entry
*e3
= active_cache
[i
+2];
168 if (ce_stage(e1
) == 1 &&
171 ce_same_name(e1
, e2
) && ce_same_name(e1
, e3
) &&
172 S_ISREG(ntohl(e1
->ce_mode
)) &&
173 S_ISREG(ntohl(e2
->ce_mode
)) &&
174 S_ISREG(ntohl(e3
->ce_mode
))) {
175 path_list_insert((const char *)e1
->name
, conflict
);
182 static int merge(const char *name
, const char *path
)
185 mmfile_t cur
, base
, other
;
186 mmbuffer_t result
= {NULL
, 0};
187 xpparam_t xpp
= {XDF_NEED_MINIMAL
};
189 if (handle_file(path
, NULL
, rr_path(name
, "thisimage")) < 0)
192 if (read_mmfile(&cur
, rr_path(name
, "thisimage")) ||
193 read_mmfile(&base
, rr_path(name
, "preimage")) ||
194 read_mmfile(&other
, rr_path(name
, "postimage")))
196 ret
= xdl_merge(&base
, &cur
, "", &other
, "",
197 &xpp
, XDL_MERGE_ZEALOUS
, &result
);
199 FILE *f
= fopen(path
, "w");
201 return error("Could not write to %s", path
);
202 fwrite(result
.ptr
, result
.size
, 1, f
);
214 static void unlink_rr_item(const char *name
)
216 unlink(rr_path(name
, "thisimage"));
217 unlink(rr_path(name
, "preimage"));
218 unlink(rr_path(name
, "postimage"));
219 rmdir(git_path("rr-cache/%s", name
));
222 static void garbage_collect(struct path_list
*rr
)
224 struct path_list to_remove
= { NULL
, 0, 0, 1 };
229 time_t now
= time(NULL
), then
;
231 strlcpy(buf
, git_path("rr-cache"), sizeof(buf
));
234 strcpy(buf
+ len
++, "/");
235 while ((e
= readdir(dir
))) {
236 const char *name
= e
->d_name
;
238 if (name
[0] == '.' && (name
[1] == '\0' ||
239 (name
[1] == '.' && name
[2] == '\0')))
241 i
= snprintf(buf
+ len
, sizeof(buf
) - len
, "%s", name
);
242 strlcpy(buf
+ len
+ i
, "/preimage", sizeof(buf
) - len
- i
);
246 strlcpy(buf
+ len
+ i
, "/postimage", sizeof(buf
) - len
- i
);
247 cutoff
= stat(buf
, &st
) ? cutoff_noresolve
: cutoff_resolve
;
248 if (then
< now
- cutoff
* 86400) {
250 path_list_insert(xstrdup(name
), &to_remove
);
253 for (i
= 0; i
< to_remove
.nr
; i
++)
254 unlink_rr_item(to_remove
.items
[i
].path
);
255 path_list_clear(&to_remove
, 0);
258 static int outf(void *dummy
, mmbuffer_t
*ptr
, int nbuf
)
261 for (i
= 0; i
< nbuf
; i
++)
262 if (write_in_full(1, ptr
[i
].ptr
, ptr
[i
].size
) != ptr
[i
].size
)
267 static int diff_two(const char *file1
, const char *label1
,
268 const char *file2
, const char *label2
)
273 mmfile_t minus
, plus
;
275 if (read_mmfile(&minus
, file1
) || read_mmfile(&plus
, file2
))
278 printf("--- a/%s\n+++ b/%s\n", label1
, label2
);
280 xpp
.flags
= XDF_NEED_MINIMAL
;
284 xdl_diff(&minus
, &plus
, &xpp
, &xecfg
, &ecb
);
291 static int copy_file(const char *src
, const char *dest
)
297 if (!(in
= fopen(src
, "r")))
298 return error("Could not open %s", src
);
299 if (!(out
= fopen(dest
, "w")))
300 return error("Could not open %s", dest
);
301 while ((count
= fread(buffer
, 1, sizeof(buffer
), in
)))
302 fwrite(buffer
, 1, count
, out
);
308 static int do_plain_rerere(struct path_list
*rr
, int fd
)
310 struct path_list conflict
= { NULL
, 0, 0, 1 };
313 find_conflict(&conflict
);
316 * MERGE_RR records paths with conflicts immediately after merge
317 * failed. Some of the conflicted paths might have been hand resolved
318 * in the working tree since then, but the initial run would catch all
319 * and register their preimages.
322 for (i
= 0; i
< conflict
.nr
; i
++) {
323 const char *path
= conflict
.items
[i
].path
;
324 if (!path_list_has_path(rr
, path
)) {
325 unsigned char sha1
[20];
328 ret
= handle_file(path
, sha1
, NULL
);
331 hex
= xstrdup(sha1_to_hex(sha1
));
332 path_list_insert(path
, rr
)->util
= hex
;
333 if (mkdir(git_path("rr-cache/%s", hex
), 0755))
335 handle_file(path
, NULL
, rr_path(hex
, "preimage"));
336 fprintf(stderr
, "Recorded preimage for '%s'\n", path
);
341 * Now some of the paths that had conflicts earlier might have been
342 * hand resolved. Others may be similar to a conflict already that
343 * was resolved before.
346 for (i
= 0; i
< rr
->nr
; i
++) {
349 const char *path
= rr
->items
[i
].path
;
350 const char *name
= (const char *)rr
->items
[i
].util
;
352 if (!stat(rr_path(name
, "preimage"), &st
) &&
353 !stat(rr_path(name
, "postimage"), &st
)) {
354 if (!merge(name
, path
)) {
355 fprintf(stderr
, "Resolved '%s' using "
356 "previous resolution.\n", path
);
357 goto tail_optimization
;
361 /* Let's see if we have resolved it. */
362 ret
= handle_file(path
, NULL
, NULL
);
366 fprintf(stderr
, "Recorded resolution for '%s'.\n", path
);
367 copy_file(path
, rr_path(name
, "postimage"));
370 memmove(rr
->items
+ i
,
372 sizeof(rr
->items
[0]) * (rr
->nr
- i
- 1));
377 return write_rr(rr
, fd
);
380 static int git_rerere_config(const char *var
, const char *value
)
382 if (!strcmp(var
, "gc.rerereresolved"))
383 cutoff_resolve
= git_config_int(var
, value
);
384 else if (!strcmp(var
, "gc.rerereunresolved"))
385 cutoff_noresolve
= git_config_int(var
, value
);
387 return git_default_config(var
, value
);
391 int cmd_rerere(int argc
, const char **argv
, const char *prefix
)
393 struct path_list merge_rr
= { NULL
, 0, 0, 1 };
397 if (stat(git_path("rr-cache"), &st
) || !S_ISDIR(st
.st_mode
))
400 git_config(git_rerere_config
);
402 merge_rr_path
= xstrdup(git_path("rr-cache/MERGE_RR"));
403 fd
= hold_lock_file_for_update(&write_lock
, merge_rr_path
, 1);
407 return do_plain_rerere(&merge_rr
, fd
);
408 else if (!strcmp(argv
[1], "clear")) {
409 for (i
= 0; i
< merge_rr
.nr
; i
++) {
410 const char *name
= (const char *)merge_rr
.items
[i
].util
;
411 if (!stat(git_path("rr-cache/%s", name
), &st
) &&
412 S_ISDIR(st
.st_mode
) &&
413 stat(rr_path(name
, "postimage"), &st
))
414 unlink_rr_item(name
);
416 unlink(merge_rr_path
);
417 } else if (!strcmp(argv
[1], "gc"))
418 garbage_collect(&merge_rr
);
419 else if (!strcmp(argv
[1], "status"))
420 for (i
= 0; i
< merge_rr
.nr
; i
++)
421 printf("%s\n", merge_rr
.items
[i
].path
);
422 else if (!strcmp(argv
[1], "diff"))
423 for (i
= 0; i
< merge_rr
.nr
; i
++) {
424 const char *path
= merge_rr
.items
[i
].path
;
425 const char *name
= (const char *)merge_rr
.items
[i
].util
;
426 diff_two(rr_path(name
, "preimage"), path
, path
, path
);
429 usage(git_rerere_usage
);
431 path_list_clear(&merge_rr
, 1);