Package org.apache.lucene.search
Class ConjunctionDISI
java.lang.Object
org.apache.lucene.search.DocIdSetIterator
org.apache.lucene.search.ConjunctionDISI
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 in
Public only for use in
org.apache.lucene.search.spans.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprivate static classConjunction between aDocIdSetIteratorand one or moreBitSetIterators.private static final classTwoPhaseIteratorimplementing a conjunction. -
Field Summary
FieldsModifier and TypeFieldDescription(package private) final DocIdSetIterator(package private) final DocIdSetIterator(package private) final DocIdSetIterator[]Fields inherited from class org.apache.lucene.search.DocIdSetIterator
NO_MORE_DOCS -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateConjunctionDISI(List<? extends DocIdSetIterator> iterators) -
Method Summary
Modifier and TypeMethodDescriptionprivate static voidaddIterator(DocIdSetIterator disi, List<DocIdSetIterator> allIterators, List<TwoPhaseIterator> twoPhaseIterators) private static voidaddScorer(Scorer scorer, List<DocIdSetIterator> allIterators, List<TwoPhaseIterator> twoPhaseIterators) Adds the scorer, possibly splitting up into two phases or collapsing if it is another conjunctionprivate static voidaddSpans(Spans spans, List<DocIdSetIterator> allIterators, List<TwoPhaseIterator> twoPhaseIterators) Adds the Spans.private static voidaddTwoPhaseIterator(TwoPhaseIterator twoPhaseIter, List<DocIdSetIterator> allIterators, 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 booleanlongcost()Returns the estimated cost of thisDocIdSetIterator.private static DocIdSetIteratorcreateConjunction(List<DocIdSetIterator> allIterators, List<TwoPhaseIterator> twoPhaseIterators) intdocID()Returns the following:-1ifDocIdSetIterator.nextDoc()orDocIdSetIterator.advance(int)were not called yet.private intdoNext(int doc) static DocIdSetIteratorintersectIterators(List<DocIdSetIterator> iterators) Create a conjunction over the provided DocIdSetIterators.static DocIdSetIteratorintersectScorers(Collection<Scorer> scorers) Create a conjunction over the providedScorers.static DocIdSetIteratorintersectSpans(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 Details
-
lead1
-
lead2
-
others
-
-
Constructor Details
-
ConjunctionDISI
-
-
Method Details
-
intersectScorers
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
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
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, List<DocIdSetIterator> allIterators, 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, List<DocIdSetIterator> allIterators, List<TwoPhaseIterator> twoPhaseIterators) Adds the Spans. -
addIterator
private static void addIterator(DocIdSetIterator disi, List<DocIdSetIterator> allIterators, List<TwoPhaseIterator> twoPhaseIterators) -
addTwoPhaseIterator
private static void addTwoPhaseIterator(TwoPhaseIterator twoPhaseIter, List<DocIdSetIterator> allIterators, List<TwoPhaseIterator> twoPhaseIterators) -
createConjunction
private static DocIdSetIterator createConjunction(List<DocIdSetIterator> allIterators, List<TwoPhaseIterator> twoPhaseIterators) -
doNext
- Throws:
IOException
-
advance
Description 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:
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
Description 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:
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()
-