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