Uses of Class
org.eclipse.jgit.internal.storage.dfs.DfsPackFile
-
Packages that use DfsPackFile Package Description org.eclipse.jgit.internal.storage.dfs Distributed file system based repository storage. -
-
Uses of DfsPackFile in org.eclipse.jgit.internal.storage.dfs
Fields in org.eclipse.jgit.internal.storage.dfs declared as DfsPackFile Modifier and Type Field Description private DfsPackFile
DfsReader. last
private DfsPackFile
BeforeDfsPackIndexLoadedEvent. pack
private DfsPackFile
DfsCachedPack. pack
(package private) DfsPackFile
DfsObjectRepresentation. pack
(package private) DfsPackFile
DfsObjectToPack. pack
Pack to reuse compressed data from, otherwise null.(package private) DfsPackFile
DfsReader.FoundObject. pack
private DfsPackFile
LargePackedWholeObject. pack
private DfsPackFile
PackInputStream. pack
DfsPackFile[]
DfsObjDatabase.PackList. packs
All known packs, sorted.Fields in org.eclipse.jgit.internal.storage.dfs with type parameters of type DfsPackFile Modifier and Type Field Description private java.util.List<DfsPackFile>
DfsGarbageCollector. expiredGarbagePacks
private static java.util.Comparator<DfsPackFile>
DfsReader. PACK_SORT_FOR_REUSE
private java.util.List<DfsPackFile>
DfsGarbageCollector. packsBefore
private java.util.List<DfsPackFile>
DfsPackCompactor. srcPacks
Methods in org.eclipse.jgit.internal.storage.dfs that return DfsPackFile Modifier and Type Method Description DfsPackFile[]
DfsObjDatabase. getCurrentPacks()
List currently known pack files in the repository, without scanning.DfsPackFile
BeforeDfsPackIndexLoadedEvent. getPackFile()
Get the PackFile containing the index that will be loaded.DfsPackFile
DfsCachedPack. getPackFile()
DfsPackFile[]
DfsObjDatabase. getPacks()
Scan and list all available pack files in the repository.Methods in org.eclipse.jgit.internal.storage.dfs that return types with arguments of type DfsPackFile Modifier and Type Method Description private java.util.List<DfsPackFile>
DfsReader. garbagePacksForSelectRepresentation()
private static java.util.Map<DfsPackDescription,DfsPackFile>
DfsObjDatabase. packMap(DfsObjDatabase.PackList old)
private java.util.List<DfsPackFile>
DfsReader. sortPacksForSelectRepresentation()
Methods in org.eclipse.jgit.internal.storage.dfs with parameters of type DfsPackFile Modifier and Type Method Description DfsPackCompactor
DfsPackCompactor. add(DfsPackFile pack)
Add a pack to be compacted.(package private) void
DfsObjDatabase. addPack(DfsPackFile newPack)
DfsPackCompactor
DfsPackCompactor. exclude(DfsPackFile pack)
Exclude objects from the compacted pack.private java.util.List<DfsObjectToPack>
DfsReader. findAllFromPack(DfsPackFile pack, java.lang.Iterable<ObjectToPack> objects, boolean skipFound)
(package private) int
DfsReader. inflate(DfsPackFile pack, long position, byte[] dstbuf, boolean headerOnly)
Inflate a region of the pack starting atposition
.(package private) DfsBlock
DfsReader. quickCopy(DfsPackFile p, long pos, long cnt)
private boolean
DfsReader. skipGarbagePack(DfsPackFile pack)
private java.util.List<DfsPackCompactor.ObjectIdWithOffset>
DfsPackCompactor. toInclude(DfsPackFile src, DfsReader ctx)
private void
DfsFsck. verifyPack(ProgressMonitor pm, FsckError errors, DfsReader ctx, DfsPackFile pack, ReadableChannel ch)
Method parameters in org.eclipse.jgit.internal.storage.dfs with type arguments of type DfsPackFile Modifier and Type Method Description private void
DfsReader. trySelectRepresentation(PackWriter packer, ProgressMonitor monitor, java.lang.Iterable<ObjectToPack> objects, java.util.List<DfsPackFile> packs, boolean skipFound)
Constructors in org.eclipse.jgit.internal.storage.dfs with parameters of type DfsPackFile Constructor Description BeforeDfsPackIndexLoadedEvent(DfsPackFile pack)
A new event triggered before a PackFile index is loaded.DfsCachedPack(DfsPackFile pack)
DfsObjectRepresentation(DfsPackFile pack)
FoundObject(T objectId, int packIdx, DfsPackFile pack, long offset)
LargePackedWholeObject(int type, long size, long objectOffset, int headerLength, DfsPackFile pack, DfsObjDatabase db)
PackInputStream(DfsPackFile pack, long pos, DfsReader ctx)
PackList(DfsPackFile[] packs, DfsReftable[] reftables)
PackListImpl(DfsPackFile[] packs, DfsReftable[] reftables)
-