]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/TextSearchQuery.php
support ranked search: simple score() function
[SourceForge/phpwiki.git] / lib / TextSearchQuery.php
1 <?php rcs_id('$Id: TextSearchQuery.php,v 1.29 2007-07-14 12:03:38 rurban Exp $');
2 /**
3  * A text search query, converting queries to PCRE and SQL matchers.
4  *
5  * This represents an enhanced "Google-like" text search query:
6  * <dl>
7  * <dt> default: case-insensitive glob-style search with special operators OR AND NOT -
8  * <dt> wiki -test
9  *   <dd> Match strings containing the substring 'wiki', and NOT containing the
10  *        substring 'test'.
11  * <dt> wiki word or page
12  *   <dd> Match strings containing the substring 'wiki' AND either the substring
13  *        'word' OR the substring 'page'.
14  * <dt> auto-detect regex hints, glob-style or regex-style, and converts them 
15  *      to PCRE and SQL matchers:
16  *   <dd> "^word$" => EXACT(word)
17  *   <dd> "^word"  => STARTS_WITH(word)
18  *   <dd> "word*"  => STARTS_WITH(word)
19  *   <dd> "*word"  => ENDS_WITH(word)
20  *   <dd> "/^word.* /" => REGEX(^word.*)
21  *   <dd> "word*word" => REGEX(word.*word)
22  * </dl>
23  *
24  * The full query syntax, in order of precedence, is roughly:
25  *
26  * The unary 'NOT' or '-' operator (they are equivalent) negates the
27  * following search clause.
28  *
29  * Search clauses may be joined with the (left-associative) binary operators
30  * 'AND' and 'OR'. (case-insensitive)
31  *
32  * Two adjoining search clauses are joined with an implicit 'AND'.  This has
33  * lower precedence than either an explicit 'AND' or 'OR', so "a b OR c"
34  * parses as "a AND ( b OR c )", while "a AND b OR c" parses as
35  * "( a AND b ) OR c" (due to the left-associativity of 'AND' and 'OR'.)
36  *
37  * Search clauses can be grouped with parentheses.
38  *
39  * Phrases (or other things which don't look like words) can be forced to
40  * be interpreted as words by quoting them, either with single (') or double (")
41  * quotes.  If you wan't to include the quote character within a quoted string,
42  * double-up on the quote character: 'I''m hungry' is equivalent to
43  * "I'm hungry".
44  *
45  * Force regex on "re:word" => posix-style, "/word/" => pcre-style 
46  * or use regex='glob' to use file wildcard-like matching. (not yet)
47  *
48  * The parsed tree is then converted to the needed PCRE (highlight, 
49  * simple backends) or SQL functions. 
50  *
51  * @author: Jeff Dairiki
52  * @author: Reini Urban (case and regex detection, enhanced sql callbacks)
53  */
54
55 // regex-style: 'auto', 'none', 'glob', 'posix', 'pcre', 'sql'
56 define ('TSQ_REGEX_NONE', 0);
57 define ('TSQ_REGEX_AUTO', 1);
58 define ('TSQ_REGEX_POSIX',2);
59 define ('TSQ_REGEX_GLOB', 4);
60 define ('TSQ_REGEX_PCRE', 8);
61 define ('TSQ_REGEX_SQL', 16);
62
63 class TextSearchQuery {
64     /**
65      * Create a new query.
66      *
67      * @param $search_query string The query.  Syntax is as described above.
68      * Note that an empty $search_query will match anything.
69      * @param $case_exact boolean
70      * @param $regex string one of 'auto', 'none', 'glob', 'posix', 'pcre', 'sql'
71      * @see TextSearchQuery
72      */
73     function TextSearchQuery($search_query, $case_exact=false, $regex='auto') {
74         if ($regex == 'none' or !$regex) 
75             $this->_regex = 0;
76         elseif (defined("TSQ_REGEX_".strtoupper($regex)))
77             $this->_regex = constant("TSQ_REGEX_".strtoupper($regex));
78         else {
79             trigger_error(fmt("Unsupported argument: %s=%s", 'regex', $regex));
80             $this->_regex = 0;
81         }
82         $this->_case_exact = $case_exact;
83         if ($regex != 'pcre') {
84             $parser = new TextSearchQuery_Parser;
85             $this->_tree = $parser->parse($search_query, $case_exact, $this->_regex);
86             $this->_optimize(); // broken under certain circumstances: "word -word -word"
87             if (defined("FULLTEXTSEARCH_STOPLIST"))
88                 $this->_stoplist = FULLTEXTSEARCH_STOPLIST;
89             else // default stoplist, localizable.
90                 $this->_stoplist = _("(A|An|And|But|By|For|From|In|Is|It|Of|On|Or|The|To|With)");
91         }
92         else {
93             $this->_tree = new TextSearchQuery_node_regex_pcre($search_query);
94             if (preg_match("/^\/(.*)\/(\w*)$/", $search_query, $m)) {
95                 $this->_tree->word = $m[1];
96                 $this->_regex_modifier = $m[2]; // overrides case_exact
97             }
98         }
99     }
100
101     function getType() { return 'text'; }
102
103     function _optimize() {
104         $this->_tree = $this->_tree->optimize();
105     }
106
107     /**
108      * Get a PCRE regexp which matches the query.
109      */
110     function asRegexp() {
111         if (!isset($this->_regexp)) {
112             if (!isset($this->_regex_modifier)) 
113                 $this->_regex_modifier = ($this->_case_exact?'':'i').'sS';
114             if ($this->_regex)
115                 $this->_regexp =  '/' . $this->_tree->regexp() . '/'.$this->_regex_modifier;
116             else
117                 $this->_regexp =  '/^' . $this->_tree->regexp() . '/'.$this->_regex_modifier;
118         }
119         return $this->_regexp;
120     }
121
122     /**
123      * Match query against string.
124      *
125      * @param $string string The string to match. 
126      * @return boolean True if the string matches the query.
127      */
128     function match($string) {
129         return preg_match($this->asRegexp(), $string);
130     }
131
132     /* How good does it match? Returns a number */
133     function score($string) {
134         $score = 0.0;
135         $i = 10;
136         foreach (array_unique($this->_tree->highlight_words()) as $word) {
137             if ($nummatch = preg_match_all("/".preg_quote($word, '/')."/".$this->_regex_modifier, $string, $out))
138                 $score += ($i-- * $nummatch);
139         }
140         return min(1.0, $score / 10.0);
141     }
142
143     
144     /**
145      * Get a regular expression suitable for highlighting matched words.
146      *
147      * This returns a PCRE regular expression which matches any non-negated
148      * word in the query.
149      *
150      * @return string The PCRE regexp.
151      */
152     function getHighlightRegexp() {
153         if (!isset($this->_hilight_regexp)) {
154             $words = array_unique($this->_tree->highlight_words());
155             if (!$words) {
156                 $this->_hilight_regexp = false;
157             } else {
158                 foreach ($words as $key => $word)
159                     $words[$key] = preg_quote($word, '/');
160                 $this->_hilight_regexp = '(?'.($this->_case_exact?'':'i').':' . join('|', $words) . ')';
161             }
162         }
163         return $this->_hilight_regexp;
164     }
165
166     /**
167      * Make an SQL clause which matches the query. 
168      * Deprecated, use makeSqlClauseObj instead.
169      *
170      * @param $make_sql_clause_cb WikiCallback
171      * A callback which takes a single word as an argument and
172      * returns an SQL clause which will match exactly those records
173      * containing the word.  The word passed to the callback will always
174      * be in all lower case.
175      *
176      * Support db-specific extensions, like MATCH AGAINST or REGEX
177      * mysql => 4.0.1 can also do Google: MATCH AGAINST IN BOOLEAN MODE
178      * by using makeSqlClauseObj
179      *
180      * Old example usage:
181      * <pre>
182      *     function sql_title_match($word) {
183      *         return sprintf("LOWER(title) like '%s'",
184      *                        addslashes($word));
185      *     }
186      *
187      *     ...
188      *
189      *     $query = new TextSearchQuery("wiki -page");
190      *     $cb = new WikiFunctionCb('sql_title_match');
191      *     $sql_clause = $query->makeSqlClause($cb);
192      * </pre>
193      * This will result in $sql_clause containing something like
194      * "(LOWER(title) like 'wiki') AND NOT (LOWER(title) like 'page')".
195      *
196      * @return string The SQL clause.
197      */
198     function makeSqlClause($sql_clause_cb) {
199         $this->_sql_clause_cb = $sql_clause_cb;
200         return $this->_sql_clause($this->_tree);
201     }
202     // deprecated: use _sql_clause_obj now.
203     function _sql_clause($node) {
204         switch ($node->op) {
205         case 'WORD':        // word => %word%
206             return $this->_sql_clause_cb->call($node->word);
207         case 'NOT':
208             return "NOT (" . $this->_sql_clause($node->leaves[0]) . ")";
209         case 'AND':
210         case 'OR':
211             $subclauses = array();
212             foreach ($node->leaves as $leaf)
213                 $subclauses[] = "(" . $this->_sql_clause($leaf) . ")";
214             return join(" $node->op ", $subclauses);
215         default:
216             assert($node->op == 'VOID');
217             return '1=1';
218         }
219     }
220
221     /** Get away with the callback and use a db-specific search class instead.
222      * @see WikiDB_backend_PearDB_search
223      */
224     function makeSqlClauseObj(&$sql_search_cb) {
225         $this->_sql_clause_cb = $sql_search_cb;
226         return $this->_sql_clause_obj($this->_tree);
227     }
228
229     function _sql_clause_obj($node) {
230         switch ($node->op) {
231         case 'NOT':
232             return "NOT (" . $this->_sql_clause_cb->call($node->leaves[0]) . ")";
233         case 'AND':
234         case 'OR':
235             $subclauses = array();
236             foreach ($node->leaves as $leaf)
237                 $subclauses[] = "(" . $this->_sql_clause_obj($leaf) . ")";
238             return join(" $node->op ", $subclauses);
239         case 'VOID':
240             return '0=1';
241         case 'ALL':
242             return '1=1';
243         default:
244             return $this->_sql_clause_cb->call($node);
245         }
246     }
247
248     /*
249      postgresql tsearch2 uses no WHERE operators, just & | and ! in the searchstring
250      */
251     function makeTsearch2SqlClauseObj(&$sql_search_cb) {
252         $this->_sql_clause_cb = $sql_search_cb;
253         return $this->_Tsearch2Sql_clause_obj($this->_tree);
254     }
255
256     function _Tsearch2Sql_clause_obj($node) {
257         // TODO: "such a phrase"
258         switch ($node->op) {
259         case 'NOT':
260             return "!" . $node->leaves[0];
261         case 'AND':
262             $subclauses = array();
263             foreach ($node->leaves as $leaf)
264                 $subclauses[] = $this->_Tsearch2Sql_clause_obj($leaf);
265             return join("&", $subclauses);
266         case 'OR':
267             $subclauses = array();
268             foreach ($node->leaves as $leaf)
269                 $subclauses[] = $this->_Tsearch2Sql_clause_obj($leaf);
270             return join("|", $subclauses);
271         case 'VOID':
272             return '';
273         case 'ALL':
274             return '1';
275         default:
276             return $this->_sql_clause_cb->call($node);
277         }
278     }
279
280     function sql() { return '%'.$this->_sql_quote($this->word).'%'; }
281
282     /**
283      * Get printable representation of the parse tree.
284      *
285      * This is for debugging only.
286      * @return string Printable parse tree.
287      */
288     function asString() {
289         return $this->_as_string($this->_tree);
290     }
291
292     function _as_string($node, $indent = '') {
293         switch ($node->op) {
294         case 'WORD':
295             return $indent . "WORD: $node->word";
296         case 'VOID':
297             return $indent . "VOID";
298         case 'ALL':
299             return $indent . "ALL";
300         default:
301             $lines = array($indent . $node->op . ":");
302             $indent .= "  ";
303             foreach ($node->leaves as $leaf)
304                 $lines[] = $this->_as_string($leaf, $indent);
305             return join("\n", $lines);
306         }
307     }
308 }
309
310 /**
311  * This is a TextSearchQuery which matches nothing.
312  */
313 class NullTextSearchQuery extends TextSearchQuery {
314     /**
315      * Create a new query.
316      *
317      * @see TextSearchQuery
318      */
319     function NullTextSearchQuery() {}
320     function asRegexp()         { return '/^(?!a)a/x'; }
321     function match($string)     { return false; }
322     function getHighlightRegexp() { return ""; }
323     function makeSqlClause($make_sql_clause_cb) { return "(1 = 0)"; }
324     function asString() { return "NullTextSearchQuery"; }
325 };
326
327 /**
328  * A simple algebraic matcher for numeric attributes.
329  *  NumericSearchQuery can do ("population < 20000 and area > 1000000", array("population", "area"))
330  *  ->match(array('population' => 100000, 'area' => 10000000)) 
331  *
332  * Supports all mathematical PHP comparison operators, plus ':=' for equality.
333  *   "(x < 2000000 and x >= 10000) or (x >= 100 and x < 2000)"
334  *   "x := 100000" is the same as "x == 100000"
335  *
336  * Since this is basic numerics only, we simply try to get away with 
337  * replacing the variable values at the right positions and do an eval then. 
338  *
339  * @package NumericSearchQuery
340  * @author Reini Urban
341  * @see SemanticAttributeSearchQuery
342  */
343 class NumericSearchQuery
344 {
345     /**
346      * Create a new query.
347      *   NumericSearchQuery("population > 20000 or population < 200", "population")
348      *   NumericSearchQuery("population < 20000 and area > 1000000", array("population", "area"))
349      *
350      * With a single variable it is easy: The valid name must be matched elsewhere, just 
351      * replace the given number in match in the query.
352      *   ->match(2000)
353      *
354      * With matching a struct we need strict names, no * as name is allowed.
355      * So always when the placeholder is an array, the names of the target struct must match 
356      * and all vars be defined. Use the method can_match($struct) therefore.
357      *
358      * @access public
359      * @param $search_query string   A numerical query with placeholders as variable.
360      * @param $placeholders array or string  All placeholders in the query must be defined 
361      *  here, and will be replaced by the matcher.
362      */
363     function NumericSearchQuery($search_query, $placeholders) {
364         // added some basic security checks against user input
365         $this->_query = $search_query;
366         $this->_placeholders = $placeholders;
367
368         // we should also allow the M_ constants
369         $this->_allowed_functions = explode(':','abs:acos:acosh:asin:asinh:atan2:atan:atanh:base_convert:bindec:ceil:cos:cosh:decbin:dechex:decoct:deg2rad:exp:expm1:floor:fmod:getrandmax:hexdec:hypot:is_finite:is_infinite:is_nan:lcg_value:log10:log1p:log:max:min:mt_getrandmax:mt_rand:mt_srand:octdec:pi:pow:rad2deg:rand:round:sin:sinh:sqrt:srand:tan:tanh');
370         $this->_allowed_operators = explode(',', '-,<,<=,>,>=,==,!=,*,+,/,(,),%,and,or,xor,<<,>>,===,!==,&,^,|,&&,||');
371         $this->_parser_check = array();
372         // check should be fast, so make a hash
373         foreach ($this->_allowed_functions as $f)
374             $this->_parser_check[$f] = 1;
375         foreach ($this->_allowed_operators as $f)
376             $this->_parser_check[$f] = 1;
377         if (is_array($placeholders))
378             foreach ($placeholders as $f)
379                 $this->_parser_check[$f] = 1;
380         else $this->_parser_check[$placeholders] = 1;   
381
382         // This is a speciality: := looks like the attribute definition and is 
383         // therefore a dummy check for this definition.
384         // php-4.2.2 has a problem with /\b:=\b/ matching "population := 1223400"
385         $this->_query = preg_replace("/:=/", "==", $this->_query);
386         $this->_query = $this->check_query($this->_query);
387     }
388
389     function getType() { return 'numeric'; }
390
391     /**
392      * Check the symbolic definition query against unwanted functions and characters.
393      * "population < 20000 and area > 1000000" vs 
394      *   "area > 1000000 and mail($me,file("/etc/passwd"),...)" 
395      * http://localhost/wikicvs/SemanticSearch?attribute=*&attr_op=<0 and find(1)>&s=-0.01&start_debug=1
396      */
397     function check_query ($query) {
398         $tmp = $query; // check for all function calls, in case the tokenizer is not available.
399         while (preg_match("/([a-z][a-z0-9]+)\s*\((.*)$/i", $tmp, $m)) {
400             if (!in_array($m[1], $this->_allowed_functions)
401                 and !in_array($m[1], $this->_allowed_operators))
402             {
403                 trigger_error("Illegal function in query: ".$m[1], E_USER_WARNING);
404                 return '';
405             }
406             $tmp = $m[2];
407         }
408         
409         // Strictly check for illegal functions and operators, which are no placeholders.
410         if (function_exists('token_get_all')) {
411             $parsed = token_get_all("<?$query?>");
412             foreach ($parsed as $x) { // flat, non-recursive array
413                 if (is_string($x) and !isset($this->_parser_check[$x])) {
414                     // single char op or name
415                     trigger_error("Illegal string or operator in query: \"$x\"", E_USER_WARNING);
416                     $query = '';
417                 }
418                 elseif (is_array($x)) {
419                     $n = token_name($x[0]);
420                     if ($n == 'T_OPEN_TAG' or $n == 'T_WHITESPACE' 
421                         or $n == 'T_CLOSE_TAG' or $n == 'T_LNUMBER'
422                         or $n == 'T_CONST' or $n == 'T_DNUMBER' ) continue;
423                     if ($n == 'T_VARIABLE') { // but we do allow consts
424                         trigger_error("Illegal variable in query: \"$x[1]\"", E_USER_WARNING);
425                         $query = '';
426                     }    
427                     if (is_string($x[1]) and !isset($this->_parser_check[$x[1]])) {
428                         // multi-char char op or name
429                         trigger_error("Illegal $n in query: \"$x[1]\"", E_USER_WARNING);
430                         $query = '';
431                     }
432                 }
433             }
434             //echo "$query <br>";
435             //$this->_parse_token($parsed);
436             //echo "<br>\n";
437             //var_dump($parsed);
438             /* 
439 "_x > 0" => 
440 { T_OPEN_TAG "<?"} { T_STRING "_x"} { T_WHITESPACE " "} ">" { T_WHITESPACE " "} { T_LNUMBER "0"} { T_CLOSE_TAG "?>"}
441         Interesting: on-char ops, as ">" are not tokenized.
442 "_x <= 0"
443 { T_OPEN_TAG "< ?" } { T_STRING "_x" } { T_WHITESPACE " " } { T_IS_SMALLER_OR_EQUAL "<=" } { T_WHITESPACE " " } { T_LNUMBER "0" } { T_CLOSE_TAG "?>" }
444              */
445         } else {
446             // Detect illegal characters besides nums, words and ops. 
447             // So attribute names can not be utf-8
448             $c = "/([^\d\w.,\s".preg_quote(join("",$this->_allowed_operators),"/")."])/";
449             if (preg_match($c, $query, $m)) {
450                 trigger_error("Illegal character in query: ".$m[1], E_USER_WARNING);
451                 return '';
452             }
453         }
454         return $query;
455     }
456
457     /**
458      * Check the bound, numeric-only query against unwanted functions and sideeffects.
459      * "4560000 < 20000 and 1456022 > 1000000"
460      */
461     function _live_check () {
462         // TODO: check $this->_workquery again?
463         return !empty($this->_workquery);
464     }
465
466     /**
467      * A numeric query can only operate with predefined variables. "x < 0 and y < 1"
468      *
469      * @return array The names as array of strings. => ('x', 'y') the placeholders.
470      */
471     function getVars() {
472         if(is_array($this->_placeholders)) return $this->_placeholders;
473         else return array($this->_placeholders);
474     }
475
476     /**
477      * Strip non-numeric chars from the variable (as the groupseperator) and replace 
478      * it in the symbolic query for evaluation.
479      *
480      * @access private
481      * @param $value number   A numerical value: integer, float or string.
482      * @param $x string       The variable name to be replaced in the query.
483      * @return string
484      */
485     function _bind($value, $x) {
486         // TODO: check is_number, is_float, is_integer and do casting
487         $this->_bound[] = array('linkname'  => $x,
488                                 'linkvalue' => $value);
489         $value = preg_replace("/[^-+0123456789.,]/", "", $value);
490         //$c = "/\b".preg_quote($x,"/")."\b/";
491         $this->_workquery = preg_replace("/\b".preg_quote($x,"/")."\b/", $value, $this->_workquery);
492         // FIXME: do again a final check. now only numbers and some operators are allowed.
493         return $this->_workquery;
494     }
495     
496     /* array of successfully bound vars, and in case of success, the resulting vars
497      */
498     function _bound() {
499         return $this->_bound;
500     }
501
502     /** 
503      * With an array of placeholders we need a hash to check against, if all required names are given.
504      * Purpose: Be silent about missing vars, just return false.
505      `*
506      * @access public
507      * @param $variable string or hash of name => value  The keys must satisfy all placeholders in the definition.
508      * We want the full hash and not just the keys because a hash check is faster than the array of keys check.
509      * @return boolean
510      */
511     function can_match(&$variables) {
512         if (empty($this->_query))
513             return false;
514         $p =& $this->_placeholders;
515         if (!is_array($variables) and !is_array($p))
516             return $variables == $p; // This was easy.
517         // Check if all placeholders have definitions. can be overdefined but not underdefined.
518         if (!is_array($p)) {
519             if (!isset($variables[$p])) return false;
520         } else {
521             foreach ($p as $x) {
522                 if (!isset($variables[$x])) return false;
523             }
524         }
525         return true;
526     }
527
528     /**
529      * We can match against a single variable or against a hash of variables.
530      * With one placeholder we need just a number.
531      * With an array of placeholders we need a hash.
532      *
533      * @access public
534      * @param $variable number or array of name => value  The keys must satisfy all placeholders in the definition.
535      * @return boolean
536      */
537     function match(&$variable) {
538         $p =& $this->_placeholders;
539         $this->_workquery = $this->_query;
540         if (!is_array($p)) {
541             if (is_array($variable)) { // which var to match? we cannot decide this here
542                 if (!isset($variable[$p]))
543                     trigger_error("Required NumericSearchQuery->match variable $x not defined.", E_USER_ERROR);
544                 $this->_bind($variable[$p], $p);
545             } else {
546                 $this->_bind($variable, $p);
547             }
548         } else {
549             foreach ($p as $x) {
550                 if (!isset($variable[$x]))
551                     trigger_error("Required NumericSearchQuery->match variable $x not defined.", E_USER_ERROR);
552                 $this->_bind($variable[$x], $x);
553             }
554         }
555         if (!$this->_live_check()) // check returned an error
556             return false;
557         $search = $this->_workquery;
558         $result = false;
559         //if (DEBUG & _DEBUG_VERBOSE)
560         //    trigger_error("\$result = (boolean)($search);", E_USER_NOTICE);
561         // We might have a numerical problem:
562         // php-4.2.2 eval'ed as module: "9.636e+08 > 1000" false; 
563         // php-5.1.2 cgi true, 4.2.2 cgi true
564         eval("\$result = (boolean)($search);");
565         if ($result and is_array($p)) {
566             return $this->_bound();
567         }
568         return $result;
569     }
570 }
571
572
573 ////////////////////////////////////////////////////////////////
574 //
575 // Remaining classes are private.
576 //
577 ////////////////////////////////////////////////////////////////
578 /**
579  * Virtual base class for nodes in a TextSearchQuery parse tree.
580  *
581  * Also serves as a 'VOID' (contentless) node.
582  */
583 class TextSearchQuery_node
584 {
585     var $op = 'VOID';
586
587     /**
588      * Optimize this node.
589      * @return object Optimized node.
590      */
591     function optimize() {
592         return $this;
593     }
594
595     /**
596      * @return regexp matching this node.
597      */
598     function regexp() {
599         return '';
600     }
601
602     /**
603      * @param bool True if this node has been negated (higher in the parse tree.)
604      * @return array A list of all non-negated words contained by this node.
605      */
606     function highlight_words($negated = false) {
607         return array();
608     }
609
610     function sql()    { return $this->word; }
611 }
612
613 /**
614  * A word.
615  */
616 class TextSearchQuery_node_word
617 extends TextSearchQuery_node
618 {
619     var $op = "WORD";
620     
621     function TextSearchQuery_node_word($word) {
622         $this->word = $word;
623     }
624     function regexp() {
625         return '(?=.*' . preg_quote($this->word, '/') . ')';
626     }
627     function highlight_words ($negated = false) {
628         return $negated ? array() : array($this->word);
629     }
630     function _sql_quote() {
631         $word = preg_replace('/(?=[%_\\\\])/', "\\", $this->word);
632         return $GLOBALS['request']->_dbi->_backend->qstr($word);
633     }
634     function sql()    { return '%'.$this->_sql_quote($this->word).'%'; }
635 }
636
637 class TextSearchQuery_node_all
638 extends TextSearchQuery_node {
639     var $op = "ALL";
640     function regexp() { return '(?=.*)'; }
641     function sql()    { return '%'; }
642 }
643 class TextSearchQuery_node_starts_with
644 extends TextSearchQuery_node_word {
645     var $op = "STARTS_WITH";
646     function regexp() { return '(?=.*\b' . preg_quote($this->word, '/') . ')'; }
647     function sql ()   { return $this->_sql_quote($this->word).'%'; }
648 }
649
650 class TextSearchQuery_node_ends_with
651 extends TextSearchQuery_node_word {
652     var $op = "ENDS_WITH";
653     function regexp() { return '(?=.*' . preg_quote($this->word, '/') . '\b)'; }
654     function sql ()   { return '%'.$this->_sql_quote($this->word); }
655 }
656
657 class TextSearchQuery_node_exact
658 extends TextSearchQuery_node_word {
659     var $op = "EXACT";
660     function regexp() { return '(?=\b' . preg_quote($this->word, '/') . '\b)'; }
661     function sql ()   { return $this->_sql_squote($this->word); }
662 }
663
664 class TextSearchQuery_node_regex // posix regex. FIXME!
665 extends TextSearchQuery_node_word {
666     var $op = "REGEX"; // using REGEXP or ~ extension
667     function regexp() { return '(?=.*\b' . $this->word . '\b)'; }
668     function sql ()   { return $this->_sql_quote($this->word); }
669 }
670
671 class TextSearchQuery_node_regex_glob
672 extends TextSearchQuery_node_regex {
673     var $op = "REGEX_GLOB";
674     function regexp() { return '(?=.*\b' . glob_to_pcre($this->word) . '\b)'; }
675 }
676
677 class TextSearchQuery_node_regex_pcre // how to handle pcre modifiers? /i
678 extends TextSearchQuery_node_regex {
679     var $op = "REGEX_PCRE";
680     function regexp() { return $this->word; }
681 }
682
683 class TextSearchQuery_node_regex_sql
684 extends TextSearchQuery_node_regex {
685     var $op = "REGEX_SQL"; // using LIKE
686     function regexp() { return str_replace(array("/%/","/_/"), array(".*","."), $this->word); }
687     function sql()    { return $this->word; }
688 }
689
690 /**
691  * A negated clause.
692  */
693 class TextSearchQuery_node_not
694 extends TextSearchQuery_node
695 {
696     var $op = "NOT";
697     
698     function TextSearchQuery_node_not($leaf) {
699         $this->leaves = array($leaf);
700     }
701
702     function optimize() {
703         $leaf = &$this->leaves[0];
704         $leaf = $leaf->optimize();
705         if ($leaf->op == 'NOT')
706             return $leaf->leaves[0]; // ( NOT ( NOT x ) ) -> x
707         return $this;
708     }
709     
710     function regexp() {
711         $leaf = &$this->leaves[0];
712         return '(?!' . $leaf->regexp() . ')';
713     }
714
715     function highlight_words ($negated = false) {
716         return $this->leaves[0]->highlight_words(!$negated);
717     }
718 }
719
720 /**
721  * Virtual base class for 'AND' and 'OR conjoins.
722  */
723 class TextSearchQuery_node_binop
724 extends TextSearchQuery_node
725 {
726     function TextSearchQuery_node_binop($leaves) {
727         $this->leaves = $leaves;
728     }
729
730     function _flatten() {
731         // This flattens e.g. (AND (AND a b) (OR c d) e)
732         //        to (AND a b e (OR c d))
733         $flat = array();
734         foreach ($this->leaves as $leaf) {
735             $leaf = $leaf->optimize();
736             if ($this->op == $leaf->op)
737                 $flat = array_merge($flat, $leaf->leaves);
738             else
739                 $flat[] = $leaf;
740         }
741         $this->leaves = $flat;
742     }
743
744     function optimize() {
745         $this->_flatten();
746         assert(!empty($this->leaves));
747         if (count($this->leaves) == 1)
748             return $this->leaves[0]; // (AND x) -> x
749         return $this;
750     }
751
752     function highlight_words($negated = false) {
753         $words = array();
754         foreach ($this->leaves as $leaf)
755             array_splice($words,0,0,
756                          $leaf->highlight_words($negated));
757         return $words;
758     }
759 }
760
761 /**
762  * A (possibly multi-argument) 'AND' conjoin.
763  */
764 class TextSearchQuery_node_and
765 extends TextSearchQuery_node_binop
766 {
767     var $op = "AND";
768     
769     function optimize() {
770         $this->_flatten();
771
772         // Convert (AND (NOT a) (NOT b) c d) into (AND (NOT (OR a b)) c d).
773         // Since OR's are more efficient for regexp matching:
774         //   (?!.*a)(?!.*b)  vs   (?!.*(?:a|b))
775
776         // Suck out the negated leaves.
777         $nots = array();
778         foreach ($this->leaves as $key => $leaf) {
779             if ($leaf->op == 'NOT') {
780                 $nots[] = $leaf->leaves[0];
781                 unset($this->leaves[$key]);
782             }
783         }
784
785         // Combine the negated leaves into a single negated or.
786         if ($nots) {
787             $node = ( new TextSearchQuery_node_not
788                       (new TextSearchQuery_node_or($nots)) );
789             array_unshift($this->leaves, $node->optimize());
790         }
791         
792         assert(!empty($this->leaves));
793         if (count($this->leaves) == 1)
794             return $this->leaves[0];  // (AND x) -> x
795         return $this;
796     }
797
798     /* FIXME!
799      * Either we need all combinations of all words to be position independent,
800      * or we have to use multiple match calls for each AND
801      * (AND x y) => /(?(:x)(:y))|(?(:y)(:x))/
802      */
803     function regexp() {
804         $regexp = '';
805         foreach ($this->leaves as $leaf)
806             $regexp .= $leaf->regexp();
807         return $regexp;
808     }
809 }
810
811 /**
812  * A (possibly multi-argument) 'OR' conjoin.
813  */
814 class TextSearchQuery_node_or
815 extends TextSearchQuery_node_binop
816 {
817     var $op = "OR";
818
819     function regexp() {
820         // We will combine any of our direct descendents which are WORDs
821         // into a single (?=.*(?:word1|word2|...)) regexp.
822         
823         $regexps = array();
824         $words = array();
825
826         foreach ($this->leaves as $leaf) {
827             if ($leaf->op == 'WORD')
828                 $words[] = preg_quote($leaf->word, '/');
829             else
830                 $regexps[] = $leaf->regexp();
831         }
832
833         if ($words)
834             array_unshift($regexps,
835                           '(?=.*' . $this->_join($words) . ')');
836
837         return $this->_join($regexps);
838     }
839
840     function _join($regexps) {
841         assert(count($regexps) > 0);
842
843         if (count($regexps) > 1)
844             return '(?:' . join('|', $regexps) . ')';
845         else
846             return $regexps[0];
847     }
848 }
849
850
851 ////////////////////////////////////////////////////////////////
852 //
853 // Parser:
854 //   op's (and, or, not) are forced to lowercase in the tokenizer.
855 //
856 ////////////////////////////////////////////////////////////////
857 define ('TSQ_TOK_BINOP',  1);
858 define ('TSQ_TOK_NOT',    2);
859 define ('TSQ_TOK_LPAREN', 4);
860 define ('TSQ_TOK_RPAREN', 8);
861 define ('TSQ_TOK_WORD',   16);
862 define ('TSQ_TOK_STARTS_WITH', 32);
863 define ('TSQ_TOK_ENDS_WITH', 64);
864 define ('TSQ_TOK_EXACT', 128);
865 define ('TSQ_TOK_REGEX', 256);
866 define ('TSQ_TOK_REGEX_GLOB', 512);
867 define ('TSQ_TOK_REGEX_PCRE', 1024);
868 define ('TSQ_TOK_REGEX_SQL', 2048);
869 define ('TSQ_TOK_ALL', 4096);
870 // all bits from word to the last.
871 define ('TSQ_ALLWORDS', (4096*2)-1 - (16-1));
872
873 class TextSearchQuery_Parser 
874 {
875     /*
876      * This is a simple recursive descent parser, based on the following grammar:
877      *
878      * toplist  :
879      *          | toplist expr
880      *          ;
881      *
882      *
883      * list     : expr
884      *          | list expr
885      *          ;
886      *
887      * expr     : atom
888      *          | expr BINOP atom
889      *          ;
890      *
891      * atom     : '(' list ')'
892      *          | NOT atom
893      *          | WORD
894      *          ;
895      *
896      * The terminal tokens are:
897      *
898      *
899      * and|or             BINOP
900      * -|not              NOT
901      * (                  LPAREN
902      * )                  RPAREN
903      * /[^-()\s][^()\s]*  WORD
904      * /"[^"]*"/          WORD
905      * /'[^']*'/          WORD
906      *
907      * ^WORD              STARTS_WITH
908      * WORD*              STARTS_WITH
909      * *WORD              ENDS_WITH
910      * ^WORD$             EXACT
911      * *                  ALL
912      */
913
914     function parse ($search_expr, $case_exact=false, $regex=TSQ_REGEX_AUTO) {
915         $this->lexer = new TextSearchQuery_Lexer($search_expr, $case_exact, $regex);
916         $this->_regex = $regex;
917         $tree = $this->get_list('toplevel');
918         assert($this->lexer->eof());
919         unset($this->lexer);
920         return $tree;
921     }
922     
923     function get_list ($is_toplevel = false) {
924         $list = array();
925
926         // token types we'll accept as words (and thus expr's) for the
927         // purpose of error recovery:
928         $accept_as_words = TSQ_TOK_NOT | TSQ_TOK_BINOP;
929         if ($is_toplevel)
930             $accept_as_words |= TSQ_TOK_LPAREN | TSQ_TOK_RPAREN;
931         
932         while ( ($expr = $this->get_expr())
933                 || ($expr = $this->get_word($accept_as_words)) ) {
934             $list[] = $expr;
935         }
936
937         if (!$list) {
938             if ($is_toplevel)
939                 return new TextSearchQuery_node;
940             else
941                 return false;
942         }
943         return new TextSearchQuery_node_and($list);
944     }
945
946     function get_expr () {
947         if ( !($expr = $this->get_atom()) )
948             return false;
949         
950         $savedpos = $this->lexer->tell();
951         while ( ($op = $this->lexer->get(TSQ_TOK_BINOP)) ) {
952             if ( ! ($right = $this->get_atom()) ) {
953                 break;
954             }
955             
956             if ($op == 'and')
957                 $expr = new TextSearchQuery_node_and(array($expr, $right));
958             else {
959                 assert($op == 'or');
960                 $expr = new TextSearchQuery_node_or(array($expr, $right));
961             }
962
963             $savedpos = $this->lexer->tell();
964         }
965         $this->lexer->seek($savedpos);
966
967         return $expr;
968     }
969     
970
971     function get_atom() {
972         if ($word = $this->get_word(TSQ_ALLWORDS))
973             return $word;
974
975         $savedpos = $this->lexer->tell();
976         if ( $this->lexer->get(TSQ_TOK_LPAREN) ) {
977             if ( ($list = $this->get_list()) && $this->lexer->get(TSQ_TOK_RPAREN) )
978                 return $list;
979         }
980         elseif ( $this->lexer->get(TSQ_TOK_NOT) ) {
981             if ( ($atom = $this->get_atom()) )
982                 return new TextSearchQuery_node_not($atom);
983         }
984         $this->lexer->seek($savedpos);
985         return false;
986     }
987
988     function get_word($accept = TSQ_ALLWORDS) {
989         foreach (array("WORD","STARTS_WITH","ENDS_WITH","EXACT",
990                        "REGEX","REGEX_GLOB","REGEX_PCRE","ALL") as $tok) {
991             $const = constant("TSQ_TOK_".$tok);
992             if ( $accept & $const and ($word = $this->lexer->get($const)) ) {
993                 $classname = "TextSearchQuery_node_".strtolower($tok);
994                 return new $classname($word);
995             }
996         }
997         return false;
998     }
999 }
1000
1001 class TextSearchQuery_Lexer {
1002     function TextSearchQuery_Lexer ($query_str, $case_exact=false, $regex=TSQ_REGEX_AUTO) {
1003         $this->tokens = $this->tokenize($query_str, $case_exact, $regex);
1004         $this->pos = 0;
1005     }
1006
1007     function tell() {
1008         return $this->pos;
1009     }
1010
1011     function seek($pos) {
1012         $this->pos = $pos;
1013     }
1014
1015     function eof() {
1016         return $this->pos == count($this->tokens);
1017     }
1018     
1019     /**
1020      * TODO: support more regex styles, esp. prefer the forced ones over auto
1021      * re: and // stuff
1022      */
1023     function tokenize($string, $case_exact=false, $regex=TSQ_REGEX_AUTO) {
1024         $tokens = array();
1025         $buf = $case_exact ? ltrim($string) : strtolower(ltrim($string));
1026         while (!empty($buf)) {
1027             if (preg_match('/^(and|or)\b\s*/i', $buf, $m)) {
1028                 $val = strtolower($m[1]);
1029                 $type = TSQ_TOK_BINOP;
1030             }
1031             elseif (preg_match('/^(-|not\b)\s*/i', $buf, $m)) {
1032                 $val = strtolower($m[1]);
1033                 $type = TSQ_TOK_NOT;
1034             }
1035             elseif (preg_match('/^([()])\s*/', $buf, $m)) {
1036                 $val = $m[1];
1037                 $type = $m[1] == '(' ? TSQ_TOK_LPAREN : TSQ_TOK_RPAREN;
1038             }
1039             
1040             // * => ALL
1041             elseif ($regex & (TSQ_REGEX_AUTO|TSQ_REGEX_POSIX|TSQ_REGEX_GLOB)
1042                     and preg_match('/^\*\s*/', $buf, $m)) {
1043                 $val = "*";
1044                 $type = TSQ_TOK_ALL;
1045             }
1046             // .* => ALL
1047             elseif ($regex & (TSQ_REGEX_PCRE)
1048                     and preg_match('/^\.\*\s*/', $buf, $m)) {
1049                 $val = ".*";
1050                 $type = TSQ_TOK_ALL;
1051             }
1052             // % => ALL
1053             elseif ($regex & (TSQ_REGEX_SQL)
1054                     and preg_match('/^%\s*/', $buf, $m)) {
1055                 $val = "%";
1056                 $type = TSQ_TOK_ALL;
1057             }
1058             
1059             // ^word
1060             elseif ($regex & (TSQ_REGEX_AUTO|TSQ_REGEX_POSIX|TSQ_REGEX_PCRE)
1061                     and preg_match('/^\^([^-()][^()\s]*)\s*/', $buf, $m)) {
1062                 $val = $m[1];
1063                 $type = TSQ_TOK_STARTS_WITH;
1064             }
1065             // word*
1066             elseif ($regex & (TSQ_REGEX_AUTO|TSQ_REGEX_POSIX|TSQ_REGEX_GLOB)
1067                     and preg_match('/^([^-()][^()\s]*)\*\s*/', $buf, $m)) {
1068                 $val = $m[1];
1069                 $type = TSQ_TOK_STARTS_WITH;
1070             }
1071             // *word
1072             elseif ($regex & (TSQ_REGEX_AUTO|TSQ_REGEX_POSIX|TSQ_REGEX_GLOB)
1073                     and preg_match('/^\*([^-()][^()\s]*)\s*/', $buf, $m)) {
1074                 $val = $m[1];
1075                 $type = TSQ_TOK_ENDS_WITH;
1076             }
1077             // word$
1078             elseif ($regex & (TSQ_REGEX_AUTO|TSQ_REGEX_POSIX|TSQ_REGEX_PCRE)
1079                     and preg_match('/^([^-()][^()\s]*)\$\s*/', $buf, $m)) {
1080                 $val = $m[1];
1081                 $type = TSQ_TOK_ENDS_WITH;
1082             }
1083             // ^word$
1084             elseif ($regex & (TSQ_REGEX_AUTO|TSQ_REGEX_POSIX|TSQ_REGEX_PCRE)
1085                     and preg_match('/^\^([^-()][^()\s]*)\$\s*/', $buf, $m)) {
1086                 $val = $m[1];
1087                 $type = TSQ_TOK_EXACT;
1088             }
1089             
1090             // "words "
1091             elseif (preg_match('/^ " ( (?: [^"]+ | "" )* ) " \s*/x', $buf, $m)) {
1092                 $val = str_replace('""', '"', $m[1]);
1093                 $type = TSQ_TOK_WORD;
1094             }
1095             // 'words '
1096             elseif (preg_match("/^ ' ( (?:[^']+|'')* ) ' \s*/x", $buf, $m)) {
1097                 $val = str_replace("''", "'", $m[1]);
1098                 $type = TSQ_TOK_WORD;
1099             }
1100             // word
1101             elseif (preg_match('/^([^-()][^()\s]*)\s*/', $buf, $m)) {
1102                 $val = $m[1];
1103                 $type = TSQ_TOK_WORD;
1104             }
1105             else {
1106                 assert(empty($buf));
1107                 break;
1108             }
1109             $buf = substr($buf, strlen($m[0]));
1110
1111             /* refine the simple parsing from above: bla*bla, bla?bla, ...
1112             if ($regex and $type == TSQ_TOK_WORD) {
1113                 if (substr($val,0,1) == "^")
1114                     $type = TSQ_TOK_STARTS_WITH;
1115                 elseif (substr($val,0,1) == "*")
1116                     $type = TSQ_TOK_ENDS_WITH;
1117                 elseif (substr($val,-1,1) == "*")
1118                     $type = TSQ_TOK_STARTS_WITH;
1119             }
1120             */
1121             $tokens[] = array($type, $val);
1122         }
1123         return $tokens;
1124     }
1125     
1126     function get($accept) {
1127         if ($this->pos >= count($this->tokens))
1128             return false;
1129         
1130         list ($type, $val) = $this->tokens[$this->pos];
1131         if (($type & $accept) == 0)
1132             return false;
1133         
1134         $this->pos++;
1135         return $val;
1136     }
1137 }
1138
1139 // $Log: not supported by cvs2svn $
1140 // Revision 1.28  2007/03/18 17:35:26  rurban
1141 // Improve comments
1142 //
1143 // Revision 1.27  2007/01/21 23:27:32  rurban
1144 // Fix ->_backend->qstr()
1145 //
1146 // Revision 1.26  2007/01/04 16:41:52  rurban
1147 // Improve error description. Fix the function parser for illegal functions, when the tokenizer cannot be used.
1148 //
1149 // Revision 1.25  2007/01/03 21:22:34  rurban
1150 // add getType(). NumericSearchQuery::check Improve hacker detection using token_get_all(). Better support for multiple attributes. Add getVars().
1151 //
1152 // Revision 1.24  2007/01/02 13:19:05  rurban
1153 // add NumericSearchQuery. change on pcre: no parsing done, detect modifiers
1154 //
1155 // Revision 1.23  2006/04/13 19:30:44  rurban
1156 // make TextSearchQuery->_stoplist localizable and overridable within config.ini
1157 // 
1158
1159 // Local Variables:
1160 // mode: php
1161 // tab-width: 8
1162 // c-basic-offset: 4
1163 // c-hanging-comment-ender-p: nil
1164 // indent-tabs-mode: nil
1165 // End:   
1166 ?>