Lucene++ - a full-featured, c++ search engine
API Documentation
Sorts by ascending docID. More...
#include <FieldComparator.h>
Inheritance diagram for Lucene::DocComparator:Public Member Functions | |
| DocComparator (int32_t numHits) | |
| virtual | ~DocComparator () |
| virtual String | getClassName () |
| boost::shared_ptr< DocComparator > | shared_from_this () |
| virtual int32_t | compareBottom (int32_t doc) |
Compare the bottom of the queue with doc. This will only invoked after setBottom has been called. This should return the same result as compare(int,int)} as if bottom were slot1 and the new document were slot 2. | |
| virtual void | copy (int32_t slot, int32_t doc) |
| This method is called when a new hit is competitive. You should copy any state associated with this document that will be required for future comparisons, into the specified slot. | |
| virtual void | setNextReader (const IndexReaderPtr &reader, int32_t docBase) |
| Set a new Reader. All doc correspond to the current Reader. | |
Public Member Functions inherited from Lucene::NumericComparator< int32_t > | |
| NumericComparator (int32_t numHits, const String &field=EmptyString) | |
| virtual | ~NumericComparator () |
| virtual int32_t | compare (int32_t slot1, int32_t slot2) |
| Compare hit at slot1 with hit at slot2. | |
| virtual void | setBottom (int32_t slot) |
Set the bottom slot, ie the "weakest" (sorted last) entry in the queue. When compareBottom is called, you should compare against this slot. This will always be called before compareBottom. | |
| virtual ComparableValue | value (int32_t slot) |
| Return the actual value in the slot. | |
Public Member Functions inherited from Lucene::FieldComparator | |
| virtual | ~FieldComparator () |
| boost::shared_ptr< FieldComparator > | shared_from_this () |
| virtual void | setScorer (const ScorerPtr &scorer) |
| Sets the Scorer to use in case a document's score is needed. | |
Public Member Functions inherited from Lucene::LuceneObject | |
| virtual | ~LuceneObject () |
| virtual void | initialize () |
| Called directly after instantiation to create objects that depend on this object being fully constructed. | |
| virtual LuceneObjectPtr | clone (const LuceneObjectPtr &other=LuceneObjectPtr()) |
| Return clone of this object. | |
| virtual int32_t | hashCode () |
| Return hash code for this object. | |
| virtual bool | equals (const LuceneObjectPtr &other) |
| Return whether two objects are equal. | |
| virtual int32_t | compareTo (const LuceneObjectPtr &other) |
| Compare two objects. | |
| virtual String | toString () |
| Returns a string representation of the object. | |
Public Member Functions inherited from Lucene::LuceneSync | |
| virtual | ~LuceneSync () |
| virtual SynchronizePtr | getSync () |
| Return this object synchronize lock. | |
| virtual LuceneSignalPtr | getSignal () |
| Return this object signal. | |
| virtual void | lock (int32_t timeout=0) |
| Lock this object using an optional timeout. | |
| virtual void | unlock () |
| Unlock this object. | |
| virtual bool | holdsLock () |
| Returns true if this object is currently locked by current thread. | |
| virtual void | wait (int32_t timeout=0) |
| Wait for signal using an optional timeout. | |
| virtual void | notifyAll () |
| Notify all threads waiting for signal. | |
Static Public Member Functions | |
| static String | _getClassName () |
Static Public Member Functions inherited from Lucene::FieldComparator | |
| static String | _getClassName () |
Protected Attributes | |
| int32_t | docBase |
Protected Attributes inherited from Lucene::NumericComparator< int32_t > | |
| Collection< int32_t > | values |
| Collection< int32_t > | currentReaderValues |
| String | field |
| int32_t | bottom |
Protected Attributes inherited from Lucene::LuceneSync | |
| SynchronizePtr | objectLock |
| LuceneSignalPtr | objectSignal |
Additional Inherited Members | |
Protected Member Functions inherited from Lucene::LuceneObject | |
| LuceneObject () | |
Sorts by ascending docID.
| Lucene::DocComparator::DocComparator | ( | int32_t | numHits | ) |
|
virtual |
|
inlinestatic |
|
virtual |
Compare the bottom of the queue with doc. This will only invoked after setBottom has been called. This should return the same result as compare(int,int)} as if bottom were slot1 and the new document were slot 2.
For a search that hits many results, this method will be the hotspot (invoked by far the most frequently).
| doc | that was hit |
Reimplemented from Lucene::NumericComparator< int32_t >.
|
virtual |
This method is called when a new hit is competitive. You should copy any state associated with this document that will be required for future comparisons, into the specified slot.
| slot | which slot to copy the hit to |
| doc | docID relative to current reader |
Reimplemented from Lucene::NumericComparator< int32_t >.
|
inlinevirtual |
Reimplemented from Lucene::FieldComparator.
|
virtual |
Set a new Reader. All doc correspond to the current Reader.
| reader | current reader |
| docBase | docBase of this reader |
Implements Lucene::FieldComparator.
|
inline |
|
protected |