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
43 function parseQuery( $filteredText, $fulltext ) {
45 $lc = $this->legalSearchChars(); // Minus format chars
47 $this->searchTerms
= array();
50 if ( preg_match_all( '/([-+<>~]?)(([' . $lc . ']+)(\*?)|"[^"]*")/',
51 $filteredText, $m, PREG_SET_ORDER
) ) {
52 foreach ( $m as $bits ) {
54 list( /* all */, $modifier, $term, $nonQuoted, $wildcard ) = $bits;
57 if ( $nonQuoted != '' ) {
61 $term = str_replace( '"', '', $term );
65 if ( $searchon !== '' ) {
69 // Some languages such as Serbian store the input form in the search index,
70 // so we may need to search for matches in multiple writing system variants.
71 $convertedVariants = $wgContLang->autoConvertToAllVariants( $term );
72 if ( is_array( $convertedVariants ) ) {
73 $variants = array_unique( array_values( $convertedVariants ) );
75 $variants = array( $term );
78 // The low-level search index does some processing on input to work
79 // around problems with minimum lengths and encoding in MySQL's
81 // For Chinese this also inserts spaces between adjacent Han characters.
82 $strippedVariants = array_map(
83 array( $wgContLang, 'normalizeForSearch' ),
86 // Some languages such as Chinese force all variants to a canonical
87 // form when stripping to the low-level search index, so to be sure
88 // let's check our variants list for unique items after stripping.
89 $strippedVariants = array_unique( $strippedVariants );
91 $searchon .= $modifier;
92 if ( count( $strippedVariants ) > 1 ) {
95 foreach ( $strippedVariants as $stripped ) {
96 if ( $nonQuoted && strpos( $stripped, ' ' ) !== false ) {
97 // Hack for Chinese: we need to toss in quotes for
98 // multiple-character phrases since normalizeForSearch()
99 // added spaces between them to make word breaks.
100 $stripped = '"' . trim( $stripped ) . '"';
102 $searchon .= "$quote$stripped$quote$wildcard ";
104 if ( count( $strippedVariants ) > 1 ) {
108 // Match individual terms or quoted phrase in result highlighting...
109 // Note that variants will be introduced in a later stage for highlighting!
110 $regexp = $this->regexTerm( $term, $wildcard );
111 $this->searchTerms
[] = $regexp;
115 wfDebug( __METHOD__
. ": Can't understand search query '{$filteredText}'\n" );
118 $searchon = $this->db
->strencode( $searchon );
119 $field = $this->getIndexField( $fulltext );
120 return " $field MATCH '$searchon' ";
123 function regexTerm( $string, $wildcard ) {
126 $regex = preg_quote( $string, '/' );
127 if ( $wgContLang->hasWordBreaks() ) {
129 // Don't cut off the final bit!
132 $regex = "\b$regex\b";
135 // For Chinese, words may legitimately abut other words in the text literal.
136 // Don't add \b boundary checks... note this could cause false positives
142 public static function legalSearchChars() {
143 return "\"*" . parent
::legalSearchChars();
147 * Perform a full text search query and return a result set.
149 * @param string $term Raw search term
150 * @return SqlSearchResultSet
152 function searchText( $term ) {
153 return $this->searchInternal( $term, true );
157 * Perform a title-only search query and return a result set.
159 * @param string $term Raw search term
160 * @return SqlSearchResultSet
162 function searchTitle( $term ) {
163 return $this->searchInternal( $term, false );
166 protected function searchInternal( $term, $fulltext ) {
167 global $wgCountTotalSearchHits, $wgContLang;
169 if ( !$this->fulltextSearchSupported() ) {
173 $filteredTerm = $this->filter( $wgContLang->lc( $term ) );
174 $resultSet = $this->db
->query( $this->getQuery( $filteredTerm, $fulltext ) );
177 if ( $wgCountTotalSearchHits ) {
178 $totalResult = $this->db
->query( $this->getCountQuery( $filteredTerm, $fulltext ) );
179 $row = $totalResult->fetchObject();
181 $total = intval( $row->c
);
183 $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 ),