If a file is unmodified on one side of history (no content changes, no
name change, and no mode change) and is renamed on the other side, then
the correct merge result is to take both the file name and the file
contents (and file mode) of the renamed file.  merge-recursive detects
this rename and gets the correct merge result.

Note that if no rename detection is done, then this will appear to the
merge machinery as two files: one that was unmodified on one side of
history and deleted on the other (thus the merge should delete it), and
one which was newly added on one side of history (thus the merge should
include it).  Thus, even if the rename wasn't detected, we still would
have ended up with the correct result.

In other words, rename detection is a waste of time for files that were
unmodified on the OTHER side of history.  We can accelerate rename
detection for merges by providing information about the other side of
history, which will allow us to remove all such rename sources from the
list of candidates we care about.

There are two gotchas:

  1) Not trying to detect renames for these types of files can result in
     rename/add conflicts being instead detected as add/add conflicts,
     and can result in rename/rename(2to1) conflicts being instead
     detected as either rename/add or add/add conflicts.  Luckily for
     us, these three types of conflicts happen to make the same changes
     to the index and working tree (what a coincidence...), so this
     isn't a significant issue; the only annoyance is that the stdout
     from the merge command will include a "CONFLICT($type)" message for
     a related conflict type instead of the precise conflict type.

  2) If there is a directory rename on one side of history AND all files
     within the directory are not merely renamed but are modified as
     well AND none of the original files in the directory are modified
     on the other side of history AND there are new files added (or
     moved into) to the original directory on that other side of
     history, then this change will prevent us from being able to detect
     that directory rename and placing the new file(s) into the
     appropriate directory.  A subsequent commit will correct this
     downside.

In one particular testcase involving a large repository and some
high-level directories having been renamed, this cut the time necessary
for a cherry-pick down by a factor of about 8 (from around 4.5 minutes
down to around 34 seconds)

Signed-off-by: Elijah Newren <new...@gmail.com>
---
 diff.c            |  1 +
 diff.h            |  3 +++
 diffcore-rename.c | 43 +++++++++++++++++++++++++++++++++++++++++-
 merge-recursive.c | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++----
 4 files changed, 98 insertions(+), 5 deletions(-)

diff --git a/diff.c b/diff.c
index 40054070bd..b4717df4a4 100644
--- a/diff.c
+++ b/diff.c
@@ -4102,6 +4102,7 @@ void diff_setup(struct diff_options *options)
        }
 
        options->color_moved = diff_color_moved_default;
+       options->ignore_for_renames = NULL;
 }
 
 void diff_setup_done(struct diff_options *options)
diff --git a/diff.h b/diff.h
index 34dbc3cc05..4d7318c12c 100644
--- a/diff.h
+++ b/diff.h
@@ -206,6 +206,9 @@ struct diff_options {
        } color_moved;
        #define COLOR_MOVED_DEFAULT COLOR_MOVED_ZEBRA
        #define COLOR_MOVED_MIN_ALNUM_COUNT 20
+
+       /* Paths we should ignore for rename purposes */
+       struct string_list *ignore_for_renames;
 };
 
 void diff_emit_submodule_del(struct diff_options *o, const char *line);
diff --git a/diffcore-rename.c b/diffcore-rename.c
index 4fe5d0471c..5bf5bf7379 100644
--- a/diffcore-rename.c
+++ b/diffcore-rename.c
@@ -437,6 +437,40 @@ static int find_renames(struct diff_score *mx, int 
dst_cnt, int minimum_score, i
        return count;
 }
 
+static int handle_rename_ignores(struct diff_options *options)
+{
+       int detect_rename = options->detect_rename;
+       struct string_list *ignores = options->ignore_for_renames;
+       int ignored = 0;
+       int i, j;
+
+       /* rename_ignores onlhy relevant when we're not detecting copies */
+       if (ignores == NULL || detect_rename == DIFF_DETECT_COPY)
+               return 0;
+
+       for (i = 0, j = 0; i < ignores->nr && j < rename_src_nr;) {
+               struct diff_filespec *one = rename_src[j].p->one;
+               int cmp;
+
+               if (one->rename_used) {
+                       j++;
+                       continue;
+               }
+
+               cmp = strcmp(ignores->items[i].string, one->path);
+               if (cmp < 0)
+                       i++;
+               else if (cmp > 0)
+                       j++;
+               else {
+                       one->rename_used++;
+                       ignored++;
+               }
+       }
+
+       return ignored;
+}
+
 void diffcore_rename(struct diff_options *options)
 {
        int detect_rename = options->detect_rename;
@@ -445,7 +479,7 @@ void diffcore_rename(struct diff_options *options)
        struct diff_queue_struct outq;
        struct diff_score *mx;
        int i, j, rename_count, skip_unmodified = 0;
-       int num_create, dst_cnt, num_src;
+       int num_create, dst_cnt, num_src, ignore_count;
        struct progress *progress = NULL;
 
        if (!minimum_score)
@@ -506,6 +540,12 @@ void diffcore_rename(struct diff_options *options)
        if (minimum_score == MAX_SCORE)
                goto cleanup;
 
+       /*
+        * Mark source files as used if they are found in the
+        * ignore_for_renames list.
+        */
+       ignore_count = handle_rename_ignores(options);
+
        /*
         * Calculate how many renames are left (but all the source
         * files still remain as options for rename/copies!)
@@ -513,6 +553,7 @@ void diffcore_rename(struct diff_options *options)
        num_create = (rename_dst_nr - rename_count);
        num_src = (detect_rename == DIFF_DETECT_COPY ?
                   rename_src_nr : rename_src_nr - rename_count);
+       num_src -= ignore_count;
 
        /* All done? */
        if (!num_create)
diff --git a/merge-recursive.c b/merge-recursive.c
index e2d3b0fb4a..231d2d6a66 100644
--- a/merge-recursive.c
+++ b/merge-recursive.c
@@ -503,6 +503,48 @@ static struct string_list *get_unmerged(void)
        return unmerged;
 }
 
