xapian-core
1.4.26
|
A posting source which looks up weights in a map using values as the key. More...
#include <postingsource.h>
Public Member Functions | |
ValueMapPostingSource (Xapian::valueno slot_) | |
Construct a ValueMapPostingSource. More... | |
void | add_mapping (const std::string &key, double wt) |
Add a mapping. More... | |
void | clear_mappings () |
Clear all mappings. More... | |
void | set_default_weight (double wt) |
Set a default weight for document values not in the map. More... | |
double | get_weight () const |
Return the weight contribution for the current document. More... | |
ValueMapPostingSource * | clone () const |
Clone the posting source. More... | |
std::string | name () const |
Name of the posting source class. More... | |
std::string | serialise () const |
Serialise object parameters into a string. More... | |
ValueMapPostingSource * | unserialise (const std::string &serialised) const |
Create object given string serialisation returned by serialise(). More... | |
void | init (const Database &db_) |
Set this PostingSource to the start of the list of postings. More... | |
std::string | get_description () const |
Return a string describing this object. More... | |
Public Member Functions inherited from Xapian::ValuePostingSource | |
ValuePostingSource (Xapian::valueno slot_) | |
Construct a ValuePostingSource. More... | |
Xapian::doccount | get_termfreq_min () const |
A lower bound on the number of documents this object can return. More... | |
Xapian::doccount | get_termfreq_est () const |
An estimate of the number of documents this object can return. More... | |
Xapian::doccount | get_termfreq_max () const |
An upper bound on the number of documents this object can return. More... | |
void | next (double min_wt) |
Advance the current position to the next matching document. More... | |
void | skip_to (Xapian::docid min_docid, double min_wt) |
Advance to the specified docid. More... | |
bool | check (Xapian::docid min_docid, double min_wt) |
Check if the specified docid occurs. More... | |
bool | at_end () const |
Return true if the current position is past the last entry in this list. More... | |
Xapian::docid | get_docid () const |
Return the current docid. More... | |
Xapian::Database | get_database () const |
The database we're reading values from. More... | |
Xapian::valueno | get_slot () const |
The slot we're reading values from. More... | |
std::string | get_value () const |
Read current value. More... | |
void | done () |
End the iteration. More... | |
bool | get_started () const |
Flag indicating if we've started (true if we have). More... | |
void | set_termfreq_min (Xapian::doccount termfreq_min_) |
Set a lower bound on the term frequency. More... | |
void | set_termfreq_est (Xapian::doccount termfreq_est_) |
An estimate of the term frequency. More... | |
void | set_termfreq_max (Xapian::doccount termfreq_max_) |
An upper bound on the term frequency. More... | |
Public Member Functions inherited from Xapian::PostingSource | |
PostingSource () | |
Allow subclasses to be instantiated. More... | |
virtual | ~PostingSource () |
void | set_maxweight (double max_weight) |
Specify an upper bound on what get_weight() will return from now on. More... | |
double | get_maxweight () const |
Return the currently set upper bound on what get_weight() can return. More... | |
virtual PostingSource * | unserialise_with_registry (const std::string &serialised, const Registry ®istry) const |
Create object given string serialisation returned by serialise(). More... | |
PostingSource * | release () |
Start reference counting this object. More... | |
const PostingSource * | release () const |
Start reference counting this object. More... | |
Public Member Functions inherited from Xapian::Internal::opt_intrusive_base | |
opt_intrusive_base (const opt_intrusive_base &) | |
opt_intrusive_base & | operator= (const opt_intrusive_base &) |
opt_intrusive_base () | |
Construct object which is initially not reference counted. More... | |
virtual | ~opt_intrusive_base () |
void | ref () const |
void | unref () const |
Private Attributes | |
double | default_weight |
The default weight. More... | |
double | max_weight_in_map |
The maximum weight in weight_map. More... | |
std::map< std::string, double > | weight_map |
The value -> weight map. More... | |
Additional Inherited Members | |
Public Attributes inherited from Xapian::Internal::opt_intrusive_base | |
unsigned | _refs |
Reference count. More... | |
Protected Member Functions inherited from Xapian::Internal::opt_intrusive_base | |
void | release () const |
Start reference counting. More... | |
Protected Attributes inherited from Xapian::ValuePostingSource | |
Xapian::Database & | db |
The database we're reading values from. More... | |
Xapian::valueno & | slot |
The slot we're reading values from. More... | |
Xapian::ValueIterator & | value_it |
Value stream iterator. More... | |
bool & | started |
Flag indicating if we've started (true if we have). More... | |
Xapian::doccount & | termfreq_min |
A lower bound on the term frequency. More... | |
Xapian::doccount & | termfreq_est |
An estimate of the term frequency. More... | |
Xapian::doccount & | termfreq_max |
An upper bound on the term frequency. More... | |
A posting source which looks up weights in a map using values as the key.
This allows will return entries for all documents in the given database which have a value in the slot specified. The values will be mapped to the corresponding weight in the weight map. If there is no mapping for a particular value, the default weight will be returned (which itself defaults to 0.0).
Definition at line 685 of file postingsource.h.
|
explicit |
Construct a ValueMapPostingSource.
slot_ | The value slot to read values from. |
Definition at line 298 of file postingsource.cc.
Referenced by clone(), and unserialise().
void Xapian::ValueMapPostingSource::add_mapping | ( | const std::string & | key, |
double | wt | ||
) |
Add a mapping.
key | The key looked up from the value slot. |
wt | The weight to give this key. |
Definition at line 306 of file postingsource.cc.
References max_weight_in_map, and weight_map.
Referenced by DEFINE_TESTCASE().
void Xapian::ValueMapPostingSource::clear_mappings | ( | ) |
Clear all mappings.
Definition at line 313 of file postingsource.cc.
References max_weight_in_map, and weight_map.
Referenced by DEFINE_TESTCASE().
|
virtual |
Clone the posting source.
The clone should inherit the configuration of the parent, but need not inherit the state. ie, the clone does not need to be in the same iteration position as the original: the matcher will always call init() on the clone before attempting to move the iterator, or read the information about the current position of the iterator.
This may return NULL to indicate that cloning is not supported. In this case, the PostingSource may only be used with a single-database search.
The default implementation returns NULL.
Note that the returned object will be deallocated by Xapian after use with "delete". If you want to handle the deletion in a special way (for example when wrapping the Xapian API for use from another language) then you can define a static operator delete
method in your subclass as shown here: https://trac.xapian.org/ticket/554#comment:1
Reimplemented from Xapian::PostingSource.
Definition at line 336 of file postingsource.cc.
References default_weight, Xapian::ValuePostingSource::get_slot(), ValueMapPostingSource(), and weight_map.
|
virtual |
Return a string describing this object.
This default implementation returns a generic answer. This default it provided to avoid forcing those deriving their own PostingSource subclass from having to implement this (they may not care what get_description() gives for their subclass).
Reimplemented from Xapian::PostingSource.
Definition at line 397 of file postingsource.cc.
References Xapian::ValuePostingSource::get_slot(), and Xapian::Internal::str().
|
virtual |
Return the weight contribution for the current document.
This default implementation always returns 0, for convenience when implementing "weight-less" PostingSource subclasses.
This method may assume that it will only be called when there is a "current document". In detail: Xapian will always call init() on a PostingSource before calling this for the first time. It will also only call this if the PostingSource reports that it is pointing to a valid document (ie, it will not call it before calling at least one of next(), skip_to() or check(), and will ensure that the PostingSource is not at the end by calling at_end()).
Reimplemented from Xapian::PostingSource.
Definition at line 326 of file postingsource.cc.
References default_weight, Xapian::ValuePostingSource::get_value(), and weight_map.
|
virtual |
Set this PostingSource to the start of the list of postings.
This is called automatically by the matcher prior to each query being processed.
If a PostingSource is used for multiple searches, init() will therefore be called multiple times, and must handle this by using the database passed in the most recent call.
db | The database which the PostingSource should iterate through. |
Note: in the case of a multi-database search, a separate PostingSource will be used for each database (the separate PostingSources will be obtained using clone()), and each PostingSource will be passed one of the sub-databases as the db parameter here. The db parameter will therefore always refer to a single database. All docids passed to, or returned from, the PostingSource refer to docids in that single database, rather than in the multi-database.
Reimplemented from Xapian::ValuePostingSource.
Definition at line 390 of file postingsource.cc.
References default_weight, Xapian::ValuePostingSource::init(), max_weight_in_map, and Xapian::PostingSource::set_maxweight().
Referenced by DEFINE_TESTCASE().
|
virtual |
Name of the posting source class.
This is used when serialising and unserialising posting sources; for example, for performing remote searches.
If the subclass is in a C++ namespace, the namespace should be included in the name, using "::" as a separator. For example, for a PostingSource subclass called "FooPostingSource" in the "Xapian" namespace the result of this call should be "Xapian::FooPostingSource".
This should only be implemented if serialise() and unserialise() are also implemented. The default implementation returns an empty string.
If this returns an empty string, Xapian will assume that serialise() and unserialise() are not implemented.
Reimplemented from Xapian::PostingSource.
Definition at line 348 of file postingsource.cc.
|
virtual |
Serialise object parameters into a string.
The serialised parameters should represent the configuration of the posting source, but need not (indeed, should not) represent the current iteration state.
If you don't want to support the remote backend, you can use the default implementation which simply throws Xapian::UnimplementedError.
Reimplemented from Xapian::PostingSource.
Definition at line 354 of file postingsource.cc.
References default_weight, encode_length(), Xapian::ValuePostingSource::get_slot(), serialise_double(), and weight_map.
void Xapian::ValueMapPostingSource::set_default_weight | ( | double | wt | ) |
Set a default weight for document values not in the map.
wt | The weight to set as the default. |
Definition at line 320 of file postingsource.cc.
References default_weight.
Referenced by DEFINE_TESTCASE().
|
virtual |
Create object given string serialisation returned by serialise().
Note that the returned object will be deallocated by Xapian after use with "delete". If you want to handle the deletion in a special way (for example when wrapping the Xapian API for use from another language) then you can define a static operator delete
method in your subclass as shown here: https://trac.xapian.org/ticket/554#comment:1
If you don't want to support the remote backend, you can use the default implementation which simply throws Xapian::UnimplementedError.
serialised | A serialised instance of this PostingSource subclass. |
Reimplemented from Xapian::PostingSource.
Definition at line 370 of file postingsource.cc.
References decode_length(), decode_length_and_check(), unserialise_double(), and ValueMapPostingSource().
|
private |
The default weight.
Definition at line 688 of file postingsource.h.
Referenced by clone(), get_weight(), init(), serialise(), and set_default_weight().
|
private |
The maximum weight in weight_map.
Definition at line 691 of file postingsource.h.
Referenced by add_mapping(), clear_mappings(), and init().
|
private |
The value -> weight map.
Definition at line 694 of file postingsource.h.
Referenced by add_mapping(), clear_mappings(), clone(), get_weight(), and serialise().