Skip to content

Commit da09f65

Browse files
newrengitster
authored andcommitted
diffcore-rename: complete find_basename_matches()
It is not uncommon in real world repositories for the majority of file renames to not change the basename of the file; i.e. most "renames" are just a move of files into different directories. We can make use of this to avoid comparing all rename source candidates with all rename destination candidates, by first comparing sources to destinations with the same basenames. If two files with the same basename are sufficiently similar, we record the rename; if not, we include those files in the more exhaustive matrix comparison. This means we are adding a set of preliminary additional comparisons, but for each file we only compare it with at most one other file. For example, if there was a include/media/device.h that was deleted and a src/module/media/device.h that was added, and there are no other device.h files in the remaining sets of added and deleted files after exact rename detection, then these two files would be compared in the preliminary step. This commit does not yet actually employ this new optimization, it merely adds a function which can be used for this purpose. The next commit will do the necessary plumbing to make use of it. Note that this optimization might give us different results than without the optimization, because it's possible that despite files with the same basename being sufficiently similar to be considered a rename, there's an even better match between files without the same basename. I think that is okay for four reasons: (1) it's easy to explain to the users what happened if it does ever occur (or even for them to intuitively figure out), (2) as the next patch will show it provides such a large performance boost that it's worth the tradeoff, and (3) it's somewhat unlikely that despite having unique matching basenames that other files serve as better matches. Reason (4) takes a full paragraph to explain... If the previous three reasons aren't enough, consider what rename detection already does. Break detection is not the default, meaning that if files have the same _fullname_, then they are considered related even if they are 0% similar. In fact, in such a case, we don't even bother comparing the files to see if they are similar let alone comparing them to all other files to see what they are most similar to. Basically, we override content similarity based on sufficient filename similarity. Without the filename similarity (currently implemented as an exact match of filename), we swing the pendulum the opposite direction and say that filename similarity is irrelevant and compare a full N x M matrix of sources and destinations to find out which have the most similar contents. This optimization just adds another form of filename similarity comparison, but augments it with a file content similarity check as well. Basically, if two files have the same basename and are sufficiently similar to be considered a rename, mark them as such without comparing the two to all other rename candidates. Signed-off-by: Elijah Newren <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent a35df33 commit da09f65

File tree

1 file changed

+79
-3
lines changed

1 file changed

+79
-3
lines changed

diffcore-rename.c

Lines changed: 79 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -383,9 +383,53 @@ MAYBE_UNUSED
383383
static int find_basename_matches(struct diff_options *options,
384384
int minimum_score)
385385
{
386-
int i;
386+
/*
387+
* When I checked in early 2020, over 76% of file renames in linux
388+
* just moved files to a different directory but kept the same
389+
* basename. gcc did that with over 64% of renames, gecko did it
390+
* with over 79%, and WebKit did it with over 89%.
391+
*
392+
* Therefore we can bypass the normal exhaustive NxM matrix
393+
* comparison of similarities between all potential rename sources
394+
* and destinations by instead using file basename as a hint (i.e.
395+
* the portion of the filename after the last '/'), checking for
396+
* similarity between files with the same basename, and if we find
397+
* a pair that are sufficiently similar, record the rename pair and
398+
* exclude those two from the NxM matrix.
399+
*
400+
* This *might* cause us to find a less than optimal pairing (if
401+
* there is another file that we are even more similar to but has a
402+
* different basename). Given the huge performance advantage
403+
* basename matching provides, and given the frequency with which
404+
* people use the same basename in real world projects, that's a
405+
* trade-off we are willing to accept when doing just rename
406+
* detection.
407+
*
408+
* If someone wants copy detection that implies they are willing to
409+
* spend more cycles to find similarities between files, so it may
410+
* be less likely that this heuristic is wanted. If someone is
411+
* doing break detection, that means they do not want filename
412+
* similarity to imply any form of content similiarity, and thus
413+
* this heuristic would definitely be incompatible.
414+
*/
415+
416+
int i, renames = 0;
387417
struct strintmap sources;
388418
struct strintmap dests;
419+
struct hashmap_iter iter;
420+
struct strmap_entry *entry;
421+
422+
/*
423+
* The prefeteching stuff wants to know if it can skip prefetching
424+
* blobs that are unmodified...and will then do a little extra work
425+
* to verify that the oids are indeed different before prefetching.
426+
* Unmodified blobs are only relevant when doing copy detection;
427+
* when limiting to rename detection, diffcore_rename[_extended]()
428+
* will never be called with unmodified source paths fed to us, so
429+
* the extra work necessary to check if rename_src entries are
430+
* unmodified would be a small waste.
431+
*/
432+
int skip_unmodified = 0;
389433

390434
/*
391435
* Create maps of basename -> fullname(s) for remaining sources and
@@ -422,12 +466,44 @@ static int find_basename_matches(struct diff_options *options,
422466
strintmap_set(&dests, base, i);
423467
}
424468

425-
/* TODO: Make use of basenames source and destination basenames */
469+
/* Now look for basename matchups and do similarity estimation */
470+
strintmap_for_each_entry(&sources, &iter, entry) {
471+
const char *base = entry->key;
472+
intptr_t src_index = (intptr_t)entry->value;
473+
intptr_t dst_index;
474+
if (src_index == -1)
475+
continue;
476+
477+
if (0 <= (dst_index = strintmap_get(&dests, base))) {
478+
struct diff_filespec *one, *two;
479+
int score;
480+
481+
/* Estimate the similarity */
482+
one = rename_src[src_index].p->one;
483+
two = rename_dst[dst_index].p->two;
484+
score = estimate_similarity(options->repo, one, two,
485+
minimum_score, skip_unmodified);
486+
487+
/* If sufficiently similar, record as rename pair */
488+
if (score < minimum_score)
489+
continue;
490+
record_rename_pair(dst_index, src_index, score);
491+
renames++;
492+
493+
/*
494+
* Found a rename so don't need text anymore; if we
495+
* didn't find a rename, the filespec_blob would get
496+
* re-used when doing the matrix of comparisons.
497+
*/
498+
diff_free_filespec_blob(one);
499+
diff_free_filespec_blob(two);
500+
}
501+
}
426502

427503
strintmap_clear(&sources);
428504
strintmap_clear(&dests);
429505

430-
return 0;
506+
return renames;
431507
}
432508

433509
#define NUM_CANDIDATE_PER_DST 4

0 commit comments

Comments
 (0)