Package | Description |
---|---|
org.eclipse.jgit.internal.fsck |
Git fsck support.
|
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.transport |
Transport (fetch/push) for different protocols.
|
Modifier and Type | Method and Description |
---|---|
void |
FsckPackParser.verifyIndex(PackIndex idx)
Verify the existing index file with all objects from the pack.
|
Modifier and Type | Field and Description |
---|---|
private PackIndex |
DfsPackFile.index
Index mapping
ObjectId to position within the pack stream. |
private PackIndex |
DfsPackParser.packIndex
If the index was small enough, the entire index after writing.
|
Modifier and Type | Method and Description |
---|---|
PackIndex |
DfsPackFile.getPackIndex(DfsReader ctx)
Get the PackIndex for this PackFile.
|
private PackIndex |
DfsPackFile.idx(DfsReader ctx) |
(package private) PackIndex |
DfsInserter.writePackIndex(DfsPackDescription pack,
byte[] packHash,
java.util.List<PackedObjectInfo> list) |
Modifier and Type | Method and Description |
---|---|
(package private) void |
DfsPackFile.setPackIndex(PackIndex idx) |
Modifier and Type | Class and Description |
---|---|
(package private) class |
PackIndexV1 |
(package private) class |
PackIndexV2
Support for the pack index v2 format.
|
Modifier and Type | Field and Description |
---|---|
private PackIndex |
PackReverseIndex.index
Index we were created from, and that has our ObjectId data.
|
private PackIndex |
PackFile.loadedIdx |
private PackIndex |
PackBitmapIndexV1.packIndex |
Modifier and Type | Method and Description |
---|---|
PackIndex |
PackFile.getIndex()
Get the index for this pack file.
|
(package private) PackIndex |
PackBitmapIndexV1.getPackIndex() |
private PackIndex |
PackFile.idx() |
static PackIndex |
PackIndex.open(java.io.File idxFile)
Open an existing pack
.idx file for reading. |
static PackIndex |
PackIndex.read(java.io.InputStream fd)
Read an existing pack index file from a buffered stream.
|
Modifier and Type | Method and Description |
---|---|
static PackBitmapIndex |
PackBitmapIndex.open(java.io.File idxFile,
PackIndex packIndex,
PackReverseIndex reverseIndex)
Read an existing pack bitmap index file from a buffered stream.
|
static PackBitmapIndex |
PackBitmapIndex.read(java.io.InputStream fd,
PackIndex packIndex,
PackReverseIndex reverseIndex)
Read an existing pack bitmap index file from a buffered stream.
|
Constructor and Description |
---|
PackBitmapIndexV1(java.io.InputStream fd,
PackIndex packIndex,
PackReverseIndex reverseIndex) |
PackReverseIndex(PackIndex packIndex)
Create reverse index from straight/forward pack index, by indexing all
its entries.
|
Modifier and Type | Field and Description |
---|---|
(package private) PackIndex |
WalkFetchConnection.RemotePack.index |