MediaWiki master
MediaWiki\Search\BaseSearchResultSet Class Reference

BaseSearchResultSet is the base class that must be extended by SearchEngine search result set implementations. More...

Inherits MediaWiki\Search\ISearchResultSet.

Inherited by MediaWiki\Search\SearchResultSet.

Collaboration diagram for MediaWiki\Search\BaseSearchResultSet:

Public Member Functions

 free ()
 Frees the result set, if applicable.
 
 isApproximateTotalHits ()
 If getTotalHits() is supported determine whether this number is approximate or not.Some engine might perform optimizations that might lead to inaccurate total hits. If this happens such engine should return true.
Returns
bool
Since
1.44

 
 next ()
 Fetches next search result, or false.
 
 rewind ()
 Rewind result set back to beginning.
 
 termMatches ()
 Fetch an array of regular expression fragments for matching the search terms as parsed by this engine in a text extract.
 
- Public Member Functions inherited from MediaWiki\Search\ISearchResultSet
 augmentResult (SearchResult $result)
 Returns extra data for specific result and store it in SearchResult object.
 
 extractResults ()
 Extract all the results in the result set as array.
 
 extractTitles ()
 Extract all the titles in the result set.
 
 getInterwikiResults ( $type=self::SECONDARY_RESULTS)
 Return a result set of hits on other (multiple) wikis associated with this one.
 
 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.
 
 numRows ()
 
 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)
 

Additional Inherited Members

- Public Attributes inherited from MediaWiki\Search\ISearchResultSet
const INLINE_RESULTS = 1
 Identifier for interwiki results that can be displayed even if no existing main wiki results exist.
 
const SECONDARY_RESULTS = 0
 Identifier for interwiki results that are displayed only together with existing main wiki results.
 

Detailed Description

BaseSearchResultSet is the base class that must be extended by SearchEngine search result set implementations.

This base class is meant to hold B/C behaviors and to be useful it must never:

  • be used as type hints (ISearchResultSet must be used for this)
  • implement a constructor
  • declare utility methods
Stability: stable
to extend

@method ArrayIterator getIterator()

Definition at line 20 of file BaseSearchResultSet.php.

Member Function Documentation

◆ free()

MediaWiki\Search\BaseSearchResultSet::free ( )

Frees the result set, if applicable.

Deprecated
since 1.34; noop

Definition at line 89 of file BaseSearchResultSet.php.

◆ isApproximateTotalHits()

MediaWiki\Search\BaseSearchResultSet::isApproximateTotalHits ( )

If getTotalHits() is supported determine whether this number is approximate or not.Some engine might perform optimizations that might lead to inaccurate total hits. If this happens such engine should return true.

Returns
bool
Since
1.44

Implements MediaWiki\Search\ISearchResultSet.

Definition at line 69 of file BaseSearchResultSet.php.

◆ next()

MediaWiki\Search\BaseSearchResultSet::next ( )

Fetches next search result, or false.

Returns
SearchResult|false
Deprecated
since 1.32; Use self::extractResults() or foreach

Definition at line 32 of file BaseSearchResultSet.php.

References wfDeprecated().

◆ rewind()

MediaWiki\Search\BaseSearchResultSet::rewind ( )

Rewind result set back to beginning.

Deprecated
since 1.32; Use self::extractResults() or foreach

Definition at line 44 of file BaseSearchResultSet.php.

References wfDeprecated().

◆ termMatches()

MediaWiki\Search\BaseSearchResultSet::termMatches ( )

Fetch an array of regular expression fragments for matching the search terms as parsed by this engine in a text extract.

STUB

Returns
string[]
Deprecated
since 1.34 (use SqlSearchResult)

Reimplemented in MediaWiki\Search\SqlSearchResultSet.

Definition at line 81 of file BaseSearchResultSet.php.


The documentation for this class was generated from the following file: