xapian-core
1.4.26
|
Handle a number range. More...
#include <queryparser.h>
Public Member Functions | |
NumberValueRangeProcessor (Xapian::valueno slot_) | |
Constructor. More... | |
NumberValueRangeProcessor (Xapian::valueno slot_, const std::string &str_, bool prefix_=true) | |
Constructor. More... | |
Xapian::valueno | operator() (std::string &begin, std::string &end) |
Check for a valid numeric range. More... | |
Public Member Functions inherited from Xapian::StringValueRangeProcessor | |
StringValueRangeProcessor (Xapian::valueno slot_) | |
Constructor. More... | |
StringValueRangeProcessor (Xapian::valueno slot_, const std::string &str_, bool prefix_=true) | |
Constructor. More... | |
Public Member Functions inherited from Xapian::ValueRangeProcessor | |
ValueRangeProcessor () | |
Default constructor. More... | |
virtual | ~ValueRangeProcessor () |
Destructor. More... | |
ValueRangeProcessor * | release () |
Start reference counting this object. More... | |
const ValueRangeProcessor * | 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 |
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::StringValueRangeProcessor | |
Xapian::valueno | valno |
The value slot to process. More... | |
bool | prefix |
Whether to look for str as a prefix or suffix. More... | |
std::string | str |
The prefix (or suffix if prefix==false) string to look for. More... | |
Handle a number range.
This class must be used on values which have been encoded using Xapian::sortable_serialise() which turns numbers into strings which will sort in the same order as the numbers (the same values can be used to implement a numeric sort).
Definition at line 662 of file queryparser.h.
|
inlineexplicit |
Constructor.
slot_ | The value number to return from operator(). |
Definition at line 668 of file queryparser.h.
|
inline |
Constructor.
slot_ | The value number to return from operator(). |
str_ | A string to look for to recognise values as belonging to this numeric range. |
prefix_ | Whether to look for the string at the start or end of the values. If true, the string is a prefix; if false, the string is a suffix (default: true). |
The string supplied in str_ is used by operator() to decide whether the pair of strings supplied to it constitute a valid range. If prefix_ is true, the first value in a range must begin with str_ (and the second value may optionally begin with str_); if prefix_ is false, the second value in a range must end with str_ (and the first value may optionally end with str_).
If str_ is empty, the setting of prefix_ is irrelevant, and no special strings are required at the start or end of the strings defining the range.
The remainder of both strings defining the endpoints must be valid floating point numbers. (FIXME: define format recognised).
For example, if str_ is "$" and prefix_ is true, and the range processor has been added to the queryparser, the queryparser will accept "$10..50" or "$10..$50", but not "10..50" or "10..$50" as valid ranges. If str_ is "kg" and prefix_ is false, the queryparser will accept "10..50kg" or "10kg..50kg", but not "10..50" or "10kg..50" as valid ranges.
Definition at line 703 of file queryparser.h.
|
virtual |
Check for a valid numeric range.
[in,out] | begin | The start of the range as specified in the query string by the user. This parameter is a non-const reference so the ValueRangeProcessor can modify it to return the value to start the range with. |
[in,out] | end | The end of the range. This is also a non-const reference so it can be modified. |
Reimplemented from Xapian::StringValueRangeProcessor.
Definition at line 215 of file valuerangeproc.cc.
References Xapian::BAD_VALUENO, and Xapian::sortable_serialise().