Browse Source

Remove BitmapRevFilter.getCountOfLoadedCommits

The count of loaded commits is equal to the number of commits returned
by the walk.  Simplify BitmapRevFilter by counting them in the caller.

Change-Id: Ia95da47831d9e89d6f8068470ec4529aaabfa7dd
stable-4.2
Jonathan Nieder 9 years ago
parent
commit
42f0a3d51d
  1. 16
      org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/pack/PackWriterBitmapWalker.java

16
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/pack/PackWriterBitmapWalker.java

@ -116,7 +116,15 @@ final class PackWriterBitmapWalker {
while (walker.next() != null) { while (walker.next() != null) {
// Iterate through all of the commits. The BitmapRevFilter does // Iterate through all of the commits. The BitmapRevFilter does
// the work. // the work.
//
// filter.include returns true for commits that do not have
// a bitmap in bitmapIndex and are not reachable from a
// bitmap in bitmapIndex encountered earlier in the walk.
// Thus the number of commits returned by next() measures how
// much history was traversed without being able to make use
// of bitmaps.
pm.update(1); pm.update(1);
countOfBitmapIndexMisses++;
} }
RevObject ro; RevObject ro;
@ -124,7 +132,6 @@ final class PackWriterBitmapWalker {
bitmapResult.add(ro, ro.getType()); bitmapResult.add(ro, ro.getType());
pm.update(1); pm.update(1);
} }
countOfBitmapIndexMisses += filter.getCountOfLoadedCommits();
} }
return bitmapResult; return bitmapResult;
@ -154,14 +161,11 @@ final class PackWriterBitmapWalker {
} }
static abstract class BitmapRevFilter extends RevFilter { static abstract class BitmapRevFilter extends RevFilter {
private long countOfLoadedCommits;
protected abstract boolean load(RevCommit cmit); protected abstract boolean load(RevCommit cmit);
@Override @Override
public final boolean include(RevWalk walker, RevCommit cmit) { public final boolean include(RevWalk walker, RevCommit cmit) {
if (load(cmit)) { if (load(cmit)) {
countOfLoadedCommits++;
return true; return true;
} }
for (RevCommit p : cmit.getParents()) for (RevCommit p : cmit.getParents())
@ -178,9 +182,5 @@ final class PackWriterBitmapWalker {
public final boolean requiresCommitBody() { public final boolean requiresCommitBody() {
return false; return false;
} }
long getCountOfLoadedCommits() {
return countOfLoadedCommits;
}
} }
} }

Loading…
Cancel
Save