3 * Copyright (C) 2005 Junio C Hamano
5 #include "git-compat-util.h"
9 #include "object-store-ll.h"
12 #include "oid-array.h"
14 #include "promisor-remote.h"
15 #include "string-list.h"
19 /* Table of rename/copy destinations */
21 static struct diff_rename_dst
{
22 struct diff_filepair
*p
;
23 struct diff_filespec
*filespec_to_free
;
24 int is_rename
; /* false -> just a create; true -> rename or copy */
26 static int rename_dst_nr
, rename_dst_alloc
;
27 /* Mapping from break source pathname to break destination index */
28 static struct strintmap
*break_idx
= NULL
;
30 static struct diff_rename_dst
*locate_rename_dst(struct diff_filepair
*p
)
32 /* Lookup by p->ONE->path */
33 int idx
= break_idx
? strintmap_get(break_idx
, p
->one
->path
) : -1;
34 return (idx
== -1) ? NULL
: &rename_dst
[idx
];
38 * Returns 0 on success, -1 if we found a duplicate.
40 static int add_rename_dst(struct diff_filepair
*p
)
42 ALLOC_GROW(rename_dst
, rename_dst_nr
+ 1, rename_dst_alloc
);
43 rename_dst
[rename_dst_nr
].p
= p
;
44 rename_dst
[rename_dst_nr
].filespec_to_free
= NULL
;
45 rename_dst
[rename_dst_nr
].is_rename
= 0;
50 /* Table of rename/copy src files */
51 static struct diff_rename_src
{
52 struct diff_filepair
*p
;
53 unsigned short score
; /* to remember the break score */
55 static int rename_src_nr
, rename_src_alloc
;
57 static void register_rename_src(struct diff_filepair
*p
)
61 break_idx
= xmalloc(sizeof(*break_idx
));
62 strintmap_init_with_options(break_idx
, -1, NULL
, 0);
64 strintmap_set(break_idx
, p
->one
->path
, rename_dst_nr
);
67 ALLOC_GROW(rename_src
, rename_src_nr
+ 1, rename_src_alloc
);
68 rename_src
[rename_src_nr
].p
= p
;
69 rename_src
[rename_src_nr
].score
= p
->score
;
73 static int basename_same(struct diff_filespec
*src
, struct diff_filespec
*dst
)
75 int src_len
= strlen(src
->path
), dst_len
= strlen(dst
->path
);
76 while (src_len
&& dst_len
) {
77 char c1
= src
->path
[--src_len
];
78 char c2
= dst
->path
[--dst_len
];
84 return (!src_len
|| src
->path
[src_len
- 1] == '/') &&
85 (!dst_len
|| dst
->path
[dst_len
- 1] == '/');
89 int src
; /* index in rename_src */
90 int dst
; /* index in rename_dst */
95 struct inexact_prefetch_options
{
96 struct repository
*repo
;
99 static void inexact_prefetch(void *prefetch_options
)
101 struct inexact_prefetch_options
*options
= prefetch_options
;
103 struct oid_array to_fetch
= OID_ARRAY_INIT
;
105 for (i
= 0; i
< rename_dst_nr
; i
++) {
106 if (rename_dst
[i
].p
->renamed_pair
)
108 * The loop in diffcore_rename() will not need these
109 * blobs, so skip prefetching.
111 continue; /* already found exact match */
112 diff_add_if_missing(options
->repo
, &to_fetch
,
113 rename_dst
[i
].p
->two
);
115 for (i
= 0; i
< rename_src_nr
; i
++) {
116 if (options
->skip_unmodified
&&
117 diff_unmodified_pair(rename_src
[i
].p
))
119 * The loop in diffcore_rename() will not need these
120 * blobs, so skip prefetching.
123 diff_add_if_missing(options
->repo
, &to_fetch
,
124 rename_src
[i
].p
->one
);
126 promisor_remote_get_direct(options
->repo
, to_fetch
.oid
, to_fetch
.nr
);
127 oid_array_clear(&to_fetch
);
130 static int estimate_similarity(struct repository
*r
,
131 struct diff_filespec
*src
,
132 struct diff_filespec
*dst
,
134 struct diff_populate_filespec_options
*dpf_opt
)
136 /* src points at a file that existed in the original tree (or
137 * optionally a file in the destination tree) and dst points
138 * at a newly created file. They may be quite similar, in which
139 * case we want to say src is renamed to dst or src is copied into
140 * dst, and then some edit has been applied to dst.
142 * Compare them and return how similar they are, representing
143 * the score as an integer between 0 and MAX_SCORE.
145 * When there is an exact match, it is considered a better
146 * match than anything else; the destination does not even
147 * call into this function in that case.
149 unsigned long max_size
, delta_size
, base_size
, src_copied
, literal_added
;
152 /* We deal only with regular files. Symlink renames are handled
153 * only when they are exact matches --- in other words, no edits
156 if (!S_ISREG(src
->mode
) || !S_ISREG(dst
->mode
))
160 * Need to check that source and destination sizes are
161 * filled in before comparing them.
163 * If we already have "cnt_data" filled in, we know it's
164 * all good (avoid checking the size for zero, as that
165 * is a possible size - we really should have a flag to
166 * say whether the size is valid or not!)
168 dpf_opt
->check_size_only
= 1;
170 if (!src
->cnt_data
&&
171 diff_populate_filespec(r
, src
, dpf_opt
))
173 if (!dst
->cnt_data
&&
174 diff_populate_filespec(r
, dst
, dpf_opt
))
177 max_size
= ((src
->size
> dst
->size
) ? src
->size
: dst
->size
);
178 base_size
= ((src
->size
< dst
->size
) ? src
->size
: dst
->size
);
179 delta_size
= max_size
- base_size
;
181 /* We would not consider edits that change the file size so
182 * drastically. delta_size must be smaller than
183 * (MAX_SCORE-minimum_score)/MAX_SCORE * min(src->size, dst->size).
185 * Note that base_size == 0 case is handled here already
186 * and the final score computation below would not have a
187 * divide-by-zero issue.
189 if (max_size
* (MAX_SCORE
-minimum_score
) < delta_size
* MAX_SCORE
)
192 dpf_opt
->check_size_only
= 0;
194 if (!src
->cnt_data
&& diff_populate_filespec(r
, src
, dpf_opt
))
196 if (!dst
->cnt_data
&& diff_populate_filespec(r
, dst
, dpf_opt
))
199 if (diffcore_count_changes(r
, src
, dst
,
200 &src
->cnt_data
, &dst
->cnt_data
,
201 &src_copied
, &literal_added
))
204 /* How similar are they?
205 * what percentage of material in dst are from source?
208 score
= 0; /* should not happen */
210 score
= (int)(src_copied
* MAX_SCORE
/ max_size
);
214 static void record_rename_pair(int dst_index
, int src_index
, int score
)
216 struct diff_filepair
*src
= rename_src
[src_index
].p
;
217 struct diff_filepair
*dst
= rename_dst
[dst_index
].p
;
219 if (dst
->renamed_pair
)
220 die("internal error: dst already matched.");
222 src
->one
->rename_used
++;
225 rename_dst
[dst_index
].filespec_to_free
= dst
->one
;
226 rename_dst
[dst_index
].is_rename
= 1;
229 dst
->renamed_pair
= 1;
230 if (!strcmp(dst
->one
->path
, dst
->two
->path
))
231 dst
->score
= rename_src
[src_index
].score
;
237 * We sort the rename similarity matrix with the score, in descending
238 * order (the most similar first).
240 static int score_compare(const void *a_
, const void *b_
)
242 const struct diff_score
*a
= a_
, *b
= b_
;
244 /* sink the unused ones to the bottom */
246 return (0 <= b
->dst
);
250 if (a
->score
== b
->score
)
251 return b
->name_score
- a
->name_score
;
253 return b
->score
- a
->score
;
256 struct file_similarity
{
257 struct hashmap_entry entry
;
259 struct diff_filespec
*filespec
;
262 static unsigned int hash_filespec(struct repository
*r
,
263 struct diff_filespec
*filespec
)
265 if (!filespec
->oid_valid
) {
266 if (diff_populate_filespec(r
, filespec
, NULL
))
268 hash_object_file(r
->hash_algo
, filespec
->data
, filespec
->size
,
269 OBJ_BLOB
, &filespec
->oid
);
271 return oidhash(&filespec
->oid
);
274 static int find_identical_files(struct hashmap
*srcs
,
276 struct diff_options
*options
)
279 struct diff_filespec
*target
= rename_dst
[dst_index
].p
->two
;
280 struct file_similarity
*p
, *best
= NULL
;
281 int i
= 100, best_score
= -1;
282 unsigned int hash
= hash_filespec(options
->repo
, target
);
285 * Find the best source match for specified destination.
287 p
= hashmap_get_entry_from_hash(srcs
, hash
, NULL
,
288 struct file_similarity
, entry
);
289 hashmap_for_each_entry_from(srcs
, p
, entry
) {
291 struct diff_filespec
*source
= p
->filespec
;
293 /* False hash collision? */
294 if (!oideq(&source
->oid
, &target
->oid
))
296 /* Non-regular files? If so, the modes must match! */
297 if (!S_ISREG(source
->mode
) || !S_ISREG(target
->mode
)) {
298 if (source
->mode
!= target
->mode
)
301 /* Give higher scores to sources that haven't been used already */
302 score
= !source
->rename_used
;
303 if (source
->rename_used
&& options
->detect_rename
!= DIFF_DETECT_COPY
)
305 score
+= basename_same(source
, target
);
306 if (score
> best_score
) {
313 /* Too many identical alternatives? Pick one */
318 record_rename_pair(dst_index
, best
->index
, MAX_SCORE
);
324 static void insert_file_table(struct repository
*r
,
325 struct mem_pool
*pool
,
326 struct hashmap
*table
, int index
,
327 struct diff_filespec
*filespec
)
329 struct file_similarity
*entry
= mem_pool_alloc(pool
, sizeof(*entry
));
331 entry
->index
= index
;
332 entry
->filespec
= filespec
;
334 hashmap_entry_init(&entry
->entry
, hash_filespec(r
, filespec
));
335 hashmap_add(table
, &entry
->entry
);
339 * Find exact renames first.
341 * The first round matches up the up-to-date entries,
342 * and then during the second round we try to match
343 * cache-dirty entries as well.
345 static int find_exact_renames(struct diff_options
*options
,
346 struct mem_pool
*pool
)
349 struct hashmap file_table
;
351 /* Add all sources to the hash table in reverse order, because
352 * later on they will be retrieved in LIFO order.
354 hashmap_init(&file_table
, NULL
, NULL
, rename_src_nr
);
355 for (i
= rename_src_nr
-1; i
>= 0; i
--)
356 insert_file_table(options
->repo
, pool
,
358 rename_src
[i
].p
->one
);
360 /* Walk the destinations and find best source match */
361 for (i
= 0; i
< rename_dst_nr
; i
++)
362 renames
+= find_identical_files(&file_table
, i
, options
);
364 /* Free the hash data structure (entries will be freed with the pool) */
365 hashmap_clear(&file_table
);
370 struct dir_rename_info
{
371 struct strintmap idx_map
;
372 struct strmap dir_rename_guess
;
373 struct strmap
*dir_rename_count
;
374 struct strintmap
*relevant_source_dirs
;
378 static char *get_dirname(const char *filename
)
380 char *slash
= strrchr(filename
, '/');
381 return slash
? xstrndup(filename
, slash
- filename
) : xstrdup("");
384 static void dirname_munge(char *filename
)
386 char *slash
= strrchr(filename
, '/');
392 static const char *get_highest_rename_path(struct strintmap
*counts
)
394 int highest_count
= 0;
395 const char *highest_destination_dir
= NULL
;
396 struct hashmap_iter iter
;
397 struct strmap_entry
*entry
;
399 strintmap_for_each_entry(counts
, &iter
, entry
) {
400 const char *destination_dir
= entry
->key
;
401 intptr_t count
= (intptr_t)entry
->value
;
402 if (count
> highest_count
) {
403 highest_count
= count
;
404 highest_destination_dir
= destination_dir
;
407 return highest_destination_dir
;
410 static char *UNKNOWN_DIR
= "/"; /* placeholder -- short, illegal directory */
412 static int dir_rename_already_determinable(struct strintmap
*counts
)
414 struct hashmap_iter iter
;
415 struct strmap_entry
*entry
;
416 int first
= 0, second
= 0, unknown
= 0;
417 strintmap_for_each_entry(counts
, &iter
, entry
) {
418 const char *destination_dir
= entry
->key
;
419 intptr_t count
= (intptr_t)entry
->value
;
420 if (!strcmp(destination_dir
, UNKNOWN_DIR
)) {
422 } else if (count
>= first
) {
425 } else if (count
>= second
) {
429 return first
> second
+ unknown
;
432 static void increment_count(struct dir_rename_info
*info
,
436 struct strintmap
*counts
;
437 struct strmap_entry
*e
;
439 /* Get the {new_dirs -> counts} mapping using old_dir */
440 e
= strmap_get_entry(info
->dir_rename_count
, old_dir
);
444 counts
= xmalloc(sizeof(*counts
));
445 strintmap_init_with_options(counts
, 0, NULL
, 1);
446 strmap_put(info
->dir_rename_count
, old_dir
, counts
);
449 /* Increment the count for new_dir */
450 strintmap_incr(counts
, new_dir
, 1);
453 static void update_dir_rename_counts(struct dir_rename_info
*info
,
454 struct strintmap
*dirs_removed
,
460 const char new_dir_first_char
= newname
[0];
461 int first_time_in_loop
= 1;
465 * info->setup is 0 here in two cases: (1) all auxiliary
466 * vars (like dirs_removed) were NULL so
467 * initialize_dir_rename_info() returned early, or (2)
468 * either break detection or copy detection are active so
469 * that we never called initialize_dir_rename_info(). In
470 * the former case, we don't have enough info to know if
471 * directories were renamed (because dirs_removed lets us
472 * know about a necessary prerequisite, namely if they were
473 * removed), and in the latter, we don't care about
474 * directory renames or find_basename_matches.
476 * This matters because both basename and inexact matching
477 * will also call update_dir_rename_counts(). In either of
478 * the above two cases info->dir_rename_counts will not
479 * have been properly initialized which prevents us from
480 * updating it, but in these two cases we don't care about
481 * dir_rename_counts anyway, so we can just exit early.
486 old_dir
= xstrdup(oldname
);
487 new_dir
= xstrdup(newname
);
490 int drd_flag
= NOT_RELEVANT
;
492 /* Get old_dir, skip if its directory isn't relevant. */
493 dirname_munge(old_dir
);
494 if (info
->relevant_source_dirs
&&
495 !strintmap_contains(info
->relevant_source_dirs
, old_dir
))
499 dirname_munge(new_dir
);
503 * "a/b/c/d/e/foo.c" -> "a/b/some/thing/else/e/foo.c"
504 * then this suggests that both
505 * a/b/c/d/e/ => a/b/some/thing/else/e/
506 * a/b/c/d/ => a/b/some/thing/else/
507 * so we want to increment counters for both. We do NOT,
508 * however, also want to suggest that there was the following
510 * a/b/c/ => a/b/some/thing/
511 * so we need to quit at that point.
513 * Note the when first_time_in_loop, we only strip off the
514 * basename, and we don't care if that's different.
516 if (!first_time_in_loop
) {
517 char *old_sub_dir
= strchr(old_dir
, '\0')+1;
518 char *new_sub_dir
= strchr(new_dir
, '\0')+1;
521 * Special case when renaming to root directory,
522 * i.e. when new_dir == "". In this case, we had
524 * a/b/subdir => subdir
525 * and so dirname_munge() sets things up so that
526 * old_dir = "a/b\0subdir\0"
527 * new_dir = "\0ubdir\0"
528 * We didn't have a '/' to overwrite a '\0' onto
529 * in new_dir, so we have to compare differently.
531 if (new_dir_first_char
!= old_sub_dir
[0] ||
532 strcmp(old_sub_dir
+1, new_sub_dir
))
535 if (strcmp(old_sub_dir
, new_sub_dir
))
541 * Above we suggested that we'd keep recording renames for
542 * all ancestor directories where the trailing directories
544 * "a/b/c/d/e/foo.c" -> "a/b/some/thing/else/e/foo.c"
545 * we'd increment rename counts for each of
546 * a/b/c/d/e/ => a/b/some/thing/else/e/
547 * a/b/c/d/ => a/b/some/thing/else/
548 * However, we only need the rename counts for directories
549 * in dirs_removed whose value is RELEVANT_FOR_SELF.
550 * However, we add one special case of also recording it for
551 * first_time_in_loop because find_basename_matches() can
552 * use that as a hint to find a good pairing.
555 drd_flag
= strintmap_get(dirs_removed
, old_dir
);
556 if (drd_flag
== RELEVANT_FOR_SELF
|| first_time_in_loop
)
557 increment_count(info
, old_dir
, new_dir
);
559 first_time_in_loop
= 0;
560 if (drd_flag
== NOT_RELEVANT
)
562 /* If we hit toplevel directory ("") for old or new dir, quit */
563 if (!*old_dir
|| !*new_dir
)
567 /* Free resources we don't need anymore */
572 static void initialize_dir_rename_info(struct dir_rename_info
*info
,
573 struct strintmap
*relevant_sources
,
574 struct strintmap
*dirs_removed
,
575 struct strmap
*dir_rename_count
,
576 struct strmap
*cached_pairs
)
578 struct hashmap_iter iter
;
579 struct strmap_entry
*entry
;
582 if (!dirs_removed
&& !relevant_sources
) {
588 info
->dir_rename_count
= dir_rename_count
;
589 if (!info
->dir_rename_count
) {
590 info
->dir_rename_count
= xmalloc(sizeof(*dir_rename_count
));
591 strmap_init(info
->dir_rename_count
);
593 strintmap_init_with_options(&info
->idx_map
, -1, NULL
, 0);
594 strmap_init_with_options(&info
->dir_rename_guess
, NULL
, 0);
596 /* Setup info->relevant_source_dirs */
597 info
->relevant_source_dirs
= NULL
;
598 if (dirs_removed
|| !relevant_sources
) {
599 info
->relevant_source_dirs
= dirs_removed
; /* might be NULL */
601 info
->relevant_source_dirs
= xmalloc(sizeof(struct strintmap
));
602 strintmap_init(info
->relevant_source_dirs
, 0 /* unused */);
603 strintmap_for_each_entry(relevant_sources
, &iter
, entry
) {
604 char *dirname
= get_dirname(entry
->key
);
606 strintmap_contains(dirs_removed
, dirname
))
607 strintmap_set(info
->relevant_source_dirs
,
608 dirname
, 0 /* value irrelevant */);
614 * Loop setting up both info->idx_map, and doing setup of
615 * info->dir_rename_count.
617 for (i
= 0; i
< rename_dst_nr
; ++i
) {
619 * For non-renamed files, make idx_map contain mapping of
620 * filename -> index (index within rename_dst, that is)
622 if (!rename_dst
[i
].is_rename
) {
623 char *filename
= rename_dst
[i
].p
->two
->path
;
624 strintmap_set(&info
->idx_map
, filename
, i
);
629 * For everything else (i.e. renamed files), make
630 * dir_rename_count contain a map of a map:
631 * old_directory -> {new_directory -> count}
632 * In other words, for every pair look at the directories for
633 * the old filename and the new filename and count how many
634 * times that pairing occurs.
636 update_dir_rename_counts(info
, dirs_removed
,
637 rename_dst
[i
].p
->one
->path
,
638 rename_dst
[i
].p
->two
->path
);
641 /* Add cached_pairs to counts */
642 strmap_for_each_entry(cached_pairs
, &iter
, entry
) {
643 const char *old_name
= entry
->key
;
644 const char *new_name
= entry
->value
;
646 /* known delete; ignore it */
649 update_dir_rename_counts(info
, dirs_removed
, old_name
, new_name
);
654 * dir_rename_count: old_directory -> {new_directory -> count}
656 * dir_rename_guess: old_directory -> best_new_directory
657 * where best_new_directory is the one with the highest count.
659 strmap_for_each_entry(info
->dir_rename_count
, &iter
, entry
) {
660 /* entry->key is source_dir */
661 struct strintmap
*counts
= entry
->value
;
664 best_newdir
= xstrdup(get_highest_rename_path(counts
));
665 strmap_put(&info
->dir_rename_guess
, entry
->key
,
670 void partial_clear_dir_rename_count(struct strmap
*dir_rename_count
)
672 struct hashmap_iter iter
;
673 struct strmap_entry
*entry
;
675 strmap_for_each_entry(dir_rename_count
, &iter
, entry
) {
676 struct strintmap
*counts
= entry
->value
;
677 strintmap_clear(counts
);
679 strmap_partial_clear(dir_rename_count
, 1);
682 static void cleanup_dir_rename_info(struct dir_rename_info
*info
,
683 struct strintmap
*dirs_removed
,
684 int keep_dir_rename_count
)
686 struct hashmap_iter iter
;
687 struct strmap_entry
*entry
;
688 struct string_list to_remove
= STRING_LIST_INIT_NODUP
;
695 strintmap_clear(&info
->idx_map
);
697 /* dir_rename_guess */
698 strmap_clear(&info
->dir_rename_guess
, 1);
700 /* relevant_source_dirs */
701 if (info
->relevant_source_dirs
&&
702 info
->relevant_source_dirs
!= dirs_removed
) {
703 strintmap_clear(info
->relevant_source_dirs
);
704 FREE_AND_NULL(info
->relevant_source_dirs
);
707 /* dir_rename_count */
708 if (!keep_dir_rename_count
) {
709 partial_clear_dir_rename_count(info
->dir_rename_count
);
710 strmap_clear(info
->dir_rename_count
, 1);
711 FREE_AND_NULL(info
->dir_rename_count
);
716 * Although dir_rename_count was passed in
717 * diffcore_rename_extended() and we want to keep it around and
718 * return it to that caller, we first want to remove any counts in
719 * the maps associated with UNKNOWN_DIR entries and any data
720 * associated with directories that weren't renamed.
722 strmap_for_each_entry(info
->dir_rename_count
, &iter
, entry
) {
723 const char *source_dir
= entry
->key
;
724 struct strintmap
*counts
= entry
->value
;
726 if (!strintmap_get(dirs_removed
, source_dir
)) {
727 string_list_append(&to_remove
, source_dir
);
728 strintmap_clear(counts
);
732 if (strintmap_contains(counts
, UNKNOWN_DIR
))
733 strintmap_remove(counts
, UNKNOWN_DIR
);
735 for (i
= 0; i
< to_remove
.nr
; ++i
)
736 strmap_remove(info
->dir_rename_count
,
737 to_remove
.items
[i
].string
, 1);
738 string_list_clear(&to_remove
, 0);
741 static const char *get_basename(const char *filename
)
744 * gitbasename() has to worry about special drives, multiple
745 * directory separator characters, trailing slashes, NULL or
746 * empty strings, etc. We only work on filenames as stored in
747 * git, and thus get to ignore all those complications.
749 const char *base
= strrchr(filename
, '/');
750 return base
? base
+ 1 : filename
;
753 static int idx_possible_rename(char *filename
, struct dir_rename_info
*info
)
756 * Our comparison of files with the same basename (see
757 * find_basename_matches() below), is only helpful when after exact
758 * rename detection we have exactly one file with a given basename
759 * among the rename sources and also only exactly one file with
760 * that basename among the rename destinations. When we have
761 * multiple files with the same basename in either set, we do not
762 * know which to compare against. However, there are some
763 * filenames that occur in large numbers (particularly
764 * build-related filenames such as 'Makefile', '.gitignore', or
765 * 'build.gradle' that potentially exist within every single
766 * subdirectory), and for performance we want to be able to quickly
767 * find renames for these files too.
769 * The reason basename comparisons are a useful heuristic was that it
770 * is common for people to move files across directories while keeping
771 * their filename the same. If we had a way of determining or even
772 * making a good educated guess about which directory these non-unique
773 * basename files had moved the file to, we could check it.
776 * When an entire directory is in fact renamed, we have two factors
778 * (a) the original directory disappeared giving us a hint
779 * about when we can apply an extra heuristic.
780 * (a) we often have several files within that directory and
781 * subdirectories that are renamed without changes
782 * So, rules for a heuristic:
783 * (0) If there basename matches are non-unique (the condition under
784 * which this function is called) AND
785 * (1) the directory in which the file was found has disappeared
786 * (i.e. dirs_removed is non-NULL and has a relevant entry) THEN
787 * (2) use exact renames of files within the directory to determine
788 * where the directory is likely to have been renamed to. IF
789 * there is at least one exact rename from within that
790 * directory, we can proceed.
791 * (3) If there are multiple places the directory could have been
792 * renamed to based on exact renames, ignore all but one of them.
793 * Just use the destination with the most renames going to it.
794 * (4) Check if applying that directory rename to the original file
795 * would result in a destination filename that is in the
796 * potential rename set. If so, return the index of the
797 * destination file (the index within rename_dst).
798 * (5) Compare the original file and returned destination for
799 * similarity, and if they are sufficiently similar, record the
802 * This function, idx_possible_rename(), is only responsible for (4).
803 * The conditions/steps in (1)-(3) are handled via setting up
804 * dir_rename_count and dir_rename_guess in
805 * initialize_dir_rename_info(). Steps (0) and (5) are handled by
806 * the caller of this function.
808 char *old_dir
, *new_dir
;
809 struct strbuf new_path
= STRBUF_INIT
;
815 old_dir
= get_dirname(filename
);
816 new_dir
= strmap_get(&info
->dir_rename_guess
, old_dir
);
821 strbuf_addstr(&new_path
, new_dir
);
822 strbuf_addch(&new_path
, '/');
823 strbuf_addstr(&new_path
, get_basename(filename
));
825 idx
= strintmap_get(&info
->idx_map
, new_path
.buf
);
826 strbuf_release(&new_path
);
830 struct basename_prefetch_options
{
831 struct repository
*repo
;
832 struct strintmap
*relevant_sources
;
833 struct strintmap
*sources
;
834 struct strintmap
*dests
;
835 struct dir_rename_info
*info
;
837 static void basename_prefetch(void *prefetch_options
)
839 struct basename_prefetch_options
*options
= prefetch_options
;
840 struct strintmap
*relevant_sources
= options
->relevant_sources
;
841 struct strintmap
*sources
= options
->sources
;
842 struct strintmap
*dests
= options
->dests
;
843 struct dir_rename_info
*info
= options
->info
;
845 struct oid_array to_fetch
= OID_ARRAY_INIT
;
848 * TODO: The following loops mirror the code/logic from
849 * find_basename_matches(), though not quite exactly. Maybe
850 * abstract the iteration logic out somehow?
852 for (i
= 0; i
< rename_src_nr
; ++i
) {
853 char *filename
= rename_src
[i
].p
->one
->path
;
854 const char *base
= NULL
;
858 /* Skip irrelevant sources */
859 if (relevant_sources
&&
860 !strintmap_contains(relevant_sources
, filename
))
864 * If the basename is unique among remaining sources, then
865 * src_index will equal 'i' and we can attempt to match it
866 * to a unique basename in the destinations. Otherwise,
867 * use directory rename heuristics, if possible.
869 base
= get_basename(filename
);
870 src_index
= strintmap_get(sources
, base
);
871 assert(src_index
== -1 || src_index
== i
);
873 if (strintmap_contains(dests
, base
)) {
874 struct diff_filespec
*one
, *two
;
876 /* Find a matching destination, if possible */
877 dst_index
= strintmap_get(dests
, base
);
878 if (src_index
== -1 || dst_index
== -1) {
880 dst_index
= idx_possible_rename(filename
, info
);
885 /* Ignore this dest if already used in a rename */
886 if (rename_dst
[dst_index
].is_rename
)
887 continue; /* already used previously */
889 one
= rename_src
[src_index
].p
->one
;
890 two
= rename_dst
[dst_index
].p
->two
;
893 diff_add_if_missing(options
->repo
, &to_fetch
, two
);
894 diff_add_if_missing(options
->repo
, &to_fetch
, one
);
898 promisor_remote_get_direct(options
->repo
, to_fetch
.oid
, to_fetch
.nr
);
899 oid_array_clear(&to_fetch
);
902 static int find_basename_matches(struct diff_options
*options
,
904 struct dir_rename_info
*info
,
905 struct strintmap
*relevant_sources
,
906 struct strintmap
*dirs_removed
)
909 * When I checked in early 2020, over 76% of file renames in linux
910 * just moved files to a different directory but kept the same
911 * basename. gcc did that with over 64% of renames, gecko did it
912 * with over 79%, and WebKit did it with over 89%.
914 * Therefore we can bypass the normal exhaustive NxM matrix
915 * comparison of similarities between all potential rename sources
916 * and destinations by instead using file basename as a hint (i.e.
917 * the portion of the filename after the last '/'), checking for
918 * similarity between files with the same basename, and if we find
919 * a pair that are sufficiently similar, record the rename pair and
920 * exclude those two from the NxM matrix.
922 * This *might* cause us to find a less than optimal pairing (if
923 * there is another file that we are even more similar to but has a
924 * different basename). Given the huge performance advantage
925 * basename matching provides, and given the frequency with which
926 * people use the same basename in real world projects, that's a
927 * trade-off we are willing to accept when doing just rename
930 * If someone wants copy detection that implies they are willing to
931 * spend more cycles to find similarities between files, so it may
932 * be less likely that this heuristic is wanted. If someone is
933 * doing break detection, that means they do not want filename
934 * similarity to imply any form of content similiarity, and thus
935 * this heuristic would definitely be incompatible.
939 struct strintmap sources
;
940 struct strintmap dests
;
941 struct diff_populate_filespec_options dpf_options
= {
943 .missing_object_cb
= NULL
,
944 .missing_object_data
= NULL
946 struct basename_prefetch_options prefetch_options
= {
947 .repo
= options
->repo
,
948 .relevant_sources
= relevant_sources
,
955 * Create maps of basename -> fullname(s) for remaining sources and
958 strintmap_init_with_options(&sources
, -1, NULL
, 0);
959 strintmap_init_with_options(&dests
, -1, NULL
, 0);
960 for (i
= 0; i
< rename_src_nr
; ++i
) {
961 char *filename
= rename_src
[i
].p
->one
->path
;
964 /* exact renames removed in remove_unneeded_paths_from_src() */
965 assert(!rename_src
[i
].p
->one
->rename_used
);
967 /* Record index within rename_src (i) if basename is unique */
968 base
= get_basename(filename
);
969 if (strintmap_contains(&sources
, base
))
970 strintmap_set(&sources
, base
, -1);
972 strintmap_set(&sources
, base
, i
);
974 for (i
= 0; i
< rename_dst_nr
; ++i
) {
975 char *filename
= rename_dst
[i
].p
->two
->path
;
978 if (rename_dst
[i
].is_rename
)
979 continue; /* involved in exact match already. */
981 /* Record index within rename_dst (i) if basename is unique */
982 base
= get_basename(filename
);
983 if (strintmap_contains(&dests
, base
))
984 strintmap_set(&dests
, base
, -1);
986 strintmap_set(&dests
, base
, i
);
989 if (options
->repo
== the_repository
&& repo_has_promisor_remote(the_repository
)) {
990 dpf_options
.missing_object_cb
= basename_prefetch
;
991 dpf_options
.missing_object_data
= &prefetch_options
;
994 /* Now look for basename matchups and do similarity estimation */
995 for (i
= 0; i
< rename_src_nr
; ++i
) {
996 char *filename
= rename_src
[i
].p
->one
->path
;
997 const char *base
= NULL
;
1001 /* Skip irrelevant sources */
1002 if (relevant_sources
&&
1003 !strintmap_contains(relevant_sources
, filename
))
1007 * If the basename is unique among remaining sources, then
1008 * src_index will equal 'i' and we can attempt to match it
1009 * to a unique basename in the destinations. Otherwise,
1010 * use directory rename heuristics, if possible.
1012 base
= get_basename(filename
);
1013 src_index
= strintmap_get(&sources
, base
);
1014 assert(src_index
== -1 || src_index
== i
);
1016 if (strintmap_contains(&dests
, base
)) {
1017 struct diff_filespec
*one
, *two
;
1020 /* Find a matching destination, if possible */
1021 dst_index
= strintmap_get(&dests
, base
);
1022 if (src_index
== -1 || dst_index
== -1) {
1024 dst_index
= idx_possible_rename(filename
, info
);
1026 if (dst_index
== -1)
1029 /* Ignore this dest if already used in a rename */
1030 if (rename_dst
[dst_index
].is_rename
)
1031 continue; /* already used previously */
1033 /* Estimate the similarity */
1034 one
= rename_src
[src_index
].p
->one
;
1035 two
= rename_dst
[dst_index
].p
->two
;
1036 score
= estimate_similarity(options
->repo
, one
, two
,
1037 minimum_score
, &dpf_options
);
1039 /* If sufficiently similar, record as rename pair */
1040 if (score
< minimum_score
)
1042 record_rename_pair(dst_index
, src_index
, score
);
1044 update_dir_rename_counts(info
, dirs_removed
,
1045 one
->path
, two
->path
);
1048 * Found a rename so don't need text anymore; if we
1049 * didn't find a rename, the filespec_blob would get
1050 * re-used when doing the matrix of comparisons.
1052 diff_free_filespec_blob(one
);
1053 diff_free_filespec_blob(two
);
1057 strintmap_clear(&sources
);
1058 strintmap_clear(&dests
);
1063 #define NUM_CANDIDATE_PER_DST 4
1064 static void record_if_better(struct diff_score m
[], struct diff_score
*o
)
1068 /* find the worst one */
1070 for (i
= 1; i
< NUM_CANDIDATE_PER_DST
; i
++)
1071 if (score_compare(&m
[i
], &m
[worst
]) > 0)
1074 /* is it better than the worst one? */
1075 if (score_compare(&m
[worst
], o
) > 0)
1081 * 0 if we are under the limit;
1082 * 1 if we need to disable inexact rename detection;
1083 * 2 if we would be under the limit if we were given -C instead of -C -C.
1085 static int too_many_rename_candidates(int num_destinations
, int num_sources
,
1086 struct diff_options
*options
)
1088 int rename_limit
= options
->rename_limit
;
1089 int i
, limited_sources
;
1091 options
->needed_rename_limit
= 0;
1094 * This basically does a test for the rename matrix not
1095 * growing larger than a "rename_limit" square matrix, ie:
1097 * num_destinations * num_sources > rename_limit * rename_limit
1099 * We use st_mult() to check overflow conditions; in the
1100 * exceptional circumstance that size_t isn't large enough to hold
1101 * the multiplication, the system won't be able to allocate enough
1102 * memory for the matrix anyway.
1104 if (rename_limit
<= 0)
1105 return 0; /* treat as unlimited */
1106 if (st_mult(num_destinations
, num_sources
)
1107 <= st_mult(rename_limit
, rename_limit
))
1110 options
->needed_rename_limit
=
1111 num_sources
> num_destinations
? num_sources
: num_destinations
;
1113 /* Are we running under -C -C? */
1114 if (!options
->flags
.find_copies_harder
)
1117 /* Would we bust the limit if we were running under -C? */
1118 for (limited_sources
= i
= 0; i
< num_sources
; i
++) {
1119 if (diff_unmodified_pair(rename_src
[i
].p
))
1123 if (st_mult(num_destinations
, limited_sources
)
1124 <= st_mult(rename_limit
, rename_limit
))
1129 static int find_renames(struct diff_score
*mx
,
1133 struct dir_rename_info
*info
,
1134 struct strintmap
*dirs_removed
)
1138 for (i
= 0; i
< dst_cnt
* NUM_CANDIDATE_PER_DST
; i
++) {
1139 struct diff_rename_dst
*dst
;
1141 if ((mx
[i
].dst
< 0) ||
1142 (mx
[i
].score
< minimum_score
))
1143 break; /* there is no more usable pair. */
1144 dst
= &rename_dst
[mx
[i
].dst
];
1146 continue; /* already done, either exact or fuzzy. */
1147 if (!copies
&& rename_src
[mx
[i
].src
].p
->one
->rename_used
)
1149 record_rename_pair(mx
[i
].dst
, mx
[i
].src
, mx
[i
].score
);
1151 update_dir_rename_counts(info
, dirs_removed
,
1152 rename_src
[mx
[i
].src
].p
->one
->path
,
1153 rename_dst
[mx
[i
].dst
].p
->two
->path
);
1158 static void remove_unneeded_paths_from_src(int detecting_copies
,
1159 struct strintmap
*interesting
)
1163 if (detecting_copies
&& !interesting
)
1164 return; /* nothing to remove */
1166 return; /* culling incompatible with break detection */
1169 * Note on reasons why we cull unneeded sources but not destinations:
1170 * 1) Pairings are stored in rename_dst (not rename_src), which we
1171 * need to keep around. So, we just can't cull rename_dst even
1172 * if we wanted to. But doing so wouldn't help because...
1174 * 2) There is a matrix pairwise comparison that follows the
1175 * "Performing inexact rename detection" progress message.
1176 * Iterating over the destinations is done in the outer loop,
1177 * hence we only iterate over each of those once and we can
1178 * easily skip the outer loop early if the destination isn't
1179 * relevant. That's only one check per destination path to
1182 * By contrast, the sources are iterated in the inner loop; if
1183 * we check whether a source can be skipped, then we'll be
1184 * checking it N separate times, once for each destination.
1185 * We don't want to have to iterate over known-not-needed
1186 * sources N times each, so avoid that by removing the sources
1187 * from rename_src here.
1189 for (i
= 0, new_num_src
= 0; i
< rename_src_nr
; i
++) {
1190 struct diff_filespec
*one
= rename_src
[i
].p
->one
;
1193 * renames are stored in rename_dst, so if a rename has
1194 * already been detected using this source, we can just
1195 * remove the source knowing rename_dst has its info.
1197 if (!detecting_copies
&& one
->rename_used
)
1200 /* If we don't care about the source path, skip it */
1201 if (interesting
&& !strintmap_contains(interesting
, one
->path
))
1204 if (new_num_src
< i
)
1205 memcpy(&rename_src
[new_num_src
], &rename_src
[i
],
1206 sizeof(struct diff_rename_src
));
1210 rename_src_nr
= new_num_src
;
1213 static void handle_early_known_dir_renames(struct dir_rename_info
*info
,
1214 struct strintmap
*relevant_sources
,
1215 struct strintmap
*dirs_removed
)
1218 * Directory renames are determined via an aggregate of all renames
1219 * under them and using a "majority wins" rule. The fact that
1220 * "majority wins", though, means we don't need all the renames
1221 * under the given directory, we only need enough to ensure we have
1226 struct hashmap_iter iter
;
1227 struct strmap_entry
*entry
;
1229 if (!dirs_removed
|| !relevant_sources
)
1230 return; /* nothing to cull */
1232 return; /* culling incompatbile with break detection */
1235 * Supplement dir_rename_count with number of potential renames,
1236 * marking all potential rename sources as mapping to UNKNOWN_DIR.
1238 for (i
= 0; i
< rename_src_nr
; i
++) {
1240 struct diff_filespec
*one
= rename_src
[i
].p
->one
;
1243 * sources that are part of a rename will have already been
1244 * removed by a prior call to remove_unneeded_paths_from_src()
1246 assert(!one
->rename_used
);
1248 old_dir
= get_dirname(one
->path
);
1249 while (*old_dir
!= '\0' &&
1250 NOT_RELEVANT
!= strintmap_get(dirs_removed
, old_dir
)) {
1251 char *freeme
= old_dir
;
1253 increment_count(info
, old_dir
, UNKNOWN_DIR
);
1254 old_dir
= get_dirname(old_dir
);
1256 /* Free resources we don't need anymore */
1260 * old_dir and new_dir free'd in increment_count, but
1261 * get_dirname() gives us a new pointer we need to free for
1262 * old_dir. Also, if the loop runs 0 times we need old_dir
1269 * For any directory which we need a potential rename detected for
1270 * (i.e. those marked as RELEVANT_FOR_SELF in dirs_removed), check
1271 * whether we have enough renames to satisfy the "majority rules"
1272 * requirement such that detecting any more renames of files under
1273 * it won't change the result. For any such directory, mark that
1274 * we no longer need to detect a rename for it. However, since we
1275 * might need to still detect renames for an ancestor of that
1276 * directory, use RELEVANT_FOR_ANCESTOR.
1278 strmap_for_each_entry(info
->dir_rename_count
, &iter
, entry
) {
1279 /* entry->key is source_dir */
1280 struct strintmap
*counts
= entry
->value
;
1282 if (strintmap_get(dirs_removed
, entry
->key
) ==
1283 RELEVANT_FOR_SELF
&&
1284 dir_rename_already_determinable(counts
)) {
1285 strintmap_set(dirs_removed
, entry
->key
,
1286 RELEVANT_FOR_ANCESTOR
);
1290 for (i
= 0, new_num_src
= 0; i
< rename_src_nr
; i
++) {
1291 struct diff_filespec
*one
= rename_src
[i
].p
->one
;
1294 val
= strintmap_get(relevant_sources
, one
->path
);
1297 * sources that were not found in relevant_sources should
1298 * have already been removed by a prior call to
1299 * remove_unneeded_paths_from_src()
1303 if (val
== RELEVANT_LOCATION
) {
1305 char *dir
= get_dirname(one
->path
);
1308 int res
= strintmap_get(dirs_removed
, dir
);
1310 /* Quit if not found or irrelevant */
1311 if (res
== NOT_RELEVANT
)
1313 /* If RELEVANT_FOR_SELF, can't remove */
1314 if (res
== RELEVANT_FOR_SELF
) {
1318 /* Else continue searching upwards */
1319 assert(res
== RELEVANT_FOR_ANCESTOR
);
1320 dir
= get_dirname(dir
);
1325 strintmap_set(relevant_sources
, one
->path
,
1331 if (new_num_src
< i
)
1332 memcpy(&rename_src
[new_num_src
], &rename_src
[i
],
1333 sizeof(struct diff_rename_src
));
1337 rename_src_nr
= new_num_src
;
1340 static void free_filespec_data(struct diff_filespec
*spec
)
1343 diff_free_filespec_data(spec
);
1346 static void pool_free_filespec(struct mem_pool
*pool
,
1347 struct diff_filespec
*spec
)
1350 free_filespec(spec
);
1355 * Similar to free_filespec(), but only frees the data. The spec
1356 * itself was allocated in the pool and should not be individually
1359 free_filespec_data(spec
);
1362 void pool_diff_free_filepair(struct mem_pool
*pool
,
1363 struct diff_filepair
*p
)
1366 diff_free_filepair(p
);
1371 * Similar to diff_free_filepair() but only frees the data from the
1372 * filespecs; not the filespecs or the filepair which were
1373 * allocated from the pool.
1375 free_filespec_data(p
->one
);
1376 free_filespec_data(p
->two
);
1379 void diffcore_rename_extended(struct diff_options
*options
,
1380 struct mem_pool
*pool
,
1381 struct strintmap
*relevant_sources
,
1382 struct strintmap
*dirs_removed
,
1383 struct strmap
*dir_rename_count
,
1384 struct strmap
*cached_pairs
)
1386 int detect_rename
= options
->detect_rename
;
1387 int minimum_score
= options
->rename_score
;
1388 struct diff_queue_struct
*q
= &diff_queued_diff
;
1389 struct diff_queue_struct outq
;
1390 struct diff_score
*mx
;
1391 int i
, j
, rename_count
, skip_unmodified
= 0;
1392 int num_destinations
, dst_cnt
;
1393 int num_sources
, want_copies
;
1394 struct progress
*progress
= NULL
;
1395 struct mem_pool local_pool
;
1396 struct dir_rename_info info
;
1397 struct diff_populate_filespec_options dpf_options
= {
1399 .missing_object_cb
= NULL
,
1400 .missing_object_data
= NULL
1402 struct inexact_prefetch_options prefetch_options
= {
1403 .repo
= options
->repo
1406 trace2_region_enter("diff", "setup", options
->repo
);
1408 assert(!dir_rename_count
|| strmap_empty(dir_rename_count
));
1409 want_copies
= (detect_rename
== DIFF_DETECT_COPY
);
1410 if (dirs_removed
&& (break_idx
|| want_copies
))
1411 BUG("dirs_removed incompatible with break/copy detection");
1412 if (break_idx
&& relevant_sources
)
1413 BUG("break detection incompatible with source specification");
1415 minimum_score
= DEFAULT_RENAME_SCORE
;
1417 for (i
= 0; i
< q
->nr
; i
++) {
1418 struct diff_filepair
*p
= q
->queue
[i
];
1419 if (!DIFF_FILE_VALID(p
->one
)) {
1420 if (!DIFF_FILE_VALID(p
->two
))
1421 continue; /* unmerged */
1422 else if (options
->single_follow
&&
1423 strcmp(options
->single_follow
, p
->two
->path
))
1424 continue; /* not interested */
1425 else if (!options
->flags
.rename_empty
&&
1426 is_empty_blob_oid(&p
->two
->oid
))
1428 else if (add_rename_dst(p
) < 0) {
1429 warning("skipping rename detection, detected"
1430 " duplicate destination '%s'",
1435 else if (!options
->flags
.rename_empty
&&
1436 is_empty_blob_oid(&p
->one
->oid
))
1438 else if (!DIFF_PAIR_UNMERGED(p
) && !DIFF_FILE_VALID(p
->two
)) {
1440 * If the source is a broken "delete", and
1441 * they did not really want to get broken,
1442 * that means the source actually stays.
1443 * So we increment the "rename_used" score
1444 * by one, to indicate ourselves as a user
1446 if (p
->broken_pair
&& !p
->score
)
1447 p
->one
->rename_used
++;
1448 register_rename_src(p
);
1450 else if (want_copies
) {
1452 * Increment the "rename_used" score by
1453 * one, to indicate ourselves as a user.
1455 p
->one
->rename_used
++;
1456 register_rename_src(p
);
1459 trace2_region_leave("diff", "setup", options
->repo
);
1460 if (rename_dst_nr
== 0 || rename_src_nr
== 0)
1461 goto cleanup
; /* nothing to do */
1463 trace2_region_enter("diff", "exact renames", options
->repo
);
1464 mem_pool_init(&local_pool
, 32*1024);
1466 * We really want to cull the candidates list early
1467 * with cheap tests in order to avoid doing deltas.
1469 rename_count
= find_exact_renames(options
, &local_pool
);
1471 * Discard local_pool immediately instead of at "cleanup:" in order
1472 * to reduce maximum memory usage; inexact rename detection uses up
1473 * a fair amount of memory, and mem_pools can too.
1475 mem_pool_discard(&local_pool
, 0);
1476 trace2_region_leave("diff", "exact renames", options
->repo
);
1478 /* Did we only want exact renames? */
1479 if (minimum_score
== MAX_SCORE
)
1482 num_sources
= rename_src_nr
;
1484 if (want_copies
|| break_idx
) {
1487 * - remove ones corresponding to exact renames
1488 * - remove ones not found in relevant_sources
1490 trace2_region_enter("diff", "cull after exact", options
->repo
);
1491 remove_unneeded_paths_from_src(want_copies
, relevant_sources
);
1492 trace2_region_leave("diff", "cull after exact", options
->repo
);
1494 /* Determine minimum score to match basenames */
1495 double factor
= 0.5;
1496 char *basename_factor
= getenv("GIT_BASENAME_FACTOR");
1497 int min_basename_score
;
1499 if (basename_factor
)
1500 factor
= strtol(basename_factor
, NULL
, 10)/100.0;
1501 assert(factor
>= 0.0 && factor
<= 1.0);
1502 min_basename_score
= minimum_score
+
1503 (int)(factor
* (MAX_SCORE
- minimum_score
));
1507 * - remove ones involved in renames (found via exact match)
1509 trace2_region_enter("diff", "cull after exact", options
->repo
);
1510 remove_unneeded_paths_from_src(want_copies
, NULL
);
1511 trace2_region_leave("diff", "cull after exact", options
->repo
);
1513 /* Preparation for basename-driven matching. */
1514 trace2_region_enter("diff", "dir rename setup", options
->repo
);
1515 initialize_dir_rename_info(&info
, relevant_sources
,
1516 dirs_removed
, dir_rename_count
,
1518 trace2_region_leave("diff", "dir rename setup", options
->repo
);
1520 /* Utilize file basenames to quickly find renames. */
1521 trace2_region_enter("diff", "basename matches", options
->repo
);
1522 rename_count
+= find_basename_matches(options
,
1527 trace2_region_leave("diff", "basename matches", options
->repo
);
1530 * Cull sources, again:
1531 * - remove ones involved in renames (found via basenames)
1532 * - remove ones not found in relevant_sources
1534 * - remove ones in relevant_sources which are needed only
1535 * for directory renames IF no ancestory directory
1536 * actually needs to know any more individual path
1537 * renames under them
1539 trace2_region_enter("diff", "cull basename", options
->repo
);
1540 remove_unneeded_paths_from_src(want_copies
, relevant_sources
);
1541 handle_early_known_dir_renames(&info
, relevant_sources
,
1543 trace2_region_leave("diff", "cull basename", options
->repo
);
1546 /* Calculate how many rename destinations are left */
1547 num_destinations
= (rename_dst_nr
- rename_count
);
1548 num_sources
= rename_src_nr
; /* rename_src_nr reflects lower number */
1551 if (!num_destinations
|| !num_sources
)
1554 switch (too_many_rename_candidates(num_destinations
, num_sources
,
1559 options
->degraded_cc_to_c
= 1;
1560 skip_unmodified
= 1;
1566 trace2_region_enter("diff", "inexact renames", options
->repo
);
1567 if (options
->show_rename_progress
) {
1568 progress
= start_delayed_progress(
1569 _("Performing inexact rename detection"),
1570 (uint64_t)num_destinations
* (uint64_t)num_sources
);
1573 /* Finish setting up dpf_options */
1574 prefetch_options
.skip_unmodified
= skip_unmodified
;
1575 if (options
->repo
== the_repository
&& repo_has_promisor_remote(the_repository
)) {
1576 dpf_options
.missing_object_cb
= inexact_prefetch
;
1577 dpf_options
.missing_object_data
= &prefetch_options
;
1580 CALLOC_ARRAY(mx
, st_mult(NUM_CANDIDATE_PER_DST
, num_destinations
));
1581 for (dst_cnt
= i
= 0; i
< rename_dst_nr
; i
++) {
1582 struct diff_filespec
*two
= rename_dst
[i
].p
->two
;
1583 struct diff_score
*m
;
1585 if (rename_dst
[i
].is_rename
)
1586 continue; /* exact or basename match already handled */
1588 m
= &mx
[dst_cnt
* NUM_CANDIDATE_PER_DST
];
1589 for (j
= 0; j
< NUM_CANDIDATE_PER_DST
; j
++)
1592 for (j
= 0; j
< rename_src_nr
; j
++) {
1593 struct diff_filespec
*one
= rename_src
[j
].p
->one
;
1594 struct diff_score this_src
;
1596 assert(!one
->rename_used
|| want_copies
|| break_idx
);
1598 if (skip_unmodified
&&
1599 diff_unmodified_pair(rename_src
[j
].p
))
1602 this_src
.score
= estimate_similarity(options
->repo
,
1606 this_src
.name_score
= basename_same(one
, two
);
1609 record_if_better(m
, &this_src
);
1611 * Once we run estimate_similarity,
1612 * We do not need the text anymore.
1614 diff_free_filespec_blob(one
);
1615 diff_free_filespec_blob(two
);
1618 display_progress(progress
,
1619 (uint64_t)dst_cnt
* (uint64_t)num_sources
);
1621 stop_progress(&progress
);
1623 /* cost matrix sorted by most to least similar pair */
1624 STABLE_QSORT(mx
, dst_cnt
* NUM_CANDIDATE_PER_DST
, score_compare
);
1626 rename_count
+= find_renames(mx
, dst_cnt
, minimum_score
, 0,
1627 &info
, dirs_removed
);
1629 rename_count
+= find_renames(mx
, dst_cnt
, minimum_score
, 1,
1630 &info
, dirs_removed
);
1632 trace2_region_leave("diff", "inexact renames", options
->repo
);
1635 /* At this point, we have found some renames and copies and they
1636 * are recorded in rename_dst. The original list is still in *q.
1638 trace2_region_enter("diff", "write back to queue", options
->repo
);
1639 DIFF_QUEUE_CLEAR(&outq
);
1640 for (i
= 0; i
< q
->nr
; i
++) {
1641 struct diff_filepair
*p
= q
->queue
[i
];
1642 struct diff_filepair
*pair_to_free
= NULL
;
1644 if (DIFF_PAIR_UNMERGED(p
)) {
1647 else if (!DIFF_FILE_VALID(p
->one
) && DIFF_FILE_VALID(p
->two
)) {
1651 else if (DIFF_FILE_VALID(p
->one
) && !DIFF_FILE_VALID(p
->two
)) {
1655 * We would output this delete record if:
1657 * (1) this is a broken delete and the counterpart
1658 * broken create remains in the output; or
1659 * (2) this is not a broken delete, and rename_dst
1660 * does not have a rename/copy to move p->one->path
1663 * Otherwise, the counterpart broken create
1664 * has been turned into a rename-edit; or
1665 * delete did not have a matching create to
1668 if (DIFF_PAIR_BROKEN(p
)) {
1670 struct diff_rename_dst
*dst
= locate_rename_dst(p
);
1672 BUG("tracking failed somehow; failed to find associated dst for broken pair");
1674 /* counterpart is now rename/copy */
1678 if (p
->one
->rename_used
)
1679 /* this path remains */
1686 else if (!diff_unmodified_pair(p
))
1687 /* all the usual ones need to be kept */
1690 /* no need to keep unmodified pairs */
1694 pool_diff_free_filepair(pool
, pair_to_free
);
1696 diff_debug_queue("done copying original", &outq
);
1700 diff_debug_queue("done collapsing", q
);
1702 for (i
= 0; i
< rename_dst_nr
; i
++)
1703 if (rename_dst
[i
].filespec_to_free
)
1704 pool_free_filespec(pool
, rename_dst
[i
].filespec_to_free
);
1706 cleanup_dir_rename_info(&info
, dirs_removed
, dir_rename_count
!= NULL
);
1707 FREE_AND_NULL(rename_dst
);
1708 rename_dst_nr
= rename_dst_alloc
= 0;
1709 FREE_AND_NULL(rename_src
);
1710 rename_src_nr
= rename_src_alloc
= 0;
1712 strintmap_clear(break_idx
);
1713 FREE_AND_NULL(break_idx
);
1715 trace2_region_leave("diff", "write back to queue", options
->repo
);
1719 void diffcore_rename(struct diff_options
*options
)
1721 diffcore_rename_extended(options
, NULL
, NULL
, NULL
, NULL
, NULL
);