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 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017
|
// File: index.xml
// File: classXapian_1_1BM25Weight.xml
%feature("docstring") Xapian::BM25Weight "
BM25 weighting scheme.
BM25 weighting options : The BM25 formula is \\\\[
\\\\frac{k_{2}.n_{q}}{1+L_{d}}+\\\\sum_{t}\\\\frac{(k_{3}+1)q_{t
}}{k_{3}+q_{t}}.\\\\frac{(k_{1}+1)f_{t,d}}{k_{1}((1-b)+bL_{d})+f_{t,d}
}.w_{t} \\\\] where $w_{t}$ is the termweight of term t
$f_{t,d}$ is the within document frequency of term t in document d
$q_{t}$ is the within query frequency of term t
$L_{d}$ is the normalised length of document d
$n_{q}$ is the size of the query
$k_{1}$, $k_{2}$, $k_{3}$ and $b$ are user specified parameters ";
%feature("docstring") Xapian::BM25Weight::BM25Weight "
Construct a BM25 weight.
Xapian::BM25Weight::BM25Weight(double k1_, double k2_, double k3_,
double b_, double min_normlen_)
Parameters:
-----------
k1: governs the importance of within document frequency. Must be >=
0. 0 means ignore wdf. Default is 1.
k2: compensation factor for the high wdf values in large documents.
Must be >= 0. 0 means no compensation. Default is 0.
k3: governs the importance of within query frequency. Must be >= 0. 0
means ignore wqf. Default is 1.
b: Relative importance of within document frequency and document
length. Must be >= 0 and <= 1. Default is 0.5.
min_normlen: specifies a cutoff on the minimum value that can be used
for a normalised document length - smaller values will be forced up to
this cutoff. This prevents very small documents getting a huge bonus
weight. Default is 0.5. ";
%feature("docstring") Xapian::BM25Weight::BM25Weight "Xapian::BM25Weight::BM25Weight() ";
%feature("docstring") Xapian::BM25Weight::clone "
Return a new weight object of this type.
BM25Weight* Xapian::BM25Weight::clone() const
A subclass called FooWeight taking parameters param1 and param2 should
implement this as:
virtual FooWeight * clone() const { return new FooWeight(param1,
param2); } ";
%feature("docstring") Xapian::BM25Weight::~BM25Weight "Xapian::BM25Weight::~BM25Weight() ";
%feature("docstring") Xapian::BM25Weight::name "
Name of the weighting scheme.
std::string Xapian::BM25Weight::name() const
If the subclass is called FooWeight, this should return \"Foo\". ";
%feature("docstring") Xapian::BM25Weight::serialise "
Serialise object parameters into a string.
std::string Xapian::BM25Weight::serialise() const ";
%feature("docstring") Xapian::BM25Weight::unserialise "
Create object given string serialisation returned by serialise().
BM25Weight* Xapian::BM25Weight::unserialise(const std::string &s)
const ";
%feature("docstring") Xapian::BM25Weight::get_sumpart "
Get a weight which is part of the sum over terms being performed.
Xapian::weight Xapian::BM25Weight::get_sumpart(Xapian::termcount wdf,
Xapian::doclength len) const
This returns a weight for a given term and document. These weights are
summed to give a total weight for the document.
Parameters:
-----------
wdf: the within document frequency of the term.
len: the (unnormalised) document length. ";
%feature("docstring") Xapian::BM25Weight::get_maxpart "
Gets the maximum value that get_sumpart() may return.
Xapian::weight Xapian::BM25Weight::get_maxpart() const
This is used in optimising searches, by having the postlist tree decay
appropriately when parts of it can have limited, or no, further
effect. ";
%feature("docstring") Xapian::BM25Weight::get_sumextra "
Get an extra weight for a document to add to the sum calculated over
the query terms.
Xapian::weight Xapian::BM25Weight::get_sumextra(Xapian::doclength len)
const
This returns a weight for a given document, and is used by some
weighting schemes to account for influence such as document length.
Parameters:
-----------
len: the (unnormalised) document length. ";
%feature("docstring") Xapian::BM25Weight::get_maxextra "
Gets the maximum value that get_sumextra() may return.
Xapian::weight Xapian::BM25Weight::get_maxextra() const
This is used in optimising searches. ";
%feature("docstring") Xapian::BM25Weight::get_sumpart_needs_doclength
"
return false if the weight object doesn't need doclength
bool Xapian::BM25Weight::get_sumpart_needs_doclength() const ";
// File: classXapian_1_1BoolWeight.xml
%feature("docstring") Xapian::BoolWeight "
Boolean weighting scheme (everything gets 0). ";
%feature("docstring") Xapian::BoolWeight::clone "
Return a new weight object of this type.
BoolWeight* Xapian::BoolWeight::clone() const
A subclass called FooWeight taking parameters param1 and param2 should
implement this as:
virtual FooWeight * clone() const { return new FooWeight(param1,
param2); } ";
%feature("docstring") Xapian::BoolWeight::BoolWeight "Xapian::BoolWeight::BoolWeight() ";
%feature("docstring") Xapian::BoolWeight::~BoolWeight "Xapian::BoolWeight::~BoolWeight() ";
%feature("docstring") Xapian::BoolWeight::name "
Name of the weighting scheme.
std::string Xapian::BoolWeight::name() const
If the subclass is called FooWeight, this should return \"Foo\". ";
%feature("docstring") Xapian::BoolWeight::serialise "
Serialise object parameters into a string.
std::string Xapian::BoolWeight::serialise() const ";
%feature("docstring") Xapian::BoolWeight::unserialise "
Create object given string serialisation returned by serialise().
BoolWeight* Xapian::BoolWeight::unserialise(const std::string &s)
const ";
%feature("docstring") Xapian::BoolWeight::get_sumpart "
Get a weight which is part of the sum over terms being performed.
Xapian::weight Xapian::BoolWeight::get_sumpart(Xapian::termcount wdf,
Xapian::doclength len) const
This returns a weight for a given term and document. These weights are
summed to give a total weight for the document.
Parameters:
-----------
wdf: the within document frequency of the term.
len: the (unnormalised) document length. ";
%feature("docstring") Xapian::BoolWeight::get_maxpart "
Gets the maximum value that get_sumpart() may return.
Xapian::weight Xapian::BoolWeight::get_maxpart() const
This is used in optimising searches, by having the postlist tree decay
appropriately when parts of it can have limited, or no, further
effect. ";
%feature("docstring") Xapian::BoolWeight::get_sumextra "
Get an extra weight for a document to add to the sum calculated over
the query terms.
Xapian::weight Xapian::BoolWeight::get_sumextra(Xapian::doclength len)
const
This returns a weight for a given document, and is used by some
weighting schemes to account for influence such as document length.
Parameters:
-----------
len: the (unnormalised) document length. ";
%feature("docstring") Xapian::BoolWeight::get_maxextra "
Gets the maximum value that get_sumextra() may return.
Xapian::weight Xapian::BoolWeight::get_maxextra() const
This is used in optimising searches. ";
%feature("docstring") Xapian::BoolWeight::get_sumpart_needs_doclength
"
return false if the weight object doesn't need doclength
bool Xapian::BoolWeight::get_sumpart_needs_doclength() const ";
// File: classXapian_1_1CategorySelectMatchSpy.xml
%feature("docstring") Xapian::CategorySelectMatchSpy "
MatchSpy for classifying matching documents by their values. ";
%feature("docstring")
Xapian::CategorySelectMatchSpy::CategorySelectMatchSpy "
Default constructor.
Xapian::CategorySelectMatchSpy::CategorySelectMatchSpy() ";
%feature("docstring")
Xapian::CategorySelectMatchSpy::CategorySelectMatchSpy "
Construct a MatchSpy which classifies matching documents based on the
values in a particular slot.
Xapian::CategorySelectMatchSpy::CategorySelectMatchSpy(Xapian::valueno
valno)
Further slots can be added by calling add_slot(). ";
%feature("docstring")
Xapian::CategorySelectMatchSpy::score_categorisation "
Return a score reflecting how \"good\" a categorisation is.
double
Xapian::CategorySelectMatchSpy::score_categorisation(Xapian::valueno
valno, double desired_no_of_categories=0.0)
If you don't want to show a poor categorisation, or have multiple
categories and only space in your user interface to show a few, you
want to be able to decide how \"good\" a categorisation is. We define
a good categorisation as one which offers a fairly even split, and
(optionally) about a specified number of options.
Parameters:
-----------
valno: Value number to look at the categorisation for.
desired_no_of_categories: The desired number of categories - this is
a floating point value, so you can ask for 5.5 if you'd like \"about 5
or 6 categories\". The default is to desire the number of categories
that there actually are, so the score then only reflects how even the
split is.
A score for the categorisation for value valno - lower is better, with
a perfectly even split across the right number of categories scoring
0. ";
%feature("docstring")
Xapian::CategorySelectMatchSpy::build_numeric_ranges "
Turn a category containing sort-encoded numeric values into a set of
ranges.
bool
Xapian::CategorySelectMatchSpy::build_numeric_ranges(Xapian::valueno
valno, size_t max_ranges)
For \"continuous\" values (such as price, height, weight, etc), there
will usually be too many different values to offer the user, and the
user won't want to restrict to an exact value anyway.
This method produces a set of ranges for a particular value number.
The ranges replace the category data for value valno - the keys are
either empty (entry for \"no value set\"), <= 9 bytes long (a
singleton encoded value), or > 9 bytes long (the first 9 bytes are the
encoded range start, the rest the encoded range end).
Parameters:
-----------
valno: Value number to produce ranges for.
max_ranges: Group into at most this many ranges.
true if ranges could be built; false if not (e.g. all values the same,
no values set, or other reasons). ";
// File: classXapian_1_1Database.xml
%feature("docstring") Xapian::Database "
This class is used to access a database, or a group of databases.
For searching, this class is used in conjunction with an Enquire
object.
Parameters:
-----------
InvalidArgumentError: will be thrown if an invalid argument is
supplied, for example, an unknown database type.
DatabaseOpeningError: may be thrown if the database cannot be opened
(for example, a required file cannot be found).
DatabaseVersionError: may be thrown if the database is in an
unsupported format (for example, created by a newer version of Xapian
which uses an incompatible format). ";
%feature("docstring") Xapian::Database::add_database "
Add an existing database (or group of databases) to those accessed by
this object.
void Xapian::Database::add_database(const Database &database)
Parameters:
-----------
database: the database(s) to add. ";
%feature("docstring") Xapian::Database::Database "
Create a Database with no databases in.
Xapian::Database::Database() ";
%feature("docstring") Xapian::Database::Database "
Open a Database, automatically determining the database backend to
use.
Xapian::Database::Database(const std::string &path)
Parameters:
-----------
path: directory that the database is stored in. ";
%feature("docstring") Xapian::Database::~Database "
Destroy this handle on the database.
virtual Xapian::Database::~Database()
If there are no copies of this object remaining, the database(s) will
be closed. ";
%feature("docstring") Xapian::Database::Database "
Copying is allowed.
Xapian::Database::Database(const Database &other)
The internals are reference counted, so copying is cheap. ";
%feature("docstring") Xapian::Database::reopen "
Re-open the database.
void Xapian::Database::reopen()
This re-opens the database(s) to the latest available version(s). It
can be used either to make sure the latest results are returned, or to
recover from a Xapian::DatabaseModifiedError. ";
%feature("docstring") Xapian::Database::get_description "
Return a string describing this object.
virtual std::string Xapian::Database::get_description() const ";
%feature("docstring") Xapian::Database::postlist_begin "
An iterator pointing to the start of the postlist for a given term.
PostingIterator Xapian::Database::postlist_begin(const std::string
&tname) const
If the term name is the empty string, the iterator returned will list
all the documents in the database. Such an iterator will always return
a WDF value of 1, since there is no obvious meaning for this quantity
in this case. ";
%feature("docstring") Xapian::Database::postlist_end "
Corresponding end iterator to postlist_begin().
PostingIterator Xapian::Database::postlist_end(const std::string &)
const ";
%feature("docstring") Xapian::Database::termlist_begin "
An iterator pointing to the start of the termlist for a given
document.
TermIterator Xapian::Database::termlist_begin(Xapian::docid did) const
";
%feature("docstring") Xapian::Database::termlist_end "
Corresponding end iterator to termlist_begin().
TermIterator Xapian::Database::termlist_end(Xapian::docid) const ";
%feature("docstring") Xapian::Database::has_positions "
Does this database have any positional information?
bool Xapian::Database::has_positions() const ";
%feature("docstring") Xapian::Database::positionlist_begin "
An iterator pointing to the start of the position list for a given
term in a given document.
PositionIterator Xapian::Database::positionlist_begin(Xapian::docid
did, const std::string &tname) const ";
%feature("docstring") Xapian::Database::positionlist_end "
Corresponding end iterator to positionlist_begin().
PositionIterator Xapian::Database::positionlist_end(Xapian::docid,
const std::string &) const ";
%feature("docstring") Xapian::Database::allterms_begin "
An iterator which runs across all terms in the database.
TermIterator Xapian::Database::allterms_begin() const ";
%feature("docstring") Xapian::Database::allterms_end "
Corresponding end iterator to allterms_begin().
TermIterator Xapian::Database::allterms_end() const ";
%feature("docstring") Xapian::Database::allterms_begin "
An iterator which runs across all terms with a given prefix.
TermIterator Xapian::Database::allterms_begin(const std::string
&prefix) const
This is functionally similar to getting an iterator with
allterms_begin() and then calling skip_to(prefix) on that iterator to
move to the start of the prefix, but is more convenient (because it
detects the end of the prefixed terms), and may be more efficient than
simply calling skip_to() after opening the iterator, particularly for
network databases.
Parameters:
-----------
prefix: The prefix to restrict the returned terms to. ";
%feature("docstring") Xapian::Database::allterms_end "
Corresponding end iterator to allterms_begin(prefix).
TermIterator Xapian::Database::allterms_end(const std::string &) const
";
%feature("docstring") Xapian::Database::get_doccount "
Get the number of documents in the database.
Xapian::doccount Xapian::Database::get_doccount() const ";
%feature("docstring") Xapian::Database::get_lastdocid "
Get the highest document id which has been used in the database.
Xapian::docid Xapian::Database::get_lastdocid() const ";
%feature("docstring") Xapian::Database::get_avlength "
Get the average length of the documents in the database.
Xapian::doclength Xapian::Database::get_avlength() const ";
%feature("docstring") Xapian::Database::get_termfreq "
Get the number of documents in the database indexed by a given term.
Xapian::doccount Xapian::Database::get_termfreq(const std::string
&tname) const ";
%feature("docstring") Xapian::Database::term_exists "
Check if a given term exists in the database.
bool Xapian::Database::term_exists(const std::string &tname) const
Return true if and only if the term exists in the database. This is
the same as (get_termfreq(tname) != 0), but will often be more
efficient. ";
%feature("docstring") Xapian::Database::get_collection_freq "
Return the total number of occurrences of the given term.
Xapian::termcount Xapian::Database::get_collection_freq(const
std::string &tname) const
This is the sum of the number of occurrences of the term in each
document it indexes: i.e., the sum of the within document frequencies
of the term.
Parameters:
-----------
tname: The term whose collection frequency is being requested. ";
%feature("docstring") Xapian::Database::get_doclength "
Get the length of a document.
Xapian::doclength Xapian::Database::get_doclength(Xapian::docid did)
const ";
%feature("docstring") Xapian::Database::keep_alive "
Send a \"keep-alive\" to remote databases to stop them timing out.
void Xapian::Database::keep_alive() ";
%feature("docstring") Xapian::Database::get_document "
Get a document from the database, given its document id.
Xapian::Document Xapian::Database::get_document(Xapian::docid did)
const
This method returns a Xapian::Document object which provides the
information about a document.
Parameters:
-----------
did: The document id for which to retrieve the data.
A Xapian::Document object containing the document data
Parameters:
-----------
Xapian::DocNotFoundError: The document specified could not be found
in the database. ";
%feature("docstring") Xapian::Database::get_spelling_suggestion "
Suggest a spelling correction.
std::string Xapian::Database::get_spelling_suggestion(const
std::string &word, unsigned max_edit_distance=2) const
Parameters:
-----------
word: The potentially misspelled word.
max_edit_distance: Only consider words which are at most
max_edit_distance edits from word. An edit is a character insertion,
deletion, or the transposition of two adjacent characters (default is
2). ";
%feature("docstring") Xapian::Database::spellings_begin "
An iterator which returns all the spelling correction targets.
Xapian::TermIterator Xapian::Database::spellings_begin() const
This returns all the words which are considered as targets for the
spelling correction algorithm. The frequency of each word is available
as the term frequency of each entry in the returned iterator. ";
%feature("docstring") Xapian::Database::spellings_end "
Corresponding end iterator to spellings_begin().
Xapian::TermIterator Xapian::Database::spellings_end() const ";
%feature("docstring") Xapian::Database::synonyms_begin "
An iterator which returns all the synonyms for a given term.
Xapian::TermIterator Xapian::Database::synonyms_begin(const
std::string &term) const
Parameters:
-----------
term: The term to return synonyms for. ";
%feature("docstring") Xapian::Database::synonyms_end "
Corresponding end iterator to synonyms_begin(term).
Xapian::TermIterator Xapian::Database::synonyms_end(const std::string
&) const ";
%feature("docstring") Xapian::Database::synonym_keys_begin "
An iterator which returns all terms which have synonyms.
Xapian::TermIterator Xapian::Database::synonym_keys_begin(const
std::string &prefix=\"\") const
Parameters:
-----------
prefix: If non-empty, only terms with this prefix are returned. ";
%feature("docstring") Xapian::Database::synonym_keys_end "
Corresponding end iterator to synonym_keys_begin(prefix).
Xapian::TermIterator Xapian::Database::synonym_keys_end(const
std::string &=\"\") const ";
%feature("docstring") Xapian::Database::get_metadata "
Get the user-specified metadata associated with a given key.
std::string Xapian::Database::get_metadata(const std::string &key)
const
User-specified metadata allows you to store arbitrary information in
the form of (key,tag) pairs. See WritableDatabase::set_metadata() for
more information.
When invoked on a Xapian::Database object representing multiple
databases, currently only the metadata for the first is considered but
this behaviour may change in the future.
If there is no piece of metadata associated with the specified key, an
empty string is returned (this applies even for backends which don't
support metadata).
Empty keys are not valid, and specifying one will cause an exception.
Parameters:
-----------
key: The key of the metadata item to access.
The retrieved metadata item's value.
Parameters:
-----------
Xapian::InvalidArgumentError: will be thrown if the key supplied is
empty.
Xapian::UnimplementedError: will be thrown if the database backend in
use doesn't support user- specified metadata. ";
// File: classXapian_1_1DateValueRangeProcessor.xml
%feature("docstring") Xapian::DateValueRangeProcessor "
Handle a date range.
Begin and end must be dates in a recognised format. ";
%feature("docstring")
Xapian::DateValueRangeProcessor::DateValueRangeProcessor "
Constructor.
Xapian::DateValueRangeProcessor::DateValueRangeProcessor(Xapian::value
no valno_, bool prefer_mdy_=false, int epoch_year_=1970)
Parameters:
-----------
valno_: The value number to return from operator().
prefer_mdy_: Should ambiguous dates be interpreted as month/day/year
rather than day/month/year? (default: false)
epoch_year_: Year to use as the epoch for dates with 2 digit years
(default: 1970, so 1/1/69 is 2069 while 1/1/70 is 1970). ";
// File: classXapian_1_1DocIDWrapper.xml
%feature("docstring") Xapian::DocIDWrapper "";
%feature("docstring") Xapian::DocIDWrapper::DocIDWrapper "Xapian::DocIDWrapper::DocIDWrapper(docid did_) ";
// File: classXapian_1_1Document.xml
%feature("docstring") Xapian::Document "
A document in the database - holds data, values, terms, and postings.
";
%feature("docstring") Xapian::Document::Document "
Copying is allowed.
Xapian::Document::Document(const Document &other)
The internals are reference counted, so copying is cheap. ";
%feature("docstring") Xapian::Document::Document "
Make a new empty Document.
Xapian::Document::Document() ";
%feature("docstring") Xapian::Document::~Document "
Destructor.
Xapian::Document::~Document() ";
%feature("docstring") Xapian::Document::get_value "
Get value by number.
std::string Xapian::Document::get_value(Xapian::valueno valueno) const
Returns an empty string if no value with the given number is present
in the document.
Parameters:
-----------
valueno: The number of the value. ";
%feature("docstring") Xapian::Document::add_value "
Add a new value.
void Xapian::Document::add_value(Xapian::valueno valueno, const
std::string &value)
It will replace any existing value with the same number. ";
%feature("docstring") Xapian::Document::remove_value "
Remove any value with the given number.
void Xapian::Document::remove_value(Xapian::valueno valueno) ";
%feature("docstring") Xapian::Document::clear_values "
Remove all values associated with the document.
void Xapian::Document::clear_values() ";
%feature("docstring") Xapian::Document::get_data "
Get data stored in the document.
std::string Xapian::Document::get_data() const
This is a potentially expensive operation, and shouldn't normally be
used in a match decider functor. Put data for use by match deciders in
a value instead. ";
%feature("docstring") Xapian::Document::set_data "
Set data stored in the document.
void Xapian::Document::set_data(const std::string &data) ";
%feature("docstring") Xapian::Document::add_posting "
Add an occurrence of a term at a particular position.
void Xapian::Document::add_posting(const std::string &tname,
Xapian::termpos tpos, Xapian::termcount wdfinc=1)
Multiple occurrences of the term at the same position are represented
only once in the positional information, but do increase the wdf.
If the term is not already in the document, it will be added to it.
Parameters:
-----------
tname: The name of the term.
tpos: The position of the term.
wdfinc: The increment that will be applied to the wdf for this term.
";
%feature("docstring") Xapian::Document::add_term "
Add a term to the document, without positional information.
void Xapian::Document::add_term(const std::string &tname,
Xapian::termcount wdfinc=1)
Any existing positional information for the term will be left
unmodified.
Parameters:
-----------
tname: The name of the term.
wdfinc: The increment that will be applied to the wdf for this term.
";
%feature("docstring") Xapian::Document::remove_posting "
Remove a posting of a term from the document.
void Xapian::Document::remove_posting(const std::string &tname,
Xapian::termpos tpos, Xapian::termcount wdfdec=1)
Note that the term will still index the document even if all
occurrences are removed. To remove a term from a document completely,
use remove_term().
Parameters:
-----------
tname: The name of the term.
tpos: The position of the term.
wdfdec: The decrement that will be applied to the wdf when removing
this posting. The wdf will not go below the value of 0.
Parameters:
-----------
Xapian::InvalidArgumentError: will be thrown if the term is not at
the position specified in the position list for this term in this
document.
Xapian::InvalidArgumentError: will be thrown if the term is not in
the document ";
%feature("docstring") Xapian::Document::remove_term "
Remove a term and all postings associated with it.
void Xapian::Document::remove_term(const std::string &tname)
Parameters:
-----------
tname: The name of the term.
Parameters:
-----------
Xapian::InvalidArgumentError: will be thrown if the term is not in
the document ";
%feature("docstring") Xapian::Document::clear_terms "
Remove all terms (and postings) from the document.
void Xapian::Document::clear_terms() ";
%feature("docstring") Xapian::Document::termlist_count "
The length of the termlist - i.e.
Xapian::termcount Xapian::Document::termlist_count() const
the number of different terms which index this document. ";
%feature("docstring") Xapian::Document::termlist_begin "
Iterator for the terms in this document.
TermIterator Xapian::Document::termlist_begin() const ";
%feature("docstring") Xapian::Document::termlist_end "
Equivalent end iterator for termlist_begin().
TermIterator Xapian::Document::termlist_end() const ";
%feature("docstring") Xapian::Document::values_count "
Count the values in this document.
Xapian::termcount Xapian::Document::values_count() const ";
%feature("docstring") Xapian::Document::values_begin "
Iterator for the values in this document.
ValueIterator Xapian::Document::values_begin() const ";
%feature("docstring") Xapian::Document::values_end "
Equivalent end iterator for values_begin().
ValueIterator Xapian::Document::values_end() const ";
%feature("docstring") Xapian::Document::get_docid "
Get the document id which is associated with this document (if any).
docid Xapian::Document::get_docid() const
NB If multiple databases are being searched together, then this will
be the document id in the individual database, not the merged
database!
If this document came from a database, return the document id in that
database. Otherwise, return 0. ";
%feature("docstring") Xapian::Document::get_description "
Return a string describing this object.
std::string Xapian::Document::get_description() const ";
// File: classXapian_1_1Enquire.xml
%feature("docstring") Xapian::Enquire "
This class provides an interface to the information retrieval system
for the purpose of searching.
Databases are usually opened lazily, so exceptions may not be thrown
where you would expect them to be. You should catch Xapian::Error
exceptions when calling any method in Xapian::Enquire.
Parameters:
-----------
Xapian::InvalidArgumentError: will be thrown if an invalid argument
is supplied, for example, an unknown database type. ";
%feature("docstring") Xapian::Enquire::Enquire "
Copying is allowed (and is cheap).
Xapian::Enquire::Enquire(const Enquire &other) ";
%feature("docstring") Xapian::Enquire::Enquire "
Create a Xapian::Enquire object.
Xapian::Enquire::Enquire(const Database &database, ErrorHandler
*errorhandler_=0)
This specification cannot be changed once the Xapian::Enquire is
opened: you must create a new Xapian::Enquire object to access a
different database, or set of databases.
The database supplied must have been initialised (ie, must not be the
result of calling the Database::Database() constructor). If you need
to handle a situation where you have no index gracefully, a database
created with InMemory::open() can be passed here, which represents a
completely empty database.
Parameters:
-----------
database: Specification of the database or databases to use.
errorhandler_: A pointer to the error handler to use. Ownership of
the object pointed to is not assumed by the Xapian::Enquire object -
the user should delete the Xapian::ErrorHandler object after the
Xapian::Enquire object is deleted. To use no error handler, this
parameter should be 0.
Parameters:
-----------
Xapian::InvalidArgumentError: will be thrown if an initialised
Database object is supplied. ";
%feature("docstring") Xapian::Enquire::~Enquire "
Close the Xapian::Enquire object.
Xapian::Enquire::~Enquire() ";
%feature("docstring") Xapian::Enquire::set_query "
Set the query to run.
void Xapian::Enquire::set_query(const Xapian::Query &query,
Xapian::termcount qlen=0)
Parameters:
-----------
query: the new query to run.
qlen: the query length to use in weight calculations - by default the
sum of the wqf of all terms is used. ";
%feature("docstring") Xapian::Enquire::get_query "
Get the query which has been set.
const Xapian::Query& Xapian::Enquire::get_query() const
This is only valid after set_query() has been called.
Parameters:
-----------
Xapian::InvalidArgumentError: will be thrown if query has not yet
been set. ";
%feature("docstring") Xapian::Enquire::set_weighting_scheme "
Set the weighting scheme to use for queries.
void Xapian::Enquire::set_weighting_scheme(const Weight &weight_)
Parameters:
-----------
weight_: the new weighting scheme. If no weighting scheme is
specified, the default is BM25 with the default parameters. ";
%feature("docstring") Xapian::Enquire::set_collapse_key "
Set the collapse key to use for queries.
void Xapian::Enquire::set_collapse_key(Xapian::valueno collapse_key)
Parameters:
-----------
collapse_key: value number to collapse on - at most one MSet entry
with each particular value will be returned.
The entry returned will be the best entry with that particular value
(highest weight or highest sorting key).
An example use might be to create a value for each document containing
an MD5 hash of the document contents. Then duplicate documents from
different sources can be eliminated at search time (it's better to
eliminate duplicates at index time, but this may not be always be
possible - for example the search may be over more than one Xapian
database).
Another use is to group matches in a particular category (e.g. you
might collapse a mailing list search on the Subject: so that there's
only one result per discussion thread). In this case you can use
get_collapse_count() to give the user some idea how many other results
there are. And if you index the Subject: as a boolean term as well as
putting it in a value, you can offer a link to a non-collapsed search
restricted to that thread using a boolean filter.
(default is Xapian::BAD_VALUENO which means no collapsing). ";
%feature("docstring") Xapian::Enquire::set_docid_order "
Set the direction in which documents are ordered by document id in the
returned MSet.
void Xapian::Enquire::set_docid_order(docid_order order)
This order only has an effect on documents which would otherwise have
equal rank. For a weighted probabilistic match with no sort value,
this means documents with equal weight. For a boolean match, with no
sort value, this means all documents. And if a sort value is used,
this means documents with equal sort value (and also equal weight if
ordering on relevance after the sort).
Parameters:
-----------
order: This can be: Xapian::Enquire::ASCENDING docids sort in
ascending order (default)
Xapian::Enquire::DESCENDING docids sort in descending order
Xapian::Enquire::DONT_CARE docids sort in whatever order is most
efficient for the backend
Note: If you add documents in strict date order, then a boolean search
- i.e. set_weighting_scheme(Xapian::BoolWeight()) - with
set_docid_order(Xapian::Enquire::DESCENDING) is a very efficient way
to perform \"sort by date, newest first\". ";
%feature("docstring") Xapian::Enquire::set_cutoff "
Set the percentage and/or weight cutoffs.
void Xapian::Enquire::set_cutoff(Xapian::percent percent_cutoff,
Xapian::weight weight_cutoff=0)
Parameters:
-----------
percent_cutoff: Minimum percentage score for returned documents. If a
document has a lower percentage score than this, it will not appear in
the MSet. If your intention is to return only matches which contain
all the terms in the query, then it's more efficient to use
Xapian::Query::OP_AND instead of Xapian::Query::OP_OR in the query
than to use set_cutoff(100). (default 0 => no percentage cut-off).
weight_cutoff: Minimum weight for a document to be returned. If a
document has a lower score that this, it will not appear in the MSet.
It is usually only possible to choose an appropriate weight for cutoff
based on the results of a previous run of the same query; this is thus
mainly useful for alerting operations. The other potential use is with
a user specified weighting scheme. (default 0 => no weight cut-off).
";
%feature("docstring") Xapian::Enquire::set_sort_by_relevance "
Set the sorting to be by relevance only.
void Xapian::Enquire::set_sort_by_relevance()
This is the default. ";
%feature("docstring") Xapian::Enquire::set_sort_by_value "
Set the sorting to be by value only.
void Xapian::Enquire::set_sort_by_value(Xapian::valueno sort_key, bool
ascending=true)
NB sorting of values uses a string comparison, so you'll need to store
numbers padded with leading zeros or spaces, or with the number of
digits prepended.
Parameters:
-----------
sort_key: value number to sort on.
ascending: If true, documents values which sort higher by string
compare are better. If false, the sort order is reversed. (default
true) ";
%feature("docstring") Xapian::Enquire::set_sort_by_key "
Set the sorting to be by key generated from values only.
void Xapian::Enquire::set_sort_by_key(Xapian::Sorter *sorter, bool
ascending=true)
Parameters:
-----------
sorter: The functor to use for generating keys.
ascending: If true, documents values which sort higher by string
compare are better. If false, the sort order is reversed. (default
true) ";
%feature("docstring")
Xapian::Enquire::set_sort_by_value_then_relevance "
Set the sorting to be by value, then by relevance for documents with
the same value.
void Xapian::Enquire::set_sort_by_value_then_relevance(Xapian::valueno
sort_key, bool ascending=true)
NB sorting of values uses a string comparison, so you'll need to store
numbers padded with leading zeros or spaces, or with the number of
digits prepended.
Parameters:
-----------
sort_key: value number to sort on.
ascending: If true, documents values which sort higher by string
compare are better. If false, the sort order is reversed. (default
true) ";
%feature("docstring") Xapian::Enquire::set_sort_by_key_then_relevance
"
Set the sorting to be by keys generated from values, then by relevance
for documents with identical keys.
void Xapian::Enquire::set_sort_by_key_then_relevance(Xapian::Sorter
*sorter, bool ascending=true)
Parameters:
-----------
sorter: The functor to use for generating keys.
ascending: If true, keys which sort higher by string compare are
better. If false, the sort order is reversed. (default true) ";
%feature("docstring")
Xapian::Enquire::set_sort_by_relevance_then_value "
Set the sorting to be by relevance then value.
void Xapian::Enquire::set_sort_by_relevance_then_value(Xapian::valueno
sort_key, bool ascending=true)
NB sorting of values uses a string comparison, so you'll need to store
numbers padded with leading zeros or spaces, or with the number of
digits prepended.
Note that with the default BM25 weighting scheme parameters, non-
identical documents will rarely have the same weight, so this setting
will give very similar results to set_sort_by_relevance(). It becomes
more useful with particular BM25 parameter settings (e.g.
BM25Weight(1,0,1,0,0)) or custom weighting schemes.
Parameters:
-----------
sort_key: value number to sort on.
ascending: If true, documents values which sort higher by string
compare are better. If false, the sort order is reversed. (default
true) ";
%feature("docstring") Xapian::Enquire::set_sort_by_relevance_then_key
"
Set the sorting to be by relevance, then by keys generated from
values.
void Xapian::Enquire::set_sort_by_relevance_then_key(Xapian::Sorter
*sorter, bool ascending=true)
Note that with the default BM25 weighting scheme parameters, non-
identical documents will rarely have the same weight, so this setting
will give very similar results to set_sort_by_relevance(). It becomes
more useful with particular BM25 parameter settings (e.g.
BM25Weight(1,0,1,0,0)) or custom weighting schemes.
Parameters:
-----------
sorter: The functor to use for generating keys.
ascending: If true, keys which sort higher by string compare are
better. If false, the sort order is reversed. (default true) ";
%feature("docstring") Xapian::Enquire::get_mset "
Get (a portion of) the match set for the current query.
MSet Xapian::Enquire::get_mset(Xapian::doccount first,
Xapian::doccount maxitems, Xapian::doccount checkatleast=0, const RSet
*omrset=0, const MatchDecider *mdecider=0) const
Parameters:
-----------
first: the first item in the result set to return. A value of zero
corresponds to the first item returned being that with the highest
score. A value of 10 corresponds to the first 10 items being ignored,
and the returned items starting at the eleventh.
maxitems: the maximum number of items to return.
checkatleast: the minimum number of items to check. Because the
matcher optimises, it won't consider every document which might match,
so the total number of matches is estimated. Setting checkatleast
forces it to consider at least this many matches and so allows for
reliable paging links.
omrset: the relevance set to use when performing the query.
mdecider: a decision functor to use to decide whether a given
document should be put in the MSet.
matchspy: a decision functor to use to decide whether a given
document should be put in the MSet. The matchspy is applied to every
document which is a potential candidate for the MSet, so if there are
checkatleast or more such documents, the matchspy will see at least
checkatleast. The mdecider is assumed to be a relatively expensive
test so may be applied in a lazier fashion.
A Xapian::MSet object containing the results of the query.
Parameters:
-----------
Xapian::InvalidArgumentError: See class documentation. ";
%feature("docstring") Xapian::Enquire::get_mset "MSet
Xapian::Enquire::get_mset(Xapian::doccount first, Xapian::doccount
maxitems, Xapian::doccount checkatleast, const RSet *omrset, const
MatchDecider *mdecider, const MatchDecider *matchspy) const ";
%feature("docstring") Xapian::Enquire::get_mset "MSet
Xapian::Enquire::get_mset(Xapian::doccount first, Xapian::doccount
maxitems, const RSet *omrset, const MatchDecider *mdecider=0) const ";
%feature("docstring") Xapian::Enquire::XAPIAN_DEPRECATED "
Deprecated in Xapian 1.0.0, use INCLUDE_QUERY_TERMS instead.
Xapian::Enquire::XAPIAN_DEPRECATED(static const int
include_query_terms) ";
%feature("docstring") Xapian::Enquire::XAPIAN_DEPRECATED "
Deprecated in Xapian 1.0.0, use USE_EXACT_TERMFREQ instead.
Xapian::Enquire::XAPIAN_DEPRECATED(static const int
use_exact_termfreq) ";
%feature("docstring") Xapian::Enquire::get_eset "
Get the expand set for the given rset.
ESet Xapian::Enquire::get_eset(Xapian::termcount maxitems, const RSet
&omrset, int flags=0, double k=1.0, const Xapian::ExpandDecider
*edecider=0) const
Parameters:
-----------
maxitems: the maximum number of items to return.
omrset: the relevance set to use when performing the expand
operation.
flags: zero or more of these values |-ed together:
Xapian::Enquire::INCLUDE_QUERY_TERMS query terms may be returned from
expand
Xapian::Enquire::USE_EXACT_TERMFREQ for multi dbs, calculate the exact
termfreq; otherwise an approximation is used which can greatly improve
efficiency, but still returns good results.
k: the parameter k in the query expansion algorithm (default is 1.0)
edecider: a decision functor to use to decide whether a given term
should be put in the ESet
An ESet object containing the results of the expand.
Parameters:
-----------
Xapian::InvalidArgumentError: See class documentation. ";
%feature("docstring") Xapian::Enquire::get_eset "
Get the expand set for the given rset.
ESet Xapian::Enquire::get_eset(Xapian::termcount maxitems, const RSet
&omrset, const Xapian::ExpandDecider *edecider) const
Parameters:
-----------
maxitems: the maximum number of items to return.
omrset: the relevance set to use when performing the expand
operation.
edecider: a decision functor to use to decide whether a given term
should be put in the ESet
An ESet object containing the results of the expand.
Parameters:
-----------
Xapian::InvalidArgumentError: See class documentation. ";
%feature("docstring") Xapian::Enquire::get_matching_terms_begin "
Get terms which match a given document, by document id.
TermIterator Xapian::Enquire::get_matching_terms_begin(Xapian::docid
did) const
This method returns the terms in the current query which match the
given document.
It is possible for the document to have been removed from the database
between the time it is returned in an MSet, and the time that this
call is made. If possible, you should specify an MSetIterator instead
of a Xapian::docid, since this will enable database backends with
suitable support to prevent this occurring.
Note that a query does not need to have been run in order to make this
call.
Parameters:
-----------
did: The document id for which to retrieve the matching terms.
An iterator returning the terms which match the document. The terms
will be returned (as far as this makes any sense) in the same order as
the terms in the query. Terms will not occur more than once, even if
they do in the query.
Parameters:
-----------
Xapian::InvalidArgumentError: See class documentation.
Xapian::DocNotFoundError: The document specified could not be found
in the database. ";
%feature("docstring") Xapian::Enquire::get_matching_terms_end "
End iterator corresponding to get_matching_terms_begin().
TermIterator Xapian::Enquire::get_matching_terms_end(Xapian::docid)
const ";
%feature("docstring") Xapian::Enquire::get_matching_terms_begin "
Get terms which match a given document, by match set item.
TermIterator Xapian::Enquire::get_matching_terms_begin(const
MSetIterator &it) const
This method returns the terms in the current query which match the
given document.
If the underlying database has suitable support, using this call
(rather than passing a Xapian::docid) will enable the system to ensure
that the correct data is returned, and that the document has not been
deleted or changed since the query was performed.
Parameters:
-----------
it: The iterator for which to retrieve the matching terms.
An iterator returning the terms which match the document. The terms
will be returned (as far as this makes any sense) in the same order as
the terms in the query. Terms will not occur more than once, even if
they do in the query.
Parameters:
-----------
Xapian::InvalidArgumentError: See class documentation.
Xapian::DocNotFoundError: The document specified could not be found
in the database. ";
%feature("docstring") Xapian::Enquire::get_matching_terms_end "
End iterator corresponding to get_matching_terms_begin().
TermIterator Xapian::Enquire::get_matching_terms_end(const
MSetIterator &) const ";
%feature("docstring") Xapian::Enquire::XAPIAN_DEPRECATED "
Register a MatchDecider.
Xapian::Enquire::XAPIAN_DEPRECATED(void register_match_decider(const
std::string &name, const MatchDecider *mdecider=NULL))
This is used to associate a name with a matchdecider.
Deprecated This method is deprecated. It was added long ago with the
intention that it would allow the remote backend to support use of
MatchDecider objects, but there's a better approach.
Parameters:
-----------
name: The name to register this matchdecider as.
mdecider: The matchdecider. If omitted, then remove any matchdecider
registered with this name. ";
%feature("docstring") Xapian::Enquire::get_description "
Return a string describing this object.
std::string Xapian::Enquire::get_description() const ";
// File: classXapian_1_1ErrorHandler.xml
%feature("docstring") Xapian::ErrorHandler "
Decide if a Xapian::Error exception should be ignored.
You can create your own subclass of this class and pass in an instance
of it when you construct a Xapian::Enquire object. Xapian::Error
exceptions which happen during the match process are passed to this
object and it can decide whether they should propagate or whether
Enquire should attempt to continue.
The motivation is to allow searching over remote databases to handle a
remote server which has died (both to allow results to be returned,
and also so that such errors can be logged and dead servers
temporarily removed from use). ";
%feature("docstring") Xapian::ErrorHandler::ErrorHandler "
Default constructor.
Xapian::ErrorHandler::ErrorHandler() ";
%feature("docstring") Xapian::ErrorHandler::~ErrorHandler "
We require a virtual destructor because we have virtual methods.
virtual Xapian::ErrorHandler::~ErrorHandler() ";
// File: classXapian_1_1ESet.xml
%feature("docstring") Xapian::ESet "
Class representing an ordered set of expand terms (an ESet).
This set represents the results of an expand operation, which is
performed by Xapian::Enquire::get_eset(). ";
%feature("docstring") Xapian::ESet::ESet "
Construct an empty ESet.
Xapian::ESet::ESet() ";
%feature("docstring") Xapian::ESet::~ESet "
Destructor.
Xapian::ESet::~ESet() ";
%feature("docstring") Xapian::ESet::ESet "
Copying is allowed (and is cheap).
Xapian::ESet::ESet(const ESet &other) ";
%feature("docstring") Xapian::ESet::get_ebound "
A lower bound on the number of terms which are in the full set of
results of the expand.
Xapian::termcount Xapian::ESet::get_ebound() const
This will be greater than or equal to size() ";
%feature("docstring") Xapian::ESet::size "
The number of terms in this E-Set.
Xapian::termcount Xapian::ESet::size() const ";
%feature("docstring") Xapian::ESet::max_size "
Required to allow use as an STL container.
Xapian::termcount Xapian::ESet::max_size() const ";
%feature("docstring") Xapian::ESet::empty "
Test if this E-Set is empty.
bool Xapian::ESet::empty() const ";
%feature("docstring") Xapian::ESet::swap "
Swap the E-Set we point to with another.
void Xapian::ESet::swap(ESet &other) ";
%feature("docstring") Xapian::ESet::begin "
Iterator for the terms in this E-Set.
ESetIterator Xapian::ESet::begin() const ";
%feature("docstring") Xapian::ESet::end "
End iterator corresponding to begin().
ESetIterator Xapian::ESet::end() const ";
%feature("docstring") Xapian::ESet::back "
Iterator pointing to the last element of this E-Set.
ESetIterator Xapian::ESet::back() const ";
%feature("docstring") Xapian::ESet::get_description "
Return a string describing this object.
std::string Xapian::ESet::get_description() const ";
// File: classXapian_1_1ESetIterator.xml
%feature("docstring") Xapian::ESetIterator "
Iterate through terms in the ESet. ";
%feature("docstring") Xapian::ESetIterator::ESetIterator "
Create an uninitialised iterator; this cannot be used, but is
convenient syntactically.
Xapian::ESetIterator::ESetIterator() ";
%feature("docstring") Xapian::ESetIterator::~ESetIterator "Xapian::ESetIterator::~ESetIterator() ";
%feature("docstring") Xapian::ESetIterator::ESetIterator "
Copying is allowed (and is cheap).
Xapian::ESetIterator::ESetIterator(const ESetIterator &other) ";
%feature("docstring") Xapian::ESetIterator::get_weight "
Get the weight of the term at the current position.
Xapian::weight Xapian::ESetIterator::get_weight() const ";
%feature("docstring") Xapian::ESetIterator::get_description "
Return a string describing this object.
std::string Xapian::ESetIterator::get_description() const ";
// File: classXapian_1_1ExpandDecider.xml
%feature("docstring") Xapian::ExpandDecider "
Virtual base class for expand decider functor. ";
%feature("docstring") Xapian::ExpandDecider::~ExpandDecider "
Virtual destructor, because we have virtual methods.
virtual Xapian::ExpandDecider::~ExpandDecider() ";
// File: classXapian_1_1ExpandDeciderAnd.xml
%feature("docstring") Xapian::ExpandDeciderAnd "
ExpandDecider subclass which rejects terms using two ExpandDeciders.
Terms are only accepted if they are accepted by both of the specified
ExpandDecider objects. ";
%feature("docstring") Xapian::ExpandDeciderAnd::ExpandDeciderAnd "
Terms will be checked with first, and if accepted, then checked with
second.
Xapian::ExpandDeciderAnd::ExpandDeciderAnd(const ExpandDecider
&first_, const ExpandDecider &second_) ";
%feature("docstring") Xapian::ExpandDeciderAnd::ExpandDeciderAnd "
Compatibility method.
Xapian::ExpandDeciderAnd::ExpandDeciderAnd(const ExpandDecider
*first_, const ExpandDecider *second_) ";
// File: classXapian_1_1ExpandDeciderFilterTerms.xml
%feature("docstring") Xapian::ExpandDeciderFilterTerms "
ExpandDecider subclass which rejects terms in a specified list.
ExpandDeciderFilterTerms provides an easy way to filter out terms from
a fixed list when generating an ESet. ";
%feature("docstring")
Xapian::ExpandDeciderFilterTerms::ExpandDeciderFilterTerms "
The two iterators specify a list of terms to be rejected.
Xapian::ExpandDeciderFilterTerms::ExpandDeciderFilterTerms(Iterator
reject_begin, Iterator reject_end)
reject_begin and reject_end can be any input_iterator type which
returns std::string or char * (e.g. TermIterator or char **). ";
// File: classXapian_1_1MatchDecider.xml
%feature("docstring") Xapian::MatchDecider "
Base class for matcher decision functor. ";
%feature("docstring") Xapian::MatchDecider::~MatchDecider "
Destructor.
virtual Xapian::MatchDecider::~MatchDecider() ";
// File: classXapian_1_1MSet.xml
%feature("docstring") Xapian::MSet "
A match set ( MSet).
This class represents (a portion of) the results of a query. ";
%feature("docstring") Xapian::MSet::MSet "Xapian::MSet::MSet(MSet::Internal *internal_) ";
%feature("docstring") Xapian::MSet::MSet "
Create an empty Xapian::MSet.
Xapian::MSet::MSet() ";
%feature("docstring") Xapian::MSet::~MSet "
Destroy a Xapian::MSet.
Xapian::MSet::~MSet() ";
%feature("docstring") Xapian::MSet::MSet "
Copying is allowed (and is cheap).
Xapian::MSet::MSet(const MSet &other) ";
%feature("docstring") Xapian::MSet::fetch "
Fetch the document info for a set of items in the MSet.
void Xapian::MSet::fetch(const MSetIterator &begin, const MSetIterator
&end) const
This method causes the documents in the range specified by the
iterators to be fetched from the database, and cached in the
Xapian::MSet object. This has little effect when performing a search
across a local database, but will greatly speed up subsequent access
to the document contents when the documents are stored in a remote
database.
The iterators must be over this Xapian::MSet - undefined behaviour
will result otherwise.
Parameters:
-----------
begin: MSetIterator for first item to fetch.
end: MSetIterator for item after last item to fetch. ";
%feature("docstring") Xapian::MSet::fetch "
Fetch the single item specified.
void Xapian::MSet::fetch(const MSetIterator &item) const ";
%feature("docstring") Xapian::MSet::fetch "
Fetch all the items in the MSet.
void Xapian::MSet::fetch() const ";
%feature("docstring") Xapian::MSet::convert_to_percent "
This converts the weight supplied to a percentage score.
Xapian::percent Xapian::MSet::convert_to_percent(Xapian::weight wt)
const
The return value will be in the range 0 to 100, and will be 0 if and
only if the item did not match the query at all. ";
%feature("docstring") Xapian::MSet::convert_to_percent "
Return the percentage score for a particular item.
Xapian::percent Xapian::MSet::convert_to_percent(const MSetIterator
&it) const ";
%feature("docstring") Xapian::MSet::get_termfreq "
Return the term frequency of the given query term.
Xapian::doccount Xapian::MSet::get_termfreq(const std::string &tname)
const
Parameters:
-----------
tname: The term to look for.
Parameters:
-----------
Xapian::InvalidArgumentError: is thrown if the term was not in the
query. ";
%feature("docstring") Xapian::MSet::get_termweight "
Return the term weight of the given query term.
Xapian::weight Xapian::MSet::get_termweight(const std::string &tname)
const
Parameters:
-----------
tname: The term to look for.
Parameters:
-----------
Xapian::InvalidArgumentError: is thrown if the term was not in the
query. ";
%feature("docstring") Xapian::MSet::get_firstitem "
The index of the first item in the result which was put into the MSet.
Xapian::doccount Xapian::MSet::get_firstitem() const
This corresponds to the parameter \"first\" specified in
Xapian::Enquire::get_mset(). A value of 0 corresponds to the highest
result being the first item in the MSet. ";
%feature("docstring") Xapian::MSet::get_matches_lower_bound "
A lower bound on the number of documents in the database which match
the query.
Xapian::doccount Xapian::MSet::get_matches_lower_bound() const
This figure takes into account collapsing of duplicates, and weighting
cutoff values.
This number is usually considerably less than the actual number of
documents which match the query. ";
%feature("docstring") Xapian::MSet::get_matches_estimated "
An estimate for the number of documents in the database which match
the query.
Xapian::doccount Xapian::MSet::get_matches_estimated() const
This figure takes into account collapsing of duplicates, and weighting
cutoff values.
This value is returned because there is sometimes a request to display
such information. However, our experience is that presenting this
value to users causes them to worry about the large number of results,
rather than how useful those at the top of the result set are, and is
thus undesirable. ";
%feature("docstring") Xapian::MSet::get_matches_upper_bound "
An upper bound on the number of documents in the database which match
the query.
Xapian::doccount Xapian::MSet::get_matches_upper_bound() const
This figure takes into account collapsing of duplicates, and weighting
cutoff values.
This number is usually considerably greater than the actual number of
documents which match the query. ";
%feature("docstring") Xapian::MSet::get_max_possible "
The maximum possible weight in the MSet.
Xapian::weight Xapian::MSet::get_max_possible() const
This weight is likely not to be attained in the set of results, but
represents an upper bound on the weight which a document could attain
for the given query. ";
%feature("docstring") Xapian::MSet::get_max_attained "
The greatest weight which is attained by any document in the database.
Xapian::weight Xapian::MSet::get_max_attained() const
If firstitem == 0, this is the weight of the first entry in items.
If no documents are found by the query, this will be 0.
Note that calculation of max_attained requires calculation of at least
one result item - therefore, if no items were requested when the query
was performed (by specifying maxitems = 0 in
Xapian::Enquire::get_mset()), this value will be 0. ";
%feature("docstring") Xapian::MSet::size "
The number of items in this MSet.
Xapian::doccount Xapian::MSet::size() const ";
%feature("docstring") Xapian::MSet::max_size "
Required to allow use as an STL container.
Xapian::doccount Xapian::MSet::max_size() const ";
%feature("docstring") Xapian::MSet::empty "
Test if this MSet is empty.
bool Xapian::MSet::empty() const ";
%feature("docstring") Xapian::MSet::swap "
Swap the MSet we point to with another.
void Xapian::MSet::swap(MSet &other) ";
%feature("docstring") Xapian::MSet::begin "
Iterator for the terms in this MSet.
MSetIterator Xapian::MSet::begin() const ";
%feature("docstring") Xapian::MSet::end "
End iterator corresponding to begin().
MSetIterator Xapian::MSet::end() const ";
%feature("docstring") Xapian::MSet::back "
Iterator pointing to the last element of this MSet.
MSetIterator Xapian::MSet::back() const ";
%feature("docstring") Xapian::MSet::get_description "
Return a string describing this object.
std::string Xapian::MSet::get_description() const ";
// File: classXapian_1_1MSetIterator.xml
%feature("docstring") Xapian::MSetIterator "
An iterator pointing to items in an MSet.
This is used for access to individual results of a match. ";
%feature("docstring") Xapian::MSetIterator::MSetIterator "
Create an uninitialised iterator; this cannot be used, but is
convenient syntactically.
Xapian::MSetIterator::MSetIterator() ";
%feature("docstring") Xapian::MSetIterator::~MSetIterator "Xapian::MSetIterator::~MSetIterator() ";
%feature("docstring") Xapian::MSetIterator::MSetIterator "
Copying is allowed (and is cheap).
Xapian::MSetIterator::MSetIterator(const MSetIterator &other) ";
%feature("docstring") Xapian::MSetIterator::get_document "
Get a Xapian::Document object for the current position.
Xapian::Document Xapian::MSetIterator::get_document() const
This method returns a Xapian::Document object which provides the
information about the document pointed to by the MSetIterator.
If the underlying database has suitable support, using this call
(rather than asking the database for a document based on its document
ID) will enable the system to ensure that the correct data is
returned, and that the document has not been deleted or changed since
the query was performed.
A Xapian::Document object containing the document data.
Parameters:
-----------
Xapian::DocNotFoundError: The document specified could not be found
in the database. ";
%feature("docstring") Xapian::MSetIterator::get_rank "
Get the rank of the document at the current position.
Xapian::doccount Xapian::MSetIterator::get_rank() const
The rank is the position that this document is at in the ordered list
of results of the query. The result is 0-based - i.e. the top-ranked
document has a rank of 0. ";
%feature("docstring") Xapian::MSetIterator::get_weight "
Get the weight of the document at the current position.
Xapian::weight Xapian::MSetIterator::get_weight() const ";
%feature("docstring") Xapian::MSetIterator::get_collapse_key "
Get the collapse key for this document.
std::string Xapian::MSetIterator::get_collapse_key() const ";
%feature("docstring") Xapian::MSetIterator::get_collapse_count "
Get an estimate of the number of documents that have been collapsed
into this one.
Xapian::doccount Xapian::MSetIterator::get_collapse_count() const
The estimate will always be less than or equal to the actual number of
other documents satisfying the match criteria with the same collapse
key as this document.
This method may return 0 even though there are other documents with
the same collapse key which satisfying the match criteria. However if
this method returns non-zero, there definitely are other such
documents. So this method may be used to inform the user that there
are \"at least N other matches in this group\", or to control whether
to offer a \"show other documents in this group\" feature (but note
that it may not offer it in every case where it would show other
documents). ";
%feature("docstring") Xapian::MSetIterator::get_percent "
This returns the weight of the document as a percentage score.
Xapian::percent Xapian::MSetIterator::get_percent() const
The return value will be in the range 0 to 100: 0 meaning that the
item did not match the query at all. ";
%feature("docstring") Xapian::MSetIterator::get_description "
Return a string describing this object.
std::string Xapian::MSetIterator::get_description() const ";
// File: classXapian_1_1MultipleMatchDecider.xml
%feature("docstring") Xapian::MultipleMatchDecider "
Class which applies several match deciders in turn. ";
%feature("docstring") Xapian::MultipleMatchDecider::append "
Add a match decider to the end of the list to be called.
void Xapian::MultipleMatchDecider::append(const MatchDecider *decider)
Note that the caller must ensure that the decider is not deleted
before it is used - the MultipleMatchDecider keeps a pointer to the
supplied decider. ";
// File: classXapian_1_1MultiValueSorter.xml
%feature("docstring") Xapian::MultiValueSorter "
Sorter subclass which sorts by a several values.
Results are ordered by the first value. In the event of a tie, the
second is used. If this is the same for both, the third is used, and
so on. ";
%feature("docstring") Xapian::MultiValueSorter::MultiValueSorter "Xapian::MultiValueSorter::MultiValueSorter() ";
%feature("docstring") Xapian::MultiValueSorter::MultiValueSorter "Xapian::MultiValueSorter::MultiValueSorter(Iterator begin, Iterator
end) ";
%feature("docstring") Xapian::MultiValueSorter::add "void
Xapian::MultiValueSorter::add(Xapian::valueno valno, bool
forward=true) ";
%feature("docstring") Xapian::MultiValueSorter::~MultiValueSorter "virtual Xapian::MultiValueSorter::~MultiValueSorter() ";
// File: classXapian_1_1NumberValueRangeProcessor.xml
%feature("docstring") Xapian::NumberValueRangeProcessor "
Handle a number range.
This class must be used on values which have been encoded using
Xapian::sortable_serialise() which turns numbers into strings which
will sort in the same order as the numbers (the same values can be
used to implement a numeric sort). ";
%feature("docstring")
Xapian::NumberValueRangeProcessor::NumberValueRangeProcessor "
Constructor.
Xapian::NumberValueRangeProcessor::NumberValueRangeProcessor(Xapian::v
alueno valno_)
Parameters:
-----------
valno_: The value number to return from operator(). ";
%feature("docstring")
Xapian::NumberValueRangeProcessor::NumberValueRangeProcessor "
Constructor.
Xapian::NumberValueRangeProcessor::NumberValueRangeProcessor(Xapian::v
alueno valno_, const std::string &str_, bool prefix_=true)
Parameters:
-----------
valno_: The value number to return from operator().
str_: A string to look for to recognise values as belonging to this
numeric range.
prefix_: Whether to look for the string at the start or end of the
values. If true, the string is a prefix; if false, the string is a
suffix (default: true).
The string supplied in str_ is used by operator() to decide whether
the pair of strings supplied to it constitute a valid range. If
prefix_ is true, the first value in a range must begin with str_ (and
the second value may optionally begin with str_); if prefix_ is false,
the second value in a range must end with str_ (and the first value
may optionally end with str_).
If str_ is empty, the setting of prefix_ is irrelevant, and no special
strings are required at the start or end of the strings defining the
range.
The remainder of both strings defining the endpoints must be valid
floating point numbers. (FIXME: define format recognised).
For example, if str_ is \"$\" and prefix_ is true, and the range
processor has been added to the queryparser, the queryparser will
accept \"$10..50\" or \"$10..$50\", but not \"10..50\" or \"10..$50\"
as valid ranges. If str_ is \"kg\" and prefix_ is false, the
queryparser will accept \"10..50kg\" or \"10kg..50kg\", but not
\"10..50\" or \"10kg..50\" as valid ranges. ";
// File: classXapian_1_1PositionIterator.xml
%feature("docstring") Xapian::PositionIterator "
An iterator pointing to items in a list of positions. ";
%feature("docstring") Xapian::PositionIterator::PositionIterator "Xapian::PositionIterator::PositionIterator(Internal *internal_) ";
%feature("docstring") Xapian::PositionIterator::PositionIterator "
Default constructor - for declaring an uninitialised iterator.
Xapian::PositionIterator::PositionIterator() ";
%feature("docstring") Xapian::PositionIterator::~PositionIterator "
Destructor.
Xapian::PositionIterator::~PositionIterator() ";
%feature("docstring") Xapian::PositionIterator::PositionIterator "
Copying is allowed.
Xapian::PositionIterator::PositionIterator(const PositionIterator &o)
The internals are reference counted, so copying is also cheap. ";
%feature("docstring") Xapian::PositionIterator::skip_to "void
Xapian::PositionIterator::skip_to(Xapian::termpos pos) ";
%feature("docstring") Xapian::PositionIterator::get_description "
Return a string describing this object.
std::string Xapian::PositionIterator::get_description() const ";
// File: classXapian_1_1PostingIterator.xml
%feature("docstring") Xapian::PostingIterator "
An iterator pointing to items in a list of postings. ";
%feature("docstring") Xapian::PostingIterator::PostingIterator "
Default constructor - for declaring an uninitialised iterator.
Xapian::PostingIterator::PostingIterator() ";
%feature("docstring") Xapian::PostingIterator::~PostingIterator "
Destructor.
Xapian::PostingIterator::~PostingIterator() ";
%feature("docstring") Xapian::PostingIterator::PostingIterator "
Copying is allowed.
Xapian::PostingIterator::PostingIterator(const PostingIterator &other)
The internals are reference counted, so copying is also cheap. ";
%feature("docstring") Xapian::PostingIterator::skip_to "
Skip the iterator to document did, or the first document after did if
did isn't in the list of documents being iterated.
void Xapian::PostingIterator::skip_to(Xapian::docid did) ";
%feature("docstring") Xapian::PostingIterator::get_doclength "
Get the length of the document at the current position in the
postlist.
Xapian::doclength Xapian::PostingIterator::get_doclength() const
This information may be stored in the postlist, in which case this
lookup should be extremely fast (indeed, not require further disk
access). If the information is not present in the postlist, it will be
retrieved from the database, at a greater performance cost. ";
%feature("docstring") Xapian::PostingIterator::get_wdf "
Get the within document frequency of the document at the current
position in the postlist.
Xapian::termcount Xapian::PostingIterator::get_wdf() const ";
%feature("docstring") Xapian::PostingIterator::positionlist_begin "
Return PositionIterator pointing to start of positionlist for current
document.
PositionIterator Xapian::PostingIterator::positionlist_begin() const
";
%feature("docstring") Xapian::PostingIterator::positionlist_end "
Return PositionIterator pointing to end of positionlist for current
document.
PositionIterator Xapian::PostingIterator::positionlist_end() const ";
%feature("docstring") Xapian::PostingIterator::get_description "
Return a string describing this object.
std::string Xapian::PostingIterator::get_description() const ";
// File: classXapian_1_1Query.xml
%feature("docstring") Xapian::Query "
Class representing a query.
Queries are represented as a tree of objects. ";
%feature("docstring") Xapian::Query::Query "
Copy constructor.
Xapian::Query::Query(const Query ©me) ";
%feature("docstring") Xapian::Query::Query "
Default constructor: makes an empty query which matches no documents.
Xapian::Query::Query()
Also useful for defining a Query object to be assigned to later.
An exception will be thrown if an attempt is made to use an undefined
query when building up a composite query. ";
%feature("docstring") Xapian::Query::~Query "
Destructor.
Xapian::Query::~Query() ";
%feature("docstring") Xapian::Query::Query "
A query consisting of a single term.
Xapian::Query::Query(const std::string &tname_, Xapian::termcount
wqf_=1, Xapian::termpos pos_=0) ";
%feature("docstring") Xapian::Query::Query "
A query consisting of two subqueries, opp-ed together.
Xapian::Query::Query(Query::op op_, const Query &left, const Query
&right) ";
%feature("docstring") Xapian::Query::Query "
A query consisting of two termnames opp-ed together.
Xapian::Query::Query(Query::op op_, const std::string &left, const
std::string &right) ";
%feature("docstring") Xapian::Query::Query "
Combine a number of Xapian::Query-s with the specified operator.
Xapian::Query::Query(Query::op op_, Iterator qbegin, Iterator qend,
Xapian::termcount parameter=0)
The Xapian::Query objects are specified with begin and end iterators.
AND, OR, NEAR and PHRASE can take any number of subqueries. Other
operators take exactly two subqueries.
The iterators may be to Xapian::Query objects, pointers to
Xapian::Query objects, or termnames (std::string-s).
For NEAR and PHRASE, a window size can be specified in parameter.
For ELITE_SET, the elite set size can be specified in parameter. ";
%feature("docstring") Xapian::Query::XAPIAN_DEPRECATED "
Apply the specified operator to a single Xapian::Query object.
Xapian::Query::XAPIAN_DEPRECATED(Query(Query::op op_, Xapian::Query
q))
Deprecated This method is deprecated because it isn't useful, since
none of the current query operators can be usefully applied to a
single subquery with a parameter value. ";
%feature("docstring") Xapian::Query::Query "
Apply the specified operator to a single Xapian::Query object, with a
double parameter.
Xapian::Query::Query(Query::op op_, Xapian::Query q, double parameter)
";
%feature("docstring") Xapian::Query::Query "
Construct a value range query on a document value.
Xapian::Query::Query(Query::op op_, Xapian::valueno valno, const
std::string &begin, const std::string &end)
A value range query matches those documents which have a value stored
in the slot given by valno which is in the range specified by begin
and end (in lexicographical order), including the endpoints.
Parameters:
-----------
op_: The operator to use for the query. Currently, must be
OP_VALUE_RANGE.
valno: The slot number to get the value from.
begin: The start of the range.
end: The end of the range. ";
%feature("docstring") Xapian::Query::Query "
Construct a value comparison query on a document value.
Xapian::Query::Query(Query::op op_, Xapian::valueno valno, const
std::string &value)
This query matches those documents which have a value stored in the
slot given by valno which compares, as specified by the operator, to
value.
Parameters:
-----------
op_: The operator to use for the query. Currently, must be
OP_VALUE_GE or OP_VALUE_LE.
valno: The slot number to get the value from.
value: The value to compare. ";
%feature("docstring") Xapian::Query::get_length "
Get the length of the query, used by some ranking formulae.
Xapian::termcount Xapian::Query::get_length() const
This value is calculated automatically - if you want to override it
you can pass a different value to Enquire::set_query(). ";
%feature("docstring") Xapian::Query::get_terms_begin "
Return a Xapian::TermIterator returning all the terms in the query, in
order of termpos.
TermIterator Xapian::Query::get_terms_begin() const
If multiple terms have the same term position, their order is
unspecified. Duplicates (same term and termpos) will be removed. ";
%feature("docstring") Xapian::Query::get_terms_end "
Return a Xapian::TermIterator to the end of the list of terms in the
query.
TermIterator Xapian::Query::get_terms_end() const ";
%feature("docstring") Xapian::Query::empty "
Test if the query is empty (i.e.
bool Xapian::Query::empty() const
was constructed using the default ctor or with an empty iterator
ctor). ";
%feature("docstring") Xapian::Query::get_description "
Return a string describing this object.
std::string Xapian::Query::get_description() const ";
%feature("docstring") Xapian::Query::Internal "
Copy constructor.
Xapian::Query::Internal(const Query::Internal ©me) ";
%feature("docstring") Xapian::Query::Internal "
A query consisting of a single term.
Xapian::Query::Internal(const std::string &tname_, Xapian::termcount
wqf_=1, Xapian::termpos term_pos_=0) ";
%feature("docstring") Xapian::Query::Internal "
Create internals given only the operator and a parameter.
Xapian::Query::Internal(op_t op_, Xapian::termcount parameter) ";
%feature("docstring") Xapian::Query::Internal "
Construct a range query on a document value.
Xapian::Query::Internal(op_t op_, Xapian::valueno valno, const
std::string &begin, const std::string &end) ";
%feature("docstring") Xapian::Query::Internal "
Construct a value greater-than-or-equal query on a document value.
Xapian::Query::Internal(op_t op_, Xapian::valueno valno, const
std::string &value) ";
%feature("docstring") Xapian::Query::~Internal "
Destructor.
Xapian::Query::~Internal() ";
%feature("docstring") Xapian::Query::add_subquery "
Add a subquery.
void Xapian::Query::add_subquery(const Query::Internal *subq) ";
%feature("docstring") Xapian::Query::set_dbl_parameter "void
Xapian::Query::set_dbl_parameter(double dbl_parameter_) ";
%feature("docstring") Xapian::Query::get_dbl_parameter "double
Xapian::Query::get_dbl_parameter() const ";
%feature("docstring") Xapian::Query::end_construction "
Finish off the construction.
Query::Internal* Xapian::Query::end_construction() ";
%feature("docstring") Xapian::Query::serialise "
Return a string in an easily parsed form which contains all the
information in a query.
std::string Xapian::Query::serialise() const ";
%feature("docstring") Xapian::Query::get_description "
Return a string describing this object.
std::string Xapian::Query::get_description() const ";
%feature("docstring") Xapian::Query::get_parameter "
Get the numeric parameter used in this query.
Xapian::termcount Xapian::Query::get_parameter() const
This is used by the QueryParser to get the value number for
VALUE_RANGE queries. It should be replaced by a public method on the
Query class at some point, but the API which should be used for that
is unclear, so this is a temporary workaround. ";
%feature("docstring") Xapian::Query::get_length "
Get the length of the query, used by some ranking formulae.
Xapian::termcount Xapian::Query::get_length() const
This value is calculated automatically - if you want to override it
you can pass a different value to Enquire::set_query(). ";
%feature("docstring") Xapian::Query::get_terms "
Return an iterator over all the terms in the query, in order of
termpos.
TermIterator Xapian::Query::get_terms() const
If multiple terms have the same term position, their order is
unspecified. Duplicates (same term and termpos) will be removed. ";
// File: classXapian_1_1QueryParser.xml
%feature("docstring") Xapian::QueryParser "
Build a Xapian::Query object from a user query string. ";
%feature("docstring") Xapian::QueryParser::QueryParser "
Copy constructor.
Xapian::QueryParser::QueryParser(const QueryParser &o) ";
%feature("docstring") Xapian::QueryParser::QueryParser "
Default constructor.
Xapian::QueryParser::QueryParser() ";
%feature("docstring") Xapian::QueryParser::~QueryParser "
Destructor.
Xapian::QueryParser::~QueryParser() ";
%feature("docstring") Xapian::QueryParser::set_stemmer "
Set the stemmer.
void Xapian::QueryParser::set_stemmer(const Xapian::Stem &stemmer)
This sets the stemming algorithm which will be used by the query
parser. Note that the stemming algorithm will only be used according
to the stemming strategy set by set_stemming_strategy(), which
defaults to STEM_NONE. Therefore, to use a stemming algorithm, you
will also need to call set_stemming_strategy() with a value other than
STEM_NONE. ";
%feature("docstring") Xapian::QueryParser::set_stemming_strategy "
Set the stemming strategy.
void Xapian::QueryParser::set_stemming_strategy(stem_strategy
strategy)
This controls how the query parser will apply the stemming algorithm.
The default value is STEM_NONE. The possible values are:
STEM_NONE: Don't perform any stemming.
STEM_SOME: Search for stemmed forms of terms except for those which
start with a capital letter, or are followed by certain characters
(currently: (/@<>=*[{\" ), or are used with operators which need
positional information. Stemmed terms are prefixed with 'Z'.
STEM_ALL: Search for stemmed forms of all words (note: no 'Z' prefix
is added).
Note that the stemming algorithm is only applied to words in
probabilistic fields - boolean filter terms are never stemmed. ";
%feature("docstring") Xapian::QueryParser::set_stopper "
Set the stopper.
void Xapian::QueryParser::set_stopper(const Stopper *stop=NULL) ";
%feature("docstring") Xapian::QueryParser::set_default_op "
Set the default boolean operator.
void Xapian::QueryParser::set_default_op(Query::op default_op) ";
%feature("docstring") Xapian::QueryParser::get_default_op "
Get the default boolean operator.
Query::op Xapian::QueryParser::get_default_op() const ";
%feature("docstring") Xapian::QueryParser::set_database "
Specify the database being searched.
void Xapian::QueryParser::set_database(const Database &db) ";
%feature("docstring") Xapian::QueryParser::parse_query "
Parse a query.
Query Xapian::QueryParser::parse_query(const std::string
&query_string, unsigned flags=FLAG_PHRASE|FLAG_BOOLEAN|FLAG_LOVEHATE,
const std::string &default_prefix=\"\")
Parameters:
-----------
query_string: A free-text query as entered by a user
flags: Zero or more Query::feature_flag specifying what features the
QueryParser should support. Combine multiple values with bitwise-or
(|).
default_prefix: The default term prefix to use (default none). For
example, you can pass \"A\" when parsing an \"Author\" field. ";
%feature("docstring") Xapian::QueryParser::add_prefix "
Add a probabilistic term prefix.
void Xapian::QueryParser::add_prefix(const std::string &field, const
std::string &prefix)
For example:
This allows the user to search for author:Orwell which will be
converted to a search for the term \"Aorwell\".
Multiple fields can be mapped to the same prefix. For example, you can
make title: and subject: aliases for each other.
As of 1.0.4, you can call this method multiple times with the same
value of field to allow a single field to be mapped to multiple
prefixes. Multiple terms being generated for such a field, and
combined with Xapian::Query::OP_OR.
If any prefixes are specified for the empty field name (i.e. you call
this method with an empty string as the first parameter) these
prefixes will be used as the default prefix. If you do this and also
specify the default_prefix parameter to parse_query(), then the
default_prefix parameter will override.
If you call add_prefix() and add_boolean_prefix() for the same value
of field, a Xapian::InvalidOperationError exception will be thrown.
In 1.0.3 and earlier, subsequent calls to this method with the same
value of field had no effect.
Parameters:
-----------
field: The user visible field name
prefix: The term prefix to map this to ";
%feature("docstring") Xapian::QueryParser::add_boolean_prefix "
Add a boolean term prefix allowing the user to restrict a search with
a boolean filter specified in the free text query.
void Xapian::QueryParser::add_boolean_prefix(const std::string &field,
const std::string &prefix)
For example:
This allows the user to restrict a search with site:xapian.org which
will be converted to Hxapian.org combined with any probabilistic query
with Xapian::Query::OP_FILTER.
If multiple boolean filters are specified in a query for the same
prefix, they will be combined with the Xapian::Query::OP_OR operator.
Then, if there are boolean filters for different prefixes, they will
be combined with the Xapian::Query::OP_AND operator.
Multiple fields can be mapped to the same prefix (so for example you
can make site: and domain: aliases for each other). Instances of
fields with different aliases but the same prefix will still be
combined with the OR operator.
For example, if \"site\" and \"domain\" map to \"H\", but author maps
to \"A\", a search for \"site:foo domain:bar author:Fred\" will map to
\"(Hfoo OR Hbar) AND Afred\".
As of 1.0.4, you can call this method multiple times with the same
value of field to allow a single field to be mapped to multiple
prefixes. Multiple terms being generated for such a field, and
combined with Xapian::Query::OP_OR.
Calling this method with an empty string for field will cause a
Xapian::InvalidArgumentError.
If you call add_prefix() and add_boolean_prefix() for the same value
of field, a Xapian::InvalidOperationError exception will be thrown.
In 1.0.3 and earlier, subsequent calls to this method with the same
value of field had no effect.
Parameters:
-----------
field: The user visible field name
prefix: The term prefix to map this to ";
%feature("docstring") Xapian::QueryParser::stoplist_begin "
Iterate over terms omitted from the query as stopwords.
TermIterator Xapian::QueryParser::stoplist_begin() const ";
%feature("docstring") Xapian::QueryParser::stoplist_end "TermIterator Xapian::QueryParser::stoplist_end() const ";
%feature("docstring") Xapian::QueryParser::unstem_begin "
Iterate over unstemmed forms of the given (stemmed) term used in the
query.
TermIterator Xapian::QueryParser::unstem_begin(const std::string
&term) const ";
%feature("docstring") Xapian::QueryParser::unstem_end "TermIterator
Xapian::QueryParser::unstem_end(const std::string &) const ";
%feature("docstring") Xapian::QueryParser::add_valuerangeprocessor "
Register a ValueRangeProcessor.
void Xapian::QueryParser::add_valuerangeprocessor(Xapian::ValueRangePr
ocessor *vrproc) ";
%feature("docstring") Xapian::QueryParser::get_corrected_query_string
"
Get the spelling-corrected query string.
std::string Xapian::QueryParser::get_corrected_query_string() const
This will only be set if FLAG_SPELLING_CORRECTION is specified when
QueryParser::parse_query() was last called.
If there were no corrections, an empty string is returned. ";
%feature("docstring") Xapian::QueryParser::get_description "
Return a string describing this object.
std::string Xapian::QueryParser::get_description() const ";
// File: classXapian_1_1Internal_1_1RefCntBase.xml
%feature("docstring") Xapian::Internal::RefCntBase "";
%feature("docstring") Xapian::Internal::RefCntBase::RefCntBase "
The constructor, which initialises the ref_count to 0.
Xapian::Internal::RefCntBase::RefCntBase() ";
// File: classXapian_1_1Internal_1_1RefCntPtr.xml
%feature("docstring") Xapian::Internal::RefCntPtr "";
%feature("docstring") Xapian::Internal::RefCntPtr::get "T *
Xapian::Internal::RefCntPtr< T >::get() const ";
%feature("docstring") Xapian::Internal::RefCntPtr::RefCntPtr "
Make a RefCntPtr for an object which may already have reference
counted pointers.
Xapian::Internal::RefCntPtr< T >::RefCntPtr(T *dest_)
You usually pass in a newly created object, or an object may pass in
\"this\" to get a RefCntPtr to itself to pass to other classes. (e.g.
a database might pass a newly created postlist a reference counted
pointer to itself.) ";
%feature("docstring") Xapian::Internal::RefCntPtr::RefCntPtr "Xapian::Internal::RefCntPtr< T >::RefCntPtr() ";
%feature("docstring") Xapian::Internal::RefCntPtr::RefCntPtr "Xapian::Internal::RefCntPtr< T >::RefCntPtr(const RefCntPtr &other) ";
%feature("docstring") Xapian::Internal::RefCntPtr::~RefCntPtr "Xapian::Internal::RefCntPtr< T >::~RefCntPtr() ";
%feature("docstring") Xapian::Internal::RefCntPtr::RefCntPtr "Xapian::Internal::RefCntPtr< T >::RefCntPtr(const RefCntPtr< U >
&other) ";
// File: classXapian_1_1RSet.xml
%feature("docstring") Xapian::RSet "
A relevance set (R-Set).
This is the set of documents which are marked as relevant, for use in
modifying the term weights, and in performing query expansion. ";
%feature("docstring") Xapian::RSet::RSet "
Copy constructor.
Xapian::RSet::RSet(const RSet &rset) ";
%feature("docstring") Xapian::RSet::RSet "
Default constructor.
Xapian::RSet::RSet() ";
%feature("docstring") Xapian::RSet::~RSet "
Destructor.
Xapian::RSet::~RSet() ";
%feature("docstring") Xapian::RSet::size "
The number of documents in this R-Set.
Xapian::doccount Xapian::RSet::size() const ";
%feature("docstring") Xapian::RSet::empty "
Test if this R-Set is empty.
bool Xapian::RSet::empty() const ";
%feature("docstring") Xapian::RSet::add_document "
Add a document to the relevance set.
void Xapian::RSet::add_document(Xapian::docid did) ";
%feature("docstring") Xapian::RSet::add_document "
Add a document to the relevance set.
void Xapian::RSet::add_document(const Xapian::MSetIterator &i) ";
%feature("docstring") Xapian::RSet::remove_document "
Remove a document from the relevance set.
void Xapian::RSet::remove_document(Xapian::docid did) ";
%feature("docstring") Xapian::RSet::remove_document "
Remove a document from the relevance set.
void Xapian::RSet::remove_document(const Xapian::MSetIterator &i) ";
%feature("docstring") Xapian::RSet::contains "
Test if a given document in the relevance set.
bool Xapian::RSet::contains(Xapian::docid did) const ";
%feature("docstring") Xapian::RSet::contains "
Test if a given document in the relevance set.
bool Xapian::RSet::contains(const Xapian::MSetIterator &i) const ";
%feature("docstring") Xapian::RSet::get_description "
Return a string describing this object.
std::string Xapian::RSet::get_description() const ";
// File: classXapian_1_1SimpleStopper.xml
%feature("docstring") Xapian::SimpleStopper "
Simple implementation of Stopper class - this will suit most users. ";
%feature("docstring") Xapian::SimpleStopper::SimpleStopper "
Default constructor.
Xapian::SimpleStopper::SimpleStopper() ";
%feature("docstring") Xapian::SimpleStopper::SimpleStopper "
Initialise from a pair of iterators.
Xapian::SimpleStopper::SimpleStopper(Iterator begin, Iterator end) ";
%feature("docstring") Xapian::SimpleStopper::add "
Add a single stop word.
void Xapian::SimpleStopper::add(const std::string &word) ";
%feature("docstring") Xapian::SimpleStopper::~SimpleStopper "
Destructor.
virtual Xapian::SimpleStopper::~SimpleStopper() ";
%feature("docstring") Xapian::SimpleStopper::get_description "
Return a string describing this object.
virtual std::string Xapian::SimpleStopper::get_description() const ";
// File: classXapian_1_1Sorter.xml
%feature("docstring") Xapian::Sorter "
Virtual base class for sorter functor. ";
%feature("docstring") Xapian::Sorter::~Sorter "
Virtual destructor, because we have virtual methods.
virtual Xapian::Sorter::~Sorter() ";
// File: classXapian_1_1Stem.xml
%feature("docstring") Xapian::Stem "
Class representing a stemming algorithm. ";
%feature("docstring") Xapian::Stem::Stem "
Copy constructor.
Xapian::Stem::Stem(const Stem &o) ";
%feature("docstring") Xapian::Stem::Stem "
Construct a Xapian::Stem object which doesn't change terms.
Xapian::Stem::Stem()
Equivalent to Stem(\"none\"). ";
%feature("docstring") Xapian::Stem::Stem "
Construct a Xapian::Stem object for a particular language.
Xapian::Stem::Stem(const std::string &language)
Parameters:
-----------
language: Either the English name for the language or the two letter
ISO639 code.
The following language names are understood (aliases follow the name):
none - don't stem terms
danish (da)
dutch (nl)
english (en) - Martin Porter's 2002 revision of his stemmer
english_lovins (lovins) - Lovin's stemmer
english_porter (porter) - Porter's stemmer as described in his 1980
paper
finnish (fi)
french (fr)
german (de)
italian (it)
norwegian (no)
portuguese (pt)
russian (ru)
spanish (es)
swedish (sv)
Parameters:
-----------
Xapian::InvalidArgumentError: is thrown if language isn't recognised.
";
%feature("docstring") Xapian::Stem::~Stem "
Destructor.
Xapian::Stem::~Stem() ";
%feature("docstring") Xapian::Stem::get_description "
Return a string describing this object.
std::string Xapian::Stem::get_description() const ";
// File: classXapian_1_1Stopper.xml
%feature("docstring") Xapian::Stopper "
Base class for stop-word decision functor. ";
%feature("docstring") Xapian::Stopper::~Stopper "
Class has virtual methods, so provide a virtual destructor.
virtual Xapian::Stopper::~Stopper() ";
%feature("docstring") Xapian::Stopper::get_description "
Return a string describing this object.
virtual std::string Xapian::Stopper::get_description() const ";
// File: structXapian_1_1StringAndFrequency.xml
%feature("docstring") Xapian::StringAndFrequency "
A string with a corresponding frequency. ";
%feature("docstring") Xapian::StringAndFrequency::StringAndFrequency
"Xapian::StringAndFrequency::StringAndFrequency(std::string str_,
Xapian::doccount frequency_) ";
// File: classXapian_1_1StringListSerialiser.xml
%feature("docstring") Xapian::StringListSerialiser "
Class to serialise a list of strings in a form suitable for
ValueCountMatchSpy. ";
%feature("docstring")
Xapian::StringListSerialiser::StringListSerialiser "
Default constructor.
Xapian::StringListSerialiser::StringListSerialiser() ";
%feature("docstring")
Xapian::StringListSerialiser::StringListSerialiser "
Initialise with a string.
Xapian::StringListSerialiser::StringListSerialiser(const std::string
&initial)
(The string represents a serialised form, rather than a single value
to be serialised.) ";
%feature("docstring")
Xapian::StringListSerialiser::StringListSerialiser "
Initialise from a pair of iterators.
Xapian::StringListSerialiser::StringListSerialiser(Iterator begin,
Iterator end) ";
%feature("docstring") Xapian::StringListSerialiser::append "
Add a string to the end of the list.
void Xapian::StringListSerialiser::append(const std::string &value) ";
%feature("docstring") Xapian::StringListSerialiser::get "
Get the serialised result.
const std::string& Xapian::StringListSerialiser::get() const ";
// File: classXapian_1_1StringListUnserialiser.xml
%feature("docstring") Xapian::StringListUnserialiser "
Class to unserialise a list of strings serialised by a
StringListSerialiser.
The class can be used as an iterator: use the default constructor to
get an end iterator. ";
%feature("docstring")
Xapian::StringListUnserialiser::StringListUnserialiser "
Default constructor - use this to define an end iterator.
Xapian::StringListUnserialiser::StringListUnserialiser() ";
%feature("docstring")
Xapian::StringListUnserialiser::StringListUnserialiser "
Constructor which takes a serialised list of strings, and creates an
iterator pointing to the first of them.
Xapian::StringListUnserialiser::StringListUnserialiser(const
std::string &in) ";
%feature("docstring")
Xapian::StringListUnserialiser::~StringListUnserialiser "
Destructor - nothing special to release.
Xapian::StringListUnserialiser::~StringListUnserialiser() ";
%feature("docstring")
Xapian::StringListUnserialiser::StringListUnserialiser "
Copy constructor.
Xapian::StringListUnserialiser::StringListUnserialiser(const
StringListUnserialiser &other) ";
// File: classXapian_1_1StringValueRangeProcessor.xml
%feature("docstring") Xapian::StringValueRangeProcessor "
Handle a string range.
The end points can be any strings. ";
%feature("docstring")
Xapian::StringValueRangeProcessor::StringValueRangeProcessor "
Constructor.
Xapian::StringValueRangeProcessor::StringValueRangeProcessor(Xapian::v
alueno valno_)
Parameters:
-----------
valno_: The value number to return from operator(). ";
// File: classXapian_1_1TermCountMatchSpy.xml
%feature("docstring") Xapian::TermCountMatchSpy "
Class for counting the frequencies of terms in the matching documents.
Note that accessing the list of terms is generally more expensive than
accessing a value, so if it is possible to store the information you
need in a value, you should probably use a ValueCountMatchSpy instead
of a TermCountMatchSpy. ";
%feature("docstring") Xapian::TermCountMatchSpy::TermCountMatchSpy "
Default constructor.
Xapian::TermCountMatchSpy::TermCountMatchSpy() ";
%feature("docstring") Xapian::TermCountMatchSpy::TermCountMatchSpy "
Construct a MatchSpy which counts the terms with a particular prefix.
Xapian::TermCountMatchSpy::TermCountMatchSpy(std::string prefix)
Further prefixes can be added by calling add_prefix(). ";
%feature("docstring") Xapian::TermCountMatchSpy::add_prefix "
Add a prefix to count terms with.
void Xapian::TermCountMatchSpy::add_prefix(std::string prefix)
A TermCountMatchSpy can count terms with one or more prefixes. If the
prefixes overlap (eg, \"X\" and \"XA\"), terms with both prefixes will
be counted for each of those prefixes. ";
%feature("docstring") Xapian::TermCountMatchSpy::get_terms "
Return the suffixes of those terms seen with prefix prefix.
const std::map<std::string, Xapian::doccount>&
Xapian::TermCountMatchSpy::get_terms(std::string prefix) const
Parameters:
-----------
prefix: The prefix to examine (must have specified for examination
before performing the match - either by using the add_prefix()
method, or using the constructor which takes a prefix.) ";
%feature("docstring") Xapian::TermCountMatchSpy::get_documents_seen "
Return the number of documents tallied.
size_t Xapian::TermCountMatchSpy::get_documents_seen() const ";
%feature("docstring") Xapian::TermCountMatchSpy::get_terms_seen "
Return the number of term occurrences tallied.
size_t Xapian::TermCountMatchSpy::get_terms_seen() const
If terms occur in more than one of the prefixes specified, they will
be counted multiple times. ";
%feature("docstring") Xapian::TermCountMatchSpy::get_top_terms "
Get the most frequent terms with a given prefix.
void Xapian::TermCountMatchSpy::get_top_terms(std::vector<
StringAndFrequency > &result, std::string prefix, size_t maxterms)
const
Parameters:
-----------
result: A vector which will be filled with the most frequent terms,
in descending order of frequency. Terms with the same frequency will
be sorted in ascending alphabetical order.
prefix: The prefix to examine (must have specified for examination
before performing the match - either by using the add_prefix()
method, or using the constructor which takes a prefix.)
maxterms: The maximum number of terms to return. ";
// File: classXapian_1_1TermGenerator.xml
%feature("docstring") Xapian::TermGenerator "
Parses a piece of text and generate terms.
This module takes a piece of text and parses it to produce words which
are then used to generate suitable terms for indexing. The terms
generated are suitable for use with Query objects produced by the
QueryParser class. ";
%feature("docstring") Xapian::TermGenerator::TermGenerator "
Copy constructor.
Xapian::TermGenerator::TermGenerator(const TermGenerator &o) ";
%feature("docstring") Xapian::TermGenerator::TermGenerator "
Default constructor.
Xapian::TermGenerator::TermGenerator() ";
%feature("docstring") Xapian::TermGenerator::~TermGenerator "
Destructor.
Xapian::TermGenerator::~TermGenerator() ";
%feature("docstring") Xapian::TermGenerator::set_stemmer "
Set the Xapian::Stem object to be used for generating stemmed terms.
void Xapian::TermGenerator::set_stemmer(const Xapian::Stem &stemmer)
";
%feature("docstring") Xapian::TermGenerator::set_stopper "
Set the Xapian::Stopper object to be used for identifying stopwords.
void Xapian::TermGenerator::set_stopper(const Xapian::Stopper
*stop=NULL) ";
%feature("docstring") Xapian::TermGenerator::set_document "
Set the current document.
void Xapian::TermGenerator::set_document(const Xapian::Document &doc)
";
%feature("docstring") Xapian::TermGenerator::get_document "
Get the current document.
const Xapian::Document& Xapian::TermGenerator::get_document() const ";
%feature("docstring") Xapian::TermGenerator::set_database "
Set the database to index spelling data to.
void Xapian::TermGenerator::set_database(const
Xapian::WritableDatabase &db) ";
%feature("docstring") Xapian::TermGenerator::set_flags "
Set flags.
flags Xapian::TermGenerator::set_flags(flags toggle, flags
mask=flags(0))
The new value of flags is: (flags & mask) ^ toggle
To just set the flags, pass the new flags in toggle and the default
value for mask.
Parameters:
-----------
toggle: Flags to XOR.
mask: Flags to AND with first.
The old flags setting. ";
%feature("docstring") Xapian::TermGenerator::index_text "
Index some text.
void Xapian::TermGenerator::index_text(const Xapian::Utf8Iterator
&itor, Xapian::termcount weight=1, const std::string &prefix=\"\")
Parameters:
-----------
weight: The wdf increment (default 1).
prefix: The term prefix to use (default is no prefix). ";
%feature("docstring") Xapian::TermGenerator::index_text "
Index some text in a std::string.
void Xapian::TermGenerator::index_text(const std::string &text,
Xapian::termcount weight=1, const std::string &prefix=\"\")
Parameters:
-----------
weight: The wdf increment (default 1).
prefix: The term prefix to use (default is no prefix). ";
%feature("docstring")
Xapian::TermGenerator::index_text_without_positions "
Index some text without positional information.
void Xapian::TermGenerator::index_text_without_positions(const
Xapian::Utf8Iterator &itor, Xapian::termcount weight=1, const
std::string &prefix=\"\")
Just like index_text, but no positional information is generated. This
means that the database will be significantly smaller, but that phrase
searching and NEAR won't be supported. ";
%feature("docstring")
Xapian::TermGenerator::index_text_without_positions "
Index some text in a std::string without positional information.
void Xapian::TermGenerator::index_text_without_positions(const
std::string &text, Xapian::termcount weight=1, const std::string
&prefix=\"\")
Just like index_text, but no positional information is generated. This
means that the database will be significantly smaller, but that phrase
searching and NEAR won't be supported. ";
%feature("docstring") Xapian::TermGenerator::increase_termpos "
Increase the termpos used by index_text by delta.
void Xapian::TermGenerator::increase_termpos(Xapian::termcount
delta=100)
This can be used to prevent phrase searches from spanning two
unconnected blocks of text (e.g. the title and body text). ";
%feature("docstring") Xapian::TermGenerator::get_termpos "
Get the current term position.
Xapian::termcount Xapian::TermGenerator::get_termpos() const ";
%feature("docstring") Xapian::TermGenerator::set_termpos "
Set the current term position.
void Xapian::TermGenerator::set_termpos(Xapian::termcount termpos) ";
%feature("docstring") Xapian::TermGenerator::get_description "
Return a string describing this object.
std::string Xapian::TermGenerator::get_description() const ";
// File: classXapian_1_1TermIterator.xml
%feature("docstring") Xapian::TermIterator "
An iterator pointing to items in a list of terms. ";
%feature("docstring") Xapian::TermIterator::TermIterator "Xapian::TermIterator::TermIterator(Internal *internal_) ";
%feature("docstring") Xapian::TermIterator::TermIterator "
Default constructor - for declaring an uninitialised iterator.
Xapian::TermIterator::TermIterator() ";
%feature("docstring") Xapian::TermIterator::~TermIterator "
Destructor.
Xapian::TermIterator::~TermIterator() ";
%feature("docstring") Xapian::TermIterator::TermIterator "
Copying is allowed.
Xapian::TermIterator::TermIterator(const TermIterator &other)
The internals are reference counted, so copying is also cheap. ";
%feature("docstring") Xapian::TermIterator::skip_to "
Skip the iterator to term tname, or the first term after tname if
tname isn't in the list of terms being iterated.
void Xapian::TermIterator::skip_to(const std::string &tname) ";
%feature("docstring") Xapian::TermIterator::get_wdf "
Return the wdf of the current term (if meaningful).
Xapian::termcount Xapian::TermIterator::get_wdf() const
The wdf (within document frequency) is the number of occurences of a
term in a particular document. ";
%feature("docstring") Xapian::TermIterator::get_termfreq "
Return the term frequency of the current term (if meaningful).
Xapian::doccount Xapian::TermIterator::get_termfreq() const
The term frequency is the number of documents which a term indexes. ";
%feature("docstring") Xapian::TermIterator::positionlist_count "
Return length of positionlist for current term.
Xapian::termcount Xapian::TermIterator::positionlist_count() const ";
%feature("docstring") Xapian::TermIterator::positionlist_begin "
Return PositionIterator pointing to start of positionlist for current
term.
PositionIterator Xapian::TermIterator::positionlist_begin() const ";
%feature("docstring") Xapian::TermIterator::positionlist_end "
Return PositionIterator pointing to end of positionlist for current
term.
PositionIterator Xapian::TermIterator::positionlist_end() const ";
%feature("docstring") Xapian::TermIterator::get_description "
Return a string describing this object.
std::string Xapian::TermIterator::get_description() const ";
// File: classXapian_1_1TermNameWrapper.xml
%feature("docstring") Xapian::TermNameWrapper "";
%feature("docstring") Xapian::TermNameWrapper::TermNameWrapper "Xapian::TermNameWrapper::TermNameWrapper(const std::string &tname_) ";
// File: classXapian_1_1TermPosWrapper.xml
%feature("docstring") Xapian::TermPosWrapper "";
%feature("docstring") Xapian::TermPosWrapper::TermPosWrapper "Xapian::TermPosWrapper::TermPosWrapper(termpos pos_) ";
// File: classXapian_1_1TradWeight.xml
%feature("docstring") Xapian::TradWeight "
Traditional probabilistic weighting scheme.
This class implements the Traditional Probabilistic Weighting scheme,
as described by the early papers on Probabilistic Retrieval. BM25
generally gives better results.
The Traditional weighting scheme formula is \\\\[
\\\\sum_{t}\\\\frac{f_{t,d}}{k.L_{d}+f_{t,d}}.w_{t} \\\\] where
$w_{t}$ is the termweight of term t
$f_{t,d}$ is the within document frequency of term t in document d
$L_{d}$ is the normalised length of document d
$k$ is a user specifiable parameter
TradWeight(k) is equivalent to BM25Weight(k, 0, 0, 1, 0), except that
the latter returns weights (k+1) times larger. ";
%feature("docstring") Xapian::TradWeight::TradWeight "
Construct a TradWeight.
Xapian::TradWeight::TradWeight(double k)
Parameters:
-----------
k: parameter governing the importance of within document frequency
and document length - any non-negative number (0 meaning to ignore wdf
and doc length when calculating weights). Default is 1. ";
%feature("docstring") Xapian::TradWeight::TradWeight "Xapian::TradWeight::TradWeight() ";
%feature("docstring") Xapian::TradWeight::clone "
Return a new weight object of this type.
TradWeight* Xapian::TradWeight::clone() const
A subclass called FooWeight taking parameters param1 and param2 should
implement this as:
virtual FooWeight * clone() const { return new FooWeight(param1,
param2); } ";
%feature("docstring") Xapian::TradWeight::~TradWeight "Xapian::TradWeight::~TradWeight() ";
%feature("docstring") Xapian::TradWeight::name "
Name of the weighting scheme.
std::string Xapian::TradWeight::name() const
If the subclass is called FooWeight, this should return \"Foo\". ";
%feature("docstring") Xapian::TradWeight::serialise "
Serialise object parameters into a string.
std::string Xapian::TradWeight::serialise() const ";
%feature("docstring") Xapian::TradWeight::unserialise "
Create object given string serialisation returned by serialise().
TradWeight* Xapian::TradWeight::unserialise(const std::string &s)
const ";
%feature("docstring") Xapian::TradWeight::get_sumpart "
Get a weight which is part of the sum over terms being performed.
Xapian::weight Xapian::TradWeight::get_sumpart(Xapian::termcount wdf,
Xapian::doclength len) const
This returns a weight for a given term and document. These weights are
summed to give a total weight for the document.
Parameters:
-----------
wdf: the within document frequency of the term.
len: the (unnormalised) document length. ";
%feature("docstring") Xapian::TradWeight::get_maxpart "
Gets the maximum value that get_sumpart() may return.
Xapian::weight Xapian::TradWeight::get_maxpart() const
This is used in optimising searches, by having the postlist tree decay
appropriately when parts of it can have limited, or no, further
effect. ";
%feature("docstring") Xapian::TradWeight::get_sumextra "
Get an extra weight for a document to add to the sum calculated over
the query terms.
Xapian::weight Xapian::TradWeight::get_sumextra(Xapian::doclength len)
const
This returns a weight for a given document, and is used by some
weighting schemes to account for influence such as document length.
Parameters:
-----------
len: the (unnormalised) document length. ";
%feature("docstring") Xapian::TradWeight::get_maxextra "
Gets the maximum value that get_sumextra() may return.
Xapian::weight Xapian::TradWeight::get_maxextra() const
This is used in optimising searches. ";
%feature("docstring") Xapian::TradWeight::get_sumpart_needs_doclength
"
return false if the weight object doesn't need doclength
bool Xapian::TradWeight::get_sumpart_needs_doclength() const ";
// File: classXapian_1_1Utf8Iterator.xml
%feature("docstring") Xapian::Utf8Iterator "
An iterator which returns unicode character values from a UTF-8
encoded string. ";
%feature("docstring") Xapian::Utf8Iterator::raw "
Return the raw const char * pointer for the current position.
const char* Xapian::Utf8Iterator::raw() const ";
%feature("docstring") Xapian::Utf8Iterator::left "
Return the number of bytes left in the iterator's buffer.
size_t Xapian::Utf8Iterator::left() const ";
%feature("docstring") Xapian::Utf8Iterator::assign "
Assign a new string to the iterator.
void Xapian::Utf8Iterator::assign(const char *p_, size_t len)
The iterator will forget the string it was iterating through, and
return characters from the start of the new string when next called.
The string is not copied into the iterator, so it must remain valid
while the iteration is in progress.
Parameters:
-----------
p: A pointer to the start of the string to read.
len: The length of the string to read. ";
%feature("docstring") Xapian::Utf8Iterator::assign "
Assign a new string to the iterator.
void Xapian::Utf8Iterator::assign(const std::string &s)
The iterator will forget the string it was iterating through, and
return characters from the start of the new string when next called.
The string is not copied into the iterator, so it must remain valid
while the iteration is in progress.
Parameters:
-----------
s: The string to read. Must not be modified while the iteration is in
progress. ";
%feature("docstring") Xapian::Utf8Iterator::Utf8Iterator "
Create an iterator given a pointer to a null terminated string.
Xapian::Utf8Iterator::Utf8Iterator(const char *p_)
The iterator will return characters from the start of the string when
next called. The string is not copied into the iterator, so it must
remain valid while the iteration is in progress.
Parameters:
-----------
p: A pointer to the start of the null terminated string to read. ";
%feature("docstring") Xapian::Utf8Iterator::Utf8Iterator "
Create an iterator given a pointer and a length.
Xapian::Utf8Iterator::Utf8Iterator(const char *p_, size_t len)
The iterator will return characters from the start of the string when
next called. The string is not copied into the iterator, so it must
remain valid while the iteration is in progress.
Parameters:
-----------
p: A pointer to the start of the string to read.
len: The length of the string to read. ";
%feature("docstring") Xapian::Utf8Iterator::Utf8Iterator "
Create an iterator given a string.
Xapian::Utf8Iterator::Utf8Iterator(const std::string &s)
The iterator will return characters from the start of the string when
next called. The string is not copied into the iterator, so it must
remain valid while the iteration is in progress.
Parameters:
-----------
s: The string to read. Must not be modified while the iteration is in
progress. ";
%feature("docstring") Xapian::Utf8Iterator::Utf8Iterator "
Create an iterator which is at the end of its iteration.
Xapian::Utf8Iterator::Utf8Iterator()
This can be compared to another iterator to check if the other
iterator has reached its end. ";
// File: classXapian_1_1ValueCountMatchSpy.xml
%feature("docstring") Xapian::ValueCountMatchSpy "
Class for counting the frequencies of values in the matching
documents. ";
%feature("docstring") Xapian::ValueCountMatchSpy::ValueCountMatchSpy
"
Default constructor.
Xapian::ValueCountMatchSpy::ValueCountMatchSpy() ";
%feature("docstring") Xapian::ValueCountMatchSpy::ValueCountMatchSpy
"
Construct a MatchSpy which counts the values in a particular slot.
Xapian::ValueCountMatchSpy::ValueCountMatchSpy(Xapian::valueno valno,
bool multivalue=false)
Further slots can be added by calling add_slot(). ";
%feature("docstring") Xapian::ValueCountMatchSpy::add_slot "
Add a slot number to count values in.
void Xapian::ValueCountMatchSpy::add_slot(Xapian::valueno valno, bool
multivalue=false)
A ValueCountMatchSpy can count values in one or more slots. ";
%feature("docstring") Xapian::ValueCountMatchSpy::get_values "
Return the values seen in slot number valno.
const std::map<std::string, Xapian::doccount>&
Xapian::ValueCountMatchSpy::get_values(Xapian::valueno valno) const
Parameters:
-----------
valno: The slot to examine (must have specified for examination
before performing the match - either by using the add_slot() method,
or using the constructor which takes a slot number.) ";
%feature("docstring") Xapian::ValueCountMatchSpy::get_total "
Return the total number of documents tallied.
size_t Xapian::ValueCountMatchSpy::get_total() const ";
%feature("docstring") Xapian::ValueCountMatchSpy::get_top_values "
Get the most frequent values in a slot.
void Xapian::ValueCountMatchSpy::get_top_values(std::vector<
StringAndFrequency > &result, Xapian::valueno valno, size_t maxvalues)
const
Parameters:
-----------
result: A vector which will be filled with the most frequent values,
in descending order of frequency. Values with the same frequency will
be sorted in ascending alphabetical order.
valno: The slot to examine (must have specified for examination
before performing the match - either by using the add_slot() method,
or using the constructor which takes a slot number.)
maxvalues: The maximum number of values to return. ";
// File: classXapian_1_1ValueIterator.xml
%feature("docstring") Xapian::ValueIterator "
An iterator pointing to values associated with a document. ";
%feature("docstring") Xapian::ValueIterator::ValueIterator "
Create an uninitialised iterator; this cannot be used, but is
convenient syntactically.
Xapian::ValueIterator::ValueIterator() ";
%feature("docstring") Xapian::ValueIterator::~ValueIterator "Xapian::ValueIterator::~ValueIterator() ";
%feature("docstring") Xapian::ValueIterator::ValueIterator "
Copying is allowed (and is cheap).
Xapian::ValueIterator::ValueIterator(const ValueIterator &other) ";
%feature("docstring") Xapian::ValueIterator::get_valueno "
Get the number of the value at the current position.
Xapian::valueno Xapian::ValueIterator::get_valueno() const ";
%feature("docstring") Xapian::ValueIterator::get_description "
Return a string describing this object.
std::string Xapian::ValueIterator::get_description() const ";
// File: structXapian_1_1ValueRangeProcessor.xml
%feature("docstring") Xapian::ValueRangeProcessor "
Base class for value range processors. ";
%feature("docstring")
Xapian::ValueRangeProcessor::~ValueRangeProcessor "
Destructor.
virtual Xapian::ValueRangeProcessor::~ValueRangeProcessor() ";
// File: classXapian_1_1Weight.xml
%feature("docstring") Xapian::Weight "
Abstract base class for weighting schemes. ";
%feature("docstring") Xapian::Weight::Weight "Xapian::Weight::Weight() ";
%feature("docstring") Xapian::Weight::~Weight "virtual
Xapian::Weight::~Weight() ";
%feature("docstring") Xapian::Weight::create "
Create a new weight object of the same type as this and initialise it
with the specified statistics.
Weight* Xapian::Weight::create(const Internal *internal_,
Xapian::doclength querysize_, Xapian::termcount wqf_, const
std::string &tname_) const
You shouldn't call this method yourself - it's called by Enquire.
Parameters:
-----------
internal_: Object to ask for collection statistics.
querysize_: Query size.
wqf_: Within query frequency of term this object is associated with.
tname_: Term which this object is associated with. ";
%feature("docstring") Xapian::Weight::name "
Name of the weighting scheme.
virtual std::string Xapian::Weight::name() const=0
If the subclass is called FooWeight, this should return \"Foo\". ";
%feature("docstring") Xapian::Weight::serialise "
Serialise object parameters into a string.
virtual std::string Xapian::Weight::serialise() const=0 ";
%feature("docstring") Xapian::Weight::unserialise "
Create object given string serialisation returned by serialise().
virtual Weight* Xapian::Weight::unserialise(const std::string &s)
const=0 ";
%feature("docstring") Xapian::Weight::get_sumpart "
Get a weight which is part of the sum over terms being performed.
virtual Xapian::weight Xapian::Weight::get_sumpart(Xapian::termcount
wdf, Xapian::doclength len) const=0
This returns a weight for a given term and document. These weights are
summed to give a total weight for the document.
Parameters:
-----------
wdf: the within document frequency of the term.
len: the (unnormalised) document length. ";
%feature("docstring") Xapian::Weight::get_maxpart "
Gets the maximum value that get_sumpart() may return.
virtual Xapian::weight Xapian::Weight::get_maxpart() const=0
This is used in optimising searches, by having the postlist tree decay
appropriately when parts of it can have limited, or no, further
effect. ";
%feature("docstring") Xapian::Weight::get_sumextra "
Get an extra weight for a document to add to the sum calculated over
the query terms.
virtual Xapian::weight Xapian::Weight::get_sumextra(Xapian::doclength
len) const=0
This returns a weight for a given document, and is used by some
weighting schemes to account for influence such as document length.
Parameters:
-----------
len: the (unnormalised) document length. ";
%feature("docstring") Xapian::Weight::get_maxextra "
Gets the maximum value that get_sumextra() may return.
virtual Xapian::weight Xapian::Weight::get_maxextra() const=0
This is used in optimising searches. ";
%feature("docstring") Xapian::Weight::get_sumpart_needs_doclength "
return false if the weight object doesn't need doclength
virtual bool Xapian::Weight::get_sumpart_needs_doclength() const ";
// File: classXapian_1_1WritableDatabase.xml
%feature("docstring") Xapian::WritableDatabase "
This class provides read/write access to a database. ";
%feature("docstring") Xapian::WritableDatabase::~WritableDatabase "
Destroy this handle on the database.
virtual Xapian::WritableDatabase::~WritableDatabase()
If there are no copies of this object remaining, the database will be
closed. If there are any transactions in progress these will be
aborted as if cancel_transaction had been called. ";
%feature("docstring") Xapian::WritableDatabase::WritableDatabase "
Create an empty WritableDatabase.
Xapian::WritableDatabase::WritableDatabase() ";
%feature("docstring") Xapian::WritableDatabase::WritableDatabase "
Open a database for update, automatically determining the database
backend to use.
Xapian::WritableDatabase::WritableDatabase(const std::string &path,
int action)
If the database is to be created, Xapian will try to create the
directory indicated by path if it doesn't already exist (but only the
leaf directory, not recursively).
Parameters:
-----------
path: directory that the database is stored in.
action: one of: Xapian::DB_CREATE_OR_OPEN open for read/write;
create if no db exists
Xapian::DB_CREATE create new database; fail if db exists
Xapian::DB_CREATE_OR_OVERWRITE overwrite existing db; create if none
exists
Xapian::DB_OPEN open for read/write; fail if no db exists ";
%feature("docstring") Xapian::WritableDatabase::WritableDatabase "
Copying is allowed.
Xapian::WritableDatabase::WritableDatabase(const WritableDatabase
&other)
The internals are reference counted, so copying is cheap. ";
%feature("docstring") Xapian::WritableDatabase::flush "
Flush to disk any modifications made to the database.
void Xapian::WritableDatabase::flush()
For efficiency reasons, when performing multiple updates to a database
it is best (indeed, almost essential) to make as many modifications as
memory will permit in a single pass through the database. To ensure
this, Xapian batches up modifications.
Flush may be called at any time to ensure that the modifications which
have been made are written to disk: if the flush succeeds, all the
preceding modifications will have been written to disk.
If any of the modifications fail, an exception will be thrown and the
database will be left in a state in which each separate addition,
replacement or deletion operation has either been fully performed or
not performed at all: it is then up to the application to work out
which operations need to be repeated.
It's not valid to call flush within a transaction.
Beware of calling flush too frequently: this will have a severe
performance cost.
Note that flush need not be called explicitly: it will be called
automatically when the database is closed, or when a sufficient number
of modifications have been made.
Parameters:
-----------
Xapian::DatabaseError: will be thrown if a problem occurs while
modifying the database.
Xapian::DatabaseCorruptError: will be thrown if the database is in a
corrupt state.
Xapian::DatabaseLockError: will be thrown if a lock couldn't be
acquired on the database. ";
%feature("docstring") Xapian::WritableDatabase::begin_transaction "
Begin a transaction.
void Xapian::WritableDatabase::begin_transaction(bool flushed=true)
In Xapian a transaction is a group of modifications to the database
which are linked such that either all will be applied simultaneously
or none will be applied at all. Even in the case of a power failure,
this characteristic should be preserved (as long as the filesystem
isn't corrupted, etc).
A transaction is started with begin_transaction() and can either be
committed by calling commit_transaction() or aborted by calling
cancel_transaction().
By default, a transaction implicitly calls flush before and after so
that the modifications stand and fall without affecting modifications
before or after.
The downside of this flushing is that small transactions cause
modifications to be frequently flushed which can harm indexing
performance in the same way that explicitly calling flush frequently
can.
If you're applying atomic groups of changes and only wish to ensure
that each group is either applied or not applied, then you can prevent
the automatic flush before and after the transaction by starting the
transaction with begin_transaction(false). However, if
cancel_transaction is called (or if commit_transaction isn't called
before the WritableDatabase object is destroyed) then any changes
which were pending before the transaction began will also be
discarded.
Transactions aren't currently supported by the InMemory backend.
Parameters:
-----------
Xapian::UnimplementedError: will be thrown if transactions are not
available for this database type.
Xapian::InvalidOperationError: will be thrown if this is called at an
invalid time, such as when a transaction is already in progress. ";
%feature("docstring") Xapian::WritableDatabase::commit_transaction "
Complete the transaction currently in progress.
void Xapian::WritableDatabase::commit_transaction()
If this method completes successfully and this is a flushed
transaction, all the database modifications made during the
transaction will have been committed to the database.
If an error occurs, an exception will be thrown, and none of the
modifications made to the database during the transaction will have
been applied to the database.
In all cases the transaction will no longer be in progress.
Parameters:
-----------
Xapian::DatabaseError: will be thrown if a problem occurs while
modifying the database.
Xapian::DatabaseCorruptError: will be thrown if the database is in a
corrupt state.
Xapian::InvalidOperationError: will be thrown if a transaction is not
currently in progress.
Xapian::UnimplementedError: will be thrown if transactions are not
available for this database type. ";
%feature("docstring") Xapian::WritableDatabase::cancel_transaction "
Abort the transaction currently in progress, discarding the potential
modifications made to the database.
void Xapian::WritableDatabase::cancel_transaction()
If an error occurs in this method, an exception will be thrown, but
the transaction will be cancelled anyway.
Parameters:
-----------
Xapian::DatabaseError: will be thrown if a problem occurs while
modifying the database.
Xapian::DatabaseCorruptError: will be thrown if the database is in a
corrupt state.
Xapian::InvalidOperationError: will be thrown if a transaction is not
currently in progress.
Xapian::UnimplementedError: will be thrown if transactions are not
available for this database type. ";
%feature("docstring") Xapian::WritableDatabase::add_document "
Add a new document to the database.
Xapian::docid Xapian::WritableDatabase::add_document(const
Xapian::Document &document)
This method adds the specified document to the database, returning a
newly allocated document ID. Automatically allocated document IDs come
from a per-database monotonically increasing counter, so IDs from
deleted documents won't be reused.
If you want to specify the document ID to be used, you should call
replace_document() instead.
Note that changes to the database won't be immediately committed to
disk; see flush() for more details.
As with all database modification operations, the effect is atomic:
the document will either be fully added, or the document fails to be
added and an exception is thrown (possibly at a later time when flush
is called or the database is closed).
Parameters:
-----------
document: The new document to be added.
The document ID of the newly added document.
Parameters:
-----------
Xapian::DatabaseError: will be thrown if a problem occurs while
writing to the database.
Xapian::DatabaseCorruptError: will be thrown if the database is in a
corrupt state. ";
%feature("docstring") Xapian::WritableDatabase::delete_document "
Delete a document from the database.
void Xapian::WritableDatabase::delete_document(Xapian::docid did)
This method removes the document with the specified document ID from
the database.
Note that changes to the database won't be immediately committed to
disk; see flush() for more details.
As with all database modification operations, the effect is atomic:
the document will either be fully removed, or the document fails to be
removed and an exception is thrown (possibly at a later time when
flush is called or the database is closed).
Parameters:
-----------
did: The document ID of the document to be removed.
Parameters:
-----------
Xapian::DatabaseError: will be thrown if a problem occurs while
writing to the database.
Xapian::DatabaseCorruptError: will be thrown if the database is in a
corrupt state. ";
%feature("docstring") Xapian::WritableDatabase::delete_document "
Delete any documents indexed by a term from the database.
void Xapian::WritableDatabase::delete_document(const std::string
&unique_term)
This method removes any documents indexed by the specified term from
the database.
A major use is for convenience when UIDs from another system are
mapped to terms in Xapian, although this method has other uses (for
example, you could add a \"deletion date\" term to documents at index
time and use this method to delete all documents due for deletion on a
particular date).
Parameters:
-----------
unique_term: The term to remove references to.
Parameters:
-----------
Xapian::DatabaseError: will be thrown if a problem occurs while
writing to the database.
Xapian::DatabaseCorruptError: will be thrown if the database is in a
corrupt state. ";
%feature("docstring") Xapian::WritableDatabase::replace_document "
Replace a given document in the database.
void Xapian::WritableDatabase::replace_document(Xapian::docid did,
const Xapian::Document &document)
This method replaces the document with the specified document ID. If
document ID did isn't currently used, the document will be added with
document ID did.
The monotonic counter used for automatically allocating document IDs
is increased so that the next automatically allocated document ID will
be did + 1. Be aware that if you use this method to specify a high
document ID for a new document, and also use
WritableDatabase::add_document(), Xapian may get to a state where this
counter wraps around and will be unable to automatically allocate
document IDs!
Note that changes to the database won't be immediately committed to
disk; see flush() for more details.
As with all database modification operations, the effect is atomic:
the document will either be fully replaced, or the document fails to
be replaced and an exception is thrown (possibly at a later time when
flush is called or the database is closed).
Parameters:
-----------
did: The document ID of the document to be replaced.
document: The new document.
Parameters:
-----------
Xapian::DatabaseError: will be thrown if a problem occurs while
writing to the database.
Xapian::DatabaseCorruptError: will be thrown if the database is in a
corrupt state. ";
%feature("docstring") Xapian::WritableDatabase::replace_document "
Replace any documents matching a term.
Xapian::docid Xapian::WritableDatabase::replace_document(const
std::string &unique_term, const Xapian::Document &document)
This method replaces any documents indexed by the specified term with
the specified document. If any documents are indexed by the term, the
lowest document ID will be used for the document, otherwise a new
document ID will be generated as for add_document.
The intended use is to allow UIDs from another system to easily be
mapped to terms in Xapian, although this method probably has other
uses.
Note that changes to the database won't be immediately committed to
disk; see flush() for more details.
As with all database modification operations, the effect is atomic:
the document(s) will either be fully replaced, or the document(s) fail
to be replaced and an exception is thrown (possibly at a later time
when flush is called or the database is closed).
Parameters:
-----------
unique_term: The \"unique\" term.
document: The new document.
The document ID that document was given.
Parameters:
-----------
Xapian::DatabaseError: will be thrown if a problem occurs while
writing to the database.
Xapian::DatabaseCorruptError: will be thrown if the database is in a
corrupt state. ";
%feature("docstring") Xapian::WritableDatabase::add_spelling "
Add a word to the spelling dictionary.
void Xapian::WritableDatabase::add_spelling(const std::string &word,
Xapian::termcount freqinc=1) const
If the word is already present, its frequency is increased.
Parameters:
-----------
word: The word to add.
freqinc: How much to increase its frequency by (default 1). ";
%feature("docstring") Xapian::WritableDatabase::remove_spelling "
Remove a word from the spelling dictionary.
void Xapian::WritableDatabase::remove_spelling(const std::string
&word, Xapian::termcount freqdec=1) const
The word's frequency is decreased, and if would become zero or less
then the word is removed completely.
Parameters:
-----------
word: The word to remove.
freqdec: How much to decrease its frequency by (default 1). ";
%feature("docstring") Xapian::WritableDatabase::add_synonym "
Add a synonym for a term.
void Xapian::WritableDatabase::add_synonym(const std::string &term,
const std::string &synonym) const
If synonym is already a synonym for term, then no action is taken. ";
%feature("docstring") Xapian::WritableDatabase::remove_synonym "
Remove a synonym for a term.
void Xapian::WritableDatabase::remove_synonym(const std::string &term,
const std::string &synonym) const
If synonym isn't a synonym for term, then no action is taken. ";
%feature("docstring") Xapian::WritableDatabase::clear_synonyms "
Remove all synonyms for a term.
void Xapian::WritableDatabase::clear_synonyms(const std::string &term)
const
If term has no synonyms, no action is taken. ";
%feature("docstring") Xapian::WritableDatabase::set_metadata "
Set the user-specified metadata associated with a given key.
void Xapian::WritableDatabase::set_metadata(const std::string &key,
const std::string &value)
This method sets the metadata value associated with a given key. If
there is already a metadata value stored in the database with the same
key, the old value is replaced. If you want to delete an existing item
of metadata, just set its value to the empty string.
User-specified metadata allows you to store arbitrary information in
the form of (key,tag) pairs.
There's no hard limit on the number of metadata items, or the size of
the metadata values. Metadata keys have a limited length, which
depends on the backend. We recommend limiting them to 200 bytes. Empty
keys are not valid, and specifying one will cause an exception.
Metadata modifications are committed to disk in the same way as
modifications to the documents in the database are: i.e.,
modifications are atomic, and won't be committed to disk immediately
(see flush() for more details). This allows metadata to be used to
link databases with versioned external resources by storing the
appropriate version number in a metadata item.
You can also use the metadata to store arbitrary extra information
associated with terms, documents, or postings by encoding the termname
and/or document id into the metadata key.
Parameters:
-----------
key: The key of the metadata item to set.
value: The value of the metadata item to set.
Parameters:
-----------
Xapian::DatabaseError: will be thrown if a problem occurs while
writing to the database.
Xapian::DatabaseCorruptError: will be thrown if the database is in a
corrupt state.
Xapian::InvalidArgumentError: will be thrown if the key supplied is
empty. ";
%feature("docstring") Xapian::WritableDatabase::get_description "
Return a string describing this object.
std::string Xapian::WritableDatabase::get_description() const ";
// File: namespaceXapian.xml
%feature("docstring") Xapian::Auto::sortable_serialise "
Convert a floating point number to a string, preserving sort order.
XAPIAN_VISIBILITY_DEFAULT std::string
Xapian::sortable_serialise(double value)
This method converts a floating point number to a string, suitable for
using as a value for numeric range restriction, or for use as a sort
key.
The conversion is platform independent.
The conversion attempts to ensure that, for any pair of values
supplied to the conversion algorithm, the result of comparing the
original values (with a numeric comparison operator) will be the same
as the result of comparing the resulting values (with a string
comparison operator). On platforms which represent doubles with the
precisions specified by IEEE_754, this will be the case: if the
representation of doubles is more precise, it is possible that two
very close doubles will be mapped to the same string, so will compare
equal.
Note also that both zero and -zero will be converted to the same
representation: since these compare equal, this satisfies the
comparison constraint, but it's worth knowing this if you wish to use
the encoding in some situation where this distinction matters.
Handling of NaN isn't (currently) guaranteed to be sensible. ";
%feature("docstring") Xapian::Auto::sortable_unserialise "
Convert a string encoded using sortable_serialise back to a floating
point number.
XAPIAN_VISIBILITY_DEFAULT double Xapian::sortable_unserialise(const
std::string &value)
This expects the input to be a string produced by
sortable_serialise(). If the input is not such a string, the value
returned is undefined (but no error will be thrown).
The result of the conversion will be exactly the value which was
supplied to sortable_serialise() when making the string on platforms
which represent doubles with the precisions specified by IEEE_754, but
may be a different (nearby) value on other platforms. ";
%feature("docstring") Xapian::Auto::version_string "
Report the version string of the library which the program is linked
with.
XAPIAN_VISIBILITY_DEFAULT const char* Xapian::version_string()
This may be different to the version compiled against (given by
XAPIAN_VERSION) if shared libraries are being used. ";
%feature("docstring") Xapian::Auto::XAPIAN_DEPRECATED "
For compatibility with Xapian 0.9.5 and earlier.
XAPIAN_VISIBILITY_DEFAULT Xapian::XAPIAN_DEPRECATED(const char
*xapian_version_string())
Deprecated This function is now deprecated, use
Xapian::version_string() instead. ";
%feature("docstring") Xapian::Auto::major_version "
Report the major version of the library which the program is linked
to.
XAPIAN_VISIBILITY_DEFAULT int Xapian::major_version()
This may be different to the version compiled against (given by
XAPIAN_MAJOR_VERSION) if shared libraries are being used. ";
%feature("docstring") Xapian::Auto::XAPIAN_DEPRECATED "
For compatibility with Xapian 0.9.5 and earlier.
XAPIAN_VISIBILITY_DEFAULT Xapian::XAPIAN_DEPRECATED(int
xapian_major_version())
Deprecated This function is now deprecated, use
Xapian::major_version() instead. ";
%feature("docstring") Xapian::Auto::minor_version "
Report the minor version of the library which the program is linked
to.
XAPIAN_VISIBILITY_DEFAULT int Xapian::minor_version()
This may be different to the version compiled against (given by
XAPIAN_MINOR_VERSION) if shared libraries are being used. ";
%feature("docstring") Xapian::Auto::revision "
Report the revision of the library which the program is linked to.
XAPIAN_VISIBILITY_DEFAULT int Xapian::revision()
This may be different to the version compiled against (given by
XAPIAN_REVISION) if shared libraries are being used. ";
// File: namespaceXapian_1_1Auto.xml
%feature("docstring") Xapian::Auto::open_stub "
Construct a Database object for a stub database file.
XAPIAN_VISIBILITY_DEFAULT Database Xapian::Auto::open_stub(const
std::string &file)
The stub database file contains serialised parameters for one or more
databases.
Parameters:
-----------
file: pathname of the stub database file. ";
// File: namespaceXapian_1_1Flint.xml
%feature("docstring") Xapian::Flint::open "
Construct a Database object for read-only access to a Flint database.
XAPIAN_VISIBILITY_DEFAULT Database Xapian::Flint::open(const
std::string &dir)
Parameters:
-----------
dir: pathname of the directory containing the database. ";
%feature("docstring") Xapian::Flint::open "
Construct a Database object for update access to a Flint database.
XAPIAN_VISIBILITY_DEFAULT WritableDatabase Xapian::Flint::open(const
std::string &dir, int action, int block_size=8192)
Parameters:
-----------
dir: pathname of the directory containing the database.
action: determines handling of existing/non-existing database:
Xapian::DB_CREATE fail if database already exist, otherwise create new
database.
Xapian::DB_CREATE_OR_OPEN open existing database, or create new
database if none exists.
Xapian::DB_CREATE_OR_OVERWRITE overwrite existing database, or create
new database if none exists.
Xapian::DB_OPEN open existing database, failing if none exists.
block_size: the Btree blocksize to use (in bytes), which must be a
power of two between 2048 and 65536 (inclusive). The default (also
used if an invalid value if passed) is 8192 bytes. This parameter is
ignored when opening an existing database. ";
// File: namespaceXapian_1_1InMemory.xml
%feature("docstring") Xapian::InMemory::open "
Construct a Database object for update access to an InMemory database.
XAPIAN_VISIBILITY_DEFAULT WritableDatabase Xapian::InMemory::open()
A new, empty database is created for each call. ";
// File: namespaceXapian_1_1Internal.xml
// File: namespaceXapian_1_1Quartz.xml
%feature("docstring") Xapian::Quartz::XAPIAN_DEPRECATED "
Construct a Database object for read-only access to a Quartz database.
XAPIAN_VISIBILITY_DEFAULT Xapian::Quartz::XAPIAN_DEPRECATED(Database
open(const std::string &dir))
The Quartz backend is deprecated - use the Flint backend instead.
Parameters:
-----------
dir: pathname of the directory containing the database. ";
%feature("docstring") Xapian::Quartz::XAPIAN_DEPRECATED "
Construct a Database object for update access to a Quartz database.
XAPIAN_VISIBILITY_DEFAULT
Xapian::Quartz::XAPIAN_DEPRECATED(WritableDatabase open(const
std::string &dir, int action, int block_size=8192))
The Quartz backend is deprecated - use the Flint backend instead.
Parameters:
-----------
dir: pathname of the directory containing the database.
action: determines handling of existing/non-existing database:
Xapian::DB_CREATE fail if database already exist, otherwise create new
database.
Xapian::DB_CREATE_OR_OPEN open existing database, or create new
database if none exists.
Xapian::DB_CREATE_OR_OVERWRITE overwrite existing database, or create
new database if none exists.
Xapian::DB_OPEN open existing database, failing if none exists.
block_size: the Btree blocksize to use (in bytes), which must be a
power of two between 2048 and 65536 (inclusive). The default (also
used if an invalid value if passed) is 8192 bytes. This parameter is
ignored when opening an existing database. ";
// File: namespaceXapian_1_1Remote.xml
%feature("docstring") Xapian::Remote::open "
Construct a Database object for read-only access to a remote database
accessed via a TCP connection.
XAPIAN_VISIBILITY_DEFAULT Database Xapian::Remote::open(const
std::string &host, unsigned int port, Xapian::timeout timeout=10000,
Xapian::timeout connect_timeout=10000)
Access to the remote database is via a TCP connection to the specified
host and port.
Parameters:
-----------
host: hostname to connect to.
port: port number to connect to.
timeout: timeout in milliseconds. If this timeout is exceeded for any
individual operation on the remote database then
Xapian::NetworkTimeoutError is thrown. A timeout of 0 means don't
timeout. (Default is 10000ms, which is 10 seconds).
connect_timeout: timeout to use when connecting to the server. If
this timeout is exceeded then Xapian::NetworkTimeoutError is thrown. A
timeout of 0 means don't timeout. (Default is 10000ms, which is 10
seconds). ";
%feature("docstring") Xapian::Remote::open_writable "
Construct a WritableDatabase object for update access to a remote
database accessed via a TCP connection.
XAPIAN_VISIBILITY_DEFAULT WritableDatabase
Xapian::Remote::open_writable(const std::string &host, unsigned int
port, Xapian::timeout timeout=0, Xapian::timeout
connect_timeout=10000)
Access to the remote database is via a TCP connection to the specified
host and port.
Parameters:
-----------
host: hostname to connect to.
port: port number to connect to.
timeout: timeout in milliseconds. If this timeout is exceeded for any
individual operation on the remote database then
Xapian::NetworkTimeoutError is thrown. (Default is 0, which means
don't timeout).
connect_timeout: timeout to use when connecting to the server. If
this timeout is exceeded then Xapian::NetworkTimeoutError is thrown. A
timeout of 0 means don't timeout. (Default is 10000ms, which is 10
seconds). ";
%feature("docstring") Xapian::Remote::open "
Construct a Database object for read-only access to a remote database
accessed via a program.
XAPIAN_VISIBILITY_DEFAULT Database Xapian::Remote::open(const
std::string &program, const std::string &args, Xapian::timeout
timeout=10000)
Access to the remote database is done by running an external program
and communicating with it on stdin/stdout.
Parameters:
-----------
program: the external program to run.
args: space-separated list of arguments to pass to program.
timeout: timeout in milliseconds. If this timeout is exceeded for any
individual operation on the remote database then
Xapian::NetworkTimeoutError is thrown. A timeout of 0 means don't
timeout. (Default is 10000ms, which is 10 seconds). ";
%feature("docstring") Xapian::Remote::open_writable "
Construct a WritableDatabase object for update access to a remote
database accessed via a program.
XAPIAN_VISIBILITY_DEFAULT WritableDatabase
Xapian::Remote::open_writable(const std::string &program, const
std::string &args, Xapian::timeout timeout=0)
Access to the remote database is done by running an external program
and communicating with it on stdin/stdout.
Parameters:
-----------
program: the external program to run.
args: space-separated list of arguments to pass to program.
timeout: timeout in milliseconds. If this timeout is exceeded for any
individual operation on the remote database then
Xapian::NetworkTimeoutError is thrown. (Default is 0, which means
don't timeout). ";
// File: namespaceXapian_1_1Unicode.xml
%feature("docstring") Xapian::Unicode::Internal::nonascii_to_utf8 "
Convert a single non-ASCII unicode character to UTF-8.
XAPIAN_VISIBILITY_DEFAULT unsigned
Xapian::Unicode::nonascii_to_utf8(unsigned ch, char *buf)
This is intended mainly as a helper method for to_utf8().
The character ch (which must be > 128) is written to the buffer buf
and the length of the resultant UTF-8 character is returned.
NB buf must have space for (at least) 4 bytes. ";
%feature("docstring") Xapian::Unicode::Internal::to_utf8 "
Convert a single unicode character to UTF-8.
unsigned Xapian::Unicode::to_utf8(unsigned ch, char *buf)
The character ch is written to the buffer buf and the length of the
resultant UTF-8 character is returned.
NB buf must have space for (at least) 4 bytes. ";
%feature("docstring") Xapian::Unicode::Internal::append_utf8 "
Append the UTF-8 representation of a single unicode character to a
std::string.
void Xapian::Unicode::append_utf8(std::string &s, unsigned ch) ";
%feature("docstring") Xapian::Unicode::Internal::get_category "
Return the category which a given unicode character falls into.
category Xapian::Unicode::get_category(unsigned ch) ";
%feature("docstring") Xapian::Unicode::Internal::is_wordchar "
Test is a given unicode character is a letter or number.
bool Xapian::Unicode::is_wordchar(unsigned ch) ";
%feature("docstring") Xapian::Unicode::Internal::is_whitespace "
Test is a given unicode character is a whitespace character.
bool Xapian::Unicode::is_whitespace(unsigned ch) ";
%feature("docstring") Xapian::Unicode::Internal::is_currency "
Test is a given unicode character is a currency symbol.
bool Xapian::Unicode::is_currency(unsigned ch) ";
%feature("docstring") Xapian::Unicode::Internal::tolower "
Convert a unicode character to lowercase.
unsigned Xapian::Unicode::tolower(unsigned ch) ";
%feature("docstring") Xapian::Unicode::Internal::toupper "
Convert a unicode character to uppercase.
unsigned Xapian::Unicode::toupper(unsigned ch) ";
%feature("docstring") Xapian::Unicode::Internal::tolower "
Convert a UTF-8 std::string to lowercase.
std::string Xapian::Unicode::tolower(const std::string &term) ";
%feature("docstring") Xapian::Unicode::Internal::toupper "
Convert a UTF-8 std::string to uppercase.
std::string Xapian::Unicode::toupper(const std::string &term) ";
// File: namespaceXapian_1_1Unicode_1_1Internal.xml
%feature("docstring") Xapian::Unicode::Internal::get_character_info "XAPIAN_VISIBILITY_DEFAULT int
Xapian::Unicode::Internal::get_character_info(unsigned ch) ";
%feature("docstring") Xapian::Unicode::Internal::get_case_type "int
Xapian::Unicode::Internal::get_case_type(int info) ";
%feature("docstring") Xapian::Unicode::Internal::get_category "category Xapian::Unicode::Internal::get_category(int info) ";
%feature("docstring") Xapian::Unicode::Internal::get_delta "int
Xapian::Unicode::Internal::get_delta(int info) ";
// File: xapian_8h.xml
// File: base_8h.xml
// File: database_8h.xml
// File: dbfactory_8h.xml
// File: deprecated_8h.xml
// File: document_8h.xml
// File: enquire_8h.xml
// File: errorhandler_8h.xml
// File: expanddecider_8h.xml
// File: matchspy_8h.xml
// File: positioniterator_8h.xml
// File: postingiterator_8h.xml
// File: query_8h.xml
// File: queryparser_8h.xml
// File: sorter_8h.xml
// File: stem_8h.xml
// File: termgenerator_8h.xml
// File: termiterator_8h.xml
// File: types_8h.xml
// File: unicode_8h.xml
// File: valueiterator_8h.xml
// File: visibility_8h.xml
// File: deprecated.xml
// File: dir_323d31e43e3fe4cdde68ae1e1a2c4d2a.xml
// File: dir_1e79470dc8013a422209498051a1e3ce.xml
|