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 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251
|
%include {
/* queryparser.lemony: build a Xapian::Query object from a user query string.
*
* Copyright (C) 2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2015,2016 Olly Betts
* Copyright (C) 2007,2008,2009 Lemur Consulting Ltd
* Copyright (C) 2010 Adam Sjøgren
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
* USA
*/
#include <config.h>
#include "queryparser_internal.h"
#include "api/queryinternal.h"
#include "omassert.h"
#include "str.h"
#include "stringutils.h"
#include "xapian/error.h"
#include "xapian/unicode.h"
// Include the list of token values lemon generates.
#include "queryparser_token.h"
#include "cjk-tokenizer.h"
#include <algorithm>
#include <cstring>
#include <limits>
#include <list>
#include <string>
#include <vector>
using namespace std;
using namespace Xapian;
inline bool
U_isupper(unsigned ch) {
return (ch < 128 && C_isupper(static_cast<unsigned char>(ch)));
}
inline bool
U_isdigit(unsigned ch) {
return (ch < 128 && C_isdigit(static_cast<unsigned char>(ch)));
}
inline bool
U_isalpha(unsigned ch) {
return (ch < 128 && C_isalpha(static_cast<unsigned char>(ch)));
}
using Xapian::Unicode::is_whitespace;
inline bool
is_not_whitespace(unsigned ch) {
return !is_whitespace(ch);
}
using Xapian::Unicode::is_wordchar;
inline bool
is_not_wordchar(unsigned ch) {
return !is_wordchar(ch);
}
inline bool
is_digit(unsigned ch) {
return (Unicode::get_category(ch) == Unicode::DECIMAL_DIGIT_NUMBER);
}
// FIXME: we used to keep trailing "-" (e.g. Cl-) but it's of dubious utility
// and there's the risk of hyphens getting stuck onto the end of terms...
inline bool
is_suffix(unsigned ch) {
return ch == '+' || ch == '#';
}
inline bool
is_double_quote(unsigned ch) {
// We simply treat all double quotes as equivalent, which is a bit crude,
// but it isn't clear that it would actually better to require them to
// match up exactly.
//
// 0x201c is Unicode opening double quote.
// 0x201d is Unicode closing double quote.
return ch == '"' || ch == 0x201c || ch == 0x201d;
}
inline bool
prefix_needs_colon(const string & prefix, unsigned ch)
{
if (!U_isupper(ch)) return false;
string::size_type len = prefix.length();
return (len > 1 && prefix[len - 1] != ':');
}
using Unicode::is_currency;
inline bool
is_positional(Xapian::Query::op op)
{
return (op == Xapian::Query::OP_PHRASE || op == Xapian::Query::OP_NEAR);
}
class Terms;
/** Class used to pass information about a token from lexer to parser.
*
* Generally an instance of this class carries term information, but it can be
* used for a range query, and with some operators (e.g. the distance in
* NEAR/3 or ADJ/3, etc).
*/
class Term {
State * state;
public:
string name;
const FieldInfo * field_info;
string unstemmed;
QueryParser::stem_strategy stem;
termpos pos;
Query query;
Term(const string &name_, termpos pos_)
: name(name_), stem(QueryParser::STEM_NONE), pos(pos_) { }
explicit Term(const string &name_)
: name(name_), stem(QueryParser::STEM_NONE), pos(0) { }
Term(const string &name_, const FieldInfo * field_info_)
: name(name_), field_info(field_info_),
stem(QueryParser::STEM_NONE), pos(0) { }
explicit Term(termpos pos_) : stem(QueryParser::STEM_NONE), pos(pos_) { }
Term(State * state_, const string &name_, const FieldInfo * field_info_,
const string &unstemmed_,
QueryParser::stem_strategy stem_ = QueryParser::STEM_NONE,
termpos pos_ = 0)
: state(state_), name(name_), field_info(field_info_),
unstemmed(unstemmed_), stem(stem_), pos(pos_) { }
// For RANGE tokens.
Term(const Xapian::Query & q, const string & grouping)
: name(grouping), query(q) { }
string make_term(const string & prefix) const;
void need_positions() {
if (stem == QueryParser::STEM_SOME) stem = QueryParser::STEM_NONE;
}
termpos get_termpos() const { return pos; }
string get_grouping() const {
return field_info->grouping;
}
Query * as_wildcarded_query(State * state) const;
/** Build a query for a term at the very end of the query string when
* FLAG_PARTIAL is in use.
*
* This query should match documents containing any terms which start with
* the characters specified, but should give a higher score to exact
* matches (since the user might have finished typing - we simply don't
* know).
*/
Query * as_partial_query(State * state_) const;
/** Build a query for a string of CJK characters. */
Query * as_cjk_query() const;
/** Handle a CJK character string in a positional context. */
void as_positional_cjk_term(Terms * terms) const;
/// Range query.
Query as_range_query() const;
Query get_query() const;
Query get_query_with_synonyms() const;
Query get_query_with_auto_synonyms() const;
};
/// Parser State shared between the lexer and the parser.
class State {
QueryParser::Internal * qpi;
public:
Query query;
const char * error;
unsigned flags;
State(QueryParser::Internal * qpi_, unsigned flags_)
: qpi(qpi_), error(NULL), flags(flags_) { }
string stem_term(const string &term) {
return qpi->stemmer(term);
}
void add_to_stoplist(const Term * term) {
qpi->stoplist.push_back(term->name);
}
void add_to_unstem(const string & term, const string & unstemmed) {
qpi->unstem.insert(make_pair(term, unstemmed));
}
Term * range(const string &a, const string &b) {
for (auto i : qpi->rangeprocs) {
Xapian::Query range_query = (i.proc)->check_range(a, b);
Xapian::Query::op op = range_query.get_type();
switch (op) {
case Xapian::Query::OP_INVALID:
break;
case Xapian::Query::OP_VALUE_RANGE:
case Xapian::Query::OP_VALUE_GE:
case Xapian::Query::OP_VALUE_LE:
if (i.default_grouping) {
Xapian::Internal::QueryValueBase * base =
static_cast<Xapian::Internal::QueryValueBase*>(
range_query.internal.get());
Xapian::valueno slot = base->get_slot();
return new Term(range_query, str(slot));
}
// FALLTHRU
case Xapian::Query::LEAF_TERM:
return new Term(range_query, i.grouping);
default:
return new Term(range_query, string());
}
}
return NULL;
}
Query::op default_op() const { return qpi->default_op; }
bool is_stopword(const Term *term) const {
return qpi->stopper.get() && (*qpi->stopper)(term->name);
}
Database get_database() const {
return qpi->db;
}
const Stopper * get_stopper() const {
return qpi->stopper.get();
}
size_t stoplist_size() const {
return qpi->stoplist.size();
}
void stoplist_resize(size_t s) {
qpi->stoplist.resize(s);
}
Xapian::termcount get_max_wildcard_expansion() const {
return qpi->max_wildcard_expansion;
}
int get_max_wildcard_type() const {
return qpi->max_wildcard_type;
}
Xapian::termcount get_max_partial_expansion() const {
return qpi->max_partial_expansion;
}
int get_max_partial_type() const {
return qpi->max_partial_type;
}
};
string
Term::make_term(const string & prefix) const
{
string term;
if (stem == QueryParser::STEM_SOME || stem == QueryParser::STEM_ALL_Z)
term += 'Z';
if (!prefix.empty()) {
term += prefix;
if (prefix_needs_colon(prefix, name[0])) term += ':';
}
if (stem != QueryParser::STEM_NONE) {
term += state->stem_term(name);
} else {
term += name;
}
if (!unstemmed.empty())
state->add_to_unstem(term, unstemmed);
return term;
}
// Iterator shim to allow building a synonym query from a TermIterator pair.
class SynonymIterator {
Xapian::TermIterator i;
Xapian::termpos pos;
const Xapian::Query * first;
public:
SynonymIterator(const Xapian::TermIterator & i_,
Xapian::termpos pos_ = 0,
const Xapian::Query * first_ = NULL)
: i(i_), pos(pos_), first(first_) { }
SynonymIterator & operator++() {
if (first)
first = NULL;
else
++i;
return *this;
}
const Xapian::Query operator*() const {
if (first) return *first;
return Xapian::Query(*i, 1, pos);
}
bool operator==(const SynonymIterator & o) const {
return i == o.i && first == o.first;
}
bool operator!=(const SynonymIterator & o) const {
return !(*this == o);
}
typedef std::input_iterator_tag iterator_category;
typedef Xapian::Query value_type;
typedef Xapian::termcount_diff difference_type;
typedef Xapian::Query * pointer;
typedef Xapian::Query & reference;
};
Query
Term::get_query_with_synonyms() const
{
// Handle single-word synonyms with each prefix.
const list<string> & prefixes = field_info->prefixes;
if (prefixes.empty()) {
// FIXME: handle multiple here
Assert(!field_info->procs.empty());
return (**field_info->procs.begin())(name);
}
Query q = get_query();
list<string>::const_iterator piter;
for (piter = prefixes.begin(); piter != prefixes.end(); ++piter) {
// First try the unstemmed term:
string term;
if (!piter->empty()) {
term += *piter;
if (prefix_needs_colon(*piter, name[0])) term += ':';
}
term += name;
Xapian::Database db = state->get_database();
Xapian::TermIterator syn = db.synonyms_begin(term);
Xapian::TermIterator end = db.synonyms_end(term);
if (syn == end && stem != QueryParser::STEM_NONE) {
// If that has no synonyms, try the stemmed form:
term = 'Z';
if (!piter->empty()) {
term += *piter;
if (prefix_needs_colon(*piter, name[0])) term += ':';
}
term += state->stem_term(name);
syn = db.synonyms_begin(term);
end = db.synonyms_end(term);
}
q = Query(q.OP_SYNONYM,
SynonymIterator(syn, pos, &q),
SynonymIterator(end));
}
return q;
}
Query
Term::get_query_with_auto_synonyms() const
{
const unsigned MASK_ENABLE_AUTO_SYNONYMS =
QueryParser::FLAG_AUTO_SYNONYMS |
QueryParser::FLAG_AUTO_MULTIWORD_SYNONYMS;
if (state->flags & MASK_ENABLE_AUTO_SYNONYMS)
return get_query_with_synonyms();
return get_query();
}
static void
add_to_query(Query *& q, Query::op op, Query * term)
{
Assert(term);
if (q) {
*q = Query(op, *q, *term);
delete term;
} else {
q = term;
}
}
static void
add_to_query(Query *& q, Query::op op, const Query & term)
{
if (q) {
*q = Query(op, *q, term);
} else {
q = new Query(term);
}
}
Query
Term::get_query() const
{
const list<string> & prefixes = field_info->prefixes;
if (prefixes.empty()) {
// FIXME: handle multiple here
Assert(!field_info->procs.empty());
return (**field_info->procs.begin())(name);
}
list<string>::const_iterator piter = prefixes.begin();
Query q(make_term(*piter), 1, pos);
while (++piter != prefixes.end()) {
q = Query(Query::OP_OR, q, Query(make_term(*piter), 1, pos));
}
return q;
}
Query *
Term::as_wildcarded_query(State * state_) const
{
const list<string> & prefixes = field_info->prefixes;
list<string>::const_iterator piter;
Xapian::termcount max = state_->get_max_wildcard_expansion();
int max_type = state_->get_max_wildcard_type();
vector<Query> subqs;
subqs.reserve(prefixes.size());
for (piter = prefixes.begin(); piter != prefixes.end(); ++piter) {
string root = *piter;
root += name;
// Combine with OP_OR, and apply OP_SYNONYM afterwards.
subqs.push_back(Query(Query::OP_WILDCARD, root, max, max_type,
Query::OP_OR));
}
Query * q = new Query(Query::OP_SYNONYM, subqs.begin(), subqs.end());
delete this;
return q;
}
Query *
Term::as_partial_query(State * state_) const
{
Xapian::termcount max = state_->get_max_partial_expansion();
int max_type = state_->get_max_partial_type();
vector<Query> subqs_partial; // A synonym of all the partial terms.
vector<Query> subqs_full; // A synonym of all the full terms.
const list<string> & prefixes = field_info->prefixes;
list<string>::const_iterator piter;
for (piter = prefixes.begin(); piter != prefixes.end(); ++piter) {
string root = *piter;
root += name;
// Combine with OP_OR, and apply OP_SYNONYM afterwards.
subqs_partial.push_back(Query(Query::OP_WILDCARD, root, max, max_type,
Query::OP_OR));
// Add the term, as it would normally be handled, as an alternative.
subqs_full.push_back(Query(make_term(*piter), 1, pos));
}
Query * q = new Query(Query::OP_OR,
Query(Query::OP_SYNONYM,
subqs_partial.begin(), subqs_partial.end()),
Query(Query::OP_SYNONYM,
subqs_full.begin(), subqs_full.end()));
delete this;
return q;
}
Query *
Term::as_cjk_query() const
{
vector<Query> prefix_subqs;
vector<Query> cjk_subqs;
const list<string> & prefixes = field_info->prefixes;
list<string>::const_iterator piter;
for (piter = prefixes.begin(); piter != prefixes.end(); ++piter) {
const string& prefix = *piter;
for (CJKTokenIterator tk(name); tk != CJKTokenIterator(); ++tk) {
cjk_subqs.push_back(Query(prefix + *tk, 1, pos));
}
prefix_subqs.push_back(Query(Query::OP_AND,
cjk_subqs.begin(), cjk_subqs.end()));
cjk_subqs.clear();
}
Query * q = new Query(Query::OP_OR,
prefix_subqs.begin(), prefix_subqs.end());
delete this;
return q;
}
Query
Term::as_range_query() const
{
Query q = query;
delete this;
return q;
}
inline bool
is_phrase_generator(unsigned ch)
{
// These characters generate a phrase search.
// Ordered mostly by frequency of calls to this function done when
// running the testcases in api_queryparser.cc.
return (ch && ch < 128 && strchr(".-/:\\@", ch) != NULL);
}
inline bool
is_stem_preventer(unsigned ch)
{
return (ch && ch < 128 && strchr("(/\\@<>=*[{\"", ch) != NULL);
}
inline bool
should_stem(const string & term)
{
const unsigned int SHOULD_STEM_MASK =
(1 << Unicode::LOWERCASE_LETTER) |
(1 << Unicode::TITLECASE_LETTER) |
(1 << Unicode::MODIFIER_LETTER) |
(1 << Unicode::OTHER_LETTER);
Utf8Iterator u(term);
return ((SHOULD_STEM_MASK >> Unicode::get_category(*u)) & 1);
}
/** Value representing "ignore this" when returned by check_infix() or
* check_infix_digit().
*/
const unsigned UNICODE_IGNORE = numeric_limits<unsigned>::max();
inline unsigned check_infix(unsigned ch) {
if (ch == '\'' || ch == '&' || ch == 0xb7 || ch == 0x5f4 || ch == 0x2027) {
// Unicode includes all these except '&' in its word boundary rules,
// as well as 0x2019 (which we handle below) and ':' (for Swedish
// apparently, but we ignore this for now as it's problematic in
// real world cases).
return ch;
}
if (ch >= 0x200b) {
// 0x2019 is Unicode apostrophe and single closing quote.
// 0x201b is Unicode single opening quote with the tail rising.
if (ch == 0x2019 || ch == 0x201b)
return '\'';
if (ch <= 0x200d || ch == 0x2060 || ch == 0xfeff)
return UNICODE_IGNORE;
}
return 0;
}
inline unsigned check_infix_digit(unsigned ch) {
// This list of characters comes from Unicode's word identifying algorithm.
switch (ch) {
case ',':
case '.':
case ';':
case 0x037e: // GREEK QUESTION MARK
case 0x0589: // ARMENIAN FULL STOP
case 0x060D: // ARABIC DATE SEPARATOR
case 0x07F8: // NKO COMMA
case 0x2044: // FRACTION SLASH
case 0xFE10: // PRESENTATION FORM FOR VERTICAL COMMA
case 0xFE13: // PRESENTATION FORM FOR VERTICAL COLON
case 0xFE14: // PRESENTATION FORM FOR VERTICAL SEMICOLON
return ch;
}
if (ch >= 0x200b && (ch <= 0x200d || ch == 0x2060 || ch == 0xfeff))
return UNICODE_IGNORE;
return 0;
}
struct yyParser;
// Prototype the functions lemon generates.
static yyParser *ParseAlloc();
static void ParseFree(yyParser *);
static void Parse(yyParser *, int, Term *, State *);
static void yy_parse_failed(yyParser *);
void
QueryParser::Internal::add_prefix(const string &field, const string &prefix)
{
map<string, FieldInfo>::iterator p = field_map.find(field);
if (p == field_map.end()) {
field_map.insert(make_pair(field, FieldInfo(NON_BOOLEAN, prefix)));
} else {
// Check that this is the same type of filter as the existing one(s).
if (p->second.type != NON_BOOLEAN) {
throw Xapian::InvalidOperationError("Can't use add_prefix() and add_boolean_prefix() on the same field name, or add_boolean_prefix() with different values of the 'exclusive' parameter");
}
if (!p->second.procs.empty())
throw Xapian::FeatureUnavailableError("Mixing FieldProcessor objects and string prefixes currently not supported");
p->second.prefixes.push_back(prefix);
}
}
void
QueryParser::Internal::add_prefix(const string &field, FieldProcessor *proc)
{
map<string, FieldInfo>::iterator p = field_map.find(field);
if (p == field_map.end()) {
field_map.insert(make_pair(field, FieldInfo(NON_BOOLEAN, proc)));
} else {
// Check that this is the same type of filter as the existing one(s).
if (p->second.type != NON_BOOLEAN) {
throw Xapian::InvalidOperationError("Can't use add_prefix() and add_boolean_prefix() on the same field name, or add_boolean_prefix() with different values of the 'exclusive' parameter");
}
if (!p->second.prefixes.empty())
throw Xapian::FeatureUnavailableError("Mixing FieldProcessor objects and string prefixes currently not supported");
throw Xapian::FeatureUnavailableError("Multiple FieldProcessor objects for the same prefix currently not supported");
// p->second.procs.push_back(proc);
}
}
void
QueryParser::Internal::add_boolean_prefix(const string &field,
const string &prefix,
const string* grouping)
{
// Don't allow the empty prefix to be set as boolean as it doesn't
// really make sense.
if (field.empty())
throw Xapian::UnimplementedError("Can't set the empty prefix to be a boolean filter");
if (!grouping) grouping = &field;
filter_type type = grouping->empty() ? BOOLEAN : BOOLEAN_EXCLUSIVE;
map<string, FieldInfo>::iterator p = field_map.find(field);
if (p == field_map.end()) {
field_map.insert(make_pair(field, FieldInfo(type, prefix, *grouping)));
} else {
// Check that this is the same type of filter as the existing one(s).
if (p->second.type != type) {
throw Xapian::InvalidOperationError("Can't use add_prefix() and add_boolean_prefix() on the same field name, or add_boolean_prefix() with different values of the 'exclusive' parameter"); // FIXME
}
if (!p->second.procs.empty())
throw Xapian::FeatureUnavailableError("Mixing FieldProcessor objects and string prefixes currently not supported");
p->second.prefixes.push_back(prefix); // FIXME grouping
}
}
void
QueryParser::Internal::add_boolean_prefix(const string &field,
FieldProcessor *proc,
const string* grouping)
{
// Don't allow the empty prefix to be set as boolean as it doesn't
// really make sense.
if (field.empty())
throw Xapian::UnimplementedError("Can't set the empty prefix to be a boolean filter");
if (!grouping) grouping = &field;
filter_type type = grouping->empty() ? BOOLEAN : BOOLEAN_EXCLUSIVE;
map<string, FieldInfo>::iterator p = field_map.find(field);
if (p == field_map.end()) {
field_map.insert(make_pair(field, FieldInfo(type, proc, *grouping)));
} else {
// Check that this is the same type of filter as the existing one(s).
if (p->second.type != type) {
throw Xapian::InvalidOperationError("Can't use add_prefix() and add_boolean_prefix() on the same field name, or add_boolean_prefix() with different values of the 'exclusive' parameter"); // FIXME
}
if (!p->second.prefixes.empty())
throw Xapian::FeatureUnavailableError("Mixing FieldProcessor objects and string prefixes currently not supported");
throw Xapian::FeatureUnavailableError("Multiple FieldProcessor objects for the same prefix currently not supported");
// p->second.procs.push_back(proc);
}
}
string
QueryParser::Internal::parse_term(Utf8Iterator &it, const Utf8Iterator &end,
bool cjk_ngram, bool & is_cjk_term,
bool &was_acronym)
{
string term;
// Look for initials separated by '.' (e.g. P.T.O., U.N.C.L.E).
// Don't worry if there's a trailing '.' or not.
if (U_isupper(*it)) {
string t;
Utf8Iterator p = it;
do {
Unicode::append_utf8(t, *p++);
} while (p != end && *p == '.' && ++p != end && U_isupper(*p));
// One letter does not make an acronym! If we handled a single
// uppercase letter here, we wouldn't catch M&S below.
if (t.length() > 1) {
// Check there's not a (lower case) letter or digit
// immediately after it.
// FIXME: should I.B.M..P.T.O be a range search?
if (p == end || !is_wordchar(*p)) {
it = p;
swap(term, t);
}
}
}
was_acronym = !term.empty();
if (cjk_ngram && term.empty() && CJK::codepoint_is_cjk(*it)) {
term = CJK::get_cjk(it);
is_cjk_term = true;
}
if (term.empty()) {
unsigned prevch = *it;
Unicode::append_utf8(term, prevch);
while (++it != end) {
if (cjk_ngram && CJK::codepoint_is_cjk(*it)) break;
unsigned ch = *it;
if (!is_wordchar(ch)) {
// Treat a single embedded '&' or "'" or similar as a word
// character (e.g. AT&T, Fred's). Also, normalise
// apostrophes to ASCII apostrophe.
Utf8Iterator p = it;
++p;
if (p == end || !is_wordchar(*p)) break;
unsigned nextch = *p;
if (is_digit(prevch) && is_digit(nextch)) {
ch = check_infix_digit(ch);
} else {
ch = check_infix(ch);
}
if (!ch) break;
if (ch == UNICODE_IGNORE)
continue;
}
Unicode::append_utf8(term, ch);
prevch = ch;
}
if (it != end && is_suffix(*it)) {
string suff_term = term;
Utf8Iterator p = it;
// Keep trailing + (e.g. C++, Na+) or # (e.g. C#).
do {
if (suff_term.size() - term.size() == 3) {
suff_term.resize(0);
break;
}
suff_term += *p;
} while (is_suffix(*++p));
if (!suff_term.empty() && (p == end || !is_wordchar(*p))) {
// If the suffixed term doesn't exist, check that the
// non-suffixed term does. This also takes care of
// the case when QueryParser::set_database() hasn't
// been called.
bool use_suff_term = false;
string lc = Unicode::tolower(suff_term);
if (db.term_exists(lc)) {
use_suff_term = true;
} else {
lc = Unicode::tolower(term);
if (!db.term_exists(lc)) use_suff_term = true;
}
if (use_suff_term) {
term = suff_term;
it = p;
}
}
}
}
return term;
}
class ParserHandler {
yyParser * parser;
public:
explicit ParserHandler(yyParser * parser_) : parser(parser_) { }
operator yyParser*() const { return parser; }
~ParserHandler() { ParseFree(parser); }
};
Query
QueryParser::Internal::parse_query(const string &qs, unsigned flags,
const string &default_prefix)
{
bool cjk_ngram = (flags & FLAG_CJK_NGRAM) || CJK::is_cjk_enabled();
// Set ranges if we may have to handle ranges in the query.
bool ranges = !rangeprocs.empty() && (qs.find("..") != string::npos);
termpos term_pos = 1;
Utf8Iterator it(qs), end;
State state(this, flags);
// To successfully apply more than one spelling correction to a query
// string, we must keep track of the offset due to previous corrections.
int correction_offset = 0;
corrected_query.resize(0);
// Stack of prefixes, used for phrases and subexpressions.
list<const FieldInfo *> prefix_stack;
// If default_prefix is specified, use it. Otherwise, use any list
// that has been set for the empty prefix.
const FieldInfo def_pfx(NON_BOOLEAN, default_prefix);
{
const FieldInfo * default_field_info = &def_pfx;
if (default_prefix.empty()) {
auto f = field_map.find(string());
if (f != field_map.end()) default_field_info = &(f->second);
}
// We always have the current prefix on the top of the stack.
prefix_stack.push_back(default_field_info);
}
ParserHandler pParser(ParseAlloc());
unsigned newprev = ' ';
main_lex_loop:
enum {
DEFAULT, IN_QUOTES, IN_PREFIXED_QUOTES, IN_PHRASED_TERM, IN_GROUP,
IN_GROUP2, EXPLICIT_SYNONYM
} mode = DEFAULT;
while (it != end && !state.error) {
bool last_was_operator = false;
bool last_was_operator_needing_term = false;
if (mode == EXPLICIT_SYNONYM) mode = DEFAULT;
if (false) {
just_had_operator:
if (it == end) break;
mode = DEFAULT;
last_was_operator_needing_term = false;
last_was_operator = true;
}
if (false) {
just_had_operator_needing_term:
last_was_operator_needing_term = true;
last_was_operator = true;
}
if (mode == IN_PHRASED_TERM) mode = DEFAULT;
if (is_whitespace(*it)) {
newprev = ' ';
++it;
it = find_if(it, end, is_not_whitespace);
if (it == end) break;
}
if (ranges &&
(mode == DEFAULT || mode == IN_GROUP || mode == IN_GROUP2)) {
// Scan forward to see if this could be the "start of range"
// token. Sadly this has O(n^2) tendencies, though at least
// "n" is the number of words in a query which is likely to
// remain fairly small. FIXME: can we tokenise more elegantly?
Utf8Iterator it_initial = it;
Utf8Iterator p = it;
unsigned ch = 0;
while (p != end) {
if (ch == '.' && *p == '.') {
string a;
while (it != p) {
Unicode::append_utf8(a, *it++);
}
// Trim off the trailing ".".
a.resize(a.size() - 1);
++p;
// Either end of the range can be empty (for an open-ended
// range) but both can't be empty.
if (!a.empty() || (p != end && *p > ' ' && *p != ')')) {
string b;
// Allow any character except whitespace and ')' in the
// upper bound.
while (p != end && *p > ' ' && *p != ')') {
Unicode::append_utf8(b, *p++);
}
Term * range = state.range(a, b);
if (!range) {
state.error = "Unknown range operation";
if (a.find(':', 1) == string::npos) {
goto done;
}
// Might be a boolean filter with ".." in. Leave
// state.error in case it isn't.
it = it_initial;
break;
}
Parse(pParser, RANGE, range, &state);
}
it = p;
goto main_lex_loop;
}
ch = *p;
// Allow any character except whitespace and '(' in the lower
// bound.
if (ch <= ' ' || ch == '(') break;
++p;
}
}
if (!is_wordchar(*it)) {
unsigned prev = newprev;
unsigned ch = *it++;
newprev = ch;
// Drop out of IN_GROUP mode.
if (mode == IN_GROUP || mode == IN_GROUP2)
mode = DEFAULT;
switch (ch) {
case '"':
case 0x201c: // Left curly double quote.
case 0x201d: // Right curly double quote.
// Quoted phrase.
if (mode == DEFAULT) {
// Skip whitespace.
it = find_if(it, end, is_not_whitespace);
if (it == end) {
// Ignore an unmatched " at the end of the query to
// avoid generating an empty pair of QUOTEs which will
// cause a parse error.
goto done;
}
if (is_double_quote(*it)) {
// Ignore empty "" (but only if we're not already
// IN_QUOTES as we don't merge two adjacent quoted
// phrases!)
newprev = *it++;
break;
}
}
if (flags & QueryParser::FLAG_PHRASE) {
Parse(pParser, QUOTE, NULL, &state);
if (mode == DEFAULT) {
mode = IN_QUOTES;
} else {
// Remove the prefix we pushed for this phrase.
if (mode == IN_PREFIXED_QUOTES)
prefix_stack.pop_back();
mode = DEFAULT;
}
}
break;
case '+': case '-': // Loved or hated term/phrase/subexpression.
// Ignore + or - at the end of the query string.
if (it == end) goto done;
if (prev > ' ' && prev != '(') {
// Or if not after whitespace or an open bracket.
break;
}
if (is_whitespace(*it) || *it == '+' || *it == '-') {
// Ignore + or - followed by a space, or further + or -.
// Postfix + (such as in C++ and H+) is handled as part of
// the term lexing code in parse_term().
newprev = *it++;
break;
}
if (mode == DEFAULT && (flags & FLAG_LOVEHATE)) {
int token;
if (ch == '+') {
token = LOVE;
} else if (last_was_operator) {
token = HATE_AFTER_AND;
} else {
token = HATE;
}
Parse(pParser, token, NULL, &state);
goto just_had_operator_needing_term;
}
// Need to prevent the term after a LOVE or HATE starting a
// term group...
break;
case '(': // Bracketed subexpression.
// Skip whitespace.
it = find_if(it, end, is_not_whitespace);
// Ignore ( at the end of the query string.
if (it == end) goto done;
if (prev > ' ' && strchr("()+-", prev) == NULL) {
// Or if not after whitespace or a bracket or '+' or '-'.
break;
}
if (*it == ')') {
// Ignore empty ().
newprev = *it++;
break;
}
if (mode == DEFAULT && (flags & FLAG_BOOLEAN)) {
prefix_stack.push_back(prefix_stack.back());
Parse(pParser, BRA, NULL, &state);
}
break;
case ')': // End of bracketed subexpression.
if (mode == DEFAULT && (flags & FLAG_BOOLEAN)) {
// Remove the prefix we pushed for the corresponding BRA.
// If brackets are unmatched, it's a syntax error, but
// that's no excuse to SEGV!
if (prefix_stack.size() > 1) prefix_stack.pop_back();
Parse(pParser, KET, NULL, &state);
}
break;
case '~': // Synonym expansion.
// Ignore at the end of the query string.
if (it == end) goto done;
if (mode == DEFAULT && (flags & FLAG_SYNONYM)) {
if (prev > ' ' && strchr("+-(", prev) == NULL) {
// Or if not after whitespace, +, -, or an open bracket.
break;
}
if (!is_wordchar(*it)) {
// Ignore if not followed by a word character.
break;
}
Parse(pParser, SYNONYM, NULL, &state);
mode = EXPLICIT_SYNONYM;
goto just_had_operator_needing_term;
}
break;
}
// Skip any other characters.
continue;
}
Assert(is_wordchar(*it));
size_t term_start_index = it.raw() - qs.data();
newprev = 'A'; // Any letter will do...
// A term, a prefix, or a boolean operator.
const FieldInfo * field_info = NULL;
if ((mode == DEFAULT || mode == IN_GROUP || mode == IN_GROUP2 || mode == EXPLICIT_SYNONYM) &&
!field_map.empty()) {
// Check for a fieldname prefix (e.g. title:historical).
Utf8Iterator p = find_if(it, end, is_not_wordchar);
if (p != end && *p == ':' && ++p != end && *p > ' ' && *p != ')') {
string field;
p = it;
while (*p != ':')
Unicode::append_utf8(field, *p++);
map<string, FieldInfo>::const_iterator f;
f = field_map.find(field);
if (f != field_map.end()) {
// Special handling for prefixed fields, depending on the
// type of the prefix.
unsigned ch = *++p;
field_info = &(f->second);
if (field_info->type != NON_BOOLEAN) {
// Drop out of IN_GROUP if we're in it.
if (mode == IN_GROUP || mode == IN_GROUP2)
mode = DEFAULT;
it = p;
string name;
if (it != end && is_double_quote(*it)) {
// Quoted boolean term (can contain any character).
bool fancy = (*it != '"');
++it;
while (it != end) {
if (*it == '"') {
// Interpret "" as an escaped ".
if (++it == end || *it != '"')
break;
} else if (fancy && is_double_quote(*it)) {
// If the opening quote was ASCII, then the
// closing one must be too - otherwise
// the user can't protect non-ASCII double
// quote characters by quoting or escaping.
++it;
break;
}
Unicode::append_utf8(name, *it++);
}
} else {
// Can't boolean filter prefix a subexpression, so
// just use anything following the prefix until the
// next space or ')' as part of the boolean filter
// term.
while (it != end && *it > ' ' && *it != ')')
Unicode::append_utf8(name, *it++);
}
// Build the unstemmed form in field.
field += ':';
field += name;
// Clear any pending range error.
state.error = NULL;
Term * token = new Term(&state, name, field_info, field);
Parse(pParser, BOOLEAN_FILTER, token, &state);
continue;
}
if ((flags & FLAG_PHRASE) && is_double_quote(ch)) {
// Prefixed phrase, e.g.: subject:"space flight"
mode = IN_PREFIXED_QUOTES;
Parse(pParser, QUOTE, NULL, &state);
it = p;
newprev = ch;
++it;
prefix_stack.push_back(field_info);
continue;
}
if (ch == '(' && (flags & FLAG_BOOLEAN)) {
// Prefixed subexpression, e.g.: title:(fast NEAR food)
mode = DEFAULT;
Parse(pParser, BRA, NULL, &state);
it = p;
newprev = ch;
++it;
prefix_stack.push_back(field_info);
continue;
}
if (ch != ':') {
// Allow 'path:/usr/local' but not 'foo::bar::baz'.
while (is_phrase_generator(ch)) {
if (++p == end)
goto not_prefix;
ch = *p;
}
}
if (is_wordchar(ch)) {
// Prefixed term.
it = p;
} else {
not_prefix:
// It looks like a prefix but isn't, so parse it as
// text instead.
field_info = NULL;
}
}
}
}
phrased_term:
bool was_acronym;
bool is_cjk_term = false;
string term = parse_term(it, end, cjk_ngram, is_cjk_term, was_acronym);
// Boolean operators.
if ((mode == DEFAULT || mode == IN_GROUP || mode == IN_GROUP2) &&
(flags & FLAG_BOOLEAN) &&
// Don't want to interpret A.N.D. as an AND operator.
!was_acronym &&
!field_info &&
term.size() >= 2 && term.size() <= 4 && U_isalpha(term[0])) {
string op = term;
if (flags & FLAG_BOOLEAN_ANY_CASE) {
for (string::iterator i = op.begin(); i != op.end(); ++i) {
*i = C_toupper(*i);
}
}
if (op.size() == 3) {
if (op == "AND") {
Parse(pParser, AND, NULL, &state);
goto just_had_operator;
}
if (op == "NOT") {
Parse(pParser, NOT, NULL, &state);
goto just_had_operator;
}
if (op == "XOR") {
Parse(pParser, XOR, NULL, &state);
goto just_had_operator;
}
if (op == "ADJ") {
if (it != end && *it == '/') {
size_t width = 0;
Utf8Iterator p = it;
while (++p != end && U_isdigit(*p)) {
width = (width * 10) + (*p - '0');
}
if (width && (p == end || is_whitespace(*p))) {
it = p;
Parse(pParser, ADJ, new Term(width), &state);
goto just_had_operator;
}
} else {
Parse(pParser, ADJ, NULL, &state);
goto just_had_operator;
}
}
} else if (op.size() == 2) {
if (op == "OR") {
Parse(pParser, OR, NULL, &state);
goto just_had_operator;
}
} else if (op.size() == 4) {
if (op == "NEAR") {
if (it != end && *it == '/') {
size_t width = 0;
Utf8Iterator p = it;
while (++p != end && U_isdigit(*p)) {
width = (width * 10) + (*p - '0');
}
if (width && (p == end || is_whitespace(*p))) {
it = p;
Parse(pParser, NEAR, new Term(width), &state);
goto just_had_operator;
}
} else {
Parse(pParser, NEAR, NULL, &state);
goto just_had_operator;
}
}
}
}
// If no prefix is set, use the default one.
if (!field_info) field_info = prefix_stack.back();
Assert(field_info->type == NON_BOOLEAN);
{
string unstemmed_term(term);
term = Unicode::tolower(term);
// Reuse stem_strategy - STEM_SOME here means "stem terms except
// when used with positional operators".
stem_strategy stem_term = stem_action;
if (stem_term != STEM_NONE) {
if (!stemmer.internal.get()) {
// No stemmer is set.
stem_term = STEM_NONE;
} else if (stem_term == STEM_SOME) {
if (!should_stem(unstemmed_term) ||
(it != end && is_stem_preventer(*it))) {
// Don't stem this particular term.
stem_term = STEM_NONE;
}
}
}
Term * term_obj = new Term(&state, term, field_info,
unstemmed_term, stem_term, term_pos++);
if (is_cjk_term) {
Parse(pParser, CJKTERM, term_obj, &state);
if (it == end) break;
continue;
}
if (mode == DEFAULT || mode == IN_GROUP || mode == IN_GROUP2) {
if (it != end) {
if ((flags & FLAG_WILDCARD) && *it == '*') {
Utf8Iterator p(it);
++p;
if (p == end || !is_wordchar(*p)) {
it = p;
if (mode == IN_GROUP || mode == IN_GROUP2) {
// Drop out of IN_GROUP and flag that the group
// can be empty if all members are stopwords.
if (mode == IN_GROUP2)
Parse(pParser, EMPTY_GROUP_OK, NULL, &state);
mode = DEFAULT;
}
// Wildcard at end of term (also known as
// "right truncation").
Parse(pParser, WILD_TERM, term_obj, &state);
continue;
}
}
} else {
if (flags & FLAG_PARTIAL) {
if (mode == IN_GROUP || mode == IN_GROUP2) {
// Drop out of IN_GROUP and flag that the group
// can be empty if all members are stopwords.
if (mode == IN_GROUP2)
Parse(pParser, EMPTY_GROUP_OK, NULL, &state);
mode = DEFAULT;
}
// Final term of a partial match query, with no
// following characters - treat as a wildcard.
Parse(pParser, PARTIAL_TERM, term_obj, &state);
continue;
}
}
}
// Check spelling, if we're a normal term, and any of the prefixes
// are empty.
if ((flags & FLAG_SPELLING_CORRECTION) && !was_acronym) {
const list<string> & pfxes = field_info->prefixes;
list<string>::const_iterator pfx_it;
for (pfx_it = pfxes.begin(); pfx_it != pfxes.end(); ++pfx_it) {
if (!pfx_it->empty())
continue;
const string & suggest = db.get_spelling_suggestion(term);
if (!suggest.empty()) {
if (corrected_query.empty()) corrected_query = qs;
size_t term_end_index = it.raw() - qs.data();
size_t n = term_end_index - term_start_index;
size_t pos = term_start_index + correction_offset;
corrected_query.replace(pos, n, suggest);
correction_offset += suggest.size();
correction_offset -= n;
}
break;
}
}
if (mode == IN_PHRASED_TERM) {
Parse(pParser, PHR_TERM, term_obj, &state);
} else {
// See if the next token will be PHR_TERM - if so, this one
// needs to be TERM not GROUP_TERM.
if ((mode == IN_GROUP || mode == IN_GROUP2) &&
is_phrase_generator(*it)) {
// FIXME: can we clean this up?
Utf8Iterator p = it;
do {
++p;
} while (p != end && is_phrase_generator(*p));
// Don't generate a phrase unless the phrase generators are
// immediately followed by another term.
if (p != end && is_wordchar(*p)) {
mode = DEFAULT;
}
}
int token = TERM;
if (mode == IN_GROUP || mode == IN_GROUP2) {
mode = IN_GROUP2;
token = GROUP_TERM;
}
Parse(pParser, token, term_obj, &state);
if (token == TERM && mode != DEFAULT)
continue;
}
}
if (it == end) break;
if (is_phrase_generator(*it)) {
// Skip multiple phrase generators.
do {
++it;
} while (it != end && is_phrase_generator(*it));
// Don't generate a phrase unless the phrase generators are
// immediately followed by another term.
if (it != end && is_wordchar(*it)) {
mode = IN_PHRASED_TERM;
term_start_index = it.raw() - qs.data();
goto phrased_term;
}
} else if (mode == DEFAULT || mode == IN_GROUP || mode == IN_GROUP2) {
int old_mode = mode;
mode = DEFAULT;
if (!last_was_operator_needing_term && is_whitespace(*it)) {
newprev = ' ';
// Skip multiple whitespace.
do {
++it;
} while (it != end && is_whitespace(*it));
// Don't generate a group unless the terms are only separated
// by whitespace.
if (it != end && is_wordchar(*it)) {
if (old_mode == IN_GROUP || old_mode == IN_GROUP2) {
mode = IN_GROUP2;
} else {
mode = IN_GROUP;
}
}
}
}
}
done:
if (!state.error) {
// Implicitly close any unclosed quotes.
if (mode == IN_QUOTES || mode == IN_PREFIXED_QUOTES)
Parse(pParser, QUOTE, NULL, &state);
// Implicitly close all unclosed brackets.
while (prefix_stack.size() > 1) {
Parse(pParser, KET, NULL, &state);
prefix_stack.pop_back();
}
Parse(pParser, 0, NULL, &state);
}
errmsg = state.error;
return state.query;
}
struct ProbQuery {
Query * query;
Query * love;
Query * hate;
// filter is a map from prefix to a query for that prefix. Queries with
// the same prefix are combined with OR, and the results of this are
// combined with AND to get the full filter.
map<string, Query> filter;
ProbQuery() : query(0), love(0), hate(0) { }
~ProbQuery() {
delete query;
delete love;
delete hate;
}
void add_filter(const string& grouping, const Query & q) {
filter[grouping] = q;
}
void append_filter(const string& grouping, const Query & qnew) {
auto it = filter.find(grouping);
if (it == filter.end()) {
filter.insert(make_pair(grouping, qnew));
} else {
Query & q = it->second;
// We OR multiple filters with the same prefix if they're
// exclusive, otherwise we AND them.
bool exclusive = !grouping.empty();
Query::op op = exclusive ? Query::OP_OR : Query::OP_AND;
q = Query(op, q, qnew);
}
}
void add_filter_range(const string& grouping, const Query & range) {
filter[grouping] = range;
}
void append_filter_range(const string& grouping, const Query & range) {
Query & q = filter[grouping];
q = Query(Query::OP_OR, q, range);
}
Query merge_filters() const {
auto i = filter.begin();
Assert(i != filter.end());
Query q = i->second;
while (++i != filter.end()) {
q = Query(Query::OP_AND, q, i->second);
}
return q;
}
};
/// A group of terms separated only by whitespace.
class TermGroup {
vector<Term *> terms;
/** Controls how to handle a group where all terms are stopwords.
*
* If true, then as_group() returns NULL. If false, then the
* stopword status of the terms is ignored.
*/
bool empty_ok;
TermGroup(Term* t1, Term* t2) : empty_ok(false) {
add_term(t1);
add_term(t2);
}
public:
/// Factory function - ensures heap allocation.
static TermGroup* create(Term* t1, Term* t2) {
return new TermGroup(t1, t2);
}
~TermGroup() {
for (auto&& t : terms) {
delete t;
}
}
/// Add a Term object to this TermGroup object.
void add_term(Term * term) {
terms.push_back(term);
}
/// Set the empty_ok flag.
void set_empty_ok() { empty_ok = true; }
/// Convert to a Xapian::Query * using default_op.
Query * as_group(State *state) const;
};
Query *
TermGroup::as_group(State *state) const
{
const Xapian::Stopper * stopper = state->get_stopper();
size_t stoplist_size = state->stoplist_size();
bool default_op_is_positional = is_positional(state->default_op());
reprocess:
Query::op default_op = state->default_op();
vector<Query> subqs;
subqs.reserve(terms.size());
if (state->flags & QueryParser::FLAG_AUTO_MULTIWORD_SYNONYMS) {
// Check for multi-word synonyms.
Database db = state->get_database();
string key;
vector<Term*>::const_iterator begin = terms.begin();
vector<Term*>::const_iterator i = begin;
while (i != terms.end()) {
TermIterator synkey(db.synonym_keys_begin((*i)->name));
TermIterator synend(db.synonym_keys_end((*i)->name));
if (synkey == synend) {
// No multi-synonym matches.
if (stopper && (*stopper)((*i)->name)) {
state->add_to_stoplist(*i);
} else {
if (default_op_is_positional)
(*i)->need_positions();
subqs.push_back((*i)->get_query_with_auto_synonyms());
}
begin = ++i;
continue;
}
key.resize(0);
while (i != terms.end()) {
if (!key.empty()) key += ' ';
key += (*i)->name;
++i;
synkey.skip_to(key);
if (synkey == synend || !startswith(*synkey, key)) break;
}
// Greedily try to match as many consecutive words as possible.
TermIterator syn, end;
while (true) {
syn = db.synonyms_begin(key);
end = db.synonyms_end(key);
if (syn != end) break;
if (--i == begin) break;
key.resize(key.size() - (*i)->name.size() - 1);
}
if (i == begin) {
// No multi-synonym matches.
if (stopper && (*stopper)((*i)->name)) {
state->add_to_stoplist(*i);
} else {
if (default_op_is_positional)
(*i)->need_positions();
subqs.push_back((*i)->get_query_with_auto_synonyms());
}
begin = ++i;
continue;
}
vector<Query> subqs2;
vector<Term*>::const_iterator j;
for (j = begin; j != i; ++j) {
if (stopper && (*stopper)((*j)->name)) {
state->add_to_stoplist(*j);
} else {
if (default_op_is_positional)
(*i)->need_positions();
subqs2.push_back((*j)->get_query());
}
}
Query q_original_terms;
if (default_op_is_positional) {
q_original_terms = Query(default_op,
subqs2.begin(), subqs2.end(),
subqs2.size() + 9);
} else {
q_original_terms = Query(default_op,
subqs2.begin(), subqs2.end());
}
subqs2.clear();
// Use the position of the first term for the synonyms.
Query q(Query::OP_SYNONYM,
SynonymIterator(syn, (*begin)->pos, &q_original_terms),
SynonymIterator(end));
subqs.push_back(q);
begin = i;
}
} else {
vector<Term*>::const_iterator i;
for (i = terms.begin(); i != terms.end(); ++i) {
if (stopper && (*stopper)((*i)->name)) {
state->add_to_stoplist(*i);
} else {
if (default_op_is_positional)
(*i)->need_positions();
subqs.push_back((*i)->get_query_with_auto_synonyms());
}
}
}
if (!empty_ok && stopper && subqs.empty() &&
stoplist_size < state->stoplist_size()) {
// This group is all stopwords, so roll-back, disable stopper
// temporarily, and reprocess this group.
state->stoplist_resize(stoplist_size);
stopper = NULL;
goto reprocess;
}
Query * q = NULL;
if (!subqs.empty()) {
if (default_op_is_positional) {
q = new Query(default_op, subqs.begin(), subqs.end(),
subqs.size() + 9);
} else {
q = new Query(default_op, subqs.begin(), subqs.end());
}
}
delete this;
return q;
}
/// Some terms which form a positional sub-query.
class Terms {
vector<Term *> terms;
size_t window;
/** Keep track of whether the terms added all have the same list of
* prefixes. If so, we'll build a set of phrases, one using each prefix.
* This works around the limitation that a phrase cannot have multiple
* components which are "OR" combinations of terms, but is also probably
* what users expect: i.e., if a user specifies a phrase in a field, and
* that field maps to multiple prefixes, the user probably wants a phrase
* returned with all terms having one of those prefixes, rather than a
* phrase comprised of terms with differing prefixes.
*/
bool uniform_prefixes;
/** The list of prefixes of the terms added.
* This will be NULL if the terms have different prefixes.
*/
const list<string> * prefixes;
/// Convert to a query using the given operator and window size.
Query * as_opwindow_query(Query::op op, Xapian::termcount w_delta) const {
Query * q = NULL;
size_t n_terms = terms.size();
Xapian::termcount w = w_delta + terms.size();
if (uniform_prefixes) {
if (prefixes) {
list<string>::const_iterator piter;
for (piter = prefixes->begin(); piter != prefixes->end(); ++piter) {
vector<Query> subqs;
subqs.reserve(n_terms);
vector<Term *>::const_iterator titer;
for (titer = terms.begin(); titer != terms.end(); ++titer) {
Term * t = *titer;
subqs.push_back(Query(t->make_term(*piter), 1, t->pos));
}
add_to_query(q, Query::OP_OR,
Query(op, subqs.begin(), subqs.end(), w));
}
}
} else {
vector<Query> subqs;
subqs.reserve(n_terms);
vector<Term *>::const_iterator titer;
for (titer = terms.begin(); titer != terms.end(); ++titer) {
subqs.push_back((*titer)->get_query());
}
q = new Query(op, subqs.begin(), subqs.end(), w);
}
delete this;
return q;
}
Terms() : window(0), uniform_prefixes(true), prefixes(NULL) { }
public:
/// Factory function - ensures heap allocation.
static Terms* create() {
return new Terms();
}
~Terms() {
for (auto&& t : terms) {
delete t;
}
}
/// Add an unstemmed Term object to this Terms object.
void add_positional_term(Term * term) {
const list<string> & term_prefixes = term->field_info->prefixes;
if (terms.empty()) {
prefixes = &term_prefixes;
} else if (uniform_prefixes && prefixes != &term_prefixes) {
if (*prefixes != term_prefixes) {
prefixes = NULL;
uniform_prefixes = false;
}
}
term->need_positions();
terms.push_back(term);
}
void adjust_window(size_t alternative_window) {
if (alternative_window > window) window = alternative_window;
}
/// Convert to a Xapian::Query * using adjacent OP_PHRASE.
Query * as_phrase_query() const {
return as_opwindow_query(Query::OP_PHRASE, 0);
}
/// Convert to a Xapian::Query * using OP_NEAR.
Query * as_near_query() const {
// The common meaning of 'a NEAR b' is "a within 10 terms of b", which
// means a window size of 11. For more than 2 terms, we just add one
// to the window size for each extra term.
size_t w = window;
if (w == 0) w = 10;
return as_opwindow_query(Query::OP_NEAR, w - 1);
}
/// Convert to a Xapian::Query * using OP_PHRASE to implement ADJ.
Query * as_adj_query() const {
// The common meaning of 'a ADJ b' is "a at most 10 terms before b",
// which means a window size of 11. For more than 2 terms, we just add
// one to the window size for each extra term.
size_t w = window;
if (w == 0) w = 10;
return as_opwindow_query(Query::OP_PHRASE, w - 1);
}
};
void
Term::as_positional_cjk_term(Terms * terms) const
{
// Add each individual CJK character to the phrase.
string t;
for (Utf8Iterator it(name); it != Utf8Iterator(); ++it) {
Unicode::append_utf8(t, *it);
Term * c = new Term(state, t, field_info, unstemmed, stem, pos);
terms->add_positional_term(c);
t.resize(0);
}
// FIXME: we want to add the n-grams as filters too for efficiency.
delete this;
}
// Helper macro for converting a boolean operation into a Xapian::Query.
#define BOOL_OP_TO_QUERY(E, A, OP, B, OP_TXT) \
do {\
if (!A || !B) {\
state->error = "Syntax: <expression> " OP_TXT " <expression>";\
yy_parse_failed(yypParser);\
return;\
}\
E = new Query(OP, *A, *B);\
delete A;\
delete B;\
} while (0)
}
%token_type {Term *}
%token_destructor {delete $$;}
%extra_argument {State * state}
%parse_failure {
// If we've not already set an error message, set a default one.
if (!state->error) state->error = "parse error";
}
%syntax_error {
yy_parse_failed(yypParser);
}
// Operators, grouped in order of increasing precedence:
%nonassoc ERROR.
%left OR.
%left XOR.
%left AND NOT.
%left NEAR ADJ.
%left LOVE HATE HATE_AFTER_AND SYNONYM.
// Destructors for terminal symbols:
// TERM is a query term, including prefix (if any).
%destructor TERM {delete $$;}
// GROUP_TERM is a query term which follows a TERM or another GROUP_TERM and
// is only separated by whitespace characters.
%destructor GROUP_TERM {delete $$;}
// PHR_TERM is a query term which follows a TERM or another PHR_TERM and is
// separated only by one or more phrase generator characters (hyphen and
// apostrophe are common examples - see is_phrase_generator() for the list
// of all punctuation which does this).
%destructor PHR_TERM {delete $$;}
// WILD_TERM is like a TERM, but has a trailing wildcard which needs to be
// expanded.
%destructor WILD_TERM {delete $$;}
// PARTIAL_TERM is like a TERM, but it's at the end of the query string and
// we're doing "search as you type". It expands to something like WILD_TERM
// OR stemmed_form.
%destructor PARTIAL_TERM {delete $$;}
// BOOLEAN_FILTER is a query term with a prefix registered using
// add_boolean_prefix(). It's added to the query using an OP_FILTER operator,
// (or OP_AND_NOT if it's negated) e.g. site:xapian.org or -site:xapian.org
%destructor BOOLEAN_FILTER {delete $$;}
// Grammar rules:
// query - The whole query - just an expr or nothing.
// query non-terminal doesn't need a type, so just give a dummy one.
%type query {int}
query ::= expr(E). {
// Save the parsed query in the State structure so we can return it.
if (E) {
state->query = *E;
delete E;
} else {
state->query = Query();
}
}
query ::= . {
// Handle a query string with no terms in.
state->query = Query();
}
// expr - A query expression.
%type expr {Query *}
%destructor expr {delete $$;}
expr(E) ::= prob_expr(P).
{ E = P; }
expr(E) ::= bool_arg(A) AND bool_arg(B).
{ BOOL_OP_TO_QUERY(E, A, Query::OP_AND, B, "AND"); }
expr(E) ::= bool_arg(A) NOT bool_arg(B). {
// 'NOT foo' -> '<alldocuments> NOT foo'
if (!A && (state->flags & QueryParser::FLAG_PURE_NOT)) {
A = new Query("", 1, 0);
}
BOOL_OP_TO_QUERY(E, A, Query::OP_AND_NOT, B, "NOT");
}
expr(E) ::= bool_arg(A) AND NOT bool_arg(B). [NOT]
{ BOOL_OP_TO_QUERY(E, A, Query::OP_AND_NOT, B, "AND NOT"); }
expr(E) ::= bool_arg(A) AND HATE_AFTER_AND bool_arg(B). [AND]
{ BOOL_OP_TO_QUERY(E, A, Query::OP_AND_NOT, B, "AND"); }
expr(E) ::= bool_arg(A) OR bool_arg(B).
{ BOOL_OP_TO_QUERY(E, A, Query::OP_OR, B, "OR"); }
expr(E) ::= bool_arg(A) XOR bool_arg(B).
{ BOOL_OP_TO_QUERY(E, A, Query::OP_XOR, B, "XOR"); }
// bool_arg - an argument to a boolean operator such as AND or OR.
%type bool_arg {Query *}
%destructor bool_arg {delete $$;}
bool_arg(A) ::= expr(E). { A = E; }
bool_arg(A) ::= . [ERROR] {
// Set the argument to NULL, which enables the bool_arg-using rules in
// expr above to report uses of AND, OR, etc which don't have two
// arguments.
A = NULL;
}
// prob_expr - a single compound term, or a prob.
%type prob_expr {Query *}
%destructor prob_expr {delete $$;}
prob_expr(E) ::= prob(P). {
E = P->query;
P->query = NULL;
// Handle any "+ terms".
if (P->love) {
if (P->love->empty()) {
// +<nothing>.
delete E;
E = P->love;
} else if (E) {
swap(E, P->love);
add_to_query(E, Query::OP_AND_MAYBE, P->love);
} else {
E = P->love;
}
P->love = NULL;
}
// Handle any boolean filters.
if (!P->filter.empty()) {
if (E) {
add_to_query(E, Query::OP_FILTER, P->merge_filters());
} else {
// Make the query a boolean one.
E = new Query(Query::OP_SCALE_WEIGHT, P->merge_filters(), 0.0);
}
}
// Handle any "- terms".
if (P->hate && !P->hate->empty()) {
if (!E) {
// Can't just hate!
yy_parse_failed(yypParser);
return;
}
*E = Query(Query::OP_AND_NOT, *E, *P->hate);
}
delete P;
}
prob_expr(E) ::= term(T). {
E = T;
}
// prob - a probabilistic sub-expression consisting of stop_terms, "+" terms,
// "-" terms, boolean filters, and/or ranges.
//
// Note: stop_term can also be several other things other than a simple term!
%type prob {ProbQuery *}
%destructor prob {delete $$;}
prob(P) ::= RANGE(R). {
string grouping = R->name;
const Query & range = R->as_range_query();
P = new ProbQuery;
P->add_filter_range(grouping, range);
}
prob(P) ::= stop_prob(Q) RANGE(R). {
string grouping = R->name;
const Query & range = R->as_range_query();
P = Q;
P->append_filter_range(grouping, range);
}
prob(P) ::= stop_term(T) stop_term(U). {
P = new ProbQuery;
P->query = T;
if (U) {
Query::op op = state->default_op();
if (P->query && is_positional(op)) {
// If default_op is OP_NEAR or OP_PHRASE, set the window size to
// 11 for the first pair of terms and it will automatically grow
// by one for each subsequent term.
Query * subqs[2] = { P->query, U };
*(P->query) = Query(op, subqs, subqs + 2, 11);
delete U;
} else {
add_to_query(P->query, op, U);
}
}
}
prob(P) ::= prob(Q) stop_term(T). {
P = Q;
// If T is a stopword, there's nothing to do here.
if (T) add_to_query(P->query, state->default_op(), T);
}
prob(P) ::= LOVE term(T). {
P = new ProbQuery;
if (state->default_op() == Query::OP_AND) {
P->query = T;
} else {
P->love = T;
}
}
prob(P) ::= stop_prob(Q) LOVE term(T). {
P = Q;
if (state->default_op() == Query::OP_AND) {
/* The default op is AND, so we just put loved terms into the query
* (in this case the only effect of love is to ignore the stopword
* list). */
add_to_query(P->query, Query::OP_AND, T);
} else {
add_to_query(P->love, Query::OP_AND, T);
}
}
prob(P) ::= HATE term(T). {
P = new ProbQuery;
P->hate = T;
}
prob(P) ::= stop_prob(Q) HATE term(T). {
P = Q;
add_to_query(P->hate, Query::OP_OR, T);
}
prob(P) ::= HATE BOOLEAN_FILTER(T). {
P = new ProbQuery;
P->hate = new Query(T->get_query());
delete T;
}
prob(P) ::= stop_prob(Q) HATE BOOLEAN_FILTER(T). {
P = Q;
add_to_query(P->hate, Query::OP_OR, T->get_query());
delete T;
}
prob(P) ::= BOOLEAN_FILTER(T). {
P = new ProbQuery;
P->add_filter(T->get_grouping(), T->get_query());
delete T;
}
prob(P) ::= stop_prob(Q) BOOLEAN_FILTER(T). {
P = Q;
P->append_filter(T->get_grouping(), T->get_query());
delete T;
}
prob(P) ::= LOVE BOOLEAN_FILTER(T). {
// LOVE BOOLEAN_FILTER(T) is just the same as BOOLEAN_FILTER
P = new ProbQuery;
P->filter[T->get_grouping()] = T->get_query();
delete T;
}
prob(P) ::= stop_prob(Q) LOVE BOOLEAN_FILTER(T). {
// LOVE BOOLEAN_FILTER(T) is just the same as BOOLEAN_FILTER
P = Q;
// We OR filters with the same prefix...
Query & q = P->filter[T->get_grouping()];
q = Query(Query::OP_OR, q, T->get_query());
delete T;
}
// stop_prob - A prob or a stop_term.
%type stop_prob {ProbQuery *}
%destructor stop_prob {delete $$;}
stop_prob(P) ::= prob(Q).
{ P = Q; }
stop_prob(P) ::= stop_term(T). {
P = new ProbQuery;
P->query = T;
}
// stop_term - A term which should be checked against the stopword list,
// or a compound_term.
//
// If a term is loved, hated, or in a phrase, we don't want to consult the
// stopword list, so stop_term isn't used there (instead term is).
%type stop_term {Query *}
%destructor stop_term {delete $$;}
stop_term(T) ::= TERM(U). {
if (state->is_stopword(U)) {
T = NULL;
state->add_to_stoplist(U);
} else {
T = new Query(U->get_query_with_auto_synonyms());
}
delete U;
}
stop_term(T) ::= compound_term(U). {
T = U;
}
// term - A term or a compound_term.
%type term {Query *}
%destructor term {delete $$;}
term(T) ::= TERM(U). {
T = new Query(U->get_query_with_auto_synonyms());
delete U;
}
term(T) ::= compound_term(U). {
T = U;
}
// compound_term - A WILD_TERM, a quoted phrase (with or without prefix), a
// phrased_term, group, near_expr, adj_expr, or a bracketed subexpression (with
// or without prefix).
%type compound_term {Query *}
%destructor compound_term {delete $$;}
compound_term(T) ::= WILD_TERM(U).
{ T = U->as_wildcarded_query(state); }
compound_term(T) ::= PARTIAL_TERM(U).
{ T = U->as_partial_query(state); }
compound_term(T) ::= QUOTE phrase(P) QUOTE.
{ T = P->as_phrase_query(); }
compound_term(T) ::= phrased_term(P).
{ T = P->as_phrase_query(); }
compound_term(T) ::= group(P).
{ T = P->as_group(state); }
compound_term(T) ::= near_expr(P).
{ T = P->as_near_query(); }
compound_term(T) ::= adj_expr(P).
{ T = P->as_adj_query(); }
compound_term(T) ::= BRA expr(E) KET.
{ T = E; }
compound_term(T) ::= SYNONYM TERM(U). {
T = new Query(U->get_query_with_synonyms());
delete U;
}
compound_term(T) ::= CJKTERM(U). {
{ T = U->as_cjk_query(); }
}
// phrase - The "inside the quotes" part of a double-quoted phrase.
%type phrase {Terms *}
%destructor phrase {delete $$;}
phrase(P) ::= TERM(T). {
P = Terms::create();
P->add_positional_term(T);
}
phrase(P) ::= CJKTERM(T). {
P = Terms::create();
T->as_positional_cjk_term(P);
}
phrase(P) ::= phrase(Q) TERM(T). {
P = Q;
P->add_positional_term(T);
}
phrase(P) ::= phrase(Q) CJKTERM(T). {
P = Q;
T->as_positional_cjk_term(P);
}
// phrased_term - A phrased term works like a single term, but is actually
// 2 or more terms linked together into a phrase by punctuation. There must be
// at least 2 terms in order to be able to have punctuation between the terms!
%type phrased_term {Terms *}
%destructor phrased_term {delete $$;}
phrased_term(P) ::= TERM(T) PHR_TERM(U). {
P = Terms::create();
P->add_positional_term(T);
P->add_positional_term(U);
}
phrased_term(P) ::= phrased_term(Q) PHR_TERM(T). {
P = Q;
P->add_positional_term(T);
}
// group - A group of terms separated only by whitespace - candidates for
// multi-term synonyms.
%type group {TermGroup *}
%destructor group {delete $$;}
group(P) ::= TERM(T) GROUP_TERM(U). {
P = TermGroup::create(T, U);
}
group(P) ::= group(Q) GROUP_TERM(T). {
P = Q;
P->add_term(T);
}
group(P) ::= group(Q) EMPTY_GROUP_OK. {
P = Q;
P->set_empty_ok();
}
// near_expr - 2 or more terms with NEAR in between. There must be at least 2
// terms in order for there to be any NEAR operators!
%type near_expr {Terms *}
%destructor near_expr {delete $$;}
near_expr(P) ::= TERM(T) NEAR(N) TERM(U). {
P = Terms::create();
P->add_positional_term(T);
P->add_positional_term(U);
if (N) {
P->adjust_window(N->get_termpos());
delete N;
}
}
near_expr(P) ::= near_expr(Q) NEAR(N) TERM(T). {
P = Q;
P->add_positional_term(T);
if (N) {
P->adjust_window(N->get_termpos());
delete N;
}
}
// adj_expr - 2 or more terms with ADJ in between. There must be at least 2
// terms in order for there to be any ADJ operators!
%type adj_expr {Terms *}
%destructor adj_expr {delete $$;}
adj_expr(P) ::= TERM(T) ADJ(N) TERM(U). {
P = Terms::create();
P->add_positional_term(T);
P->add_positional_term(U);
if (N) {
P->adjust_window(N->get_termpos());
delete N;
}
}
adj_expr(P) ::= adj_expr(Q) ADJ(N) TERM(T). {
P = Q;
P->add_positional_term(T);
if (N) {
P->adjust_window(N->get_termpos());
delete N;
}
}
// Select yacc syntax highlighting in vim editor: vim: syntax=yacc
// (lemon syntax colouring isn't supplied by default; yacc does an OK job).
|