MediaWiki REL1_32
|
Public Member Functions | |
__construct ( $containedSyntax=false, $hasMoreResults=false) | |
augmentResult (SearchResult $result) | |
Returns extra data for specific result and store it in SearchResult object. | |
count () | |
extractResults () | |
Extract all the results in the result set as array. | |
extractTitles () | |
Extract all the titles in the result set. | |
free () | |
Frees the result set, if applicable. | |
getInterwikiResults ( $type=self::SECONDARY_RESULTS) | |
Return a result set of hits on other (multiple) wikis associated with this one. | |
getIterator () | |
getOffset () | |
getQueryAfterRewrite () | |
getQueryAfterRewriteSnippet () | |
getSuggestionQuery () | |
getSuggestionSnippet () | |
getTotalHits () | |
Some search modes return a total hit count for the query in the entire article database. | |
hasInterwikiResults ( $type=self::SECONDARY_RESULTS) | |
Check if there are results on other wikis. | |
hasMoreResults () | |
hasRewrittenQuery () | |
Some search modes will run an alternative query that it thinks gives a better result than the provided search. | |
hasSuggestion () | |
Some search modes return a suggested alternate term if there are no exact hits. | |
next () | |
Fetches next search result, or false. | |
numRows () | |
rewind () | |
Rewind result set back to beginning. | |
searchContainedSyntax () | |
Did the search contain search syntax? If so, Special:Search won't offer the user a link to a create a page named by the search string because the name would contain the search syntax. | |
setAugmentedData ( $name, $data) | |
Sets augmented data for result set. | |
shrink ( $limit) | |
termMatches () | |
Fetch an array of regular expression fragments for matching the search terms as parsed by this engine in a text extract. | |
Protected Attributes | |
$containedSyntax = false | |
Types of interwiki results. | |
array[] | $extraData = [] |
Set of result's extra data, indexed per result id and then per data item name. | |
SearchResult[] | $results |
Cache of results - serialization of the result iterator as an array. | |
Private Member Functions | |
bcIterator () | |
Private Attributes | |
ArrayIterator null | $bcIterator |
Iterator supporting BC iteration methods. | |
boolean | $hasMoreResults |
True when there are more pages of search results available. | |
Title[] | $titles |
Cache of titles. | |
Definition at line 27 of file SearchResultSet.php.
SearchResultSet::__construct | ( | $containedSyntax = false , |
|
$hasMoreResults = false |
|||
) |
bool | $containedSyntax | True when query is not requesting a simple term match |
bool | $hasMoreResults | True when there are more pages of search results available. |
Definition at line 83 of file SearchResultSet.php.
References $containedSyntax, hasMoreResults(), and wfDeprecated().
SearchResultSet::augmentResult | ( | SearchResult | $result | ) |
Returns extra data for specific result and store it in SearchResult object.
SearchResult | $result |
Definition at line 335 of file SearchResultSet.php.
References use.
|
private |
Definition at line 220 of file SearchResultSet.php.
References bcIterator(), getIterator(), and wfDeprecated().
Referenced by bcIterator(), next(), and rewind().
|
final |
Definition at line 109 of file SearchResultSet.php.
References count(), and extractResults().
Referenced by count(), MockSearchResultSet\hasInterwikiResults(), numRows(), MockSearchResultSet\numRows(), and shrink().
SearchResultSet::extractResults | ( | ) |
Extract all the results in the result set as array.
Reimplemented in SqlSearchResultSet, and MockSearchResultSet.
Definition at line 284 of file SearchResultSet.php.
References next(), numRows(), and rewind().
Referenced by PerRowAugmentor\augmentAll(), count(), extractTitles(), and getIterator().
SearchResultSet::extractTitles | ( | ) |
Extract all the titles in the result set.
Definition at line 304 of file SearchResultSet.php.
References $titles, extractResults(), and numRows().
Referenced by AugmentPageProps\augmentAll().
SearchResultSet::free | ( | ) |
Frees the result set, if applicable.
Reimplemented in SqlSearchResultSet.
Definition at line 238 of file SearchResultSet.php.
SearchResultSet::getInterwikiResults | ( | $type = self::SECONDARY_RESULTS | ) |
Return a result set of hits on other (multiple) wikis associated with this one.
int | $type |
Reimplemented in MockSearchResultSet.
Definition at line 184 of file SearchResultSet.php.
|
final |
Definition at line 355 of file SearchResultSet.php.
References extractResults().
Referenced by bcIterator().
SearchResultSet::getOffset | ( | ) |
Definition at line 351 of file SearchResultSet.php.
SearchResultSet::getQueryAfterRewrite | ( | ) |
Reimplemented in SpecialSearchTestMockResultSet.
Definition at line 142 of file SearchResultSet.php.
Referenced by MediaWiki\Widget\Search\DidYouMeanWidget\rewrittenHtml().
SearchResultSet::getQueryAfterRewriteSnippet | ( | ) |
Reimplemented in SpecialSearchTestMockResultSet.
Definition at line 150 of file SearchResultSet.php.
Referenced by MediaWiki\Widget\Search\DidYouMeanWidget\rewrittenHtml().
SearchResultSet::getSuggestionQuery | ( | ) |
Reimplemented in SpecialSearchTestMockResultSet.
Definition at line 167 of file SearchResultSet.php.
Referenced by MediaWiki\Widget\Search\DidYouMeanWidget\suggestionHtml().
SearchResultSet::getSuggestionSnippet | ( | ) |
Reimplemented in SpecialSearchTestMockResultSet.
Definition at line 174 of file SearchResultSet.php.
Referenced by MediaWiki\Widget\Search\DidYouMeanWidget\suggestionHtml().
SearchResultSet::getTotalHits | ( | ) |
Some search modes return a total hit count for the query in the entire article database.
This may include pages in namespaces that would not be matched on the given settings.
Return null if no total hits number is supported.
Reimplemented in SqlSearchResultSet, and SpecialSearchTestMockResultSet.
Definition at line 123 of file SearchResultSet.php.
SearchResultSet::hasInterwikiResults | ( | $type = self::SECONDARY_RESULTS | ) |
Check if there are results on other wikis.
int | $type |
Reimplemented in MockSearchResultSet.
Definition at line 194 of file SearchResultSet.php.
SearchResultSet::hasMoreResults | ( | ) |
Definition at line 255 of file SearchResultSet.php.
Referenced by __construct(), and shrink().
SearchResultSet::hasRewrittenQuery | ( | ) |
Some search modes will run an alternative query that it thinks gives a better result than the provided search.
Returns true if this has occurred.
Reimplemented in SpecialSearchTestMockResultSet.
Definition at line 134 of file SearchResultSet.php.
Referenced by MediaWiki\Widget\Search\DidYouMeanWidget\render().
SearchResultSet::hasSuggestion | ( | ) |
Some search modes return a suggested alternate term if there are no exact hits.
Returns true if there is one on this set.
Reimplemented in SpecialSearchTestMockResultSet.
Definition at line 160 of file SearchResultSet.php.
Referenced by MediaWiki\Widget\Search\DidYouMeanWidget\render().
SearchResultSet::next | ( | ) |
Fetches next search result, or false.
Definition at line 203 of file SearchResultSet.php.
References bcIterator(), and wfDeprecated().
Referenced by extractResults().
SearchResultSet::numRows | ( | ) |
Reimplemented in SearchNearMatchResultSet, SqlSearchResultSet, and MockSearchResultSet.
Definition at line 105 of file SearchResultSet.php.
References count().
Referenced by extractResults(), extractTitles(), and SpecialSearchTestMockResultSet\getTotalHits().
SearchResultSet::rewind | ( | ) |
Rewind result set back to beginning.
Definition at line 215 of file SearchResultSet.php.
References bcIterator(), and wfDeprecated().
Referenced by extractResults().
SearchResultSet::searchContainedSyntax | ( | ) |
Did the search contain search syntax? If so, Special:Search won't offer the user a link to a create a page named by the search string because the name would contain the search syntax.
Definition at line 248 of file SearchResultSet.php.
SearchResultSet::setAugmentedData | ( | $name, | |
$data | |||
) |
Sets augmented data for result set.
string | $name | Extra data item name |
array[] | $data | Extra data as PAGEID => data |
Definition at line 325 of file SearchResultSet.php.
Referenced by SearchEngine\augmentSearchResults().
SearchResultSet::shrink | ( | $limit | ) |
int | $limit | Shrink result set to $limit and flag if more results are available. |
Definition at line 263 of file SearchResultSet.php.
References count(), and hasMoreResults().
SearchResultSet::termMatches | ( | ) |
Fetch an array of regular expression fragments for matching the search terms as parsed by this engine in a text extract.
STUB
Reimplemented in SqlSearchResultSet.
Definition at line 101 of file SearchResultSet.php.
Referenced by MediaWiki\Widget\Search\BasicSearchResultSetWidget\renderResultSet().
|
private |
Iterator supporting BC iteration methods.
Definition at line 75 of file SearchResultSet.php.
|
protected |
Types of interwiki results.
Definition at line 42 of file SearchResultSet.php.
Referenced by __construct(), and SpecialSearchTestMockResultSet\__construct().
|
protected |
Set of result's extra data, indexed per result id and then per data item name.
The structure is: PAGE_ID => [ augmentor name => data, ... ]
Definition at line 65 of file SearchResultSet.php.
|
private |
True when there are more pages of search results available.
Definition at line 70 of file SearchResultSet.php.
|
protected |
Cache of results - serialization of the result iterator as an array.
Definition at line 56 of file SearchResultSet.php.
Referenced by MockSearchResultSet\__construct(), SqlSearchResultSet\extractResults(), and MockSearchResultSet\extractResults().
|
private |
Cache of titles.
Lists titles of the result set, in the same order as results.
Definition at line 49 of file SearchResultSet.php.