1 #include "git-compat-util.h"
8 #include "string-list.h"
9 #include "read-cache-ll.h"
11 #include "xdiff-interface.h"
13 #include "resolve-undo.h"
17 #include "object-file.h"
18 #include "object-store-ll.h"
23 #define THREE_STAGED 2
24 void *RERERE_RESOLVED
= &RERERE_RESOLVED
;
26 /* if rerere_enabled == -1, fall back to detection of .git/rr-cache */
27 static int rerere_enabled
= -1;
29 /* automatically update cleanly resolved paths to the index */
30 static int rerere_autoupdate
;
32 #define RR_HAS_POSTIMAGE 1
33 #define RR_HAS_PREIMAGE 2
35 int status_alloc
, status_nr
;
36 unsigned char *status
;
37 char name
[FLEX_ARRAY
];
40 static struct strmap rerere_dirs
= STRMAP_INIT
;
42 static void free_rerere_dirs(void)
44 struct hashmap_iter iter
;
45 struct strmap_entry
*ent
;
47 strmap_for_each_entry(&rerere_dirs
, &iter
, ent
) {
48 struct rerere_dir
*rr_dir
= ent
->value
;
52 strmap_clear(&rerere_dirs
, 0);
55 static void free_rerere_id(struct string_list_item
*item
)
60 static const char *rerere_id_hex(const struct rerere_id
*id
)
62 return id
->collection
->name
;
65 static void fit_variant(struct rerere_dir
*rr_dir
, int variant
)
68 ALLOC_GROW(rr_dir
->status
, variant
, rr_dir
->status_alloc
);
69 if (rr_dir
->status_nr
< variant
) {
70 memset(rr_dir
->status
+ rr_dir
->status_nr
,
71 '\0', variant
- rr_dir
->status_nr
);
72 rr_dir
->status_nr
= variant
;
76 static void assign_variant(struct rerere_id
*id
)
79 struct rerere_dir
*rr_dir
= id
->collection
;
81 variant
= id
->variant
;
83 for (variant
= 0; variant
< rr_dir
->status_nr
; variant
++)
84 if (!rr_dir
->status
[variant
])
87 fit_variant(rr_dir
, variant
);
88 id
->variant
= variant
;
91 const char *rerere_path(const struct rerere_id
*id
, const char *file
)
94 return git_path("rr-cache/%s", rerere_id_hex(id
));
97 return git_path("rr-cache/%s/%s", rerere_id_hex(id
), file
);
99 return git_path("rr-cache/%s/%s.%d",
100 rerere_id_hex(id
), file
, id
->variant
);
103 static int is_rr_file(const char *name
, const char *filename
, int *variant
)
108 if (!strcmp(name
, filename
)) {
112 if (!skip_prefix(name
, filename
, &suffix
) || *suffix
!= '.')
116 *variant
= strtol(suffix
+ 1, &ep
, 10);
122 static void scan_rerere_dir(struct rerere_dir
*rr_dir
)
125 DIR *dir
= opendir(git_path("rr-cache/%s", rr_dir
->name
));
129 while ((de
= readdir(dir
)) != NULL
) {
132 if (is_rr_file(de
->d_name
, "postimage", &variant
)) {
133 fit_variant(rr_dir
, variant
);
134 rr_dir
->status
[variant
] |= RR_HAS_POSTIMAGE
;
135 } else if (is_rr_file(de
->d_name
, "preimage", &variant
)) {
136 fit_variant(rr_dir
, variant
);
137 rr_dir
->status
[variant
] |= RR_HAS_PREIMAGE
;
143 static struct rerere_dir
*find_rerere_dir(const char *hex
)
145 struct rerere_dir
*rr_dir
;
147 rr_dir
= strmap_get(&rerere_dirs
, hex
);
149 FLEX_ALLOC_STR(rr_dir
, name
, hex
);
150 rr_dir
->status
= NULL
;
151 rr_dir
->status_nr
= 0;
152 rr_dir
->status_alloc
= 0;
153 strmap_put(&rerere_dirs
, hex
, rr_dir
);
155 scan_rerere_dir(rr_dir
);
160 static int has_rerere_resolution(const struct rerere_id
*id
)
162 const int both
= RR_HAS_POSTIMAGE
|RR_HAS_PREIMAGE
;
163 int variant
= id
->variant
;
167 return ((id
->collection
->status
[variant
] & both
) == both
);
170 static struct rerere_id
*new_rerere_id_hex(char *hex
)
172 struct rerere_id
*id
= xmalloc(sizeof(*id
));
173 id
->collection
= find_rerere_dir(hex
);
174 id
->variant
= -1; /* not known yet */
178 static struct rerere_id
*new_rerere_id(unsigned char *hash
)
180 return new_rerere_id_hex(hash_to_hex(hash
));
184 * $GIT_DIR/MERGE_RR file is a collection of records, each of which is
185 * "conflict ID", a HT and pathname, terminated with a NUL, and is
186 * used to keep track of the set of paths that "rerere" may need to
187 * work on (i.e. what is left by the previous invocation of "git
188 * rerere" during the current conflict resolution session).
190 static void read_rr(struct repository
*r
, struct string_list
*rr
)
192 struct strbuf buf
= STRBUF_INIT
;
193 FILE *in
= fopen_or_warn(git_path_merge_rr(r
), "r");
197 while (!strbuf_getwholeline(&buf
, in
, '\0')) {
199 unsigned char hash
[GIT_MAX_RAWSZ
];
200 struct rerere_id
*id
;
202 const unsigned hexsz
= the_hash_algo
->hexsz
;
204 /* There has to be the hash, tab, path and then NUL */
205 if (buf
.len
< hexsz
+ 2 || get_hash_hex(buf
.buf
, hash
))
206 die(_("corrupt MERGE_RR"));
208 if (buf
.buf
[hexsz
] != '.') {
210 path
= buf
.buf
+ hexsz
;
213 variant
= strtol(buf
.buf
+ hexsz
+ 1, &path
, 10);
215 die(_("corrupt MERGE_RR"));
217 if (*(path
++) != '\t')
218 die(_("corrupt MERGE_RR"));
219 buf
.buf
[hexsz
] = '\0';
220 id
= new_rerere_id_hex(buf
.buf
);
221 id
->variant
= variant
;
222 string_list_insert(rr
, path
)->util
= id
;
224 strbuf_release(&buf
);
228 static struct lock_file write_lock
;
230 static int write_rr(struct string_list
*rr
, int out_fd
)
233 for (i
= 0; i
< rr
->nr
; i
++) {
234 struct strbuf buf
= STRBUF_INIT
;
235 struct rerere_id
*id
;
237 assert(rr
->items
[i
].util
!= RERERE_RESOLVED
);
239 id
= rr
->items
[i
].util
;
242 assert(id
->variant
>= 0);
244 strbuf_addf(&buf
, "%s.%d\t%s%c",
245 rerere_id_hex(id
), id
->variant
,
246 rr
->items
[i
].string
, 0);
248 strbuf_addf(&buf
, "%s\t%s%c",
250 rr
->items
[i
].string
, 0);
252 if (write_in_full(out_fd
, buf
.buf
, buf
.len
) < 0)
253 die(_("unable to write rerere record"));
255 strbuf_release(&buf
);
257 if (commit_lock_file(&write_lock
) != 0)
258 die(_("unable to write rerere record"));
263 * "rerere" interacts with conflicted file contents using this I/O
264 * abstraction. It reads a conflicted contents from one place via
265 * "getline()" method, and optionally can write it out after
266 * normalizing the conflicted hunks to the "output". Subclasses of
267 * rerere_io embed this structure at the beginning of their own
271 int (*getline
)(struct strbuf
*, struct rerere_io
*);
274 /* some more stuff */
277 static void ferr_write(const void *p
, size_t count
, FILE *fp
, int *err
)
281 if (fwrite(p
, count
, 1, fp
) != 1)
285 static inline void ferr_puts(const char *s
, FILE *fp
, int *err
)
287 ferr_write(s
, strlen(s
), fp
, err
);
290 static void rerere_io_putstr(const char *str
, struct rerere_io
*io
)
293 ferr_puts(str
, io
->output
, &io
->wrerror
);
296 static void rerere_io_putmem(const char *mem
, size_t sz
, struct rerere_io
*io
)
299 ferr_write(mem
, sz
, io
->output
, &io
->wrerror
);
303 * Subclass of rerere_io that reads from an on-disk file
305 struct rerere_io_file
{
311 * ... and its getline() method implementation
313 static int rerere_file_getline(struct strbuf
*sb
, struct rerere_io
*io_
)
315 struct rerere_io_file
*io
= (struct rerere_io_file
*)io_
;
316 return strbuf_getwholeline(sb
, io
->input
, '\n');
320 * Require the exact number of conflict marker letters, no more, no
321 * less, followed by SP or any whitespace
324 static int is_cmarker(char *buf
, int marker_char
, int marker_size
)
329 * The beginning of our version and the end of their version
330 * always are labeled like "<<<<< ours" or ">>>>> theirs",
331 * hence we set want_sp for them. Note that the version from
332 * the common ancestor in diff3-style output is not always
333 * labelled (e.g. "||||| common" is often seen but "|||||"
334 * alone is also valid), so we do not set want_sp.
336 want_sp
= (marker_char
== '<') || (marker_char
== '>');
338 while (marker_size
--)
339 if (*buf
++ != marker_char
)
341 if (want_sp
&& *buf
!= ' ')
343 return isspace(*buf
);
346 static void rerere_strbuf_putconflict(struct strbuf
*buf
, int ch
, size_t size
)
348 strbuf_addchars(buf
, ch
, size
);
349 strbuf_addch(buf
, '\n');
352 static int handle_conflict(struct strbuf
*out
, struct rerere_io
*io
,
353 int marker_size
, git_hash_ctx
*ctx
)
356 RR_SIDE_1
= 0, RR_SIDE_2
, RR_ORIGINAL
358 struct strbuf one
= STRBUF_INIT
, two
= STRBUF_INIT
;
359 struct strbuf buf
= STRBUF_INIT
, conflict
= STRBUF_INIT
;
360 int has_conflicts
= -1;
362 while (!io
->getline(&buf
, io
)) {
363 if (is_cmarker(buf
.buf
, '<', marker_size
)) {
364 if (handle_conflict(&conflict
, io
, marker_size
, NULL
) < 0)
366 if (hunk
== RR_SIDE_1
)
367 strbuf_addbuf(&one
, &conflict
);
369 strbuf_addbuf(&two
, &conflict
);
370 strbuf_release(&conflict
);
371 } else if (is_cmarker(buf
.buf
, '|', marker_size
)) {
372 if (hunk
!= RR_SIDE_1
)
375 } else if (is_cmarker(buf
.buf
, '=', marker_size
)) {
376 if (hunk
!= RR_SIDE_1
&& hunk
!= RR_ORIGINAL
)
379 } else if (is_cmarker(buf
.buf
, '>', marker_size
)) {
380 if (hunk
!= RR_SIDE_2
)
382 if (strbuf_cmp(&one
, &two
) > 0)
383 strbuf_swap(&one
, &two
);
385 rerere_strbuf_putconflict(out
, '<', marker_size
);
386 strbuf_addbuf(out
, &one
);
387 rerere_strbuf_putconflict(out
, '=', marker_size
);
388 strbuf_addbuf(out
, &two
);
389 rerere_strbuf_putconflict(out
, '>', marker_size
);
391 the_hash_algo
->update_fn(ctx
, one
.buf
?
394 the_hash_algo
->update_fn(ctx
, two
.buf
?
399 } else if (hunk
== RR_SIDE_1
)
400 strbuf_addbuf(&one
, &buf
);
401 else if (hunk
== RR_ORIGINAL
)
403 else if (hunk
== RR_SIDE_2
)
404 strbuf_addbuf(&two
, &buf
);
406 strbuf_release(&one
);
407 strbuf_release(&two
);
408 strbuf_release(&buf
);
410 return has_conflicts
;
414 * Read contents a file with conflicts, normalize the conflicts
415 * by (1) discarding the common ancestor version in diff3-style,
416 * (2) reordering our side and their side so that whichever sorts
417 * alphabetically earlier comes before the other one, while
418 * computing the "conflict ID", which is just an SHA-1 hash of
419 * one side of the conflict, NUL, the other side of the conflict,
420 * and NUL concatenated together.
422 * Return 1 if conflict hunks are found, 0 if there are no conflict
423 * hunks and -1 if an error occurred.
425 static int handle_path(unsigned char *hash
, struct rerere_io
*io
, int marker_size
)
428 struct strbuf buf
= STRBUF_INIT
, out
= STRBUF_INIT
;
429 int has_conflicts
= 0;
431 the_hash_algo
->init_fn(&ctx
);
433 while (!io
->getline(&buf
, io
)) {
434 if (is_cmarker(buf
.buf
, '<', marker_size
)) {
435 has_conflicts
= handle_conflict(&out
, io
, marker_size
,
437 if (has_conflicts
< 0)
439 rerere_io_putmem(out
.buf
, out
.len
, io
);
442 rerere_io_putstr(buf
.buf
, io
);
444 strbuf_release(&buf
);
445 strbuf_release(&out
);
448 the_hash_algo
->final_fn(hash
, &ctx
);
450 return has_conflicts
;
454 * Scan the path for conflicts, do the "handle_path()" thing above, and
455 * return the number of conflict hunks found.
457 static int handle_file(struct index_state
*istate
,
458 const char *path
, unsigned char *hash
, const char *output
)
460 int has_conflicts
= 0;
461 struct rerere_io_file io
;
462 int marker_size
= ll_merge_marker_size(istate
, path
);
464 memset(&io
, 0, sizeof(io
));
465 io
.io
.getline
= rerere_file_getline
;
466 io
.input
= fopen(path
, "r");
469 return error_errno(_("could not open '%s'"), path
);
472 io
.io
.output
= fopen(output
, "w");
474 error_errno(_("could not write '%s'"), output
);
480 has_conflicts
= handle_path(hash
, (struct rerere_io
*)&io
, marker_size
);
484 error(_("there were errors while writing '%s' (%s)"),
485 path
, strerror(io
.io
.wrerror
));
486 if (io
.io
.output
&& fclose(io
.io
.output
))
487 io
.io
.wrerror
= error_errno(_("failed to flush '%s'"), path
);
489 if (has_conflicts
< 0) {
491 unlink_or_warn(output
);
492 return error(_("could not parse conflict hunks in '%s'"), path
);
496 return has_conflicts
;
500 * Look at a cache entry at "i" and see if it is not conflicting,
501 * conflicting and we are willing to handle, or conflicting and
502 * we are unable to handle, and return the determination in *type.
503 * Return the cache index to be looked at next, by skipping the
504 * stages we have already looked at in this invocation of this
507 static int check_one_conflict(struct index_state
*istate
, int i
, int *type
)
509 const struct cache_entry
*e
= istate
->cache
[i
];
517 while (i
< istate
->cache_nr
&& ce_stage(istate
->cache
[i
]) == 1)
520 /* Only handle regular files with both stages #2 and #3 */
521 if (i
+ 1 < istate
->cache_nr
) {
522 const struct cache_entry
*e2
= istate
->cache
[i
];
523 const struct cache_entry
*e3
= istate
->cache
[i
+ 1];
524 if (ce_stage(e2
) == 2 &&
526 ce_same_name(e
, e3
) &&
527 S_ISREG(e2
->ce_mode
) &&
528 S_ISREG(e3
->ce_mode
))
529 *type
= THREE_STAGED
;
532 /* Skip the entries with the same name */
533 while (i
< istate
->cache_nr
&& ce_same_name(e
, istate
->cache
[i
]))
539 * Scan the index and find paths that have conflicts that rerere can
540 * handle, i.e. the ones that has both stages #2 and #3.
542 * NEEDSWORK: we do not record or replay a previous "resolve by
543 * deletion" for a delete-modify conflict, as that is inherently risky
544 * without knowing what modification is being discarded. The only
545 * safe case, i.e. both side doing the deletion and modification that
546 * are identical to the previous round, might want to be handled,
549 static int find_conflict(struct repository
*r
, struct string_list
*conflict
)
553 if (repo_read_index(r
) < 0)
554 return error(_("index file corrupt"));
556 for (i
= 0; i
< r
->index
->cache_nr
;) {
558 const struct cache_entry
*e
= r
->index
->cache
[i
];
559 i
= check_one_conflict(r
->index
, i
, &conflict_type
);
560 if (conflict_type
== THREE_STAGED
)
561 string_list_insert(conflict
, (const char *)e
->name
);
567 * The merge_rr list is meant to hold outstanding conflicted paths
568 * that rerere could handle. Abuse the list by adding other types of
569 * entries to allow the caller to show "rerere remaining".
571 * - Conflicted paths that rerere does not handle are added
572 * - Conflicted paths that have been resolved are marked as such
573 * by storing RERERE_RESOLVED to .util field (where conflict ID
574 * is expected to be stored).
576 * Do *not* write MERGE_RR file out after calling this function.
578 * NEEDSWORK: we may want to fix the caller that implements "rerere
579 * remaining" to do this without abusing merge_rr.
581 int rerere_remaining(struct repository
*r
, struct string_list
*merge_rr
)
585 if (setup_rerere(r
, merge_rr
, RERERE_READONLY
))
587 if (repo_read_index(r
) < 0)
588 return error(_("index file corrupt"));
590 for (i
= 0; i
< r
->index
->cache_nr
;) {
592 const struct cache_entry
*e
= r
->index
->cache
[i
];
593 i
= check_one_conflict(r
->index
, i
, &conflict_type
);
594 if (conflict_type
== PUNTED
)
595 string_list_insert(merge_rr
, (const char *)e
->name
);
596 else if (conflict_type
== RESOLVED
) {
597 struct string_list_item
*it
;
598 it
= string_list_lookup(merge_rr
, (const char *)e
->name
);
601 it
->util
= RERERE_RESOLVED
;
609 * Try using the given conflict resolution "ID" to see
610 * if that recorded conflict resolves cleanly what we
613 static int try_merge(struct index_state
*istate
,
614 const struct rerere_id
*id
, const char *path
,
615 mmfile_t
*cur
, mmbuffer_t
*result
)
617 enum ll_merge_result ret
;
618 mmfile_t base
= {NULL
, 0}, other
= {NULL
, 0};
620 if (read_mmfile(&base
, rerere_path(id
, "preimage")) ||
621 read_mmfile(&other
, rerere_path(id
, "postimage"))) {
622 ret
= LL_MERGE_CONFLICT
;
625 * A three-way merge. Note that this honors user-customizable
626 * low-level merge driver settings.
628 ret
= ll_merge(result
, path
, &base
, NULL
, cur
, "", &other
, "",
639 * Find the conflict identified by "id"; the change between its
640 * "preimage" (i.e. a previous contents with conflict markers) and its
641 * "postimage" (i.e. the corresponding contents with conflicts
642 * resolved) may apply cleanly to the contents stored in "path", i.e.
643 * the conflict this time around.
645 * Returns 0 for successful replay of recorded resolution, or non-zero
648 static int merge(struct index_state
*istate
, const struct rerere_id
*id
, const char *path
)
652 mmfile_t cur
= {NULL
, 0};
653 mmbuffer_t result
= {NULL
, 0};
656 * Normalize the conflicts in path and write it out to
657 * "thisimage" temporary file.
659 if ((handle_file(istate
, path
, NULL
, rerere_path(id
, "thisimage")) < 0) ||
660 read_mmfile(&cur
, rerere_path(id
, "thisimage"))) {
665 ret
= try_merge(istate
, id
, path
, &cur
, &result
);
670 * A successful replay of recorded resolution.
671 * Mark that "postimage" was used to help gc.
673 if (utime(rerere_path(id
, "postimage"), NULL
) < 0)
674 warning_errno(_("failed utime() on '%s'"),
675 rerere_path(id
, "postimage"));
677 /* Update "path" with the resolution */
678 f
= fopen(path
, "w");
680 return error_errno(_("could not open '%s'"), path
);
681 if (fwrite(result
.ptr
, result
.size
, 1, f
) != 1)
682 error_errno(_("could not write '%s'"), path
);
684 return error_errno(_("writing '%s' failed"), path
);
693 static void update_paths(struct repository
*r
, struct string_list
*update
)
695 struct lock_file index_lock
= LOCK_INIT
;
698 repo_hold_locked_index(r
, &index_lock
, LOCK_DIE_ON_ERROR
);
700 for (i
= 0; i
< update
->nr
; i
++) {
701 struct string_list_item
*item
= &update
->items
[i
];
702 if (add_file_to_index(r
->index
, item
->string
, 0))
704 fprintf_ln(stderr
, _("Staged '%s' using previous resolution."),
708 if (write_locked_index(r
->index
, &index_lock
,
709 COMMIT_LOCK
| SKIP_IF_UNCHANGED
))
710 die(_("unable to write new index file"));
713 static void remove_variant(struct rerere_id
*id
)
715 unlink_or_warn(rerere_path(id
, "postimage"));
716 unlink_or_warn(rerere_path(id
, "preimage"));
717 id
->collection
->status
[id
->variant
] = 0;
721 * The path indicated by rr_item may still have conflict for which we
722 * have a recorded resolution, in which case replay it and optionally
723 * update it. Or it may have been resolved by the user and we may
724 * only have the preimage for that conflict, in which case the result
725 * needs to be recorded as a resolution in a postimage file.
727 static void do_rerere_one_path(struct index_state
*istate
,
728 struct string_list_item
*rr_item
,
729 struct string_list
*update
)
731 const char *path
= rr_item
->string
;
732 struct rerere_id
*id
= rr_item
->util
;
733 struct rerere_dir
*rr_dir
= id
->collection
;
736 variant
= id
->variant
;
738 /* Has the user resolved it already? */
740 if (!handle_file(istate
, path
, NULL
, NULL
)) {
741 copy_file(rerere_path(id
, "postimage"), path
, 0666);
742 id
->collection
->status
[variant
] |= RR_HAS_POSTIMAGE
;
743 fprintf_ln(stderr
, _("Recorded resolution for '%s'."), path
);
744 free_rerere_id(rr_item
);
745 rr_item
->util
= NULL
;
749 * There may be other variants that can cleanly
750 * replay. Try them and update the variant number for
755 /* Does any existing resolution apply cleanly? */
756 for (variant
= 0; variant
< rr_dir
->status_nr
; variant
++) {
757 const int both
= RR_HAS_PREIMAGE
| RR_HAS_POSTIMAGE
;
758 struct rerere_id vid
= *id
;
760 if ((rr_dir
->status
[variant
] & both
) != both
)
763 vid
.variant
= variant
;
764 if (merge(istate
, &vid
, path
))
765 continue; /* failed to replay */
768 * If there already is a different variant that applies
769 * cleanly, there is no point maintaining our own variant.
771 if (0 <= id
->variant
&& id
->variant
!= variant
)
774 if (rerere_autoupdate
)
775 string_list_insert(update
, path
);
778 _("Resolved '%s' using previous resolution."),
780 free_rerere_id(rr_item
);
781 rr_item
->util
= NULL
;
785 /* None of the existing one applies; we need a new variant */
788 variant
= id
->variant
;
789 handle_file(istate
, path
, NULL
, rerere_path(id
, "preimage"));
790 if (id
->collection
->status
[variant
] & RR_HAS_POSTIMAGE
) {
791 const char *path
= rerere_path(id
, "postimage");
793 die_errno(_("cannot unlink stray '%s'"), path
);
794 id
->collection
->status
[variant
] &= ~RR_HAS_POSTIMAGE
;
796 id
->collection
->status
[variant
] |= RR_HAS_PREIMAGE
;
797 fprintf_ln(stderr
, _("Recorded preimage for '%s'"), path
);
800 static int do_plain_rerere(struct repository
*r
,
801 struct string_list
*rr
, int fd
)
803 struct string_list conflict
= STRING_LIST_INIT_DUP
;
804 struct string_list update
= STRING_LIST_INIT_DUP
;
807 find_conflict(r
, &conflict
);
810 * MERGE_RR records paths with conflicts immediately after
811 * merge failed. Some of the conflicted paths might have been
812 * hand resolved in the working tree since then, but the
813 * initial run would catch all and register their preimages.
815 for (i
= 0; i
< conflict
.nr
; i
++) {
816 struct rerere_id
*id
;
817 unsigned char hash
[GIT_MAX_RAWSZ
];
818 const char *path
= conflict
.items
[i
].string
;
822 * Ask handle_file() to scan and assign a
823 * conflict ID. No need to write anything out
826 ret
= handle_file(r
->index
, path
, hash
, NULL
);
827 if (ret
!= 0 && string_list_has_string(rr
, path
)) {
828 remove_variant(string_list_lookup(rr
, path
)->util
);
829 string_list_remove(rr
, path
, 1);
834 id
= new_rerere_id(hash
);
835 string_list_insert(rr
, path
)->util
= id
;
837 /* Ensure that the directory exists. */
838 mkdir_in_gitdir(rerere_path(id
, NULL
));
841 for (i
= 0; i
< rr
->nr
; i
++)
842 do_rerere_one_path(r
->index
, &rr
->items
[i
], &update
);
845 update_paths(r
, &update
);
847 return write_rr(rr
, fd
);
850 static void git_rerere_config(void)
852 git_config_get_bool("rerere.enabled", &rerere_enabled
);
853 git_config_get_bool("rerere.autoupdate", &rerere_autoupdate
);
854 git_config(git_default_config
, NULL
);
857 static GIT_PATH_FUNC(git_path_rr_cache
, "rr-cache")
859 static int is_rerere_enabled(void)
866 rr_cache_exists
= is_directory(git_path_rr_cache());
867 if (rerere_enabled
< 0)
868 return rr_cache_exists
;
870 if (!rr_cache_exists
&& mkdir_in_gitdir(git_path_rr_cache()))
871 die(_("could not create directory '%s'"), git_path_rr_cache());
875 int setup_rerere(struct repository
*r
, struct string_list
*merge_rr
, int flags
)
880 if (!is_rerere_enabled())
883 if (flags
& (RERERE_AUTOUPDATE
|RERERE_NOAUTOUPDATE
))
884 rerere_autoupdate
= !!(flags
& RERERE_AUTOUPDATE
);
885 if (flags
& RERERE_READONLY
)
888 fd
= hold_lock_file_for_update(&write_lock
,
889 git_path_merge_rr(r
),
891 read_rr(r
, merge_rr
);
896 * The main entry point that is called internally from codepaths that
897 * perform mergy operations, possibly leaving conflicted index entries
898 * and working tree files.
900 int repo_rerere(struct repository
*r
, int flags
)
902 struct string_list merge_rr
= STRING_LIST_INIT_DUP
;
905 fd
= setup_rerere(r
, &merge_rr
, flags
);
908 status
= do_plain_rerere(r
, &merge_rr
, fd
);
914 * Subclass of rerere_io that reads from an in-core buffer that is a
917 struct rerere_io_mem
{
923 * ... and its getline() method implementation
925 static int rerere_mem_getline(struct strbuf
*sb
, struct rerere_io
*io_
)
927 struct rerere_io_mem
*io
= (struct rerere_io_mem
*)io_
;
934 ep
= memchr(io
->input
.buf
, '\n', io
->input
.len
);
936 ep
= io
->input
.buf
+ io
->input
.len
;
937 else if (*ep
== '\n')
939 len
= ep
- io
->input
.buf
;
940 strbuf_add(sb
, io
->input
.buf
, len
);
941 strbuf_remove(&io
->input
, 0, len
);
945 static int handle_cache(struct index_state
*istate
,
946 const char *path
, unsigned char *hash
, const char *output
)
948 mmfile_t mmfile
[3] = {{NULL
}};
949 mmbuffer_t result
= {NULL
, 0};
950 const struct cache_entry
*ce
;
951 int pos
, len
, i
, has_conflicts
;
952 struct rerere_io_mem io
;
953 int marker_size
= ll_merge_marker_size(istate
, path
);
956 * Reproduce the conflicted merge in-core
959 pos
= index_name_pos(istate
, path
, len
);
964 while (pos
< istate
->cache_nr
) {
965 enum object_type type
;
968 ce
= istate
->cache
[pos
++];
969 if (ce_namelen(ce
) != len
|| memcmp(ce
->name
, path
, len
))
971 i
= ce_stage(ce
) - 1;
972 if (!mmfile
[i
].ptr
) {
973 mmfile
[i
].ptr
= repo_read_object_file(the_repository
,
976 mmfile
[i
].size
= size
;
979 for (i
= 0; i
< 3; i
++)
980 if (!mmfile
[i
].ptr
&& !mmfile
[i
].size
)
981 mmfile
[i
].ptr
= xstrdup("");
984 * NEEDSWORK: handle conflicts from merges with
985 * merge.renormalize set, too?
987 ll_merge(&result
, path
, &mmfile
[0], NULL
,
989 &mmfile
[2], "theirs",
991 for (i
= 0; i
< 3; i
++)
994 memset(&io
, 0, sizeof(io
));
995 io
.io
.getline
= rerere_mem_getline
;
997 io
.io
.output
= fopen(output
, "w");
1000 strbuf_init(&io
.input
, 0);
1001 strbuf_attach(&io
.input
, result
.ptr
, result
.size
, result
.size
);
1004 * Grab the conflict ID and optionally write the original
1005 * contents with conflict markers out.
1007 has_conflicts
= handle_path(hash
, (struct rerere_io
*)&io
, marker_size
);
1008 strbuf_release(&io
.input
);
1010 fclose(io
.io
.output
);
1011 return has_conflicts
;
1014 static int rerere_forget_one_path(struct index_state
*istate
,
1016 struct string_list
*rr
)
1018 const char *filename
;
1019 struct rerere_id
*id
;
1020 unsigned char hash
[GIT_MAX_RAWSZ
];
1022 struct string_list_item
*item
;
1025 * Recreate the original conflict from the stages in the
1026 * index and compute the conflict ID
1028 ret
= handle_cache(istate
, path
, hash
, NULL
);
1030 return error(_("could not parse conflict hunks in '%s'"), path
);
1032 /* Nuke the recorded resolution for the conflict */
1033 id
= new_rerere_id(hash
);
1035 for (id
->variant
= 0;
1036 id
->variant
< id
->collection
->status_nr
;
1038 mmfile_t cur
= { NULL
, 0 };
1039 mmbuffer_t result
= {NULL
, 0};
1040 int cleanly_resolved
;
1042 if (!has_rerere_resolution(id
))
1045 handle_cache(istate
, path
, hash
, rerere_path(id
, "thisimage"));
1046 if (read_mmfile(&cur
, rerere_path(id
, "thisimage"))) {
1048 error(_("failed to update conflicted state in '%s'"), path
);
1051 cleanly_resolved
= !try_merge(istate
, id
, path
, &cur
, &result
);
1054 if (cleanly_resolved
)
1058 if (id
->collection
->status_nr
<= id
->variant
) {
1059 error(_("no remembered resolution for '%s'"), path
);
1063 filename
= rerere_path(id
, "postimage");
1064 if (unlink(filename
)) {
1065 if (errno
== ENOENT
)
1066 error(_("no remembered resolution for '%s'"), path
);
1068 error_errno(_("cannot unlink '%s'"), filename
);
1073 * Update the preimage so that the user can resolve the
1074 * conflict in the working tree, run us again to record
1077 handle_cache(istate
, path
, hash
, rerere_path(id
, "preimage"));
1078 fprintf_ln(stderr
, _("Updated preimage for '%s'"), path
);
1081 * And remember that we can record resolution for this
1082 * conflict when the user is done.
1084 item
= string_list_insert(rr
, path
);
1085 free_rerere_id(item
);
1087 fprintf(stderr
, _("Forgot resolution for '%s'\n"), path
);
1095 int rerere_forget(struct repository
*r
, struct pathspec
*pathspec
)
1098 struct string_list conflict
= STRING_LIST_INIT_DUP
;
1099 struct string_list merge_rr
= STRING_LIST_INIT_DUP
;
1101 if (repo_read_index(r
) < 0)
1102 return error(_("index file corrupt"));
1104 fd
= setup_rerere(r
, &merge_rr
, RERERE_NOAUTOUPDATE
);
1109 * The paths may have been resolved (incorrectly);
1110 * recover the original conflicted state and then
1111 * find the conflicted paths.
1113 unmerge_index(r
->index
, pathspec
, 0);
1114 find_conflict(r
, &conflict
);
1115 for (i
= 0; i
< conflict
.nr
; i
++) {
1116 struct string_list_item
*it
= &conflict
.items
[i
];
1117 if (!match_pathspec(r
->index
, pathspec
, it
->string
,
1118 strlen(it
->string
), 0, NULL
, 0))
1120 rerere_forget_one_path(r
->index
, it
->string
, &merge_rr
);
1122 return write_rr(&merge_rr
, fd
);
1126 * Garbage collection support
1129 static timestamp_t
rerere_created_at(struct rerere_id
*id
)
1133 return stat(rerere_path(id
, "preimage"), &st
) ? (time_t) 0 : st
.st_mtime
;
1136 static timestamp_t
rerere_last_used_at(struct rerere_id
*id
)
1140 return stat(rerere_path(id
, "postimage"), &st
) ? (time_t) 0 : st
.st_mtime
;
1144 * Remove the recorded resolution for a given conflict ID
1146 static void unlink_rr_item(struct rerere_id
*id
)
1148 unlink_or_warn(rerere_path(id
, "thisimage"));
1150 id
->collection
->status
[id
->variant
] = 0;
1153 static void prune_one(struct rerere_id
*id
,
1154 timestamp_t cutoff_resolve
, timestamp_t cutoff_noresolve
)
1159 then
= rerere_last_used_at(id
);
1161 cutoff
= cutoff_resolve
;
1163 then
= rerere_created_at(id
);
1166 cutoff
= cutoff_noresolve
;
1172 /* Does the basename in "path" look plausibly like an rr-cache entry? */
1173 static int is_rr_cache_dirname(const char *path
)
1175 struct object_id oid
;
1177 return !parse_oid_hex(path
, &oid
, &end
) && !*end
;
1180 void rerere_gc(struct repository
*r
, struct string_list
*rr
)
1182 struct string_list to_remove
= STRING_LIST_INIT_DUP
;
1186 timestamp_t now
= time(NULL
);
1187 timestamp_t cutoff_noresolve
= now
- 15 * 86400;
1188 timestamp_t cutoff_resolve
= now
- 60 * 86400;
1190 if (setup_rerere(r
, rr
, 0) < 0)
1193 git_config_get_expiry_in_days("gc.rerereresolved", &cutoff_resolve
, now
);
1194 git_config_get_expiry_in_days("gc.rerereunresolved", &cutoff_noresolve
, now
);
1195 git_config(git_default_config
, NULL
);
1196 dir
= opendir(git_path("rr-cache"));
1198 die_errno(_("unable to open rr-cache directory"));
1199 /* Collect stale conflict IDs ... */
1200 while ((e
= readdir_skip_dot_and_dotdot(dir
))) {
1201 struct rerere_dir
*rr_dir
;
1202 struct rerere_id id
;
1205 if (!is_rr_cache_dirname(e
->d_name
))
1206 continue; /* or should we remove e->d_name? */
1208 rr_dir
= find_rerere_dir(e
->d_name
);
1211 for (id
.variant
= 0, id
.collection
= rr_dir
;
1212 id
.variant
< id
.collection
->status_nr
;
1214 prune_one(&id
, cutoff_resolve
, cutoff_noresolve
);
1215 if (id
.collection
->status
[id
.variant
])
1219 string_list_append(&to_remove
, e
->d_name
);
1223 /* ... and then remove the empty directories */
1224 for (i
= 0; i
< to_remove
.nr
; i
++)
1225 rmdir(git_path("rr-cache/%s", to_remove
.items
[i
].string
));
1226 string_list_clear(&to_remove
, 0);
1227 rollback_lock_file(&write_lock
);
1231 * During a conflict resolution, after "rerere" recorded the
1232 * preimages, abandon them if the user did not resolve them or
1233 * record their resolutions. And drop $GIT_DIR/MERGE_RR.
1235 * NEEDSWORK: shouldn't we be calling this from "reset --hard"?
1237 void rerere_clear(struct repository
*r
, struct string_list
*merge_rr
)
1241 if (setup_rerere(r
, merge_rr
, 0) < 0)
1244 for (i
= 0; i
< merge_rr
->nr
; i
++) {
1245 struct rerere_id
*id
= merge_rr
->items
[i
].util
;
1246 if (!has_rerere_resolution(id
)) {
1248 rmdir(rerere_path(id
, NULL
));
1251 unlink_or_warn(git_path_merge_rr(r
));
1252 rollback_lock_file(&write_lock
);