Package org.apache.lucene.search
Class ConjunctionDISI
- java.lang.Object
-
- org.apache.lucene.search.DocIdSetIterator
-
- org.apache.lucene.search.ConjunctionDISI
-
public final class ConjunctionDISI extends DocIdSetIterator
A conjunction of DocIdSetIterators. Requires that all of its sub-iterators must be on the same document all the time. This iterates over the doc ids that are present in each given DocIdSetIterator.
Public only for use inorg.apache.lucene.search.spans.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static classConjunctionDISI.BitSetConjunctionDISIConjunction between aDocIdSetIteratorand one or moreBitSetIterators.private static classConjunctionDISI.ConjunctionTwoPhaseIteratorTwoPhaseIteratorimplementing a conjunction.
-
Field Summary
Fields Modifier and Type Field Description (package private) DocIdSetIteratorlead1(package private) DocIdSetIteratorlead2(package private) DocIdSetIterator[]others-
Fields inherited from class org.apache.lucene.search.DocIdSetIterator
NO_MORE_DOCS
-
-
Constructor Summary
Constructors Modifier Constructor Description privateConjunctionDISI(java.util.List<? extends DocIdSetIterator> iterators)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description private static voidaddIterator(DocIdSetIterator disi, java.util.List<DocIdSetIterator> allIterators, java.util.List<TwoPhaseIterator> twoPhaseIterators)private static voidaddScorer(Scorer scorer, java.util.List<DocIdSetIterator> allIterators, java.util.List<TwoPhaseIterator> twoPhaseIterators)Adds the scorer, possibly splitting up into two phases or collapsing if it is another conjunctionprivate static voidaddSpans(Spans spans, java.util.List<DocIdSetIterator> allIterators, java.util.List<TwoPhaseIterator> twoPhaseIterators)Adds the Spans.private static voidaddTwoPhaseIterator(TwoPhaseIterator twoPhaseIter, java.util.List<DocIdSetIterator> allIterators, java.util.List<TwoPhaseIterator> twoPhaseIterators)intadvance(int target)Advances to the first beyond the current whose document number is greater than or equal to target, and returns the document number itself.private booleanassertItersOnSameDoc()longcost()Returns the estimated cost of thisDocIdSetIterator.private static DocIdSetIteratorcreateConjunction(java.util.List<DocIdSetIterator> allIterators, java.util.List<TwoPhaseIterator> twoPhaseIterators)intdocID()Returns the following:-1ifDocIdSetIterator.nextDoc()orDocIdSetIterator.advance(int)were not called yet.private intdoNext(int doc)static DocIdSetIteratorintersectIterators(java.util.List<DocIdSetIterator> iterators)Create a conjunction over the provided DocIdSetIterators.static DocIdSetIteratorintersectScorers(java.util.Collection<Scorer> scorers)Create a conjunction over the providedScorers.static DocIdSetIteratorintersectSpans(java.util.List<Spans> spanList)Create a conjunction over the providedSpans.intnextDoc()Advances to the next document in the set and returns the doc it is currently on, orDocIdSetIterator.NO_MORE_DOCSif there are no more docs in the set.
NOTE: after the iterator has exhausted you should not call this method, as it may result in unpredicted behavior.-
Methods inherited from class org.apache.lucene.search.DocIdSetIterator
all, empty, range, slowAdvance
-
-
-
-
Field Detail
-
lead1
final DocIdSetIterator lead1
-
lead2
final DocIdSetIterator lead2
-
others
final DocIdSetIterator[] others
-
-
Constructor Detail
-
ConjunctionDISI
private ConjunctionDISI(java.util.List<? extends DocIdSetIterator> iterators)
-
-
Method Detail
-
intersectScorers
public static DocIdSetIterator intersectScorers(java.util.Collection<Scorer> scorers)
Create a conjunction over the providedScorers. Note that the returnedDocIdSetIteratormight leverage two-phase iteration in which case it is possible to retrieve theTwoPhaseIteratorusingTwoPhaseIterator.unwrap(org.apache.lucene.search.DocIdSetIterator).
-
intersectIterators
public static DocIdSetIterator intersectIterators(java.util.List<DocIdSetIterator> iterators)
Create a conjunction over the provided DocIdSetIterators. Note that the returnedDocIdSetIteratormight leverage two-phase iteration in which case it is possible to retrieve theTwoPhaseIteratorusingTwoPhaseIterator.unwrap(org.apache.lucene.search.DocIdSetIterator).
-
intersectSpans
public static DocIdSetIterator intersectSpans(java.util.List<Spans> spanList)
Create a conjunction over the providedSpans. Note that the returnedDocIdSetIteratormight leverage two-phase iteration in which case it is possible to retrieve theTwoPhaseIteratorusingTwoPhaseIterator.unwrap(org.apache.lucene.search.DocIdSetIterator).
-
addScorer
private static void addScorer(Scorer scorer, java.util.List<DocIdSetIterator> allIterators, java.util.List<TwoPhaseIterator> twoPhaseIterators)
Adds the scorer, possibly splitting up into two phases or collapsing if it is another conjunction
-
addSpans
private static void addSpans(Spans spans, java.util.List<DocIdSetIterator> allIterators, java.util.List<TwoPhaseIterator> twoPhaseIterators)
Adds the Spans.
-
addIterator
private static void addIterator(DocIdSetIterator disi, java.util.List<DocIdSetIterator> allIterators, java.util.List<TwoPhaseIterator> twoPhaseIterators)
-
addTwoPhaseIterator
private static void addTwoPhaseIterator(TwoPhaseIterator twoPhaseIter, java.util.List<DocIdSetIterator> allIterators, java.util.List<TwoPhaseIterator> twoPhaseIterators)
-
createConjunction
private static DocIdSetIterator createConjunction(java.util.List<DocIdSetIterator> allIterators, java.util.List<TwoPhaseIterator> twoPhaseIterators)
-
doNext
private int doNext(int doc) throws java.io.IOException- Throws:
java.io.IOException
-
advance
public int advance(int target) throws java.io.IOExceptionDescription copied from class:DocIdSetIteratorAdvances to the first beyond the current whose document number is greater than or equal to target, and returns the document number itself. Exhausts the iterator and returnsDocIdSetIterator.NO_MORE_DOCSif target is greater than the highest document number in the set.The behavior of this method is undefined when called with
target ≤ current, or after the iterator has exhausted. Both cases may result in unpredicted behavior.When
target > currentit behaves as if written:int advance(int target) { int doc; while ((doc = nextDoc()) < target) { } return doc; }Some implementations are considerably more efficient than that.NOTE: this method may be called with
DocIdSetIterator.NO_MORE_DOCSfor efficiency by some Scorers. If your implementation cannot efficiently determine that it should exhaust, it is recommended that you check for that value in each call to this method.- Specified by:
advancein classDocIdSetIterator- Throws:
java.io.IOException
-
docID
public int docID()
Description copied from class:DocIdSetIteratorReturns the following:-1ifDocIdSetIterator.nextDoc()orDocIdSetIterator.advance(int)were not called yet.DocIdSetIterator.NO_MORE_DOCSif the iterator has exhausted.- Otherwise it should return the doc ID it is currently on.
- Specified by:
docIDin classDocIdSetIterator
-
nextDoc
public int nextDoc() throws java.io.IOExceptionDescription copied from class:DocIdSetIteratorAdvances to the next document in the set and returns the doc it is currently on, orDocIdSetIterator.NO_MORE_DOCSif there are no more docs in the set.
NOTE: after the iterator has exhausted you should not call this method, as it may result in unpredicted behavior.- Specified by:
nextDocin classDocIdSetIterator- Throws:
java.io.IOException
-
cost
public long cost()
Description copied from class:DocIdSetIteratorReturns the estimated cost of thisDocIdSetIterator.This is generally an upper bound of the number of documents this iterator might match, but may be a rough heuristic, hardcoded value, or otherwise completely inaccurate.
- Specified by:
costin classDocIdSetIterator
-
assertItersOnSameDoc
private boolean assertItersOnSameDoc()
-
-