2 * Recursive Merge algorithm stolen from git-merge-recursive.py by
4 * The thieves were Alex Riesen and Johannes Schindelin, in June/July 2006
10 #include "cache-tree.h"
14 #include "tree-walk.h"
18 #include "unpack-trees.h"
19 #include "string-list.h"
20 #include "xdiff-interface.h"
23 #include "merge-recursive.h"
25 #include "submodule.h"
27 struct path_hashmap_entry
{
28 struct hashmap_entry e
;
29 char path
[FLEX_ARRAY
];
32 static int path_hashmap_cmp(const void *cmp_data
,
34 const void *entry_or_key
,
37 const struct path_hashmap_entry
*a
= entry
;
38 const struct path_hashmap_entry
*b
= entry_or_key
;
39 const char *key
= keydata
;
42 return strcasecmp(a
->path
, key
? key
: b
->path
);
44 return strcmp(a
->path
, key
? key
: b
->path
);
47 static unsigned int path_hash(const char *path
)
49 return ignore_case
? strihash(path
) : strhash(path
);
52 static struct dir_rename_entry
*dir_rename_find_entry(struct hashmap
*hashmap
,
55 struct dir_rename_entry key
;
59 hashmap_entry_init(&key
, strhash(dir
));
61 return hashmap_get(hashmap
, &key
, NULL
);
64 static int dir_rename_cmp(const void *unused_cmp_data
,
66 const void *entry_or_key
,
67 const void *unused_keydata
)
69 const struct dir_rename_entry
*e1
= entry
;
70 const struct dir_rename_entry
*e2
= entry_or_key
;
72 return strcmp(e1
->dir
, e2
->dir
);
75 static void dir_rename_init(struct hashmap
*map
)
77 hashmap_init(map
, dir_rename_cmp
, NULL
, 0);
80 static void dir_rename_entry_init(struct dir_rename_entry
*entry
,
83 hashmap_entry_init(entry
, strhash(directory
));
84 entry
->dir
= directory
;
85 entry
->non_unique_new_dir
= 0;
86 strbuf_init(&entry
->new_dir
, 0);
87 string_list_init(&entry
->possible_new_dirs
, 0);
90 static void flush_output(struct merge_options
*o
)
92 if (o
->buffer_output
< 2 && o
->obuf
.len
) {
93 fputs(o
->obuf
.buf
, stdout
);
94 strbuf_reset(&o
->obuf
);
98 static int err(struct merge_options
*o
, const char *err
, ...)
102 if (o
->buffer_output
< 2)
105 strbuf_complete(&o
->obuf
, '\n');
106 strbuf_addstr(&o
->obuf
, "error: ");
108 va_start(params
, err
);
109 strbuf_vaddf(&o
->obuf
, err
, params
);
111 if (o
->buffer_output
> 1)
112 strbuf_addch(&o
->obuf
, '\n');
114 error("%s", o
->obuf
.buf
);
115 strbuf_reset(&o
->obuf
);
121 static struct tree
*shift_tree_object(struct tree
*one
, struct tree
*two
,
122 const char *subtree_shift
)
124 struct object_id shifted
;
126 if (!*subtree_shift
) {
127 shift_tree(&one
->object
.oid
, &two
->object
.oid
, &shifted
, 0);
129 shift_tree_by(&one
->object
.oid
, &two
->object
.oid
, &shifted
,
132 if (!oidcmp(&two
->object
.oid
, &shifted
))
134 return lookup_tree(&shifted
);
137 static struct commit
*make_virtual_commit(struct tree
*tree
, const char *comment
)
139 struct commit
*commit
= alloc_commit_node();
141 set_merge_remote_desc(commit
, comment
, (struct object
*)commit
);
143 commit
->object
.parsed
= 1;
148 * Since we use get_tree_entry(), which does not put the read object into
149 * the object pool, we cannot rely on a == b.
151 static int oid_eq(const struct object_id
*a
, const struct object_id
*b
)
155 return a
&& b
&& oidcmp(a
, b
) == 0;
161 RENAME_ONE_FILE_TO_ONE
,
162 RENAME_ONE_FILE_TO_TWO
,
163 RENAME_TWO_FILES_TO_ONE
166 struct rename_conflict_info
{
167 enum rename_type rename_type
;
168 struct diff_filepair
*pair1
;
169 struct diff_filepair
*pair2
;
172 struct stage_data
*dst_entry1
;
173 struct stage_data
*dst_entry2
;
174 struct diff_filespec ren1_other
;
175 struct diff_filespec ren2_other
;
179 * Since we want to write the index eventually, we cannot reuse the index
180 * for these (temporary) data.
185 struct object_id oid
;
187 struct rename_conflict_info
*rename_conflict_info
;
188 unsigned processed
:1;
191 static inline void setup_rename_conflict_info(enum rename_type rename_type
,
192 struct diff_filepair
*pair1
,
193 struct diff_filepair
*pair2
,
196 struct stage_data
*dst_entry1
,
197 struct stage_data
*dst_entry2
,
198 struct merge_options
*o
,
199 struct stage_data
*src_entry1
,
200 struct stage_data
*src_entry2
)
202 struct rename_conflict_info
*ci
= xcalloc(1, sizeof(struct rename_conflict_info
));
203 ci
->rename_type
= rename_type
;
205 ci
->branch1
= branch1
;
206 ci
->branch2
= branch2
;
208 ci
->dst_entry1
= dst_entry1
;
209 dst_entry1
->rename_conflict_info
= ci
;
210 dst_entry1
->processed
= 0;
212 assert(!pair2
== !dst_entry2
);
214 ci
->dst_entry2
= dst_entry2
;
216 dst_entry2
->rename_conflict_info
= ci
;
219 if (rename_type
== RENAME_TWO_FILES_TO_ONE
) {
221 * For each rename, there could have been
222 * modifications on the side of history where that
223 * file was not renamed.
225 int ostage1
= o
->branch1
== branch1
? 3 : 2;
226 int ostage2
= ostage1
^ 1;
228 ci
->ren1_other
.path
= pair1
->one
->path
;
229 oidcpy(&ci
->ren1_other
.oid
, &src_entry1
->stages
[ostage1
].oid
);
230 ci
->ren1_other
.mode
= src_entry1
->stages
[ostage1
].mode
;
232 ci
->ren2_other
.path
= pair2
->one
->path
;
233 oidcpy(&ci
->ren2_other
.oid
, &src_entry2
->stages
[ostage2
].oid
);
234 ci
->ren2_other
.mode
= src_entry2
->stages
[ostage2
].mode
;
238 static int show(struct merge_options
*o
, int v
)
240 return (!o
->call_depth
&& o
->verbosity
>= v
) || o
->verbosity
>= 5;
243 __attribute__((format (printf
, 3, 4)))
244 static void output(struct merge_options
*o
, int v
, const char *fmt
, ...)
251 strbuf_addchars(&o
->obuf
, ' ', o
->call_depth
* 2);
254 strbuf_vaddf(&o
->obuf
, fmt
, ap
);
257 strbuf_addch(&o
->obuf
, '\n');
258 if (!o
->buffer_output
)
262 static void output_commit_title(struct merge_options
*o
, struct commit
*commit
)
264 strbuf_addchars(&o
->obuf
, ' ', o
->call_depth
* 2);
266 strbuf_addf(&o
->obuf
, "virtual %s\n",
267 merge_remote_util(commit
)->name
);
269 strbuf_add_unique_abbrev(&o
->obuf
, &commit
->object
.oid
,
271 strbuf_addch(&o
->obuf
, ' ');
272 if (parse_commit(commit
) != 0)
273 strbuf_addstr(&o
->obuf
, _("(bad commit)\n"));
276 const char *msg
= get_commit_buffer(commit
, NULL
);
277 int len
= find_commit_subject(msg
, &title
);
279 strbuf_addf(&o
->obuf
, "%.*s\n", len
, title
);
280 unuse_commit_buffer(commit
, msg
);
286 static int add_cacheinfo(struct merge_options
*o
,
287 unsigned int mode
, const struct object_id
*oid
,
288 const char *path
, int stage
, int refresh
, int options
)
290 struct cache_entry
*ce
;
293 ce
= make_cache_entry(mode
, oid
? oid
->hash
: null_sha1
, path
, stage
, 0);
295 return err(o
, _("addinfo_cache failed for path '%s'"), path
);
297 ret
= add_cache_entry(ce
, options
);
299 struct cache_entry
*nce
;
301 nce
= refresh_cache_entry(ce
, CE_MATCH_REFRESH
| CE_MATCH_IGNORE_MISSING
);
303 return err(o
, _("addinfo_cache failed for path '%s'"), path
);
305 ret
= add_cache_entry(nce
, options
);
310 static void init_tree_desc_from_tree(struct tree_desc
*desc
, struct tree
*tree
)
313 init_tree_desc(desc
, tree
->buffer
, tree
->size
);
316 static int git_merge_trees(int index_only
,
322 struct tree_desc t
[3];
323 struct unpack_trees_options opts
;
325 memset(&opts
, 0, sizeof(opts
));
332 opts
.fn
= threeway_merge
;
333 opts
.src_index
= &the_index
;
334 opts
.dst_index
= &the_index
;
335 setup_unpack_trees_porcelain(&opts
, "merge");
337 init_tree_desc_from_tree(t
+0, common
);
338 init_tree_desc_from_tree(t
+1, head
);
339 init_tree_desc_from_tree(t
+2, merge
);
341 rc
= unpack_trees(3, t
, &opts
);
342 cache_tree_free(&active_cache_tree
);
346 struct tree
*write_tree_from_memory(struct merge_options
*o
)
348 struct tree
*result
= NULL
;
350 if (unmerged_cache()) {
352 fprintf(stderr
, "BUG: There are unmerged index entries:\n");
353 for (i
= 0; i
< active_nr
; i
++) {
354 const struct cache_entry
*ce
= active_cache
[i
];
356 fprintf(stderr
, "BUG: %d %.*s\n", ce_stage(ce
),
357 (int)ce_namelen(ce
), ce
->name
);
359 die("BUG: unmerged index entries in merge-recursive.c");
362 if (!active_cache_tree
)
363 active_cache_tree
= cache_tree();
365 if (!cache_tree_fully_valid(active_cache_tree
) &&
366 cache_tree_update(&the_index
, 0) < 0) {
367 err(o
, _("error building trees"));
371 result
= lookup_tree(&active_cache_tree
->oid
);
376 static int save_files_dirs(const struct object_id
*oid
,
377 struct strbuf
*base
, const char *path
,
378 unsigned int mode
, int stage
, void *context
)
380 struct path_hashmap_entry
*entry
;
381 int baselen
= base
->len
;
382 struct merge_options
*o
= context
;
384 strbuf_addstr(base
, path
);
386 FLEX_ALLOC_MEM(entry
, path
, base
->buf
, base
->len
);
387 hashmap_entry_init(entry
, path_hash(entry
->path
));
388 hashmap_add(&o
->current_file_dir_set
, entry
);
390 strbuf_setlen(base
, baselen
);
391 return (S_ISDIR(mode
) ? READ_TREE_RECURSIVE
: 0);
394 static void get_files_dirs(struct merge_options
*o
, struct tree
*tree
)
396 struct pathspec match_all
;
397 memset(&match_all
, 0, sizeof(match_all
));
398 read_tree_recursive(tree
, "", 0, 0, &match_all
, save_files_dirs
, o
);
402 * Returns an index_entry instance which doesn't have to correspond to
403 * a real cache entry in Git's index.
405 static struct stage_data
*insert_stage_data(const char *path
,
406 struct tree
*o
, struct tree
*a
, struct tree
*b
,
407 struct string_list
*entries
)
409 struct string_list_item
*item
;
410 struct stage_data
*e
= xcalloc(1, sizeof(struct stage_data
));
411 get_tree_entry(&o
->object
.oid
, path
,
412 &e
->stages
[1].oid
, &e
->stages
[1].mode
);
413 get_tree_entry(&a
->object
.oid
, path
,
414 &e
->stages
[2].oid
, &e
->stages
[2].mode
);
415 get_tree_entry(&b
->object
.oid
, path
,
416 &e
->stages
[3].oid
, &e
->stages
[3].mode
);
417 item
= string_list_insert(entries
, path
);
423 * Create a dictionary mapping file names to stage_data objects. The
424 * dictionary contains one entry for every path with a non-zero stage entry.
426 static struct string_list
*get_unmerged(void)
428 struct string_list
*unmerged
= xcalloc(1, sizeof(struct string_list
));
431 unmerged
->strdup_strings
= 1;
433 for (i
= 0; i
< active_nr
; i
++) {
434 struct string_list_item
*item
;
435 struct stage_data
*e
;
436 const struct cache_entry
*ce
= active_cache
[i
];
440 item
= string_list_lookup(unmerged
, ce
->name
);
442 item
= string_list_insert(unmerged
, ce
->name
);
443 item
->util
= xcalloc(1, sizeof(struct stage_data
));
446 e
->stages
[ce_stage(ce
)].mode
= ce
->ce_mode
;
447 oidcpy(&e
->stages
[ce_stage(ce
)].oid
, &ce
->oid
);
453 static int string_list_df_name_compare(const char *one
, const char *two
)
455 int onelen
= strlen(one
);
456 int twolen
= strlen(two
);
458 * Here we only care that entries for D/F conflicts are
459 * adjacent, in particular with the file of the D/F conflict
460 * appearing before files below the corresponding directory.
461 * The order of the rest of the list is irrelevant for us.
463 * To achieve this, we sort with df_name_compare and provide
464 * the mode S_IFDIR so that D/F conflicts will sort correctly.
465 * We use the mode S_IFDIR for everything else for simplicity,
466 * since in other cases any changes in their order due to
467 * sorting cause no problems for us.
469 int cmp
= df_name_compare(one
, onelen
, S_IFDIR
,
470 two
, twolen
, S_IFDIR
);
472 * Now that 'foo' and 'foo/bar' compare equal, we have to make sure
473 * that 'foo' comes before 'foo/bar'.
477 return onelen
- twolen
;
480 static void record_df_conflict_files(struct merge_options
*o
,
481 struct string_list
*entries
)
483 /* If there is a D/F conflict and the file for such a conflict
484 * currently exist in the working tree, we want to allow it to be
485 * removed to make room for the corresponding directory if needed.
486 * The files underneath the directories of such D/F conflicts will
487 * be processed before the corresponding file involved in the D/F
488 * conflict. If the D/F directory ends up being removed by the
489 * merge, then we won't have to touch the D/F file. If the D/F
490 * directory needs to be written to the working copy, then the D/F
491 * file will simply be removed (in make_room_for_path()) to make
492 * room for the necessary paths. Note that if both the directory
493 * and the file need to be present, then the D/F file will be
494 * reinstated with a new unique name at the time it is processed.
496 struct string_list df_sorted_entries
= STRING_LIST_INIT_NODUP
;
497 const char *last_file
= NULL
;
502 * If we're merging merge-bases, we don't want to bother with
503 * any working directory changes.
508 /* Ensure D/F conflicts are adjacent in the entries list. */
509 for (i
= 0; i
< entries
->nr
; i
++) {
510 struct string_list_item
*next
= &entries
->items
[i
];
511 string_list_append(&df_sorted_entries
, next
->string
)->util
=
514 df_sorted_entries
.cmp
= string_list_df_name_compare
;
515 string_list_sort(&df_sorted_entries
);
517 string_list_clear(&o
->df_conflict_file_set
, 1);
518 for (i
= 0; i
< df_sorted_entries
.nr
; i
++) {
519 const char *path
= df_sorted_entries
.items
[i
].string
;
520 int len
= strlen(path
);
521 struct stage_data
*e
= df_sorted_entries
.items
[i
].util
;
524 * Check if last_file & path correspond to a D/F conflict;
525 * i.e. whether path is last_file+'/'+<something>.
526 * If so, record that it's okay to remove last_file to make
527 * room for path and friends if needed.
531 memcmp(path
, last_file
, last_len
) == 0 &&
532 path
[last_len
] == '/') {
533 string_list_insert(&o
->df_conflict_file_set
, last_file
);
537 * Determine whether path could exist as a file in the
538 * working directory as a possible D/F conflict. This
539 * will only occur when it exists in stage 2 as a
542 if (S_ISREG(e
->stages
[2].mode
) || S_ISLNK(e
->stages
[2].mode
)) {
549 string_list_clear(&df_sorted_entries
, 0);
553 struct diff_filepair
*pair
;
555 * Purpose of src_entry and dst_entry:
557 * If 'before' is renamed to 'after' then src_entry will contain
558 * the versions of 'before' from the merge_base, HEAD, and MERGE in
559 * stages 1, 2, and 3; dst_entry will contain the respective
560 * versions of 'after' in corresponding locations. Thus, we have a
561 * total of six modes and oids, though some will be null. (Stage 0
562 * is ignored; we're interested in handling conflicts.)
564 * Since we don't turn on break-rewrites by default, neither
565 * src_entry nor dst_entry can have all three of their stages have
566 * non-null oids, meaning at most four of the six will be non-null.
567 * Also, since this is a rename, both src_entry and dst_entry will
568 * have at least one non-null oid, meaning at least two will be
569 * non-null. Of the six oids, a typical rename will have three be
570 * non-null. Only two implies a rename/delete, and four implies a
573 struct stage_data
*src_entry
;
574 struct stage_data
*dst_entry
;
575 unsigned processed
:1;
578 static int update_stages(struct merge_options
*opt
, const char *path
,
579 const struct diff_filespec
*o
,
580 const struct diff_filespec
*a
,
581 const struct diff_filespec
*b
)
585 * NOTE: It is usually a bad idea to call update_stages on a path
586 * before calling update_file on that same path, since it can
587 * sometimes lead to spurious "refusing to lose untracked file..."
588 * messages from update_file (via make_room_for path via
589 * would_lose_untracked). Instead, reverse the order of the calls
590 * (executing update_file first and then update_stages).
593 int options
= ADD_CACHE_OK_TO_ADD
| ADD_CACHE_SKIP_DFCHECK
;
595 if (remove_file_from_cache(path
))
598 if (add_cacheinfo(opt
, o
->mode
, &o
->oid
, path
, 1, 0, options
))
601 if (add_cacheinfo(opt
, a
->mode
, &a
->oid
, path
, 2, 0, options
))
604 if (add_cacheinfo(opt
, b
->mode
, &b
->oid
, path
, 3, 0, options
))
609 static void update_entry(struct stage_data
*entry
,
610 struct diff_filespec
*o
,
611 struct diff_filespec
*a
,
612 struct diff_filespec
*b
)
614 entry
->processed
= 0;
615 entry
->stages
[1].mode
= o
->mode
;
616 entry
->stages
[2].mode
= a
->mode
;
617 entry
->stages
[3].mode
= b
->mode
;
618 oidcpy(&entry
->stages
[1].oid
, &o
->oid
);
619 oidcpy(&entry
->stages
[2].oid
, &a
->oid
);
620 oidcpy(&entry
->stages
[3].oid
, &b
->oid
);
623 static int remove_file(struct merge_options
*o
, int clean
,
624 const char *path
, int no_wd
)
626 int update_cache
= o
->call_depth
|| clean
;
627 int update_working_directory
= !o
->call_depth
&& !no_wd
;
630 if (remove_file_from_cache(path
))
633 if (update_working_directory
) {
635 struct cache_entry
*ce
;
636 ce
= cache_file_exists(path
, strlen(path
), ignore_case
);
637 if (ce
&& ce_stage(ce
) == 0 && strcmp(path
, ce
->name
))
640 if (remove_path(path
))
646 /* add a string to a strbuf, but converting "/" to "_" */
647 static void add_flattened_path(struct strbuf
*out
, const char *s
)
650 strbuf_addstr(out
, s
);
651 for (; i
< out
->len
; i
++)
652 if (out
->buf
[i
] == '/')
656 static char *unique_path(struct merge_options
*o
, const char *path
, const char *branch
)
658 struct path_hashmap_entry
*entry
;
659 struct strbuf newpath
= STRBUF_INIT
;
663 strbuf_addf(&newpath
, "%s~", path
);
664 add_flattened_path(&newpath
, branch
);
666 base_len
= newpath
.len
;
667 while (hashmap_get_from_hash(&o
->current_file_dir_set
,
668 path_hash(newpath
.buf
), newpath
.buf
) ||
669 (!o
->call_depth
&& file_exists(newpath
.buf
))) {
670 strbuf_setlen(&newpath
, base_len
);
671 strbuf_addf(&newpath
, "_%d", suffix
++);
674 FLEX_ALLOC_MEM(entry
, path
, newpath
.buf
, newpath
.len
);
675 hashmap_entry_init(entry
, path_hash(entry
->path
));
676 hashmap_add(&o
->current_file_dir_set
, entry
);
677 return strbuf_detach(&newpath
, NULL
);
681 * Check whether a directory in the index is in the way of an incoming
682 * file. Return 1 if so. If check_working_copy is non-zero, also
683 * check the working directory. If empty_ok is non-zero, also return
684 * 0 in the case where the working-tree dir exists but is empty.
686 static int dir_in_way(const char *path
, int check_working_copy
, int empty_ok
)
689 struct strbuf dirpath
= STRBUF_INIT
;
692 strbuf_addstr(&dirpath
, path
);
693 strbuf_addch(&dirpath
, '/');
695 pos
= cache_name_pos(dirpath
.buf
, dirpath
.len
);
699 if (pos
< active_nr
&&
700 !strncmp(dirpath
.buf
, active_cache
[pos
]->name
, dirpath
.len
)) {
701 strbuf_release(&dirpath
);
705 strbuf_release(&dirpath
);
706 return check_working_copy
&& !lstat(path
, &st
) && S_ISDIR(st
.st_mode
) &&
707 !(empty_ok
&& is_empty_dir(path
));
710 static int was_tracked(const char *path
)
712 int pos
= cache_name_pos(path
, strlen(path
));
715 /* we have been tracking this path */
719 * Look for an unmerged entry for the path,
720 * specifically stage #2, which would indicate
721 * that "our" side before the merge started
722 * had the path tracked (and resulted in a conflict).
725 pos
< active_nr
&& !strcmp(path
, active_cache
[pos
]->name
);
727 if (ce_stage(active_cache
[pos
]) == 2)
732 static int would_lose_untracked(const char *path
)
734 return !was_tracked(path
) && file_exists(path
);
737 static int make_room_for_path(struct merge_options
*o
, const char *path
)
740 const char *msg
= _("failed to create path '%s'%s");
742 /* Unlink any D/F conflict files that are in the way */
743 for (i
= 0; i
< o
->df_conflict_file_set
.nr
; i
++) {
744 const char *df_path
= o
->df_conflict_file_set
.items
[i
].string
;
745 size_t pathlen
= strlen(path
);
746 size_t df_pathlen
= strlen(df_path
);
747 if (df_pathlen
< pathlen
&&
748 path
[df_pathlen
] == '/' &&
749 strncmp(path
, df_path
, df_pathlen
) == 0) {
751 _("Removing %s to make room for subdirectory\n"),
754 unsorted_string_list_delete_item(&o
->df_conflict_file_set
,
760 /* Make sure leading directories are created */
761 status
= safe_create_leading_directories_const(path
);
763 if (status
== SCLD_EXISTS
)
764 /* something else exists */
765 return err(o
, msg
, path
, _(": perhaps a D/F conflict?"));
766 return err(o
, msg
, path
, "");
770 * Do not unlink a file in the work tree if we are not
773 if (would_lose_untracked(path
))
774 return err(o
, _("refusing to lose untracked file at '%s'"),
777 /* Successful unlink is good.. */
780 /* .. and so is no existing file */
783 /* .. but not some other error (who really cares what?) */
784 return err(o
, msg
, path
, _(": perhaps a D/F conflict?"));
787 static int update_file_flags(struct merge_options
*o
,
788 const struct object_id
*oid
,
800 enum object_type type
;
804 if (S_ISGITLINK(mode
)) {
806 * We may later decide to recursively descend into
807 * the submodule directory and update its index
808 * and/or work tree, but we do not do that now.
814 buf
= read_object_file(oid
, &type
, &size
);
816 return err(o
, _("cannot read object %s '%s'"), oid_to_hex(oid
), path
);
817 if (type
!= OBJ_BLOB
) {
818 ret
= err(o
, _("blob expected for %s '%s'"), oid_to_hex(oid
), path
);
822 struct strbuf strbuf
= STRBUF_INIT
;
823 if (convert_to_working_tree(path
, buf
, size
, &strbuf
)) {
826 buf
= strbuf_detach(&strbuf
, NULL
);
830 if (make_room_for_path(o
, path
) < 0) {
834 if (S_ISREG(mode
) || (!has_symlinks
&& S_ISLNK(mode
))) {
840 fd
= open(path
, O_WRONLY
| O_TRUNC
| O_CREAT
, mode
);
842 ret
= err(o
, _("failed to open '%s': %s"),
843 path
, strerror(errno
));
846 write_in_full(fd
, buf
, size
);
848 } else if (S_ISLNK(mode
)) {
849 char *lnk
= xmemdupz(buf
, size
);
850 safe_create_leading_directories_const(path
);
852 if (symlink(lnk
, path
))
853 ret
= err(o
, _("failed to symlink '%s': %s"),
854 path
, strerror(errno
));
858 _("do not know what to do with %06o %s '%s'"),
859 mode
, oid_to_hex(oid
), path
);
864 if (!ret
&& update_cache
)
865 add_cacheinfo(o
, mode
, oid
, path
, 0, update_wd
, ADD_CACHE_OK_TO_ADD
);
869 static int update_file(struct merge_options
*o
,
871 const struct object_id
*oid
,
875 return update_file_flags(o
, oid
, mode
, path
, o
->call_depth
|| clean
, !o
->call_depth
);
878 /* Low level file merging, update and removal */
880 struct merge_file_info
{
881 struct object_id oid
;
887 static int merge_3way(struct merge_options
*o
,
888 mmbuffer_t
*result_buf
,
889 const struct diff_filespec
*one
,
890 const struct diff_filespec
*a
,
891 const struct diff_filespec
*b
,
895 mmfile_t orig
, src1
, src2
;
896 struct ll_merge_options ll_opts
= {0};
897 char *base_name
, *name1
, *name2
;
900 ll_opts
.renormalize
= o
->renormalize
;
901 ll_opts
.xdl_opts
= o
->xdl_opts
;
904 ll_opts
.virtual_ancestor
= 1;
907 switch (o
->recursive_variant
) {
908 case MERGE_RECURSIVE_OURS
:
909 ll_opts
.variant
= XDL_MERGE_FAVOR_OURS
;
911 case MERGE_RECURSIVE_THEIRS
:
912 ll_opts
.variant
= XDL_MERGE_FAVOR_THEIRS
;
920 if (strcmp(a
->path
, b
->path
) ||
921 (o
->ancestor
!= NULL
&& strcmp(a
->path
, one
->path
) != 0)) {
922 base_name
= o
->ancestor
== NULL
? NULL
:
923 mkpathdup("%s:%s", o
->ancestor
, one
->path
);
924 name1
= mkpathdup("%s:%s", branch1
, a
->path
);
925 name2
= mkpathdup("%s:%s", branch2
, b
->path
);
927 base_name
= o
->ancestor
== NULL
? NULL
:
928 mkpathdup("%s", o
->ancestor
);
929 name1
= mkpathdup("%s", branch1
);
930 name2
= mkpathdup("%s", branch2
);
933 read_mmblob(&orig
, &one
->oid
);
934 read_mmblob(&src1
, &a
->oid
);
935 read_mmblob(&src2
, &b
->oid
);
937 merge_status
= ll_merge(result_buf
, a
->path
, &orig
, base_name
,
938 &src1
, name1
, &src2
, name2
, &ll_opts
);
949 static int merge_file_1(struct merge_options
*o
,
950 const struct diff_filespec
*one
,
951 const struct diff_filespec
*a
,
952 const struct diff_filespec
*b
,
955 struct merge_file_info
*result
)
960 if ((S_IFMT
& a
->mode
) != (S_IFMT
& b
->mode
)) {
962 if (S_ISREG(a
->mode
)) {
963 result
->mode
= a
->mode
;
964 oidcpy(&result
->oid
, &a
->oid
);
966 result
->mode
= b
->mode
;
967 oidcpy(&result
->oid
, &b
->oid
);
970 if (!oid_eq(&a
->oid
, &one
->oid
) && !oid_eq(&b
->oid
, &one
->oid
))
976 if (a
->mode
== b
->mode
|| a
->mode
== one
->mode
)
977 result
->mode
= b
->mode
;
979 result
->mode
= a
->mode
;
980 if (b
->mode
!= one
->mode
) {
986 if (oid_eq(&a
->oid
, &b
->oid
) || oid_eq(&a
->oid
, &one
->oid
))
987 oidcpy(&result
->oid
, &b
->oid
);
988 else if (oid_eq(&b
->oid
, &one
->oid
))
989 oidcpy(&result
->oid
, &a
->oid
);
990 else if (S_ISREG(a
->mode
)) {
991 mmbuffer_t result_buf
;
992 int ret
= 0, merge_status
;
994 merge_status
= merge_3way(o
, &result_buf
, one
, a
, b
,
997 if ((merge_status
< 0) || !result_buf
.ptr
)
998 ret
= err(o
, _("Failed to execute internal merge"));
1001 write_object_file(result_buf
.ptr
, result_buf
.size
,
1002 blob_type
, &result
->oid
))
1003 ret
= err(o
, _("Unable to add %s to database"),
1006 free(result_buf
.ptr
);
1009 result
->clean
= (merge_status
== 0);
1010 } else if (S_ISGITLINK(a
->mode
)) {
1011 result
->clean
= merge_submodule(&result
->oid
,
1017 } else if (S_ISLNK(a
->mode
)) {
1018 switch (o
->recursive_variant
) {
1019 case MERGE_RECURSIVE_NORMAL
:
1020 oidcpy(&result
->oid
, &a
->oid
);
1021 if (!oid_eq(&a
->oid
, &b
->oid
))
1024 case MERGE_RECURSIVE_OURS
:
1025 oidcpy(&result
->oid
, &a
->oid
);
1027 case MERGE_RECURSIVE_THEIRS
:
1028 oidcpy(&result
->oid
, &b
->oid
);
1032 die("BUG: unsupported object type in the tree");
1038 static int merge_file_special_markers(struct merge_options
*o
,
1039 const struct diff_filespec
*one
,
1040 const struct diff_filespec
*a
,
1041 const struct diff_filespec
*b
,
1042 const char *branch1
,
1043 const char *filename1
,
1044 const char *branch2
,
1045 const char *filename2
,
1046 struct merge_file_info
*mfi
)
1053 side1
= xstrfmt("%s:%s", branch1
, filename1
);
1055 side2
= xstrfmt("%s:%s", branch2
, filename2
);
1057 ret
= merge_file_1(o
, one
, a
, b
,
1058 side1
? side1
: branch1
,
1059 side2
? side2
: branch2
, mfi
);
1065 static int merge_file_one(struct merge_options
*o
,
1067 const struct object_id
*o_oid
, int o_mode
,
1068 const struct object_id
*a_oid
, int a_mode
,
1069 const struct object_id
*b_oid
, int b_mode
,
1070 const char *branch1
,
1071 const char *branch2
,
1072 struct merge_file_info
*mfi
)
1074 struct diff_filespec one
, a
, b
;
1076 one
.path
= a
.path
= b
.path
= (char *)path
;
1077 oidcpy(&one
.oid
, o_oid
);
1079 oidcpy(&a
.oid
, a_oid
);
1081 oidcpy(&b
.oid
, b_oid
);
1083 return merge_file_1(o
, &one
, &a
, &b
, branch1
, branch2
, mfi
);
1086 static int handle_change_delete(struct merge_options
*o
,
1087 const char *path
, const char *old_path
,
1088 const struct object_id
*o_oid
, int o_mode
,
1089 const struct object_id
*changed_oid
,
1091 const char *change_branch
,
1092 const char *delete_branch
,
1093 const char *change
, const char *change_past
)
1095 char *alt_path
= NULL
;
1096 const char *update_path
= path
;
1099 if (dir_in_way(path
, !o
->call_depth
, 0)) {
1100 update_path
= alt_path
= unique_path(o
, path
, change_branch
);
1103 if (o
->call_depth
) {
1105 * We cannot arbitrarily accept either a_sha or b_sha as
1106 * correct; since there is no true "middle point" between
1107 * them, simply reuse the base version for virtual merge base.
1109 ret
= remove_file_from_cache(path
);
1111 ret
= update_file(o
, 0, o_oid
, o_mode
, update_path
);
1115 output(o
, 1, _("CONFLICT (%s/delete): %s deleted in %s "
1116 "and %s in %s. Version %s of %s left in tree."),
1117 change
, path
, delete_branch
, change_past
,
1118 change_branch
, change_branch
, path
);
1120 output(o
, 1, _("CONFLICT (%s/delete): %s deleted in %s "
1121 "and %s to %s in %s. Version %s of %s left in tree."),
1122 change
, old_path
, delete_branch
, change_past
, path
,
1123 change_branch
, change_branch
, path
);
1127 output(o
, 1, _("CONFLICT (%s/delete): %s deleted in %s "
1128 "and %s in %s. Version %s of %s left in tree at %s."),
1129 change
, path
, delete_branch
, change_past
,
1130 change_branch
, change_branch
, path
, alt_path
);
1132 output(o
, 1, _("CONFLICT (%s/delete): %s deleted in %s "
1133 "and %s to %s in %s. Version %s of %s left in tree at %s."),
1134 change
, old_path
, delete_branch
, change_past
, path
,
1135 change_branch
, change_branch
, path
, alt_path
);
1139 * No need to call update_file() on path when change_branch ==
1140 * o->branch1 && !alt_path, since that would needlessly touch
1141 * path. We could call update_file_flags() with update_cache=0
1142 * and update_wd=0, but that's a no-op.
1144 if (change_branch
!= o
->branch1
|| alt_path
)
1145 ret
= update_file(o
, 0, changed_oid
, changed_mode
, update_path
);
1152 static int conflict_rename_delete(struct merge_options
*o
,
1153 struct diff_filepair
*pair
,
1154 const char *rename_branch
,
1155 const char *delete_branch
)
1157 const struct diff_filespec
*orig
= pair
->one
;
1158 const struct diff_filespec
*dest
= pair
->two
;
1160 if (handle_change_delete(o
,
1161 o
->call_depth
? orig
->path
: dest
->path
,
1162 o
->call_depth
? NULL
: orig
->path
,
1163 &orig
->oid
, orig
->mode
,
1164 &dest
->oid
, dest
->mode
,
1165 rename_branch
, delete_branch
,
1166 _("rename"), _("renamed")))
1170 return remove_file_from_cache(dest
->path
);
1172 return update_stages(o
, dest
->path
, NULL
,
1173 rename_branch
== o
->branch1
? dest
: NULL
,
1174 rename_branch
== o
->branch1
? NULL
: dest
);
1177 static struct diff_filespec
*filespec_from_entry(struct diff_filespec
*target
,
1178 struct stage_data
*entry
,
1181 struct object_id
*oid
= &entry
->stages
[stage
].oid
;
1182 unsigned mode
= entry
->stages
[stage
].mode
;
1183 if (mode
== 0 || is_null_oid(oid
))
1185 oidcpy(&target
->oid
, oid
);
1186 target
->mode
= mode
;
1190 static int handle_file(struct merge_options
*o
,
1191 struct diff_filespec
*rename
,
1193 struct rename_conflict_info
*ci
)
1195 char *dst_name
= rename
->path
;
1196 struct stage_data
*dst_entry
;
1197 const char *cur_branch
, *other_branch
;
1198 struct diff_filespec other
;
1199 struct diff_filespec
*add
;
1203 dst_entry
= ci
->dst_entry1
;
1204 cur_branch
= ci
->branch1
;
1205 other_branch
= ci
->branch2
;
1207 dst_entry
= ci
->dst_entry2
;
1208 cur_branch
= ci
->branch2
;
1209 other_branch
= ci
->branch1
;
1212 add
= filespec_from_entry(&other
, dst_entry
, stage
^ 1);
1214 char *add_name
= unique_path(o
, rename
->path
, other_branch
);
1215 if (update_file(o
, 0, &add
->oid
, add
->mode
, add_name
))
1218 remove_file(o
, 0, rename
->path
, 0);
1219 dst_name
= unique_path(o
, rename
->path
, cur_branch
);
1221 if (dir_in_way(rename
->path
, !o
->call_depth
, 0)) {
1222 dst_name
= unique_path(o
, rename
->path
, cur_branch
);
1223 output(o
, 1, _("%s is a directory in %s adding as %s instead"),
1224 rename
->path
, other_branch
, dst_name
);
1227 if ((ret
= update_file(o
, 0, &rename
->oid
, rename
->mode
, dst_name
)))
1228 ; /* fall through, do allow dst_name to be released */
1229 else if (stage
== 2)
1230 ret
= update_stages(o
, rename
->path
, NULL
, rename
, add
);
1232 ret
= update_stages(o
, rename
->path
, NULL
, add
, rename
);
1234 if (dst_name
!= rename
->path
)
1240 static int conflict_rename_rename_1to2(struct merge_options
*o
,
1241 struct rename_conflict_info
*ci
)
1243 /* One file was renamed in both branches, but to different names. */
1244 struct diff_filespec
*one
= ci
->pair1
->one
;
1245 struct diff_filespec
*a
= ci
->pair1
->two
;
1246 struct diff_filespec
*b
= ci
->pair2
->two
;
1248 output(o
, 1, _("CONFLICT (rename/rename): "
1249 "Rename \"%s\"->\"%s\" in branch \"%s\" "
1250 "rename \"%s\"->\"%s\" in \"%s\"%s"),
1251 one
->path
, a
->path
, ci
->branch1
,
1252 one
->path
, b
->path
, ci
->branch2
,
1253 o
->call_depth
? _(" (left unresolved)") : "");
1254 if (o
->call_depth
) {
1255 struct merge_file_info mfi
;
1256 struct diff_filespec other
;
1257 struct diff_filespec
*add
;
1258 if (merge_file_one(o
, one
->path
,
1259 &one
->oid
, one
->mode
,
1262 ci
->branch1
, ci
->branch2
, &mfi
))
1266 * FIXME: For rename/add-source conflicts (if we could detect
1267 * such), this is wrong. We should instead find a unique
1268 * pathname and then either rename the add-source file to that
1269 * unique path, or use that unique path instead of src here.
1271 if (update_file(o
, 0, &mfi
.oid
, mfi
.mode
, one
->path
))
1275 * Above, we put the merged content at the merge-base's
1276 * path. Now we usually need to delete both a->path and
1277 * b->path. However, the rename on each side of the merge
1278 * could also be involved in a rename/add conflict. In
1279 * such cases, we should keep the added file around,
1280 * resolving the conflict at that path in its favor.
1282 add
= filespec_from_entry(&other
, ci
->dst_entry1
, 2 ^ 1);
1284 if (update_file(o
, 0, &add
->oid
, add
->mode
, a
->path
))
1288 remove_file_from_cache(a
->path
);
1289 add
= filespec_from_entry(&other
, ci
->dst_entry2
, 3 ^ 1);
1291 if (update_file(o
, 0, &add
->oid
, add
->mode
, b
->path
))
1295 remove_file_from_cache(b
->path
);
1296 } else if (handle_file(o
, a
, 2, ci
) || handle_file(o
, b
, 3, ci
))
1302 static int conflict_rename_rename_2to1(struct merge_options
*o
,
1303 struct rename_conflict_info
*ci
)
1305 /* Two files, a & b, were renamed to the same thing, c. */
1306 struct diff_filespec
*a
= ci
->pair1
->one
;
1307 struct diff_filespec
*b
= ci
->pair2
->one
;
1308 struct diff_filespec
*c1
= ci
->pair1
->two
;
1309 struct diff_filespec
*c2
= ci
->pair2
->two
;
1310 char *path
= c1
->path
; /* == c2->path */
1311 struct merge_file_info mfi_c1
;
1312 struct merge_file_info mfi_c2
;
1315 output(o
, 1, _("CONFLICT (rename/rename): "
1316 "Rename %s->%s in %s. "
1317 "Rename %s->%s in %s"),
1318 a
->path
, c1
->path
, ci
->branch1
,
1319 b
->path
, c2
->path
, ci
->branch2
);
1321 remove_file(o
, 1, a
->path
, o
->call_depth
|| would_lose_untracked(a
->path
));
1322 remove_file(o
, 1, b
->path
, o
->call_depth
|| would_lose_untracked(b
->path
));
1324 if (merge_file_special_markers(o
, a
, c1
, &ci
->ren1_other
,
1325 o
->branch1
, c1
->path
,
1326 o
->branch2
, ci
->ren1_other
.path
, &mfi_c1
) ||
1327 merge_file_special_markers(o
, b
, &ci
->ren2_other
, c2
,
1328 o
->branch1
, ci
->ren2_other
.path
,
1329 o
->branch2
, c2
->path
, &mfi_c2
))
1332 if (o
->call_depth
) {
1334 * If mfi_c1.clean && mfi_c2.clean, then it might make
1335 * sense to do a two-way merge of those results. But, I
1336 * think in all cases, it makes sense to have the virtual
1337 * merge base just undo the renames; they can be detected
1338 * again later for the non-recursive merge.
1340 remove_file(o
, 0, path
, 0);
1341 ret
= update_file(o
, 0, &mfi_c1
.oid
, mfi_c1
.mode
, a
->path
);
1343 ret
= update_file(o
, 0, &mfi_c2
.oid
, mfi_c2
.mode
,
1346 char *new_path1
= unique_path(o
, path
, ci
->branch1
);
1347 char *new_path2
= unique_path(o
, path
, ci
->branch2
);
1348 output(o
, 1, _("Renaming %s to %s and %s to %s instead"),
1349 a
->path
, new_path1
, b
->path
, new_path2
);
1350 remove_file(o
, 0, path
, 0);
1351 ret
= update_file(o
, 0, &mfi_c1
.oid
, mfi_c1
.mode
, new_path1
);
1353 ret
= update_file(o
, 0, &mfi_c2
.oid
, mfi_c2
.mode
,
1363 * Get the diff_filepairs changed between o_tree and tree.
1365 static struct diff_queue_struct
*get_diffpairs(struct merge_options
*o
,
1366 struct tree
*o_tree
,
1369 struct diff_queue_struct
*ret
;
1370 struct diff_options opts
;
1373 opts
.flags
.recursive
= 1;
1374 opts
.flags
.rename_empty
= 0;
1375 opts
.detect_rename
= DIFF_DETECT_RENAME
;
1376 opts
.rename_limit
= o
->merge_rename_limit
>= 0 ? o
->merge_rename_limit
:
1377 o
->diff_rename_limit
>= 0 ? o
->diff_rename_limit
:
1379 opts
.rename_score
= o
->rename_score
;
1380 opts
.show_rename_progress
= o
->show_rename_progress
;
1381 opts
.output_format
= DIFF_FORMAT_NO_OUTPUT
;
1382 diff_setup_done(&opts
);
1383 diff_tree_oid(&o_tree
->object
.oid
, &tree
->object
.oid
, "", &opts
);
1384 diffcore_std(&opts
);
1385 if (opts
.needed_rename_limit
> o
->needed_rename_limit
)
1386 o
->needed_rename_limit
= opts
.needed_rename_limit
;
1388 ret
= xmalloc(sizeof(*ret
));
1389 *ret
= diff_queued_diff
;
1391 opts
.output_format
= DIFF_FORMAT_NO_OUTPUT
;
1392 diff_queued_diff
.nr
= 0;
1393 diff_queued_diff
.queue
= NULL
;
1398 static int tree_has_path(struct tree
*tree
, const char *path
)
1400 struct object_id hashy
;
1401 unsigned int mode_o
;
1403 return !get_tree_entry(&tree
->object
.oid
, path
,
1407 static void get_renamed_dir_portion(const char *old_path
, const char *new_path
,
1408 char **old_dir
, char **new_dir
)
1410 char *end_of_old
, *end_of_new
;
1411 int old_len
, new_len
;
1418 * "a/b/c/d/e/foo.c" -> "a/b/some/thing/else/e/foo.c"
1419 * the "e/foo.c" part is the same, we just want to know that
1420 * "a/b/c/d" was renamed to "a/b/some/thing/else"
1421 * so, for this example, this function returns "a/b/c/d" in
1422 * *old_dir and "a/b/some/thing/else" in *new_dir.
1424 * Also, if the basename of the file changed, we don't care. We
1425 * want to know which portion of the directory, if any, changed.
1427 end_of_old
= strrchr(old_path
, '/');
1428 end_of_new
= strrchr(new_path
, '/');
1430 if (end_of_old
== NULL
|| end_of_new
== NULL
)
1432 while (*--end_of_new
== *--end_of_old
&&
1433 end_of_old
!= old_path
&&
1434 end_of_new
!= new_path
)
1435 ; /* Do nothing; all in the while loop */
1437 * We've found the first non-matching character in the directory
1438 * paths. That means the current directory we were comparing
1439 * represents the rename. Move end_of_old and end_of_new back
1440 * to the full directory name.
1442 if (*end_of_old
== '/')
1444 if (*end_of_old
!= '/')
1446 end_of_old
= strchr(end_of_old
, '/');
1447 end_of_new
= strchr(end_of_new
, '/');
1450 * It may have been the case that old_path and new_path were the same
1451 * directory all along. Don't claim a rename if they're the same.
1453 old_len
= end_of_old
- old_path
;
1454 new_len
= end_of_new
- new_path
;
1456 if (old_len
!= new_len
|| strncmp(old_path
, new_path
, old_len
)) {
1457 *old_dir
= xstrndup(old_path
, old_len
);
1458 *new_dir
= xstrndup(new_path
, new_len
);
1462 static void remove_hashmap_entries(struct hashmap
*dir_renames
,
1463 struct string_list
*items_to_remove
)
1466 struct dir_rename_entry
*entry
;
1468 for (i
= 0; i
< items_to_remove
->nr
; i
++) {
1469 entry
= items_to_remove
->items
[i
].util
;
1470 hashmap_remove(dir_renames
, entry
, NULL
);
1472 string_list_clear(items_to_remove
, 0);
1476 * There are a couple things we want to do at the directory level:
1477 * 1. Check for both sides renaming to the same thing, in order to avoid
1478 * implicit renaming of files that should be left in place. (See
1479 * testcase 6b in t6043 for details.)
1480 * 2. Prune directory renames if there are still files left in the
1481 * the original directory. These represent a partial directory rename,
1482 * i.e. a rename where only some of the files within the directory
1483 * were renamed elsewhere. (Technically, this could be done earlier
1484 * in get_directory_renames(), except that would prevent us from
1485 * doing the previous check and thus failing testcase 6b.)
1486 * 3. Check for rename/rename(1to2) conflicts (at the directory level).
1487 * In the future, we could potentially record this info as well and
1488 * omit reporting rename/rename(1to2) conflicts for each path within
1489 * the affected directories, thus cleaning up the merge output.
1490 * NOTE: We do NOT check for rename/rename(2to1) conflicts at the
1491 * directory level, because merging directories is fine. If it
1492 * causes conflicts for files within those merged directories, then
1493 * that should be detected at the individual path level.
1495 static void handle_directory_level_conflicts(struct merge_options
*o
,
1496 struct hashmap
*dir_re_head
,
1498 struct hashmap
*dir_re_merge
,
1501 struct hashmap_iter iter
;
1502 struct dir_rename_entry
*head_ent
;
1503 struct dir_rename_entry
*merge_ent
;
1505 struct string_list remove_from_head
= STRING_LIST_INIT_NODUP
;
1506 struct string_list remove_from_merge
= STRING_LIST_INIT_NODUP
;
1508 hashmap_iter_init(dir_re_head
, &iter
);
1509 while ((head_ent
= hashmap_iter_next(&iter
))) {
1510 merge_ent
= dir_rename_find_entry(dir_re_merge
, head_ent
->dir
);
1512 !head_ent
->non_unique_new_dir
&&
1513 !merge_ent
->non_unique_new_dir
&&
1514 !strbuf_cmp(&head_ent
->new_dir
, &merge_ent
->new_dir
)) {
1515 /* 1. Renamed identically; remove it from both sides */
1516 string_list_append(&remove_from_head
,
1517 head_ent
->dir
)->util
= head_ent
;
1518 strbuf_release(&head_ent
->new_dir
);
1519 string_list_append(&remove_from_merge
,
1520 merge_ent
->dir
)->util
= merge_ent
;
1521 strbuf_release(&merge_ent
->new_dir
);
1522 } else if (tree_has_path(head
, head_ent
->dir
)) {
1523 /* 2. This wasn't a directory rename after all */
1524 string_list_append(&remove_from_head
,
1525 head_ent
->dir
)->util
= head_ent
;
1526 strbuf_release(&head_ent
->new_dir
);
1530 remove_hashmap_entries(dir_re_head
, &remove_from_head
);
1531 remove_hashmap_entries(dir_re_merge
, &remove_from_merge
);
1533 hashmap_iter_init(dir_re_merge
, &iter
);
1534 while ((merge_ent
= hashmap_iter_next(&iter
))) {
1535 head_ent
= dir_rename_find_entry(dir_re_head
, merge_ent
->dir
);
1536 if (tree_has_path(merge
, merge_ent
->dir
)) {
1537 /* 2. This wasn't a directory rename after all */
1538 string_list_append(&remove_from_merge
,
1539 merge_ent
->dir
)->util
= merge_ent
;
1540 } else if (head_ent
&&
1541 !head_ent
->non_unique_new_dir
&&
1542 !merge_ent
->non_unique_new_dir
) {
1543 /* 3. rename/rename(1to2) */
1545 * We can assume it's not rename/rename(1to1) because
1546 * that was case (1), already checked above. So we
1547 * know that head_ent->new_dir and merge_ent->new_dir
1548 * are different strings.
1550 output(o
, 1, _("CONFLICT (rename/rename): "
1551 "Rename directory %s->%s in %s. "
1552 "Rename directory %s->%s in %s"),
1553 head_ent
->dir
, head_ent
->new_dir
.buf
, o
->branch1
,
1554 head_ent
->dir
, merge_ent
->new_dir
.buf
, o
->branch2
);
1555 string_list_append(&remove_from_head
,
1556 head_ent
->dir
)->util
= head_ent
;
1557 strbuf_release(&head_ent
->new_dir
);
1558 string_list_append(&remove_from_merge
,
1559 merge_ent
->dir
)->util
= merge_ent
;
1560 strbuf_release(&merge_ent
->new_dir
);
1564 remove_hashmap_entries(dir_re_head
, &remove_from_head
);
1565 remove_hashmap_entries(dir_re_merge
, &remove_from_merge
);
1568 static struct hashmap
*get_directory_renames(struct diff_queue_struct
*pairs
,
1571 struct hashmap
*dir_renames
;
1572 struct hashmap_iter iter
;
1573 struct dir_rename_entry
*entry
;
1577 * Typically, we think of a directory rename as all files from a
1578 * certain directory being moved to a target directory. However,
1579 * what if someone first moved two files from the original
1580 * directory in one commit, and then renamed the directory
1581 * somewhere else in a later commit? At merge time, we just know
1582 * that files from the original directory went to two different
1583 * places, and that the bulk of them ended up in the same place.
1584 * We want each directory rename to represent where the bulk of the
1585 * files from that directory end up; this function exists to find
1586 * where the bulk of the files went.
1588 * The first loop below simply iterates through the list of file
1589 * renames, finding out how often each directory rename pair
1590 * possibility occurs.
1592 dir_renames
= xmalloc(sizeof(*dir_renames
));
1593 dir_rename_init(dir_renames
);
1594 for (i
= 0; i
< pairs
->nr
; ++i
) {
1595 struct string_list_item
*item
;
1597 struct diff_filepair
*pair
= pairs
->queue
[i
];
1598 char *old_dir
, *new_dir
;
1600 /* File not part of directory rename if it wasn't renamed */
1601 if (pair
->status
!= 'R')
1604 get_renamed_dir_portion(pair
->one
->path
, pair
->two
->path
,
1605 &old_dir
, &new_dir
);
1607 /* Directory didn't change at all; ignore this one. */
1610 entry
= dir_rename_find_entry(dir_renames
, old_dir
);
1612 entry
= xmalloc(sizeof(*entry
));
1613 dir_rename_entry_init(entry
, old_dir
);
1614 hashmap_put(dir_renames
, entry
);
1618 item
= string_list_lookup(&entry
->possible_new_dirs
, new_dir
);
1620 item
= string_list_insert(&entry
->possible_new_dirs
,
1622 item
->util
= xcalloc(1, sizeof(int));
1631 * For each directory with files moved out of it, we find out which
1632 * target directory received the most files so we can declare it to
1633 * be the "winning" target location for the directory rename. This
1634 * winner gets recorded in new_dir. If there is no winner
1635 * (multiple target directories received the same number of files),
1636 * we set non_unique_new_dir. Once we've determined the winner (or
1637 * that there is no winner), we no longer need possible_new_dirs.
1639 hashmap_iter_init(dir_renames
, &iter
);
1640 while ((entry
= hashmap_iter_next(&iter
))) {
1645 for (i
= 0; i
< entry
->possible_new_dirs
.nr
; i
++) {
1646 int *count
= entry
->possible_new_dirs
.items
[i
].util
;
1650 else if (*count
> max
) {
1652 best
= entry
->possible_new_dirs
.items
[i
].string
;
1656 entry
->non_unique_new_dir
= 1;
1658 assert(entry
->new_dir
.len
== 0);
1659 strbuf_addstr(&entry
->new_dir
, best
);
1662 * The relevant directory sub-portion of the original full
1663 * filepaths were xstrndup'ed before inserting into
1664 * possible_new_dirs, and instead of manually iterating the
1665 * list and free'ing each, just lie and tell
1666 * possible_new_dirs that it did the strdup'ing so that it
1667 * will free them for us.
1669 entry
->possible_new_dirs
.strdup_strings
= 1;
1670 string_list_clear(&entry
->possible_new_dirs
, 1);
1677 * Get information of all renames which occurred in 'pairs', making use of
1678 * any implicit directory renames inferred from the other side of history.
1679 * We need the three trees in the merge ('o_tree', 'a_tree' and 'b_tree')
1680 * to be able to associate the correct cache entries with the rename
1681 * information; tree is always equal to either a_tree or b_tree.
1683 static struct string_list
*get_renames(struct merge_options
*o
,
1684 struct diff_queue_struct
*pairs
,
1686 struct tree
*o_tree
,
1687 struct tree
*a_tree
,
1688 struct tree
*b_tree
,
1689 struct string_list
*entries
)
1692 struct string_list
*renames
;
1694 renames
= xcalloc(1, sizeof(struct string_list
));
1696 for (i
= 0; i
< pairs
->nr
; ++i
) {
1697 struct string_list_item
*item
;
1699 struct diff_filepair
*pair
= pairs
->queue
[i
];
1701 if (pair
->status
!= 'R') {
1702 diff_free_filepair(pair
);
1705 re
= xmalloc(sizeof(*re
));
1708 item
= string_list_lookup(entries
, re
->pair
->one
->path
);
1710 re
->src_entry
= insert_stage_data(re
->pair
->one
->path
,
1711 o_tree
, a_tree
, b_tree
, entries
);
1713 re
->src_entry
= item
->util
;
1715 item
= string_list_lookup(entries
, re
->pair
->two
->path
);
1717 re
->dst_entry
= insert_stage_data(re
->pair
->two
->path
,
1718 o_tree
, a_tree
, b_tree
, entries
);
1720 re
->dst_entry
= item
->util
;
1721 item
= string_list_insert(renames
, pair
->one
->path
);
1727 static int process_renames(struct merge_options
*o
,
1728 struct string_list
*a_renames
,
1729 struct string_list
*b_renames
)
1731 int clean_merge
= 1, i
, j
;
1732 struct string_list a_by_dst
= STRING_LIST_INIT_NODUP
;
1733 struct string_list b_by_dst
= STRING_LIST_INIT_NODUP
;
1734 const struct rename
*sre
;
1736 for (i
= 0; i
< a_renames
->nr
; i
++) {
1737 sre
= a_renames
->items
[i
].util
;
1738 string_list_insert(&a_by_dst
, sre
->pair
->two
->path
)->util
1741 for (i
= 0; i
< b_renames
->nr
; i
++) {
1742 sre
= b_renames
->items
[i
].util
;
1743 string_list_insert(&b_by_dst
, sre
->pair
->two
->path
)->util
1747 for (i
= 0, j
= 0; i
< a_renames
->nr
|| j
< b_renames
->nr
;) {
1748 struct string_list
*renames1
, *renames2Dst
;
1749 struct rename
*ren1
= NULL
, *ren2
= NULL
;
1750 const char *branch1
, *branch2
;
1751 const char *ren1_src
, *ren1_dst
;
1752 struct string_list_item
*lookup
;
1754 if (i
>= a_renames
->nr
) {
1755 ren2
= b_renames
->items
[j
++].util
;
1756 } else if (j
>= b_renames
->nr
) {
1757 ren1
= a_renames
->items
[i
++].util
;
1759 int compare
= strcmp(a_renames
->items
[i
].string
,
1760 b_renames
->items
[j
].string
);
1762 ren1
= a_renames
->items
[i
++].util
;
1764 ren2
= b_renames
->items
[j
++].util
;
1767 /* TODO: refactor, so that 1/2 are not needed */
1769 renames1
= a_renames
;
1770 renames2Dst
= &b_by_dst
;
1771 branch1
= o
->branch1
;
1772 branch2
= o
->branch2
;
1774 renames1
= b_renames
;
1775 renames2Dst
= &a_by_dst
;
1776 branch1
= o
->branch2
;
1777 branch2
= o
->branch1
;
1781 if (ren1
->processed
)
1783 ren1
->processed
= 1;
1784 ren1
->dst_entry
->processed
= 1;
1785 /* BUG: We should only mark src_entry as processed if we
1786 * are not dealing with a rename + add-source case.
1788 ren1
->src_entry
->processed
= 1;
1790 ren1_src
= ren1
->pair
->one
->path
;
1791 ren1_dst
= ren1
->pair
->two
->path
;
1794 /* One file renamed on both sides */
1795 const char *ren2_src
= ren2
->pair
->one
->path
;
1796 const char *ren2_dst
= ren2
->pair
->two
->path
;
1797 enum rename_type rename_type
;
1798 if (strcmp(ren1_src
, ren2_src
) != 0)
1799 die("BUG: ren1_src != ren2_src");
1800 ren2
->dst_entry
->processed
= 1;
1801 ren2
->processed
= 1;
1802 if (strcmp(ren1_dst
, ren2_dst
) != 0) {
1803 rename_type
= RENAME_ONE_FILE_TO_TWO
;
1806 rename_type
= RENAME_ONE_FILE_TO_ONE
;
1807 /* BUG: We should only remove ren1_src in
1808 * the base stage (think of rename +
1809 * add-source cases).
1811 remove_file(o
, 1, ren1_src
, 1);
1812 update_entry(ren1
->dst_entry
,
1817 setup_rename_conflict_info(rename_type
,
1827 } else if ((lookup
= string_list_lookup(renames2Dst
, ren1_dst
))) {
1828 /* Two different files renamed to the same thing */
1830 ren2
= lookup
->util
;
1831 ren2_dst
= ren2
->pair
->two
->path
;
1832 if (strcmp(ren1_dst
, ren2_dst
) != 0)
1833 die("BUG: ren1_dst != ren2_dst");
1836 ren2
->processed
= 1;
1838 * BUG: We should only mark src_entry as processed
1839 * if we are not dealing with a rename + add-source
1842 ren2
->src_entry
->processed
= 1;
1844 setup_rename_conflict_info(RENAME_TWO_FILES_TO_ONE
,
1856 /* Renamed in 1, maybe changed in 2 */
1857 /* we only use sha1 and mode of these */
1858 struct diff_filespec src_other
, dst_other
;
1862 * unpack_trees loads entries from common-commit
1863 * into stage 1, from head-commit into stage 2, and
1864 * from merge-commit into stage 3. We keep track
1865 * of which side corresponds to the rename.
1867 int renamed_stage
= a_renames
== renames1
? 2 : 3;
1868 int other_stage
= a_renames
== renames1
? 3 : 2;
1870 /* BUG: We should only remove ren1_src in the base
1871 * stage and in other_stage (think of rename +
1874 remove_file(o
, 1, ren1_src
,
1875 renamed_stage
== 2 || !was_tracked(ren1_src
));
1877 oidcpy(&src_other
.oid
,
1878 &ren1
->src_entry
->stages
[other_stage
].oid
);
1879 src_other
.mode
= ren1
->src_entry
->stages
[other_stage
].mode
;
1880 oidcpy(&dst_other
.oid
,
1881 &ren1
->dst_entry
->stages
[other_stage
].oid
);
1882 dst_other
.mode
= ren1
->dst_entry
->stages
[other_stage
].mode
;
1885 if (oid_eq(&src_other
.oid
, &null_oid
)) {
1886 setup_rename_conflict_info(RENAME_DELETE
,
1896 } else if ((dst_other
.mode
== ren1
->pair
->two
->mode
) &&
1897 oid_eq(&dst_other
.oid
, &ren1
->pair
->two
->oid
)) {
1899 * Added file on the other side identical to
1900 * the file being renamed: clean merge.
1901 * Also, there is no need to overwrite the
1902 * file already in the working copy, so call
1903 * update_file_flags() instead of
1906 if (update_file_flags(o
,
1907 &ren1
->pair
->two
->oid
,
1908 ren1
->pair
->two
->mode
,
1910 1, /* update_cache */
1913 } else if (!oid_eq(&dst_other
.oid
, &null_oid
)) {
1916 output(o
, 1, _("CONFLICT (rename/add): Rename %s->%s in %s. "
1918 ren1_src
, ren1_dst
, branch1
,
1920 if (o
->call_depth
) {
1921 struct merge_file_info mfi
;
1922 if (merge_file_one(o
, ren1_dst
, &null_oid
, 0,
1923 &ren1
->pair
->two
->oid
,
1924 ren1
->pair
->two
->mode
,
1927 branch1
, branch2
, &mfi
)) {
1929 goto cleanup_and_return
;
1931 output(o
, 1, _("Adding merged %s"), ren1_dst
);
1932 if (update_file(o
, 0, &mfi
.oid
,
1933 mfi
.mode
, ren1_dst
))
1937 char *new_path
= unique_path(o
, ren1_dst
, branch2
);
1938 output(o
, 1, _("Adding as %s instead"), new_path
);
1939 if (update_file(o
, 0, &dst_other
.oid
,
1940 dst_other
.mode
, new_path
))
1947 if (clean_merge
< 0)
1948 goto cleanup_and_return
;
1950 struct diff_filespec
*one
, *a
, *b
;
1951 src_other
.path
= (char *)ren1_src
;
1953 one
= ren1
->pair
->one
;
1954 if (a_renames
== renames1
) {
1955 a
= ren1
->pair
->two
;
1958 b
= ren1
->pair
->two
;
1961 update_entry(ren1
->dst_entry
, one
, a
, b
);
1962 setup_rename_conflict_info(RENAME_NORMAL
,
1976 string_list_clear(&a_by_dst
, 0);
1977 string_list_clear(&b_by_dst
, 0);
1982 struct rename_info
{
1983 struct string_list
*head_renames
;
1984 struct string_list
*merge_renames
;
1987 static void initial_cleanup_rename(struct diff_queue_struct
*pairs
,
1988 struct hashmap
*dir_renames
)
1990 struct hashmap_iter iter
;
1991 struct dir_rename_entry
*e
;
1993 hashmap_iter_init(dir_renames
, &iter
);
1994 while ((e
= hashmap_iter_next(&iter
))) {
1996 strbuf_release(&e
->new_dir
);
1997 /* possible_new_dirs already cleared in get_directory_renames */
1999 hashmap_free(dir_renames
, 1);
2006 static int handle_renames(struct merge_options
*o
,
2007 struct tree
*common
,
2010 struct string_list
*entries
,
2011 struct rename_info
*ri
)
2013 struct diff_queue_struct
*head_pairs
, *merge_pairs
;
2014 struct hashmap
*dir_re_head
, *dir_re_merge
;
2017 ri
->head_renames
= NULL
;
2018 ri
->merge_renames
= NULL
;
2020 if (!o
->detect_rename
)
2023 head_pairs
= get_diffpairs(o
, common
, head
);
2024 merge_pairs
= get_diffpairs(o
, common
, merge
);
2026 dir_re_head
= get_directory_renames(head_pairs
, head
);
2027 dir_re_merge
= get_directory_renames(merge_pairs
, merge
);
2029 handle_directory_level_conflicts(o
,
2031 dir_re_merge
, merge
);
2033 ri
->head_renames
= get_renames(o
, head_pairs
, head
,
2034 common
, head
, merge
, entries
);
2035 ri
->merge_renames
= get_renames(o
, merge_pairs
, merge
,
2036 common
, head
, merge
, entries
);
2037 clean
= process_renames(o
, ri
->head_renames
, ri
->merge_renames
);
2040 * Some cleanup is deferred until cleanup_renames() because the
2041 * data structures are still needed and referenced in
2042 * process_entry(). But there are a few things we can free now.
2044 initial_cleanup_rename(head_pairs
, dir_re_head
);
2045 initial_cleanup_rename(merge_pairs
, dir_re_merge
);
2050 static void final_cleanup_rename(struct string_list
*rename
)
2052 const struct rename
*re
;
2058 for (i
= 0; i
< rename
->nr
; i
++) {
2059 re
= rename
->items
[i
].util
;
2060 diff_free_filepair(re
->pair
);
2062 string_list_clear(rename
, 1);
2066 static void final_cleanup_renames(struct rename_info
*re_info
)
2068 final_cleanup_rename(re_info
->head_renames
);
2069 final_cleanup_rename(re_info
->merge_renames
);
2072 static struct object_id
*stage_oid(const struct object_id
*oid
, unsigned mode
)
2074 return (is_null_oid(oid
) || mode
== 0) ? NULL
: (struct object_id
*)oid
;
2077 static int read_oid_strbuf(struct merge_options
*o
,
2078 const struct object_id
*oid
, struct strbuf
*dst
)
2081 enum object_type type
;
2083 buf
= read_object_file(oid
, &type
, &size
);
2085 return err(o
, _("cannot read object %s"), oid_to_hex(oid
));
2086 if (type
!= OBJ_BLOB
) {
2088 return err(o
, _("object %s is not a blob"), oid_to_hex(oid
));
2090 strbuf_attach(dst
, buf
, size
, size
+ 1);
2094 static int blob_unchanged(struct merge_options
*opt
,
2095 const struct object_id
*o_oid
,
2097 const struct object_id
*a_oid
,
2099 int renormalize
, const char *path
)
2101 struct strbuf o
= STRBUF_INIT
;
2102 struct strbuf a
= STRBUF_INIT
;
2103 int ret
= 0; /* assume changed for safety */
2105 if (a_mode
!= o_mode
)
2107 if (oid_eq(o_oid
, a_oid
))
2112 assert(o_oid
&& a_oid
);
2113 if (read_oid_strbuf(opt
, o_oid
, &o
) || read_oid_strbuf(opt
, a_oid
, &a
))
2116 * Note: binary | is used so that both renormalizations are
2117 * performed. Comparison can be skipped if both files are
2118 * unchanged since their sha1s have already been compared.
2120 if (renormalize_buffer(&the_index
, path
, o
.buf
, o
.len
, &o
) |
2121 renormalize_buffer(&the_index
, path
, a
.buf
, a
.len
, &a
))
2122 ret
= (o
.len
== a
.len
&& !memcmp(o
.buf
, a
.buf
, o
.len
));
2130 static int handle_modify_delete(struct merge_options
*o
,
2132 struct object_id
*o_oid
, int o_mode
,
2133 struct object_id
*a_oid
, int a_mode
,
2134 struct object_id
*b_oid
, int b_mode
)
2136 const char *modify_branch
, *delete_branch
;
2137 struct object_id
*changed_oid
;
2141 modify_branch
= o
->branch1
;
2142 delete_branch
= o
->branch2
;
2143 changed_oid
= a_oid
;
2144 changed_mode
= a_mode
;
2146 modify_branch
= o
->branch2
;
2147 delete_branch
= o
->branch1
;
2148 changed_oid
= b_oid
;
2149 changed_mode
= b_mode
;
2152 return handle_change_delete(o
,
2155 changed_oid
, changed_mode
,
2156 modify_branch
, delete_branch
,
2157 _("modify"), _("modified"));
2160 static int merge_content(struct merge_options
*o
,
2162 struct object_id
*o_oid
, int o_mode
,
2163 struct object_id
*a_oid
, int a_mode
,
2164 struct object_id
*b_oid
, int b_mode
,
2165 struct rename_conflict_info
*rename_conflict_info
)
2167 const char *reason
= _("content");
2168 const char *path1
= NULL
, *path2
= NULL
;
2169 struct merge_file_info mfi
;
2170 struct diff_filespec one
, a
, b
;
2171 unsigned df_conflict_remains
= 0;
2174 reason
= _("add/add");
2175 o_oid
= (struct object_id
*)&null_oid
;
2177 one
.path
= a
.path
= b
.path
= (char *)path
;
2178 oidcpy(&one
.oid
, o_oid
);
2180 oidcpy(&a
.oid
, a_oid
);
2182 oidcpy(&b
.oid
, b_oid
);
2185 if (rename_conflict_info
) {
2186 struct diff_filepair
*pair1
= rename_conflict_info
->pair1
;
2188 path1
= (o
->branch1
== rename_conflict_info
->branch1
) ?
2189 pair1
->two
->path
: pair1
->one
->path
;
2190 /* If rename_conflict_info->pair2 != NULL, we are in
2191 * RENAME_ONE_FILE_TO_ONE case. Otherwise, we have a
2194 path2
= (rename_conflict_info
->pair2
||
2195 o
->branch2
== rename_conflict_info
->branch1
) ?
2196 pair1
->two
->path
: pair1
->one
->path
;
2198 if (dir_in_way(path
, !o
->call_depth
,
2199 S_ISGITLINK(pair1
->two
->mode
)))
2200 df_conflict_remains
= 1;
2202 if (merge_file_special_markers(o
, &one
, &a
, &b
,
2204 o
->branch2
, path2
, &mfi
))
2207 if (mfi
.clean
&& !df_conflict_remains
&&
2208 oid_eq(&mfi
.oid
, a_oid
) && mfi
.mode
== a_mode
) {
2209 int path_renamed_outside_HEAD
;
2210 output(o
, 3, _("Skipped %s (merged same as existing)"), path
);
2212 * The content merge resulted in the same file contents we
2213 * already had. We can return early if those file contents
2214 * are recorded at the correct path (which may not be true
2215 * if the merge involves a rename).
2217 path_renamed_outside_HEAD
= !path2
|| !strcmp(path
, path2
);
2218 if (!path_renamed_outside_HEAD
) {
2219 add_cacheinfo(o
, mfi
.mode
, &mfi
.oid
, path
,
2220 0, (!o
->call_depth
), 0);
2224 output(o
, 2, _("Auto-merging %s"), path
);
2227 if (S_ISGITLINK(mfi
.mode
))
2228 reason
= _("submodule");
2229 output(o
, 1, _("CONFLICT (%s): Merge conflict in %s"),
2231 if (rename_conflict_info
&& !df_conflict_remains
)
2232 if (update_stages(o
, path
, &one
, &a
, &b
))
2236 if (df_conflict_remains
) {
2238 if (o
->call_depth
) {
2239 remove_file_from_cache(path
);
2242 if (update_stages(o
, path
, &one
, &a
, &b
))
2245 int file_from_stage2
= was_tracked(path
);
2246 struct diff_filespec merged
;
2247 oidcpy(&merged
.oid
, &mfi
.oid
);
2248 merged
.mode
= mfi
.mode
;
2250 if (update_stages(o
, path
, NULL
,
2251 file_from_stage2
? &merged
: NULL
,
2252 file_from_stage2
? NULL
: &merged
))
2257 new_path
= unique_path(o
, path
, rename_conflict_info
->branch1
);
2258 output(o
, 1, _("Adding as %s instead"), new_path
);
2259 if (update_file(o
, 0, &mfi
.oid
, mfi
.mode
, new_path
)) {
2265 } else if (update_file(o
, mfi
.clean
, &mfi
.oid
, mfi
.mode
, path
))
2270 /* Per entry merge function */
2271 static int process_entry(struct merge_options
*o
,
2272 const char *path
, struct stage_data
*entry
)
2274 int clean_merge
= 1;
2275 int normalize
= o
->renormalize
;
2276 unsigned o_mode
= entry
->stages
[1].mode
;
2277 unsigned a_mode
= entry
->stages
[2].mode
;
2278 unsigned b_mode
= entry
->stages
[3].mode
;
2279 struct object_id
*o_oid
= stage_oid(&entry
->stages
[1].oid
, o_mode
);
2280 struct object_id
*a_oid
= stage_oid(&entry
->stages
[2].oid
, a_mode
);
2281 struct object_id
*b_oid
= stage_oid(&entry
->stages
[3].oid
, b_mode
);
2283 entry
->processed
= 1;
2284 if (entry
->rename_conflict_info
) {
2285 struct rename_conflict_info
*conflict_info
= entry
->rename_conflict_info
;
2286 switch (conflict_info
->rename_type
) {
2288 case RENAME_ONE_FILE_TO_ONE
:
2289 clean_merge
= merge_content(o
, path
,
2290 o_oid
, o_mode
, a_oid
, a_mode
, b_oid
, b_mode
,
2295 if (conflict_rename_delete(o
,
2296 conflict_info
->pair1
,
2297 conflict_info
->branch1
,
2298 conflict_info
->branch2
))
2301 case RENAME_ONE_FILE_TO_TWO
:
2303 if (conflict_rename_rename_1to2(o
, conflict_info
))
2306 case RENAME_TWO_FILES_TO_ONE
:
2308 if (conflict_rename_rename_2to1(o
, conflict_info
))
2312 entry
->processed
= 0;
2315 } else if (o_oid
&& (!a_oid
|| !b_oid
)) {
2316 /* Case A: Deleted in one */
2317 if ((!a_oid
&& !b_oid
) ||
2318 (!b_oid
&& blob_unchanged(o
, o_oid
, o_mode
, a_oid
, a_mode
, normalize
, path
)) ||
2319 (!a_oid
&& blob_unchanged(o
, o_oid
, o_mode
, b_oid
, b_mode
, normalize
, path
))) {
2320 /* Deleted in both or deleted in one and
2321 * unchanged in the other */
2323 output(o
, 2, _("Removing %s"), path
);
2324 /* do not touch working file if it did not exist */
2325 remove_file(o
, 1, path
, !a_oid
);
2327 /* Modify/delete; deleted side may have put a directory in the way */
2329 if (handle_modify_delete(o
, path
, o_oid
, o_mode
,
2330 a_oid
, a_mode
, b_oid
, b_mode
))
2333 } else if ((!o_oid
&& a_oid
&& !b_oid
) ||
2334 (!o_oid
&& !a_oid
&& b_oid
)) {
2335 /* Case B: Added in one. */
2336 /* [nothing|directory] -> ([nothing|directory], file) */
2338 const char *add_branch
;
2339 const char *other_branch
;
2341 const struct object_id
*oid
;
2345 add_branch
= o
->branch1
;
2346 other_branch
= o
->branch2
;
2349 conf
= _("file/directory");
2351 add_branch
= o
->branch2
;
2352 other_branch
= o
->branch1
;
2355 conf
= _("directory/file");
2357 if (dir_in_way(path
,
2358 !o
->call_depth
&& !S_ISGITLINK(a_mode
),
2360 char *new_path
= unique_path(o
, path
, add_branch
);
2362 output(o
, 1, _("CONFLICT (%s): There is a directory with name %s in %s. "
2364 conf
, path
, other_branch
, path
, new_path
);
2365 if (update_file(o
, 0, oid
, mode
, new_path
))
2367 else if (o
->call_depth
)
2368 remove_file_from_cache(path
);
2371 output(o
, 2, _("Adding %s"), path
);
2372 /* do not overwrite file if already present */
2373 if (update_file_flags(o
, oid
, mode
, path
, 1, !a_oid
))
2376 } else if (a_oid
&& b_oid
) {
2377 /* Case C: Added in both (check for same permissions) and */
2378 /* case D: Modified in both, but differently. */
2379 clean_merge
= merge_content(o
, path
,
2380 o_oid
, o_mode
, a_oid
, a_mode
, b_oid
, b_mode
,
2382 } else if (!o_oid
&& !a_oid
&& !b_oid
) {
2384 * this entry was deleted altogether. a_mode == 0 means
2385 * we had that path and want to actively remove it.
2387 remove_file(o
, 1, path
, !a_mode
);
2389 die("BUG: fatal merge failure, shouldn't happen.");
2394 int merge_trees(struct merge_options
*o
,
2397 struct tree
*common
,
2398 struct tree
**result
)
2402 if (o
->subtree_shift
) {
2403 merge
= shift_tree_object(head
, merge
, o
->subtree_shift
);
2404 common
= shift_tree_object(head
, common
, o
->subtree_shift
);
2407 if (oid_eq(&common
->object
.oid
, &merge
->object
.oid
)) {
2408 struct strbuf sb
= STRBUF_INIT
;
2410 if (!o
->call_depth
&& index_has_changes(&sb
)) {
2411 err(o
, _("Dirty index: cannot merge (dirty: %s)"),
2415 output(o
, 0, _("Already up to date!"));
2420 code
= git_merge_trees(o
->call_depth
, common
, head
, merge
);
2423 if (show(o
, 4) || o
->call_depth
)
2424 err(o
, _("merging of trees %s and %s failed"),
2425 oid_to_hex(&head
->object
.oid
),
2426 oid_to_hex(&merge
->object
.oid
));
2430 if (unmerged_cache()) {
2431 struct string_list
*entries
;
2432 struct rename_info re_info
;
2435 * Only need the hashmap while processing entries, so
2436 * initialize it here and free it when we are done running
2437 * through the entries. Keeping it in the merge_options as
2438 * opposed to decaring a local hashmap is for convenience
2439 * so that we don't have to pass it to around.
2441 hashmap_init(&o
->current_file_dir_set
, path_hashmap_cmp
, NULL
, 512);
2442 get_files_dirs(o
, head
);
2443 get_files_dirs(o
, merge
);
2445 entries
= get_unmerged();
2446 clean
= handle_renames(o
, common
, head
, merge
, entries
,
2448 record_df_conflict_files(o
, entries
);
2451 for (i
= entries
->nr
-1; 0 <= i
; i
--) {
2452 const char *path
= entries
->items
[i
].string
;
2453 struct stage_data
*e
= entries
->items
[i
].util
;
2454 if (!e
->processed
) {
2455 int ret
= process_entry(o
, path
, e
);
2464 for (i
= 0; i
< entries
->nr
; i
++) {
2465 struct stage_data
*e
= entries
->items
[i
].util
;
2467 die("BUG: unprocessed path??? %s",
2468 entries
->items
[i
].string
);
2472 final_cleanup_renames(&re_info
);
2474 string_list_clear(entries
, 1);
2477 hashmap_free(&o
->current_file_dir_set
, 1);
2485 if (o
->call_depth
&& !(*result
= write_tree_from_memory(o
)))
2491 static struct commit_list
*reverse_commit_list(struct commit_list
*list
)
2493 struct commit_list
*next
= NULL
, *current
, *backup
;
2494 for (current
= list
; current
; current
= backup
) {
2495 backup
= current
->next
;
2496 current
->next
= next
;
2503 * Merge the commits h1 and h2, return the resulting virtual
2504 * commit object and a flag indicating the cleanness of the merge.
2506 int merge_recursive(struct merge_options
*o
,
2509 struct commit_list
*ca
,
2510 struct commit
**result
)
2512 struct commit_list
*iter
;
2513 struct commit
*merged_common_ancestors
;
2514 struct tree
*mrtree
;
2518 output(o
, 4, _("Merging:"));
2519 output_commit_title(o
, h1
);
2520 output_commit_title(o
, h2
);
2524 ca
= get_merge_bases(h1
, h2
);
2525 ca
= reverse_commit_list(ca
);
2529 unsigned cnt
= commit_list_count(ca
);
2531 output(o
, 5, Q_("found %u common ancestor:",
2532 "found %u common ancestors:", cnt
), cnt
);
2533 for (iter
= ca
; iter
; iter
= iter
->next
)
2534 output_commit_title(o
, iter
->item
);
2537 merged_common_ancestors
= pop_commit(&ca
);
2538 if (merged_common_ancestors
== NULL
) {
2539 /* if there is no common ancestor, use an empty tree */
2542 tree
= lookup_tree(the_hash_algo
->empty_tree
);
2543 merged_common_ancestors
= make_virtual_commit(tree
, "ancestor");
2546 for (iter
= ca
; iter
; iter
= iter
->next
) {
2547 const char *saved_b1
, *saved_b2
;
2550 * When the merge fails, the result contains files
2551 * with conflict markers. The cleanness flag is
2552 * ignored (unless indicating an error), it was never
2553 * actually used, as result of merge_trees has always
2554 * overwritten it: the committed "conflicts" were
2558 saved_b1
= o
->branch1
;
2559 saved_b2
= o
->branch2
;
2560 o
->branch1
= "Temporary merge branch 1";
2561 o
->branch2
= "Temporary merge branch 2";
2562 if (merge_recursive(o
, merged_common_ancestors
, iter
->item
,
2563 NULL
, &merged_common_ancestors
) < 0)
2565 o
->branch1
= saved_b1
;
2566 o
->branch2
= saved_b2
;
2569 if (!merged_common_ancestors
)
2570 return err(o
, _("merge returned no commit"));
2577 o
->ancestor
= "merged common ancestors";
2578 clean
= merge_trees(o
, h1
->tree
, h2
->tree
, merged_common_ancestors
->tree
,
2585 if (o
->call_depth
) {
2586 *result
= make_virtual_commit(mrtree
, "merged tree");
2587 commit_list_insert(h1
, &(*result
)->parents
);
2588 commit_list_insert(h2
, &(*result
)->parents
->next
);
2591 if (!o
->call_depth
&& o
->buffer_output
< 2)
2592 strbuf_release(&o
->obuf
);
2594 diff_warn_rename_limit("merge.renamelimit",
2595 o
->needed_rename_limit
, 0);
2599 static struct commit
*get_ref(const struct object_id
*oid
, const char *name
)
2601 struct object
*object
;
2603 object
= deref_tag(parse_object(oid
), name
, strlen(name
));
2606 if (object
->type
== OBJ_TREE
)
2607 return make_virtual_commit((struct tree
*)object
, name
);
2608 if (object
->type
!= OBJ_COMMIT
)
2610 if (parse_commit((struct commit
*)object
))
2612 return (struct commit
*)object
;
2615 int merge_recursive_generic(struct merge_options
*o
,
2616 const struct object_id
*head
,
2617 const struct object_id
*merge
,
2619 const struct object_id
**base_list
,
2620 struct commit
**result
)
2623 struct lock_file lock
= LOCK_INIT
;
2624 struct commit
*head_commit
= get_ref(head
, o
->branch1
);
2625 struct commit
*next_commit
= get_ref(merge
, o
->branch2
);
2626 struct commit_list
*ca
= NULL
;
2630 for (i
= 0; i
< num_base_list
; ++i
) {
2631 struct commit
*base
;
2632 if (!(base
= get_ref(base_list
[i
], oid_to_hex(base_list
[i
]))))
2633 return err(o
, _("Could not parse object '%s'"),
2634 oid_to_hex(base_list
[i
]));
2635 commit_list_insert(base
, &ca
);
2639 hold_locked_index(&lock
, LOCK_DIE_ON_ERROR
);
2640 clean
= merge_recursive(o
, head_commit
, next_commit
, ca
,
2643 rollback_lock_file(&lock
);
2647 if (write_locked_index(&the_index
, &lock
,
2648 COMMIT_LOCK
| SKIP_IF_UNCHANGED
))
2649 return err(o
, _("Unable to write index."));
2651 return clean
? 0 : 1;
2654 static void merge_recursive_config(struct merge_options
*o
)
2656 git_config_get_int("merge.verbosity", &o
->verbosity
);
2657 git_config_get_int("diff.renamelimit", &o
->diff_rename_limit
);
2658 git_config_get_int("merge.renamelimit", &o
->merge_rename_limit
);
2659 git_config(git_xmerge_config
, NULL
);
2662 void init_merge_options(struct merge_options
*o
)
2664 const char *merge_verbosity
;
2665 memset(o
, 0, sizeof(struct merge_options
));
2667 o
->buffer_output
= 1;
2668 o
->diff_rename_limit
= -1;
2669 o
->merge_rename_limit
= -1;
2671 o
->detect_rename
= 1;
2672 merge_recursive_config(o
);
2673 merge_verbosity
= getenv("GIT_MERGE_VERBOSITY");
2674 if (merge_verbosity
)
2675 o
->verbosity
= strtol(merge_verbosity
, NULL
, 10);
2676 if (o
->verbosity
>= 5)
2677 o
->buffer_output
= 0;
2678 strbuf_init(&o
->obuf
, 0);
2679 string_list_init(&o
->df_conflict_file_set
, 1);
2682 int parse_merge_opt(struct merge_options
*o
, const char *s
)
2688 if (!strcmp(s
, "ours"))
2689 o
->recursive_variant
= MERGE_RECURSIVE_OURS
;
2690 else if (!strcmp(s
, "theirs"))
2691 o
->recursive_variant
= MERGE_RECURSIVE_THEIRS
;
2692 else if (!strcmp(s
, "subtree"))
2693 o
->subtree_shift
= "";
2694 else if (skip_prefix(s
, "subtree=", &arg
))
2695 o
->subtree_shift
= arg
;
2696 else if (!strcmp(s
, "patience"))
2697 o
->xdl_opts
= DIFF_WITH_ALG(o
, PATIENCE_DIFF
);
2698 else if (!strcmp(s
, "histogram"))
2699 o
->xdl_opts
= DIFF_WITH_ALG(o
, HISTOGRAM_DIFF
);
2700 else if (skip_prefix(s
, "diff-algorithm=", &arg
)) {
2701 long value
= parse_algorithm_value(arg
);
2704 /* clear out previous settings */
2705 DIFF_XDL_CLR(o
, NEED_MINIMAL
);
2706 o
->xdl_opts
&= ~XDF_DIFF_ALGORITHM_MASK
;
2707 o
->xdl_opts
|= value
;
2709 else if (!strcmp(s
, "ignore-space-change"))
2710 DIFF_XDL_SET(o
, IGNORE_WHITESPACE_CHANGE
);
2711 else if (!strcmp(s
, "ignore-all-space"))
2712 DIFF_XDL_SET(o
, IGNORE_WHITESPACE
);
2713 else if (!strcmp(s
, "ignore-space-at-eol"))
2714 DIFF_XDL_SET(o
, IGNORE_WHITESPACE_AT_EOL
);
2715 else if (!strcmp(s
, "ignore-cr-at-eol"))
2716 DIFF_XDL_SET(o
, IGNORE_CR_AT_EOL
);
2717 else if (!strcmp(s
, "renormalize"))
2719 else if (!strcmp(s
, "no-renormalize"))
2721 else if (!strcmp(s
, "no-renames"))
2722 o
->detect_rename
= 0;
2723 else if (!strcmp(s
, "find-renames")) {
2724 o
->detect_rename
= 1;
2725 o
->rename_score
= 0;
2727 else if (skip_prefix(s
, "find-renames=", &arg
) ||
2728 skip_prefix(s
, "rename-threshold=", &arg
)) {
2729 if ((o
->rename_score
= parse_rename_score(&arg
)) == -1 || *arg
!= 0)
2731 o
->detect_rename
= 1;