]> source.dussan.org Git - jgit.git/commitdiff
Added file size based rename detection optimization 91/1091/2
authorJeff Schumacher <jeffschu@google.com>
Fri, 9 Jul 2010 18:18:50 +0000 (11:18 -0700)
committerJeff Schumacher <jeffschu@google.com>
Mon, 12 Jul 2010 19:24:42 +0000 (12:24 -0700)
Prior to this change, files that were very different in size (enough
so that they could not have enough in common to be detected as
renames) were still having their scores calculated. I added an
optimization to skip such files. For example, if the rename detection
threshold is 60%, the larger file is 200kb, and the smaller file is
50kb, the pair cannot be counted as a rename since they cannot
possibly share 60% of their content in common. (200*.6=120, 120>50)

Change-Id: Icd8315412d5de6292839778e7cea7fe6f061b0fc

org.eclipse.jgit/src/org/eclipse/jgit/diff/SimilarityRenameDetector.java

index c92b1e3bb15f87ccc36c3603d842723fa8f129cf..a343fc0625bcd03ceac27df0fe5d1970637030fb 100644 (file)
@@ -205,6 +205,14 @@ class SimilarityRenameDetector {
                //
                matrix = new long[srcs.size() * dsts.size()];
 
+               long[] srcSizes = new long[srcs.size()];
+               long[] dstSizes = new long[dsts.size()];
+
+               // Init the size arrays to some value that indicates that we haven't
+               // calculated the size yet. Since sizes cannot be negative, -1 will work
+               Arrays.fill(srcSizes, -1);
+               Arrays.fill(dstSizes, -1);
+
                // Consider each pair of files, if the score is above the minimum
                // threshold we need record that scoring in the matrix so we can
                // later find the best matches.
@@ -231,6 +239,26 @@ class SimilarityRenameDetector {
                                        continue;
                                }
 
+                               long srcSize = srcSizes[srcIdx];
+                               if (srcSize < 0) {
+                                       srcSize = size(srcEnt.oldId.toObjectId());
+                                       srcSizes[srcIdx] = srcSize;
+                               }
+
+                               long dstSize = dstSizes[dstIdx];
+                               if (dstSize < 0) {
+                                       dstSize = size(dstEnt.newId.toObjectId());
+                                       dstSizes[dstIdx] = dstSize;
+                               }
+
+                               long max = Math.max(srcSize, dstSize);
+                               long min = Math.min(srcSize, dstSize);
+                               if (min * 100 / max < renameScore) {
+                                       // Cannot possibly match, as the file sizes are so different
+                                       pm.update(1);
+                                       continue;
+                               }
+
                                SimilarityIndex d = hash(dstEnt.newId.toObjectId());
                                int score = s.score(d);
 
@@ -259,6 +287,10 @@ class SimilarityRenameDetector {
                return r;
        }
 
+       private long size(ObjectId objectId) throws IOException {
+               return repo.openObject(objectId).getSize();
+       }
+
        private static int score(long value) {
                return (int) (value >>> SCORE_SHIFT);
        }