3 #include "string-list.h"
5 #include "xdiff-interface.h"
7 #include "resolve-undo.h"
11 #include "sha1-lookup.h"
15 #define THREE_STAGED 2
16 void *RERERE_RESOLVED
= &RERERE_RESOLVED
;
18 /* if rerere_enabled == -1, fall back to detection of .git/rr-cache */
19 static int rerere_enabled
= -1;
21 /* automatically update cleanly resolved paths to the index */
22 static int rerere_autoupdate
;
24 static char *merge_rr_path
;
26 static int rerere_dir_nr
;
27 static int rerere_dir_alloc
;
29 #define RR_HAS_POSTIMAGE 1
30 #define RR_HAS_PREIMAGE 2
31 static struct rerere_dir
{
32 unsigned char sha1
[20];
33 int status_alloc
, status_nr
;
34 unsigned char *status
;
37 static void free_rerere_dirs(void)
40 for (i
= 0; i
< rerere_dir_nr
; i
++) {
41 free(rerere_dir
[i
]->status
);
45 rerere_dir_nr
= rerere_dir_alloc
= 0;
49 static void free_rerere_id(struct string_list_item
*item
)
54 static const char *rerere_id_hex(const struct rerere_id
*id
)
56 return sha1_to_hex(id
->collection
->sha1
);
59 static void fit_variant(struct rerere_dir
*rr_dir
, int variant
)
62 ALLOC_GROW(rr_dir
->status
, variant
, rr_dir
->status_alloc
);
63 if (rr_dir
->status_nr
< variant
) {
64 memset(rr_dir
->status
+ rr_dir
->status_nr
,
65 '\0', variant
- rr_dir
->status_nr
);
66 rr_dir
->status_nr
= variant
;
70 static void assign_variant(struct rerere_id
*id
)
73 struct rerere_dir
*rr_dir
= id
->collection
;
75 variant
= id
->variant
;
77 for (variant
= 0; variant
< rr_dir
->status_nr
; variant
++)
78 if (!rr_dir
->status
[variant
])
81 fit_variant(rr_dir
, variant
);
82 id
->variant
= variant
;
85 const char *rerere_path(const struct rerere_id
*id
, const char *file
)
88 return git_path("rr-cache/%s", rerere_id_hex(id
));
91 return git_path("rr-cache/%s/%s", rerere_id_hex(id
), file
);
93 return git_path("rr-cache/%s/%s.%d",
94 rerere_id_hex(id
), file
, id
->variant
);
97 static int is_rr_file(const char *name
, const char *filename
, int *variant
)
102 if (!strcmp(name
, filename
)) {
106 if (!skip_prefix(name
, filename
, &suffix
) || *suffix
!= '.')
110 *variant
= strtol(suffix
+ 1, &ep
, 10);
116 static void scan_rerere_dir(struct rerere_dir
*rr_dir
)
119 DIR *dir
= opendir(git_path("rr-cache/%s", sha1_to_hex(rr_dir
->sha1
)));
123 while ((de
= readdir(dir
)) != NULL
) {
126 if (is_rr_file(de
->d_name
, "postimage", &variant
)) {
127 fit_variant(rr_dir
, variant
);
128 rr_dir
->status
[variant
] |= RR_HAS_POSTIMAGE
;
129 } else if (is_rr_file(de
->d_name
, "preimage", &variant
)) {
130 fit_variant(rr_dir
, variant
);
131 rr_dir
->status
[variant
] |= RR_HAS_PREIMAGE
;
137 static const unsigned char *rerere_dir_sha1(size_t i
, void *table
)
139 struct rerere_dir
**rr_dir
= table
;
140 return rr_dir
[i
]->sha1
;
143 static struct rerere_dir
*find_rerere_dir(const char *hex
)
145 unsigned char sha1
[20];
146 struct rerere_dir
*rr_dir
;
149 if (get_sha1_hex(hex
, sha1
))
150 return NULL
; /* BUG */
151 pos
= sha1_pos(sha1
, rerere_dir
, rerere_dir_nr
, rerere_dir_sha1
);
153 rr_dir
= xmalloc(sizeof(*rr_dir
));
154 hashcpy(rr_dir
->sha1
, sha1
);
155 rr_dir
->status
= NULL
;
156 rr_dir
->status_nr
= 0;
157 rr_dir
->status_alloc
= 0;
160 /* Make sure the array is big enough ... */
161 ALLOC_GROW(rerere_dir
, rerere_dir_nr
+ 1, rerere_dir_alloc
);
162 /* ... and add it in. */
164 memmove(rerere_dir
+ pos
+ 1, rerere_dir
+ pos
,
165 (rerere_dir_nr
- pos
- 1) * sizeof(*rerere_dir
));
166 rerere_dir
[pos
] = rr_dir
;
167 scan_rerere_dir(rr_dir
);
169 return rerere_dir
[pos
];
172 static int has_rerere_resolution(const struct rerere_id
*id
)
174 const int both
= RR_HAS_POSTIMAGE
|RR_HAS_PREIMAGE
;
175 int variant
= id
->variant
;
179 return ((id
->collection
->status
[variant
] & both
) == both
);
182 static struct rerere_id
*new_rerere_id_hex(char *hex
)
184 struct rerere_id
*id
= xmalloc(sizeof(*id
));
185 id
->collection
= find_rerere_dir(hex
);
186 id
->variant
= -1; /* not known yet */
190 static struct rerere_id
*new_rerere_id(unsigned char *sha1
)
192 return new_rerere_id_hex(sha1_to_hex(sha1
));
196 * $GIT_DIR/MERGE_RR file is a collection of records, each of which is
197 * "conflict ID", a HT and pathname, terminated with a NUL, and is
198 * used to keep track of the set of paths that "rerere" may need to
199 * work on (i.e. what is left by the previous invocation of "git
200 * rerere" during the current conflict resolution session).
202 static void read_rr(struct string_list
*rr
)
204 struct strbuf buf
= STRBUF_INIT
;
205 FILE *in
= fopen(merge_rr_path
, "r");
209 while (!strbuf_getwholeline(&buf
, in
, '\0')) {
211 unsigned char sha1
[20];
212 struct rerere_id
*id
;
215 /* There has to be the hash, tab, path and then NUL */
216 if (buf
.len
< 42 || get_sha1_hex(buf
.buf
, sha1
))
217 die("corrupt MERGE_RR");
219 if (buf
.buf
[40] != '.') {
224 variant
= strtol(buf
.buf
+ 41, &path
, 10);
226 die("corrupt MERGE_RR");
228 if (*(path
++) != '\t')
229 die("corrupt MERGE_RR");
231 id
= new_rerere_id_hex(buf
.buf
);
232 id
->variant
= variant
;
233 string_list_insert(rr
, path
)->util
= id
;
235 strbuf_release(&buf
);
239 static struct lock_file write_lock
;
241 static int write_rr(struct string_list
*rr
, int out_fd
)
244 for (i
= 0; i
< rr
->nr
; i
++) {
245 struct strbuf buf
= STRBUF_INIT
;
246 struct rerere_id
*id
;
248 assert(rr
->items
[i
].util
!= RERERE_RESOLVED
);
250 id
= rr
->items
[i
].util
;
253 assert(id
->variant
>= 0);
255 strbuf_addf(&buf
, "%s.%d\t%s%c",
256 rerere_id_hex(id
), id
->variant
,
257 rr
->items
[i
].string
, 0);
259 strbuf_addf(&buf
, "%s\t%s%c",
261 rr
->items
[i
].string
, 0);
263 if (write_in_full(out_fd
, buf
.buf
, buf
.len
) != buf
.len
)
264 die("unable to write rerere record");
266 strbuf_release(&buf
);
268 if (commit_lock_file(&write_lock
) != 0)
269 die("unable to write rerere record");
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
282 int (*getline
)(struct strbuf
*, struct rerere_io
*);
285 /* some more stuff */
288 static void ferr_write(const void *p
, size_t count
, FILE *fp
, int *err
)
292 if (fwrite(p
, count
, 1, fp
) != 1)
296 static inline void ferr_puts(const char *s
, FILE *fp
, int *err
)
298 ferr_write(s
, strlen(s
), fp
, err
);
301 static void rerere_io_putstr(const char *str
, struct rerere_io
*io
)
304 ferr_puts(str
, io
->output
, &io
->wrerror
);
308 * Write a conflict marker to io->output (if defined).
310 static void rerere_io_putconflict(int ch
, int size
, struct rerere_io
*io
)
315 if (size
<= sizeof(buf
) - 2) {
316 memset(buf
, ch
, size
);
318 buf
[size
+ 1] = '\0';
321 int sz
= sizeof(buf
) - 1;
324 * Make sure we will not write everything out
325 * in this round by leaving at least 1 byte
326 * for the next round, giving the next round
327 * a chance to add the terminating LF. Yuck.
330 sz
-= (sz
- size
) + 1;
335 rerere_io_putstr(buf
, io
);
339 static void rerere_io_putmem(const char *mem
, size_t sz
, struct rerere_io
*io
)
342 ferr_write(mem
, sz
, io
->output
, &io
->wrerror
);
346 * Subclass of rerere_io that reads from an on-disk file
348 struct rerere_io_file
{
354 * ... and its getline() method implementation
356 static int rerere_file_getline(struct strbuf
*sb
, struct rerere_io
*io_
)
358 struct rerere_io_file
*io
= (struct rerere_io_file
*)io_
;
359 return strbuf_getwholeline(sb
, io
->input
, '\n');
363 * Require the exact number of conflict marker letters, no more, no
364 * less, followed by SP or any whitespace
367 static int is_cmarker(char *buf
, int marker_char
, int marker_size
)
372 * The beginning of our version and the end of their version
373 * always are labeled like "<<<<< ours" or ">>>>> theirs",
374 * hence we set want_sp for them. Note that the version from
375 * the common ancestor in diff3-style output is not always
376 * labelled (e.g. "||||| common" is often seen but "|||||"
377 * alone is also valid), so we do not set want_sp.
379 want_sp
= (marker_char
== '<') || (marker_char
== '>');
381 while (marker_size
--)
382 if (*buf
++ != marker_char
)
384 if (want_sp
&& *buf
!= ' ')
386 return isspace(*buf
);
390 * Read contents a file with conflicts, normalize the conflicts
391 * by (1) discarding the common ancestor version in diff3-style,
392 * (2) reordering our side and their side so that whichever sorts
393 * alphabetically earlier comes before the other one, while
394 * computing the "conflict ID", which is just an SHA-1 hash of
395 * one side of the conflict, NUL, the other side of the conflict,
396 * and NUL concatenated together.
398 * Return the number of conflict hunks found.
400 * NEEDSWORK: the logic and theory of operation behind this conflict
401 * normalization may deserve to be documented somewhere, perhaps in
402 * Documentation/technical/rerere.txt.
404 static int handle_path(unsigned char *sha1
, struct rerere_io
*io
, int marker_size
)
409 RR_CONTEXT
= 0, RR_SIDE_1
, RR_SIDE_2
, RR_ORIGINAL
411 struct strbuf one
= STRBUF_INIT
, two
= STRBUF_INIT
;
412 struct strbuf buf
= STRBUF_INIT
;
417 while (!io
->getline(&buf
, io
)) {
418 if (is_cmarker(buf
.buf
, '<', marker_size
)) {
419 if (hunk
!= RR_CONTEXT
)
422 } else if (is_cmarker(buf
.buf
, '|', marker_size
)) {
423 if (hunk
!= RR_SIDE_1
)
426 } else if (is_cmarker(buf
.buf
, '=', marker_size
)) {
427 if (hunk
!= RR_SIDE_1
&& hunk
!= RR_ORIGINAL
)
430 } else if (is_cmarker(buf
.buf
, '>', marker_size
)) {
431 if (hunk
!= RR_SIDE_2
)
433 if (strbuf_cmp(&one
, &two
) > 0)
434 strbuf_swap(&one
, &two
);
437 rerere_io_putconflict('<', marker_size
, io
);
438 rerere_io_putmem(one
.buf
, one
.len
, io
);
439 rerere_io_putconflict('=', marker_size
, io
);
440 rerere_io_putmem(two
.buf
, two
.len
, io
);
441 rerere_io_putconflict('>', marker_size
, io
);
443 git_SHA1_Update(&ctx
, one
.buf
? one
.buf
: "",
445 git_SHA1_Update(&ctx
, two
.buf
? two
.buf
: "",
450 } else if (hunk
== RR_SIDE_1
)
451 strbuf_addbuf(&one
, &buf
);
452 else if (hunk
== RR_ORIGINAL
)
454 else if (hunk
== RR_SIDE_2
)
455 strbuf_addbuf(&two
, &buf
);
457 rerere_io_putstr(buf
.buf
, io
);
460 hunk
= 99; /* force error exit */
463 strbuf_release(&one
);
464 strbuf_release(&two
);
465 strbuf_release(&buf
);
468 git_SHA1_Final(sha1
, &ctx
);
469 if (hunk
!= RR_CONTEXT
)
475 * Scan the path for conflicts, do the "handle_path()" thing above, and
476 * return the number of conflict hunks found.
478 static int handle_file(const char *path
, unsigned char *sha1
, const char *output
)
481 struct rerere_io_file io
;
482 int marker_size
= ll_merge_marker_size(path
);
484 memset(&io
, 0, sizeof(io
));
485 io
.io
.getline
= rerere_file_getline
;
486 io
.input
= fopen(path
, "r");
489 return error("Could not open %s", path
);
492 io
.io
.output
= fopen(output
, "w");
495 return error("Could not write %s", output
);
499 hunk_no
= handle_path(sha1
, (struct rerere_io
*)&io
, marker_size
);
503 error("There were errors while writing %s (%s)",
504 path
, strerror(io
.io
.wrerror
));
505 if (io
.io
.output
&& fclose(io
.io
.output
))
506 io
.io
.wrerror
= error("Failed to flush %s: %s",
507 path
, strerror(errno
));
511 unlink_or_warn(output
);
512 return error("Could not parse conflict hunks in %s", path
);
520 * Look at a cache entry at "i" and see if it is not conflicting,
521 * conflicting and we are willing to handle, or conflicting and
522 * we are unable to handle, and return the determination in *type.
523 * Return the cache index to be looked at next, by skipping the
524 * stages we have already looked at in this invocation of this
527 static int check_one_conflict(int i
, int *type
)
529 const struct cache_entry
*e
= active_cache
[i
];
537 while (ce_stage(active_cache
[i
]) == 1)
540 /* Only handle regular files with both stages #2 and #3 */
541 if (i
+ 1 < active_nr
) {
542 const struct cache_entry
*e2
= active_cache
[i
];
543 const struct cache_entry
*e3
= active_cache
[i
+ 1];
544 if (ce_stage(e2
) == 2 &&
546 ce_same_name(e
, e3
) &&
547 S_ISREG(e2
->ce_mode
) &&
548 S_ISREG(e3
->ce_mode
))
549 *type
= THREE_STAGED
;
552 /* Skip the entries with the same name */
553 while (i
< active_nr
&& ce_same_name(e
, active_cache
[i
]))
559 * Scan the index and find paths that have conflicts that rerere can
560 * handle, i.e. the ones that has both stages #2 and #3.
562 * NEEDSWORK: we do not record or replay a previous "resolve by
563 * deletion" for a delete-modify conflict, as that is inherently risky
564 * without knowing what modification is being discarded. The only
565 * safe case, i.e. both side doing the deletion and modification that
566 * are identical to the previous round, might want to be handled,
569 static int find_conflict(struct string_list
*conflict
)
572 if (read_cache() < 0)
573 return error("Could not read index");
575 for (i
= 0; i
< active_nr
;) {
577 const struct cache_entry
*e
= active_cache
[i
];
578 i
= check_one_conflict(i
, &conflict_type
);
579 if (conflict_type
== THREE_STAGED
)
580 string_list_insert(conflict
, (const char *)e
->name
);
586 * The merge_rr list is meant to hold outstanding conflicted paths
587 * that rerere could handle. Abuse the list by adding other types of
588 * entries to allow the caller to show "rerere remaining".
590 * - Conflicted paths that rerere does not handle are added
591 * - Conflicted paths that have been resolved are marked as such
592 * by storing RERERE_RESOLVED to .util field (where conflict ID
593 * is expected to be stored).
595 * Do *not* write MERGE_RR file out after calling this function.
597 * NEEDSWORK: we may want to fix the caller that implements "rerere
598 * remaining" to do this without abusing merge_rr.
600 int rerere_remaining(struct string_list
*merge_rr
)
603 if (read_cache() < 0)
604 return error("Could not read index");
606 for (i
= 0; i
< active_nr
;) {
608 const struct cache_entry
*e
= active_cache
[i
];
609 i
= check_one_conflict(i
, &conflict_type
);
610 if (conflict_type
== PUNTED
)
611 string_list_insert(merge_rr
, (const char *)e
->name
);
612 else if (conflict_type
== RESOLVED
) {
613 struct string_list_item
*it
;
614 it
= string_list_lookup(merge_rr
, (const char *)e
->name
);
617 it
->util
= RERERE_RESOLVED
;
625 * Try using the given conflict resolution "ID" to see
626 * if that recorded conflict resolves cleanly what we
629 static int try_merge(const struct rerere_id
*id
, const char *path
,
630 mmfile_t
*cur
, mmbuffer_t
*result
)
633 mmfile_t base
= {NULL
, 0}, other
= {NULL
, 0};
635 if (read_mmfile(&base
, rerere_path(id
, "preimage")) ||
636 read_mmfile(&other
, rerere_path(id
, "postimage")))
640 * A three-way merge. Note that this honors user-customizable
641 * low-level merge driver settings.
643 ret
= ll_merge(result
, path
, &base
, NULL
, cur
, "", &other
, "", NULL
);
652 * Find the conflict identified by "id"; the change between its
653 * "preimage" (i.e. a previous contents with conflict markers) and its
654 * "postimage" (i.e. the corresponding contents with conflicts
655 * resolved) may apply cleanly to the contents stored in "path", i.e.
656 * the conflict this time around.
658 * Returns 0 for successful replay of recorded resolution, or non-zero
661 static int merge(const struct rerere_id
*id
, const char *path
)
665 mmfile_t cur
= {NULL
, 0};
666 mmbuffer_t result
= {NULL
, 0};
669 * Normalize the conflicts in path and write it out to
670 * "thisimage" temporary file.
672 if ((handle_file(path
, NULL
, rerere_path(id
, "thisimage")) < 0) ||
673 read_mmfile(&cur
, rerere_path(id
, "thisimage"))) {
678 ret
= try_merge(id
, path
, &cur
, &result
);
683 * A successful replay of recorded resolution.
684 * Mark that "postimage" was used to help gc.
686 if (utime(rerere_path(id
, "postimage"), NULL
) < 0)
687 warning("failed utime() on %s: %s",
688 rerere_path(id
, "postimage"),
691 /* Update "path" with the resolution */
692 f
= fopen(path
, "w");
694 return error("Could not open %s: %s", path
,
696 if (fwrite(result
.ptr
, result
.size
, 1, f
) != 1)
697 error("Could not write %s: %s", path
, strerror(errno
));
699 return error("Writing %s failed: %s", path
,
709 static struct lock_file index_lock
;
711 static void update_paths(struct string_list
*update
)
715 hold_locked_index(&index_lock
, 1);
717 for (i
= 0; i
< update
->nr
; i
++) {
718 struct string_list_item
*item
= &update
->items
[i
];
719 if (add_file_to_cache(item
->string
, 0))
721 fprintf(stderr
, "Staged '%s' using previous resolution.\n",
725 if (active_cache_changed
) {
726 if (write_locked_index(&the_index
, &index_lock
, COMMIT_LOCK
))
727 die("Unable to write new index file");
729 rollback_lock_file(&index_lock
);
732 static void remove_variant(struct rerere_id
*id
)
734 unlink_or_warn(rerere_path(id
, "postimage"));
735 unlink_or_warn(rerere_path(id
, "preimage"));
736 id
->collection
->status
[id
->variant
] = 0;
740 * The path indicated by rr_item may still have conflict for which we
741 * have a recorded resolution, in which case replay it and optionally
742 * update it. Or it may have been resolved by the user and we may
743 * only have the preimage for that conflict, in which case the result
744 * needs to be recorded as a resolution in a postimage file.
746 static void do_rerere_one_path(struct string_list_item
*rr_item
,
747 struct string_list
*update
)
749 const char *path
= rr_item
->string
;
750 struct rerere_id
*id
= rr_item
->util
;
751 struct rerere_dir
*rr_dir
= id
->collection
;
754 variant
= id
->variant
;
756 /* Has the user resolved it already? */
758 if (!handle_file(path
, NULL
, NULL
)) {
759 copy_file(rerere_path(id
, "postimage"), path
, 0666);
760 id
->collection
->status
[variant
] |= RR_HAS_POSTIMAGE
;
761 fprintf(stderr
, "Recorded resolution for '%s'.\n", path
);
762 free_rerere_id(rr_item
);
763 rr_item
->util
= NULL
;
767 * There may be other variants that can cleanly
768 * replay. Try them and update the variant number for
773 /* Does any existing resolution apply cleanly? */
774 for (variant
= 0; variant
< rr_dir
->status_nr
; variant
++) {
775 const int both
= RR_HAS_PREIMAGE
| RR_HAS_POSTIMAGE
;
776 struct rerere_id vid
= *id
;
778 if ((rr_dir
->status
[variant
] & both
) != both
)
781 vid
.variant
= variant
;
782 if (merge(&vid
, path
))
783 continue; /* failed to replay */
786 * If there already is a different variant that applies
787 * cleanly, there is no point maintaining our own variant.
789 if (0 <= id
->variant
&& id
->variant
!= variant
)
792 if (rerere_autoupdate
)
793 string_list_insert(update
, path
);
796 "Resolved '%s' using previous resolution.\n",
798 free_rerere_id(rr_item
);
799 rr_item
->util
= NULL
;
803 /* None of the existing one applies; we need a new variant */
806 variant
= id
->variant
;
807 handle_file(path
, NULL
, rerere_path(id
, "preimage"));
808 if (id
->collection
->status
[variant
] & RR_HAS_POSTIMAGE
) {
809 const char *path
= rerere_path(id
, "postimage");
811 die_errno("cannot unlink stray '%s'", path
);
812 id
->collection
->status
[variant
] &= ~RR_HAS_POSTIMAGE
;
814 id
->collection
->status
[variant
] |= RR_HAS_PREIMAGE
;
815 fprintf(stderr
, "Recorded preimage for '%s'\n", path
);
818 static int do_plain_rerere(struct string_list
*rr
, int fd
)
820 struct string_list conflict
= STRING_LIST_INIT_DUP
;
821 struct string_list update
= STRING_LIST_INIT_DUP
;
824 find_conflict(&conflict
);
827 * MERGE_RR records paths with conflicts immediately after
828 * merge failed. Some of the conflicted paths might have been
829 * hand resolved in the working tree since then, but the
830 * initial run would catch all and register their preimages.
832 for (i
= 0; i
< conflict
.nr
; i
++) {
833 struct rerere_id
*id
;
834 unsigned char sha1
[20];
835 const char *path
= conflict
.items
[i
].string
;
838 if (string_list_has_string(rr
, path
))
842 * Ask handle_file() to scan and assign a
843 * conflict ID. No need to write anything out
846 ret
= handle_file(path
, sha1
, NULL
);
850 id
= new_rerere_id(sha1
);
851 string_list_insert(rr
, path
)->util
= id
;
853 /* Ensure that the directory exists. */
854 mkdir_in_gitdir(rerere_path(id
, NULL
));
857 for (i
= 0; i
< rr
->nr
; i
++)
858 do_rerere_one_path(&rr
->items
[i
], &update
);
861 update_paths(&update
);
863 return write_rr(rr
, fd
);
866 static void git_rerere_config(void)
868 git_config_get_bool("rerere.enabled", &rerere_enabled
);
869 git_config_get_bool("rerere.autoupdate", &rerere_autoupdate
);
870 git_config(git_default_config
, NULL
);
873 static int is_rerere_enabled(void)
875 const char *rr_cache
;
881 rr_cache
= git_path("rr-cache");
882 rr_cache_exists
= is_directory(rr_cache
);
883 if (rerere_enabled
< 0)
884 return rr_cache_exists
;
886 if (!rr_cache_exists
&& mkdir_in_gitdir(rr_cache
))
887 die("Could not create directory %s", rr_cache
);
891 int setup_rerere(struct string_list
*merge_rr
, int flags
)
896 if (!is_rerere_enabled())
899 if (flags
& (RERERE_AUTOUPDATE
|RERERE_NOAUTOUPDATE
))
900 rerere_autoupdate
= !!(flags
& RERERE_AUTOUPDATE
);
901 merge_rr_path
= git_pathdup("MERGE_RR");
902 fd
= hold_lock_file_for_update(&write_lock
, merge_rr_path
,
909 * The main entry point that is called internally from codepaths that
910 * perform mergy operations, possibly leaving conflicted index entries
911 * and working tree files.
913 int rerere(int flags
)
915 struct string_list merge_rr
= STRING_LIST_INIT_DUP
;
918 fd
= setup_rerere(&merge_rr
, flags
);
921 status
= do_plain_rerere(&merge_rr
, fd
);
927 * Subclass of rerere_io that reads from an in-core buffer that is a
930 struct rerere_io_mem
{
936 * ... and its getline() method implementation
938 static int rerere_mem_getline(struct strbuf
*sb
, struct rerere_io
*io_
)
940 struct rerere_io_mem
*io
= (struct rerere_io_mem
*)io_
;
947 ep
= memchr(io
->input
.buf
, '\n', io
->input
.len
);
949 ep
= io
->input
.buf
+ io
->input
.len
;
950 else if (*ep
== '\n')
952 len
= ep
- io
->input
.buf
;
953 strbuf_add(sb
, io
->input
.buf
, len
);
954 strbuf_remove(&io
->input
, 0, len
);
958 static int handle_cache(const char *path
, unsigned char *sha1
, const char *output
)
960 mmfile_t mmfile
[3] = {{NULL
}};
961 mmbuffer_t result
= {NULL
, 0};
962 const struct cache_entry
*ce
;
963 int pos
, len
, i
, hunk_no
;
964 struct rerere_io_mem io
;
965 int marker_size
= ll_merge_marker_size(path
);
968 * Reproduce the conflicted merge in-core
971 pos
= cache_name_pos(path
, len
);
976 while (pos
< active_nr
) {
977 enum object_type type
;
980 ce
= active_cache
[pos
++];
981 if (ce_namelen(ce
) != len
|| memcmp(ce
->name
, path
, len
))
983 i
= ce_stage(ce
) - 1;
984 if (!mmfile
[i
].ptr
) {
985 mmfile
[i
].ptr
= read_sha1_file(ce
->sha1
, &type
, &size
);
986 mmfile
[i
].size
= size
;
989 for (i
= 0; i
< 3; i
++)
990 if (!mmfile
[i
].ptr
&& !mmfile
[i
].size
)
991 mmfile
[i
].ptr
= xstrdup("");
994 * NEEDSWORK: handle conflicts from merges with
995 * merge.renormalize set, too?
997 ll_merge(&result
, path
, &mmfile
[0], NULL
,
999 &mmfile
[2], "theirs", NULL
);
1000 for (i
= 0; i
< 3; i
++)
1001 free(mmfile
[i
].ptr
);
1003 memset(&io
, 0, sizeof(io
));
1004 io
.io
.getline
= rerere_mem_getline
;
1006 io
.io
.output
= fopen(output
, "w");
1008 io
.io
.output
= NULL
;
1009 strbuf_init(&io
.input
, 0);
1010 strbuf_attach(&io
.input
, result
.ptr
, result
.size
, result
.size
);
1013 * Grab the conflict ID and optionally write the original
1014 * contents with conflict markers out.
1016 hunk_no
= handle_path(sha1
, (struct rerere_io
*)&io
, marker_size
);
1017 strbuf_release(&io
.input
);
1019 fclose(io
.io
.output
);
1023 static int rerere_forget_one_path(const char *path
, struct string_list
*rr
)
1025 const char *filename
;
1026 struct rerere_id
*id
;
1027 unsigned char sha1
[20];
1029 struct string_list_item
*item
;
1032 * Recreate the original conflict from the stages in the
1033 * index and compute the conflict ID
1035 ret
= handle_cache(path
, sha1
, NULL
);
1037 return error("Could not parse conflict hunks in '%s'", path
);
1039 /* Nuke the recorded resolution for the conflict */
1040 id
= new_rerere_id(sha1
);
1041 id
->variant
= 0; /* for now */
1042 filename
= rerere_path(id
, "postimage");
1043 if (unlink(filename
))
1044 return (errno
== ENOENT
1045 ? error("no remembered resolution for %s", path
)
1046 : error("cannot unlink %s: %s", filename
, strerror(errno
)));
1049 * Update the preimage so that the user can resolve the
1050 * conflict in the working tree, run us again to record
1053 handle_cache(path
, sha1
, rerere_path(id
, "preimage"));
1054 fprintf(stderr
, "Updated preimage for '%s'\n", path
);
1057 * And remember that we can record resolution for this
1058 * conflict when the user is done.
1060 item
= string_list_insert(rr
, path
);
1061 free_rerere_id(item
);
1063 fprintf(stderr
, "Forgot resolution for %s\n", path
);
1067 int rerere_forget(struct pathspec
*pathspec
)
1070 struct string_list conflict
= STRING_LIST_INIT_DUP
;
1071 struct string_list merge_rr
= STRING_LIST_INIT_DUP
;
1073 if (read_cache() < 0)
1074 return error("Could not read index");
1076 fd
= setup_rerere(&merge_rr
, RERERE_NOAUTOUPDATE
);
1079 * The paths may have been resolved (incorrectly);
1080 * recover the original conflicted state and then
1081 * find the conflicted paths.
1083 unmerge_cache(pathspec
);
1084 find_conflict(&conflict
);
1085 for (i
= 0; i
< conflict
.nr
; i
++) {
1086 struct string_list_item
*it
= &conflict
.items
[i
];
1087 if (!match_pathspec(pathspec
, it
->string
,
1088 strlen(it
->string
), 0, NULL
, 0))
1090 rerere_forget_one_path(it
->string
, &merge_rr
);
1092 return write_rr(&merge_rr
, fd
);
1096 * Garbage collection support
1099 static time_t rerere_created_at(struct rerere_id
*id
)
1103 return stat(rerere_path(id
, "preimage"), &st
) ? (time_t) 0 : st
.st_mtime
;
1106 static time_t rerere_last_used_at(struct rerere_id
*id
)
1110 return stat(rerere_path(id
, "postimage"), &st
) ? (time_t) 0 : st
.st_mtime
;
1114 * Remove the recorded resolution for a given conflict ID
1116 static void unlink_rr_item(struct rerere_id
*id
)
1118 unlink_or_warn(rerere_path(id
, "thisimage"));
1120 id
->collection
->status
[id
->variant
] = 0;
1123 static void prune_one(struct rerere_id
*id
, time_t now
,
1124 int cutoff_resolve
, int cutoff_noresolve
)
1129 then
= rerere_last_used_at(id
);
1131 cutoff
= cutoff_resolve
;
1133 then
= rerere_created_at(id
);
1136 cutoff
= cutoff_noresolve
;
1138 if (then
< now
- cutoff
* 86400)
1142 void rerere_gc(struct string_list
*rr
)
1144 struct string_list to_remove
= STRING_LIST_INIT_DUP
;
1148 time_t now
= time(NULL
);
1149 int cutoff_noresolve
= 15;
1150 int cutoff_resolve
= 60;
1152 git_config_get_int("gc.rerereresolved", &cutoff_resolve
);
1153 git_config_get_int("gc.rerereunresolved", &cutoff_noresolve
);
1154 git_config(git_default_config
, NULL
);
1155 dir
= opendir(git_path("rr-cache"));
1157 die_errno("unable to open rr-cache directory");
1158 /* Collect stale conflict IDs ... */
1159 while ((e
= readdir(dir
))) {
1160 struct rerere_dir
*rr_dir
;
1161 struct rerere_id id
;
1164 if (is_dot_or_dotdot(e
->d_name
))
1166 rr_dir
= find_rerere_dir(e
->d_name
);
1168 continue; /* or should we remove e->d_name? */
1171 for (id
.variant
= 0, id
.collection
= rr_dir
;
1172 id
.variant
< id
.collection
->status_nr
;
1174 prune_one(&id
, now
, cutoff_resolve
, cutoff_noresolve
);
1175 if (id
.collection
->status
[id
.variant
])
1179 string_list_append(&to_remove
, e
->d_name
);
1183 /* ... and then remove the empty directories */
1184 for (i
= 0; i
< to_remove
.nr
; i
++)
1185 rmdir(git_path("rr-cache/%s", to_remove
.items
[i
].string
));
1186 string_list_clear(&to_remove
, 0);
1190 * During a conflict resolution, after "rerere" recorded the
1191 * preimages, abandon them if the user did not resolve them or
1192 * record their resolutions. And drop $GIT_DIR/MERGE_RR.
1194 * NEEDSWORK: shouldn't we be calling this from "reset --hard"?
1196 void rerere_clear(struct string_list
*merge_rr
)
1200 for (i
= 0; i
< merge_rr
->nr
; i
++) {
1201 struct rerere_id
*id
= merge_rr
->items
[i
].util
;
1202 if (!has_rerere_resolution(id
)) {
1204 rmdir(rerere_path(id
, NULL
));
1207 unlink_or_warn(git_path("MERGE_RR"));