+static void get_rename_ignore(struct string_list *unmerged,
+                             struct string_list *rename_ignore)
+{
+       /*
+        * If a file is unmodified on one side of history (no content
+        * changes, no mode change, and no name change) and is renamed on
+        * the other side, then the correct merge result is to take both
+        * the file name and the file contents (and file mode) of the
+        * renamed file.  merge-recursive detects this rename and gets the
+        * correct merge result.
+        *
+        * Note that if no rename detection is done, then this will appear
+        * to the merge machinery as two files: one that was unmodified on
+        * one side of history and deleted on the other (thus the merge
+        * should delete it), and one which was newly added on one side of
+        * history (thus the merge should include it).  Thus, even if the
+        * rename wasn't detected, we still would have ended up with the
+        * correct result.
+        *
+        * In other words, rename detection is a waste of time for files
+        * that were unmodified on the OTHER side of history.  We can
+        * accelerate rename detection for merges by find these sets of
+        * unmodified files, and feeding them to get_renames so it can
+        * omit using those files as rename sources.
+        */
+       int i;
+
+       for (i = 0; i < unmerged->nr; i++) {
+               const char *path = unmerged->items[i].string;
+               struct stage_data *e = unmerged->items[i].util;
+               unsigned int ign_head = is_null_oid(&e->stages[2].oid) &&
+                 oid_eq(&e->stages[1].oid, &e->stages[3].oid) &&
+                 e->stages[1].mode == e->stages[3].mode;
+               unsigned int ign_merge = is_null_oid(&e->stages[3].oid) &&
+                 oid_eq(&e->stages[1].oid, &e->stages[2].oid) &&
+                 e->stages[1].mode == e->stages[2].mode;
+               if (ign_head || ign_merge)
+                       string_list_append(rename_ignore, path);
+       }
+}
+
+
 static int string_list_df_name_compare(const char *one, const char *two)
 {
        int onelen = strlen(one);
@@ -1624,7 +1666,8 @@ static int conflict_rename_rename_2to1(struct 
merge_options *o,
  */
 static struct diff_queue_struct *get_diffpairs(struct merge_options *o,
                                               struct tree *o_tree,
-                                              struct tree *tree)
+                                              struct tree *tree,
+                                              struct string_list 
*rename_ignore)
 {
        struct diff_queue_struct *ret;
        struct diff_options opts;
@@ -1633,6 +1676,7 @@ static struct diff_queue_struct *get_diffpairs(struct 
merge_options *o,
        opts.flags.recursive = 1;
        opts.flags.rename_empty = 0;
        opts.detect_rename = DIFF_DETECT_RENAME;
+       opts.ignore_for_renames = rename_ignore;
        opts.rename_limit = o->merge_rename_limit >= 0 ? o->merge_rename_limit :
                            o->diff_rename_limit >= 0 ? o->diff_rename_limit :
                            1000;
@@ -2604,6 +2648,7 @@ static int handle_renames(struct merge_options *o,
                          struct tree *head,
                          struct tree *merge,
                          struct string_list *entries,
+                         struct string_list *rename_ignore,
                          struct rename_info *ri)
 {
        struct diff_queue_struct *head_pairs, *merge_pairs;
@@ -2618,8 +2663,8 @@ static int handle_renames(struct merge_options *o,
                return 1;
        }
 
-       head_pairs = get_diffpairs(o, common, head);
-       merge_pairs = get_diffpairs(o, common, merge);
+       head_pairs = get_diffpairs(o, common, head, rename_ignore);
+       merge_pairs = get_diffpairs(o, common, merge, rename_ignore);
 
        dir_re_head = get_directory_renames(head_pairs, head);
        dir_re_merge = get_directory_renames(merge_pairs, merge);
@@ -3114,6 +3159,7 @@ int merge_trees(struct merge_options *o,
 
        if (unmerged_cache()) {
                struct string_list *entries;
+               struct string_list rename_ignore = STRING_LIST_INIT_NODUP;
                struct rename_info re_info;
                int i;
                /*
@@ -3128,8 +3174,9 @@ int merge_trees(struct merge_options *o,
                get_files_dirs(o, merge);
 
                entries = get_unmerged();
+               get_rename_ignore(entries, &rename_ignore);
                clean = handle_renames(o, common, head, merge, entries,
-                                      &re_info);
+                                      &rename_ignore, &re_info);
                record_df_conflict_files(o, entries);
                if (clean < 0)
                        goto cleanup;
@@ -3156,6 +3203,7 @@ int merge_trees(struct merge_options *o,
 cleanup:
                cleanup_renames(&re_info);
 
+               string_list_clear(&rename_ignore, 0);
                string_list_clear(entries, 1);
                free(entries);
 
-- 
2.15.0.323.g31fe956618

Reply via email to