Package | Description |
---|---|
org.eclipse.jgit.internal.revwalk | |
org.eclipse.jgit.internal.storage.dfs |
Distributed file system based repository storage.
|
org.eclipse.jgit.internal.storage.file |
File based repository storage.
|
org.eclipse.jgit.internal.storage.pack |
Reading/writing Git pack files.
|
org.eclipse.jgit.lib |
Core API for repository, config, refs, object database.
|
org.eclipse.jgit.revwalk |
Walking revision graphs (commit history).
|
Modifier and Type | Field and Description |
---|---|
private BitmapIndex.BitmapBuilder |
AddToBitmapFilter.bitmap |
private BitmapIndex.BitmapBuilder |
AddUnseenToBitmapFilter.bitmap |
private BitmapIndex.BitmapBuilder |
AddUnseenToBitmapFilter.seen |
Constructor and Description |
---|
AddToBitmapFilter(BitmapIndex.BitmapBuilder bitmap)
Create a filter that adds visited commits to the given bitmap.
|
AddUnseenToBitmapFilter(BitmapIndex.BitmapBuilder seen,
BitmapIndex.BitmapBuilder bitmap)
Create a filter that adds visited commits to the given bitmap, but does not walk
through the objects in
seen . |
Modifier and Type | Method and Description |
---|---|
java.util.Collection<CachedPack> |
DfsReader.getCachedPacksAndUpdate(BitmapIndex.BitmapBuilder needBitmap)
Obtain the available cached packs that match the bitmap and update
the bitmap by removing the items that are in the CachedPack.
|
Modifier and Type | Class and Description |
---|---|
private static class |
BitmapIndexImpl.CompressedBitmapBuilder |
Modifier and Type | Method and Description |
---|---|
BitmapIndex.BitmapBuilder |
BitmapIndexImpl.CompressedBitmapBuilder.addObject(AnyObjectId objectId,
int type) |
Modifier and Type | Method and Description |
---|---|
java.util.Collection<CachedPack> |
WindowCursor.getCachedPacksAndUpdate(BitmapIndex.BitmapBuilder needBitmap)
Obtain the available cached packs that match the bitmap and update
the bitmap by removing the items that are in the CachedPack.
|
Modifier and Type | Field and Description |
---|---|
private BitmapIndex.BitmapBuilder |
PackWriterBitmapPreparer.NotInBitmapFilter.bitmap |
private BitmapIndex.BitmapBuilder |
PackWriter.haveObjects |
(package private) BitmapIndex.BitmapBuilder |
PackWriterBitmapPreparer.CommitSelectionHelper.reusedCommitsBitmap |
Modifier and Type | Method and Description |
---|---|
java.util.Collection<CachedPack> |
ObjectReuseAsIs.getCachedPacksAndUpdate(BitmapIndex.BitmapBuilder needBitmap)
Obtain the available cached packs that match the bitmap and update
the bitmap by removing the items that are in the CachedPack.
|
Constructor and Description |
---|
CommitSelectionHelper(java.util.Set<? extends ObjectId> newWants,
RevCommit[] commitsByOldest,
int commitStartPos,
java.util.List<RevCommit> newWantsByNewest,
BitmapIndex.BitmapBuilder reusedCommitsBitmap,
java.util.List<PackWriterBitmapPreparer.BitmapCommit> reuse) |
NotInBitmapFilter(BitmapIndex.BitmapBuilder bitmap) |
Modifier and Type | Method and Description |
---|---|
BitmapIndex.BitmapBuilder |
BitmapIndex.BitmapBuilder.addObject(AnyObjectId objectId,
int type)
Adds the id to the bitmap.
|
BitmapIndex.BitmapBuilder |
BitmapIndex.BitmapBuilder.andNot(BitmapIndex.Bitmap other)
Bitwise-AND-NOT the current bitmap with the value from the other
bitmap.
|
BitmapIndex.BitmapBuilder |
BitmapIndex.newBitmapBuilder()
Create a new
BitmapBuilder based on the values in the index. |
BitmapIndex.BitmapBuilder |
BitmapIndex.BitmapBuilder.or(BitmapIndex.Bitmap other)
Bitwise-OR the current bitmap with the value from the other bitmap.
|
BitmapIndex.BitmapBuilder |
BitmapIndex.BitmapBuilder.xor(BitmapIndex.Bitmap other)
Bitwise-XOR the current bitmap with the value from the other bitmap.
|
Modifier and Type | Field and Description |
---|---|
private BitmapIndex.BitmapBuilder |
BitmapWalker.BitmapObjectFilter.bitmap |
private BitmapIndex.BitmapBuilder |
BitmappedReachabilityChecker.ReachedFilter.reached |
Modifier and Type | Method and Description |
---|---|
BitmapIndex.BitmapBuilder |
BitmapWalker.findObjects(java.lang.Iterable<? extends ObjectId> start,
BitmapIndex.BitmapBuilder seen,
boolean ignoreMissing)
Return, as a bitmap, the objects reachable from the objects in start.
|
private BitmapIndex.BitmapBuilder |
BitmapWalker.findObjectsWalk(java.lang.Iterable<? extends ObjectId> start,
BitmapIndex.BitmapBuilder seen,
boolean ignoreMissingStart) |
Modifier and Type | Method and Description |
---|---|
BitmapIndex.BitmapBuilder |
BitmapWalker.findObjects(java.lang.Iterable<? extends ObjectId> start,
BitmapIndex.BitmapBuilder seen,
boolean ignoreMissing)
Return, as a bitmap, the objects reachable from the objects in start.
|
private BitmapIndex.BitmapBuilder |
BitmapWalker.findObjectsWalk(java.lang.Iterable<? extends ObjectId> start,
BitmapIndex.BitmapBuilder seen,
boolean ignoreMissingStart) |
Constructor and Description |
---|
BitmapObjectFilter(BitmapIndex.BitmapBuilder bitmap) |