- All Superinterfaces:
Iterable<PackIndex.MutableEntry>,ObjectIdSet
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic classBase implementation of the iterator over index entries.static classRepresent mutable entry of pack index consisting of object id and offset in pack (both mutable). -
Method Summary
Modifier and TypeMethodDescriptiondefault booleancontains(AnyObjectId id) Returns true if the objectId is contained within the collection.longfindCRC32(AnyObjectId objId) Retrieve stored CRC32 checksum of the requested object raw-data (including header).longfindOffset(AnyObjectId objId) Locate the file offset position for the requested object.intfindPosition(AnyObjectId objId) Locate the position of this id in the list of object-ids in the indexbyte[]Get pack checksumlongObtain the total number of objects described by this index.default ObjectIdgetObjectId(int nthPosition) Get ObjectId for the n-th object entry returned byiterator().getObjectId(long nthPosition) Get ObjectId for the n-th object entry returned byiterator().longgetOffset(long nthPosition) Get offset in a pack for the n-th object entry returned byiterator().longObtain the total number of objects needing 64 bit offsets.booleanCheck whether this index supports (has) CRC32 checksums for objects.default booleanhasObject(AnyObjectId id) Determine if an object is contained within the pack file.iterator()static PackIndexOpen an existing pack.idxfile for reading.static PackIndexread(InputStream fd) Read an existing pack index file from a buffered stream.voidresolve(Set<ObjectId> matches, AbbreviatedObjectId id, int matchLimit) Find objects matching the prefix abbreviation.Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Method Details
-
open
Open an existing pack.idxfile for reading.The format of the file will be automatically detected and a proper access implementation for that format will be constructed and returned to the caller. The file may or may not be held open by the returned instance.
- Parameters:
idxFile- existing pack .idx to read.- Returns:
- access implementation for the requested file.
- Throws:
FileNotFoundException- the file does not exist.IOException- the file exists but could not be read due to security errors, unrecognized data version, or unexpected data corruption.
-
read
Read an existing pack index file from a buffered stream.The format of the file will be automatically detected and a proper access implementation for that format will be constructed and returned to the caller. The file may or may not be held open by the returned instance.
- Parameters:
fd- stream to read the index file from. The stream must be buffered as some small IOs are performed against the stream. The caller is responsible for closing the stream.- Returns:
- a copy of the index in-memory.
- Throws:
IOException- the stream cannot be read.CorruptObjectException- the stream does not contain a valid pack index.
-
hasObject
Determine if an object is contained within the pack file.- Parameters:
id- the object to look for. Must not be null.- Returns:
- true if the object is listed in this index; false otherwise.
-
contains
Description copied from interface:ObjectIdSetReturns true if the objectId is contained within the collection.- Specified by:
containsin interfaceObjectIdSet- Parameters:
id- the objectId to find- Returns:
- whether the collection contains the objectId.
-
iterator
Iterator<PackIndex.MutableEntry> iterator()Provide iterator that gives access to index entries. Note, that iterator returns reference to mutable object, the same reference in each call - for performance reason. If client needs immutable objects, it must copy returned object on its own.
Iterator returns objects in SHA-1 lexicographical order.
- Specified by:
iteratorin interfaceIterable<PackIndex.MutableEntry>
-
getObjectCount
long getObjectCount()Obtain the total number of objects described by this index.- Returns:
- number of objects in this index, and likewise in the associated pack that this index was generated from.
-
getOffset64Count
long getOffset64Count()Obtain the total number of objects needing 64 bit offsets.- Returns:
- number of objects in this index using a 64 bit offset; that is an object positioned after the 2 GB position within the file.
-
getObjectId
Get ObjectId for the n-th object entry returned byiterator().This method is a constant-time replacement for the following loop:
Iterator<MutableEntry> eItr = index.iterator(); int curPosition = 0; while (eItr.hasNext() && curPosition++ < nthPosition) eItr.next(); ObjectId result = eItr.next().toObjectId();- Parameters:
nthPosition- position within the traversal ofiterator()that the caller needs the object for. The first returnedPackIndex.MutableEntryis 0, the second is 1, etc.- Returns:
- the ObjectId for the corresponding entry.
-
getObjectId
Get ObjectId for the n-th object entry returned byiterator().This method is a constant-time replacement for the following loop:
Iterator<MutableEntry> eItr = index.iterator(); int curPosition = 0; while (eItr.hasNext() && curPosition++ < nthPosition) eItr.next(); ObjectId result = eItr.next().toObjectId();- Parameters:
nthPosition- unsigned 32 bit position within the traversal ofiterator()that the caller needs the object for. The first returnedPackIndex.MutableEntryis 0, the second is 1, etc. Positions past 2**31-1 are negative, but still valid.- Returns:
- the ObjectId for the corresponding entry.
-
getOffset
long getOffset(long nthPosition) Get offset in a pack for the n-th object entry returned byiterator().- Parameters:
nthPosition- unsigned 32 bit position within the traversal ofiterator()for which the caller needs the offset. The first returnedPackIndex.MutableEntryis 0, the second is 1, etc. Positions past 2**31-1 are negative, but still valid.- Returns:
- the offset in a pack for the corresponding entry.
-
findOffset
Locate the file offset position for the requested object.- Parameters:
objId- name of the object to locate within the pack.- Returns:
- offset of the object's header and compressed content; -1 if the object does not exist in this index and is thus not stored in the associated pack.
-
findPosition
Locate the position of this id in the list of object-ids in the index- Parameters:
objId- name of the object to locate within the index- Returns:
- position of the object-id in the lexicographically ordered list of ids stored in this index; -1 if the object does not exist in this index and is thus not stored in the associated pack.
-
findCRC32
Retrieve stored CRC32 checksum of the requested object raw-data (including header).- Parameters:
objId- id of object to look for- Returns:
- CRC32 checksum of specified object (at 32 less significant bits)
- Throws:
MissingObjectException- when requested ObjectId was not found in this indexUnsupportedOperationException- when this index doesn't support CRC32 checksum
-
hasCRC32Support
boolean hasCRC32Support()Check whether this index supports (has) CRC32 checksums for objects.- Returns:
- true if CRC32 is stored, false otherwise
-
resolve
Find objects matching the prefix abbreviation.- Parameters:
matches- set to add any located ObjectIds to. This is an output parameter.id- prefix to search for.matchLimit- maximum number of results to return. At most this many ObjectIds should be added to matches before returning.- Throws:
IOException- the index cannot be read.
-
getChecksum
byte[] getChecksum()Get pack checksum- Returns:
- the checksum of the pack; caller must not modify it
- Since:
- 5.5
-