2 * Recursive Merge algorithm stolen from git-merge-recursive.py by
4 * The thieves were Alex Riesen and Johannes Schindelin, in June/July 2006
7 #include "cache-tree.h"
10 #include "tree-walk.h"
13 #include "run-command.h"
15 #include "unpack-trees.h"
16 #include "path-list.h"
17 #include "xdiff-interface.h"
18 #include "interpolate.h"
21 static int subtree_merge;
23 static struct tree *shift_tree_object(struct tree *one, struct tree *two)
25 unsigned char shifted[20];
28 * NEEDSWORK: this limits the recursion depth to hardcoded
29 * value '2' to avoid excessive overhead.
31 shift_tree(one->object.sha1, two->object.sha1, shifted, 2);
32 if (!hashcmp(two->object.sha1, shifted))
34 return lookup_tree(shifted);
38 * A virtual commit has
39 * - (const char *)commit->util set to the name, and
40 * - *(int *)commit->object.sha1 set to the virtual id.
43 static unsigned commit_list_count(const struct commit_list *l)
46 for (; l; l = l->next )
51 static struct commit *make_virtual_commit(struct tree *tree, const char *comment)
53 struct commit *commit = xcalloc(1, sizeof(struct commit));
54 static unsigned virtual_id = 1;
56 commit->util = (void*)comment;
57 *(int*)commit->object.sha1 = virtual_id++;
59 commit->object.parsed = 1;
64 * Since we use get_tree_entry(), which does not put the read object into
65 * the object pool, we cannot rely on a == b.
67 static int sha_eq(const unsigned char *a, const unsigned char *b)
71 return a && b && hashcmp(a, b) == 0;
75 * Since we want to write the index eventually, we cannot reuse the index
76 * for these (temporary) data.
83 unsigned char sha[20];
90 struct output_buffer *next;
94 static struct path_list current_file_set = {NULL, 0, 0, 1};
95 static struct path_list current_directory_set = {NULL, 0, 0, 1};
97 static int call_depth = 0;
98 static int verbosity = 2;
99 static int buffer_output = 1;
100 static struct output_buffer *output_list, *output_end;
102 static int show (int v)
104 return (!call_depth && verbosity >= v) || verbosity >= 5;
107 static void output(int v, const char *fmt, ...)
111 if (buffer_output && show(v)) {
112 struct output_buffer *b = xmalloc(sizeof(*b));
113 nfvasprintf(&b->str, fmt, args);
116 output_end->next = b;
120 } else if (show(v)) {
122 for (i = call_depth; i--;)
124 vfprintf(stdout, fmt, args);
130 static void flush_output()
132 struct output_buffer *b, *n;
133 for (b = output_list; b; b = n) {
135 for (i = call_depth; i--;)
137 fputs(b->str, stdout);
147 static void output_commit_title(struct commit *commit)
151 for (i = call_depth; i--;)
154 printf("virtual %s\n", (char *)commit->util);
156 printf("%s ", find_unique_abbrev(commit->object.sha1, DEFAULT_ABBREV));
157 if (parse_commit(commit) != 0)
158 printf("(bad commit)\n");
162 for (s = commit->buffer; *s; s++)
163 if (*s == '\n' && s[1] == '\n') {
167 for (len = 0; s[len] && '\n' != s[len]; len++)
169 printf("%.*s\n", len, s);
174 static struct cache_entry *make_cache_entry(unsigned int mode,
175 const unsigned char *sha1, const char *path, int stage, int refresh)
178 struct cache_entry *ce;
180 if (!verify_path(path))
184 size = cache_entry_size(len);
185 ce = xcalloc(1, size);
187 hashcpy(ce->sha1, sha1);
188 memcpy(ce->name, path, len);
189 ce->ce_flags = create_ce_flags(len, stage);
190 ce->ce_mode = create_ce_mode(mode);
193 return refresh_cache_entry(ce, 0);
198 static int add_cacheinfo(unsigned int mode, const unsigned char *sha1,
199 const char *path, int stage, int refresh, int options)
201 struct cache_entry *ce;
202 ce = make_cache_entry(mode, sha1 ? sha1 : null_sha1, path, stage, refresh);
204 return error("addinfo_cache failed for path '%s'", path);
205 return add_cache_entry(ce, options);
209 * This is a global variable which is used in a number of places but
210 * only written to in the 'merge' function.
212 * index_only == 1 => Don't leave any non-stage 0 entries in the cache and
213 * don't update the working directory.
214 * 0 => Leave unmerged entries in the cache and update
215 * the working directory.
217 static int index_only = 0;
219 static int git_merge_trees(int index_only,
225 struct object_list *trees = NULL;
226 struct unpack_trees_options opts;
228 memset(&opts, 0, sizeof(opts));
235 opts.fn = threeway_merge;
237 object_list_append(&common->object, &trees);
238 object_list_append(&head->object, &trees);
239 object_list_append(&merge->object, &trees);
241 rc = unpack_trees(trees, &opts);
242 cache_tree_free(&active_cache_tree);
246 static int unmerged_index(void)
249 for (i = 0; i < active_nr; i++) {
250 struct cache_entry *ce = active_cache[i];
257 static struct tree *git_write_tree(void)
259 struct tree *result = NULL;
261 if (unmerged_index()) {
263 output(0, "There are unmerged index entries:");
264 for (i = 0; i < active_nr; i++) {
265 struct cache_entry *ce = active_cache[i];
267 output(0, "%d %.*s", ce_stage(ce), ce_namelen(ce), ce->name);
272 if (!active_cache_tree)
273 active_cache_tree = cache_tree();
275 if (!cache_tree_fully_valid(active_cache_tree) &&
276 cache_tree_update(active_cache_tree,
277 active_cache, active_nr, 0, 0) < 0)
278 die("error building trees");
280 result = lookup_tree(active_cache_tree->sha1);
285 static int save_files_dirs(const unsigned char *sha1,
286 const char *base, int baselen, const char *path,
287 unsigned int mode, int stage)
289 int len = strlen(path);
290 char *newpath = xmalloc(baselen + len + 1);
291 memcpy(newpath, base, baselen);
292 memcpy(newpath + baselen, path, len);
293 newpath[baselen + len] = '\0';
296 path_list_insert(newpath, ¤t_directory_set);
298 path_list_insert(newpath, ¤t_file_set);
301 return READ_TREE_RECURSIVE;
304 static int get_files_dirs(struct tree *tree)
307 if (read_tree_recursive(tree, "", 0, 0, NULL, save_files_dirs) != 0)
309 n = current_file_set.nr + current_directory_set.nr;
314 * Returns a index_entry instance which doesn't have to correspond to
315 * a real cache entry in Git's index.
317 static struct stage_data *insert_stage_data(const char *path,
318 struct tree *o, struct tree *a, struct tree *b,
319 struct path_list *entries)
321 struct path_list_item *item;
322 struct stage_data *e = xcalloc(1, sizeof(struct stage_data));
323 get_tree_entry(o->object.sha1, path,
324 e->stages[1].sha, &e->stages[1].mode);
325 get_tree_entry(a->object.sha1, path,
326 e->stages[2].sha, &e->stages[2].mode);
327 get_tree_entry(b->object.sha1, path,
328 e->stages[3].sha, &e->stages[3].mode);
329 item = path_list_insert(path, entries);
335 * Create a dictionary mapping file names to stage_data objects. The
336 * dictionary contains one entry for every path with a non-zero stage entry.
338 static struct path_list *get_unmerged(void)
340 struct path_list *unmerged = xcalloc(1, sizeof(struct path_list));
343 unmerged->strdup_paths = 1;
345 for (i = 0; i < active_nr; i++) {
346 struct path_list_item *item;
347 struct stage_data *e;
348 struct cache_entry *ce = active_cache[i];
352 item = path_list_lookup(ce->name, unmerged);
354 item = path_list_insert(ce->name, unmerged);
355 item->util = xcalloc(1, sizeof(struct stage_data));
358 e->stages[ce_stage(ce)].mode = ntohl(ce->ce_mode);
359 hashcpy(e->stages[ce_stage(ce)].sha, ce->sha1);
367 struct diff_filepair *pair;
368 struct stage_data *src_entry;
369 struct stage_data *dst_entry;
370 unsigned processed:1;
374 * Get information of all renames which occurred between 'o_tree' and
375 * 'tree'. We need the three trees in the merge ('o_tree', 'a_tree' and
376 * 'b_tree') to be able to associate the correct cache entries with
377 * the rename information. 'tree' is always equal to either a_tree or b_tree.
379 static struct path_list *get_renames(struct tree *tree,
383 struct path_list *entries)
386 struct path_list *renames;
387 struct diff_options opts;
389 renames = xcalloc(1, sizeof(struct path_list));
392 opts.detect_rename = DIFF_DETECT_RENAME;
393 opts.output_format = DIFF_FORMAT_NO_OUTPUT;
394 if (diff_setup_done(&opts) < 0)
395 die("diff setup failed");
396 diff_tree_sha1(o_tree->object.sha1, tree->object.sha1, "", &opts);
398 for (i = 0; i < diff_queued_diff.nr; ++i) {
399 struct path_list_item *item;
401 struct diff_filepair *pair = diff_queued_diff.queue[i];
402 if (pair->status != 'R') {
403 diff_free_filepair(pair);
406 re = xmalloc(sizeof(*re));
409 item = path_list_lookup(re->pair->one->path, entries);
411 re->src_entry = insert_stage_data(re->pair->one->path,
412 o_tree, a_tree, b_tree, entries);
414 re->src_entry = item->util;
416 item = path_list_lookup(re->pair->two->path, entries);
418 re->dst_entry = insert_stage_data(re->pair->two->path,
419 o_tree, a_tree, b_tree, entries);
421 re->dst_entry = item->util;
422 item = path_list_insert(pair->one->path, renames);
425 opts.output_format = DIFF_FORMAT_NO_OUTPUT;
426 diff_queued_diff.nr = 0;
431 static int update_stages(const char *path, struct diff_filespec *o,
432 struct diff_filespec *a, struct diff_filespec *b,
435 int options = ADD_CACHE_OK_TO_ADD | ADD_CACHE_OK_TO_REPLACE;
437 if (remove_file_from_cache(path))
440 if (add_cacheinfo(o->mode, o->sha1, path, 1, 0, options))
443 if (add_cacheinfo(a->mode, a->sha1, path, 2, 0, options))
446 if (add_cacheinfo(b->mode, b->sha1, path, 3, 0, options))
451 static int remove_path(const char *name)
460 dirs = xmalloc(len+1);
461 memcpy(dirs, name, len);
463 while ((slash = strrchr(name, '/'))) {
466 if (rmdir(name) != 0)
473 static int remove_file(int clean, const char *path, int no_wd)
475 int update_cache = index_only || clean;
476 int update_working_directory = !index_only && !no_wd;
479 if (remove_file_from_cache(path))
482 if (update_working_directory) {
484 if (errno != ENOENT || errno != EISDIR)
491 static char *unique_path(const char *path, const char *branch)
493 char *newpath = xmalloc(strlen(path) + 1 + strlen(branch) + 8 + 1);
496 char *p = newpath + strlen(path);
497 strcpy(newpath, path);
503 while (path_list_has_path(¤t_file_set, newpath) ||
504 path_list_has_path(¤t_directory_set, newpath) ||
505 lstat(newpath, &st) == 0)
506 sprintf(p, "_%d", suffix++);
508 path_list_insert(newpath, ¤t_file_set);
512 static int mkdir_p(const char *path, unsigned long mode)
514 /* path points to cache entries, so xstrdup before messing with it */
515 char *buf = xstrdup(path);
516 int result = safe_create_leading_directories(buf);
521 static void flush_buffer(int fd, const char *buf, unsigned long size)
524 long ret = write_in_full(fd, buf, size);
529 die("merge-recursive: %s", strerror(errno));
531 die("merge-recursive: disk full?");
538 static int make_room_for_path(const char *path)
541 const char *msg = "failed to create path '%s'%s";
543 status = mkdir_p(path, 0777);
546 /* something else exists */
547 error(msg, path, ": perhaps a D/F conflict?");
553 /* Successful unlink is good.. */
556 /* .. and so is no existing file */
559 /* .. but not some other error (who really cares what?) */
560 return error(msg, path, ": perhaps a D/F conflict?");
563 static void update_file_flags(const unsigned char *sha,
573 enum object_type type;
577 buf = read_sha1_file(sha, &type, &size);
579 die("cannot read object %s '%s'", sha1_to_hex(sha), path);
580 if (type != OBJ_BLOB)
581 die("blob expected for %s '%s'", sha1_to_hex(sha), path);
583 if (make_room_for_path(path) < 0) {
587 if (S_ISREG(mode) || (!has_symlinks && S_ISLNK(mode))) {
593 fd = open(path, O_WRONLY | O_TRUNC | O_CREAT, mode);
595 die("failed to open %s: %s", path, strerror(errno));
596 flush_buffer(fd, buf, size);
598 } else if (S_ISLNK(mode)) {
599 char *lnk = xmalloc(size + 1);
600 memcpy(lnk, buf, size);
607 die("do not know what to do with %06o %s '%s'",
608 mode, sha1_to_hex(sha), path);
612 add_cacheinfo(mode, sha, path, 0, update_wd, ADD_CACHE_OK_TO_ADD);
615 static void update_file(int clean,
616 const unsigned char *sha,
620 update_file_flags(sha, mode, path, index_only || clean, !index_only);
623 /* Low level file merging, update and removal */
625 struct merge_file_info
627 unsigned char sha[20];
633 static void fill_mm(const unsigned char *sha1, mmfile_t *mm)
636 enum object_type type;
638 if (!hashcmp(sha1, null_sha1)) {
639 mm->ptr = xstrdup("");
644 mm->ptr = read_sha1_file(sha1, &type, &size);
645 if (!mm->ptr || type != OBJ_BLOB)
646 die("unable to read blob object %s", sha1_to_hex(sha1));
651 * Customizable low-level merge drivers support.
654 struct ll_merge_driver;
655 typedef int (*ll_merge_fn)(const struct ll_merge_driver *,
658 mmfile_t *src1, const char *name1,
659 mmfile_t *src2, const char *name2,
662 struct ll_merge_driver {
664 const char *description;
666 const char *recursive;
667 struct ll_merge_driver *next;
672 * Built-in low-levels
674 static int ll_xdl_merge(const struct ll_merge_driver *drv_unused,
675 const char *path_unused,
677 mmfile_t *src1, const char *name1,
678 mmfile_t *src2, const char *name2,
683 if (buffer_is_binary(orig->ptr, orig->size) ||
684 buffer_is_binary(src1->ptr, src1->size) ||
685 buffer_is_binary(src2->ptr, src2->size))
686 return error("Cannot merge binary files: %s vs. %s\n",
689 memset(&xpp, 0, sizeof(xpp));
690 return xdl_merge(orig,
693 &xpp, XDL_MERGE_ZEALOUS,
697 static int ll_union_merge(const struct ll_merge_driver *drv_unused,
698 const char *path_unused,
700 mmfile_t *src1, const char *name1,
701 mmfile_t *src2, const char *name2,
706 const int marker_size = 7;
708 int status = ll_xdl_merge(drv_unused, path_unused,
709 orig, src1, NULL, src2, NULL, result);
713 src = dst = result->ptr;
716 if ((marker_size < size) &&
717 (*src == '<' || *src == '=' || *src == '>')) {
720 for (i = 0; i < marker_size; i++)
723 if (src[marker_size] != '\n')
725 src += marker_size + 1;
726 size -= marker_size + 1;
734 } while (ch != '\n' && size);
736 result->size = dst - result->ptr;
740 static int ll_binary_merge(const struct ll_merge_driver *drv_unused,
741 const char *path_unused,
743 mmfile_t *src1, const char *name1,
744 mmfile_t *src2, const char *name2,
748 * The tentative merge result is "ours" for the final round,
749 * or common ancestor for an internal merge. Still return
750 * "conflicted merge" status.
752 mmfile_t *stolen = index_only ? orig : src1;
754 result->ptr = stolen->ptr;
755 result->size = stolen->size;
760 #define LL_BINARY_MERGE 0
761 #define LL_TEXT_MERGE 1
762 #define LL_UNION_MERGE 2
763 static struct ll_merge_driver ll_merge_drv[] = {
764 { "binary", "built-in binary merge", ll_binary_merge },
765 { "text", "built-in 3-way text merge", ll_xdl_merge },
766 { "union", "built-in union merge", ll_union_merge },
769 static void create_temp(mmfile_t *src, char *path)
773 strcpy(path, ".merge_file_XXXXXX");
776 die("unable to create temp-file");
777 if (write_in_full(fd, src->ptr, src->size) != src->size)
778 die("unable to write temp-file");
783 * User defined low-level merge driver support.
785 static int ll_ext_merge(const struct ll_merge_driver *fn,
788 mmfile_t *src1, const char *name1,
789 mmfile_t *src2, const char *name2,
794 struct interp table[] = {
799 struct child_process child;
800 const char *args[20];
804 if (fn->cmdline == NULL)
805 die("custom merge driver %s lacks command line.", fn->name);
809 create_temp(orig, temp[0]);
810 create_temp(src1, temp[1]);
811 create_temp(src2, temp[2]);
813 interp_set_entry(table, 0, temp[0]);
814 interp_set_entry(table, 1, temp[1]);
815 interp_set_entry(table, 2, temp[2]);
817 output(1, "merging %s using %s", path,
818 fn->description ? fn->description : fn->name);
820 interpolate(cmdbuf, sizeof(cmdbuf), fn->cmdline, table, 3);
822 memset(&child, 0, sizeof(child));
829 status = run_command(&child);
830 if (status < -ERR_RUN_COMMAND_FORK)
831 ; /* failure in run-command */
834 fd = open(temp[1], O_RDONLY);
839 result->size = st.st_size;
840 result->ptr = xmalloc(result->size + 1);
841 if (read_in_full(fd, result->ptr, result->size) != result->size) {
849 for (i = 0; i < 3; i++)
855 * merge.default and merge.driver configuration items
857 static struct ll_merge_driver *ll_user_merge, **ll_user_merge_tail;
858 static const char *default_ll_merge;
860 static int read_merge_config(const char *var, const char *value)
862 struct ll_merge_driver *fn;
863 const char *ep, *name;
866 if (!strcmp(var, "merge.default")) {
868 default_ll_merge = strdup(value);
873 * We are not interested in anything but "merge.<name>.variable";
874 * especially, we do not want to look at variables such as
875 * "merge.summary", "merge.tool", and "merge.verbosity".
877 if (prefixcmp(var, "merge.") || (ep = strrchr(var, '.')) == var + 5)
881 * Find existing one as we might be processing merge.<name>.var2
882 * after seeing merge.<name>.var1.
886 for (fn = ll_user_merge; fn; fn = fn->next)
887 if (!strncmp(fn->name, name, namelen) && !fn->name[namelen])
891 fn = xcalloc(1, sizeof(struct ll_merge_driver));
892 namebuf = xmalloc(namelen + 1);
893 memcpy(namebuf, name, namelen);
894 namebuf[namelen] = 0;
896 fn->fn = ll_ext_merge;
898 *ll_user_merge_tail = fn;
899 ll_user_merge_tail = &(fn->next);
904 if (!strcmp("name", ep)) {
906 return error("%s: lacks value", var);
907 fn->description = strdup(value);
911 if (!strcmp("driver", ep)) {
913 return error("%s: lacks value", var);
915 * merge.<name>.driver specifies the command line:
919 * The command-line will be interpolated with the following
920 * tokens and is given to the shell:
922 * %O - temporary file name for the merge base.
923 * %A - temporary file name for our version.
924 * %B - temporary file name for the other branches' version.
926 * The external merge driver should write the results in the
927 * file named by %A, and signal that it has done with zero exit
930 fn->cmdline = strdup(value);
934 if (!strcmp("recursive", ep)) {
936 return error("%s: lacks value", var);
937 fn->recursive = strdup(value);
944 static void initialize_ll_merge(void)
946 if (ll_user_merge_tail)
948 ll_user_merge_tail = &ll_user_merge;
949 git_config(read_merge_config);
952 static const struct ll_merge_driver *find_ll_merge_driver(const char *merge_attr)
954 struct ll_merge_driver *fn;
958 initialize_ll_merge();
960 if (ATTR_TRUE(merge_attr))
961 return &ll_merge_drv[LL_TEXT_MERGE];
962 else if (ATTR_FALSE(merge_attr))
963 return &ll_merge_drv[LL_BINARY_MERGE];
964 else if (ATTR_UNSET(merge_attr)) {
965 if (!default_ll_merge)
966 return &ll_merge_drv[LL_TEXT_MERGE];
968 name = default_ll_merge;
973 for (fn = ll_user_merge; fn; fn = fn->next)
974 if (!strcmp(fn->name, name))
977 for (i = 0; i < ARRAY_SIZE(ll_merge_drv); i++)
978 if (!strcmp(ll_merge_drv[i].name, name))
979 return &ll_merge_drv[i];
981 /* default to the 3-way */
982 return &ll_merge_drv[LL_TEXT_MERGE];
985 static const char *git_path_check_merge(const char *path)
987 static struct git_attr_check attr_merge_check;
989 if (!attr_merge_check.attr)
990 attr_merge_check.attr = git_attr("merge", 5);
992 if (git_checkattr(path, 1, &attr_merge_check))
994 return attr_merge_check.value;
997 static int ll_merge(mmbuffer_t *result_buf,
998 struct diff_filespec *o,
999 struct diff_filespec *a,
1000 struct diff_filespec *b,
1001 const char *branch1,
1002 const char *branch2)
1004 mmfile_t orig, src1, src2;
1005 char *name1, *name2;
1007 const char *ll_driver_name;
1008 const struct ll_merge_driver *driver;
1010 name1 = xstrdup(mkpath("%s:%s", branch1, a->path));
1011 name2 = xstrdup(mkpath("%s:%s", branch2, b->path));
1013 fill_mm(o->sha1, &orig);
1014 fill_mm(a->sha1, &src1);
1015 fill_mm(b->sha1, &src2);
1017 ll_driver_name = git_path_check_merge(a->path);
1018 driver = find_ll_merge_driver(ll_driver_name);
1020 if (index_only && driver->recursive)
1021 driver = find_ll_merge_driver(driver->recursive);
1022 merge_status = driver->fn(driver, a->path,
1023 &orig, &src1, name1, &src2, name2,
1031 return merge_status;
1034 static struct merge_file_info merge_file(struct diff_filespec *o,
1035 struct diff_filespec *a, struct diff_filespec *b,
1036 const char *branch1, const char *branch2)
1038 struct merge_file_info result;
1042 if ((S_IFMT & a->mode) != (S_IFMT & b->mode)) {
1044 if (S_ISREG(a->mode)) {
1045 result.mode = a->mode;
1046 hashcpy(result.sha, a->sha1);
1048 result.mode = b->mode;
1049 hashcpy(result.sha, b->sha1);
1052 if (!sha_eq(a->sha1, o->sha1) && !sha_eq(b->sha1, o->sha1))
1055 result.mode = a->mode == o->mode ? b->mode: a->mode;
1057 if (sha_eq(a->sha1, o->sha1))
1058 hashcpy(result.sha, b->sha1);
1059 else if (sha_eq(b->sha1, o->sha1))
1060 hashcpy(result.sha, a->sha1);
1061 else if (S_ISREG(a->mode)) {
1062 mmbuffer_t result_buf;
1065 merge_status = ll_merge(&result_buf, o, a, b,
1068 if ((merge_status < 0) || !result_buf.ptr)
1069 die("Failed to execute internal merge");
1071 if (write_sha1_file(result_buf.ptr, result_buf.size,
1072 blob_type, result.sha))
1073 die("Unable to add %s to database",
1076 free(result_buf.ptr);
1077 result.clean = (merge_status == 0);
1079 if (!(S_ISLNK(a->mode) || S_ISLNK(b->mode)))
1080 die("cannot merge modes?");
1082 hashcpy(result.sha, a->sha1);
1084 if (!sha_eq(a->sha1, b->sha1))
1092 static void conflict_rename_rename(struct rename *ren1,
1093 const char *branch1,
1094 struct rename *ren2,
1095 const char *branch2)
1099 const char *ren1_dst = ren1->pair->two->path;
1100 const char *ren2_dst = ren2->pair->two->path;
1101 const char *dst_name1 = ren1_dst;
1102 const char *dst_name2 = ren2_dst;
1103 if (path_list_has_path(¤t_directory_set, ren1_dst)) {
1104 dst_name1 = del[delp++] = unique_path(ren1_dst, branch1);
1105 output(1, "%s is a directory in %s added as %s instead",
1106 ren1_dst, branch2, dst_name1);
1107 remove_file(0, ren1_dst, 0);
1109 if (path_list_has_path(¤t_directory_set, ren2_dst)) {
1110 dst_name2 = del[delp++] = unique_path(ren2_dst, branch2);
1111 output(1, "%s is a directory in %s added as %s instead",
1112 ren2_dst, branch1, dst_name2);
1113 remove_file(0, ren2_dst, 0);
1116 remove_file_from_cache(dst_name1);
1117 remove_file_from_cache(dst_name2);
1119 * Uncomment to leave the conflicting names in the resulting tree
1121 * update_file(0, ren1->pair->two->sha1, ren1->pair->two->mode, dst_name1);
1122 * update_file(0, ren2->pair->two->sha1, ren2->pair->two->mode, dst_name2);
1125 update_stages(dst_name1, NULL, ren1->pair->two, NULL, 1);
1126 update_stages(dst_name2, NULL, NULL, ren2->pair->two, 1);
1132 static void conflict_rename_dir(struct rename *ren1,
1133 const char *branch1)
1135 char *new_path = unique_path(ren1->pair->two->path, branch1);
1136 output(1, "Renamed %s to %s instead", ren1->pair->one->path, new_path);
1137 remove_file(0, ren1->pair->two->path, 0);
1138 update_file(0, ren1->pair->two->sha1, ren1->pair->two->mode, new_path);
1142 static void conflict_rename_rename_2(struct rename *ren1,
1143 const char *branch1,
1144 struct rename *ren2,
1145 const char *branch2)
1147 char *new_path1 = unique_path(ren1->pair->two->path, branch1);
1148 char *new_path2 = unique_path(ren2->pair->two->path, branch2);
1149 output(1, "Renamed %s to %s and %s to %s instead",
1150 ren1->pair->one->path, new_path1,
1151 ren2->pair->one->path, new_path2);
1152 remove_file(0, ren1->pair->two->path, 0);
1153 update_file(0, ren1->pair->two->sha1, ren1->pair->two->mode, new_path1);
1154 update_file(0, ren2->pair->two->sha1, ren2->pair->two->mode, new_path2);
1159 static int process_renames(struct path_list *a_renames,
1160 struct path_list *b_renames,
1161 const char *a_branch,
1162 const char *b_branch)
1164 int clean_merge = 1, i, j;
1165 struct path_list a_by_dst = {NULL, 0, 0, 0}, b_by_dst = {NULL, 0, 0, 0};
1166 const struct rename *sre;
1168 for (i = 0; i < a_renames->nr; i++) {
1169 sre = a_renames->items[i].util;
1170 path_list_insert(sre->pair->two->path, &a_by_dst)->util
1173 for (i = 0; i < b_renames->nr; i++) {
1174 sre = b_renames->items[i].util;
1175 path_list_insert(sre->pair->two->path, &b_by_dst)->util
1179 for (i = 0, j = 0; i < a_renames->nr || j < b_renames->nr;) {
1182 struct path_list *renames1, *renames2, *renames2Dst;
1183 struct rename *ren1 = NULL, *ren2 = NULL;
1184 const char *branch1, *branch2;
1185 const char *ren1_src, *ren1_dst;
1187 if (i >= a_renames->nr) {
1189 ren2 = b_renames->items[j++].util;
1190 } else if (j >= b_renames->nr) {
1192 ren1 = a_renames->items[i++].util;
1194 compare = strcmp(a_renames->items[i].path,
1195 b_renames->items[j].path);
1197 ren1 = a_renames->items[i++].util;
1199 ren2 = b_renames->items[j++].util;
1202 /* TODO: refactor, so that 1/2 are not needed */
1204 renames1 = a_renames;
1205 renames2 = b_renames;
1206 renames2Dst = &b_by_dst;
1211 renames1 = b_renames;
1212 renames2 = a_renames;
1213 renames2Dst = &a_by_dst;
1220 src = ren1->pair->one->path;
1222 ren1->dst_entry->processed = 1;
1223 ren1->src_entry->processed = 1;
1225 if (ren1->processed)
1227 ren1->processed = 1;
1229 ren1_src = ren1->pair->one->path;
1230 ren1_dst = ren1->pair->two->path;
1233 const char *ren2_src = ren2->pair->one->path;
1234 const char *ren2_dst = ren2->pair->two->path;
1235 /* Renamed in 1 and renamed in 2 */
1236 if (strcmp(ren1_src, ren2_src) != 0)
1237 die("ren1.src != ren2.src");
1238 ren2->dst_entry->processed = 1;
1239 ren2->processed = 1;
1240 if (strcmp(ren1_dst, ren2_dst) != 0) {
1242 output(1, "CONFLICT (rename/rename): "
1243 "Rename \"%s\"->\"%s\" in branch \"%s\" "
1244 "rename \"%s\"->\"%s\" in \"%s\"%s",
1245 src, ren1_dst, branch1,
1246 src, ren2_dst, branch2,
1247 index_only ? " (left unresolved)": "");
1249 remove_file_from_cache(src);
1250 update_file(0, ren1->pair->one->sha1,
1251 ren1->pair->one->mode, src);
1253 conflict_rename_rename(ren1, branch1, ren2, branch2);
1255 struct merge_file_info mfi;
1256 remove_file(1, ren1_src, 1);
1257 mfi = merge_file(ren1->pair->one,
1262 if (mfi.merge || !mfi.clean)
1263 output(1, "Renamed %s->%s", src, ren1_dst);
1266 output(2, "Auto-merged %s", ren1_dst);
1269 output(1, "CONFLICT (content): merge conflict in %s",
1274 update_stages(ren1_dst,
1280 update_file(mfi.clean, mfi.sha, mfi.mode, ren1_dst);
1283 /* Renamed in 1, maybe changed in 2 */
1284 struct path_list_item *item;
1285 /* we only use sha1 and mode of these */
1286 struct diff_filespec src_other, dst_other;
1287 int try_merge, stage = a_renames == renames1 ? 3: 2;
1289 remove_file(1, ren1_src, index_only || stage == 3);
1291 hashcpy(src_other.sha1, ren1->src_entry->stages[stage].sha);
1292 src_other.mode = ren1->src_entry->stages[stage].mode;
1293 hashcpy(dst_other.sha1, ren1->dst_entry->stages[stage].sha);
1294 dst_other.mode = ren1->dst_entry->stages[stage].mode;
1298 if (path_list_has_path(¤t_directory_set, ren1_dst)) {
1300 output(1, "CONFLICT (rename/directory): Renamed %s->%s in %s "
1301 " directory %s added in %s",
1302 ren1_src, ren1_dst, branch1,
1304 conflict_rename_dir(ren1, branch1);
1305 } else if (sha_eq(src_other.sha1, null_sha1)) {
1307 output(1, "CONFLICT (rename/delete): Renamed %s->%s in %s "
1308 "and deleted in %s",
1309 ren1_src, ren1_dst, branch1,
1311 update_file(0, ren1->pair->two->sha1, ren1->pair->two->mode, ren1_dst);
1312 } else if (!sha_eq(dst_other.sha1, null_sha1)) {
1313 const char *new_path;
1316 output(1, "CONFLICT (rename/add): Renamed %s->%s in %s. "
1318 ren1_src, ren1_dst, branch1,
1320 new_path = unique_path(ren1_dst, branch2);
1321 output(1, "Added as %s instead", new_path);
1322 update_file(0, dst_other.sha1, dst_other.mode, new_path);
1323 } else if ((item = path_list_lookup(ren1_dst, renames2Dst))) {
1326 ren2->processed = 1;
1327 output(1, "CONFLICT (rename/rename): Renamed %s->%s in %s. "
1328 "Renamed %s->%s in %s",
1329 ren1_src, ren1_dst, branch1,
1330 ren2->pair->one->path, ren2->pair->two->path, branch2);
1331 conflict_rename_rename_2(ren1, branch1, ren2, branch2);
1336 struct diff_filespec *o, *a, *b;
1337 struct merge_file_info mfi;
1338 src_other.path = (char *)ren1_src;
1340 o = ren1->pair->one;
1341 if (a_renames == renames1) {
1342 a = ren1->pair->two;
1345 b = ren1->pair->two;
1348 mfi = merge_file(o, a, b,
1349 a_branch, b_branch);
1352 sha_eq(mfi.sha, ren1->pair->two->sha1) &&
1353 mfi.mode == ren1->pair->two->mode)
1355 * This messaged is part of
1356 * t6022 test. If you change
1357 * it update the test too.
1359 output(3, "Skipped %s (merged same as existing)", ren1_dst);
1361 if (mfi.merge || !mfi.clean)
1362 output(1, "Renamed %s => %s", ren1_src, ren1_dst);
1364 output(2, "Auto-merged %s", ren1_dst);
1366 output(1, "CONFLICT (rename/modify): Merge conflict in %s",
1371 update_stages(ren1_dst,
1374 update_file(mfi.clean, mfi.sha, mfi.mode, ren1_dst);
1379 path_list_clear(&a_by_dst, 0);
1380 path_list_clear(&b_by_dst, 0);
1385 static unsigned char *stage_sha(const unsigned char *sha, unsigned mode)
1387 return (is_null_sha1(sha) || mode == 0) ? NULL: (unsigned char *)sha;
1390 /* Per entry merge function */
1391 static int process_entry(const char *path, struct stage_data *entry,
1392 const char *branch1,
1393 const char *branch2)
1396 printf("processing entry, clean cache: %s\n", index_only ? "yes": "no");
1397 print_index_entry("\tpath: ", entry);
1399 int clean_merge = 1;
1400 unsigned o_mode = entry->stages[1].mode;
1401 unsigned a_mode = entry->stages[2].mode;
1402 unsigned b_mode = entry->stages[3].mode;
1403 unsigned char *o_sha = stage_sha(entry->stages[1].sha, o_mode);
1404 unsigned char *a_sha = stage_sha(entry->stages[2].sha, a_mode);
1405 unsigned char *b_sha = stage_sha(entry->stages[3].sha, b_mode);
1407 if (o_sha && (!a_sha || !b_sha)) {
1408 /* Case A: Deleted in one */
1409 if ((!a_sha && !b_sha) ||
1410 (sha_eq(a_sha, o_sha) && !b_sha) ||
1411 (!a_sha && sha_eq(b_sha, o_sha))) {
1412 /* Deleted in both or deleted in one and
1413 * unchanged in the other */
1415 output(2, "Removed %s", path);
1416 /* do not touch working file if it did not exist */
1417 remove_file(1, path, !a_sha);
1419 /* Deleted in one and changed in the other */
1422 output(1, "CONFLICT (delete/modify): %s deleted in %s "
1423 "and modified in %s. Version %s of %s left in tree.",
1425 branch2, branch2, path);
1426 update_file(0, b_sha, b_mode, path);
1428 output(1, "CONFLICT (delete/modify): %s deleted in %s "
1429 "and modified in %s. Version %s of %s left in tree.",
1431 branch1, branch1, path);
1432 update_file(0, a_sha, a_mode, path);
1436 } else if ((!o_sha && a_sha && !b_sha) ||
1437 (!o_sha && !a_sha && b_sha)) {
1438 /* Case B: Added in one. */
1439 const char *add_branch;
1440 const char *other_branch;
1442 const unsigned char *sha;
1446 add_branch = branch1;
1447 other_branch = branch2;
1450 conf = "file/directory";
1452 add_branch = branch2;
1453 other_branch = branch1;
1456 conf = "directory/file";
1458 if (path_list_has_path(¤t_directory_set, path)) {
1459 const char *new_path = unique_path(path, add_branch);
1461 output(1, "CONFLICT (%s): There is a directory with name %s in %s. "
1463 conf, path, other_branch, path, new_path);
1464 remove_file(0, path, 0);
1465 update_file(0, sha, mode, new_path);
1467 output(2, "Added %s", path);
1468 update_file(1, sha, mode, path);
1470 } else if (a_sha && b_sha) {
1471 /* Case C: Added in both (check for same permissions) and */
1472 /* case D: Modified in both, but differently. */
1473 const char *reason = "content";
1474 struct merge_file_info mfi;
1475 struct diff_filespec o, a, b;
1479 o_sha = (unsigned char *)null_sha1;
1481 output(2, "Auto-merged %s", path);
1482 o.path = a.path = b.path = (char *)path;
1483 hashcpy(o.sha1, o_sha);
1485 hashcpy(a.sha1, a_sha);
1487 hashcpy(b.sha1, b_sha);
1490 mfi = merge_file(&o, &a, &b,
1494 update_file(1, mfi.sha, mfi.mode, path);
1497 output(1, "CONFLICT (%s): Merge conflict in %s",
1501 update_file(0, mfi.sha, mfi.mode, path);
1503 update_file_flags(mfi.sha, mfi.mode, path,
1504 0 /* update_cache */, 1 /* update_working_directory */);
1506 } else if (!o_sha && !a_sha && !b_sha) {
1508 * this entry was deleted altogether. a_mode == 0 means
1509 * we had that path and want to actively remove it.
1511 remove_file(1, path, !a_mode);
1513 die("Fatal merge failure, shouldn't happen.");
1518 static int merge_trees(struct tree *head,
1520 struct tree *common,
1521 const char *branch1,
1522 const char *branch2,
1523 struct tree **result)
1527 if (subtree_merge) {
1528 merge = shift_tree_object(head, merge);
1529 common = shift_tree_object(head, common);
1532 if (sha_eq(common->object.sha1, merge->object.sha1)) {
1533 output(0, "Already uptodate!");
1538 code = git_merge_trees(index_only, common, head, merge);
1541 die("merging of trees %s and %s failed",
1542 sha1_to_hex(head->object.sha1),
1543 sha1_to_hex(merge->object.sha1));
1545 if (unmerged_index()) {
1546 struct path_list *entries, *re_head, *re_merge;
1548 path_list_clear(¤t_file_set, 1);
1549 path_list_clear(¤t_directory_set, 1);
1550 get_files_dirs(head);
1551 get_files_dirs(merge);
1553 entries = get_unmerged();
1554 re_head = get_renames(head, common, head, merge, entries);
1555 re_merge = get_renames(merge, common, head, merge, entries);
1556 clean = process_renames(re_head, re_merge,
1558 for (i = 0; i < entries->nr; i++) {
1559 const char *path = entries->items[i].path;
1560 struct stage_data *e = entries->items[i].util;
1562 && !process_entry(path, e, branch1, branch2))
1566 path_list_clear(re_merge, 0);
1567 path_list_clear(re_head, 0);
1568 path_list_clear(entries, 1);
1575 *result = git_write_tree();
1580 static struct commit_list *reverse_commit_list(struct commit_list *list)
1582 struct commit_list *next = NULL, *current, *backup;
1583 for (current = list; current; current = backup) {
1584 backup = current->next;
1585 current->next = next;
1592 * Merge the commits h1 and h2, return the resulting virtual
1593 * commit object and a flag indicating the cleanness of the merge.
1595 static int merge(struct commit *h1,
1597 const char *branch1,
1598 const char *branch2,
1599 struct commit_list *ca,
1600 struct commit **result)
1602 struct commit_list *iter;
1603 struct commit *merged_common_ancestors;
1604 struct tree *mrtree;
1608 output(4, "Merging:");
1609 output_commit_title(h1);
1610 output_commit_title(h2);
1614 ca = get_merge_bases(h1, h2, 1);
1615 ca = reverse_commit_list(ca);
1619 output(5, "found %u common ancestor(s):", commit_list_count(ca));
1620 for (iter = ca; iter; iter = iter->next)
1621 output_commit_title(iter->item);
1624 merged_common_ancestors = pop_commit(&ca);
1625 if (merged_common_ancestors == NULL) {
1626 /* if there is no common ancestor, make an empty tree */
1627 struct tree *tree = xcalloc(1, sizeof(struct tree));
1629 tree->object.parsed = 1;
1630 tree->object.type = OBJ_TREE;
1631 pretend_sha1_file(NULL, 0, OBJ_TREE, tree->object.sha1);
1632 merged_common_ancestors = make_virtual_commit(tree, "ancestor");
1635 for (iter = ca; iter; iter = iter->next) {
1638 * When the merge fails, the result contains files
1639 * with conflict markers. The cleanness flag is
1640 * ignored, it was never actually used, as result of
1641 * merge_trees has always overwritten it: the committed
1642 * "conflicts" were already resolved.
1645 merge(merged_common_ancestors, iter->item,
1646 "Temporary merge branch 1",
1647 "Temporary merge branch 2",
1649 &merged_common_ancestors);
1652 if (!merged_common_ancestors)
1653 die("merge returned no commit");
1663 clean = merge_trees(h1->tree, h2->tree, merged_common_ancestors->tree,
1664 branch1, branch2, &mrtree);
1667 *result = make_virtual_commit(mrtree, "merged tree");
1668 commit_list_insert(h1, &(*result)->parents);
1669 commit_list_insert(h2, &(*result)->parents->next);
1675 static const char *better_branch_name(const char *branch)
1677 static char githead_env[8 + 40 + 1];
1680 if (strlen(branch) != 40)
1682 sprintf(githead_env, "GITHEAD_%s", branch);
1683 name = getenv(githead_env);
1684 return name ? name : branch;
1687 static struct commit *get_ref(const char *ref)
1689 unsigned char sha1[20];
1690 struct object *object;
1692 if (get_sha1(ref, sha1))
1693 die("Could not resolve ref '%s'", ref);
1694 object = deref_tag(parse_object(sha1), ref, strlen(ref));
1695 if (object->type == OBJ_TREE)
1696 return make_virtual_commit((struct tree*)object,
1697 better_branch_name(ref));
1698 if (object->type != OBJ_COMMIT)
1700 if (parse_commit((struct commit *)object))
1701 die("Could not parse commit '%s'", sha1_to_hex(object->sha1));
1702 return (struct commit *)object;
1705 static int merge_config(const char *var, const char *value)
1707 if (!strcasecmp(var, "merge.verbosity")) {
1708 verbosity = git_config_int(var, value);
1711 return git_default_config(var, value);
1714 int main(int argc, char *argv[])
1716 static const char *bases[20];
1717 static unsigned bases_count = 0;
1719 const char *branch1, *branch2;
1720 struct commit *result, *h1, *h2;
1721 struct commit_list *ca = NULL;
1722 struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
1726 int namelen = strlen(argv[0]);
1728 !strcmp(argv[0] + namelen - 8, "-subtree"))
1732 git_config(merge_config);
1733 if (getenv("GIT_MERGE_VERBOSITY"))
1734 verbosity = strtol(getenv("GIT_MERGE_VERBOSITY"), NULL, 10);
1737 die("Usage: %s <base>... -- <head> <remote> ...\n", argv[0]);
1739 for (i = 1; i < argc; ++i) {
1740 if (!strcmp(argv[i], "--"))
1742 if (bases_count < sizeof(bases)/sizeof(*bases))
1743 bases[bases_count++] = argv[i];
1745 if (argc - i != 3) /* "--" "<head>" "<remote>" */
1746 die("Not handling anything other than two heads merge.");
1750 branch1 = argv[++i];
1751 branch2 = argv[++i];
1753 h1 = get_ref(branch1);
1754 h2 = get_ref(branch2);
1756 branch1 = better_branch_name(branch1);
1757 branch2 = better_branch_name(branch2);
1760 printf("Merging %s with %s\n", branch1, branch2);
1762 index_fd = hold_locked_index(lock, 1);
1764 for (i = 0; i < bases_count; i++) {
1765 struct commit *ancestor = get_ref(bases[i]);
1766 ca = commit_list_insert(ancestor, &ca);
1768 clean = merge(h1, h2, branch1, branch2, ca, &result);
1770 if (active_cache_changed &&
1771 (write_cache(index_fd, active_cache, active_nr) ||
1772 close(index_fd) || commit_locked_index(lock)))
1773 die ("unable to write %s", get_index_file());
1775 return clean ? 0: 1;