3 * SQLite search backend, based upon SearchMysql
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
25 * Search engine hook for SQLite
28 class SearchSqlite
extends SearchDatabase
{
30 * Whether fulltext search is supported by current schema
33 function fulltextSearchSupported() {
34 return $this->db
->checkForEnabledSearch();
38 * Parse the user's query and transform it into an SQL fragment which will
39 * become part of a WHERE clause
41 * @param string $filteredText
42 * @param bool $fulltext
45 function parseQuery( $filteredText, $fulltext ) {
47 $lc = $this->legalSearchChars(); // Minus format chars
49 $this->searchTerms
= array();
52 if ( preg_match_all( '/([-+<>~]?)(([' . $lc . ']+)(\*?)|"[^"]*")/',
53 $filteredText, $m, PREG_SET_ORDER
) ) {
54 foreach ( $m as $bits ) {
55 MediaWiki\
suppressWarnings();
56 list( /* all */, $modifier, $term, $nonQuoted, $wildcard ) = $bits;
57 MediaWiki\restoreWarnings
();
59 if ( $nonQuoted != '' ) {
63 $term = str_replace( '"', '', $term );
67 if ( $searchon !== '' ) {
71 // Some languages such as Serbian store the input form in the search index,
72 // so we may need to search for matches in multiple writing system variants.
73 $convertedVariants = $wgContLang->autoConvertToAllVariants( $term );
74 if ( is_array( $convertedVariants ) ) {
75 $variants = array_unique( array_values( $convertedVariants ) );
77 $variants = array( $term );
80 // The low-level search index does some processing on input to work
81 // around problems with minimum lengths and encoding in MySQL's
83 // For Chinese this also inserts spaces between adjacent Han characters.
84 $strippedVariants = array_map(
85 array( $wgContLang, 'normalizeForSearch' ),
88 // Some languages such as Chinese force all variants to a canonical
89 // form when stripping to the low-level search index, so to be sure
90 // let's check our variants list for unique items after stripping.
91 $strippedVariants = array_unique( $strippedVariants );
93 $searchon .= $modifier;
94 if ( count( $strippedVariants ) > 1 ) {
97 foreach ( $strippedVariants as $stripped ) {
98 if ( $nonQuoted && strpos( $stripped, ' ' ) !== false ) {
99 // Hack for Chinese: we need to toss in quotes for
100 // multiple-character phrases since normalizeForSearch()
101 // added spaces between them to make word breaks.
102 $stripped = '"' . trim( $stripped ) . '"';
104 $searchon .= "$quote$stripped$quote$wildcard ";
106 if ( count( $strippedVariants ) > 1 ) {
110 // Match individual terms or quoted phrase in result highlighting...
111 // Note that variants will be introduced in a later stage for highlighting!
112 $regexp = $this->regexTerm( $term, $wildcard );
113 $this->searchTerms
[] = $regexp;
117 wfDebug( __METHOD__
. ": Can't understand search query '{$filteredText}'\n" );
120 $searchon = $this->db
->addQuotes( $searchon );
121 $field = $this->getIndexField( $fulltext );
122 return " $field MATCH $searchon ";
125 function regexTerm( $string, $wildcard ) {
128 $regex = preg_quote( $string, '/' );
129 if ( $wgContLang->hasWordBreaks() ) {
131 // Don't cut off the final bit!
134 $regex = "\b$regex\b";
137 // For Chinese, words may legitimately abut other words in the text literal.
138 // Don't add \b boundary checks... note this could cause false positives
144 public static function legalSearchChars() {
145 return "\"*" . parent
::legalSearchChars();
149 * Perform a full text search query and return a result set.
151 * @param string $term Raw search term
152 * @return SqlSearchResultSet
154 function searchText( $term ) {
155 return $this->searchInternal( $term, true );
159 * Perform a title-only search query and return a result set.
161 * @param string $term Raw search term
162 * @return SqlSearchResultSet
164 function searchTitle( $term ) {
165 return $this->searchInternal( $term, false );
168 protected function searchInternal( $term, $fulltext ) {
171 if ( !$this->fulltextSearchSupported() ) {
175 $filteredTerm = $this->filter( $wgContLang->lc( $term ) );
176 $resultSet = $this->db
->query( $this->getQuery( $filteredTerm, $fulltext ) );
179 $totalResult = $this->db
->query( $this->getCountQuery( $filteredTerm, $fulltext ) );
180 $row = $totalResult->fetchObject();
182 $total = intval( $row->c
);
184 $totalResult->free();
186 return new SqlSearchResultSet( $resultSet, $this->searchTerms
, $total );
190 * Return a partial WHERE clause to limit the search to the given namespaces
193 function queryNamespaces() {
194 if ( is_null( $this->namespaces
) ) {
195 return ''; # search all
197 if ( !count( $this->namespaces
) ) {
200 $namespaces = $this->db
->makeList( $this->namespaces
);
202 return 'AND page_namespace IN (' . $namespaces . ')';
206 * Returns a query with limit for number of results set.
210 function limitResult( $sql ) {
211 return $this->db
->limitResult( $sql, $this->limit
, $this->offset
);
215 * Construct the full SQL query to do the search.
216 * The guts shoulds be constructed in queryMain()
217 * @param string $filteredTerm
218 * @param bool $fulltext
221 function getQuery( $filteredTerm, $fulltext ) {
222 return $this->limitResult(
223 $this->queryMain( $filteredTerm, $fulltext ) . ' ' .
224 $this->queryNamespaces()
229 * Picks which field to index on, depending on what type of query.
230 * @param bool $fulltext
233 function getIndexField( $fulltext ) {
234 return $fulltext ?
'si_text' : 'si_title';
238 * Get the base part of the search query.
240 * @param string $filteredTerm
241 * @param bool $fulltext
244 function queryMain( $filteredTerm, $fulltext ) {
245 $match = $this->parseQuery( $filteredTerm, $fulltext );
246 $page = $this->db
->tableName( 'page' );
247 $searchindex = $this->db
->tableName( 'searchindex' );
248 return "SELECT $searchindex.rowid, page_namespace, page_title " .
249 "FROM $page,$searchindex " .
250 "WHERE page_id=$searchindex.rowid AND $match";
253 function getCountQuery( $filteredTerm, $fulltext ) {
254 $match = $this->parseQuery( $filteredTerm, $fulltext );
255 $page = $this->db
->tableName( 'page' );
256 $searchindex = $this->db
->tableName( 'searchindex' );
257 return "SELECT COUNT(*) AS c " .
258 "FROM $page,$searchindex " .
259 "WHERE page_id=$searchindex.rowid AND $match " .
260 $this->queryNamespaces();
264 * Create or update the search index record for the given page.
265 * Title and text should be pre-processed.
268 * @param string $title
269 * @param string $text
271 function update( $id, $title, $text ) {
272 if ( !$this->fulltextSearchSupported() ) {
275 // @todo find a method to do it in a single request,
276 // couldn't do it so far due to typelessness of FTS3 tables.
277 $dbw = wfGetDB( DB_MASTER
);
279 $dbw->delete( 'searchindex', array( 'rowid' => $id ), __METHOD__
);
281 $dbw->insert( 'searchindex',
284 'si_title' => $title,
290 * Update a search index record's title only.
291 * Title should be pre-processed.
294 * @param string $title
296 function updateTitle( $id, $title ) {
297 if ( !$this->fulltextSearchSupported() ) {
300 $dbw = wfGetDB( DB_MASTER
);
302 $dbw->update( 'searchindex',
303 array( 'si_title' => $title ),
304 array( 'rowid' => $id ),