Merge branch 'jc/cherry-pick' (early part)
[git/dscho.git] / builtin-merge-recursive.c
blob5a0a7b529765fa229318af86a68e58a92e287154
1 /*
2 * Recursive Merge algorithm stolen from git-merge-recursive.py by
3 * Fredrik Kuivinen.
4 * The thieves were Alex Riesen and Johannes Schindelin, in June/July 2006
5 */
6 #include "cache.h"
7 #include "cache-tree.h"
8 #include "commit.h"
9 #include "blob.h"
10 #include "builtin.h"
11 #include "tree-walk.h"
12 #include "diff.h"
13 #include "diffcore.h"
14 #include "tag.h"
15 #include "unpack-trees.h"
16 #include "path-list.h"
17 #include "xdiff-interface.h"
18 #include "ll-merge.h"
19 #include "interpolate.h"
20 #include "attr.h"
21 #include "merge-recursive.h"
23 static int subtree_merge;
25 static struct tree *shift_tree_object(struct tree *one, struct tree *two)
27 unsigned char shifted[20];
30 * NEEDSWORK: this limits the recursion depth to hardcoded
31 * value '2' to avoid excessive overhead.
33 shift_tree(one->object.sha1, two->object.sha1, shifted, 2);
34 if (!hashcmp(two->object.sha1, shifted))
35 return two;
36 return lookup_tree(shifted);
40 * A virtual commit has
41 * - (const char *)commit->util set to the name, and
42 * - *(int *)commit->object.sha1 set to the virtual id.
45 static unsigned commit_list_count(const struct commit_list *l)
47 unsigned c = 0;
48 for (; l; l = l->next )
49 c++;
50 return c;
53 static struct commit *make_virtual_commit(struct tree *tree, const char *comment)
55 struct commit *commit = xcalloc(1, sizeof(struct commit));
56 static unsigned virtual_id = 1;
57 commit->tree = tree;
58 commit->util = (void*)comment;
59 *(int*)commit->object.sha1 = virtual_id++;
60 /* avoid warnings */
61 commit->object.parsed = 1;
62 return commit;
66 * Since we use get_tree_entry(), which does not put the read object into
67 * the object pool, we cannot rely on a == b.
69 static int sha_eq(const unsigned char *a, const unsigned char *b)
71 if (!a && !b)
72 return 2;
73 return a && b && hashcmp(a, b) == 0;
77 * Since we want to write the index eventually, we cannot reuse the index
78 * for these (temporary) data.
80 struct stage_data
82 struct
84 unsigned mode;
85 unsigned char sha[20];
86 } stages[4];
87 unsigned processed:1;
90 static struct path_list current_file_set = {NULL, 0, 0, 1};
91 static struct path_list current_directory_set = {NULL, 0, 0, 1};
93 static int call_depth = 0;
94 static int verbosity = 2;
95 static int rename_limit = -1;
96 static int buffer_output = 1;
97 static struct strbuf obuf = STRBUF_INIT;
99 static int show(int v)
101 return (!call_depth && verbosity >= v) || verbosity >= 5;
104 static void flush_output(void)
106 if (obuf.len) {
107 fputs(obuf.buf, stdout);
108 strbuf_reset(&obuf);
112 static void output(int v, const char *fmt, ...)
114 int len;
115 va_list ap;
117 if (!show(v))
118 return;
120 strbuf_grow(&obuf, call_depth * 2 + 2);
121 memset(obuf.buf + obuf.len, ' ', call_depth * 2);
122 strbuf_setlen(&obuf, obuf.len + call_depth * 2);
124 va_start(ap, fmt);
125 len = vsnprintf(obuf.buf + obuf.len, strbuf_avail(&obuf), fmt, ap);
126 va_end(ap);
128 if (len < 0)
129 len = 0;
130 if (len >= strbuf_avail(&obuf)) {
131 strbuf_grow(&obuf, len + 2);
132 va_start(ap, fmt);
133 len = vsnprintf(obuf.buf + obuf.len, strbuf_avail(&obuf), fmt, ap);
134 va_end(ap);
135 if (len >= strbuf_avail(&obuf)) {
136 die("this should not happen, your snprintf is broken");
139 strbuf_setlen(&obuf, obuf.len + len);
140 strbuf_add(&obuf, "\n", 1);
141 if (!buffer_output)
142 flush_output();
145 static void output_commit_title(struct commit *commit)
147 int i;
148 flush_output();
149 for (i = call_depth; i--;)
150 fputs(" ", stdout);
151 if (commit->util)
152 printf("virtual %s\n", (char *)commit->util);
153 else {
154 printf("%s ", find_unique_abbrev(commit->object.sha1, DEFAULT_ABBREV));
155 if (parse_commit(commit) != 0)
156 printf("(bad commit)\n");
157 else {
158 const char *s;
159 int len;
160 for (s = commit->buffer; *s; s++)
161 if (*s == '\n' && s[1] == '\n') {
162 s += 2;
163 break;
165 for (len = 0; s[len] && '\n' != s[len]; len++)
166 ; /* do nothing */
167 printf("%.*s\n", len, s);
172 static int add_cacheinfo(unsigned int mode, const unsigned char *sha1,
173 const char *path, int stage, int refresh, int options)
175 struct cache_entry *ce;
176 ce = make_cache_entry(mode, sha1 ? sha1 : null_sha1, path, stage, refresh);
177 if (!ce)
178 return error("addinfo_cache failed for path '%s'", path);
179 return add_cache_entry(ce, options);
183 * This is a global variable which is used in a number of places but
184 * only written to in the 'merge' function.
186 * index_only == 1 => Don't leave any non-stage 0 entries in the cache and
187 * don't update the working directory.
188 * 0 => Leave unmerged entries in the cache and update
189 * the working directory.
191 static int index_only = 0;
193 static void init_tree_desc_from_tree(struct tree_desc *desc, struct tree *tree)
195 parse_tree(tree);
196 init_tree_desc(desc, tree->buffer, tree->size);
199 static int git_merge_trees(int index_only,
200 struct tree *common,
201 struct tree *head,
202 struct tree *merge)
204 int rc;
205 struct tree_desc t[3];
206 struct unpack_trees_options opts;
208 memset(&opts, 0, sizeof(opts));
209 if (index_only)
210 opts.index_only = 1;
211 else
212 opts.update = 1;
213 opts.merge = 1;
214 opts.head_idx = 2;
215 opts.fn = threeway_merge;
217 init_tree_desc_from_tree(t+0, common);
218 init_tree_desc_from_tree(t+1, head);
219 init_tree_desc_from_tree(t+2, merge);
221 rc = unpack_trees(3, t, &opts);
222 cache_tree_free(&active_cache_tree);
223 return rc;
226 struct tree *write_tree_from_memory(void)
228 struct tree *result = NULL;
230 if (unmerged_cache()) {
231 int i;
232 output(0, "There are unmerged index entries:");
233 for (i = 0; i < active_nr; i++) {
234 struct cache_entry *ce = active_cache[i];
235 if (ce_stage(ce))
236 output(0, "%d %.*s", ce_stage(ce), ce_namelen(ce), ce->name);
238 return NULL;
241 if (!active_cache_tree)
242 active_cache_tree = cache_tree();
244 if (!cache_tree_fully_valid(active_cache_tree) &&
245 cache_tree_update(active_cache_tree,
246 active_cache, active_nr, 0, 0) < 0)
247 die("error building trees");
249 result = lookup_tree(active_cache_tree->sha1);
251 return result;
254 static int save_files_dirs(const unsigned char *sha1,
255 const char *base, int baselen, const char *path,
256 unsigned int mode, int stage)
258 int len = strlen(path);
259 char *newpath = xmalloc(baselen + len + 1);
260 memcpy(newpath, base, baselen);
261 memcpy(newpath + baselen, path, len);
262 newpath[baselen + len] = '\0';
264 if (S_ISDIR(mode))
265 path_list_insert(newpath, &current_directory_set);
266 else
267 path_list_insert(newpath, &current_file_set);
268 free(newpath);
270 return READ_TREE_RECURSIVE;
273 static int get_files_dirs(struct tree *tree)
275 int n;
276 if (read_tree_recursive(tree, "", 0, 0, NULL, save_files_dirs) != 0)
277 return 0;
278 n = current_file_set.nr + current_directory_set.nr;
279 return n;
283 * Returns an index_entry instance which doesn't have to correspond to
284 * a real cache entry in Git's index.
286 static struct stage_data *insert_stage_data(const char *path,
287 struct tree *o, struct tree *a, struct tree *b,
288 struct path_list *entries)
290 struct path_list_item *item;
291 struct stage_data *e = xcalloc(1, sizeof(struct stage_data));
292 get_tree_entry(o->object.sha1, path,
293 e->stages[1].sha, &e->stages[1].mode);
294 get_tree_entry(a->object.sha1, path,
295 e->stages[2].sha, &e->stages[2].mode);
296 get_tree_entry(b->object.sha1, path,
297 e->stages[3].sha, &e->stages[3].mode);
298 item = path_list_insert(path, entries);
299 item->util = e;
300 return e;
304 * Create a dictionary mapping file names to stage_data objects. The
305 * dictionary contains one entry for every path with a non-zero stage entry.
307 static struct path_list *get_unmerged(void)
309 struct path_list *unmerged = xcalloc(1, sizeof(struct path_list));
310 int i;
312 unmerged->strdup_paths = 1;
314 for (i = 0; i < active_nr; i++) {
315 struct path_list_item *item;
316 struct stage_data *e;
317 struct cache_entry *ce = active_cache[i];
318 if (!ce_stage(ce))
319 continue;
321 item = path_list_lookup(ce->name, unmerged);
322 if (!item) {
323 item = path_list_insert(ce->name, unmerged);
324 item->util = xcalloc(1, sizeof(struct stage_data));
326 e = item->util;
327 e->stages[ce_stage(ce)].mode = ce->ce_mode;
328 hashcpy(e->stages[ce_stage(ce)].sha, ce->sha1);
331 return unmerged;
334 struct rename
336 struct diff_filepair *pair;
337 struct stage_data *src_entry;
338 struct stage_data *dst_entry;
339 unsigned processed:1;
343 * Get information of all renames which occurred between 'o_tree' and
344 * 'tree'. We need the three trees in the merge ('o_tree', 'a_tree' and
345 * 'b_tree') to be able to associate the correct cache entries with
346 * the rename information. 'tree' is always equal to either a_tree or b_tree.
348 static struct path_list *get_renames(struct tree *tree,
349 struct tree *o_tree,
350 struct tree *a_tree,
351 struct tree *b_tree,
352 struct path_list *entries)
354 int i;
355 struct path_list *renames;
356 struct diff_options opts;
358 renames = xcalloc(1, sizeof(struct path_list));
359 diff_setup(&opts);
360 DIFF_OPT_SET(&opts, RECURSIVE);
361 opts.detect_rename = DIFF_DETECT_RENAME;
362 opts.rename_limit = rename_limit;
363 opts.output_format = DIFF_FORMAT_NO_OUTPUT;
364 if (diff_setup_done(&opts) < 0)
365 die("diff setup failed");
366 diff_tree_sha1(o_tree->object.sha1, tree->object.sha1, "", &opts);
367 diffcore_std(&opts);
368 for (i = 0; i < diff_queued_diff.nr; ++i) {
369 struct path_list_item *item;
370 struct rename *re;
371 struct diff_filepair *pair = diff_queued_diff.queue[i];
372 if (pair->status != 'R') {
373 diff_free_filepair(pair);
374 continue;
376 re = xmalloc(sizeof(*re));
377 re->processed = 0;
378 re->pair = pair;
379 item = path_list_lookup(re->pair->one->path, entries);
380 if (!item)
381 re->src_entry = insert_stage_data(re->pair->one->path,
382 o_tree, a_tree, b_tree, entries);
383 else
384 re->src_entry = item->util;
386 item = path_list_lookup(re->pair->two->path, entries);
387 if (!item)
388 re->dst_entry = insert_stage_data(re->pair->two->path,
389 o_tree, a_tree, b_tree, entries);
390 else
391 re->dst_entry = item->util;
392 item = path_list_insert(pair->one->path, renames);
393 item->util = re;
395 opts.output_format = DIFF_FORMAT_NO_OUTPUT;
396 diff_queued_diff.nr = 0;
397 diff_flush(&opts);
398 return renames;
401 static int update_stages(const char *path, struct diff_filespec *o,
402 struct diff_filespec *a, struct diff_filespec *b,
403 int clear)
405 int options = ADD_CACHE_OK_TO_ADD | ADD_CACHE_OK_TO_REPLACE;
406 if (clear)
407 if (remove_file_from_cache(path))
408 return -1;
409 if (o)
410 if (add_cacheinfo(o->mode, o->sha1, path, 1, 0, options))
411 return -1;
412 if (a)
413 if (add_cacheinfo(a->mode, a->sha1, path, 2, 0, options))
414 return -1;
415 if (b)
416 if (add_cacheinfo(b->mode, b->sha1, path, 3, 0, options))
417 return -1;
418 return 0;
421 static int remove_path(const char *name)
423 int ret;
424 char *slash, *dirs;
426 ret = unlink(name);
427 if (ret)
428 return ret;
429 dirs = xstrdup(name);
430 while ((slash = strrchr(name, '/'))) {
431 *slash = '\0';
432 if (rmdir(name) != 0)
433 break;
435 free(dirs);
436 return ret;
439 static int remove_file(int clean, const char *path, int no_wd)
441 int update_cache = index_only || clean;
442 int update_working_directory = !index_only && !no_wd;
444 if (update_cache) {
445 if (remove_file_from_cache(path))
446 return -1;
448 if (update_working_directory) {
449 unlink(path);
450 if (errno != ENOENT || errno != EISDIR)
451 return -1;
452 remove_path(path);
454 return 0;
457 static char *unique_path(const char *path, const char *branch)
459 char *newpath = xmalloc(strlen(path) + 1 + strlen(branch) + 8 + 1);
460 int suffix = 0;
461 struct stat st;
462 char *p = newpath + strlen(path);
463 strcpy(newpath, path);
464 *(p++) = '~';
465 strcpy(p, branch);
466 for (; *p; ++p)
467 if ('/' == *p)
468 *p = '_';
469 while (path_list_has_path(&current_file_set, newpath) ||
470 path_list_has_path(&current_directory_set, newpath) ||
471 lstat(newpath, &st) == 0)
472 sprintf(p, "_%d", suffix++);
474 path_list_insert(newpath, &current_file_set);
475 return newpath;
478 static int mkdir_p(const char *path, unsigned long mode)
480 /* path points to cache entries, so xstrdup before messing with it */
481 char *buf = xstrdup(path);
482 int result = safe_create_leading_directories(buf);
483 free(buf);
484 return result;
487 static void flush_buffer(int fd, const char *buf, unsigned long size)
489 while (size > 0) {
490 long ret = write_in_full(fd, buf, size);
491 if (ret < 0) {
492 /* Ignore epipe */
493 if (errno == EPIPE)
494 break;
495 die("merge-recursive: %s", strerror(errno));
496 } else if (!ret) {
497 die("merge-recursive: disk full?");
499 size -= ret;
500 buf += ret;
504 static int make_room_for_path(const char *path)
506 int status;
507 const char *msg = "failed to create path '%s'%s";
509 status = mkdir_p(path, 0777);
510 if (status) {
511 if (status == -3) {
512 /* something else exists */
513 error(msg, path, ": perhaps a D/F conflict?");
514 return -1;
516 die(msg, path, "");
519 /* Successful unlink is good.. */
520 if (!unlink(path))
521 return 0;
522 /* .. and so is no existing file */
523 if (errno == ENOENT)
524 return 0;
525 /* .. but not some other error (who really cares what?) */
526 return error(msg, path, ": perhaps a D/F conflict?");
529 static void update_file_flags(const unsigned char *sha,
530 unsigned mode,
531 const char *path,
532 int update_cache,
533 int update_wd)
535 if (index_only)
536 update_wd = 0;
538 if (update_wd) {
539 enum object_type type;
540 void *buf;
541 unsigned long size;
543 if (S_ISGITLINK(mode))
544 die("cannot read object %s '%s': It is a submodule!",
545 sha1_to_hex(sha), path);
547 buf = read_sha1_file(sha, &type, &size);
548 if (!buf)
549 die("cannot read object %s '%s'", sha1_to_hex(sha), path);
550 if (type != OBJ_BLOB)
551 die("blob expected for %s '%s'", sha1_to_hex(sha), path);
553 if (make_room_for_path(path) < 0) {
554 update_wd = 0;
555 goto update_index;
557 if (S_ISREG(mode) || (!has_symlinks && S_ISLNK(mode))) {
558 int fd;
559 if (mode & 0100)
560 mode = 0777;
561 else
562 mode = 0666;
563 fd = open(path, O_WRONLY | O_TRUNC | O_CREAT, mode);
564 if (fd < 0)
565 die("failed to open %s: %s", path, strerror(errno));
566 flush_buffer(fd, buf, size);
567 close(fd);
568 } else if (S_ISLNK(mode)) {
569 char *lnk = xmemdupz(buf, size);
570 mkdir_p(path, 0777);
571 unlink(path);
572 symlink(lnk, path);
573 free(lnk);
574 } else
575 die("do not know what to do with %06o %s '%s'",
576 mode, sha1_to_hex(sha), path);
578 update_index:
579 if (update_cache)
580 add_cacheinfo(mode, sha, path, 0, update_wd, ADD_CACHE_OK_TO_ADD);
583 static void update_file(int clean,
584 const unsigned char *sha,
585 unsigned mode,
586 const char *path)
588 update_file_flags(sha, mode, path, index_only || clean, !index_only);
591 /* Low level file merging, update and removal */
593 struct merge_file_info
595 unsigned char sha[20];
596 unsigned mode;
597 unsigned clean:1,
598 merge:1;
601 static void fill_mm(const unsigned char *sha1, mmfile_t *mm)
603 unsigned long size;
604 enum object_type type;
606 if (!hashcmp(sha1, null_sha1)) {
607 mm->ptr = xstrdup("");
608 mm->size = 0;
609 return;
612 mm->ptr = read_sha1_file(sha1, &type, &size);
613 if (!mm->ptr || type != OBJ_BLOB)
614 die("unable to read blob object %s", sha1_to_hex(sha1));
615 mm->size = size;
618 static int merge_3way(mmbuffer_t *result_buf,
619 struct diff_filespec *o,
620 struct diff_filespec *a,
621 struct diff_filespec *b,
622 const char *branch1,
623 const char *branch2)
625 mmfile_t orig, src1, src2;
626 char *name1, *name2;
627 int merge_status;
629 name1 = xstrdup(mkpath("%s:%s", branch1, a->path));
630 name2 = xstrdup(mkpath("%s:%s", branch2, b->path));
632 fill_mm(o->sha1, &orig);
633 fill_mm(a->sha1, &src1);
634 fill_mm(b->sha1, &src2);
636 merge_status = ll_merge(result_buf, a->path, &orig,
637 &src1, name1, &src2, name2,
638 index_only);
640 free(name1);
641 free(name2);
642 free(orig.ptr);
643 free(src1.ptr);
644 free(src2.ptr);
645 return merge_status;
648 static struct merge_file_info merge_file(struct diff_filespec *o,
649 struct diff_filespec *a, struct diff_filespec *b,
650 const char *branch1, const char *branch2)
652 struct merge_file_info result;
653 result.merge = 0;
654 result.clean = 1;
656 if ((S_IFMT & a->mode) != (S_IFMT & b->mode)) {
657 result.clean = 0;
658 if (S_ISREG(a->mode)) {
659 result.mode = a->mode;
660 hashcpy(result.sha, a->sha1);
661 } else {
662 result.mode = b->mode;
663 hashcpy(result.sha, b->sha1);
665 } else {
666 if (!sha_eq(a->sha1, o->sha1) && !sha_eq(b->sha1, o->sha1))
667 result.merge = 1;
669 result.mode = a->mode == o->mode ? b->mode: a->mode;
671 if (sha_eq(a->sha1, o->sha1))
672 hashcpy(result.sha, b->sha1);
673 else if (sha_eq(b->sha1, o->sha1))
674 hashcpy(result.sha, a->sha1);
675 else if (S_ISREG(a->mode)) {
676 mmbuffer_t result_buf;
677 int merge_status;
679 merge_status = merge_3way(&result_buf, o, a, b,
680 branch1, branch2);
682 if ((merge_status < 0) || !result_buf.ptr)
683 die("Failed to execute internal merge");
685 if (write_sha1_file(result_buf.ptr, result_buf.size,
686 blob_type, result.sha))
687 die("Unable to add %s to database",
688 a->path);
690 free(result_buf.ptr);
691 result.clean = (merge_status == 0);
692 } else if (S_ISGITLINK(a->mode)) {
693 result.clean = 0;
694 hashcpy(result.sha, a->sha1);
695 } else if (S_ISLNK(a->mode)) {
696 hashcpy(result.sha, a->sha1);
698 if (!sha_eq(a->sha1, b->sha1))
699 result.clean = 0;
700 } else {
701 die("unsupported object type in the tree");
705 return result;
708 static void conflict_rename_rename(struct rename *ren1,
709 const char *branch1,
710 struct rename *ren2,
711 const char *branch2)
713 char *del[2];
714 int delp = 0;
715 const char *ren1_dst = ren1->pair->two->path;
716 const char *ren2_dst = ren2->pair->two->path;
717 const char *dst_name1 = ren1_dst;
718 const char *dst_name2 = ren2_dst;
719 if (path_list_has_path(&current_directory_set, ren1_dst)) {
720 dst_name1 = del[delp++] = unique_path(ren1_dst, branch1);
721 output(1, "%s is a directory in %s added as %s instead",
722 ren1_dst, branch2, dst_name1);
723 remove_file(0, ren1_dst, 0);
725 if (path_list_has_path(&current_directory_set, ren2_dst)) {
726 dst_name2 = del[delp++] = unique_path(ren2_dst, branch2);
727 output(1, "%s is a directory in %s added as %s instead",
728 ren2_dst, branch1, dst_name2);
729 remove_file(0, ren2_dst, 0);
731 if (index_only) {
732 remove_file_from_cache(dst_name1);
733 remove_file_from_cache(dst_name2);
735 * Uncomment to leave the conflicting names in the resulting tree
737 * update_file(0, ren1->pair->two->sha1, ren1->pair->two->mode, dst_name1);
738 * update_file(0, ren2->pair->two->sha1, ren2->pair->two->mode, dst_name2);
740 } else {
741 update_stages(dst_name1, NULL, ren1->pair->two, NULL, 1);
742 update_stages(dst_name2, NULL, NULL, ren2->pair->two, 1);
744 while (delp--)
745 free(del[delp]);
748 static void conflict_rename_dir(struct rename *ren1,
749 const char *branch1)
751 char *new_path = unique_path(ren1->pair->two->path, branch1);
752 output(1, "Renamed %s to %s instead", ren1->pair->one->path, new_path);
753 remove_file(0, ren1->pair->two->path, 0);
754 update_file(0, ren1->pair->two->sha1, ren1->pair->two->mode, new_path);
755 free(new_path);
758 static void conflict_rename_rename_2(struct rename *ren1,
759 const char *branch1,
760 struct rename *ren2,
761 const char *branch2)
763 char *new_path1 = unique_path(ren1->pair->two->path, branch1);
764 char *new_path2 = unique_path(ren2->pair->two->path, branch2);
765 output(1, "Renamed %s to %s and %s to %s instead",
766 ren1->pair->one->path, new_path1,
767 ren2->pair->one->path, new_path2);
768 remove_file(0, ren1->pair->two->path, 0);
769 update_file(0, ren1->pair->two->sha1, ren1->pair->two->mode, new_path1);
770 update_file(0, ren2->pair->two->sha1, ren2->pair->two->mode, new_path2);
771 free(new_path2);
772 free(new_path1);
775 static int process_renames(struct path_list *a_renames,
776 struct path_list *b_renames,
777 const char *a_branch,
778 const char *b_branch)
780 int clean_merge = 1, i, j;
781 struct path_list a_by_dst = {NULL, 0, 0, 0}, b_by_dst = {NULL, 0, 0, 0};
782 const struct rename *sre;
784 for (i = 0; i < a_renames->nr; i++) {
785 sre = a_renames->items[i].util;
786 path_list_insert(sre->pair->two->path, &a_by_dst)->util
787 = sre->dst_entry;
789 for (i = 0; i < b_renames->nr; i++) {
790 sre = b_renames->items[i].util;
791 path_list_insert(sre->pair->two->path, &b_by_dst)->util
792 = sre->dst_entry;
795 for (i = 0, j = 0; i < a_renames->nr || j < b_renames->nr;) {
796 int compare;
797 char *src;
798 struct path_list *renames1, *renames2, *renames2Dst;
799 struct rename *ren1 = NULL, *ren2 = NULL;
800 const char *branch1, *branch2;
801 const char *ren1_src, *ren1_dst;
803 if (i >= a_renames->nr) {
804 compare = 1;
805 ren2 = b_renames->items[j++].util;
806 } else if (j >= b_renames->nr) {
807 compare = -1;
808 ren1 = a_renames->items[i++].util;
809 } else {
810 compare = strcmp(a_renames->items[i].path,
811 b_renames->items[j].path);
812 if (compare <= 0)
813 ren1 = a_renames->items[i++].util;
814 if (compare >= 0)
815 ren2 = b_renames->items[j++].util;
818 /* TODO: refactor, so that 1/2 are not needed */
819 if (ren1) {
820 renames1 = a_renames;
821 renames2 = b_renames;
822 renames2Dst = &b_by_dst;
823 branch1 = a_branch;
824 branch2 = b_branch;
825 } else {
826 struct rename *tmp;
827 renames1 = b_renames;
828 renames2 = a_renames;
829 renames2Dst = &a_by_dst;
830 branch1 = b_branch;
831 branch2 = a_branch;
832 tmp = ren2;
833 ren2 = ren1;
834 ren1 = tmp;
836 src = ren1->pair->one->path;
838 ren1->dst_entry->processed = 1;
839 ren1->src_entry->processed = 1;
841 if (ren1->processed)
842 continue;
843 ren1->processed = 1;
845 ren1_src = ren1->pair->one->path;
846 ren1_dst = ren1->pair->two->path;
848 if (ren2) {
849 const char *ren2_src = ren2->pair->one->path;
850 const char *ren2_dst = ren2->pair->two->path;
851 /* Renamed in 1 and renamed in 2 */
852 if (strcmp(ren1_src, ren2_src) != 0)
853 die("ren1.src != ren2.src");
854 ren2->dst_entry->processed = 1;
855 ren2->processed = 1;
856 if (strcmp(ren1_dst, ren2_dst) != 0) {
857 clean_merge = 0;
858 output(1, "CONFLICT (rename/rename): "
859 "Rename \"%s\"->\"%s\" in branch \"%s\" "
860 "rename \"%s\"->\"%s\" in \"%s\"%s",
861 src, ren1_dst, branch1,
862 src, ren2_dst, branch2,
863 index_only ? " (left unresolved)": "");
864 if (index_only) {
865 remove_file_from_cache(src);
866 update_file(0, ren1->pair->one->sha1,
867 ren1->pair->one->mode, src);
869 conflict_rename_rename(ren1, branch1, ren2, branch2);
870 } else {
871 struct merge_file_info mfi;
872 remove_file(1, ren1_src, 1);
873 mfi = merge_file(ren1->pair->one,
874 ren1->pair->two,
875 ren2->pair->two,
876 branch1,
877 branch2);
878 if (mfi.merge || !mfi.clean)
879 output(1, "Renamed %s->%s", src, ren1_dst);
881 if (mfi.merge)
882 output(2, "Auto-merged %s", ren1_dst);
884 if (!mfi.clean) {
885 output(1, "CONFLICT (content): merge conflict in %s",
886 ren1_dst);
887 clean_merge = 0;
889 if (!index_only)
890 update_stages(ren1_dst,
891 ren1->pair->one,
892 ren1->pair->two,
893 ren2->pair->two,
894 1 /* clear */);
896 update_file(mfi.clean, mfi.sha, mfi.mode, ren1_dst);
898 } else {
899 /* Renamed in 1, maybe changed in 2 */
900 struct path_list_item *item;
901 /* we only use sha1 and mode of these */
902 struct diff_filespec src_other, dst_other;
903 int try_merge, stage = a_renames == renames1 ? 3: 2;
905 remove_file(1, ren1_src, index_only || stage == 3);
907 hashcpy(src_other.sha1, ren1->src_entry->stages[stage].sha);
908 src_other.mode = ren1->src_entry->stages[stage].mode;
909 hashcpy(dst_other.sha1, ren1->dst_entry->stages[stage].sha);
910 dst_other.mode = ren1->dst_entry->stages[stage].mode;
912 try_merge = 0;
914 if (path_list_has_path(&current_directory_set, ren1_dst)) {
915 clean_merge = 0;
916 output(1, "CONFLICT (rename/directory): Renamed %s->%s in %s "
917 " directory %s added in %s",
918 ren1_src, ren1_dst, branch1,
919 ren1_dst, branch2);
920 conflict_rename_dir(ren1, branch1);
921 } else if (sha_eq(src_other.sha1, null_sha1)) {
922 clean_merge = 0;
923 output(1, "CONFLICT (rename/delete): Renamed %s->%s in %s "
924 "and deleted in %s",
925 ren1_src, ren1_dst, branch1,
926 branch2);
927 update_file(0, ren1->pair->two->sha1, ren1->pair->two->mode, ren1_dst);
928 } else if (!sha_eq(dst_other.sha1, null_sha1)) {
929 const char *new_path;
930 clean_merge = 0;
931 try_merge = 1;
932 output(1, "CONFLICT (rename/add): Renamed %s->%s in %s. "
933 "%s added in %s",
934 ren1_src, ren1_dst, branch1,
935 ren1_dst, branch2);
936 new_path = unique_path(ren1_dst, branch2);
937 output(1, "Added as %s instead", new_path);
938 update_file(0, dst_other.sha1, dst_other.mode, new_path);
939 } else if ((item = path_list_lookup(ren1_dst, renames2Dst))) {
940 ren2 = item->util;
941 clean_merge = 0;
942 ren2->processed = 1;
943 output(1, "CONFLICT (rename/rename): Renamed %s->%s in %s. "
944 "Renamed %s->%s in %s",
945 ren1_src, ren1_dst, branch1,
946 ren2->pair->one->path, ren2->pair->two->path, branch2);
947 conflict_rename_rename_2(ren1, branch1, ren2, branch2);
948 } else
949 try_merge = 1;
951 if (try_merge) {
952 struct diff_filespec *o, *a, *b;
953 struct merge_file_info mfi;
954 src_other.path = (char *)ren1_src;
956 o = ren1->pair->one;
957 if (a_renames == renames1) {
958 a = ren1->pair->two;
959 b = &src_other;
960 } else {
961 b = ren1->pair->two;
962 a = &src_other;
964 mfi = merge_file(o, a, b,
965 a_branch, b_branch);
967 if (mfi.clean &&
968 sha_eq(mfi.sha, ren1->pair->two->sha1) &&
969 mfi.mode == ren1->pair->two->mode)
971 * This messaged is part of
972 * t6022 test. If you change
973 * it update the test too.
975 output(3, "Skipped %s (merged same as existing)", ren1_dst);
976 else {
977 if (mfi.merge || !mfi.clean)
978 output(1, "Renamed %s => %s", ren1_src, ren1_dst);
979 if (mfi.merge)
980 output(2, "Auto-merged %s", ren1_dst);
981 if (!mfi.clean) {
982 output(1, "CONFLICT (rename/modify): Merge conflict in %s",
983 ren1_dst);
984 clean_merge = 0;
986 if (!index_only)
987 update_stages(ren1_dst,
988 o, a, b, 1);
990 update_file(mfi.clean, mfi.sha, mfi.mode, ren1_dst);
995 path_list_clear(&a_by_dst, 0);
996 path_list_clear(&b_by_dst, 0);
998 return clean_merge;
1001 static unsigned char *stage_sha(const unsigned char *sha, unsigned mode)
1003 return (is_null_sha1(sha) || mode == 0) ? NULL: (unsigned char *)sha;
1006 /* Per entry merge function */
1007 static int process_entry(const char *path, struct stage_data *entry,
1008 const char *branch1,
1009 const char *branch2)
1012 printf("processing entry, clean cache: %s\n", index_only ? "yes": "no");
1013 print_index_entry("\tpath: ", entry);
1015 int clean_merge = 1;
1016 unsigned o_mode = entry->stages[1].mode;
1017 unsigned a_mode = entry->stages[2].mode;
1018 unsigned b_mode = entry->stages[3].mode;
1019 unsigned char *o_sha = stage_sha(entry->stages[1].sha, o_mode);
1020 unsigned char *a_sha = stage_sha(entry->stages[2].sha, a_mode);
1021 unsigned char *b_sha = stage_sha(entry->stages[3].sha, b_mode);
1023 if (o_sha && (!a_sha || !b_sha)) {
1024 /* Case A: Deleted in one */
1025 if ((!a_sha && !b_sha) ||
1026 (sha_eq(a_sha, o_sha) && !b_sha) ||
1027 (!a_sha && sha_eq(b_sha, o_sha))) {
1028 /* Deleted in both or deleted in one and
1029 * unchanged in the other */
1030 if (a_sha)
1031 output(2, "Removed %s", path);
1032 /* do not touch working file if it did not exist */
1033 remove_file(1, path, !a_sha);
1034 } else {
1035 /* Deleted in one and changed in the other */
1036 clean_merge = 0;
1037 if (!a_sha) {
1038 output(1, "CONFLICT (delete/modify): %s deleted in %s "
1039 "and modified in %s. Version %s of %s left in tree.",
1040 path, branch1,
1041 branch2, branch2, path);
1042 update_file(0, b_sha, b_mode, path);
1043 } else {
1044 output(1, "CONFLICT (delete/modify): %s deleted in %s "
1045 "and modified in %s. Version %s of %s left in tree.",
1046 path, branch2,
1047 branch1, branch1, path);
1048 update_file(0, a_sha, a_mode, path);
1052 } else if ((!o_sha && a_sha && !b_sha) ||
1053 (!o_sha && !a_sha && b_sha)) {
1054 /* Case B: Added in one. */
1055 const char *add_branch;
1056 const char *other_branch;
1057 unsigned mode;
1058 const unsigned char *sha;
1059 const char *conf;
1061 if (a_sha) {
1062 add_branch = branch1;
1063 other_branch = branch2;
1064 mode = a_mode;
1065 sha = a_sha;
1066 conf = "file/directory";
1067 } else {
1068 add_branch = branch2;
1069 other_branch = branch1;
1070 mode = b_mode;
1071 sha = b_sha;
1072 conf = "directory/file";
1074 if (path_list_has_path(&current_directory_set, path)) {
1075 const char *new_path = unique_path(path, add_branch);
1076 clean_merge = 0;
1077 output(1, "CONFLICT (%s): There is a directory with name %s in %s. "
1078 "Added %s as %s",
1079 conf, path, other_branch, path, new_path);
1080 remove_file(0, path, 0);
1081 update_file(0, sha, mode, new_path);
1082 } else {
1083 output(2, "Added %s", path);
1084 update_file(1, sha, mode, path);
1086 } else if (a_sha && b_sha) {
1087 /* Case C: Added in both (check for same permissions) and */
1088 /* case D: Modified in both, but differently. */
1089 const char *reason = "content";
1090 struct merge_file_info mfi;
1091 struct diff_filespec o, a, b;
1093 if (!o_sha) {
1094 reason = "add/add";
1095 o_sha = (unsigned char *)null_sha1;
1097 output(2, "Auto-merged %s", path);
1098 o.path = a.path = b.path = (char *)path;
1099 hashcpy(o.sha1, o_sha);
1100 o.mode = o_mode;
1101 hashcpy(a.sha1, a_sha);
1102 a.mode = a_mode;
1103 hashcpy(b.sha1, b_sha);
1104 b.mode = b_mode;
1106 mfi = merge_file(&o, &a, &b,
1107 branch1, branch2);
1109 clean_merge = mfi.clean;
1110 if (mfi.clean)
1111 update_file(1, mfi.sha, mfi.mode, path);
1112 else if (S_ISGITLINK(mfi.mode))
1113 output(1, "CONFLICT (submodule): Merge conflict in %s "
1114 "- needs %s", path, sha1_to_hex(b.sha1));
1115 else {
1116 output(1, "CONFLICT (%s): Merge conflict in %s",
1117 reason, path);
1119 if (index_only)
1120 update_file(0, mfi.sha, mfi.mode, path);
1121 else
1122 update_file_flags(mfi.sha, mfi.mode, path,
1123 0 /* update_cache */, 1 /* update_working_directory */);
1125 } else if (!o_sha && !a_sha && !b_sha) {
1127 * this entry was deleted altogether. a_mode == 0 means
1128 * we had that path and want to actively remove it.
1130 remove_file(1, path, !a_mode);
1131 } else
1132 die("Fatal merge failure, shouldn't happen.");
1134 return clean_merge;
1137 int merge_trees(struct tree *head,
1138 struct tree *merge,
1139 struct tree *common,
1140 const char *branch1,
1141 const char *branch2,
1142 struct tree **result)
1144 int code, clean;
1146 if (subtree_merge) {
1147 merge = shift_tree_object(head, merge);
1148 common = shift_tree_object(head, common);
1151 if (sha_eq(common->object.sha1, merge->object.sha1)) {
1152 output(0, "Already uptodate!");
1153 *result = head;
1154 return 1;
1157 code = git_merge_trees(index_only, common, head, merge);
1159 if (code != 0)
1160 die("merging of trees %s and %s failed",
1161 sha1_to_hex(head->object.sha1),
1162 sha1_to_hex(merge->object.sha1));
1164 if (unmerged_cache()) {
1165 struct path_list *entries, *re_head, *re_merge;
1166 int i;
1167 path_list_clear(&current_file_set, 1);
1168 path_list_clear(&current_directory_set, 1);
1169 get_files_dirs(head);
1170 get_files_dirs(merge);
1172 entries = get_unmerged();
1173 re_head = get_renames(head, common, head, merge, entries);
1174 re_merge = get_renames(merge, common, head, merge, entries);
1175 clean = process_renames(re_head, re_merge,
1176 branch1, branch2);
1177 for (i = 0; i < entries->nr; i++) {
1178 const char *path = entries->items[i].path;
1179 struct stage_data *e = entries->items[i].util;
1180 if (!e->processed
1181 && !process_entry(path, e, branch1, branch2))
1182 clean = 0;
1185 path_list_clear(re_merge, 0);
1186 path_list_clear(re_head, 0);
1187 path_list_clear(entries, 1);
1190 else
1191 clean = 1;
1193 if (index_only)
1194 *result = write_tree_from_memory();
1196 return clean;
1199 static struct commit_list *reverse_commit_list(struct commit_list *list)
1201 struct commit_list *next = NULL, *current, *backup;
1202 for (current = list; current; current = backup) {
1203 backup = current->next;
1204 current->next = next;
1205 next = current;
1207 return next;
1211 * Merge the commits h1 and h2, return the resulting virtual
1212 * commit object and a flag indicating the cleanness of the merge.
1214 int merge_recursive(struct commit *h1,
1215 struct commit *h2,
1216 const char *branch1,
1217 const char *branch2,
1218 struct commit_list *ca,
1219 struct commit **result)
1221 struct commit_list *iter;
1222 struct commit *merged_common_ancestors;
1223 struct tree *mrtree = mrtree;
1224 int clean;
1226 if (show(4)) {
1227 output(4, "Merging:");
1228 output_commit_title(h1);
1229 output_commit_title(h2);
1232 if (!ca) {
1233 ca = get_merge_bases(h1, h2, 1);
1234 ca = reverse_commit_list(ca);
1237 if (show(5)) {
1238 output(5, "found %u common ancestor(s):", commit_list_count(ca));
1239 for (iter = ca; iter; iter = iter->next)
1240 output_commit_title(iter->item);
1243 merged_common_ancestors = pop_commit(&ca);
1244 if (merged_common_ancestors == NULL) {
1245 /* if there is no common ancestor, make an empty tree */
1246 struct tree *tree = xcalloc(1, sizeof(struct tree));
1248 tree->object.parsed = 1;
1249 tree->object.type = OBJ_TREE;
1250 pretend_sha1_file(NULL, 0, OBJ_TREE, tree->object.sha1);
1251 merged_common_ancestors = make_virtual_commit(tree, "ancestor");
1254 for (iter = ca; iter; iter = iter->next) {
1255 call_depth++;
1257 * When the merge fails, the result contains files
1258 * with conflict markers. The cleanness flag is
1259 * ignored, it was never actually used, as result of
1260 * merge_trees has always overwritten it: the committed
1261 * "conflicts" were already resolved.
1263 discard_cache();
1264 merge_recursive(merged_common_ancestors, iter->item,
1265 "Temporary merge branch 1",
1266 "Temporary merge branch 2",
1267 NULL,
1268 &merged_common_ancestors);
1269 call_depth--;
1271 if (!merged_common_ancestors)
1272 die("merge returned no commit");
1275 discard_cache();
1276 if (!call_depth) {
1277 read_cache();
1278 index_only = 0;
1279 } else
1280 index_only = 1;
1282 clean = merge_trees(h1->tree, h2->tree, merged_common_ancestors->tree,
1283 branch1, branch2, &mrtree);
1285 if (index_only) {
1286 *result = make_virtual_commit(mrtree, "merged tree");
1287 commit_list_insert(h1, &(*result)->parents);
1288 commit_list_insert(h2, &(*result)->parents->next);
1290 flush_output();
1291 return clean;
1294 static const char *better_branch_name(const char *branch)
1296 static char githead_env[8 + 40 + 1];
1297 char *name;
1299 if (strlen(branch) != 40)
1300 return branch;
1301 sprintf(githead_env, "GITHEAD_%s", branch);
1302 name = getenv(githead_env);
1303 return name ? name : branch;
1306 static struct commit *get_ref(const char *ref)
1308 unsigned char sha1[20];
1309 struct object *object;
1311 if (get_sha1(ref, sha1))
1312 die("Could not resolve ref '%s'", ref);
1313 object = deref_tag(parse_object(sha1), ref, strlen(ref));
1314 if (!object)
1315 return NULL;
1316 if (object->type == OBJ_TREE)
1317 return make_virtual_commit((struct tree*)object,
1318 better_branch_name(ref));
1319 if (object->type != OBJ_COMMIT)
1320 return NULL;
1321 if (parse_commit((struct commit *)object))
1322 die("Could not parse commit '%s'", sha1_to_hex(object->sha1));
1323 return (struct commit *)object;
1326 static int merge_config(const char *var, const char *value)
1328 if (!strcasecmp(var, "merge.verbosity")) {
1329 verbosity = git_config_int(var, value);
1330 return 0;
1332 if (!strcasecmp(var, "diff.renamelimit")) {
1333 rename_limit = git_config_int(var, value);
1334 return 0;
1336 return git_default_config(var, value);
1339 int cmd_merge_recursive(int argc, const char **argv, const char *prefix)
1341 static const char *bases[20];
1342 static unsigned bases_count = 0;
1343 int i, clean;
1344 const char *branch1, *branch2;
1345 struct commit *result, *h1, *h2;
1346 struct commit_list *ca = NULL;
1347 struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
1348 int index_fd;
1350 if (argv[0]) {
1351 int namelen = strlen(argv[0]);
1352 if (8 < namelen &&
1353 !strcmp(argv[0] + namelen - 8, "-subtree"))
1354 subtree_merge = 1;
1357 git_config(merge_config);
1358 if (getenv("GIT_MERGE_VERBOSITY"))
1359 verbosity = strtol(getenv("GIT_MERGE_VERBOSITY"), NULL, 10);
1361 if (argc < 4)
1362 die("Usage: %s <base>... -- <head> <remote> ...\n", argv[0]);
1364 for (i = 1; i < argc; ++i) {
1365 if (!strcmp(argv[i], "--"))
1366 break;
1367 if (bases_count < sizeof(bases)/sizeof(*bases))
1368 bases[bases_count++] = argv[i];
1370 if (argc - i != 3) /* "--" "<head>" "<remote>" */
1371 die("Not handling anything other than two heads merge.");
1372 if (verbosity >= 5)
1373 buffer_output = 0;
1375 branch1 = argv[++i];
1376 branch2 = argv[++i];
1378 h1 = get_ref(branch1);
1379 h2 = get_ref(branch2);
1381 branch1 = better_branch_name(branch1);
1382 branch2 = better_branch_name(branch2);
1384 if (show(3))
1385 printf("Merging %s with %s\n", branch1, branch2);
1387 index_fd = hold_locked_index(lock, 1);
1389 for (i = 0; i < bases_count; i++) {
1390 struct commit *ancestor = get_ref(bases[i]);
1391 ca = commit_list_insert(ancestor, &ca);
1393 clean = merge_recursive(h1, h2, branch1, branch2, ca, &result);
1395 if (active_cache_changed &&
1396 (write_cache(index_fd, active_cache, active_nr) ||
1397 commit_locked_index(lock)))
1398 die ("unable to write %s", get_index_file());
1400 return clean ? 0: 1;