]> git.ipfire.org Git - thirdparty/git.git/blame - rerere.c
Merge branch 'js/update-index-ignore-removal-for-skip-worktree'
[thirdparty/git.git] / rerere.c
CommitLineData
5b2fd956 1#include "cache.h"
b2141fc1 2#include "config.h"
697cc8ef 3#include "lockfile.h"
c455c87c 4#include "string-list.h"
5b2fd956 5#include "rerere.h"
5b2fd956 6#include "xdiff-interface.h"
dea4562b
JH
7#include "dir.h"
8#include "resolve-undo.h"
9#include "ll-merge.h"
8588567c 10#include "attr.h"
01a10b0a 11#include "pathspec.h"
cbd53a21 12#include "object-store.h"
1869bbe1 13#include "sha1-lookup.h"
5b2fd956 14
ac49f5ca
MZ
15#define RESOLVED 0
16#define PUNTED 1
17#define THREE_STAGED 2
18void *RERERE_RESOLVED = &RERERE_RESOLVED;
19
5b2fd956
SB
20/* if rerere_enabled == -1, fall back to detection of .git/rr-cache */
21static int rerere_enabled = -1;
22
23/* automatically update cleanly resolved paths to the index */
24static int rerere_autoupdate;
25
1869bbe1
JH
26static int rerere_dir_nr;
27static int rerere_dir_alloc;
28
2c7929b1
JH
29#define RR_HAS_POSTIMAGE 1
30#define RR_HAS_PREIMAGE 2
1869bbe1 31static struct rerere_dir {
0d7c419a 32 unsigned char hash[GIT_MAX_HEXSZ];
a13d1370
JH
33 int status_alloc, status_nr;
34 unsigned char *status;
1869bbe1
JH
35} **rerere_dir;
36
37static void free_rerere_dirs(void)
38{
39 int i;
a13d1370
JH
40 for (i = 0; i < rerere_dir_nr; i++) {
41 free(rerere_dir[i]->status);
1869bbe1 42 free(rerere_dir[i]);
a13d1370 43 }
88ce3ef6 44 FREE_AND_NULL(rerere_dir);
1869bbe1 45 rerere_dir_nr = rerere_dir_alloc = 0;
1869bbe1
JH
46}
47
1d51eced 48static void free_rerere_id(struct string_list_item *item)
5b2fd956 49{
1d51eced 50 free(item->util);
5b2fd956
SB
51}
52
1d51eced
JH
53static const char *rerere_id_hex(const struct rerere_id *id)
54{
3f34d70d 55 return hash_to_hex(id->collection->hash);
1d51eced
JH
56}
57
a13d1370
JH
58static void fit_variant(struct rerere_dir *rr_dir, int variant)
59{
60 variant++;
61 ALLOC_GROW(rr_dir->status, variant, rr_dir->status_alloc);
62 if (rr_dir->status_nr < variant) {
63 memset(rr_dir->status + rr_dir->status_nr,
64 '\0', variant - rr_dir->status_nr);
65 rr_dir->status_nr = variant;
66 }
67}
68
69static void assign_variant(struct rerere_id *id)
70{
71 int variant;
72 struct rerere_dir *rr_dir = id->collection;
73
74 variant = id->variant;
75 if (variant < 0) {
629716d2
JH
76 for (variant = 0; variant < rr_dir->status_nr; variant++)
77 if (!rr_dir->status[variant])
78 break;
a13d1370
JH
79 }
80 fit_variant(rr_dir, variant);
81 id->variant = variant;
1d51eced
JH
82}
83
84const char *rerere_path(const struct rerere_id *id, const char *file)
85{
86 if (!file)
87 return git_path("rr-cache/%s", rerere_id_hex(id));
88
a13d1370
JH
89 if (id->variant <= 0)
90 return git_path("rr-cache/%s/%s", rerere_id_hex(id), file);
91
92 return git_path("rr-cache/%s/%s.%d",
93 rerere_id_hex(id), file, id->variant);
5b2fd956
SB
94}
95
a13d1370 96static int is_rr_file(const char *name, const char *filename, int *variant)
2c7929b1 97{
a13d1370
JH
98 const char *suffix;
99 char *ep;
100
101 if (!strcmp(name, filename)) {
102 *variant = 0;
103 return 1;
104 }
105 if (!skip_prefix(name, filename, &suffix) || *suffix != '.')
106 return 0;
107
108 errno = 0;
109 *variant = strtol(suffix + 1, &ep, 10);
110 if (errno || *ep)
111 return 0;
112 return 1;
2c7929b1
JH
113}
114
115static void scan_rerere_dir(struct rerere_dir *rr_dir)
116{
117 struct dirent *de;
3f34d70d 118 DIR *dir = opendir(git_path("rr-cache/%s", hash_to_hex(rr_dir->hash)));
2c7929b1
JH
119
120 if (!dir)
121 return;
122 while ((de = readdir(dir)) != NULL) {
a13d1370
JH
123 int variant;
124
125 if (is_rr_file(de->d_name, "postimage", &variant)) {
126 fit_variant(rr_dir, variant);
127 rr_dir->status[variant] |= RR_HAS_POSTIMAGE;
128 } else if (is_rr_file(de->d_name, "preimage", &variant)) {
129 fit_variant(rr_dir, variant);
130 rr_dir->status[variant] |= RR_HAS_PREIMAGE;
131 }
2c7929b1
JH
132 }
133 closedir(dir);
134}
135
0d7c419a 136static const unsigned char *rerere_dir_hash(size_t i, void *table)
1869bbe1
JH
137{
138 struct rerere_dir **rr_dir = table;
0d7c419a 139 return rr_dir[i]->hash;
1869bbe1
JH
140}
141
142static struct rerere_dir *find_rerere_dir(const char *hex)
143{
0d7c419a 144 unsigned char hash[GIT_MAX_RAWSZ];
1869bbe1
JH
145 struct rerere_dir *rr_dir;
146 int pos;
147
0d7c419a 148 if (get_sha1_hex(hex, hash))
1869bbe1 149 return NULL; /* BUG */
0d7c419a 150 pos = sha1_pos(hash, rerere_dir, rerere_dir_nr, rerere_dir_hash);
1869bbe1
JH
151 if (pos < 0) {
152 rr_dir = xmalloc(sizeof(*rr_dir));
0d7c419a 153 hashcpy(rr_dir->hash, hash);
a13d1370
JH
154 rr_dir->status = NULL;
155 rr_dir->status_nr = 0;
156 rr_dir->status_alloc = 0;
1869bbe1
JH
157 pos = -1 - pos;
158
159 /* Make sure the array is big enough ... */
160 ALLOC_GROW(rerere_dir, rerere_dir_nr + 1, rerere_dir_alloc);
161 /* ... and add it in. */
162 rerere_dir_nr++;
f919ffeb
SG
163 MOVE_ARRAY(rerere_dir + pos + 1, rerere_dir + pos,
164 rerere_dir_nr - pos - 1);
1869bbe1 165 rerere_dir[pos] = rr_dir;
2c7929b1 166 scan_rerere_dir(rr_dir);
1869bbe1
JH
167 }
168 return rerere_dir[pos];
5b2fd956
SB
169}
170
1d51eced 171static int has_rerere_resolution(const struct rerere_id *id)
5b2fd956 172{
05dd9f13 173 const int both = RR_HAS_POSTIMAGE|RR_HAS_PREIMAGE;
a13d1370 174 int variant = id->variant;
1d51eced 175
a13d1370
JH
176 if (variant < 0)
177 return 0;
178 return ((id->collection->status[variant] & both) == both);
5b2fd956
SB
179}
180
1d51eced
JH
181static struct rerere_id *new_rerere_id_hex(char *hex)
182{
183 struct rerere_id *id = xmalloc(sizeof(*id));
1869bbe1 184 id->collection = find_rerere_dir(hex);
a13d1370 185 id->variant = -1; /* not known yet */
1d51eced
JH
186 return id;
187}
188
3f34d70d 189static struct rerere_id *new_rerere_id(unsigned char *hash)
1d51eced 190{
3f34d70d 191 return new_rerere_id_hex(hash_to_hex(hash));
5b2fd956
SB
192}
193
4b68c2a0
JH
194/*
195 * $GIT_DIR/MERGE_RR file is a collection of records, each of which is
196 * "conflict ID", a HT and pathname, terminated with a NUL, and is
197 * used to keep track of the set of paths that "rerere" may need to
198 * work on (i.e. what is left by the previous invocation of "git
199 * rerere" during the current conflict resolution session).
200 */
55e6b354 201static void read_rr(struct repository *r, struct string_list *rr)
5b2fd956 202{
f5800f6a 203 struct strbuf buf = STRBUF_INIT;
55e6b354 204 FILE *in = fopen_or_warn(git_path_merge_rr(r), "r");
f5800f6a 205
5b2fd956
SB
206 if (!in)
207 return;
f5800f6a
JH
208 while (!strbuf_getwholeline(&buf, in, '\0')) {
209 char *path;
0d7c419a 210 unsigned char hash[GIT_MAX_RAWSZ];
1d51eced 211 struct rerere_id *id;
a13d1370 212 int variant;
0d7c419a 213 const unsigned hexsz = the_hash_algo->hexsz;
f5800f6a
JH
214
215 /* There has to be the hash, tab, path and then NUL */
0d7c419a 216 if (buf.len < hexsz + 2 || get_sha1_hex(buf.buf, hash))
2373b650 217 die(_("corrupt MERGE_RR"));
f5800f6a 218
0d7c419a 219 if (buf.buf[hexsz] != '.') {
a13d1370 220 variant = 0;
0d7c419a 221 path = buf.buf + hexsz;
a13d1370
JH
222 } else {
223 errno = 0;
0d7c419a 224 variant = strtol(buf.buf + hexsz + 1, &path, 10);
a13d1370 225 if (errno)
2373b650 226 die(_("corrupt MERGE_RR"));
a13d1370
JH
227 }
228 if (*(path++) != '\t')
2373b650 229 die(_("corrupt MERGE_RR"));
0d7c419a 230 buf.buf[hexsz] = '\0';
1d51eced 231 id = new_rerere_id_hex(buf.buf);
a13d1370 232 id->variant = variant;
1d51eced 233 string_list_insert(rr, path)->util = id;
5b2fd956 234 }
f5800f6a 235 strbuf_release(&buf);
5b2fd956
SB
236 fclose(in);
237}
238
239static struct lock_file write_lock;
240
c455c87c 241static int write_rr(struct string_list *rr, int out_fd)
5b2fd956
SB
242{
243 int i;
244 for (i = 0; i < rr->nr; i++) {
e2cb6a95 245 struct strbuf buf = STRBUF_INIT;
1d51eced 246 struct rerere_id *id;
e2cb6a95
JH
247
248 assert(rr->items[i].util != RERERE_RESOLVED);
1d51eced
JH
249
250 id = rr->items[i].util;
251 if (!id)
5b2fd956 252 continue;
a13d1370
JH
253 assert(id->variant >= 0);
254 if (0 < id->variant)
255 strbuf_addf(&buf, "%s.%d\t%s%c",
256 rerere_id_hex(id), id->variant,
257 rr->items[i].string, 0);
258 else
259 strbuf_addf(&buf, "%s\t%s%c",
260 rerere_id_hex(id),
261 rr->items[i].string, 0);
262
06f46f23 263 if (write_in_full(out_fd, buf.buf, buf.len) < 0)
2373b650 264 die(_("unable to write rerere record"));
e2cb6a95
JH
265
266 strbuf_release(&buf);
5b2fd956
SB
267 }
268 if (commit_lock_file(&write_lock) != 0)
2373b650 269 die(_("unable to write rerere record"));
5b2fd956
SB
270 return 0;
271}
272
a96847cc
JH
273/*
274 * "rerere" interacts with conflicted file contents using this I/O
275 * abstraction. It reads a conflicted contents from one place via
276 * "getline()" method, and optionally can write it out after
277 * normalizing the conflicted hunks to the "output". Subclasses of
278 * rerere_io embed this structure at the beginning of their own
279 * rerere_io object.
280 */
281struct rerere_io {
282 int (*getline)(struct strbuf *, struct rerere_io *);
283 FILE *output;
284 int wrerror;
285 /* some more stuff */
286};
287
47d32af2
AR
288static void ferr_write(const void *p, size_t count, FILE *fp, int *err)
289{
290 if (!count || *err)
291 return;
292 if (fwrite(p, count, 1, fp) != 1)
293 *err = errno;
294}
295
296static inline void ferr_puts(const char *s, FILE *fp, int *err)
297{
298 ferr_write(s, strlen(s), fp, err);
299}
300
27d6b085
JH
301static void rerere_io_putstr(const char *str, struct rerere_io *io)
302{
303 if (io->output)
304 ferr_puts(str, io->output, &io->wrerror);
305}
306
307static void rerere_io_putmem(const char *mem, size_t sz, struct rerere_io *io)
308{
309 if (io->output)
310 ferr_write(mem, sz, io->output, &io->wrerror);
311}
312
a96847cc
JH
313/*
314 * Subclass of rerere_io that reads from an on-disk file
315 */
27d6b085
JH
316struct rerere_io_file {
317 struct rerere_io io;
318 FILE *input;
319};
320
a96847cc
JH
321/*
322 * ... and its getline() method implementation
323 */
27d6b085
JH
324static int rerere_file_getline(struct strbuf *sb, struct rerere_io *io_)
325{
326 struct rerere_io_file *io = (struct rerere_io_file *)io_;
327 return strbuf_getwholeline(sb, io->input, '\n');
328}
329
67711cdc
JH
330/*
331 * Require the exact number of conflict marker letters, no more, no
332 * less, followed by SP or any whitespace
333 * (including LF).
334 */
335static int is_cmarker(char *buf, int marker_char, int marker_size)
191f2417 336{
67711cdc
JH
337 int want_sp;
338
339 /*
340 * The beginning of our version and the end of their version
341 * always are labeled like "<<<<< ours" or ">>>>> theirs",
342 * hence we set want_sp for them. Note that the version from
343 * the common ancestor in diff3-style output is not always
344 * labelled (e.g. "||||| common" is often seen but "|||||"
345 * alone is also valid), so we do not set want_sp.
346 */
347 want_sp = (marker_char == '<') || (marker_char == '>');
348
191f2417
JH
349 while (marker_size--)
350 if (*buf++ != marker_char)
351 return 0;
352 if (want_sp && *buf != ' ')
353 return 0;
354 return isspace(*buf);
355}
356
5ebbdad3
TG
357static void rerere_strbuf_putconflict(struct strbuf *buf, int ch, size_t size)
358{
359 strbuf_addchars(buf, ch, size);
360 strbuf_addch(buf, '\n');
361}
362
363static int handle_conflict(struct strbuf *out, struct rerere_io *io,
0d7c419a 364 int marker_size, git_hash_ctx *ctx)
5b2fd956 365{
cc58d7df 366 enum {
c0f16f8e
TG
367 RR_SIDE_1 = 0, RR_SIDE_2, RR_ORIGINAL
368 } hunk = RR_SIDE_1;
f285a2d7 369 struct strbuf one = STRBUF_INIT, two = STRBUF_INIT;
4af32207 370 struct strbuf buf = STRBUF_INIT, conflict = STRBUF_INIT;
c0f16f8e 371 int has_conflicts = -1;
5b2fd956 372
27d6b085 373 while (!io->getline(&buf, io)) {
67711cdc 374 if (is_cmarker(buf.buf, '<', marker_size)) {
4af32207
TG
375 if (handle_conflict(&conflict, io, marker_size, NULL) < 0)
376 break;
377 if (hunk == RR_SIDE_1)
378 strbuf_addbuf(&one, &conflict);
379 else
380 strbuf_addbuf(&two, &conflict);
381 strbuf_release(&conflict);
67711cdc 382 } else if (is_cmarker(buf.buf, '|', marker_size)) {
cc58d7df 383 if (hunk != RR_SIDE_1)
c0f16f8e 384 break;
387c9d49 385 hunk = RR_ORIGINAL;
67711cdc 386 } else if (is_cmarker(buf.buf, '=', marker_size)) {
387c9d49 387 if (hunk != RR_SIDE_1 && hunk != RR_ORIGINAL)
c0f16f8e 388 break;
cc58d7df 389 hunk = RR_SIDE_2;
67711cdc 390 } else if (is_cmarker(buf.buf, '>', marker_size)) {
cc58d7df 391 if (hunk != RR_SIDE_2)
c0f16f8e 392 break;
5b2fd956
SB
393 if (strbuf_cmp(&one, &two) > 0)
394 strbuf_swap(&one, &two);
221444f5 395 has_conflicts = 1;
5ebbdad3
TG
396 rerere_strbuf_putconflict(out, '<', marker_size);
397 strbuf_addbuf(out, &one);
398 rerere_strbuf_putconflict(out, '=', marker_size);
399 strbuf_addbuf(out, &two);
400 rerere_strbuf_putconflict(out, '>', marker_size);
c0f16f8e 401 if (ctx) {
0d7c419a 402 the_hash_algo->update_fn(ctx, one.buf ?
403 one.buf : "",
404 one.len + 1);
405 the_hash_algo->update_fn(ctx, two.buf ?
406 two.buf : "",
407 two.len + 1);
5b2fd956 408 }
c0f16f8e 409 break;
cc58d7df 410 } else if (hunk == RR_SIDE_1)
e992d1eb 411 strbuf_addbuf(&one, &buf);
387c9d49
JH
412 else if (hunk == RR_ORIGINAL)
413 ; /* discard */
cc58d7df 414 else if (hunk == RR_SIDE_2)
e992d1eb 415 strbuf_addbuf(&two, &buf);
5b2fd956
SB
416 }
417 strbuf_release(&one);
418 strbuf_release(&two);
d58ee6db 419 strbuf_release(&buf);
5b2fd956 420
c0f16f8e
TG
421 return has_conflicts;
422}
423
424/*
425 * Read contents a file with conflicts, normalize the conflicts
426 * by (1) discarding the common ancestor version in diff3-style,
427 * (2) reordering our side and their side so that whichever sorts
428 * alphabetically earlier comes before the other one, while
429 * computing the "conflict ID", which is just an SHA-1 hash of
430 * one side of the conflict, NUL, the other side of the conflict,
431 * and NUL concatenated together.
432 *
433 * Return 1 if conflict hunks are found, 0 if there are no conflict
434 * hunks and -1 if an error occured.
435 */
0d7c419a 436static int handle_path(unsigned char *hash, struct rerere_io *io, int marker_size)
c0f16f8e 437{
0d7c419a 438 git_hash_ctx ctx;
5ebbdad3 439 struct strbuf buf = STRBUF_INIT, out = STRBUF_INIT;
c0f16f8e 440 int has_conflicts = 0;
0d7c419a 441 if (hash)
442 the_hash_algo->init_fn(&ctx);
c0f16f8e
TG
443
444 while (!io->getline(&buf, io)) {
445 if (is_cmarker(buf.buf, '<', marker_size)) {
5ebbdad3 446 has_conflicts = handle_conflict(&out, io, marker_size,
0d7c419a 447 hash ? &ctx : NULL);
c0f16f8e
TG
448 if (has_conflicts < 0)
449 break;
5ebbdad3
TG
450 rerere_io_putmem(out.buf, out.len, io);
451 strbuf_reset(&out);
c0f16f8e
TG
452 } else
453 rerere_io_putstr(buf.buf, io);
454 }
455 strbuf_release(&buf);
5ebbdad3 456 strbuf_release(&out);
c0f16f8e 457
0d7c419a 458 if (hash)
459 the_hash_algo->final_fn(hash, &ctx);
c0f16f8e 460
221444f5 461 return has_conflicts;
27d6b085
JH
462}
463
cc899eca
JH
464/*
465 * Scan the path for conflicts, do the "handle_path()" thing above, and
466 * return the number of conflict hunks found.
467 */
d829d491
JH
468static int handle_file(struct index_state *istate,
469 const char *path, unsigned char *hash, const char *output)
27d6b085 470{
221444f5 471 int has_conflicts = 0;
27d6b085 472 struct rerere_io_file io;
35843b11 473 int marker_size = ll_merge_marker_size(istate, path);
27d6b085
JH
474
475 memset(&io, 0, sizeof(io));
476 io.io.getline = rerere_file_getline;
477 io.input = fopen(path, "r");
478 io.io.wrerror = 0;
479 if (!io.input)
2373b650 480 return error_errno(_("could not open '%s'"), path);
27d6b085
JH
481
482 if (output) {
483 io.io.output = fopen(output, "w");
484 if (!io.io.output) {
2373b650 485 error_errno(_("could not write '%s'"), output);
27d6b085 486 fclose(io.input);
f7566f07 487 return -1;
27d6b085
JH
488 }
489 }
490
0d7c419a 491 has_conflicts = handle_path(hash, (struct rerere_io *)&io, marker_size);
27d6b085
JH
492
493 fclose(io.input);
494 if (io.io.wrerror)
2373b650 495 error(_("there were errors while writing '%s' (%s)"),
27d6b085
JH
496 path, strerror(io.io.wrerror));
497 if (io.io.output && fclose(io.io.output))
2373b650 498 io.io.wrerror = error_errno(_("failed to flush '%s'"), path);
27d6b085 499
221444f5 500 if (has_conflicts < 0) {
5b2fd956 501 if (output)
691f1a28 502 unlink_or_warn(output);
2373b650 503 return error(_("could not parse conflict hunks in '%s'"), path);
5b2fd956 504 }
27d6b085 505 if (io.io.wrerror)
47d32af2 506 return -1;
221444f5 507 return has_conflicts;
5b2fd956
SB
508}
509
4b68c2a0
JH
510/*
511 * Look at a cache entry at "i" and see if it is not conflicting,
512 * conflicting and we are willing to handle, or conflicting and
513 * we are unable to handle, and return the determination in *type.
514 * Return the cache index to be looked at next, by skipping the
515 * stages we have already looked at in this invocation of this
516 * function.
517 */
35843b11 518static int check_one_conflict(struct index_state *istate, int i, int *type)
5b2fd956 519{
35843b11 520 const struct cache_entry *e = istate->cache[i];
ac49f5ca
MZ
521
522 if (!ce_stage(e)) {
523 *type = RESOLVED;
524 return i + 1;
525 }
526
527 *type = PUNTED;
11877b9e 528 while (i < istate->cache_nr && ce_stage(istate->cache[i]) == 1)
fb70a06d 529 i++;
ac49f5ca
MZ
530
531 /* Only handle regular files with both stages #2 and #3 */
35843b11
NTND
532 if (i + 1 < istate->cache_nr) {
533 const struct cache_entry *e2 = istate->cache[i];
534 const struct cache_entry *e3 = istate->cache[i + 1];
5b2fd956
SB
535 if (ce_stage(e2) == 2 &&
536 ce_stage(e3) == 3 &&
ac49f5ca 537 ce_same_name(e, e3) &&
5b2fd956 538 S_ISREG(e2->ce_mode) &&
ac49f5ca
MZ
539 S_ISREG(e3->ce_mode))
540 *type = THREE_STAGED;
541 }
542
543 /* Skip the entries with the same name */
35843b11 544 while (i < istate->cache_nr && ce_same_name(e, istate->cache[i]))
ac49f5ca
MZ
545 i++;
546 return i;
547}
548
4b68c2a0
JH
549/*
550 * Scan the index and find paths that have conflicts that rerere can
551 * handle, i.e. the ones that has both stages #2 and #3.
552 *
553 * NEEDSWORK: we do not record or replay a previous "resolve by
554 * deletion" for a delete-modify conflict, as that is inherently risky
555 * without knowing what modification is being discarded. The only
556 * safe case, i.e. both side doing the deletion and modification that
557 * are identical to the previous round, might want to be handled,
558 * though.
559 */
35843b11 560static int find_conflict(struct repository *r, struct string_list *conflict)
ac49f5ca
MZ
561{
562 int i;
35843b11 563
e1ff0a32 564 if (repo_read_index(r) < 0)
2373b650 565 return error(_("index file corrupt"));
ac49f5ca 566
35843b11 567 for (i = 0; i < r->index->cache_nr;) {
ac49f5ca 568 int conflict_type;
35843b11
NTND
569 const struct cache_entry *e = r->index->cache[i];
570 i = check_one_conflict(r->index, i, &conflict_type);
ac49f5ca
MZ
571 if (conflict_type == THREE_STAGED)
572 string_list_insert(conflict, (const char *)e->name);
573 }
574 return 0;
575}
576
4b68c2a0
JH
577/*
578 * The merge_rr list is meant to hold outstanding conflicted paths
579 * that rerere could handle. Abuse the list by adding other types of
580 * entries to allow the caller to show "rerere remaining".
581 *
582 * - Conflicted paths that rerere does not handle are added
583 * - Conflicted paths that have been resolved are marked as such
584 * by storing RERERE_RESOLVED to .util field (where conflict ID
585 * is expected to be stored).
586 *
587 * Do *not* write MERGE_RR file out after calling this function.
588 *
589 * NEEDSWORK: we may want to fix the caller that implements "rerere
590 * remaining" to do this without abusing merge_rr.
591 */
35843b11 592int rerere_remaining(struct repository *r, struct string_list *merge_rr)
ac49f5ca
MZ
593{
594 int i;
35843b11 595
55e6b354 596 if (setup_rerere(r, merge_rr, RERERE_READONLY))
9dd330e6 597 return 0;
e1ff0a32 598 if (repo_read_index(r) < 0)
2373b650 599 return error(_("index file corrupt"));
ac49f5ca 600
35843b11 601 for (i = 0; i < r->index->cache_nr;) {
ac49f5ca 602 int conflict_type;
35843b11
NTND
603 const struct cache_entry *e = r->index->cache[i];
604 i = check_one_conflict(r->index, i, &conflict_type);
ac49f5ca
MZ
605 if (conflict_type == PUNTED)
606 string_list_insert(merge_rr, (const char *)e->name);
607 else if (conflict_type == RESOLVED) {
608 struct string_list_item *it;
609 it = string_list_lookup(merge_rr, (const char *)e->name);
610 if (it != NULL) {
1d51eced 611 free_rerere_id(it);
ac49f5ca
MZ
612 it->util = RERERE_RESOLVED;
613 }
5b2fd956
SB
614 }
615 }
616 return 0;
617}
618
0ce02b36
JH
619/*
620 * Try using the given conflict resolution "ID" to see
621 * if that recorded conflict resolves cleanly what we
622 * got in the "cur".
623 */
35843b11
NTND
624static int try_merge(struct index_state *istate,
625 const struct rerere_id *id, const char *path,
0ce02b36
JH
626 mmfile_t *cur, mmbuffer_t *result)
627{
628 int ret;
629 mmfile_t base = {NULL, 0}, other = {NULL, 0};
630
631 if (read_mmfile(&base, rerere_path(id, "preimage")) ||
632 read_mmfile(&other, rerere_path(id, "postimage")))
633 ret = 1;
634 else
635 /*
636 * A three-way merge. Note that this honors user-customizable
637 * low-level merge driver settings.
638 */
32eaa468 639 ret = ll_merge(result, path, &base, NULL, cur, "", &other, "",
35843b11 640 istate, NULL);
0ce02b36
JH
641
642 free(base.ptr);
643 free(other.ptr);
644
645 return ret;
646}
647
cc899eca 648/*
18bb9934 649 * Find the conflict identified by "id"; the change between its
cc899eca
JH
650 * "preimage" (i.e. a previous contents with conflict markers) and its
651 * "postimage" (i.e. the corresponding contents with conflicts
652 * resolved) may apply cleanly to the contents stored in "path", i.e.
653 * the conflict this time around.
654 *
655 * Returns 0 for successful replay of recorded resolution, or non-zero
656 * for failure.
657 */
35843b11 658static int merge(struct index_state *istate, const struct rerere_id *id, const char *path)
5b2fd956 659{
15ed07d5 660 FILE *f;
5b2fd956 661 int ret;
0ce02b36 662 mmfile_t cur = {NULL, 0};
5b2fd956 663 mmbuffer_t result = {NULL, 0};
5b2fd956 664
cc899eca
JH
665 /*
666 * Normalize the conflicts in path and write it out to
667 * "thisimage" temporary file.
668 */
35843b11 669 if ((handle_file(istate, path, NULL, rerere_path(id, "thisimage")) < 0) ||
0ce02b36 670 read_mmfile(&cur, rerere_path(id, "thisimage"))) {
689b8c29
BW
671 ret = 1;
672 goto out;
673 }
cc899eca 674
35843b11 675 ret = try_merge(istate, id, path, &cur, &result);
15ed07d5
JH
676 if (ret)
677 goto out;
678
679 /*
680 * A successful replay of recorded resolution.
681 * Mark that "postimage" was used to help gc.
682 */
683 if (utime(rerere_path(id, "postimage"), NULL) < 0)
2373b650 684 warning_errno(_("failed utime() on '%s'"),
033e011e 685 rerere_path(id, "postimage"));
15ed07d5
JH
686
687 /* Update "path" with the resolution */
688 f = fopen(path, "w");
689 if (!f)
2373b650 690 return error_errno(_("could not open '%s'"), path);
15ed07d5 691 if (fwrite(result.ptr, result.size, 1, f) != 1)
2373b650 692 error_errno(_("could not write '%s'"), path);
15ed07d5 693 if (fclose(f))
2373b650 694 return error_errno(_("writing '%s' failed"), path);
5b2fd956 695
689b8c29 696out:
5b2fd956 697 free(cur.ptr);
5b2fd956
SB
698 free(result.ptr);
699
700 return ret;
701}
702
35843b11 703static void update_paths(struct repository *r, struct string_list *update)
5b2fd956 704{
0fa5a2ed 705 struct lock_file index_lock = LOCK_INIT;
5b2fd956 706 int i;
5b2fd956 707
3a95f31d 708 repo_hold_locked_index(r, &index_lock, LOCK_DIE_ON_ERROR);
5b2fd956
SB
709
710 for (i = 0; i < update->nr; i++) {
c455c87c 711 struct string_list_item *item = &update->items[i];
35843b11 712 if (add_file_to_index(r->index, item->string, 0))
89ea9035 713 exit(128);
2373b650 714 fprintf_ln(stderr, _("Staged '%s' using previous resolution."),
a14c7ab8 715 item->string);
5b2fd956
SB
716 }
717
35843b11 718 if (write_locked_index(r->index, &index_lock,
61000814 719 COMMIT_LOCK | SKIP_IF_UNCHANGED))
2373b650 720 die(_("unable to write new index file"));
5b2fd956
SB
721}
722
629716d2
JH
723static void remove_variant(struct rerere_id *id)
724{
725 unlink_or_warn(rerere_path(id, "postimage"));
726 unlink_or_warn(rerere_path(id, "preimage"));
727 id->collection->status[id->variant] = 0;
728}
729
8e7768b2
JH
730/*
731 * The path indicated by rr_item may still have conflict for which we
732 * have a recorded resolution, in which case replay it and optionally
733 * update it. Or it may have been resolved by the user and we may
734 * only have the preimage for that conflict, in which case the result
735 * needs to be recorded as a resolution in a postimage file.
736 */
35843b11
NTND
737static void do_rerere_one_path(struct index_state *istate,
738 struct string_list_item *rr_item,
8e7768b2
JH
739 struct string_list *update)
740{
741 const char *path = rr_item->string;
a13d1370 742 struct rerere_id *id = rr_item->util;
629716d2 743 struct rerere_dir *rr_dir = id->collection;
a13d1370
JH
744 int variant;
745
a13d1370 746 variant = id->variant;
8e7768b2 747
629716d2
JH
748 /* Has the user resolved it already? */
749 if (variant >= 0) {
35843b11 750 if (!handle_file(istate, path, NULL, NULL)) {
629716d2
JH
751 copy_file(rerere_path(id, "postimage"), path, 0666);
752 id->collection->status[variant] |= RR_HAS_POSTIMAGE;
2373b650 753 fprintf_ln(stderr, _("Recorded resolution for '%s'."), path);
629716d2
JH
754 free_rerere_id(rr_item);
755 rr_item->util = NULL;
756 return;
757 }
c0a5423b 758 /*
629716d2
JH
759 * There may be other variants that can cleanly
760 * replay. Try them and update the variant number for
761 * this one.
c0a5423b 762 */
629716d2
JH
763 }
764
765 /* Does any existing resolution apply cleanly? */
766 for (variant = 0; variant < rr_dir->status_nr; variant++) {
767 const int both = RR_HAS_PREIMAGE | RR_HAS_POSTIMAGE;
768 struct rerere_id vid = *id;
769
770 if ((rr_dir->status[variant] & both) != both)
771 continue;
8e7768b2 772
629716d2 773 vid.variant = variant;
35843b11 774 if (merge(istate, &vid, path))
629716d2
JH
775 continue; /* failed to replay */
776
777 /*
778 * If there already is a different variant that applies
779 * cleanly, there is no point maintaining our own variant.
780 */
781 if (0 <= id->variant && id->variant != variant)
782 remove_variant(id);
8e7768b2
JH
783
784 if (rerere_autoupdate)
785 string_list_insert(update, path);
786 else
2373b650
TG
787 fprintf_ln(stderr,
788 _("Resolved '%s' using previous resolution."),
789 path);
629716d2
JH
790 free_rerere_id(rr_item);
791 rr_item->util = NULL;
925d73c4 792 return;
8e7768b2 793 }
629716d2
JH
794
795 /* None of the existing one applies; we need a new variant */
796 assign_variant(id);
797
798 variant = id->variant;
35843b11 799 handle_file(istate, path, NULL, rerere_path(id, "preimage"));
629716d2
JH
800 if (id->collection->status[variant] & RR_HAS_POSTIMAGE) {
801 const char *path = rerere_path(id, "postimage");
802 if (unlink(path))
2373b650 803 die_errno(_("cannot unlink stray '%s'"), path);
629716d2
JH
804 id->collection->status[variant] &= ~RR_HAS_POSTIMAGE;
805 }
806 id->collection->status[variant] |= RR_HAS_PREIMAGE;
2373b650 807 fprintf_ln(stderr, _("Recorded preimage for '%s'"), path);
8e7768b2
JH
808}
809
35843b11
NTND
810static int do_plain_rerere(struct repository *r,
811 struct string_list *rr, int fd)
5b2fd956 812{
183113a5
TF
813 struct string_list conflict = STRING_LIST_INIT_DUP;
814 struct string_list update = STRING_LIST_INIT_DUP;
5b2fd956
SB
815 int i;
816
35843b11 817 find_conflict(r, &conflict);
5b2fd956
SB
818
819 /*
cc899eca
JH
820 * MERGE_RR records paths with conflicts immediately after
821 * merge failed. Some of the conflicted paths might have been
822 * hand resolved in the working tree since then, but the
823 * initial run would catch all and register their preimages.
5b2fd956 824 */
5b2fd956 825 for (i = 0; i < conflict.nr; i++) {
1d51eced 826 struct rerere_id *id;
0d7c419a 827 unsigned char hash[GIT_MAX_RAWSZ];
c455c87c 828 const char *path = conflict.items[i].string;
1d51eced 829 int ret;
5b2fd956 830
c7a25d37
JH
831 /*
832 * Ask handle_file() to scan and assign a
833 * conflict ID. No need to write anything out
834 * yet.
835 */
d829d491 836 ret = handle_file(r->index, path, hash, NULL);
bd7dfa54 837 if (ret != 0 && string_list_has_string(rr, path)) {
93406a28
TG
838 remove_variant(string_list_lookup(rr, path)->util);
839 string_list_remove(rr, path, 1);
840 }
c7a25d37
JH
841 if (ret < 1)
842 continue;
5b2fd956 843
0d7c419a 844 id = new_rerere_id(hash);
18bb9934 845 string_list_insert(rr, path)->util = id;
cc899eca 846
c0a5423b
JH
847 /* Ensure that the directory exists. */
848 mkdir_in_gitdir(rerere_path(id, NULL));
5b2fd956
SB
849 }
850
8e7768b2 851 for (i = 0; i < rr->nr; i++)
35843b11 852 do_rerere_one_path(r->index, &rr->items[i], &update);
5b2fd956
SB
853
854 if (update.nr)
35843b11 855 update_paths(r, &update);
5b2fd956
SB
856
857 return write_rr(rr, fd);
858}
859
633e5ad3 860static void git_rerere_config(void)
5b2fd956 861{
633e5ad3
TA
862 git_config_get_bool("rerere.enabled", &rerere_enabled);
863 git_config_get_bool("rerere.autoupdate", &rerere_autoupdate);
864 git_config(git_default_config, NULL);
5b2fd956
SB
865}
866
f932729c
JK
867static GIT_PATH_FUNC(git_path_rr_cache, "rr-cache")
868
5b2fd956
SB
869static int is_rerere_enabled(void)
870{
5b2fd956
SB
871 int rr_cache_exists;
872
873 if (!rerere_enabled)
874 return 0;
875
f932729c 876 rr_cache_exists = is_directory(git_path_rr_cache());
5b2fd956
SB
877 if (rerere_enabled < 0)
878 return rr_cache_exists;
879
f932729c 880 if (!rr_cache_exists && mkdir_in_gitdir(git_path_rr_cache()))
2373b650 881 die(_("could not create directory '%s'"), git_path_rr_cache());
5b2fd956
SB
882 return 1;
883}
884
55e6b354 885int setup_rerere(struct repository *r, struct string_list *merge_rr, int flags)
5b2fd956
SB
886{
887 int fd;
888
633e5ad3 889 git_rerere_config();
5b2fd956
SB
890 if (!is_rerere_enabled())
891 return -1;
892
cb6020bb
JH
893 if (flags & (RERERE_AUTOUPDATE|RERERE_NOAUTOUPDATE))
894 rerere_autoupdate = !!(flags & RERERE_AUTOUPDATE);
9dd330e6
JK
895 if (flags & RERERE_READONLY)
896 fd = 0;
897 else
102de880 898 fd = hold_lock_file_for_update(&write_lock,
55e6b354 899 git_path_merge_rr(r),
9dd330e6 900 LOCK_DIE_ON_ERROR);
55e6b354 901 read_rr(r, merge_rr);
5b2fd956
SB
902 return fd;
903}
904
cc899eca
JH
905/*
906 * The main entry point that is called internally from codepaths that
907 * perform mergy operations, possibly leaving conflicted index entries
908 * and working tree files.
909 */
35843b11 910int repo_rerere(struct repository *r, int flags)
5b2fd956 911{
183113a5 912 struct string_list merge_rr = STRING_LIST_INIT_DUP;
1869bbe1 913 int fd, status;
5b2fd956 914
55e6b354 915 fd = setup_rerere(r, &merge_rr, flags);
5b2fd956
SB
916 if (fd < 0)
917 return 0;
35843b11 918 status = do_plain_rerere(r, &merge_rr, fd);
1869bbe1
JH
919 free_rerere_dirs();
920 return status;
5b2fd956 921}
dea4562b 922
3d730ed9
JH
923/*
924 * Subclass of rerere_io that reads from an in-core buffer that is a
925 * strbuf
926 */
927struct rerere_io_mem {
928 struct rerere_io io;
929 struct strbuf input;
930};
931
932/*
933 * ... and its getline() method implementation
934 */
935static int rerere_mem_getline(struct strbuf *sb, struct rerere_io *io_)
936{
937 struct rerere_io_mem *io = (struct rerere_io_mem *)io_;
938 char *ep;
939 size_t len;
940
941 strbuf_release(sb);
942 if (!io->input.len)
943 return -1;
944 ep = memchr(io->input.buf, '\n', io->input.len);
945 if (!ep)
946 ep = io->input.buf + io->input.len;
947 else if (*ep == '\n')
948 ep++;
949 len = ep - io->input.buf;
950 strbuf_add(sb, io->input.buf, len);
951 strbuf_remove(&io->input, 0, len);
952 return 0;
953}
954
d829d491
JH
955static int handle_cache(struct index_state *istate,
956 const char *path, unsigned char *hash, const char *output)
3d730ed9
JH
957{
958 mmfile_t mmfile[3] = {{NULL}};
959 mmbuffer_t result = {NULL, 0};
960 const struct cache_entry *ce;
221444f5 961 int pos, len, i, has_conflicts;
3d730ed9 962 struct rerere_io_mem io;
35843b11 963 int marker_size = ll_merge_marker_size(istate, path);
3d730ed9
JH
964
965 /*
966 * Reproduce the conflicted merge in-core
967 */
968 len = strlen(path);
35843b11 969 pos = index_name_pos(istate, path, len);
3d730ed9
JH
970 if (0 <= pos)
971 return -1;
972 pos = -pos - 1;
973
35843b11 974 while (pos < istate->cache_nr) {
3d730ed9
JH
975 enum object_type type;
976 unsigned long size;
977
35843b11 978 ce = istate->cache[pos++];
3d730ed9
JH
979 if (ce_namelen(ce) != len || memcmp(ce->name, path, len))
980 break;
981 i = ce_stage(ce) - 1;
982 if (!mmfile[i].ptr) {
b4f5aca4 983 mmfile[i].ptr = read_object_file(&ce->oid, &type,
984 &size);
3d730ed9
JH
985 mmfile[i].size = size;
986 }
987 }
988 for (i = 0; i < 3; i++)
989 if (!mmfile[i].ptr && !mmfile[i].size)
990 mmfile[i].ptr = xstrdup("");
991
992 /*
993 * NEEDSWORK: handle conflicts from merges with
994 * merge.renormalize set, too?
995 */
996 ll_merge(&result, path, &mmfile[0], NULL,
997 &mmfile[1], "ours",
32eaa468 998 &mmfile[2], "theirs",
35843b11 999 istate, NULL);
3d730ed9
JH
1000 for (i = 0; i < 3; i++)
1001 free(mmfile[i].ptr);
1002
1003 memset(&io, 0, sizeof(io));
1004 io.io.getline = rerere_mem_getline;
1005 if (output)
1006 io.io.output = fopen(output, "w");
1007 else
1008 io.io.output = NULL;
1009 strbuf_init(&io.input, 0);
1010 strbuf_attach(&io.input, result.ptr, result.size, result.size);
1011
1012 /*
1013 * Grab the conflict ID and optionally write the original
1014 * contents with conflict markers out.
1015 */
0d7c419a 1016 has_conflicts = handle_path(hash, (struct rerere_io *)&io, marker_size);
3d730ed9
JH
1017 strbuf_release(&io.input);
1018 if (io.io.output)
1019 fclose(io.io.output);
221444f5 1020 return has_conflicts;
5b2fd956 1021}
dea4562b 1022
35843b11
NTND
1023static int rerere_forget_one_path(struct index_state *istate,
1024 const char *path,
1025 struct string_list *rr)
dea4562b
JH
1026{
1027 const char *filename;
1d51eced 1028 struct rerere_id *id;
0d7c419a 1029 unsigned char hash[GIT_MAX_RAWSZ];
dea4562b 1030 int ret;
8d9b5a4a 1031 struct string_list_item *item;
dea4562b 1032
963ec003
JH
1033 /*
1034 * Recreate the original conflict from the stages in the
1035 * index and compute the conflict ID
1036 */
d829d491 1037 ret = handle_cache(istate, path, hash, NULL);
dea4562b 1038 if (ret < 1)
2373b650 1039 return error(_("could not parse conflict hunks in '%s'"), path);
963ec003
JH
1040
1041 /* Nuke the recorded resolution for the conflict */
0d7c419a 1042 id = new_rerere_id(hash);
890fca84
JH
1043
1044 for (id->variant = 0;
1045 id->variant < id->collection->status_nr;
1046 id->variant++) {
1047 mmfile_t cur = { NULL, 0 };
1048 mmbuffer_t result = {NULL, 0};
1049 int cleanly_resolved;
1050
1051 if (!has_rerere_resolution(id))
1052 continue;
1053
d829d491 1054 handle_cache(istate, path, hash, rerere_path(id, "thisimage"));
890fca84
JH
1055 if (read_mmfile(&cur, rerere_path(id, "thisimage"))) {
1056 free(cur.ptr);
2373b650 1057 error(_("failed to update conflicted state in '%s'"), path);
8f449614 1058 goto fail_exit;
890fca84 1059 }
35843b11 1060 cleanly_resolved = !try_merge(istate, id, path, &cur, &result);
890fca84
JH
1061 free(result.ptr);
1062 free(cur.ptr);
1063 if (cleanly_resolved)
1064 break;
1065 }
1066
8f449614 1067 if (id->collection->status_nr <= id->variant) {
2373b650 1068 error(_("no remembered resolution for '%s'"), path);
8f449614
JH
1069 goto fail_exit;
1070 }
890fca84 1071
18bb9934 1072 filename = rerere_path(id, "postimage");
8f449614
JH
1073 if (unlink(filename)) {
1074 if (errno == ENOENT)
2373b650 1075 error(_("no remembered resolution for '%s'"), path);
8f449614 1076 else
2373b650 1077 error_errno(_("cannot unlink '%s'"), filename);
8f449614 1078 goto fail_exit;
d9d501b0 1079 }
dea4562b 1080
963ec003
JH
1081 /*
1082 * Update the preimage so that the user can resolve the
1083 * conflict in the working tree, run us again to record
1084 * the postimage.
1085 */
d829d491 1086 handle_cache(istate, path, hash, rerere_path(id, "preimage"));
2373b650 1087 fprintf_ln(stderr, _("Updated preimage for '%s'"), path);
dea4562b 1088
963ec003
JH
1089 /*
1090 * And remember that we can record resolution for this
1091 * conflict when the user is done.
1092 */
8d9b5a4a 1093 item = string_list_insert(rr, path);
1d51eced 1094 free_rerere_id(item);
18bb9934 1095 item->util = id;
2373b650 1096 fprintf(stderr, _("Forgot resolution for '%s'\n"), path);
dea4562b 1097 return 0;
8f449614
JH
1098
1099fail_exit:
1100 free(id);
1101 return -1;
dea4562b
JH
1102}
1103
35843b11 1104int rerere_forget(struct repository *r, struct pathspec *pathspec)
dea4562b
JH
1105{
1106 int i, fd;
183113a5
TF
1107 struct string_list conflict = STRING_LIST_INIT_DUP;
1108 struct string_list merge_rr = STRING_LIST_INIT_DUP;
dea4562b 1109
e1ff0a32 1110 if (repo_read_index(r) < 0)
2373b650 1111 return error(_("index file corrupt"));
dea4562b 1112
55e6b354 1113 fd = setup_rerere(r, &merge_rr, RERERE_NOAUTOUPDATE);
0544574c
JK
1114 if (fd < 0)
1115 return 0;
dea4562b 1116
963ec003
JH
1117 /*
1118 * The paths may have been resolved (incorrectly);
1119 * recover the original conflicted state and then
1120 * find the conflicted paths.
1121 */
35843b11
NTND
1122 unmerge_index(r->index, pathspec);
1123 find_conflict(r, &conflict);
dea4562b
JH
1124 for (i = 0; i < conflict.nr; i++) {
1125 struct string_list_item *it = &conflict.items[i];
35843b11 1126 if (!match_pathspec(r->index, pathspec, it->string,
ae8d0824 1127 strlen(it->string), 0, NULL, 0))
dea4562b 1128 continue;
35843b11 1129 rerere_forget_one_path(r->index, it->string, &merge_rr);
dea4562b
JH
1130 }
1131 return write_rr(&merge_rr, fd);
1132}
0f891e7d 1133
e828de82
JH
1134/*
1135 * Garbage collection support
1136 */
1d51eced 1137
5ea82279 1138static timestamp_t rerere_created_at(struct rerere_id *id)
0f891e7d
JH
1139{
1140 struct stat st;
1d51eced 1141
18bb9934 1142 return stat(rerere_path(id, "preimage"), &st) ? (time_t) 0 : st.st_mtime;
0f891e7d
JH
1143}
1144
5ea82279 1145static timestamp_t rerere_last_used_at(struct rerere_id *id)
0f891e7d
JH
1146{
1147 struct stat st;
1d51eced 1148
18bb9934 1149 return stat(rerere_path(id, "postimage"), &st) ? (time_t) 0 : st.st_mtime;
0f891e7d
JH
1150}
1151
e828de82
JH
1152/*
1153 * Remove the recorded resolution for a given conflict ID
1154 */
1d51eced 1155static void unlink_rr_item(struct rerere_id *id)
0f891e7d 1156{
1be1e851
JH
1157 unlink_or_warn(rerere_path(id, "thisimage"));
1158 remove_variant(id);
1159 id->collection->status[id->variant] = 0;
1160}
1161
5ea82279
JH
1162static void prune_one(struct rerere_id *id,
1163 timestamp_t cutoff_resolve, timestamp_t cutoff_noresolve)
1be1e851 1164{
5ea82279
JH
1165 timestamp_t then;
1166 timestamp_t cutoff;
1be1e851
JH
1167
1168 then = rerere_last_used_at(id);
1169 if (then)
1170 cutoff = cutoff_resolve;
1171 else {
1172 then = rerere_created_at(id);
1173 if (!then)
1174 return;
1175 cutoff = cutoff_noresolve;
1176 }
5ea82279 1177 if (then < cutoff)
1be1e851 1178 unlink_rr_item(id);
0f891e7d
JH
1179}
1180
55e6b354 1181void rerere_gc(struct repository *r, struct string_list *rr)
0f891e7d
JH
1182{
1183 struct string_list to_remove = STRING_LIST_INIT_DUP;
1184 DIR *dir;
1185 struct dirent *e;
1be1e851 1186 int i;
5ea82279
JH
1187 timestamp_t now = time(NULL);
1188 timestamp_t cutoff_noresolve = now - 15 * 86400;
1189 timestamp_t cutoff_resolve = now - 60 * 86400;
0f891e7d 1190
55e6b354 1191 if (setup_rerere(r, rr, 0) < 0)
9dd330e6
JK
1192 return;
1193
6e96cb52
JH
1194 git_config_get_expiry_in_days("gc.rerereresolved", &cutoff_resolve, now);
1195 git_config_get_expiry_in_days("gc.rerereunresolved", &cutoff_noresolve, now);
633e5ad3 1196 git_config(git_default_config, NULL);
0f891e7d
JH
1197 dir = opendir(git_path("rr-cache"));
1198 if (!dir)
2373b650 1199 die_errno(_("unable to open rr-cache directory"));
e828de82 1200 /* Collect stale conflict IDs ... */
0f891e7d 1201 while ((e = readdir(dir))) {
1be1e851
JH
1202 struct rerere_dir *rr_dir;
1203 struct rerere_id id;
1204 int now_empty;
1205
0f891e7d
JH
1206 if (is_dot_or_dotdot(e->d_name))
1207 continue;
1be1e851
JH
1208 rr_dir = find_rerere_dir(e->d_name);
1209 if (!rr_dir)
1210 continue; /* or should we remove e->d_name? */
1211
1212 now_empty = 1;
1213 for (id.variant = 0, id.collection = rr_dir;
1214 id.variant < id.collection->status_nr;
1215 id.variant++) {
5ea82279 1216 prune_one(&id, cutoff_resolve, cutoff_noresolve);
1be1e851
JH
1217 if (id.collection->status[id.variant])
1218 now_empty = 0;
0f891e7d 1219 }
1be1e851 1220 if (now_empty)
0f891e7d
JH
1221 string_list_append(&to_remove, e->d_name);
1222 }
a9930e35 1223 closedir(dir);
1be1e851
JH
1224
1225 /* ... and then remove the empty directories */
0f891e7d 1226 for (i = 0; i < to_remove.nr; i++)
1be1e851 1227 rmdir(git_path("rr-cache/%s", to_remove.items[i].string));
0f891e7d 1228 string_list_clear(&to_remove, 0);
9dd330e6 1229 rollback_lock_file(&write_lock);
0f891e7d
JH
1230}
1231
e828de82
JH
1232/*
1233 * During a conflict resolution, after "rerere" recorded the
1234 * preimages, abandon them if the user did not resolve them or
1235 * record their resolutions. And drop $GIT_DIR/MERGE_RR.
1236 *
1237 * NEEDSWORK: shouldn't we be calling this from "reset --hard"?
1238 */
55e6b354 1239void rerere_clear(struct repository *r, struct string_list *merge_rr)
0f891e7d
JH
1240{
1241 int i;
1242
55e6b354 1243 if (setup_rerere(r, merge_rr, 0) < 0)
9dd330e6
JK
1244 return;
1245
0f891e7d 1246 for (i = 0; i < merge_rr->nr; i++) {
1d51eced 1247 struct rerere_id *id = merge_rr->items[i].util;
1be1e851 1248 if (!has_rerere_resolution(id)) {
18bb9934 1249 unlink_rr_item(id);
1be1e851
JH
1250 rmdir(rerere_path(id, NULL));
1251 }
0f891e7d 1252 }
55e6b354 1253 unlink_or_warn(git_path_merge_rr(r));
9dd330e6 1254 rollback_lock_file(&write_lock);
0f891e7d 1255}