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 int handle_file(const char *path,
82 unsigned char *sha1, const char *output)
86 int hunk = 0, hunk_no = 0;
87 struct buffer minus = { NULL, 0, 0 }, plus = { NULL, 0, 0 };
88 struct buffer *one = &minus, *two = +
89 FILE *f = fopen(path, "r");
93 return error("Could not open %s", path);
96 out = fopen(output, "w");
99 return error("Could not write %s", output);
107 while (fgets(buf, sizeof(buf), f)) {
108 if (!prefixcmp(buf, "<<<<<<< "))
110 else if (!prefixcmp(buf, "======="))
112 else if (!prefixcmp(buf, ">>>>>>> ")) {
115 if (memcmp(one->ptr, two->ptr, one->nr < two->nr ?
116 one->nr : two->nr) > 0) {
117 struct buffer *swap = one;
122 fputs("<<<<<<<\n", out);
123 fwrite(one->ptr, one->nr, 1, out);
124 fputs("=======\n", out);
125 fwrite(two->ptr, two->nr, 1, out);
126 fputs(">>>>>>>\n", out);
129 SHA1_Update(&ctx, one->ptr, one->nr);
130 SHA1_Update(&ctx, "\0", 1);
131 SHA1_Update(&ctx, two->ptr, two->nr);
132 SHA1_Update(&ctx, "\0", 1);
134 } else if (hunk == 1)
135 append_line(one, buf);
137 append_line(two, buf);
146 SHA1_Final(sha1, &ctx);
150 static int find_conflict(struct path_list *conflict)
153 if (read_cache() < 0)
154 return error("Could not read index");
155 for (i = 0; i + 2 < active_nr; i++) {
156 struct cache_entry *e1 = active_cache[i];
157 struct cache_entry *e2 = active_cache[i + 1];
158 struct cache_entry *e3 = active_cache[i + 2];
159 if (ce_stage(e1) == 1 && ce_stage(e2) == 2 &&
160 ce_stage(e3) == 3 && ce_same_name(e1, e2) &&
161 ce_same_name(e1, e3)) {
162 path_list_insert((const char *)e1->name, conflict);
169 static int merge(const char *name, const char *path)
172 mmfile_t cur, base, other;
173 mmbuffer_t result = {NULL, 0};
174 xpparam_t xpp = {XDF_NEED_MINIMAL};
176 if (handle_file(path, NULL, rr_path(name, "thisimage")) < 0)
179 if (read_mmfile(&cur, rr_path(name, "thisimage")) ||
180 read_mmfile(&base, rr_path(name, "preimage")) ||
181 read_mmfile(&other, rr_path(name, "postimage")))
183 ret = xdl_merge(&base, &cur, "", &other, "",
184 &xpp, XDL_MERGE_ZEALOUS, &result);
186 FILE *f = fopen(path, "w");
188 return error("Could not write to %s", path);
189 fwrite(result.ptr, result.size, 1, f);
201 static void unlink_rr_item(const char *name)
203 unlink(rr_path(name, "thisimage"));
204 unlink(rr_path(name, "preimage"));
205 unlink(rr_path(name, "postimage"));
206 rmdir(git_path("rr-cache/%s", name));
209 static void garbage_collect(struct path_list *rr)
211 struct path_list to_remove = { NULL, 0, 0, 1 };
216 time_t now = time(NULL), then;
218 strlcpy(buf, git_path("rr-cache"), sizeof(buf));
221 strcpy(buf + len++, "/");
222 while ((e = readdir(dir))) {
223 const char *name = e->d_name;
225 if (name[0] == '.' && (name[1] == '\0' ||
226 (name[1] == '.' && name[2] == '\0')))
228 i = snprintf(buf + len, sizeof(buf) - len, "%s", name);
229 strlcpy(buf + len + i, "/preimage", sizeof(buf) - len - i);
233 strlcpy(buf + len + i, "/postimage", sizeof(buf) - len - i);
234 cutoff = stat(buf, &st) ? cutoff_noresolve : cutoff_resolve;
235 if (then < now - cutoff * 86400) {
237 path_list_insert(xstrdup(name), &to_remove);
240 for (i = 0; i < to_remove.nr; i++)
241 unlink_rr_item(to_remove.items[i].path);
242 path_list_clear(&to_remove, 0);
245 static int outf(void *dummy, mmbuffer_t *ptr, int nbuf)
248 for (i = 0; i < nbuf; i++)
249 if (write_in_full(1, ptr[i].ptr, ptr[i].size) != ptr[i].size)
254 static int diff_two(const char *file1, const char *label1,
255 const char *file2, const char *label2)
260 mmfile_t minus, plus;
262 if (read_mmfile(&minus, file1) || read_mmfile(&plus, file2))
265 printf("--- a/%s\n+++ b/%s\n", label1, label2);
267 xpp.flags = XDF_NEED_MINIMAL;
271 xdl_diff(&minus, &plus, &xpp, &xecfg, &ecb);
278 static int copy_file(const char *src, const char *dest)
284 if (!(in = fopen(src, "r")))
285 return error("Could not open %s", src);
286 if (!(out = fopen(dest, "w")))
287 return error("Could not open %s", dest);
288 while ((count = fread(buffer, 1, sizeof(buffer), in)))
289 fwrite(buffer, 1, count, out);
295 static int do_plain_rerere(struct path_list *rr, int fd)
297 struct path_list conflict = { NULL, 0, 0, 1 };
300 find_conflict(&conflict);
303 * MERGE_RR records paths with conflicts immediately after merge
304 * failed. Some of the conflicted paths might have been hand resolved
305 * in the working tree since then, but the initial run would catch all
306 * and register their preimages.
309 for (i = 0; i < conflict.nr; i++) {
310 const char *path = conflict.items[i].path;
311 if (!path_list_has_path(rr, path)) {
312 unsigned char sha1[20];
315 ret = handle_file(path, sha1, NULL);
318 hex = xstrdup(sha1_to_hex(sha1));
319 path_list_insert(path, rr)->util = hex;
320 if (mkdir(git_path("rr-cache/%s", hex), 0755))
322 handle_file(path, NULL, rr_path(hex, "preimage"));
323 fprintf(stderr, "Recorded preimage for '%s'\n", path);
328 * Now some of the paths that had conflicts earlier might have been
329 * hand resolved. Others may be similar to a conflict already that
330 * was resolved before.
333 for (i = 0; i < rr->nr; i++) {
336 const char *path = rr->items[i].path;
337 const char *name = (const char *)rr->items[i].util;
339 if (!stat(rr_path(name, "preimage"), &st) &&
340 !stat(rr_path(name, "postimage"), &st)) {
341 if (!merge(name, path)) {
342 fprintf(stderr, "Resolved '%s' using "
343 "previous resolution.\n", path);
344 goto tail_optimization;
348 /* Let's see if we have resolved it. */
349 ret = handle_file(path, NULL, NULL);
353 fprintf(stderr, "Recorded resolution for '%s'.\n", path);
354 copy_file(path, rr_path(name, "postimage"));
357 memmove(rr->items + i,
359 sizeof(rr->items[0]) * (rr->nr - i - 1));
364 return write_rr(rr, fd);
367 static int git_rerere_config(const char *var, const char *value)
369 if (!strcmp(var, "gc.rerereresolved"))
370 cutoff_resolve = git_config_int(var, value);
371 else if (!strcmp(var, "gc.rerereunresolved"))
372 cutoff_noresolve = git_config_int(var, value);
374 return git_default_config(var, value);
378 int cmd_rerere(int argc, const char **argv, const char *prefix)
380 struct path_list merge_rr = { NULL, 0, 0, 1 };
384 if (stat(git_path("rr-cache"), &st) || !S_ISDIR(st.st_mode))
387 git_config(git_rerere_config);
389 merge_rr_path = xstrdup(git_path("rr-cache/MERGE_RR"));
390 fd = hold_lock_file_for_update(&write_lock, merge_rr_path, 1);
394 return do_plain_rerere(&merge_rr, fd);
395 else if (!strcmp(argv[1], "clear")) {
396 for (i = 0; i < merge_rr.nr; i++) {
397 const char *name = (const char *)merge_rr.items[i].util;
398 if (!stat(git_path("rr-cache/%s", name), &st) &&
399 S_ISDIR(st.st_mode) &&
400 stat(rr_path(name, "postimage"), &st))
401 unlink_rr_item(name);
403 unlink(merge_rr_path);
404 } else if (!strcmp(argv[1], "gc"))
405 garbage_collect(&merge_rr);
406 else if (!strcmp(argv[1], "status"))
407 for (i = 0; i < merge_rr.nr; i++)
408 printf("%s\n", merge_rr.items[i].path);
409 else if (!strcmp(argv[1], "diff"))
410 for (i = 0; i < merge_rr.nr; i++) {
411 const char *path = merge_rr.items[i].path;
412 const char *name = (const char *)merge_rr.items[i].util;
413 diff_two(rr_path(name, "preimage"), path, path, path);
416 usage(git_rerere_usage);
418 path_list_clear(&merge_rr, 1);