xapian-core
1.4.26
|
Class used to pass information about a token from lexer to parser. More...
Public Member Functions | |
Term (const string &name_, termpos pos_) | |
Term (const string &name_) | |
Term (const string &name_, const FieldInfo *field_info_) | |
Term (termpos pos_) | |
Term (State *state_, const string &name_, const FieldInfo *field_info_, const string &unstemmed_, QueryParser::stem_strategy stem_=QueryParser::STEM_NONE, termpos pos_=0) | |
Term (const Xapian::Query &q, const string &grouping) | |
string | make_term (const string &prefix) const |
void | need_positions () |
termpos | get_termpos () const |
string | get_grouping () const |
Query * | as_wildcarded_query (State *state) const |
Query * | as_partial_query (State *state_) const |
Build a query for a term at the very end of the query string when FLAG_PARTIAL is in use. More... | |
Query * | as_unbroken_query () const |
Build a query for a string of words without explicit word breaks. More... | |
void | as_positional_unbroken (Terms *terms) const |
Handle text without explicit word breaks in a positional context. More... | |
Query | as_range_query () const |
Range query. More... | |
Query | get_query () const |
Query | get_query_with_synonyms () const |
Query | get_query_with_auto_synonyms () const |
Public Attributes | |
string | name |
const FieldInfo * | field_info |
string | unstemmed |
QueryParser::stem_strategy | stem |
termpos | pos |
Query | query |
Private Attributes | |
State * | state |
Class used to pass information about a token from lexer to parser.
Generally an instance of this class carries term information, but it can be used for a range query, and with some operators (e.g. the distance in NEAR/3 or ADJ/3, etc).
Definition at line 160 of file queryparser_internal.cc.
|
inline |
Definition at line 171 of file queryparser_internal.cc.
|
inlineexplicit |
Definition at line 173 of file queryparser_internal.cc.
|
inline |
Definition at line 175 of file queryparser_internal.cc.
|
inlineexplicit |
Definition at line 178 of file queryparser_internal.cc.
|
inline |
Definition at line 179 of file queryparser_internal.cc.
|
inline |
Definition at line 186 of file queryparser_internal.cc.
Build a query for a term at the very end of the query string when FLAG_PARTIAL is in use.
This query should match documents containing any terms which start with the characters specified, but should give a higher score to exact matches (since the user might have finished typing - we simply don't know).
Definition at line 516 of file queryparser_internal.cc.
References State::get_max_partial_expansion(), State::get_max_partial_type(), and name.
void Term::as_positional_unbroken | ( | Terms * | terms | ) | const |
Handle text without explicit word breaks in a positional context.
Definition at line 1186 of file queryparser_internal.cc.
References Terms::add_positional_term(), and Xapian::Unicode::append_utf8().
Query Term::as_range_query | ( | ) | const |
Query * Term::as_unbroken_query | ( | ) | const |
Build a query for a string of words without explicit word breaks.
Definition at line 542 of file queryparser_internal.cc.
Definition at line 497 of file queryparser_internal.cc.
References State::get_max_wildcard_expansion(), State::get_max_wildcard_type(), and name.
|
inline |
Definition at line 197 of file queryparser_internal.cc.
References FieldInfo::grouping.
Query Term::get_query | ( | ) | const |
Definition at line 481 of file queryparser_internal.cc.
Query Term::get_query_with_auto_synonyms | ( | ) | const |
Definition at line 435 of file queryparser_internal.cc.
Query Term::get_query_with_synonyms | ( | ) | const |
Definition at line 393 of file queryparser_internal.cc.
References Assert, name, Xapian::Query::OP_SYNONYM, prefix_needs_colon(), Xapian::Database::synonyms_begin(), and Xapian::Database::synonyms_end().
|
inline |
Definition at line 195 of file queryparser_internal.cc.
string Term::make_term | ( | const string & | prefix | ) | const |
Definition at line 330 of file queryparser_internal.cc.
References name, and prefix_needs_colon().
|
inline |
Definition at line 191 of file queryparser_internal.cc.
Referenced by Terms::add_positional_term().
const FieldInfo* Term::field_info |
Definition at line 165 of file queryparser_internal.cc.
Referenced by Terms::add_positional_term().
string Term::name |
Definition at line 164 of file queryparser_internal.cc.
Referenced by State::add_to_stoplist(), and State::is_stopword().
termpos Term::pos |
Definition at line 168 of file queryparser_internal.cc.
Query Term::query |
Definition at line 169 of file queryparser_internal.cc.
|
private |
Definition at line 161 of file queryparser_internal.cc.
QueryParser::stem_strategy Term::stem |
Definition at line 167 of file queryparser_internal.cc.
string Term::unstemmed |
Definition at line 166 of file queryparser_internal.cc.