4 #include "string-list.h"
6 #include "xdiff-interface.h"
8 #include "resolve-undo.h"
12 #include "object-store.h"
13 #include "hash-lookup.h"
18 #define THREE_STAGED 2
19 void *RERERE_RESOLVED
= &RERERE_RESOLVED
;
21 /* if rerere_enabled == -1, fall back to detection of .git/rr-cache */
22 static int rerere_enabled
= -1;
24 /* automatically update cleanly resolved paths to the index */
25 static int rerere_autoupdate
;
27 #define RR_HAS_POSTIMAGE 1
28 #define RR_HAS_PREIMAGE 2
30 int status_alloc
, status_nr
;
31 unsigned char *status
;
32 char name
[FLEX_ARRAY
];
35 static struct strmap rerere_dirs
= STRMAP_INIT
;
37 static void free_rerere_dirs(void)
39 struct hashmap_iter iter
;
40 struct strmap_entry
*ent
;
42 strmap_for_each_entry(&rerere_dirs
, &iter
, ent
) {
43 struct rerere_dir
*rr_dir
= ent
->value
;
47 strmap_clear(&rerere_dirs
, 0);
50 static void free_rerere_id(struct string_list_item
*item
)
55 static const char *rerere_id_hex(const struct rerere_id
*id
)
57 return id
->collection
->name
;
60 static void fit_variant(struct rerere_dir
*rr_dir
, int variant
)
63 ALLOC_GROW(rr_dir
->status
, variant
, rr_dir
->status_alloc
);
64 if (rr_dir
->status_nr
< variant
) {
65 memset(rr_dir
->status
+ rr_dir
->status_nr
,
66 '\0', variant
- rr_dir
->status_nr
);
67 rr_dir
->status_nr
= variant
;
71 static void assign_variant(struct rerere_id
*id
)
74 struct rerere_dir
*rr_dir
= id
->collection
;
76 variant
= id
->variant
;
78 for (variant
= 0; variant
< rr_dir
->status_nr
; variant
++)
79 if (!rr_dir
->status
[variant
])
82 fit_variant(rr_dir
, variant
);
83 id
->variant
= variant
;
86 const char *rerere_path(const struct rerere_id
*id
, const char *file
)
89 return git_path("rr-cache/%s", rerere_id_hex(id
));
92 return git_path("rr-cache/%s/%s", rerere_id_hex(id
), file
);
94 return git_path("rr-cache/%s/%s.%d",
95 rerere_id_hex(id
), file
, id
->variant
);
98 static int is_rr_file(const char *name
, const char *filename
, int *variant
)
103 if (!strcmp(name
, filename
)) {
107 if (!skip_prefix(name
, filename
, &suffix
) || *suffix
!= '.')
111 *variant
= strtol(suffix
+ 1, &ep
, 10);
117 static void scan_rerere_dir(struct rerere_dir
*rr_dir
)
120 DIR *dir
= opendir(git_path("rr-cache/%s", rr_dir
->name
));
124 while ((de
= readdir(dir
)) != NULL
) {
127 if (is_rr_file(de
->d_name
, "postimage", &variant
)) {
128 fit_variant(rr_dir
, variant
);
129 rr_dir
->status
[variant
] |= RR_HAS_POSTIMAGE
;
130 } else if (is_rr_file(de
->d_name
, "preimage", &variant
)) {
131 fit_variant(rr_dir
, variant
);
132 rr_dir
->status
[variant
] |= RR_HAS_PREIMAGE
;
138 static struct rerere_dir
*find_rerere_dir(const char *hex
)
140 struct rerere_dir
*rr_dir
;
142 rr_dir
= strmap_get(&rerere_dirs
, hex
);
144 FLEX_ALLOC_STR(rr_dir
, name
, hex
);
145 rr_dir
->status
= NULL
;
146 rr_dir
->status_nr
= 0;
147 rr_dir
->status_alloc
= 0;
148 strmap_put(&rerere_dirs
, hex
, rr_dir
);
150 scan_rerere_dir(rr_dir
);
155 static int has_rerere_resolution(const struct rerere_id
*id
)
157 const int both
= RR_HAS_POSTIMAGE
|RR_HAS_PREIMAGE
;
158 int variant
= id
->variant
;
162 return ((id
->collection
->status
[variant
] & both
) == both
);
165 static struct rerere_id
*new_rerere_id_hex(char *hex
)
167 struct rerere_id
*id
= xmalloc(sizeof(*id
));
168 id
->collection
= find_rerere_dir(hex
);
169 id
->variant
= -1; /* not known yet */
173 static struct rerere_id
*new_rerere_id(unsigned char *hash
)
175 return new_rerere_id_hex(hash_to_hex(hash
));
179 * $GIT_DIR/MERGE_RR file is a collection of records, each of which is
180 * "conflict ID", a HT and pathname, terminated with a NUL, and is
181 * used to keep track of the set of paths that "rerere" may need to
182 * work on (i.e. what is left by the previous invocation of "git
183 * rerere" during the current conflict resolution session).
185 static void read_rr(struct repository
*r
, struct string_list
*rr
)
187 struct strbuf buf
= STRBUF_INIT
;
188 FILE *in
= fopen_or_warn(git_path_merge_rr(r
), "r");
192 while (!strbuf_getwholeline(&buf
, in
, '\0')) {
194 unsigned char hash
[GIT_MAX_RAWSZ
];
195 struct rerere_id
*id
;
197 const unsigned hexsz
= the_hash_algo
->hexsz
;
199 /* There has to be the hash, tab, path and then NUL */
200 if (buf
.len
< hexsz
+ 2 || get_sha1_hex(buf
.buf
, hash
))
201 die(_("corrupt MERGE_RR"));
203 if (buf
.buf
[hexsz
] != '.') {
205 path
= buf
.buf
+ hexsz
;
208 variant
= strtol(buf
.buf
+ hexsz
+ 1, &path
, 10);
210 die(_("corrupt MERGE_RR"));
212 if (*(path
++) != '\t')
213 die(_("corrupt MERGE_RR"));
214 buf
.buf
[hexsz
] = '\0';
215 id
= new_rerere_id_hex(buf
.buf
);
216 id
->variant
= variant
;
217 string_list_insert(rr
, path
)->util
= id
;
219 strbuf_release(&buf
);
223 static struct lock_file write_lock
;
225 static int write_rr(struct string_list
*rr
, int out_fd
)
228 for (i
= 0; i
< rr
->nr
; i
++) {
229 struct strbuf buf
= STRBUF_INIT
;
230 struct rerere_id
*id
;
232 assert(rr
->items
[i
].util
!= RERERE_RESOLVED
);
234 id
= rr
->items
[i
].util
;
237 assert(id
->variant
>= 0);
239 strbuf_addf(&buf
, "%s.%d\t%s%c",
240 rerere_id_hex(id
), id
->variant
,
241 rr
->items
[i
].string
, 0);
243 strbuf_addf(&buf
, "%s\t%s%c",
245 rr
->items
[i
].string
, 0);
247 if (write_in_full(out_fd
, buf
.buf
, buf
.len
) < 0)
248 die(_("unable to write rerere record"));
250 strbuf_release(&buf
);
252 if (commit_lock_file(&write_lock
) != 0)
253 die(_("unable to write rerere record"));
258 * "rerere" interacts with conflicted file contents using this I/O
259 * abstraction. It reads a conflicted contents from one place via
260 * "getline()" method, and optionally can write it out after
261 * normalizing the conflicted hunks to the "output". Subclasses of
262 * rerere_io embed this structure at the beginning of their own
266 int (*getline
)(struct strbuf
*, struct rerere_io
*);
269 /* some more stuff */
272 static void ferr_write(const void *p
, size_t count
, FILE *fp
, int *err
)
276 if (fwrite(p
, count
, 1, fp
) != 1)
280 static inline void ferr_puts(const char *s
, FILE *fp
, int *err
)
282 ferr_write(s
, strlen(s
), fp
, err
);
285 static void rerere_io_putstr(const char *str
, struct rerere_io
*io
)
288 ferr_puts(str
, io
->output
, &io
->wrerror
);
291 static void rerere_io_putmem(const char *mem
, size_t sz
, struct rerere_io
*io
)
294 ferr_write(mem
, sz
, io
->output
, &io
->wrerror
);
298 * Subclass of rerere_io that reads from an on-disk file
300 struct rerere_io_file
{
306 * ... and its getline() method implementation
308 static int rerere_file_getline(struct strbuf
*sb
, struct rerere_io
*io_
)
310 struct rerere_io_file
*io
= (struct rerere_io_file
*)io_
;
311 return strbuf_getwholeline(sb
, io
->input
, '\n');
315 * Require the exact number of conflict marker letters, no more, no
316 * less, followed by SP or any whitespace
319 static int is_cmarker(char *buf
, int marker_char
, int marker_size
)
324 * The beginning of our version and the end of their version
325 * always are labeled like "<<<<< ours" or ">>>>> theirs",
326 * hence we set want_sp for them. Note that the version from
327 * the common ancestor in diff3-style output is not always
328 * labelled (e.g. "||||| common" is often seen but "|||||"
329 * alone is also valid), so we do not set want_sp.
331 want_sp
= (marker_char
== '<') || (marker_char
== '>');
333 while (marker_size
--)
334 if (*buf
++ != marker_char
)
336 if (want_sp
&& *buf
!= ' ')
338 return isspace(*buf
);
341 static void rerere_strbuf_putconflict(struct strbuf
*buf
, int ch
, size_t size
)
343 strbuf_addchars(buf
, ch
, size
);
344 strbuf_addch(buf
, '\n');
347 static int handle_conflict(struct strbuf
*out
, struct rerere_io
*io
,
348 int marker_size
, git_hash_ctx
*ctx
)
351 RR_SIDE_1
= 0, RR_SIDE_2
, RR_ORIGINAL
353 struct strbuf one
= STRBUF_INIT
, two
= STRBUF_INIT
;
354 struct strbuf buf
= STRBUF_INIT
, conflict
= STRBUF_INIT
;
355 int has_conflicts
= -1;
357 while (!io
->getline(&buf
, io
)) {
358 if (is_cmarker(buf
.buf
, '<', marker_size
)) {
359 if (handle_conflict(&conflict
, io
, marker_size
, NULL
) < 0)
361 if (hunk
== RR_SIDE_1
)
362 strbuf_addbuf(&one
, &conflict
);
364 strbuf_addbuf(&two
, &conflict
);
365 strbuf_release(&conflict
);
366 } else if (is_cmarker(buf
.buf
, '|', marker_size
)) {
367 if (hunk
!= RR_SIDE_1
)
370 } else if (is_cmarker(buf
.buf
, '=', marker_size
)) {
371 if (hunk
!= RR_SIDE_1
&& hunk
!= RR_ORIGINAL
)
374 } else if (is_cmarker(buf
.buf
, '>', marker_size
)) {
375 if (hunk
!= RR_SIDE_2
)
377 if (strbuf_cmp(&one
, &two
) > 0)
378 strbuf_swap(&one
, &two
);
380 rerere_strbuf_putconflict(out
, '<', marker_size
);
381 strbuf_addbuf(out
, &one
);
382 rerere_strbuf_putconflict(out
, '=', marker_size
);
383 strbuf_addbuf(out
, &two
);
384 rerere_strbuf_putconflict(out
, '>', marker_size
);
386 the_hash_algo
->update_fn(ctx
, one
.buf
?
389 the_hash_algo
->update_fn(ctx
, two
.buf
?
394 } else if (hunk
== RR_SIDE_1
)
395 strbuf_addbuf(&one
, &buf
);
396 else if (hunk
== RR_ORIGINAL
)
398 else if (hunk
== RR_SIDE_2
)
399 strbuf_addbuf(&two
, &buf
);
401 strbuf_release(&one
);
402 strbuf_release(&two
);
403 strbuf_release(&buf
);
405 return has_conflicts
;
409 * Read contents a file with conflicts, normalize the conflicts
410 * by (1) discarding the common ancestor version in diff3-style,
411 * (2) reordering our side and their side so that whichever sorts
412 * alphabetically earlier comes before the other one, while
413 * computing the "conflict ID", which is just an SHA-1 hash of
414 * one side of the conflict, NUL, the other side of the conflict,
415 * and NUL concatenated together.
417 * Return 1 if conflict hunks are found, 0 if there are no conflict
418 * hunks and -1 if an error occurred.
420 static int handle_path(unsigned char *hash
, struct rerere_io
*io
, int marker_size
)
423 struct strbuf buf
= STRBUF_INIT
, out
= STRBUF_INIT
;
424 int has_conflicts
= 0;
426 the_hash_algo
->init_fn(&ctx
);
428 while (!io
->getline(&buf
, io
)) {
429 if (is_cmarker(buf
.buf
, '<', marker_size
)) {
430 has_conflicts
= handle_conflict(&out
, io
, marker_size
,
432 if (has_conflicts
< 0)
434 rerere_io_putmem(out
.buf
, out
.len
, io
);
437 rerere_io_putstr(buf
.buf
, io
);
439 strbuf_release(&buf
);
440 strbuf_release(&out
);
443 the_hash_algo
->final_fn(hash
, &ctx
);
445 return has_conflicts
;
449 * Scan the path for conflicts, do the "handle_path()" thing above, and
450 * return the number of conflict hunks found.
452 static int handle_file(struct index_state
*istate
,
453 const char *path
, unsigned char *hash
, const char *output
)
455 int has_conflicts
= 0;
456 struct rerere_io_file io
;
457 int marker_size
= ll_merge_marker_size(istate
, path
);
459 memset(&io
, 0, sizeof(io
));
460 io
.io
.getline
= rerere_file_getline
;
461 io
.input
= fopen(path
, "r");
464 return error_errno(_("could not open '%s'"), path
);
467 io
.io
.output
= fopen(output
, "w");
469 error_errno(_("could not write '%s'"), output
);
475 has_conflicts
= handle_path(hash
, (struct rerere_io
*)&io
, marker_size
);
479 error(_("there were errors while writing '%s' (%s)"),
480 path
, strerror(io
.io
.wrerror
));
481 if (io
.io
.output
&& fclose(io
.io
.output
))
482 io
.io
.wrerror
= error_errno(_("failed to flush '%s'"), path
);
484 if (has_conflicts
< 0) {
486 unlink_or_warn(output
);
487 return error(_("could not parse conflict hunks in '%s'"), path
);
491 return has_conflicts
;
495 * Look at a cache entry at "i" and see if it is not conflicting,
496 * conflicting and we are willing to handle, or conflicting and
497 * we are unable to handle, and return the determination in *type.
498 * Return the cache index to be looked at next, by skipping the
499 * stages we have already looked at in this invocation of this
502 static int check_one_conflict(struct index_state
*istate
, int i
, int *type
)
504 const struct cache_entry
*e
= istate
->cache
[i
];
512 while (i
< istate
->cache_nr
&& ce_stage(istate
->cache
[i
]) == 1)
515 /* Only handle regular files with both stages #2 and #3 */
516 if (i
+ 1 < istate
->cache_nr
) {
517 const struct cache_entry
*e2
= istate
->cache
[i
];
518 const struct cache_entry
*e3
= istate
->cache
[i
+ 1];
519 if (ce_stage(e2
) == 2 &&
521 ce_same_name(e
, e3
) &&
522 S_ISREG(e2
->ce_mode
) &&
523 S_ISREG(e3
->ce_mode
))
524 *type
= THREE_STAGED
;
527 /* Skip the entries with the same name */
528 while (i
< istate
->cache_nr
&& ce_same_name(e
, istate
->cache
[i
]))
534 * Scan the index and find paths that have conflicts that rerere can
535 * handle, i.e. the ones that has both stages #2 and #3.
537 * NEEDSWORK: we do not record or replay a previous "resolve by
538 * deletion" for a delete-modify conflict, as that is inherently risky
539 * without knowing what modification is being discarded. The only
540 * safe case, i.e. both side doing the deletion and modification that
541 * are identical to the previous round, might want to be handled,
544 static int find_conflict(struct repository
*r
, struct string_list
*conflict
)
548 if (repo_read_index(r
) < 0)
549 return error(_("index file corrupt"));
551 for (i
= 0; i
< r
->index
->cache_nr
;) {
553 const struct cache_entry
*e
= r
->index
->cache
[i
];
554 i
= check_one_conflict(r
->index
, i
, &conflict_type
);
555 if (conflict_type
== THREE_STAGED
)
556 string_list_insert(conflict
, (const char *)e
->name
);
562 * The merge_rr list is meant to hold outstanding conflicted paths
563 * that rerere could handle. Abuse the list by adding other types of
564 * entries to allow the caller to show "rerere remaining".
566 * - Conflicted paths that rerere does not handle are added
567 * - Conflicted paths that have been resolved are marked as such
568 * by storing RERERE_RESOLVED to .util field (where conflict ID
569 * is expected to be stored).
571 * Do *not* write MERGE_RR file out after calling this function.
573 * NEEDSWORK: we may want to fix the caller that implements "rerere
574 * remaining" to do this without abusing merge_rr.
576 int rerere_remaining(struct repository
*r
, struct string_list
*merge_rr
)
580 if (setup_rerere(r
, merge_rr
, RERERE_READONLY
))
582 if (repo_read_index(r
) < 0)
583 return error(_("index file corrupt"));
585 for (i
= 0; i
< r
->index
->cache_nr
;) {
587 const struct cache_entry
*e
= r
->index
->cache
[i
];
588 i
= check_one_conflict(r
->index
, i
, &conflict_type
);
589 if (conflict_type
== PUNTED
)
590 string_list_insert(merge_rr
, (const char *)e
->name
);
591 else if (conflict_type
== RESOLVED
) {
592 struct string_list_item
*it
;
593 it
= string_list_lookup(merge_rr
, (const char *)e
->name
);
596 it
->util
= RERERE_RESOLVED
;
604 * Try using the given conflict resolution "ID" to see
605 * if that recorded conflict resolves cleanly what we
608 static int try_merge(struct index_state
*istate
,
609 const struct rerere_id
*id
, const char *path
,
610 mmfile_t
*cur
, mmbuffer_t
*result
)
613 mmfile_t base
= {NULL
, 0}, other
= {NULL
, 0};
615 if (read_mmfile(&base
, rerere_path(id
, "preimage")) ||
616 read_mmfile(&other
, rerere_path(id
, "postimage")))
620 * A three-way merge. Note that this honors user-customizable
621 * low-level merge driver settings.
623 ret
= ll_merge(result
, path
, &base
, NULL
, cur
, "", &other
, "",
633 * Find the conflict identified by "id"; the change between its
634 * "preimage" (i.e. a previous contents with conflict markers) and its
635 * "postimage" (i.e. the corresponding contents with conflicts
636 * resolved) may apply cleanly to the contents stored in "path", i.e.
637 * the conflict this time around.
639 * Returns 0 for successful replay of recorded resolution, or non-zero
642 static int merge(struct index_state
*istate
, const struct rerere_id
*id
, const char *path
)
646 mmfile_t cur
= {NULL
, 0};
647 mmbuffer_t result
= {NULL
, 0};
650 * Normalize the conflicts in path and write it out to
651 * "thisimage" temporary file.
653 if ((handle_file(istate
, path
, NULL
, rerere_path(id
, "thisimage")) < 0) ||
654 read_mmfile(&cur
, rerere_path(id
, "thisimage"))) {
659 ret
= try_merge(istate
, id
, path
, &cur
, &result
);
664 * A successful replay of recorded resolution.
665 * Mark that "postimage" was used to help gc.
667 if (utime(rerere_path(id
, "postimage"), NULL
) < 0)
668 warning_errno(_("failed utime() on '%s'"),
669 rerere_path(id
, "postimage"));
671 /* Update "path" with the resolution */
672 f
= fopen(path
, "w");
674 return error_errno(_("could not open '%s'"), path
);
675 if (fwrite(result
.ptr
, result
.size
, 1, f
) != 1)
676 error_errno(_("could not write '%s'"), path
);
678 return error_errno(_("writing '%s' failed"), path
);
687 static void update_paths(struct repository
*r
, struct string_list
*update
)
689 struct lock_file index_lock
= LOCK_INIT
;
692 repo_hold_locked_index(r
, &index_lock
, LOCK_DIE_ON_ERROR
);
694 for (i
= 0; i
< update
->nr
; i
++) {
695 struct string_list_item
*item
= &update
->items
[i
];
696 if (add_file_to_index(r
->index
, item
->string
, 0))
698 fprintf_ln(stderr
, _("Staged '%s' using previous resolution."),
702 if (write_locked_index(r
->index
, &index_lock
,
703 COMMIT_LOCK
| SKIP_IF_UNCHANGED
))
704 die(_("unable to write new index file"));
707 static void remove_variant(struct rerere_id
*id
)
709 unlink_or_warn(rerere_path(id
, "postimage"));
710 unlink_or_warn(rerere_path(id
, "preimage"));
711 id
->collection
->status
[id
->variant
] = 0;
715 * The path indicated by rr_item may still have conflict for which we
716 * have a recorded resolution, in which case replay it and optionally
717 * update it. Or it may have been resolved by the user and we may
718 * only have the preimage for that conflict, in which case the result
719 * needs to be recorded as a resolution in a postimage file.
721 static void do_rerere_one_path(struct index_state
*istate
,
722 struct string_list_item
*rr_item
,
723 struct string_list
*update
)
725 const char *path
= rr_item
->string
;
726 struct rerere_id
*id
= rr_item
->util
;
727 struct rerere_dir
*rr_dir
= id
->collection
;
730 variant
= id
->variant
;
732 /* Has the user resolved it already? */
734 if (!handle_file(istate
, path
, NULL
, NULL
)) {
735 copy_file(rerere_path(id
, "postimage"), path
, 0666);
736 id
->collection
->status
[variant
] |= RR_HAS_POSTIMAGE
;
737 fprintf_ln(stderr
, _("Recorded resolution for '%s'."), path
);
738 free_rerere_id(rr_item
);
739 rr_item
->util
= NULL
;
743 * There may be other variants that can cleanly
744 * replay. Try them and update the variant number for
749 /* Does any existing resolution apply cleanly? */
750 for (variant
= 0; variant
< rr_dir
->status_nr
; variant
++) {
751 const int both
= RR_HAS_PREIMAGE
| RR_HAS_POSTIMAGE
;
752 struct rerere_id vid
= *id
;
754 if ((rr_dir
->status
[variant
] & both
) != both
)
757 vid
.variant
= variant
;
758 if (merge(istate
, &vid
, path
))
759 continue; /* failed to replay */
762 * If there already is a different variant that applies
763 * cleanly, there is no point maintaining our own variant.
765 if (0 <= id
->variant
&& id
->variant
!= variant
)
768 if (rerere_autoupdate
)
769 string_list_insert(update
, path
);
772 _("Resolved '%s' using previous resolution."),
774 free_rerere_id(rr_item
);
775 rr_item
->util
= NULL
;
779 /* None of the existing one applies; we need a new variant */
782 variant
= id
->variant
;
783 handle_file(istate
, path
, NULL
, rerere_path(id
, "preimage"));
784 if (id
->collection
->status
[variant
] & RR_HAS_POSTIMAGE
) {
785 const char *path
= rerere_path(id
, "postimage");
787 die_errno(_("cannot unlink stray '%s'"), path
);
788 id
->collection
->status
[variant
] &= ~RR_HAS_POSTIMAGE
;
790 id
->collection
->status
[variant
] |= RR_HAS_PREIMAGE
;
791 fprintf_ln(stderr
, _("Recorded preimage for '%s'"), path
);
794 static int do_plain_rerere(struct repository
*r
,
795 struct string_list
*rr
, int fd
)
797 struct string_list conflict
= STRING_LIST_INIT_DUP
;
798 struct string_list update
= STRING_LIST_INIT_DUP
;
801 find_conflict(r
, &conflict
);
804 * MERGE_RR records paths with conflicts immediately after
805 * merge failed. Some of the conflicted paths might have been
806 * hand resolved in the working tree since then, but the
807 * initial run would catch all and register their preimages.
809 for (i
= 0; i
< conflict
.nr
; i
++) {
810 struct rerere_id
*id
;
811 unsigned char hash
[GIT_MAX_RAWSZ
];
812 const char *path
= conflict
.items
[i
].string
;
816 * Ask handle_file() to scan and assign a
817 * conflict ID. No need to write anything out
820 ret
= handle_file(r
->index
, path
, hash
, NULL
);
821 if (ret
!= 0 && string_list_has_string(rr
, path
)) {
822 remove_variant(string_list_lookup(rr
, path
)->util
);
823 string_list_remove(rr
, path
, 1);
828 id
= new_rerere_id(hash
);
829 string_list_insert(rr
, path
)->util
= id
;
831 /* Ensure that the directory exists. */
832 mkdir_in_gitdir(rerere_path(id
, NULL
));
835 for (i
= 0; i
< rr
->nr
; i
++)
836 do_rerere_one_path(r
->index
, &rr
->items
[i
], &update
);
839 update_paths(r
, &update
);
841 return write_rr(rr
, fd
);
844 static void git_rerere_config(void)
846 git_config_get_bool("rerere.enabled", &rerere_enabled
);
847 git_config_get_bool("rerere.autoupdate", &rerere_autoupdate
);
848 git_config(git_default_config
, NULL
);
851 static GIT_PATH_FUNC(git_path_rr_cache
, "rr-cache")
853 static int is_rerere_enabled(void)
860 rr_cache_exists
= is_directory(git_path_rr_cache());
861 if (rerere_enabled
< 0)
862 return rr_cache_exists
;
864 if (!rr_cache_exists
&& mkdir_in_gitdir(git_path_rr_cache()))
865 die(_("could not create directory '%s'"), git_path_rr_cache());
869 int setup_rerere(struct repository
*r
, struct string_list
*merge_rr
, int flags
)
874 if (!is_rerere_enabled())
877 if (flags
& (RERERE_AUTOUPDATE
|RERERE_NOAUTOUPDATE
))
878 rerere_autoupdate
= !!(flags
& RERERE_AUTOUPDATE
);
879 if (flags
& RERERE_READONLY
)
882 fd
= hold_lock_file_for_update(&write_lock
,
883 git_path_merge_rr(r
),
885 read_rr(r
, merge_rr
);
890 * The main entry point that is called internally from codepaths that
891 * perform mergy operations, possibly leaving conflicted index entries
892 * and working tree files.
894 int repo_rerere(struct repository
*r
, int flags
)
896 struct string_list merge_rr
= STRING_LIST_INIT_DUP
;
899 fd
= setup_rerere(r
, &merge_rr
, flags
);
902 status
= do_plain_rerere(r
, &merge_rr
, fd
);
908 * Subclass of rerere_io that reads from an in-core buffer that is a
911 struct rerere_io_mem
{
917 * ... and its getline() method implementation
919 static int rerere_mem_getline(struct strbuf
*sb
, struct rerere_io
*io_
)
921 struct rerere_io_mem
*io
= (struct rerere_io_mem
*)io_
;
928 ep
= memchr(io
->input
.buf
, '\n', io
->input
.len
);
930 ep
= io
->input
.buf
+ io
->input
.len
;
931 else if (*ep
== '\n')
933 len
= ep
- io
->input
.buf
;
934 strbuf_add(sb
, io
->input
.buf
, len
);
935 strbuf_remove(&io
->input
, 0, len
);
939 static int handle_cache(struct index_state
*istate
,
940 const char *path
, unsigned char *hash
, const char *output
)
942 mmfile_t mmfile
[3] = {{NULL
}};
943 mmbuffer_t result
= {NULL
, 0};
944 const struct cache_entry
*ce
;
945 int pos
, len
, i
, has_conflicts
;
946 struct rerere_io_mem io
;
947 int marker_size
= ll_merge_marker_size(istate
, path
);
950 * Reproduce the conflicted merge in-core
953 pos
= index_name_pos(istate
, path
, len
);
958 while (pos
< istate
->cache_nr
) {
959 enum object_type type
;
962 ce
= istate
->cache
[pos
++];
963 if (ce_namelen(ce
) != len
|| memcmp(ce
->name
, path
, len
))
965 i
= ce_stage(ce
) - 1;
966 if (!mmfile
[i
].ptr
) {
967 mmfile
[i
].ptr
= read_object_file(&ce
->oid
, &type
,
969 mmfile
[i
].size
= size
;
972 for (i
= 0; i
< 3; i
++)
973 if (!mmfile
[i
].ptr
&& !mmfile
[i
].size
)
974 mmfile
[i
].ptr
= xstrdup("");
977 * NEEDSWORK: handle conflicts from merges with
978 * merge.renormalize set, too?
980 ll_merge(&result
, path
, &mmfile
[0], NULL
,
982 &mmfile
[2], "theirs",
984 for (i
= 0; i
< 3; i
++)
987 memset(&io
, 0, sizeof(io
));
988 io
.io
.getline
= rerere_mem_getline
;
990 io
.io
.output
= fopen(output
, "w");
993 strbuf_init(&io
.input
, 0);
994 strbuf_attach(&io
.input
, result
.ptr
, result
.size
, result
.size
);
997 * Grab the conflict ID and optionally write the original
998 * contents with conflict markers out.
1000 has_conflicts
= handle_path(hash
, (struct rerere_io
*)&io
, marker_size
);
1001 strbuf_release(&io
.input
);
1003 fclose(io
.io
.output
);
1004 return has_conflicts
;
1007 static int rerere_forget_one_path(struct index_state
*istate
,
1009 struct string_list
*rr
)
1011 const char *filename
;
1012 struct rerere_id
*id
;
1013 unsigned char hash
[GIT_MAX_RAWSZ
];
1015 struct string_list_item
*item
;
1018 * Recreate the original conflict from the stages in the
1019 * index and compute the conflict ID
1021 ret
= handle_cache(istate
, path
, hash
, NULL
);
1023 return error(_("could not parse conflict hunks in '%s'"), path
);
1025 /* Nuke the recorded resolution for the conflict */
1026 id
= new_rerere_id(hash
);
1028 for (id
->variant
= 0;
1029 id
->variant
< id
->collection
->status_nr
;
1031 mmfile_t cur
= { NULL
, 0 };
1032 mmbuffer_t result
= {NULL
, 0};
1033 int cleanly_resolved
;
1035 if (!has_rerere_resolution(id
))
1038 handle_cache(istate
, path
, hash
, rerere_path(id
, "thisimage"));
1039 if (read_mmfile(&cur
, rerere_path(id
, "thisimage"))) {
1041 error(_("failed to update conflicted state in '%s'"), path
);
1044 cleanly_resolved
= !try_merge(istate
, id
, path
, &cur
, &result
);
1047 if (cleanly_resolved
)
1051 if (id
->collection
->status_nr
<= id
->variant
) {
1052 error(_("no remembered resolution for '%s'"), path
);
1056 filename
= rerere_path(id
, "postimage");
1057 if (unlink(filename
)) {
1058 if (errno
== ENOENT
)
1059 error(_("no remembered resolution for '%s'"), path
);
1061 error_errno(_("cannot unlink '%s'"), filename
);
1066 * Update the preimage so that the user can resolve the
1067 * conflict in the working tree, run us again to record
1070 handle_cache(istate
, path
, hash
, rerere_path(id
, "preimage"));
1071 fprintf_ln(stderr
, _("Updated preimage for '%s'"), path
);
1074 * And remember that we can record resolution for this
1075 * conflict when the user is done.
1077 item
= string_list_insert(rr
, path
);
1078 free_rerere_id(item
);
1080 fprintf(stderr
, _("Forgot resolution for '%s'\n"), path
);
1088 int rerere_forget(struct repository
*r
, struct pathspec
*pathspec
)
1091 struct string_list conflict
= STRING_LIST_INIT_DUP
;
1092 struct string_list merge_rr
= STRING_LIST_INIT_DUP
;
1094 if (repo_read_index(r
) < 0)
1095 return error(_("index file corrupt"));
1097 fd
= setup_rerere(r
, &merge_rr
, RERERE_NOAUTOUPDATE
);
1102 * The paths may have been resolved (incorrectly);
1103 * recover the original conflicted state and then
1104 * find the conflicted paths.
1106 unmerge_index(r
->index
, pathspec
);
1107 find_conflict(r
, &conflict
);
1108 for (i
= 0; i
< conflict
.nr
; i
++) {
1109 struct string_list_item
*it
= &conflict
.items
[i
];
1110 if (!match_pathspec(r
->index
, pathspec
, it
->string
,
1111 strlen(it
->string
), 0, NULL
, 0))
1113 rerere_forget_one_path(r
->index
, it
->string
, &merge_rr
);
1115 return write_rr(&merge_rr
, fd
);
1119 * Garbage collection support
1122 static timestamp_t
rerere_created_at(struct rerere_id
*id
)
1126 return stat(rerere_path(id
, "preimage"), &st
) ? (time_t) 0 : st
.st_mtime
;
1129 static timestamp_t
rerere_last_used_at(struct rerere_id
*id
)
1133 return stat(rerere_path(id
, "postimage"), &st
) ? (time_t) 0 : st
.st_mtime
;
1137 * Remove the recorded resolution for a given conflict ID
1139 static void unlink_rr_item(struct rerere_id
*id
)
1141 unlink_or_warn(rerere_path(id
, "thisimage"));
1143 id
->collection
->status
[id
->variant
] = 0;
1146 static void prune_one(struct rerere_id
*id
,
1147 timestamp_t cutoff_resolve
, timestamp_t cutoff_noresolve
)
1152 then
= rerere_last_used_at(id
);
1154 cutoff
= cutoff_resolve
;
1156 then
= rerere_created_at(id
);
1159 cutoff
= cutoff_noresolve
;
1165 /* Does the basename in "path" look plausibly like an rr-cache entry? */
1166 static int is_rr_cache_dirname(const char *path
)
1168 struct object_id oid
;
1170 return !parse_oid_hex(path
, &oid
, &end
) && !*end
;
1173 void rerere_gc(struct repository
*r
, struct string_list
*rr
)
1175 struct string_list to_remove
= STRING_LIST_INIT_DUP
;
1179 timestamp_t now
= time(NULL
);
1180 timestamp_t cutoff_noresolve
= now
- 15 * 86400;
1181 timestamp_t cutoff_resolve
= now
- 60 * 86400;
1183 if (setup_rerere(r
, rr
, 0) < 0)
1186 git_config_get_expiry_in_days("gc.rerereresolved", &cutoff_resolve
, now
);
1187 git_config_get_expiry_in_days("gc.rerereunresolved", &cutoff_noresolve
, now
);
1188 git_config(git_default_config
, NULL
);
1189 dir
= opendir(git_path("rr-cache"));
1191 die_errno(_("unable to open rr-cache directory"));
1192 /* Collect stale conflict IDs ... */
1193 while ((e
= readdir_skip_dot_and_dotdot(dir
))) {
1194 struct rerere_dir
*rr_dir
;
1195 struct rerere_id id
;
1198 if (!is_rr_cache_dirname(e
->d_name
))
1199 continue; /* or should we remove e->d_name? */
1201 rr_dir
= find_rerere_dir(e
->d_name
);
1204 for (id
.variant
= 0, id
.collection
= rr_dir
;
1205 id
.variant
< id
.collection
->status_nr
;
1207 prune_one(&id
, cutoff_resolve
, cutoff_noresolve
);
1208 if (id
.collection
->status
[id
.variant
])
1212 string_list_append(&to_remove
, e
->d_name
);
1216 /* ... and then remove the empty directories */
1217 for (i
= 0; i
< to_remove
.nr
; i
++)
1218 rmdir(git_path("rr-cache/%s", to_remove
.items
[i
].string
));
1219 string_list_clear(&to_remove
, 0);
1220 rollback_lock_file(&write_lock
);
1224 * During a conflict resolution, after "rerere" recorded the
1225 * preimages, abandon them if the user did not resolve them or
1226 * record their resolutions. And drop $GIT_DIR/MERGE_RR.
1228 * NEEDSWORK: shouldn't we be calling this from "reset --hard"?
1230 void rerere_clear(struct repository
*r
, struct string_list
*merge_rr
)
1234 if (setup_rerere(r
, merge_rr
, 0) < 0)
1237 for (i
= 0; i
< merge_rr
->nr
; i
++) {
1238 struct rerere_id
*id
= merge_rr
->items
[i
].util
;
1239 if (!has_rerere_resolution(id
)) {
1241 rmdir(rerere_path(id
, NULL
));
1244 unlink_or_warn(git_path_merge_rr(r
));
1245 rollback_lock_file(&write_lock
);