Package org.apache.lucene.codecs
Class MultiLevelSkipListReader
java.lang.Object
org.apache.lucene.codecs.MultiLevelSkipListReader
- All Implemented Interfaces:
Closeable,AutoCloseable
- Direct Known Subclasses:
Lucene40SkipListReader
This abstract class reads skip lists with multiple levels.
See
MultiLevelSkipListWriter for the information about the encoding
of the multi level skip lists.
Subclasses must implement the abstract method readSkipData(int, IndexInput)
which defines the actual format of the skip data.-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected intthe maximum number of skip levels possible for this indexprotected int[]Doc id of current skip entry per level. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedMultiLevelSkipListReader(IndexInput skipStream, int maxSkipLevels, int skipInterval) Creates aMultiLevelSkipListReader, whereskipIntervalandskipMultiplierare the same.protectedMultiLevelSkipListReader(IndexInput skipStream, int maxSkipLevels, int skipInterval, int skipMultiplier) Creates aMultiLevelSkipListReader. -
Method Summary
Modifier and TypeMethodDescriptionvoidclose()intgetDoc()Returns the id of the doc to which the last call ofskipTo(int)has skipped.voidinit(long skipPointer, int df) Initializes the reader, for reuse on a new term.protected abstract intreadSkipData(int level, IndexInput skipStream) Subclasses must implement the actual skip data encoding in this method.protected voidseekChild(int level) Seeks the skip entry on the given levelprotected voidsetLastSkipData(int level) Copies the values of the last read skip entry on this levelintskipTo(int target) Skips entries to the first beyond the current whose document number is greater than or equal to target.
-
Field Details
-
maxNumberOfSkipLevels
protected int maxNumberOfSkipLevelsthe maximum number of skip levels possible for this index -
skipDoc
protected int[] skipDocDoc id of current skip entry per level.
-
-
Constructor Details
-
MultiLevelSkipListReader
protected MultiLevelSkipListReader(IndexInput skipStream, int maxSkipLevels, int skipInterval, int skipMultiplier) Creates aMultiLevelSkipListReader. -
MultiLevelSkipListReader
Creates aMultiLevelSkipListReader, whereskipIntervalandskipMultiplierare the same.
-
-
Method Details
-
getDoc
public int getDoc()Returns the id of the doc to which the last call ofskipTo(int)has skipped. -
skipTo
Skips entries to the first beyond the current whose document number is greater than or equal to target. Returns the current doc count.- Throws:
IOException
-
seekChild
Seeks the skip entry on the given level- Throws:
IOException
-
close
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Throws:
IOException
-
init
public void init(long skipPointer, int df) Initializes the reader, for reuse on a new term. -
readSkipData
Subclasses must implement the actual skip data encoding in this method.- Parameters:
level- the level skip data shall be read fromskipStream- the skip stream to read from- Throws:
IOException
-
setLastSkipData
protected void setLastSkipData(int level) Copies the values of the last read skip entry on this level
-