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 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263
|
/*
* $Id$
*
* This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
* project.
*
* Copyright (C) 1998-2012 OpenLink Software
*
* This project is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; only version 2 of the License, dated June 1991.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include "http.h" /* for isplainURIchar() and the like */
#include "libutil.h"
#include "sqlnode.h"
#include "sqlbif.h"
#include "sqlparext.h"
#include "bif_text.h"
#include "xmlparser.h"
#include "xmltree.h"
#include "numeric.h"
#include "rdf_core.h"
#include "security.h"
#include "sqlbif.h" /* for bif_t and bif_find() */
#include "sqlcmps.h"
#include "sparql.h"
#include "sparql2sql.h"
#include "xml_ecm.h" /* for sorted dict, ECM_MEM_NOT_FOUND etc. */
#ifdef __cplusplus
extern "C" {
#endif
#include "sparql_p.h"
#ifdef __cplusplus
}
#endif
#include "sqlo.h" /* to load rdfinf.h :) */
#include "rdfinf.h"
#include "rdf_mapping_jso.h"
#include "xpf.h"
#ifdef MALLOC_DEBUG
const char *spartlist_impl_file="???";
int spartlist_impl_line;
#endif
#ifdef DEBUG
#define SPAR_ERROR_DEBUG
#endif
/*#define SPAR_ERROR_DEBUG*/
extern void jsonyyerror_impl(const char *s);
size_t
spart_count_specific_elems_by_type (ptrlong type)
{
static SPART sample;
switch (type)
{
case SPAR_ALIAS: return sizeof (sample._.alias);
case SPAR_BLANK_NODE_LABEL: return sizeof (sample._.bnode);
case SPAR_BUILT_IN_CALL: return sizeof (sample._.builtin);
case SPAR_CONV: return sizeof (sample._.conv);
case SPAR_FUNCALL: return sizeof (sample._.funcall);
case SPAR_GP: return sizeof (sample._.gp);
case SPAR_REQ_TOP: return sizeof (sample._.req_top);
case SPAR_RETVAL: return sizeof (sample._.retval);
case SPAR_LIT: return sizeof (sample._.lit);
case SPAR_QNAME: return sizeof (sample._.qname);
case SPAR_SQLCOL: return sizeof (sample._.qm_sqlcol);
case SPAR_VARIABLE: return sizeof (sample._.var);
case SPAR_TRIPLE: return sizeof (sample._.triple);
case SPAR_QM_SQL_FUNCALL: return sizeof (sample._.qm_sql_funcall);
case SPAR_CODEGEN: return sizeof (sample._.codegen);
case SPAR_LIST: return sizeof (sample._.list);
case SPAR_GRAPH: return sizeof (sample._.graph);
case SPAR_WHERE_MODIFS: return sizeof (sample._.wm);
case SPAR_SERVICE_INV: return sizeof (sample._.sinv);
case SPAR_BINDINGS_INV: return sizeof (sample._.binv);
case SPAR_DEFMACRO: return sizeof (sample._.defmacro);
case SPAR_MACROCALL: return sizeof (sample._.macrocall);
case SPAR_MACROPU: return sizeof (sample._.macropu);
case ORDER_L: return sizeof (sample._.oby);
case BOP_NOT:
case BOP_OR: case BOP_AND:
case BOP_PLUS: case BOP_MINUS: case BOP_TIMES: case BOP_DIV: case BOP_MOD:
case BOP_EQ: case SPAR_BOP_EQ: case BOP_NEQ: case BOP_LT: case BOP_LTE: case BOP_GT: case BOP_GTE:
case BOP_LIKE: return sizeof (sample._.bin_exp);
}
GPF_T;
return 0;
}
SPART*
spartlist_impl (sparp_t *sparp, ptrlong length, ptrlong type, ...)
{
SPART *tree;
va_list ap;
int inx;
va_start (ap, type);
#ifdef DEBUG
if (SPAR_CODEGEN == type)
{
if (spart_count_specific_elems_by_type (type) > sizeof (caddr_t) * (length-1))
{
va_end (ap);
spar_internal_error (sparp, "length mismatch in spartlist()");
}
}
else
{
if (spart_count_specific_elems_by_type (type) != sizeof (caddr_t) * (length-1))
{
va_end (ap);
spar_internal_error (sparp, "length mismatch in spartlist()");
}
}
#endif
length += 1;
#ifdef MALLOC_DEBUG
tree = (SPART *) dbg_mp_alloc_box (spartlist_impl_file, spartlist_impl_line, THR_TMP_POOL, sizeof (caddr_t) * length, DV_ARRAY_OF_POINTER);
#else
tree = (SPART *) t_alloc_box (sizeof (caddr_t) * length, DV_ARRAY_OF_POINTER);
#endif
for (inx = 2; inx < length; inx++)
{
caddr_t child = va_arg (ap, caddr_t);
#if 0
#ifdef MALLOC_DEBUG
if (IS_BOX_POINTER (child))
t_alloc_box_assert (child);
#endif
#endif
((caddr_t *)(tree))[inx] = child;
}
va_end (ap);
tree->type = type;
tree->srcline = t_box_num ((NULL != sparp) ? ((NULL != sparp->sparp_curr_lexem) ? sparp->sparp_curr_lexem->sparl_lineno : 0) : 0);
/*spart_check (sparp, tree);*/
return tree;
}
SPART*
spartlist_with_tail_impl (sparp_t *sparp, ptrlong length, caddr_t tail, ptrlong type, ...)
{
SPART *tree;
va_list ap;
int inx;
ptrlong tail_len = BOX_ELEMENTS(tail);
va_start (ap, type);
#ifdef DEBUG
if (spart_count_specific_elems_by_type (type) != sizeof (caddr_t) * (length+tail_len-1))
{
va_end (ap);
spar_internal_error (sparp, "length mismatch in spartlist()");
}
#endif
#ifdef MALLOC_DEBUG
tree = (SPART *) dbg_dk_alloc_box (spartlist_impl_file, spartlist_impl_line, sizeof (caddr_t) * (1+length+tail_len), DV_ARRAY_OF_POINTER);
#else
tree = (SPART *) dk_alloc_box (sizeof (caddr_t) * (1+length+tail_len), DV_ARRAY_OF_POINTER);
#endif
for (inx = 2; inx < length; inx++)
{
caddr_t child = va_arg (ap, caddr_t);
#ifdef MALLOC_DEBUG
if (IS_BOX_POINTER (child))
dk_alloc_box_assert (child);
#endif
((caddr_t *)(tree))[inx] = child;
}
va_end (ap);
tree->type = type;
tree->srcline = t_box_num ((NULL != sparp) ? ((NULL != sparp->sparp_curr_lexem) ? sparp->sparp_curr_lexem->sparl_lineno : 0) : 0);
((ptrlong *)(tree))[length] = tail_len;
memcpy (((caddr_t *)(tree))+length+1, tail, sizeof(caddr_t) * tail_len);
dk_free_box (tail);
/*spart_check (sparp, tree);*/
return tree;
}
caddr_t
spar_source_place (sparp_t *sparp, char *raw_text)
{
char buf [3000];
int lineno = ((NULL != sparp->sparp_curr_lexem) ? (int) sparp->sparp_curr_lexem->sparl_lineno : 0);
char *next_text = NULL;
if ((NULL == raw_text) && (NULL != sparp->sparp_curr_lexem))
raw_text = sparp->sparp_curr_lexem->sparl_raw_text;
if ((NULL != raw_text) && (NULL != sparp->sparp_curr_lexem))
{
if ((sparp->sparp_curr_lexem_bmk.sparlb_offset + 1) < sparp->sparp_lexem_buf_len)
next_text = sparp->sparp_curr_lexem[1].sparl_raw_text;
}
sprintf (buf, "%.400s, line %d%.6s%.1000s%.5s%.15s%.1000s%.5s",
sparp->sparp_err_hdr,
lineno,
((NULL == raw_text) ? "" : ", at '"),
((NULL == raw_text) ? "" : raw_text),
((NULL == raw_text) ? "" : "'"),
((NULL == next_text) ? "" : ", before '"),
((NULL == next_text) ? "" : next_text),
((NULL == next_text) ? "" : "'")
);
return t_box_dv_short_string (buf);
}
caddr_t
spar_dbg_string_of_triple_field (sparp_t *sparp, SPART *fld)
{
switch (SPART_TYPE (fld))
{
case SPAR_BLANK_NODE_LABEL: return t_box_sprintf (210, "_:%.200s", fld->_.var.vname);
case SPAR_VARIABLE: return t_box_sprintf (210, "?%.200s", fld->_.var.vname);
case SPAR_QNAME: return t_box_sprintf (210, "<%.200s>", fld->_.lit.val);
case SPAR_LIT:
if (NULL != fld->_.lit.language)
return t_box_sprintf (410, "\"%.200s\"@%.200s", fld->_.lit.val, fld->_.lit.language);
if (NULL == fld->_.lit.datatype)
return t_box_sprintf (210, "\"%.200s\"", fld->_.lit.val);
if (
(uname_xmlschema_ns_uri_hash_integer == fld->_.lit.datatype) ||
(uname_xmlschema_ns_uri_hash_decimal == fld->_.lit.datatype) ||
(uname_xmlschema_ns_uri_hash_double == fld->_.lit.datatype) )
{
if (DV_STRINGP (fld->_.lit.val))
return t_box_sprintf (210, "%.200s", fld->_.lit.val);
else
{
caddr_t err = NULL, ret, str;
str = box_cast_to (NULL, fld->_.lit.val, DV_TYPE_OF (fld->_.lit.val), DV_SHORT_STRING, NUMERIC_MAX_PRECISION, NUMERIC_MAX_SCALE, &err);
if (!err && str)
ret = t_box_sprintf (210, "%.200s", str);
else
{
dk_free_tree (err);
ret = t_box_sprintf (210, "Value cannot be printed");
}
dk_free_box (str);
return ret;
}
}
return t_box_sprintf (410, "\"%.200s\"^^<%.200s>", fld->_.lit.val, fld->_.lit.datatype);
default: return t_box_dv_short_string ("...");
}
}
void
sparyyerror_impl (sparp_t *sparp, char *raw_text, const char *strg)
{
int lineno = ((NULL != sparp->sparp_curr_lexem) ? (int) sparp->sparp_curr_lexem->sparl_lineno : 0);
char *next_text = NULL;
if ((NULL == raw_text) && (NULL != sparp->sparp_curr_lexem))
raw_text = sparp->sparp_curr_lexem->sparl_raw_text;
if ((NULL != raw_text) && (NULL != sparp->sparp_curr_lexem))
{
if ((sparp->sparp_curr_lexem_bmk.sparlb_offset + 1) < sparp->sparp_lexem_buf_len)
next_text = sparp->sparp_curr_lexem[1].sparl_raw_text;
}
sqlr_new_error ("37000", "SP030",
"%.400s, line %d: %.500s%.5s%.1000s%.5s%.15s%.1000s%.5s",
sparp->sparp_err_hdr,
lineno,
strg,
((NULL == raw_text) ? "" : " at '"),
((NULL == raw_text) ? "" : raw_text),
((NULL == raw_text) ? "" : "'"),
((NULL == next_text) ? "" : " before '"),
((NULL == next_text) ? "" : next_text),
((NULL == next_text) ? "" : "'")
);
}
void
sparyyerror_impl_1 (sparp_t *sparp, char *raw_text, int yystate, short *yyssa, short *yyssp, const char *strg)
{
int sm2, sm1, sp1;
int lineno = (int) ((NULL != sparp->sparp_curr_lexem) ? sparp->sparp_curr_lexem->sparl_lineno : 0);
char *next_text = NULL;
if ((NULL == raw_text) && (NULL != sparp->sparp_curr_lexem))
raw_text = sparp->sparp_curr_lexem->sparl_raw_text;
if ((NULL != raw_text) && (NULL != sparp->sparp_curr_lexem))
{
if ((sparp->sparp_curr_lexem_bmk.sparlb_offset + 1) < sparp->sparp_lexem_buf_len)
next_text = sparp->sparp_curr_lexem[1].sparl_raw_text;
}
sp1 = yyssp[1];
sm1 = yyssp[-1];
sm2 = ((sm1 > 0) ? yyssp[-2] : 0);
sqlr_new_error ("37000", "SP030",
/*errlen,*/ "%.400s, line %d: %.500s [%d-%d-(%d)-%d]%.5s%.1000s%.5s%.15s%.1000s%.5s",
sparp->sparp_err_hdr,
lineno,
strg,
sm2,
sm1,
yystate,
((sp1 & ~0x7FF) ? -1 : sp1) /* stub to avoid printing random garbage in logs */,
((NULL == raw_text) ? "" : " at '"),
((NULL == raw_text) ? "" : raw_text),
((NULL == raw_text) ? "" : "'"),
((NULL == next_text) ? "" : " before '"),
((NULL == next_text) ? "" : next_text),
((NULL == next_text) ? "" : "'")
);
}
void
spar_error (sparp_t *sparp, const char *format, ...)
{
va_list ap;
caddr_t msg;
va_start (ap, format);
msg = box_vsprintf (1500, format, ap);
va_end (ap);
if (NULL == sparp)
sqlr_new_error ("37000", "SP031", "SPARQL generic error: %.1500s", msg);
else
sqlr_new_error ("37000", "SP031", "%.400s: %.1500s",
sparp->sparp_err_hdr, msg );
}
int
spar_audit_error (sparp_t *sparp, const char *format, ...)
{
#ifdef SPAR_ERROR_DEBUG
const char *txt;
#endif
va_list ap;
caddr_t msg;
va_start (ap, format);
msg = t_box_vsprintf (1500, format, ap);
va_end (ap);
#ifdef SPAR_ERROR_DEBUG
txt = ((NULL != sparp) ? sparp->sparp_text : "(no text, sparp is NULL)");
printf ("Internal SPARQL audit error %s while processing\n-----8<-----\n%s\n-----8<-----\n", msg, txt);
#endif
#ifdef DEBUG
if (sparp->sparp_internal_error_runs_audit)
return 1;
#endif
sqlr_new_error ("37000", "SP039",
"%.400s: Internal error (reported by audit): %.1500s",
((NULL != sparp && sparp->sparp_err_hdr) ? sparp->sparp_err_hdr : "SPARQL"), msg);
return 1; /* Never reached */
}
void
spar_internal_error (sparp_t *sparp, const char *msg)
{
#ifdef SPAR_ERROR_DEBUG
const char *txt;
txt = ((NULL != sparp) ? sparp->sparp_text : "(no text, sparp is NULL)");
printf ("Internal SPARQL error %s while processing\n-----8<-----\n%s\n-----8<-----\n", msg, txt);
if ((NULL != sparp) && !sparp->sparp_internal_error_runs_audit)
{
sparp->sparp_internal_error_runs_audit = 1;
sparp_audit_mem (sparp);
sparp_equiv_audit_all (sparp, SPARP_EQUIV_AUDIT_NOBAD);
sparp->sparp_internal_error_runs_audit = 0;
}
#endif
sqlr_new_error ("37000", "SP031",
"%.400s: Internal error: %.1500s",
((NULL != sparp && sparp->sparp_err_hdr) ? sparp->sparp_err_hdr : "SPARQL"), msg);
}
void
spar_error_if_unsupported_syntax_imp (sparp_t *sparp, int feature_in_use, const char *feature_name)
{
if (NULL != sparp->sparp_env->spare_context_sinvs)
{
SPART *sinv = (SPART *)(sparp->sparp_env->spare_context_sinvs->data);
spar_error (sparp, "The support of %.200s syntax is not enabled for the SERVICE %.300s (bit 0x%x is not set)",
feature_name, sinv->_.sinv.endpoint, feature_in_use );
}
spar_error (sparp, "The support of %.200s syntax is disabled for debugging or security purpose by disabling bit 0x%x of define lang:dialect",
feature_name, feature_in_use );
}
#ifdef MALLOC_DEBUG
spartlist_track_t *
spartlist_track (const char *file, int line)
{
static spartlist_track_t ret = { spartlist_impl, spartlist_with_tail_impl };
spartlist_impl_file = file;
spartlist_impl_line = line;
return &ret;
}
#endif
#if 0
void sparqr_free (spar_query_t *sparqr)
{
dk_free_tree (sparqr->sparqr_tree);
;;;
}
#endif
/*
caddr_t spar_charref_to_strliteral (sparp_t *sparp, const char *strg)
{
const char *src_end = strchr(strg, '\0');
const char *err_msg = NULL;
int charref_val = spar_charref_to_unichar (&strg, src_end, &err_msg);
if (0 > charref_val)
xpyyerror_impl (sparp, NULL, err_msg);
else
{
char tmp[MAX_UTF8_CHAR];
char *tgt_tail = eh_encode_char__UTF8 (charref_val, tmp, tmp + MAX_UTF8_CHAR);
return box_dv_short_nchars (tmp, tgt_tail - tmp);
}
return box_dv_short_nchars ("\0", 1);
}
*/
caddr_t
sparp_expand_qname_prefix (sparp_t * sparp, caddr_t qname)
{
char *lname = strchr (qname, ':');
dk_set_t ns_dict;
caddr_t ns_pref, ns_uri, res;
int ns_uri_len, local_len, res_len;
if (NULL == lname)
return qname;
ns_dict = sparp->sparp_env->spare_namespace_prefixes;
ns_pref = t_box_dv_short_nchars (qname, lname - qname);
lname++;
do
{
ns_uri = dk_set_get_keyword (ns_dict, ns_pref, NULL);
if (NULL != ns_uri)
break;
if (!strcmp (ns_pref, "rdf"))
{
ns_uri = uname_rdf_ns_uri;
break;
}
if (!strcmp (ns_pref, "xsd"))
{
ns_uri = uname_xmlschema_ns_uri_hash;
break;
}
if (!strcmp (ns_pref, "virtrdf"))
{
ns_uri = uname_virtrdf_ns_uri;
break;
}
if (!strcmp ("sql", ns_pref))
{
ns_uri = box_dv_uname_string ("sql:");
break;
}
if (!strcmp ("bif", ns_pref))
{
ns_uri = box_dv_uname_string ("bif:");
break;
}
ns_uri = xml_get_ns_uri (sparp->sparp_sparqre->sparqre_cli, ns_pref, 0x3, 1 /* ret_in_mp_box */ );
if (NULL != ns_uri)
break;
sparyyerror_impl (sparp, ns_pref, "Undefined namespace prefix");
}
while (0);
ns_uri_len = box_length (ns_uri) - 1;
local_len = strlen (lname);
res_len = ns_uri_len + local_len;
res = box_dv_ubuf (res_len);
memcpy (res, ns_uri, ns_uri_len);
memcpy (res + ns_uri_len, lname, local_len);
res[res_len] = '\0';
return box_dv_uname_from_ubuf (res);
}
caddr_t
sparp_expand_q_iri_ref (sparp_t *sparp, caddr_t ref)
{
if (NULL != sparp->sparp_env->spare_base_uri)
{
query_instance_t *qi = sparp->sparp_sparqre->sparqre_qi;
caddr_t err = NULL, path_utf8_tmp, res;
path_utf8_tmp = xml_uri_resolve (qi,
&err, sparp->sparp_env->spare_base_uri, ref, "UTF-8" );
res = t_box_dv_uname_string (path_utf8_tmp);
dk_free_tree (path_utf8_tmp);
return res;
}
else
return ref;
}
caddr_t
sparp_exec_Narg (sparp_t *sparp, const char *pl_call_text, query_t **cached_qr_ptr, caddr_t *err_ret, int argctr, ccaddr_t arg1)
{
client_connection_t *cli = sqlc_client ();
lock_trx_t *lt = cli->cli_trx;
int entered = 0;
caddr_t res;
local_cursor_t *lc = NULL;
caddr_t err = NULL;
user_t *saved_user = cli->cli_user;
int saved_anytime_started = cli->cli_anytime_started;
if (cli->cli_clt) /* Branch of cluster transaction, can't initiate partitioned operations */
return NULL;
if (!lt->lt_threads)
{
int rc = lt_enter (lt);
if (LTE_OK != rc)
return NULL;
entered = 1;
}
cli->cli_anytime_started = 0;
cli->cli_user = sec_name_to_user ("dba");
if (NULL == cached_qr_ptr[0])
{
if (parse_sem && parse_sem->sem_entry_count) /* This means that the call is made inside the SQL compiler, can't re-enter. */
spar_internal_error (sparp, "sparp_exec_Narg () tries to compile static inside the SQL compiler");
cached_qr_ptr[0] = sql_compile_static (pl_call_text, cli, &err, SQLC_STATIC_PRESERVES_TREE);
if (SQL_SUCCESS != err)
{
cached_qr_ptr[0] = NULL;
if (err_ret)
*err_ret = err;
res = NULL;
goto leave_and_ret; /* see below */
}
}
err = qr_rec_exec (cached_qr_ptr[0], cli, &lc, CALLER_LOCAL, NULL, 1,
":0", box_copy_tree (arg1), QRP_RAW );
if (SQL_SUCCESS != err)
{
LC_FREE(lc);
if (err_ret)
*err_ret = err;
res = NULL;
goto leave_and_ret; /* see below */
}
if (lc)
{
#if 1
while (lc_next (lc));
if (SQL_SUCCESS != lc->lc_error)
{
if (err_ret)
*err_ret = lc->lc_error;
lc_free (lc);
res = NULL;
goto leave_and_ret; /* see below */
}
res = t_full_box_copy_tree (((caddr_t *) lc->lc_proc_ret) [1]);
#else
ret = t_full_box_copy_tree(lc_nth_col (lc, 0));
#endif
lc_free (lc);
goto leave_and_ret; /* see below */
}
res = NULL;
leave_and_ret:
cli->cli_user = saved_user;
cli->cli_anytime_started = saved_anytime_started;
if (entered)
{
IN_TXN;
lt_leave (lt);
LEAVE_TXN;
}
return res;
}
caddr_t
sparp_graph_sec_iri_to_id_nosignal (sparp_t *sparp, ccaddr_t qname)
{
caddr_t *place, res;
mutex_enter (rdf_graph_iri2id_dict_htable->ht_mutex);
place = (caddr_t *)id_hash_get (rdf_graph_iri2id_dict_htable, (caddr_t)(&qname));
res = (NULL == place) ? NULL : box_copy_tree (place[0]);
mutex_leave (rdf_graph_iri2id_dict_htable->ht_mutex);
return res;
}
caddr_t
sparp_graph_sec_id_to_iri_nosignal (sparp_t *sparp, iri_id_t iid)
{
char iid_box_buf[ALIGN_16 (sizeof (iri_id_t)) + BOX_AUTO_OVERHEAD];
caddr_t boxed_iid, *place, res;
BOX_AUTO (boxed_iid, iid_box_buf, sizeof (iri_id_t), DV_IRI_ID);
((iri_id_t *)boxed_iid)[0] = iid;
mutex_enter (rdf_graph_id2iri_dict_htable->ht_mutex);
place = (caddr_t *)id_hash_get (rdf_graph_id2iri_dict_htable, (caddr_t)(&iid));
res = (NULL == place) ? NULL : box_copy_tree (place[0]);
mutex_leave (rdf_graph_id2iri_dict_htable->ht_mutex);
return res;
}
static query_t *iri_to_id_nosignal_cached_qr = NULL;
static const char *iri_to_id_nosignal_text = "DB.DBA.RDF_MAKE_IID_OF_QNAME_COMP (?)";
caddr_t
sparp_iri_to_id_nosignal (sparp_t *sparp, ccaddr_t qname)
{
caddr_t t_err, err = NULL;
if (CALLER_LOCAL != sparp->sparp_sparqre->sparqre_qi)
{
caddr_t res = iri_to_id ((caddr_t *)(sparp->sparp_sparqre->sparqre_qi), (caddr_t)qname, IRI_TO_ID_WITH_CREATE, &err);
if (NULL == err)
{
caddr_t t_res = t_box_copy (res);
dk_free_box (res);
return t_res;
}
}
else
{
caddr_t t_res = sparp_exec_Narg (sparp, iri_to_id_nosignal_text, &iri_to_id_nosignal_cached_qr, &err, 1, (caddr_t)qname);
if (DV_DB_NULL == DV_TYPE_OF (t_res))
t_res = NULL;
if (NULL == err)
return t_res;
}
t_err = t_full_box_copy_tree (err);
dk_free_tree (err);
spar_error (sparp, "Unable to get IRI_ID for IRI <%.200s>: %.10s %.600s",
qname, ERR_STATE(t_err), ERR_MESSAGE (t_err) );
return NULL; /* to keep compiler happy */
}
extern caddr_t key_id_to_iri (query_instance_t * qi, iri_id_t iri_id_no);
static query_t *id_to_iri_cached_qr = NULL;
static const char *id_to_iri_text = "select DB.DBA.RDF_QNAME_OF_IID (?)";
ccaddr_t
sparp_id_to_iri (sparp_t *sparp, iri_id_t iid)
{
caddr_t t_err, err = NULL;
if (CALLER_LOCAL != sparp->sparp_sparqre->sparqre_qi)
{
caddr_t res = key_id_to_iri (sparp->sparp_sparqre->sparqre_qi, iid);
caddr_t t_res = t_box_copy (res);
dk_free_box (res);
return t_res;
}
else
{
caddr_t t_res = sparp_exec_Narg (sparp, id_to_iri_text, &id_to_iri_cached_qr, &err, 1, box_iri_id (iid));
if (DV_DB_NULL == DV_TYPE_OF (t_res))
t_res = NULL;
if (NULL == err)
return t_res;
}
t_err = t_full_box_copy_tree (err);
dk_free_tree (err);
spar_error (sparp, "unknown IRI_ID %Lu: %.10s %.600s",
iid, ERR_STATE(t_err), ERR_MESSAGE (t_err) );
return NULL; /* to keep compiler happy */
}
caddr_t spar_strliteral (sparp_t *sparp, const char *strg, int strg_is_long, int is_json)
{
caddr_t tmp_buf;
caddr_t res;
const char *err_msg;
const char *src_tail, *src_end;
char *tgt_tail;
src_tail = strg + (strg_is_long ? 3 : 1);
src_end = strg + strlen (strg) - (strg_is_long ? 3 : 1);
tgt_tail = tmp_buf = dk_alloc_box ((src_end - src_tail) + 1, DV_SHORT_STRING);
while (src_tail < src_end)
{
switch (src_tail[0])
{
case '\\':
{
const char *bs_src = "abfnrtv/\\\'\"uU";
const char *bs_trans = "\a\b\f\n\r\t\v/\\\'\"\0\0";
const char *bs_lengths = "\2\2\2\2\2\2\2\2\2\2\2\6\012";
const char *hit = strchr (bs_src, src_tail[1]);
char bs_len, bs_tran;
const char *nextchr;
if (NULL == hit)
{
err_msg = "Unsupported escape sequence after '\'";
goto err;
}
bs_len = bs_lengths [hit - bs_src];
bs_tran = bs_trans [hit - bs_src];
nextchr = src_tail + bs_len;
if ((src_tail + bs_len) > src_end)
{
err_msg = "There is no place for escape sequence between '\' and the end of string";
goto err;
}
if ('\0' != bs_tran)
(tgt_tail++)[0] = bs_tran;
else
{
unichar acc = 0;
for (src_tail += 2; src_tail < nextchr; src_tail++)
{
int dgt = src_tail[0];
if ((dgt >= '0') && (dgt <= '9'))
dgt = dgt - '0';
else if ((dgt >= 'A') && (dgt <= 'F'))
dgt = 10 + dgt - 'A';
else if ((dgt >= 'a') && (dgt <= 'f'))
dgt = 10 + dgt - 'a';
else
{
err_msg = "Invalid hexadecimal digit in escape sequence";
goto err;
}
acc = acc * 16 + dgt;
}
if (acc < 0)
{
err_msg = "The \\U escape sequence represents invalid Unicode char";
goto err;
}
tgt_tail = eh_encode_char__UTF8 (acc, tgt_tail, tgt_tail + MAX_UTF8_CHAR);
}
src_tail = nextchr;
continue;
}
default: (tgt_tail++)[0] = (src_tail++)[0];
}
}
res = t_box_dv_short_nchars (tmp_buf, tgt_tail - tmp_buf);
box_flags (res) = BF_UTF8;
dk_free_box (tmp_buf);
return res;
err:
dk_free_box (tmp_buf);
if (is_json)
jsonyyerror_impl (err_msg);
else
sparyyerror_impl (sparp, NULL, err_msg);
return NULL;
}
void
sparp_free (sparp_t * sparp)
{
}
caddr_t
spar_mkid (sparp_t * sparp, const char *prefix)
{
return t_box_sprintf (0x100, "%s_%ld_%ld",
prefix,
(long)((NULL != sparp->sparp_curr_lexem) ?
sparp->sparp_curr_lexem->sparl_lineno : 0),
(long)(sparp->sparp_unictr++) );
}
void spar_change_sign (caddr_t *lit_ptr)
{
switch (DV_TYPE_OF (lit_ptr[0]))
{
case DV_NUMERIC:
{
numeric_t tmp = t_numeric_allocate();
numeric_negate (tmp, (numeric_t)(lit_ptr[0]));
lit_ptr[0] = (caddr_t)tmp;
break;
}
case DV_LONG_INT:
lit_ptr[0] = t_box_num (- unbox (lit_ptr[0]));
break;
case DV_DOUBLE_FLOAT:
lit_ptr[0] = t_box_double (- ((double *)(lit_ptr[0]))[0]);
break;
default: GPF_T1("spar_change_sign(): bad box type");
}
}
static const char *sparp_known_get_params[] = {
"get:accept", "get:cartridge", "get:login", "get:method", "get:proxy", "get:query", "get:refresh", "get:soft", "get:uri", NULL };
static const char *sparp_integer_defines[] = {
"input:grab-depth", "input:grab-limit", "output:maxrows", "sql:big-data-const", "sql:log-enable", "sql:signal-void-variables", NULL };
static const char *sparp_var_defines[] = { NULL };
void
sparp_define (sparp_t *sparp, caddr_t param, ptrlong value_lexem_type, caddr_t value)
{
switch (value_lexem_type)
{
case Q_IRI_REF:
value = sparp_expand_q_iri_ref (sparp, value);
break;
case QNAME:
value = sparp_expand_qname_prefix (sparp, value);
break;
case SPARQL_INTEGER:
{
const char **chk;
for (chk = sparp_integer_defines; (NULL != chk[0]) && strcmp (chk[0], param); chk++) ;
if (NULL == chk[0])
spar_error (sparp, "Integer value %ld is specified for define %s", (long)unbox(value), param);
break;
}
case SPAR_VARIABLE:
{
const char **chk;
for (chk = sparp_var_defines; (NULL != chk[0]) && strcmp (chk[0], param); chk++) ;
if (NULL == chk[0])
spar_error (sparp, "The value specified for define %s should be constant, not an variable", param);
break;
}
}
if ((7 < strlen (param)) && !memcmp (param, "output:", 7))
{
if (!strcmp (param, "output:valmode")) {
sparp->sparp_env->spare_output_valmode_name = t_box_dv_uname_string (value); return; }
if (!strcmp (param, "output:format")) {
sparp->sparp_env->spare_output_format_name = t_box_dv_uname_string (value); return; }
if (!strcmp (param, "output:scalar-format")) {
sparp->sparp_env->spare_output_scalar_format_name = t_box_dv_uname_string (value); return; }
if (!strcmp (param, "output:dict-format")) {
sparp->sparp_env->spare_output_dict_format_name = t_box_dv_uname_string (value); return; }
if (!strcmp (param, "output:route")) {
sparp->sparp_env->spare_output_route_name = t_box_dv_uname_string (value); return; }
if (!strcmp (param, "output:maxrows")) {
sparp->sparp_env->spare_output_maxrows = t_box_num_nonull (unbox (value)); return; }
}
if ((6 < strlen (param)) && !memcmp (param, "input:", 6))
{
if (!strcmp (param, "input:default-graph-uri"))
{
sparp_make_and_push_new_graph_source ( sparp, SPART_GRAPH_FROM,
spartlist (sparp, 2, SPAR_QNAME, t_box_dv_uname_string (value)),
NULL );
return;
}
if (!strcmp (param, "input:freeze"))
{
sparp->sparp_env->spare_src.ssrc_default_graphs_locked = 1;
sparp->sparp_env->spare_src.ssrc_named_graphs_locked = 1;
return;
}
if (!strcmp (param, "input:default-graph-exclude"))
{
sparp_make_and_push_new_graph_source ( sparp, SPART_GRAPH_NOT_FROM,
spartlist (sparp, 2, SPAR_QNAME, t_box_dv_uname_string (value)),
NULL );
/* No sparp->sparp_env->spare_src.ssrc_default_graphs_locked = 1; here because NOT FROM can not be overridden */
return;
}
if (!strcmp (param, "input:named-graph-uri"))
{
sparp_make_and_push_new_graph_source ( sparp, SPART_GRAPH_NAMED,
spartlist (sparp, 2, SPAR_QNAME, t_box_dv_uname_string (value)),
NULL );
return;
}
if (!strcmp (param, "input:named-graph-exclude"))
{
sparp_make_and_push_new_graph_source (sparp, SPART_GRAPH_NOT_NAMED,
spartlist (sparp, 2, SPAR_QNAME, t_box_dv_uname_string (value)),
NULL );
/* No sparp->sparp_env->spare_src.ssrc_default_graphs_locked = 1; here because NOT FROM can not be overridden */
return;
}
if (!strcmp (param, "input:ifp"))
{
sparp->sparp_env->spare_use_ifp = t_box_copy_tree (value);
return;
}
if (!strcmp (param, "input:same-as"))
{
sparp->sparp_env->spare_use_same_as = t_box_copy_tree (value);
return;
}
if (!strcmp (param, "input:storage"))
{
quad_storage_t *old_storage = sparp->sparp_storage;
if (NULL != sparp->sparp_env->spare_storage_name)
spar_error (sparp, "'define %.30s' is used more than once", param);
sparp->sparp_env->spare_storage_name = t_box_dv_uname_string (value);
sparp->sparp_storage = sparp_find_storage_by_name (sparp->sparp_env->spare_storage_name);
if ((NULL == sparp->sparp_storage) && ('\0' != value[0]))
spar_error (sparp, "Quad storage <%.100s> does not exists or is in unusable state", value);
if ((sparp->sparp_storage != old_storage)
&& (NULL != sparp->sparp_env->spare_context_qms)
&& ((SPART *)((ptrlong)_STAR) != sparp->sparp_env->spare_context_qms->data) )
spar_error (sparp, "Can't change quad storage via 'define %.30s' in subqueries inside QUAD MAP group patterns other than 'QUAD MAP * {...}'", param);
return;
}
if (!strcmp (param, "input:macro-lib"))
{
caddr_t lib_iri_uname = t_box_dv_uname_string (value);
if (0 <= dk_set_position (sparp->sparp_macro_libs, lib_iri_uname))
spar_error (sparp, "The macro library <%.100s> is loaded more than once", value);
t_set_push (&(sparp->sparp_macro_libs), lib_iri_uname);
return;
}
if (!strcmp (param, "input:macro-lib-ignore-create"))
{
sparp->sparp_macrolib_ignore_create = 1;
return;
}
if (!strcmp (param, "input:disable-storage-macro-lib"))
{
sparp->sparp_disable_storage_macro_lib = 1;
return;
}
if (!strcmp (param, "input:inference"))
{
rdf_inf_ctx_t ** place;
if (NULL != sparp->sparp_env->spare_inference_name)
spar_error (sparp, "'define %.30s' is used more than once", param);
sparp->sparp_env->spare_inference_name = t_box_dv_uname_string (value);
place = (rdf_inf_ctx_t **) id_hash_get (rdf_name_to_ric, (caddr_t)&value);
if (NULL == place)
spar_error (sparp, "'define %.30s refers to undefined inference rule set \"%.200s\"", param, value);
sparp->sparp_env->spare_inference_ctx = place[0];
return;
}
if ((11 < strlen (param)) && !memcmp (param, "input:grab-", 11))
{
rdf_grab_config_t *rgc = &(sparp->sparp_env->spare_src.ssrc_grab);
const char *lock_pragma = NULL;
rgc->rgc_pview_mode = 1;
if (sparp->sparp_env->spare_src.ssrc_default_graphs_locked)
lock_pragma = "input:default-graph-uri";
else if (sparp->sparp_env->spare_src.ssrc_named_graphs_locked)
lock_pragma = "input:named-graph-uri";
if (NULL != lock_pragma)
spar_error (sparp, "define %s should not appear after define %s", param, lock_pragma);
if (!strcmp (param, "input:grab-all"))
{
rgc->rgc_all = 1;
return;
}
if (!strcmp (param, "input:grab-intermediate"))
{
rgc->rgc_intermediate = 1;
return;
}
if (!strcmp (param, "input:grab-seealso") || !strcmp (param, "input:grab-follow-predicate"))
{
switch (value_lexem_type)
{
case QNAME:
case Q_IRI_REF:
t_set_push (&(rgc->rgc_sa_preds), value);
break;
default:
if (('?' == value[0]) || ('$' == value[0]))
spar_error (sparp, "The value of define input:grab-seealso should be predicate name");
else
t_set_push_new_string (&(rgc->rgc_sa_preds), value);
}
return;
}
if (!strcmp (param, "input:grab-iri"))
{
switch (value_lexem_type)
{
case QNAME:
case Q_IRI_REF:
t_set_push (&(rgc->rgc_consts), value);
break;
default:
if (('?' == value[0]) || ('$' == value[0]))
t_set_push_new_string (&(rgc->rgc_vars), t_box_dv_uname_string (value+1));
else
t_set_push_new_string (&(rgc->rgc_consts), value);
}
return;
}
if (!strcmp (param, "input:grab-var"))
{
caddr_t varname;
if (('?' == value[0]) || ('$' == value[0]))
varname = t_box_dv_uname_string (value+1);
else
varname = t_box_dv_uname_string (value);
t_set_push_new_string (&(rgc->rgc_vars), varname);
return;
}
if (!strcmp (param, "input:grab-depth"))
{
ptrlong val = ((DV_LONG_INT == DV_TYPE_OF (value)) ? unbox_ptrlong (value) : -1);
if (0 >= val)
spar_error (sparp, "define input:grab-depth should have positive integer value");
rgc->rgc_depth = t_box_num_nonull (val);
return;
}
if (!strcmp (param, "input:grab-limit"))
{
ptrlong val = ((DV_LONG_INT == DV_TYPE_OF (value)) ? unbox_ptrlong (value) : -1);
if (0 >= val)
spar_error (sparp, "define input:grab-limit should have positive integer value");
rgc->rgc_limit = t_box_num_nonull (val);
return;
}
if (!strcmp (param, "input:grab-base")) {
rgc->rgc_base = t_box_dv_uname_string (value); return; }
if (!strcmp (param, "input:grab-destination")) {
rgc->rgc_destination = t_box_dv_uname_string (value); return; }
if (!strcmp (param, "input:grab-group-destination")) {
rgc->rgc_group_destination = t_box_dv_uname_string (value); return; }
if (!strcmp (param, "input:grab-resolver")) {
rgc->rgc_resolver_name = t_box_dv_uname_string (value); return; }
if (!strcmp (param, "input:grab-loader")) {
rgc->rgc_loader_name = t_box_dv_uname_string (value); return; }
}
else if (!strcmp (param, "input:param") || !strcmp (param, "input:params")) {
t_set_push (&(sparp->sparp_env->spare_protocol_params), t_box_dv_uname_string (value));
return; }
else if (!strcmp (param, "input:param-valmode")) {
sparp->sparp_env->spare_input_param_valmode_name = t_box_dv_uname_string (value); return; }
}
if ((4 < strlen (param)) && !memcmp (param, "get:", 4))
{
const char **chk;
for (chk = sparp_known_get_params; (NULL != chk[0]) && strcmp (chk[0], param); chk++) ;
if (NULL != chk[0])
{
dk_set_t *opts_ptr = &(sparp->sparp_env->spare_src.ssrc_common_sponge_options);
if (0 < dk_set_position_of_string (opts_ptr[0], param))
spar_error (sparp, "'define %.30s' is used more than once", param);
t_set_push (opts_ptr, t_box_dv_short_string (value));
t_set_push (opts_ptr, t_box_dv_uname_string (param));
return;
}
}
if ((4 < strlen (param)) && !memcmp (param, "sql:", 4))
{
if (!strcmp (param, "sql:assert-user")) {
user_t *u = sparp->sparp_sparqre->sparqre_exec_user;
if (NULL == u)
spar_error (sparp, "Assertion \"define sql:assert-user '%.200s'\" failed: user is not set", value);
if (strcmp (value, u->usr_name))
spar_error (sparp, "Assertion \"define sql:assert-user '%.200s'\" failed: the user is set to '%.200s'", value, u->usr_name);
return; }
if (!strcmp (param, "sql:gs-app-callback")) {
sparp->sparp_gs_app_callback = t_box_sprintf (MAX_NAME_LEN, "DB.DBA.SPARQL_GS_APP_CALLBACK_%.50s", value);
return; }
if (!strcmp (param, "sql:gs-app-uid")) {
sparp->sparp_gs_app_uid = t_full_box_copy_tree (value);
return; }
if (!strcmp (param, "sql:param") || !strcmp (param, "sql:params")) {
t_set_push (&(sparp->sparp_env->spare_protocol_params), t_box_dv_uname_string (value));
return; }
if (!strcmp (param, "sql:globals-mode")) {
if (DV_STRING != DV_TYPE_OF (value))
spar_error (sparp, "define sql:globals-mode should have string value");
if (!strcmp (value, "XSLT"))
sparp->sparp_env->spare_globals_mode = SPARE_GLOBALS_ARE_COLONAMED;
else if (!strcmp (value, "SQL"))
sparp->sparp_env->spare_globals_mode = SPARE_GLOBALS_ARE_PLAIN;
else
spar_error (sparp, "define sql:globals-mode should have value \"XSLT\" or \"SQL\"");
return; }
if (!strcmp (param, "sql:log-enable")) {
ptrlong val = ((DV_LONG_INT == DV_TYPE_OF (value)) ? unbox_ptrlong (value) : -1);
if (0 > val)
spar_error (sparp, "define sql:log-enable should have nonnegative integer value");
sparp->sparp_env->spare_sparul_log_mode = t_box_num_and_zero (val);
return; }
if (!strcmp (param, "sql:table-option")) {
t_set_push (&(sparp->sparp_env->spare_common_sql_table_options), t_box_dv_uname_string (value));
return; }
if (!strcmp (param, "sql:select-option")) {
t_set_push (&(sparp->sparp_env->spare_sql_select_options), t_box_dv_uname_string (value));
return; }
if (!strcmp (param, "sql:describe-mode")) {
sparp->sparp_env->spare_describe_mode = t_box_dv_uname_string (value);
return; }
if (!strcmp (param, "sql:big-data-const")) {
ptrlong val = ((DV_LONG_INT == DV_TYPE_OF (value)) ? unbox_ptrlong (value) : -1);
if ((0 > val) || (1 < val))
spar_error (sparp, "define sql:big-data-const should have value 0 or 1");
sparp->sparp_disable_big_const = 1-val;
return; }
if (!strcmp (param, "sql:signal-void-variables")) {
ptrlong val = ((DV_LONG_INT == DV_TYPE_OF (value)) ? unbox_ptrlong (value) : -1);
if ((0 > val) || (1 < val))
spar_error (sparp, "define sql:signal-void-variables should have value 0 or 1");
sparp->sparp_env->spare_signal_void_variables = val;
return; }
}
spar_error (sparp, "Unsupported parameter '%.30s' in 'define'", param);
}
caddr_t
SPARQL_DBG_NAME(spar_selid_push) (SPARQL_DBG_PARAMS sparp_t *sparp)
{
caddr_t selid = spar_mkid (sparp, "s");
t_set_push (&(sparp->sparp_env->spare_selids), selid );
spar_dbg_printf (("spar_selid_push () pushes %s at %s:%d\n", selid, file, line));
return selid;
}
caddr_t
SPARQL_DBG_NAME(spar_selid_push_reused) (SPARQL_DBG_PARAMS sparp_t *sparp, caddr_t selid)
{
t_set_push (&(sparp->sparp_env->spare_selids), selid );
spar_dbg_printf (("spar_selid_push_reused () pushes %s at %s:%d\n", selid, file, line));
return selid;
}
caddr_t
SPARQL_DBG_NAME(spar_selid_pop) (SPARQL_DBG_PARAMS sparp_t *sparp)
{
caddr_t selid = (caddr_t)t_set_pop (&(sparp->sparp_env->spare_selids));
spar_dbg_printf (("spar_selid_pop () pops %s at %s:%d\n", selid, file, line));
if (NULL == selid)
spar_internal_error (sparp, "spar_" "selid_pop(): weird state of the stack");
return selid;
}
void
sparp_configure_storage_and_macro_libs (sparp_t *sparp)
{
if (sparp->sparp_storage_is_set)
return;
sparp->sparp_storage_is_set = 1;
sparp->sparp_storage = sparp_find_storage_by_name (sparp->sparp_env->spare_storage_name);
if ((NULL != sparp->sparp_storage) && !sparp->sparp_disable_storage_macro_lib)
{
sparql_macro_library_t *smlib = sparp->sparp_storage->qsMacroLibrary;
if (NULL != smlib)
{
SPART **smllist;
int new_defm_ctr;
if (0 == smlib->smlCompilationState)
{
jso_rtti_t *sml_rtti = (jso_rtti_t *)gethash (smlib, jso_rttis_of_structs);
if (NULL == sml_rtti)
spar_error (sparp, "Quad storage <%.100s> refers to inexisting or corrupted SPARQL macro library", sparp->sparp_env->spare_storage_name);
sparp_compile_smllist (sparp, sml_rtti->jrtti_inst_iri, smlib);
smllist = (SPART **)(smlib->smlList);
if (!IS_BOX_POINTER (smllist))
spar_error (sparp, "Compilation error in SPARQL macro library <%.100s> refered by quad storage <%.100s>", sml_rtti->jrtti_inst_iri, sparp->sparp_env->spare_storage_name);
}
smllist = (SPART **)(smlib->smlList);
DO_BOX_FAST (SPART *, new_defm, new_defm_ctr, smllist)
{
sparp_defmacro_store (sparp, new_defm);
}
END_DO_BOX_FAST;
sparp_qr_uses_jso (sparp, (caddr_t)smlib, NULL);
}
}
if ((NULL != sparp->sparp_macro_libs) && (NULL == sparp->sparp_macrolib_to_create))
{
caddr_t *explicit_includes = t_revlist_to_array (sparp->sparp_macro_libs);
jso_class_descr_t *sml_cd;
int lib_ctr;
DO_BOX_FAST (caddr_t, lib_name, lib_ctr, explicit_includes)
{
jso_rtti_t *sml_rtti;
sparql_macro_library_t *sml;
SPART **smllist;
caddr_t *smlincludes;
int new_defm_ctr, old_defm_count, incl_ctr;
jso_get_cd_and_rtti (
uname_virtrdf_ns_uri_QuadStorage,
lib_name,
&sml_cd, &sml_rtti, 1 );
if ((NULL == sml_rtti) || (JSO_STATUS_LOADED != sml_rtti->jrtti_status))
spar_error (sparp, "Unknown SPARQL macro library <%.100s>", lib_name);
sml = (sparql_macro_library_t *)(sml_rtti->jrtti_self);
sparp_qr_uses_jso (sparp, (caddr_t)sml, NULL);
if (0 == sml->smlCompilationState)
{
sparp_compile_smllist (sparp, sml_rtti->jrtti_inst_iri, sml);
smllist = (SPART **)(sml->smlList);
if (!IS_BOX_POINTER (smllist))
spar_error (sparp, "Compilation error in SPARQL macro library <%.100s>", lib_name);
}
smllist = (SPART **)(sml->smlList);
old_defm_count = sparp->sparp_macro_def_count;
DO_BOX_FAST (SPART *, new_defm, new_defm_ctr, smllist)
{
int old_defm_ctr;
for (old_defm_ctr = old_defm_count; old_defm_ctr--; /* no step */)
{
SPART *old_defm = sparp->sparp_macro_defs [old_defm_ctr];
if (strcmp (old_defm->_.defmacro.mname, new_defm->_.defmacro.mname))
continue;
if (old_defm->_.defmacro.sml_iri != new_defm->_.defmacro.sml_iri)
spar_error (sparp, "Macro <%.100s> is defined in both <%100s> and <%100s>", old_defm->_.defmacro.mname, old_defm->_.defmacro.sml_iri, new_defm->_.defmacro.sml_iri);
goto new_defm_done; /* see below */
}
sparp_defmacro_store (sparp, new_defm);
new_defm_done: ;
}
END_DO_BOX_FAST;
smlincludes = (caddr_t *)(sml->smlIncludes);
DO_BOX_FAST (caddr_t, new_incl, incl_ctr, smlincludes)
{
t_set_pushnew (&(sparp->sparp_macro_libs), new_incl);
}
END_DO_BOX_FAST;
}
END_DO_BOX_FAST;
}
}
void
sparp_compile_smllist (sparp_t *outer_sparp, caddr_t sml_iri_uname, void /* actually struct sparql_macro_library_t */ *smlib_as_voidptr)
{
sparql_macro_library_t *smlib = (sparql_macro_library_t *)smlib_as_voidptr;
spar_query_env_t sparqre;
sparp_t *sparp;
SPART **mdefs;
int ctr;
if (DV_STRING != DV_TYPE_OF (smlib->smlSourceText))
spar_error (outer_sparp, "Ill metadata of SPARQL macro library that is associated with the quad storage");
memset (&sparqre, 0, sizeof (spar_query_env_t));
sparqre.sparqre_cli = bootstrap_cli;
sparqre.sparqre_qi = outer_sparp->sparp_sparqre->sparqre_qi;
sparp = sparp_query_parse (
t_box_sprintf (50 + box_length (smlib->smlSourceText), "define input:disable-storage-macro-lib \"yes\" %s", smlib->smlSourceText),
&sparqre, 0 );
ctr = sparp->sparp_macro_def_count;
mdefs = (SPART **)dk_alloc_box (ctr * sizeof (SPART *), DV_ARRAY_OF_POINTER);
while (ctr--)
{
SPART *mdef = sparp->sparp_macro_defs[ctr];
if (NULL == mdef->_.defmacro.sml_iri)
mdef->_.defmacro.sml_iri = box_copy (sml_iri_uname);
mdefs[ctr] = (SPART *)box_copy_tree ((caddr_t)(mdef));
}
dk_check_tree ((caddr_t)(mdefs));
smlib->smlList = (ccaddr_t)mdefs;
smlib->smlIncludes = box_copy_tree ((caddr_t)t_revlist_to_array (sparp->sparp_macro_libs));
}
int
spar_triple_matches_macro_quad_pattern (sparp_t *sparp, SPART *defm, SPART *graph, SPART *subject, SPART *predicate, SPART *object)
{
SPART *tg, *ts, *tp, *to;
if (NULL == defm->_.defmacro.quad_pattern)
return 0;
#define FLD_CHECK(templ_fld, templ_fld_idx, triple_fld) do { \
templ_fld = defm->_.defmacro.quad_pattern[(templ_fld_idx)]; \
if (SPAR_IS_LIT_OR_QNAME (templ_fld) && \
!((SPART_TYPE (triple_fld) == SPART_TYPE (templ_fld)) && \
sparp_fixedvalues_equal (sparp, triple_fld, templ_fld) ) ) \
return 0; } while (0)
FLD_CHECK(tp, SPART_TRIPLE_PREDICATE_IDX, predicate);
FLD_CHECK(to, SPART_TRIPLE_OBJECT_IDX, object);
FLD_CHECK(ts, SPART_TRIPLE_SUBJECT_IDX, subject);
switch (defm->_.defmacro.subtype)
{
case DEFAULT_L:
if (!SPART_IS_DEFAULT_GRAPH_BLANK(graph)) return 0;
break;
case GRAPH_L:
if (SPART_IS_DEFAULT_GRAPH_BLANK(graph)) return 0;
FLD_CHECK(tg, SPART_TRIPLE_GRAPH_IDX, graph);
break;
default:
break;
}
return 1;
}
SPART *
spar_find_defmacro_by_iri_or_fields (sparp_t *sparp, caddr_t mname, SPART **fields)
{
int ctr;
#define spar_return_if_macro_matches(sparp,mname,fields,defm) do { \
if (NULL == fields) { \
if (!strcmp (defm->_.defmacro.mname, mname)) \
return defm; } \
else if (spar_triple_matches_macro_quad_pattern (sparp, defm, fields[0], fields[1], fields[2], fields[3])) \
return defm; } while (0)
if (!sparp->sparp_storage_is_set)
spar_internal_error (sparp, "spar_" "find_defmacro_by_iri_or_fields(): storage is not set");
for (ctr = 0; ctr < sparp->sparp_macro_def_count; ctr++)
{
SPART *defm = sparp->sparp_macro_defs[ctr];
spar_return_if_macro_matches (sparp,mname,fields,defm);
}
if ((NULL != sparp->sparp_storage) && !sparp->sparp_disable_storage_macro_lib)
{
sparql_macro_library_t *smlib = sparp->sparp_storage->qsMacroLibrary;
if (NULL != smlib)
{
SPART **smllist = (SPART **)smlib->smlList;
if (IS_BOX_POINTER (smllist))
{
DO_BOX_FAST (SPART *, defm, ctr, smllist)
{
spar_return_if_macro_matches (sparp,mname,fields,defm);
}
END_DO_BOX_FAST;
}
}
}
return NULL;
}
void
sparp_defmacro_store (sparp_t *sparp, SPART *defm)
{
int old_macro_def_count = sparp->sparp_macro_def_count;
if (old_macro_def_count >= BOX_ELEMENTS_0(sparp->sparp_macro_defs))
{
SPART **new_defs = (SPART **)t_alloc_box ((old_macro_def_count + 2) * 2 * sizeof (SPART *), DV_ARRAY_OF_POINTER);
if (old_macro_def_count)
memcpy (new_defs, sparp->sparp_macro_defs, old_macro_def_count * sizeof (SPART *));
sparp->sparp_macro_defs = new_defs;
}
sparp->sparp_macro_defs [sparp->sparp_macro_def_count++] = defm;
}
SPART *
sparp_defmacro_init (sparp_t *sparp, caddr_t mname)
{
SPART *old, *res;
caddr_t selid = spar_mkid (sparp, "@s");
old = spar_find_defmacro_by_iri_or_fields (sparp, mname, NULL);
if (NULL != old)
spar_error (sparp, "Macro name <%.200s> is already defined", mname);
if (0 <= dk_set_position_of_string (sparp->sparp_funnames_in_defmacros, mname))
spar_error (sparp, "The name of macro <%.200s> is used above as a name of function in the body of other macro", mname);
res = spartlist (sparp, 10, SPAR_DEFMACRO, (ptrlong)(1), mname, NULL, NULL, NULL, NULL, NULL, selid, (ptrlong)0);
return res;
}
void
sparp_make_defmacro_paramnames_from_template (sparp_t *sparp, SPART *defm)
{
dk_set_t paramnames = NULL;
int ctr;
DO_BOX_FAST (SPART *, fld, ctr, defm->_.defmacro.quad_pattern)
{
if (SPAR_VARIABLE == SPART_TYPE (fld))
{
caddr_t vname = fld->_.var.vname;
if (0 <= dk_set_position_of_string (sparp->sparp_env->spare_protocol_params, vname))
spar_error (sparp, "The name of protocol parameter ?%.200s is (mis)used in the template of the declaration of macro <%.200s>", vname, defm->_.defmacro.mname);
if (0 <= dk_set_position_of_string (paramnames, vname))
spar_error (sparp, "The name of valiable ?%.200s is used twice in the template of the declaration of macro <%.200s>", vname, defm->_.defmacro.mname);
t_set_push (¶mnames, vname);
}
}
END_DO_BOX_FAST;
defm->_.defmacro.paramnames = t_revlist_to_array (paramnames);
}
void
sparp_defmacro_finalize (sparp_t *sparp, SPART *body)
{
sparp->sparp_current_macro->_.defmacro.body = body;
sparp->sparp_current_macro = NULL;
}
void
sparp_check_dm_arg_for_redecl (sparp_t *sparp, dk_set_t recent, caddr_t dm_arg_vname)
{
SPART *mdef;
int ctr;
mdef = sparp->sparp_current_macro;
if (0 <= dk_set_position_of_string (sparp->sparp_env->spare_protocol_params, dm_arg_vname))
spar_error (sparp, "The name of protocol parameter ?%.200s is (mis)used in the declaration of macro <%.200s>", dm_arg_vname, mdef->_.defmacro.mname);
if (0 <= dk_set_position_of_string (recent, dm_arg_vname))
goto dupe;
DO_BOX_FAST (caddr_t, old_vname, ctr, mdef->_.defmacro.paramnames)
{
if (!strcmp (old_vname, dm_arg_vname))
goto dupe;
}
END_DO_BOX_FAST;
return;
dupe:
spar_error (sparp, "Duplicate variable name ?%.200s in arguments of macro <%.200s>", dm_arg_vname, mdef->_.defmacro.mname);
}
void
spar_gp_init (sparp_t *sparp, ptrlong subtype)
{
sparp_env_t *env = sparp->sparp_env;
int gp_is_top = ((WHERE_L == subtype) || (CONSTRUCT_L == subtype));
spar_dbg_printf (("spar_gp_init (..., %ld)\n", (long)subtype));
if (sparp->sparp_macro_mode)
{
caddr_t selid;
if (DEFMACRO_L == subtype)
selid = sparp->sparp_current_macro->_.defmacro.selid;
else
selid = spar_mkid (sparp, "@s");
spar_selid_push_reused (sparp, selid);
}
else if (!gp_is_top)
spar_selid_push (sparp);
t_set_push (&(env->spare_acc_triples), NULL);
t_set_push (&(env->spare_acc_filters), NULL);
t_set_push (&(env->spare_context_gp_subtypes), (caddr_t)subtype);
t_set_push (&(env->spare_good_graph_varname_sets), env->spare_good_graph_varnames);
if (!gp_is_top)
t_set_push (&(sparp->sparp_env->spare_propvar_sets), NULL); /* For WHERE_L and CONSTRUCT_L it's done at beginning of the result-set. */
}
void
spar_gp_replace_selid (sparp_t *sparp, dk_set_t membs, caddr_t old_selid, caddr_t new_selid)
{
DO_SET (SPART *, memb, &membs)
{
int fld_ctr;
if (SPAR_TRIPLE != SPART_TYPE (memb))
continue;
if (strcmp (old_selid, memb->_.triple.selid))
spar_internal_error (sparp, "spar_gp_replace_selid(): bad selid of triple");
memb->_.triple.selid = new_selid;
for (fld_ctr = SPART_TRIPLE_FIELDS_COUNT; fld_ctr--; /*no step*/)
{
SPART *fld = memb->_.triple.tr_fields[fld_ctr];
if ((SPAR_VARIABLE != SPART_TYPE (fld)) &&
(SPAR_BLANK_NODE_LABEL != SPART_TYPE (fld)) )
continue;
if (strcmp (old_selid, fld->_.var.selid))
spar_internal_error (sparp, "spar_gp_replace_selid(): bad selid of var or bnode label");
fld->_.var.selid = new_selid;
}
if (NULL != memb->_.triple.options)
sparp_set_options_selid_and_tabid (sparp, memb->_.triple.options, new_selid, memb->_.triple.tabid);
}
END_DO_SET ()
}
SPART *
spar_gp_finalize (sparp_t *sparp, SPART **options)
{
sparp_env_t *env = sparp->sparp_env;
caddr_t orig_selid = (caddr_t)(env->spare_selids->data);
dk_set_t membs;
int all_ctr, opt_ctr;
dk_set_t filts;
ptrlong subtype;
SPART *res;
subtype = (ptrlong)(env->spare_context_gp_subtypes->data);
spar_dbg_printf (("spar_gp_finalize (..., %ld)\n", (long)subtype));
if (CONSTRUCT_L != subtype) /* CONSTRUCT_L did not push to spare_propvar_sets, using one that will be used in WHERE_L */
{
/* Create triple patterns for distinct '+>' propvars and OPTIONAL triple patterns for distinct '*>' propvars */
dk_set_t propvars = (dk_set_t) t_set_pop (&(env->spare_propvar_sets));
DO_SET (spar_propvariable_t *, pv, &propvars)
{
if (_STAR_GT == pv->sparpv_op)
spar_gp_init (sparp, OPTIONAL_L);
spar_gp_add_triplelike (sparp, NULL,
spar_make_variable (sparp, pv->sparpv_subj_var->_.var.vname),
pv->sparpv_verb_qname,
spar_make_variable (sparp, pv->sparpv_obj_var_name),
NULL, NULL, 0x0 );
if (_STAR_GT == pv->sparpv_op)
{
SPART *pv_gp;
pv_gp = spar_gp_finalize (sparp, NULL);
t_set_push (((dk_set_t *)(&(env->spare_acc_triples->data))) /* not &membs */, pv_gp);
}
}
END_DO_SET();
}
/* Pop the rest of the environment and adjust graph varnames */
membs = (dk_set_t) t_set_pop (&(env->spare_acc_triples));
membs = dk_set_nreverse (membs);
filts = (dk_set_t) t_set_pop (&(env->spare_acc_filters));
t_set_pop (&(env->spare_context_gp_subtypes));
env->spare_good_graph_bmk = t_set_pop (&(env->spare_good_graph_varname_sets));
/* The following 'if' does not mention UNIONs because UNIONs are handled right in .y file
For OPTIONAL GP we roll back spare_good_graph_vars at bookmarked level
For other sorts the content of stack is naturally inherited by the parent:
the bookmark is t_set_pop-ed, but the content remains at its place */
if (OPTIONAL_L == subtype) /* Variables nested in optionals can not be good graph variables... */
env->spare_good_graph_varnames = env->spare_good_graph_bmk;
check_optionals:
all_ctr = 0;
opt_ctr = 0;
DO_SET (SPART *, memb, &membs)
{
if ((SPAR_GP == SPART_TYPE (memb)) && (OPTIONAL_L == memb->_.gp.subtype))
{
if (((0 == opt_ctr) && (1 < all_ctr)) || /* Add extra GP to guarantee proper left side of the left outer join */
(0 < opt_ctr) )/* Add extra GP to guarantee proper support of {... OPTIONAL { ... ?x ... } ... OPTIONAL { ... ?x ... } } */
{
dk_set_t left_membs = NULL;
dk_set_t left_ft_filts = NULL;
int left_ctr;
SPART *left_group;
spar_gp_init (sparp, 0);
for (left_ctr = 0; left_ctr < all_ctr; left_ctr++)
{
SPART *memb = (SPART *)(t_set_pop (&membs));
if ((SPAR_TRIPLE == SPART_TYPE(memb)) && (memb->_.triple.ft_type))
{
DO_SET (SPART *, filt, &filts)
{
if (!spar_filter_is_freetext (sparp, filt, memb))
continue;
t_set_delete (&filts, filt);
t_set_push (&left_ft_filts, filt);
/* A cheat use of sparp_set_options_selid_and_tabid for funcall.argtrees instead of smth.options, looks OK for freetext */
sparp_set_options_selid_and_tabid (sparp, filt->_.funcall.argtrees, (caddr_t)(env->spare_selids->data), NULL /* why memb->_.triple.tabid ? */);
break;
}
END_DO_SET()
}
t_set_push (&left_membs, memb);
}
spar_gp_replace_selid (sparp, left_membs, orig_selid, (caddr_t)(env->spare_selids->data));
env->spare_acc_triples->data = left_membs; /* a revlist is set to a revlist, no reverse needed */
env->spare_acc_filters->data = left_ft_filts; /* same is true for filters, even if not so important */
left_group = spar_gp_finalize (sparp, NULL);
t_set_push (&membs, left_group);
goto check_optionals; /* see above */
}
opt_ctr++;
}
all_ctr++;
}
END_DO_SET()
/* Plain composing of SPAR_GP tree node */
res = spartlist (sparp, 10,
SPAR_GP, subtype,
t_list_to_array (membs),
t_revlist_to_array (filts),
NULL,
orig_selid,
NULL, (ptrlong)(0), (ptrlong)(0), options );
if ((CONSTRUCT_L != subtype) && (WHERE_L != subtype)) /* CONSTRUCT_L did not push to stack of selids, using one that will be used in WHERE_L */
spar_selid_pop (sparp);
return res;
}
SPART *
spar_gp_finalize_with_subquery (sparp_t *sparp, SPART **options, SPART *subquery)
{
SPART *gp;
gp = spar_gp_finalize (sparp, options);
gp->_.gp.subquery = subquery;
if ((SELECT_L != gp->_.gp.subtype) && (0 != gp->_.gp.subtype))
spar_internal_error (sparp, "spar_" "gp_finalize_with_subquery(): subquery is composed in a wrong way");
gp->_.gp.subtype = SELECT_L;
if (NULL != options)
sparp_validate_options_of_tree (sparp, gp, options);
return gp;
}
void spar_gp_add_member (sparp_t *sparp, SPART *memb)
{
dk_set_t *set_ptr;
spar_dbg_printf (("spar_gp_add_member ()\n"));
set_ptr = (dk_set_t *)(&(sparp->sparp_env->spare_acc_triples->data));
t_set_push (set_ptr, memb);
}
int
spar_filter_is_freetext (sparp_t *sparp, SPART *filt, SPART *base_triple)
{
int res = 0;
caddr_t fname;
if (SPAR_FUNCALL != SPART_TYPE (filt))
return 0;
fname = filt->_.funcall.qname;
if (!strcmp (fname, "bif:contains"))
res = SPAR_FT_CONTAINS;
else if (!strcmp (fname, "bif:xcontains"))
res = SPAR_FT_XCONTAINS;
else if (!strcmp (fname, "bif:xpath_contains"))
res = SPAR_FT_XPATH_CONTAINS;
else if (!strcmp (fname, "bif:xquery_contains"))
res = SPAR_FT_XQUERY_CONTAINS;
else if (!strcmp (fname, "bif:spatial_contains"))
res = SPAR_GEO_CONTAINS;
else
return 0;
if (NULL != base_triple)
{
caddr_t ft_var_name;
if (SPAR_VARIABLE != SPART_TYPE (base_triple->_.triple.tr_object))
spar_internal_error (sparp, "sparp_" "filter_is_freetext(): triple should have free-text predicate but the object is not a variable");
ft_var_name = base_triple->_.triple.tr_object->_.var.vname;
if ((0 == BOX_ELEMENTS (filt->_.funcall.argtrees)) ||
(SPAR_VARIABLE != SPART_TYPE (filt->_.funcall.argtrees[0])) ||
strcmp (filt->_.funcall.argtrees[0]->_.var.vname, ft_var_name) )
return 0;
}
return res;
}
int
spar_tree_is_var_with_forbidden_ft_name (sparp_t *sparp, SPART *tree, int report_error)
{
caddr_t vname;
if (!SPAR_IS_BLANK_OR_VAR (tree))
return 0;
vname = tree->_.var.vname;
if (strcasecmp (vname, "SCORE") &&
strcasecmp (vname, "XCONTAINS_MAIN_RANGES") &&
strcasecmp (vname, "XCONTAINS_ATTR_RANGES") )
return 0;
if (report_error)
spar_error (sparp, "Free-text triple pattern uses variable name '%s'; this name has special meaning in free-text SQL; please rename it to avoid unexpected effects", vname);
return 1;
}
void
spar_gp_add_filter (sparp_t *sparp, SPART *filt)
{
int filt_type = SPART_TYPE (filt);
int ft_type;
if (BOP_AND == filt_type)
{
spar_gp_add_filter (sparp, filt->_.bin_exp.left);
spar_gp_add_filter (sparp, filt->_.bin_exp.right);
return;
}
ft_type = spar_filter_is_freetext (sparp, filt, NULL);
if (ft_type)
{
caddr_t ft_pred_name = filt->_.funcall.qname;
SPART *ft_literal_var;
caddr_t var_name;
dk_set_t *triples_ptr;
SPART **args, *triple_with_var_obj = NULL;
int argctr, argcount, fld_ctr;
args = filt->_.funcall.argtrees;
argcount = BOX_ELEMENTS (args);
if (2 > argcount)
spar_error (sparp, "Not enough parameters for special predicate %s()", ft_pred_name);
ft_literal_var = filt->_.funcall.argtrees[0];
if (SPAR_VARIABLE != SPART_TYPE (ft_literal_var))
spar_error (sparp, "The first argument of special predicate %s() should be a variable", ft_pred_name);
var_name = ft_literal_var->_.var.vname;
triples_ptr = (dk_set_t *)(&(sparp->sparp_env->spare_acc_triples->data));
DO_SET (SPART *, memb, triples_ptr)
{
SPART *obj;
if (SPAR_TRIPLE != SPART_TYPE (memb))
continue;
obj = memb->_.triple.tr_object;
if (SPAR_VARIABLE != SPART_TYPE (obj))
continue;
if (strcmp (obj->_.var.vname, var_name))
continue;
if (memb->_.triple.ft_type)
spar_error (sparp, "More than one %s() or similar predicate for '$%s' variable in a single group", ft_pred_name, var_name);
if (NULL == triple_with_var_obj)
triple_with_var_obj = memb;
}
END_DO_SET ()
if (NULL == triple_with_var_obj)
spar_error (sparp, "The group does not contain triple pattern with '$%s' object before %s() predicate", var_name, ft_pred_name);
triple_with_var_obj->_.triple.ft_type = ft_type;
if (argcount % 2)
spar_error (sparp, "%s() special predicate is used with wrong number of arguments", ft_pred_name);
if (2 < argcount)
for (argctr = 2; argctr < argcount; argctr += 2)
{
SPART *arg_value = args[argctr+1];
SPART *opt_value;
if (SPAR_VARIABLE != SPART_TYPE (arg_value))
continue;
if (DV_LONG_INT != DV_TYPE_OF (args[argctr]))
spar_error (sparp, "Invalid argument #%d for %s() special predicate", argctr+1);
spar_tree_is_var_with_forbidden_ft_name (sparp, arg_value, 1);
opt_value = (SPART *)t_box_copy_tree ((caddr_t)arg_value);
#ifdef DEBUG
if (strcmp (opt_value->_.var.selid, triple_with_var_obj->_.triple.selid))
spar_internal_error (sparp, "spar_" "gp_add_filter(): weird mismatch between selids of opt_value and triple_with_var_obj");
#endif
opt_value->_.var.tabid = triple_with_var_obj->_.triple.tabid;
opt_value->_.var.tr_idx = (ptrlong)args[argctr];
triple_with_var_obj->_.triple.options = t_spartlist_concat (
triple_with_var_obj->_.triple.options,
(SPART **)t_list (2, args[argctr], opt_value) );
}
for (fld_ctr = 0; fld_ctr < SPART_TRIPLE_FIELDS_COUNT; fld_ctr++)
spar_tree_is_var_with_forbidden_ft_name (sparp, triple_with_var_obj->_.triple.tr_fields[fld_ctr], 1);
if (IS_BOX_POINTER (sparp->sparp_env->spare_sql_refresh_free_text))
((boxint *)(sparp->sparp_env->spare_sql_refresh_free_text))[0] = 1;
else
sparp->sparp_env->spare_sql_refresh_free_text = t_box_num (1);
}
if (NULL == sparp->sparp_env->spare_acc_filters)
spar_internal_error (sparp, "spar_" "gp_add_filter(): NULL sparp->sparp_env->spare_acc_filters");
t_set_push ((dk_set_t *)(&(sparp->sparp_env->spare_acc_filters->data)), filt);
}
void
spar_gp_add_filters_for_graph (sparp_t *sparp, SPART *graph_expn, int graph_is_named, int suppress_filters_for_good_names)
{
sparp_env_t *env = sparp->sparp_env;
dk_set_t sources = (graph_is_named ? env->spare_src.ssrc_named_graphs : env->spare_src.ssrc_default_graphs);
caddr_t varname = NULL;
SPART *good_list_expn, *bad_list_expn, *filter;
if (NULL == sources)
return;
if (SPAR_IS_BLANK_OR_VAR (graph_expn))
{
varname = graph_expn->_.var.vname;
if (suppress_filters_for_good_names)
{
dk_set_t good_varnames = env->spare_good_graph_varnames;
if (0 <= dk_set_position_of_string (good_varnames, varname))
return;
}
}
if ((NULL != sources) && (NULL == sources->next))
{
SPART *src = (SPART *)(sources->data);
if (!(src->_.graph.subtype & SPART_GRAPH_GROUP_BIT))
{
SPART *graph_expn_copy = (
(NULL != varname) ?
((SPAR_VARIABLE == SPART_TYPE (graph_expn)) ?
spar_make_variable (sparp, varname) :
spar_make_blank_node (sparp, varname, 0)) :
(SPART *) t_box_copy ((caddr_t) graph_expn) );
filter = spartlist (sparp, 3,
((SPART_GRAPH_MIN_NEGATION < src->_.graph.subtype) ? BOP_NEQ : BOP_EQ),
graph_expn_copy, src->_.graph.expn );
spar_gp_add_filter (sparp, filter);
return;
}
}
if (graph_is_named)
{
good_list_expn = spar_make_list_of_sources_expn (sparp, SPART_GRAPH_NAMED, 0, 0, RDF_GRAPH_PERM_READ, graph_expn);
bad_list_expn = spar_make_list_of_sources_expn (sparp, SPART_GRAPH_NOT_NAMED, 0, 0, 0x0, graph_expn);
}
else
{
good_list_expn = spar_make_list_of_sources_expn (sparp, SPART_GRAPH_FROM, SPART_GRAPH_GROUP, 0, RDF_GRAPH_PERM_READ, graph_expn);
bad_list_expn = spar_make_list_of_sources_expn (sparp, SPART_GRAPH_NOT_FROM, SPART_GRAPH_NOT_GROUP, 0, 0x0, graph_expn);
}
if (NULL != good_list_expn)
spar_gp_add_filter (sparp, good_list_expn);
if (NULL != bad_list_expn)
spar_gp_add_filter (sparp, spartlist (sparp, 2, BOP_NOT, bad_list_expn));
}
void
spar_gp_add_filters_for_named_graph (sparp_t *sparp)
{
sparp_env_t *env = sparp->sparp_env;
SPART *graph_expn = (SPART *)(env->spare_context_graphs->data);
spar_gp_add_filters_for_graph (sparp, graph_expn, 1, 0);
}
SPART *
spar_make_list_of_sources_expn (sparp_t *sparp, ptrlong from_subtype, ptrlong from_group_subtype, ptrlong from2_subtype, ptrlong req_perms, SPART *needle_expn)
{
dk_set_t single_graphs = NULL;
dk_set_t graph_groups = NULL;
DO_SET (SPART *, g, &(sparp->sparp_env->spare_src.ssrc_default_graphs))
{
ptrlong st = g->_.graph.subtype;
if ((st == from_subtype) || (st == from2_subtype))
t_set_push (&single_graphs, g->_.graph.expn);
else if (st == from_group_subtype)
t_set_push (&graph_groups, g->_.graph.expn);
}
END_DO_SET()
DO_SET (SPART *, g, &(sparp->sparp_env->spare_src.ssrc_named_graphs))
{
ptrlong st = g->_.graph.subtype;
if ((st == from_subtype) || (st == from2_subtype))
t_set_push (&single_graphs, g->_.graph.expn);
else if (st == from_group_subtype)
t_set_push (&graph_groups, g->_.graph.expn);
}
END_DO_SET()
if ((NULL == graph_groups) && (NULL == single_graphs))
{
if (NULL == needle_expn)
return (SPART *)t_NEW_DB_NULL;
return NULL;
}
if (NULL != needle_expn)
{
switch (SPART_TYPE (needle_expn))
{
case SPAR_BLANK_NODE_LABEL:
needle_expn = spar_make_blank_node (sparp, needle_expn->_.var.vname, 0);
break;
case SPAR_VARIABLE:
needle_expn = spar_make_variable (sparp, needle_expn->_.var.vname);
break;
}
}
if (NULL != graph_groups)
{
SPART *groups_expn = ((NULL == graph_groups->next) ?
(SPART *)(graph_groups->data) :
spar_make_funcall (sparp, 0, "LONG::bif:vector",
(SPART **)t_list_to_array (graph_groups) ) );
SPART *singles_expn = ((NULL == single_graphs) ?
(SPART *)t_NEW_DB_NULL :
spar_make_funcall (sparp, 0, "LONG::bif:vector",
(SPART **)t_list_to_array (single_graphs) ) );
SPART *lst_expn = spar_make_funcall (sparp, 0, "SPECIAL::sql:RDF_GRAPH_GROUP_LIST_GET",
(SPART **)t_list (6,
groups_expn, singles_expn, spar_boxed_exec_uid (sparp),
((NULL == sparp->sparp_gs_app_callback) ? t_NEW_DB_NULL : sparp->sparp_gs_app_callback),
((NULL == sparp->sparp_gs_app_uid) ? t_NEW_DB_NULL : sparp->sparp_gs_app_uid),
t_box_num_nonull (req_perms) ) );
if (NULL == needle_expn)
return lst_expn;
#if 0 /* For version 5 */
return spar_make_funcall (sparp, 0, "LONG::bif:position",
(SPART **)t_list (2, needle_expn, lst_expn) );
#else
return sparp_make_builtin_call (sparp, IN_L,
(SPART **)t_list (2, needle_expn, lst_expn) );
#endif
}
if (NULL == needle_expn)
return spar_make_funcall (sparp, 0, "LONG::bif:vector",
(SPART **)t_list_to_array (single_graphs) );
t_set_push (&single_graphs, needle_expn);
return sparp_make_builtin_call (sparp, IN_L,
(SPART **)t_list_to_array (single_graphs) );
}
SPART *
spar_add_propvariable (sparp_t *sparp, SPART *lvar, int opcode, SPART *verb_qname, int verb_lexem_type, caddr_t verb_lexem_text)
{
int lvar_blen, verb_qname_blen;
caddr_t new_key;
spar_propvariable_t *curr_pv = NULL;
const char *optext = ((_PLUS_GT == opcode) ? "+>" : "*>");
caddr_t *spec_pred_names = jso_triple_get_objs (
(caddr_t *)(sparp->sparp_sparqre->sparqre_qi),
verb_qname->_.lit.val,
uname_virtrdf_ns_uri_isSpecialPredicate );
if (0 != BOX_ELEMENTS (spec_pred_names))
{
dk_free_tree (spec_pred_names);
spar_error (sparp, "?%.200s %s ?%.200s is not allowed because it uses special predicate name", lvar->_.var.vname, optext, verb_lexem_text);
}
if (NULL == sparp->sparp_env->spare_propvar_sets)
{
dk_free_tree (spec_pred_names);
spar_error (sparp, "?%.200s %s ?%.200s is used in illegal context", lvar->_.var.vname, optext, verb_lexem_text);
}
dk_free_tree (spec_pred_names);
lvar_blen = box_length (lvar->_.var.vname);
verb_qname_blen = box_length (verb_qname->_.lit.val);
new_key = t_alloc_box (lvar_blen + verb_qname_blen + 1, DV_STRING);
memcpy (new_key, lvar->_.var.vname, lvar_blen);
memcpy (new_key + lvar_blen - 1, optext, 2);
memcpy (new_key + lvar_blen + 1, verb_qname->_.lit.val, verb_qname_blen);
DO_SET (spar_propvariable_t *, prev, &(sparp->sparp_propvars))
{
if (strcmp (prev->sparpv_key, new_key))
continue;
if ((prev->sparpv_verb_lexem_type != verb_lexem_type) ||
strcmp (prev->sparpv_verb_lexem_text, verb_lexem_text) )
spar_error (sparp, "Variables ?%.200s %s %s?%.200s%s and ?%.200s %s %s?%.200s%s are written different ways but may mean the same; remove this ambiguity",
lvar->_.var.vname, optext,
((Q_IRI_REF == verb_lexem_type) ? "<" : ""), verb_lexem_text,
((Q_IRI_REF == verb_lexem_type) ? ">" : ""),
prev->sparpv_subj_var->_.var.vname, optext,
((Q_IRI_REF == prev->sparpv_verb_lexem_type) ? "<" : ""), prev->sparpv_verb_lexem_text,
((Q_IRI_REF == prev->sparpv_verb_lexem_type) ? ">" : "") );
curr_pv = prev;
break;
}
END_DO_SET();
if (NULL == curr_pv)
{
curr_pv = (spar_propvariable_t *) t_alloc (sizeof (spar_propvariable_t));
curr_pv->sparpv_subj_var = lvar;
curr_pv->sparpv_op = opcode;
curr_pv->sparpv_verb_qname = verb_qname;
curr_pv->sparpv_verb_lexem_type = verb_lexem_type;
curr_pv->sparpv_verb_lexem_text = verb_lexem_text;
curr_pv->sparpv_key = new_key;
/* Composing readable and short name for the generated variable */
if (lvar_blen + strlen (verb_lexem_text) + ((Q_IRI_REF == verb_lexem_type) ? 2 : 0) < 30)
{
curr_pv->sparpv_obj_var_name = t_box_sprintf (40, "%s%s%s%s%s",
lvar->_.var.vname, optext,
((Q_IRI_REF == verb_lexem_type) ? "<" : ""), verb_lexem_text,
((Q_IRI_REF == verb_lexem_type) ? ">" : "") );
curr_pv->sparpv_obj_altered = 0;
}
else
{
char buf[20];
sprintf (buf, "!pv!%d", (sparp->sparp_unictr)++);
if (strlen(buf) + strlen (verb_lexem_text) + ((Q_IRI_REF == verb_lexem_type) ? 2 : 0) < 30)
curr_pv->sparpv_obj_var_name = t_box_sprintf (40, "%s%s%s%s%s",
buf, optext,
((Q_IRI_REF == verb_lexem_type) ? "<" : ""), verb_lexem_text,
((Q_IRI_REF == verb_lexem_type) ? ">" : "") );
else
curr_pv->sparpv_obj_var_name = t_box_sprintf (40, "%s%s!%d",
buf, optext, (sparp->sparp_unictr)++ );
curr_pv->sparpv_obj_altered = 0x1;
}
if (':' == curr_pv->sparpv_obj_var_name[0])
{
curr_pv->sparpv_obj_var_name[0] = '!';
curr_pv->sparpv_obj_altered |= 0x2;
}
t_set_push (&(sparp->sparp_propvars), curr_pv);
goto not_found_in_local_set; /* see below */ /* No need to search because this is the first occurrence at all */
}
DO_SET (spar_propvariable_t *, prev, &(sparp->sparp_env->spare_propvar_sets->data))
{
if (strcmp (prev->sparpv_key, new_key))
continue;
goto in_local_set; /* see below */
}
END_DO_SET();
not_found_in_local_set:
t_set_push ((dk_set_t *)(&(sparp->sparp_env->spare_propvar_sets->data)), (void *)curr_pv);
in_local_set:
return spar_make_variable (sparp, curr_pv->sparpv_obj_var_name);
}
void
spar_list_triple_varnames_and_macropunames_in_tree (sparp_t *sparp, SPART *tree, dk_set_t *all_varnames_ret, dk_set_t *undiscovered_ret)
{
int ctr;
switch (SPART_TYPE (tree))
{
case SPAR_ALIAS: t_set_push_new_string (all_varnames_ret, tree->_.alias.aname); break;
case SPAR_VARIABLE: t_set_push_new_string (all_varnames_ret, tree->_.var.vname); break;
case SPAR_TRIPLE:
for (ctr = SPART_TRIPLE_FIELDS_COUNT; ctr--; /* no step */)
{
SPART *fld = tree->_.triple.tr_fields[ctr];
switch (SPART_TYPE (fld))
{
case SPAR_VARIABLE: t_set_push_new_string (all_varnames_ret, fld->_.var.vname); break;
case SPAR_MACROPU: t_set_push_new_string (all_varnames_ret, fld->_.macropu.pname); break;
}
}
break;
case SPAR_GP:
DO_BOX_FAST_REV (SPART *, memb, ctr, tree->_.gp.members)
{
spar_list_triple_varnames_and_macropunames_in_tree (sparp, memb, all_varnames_ret, undiscovered_ret);
}
END_DO_BOX_FAST_REV;
if (NULL != tree->_.gp.subquery)
{
SPART **retvals = tree->_.gp.subquery->_.req_top.retvals;
if (DV_ARRAY_OF_POINTER == DV_TYPE_OF (retvals))
{
DO_BOX_FAST_REV (SPART *, memb, ctr, retvals)
{
spar_list_triple_varnames_and_macropunames_in_tree (sparp, memb, all_varnames_ret, undiscovered_ret);
}
END_DO_BOX_FAST_REV;
}
else
spar_internal_error (sparp, "Usupported combination of subqueries and service invocations");
}
break;
case SPAR_MACROCALL: case SPAR_MACROPU:
t_set_push (undiscovered_ret, tree);
break;
}
}
void
spar_add_service_inv_to_sg (sparp_t *sparp, SPART *sinv)
{
SPART **sinvs = sparp->sparp_sg->sg_sinvs;
ptrlong sinvcount = sparp->sparp_sg->sg_sinv_count;
if (IS_BOX_POINTER (sparp->sparp_sg->sg_sinv_count))
spar_error (sparp, "Too many service invocations, probably due to abnormal macro expansion");
sinv->_.sinv.own_idx = sinvcount;
if (BOX_ELEMENTS_INT_0 (sinvs) == sinvcount)
{
size_t new_size = ((NULL == sinvs) ? 4 * sizeof (SPART *) : 2 * box_length (sinvs));
SPART **new_sinvs = (SPART **)t_alloc_box (new_size, DV_ARRAY_OF_POINTER);
if (NULL != sinvs)
memcpy (new_sinvs, sinvs, box_length (sinvs));
#ifdef DEBUG
if (NULL != sinvs)
memset (sinvs, -1, box_length (sinvs));
#endif
sparp->sparp_sg->sg_sinvs = sinvs = new_sinvs;
}
sinvs[sinvcount] = sinv;
sparp->sparp_sg->sg_sinv_count++;
}
SPART *
spar_make_service_inv (sparp_t *sparp, caddr_t endpoint, dk_set_t all_options, ptrlong permitted_syntax, SPART **sources, caddr_t sinv_storage)
{
dk_set_t iri_params = NULL;
dk_set_t param_varnames = NULL;
dk_set_t rset_varnames = NULL;
dk_set_t defines = NULL;
int in_list_implicit = 0;
SPART *sinv;
while (NULL != all_options)
{
caddr_t optvalue = t_set_pop (&all_options);
caddr_t optname = t_set_pop (&all_options);
if (DEFINE_L == (ptrlong)optname)
{
t_set_push (&defines, ((SPART **)optvalue)[0]);
t_set_push (&defines, ((SPART **)optvalue)[1]);
}
else if (IN_L == (ptrlong)optname)
{
if (_STAR == (ptrlong)optvalue)
{
dk_set_t gp_subtypes_iter;
dk_set_t acc_triples_iter = sparp->sparp_env->spare_acc_triples;
in_list_implicit = 1;
for (gp_subtypes_iter = sparp->sparp_env->spare_context_gp_subtypes;
NULL != gp_subtypes_iter;
gp_subtypes_iter = gp_subtypes_iter->next, acc_triples_iter = acc_triples_iter->next )
{
dk_set_t members_before;
int gp_subtype = (ptrlong)(gp_subtypes_iter->data);
if (SELECT_L == gp_subtype)
break;
if (UNION_L == gp_subtype)
continue;
members_before = (dk_set_t)(acc_triples_iter->data);
DO_SET (SPART *, member, &members_before)
{
dk_set_t undiscovered = NULL;
spar_list_triple_varnames_and_macropunames_in_tree (sparp, member, ¶m_varnames, &undiscovered);
if (NULL != undiscovered)
spar_error (sparp, "SERVICE invocation is used in combination with macro so it should have explicit list of IN variables in OPTIONS");
}
END_DO_SET()
}
}
else
{
DO_SET (SPART *, var, (dk_set_t *)(&optvalue))
{
caddr_t vname = var->_.var.vname;
if (0 <= dk_set_position_of_string (param_varnames, vname))
spar_error (sparp, "Duplicate IN variable name \"%.100s\" in OPTIONs of SERVICE invocation", vname);
t_set_push (¶m_varnames, vname);
}
END_DO_SET()
}
}
/*! TBD: add other cases */
}
sinv = spartlist (sparp, 11, SPAR_SERVICE_INV,
(ptrlong)(0),
endpoint,
t_revlist_to_array (iri_params),
t_box_num (permitted_syntax),
t_revlist_to_array (param_varnames),
(ptrlong)in_list_implicit,
t_revlist_to_array (rset_varnames),
t_revlist_to_array (defines),
sources,
sinv_storage );
return sinv;
}
int
spar_describe_restricted_by_physical (sparp_t *sparp, SPART **retvals)
{
SPART **sources = sparp->sparp_expr->_.req_top.sources;
SPART *dflt_s = NULL;
SPART *triple;
int s_ctr;
spar_selid_push_reused (sparp, uname__ref);
t_set_push (&(sparp->sparp_env->spare_context_gp_subtypes), (caddr_t)((ptrlong)WHERE_L));
triple = spar_make_plain_triple (sparp,
spar_make_fake_blank_node (sparp),
NULL,
spar_make_fake_blank_node (sparp),
spar_make_fake_blank_node (sparp),
(caddr_t)(_STAR), NULL );
spar_selid_pop (sparp);
t_set_pop (&(sparp->sparp_env->spare_context_gp_subtypes));
DO_BOX_FAST (SPART *, s, s_ctr, retvals)
{
triple_case_t **cases;
int case_ctr;
int s_type = SPART_TYPE (s);
if (SPAR_ALIAS == s_type)
{
s = s->_.alias.arg;
s_type = SPART_TYPE (s);
}
if ((SPAR_VARIABLE == s_type) || (SPAR_BLANK_NODE_LABEL == s_type) || (SPAR_QNAME == s_type) || (SPAR_LIT == s_type))
triple->_.triple.tr_subject = s;
else
{
if (NULL == dflt_s)
dflt_s = spar_make_fake_blank_node (sparp);
triple->_.triple.tr_subject = dflt_s;
}
cases = sparp_find_triple_cases (sparp, triple, sources, SPART_GRAPH_FROM);
DO_BOX_FAST_REV (triple_case_t *, tc, case_ctr, cases)
{
ccaddr_t table_name = tc->tc_qm->qmTableName;
if ((NULL == table_name) || strcmp ("DB.DBA.RDF_QUAD", table_name))
return 0;
}
END_DO_BOX_FAST_REV;
cases = sparp_find_triple_cases (sparp, triple, sources, SPART_GRAPH_NAMED);
DO_BOX_FAST_REV (triple_case_t *, tc, case_ctr, cases)
{
ccaddr_t table_name = tc->tc_qm->qmTableName;
if ((NULL == table_name) || strcmp ("DB.DBA.RDF_QUAD", table_name))
return 0;
}
END_DO_BOX_FAST_REV;
}
END_DO_BOX_FAST;
return 1;
}
SPART **
spar_retvals_of_describe (sparp_t *sparp, SPART **retvals, SPART *limit_expn, SPART *offset_expn)
{
int retval_ctr;
dk_set_t vars = NULL;
dk_set_t consts = NULL;
SPART *good_graphs, *bad_graphs;
SPART *descr_call;
SPART *agg_call;
SPART *var_vector_expn;
SPART *var_vector_arg;
SPART *opts_arg;
dk_set_t opts_revlist = NULL;
caddr_t limofs_name;
caddr_t storage_name_or_null;
const char *descr_name, *postproc_name = NULL;
int need_limofs_trick = (
(NULL != limit_expn) ||
(DV_LONG_INT != DV_TYPE_OF (offset_expn)) ||
(0 != unbox ((caddr_t)(offset_expn))) );
/* Making lists of variables, blank nodes, fixed triples, triples with variables and blank nodes. */
for (retval_ctr = BOX_ELEMENTS_INT (retvals); retval_ctr--; /* no step */)
{
SPART *retval = retvals[retval_ctr];
switch (SPART_TYPE(retval))
{
case SPAR_LIT: case SPAR_QNAME: /*case SPAR_QNAME_NS:*/
t_set_push (&consts, retval);
break;
default:
t_set_push (&vars, retval);
break;
}
}
var_vector_expn = spar_make_funcall (sparp, 0, "LONG::bif:vector",
(SPART **)t_list_to_array (vars) );
if (need_limofs_trick)
{
limofs_name = t_box_dv_short_string ("@\"limofs\".\"describe-1\"");
var_vector_arg = spar_make_variable (sparp, limofs_name);
}
else
var_vector_arg = var_vector_expn;
agg_call = spar_make_funcall (sparp, 1, "sql:SPARQL_DESC_AGG",
(SPART **)t_list (1, var_vector_arg ) );
if (NULL != sparp->sparp_env->spare_describe_mode)
{
const char *mode = sparp->sparp_env->spare_describe_mode;
const char *mode1 = mode, *plus = strchr (mode, '+');
int phys_only;
if (NULL != plus)
{
mode1 = t_box_dv_short_nchars (mode, plus-mode);
postproc_name = t_box_sprintf (100, "sql:SPARQL_DESC_POSTPROC_%.50s", plus+1);
}
if ('\0' == mode1[0])
descr_name = "sql:SPARQL_DESC_DICT";
else
{
phys_only = ((NULL == sparp->sparp_env->spare_inference_name)
&& (NULL == sparp->sparp_env->spare_use_same_as)
&& spar_describe_restricted_by_physical (sparp, retvals) );
if (phys_only)
descr_name = t_box_sprintf (100, "sql:SPARQL_DESC_DICT_%.50s_PHYSICAL", mode1);
else
descr_name = t_box_sprintf (100, "sql:SPARQL_DESC_DICT_%.50s", mode1);
}
}
else
descr_name = "sql:SPARQL_DESC_DICT";
if (sparp->sparp_env->spare_src.ssrc_default_graphs_listed || sparp->sparp_env->spare_src.ssrc_named_graphs_listed)
good_graphs = spar_make_list_of_sources_expn (sparp, SPART_GRAPH_FROM, SPART_GRAPH_GROUP, SPART_GRAPH_NAMED, RDF_GRAPH_PERM_READ, NULL);
else
good_graphs = (SPART *)t_box_num_nonull (0);
bad_graphs = spar_make_list_of_sources_expn (sparp, SPART_GRAPH_NOT_FROM, SPART_GRAPH_NOT_GROUP, SPART_GRAPH_NOT_NAMED, 0x0, NULL);
t_set_push (&opts_revlist, t_box_dv_short_string ("uid"));
t_set_push (&opts_revlist, spar_boxed_exec_uid (sparp));
if (NULL != sparp->sparp_gs_app_callback)
{
t_set_push (&opts_revlist, t_box_dv_short_string ("gs-app-callback"));
t_set_push (&opts_revlist, sparp->sparp_gs_app_callback );
}
if (NULL != sparp->sparp_gs_app_uid)
{
t_set_push (&opts_revlist, t_box_dv_short_string ("gs-app-uid"));
t_set_push (&opts_revlist, sparp->sparp_gs_app_uid);
}
if (NULL != sparp->sparp_env->spare_inference_name)
{
t_set_push (&opts_revlist, t_box_dv_short_string ("inference"));
t_set_push (&opts_revlist, sparp->sparp_env->spare_inference_name);
}
if (NULL != sparp->sparp_env->spare_use_same_as)
{
t_set_push (&opts_revlist, t_box_dv_short_string ("same-as"));
t_set_push (&opts_revlist, sparp->sparp_env->spare_use_same_as);
}
storage_name_or_null = sparp->sparp_env->spare_storage_name;
if (NULL == storage_name_or_null)
storage_name_or_null = t_NEW_DB_NULL;
opts_arg = spar_make_funcall (sparp, 0, "bif:vector", (SPART **)t_revlist_to_array (opts_revlist)); /*!!!TBD describe options will be added here */
descr_call = spar_make_funcall (sparp, 0, descr_name,
(SPART **)t_list (6,
agg_call,
spar_make_funcall (sparp, 0, "LONG::bif:vector",
(SPART **)t_list_to_array (consts) ),
good_graphs,
bad_graphs,
storage_name_or_null,
opts_arg ) );
if (NULL != postproc_name)
descr_call = spar_make_funcall (sparp, 0, postproc_name,
(SPART **)t_list (5,
descr_call,
good_graphs,
bad_graphs,
storage_name_or_null,
opts_arg ) );
if (need_limofs_trick)
return (SPART **)t_list (2, descr_call,
spartlist (sparp, 4, SPAR_ALIAS, var_vector_expn, t_box_dv_short_string ("describe-1"), SSG_VALMODE_AUTO) );
else
return (SPART **)t_list (1, descr_call);
}
int
sparp_gp_trav_add_rgc_vars_and_consts_from_retvals (sparp_t *sparp, SPART *curr, sparp_trav_state_t *sts_this, void *common_env)
{
switch (SPART_TYPE (curr))
{
case SPAR_VARIABLE:
if (!(SPART_VARR_GLOBAL & curr->_.var.rvr.rvrRestrictions))
t_set_push_new_string (&(sparp->sparp_env->spare_src.ssrc_grab.rgc_vars), t_box_dv_uname_string (curr->_.var.vname));
break;
case SPAR_QNAME:
t_set_push_new_string (&(sparp->sparp_env->spare_src.ssrc_grab.rgc_consts), curr->_.lit.val);
break;
}
return 0;
}
void
spar_add_rgc_vars_and_consts_from_retvals (sparp_t *sparp, SPART **retvals)
{
int retctr;
DO_BOX_FAST (SPART *, retval, retctr, retvals)
{
sparp_gp_trav (sparp, retval, NULL,
NULL, NULL,
sparp_gp_trav_add_rgc_vars_and_consts_from_retvals, NULL, NULL,
sparp_gp_trav_add_rgc_vars_and_consts_from_retvals );
}
END_DO_BOX_FAST;
}
SPART *
spar_make_wm (sparp_t *sparp, SPART *pattern, SPART **groupings, SPART *having, SPART **order, SPART *limit, SPART *offset, SPART *binv)
{
if ((NULL != having) && (NULL == groupings))
spar_error (sparp, "HAVING clause should be preceded by a GROUP BY clause");
if ((DV_ARRAY_OF_POINTER == DV_TYPE_OF (limit)) && (SPAR_LIT == limit->type) && (DV_LONG_INT == DV_TYPE_OF (limit->_.lit.val)))
limit = (SPART *)(limit->_.lit.val);
if ((DV_ARRAY_OF_POINTER == DV_TYPE_OF (offset)) && (SPAR_LIT == offset->type) && (DV_LONG_INT == DV_TYPE_OF (offset->_.lit.val)))
offset = (SPART *)(offset->_.lit.val);
return spartlist (sparp, 8, SPAR_WHERE_MODIFS, pattern, groupings, having, order, limit, offset, binv);
}
int
sparp_gp_trav_rename_for_having (sparp_t *sparp, SPART *curr, sparp_trav_state_t *sts_this, void *common_env)
{
caddr_t *selid_to_patch_ptr = NULL;
switch (curr->type)
{
case SPAR_VARIABLE: case SPAR_BLANK_NODE_LABEL:
selid_to_patch_ptr = &(curr->_.var.selid); break;
case SPAR_GP:
if ((WHERE_L != curr->_.gp.subtype) && (SELECT_L != curr->_.gp.subtype))
return SPAR_GPT_NODOWN;
selid_to_patch_ptr = &(curr->_.gp.selid); break;
case SPAR_TRIPLE:
selid_to_patch_ptr = &(curr->_.triple.selid); break;
default: return 0;
}
if (strcmp (selid_to_patch_ptr[0], common_env))
return SPAR_GPT_NODOWN;
selid_to_patch_ptr[0] = t_box_sprintf (100, "%.90s~wm", selid_to_patch_ptr[0]);
return 0;
}
SPART *
spar_make_top_or_special_case_from_wm (sparp_t *sparp, ptrlong subtype, SPART **retvals,
caddr_t retselid, SPART *wm)
{
SPART *pattern = wm->_.wm.where_gp;
SPART **groupings = wm->_.wm.groupings;
SPART *having = wm->_.wm.having;
SPART **order = wm->_.wm.obys;
SPART *limit = wm->_.wm.lim;
SPART *offset = wm->_.wm.ofs;
SPART *binv = wm->_.wm.binv;
if ((NULL == sparp->sparp_env->spare_output_format_name)
&& (NULL == sparp->sparp_env->spare_parent_env)
&& ssg_is_odbc_cli () )
{
if (ssg_is_odbc_msaccess_cli ())
sparp->sparp_env->spare_output_format_name = t_box_dv_short_string ("_MSACCESS_");
else
sparp->sparp_env->spare_output_format_name = t_box_dv_short_string ("_UDBC_");
}
#ifndef NDEBUG
if (SPAR_WHERE_MODIFS != SPART_TYPE (wm))
spar_internal_error (sparp, "Ill wm");
#endif
if (0 != sparp->sparp_macro_call_count)
{
spar_mproc_ctx_t ctx;
memset (&ctx, 0, sizeof (spar_mproc_ctx_t));
ctx.smpc_unictr = (sparp->sparp_unictr)++;
ctx.smpc_context_gp = pattern;
ctx.smpc_context_selid = pattern->_.gp.selid;
pattern = spar_macroprocess_tree (sparp, pattern, &ctx);
ctx.smpc_context_gp = pattern;
ctx.smpc_context_selid = pattern->_.gp.selid;
retvals = spar_macroprocess_treelist (sparp, retvals, 0, &ctx);
groupings = spar_macroprocess_treelist (sparp, groupings, 0, &ctx);
having = spar_macroprocess_tree (sparp, having, &ctx);
order = spar_macroprocess_treelist (sparp, order, 0, &ctx);
limit = spar_macroprocess_tree (sparp, limit, &ctx);
offset = spar_macroprocess_tree (sparp, offset, &ctx);
}
do { /* Special case for selection of all distinct graphs */
SPART *grp, *triple, *retvar, *gvar;
caddr_t retname, gname;
int ctr1, ctr2;
if (NULL != sparp->sparp_env->spare_parent_env) break;
if (DISTINCT_L != subtype) break;
if (NULL != sparp->sparp_env->spare_src.ssrc_named_graphs) break;
if (!IS_BOX_POINTER (retvals)) break;
if (1 != BOX_ELEMENTS (retvals)) break;
if (0 != BOX_ELEMENTS_0 (groupings)) break;
if (0 != BOX_ELEMENTS_0 (order)) break;
if (NULL != binv) break;
if (0 != BOX_ELEMENTS_0 (pattern->_.gp.filters)) break;
if (1 != BOX_ELEMENTS (pattern->_.gp.members)) break;
if (0 != BOX_ELEMENTS_0 (pattern->_.gp.options)) break;
grp = pattern->_.gp.members[0];
if (0 != grp->_.gp.subtype) break;
if (0 != BOX_ELEMENTS_0 (grp->_.gp.filters)) break;
if (1 != BOX_ELEMENTS (grp->_.gp.members)) break;
if (0 != BOX_ELEMENTS_0 (grp->_.gp.options)) break;
triple = grp->_.gp.members[0];
if (SPAR_TRIPLE != triple->type) break;
if (0 != BOX_ELEMENTS_0 (triple->_.triple.options)) break;
gvar = triple->_.triple.tr_graph;
for (ctr1 = 0; ctr1 < SPART_TRIPLE_FIELDS_COUNT; ctr1++)
{
SPART *fld = triple->_.triple.tr_fields[ctr1];
if (SPAR_VARIABLE != SPART_TYPE (fld)) break;
if (SPART_VARNAME_IS_GLOB (fld->_.var.vname)) break;
for (ctr2 = 0; ctr2 < ctr1; ctr2++)
if (!strcmp (triple->_.triple.tr_fields[ctr2]->_.var.vname, fld->_.var.vname))
break;
if (ctr2 < ctr1) break;
}
if (ctr1 < SPART_TRIPLE_FIELDS_COUNT) break;
if (SPAR_VARIABLE != SPART_TYPE (triple->_.triple.tr_predicate)) break;
if (SPAR_VARIABLE != SPART_TYPE (triple->_.triple.tr_subject)) break;
if (SPAR_VARIABLE != SPART_TYPE (triple->_.triple.tr_object)) break;
if (SPAR_ALIAS == SPART_TYPE (retvals[0]))
{
retvar = retvals[0]->_.alias.arg;
retname = retvals[0]->_.alias.aname;
}
else
{
retvar = retvals[0];
retname = retvar->_.var.vname;
}
if (SPAR_VARIABLE != SPART_TYPE (retvar)) break;
gname = gvar->_.var.vname;
if (strcmp (gname, retvar->_.var.vname)) break;
return spartlist (sparp, 8, SPAR_CODEGEN,
t_box_num ((ptrlong)(ssg_select_known_graphs_codegen)),
sparp->sparp_env->spare_output_valmode_name, /* #2 */
sparp->sparp_env->spare_output_format_name, /* #3 */
retname, /* #4 */
retselid, /* #5 */
limit, /* #6 */
offset ); /* #7 */
} while (0);
/* The default is, of course, a plain query */
return spar_make_top (sparp, subtype, retvals, retselid, pattern, groupings, having, order, limit, offset, binv);
}
SPART *
spar_make_bindings_inv_with_fake_equivs (sparp_t *sparp, SPART **vars, SPART ***data_rows)
{
int varcount = BOX_ELEMENTS (vars);
int rowcount = BOX_ELEMENTS (data_rows);
int varctr, rowctr;
char *data_rows_mask = (char *)t_alloc_box (rowcount+1, DV_STRING);
ptrlong *counters_of_unbound = (ptrlong *)t_alloc_box (varcount * sizeof (ptrlong), DV_STRING);
SPART *binv = spartlist (sparp, 8, SPAR_BINDINGS_INV, 0, vars, data_rows, data_rows_mask, counters_of_unbound, (ptrlong)rowcount, (ptrlong)0);
memset (data_rows_mask, '/', rowcount);
for (varctr = varcount; varctr--; /* no step */)
{
int counter_of_unbound = 0;
for (rowctr = rowcount; rowctr--; /* no step */)
{
if (NULL == data_rows[rowctr][varctr])
counter_of_unbound++;
}
counters_of_unbound[varctr] = counter_of_unbound;
}
spar_refresh_binv_var_rvrs (sparp, binv);
for (varctr = 0; varctr < varcount; varctr++)
{
SPART *var = vars[varctr];
sparp_equiv_t *eq = sparp_equiv_alloc (sparp);
eq->e_varnames = (caddr_t *)t_list (1, var->_.var.vname);
eq->e_vars = (SPART **)t_list (1, var);
eq->e_var_count = 1;
eq->e_nested_bindings = 1; /* fake, to not reset rvr to conflict */
eq->e_gp = binv;
eq->e_const_reads = 1;
sparp_rvr_copy (sparp, &(eq->e_rvr), &(var->_.var.rvr));
var->_.var.equiv_idx = eq->e_own_idx;
}
return binv;
}
SPART **
spar_make_sources_like_top (sparp_t *sparp, ptrlong top_subtype)
{
sparp_env_t *env = sparp->sparp_env;
dk_set_t src = NULL;
SPART **sources;
DO_SET(SPART *, g, &(env->spare_src.ssrc_default_graphs))
{
t_set_push (&src, sparp_tree_full_copy (sparp, g, NULL));
}
END_DO_SET()
DO_SET(SPART *, g, &(env->spare_src.ssrc_named_graphs))
{
t_set_push (&src, sparp_tree_full_copy (sparp, g, NULL));
}
END_DO_SET()
sources = (SPART **)t_revlist_to_array (src);
if ((0 == BOX_ELEMENTS (sources)) &&
(NULL != (env->spare_src.ssrc_common_sponge_options)) &&
(LOAD_L != top_subtype) )
spar_error (sparp, "Retrieval options for source graphs (e.g., '%s') may be useless if the query does not contain 'FROM' or 'FROM NAMED'", env->spare_src.ssrc_common_sponge_options->data);
return sources;
}
SPART *
spar_make_top (sparp_t *sparp, ptrlong subtype, SPART **retvals,
caddr_t retselid, SPART *pattern, SPART **groupings, SPART *having, SPART **order, SPART *limit, SPART *offset, SPART *binv)
{
sparp_env_t *env = sparp->sparp_env;
caddr_t final_output_format_name;
SPART **sources = spar_make_sources_like_top (sparp, subtype);
switch (subtype)
{
case CONSTRUCT_L: case DESCRIBE_L:
final_output_format_name = ((NULL != env->spare_output_dict_format_name) ? env->spare_output_dict_format_name : env->spare_output_format_name);
break;
case ASK_L:
final_output_format_name = ((NULL != env->spare_output_scalar_format_name) ? env->spare_output_scalar_format_name : env->spare_output_format_name);
break;
default:
final_output_format_name = env->spare_output_format_name;
break;
}
if (NULL != sparp->sparp_env->spare_output_maxrows)
{
boxint hard_lim = unbox (sparp->sparp_env->spare_output_maxrows);
if (DV_LONG_INT == DV_TYPE_OF (limit))
{
if (unbox ((caddr_t)limit) > hard_lim)
limit = (SPART *)t_box_num_nonull (hard_lim);
}
else
limit = spar_make_funcall (sparp, 0, "bif:__max", (SPART **)t_list (2, limit, t_box_num_nonull (hard_lim)));
}
return spartlist (sparp, 18, SPAR_REQ_TOP, subtype,
env->spare_output_valmode_name,
final_output_format_name,
t_box_copy (env->spare_storage_name),
retvals, NULL /* orig_retvals */, NULL /* expanded_orig_retvals */, retselid,
sources, pattern, groupings, having, order,
limit, offset, binv, env );
}
SPART *
spar_gp_add_union_of_triple_and_inverses (sparp_t *sparp, SPART *graph, SPART *subject, SPART *predicate, SPART *object, caddr_t qm_iri_or_pair, SPART **options, int banned_tricks, dk_set_t inv_props)
{
SPART *triple, *gp, *union_gp;
rdf_inf_ctx_t *saved_inf = sparp->sparp_env->spare_inference_ctx;
spar_gp_init (sparp, UNION_L);
spar_gp_init (sparp, 0);
if (NULL != options)
spar_error (sparp, "Options are not supported for a triple pattern with property name \"%.200s\" that is declared in inference rules \"%.200s\" as a property with inverse",
predicate->_.qname.val, sparp->sparp_env->spare_inference_name );
sparp->sparp_env->spare_inference_ctx = NULL;
triple = spar_gp_add_triplelike (sparp, graph, subject, predicate, object, qm_iri_or_pair, options, banned_tricks | SPAR_ADD_TRIPLELIKE_NO_INV_UNION);
if (SPAR_TRIPLE != SPART_TYPE (triple))
spar_error (sparp, "Property name \"%.200s\" has special meaning that conflicts with its declaration in inference rules \"%.200s\" as a property with inverse",
predicate->_.qname.val, sparp->sparp_env->spare_inference_name );
sparp_set_triple_selid_and_tabid (sparp, triple, sparp->sparp_env->spare_selids->data, spar_mkid (sparp, "t"));
if (NULL != options)
sparp_validate_options_of_tree (sparp, triple, options);
gp = spar_gp_finalize (sparp, NULL);
spar_gp_add_member (sparp, gp);
while (NULL != inv_props)
{
caddr_t inv_p_name = t_box_dv_uname_string (t_set_pop (&inv_props));
spar_gp_init (sparp, 0);
triple = spar_gp_add_triplelike (sparp,
(SPART *)t_full_box_copy_tree ((caddr_t)graph),
(SPART *)t_full_box_copy_tree ((caddr_t)object), /* object is swapped with subject*/
(SPART *)t_full_box_copy_tree ((caddr_t)predicate),
(SPART *)t_full_box_copy_tree ((caddr_t)subject),
t_full_box_copy_tree (qm_iri_or_pair),
(SPART **)t_full_box_copy_tree ((caddr_t)options),
banned_tricks | SPAR_ADD_TRIPLELIKE_NO_INV_UNION );
if (SPAR_TRIPLE != SPART_TYPE (triple))
spar_error (sparp, "Property name \"%.200s\" has special meaning but it is declared in inference rules \"%.200s\" as an inverse property of \"%.200s\"",
inv_p_name, sparp->sparp_env->spare_inference_name, predicate->_.qname.val );
triple->_.triple.tr_predicate->_.qname.val = inv_p_name;
if (SPAR_IS_BLANK_OR_VAR (triple->_.triple.tr_object))
triple->_.triple.tr_object->_.var.rvr.rvrRestrictions &= ~SPART_VARR_IS_REF;
sparp_set_triple_selid_and_tabid (sparp, triple, sparp->sparp_env->spare_selids->data, spar_mkid (sparp, "t"));
gp = spar_gp_finalize (sparp, NULL);
spar_gp_add_member (sparp, gp);
}
union_gp = spar_gp_finalize (sparp, NULL);
spar_gp_add_member (sparp, union_gp);
sparp->sparp_env->spare_inference_ctx = saved_inf;
return union_gp;
}
SPART *
spar_gp_add_transitive_triple (sparp_t *sparp, SPART *graph, SPART *subject, SPART *predicate, SPART *object, caddr_t qm_iri_or_pair, SPART **options, int banned_tricks)
{
#ifdef DEBUG
sparp_env_t *saved_env = sparp->sparp_env;
dk_set_t selid_stack = sparp->sparp_env->spare_selids;
dk_set_t filters_stack = sparp->sparp_env->spare_acc_filters;
dk_set_t members_stack = sparp->sparp_env->spare_acc_triples;
#endif
SPART *subselect_top, *where_gp, *wrapper_gp, *fields[4];
SPART *subj_var, *obj_var, **retvals;
caddr_t subj_alias, obj_alias, subj_vname, obj_vname, retval_selid, gp_selid;
int subj_is_plain_var = 0, obj_is_plain_var = 0, retvalctr, fld_ctr;
int subj_stype = SPART_TYPE (subject);
int obj_stype = SPART_TYPE (object);
if (SPAR_VARIABLE == subj_stype)
subj_is_plain_var = SPART_VARNAME_IS_PLAIN(subject->_.var.vname);
else if (SPAR_QNAME != subj_stype)
spar_error (sparp, "Subject of transitive triple pattern should be variable or QName, not literal or blank node");
if (SPAR_VARIABLE == obj_stype)
obj_is_plain_var = SPART_VARNAME_IS_PLAIN(object->_.var.vname);
else if ((SPAR_QNAME != obj_stype) && (SPAR_LIT != obj_stype))
spar_error (sparp, "Object of transitive triple pattern should be variable or QName or literal, not blank node");
subj_vname = t_box_sprintf (40, "trans-subj-%.20s", (caddr_t)(sparp->sparp_env->spare_selids->data));
obj_vname = t_box_sprintf (40, "trans-obj-%.20s", (caddr_t)(sparp->sparp_env->spare_selids->data));
subj_alias = subj_is_plain_var ? subject->_.var.vname : subj_vname;
obj_alias = obj_is_plain_var ? object->_.var.vname : obj_vname;
spar_gp_init (sparp, 0);
spar_env_push (sparp);
spar_selid_push (sparp);
fields[0] = graph;
fields[1] = spar_make_variable (sparp, subj_vname);
fields[2] = predicate;
fields[3] = spar_make_variable (sparp, obj_vname);
retvalctr = 0;
for (fld_ctr = 0; fld_ctr < 4; fld_ctr++)
{
if (SPAR_IS_BLANK_OR_VAR (fields[fld_ctr]))
retvalctr++;
}
if (0 == retvalctr)
retvalctr = 1;
retvals = (SPART **)t_alloc_list (retvalctr);
retval_selid = (caddr_t)(sparp->sparp_env->spare_selids->data);
retvalctr = 0;
for (fld_ctr = 0; fld_ctr < 4; fld_ctr++)
{
SPART *rval = NULL;
switch (SPART_TYPE (fields[fld_ctr]))
{
case SPAR_BLANK_NODE_LABEL: rval = spar_make_blank_node (sparp, fields[fld_ctr]->_.var.vname, 0); break;
case SPAR_VARIABLE: rval = spar_make_variable (sparp, fields[fld_ctr]->_.var.vname); break;
}
if (NULL != rval)
{
if ((1 == fld_ctr) && subj_is_plain_var)
rval = spartlist (sparp, 4, SPAR_ALIAS, rval, subj_alias, SSG_VALMODE_AUTO);
else if ((3 == fld_ctr) && obj_is_plain_var)
rval = spartlist (sparp, 4, SPAR_ALIAS, rval, obj_alias, SSG_VALMODE_AUTO);
retvals[retvalctr++] = rval;
}
}
if (0 == retvalctr)
retvals[0] = (SPART *)t_box_num_nonull (1);
t_set_push (&(sparp->sparp_env->spare_propvar_sets), NULL);
spar_gp_init (sparp, WHERE_L);
gp_selid = (caddr_t)(sparp->sparp_env->spare_selids->data);
subj_var = spar_make_variable (sparp, subj_vname);
obj_var = spar_make_variable (sparp, obj_vname);
for (fld_ctr = 0; fld_ctr < 4; fld_ctr++)
{
if (SPAR_IS_BLANK_OR_VAR (fields[fld_ctr]))
fields[fld_ctr]->_.var.selid = gp_selid;
}
spar_gp_add_triplelike (sparp, graph, subj_var, predicate, obj_var, qm_iri_or_pair, NULL, banned_tricks | SPAR_ADD_TRIPLELIKE_NO_TRANSITIVE);
sparp_set_option (sparp, &options, T_IN_L,
spartlist (sparp, 2, SPAR_LIST, t_list (1, spar_make_variable (sparp, subj_alias))),
SPARP_SET_OPTION_REPLACING );
sparp_set_option (sparp, &options, T_OUT_L,
spartlist (sparp, 2, SPAR_LIST, t_list (1, spar_make_variable (sparp, obj_alias))),
SPARP_SET_OPTION_REPLACING );
where_gp = spar_gp_finalize (sparp, NULL);
subselect_top = spar_make_top (sparp, SELECT_L, retvals,
spar_selid_pop (sparp), where_gp,
(SPART **)NULL, (SPART *)NULL, (SPART **)NULL, (SPART *)NULL /* i.e., no limit */, (SPART *)t_box_num_nonull (0), NULL);
sparp_expand_top_retvals (sparp, subselect_top, 1 /* safely_copy_all_vars */);
spar_env_pop (sparp);
t_check_tree (options);
wrapper_gp = spar_gp_finalize_with_subquery (sparp, options, subselect_top);
spar_gp_add_member (sparp, wrapper_gp);
if (!subj_is_plain_var)
{
SPART *eq = spartlist (sparp, 3, BOP_EQ, spar_make_variable (sparp, subj_alias), subject);
spar_gp_add_filter (sparp, eq);
}
if (!obj_is_plain_var)
{
SPART *eq = spartlist (sparp, 3, BOP_EQ, spar_make_variable (sparp, obj_alias), object);
spar_gp_add_filter (sparp, eq);
}
#ifdef DEBUG
if (saved_env != sparp->sparp_env)
spar_internal_error (sparp, "spar_" "gp_add_transitive_triple(): mismatch in env");
if (selid_stack != sparp->sparp_env->spare_selids)
spar_internal_error (sparp, "spar_" "gp_add_transitive_triple(): mismatch in selid");
if (filters_stack != sparp->sparp_env->spare_acc_filters)
spar_internal_error (sparp, "spar_" "gp_add_transitive_triple(): mismatch in filters");
if (members_stack != sparp->sparp_env->spare_acc_triples)
spar_internal_error (sparp, "spar_" "gp_add_transitive_triple(): mismatch in triples");
#endif
return wrapper_gp;
}
#if 0
SPART *
spar_const_g_for_defm_search (sparp_env_t *env)
{
SPART *g = NULL;
dk_set_t *dflts;
if (env->spare_context_graphs)
{
g = (SPART *)t_box_copy_tree (env->spare_context_graphs->data);
goto g_found; /* see below*/
}
dflts = env->spare_src.ssrc_default_graphs;
/* Special case: if no FROM clauses specified but there are some FROM NAMED then default graph is totally empty.
So that's conflict for plain triple, but the processing of a graph-insensitive macro can not be cancelled because the body of macro could be
GRAPH <vald_named_graph> { ... } */
if ((NULL == dflts) && (NULL != env->spare_src.ssrc_named_graphs))
return NULL;
if ((NULL != dflts) && (SPART_GRAPH_FROM == ((SPART *)(dflts->data))->_.graph.subtype) &&
((NULL == dflts->next) || (SPART_GRAPH_MIN_NEGATION <= ((SPART *)(dflts->next->data))->_.graph.subtype)) )
{ /* If there's only one default graph then we can cheat and optimize the query a little bit by adding a restriction to the variable */
SPART *single_dflt = (SPART *)(dflts->data);
caddr_t g_iri = single_dflt->_.graph.iri;
if (!SPAR_IS_LIT_OR_QNAME (single_dflt->_.graph.expn) && (NULL != g_iri)) /* FROM iriref OPTION (...) case */
g = g_iri;
else
g = single_dflt->_.graph.expn;
}
g_found:
if (SPAR_IS_LIT_OR_QNAME (g))
return g;
return NULL;
}
#endif
ptrlong sparp_tr_usage_natural_restrictions[SPART_TRIPLE_FIELDS_COUNT] = {
SPART_VARR_IS_REF | SPART_VARR_IS_IRI | SPART_VARR_NOT_NULL, /* graph */
SPART_VARR_IS_REF | SPART_VARR_NOT_NULL, /* subject */
SPART_VARR_IS_REF | SPART_VARR_NOT_NULL, /* predicate */
SPART_VARR_NOT_NULL }; /* object */
SPART *
spar_gp_add_triplelike (sparp_t *sparp, SPART *graph, SPART *subject, SPART *predicate, SPART *object, caddr_t qm_iri_or_pair, SPART **options, int banned_tricks)
{
sparp_env_t *env = sparp->sparp_env;
rdf_inf_ctx_t *inf_ctx = sparp->sparp_env->spare_inference_ctx;
SPART *graph_eq_from_option_expn = NULL;
int graph_can_bring_filters = 0;
SPART *triple;
if (NULL == subject)
subject = (SPART *)t_box_copy_tree (env->spare_context_subjects->data);
if (NULL == predicate)
predicate = (SPART *)t_box_copy_tree (env->spare_context_predicates->data);
if (NULL == object)
object = (SPART *)t_box_copy_tree (env->spare_context_objects->data);
if (CONSTRUCT_L == SPARP_ENV_CONTEXT_GP_SUBTYPE(sparp))
{
if ((NULL == graph) && (NULL != env->spare_context_graphs))
{
graph = (SPART *)t_box_copy_tree (env->spare_context_graphs->data);
}
if (NULL == graph)
{
graph = spar_make_blank_node (sparp, spar_mkid (sparp, "_::default"), 2);
env->spare_ctor_dflt_g_tmpl_count++;
}
goto plain_triple_in_ctor; /* see below */
}
#if 1
if (NULL == qm_iri_or_pair)
{
if (NULL == env->spare_context_qms)
qm_iri_or_pair = (caddr_t)(_STAR);
else
{
SPART *ctx_qm = env->spare_context_qms->data;
if (DV_ARRAY_OF_POINTER == DV_TYPE_OF (ctx_qm))
qm_iri_or_pair = ctx_qm->_.lit.val;
else
qm_iri_or_pair = (caddr_t)ctx_qm;
}
if (NULL != env->spare_context_sinvs)
{
SPART *inner_sinv = (SPART *)(env->spare_context_sinvs->data);
qm_iri_or_pair = (caddr_t)t_list (2, qm_iri_or_pair, t_box_num (inner_sinv->_.sinv.own_idx));
}
}
#else
for (;;)
{
SPART *ctx_qm;
if (NULL != qm_iri)
break;
if (NULL == env->spare_context_qms)
{
qm_iri = (caddr_t)(_STAR);
break;
}
ctx_qm = env->spare_context_qms->data;
if (DV_ARRAY_OF_POINTER == DV_TYPE_OF (ctx_qm))
{
qm_iri = ctx_qm->_.lit.val;
break;
}
ctx_qm = (SPART *)qm_iri;
break;
}
#endif
if (NULL != options)
{
caddr_t inf_name = (caddr_t)sparp_get_option (sparp, options, INFERENCE_L);
if (NULL != inf_name)
{
if (IS_BOX_POINTER(inf_name))
{
rdf_inf_ctx_t ** place = (rdf_inf_ctx_t **) id_hash_get (rdf_name_to_ric, (caddr_t)&inf_name);
if (NULL == place)
spar_error (sparp, "'OPTION (INFERENCE \"%.30s\") refers to undefined inference rule set", inf_name);
inf_ctx = place[0];
}
else
inf_ctx = NULL;
}
}
if (NULL != options)
{
SPART *trans = sparp_get_option (sparp, options, TRANSITIVE_L);
if ((NULL != trans) && !(SPAR_ADD_TRIPLELIKE_NO_TRANSITIVE & banned_tricks))
return spar_gp_add_transitive_triple (sparp, graph, subject, predicate, object, qm_iri_or_pair, options, SPAR_ADD_TRIPLELIKE_NO_TRANSITIVE | banned_tricks);
}
if ((NULL != inf_ctx) && (SPAR_QNAME == SPART_TYPE (predicate)))
{
caddr_t p_name = predicate->_.qname.val;
caddr_t *propprops = inf_ctx->ric_prop_props;
caddr_t *invlist = inf_ctx->ric_inverse_prop_pair_sortedalist;
if (NULL != propprops)
{
int propproplen = BOX_ELEMENTS (propprops);
int pp_pos = ecm_find_name (p_name, propprops, propproplen/2, 2 * sizeof (caddr_t));
if (ECM_MEM_NOT_FOUND != pp_pos)
{
ptrlong flags = (ptrlong)(propprops[pp_pos * 2 + 1]);
if ((1 & flags) && !(SPAR_ADD_TRIPLELIKE_NO_TRANSITIVE & banned_tricks))
{
sparp_set_option (sparp, &options, TRANSITIVE_L, (SPART *)((ptrlong)1), SPARP_SET_OPTION_REPLACING);
return spar_gp_add_transitive_triple (sparp, graph, subject, predicate, object, qm_iri_or_pair, options, SPAR_ADD_TRIPLELIKE_NO_TRANSITIVE | banned_tricks);
}
}
}
if ((NULL != invlist) && !(SPAR_ADD_TRIPLELIKE_NO_INV_UNION & banned_tricks))
{
int invlistlen = BOX_ELEMENTS (invlist);
int inv_pos = ecm_find_name (p_name, invlist, invlistlen/2, 2 * sizeof (caddr_t));
if (ECM_MEM_NOT_FOUND != inv_pos)
{ /* There may be many inverse predicates for a single given one and ecm_find_name may point to any of pairs */
dk_set_t inv_names = NULL;
while ((0 < inv_pos) && !strcmp (invlist[(inv_pos-1) * 2], p_name))
inv_pos--;
t_set_push (&inv_names, invlist [1 + 2 * inv_pos]);
while ((((inv_pos+1) * 2) < invlistlen) && !strcmp (invlist[(inv_pos+1) * 2], p_name))
t_set_push (&inv_names, invlist [1 + 2 * ++inv_pos]);
return spar_gp_add_union_of_triple_and_inverses (sparp, graph, subject, predicate, object, qm_iri_or_pair, options, SPAR_ADD_TRIPLELIKE_NO_INV_UNION | banned_tricks, inv_names);
}
}
}
if (SPAR_QNAME == SPART_TYPE (predicate))
{
caddr_t *spec_pred_names = jso_triple_get_objs (
(caddr_t *)(sparp->sparp_sparqre->sparqre_qi),
predicate->_.lit.val,
uname_virtrdf_ns_uri_isSpecialPredicate );
if (0 != BOX_ELEMENTS (spec_pred_names))
{
caddr_t pname = spec_pred_names[0];
if (NULL != options)
{
int ctr;
sparp_validate_options_of_tree (sparp, NULL /*no tree*/, options);
for (ctr = BOX_ELEMENTS (options) - 2; ctr >= 0; ctr -= 2)
{
ptrlong option_id = (ptrlong)(options[ctr]);
SPART *option_value = options[ctr+1];
if (SPAR_VARIABLE == SPART_TYPE (option_value))
option_value->_.var.rvr.rvrRestrictions |= SPART_VARR_IS_LIT;
}
}
spar_gp_add_filter (sparp,
spar_make_funcall (sparp, 0, pname,
t_spartlist_concat ((SPART **)t_list (2, subject, object), options) ) );
dk_free_tree (spec_pred_names);
return NULL;
}
dk_free_tree (spec_pred_names);
}
for (;;)
{
dk_set_t dflts;
if (NULL != graph)
break;
if (env->spare_context_graphs)
{
graph = (SPART *)t_box_copy_tree (env->spare_context_graphs->data);
break;
}
dflts = env->spare_src.ssrc_default_graphs;
if ((NULL == dflts) && (NULL != env->spare_src.ssrc_named_graphs))
{ /* Special case: if no FROM clauses specified but there are some FROM NAMED then default graph is totally empty */
graph = spar_make_blank_node (sparp, spar_mkid (sparp, "_::default"), 2);
graph->_.var.rvr.rvrRestrictions |= SPART_VARR_CONFLICT;
break;
}
if ((NULL != dflts) && (SPART_GRAPH_FROM == ((SPART *)(dflts->data))->_.graph.subtype) &&
((NULL == dflts->next) || (SPART_GRAPH_MIN_NEGATION <= ((SPART *)(dflts->next->data))->_.graph.subtype)) )
{ /* If there's only one default graph then we can cheat and optimize the query a little bit by adding a restriction to the variable */
SPART *single_dflt = (SPART *)(dflts->data);
if (!SPAR_IS_LIT_OR_QNAME (single_dflt->_.graph.expn)) /* FROM iriref OPTION (...) case */
{
caddr_t iri_arg = single_dflt->_.graph.iri;
graph = spar_make_blank_node (sparp, spar_mkid (sparp, "_::default"), 2);
graph_eq_from_option_expn = spartlist (sparp, 3, BOP_EQ, sparp_tree_full_copy (sparp, graph, NULL), sparp_tree_full_copy (sparp, single_dflt->_.graph.expn, NULL));
if (NULL != iri_arg)
{
graph->_.var.rvr.rvrRestrictions |= SPART_VARR_FIXED | SPART_VARR_IS_REF | SPART_VARR_NOT_NULL;
graph->_.var.rvr.rvrFixedValue = t_box_copy (iri_arg);
}
}
else /* Single FROM iriref without sponge options */
graph = sparp_tree_full_copy (sparp, single_dflt->_.graph.expn, NULL);
if (NULL == dflts->next) /* There's only one source and it is reflected in the value of graph */
break;
}
else
graph = spar_make_blank_node (sparp, spar_mkid (sparp, "_::default"), 2);
graph_can_bring_filters = 1;
break;
}
if (!(banned_tricks & SPAR_ADD_TRIPLELIKE_NO_MACRO))
{
int ctr, argctr;
SPART *match_defm = NULL;
SPART *mcall, *fields[4];
if (!sparp->sparp_storage_is_set)
sparp_configure_storage_and_macro_libs (sparp);
if (!sparp->sparp_macro_def_count)
goto mcall_not_found; /* see below */
fields[0] = graph;
fields[1] = subject;
fields[2] = predicate;
fields[3] = object;
match_defm = spar_find_defmacro_by_iri_or_fields (sparp, NULL, fields);
if (NULL == match_defm)
goto mcall_not_found; /* see below */
mcall = sparp_make_macro_call (sparp, match_defm->_.defmacro.mname, 0,
(SPART **)t_alloc_box (box_length (match_defm->_.defmacro.paramnames), DV_ARRAY_OF_POINTER) );
argctr = 0;
DO_BOX_FAST (SPART *, fld, ctr, match_defm->_.defmacro.quad_pattern)
{
if (SPAR_VARIABLE == SPART_TYPE (fld))
mcall->_.macrocall.argtrees[argctr++] = fields[ctr];
}
END_DO_BOX_FAST;
spar_gp_add_member (sparp, mcall);
if (!(sparp->sparp_macro_mode & SPARP_DEFBODY))
sparp->sparp_macro_call_count++;
return mcall;
}
mcall_not_found: ;
plain_triple_in_ctor:
if (SPAR_IS_BLANK_OR_VAR (graph))
graph->_.var.selid = env->spare_selids->data;
if (graph_can_bring_filters)
spar_gp_add_filters_for_graph (sparp, graph, 0, 0);
if (NULL != graph_eq_from_option_expn)
spar_gp_add_filter (sparp, graph_eq_from_option_expn);
triple = spar_make_plain_triple (sparp, graph, subject, predicate, object, qm_iri_or_pair, options);
if (NULL != options)
sparp_validate_options_of_tree (sparp, triple, options);
spar_gp_add_member (sparp, triple);
return triple;
}
SPART *
spar_make_plain_triple (sparp_t *sparp, SPART *graph, SPART *subject, SPART *predicate, SPART *object, caddr_t qm_iri_or_pair, SPART **options)
{
sparp_env_t *env = sparp->sparp_env;
caddr_t key;
int fctr;
SPART *triple;
key = t_box_sprintf (0x100, "%s-t%d", env->spare_selids->data, sparp->sparp_key_gen);
sparp->sparp_key_gen += 1;
triple = spartlist (sparp, 17, SPAR_TRIPLE,
(ptrlong)0,
graph, subject, predicate, object, qm_iri_or_pair,
env->spare_selids->data, key, NULL,
NULL, NULL, NULL, NULL,
options, (ptrlong)0, (ptrlong)((sparp->sparp_unictr)++) );
if (CONSTRUCT_L == SPARP_ENV_CONTEXT_GP_SUBTYPE(sparp))
return triple;
for (fctr = 0; fctr < SPART_TRIPLE_FIELDS_COUNT; fctr++)
{
SPART *fld = triple->_.triple.tr_fields[fctr];
ptrlong ft = SPART_TYPE(fld);
if ((SPAR_VARIABLE == ft) || (SPAR_BLANK_NODE_LABEL == ft))
{
fld->_.var.rvr.rvrRestrictions |= sparp_tr_usage_natural_restrictions[fctr];
fld->_.var.tabid = key;
fld->_.var.tr_idx = fctr;
if (!(SPART_VARR_GLOBAL & fld->_.var.rvr.rvrRestrictions))
t_set_push_new_string (&(env->spare_good_graph_varnames), fld->_.var.vname);
}
if ((env->spare_src.ssrc_grab.rgc_all) && (SPART_TRIPLE_PREDICATE_IDX != fctr))
{
if ((SPAR_VARIABLE == ft) && !(SPART_VARR_GLOBAL & fld->_.var.rvr.rvrRestrictions))
t_set_push_new_string (&(env->spare_src.ssrc_grab.rgc_vars), t_box_dv_uname_string (fld->_.var.vname));
else if (SPAR_QNAME == ft)
t_set_push_new_string (&(env->spare_src.ssrc_grab.rgc_consts), fld->_.lit.val);
}
if ((NULL != env->spare_src.ssrc_grab.rgc_sa_preds) &&
(SPART_TRIPLE_SUBJECT_IDX == fctr) &&
(SPAR_VARIABLE == ft) &&
!(env->spare_src.ssrc_grab.rgc_all) )
{
SPART *obj = triple->_.triple.tr_object;
ptrlong objt = SPART_TYPE(obj);
if (
((SPAR_VARIABLE == objt) &&
(0 <= dk_set_position_of_string (env->spare_src.ssrc_grab.rgc_vars, obj->_.var.vname)) ) ||
((SPAR_QNAME == objt) &&
(0 <= dk_set_position_of_string (env->spare_src.ssrc_grab.rgc_consts, obj->_.lit.val)) ) )
{
t_set_push_new_string (&(env->spare_src.ssrc_grab.rgc_sa_vars), t_box_dv_uname_string (fld->_.var.vname));
}
}
}
return triple;
}
SPART *
spar_make_param_or_variable (sparp_t *sparp, caddr_t name)
{
if (0 <= dk_set_position_of_string (sparp->sparp_env->spare_protocol_params, name))
{
caddr_t intname = t_box_sprintf (110, "::%.100s", name);
return spar_make_variable (sparp, intname);
}
return spar_make_variable (sparp, name);
}
SPART *
spar_make_variable (sparp_t *sparp, caddr_t name)
{
sparp_env_t *env = sparp->sparp_env;
SPART *res;
int is_global = SPART_VARNAME_IS_GLOB(name);
caddr_t selid = NULL;
#ifdef DEBUG
caddr_t rvr_list_test[] = {SPART_RVR_LIST_OF_NULLS};
if (sizeof (rvr_list_test) != sizeof (rdf_val_range_t))
GPF_T; /* Don't forget to add NULLS to SPART_RVR_LIST_OF_NULLS when adding fields to rdf_val_range_t */
#endif
if (is_global)
{
t_set_push_new_string (&(sparp->sparp_env->spare_global_var_names), name);
}
if (sparp->sparp_in_precode_expn)
{
if (2 & sparp->sparp_in_precode_expn)
spar_error (sparp, "Variable '%.100s' is not allowed in a constant clause", name);
else if (!is_global)
spar_error (sparp, "non-global variable '%.100s' can not be used outside any group pattern or result-set list", name);
}
if (NULL != env->spare_selids)
selid = env->spare_selids->data;
else if (is_global) /* say, 'insert in graph ?:someglobalvariable {...} where {...} */
selid = t_box_dv_uname_string ("(global)");
else if (SPART_VARNAME_IS_SPECIAL(name)) /* say, '@"limofs"."describe-1"' */
selid = t_box_dv_uname_string ("(special)");
else
spar_internal_error (sparp, "non-global variable outside any group pattern or result-set list");
res = spartlist (sparp, 6 + (sizeof (rdf_val_range_t) / sizeof (caddr_t)),
SPAR_VARIABLE, name,
selid, NULL,
(ptrlong)(SPART_VAR_OUTSIDE_TRIPLE), SPART_BAD_EQUIV_IDX, SPART_RVR_LIST_OF_NULLS );
res->_.var.rvr.rvrRestrictions = (is_global ? SPART_VARR_GLOBAL : 0);
return res;
}
SPART *
spar_make_macropu (sparp_t *sparp, caddr_t name, ptrlong pos)
{
SPART *res = spartlist (sparp, 4, SPAR_MACROPU, name, pos, (ptrlong)0);
return res;
}
SPART *spar_make_blank_node (sparp_t *sparp, caddr_t name, int bracketed)
{
sparp_env_t *env = sparp->sparp_env;
SPART *res;
if ((sparp->sparp_in_precode_expn) && !(bracketed & 0x2))
spar_error (sparp, "Blank node '%.100s' is not allowed in a constant clause", name);
if (NULL == env->spare_selids)
spar_error (sparp, "Blank nodes (e.g., '%.100s') can not be used outside any group pattern or result-set list", name);
res = spartlist (sparp, 7 + (sizeof (rdf_val_range_t) / sizeof (caddr_t)),
SPAR_BLANK_NODE_LABEL, name,
env->spare_selids->data, NULL,
(ptrlong)SPART_VAR_OUTSIDE_TRIPLE, SPART_BAD_EQUIV_IDX, SPART_RVR_LIST_OF_NULLS, (ptrlong)bracketed );
res->_.var.rvr.rvrRestrictions = /*SPART_VARR_IS_REF | SPART_VARR_IS_BLANK |*/ SPART_VARR_NOT_NULL;
return res;
}
SPART *spar_make_fake_blank_node (sparp_t *sparp)
{
SPART *res;
res = spartlist (sparp, 7 + (sizeof (rdf_val_range_t) / sizeof (caddr_t)),
SPAR_BLANK_NODE_LABEL, uname__ref,
uname__ref, NULL,
(ptrlong)(0), SPART_BAD_EQUIV_IDX, SPART_RVR_LIST_OF_NULLS, (ptrlong)0x2 );
res->_.var.rvr.rvrRestrictions = /*SPART_VARR_IS_REF | SPART_VARR_IS_BLANK |*/ SPART_VARR_NOT_NULL;
return res;
}
SPART *spar_make_typed_literal (sparp_t *sparp, caddr_t strg, caddr_t type, caddr_t lang)
{
dtp_t tgt_dtp;
caddr_t parsed_value = NULL;
sql_tree_tmp *tgt_dtp_tree;
SPART *res;
if (NULL != lang)
return spartlist (sparp, 4, SPAR_LIT, strg, type, lang);
if (uname_xmlschema_ns_uri_hash_boolean == type)
{
if (!strcmp ("true", strg))
return spartlist (sparp, 4, SPAR_LIT, (ptrlong)1, type, NULL);
if (!strcmp ("false", strg))
return spartlist (sparp, 4, SPAR_LIT, (ptrlong)0, type, NULL);
goto cannot_cast;
}
if (uname_xmlschema_ns_uri_hash_date == type)
{
tgt_dtp = DV_DATE;
goto do_sql_cast;
}
if (uname_xmlschema_ns_uri_hash_dateTime == type)
{
tgt_dtp = DV_DATETIME;
goto do_sql_cast;
}
if (uname_xmlschema_ns_uri_hash_decimal == type)
{
tgt_dtp = DV_NUMERIC;
goto do_sql_cast;
}
if (uname_xmlschema_ns_uri_hash_double == type)
{
tgt_dtp = DV_DOUBLE_FLOAT;
goto do_sql_cast;
}
if (uname_xmlschema_ns_uri_hash_float == type)
{
tgt_dtp = DV_SINGLE_FLOAT;
goto do_sql_cast;
}
if (uname_xmlschema_ns_uri_hash_integer == type)
{
tgt_dtp = DV_LONG_INT;
goto do_sql_cast;
}
if (uname_xmlschema_ns_uri_hash_time == type)
{
tgt_dtp = DV_TIME;
goto do_sql_cast;
}
if (uname_xmlschema_ns_uri_hash_string == type)
{
return spartlist (sparp, 4, SPAR_LIT, strg, type, NULL);
}
return spartlist (sparp, 4, SPAR_LIT, strg, type, NULL);
do_sql_cast:
tgt_dtp_tree = (sql_tree_tmp *)t_list (3, (ptrlong)tgt_dtp, (ptrlong)NUMERIC_MAX_PRECISION, (ptrlong)NUMERIC_MAX_SCALE);
parsed_value = box_cast ((caddr_t *)(sparp->sparp_sparqre->sparqre_qi), strg, tgt_dtp_tree, DV_STRING);
res = spartlist (sparp, 4, SPAR_LIT, t_full_box_copy_tree (parsed_value), type, NULL);
dk_free_tree (parsed_value);
return res;
cannot_cast:
sparyyerror_impl (sparp, strg, "The string representation can not be converted to a valid typed value");
return NULL;
}
void
sparp_make_and_push_new_graph_source (sparp_t *sparp, ptrlong subtype, SPART *iri_expn, SPART **options)
{
sparp_env_t *spare = sparp->sparp_env;
caddr_t iri = ((SPAR_QNAME == SPART_TYPE (iri_expn)) ? iri_expn->_.qname.val : NULL);
dk_set_t *set_ptr;
int *is_locked_ptr = NULL;
SPART *dupe_found = NULL;
caddr_t **group_members_ptr = NULL;
SPART *precode;
switch (subtype)
{
case SPART_GRAPH_FROM:
spare->spare_src.ssrc_default_graphs_listed++;
is_locked_ptr = &(spare->spare_src.ssrc_default_graphs_locked);
/* no break */
case SPART_GRAPH_NOT_FROM:
set_ptr = &(spare->spare_src.ssrc_default_graphs);
break;
case SPART_GRAPH_NAMED:
spare->spare_src.ssrc_named_graphs_listed++;
is_locked_ptr = &(spare->spare_src.ssrc_named_graphs_locked);
/* no break */
case SPART_GRAPH_NOT_NAMED:
set_ptr = &(spare->spare_src.ssrc_named_graphs);
break;
default:
spar_internal_error (sparp, "sparp_make_and_push_new_graph_source(): bad subtype");
set_ptr = NULL; /* To keep compiler happy */
break;
}
if (NULL != iri)
{
DO_SET (SPART *, c, set_ptr)
{
if (strcmp (c->_.graph.iri, iri))
continue;
if ((subtype < SPART_GRAPH_MIN_NEGATION) && (SPART_GRAPH_MIN_NEGATION < c->_.graph.subtype))
{
if (is_locked_ptr && is_locked_ptr[0])
{
const char *fty = ((SPART_GRAPH_NAMED == subtype) ? " NAMED" : "");
spar_error (sparp, "An IRI <%.200s> can not be used in FROM%s clause because it is excluded by NOT FROM%s already",
iri, fty, fty );
}
return; /* A (failed) attempt to overwrite NOT FROM with FROM */
}
if ((c->_.graph.subtype == subtype) && (SPAR_QNAME != SPART_TYPE (c->_.graph.expn)))
t_set_delete (set_ptr, c);
else
{
dupe_found = c;
break;
}
}
END_DO_SET()
}
if ((NULL == dupe_found) && (subtype < SPART_GRAPH_MIN_NEGATION) && is_locked_ptr && is_locked_ptr[0])
{
const char *fty = ((SPART_GRAPH_NAMED == subtype) ? " NAMED" : "");
spar_error (sparp, "FROM %s <%.200s> clause violates security restrictions on allowed graph names", fty, ((NULL != iri) ? "..." : iri));
}
if ((SPART_GRAPH_MIN_NEGATION < subtype) && (NULL != options))
{
const char *fty = ((SPART_GRAPH_NAMED == subtype) ? " NAMED" : "");
spar_error (sparp, "NOT FROM%s <%.200s> clause can not have options, only FROM and FROM NAMED can", fty, ((NULL != iri) ? "..." : iri));
}
if ((NULL != iri) && rdf_graph_group_dict_htable->ht_count)
{
caddr_t iid = sparp_graph_sec_iri_to_id_nosignal (sparp, iri);
if (NULL != iid)
{
mutex_enter (rdf_graph_group_dict_htable->ht_mutex);
group_members_ptr = (caddr_t **)id_hash_get (rdf_graph_group_dict_htable, (caddr_t)(&iid));
mutex_leave (rdf_graph_group_dict_htable->ht_mutex);
}
dk_free_tree (iid);
}
else
group_members_ptr = NULL;
if (NULL != group_members_ptr)
{
switch (subtype)
{
case SPART_GRAPH_FROM: subtype = SPART_GRAPH_GROUP; break;
case SPART_GRAPH_NOT_FROM: subtype = SPART_GRAPH_NOT_GROUP; break;
case SPART_GRAPH_NAMED:
spar_error (sparp, "<%.200s> is graph group, not a plain graph, so it can not be used in FROM NAMED clause", iri);
break;
case SPART_GRAPH_NOT_NAMED:
spar_error (sparp, "<%.200s> is graph group, not a plain graph, so it can not be used in NOT FROM NAMED clause", iri);
break;
}
}
if ((SPART_GRAPH_GROUP == subtype) && (NULL != options))
spar_error (sparp, "FROM <%.200s> clause refers to a graph group so it can not have any options", iri);
precode = sparp_make_graph_precode (sparp, subtype, iri_expn, options);
if ((NULL != dupe_found) && (dupe_found->_.graph.subtype == subtype) &&
(SPAR_QNAME == SPART_TYPE (dupe_found->_.graph.expn)) &&
(SPAR_QNAME == SPART_TYPE (precode->_.graph.expn)) )
return;
if (SPART_GRAPH_MIN_NEGATION < subtype)
{
dk_set_t tmp = NULL;
t_set_push (&tmp, precode);
set_ptr[0] = t_NCONC (set_ptr[0], tmp);
}
else
t_set_push (set_ptr, precode);
}
SPART *
sparp_make_graph_precode (sparp_t *sparp, ptrlong subtype, SPART *iriref, SPART **options)
{
rdf_grab_config_t *rgc_ptr = &(sparp->sparp_env->spare_src.ssrc_grab);
dk_set_t *opts_ptr = &(sparp->sparp_env->spare_src.ssrc_common_sponge_options);
SPART **mixed_options, **mixed_tail;
int common_count, ctr;
user_t *exec_user;
if (NULL != rgc_ptr->rgc_sa_preds)
{
t_set_push_new_string (&(rgc_ptr->rgc_sa_graphs),
((DV_ARRAY_OF_POINTER == DV_TYPE_OF (iriref)) ? iriref->_.lit.val : (caddr_t)iriref) );
}
if ((NULL == options) && (0 > dk_set_position_of_string (opts_ptr[0], "get:soft")))
return spartlist (sparp, 4, SPAR_GRAPH, subtype, iriref->_.qname.val, iriref);
common_count = dk_set_length (opts_ptr[0]);
mixed_tail = mixed_options = (SPART **)t_alloc_box ((common_count + 2 + BOX_ELEMENTS_0 (options)) * sizeof (SPART *), DV_ARRAY_OF_POINTER);
DO_SET (SPART *, val, opts_ptr)
{
(mixed_tail++)[0] = (SPART *)t_full_box_copy_tree ((caddr_t)(val));
}
END_DO_SET()
for (ctr = BOX_ELEMENTS_0 (options) - 2; 0 <= ctr; ctr -= 2)
{
ccaddr_t param = (ccaddr_t)(options[ctr]);
const char **chk;
for (chk = sparp_known_get_params; (NULL != chk[0]) && strcmp (chk[0], param); chk++) ;
if (NULL == chk[0])
spar_error (sparp, "Unsupported parameter '%.30s' in FROM ... (OPTION ...)", param);
if (NULL != dk_set_getptr_keyword (opts_ptr[0], param))
spar_error (sparp, "FROM ... (OPTION ... %s ...) conflicts with 'DEFINE %s ...", param, param);
(mixed_tail++)[0] = (SPART *)t_full_box_copy_tree ((caddr_t)(param));
(mixed_tail++)[0] = (SPART *)t_full_box_copy_tree ((caddr_t)(options[ctr + 1]));
}
if (!IS_BOX_POINTER (sparp->sparp_env->spare_sql_refresh_free_text))
sparp->sparp_env->spare_sql_refresh_free_text = t_box_num_and_zero (0);
(mixed_tail++)[0] = (SPART *) t_box_dv_short_string ("refresh_free_text");
(mixed_tail++)[0] = (SPART *) sparp->sparp_env->spare_sql_refresh_free_text;
exec_user = sparp->sparp_sparqre->sparqre_exec_user;
return spartlist (sparp, 4, SPAR_GRAPH, subtype, iriref->_.qname.val,
spar_make_funcall (sparp, 0, "SPECIAL::bif:iri_to_id",
(SPART **)t_list (1,
spar_make_funcall (sparp, 0, "sql:RDF_SPONGE_UP",
(SPART **)t_list (3,
iriref,
spar_make_funcall (sparp, 0, "bif:vector", mixed_options),
((NULL != exec_user) ? exec_user->usr_id : U_ID_NOBODY) ) ) ) ) );
}
SPART *
spar_default_sparul_target (sparp_t *sparp, const char *clause_type, int may_return_null)
{
dk_set_t dflt_graphs = sparp->sparp_env->spare_src.ssrc_default_graphs;
SPART *u_graph = sparp->sparp_env->spare_src.ssrc_graph_set_by_with;
if (NULL != u_graph)
{
if (sparp->sparp_env->spare_src.ssrc_default_graphs_locked)
spar_error (sparp, "USING clause is used but default graph is locked in the preamble");
return sparp_tree_full_copy (sparp, (SPART *)(u_graph), NULL);
}
if ((NULL == dflt_graphs) || (((SPART *)(dflt_graphs->data))->_.graph.subtype > SPART_GRAPH_MIN_NEGATION))
{
if (may_return_null)
return NULL;
spar_error (sparp, "No %.200s and no default graph specified in the preamble", clause_type);
}
if ((NULL != dflt_graphs->next) && (((SPART *)(dflt_graphs->next->data))->_.graph.subtype < SPART_GRAPH_MIN_NEGATION))
{
if (may_return_null)
return NULL;
spar_error (sparp, "No %.200s and more than one default graph specified in the preamble", clause_type);
}
if (SPART_GRAPH_GROUP == ((SPART *)(dflt_graphs->data))->_.graph.subtype)
spar_error (sparp, "No %.200s and the IRI in preamble refers to default graph group, not a single default graph", clause_type);
return sparp_tree_full_copy (sparp, (SPART *)(dflt_graphs->data), NULL);
}
SPART *
spar_make_regex_or_like_or_eq (sparp_t *sparp, SPART *strg, SPART *regexpn)
{
caddr_t val, like_tmpl;
char *tail;
int ctr, val_len, final_len, start_is_fixed, end_is_fixed;
if (SPAR_LIT != SPART_TYPE (regexpn))
goto bad_regex; /* see below */
val = SPAR_LIT_VAL (regexpn);
if (DV_STRING != DV_TYPE_OF (val))
goto bad_regex; /* see below */
val_len = box_length (val)-1;
final_len = val_len + 2;
start_is_fixed = 0;
end_is_fixed = 0;
if ('^' == val[0])
{
final_len -= 2;
start_is_fixed = 1;
}
for (ctr = start_is_fixed; ctr < val_len; ctr++)
{
if (NULL == strchr ("%_.+*?\\[($", val[ctr]))
continue;
if (('$' == val[ctr]) && (ctr == val_len-1) && ((0 == ctr) || ('\\' != val[ctr-1])))
{
final_len -= 2;
end_is_fixed = 1;
break;
}
goto bad_regex; /* see below */
}
if (start_is_fixed && end_is_fixed)
return spartlist (sparp, 3, BOP_EQ, strg,
spartlist (sparp, 4, SPAR_LIT, t_box_dv_short_nchars (val+1, final_len), NULL, NULL) );
like_tmpl = t_alloc_box (final_len + 1, DV_STRING);
tail = like_tmpl;
if (!start_is_fixed)
(tail++)[0] = '%';
memcpy (tail, val + start_is_fixed, val_len - (start_is_fixed + end_is_fixed));
tail += val_len - (start_is_fixed + end_is_fixed);
if (!end_is_fixed)
(tail++)[0] = '%';
tail[0] = '\0';
/*#ifndef NDEBUG*/
if (tail != like_tmpl + final_len)
GPF_T1 ("spar_" "make_regex_or_like_or_eq (): pointer arithmetic error on like_tmpl");
/*#endif*/
return sparp_make_builtin_call (sparp, LIKE_L,
(SPART **)t_list (2, strg,
spartlist (sparp, 4, SPAR_LIT, like_tmpl, NULL, NULL) ) );
bad_regex:
return sparp_make_builtin_call (sparp, SPAR_BIF_REGEX, (SPART **)t_list (2, strg, regexpn));
}
void
spar_verify_funcall_security (sparp_t *sparp, ccaddr_t fname, SPART **args)
{
int uid, need_check_for_infection_chars = 0;
const char *tail;
const char *c;
char buf[30];
const char *unsafe_sql_names[] = {
"RDF_INSERT_TRIPLES",
"RDF_INSERT_TRIPLES",
"RDF_DELETE_TRIPLES",
"RDF_GLOBAL_RESET",
"RDF_GRAPH_GROUP_LIST_GET",
"RDF_LOAD_RDFXML",
"RDF_LOAD_RDFXML_MT",
"RDF_MODIFY_TRIPLES",
"RDF_REPL_DELETE_TRIPLES",
"RDF_REPL_GRAPH_DEL",
"RDF_REPL_GRAPH_INS",
"RDF_REPL_INSERT_TRIPLES",
"RDF_REPL_START",
"RDF_REPL_STOP",
"RDF_REPL_SYNC",
"RDF_SPONGE_UP",
"SPARQL_INSERT_DICT_CONTENT",
"SPARQL_INSERT_QUAD_DICT_CONTENT",
"SPARQL_DELETE_DICT_CONTENT",
"SPARQL_DELETE_QUAD_DICT_CONTENT",
"SPARQL_DESC_AGG",
"SPARQL_DESC_AGG_ACC",
"SPARQL_DESC_AGG_INIT",
"SPARQL_DESC_AGG_FIN",
"SPARQL_DESC_DICT",
"SPARQL_DESC_DICT_CBD",
"SPARQL_DESC_DICT_CBD_PHYSICAL",
"SPARQL_DESC_DICT_SPO",
"SPARQL_DESC_DICT_SPO_PHYSICAL",
"SPARQL_MODIFY_BY_DICT_CONTENTS",
"SPARQL_MODIFY_BY_QUAD_DICT_CONTENTS",
"SPARQL_SELECT_KNOWN_GRAPHS",
"SPARUL_ADD",
"SPARUL_CLEAR",
"SPARUL_COPY",
"SPARUL_CREATE",
"SPARUL_DROP",
"SPARUL_LOAD",
"SPARUL_MOVE",
"SPARUL_RUN",
"TTLP",
"TTLP_EV_GET_IID",
"TTLP_EV_NEW_BLANK",
"TTLP_EV_NEW_GRAPH",
"TTLP_EV_NEW_GRAPH_A",
"TTLP_EV_TRIPLE",
"TTLP_EV_TRIPLE_A",
"TTLP_EV_TRIPLE_W",
"TTLP_EV_TRIPLE_L",
"TTLP_EV_TRIPLE_L_A",
"TTLP_EV_TRIPLE_L_W",
"TTLP_MT",
"TTLP_MT_LOCAL_FILE" };
const char *unsafe_bif_names[] = {
"CONNECTION_SET",
"FILE_TO_STRING",
"FILE_TO_STRING_OUTPUT",
"EXEC",
"REGISTRY_SET",
"REGISTRY_SET_ALL",
"STRING_TO_FILE",
"SYSTEM" };
tail = strstr (fname, "::");
if (NULL == tail)
tail = fname;
else
tail += 2;
if (NULL == sparp->sparp_boxed_exec_uid)
spar_boxed_exec_uid (sparp);
uid = unbox (sparp->sparp_boxed_exec_uid);
if (U_ID_DBA != uid)
{
strncpy (buf, tail+4, sizeof(buf)-1);
buf[sizeof(buf)-1] = '\0';
strupr (buf);
}
if (!strncmp (tail, "sql:", 4))
{
if ((U_ID_DBA != uid) && (ECM_MEM_NOT_FOUND != ecm_find_name (buf, unsafe_sql_names,
sizeof (unsafe_sql_names)/sizeof(unsafe_sql_names[0]), sizeof (caddr_t) ) ) )
goto restricted; /* see below */
need_check_for_infection_chars = 1;
}
else
if (!strncmp (tail, "bif:", 4))
{
if ((U_ID_DBA != uid) && (ECM_MEM_NOT_FOUND != ecm_find_name (buf, unsafe_sql_names,
sizeof (unsafe_sql_names)/sizeof(unsafe_sql_names[0]), sizeof (caddr_t) ) ) )
goto restricted; /* see below */
if ((U_ID_DBA != uid) && (ECM_MEM_NOT_FOUND != ecm_find_name (buf, unsafe_bif_names,
sizeof (unsafe_bif_names)/sizeof(unsafe_bif_names[0]), sizeof (caddr_t) ) ) )
goto restricted; /* see below */
need_check_for_infection_chars = 1;
}
if (need_check_for_infection_chars)
for (c = tail+4; '\0' != c[0]; c++)
if (strchr ("\'\"\\()., +-/*|\t\n\r", c[0]))
spar_error (sparp, "Function name \"%.200s\" contains invalid characters; this may be an attempt of bypassing security restrictions", fname);
return;
restricted:
spar_error (sparp, "Function %.200s() can not be used in text of SPARQL query due to security restrictions", fname);
}
caddr_t
spar_colonize_qname_uname (const char *strg)
{
const char *tail, *strg_end = strg + strlen (strg);
for (tail = strg_end; tail > strg; tail--)
if (!isplainURIchar (tail[-1]))
{
caddr_t res;
BOX_DV_UNAME_COLONCONCAT5(res, strg, tail-strg, tail, strg_end-tail);
return res;
}
return box_dv_uname_string (strg);
}
SPART *
spar_make_funcall (sparp_t *sparp, int aggregate_mode, const char *funname, SPART **args)
{
const char *sql_colon;
caddr_t proc_full_name;
query_t *proc;
if (NULL == args)
args = (SPART **)t_list (0);
if (0 != aggregate_mode)
goto aggr_checked; /* see below */
sql_colon = strstr (funname, "sql:");
if (NULL == sql_colon)
goto aggr_checked; /* see below */
if ((funname != sql_colon) && ((funname >= (sql_colon-2)) || (':' != sql_colon[-1]) || (':' != sql_colon[-2])))
goto aggr_checked; /* see below */
proc_full_name = t_box_sprintf (MAX_NAME_LEN + 10, "DB.DBA.%s", sql_colon+4);
if (CM_UPPER == case_mode)
sqlp_upcase (proc_full_name);
proc = sch_proc_def (isp_schema (sparp->sparp_sparqre->sparqre_qi->qi_space), proc_full_name);
if ((NULL == proc) || (NULL == proc->qr_aggregate))
goto aggr_checked; /* see below */
aggregate_mode = 1;
if (sparp->sparp_in_precode_expn)
spar_error (sparp, "Aggregate function %.100s() is not allowed in 'precode' expressions that should be calculated before the result-set of the query", funname);
if (!(sparp->sparp_allow_aggregates_in_expn & 1))
spar_error (sparp, "Aggregate function %.100s() is not allowed outside result-set expressions", funname);
aggr_checked:
if (!strncmp (funname, "bif:", 4))
{
caddr_t bifname = t_sqlp_box_id_upcase (funname+4);
bif_t descr = bif_find (bifname);
if (NULL == descr)
spar_error (sparp, "Unknown function %.100s()", funname);
}
else
{
xpf_metadata_t *metas = NULL;
caddr_t colonized_funname = spar_colonize_qname_uname (funname);
xpf_metadata_t ** metas_ptr = (xpf_metadata_t **)id_hash_get (xpf_metas, (caddr_t)(&colonized_funname));
int param_count;
if (NULL == metas_ptr)
{
dk_free_box (colonized_funname);
goto xpf_checked; /* see below */
}
param_count = BOX_ELEMENTS (args);
metas = metas_ptr[0];
if (metas->xpfm_min_arg_no > param_count)
spar_error (sparp, "The XPATH function %.200s() requires %d arguments but the call contains only %d",
funname, (int)(metas->xpfm_min_arg_no), param_count );
if (metas->xpfm_main_arg_no < param_count)
{
if (0 == metas->xpfm_tail_arg_no)
spar_error (sparp, "The XPATH function %.200s() can handle only %d arguments but the call provides %d",
funname, (int)(metas->xpfm_main_arg_no), param_count );
else
{
int tail_mod = (param_count - metas->xpfm_main_arg_no) % metas->xpfm_tail_arg_no;
if (tail_mod)
spar_error (sparp, "The XPATH function %.200s() can handle %d, %d, %d etc. arguments but the call provides %d",
funname, (int)(metas->xpfm_main_arg_no), (int)(metas->xpfm_main_arg_no + metas->xpfm_tail_arg_no), (int)(metas->xpfm_main_arg_no + 2 * metas->xpfm_tail_arg_no),
param_count );
}
}
return spartlist (sparp, 4, SPAR_FUNCALL, t_box_sprintf (100, "xpath:%.90s", colonized_funname), args, (ptrlong) 0);
}
xpf_checked:
if (aggregate_mode)
{
if (SPARP_DEFBODY & sparp->sparp_macro_mode)
sparp->sparp_current_macro->_.defmacro.aggregate_count++;
else
sparp->sparp_query_uses_aggregates++;
}
return spartlist (sparp, 4, SPAR_FUNCALL, t_box_dv_short_string (funname), args, (ptrlong)aggregate_mode);
}
const sparp_bif_desc_t sparp_bif_descs[] = {
/* sbd_name | sbd_subtype , impl | sbd_required_syntax | min-/maxargs | ret_valmode | sbd_arg_valmodes | sbd_result_restr_bits */
{ "" , 0 , '-' , 0 , 0 , 0 , NULL , { SSG_VALMODE_SQLVAL, NULL, NULL} , 0 },
{ "abs" , SPAR_BIF_ABS , 'B' , SSG_SD_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_NUM , { SSG_VALMODE_NUM, NULL, NULL} , 0 },
{ "bnode" , SPAR_BIF_BNODE , '-' , SSG_SD_SPARQL11_DRAFT , 0 , 1 , SSG_VALMODE_LONG , { SSG_VALMODE_SQLVAL, NULL, NULL} , SPART_VARR_IS_BLANK | SPART_VARR_IS_REF },
{ "bound" , BOUND_L , '-' , 0 , 1 , 1 , SSG_VALMODE_BOOL , { SSG_VALMODE_SQLVAL, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "ceil" , SPAR_BIF_CEIL , 'B' , SSG_SD_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_NUM , { SSG_VALMODE_NUM, NULL, NULL} , 0 },
{ "coalesce" , SPAR_BIF_COALESCE , '-' , SSG_SD_SPARQL11_DRAFT , 0 , 0xFFF , NULL , { SSG_VALMODE_SQLVAL, NULL, NULL} , 0 },
{ "concat" , SPAR_BIF_CONCAT , 'B' , SSG_SD_SPARQL11_DRAFT , 0 , 0xFFF , NULL , { SSG_VALMODE_SQLVAL, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL },
{ "contains" , SPAR_BIF_CONTAINS , 'B' , SSG_SD_SPARQL11_DRAFT , 2 , 2 , SSG_VALMODE_BOOL , { SSG_VALMODE_LONG, SSG_VALMODE_LONG, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "datatype" , DATATYPE_L , '-' , 0 , 1 , 1 , SSG_VALMODE_LONG , { SSG_VALMODE_LONG, NULL, NULL} , SPART_VARR_IS_IRI | SPART_VARR_IS_REF },
{ "day" , SPAR_BIF_DAY , 'B' , SSG_SD_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_NUM , { SSG_VALMODE_NUM, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "encode_for_uri" , SPAR_BIF_ENCODE_FOR_URI , 'B' , SSG_SD_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_SQLVAL , { SSG_VALMODE_SQLVAL, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL },
{ "floor" , SPAR_BIF_FLOOR , 'B' , SSG_SD_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_NUM , { SSG_VALMODE_NUM, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "hours" , SPAR_BIF_HOURS , 'B' , SSG_SD_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_NUM , { SSG_VALMODE_NUM, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "if" , SPAR_BIF_IF , '-' , SSG_SD_SPARQL11_DRAFT , 3 , 3 , NULL , { SSG_VALMODE_BOOL, NULL, NULL} , 0 },
{ "in operator" , IN_L , '-' , 0 , 1 , 0xFFF , SSG_VALMODE_BOOL , { SSG_VALMODE_SQLVAL, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "iri" , IRI_L , '-' , SSG_SD_BI_OR_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_LONG , { SSG_VALMODE_SQLVAL, NULL, NULL} , SPART_VARR_IS_IRI | SPART_VARR_IS_REF | SPART_VARR_NOT_NULL },
{ "isblank" , SPAR_BIF_ISBLANK , '-' , 0 , 1 , 1 , SSG_VALMODE_BOOL , { SSG_VALMODE_SQLVAL, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "isiri" , SPAR_BIF_ISIRI , '-' , 0 , 1 , 1 , SSG_VALMODE_BOOL , { SSG_VALMODE_SQLVAL, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "isliteral" , SPAR_BIF_ISLITERAL , '-' , 0 , 1 , 1 , SSG_VALMODE_BOOL , { SSG_VALMODE_SQLVAL, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "isnumeric" , SPAR_BIF_ISNUMERIC , '-' , SSG_SD_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_BOOL , { SSG_VALMODE_NUM, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "isref" , SPAR_BIF_ISREF , '-' , SSG_SD_BI , 1 , 1 , SSG_VALMODE_BOOL , { SSG_VALMODE_SQLVAL, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "isuri" , SPAR_BIF_ISURI , '-' , 0 , 1 , 1 , SSG_VALMODE_BOOL , { SSG_VALMODE_SQLVAL, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "lang" , LANG_L , '-' , 0 , 1 , 1 , SSG_VALMODE_SQLVAL , { SSG_VALMODE_LONG, NULL, NULL} , SPART_VARR_IS_LIT },
{ "langmatches" , SPAR_BIF_LANGMATCHES , '-' , 0 , 2 , 2 , SSG_VALMODE_BOOL , { SSG_VALMODE_LONG, SSG_VALMODE_SQLVAL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "like operator" , LIKE_L , '-' , 0 , 2 , 2 , SSG_VALMODE_BOOL , { SSG_VALMODE_SQLVAL, SSG_VALMODE_SQLVAL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "lcase" , SPAR_BIF_LCASE , 'B' , SSG_SD_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_LONG , { SSG_VALMODE_LONG, NULL, NULL} , SPART_VARR_IS_LIT },
{ "md5" , SPAR_BIF_MD5 , 'B' , SSG_SD_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_SQLVAL , { SSG_VALMODE_SQLVAL, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL },
{ "minutes" , SPAR_BIF_MINUTES , 'B' , SSG_SD_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_NUM , { SSG_VALMODE_NUM, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "month" , SPAR_BIF_MONTH , 'B' , SSG_SD_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_NUM , { SSG_VALMODE_NUM, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "now" , SPAR_BIF_NOW , 'B' , SSG_SD_SPARQL11_DRAFT , 0 , 0 , SSG_VALMODE_NUM , { SSG_VALMODE_SQLVAL, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "rand" , SPAR_BIF_RAND , 'B' , SSG_SD_SPARQL11_DRAFT , 0 , 1 , SSG_VALMODE_NUM , { SSG_VALMODE_SQLVAL, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "regex" , SPAR_BIF_REGEX , 'B' , 0 , 2 , 3 , SSG_VALMODE_BOOL , { SSG_VALMODE_SQLVAL, SSG_VALMODE_SQLVAL, SSG_VALMODE_SQLVAL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "replace" , SPAR_BIF_REPLACE , 'S' , SSG_SD_SPARQL11_DRAFT , 3 , 4 , SSG_VALMODE_LONG , { SSG_VALMODE_LONG, SSG_VALMODE_SQLVAL, SSG_VALMODE_SQLVAL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL },
{ "round" , SPAR_BIF_ROUND , 'B' , SSG_SD_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_NUM , { SSG_VALMODE_NUM, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "sameterm" , SPAR_BIF_SAMETERM , '-' , 0 , 2 , 2 , SSG_VALMODE_BOOL , { SSG_VALMODE_LONG, SSG_VALMODE_LONG, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "seconds" , SPAR_BIF_SECONDS , 'B' , SSG_SD_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_NUM , { SSG_VALMODE_NUM, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "sha1" , SPAR_BIF_SHA1 , 'B' , SSG_SD_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_SQLVAL , { SSG_VALMODE_SQLVAL, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL },
{ "sha224" , SPAR_BIF_SHA224 , 'B' , SSG_SD_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_SQLVAL , { SSG_VALMODE_SQLVAL, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL },
{ "sha256" , SPAR_BIF_SHA256 , 'B' , SSG_SD_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_SQLVAL , { SSG_VALMODE_SQLVAL, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL },
{ "sha384" , SPAR_BIF_SHA384 , 'B' , SSG_SD_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_SQLVAL , { SSG_VALMODE_SQLVAL, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL },
{ "sha512" , SPAR_BIF_SHA512 , 'B' , SSG_SD_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_SQLVAL , { SSG_VALMODE_SQLVAL, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL },
{ "str" , SPAR_BIF_STR , '-' , 0 , 1 , 1 , SSG_VALMODE_SQLVAL , { SSG_VALMODE_SQLVAL, NULL, NULL} , SPART_VARR_IS_LIT },
{ "strdt" , SPAR_BIF_STRDT , 'S' , SSG_SD_SPARQL11_DRAFT , 2 , 2 , SSG_VALMODE_LONG , { SSG_VALMODE_SQLVAL, NULL, NULL} , SPART_VARR_IS_LIT },
{ "strends" , SPAR_BIF_STRENDS , 'B' , SSG_SD_SPARQL11_DRAFT , 2 , 2 , SSG_VALMODE_BOOL , { SSG_VALMODE_LONG, SSG_VALMODE_LONG, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "strlang" , SPAR_BIF_STRLANG , 'S' , SSG_SD_SPARQL11_DRAFT , 2 , 2 , SSG_VALMODE_LONG , { SSG_VALMODE_SQLVAL, NULL, NULL} , SPART_VARR_IS_LIT },
{ "strlen" , SPAR_BIF_STRLEN , 'B' , SSG_SD_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_NUM , { SSG_VALMODE_SQLVAL, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "strstarts" , SPAR_BIF_STRSTARTS , 'B' , SSG_SD_SPARQL11_DRAFT , 2 , 2 , SSG_VALMODE_BOOL , { SSG_VALMODE_LONG, SSG_VALMODE_LONG, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "substr" , SPAR_BIF_SUBSTR , 'B' , SSG_SD_SPARQL11_DRAFT , 2 , 3 , SSG_VALMODE_SQLVAL , { SSG_VALMODE_LONG, SSG_VALMODE_NUM, SSG_VALMODE_NUM} , SPART_VARR_IS_LIT },
{ "timezone" , SPAR_BIF_TIMEZONE , 'S' , SSG_SD_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_NUM , { SSG_VALMODE_NUM, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "tz" , SPAR_BIF_TZ , 'S' , SSG_SD_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_SQLVAL , { SSG_VALMODE_NUM, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
{ "ucase" , SPAR_BIF_UCASE , 'B' , SSG_SD_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_LONG , { SSG_VALMODE_LONG, NULL, NULL} , SPART_VARR_IS_LIT },
{ "uri" , SPAR_BIF_URI , '-' , SSG_SD_BI_OR_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_LONG , { SSG_VALMODE_SQLVAL, NULL, NULL} , SPART_VARR_IS_IRI | SPART_VARR_IS_REF },
{ "year" , SPAR_BIF_YEAR , 'B' , SSG_SD_SPARQL11_DRAFT , 1 , 1 , SSG_VALMODE_NUM , { SSG_VALMODE_NUM, NULL, NULL} , SPART_VARR_IS_LIT | SPART_VARR_NOT_NULL | SPART_VARR_LONG_EQ_SQL },
};
SPART *
sparp_make_builtin_call (sparp_t *sparp, ptrlong bif_id, SPART **arguments)
{
ptrlong ofs;
for (ofs = sizeof (sparp_bif_descs)/sizeof (sparp_bif_descs[0]); ofs--; /* no step */)
{
const sparp_bif_desc_t *sbd = sparp_bif_descs + ofs;
int argcount;
if (sbd->sbd_subtype != bif_id)
continue;
argcount = BOX_ELEMENTS_0 (arguments);
if (argcount < sbd->sbd_minargs)
sparyyerror_impl (sparp, NULL, t_box_sprintf (100, "Insufficient number of arguments of a standard built-in function %s()", sbd->sbd_name));
if (argcount > sbd->sbd_maxargs)
sparyyerror_impl (sparp, NULL, t_box_sprintf (100, "Too many arguments of a standard built-in function %s()", sbd->sbd_name));
goto ofs_found; /* see below */
}
spar_internal_error (sparp, "sparp" "_make_builtin_call(): bad bif_id");
ofs_found:
return spartlist (sparp, 4, SPAR_BUILT_IN_CALL, bif_id, ofs, arguments);
}
SPART *
sparp_make_macro_call (sparp_t *sparp, caddr_t mname, int call_is_explicit, SPART **args)
{
SPART *mdecl = spar_find_defmacro_by_iri_or_fields (sparp, mname, NULL);
SPART *g_ctx, *res;
dk_set_t g_ctxs;
int argcount, paramcount;
if (NULL == mdecl)
spar_internal_error (sparp, "sparp_" "make_macro_call(): undefined macro");
paramcount = BOX_ELEMENTS (mdecl->_.defmacro.paramnames);
argcount = BOX_ELEMENTS_0 (args);
if (paramcount != argcount)
spar_error (sparp, "The macro <%.200s> is used with %d arguments, %d expected", mname, argcount, paramcount);
g_ctxs = sparp->sparp_env->spare_context_graphs;
g_ctx = ((NULL != g_ctxs) ? (SPART *)t_full_box_copy_tree ((caddr_t)(g_ctxs->data)) : NULL);
res = spartlist (sparp, 5, SPAR_MACROCALL, t_box_dv_short_string (mname), args, g_ctx, spar_mkid (sparp, "m"));
return res;
}
int
sparp_namesake_macro_param (sparp_t *sparp, SPART *dm, caddr_t param_name)
{
int ctr;
if (NULL == dm)
{
dm = sparp->sparp_current_macro;
if (NULL == dm)
return -3;
}
DO_BOX_FAST_REV (caddr_t, name, ctr, dm->_.defmacro.paramnames)
{
if (!strcmp (name, param_name))
return ctr;
}
END_DO_BOX_FAST;
DO_BOX_FAST_REV (caddr_t, name, ctr, dm->_.defmacro.localnames)
{
if (!strcmp (name, param_name))
return -1;
}
END_DO_BOX_FAST;
return -2;
}
SPART *
spar_make_create_macro_lib (sparp_t *sparp)
{
SPART *fake_sol;
SPART *call, *top;
spar_selid_push (sparp);
fake_sol = spar_make_fake_action_solution (sparp);
call = spar_make_funcall (sparp, 0, t_box_dv_short_string ("sql:RDF_SML_CREATE"),
(SPART **)t_list (2, sparp->sparp_macrolib_to_create, t_box_dv_short_string (sparp->sparp_text)) );
top = spar_make_top_or_special_case_from_wm (sparp, SPAR_SML_CREATE,
(SPART **)t_list (1, call),
spar_selid_pop (sparp), fake_sol );
return top;
}
SPART *
spar_make_drop_macro_lib (sparp_t *sparp, SPART *sml_precode, int silent)
{
SPART *fake_sol;
SPART *call, *top;
spar_selid_push (sparp);
fake_sol = spar_make_fake_action_solution (sparp);
call = spar_make_funcall (sparp, 0, t_box_dv_short_string ("sql:RDF_SML_DROP"),
(SPART **)t_list (2, sml_precode, t_box_num_nonull (silent)) );
top = spar_make_top_or_special_case_from_wm (sparp, SPAR_SML_DROP,
(SPART **)t_list (1, call),
spar_selid_pop (sparp), fake_sol );
return top;
}
SPART *
spar_make_sparul_mdw (sparp_t *sparp, ptrlong subtype, const char *opname, SPART *graph_precode, SPART *aux_op, int silent)
{
SPART *fake_sol;
SPART *call, *top, **options = NULL, *options_vector_call;
caddr_t log_mode = sparp->sparp_env->spare_sparul_log_mode;
spar_selid_push (sparp);
fake_sol = spar_make_fake_action_solution (sparp);
if (NULL == log_mode)
log_mode = t_NEW_DB_NULL;
if (LOAD_L == subtype)
{
dk_set_t *opts_ptr = &(sparp->sparp_env->spare_src.ssrc_common_sponge_options);
options = (SPART **)t_full_box_copy_tree ((caddr_t)(t_list_to_array (opts_ptr[0])));
if (NULL != dk_set_getptr_keyword (opts_ptr[0], "get:destination"))
spar_error (sparp, "DEFINE get:destination ... is not applicable for SPARUL LOAD statement, use LOAD ... INTO ... form instead");
if (NULL != dk_set_getptr_keyword (opts_ptr[0], "get:uri"))
spar_error (sparp, "DEFINE get:uri ... is not applicable for SPARUL LOAD statement, use LOAD ... INTO ... form instead");
}
if (NULL == options)
options_vector_call = (SPART *)t_NEW_DB_NULL;
else
options_vector_call = spar_make_funcall (sparp, 0, "bif:vector", options);
if (NULL != sparp->sparp_env->spare_output_route_name)
call = spar_make_funcall (sparp, 0,
t_box_sprintf (200, "sql:SPARQL_ROUTE_MDW_%.100s", sparp->sparp_env->spare_output_route_name),
(SPART **)t_list (13, graph_precode,
t_box_dv_short_string (opname),
((NULL == sparp->sparp_env->spare_storage_name) ? t_NEW_DB_NULL : sparp->sparp_env->spare_storage_name),
((NULL == sparp->sparp_env->spare_output_storage_name) ? t_NEW_DB_NULL : sparp->sparp_env->spare_output_storage_name),
((NULL == sparp->sparp_env->spare_output_format_name) ? t_NEW_DB_NULL : sparp->sparp_env->spare_output_format_name),
aux_op,
t_NEW_DB_NULL,
t_NEW_DB_NULL,
spar_exec_uid_and_gs_cbk (sparp), log_mode, spar_compose_report_flag (sparp), options_vector_call,
(SPART *)t_box_num_nonull (silent) ) );
else
call = spar_make_funcall (sparp, 0, t_box_sprintf (30, "sql:SPARUL_%.30s", opname),
(SPART **)t_list (7, graph_precode, aux_op,
spar_exec_uid_and_gs_cbk (sparp), log_mode, spar_compose_report_flag (sparp), options_vector_call,
(SPART *)t_box_num_nonull (silent) ) );
top = spar_make_top_or_special_case_from_wm (sparp, subtype,
(SPART **)t_list (1, call),
spar_selid_pop (sparp), fake_sol );
return top;
}
SPART *spar_make_graph_precode_for_clear (sparp_t *sparp, SPART *graph_precode, const char *opname)
{
int clear_default = 0;
int clear_named = 0;
dk_set_t graphs = NULL;
switch ((ptrlong)graph_precode)
{
case DEFAULT_L: clear_default = 1; break;
case NAMED_L: clear_named = 1; break;
case ALL_L: clear_default = clear_named = 1; break;
default: return graph_precode;
}
if (clear_default)
{
DO_SET (SPART *, src, &(sparp->sparp_env->spare_src.ssrc_default_graphs))
{
if (SPART_GRAPH_FROM != src->_.graph.subtype)
spar_error (sparp, "Graph groups, NOT FROM and its equivalents are not supported for SPARQL %.200s DEFAULT and SPARQL %.200s ALL", opname, opname);
t_set_push (&graphs, spar_simplify_graph_to_patch (sparp, src));
}
END_DO_SET ();
}
if (clear_named)
{
DO_SET (SPART *, src, &(sparp->sparp_env->spare_src.ssrc_named_graphs))
{
if (SPART_GRAPH_NAMED != src->_.graph.subtype)
spar_error (sparp, "Graph groups, NOT FROM NAMED and its equivalents are not supported for SPARQL %.200s NAMED and SPARQL %.200s ALL", opname, opname);
t_set_push (&graphs, spar_simplify_graph_to_patch (sparp, src));
}
END_DO_SET ();
}
return spar_make_funcall (sparp, 0, "bif:vector", (SPART **)t_revlist_to_array (graphs));
}
SPART *
spar_make_sparul_clear (sparp_t *sparp, SPART *graph_precode, int silent)
{
SPART *graph_arg = spar_make_graph_precode_for_clear (sparp, graph_precode, "CLEAR");
return spar_make_sparul_mdw (sparp, CLEAR_L, "CLEAR", graph_arg, (SPART *)t_box_num_nonull (0) /* i.e. not inside sponge */, silent);
}
SPART *
spar_make_sparul_load (sparp_t *sparp, SPART *graph_precode, SPART *src_precode, int silent)
{
return spar_make_sparul_mdw (sparp, LOAD_L, "LOAD", graph_precode, src_precode, silent);
}
SPART *
spar_make_sparul_load_service_data (sparp_t *sparp, SPART *proxy_iri_precode, SPART *service_iri_precode, int silent)
{
return spar_make_sparul_mdw (sparp, LOAD_L, "LOAD_SERVICE_DATA", proxy_iri_precode, service_iri_precode, silent);
}
SPART *
spar_make_sparul_create (sparp_t *sparp, SPART *graph_precode, int silent)
{
return spar_make_sparul_mdw (sparp, CREATE_L, "CREATE", graph_precode, NULL, silent);
}
SPART *
spar_make_sparul_drop (sparp_t *sparp, SPART *graph_precode, int silent)
{
SPART *graph_arg = spar_make_graph_precode_for_clear (sparp, graph_precode, "DROP");
return spar_make_sparul_mdw (sparp, DROP_L, "DROP", graph_arg, NULL, silent);
}
SPART *
spar_make_sparul_copymoveadd (sparp_t *sparp, ptrlong opcode, SPART *from_graph_precode, SPART *to_graph_precode, int silent)
{
const char *opname = NULL;
switch (opcode)
{
case COPY_L: opname = "COPY"; break;
case MOVE_L: opname = "MOVE"; break;
case ADD_L: opname = "ADD"; break;
default: GPF_T;
}
if ((DEFAULT_L == (ptrlong)(from_graph_precode)) || (DEFAULT_L == (ptrlong)(to_graph_precode)))
{
SPART *single_default;
dk_set_t graphs = sparp->sparp_env->spare_src.ssrc_default_graphs;
if ((NULL == graphs) || (SPART_GRAPH_FROM != ((SPART *)(graphs->data))->_.graph.subtype))
spar_error (sparp, "SPARQL 1.1 %s...DEFAULT operator requires declaration of a plain default graph", opname);
if ((NULL != graphs->next) && (SPART_GRAPH_MIN_NEGATION <= ((SPART *)(graphs->next->data))->_.graph.subtype))
spar_error (sparp, "SPARQL 1.1 %s...DEFAULT operator requires exactly one default graph", opname);
single_default = spar_simplify_graph_to_patch (sparp, (SPART *)(graphs->data));
if (DEFAULT_L == (ptrlong)(from_graph_precode))
from_graph_precode = single_default;
if (DEFAULT_L == (ptrlong)(to_graph_precode))
to_graph_precode = single_default;
}
return spar_make_sparul_mdw (sparp, DROP_L, opname, from_graph_precode, to_graph_precode, silent);
}
SPART *
spar_make_topmost_sparul_sql (sparp_t *sparp, SPART **actions)
{
caddr_t saved_format_name = sparp->sparp_env->spare_output_format_name;
caddr_t saved_valmode_name = sparp->sparp_env->spare_output_valmode_name;
SPART *fake_sol;
SPART *top;
SPART **action_sqls;
caddr_t volatile err = NULL;
int action_ctr, action_count = BOX_ELEMENTS (actions);
if ((1 == action_count) && unbox (spar_compose_report_flag (sparp)))
return actions[0]; /* No need to make grouping around single action. */
/* First of all, every tree for every action is compiled into string literal containing SQL text. */
action_sqls = (SPART **)t_alloc_box (action_count * sizeof (SPART *), DV_ARRAY_OF_POINTER);
sparp->sparp_env->spare_output_format_name = NULL;
sparp->sparp_env->spare_output_valmode_name = NULL;
if (NULL != sparp->sparp_expr)
spar_internal_error (sparp, "spar_" "make_topmost_sparul_sql() is called after start of some tree rewrite");
DO_BOX_FAST (SPART *, action, action_ctr, actions)
{
spar_sqlgen_t ssg;
sql_comp_t sc;
caddr_t action_sql;
sparp->sparp_expr = action;
sparp_rewrite_all (sparp, 0 /* no cloning -- no need in safely_copy_retvals */);
#ifndef NDEBUG
t_check_tree (sparp->sparp_expr);
#endif
memset (&ssg, 0, sizeof (spar_sqlgen_t));
memset (&sc, 0, sizeof (sql_comp_t));
if (CALLER_LOCAL != sparp->sparp_sparqre->sparqre_qi)
sc.sc_client = sparp->sparp_sparqre->sparqre_qi->qi_client;
ssg.ssg_out = strses_allocate ();
ssg.ssg_sc = ≻
ssg.ssg_sparp = sparp;
ssg.ssg_tree = sparp->sparp_expr;
ssg.ssg_sources = ssg.ssg_tree->_.req_top.sources; /*!!!TBD merge with environment */
QR_RESET_CTX
{
ssg_make_sql_query_text (&ssg);
}
QR_RESET_CODE
{
du_thread_t * self = THREAD_CURRENT_THREAD;
err = thr_get_error_code (self);
ssg_free_internals (&ssg);
POP_QR_RESET;
sqlr_resignal (err);
}
END_QR_RESET;
action_sql = t_strses_string (ssg.ssg_out);
ssg_free_internals (&ssg);
action_sqls [action_ctr] = spartlist (sparp, 4, SPAR_LIT, action_sql, NULL, NULL);
sparp->sparp_expr = NULL;
}
END_DO_BOX_FAST;
sparp->sparp_env->spare_output_format_name = saved_format_name;
sparp->sparp_env->spare_output_valmode_name = saved_valmode_name;
spar_selid_push (sparp);
fake_sol = spar_make_fake_action_solution (sparp);
top = spar_make_top_or_special_case_from_wm (sparp, SPARUL_RUN_SUBTYPE,
(SPART **)t_list (1, spar_make_funcall (sparp, 0, "sql:SPARUL_RUN", action_sqls)),
spar_selid_pop (sparp), fake_sol );
return top;
}
SPART *
spar_make_fake_action_solution (sparp_t *sparp)
{
SPART * fake_gp;
spar_gp_init (sparp, WHERE_L);
fake_gp = spar_gp_finalize (sparp, NULL);
return spartlist (sparp, 8, SPAR_WHERE_MODIFS,
fake_gp, NULL, NULL, NULL, t_box_num(1), t_box_num(0), NULL );
}
id_hashed_key_t
spar_var_hash (caddr_t p_data)
{
SPART *v = ((SPART **)p_data)[0];
char *str;
id_hashed_key_t h1, h2;
str = v->_.var.tabid;
if (NULL != str)
BYTE_BUFFER_HASH (h1, str, strlen (str));
else
h1 = 0;
str = v->_.var.vname;
BYTE_BUFFER_HASH (h2, str, strlen (str));
return ((h1 ^ h2 ^ v->_.var.tr_idx) & ID_HASHED_KEY_MASK);
}
int
spar_var_cmp (caddr_t p_data1, caddr_t p_data2)
{
SPART *v1 = ((SPART **)p_data1)[0];
SPART *v2 = ((SPART **)p_data2)[0];
int res;
res = ((v2->_.var.tr_idx > v1->_.var.tr_idx) ? 1 :
((v2->_.var.tr_idx < v1->_.var.tr_idx) ? -1 : 0) );
if (0 != res) return res;
res = strcmp (v1->_.var.vname, v2->_.var.vname);
if (0 != res) return res;
return strcmp ((NULL != v1->_.var.tabid) ? v1->_.var.tabid : "", (NULL != v2->_.var.tabid) ? v2->_.var.tabid : "");
}
caddr_t
spar_boxed_exec_uid (sparp_t *sparp)
{
if (NULL == sparp->sparp_boxed_exec_uid)
{
user_t *exec_user = sparp->sparp_sparqre->sparqre_exec_user;
if (NULL != exec_user)
sparp->sparp_boxed_exec_uid = t_box_num_nonull (exec_user->usr_id);
else if (sparp->sparp_sparqre->sparqre_cli == bootstrap_cli)
sparp->sparp_boxed_exec_uid = t_box_num_nonull (U_ID_DBA);
else
sparp->sparp_boxed_exec_uid = t_box_num_nonull (U_ID_NOBODY);
}
return sparp->sparp_boxed_exec_uid;
}
caddr_t
spar_immortal_exec_uname (sparp_t *sparp)
{
if (NULL == sparp->sparp_immortal_exec_uname)
{
user_t *exec_user = sparp->sparp_sparqre->sparqre_exec_user;
if (NULL != exec_user)
sparp->sparp_immortal_exec_uname = box_dv_uname_string (exec_user->usr_name);
else if (sparp->sparp_sparqre->sparqre_cli == bootstrap_cli)
sparp->sparp_immortal_exec_uname = box_dv_uname_string ("dba");
else
sparp->sparp_immortal_exec_uname = box_dv_uname_string ("nobody");
box_dv_uname_make_immortal (sparp->sparp_immortal_exec_uname);
}
return sparp->sparp_immortal_exec_uname;
}
SPART *
spar_exec_uid_and_gs_cbk (sparp_t *sparp)
{
caddr_t uid = spar_boxed_exec_uid (sparp);
caddr_t appid = ((NULL == sparp->sparp_gs_app_uid) ? t_NEW_DB_NULL : sparp->sparp_gs_app_uid);
if (NULL == sparp->sparp_gs_app_callback)
return (SPART *)uid;
return spar_make_funcall (sparp, 0, "bif:vector",
(SPART **)t_list (3, uid, sparp->sparp_gs_app_callback, appid) );
}
void
spar_qr_uses_jso_int (comp_context_t *cc, ccaddr_t jso_inst, ccaddr_t jso_name)
{
if (NULL == cc)
return;
if (NULL == jso_name)
{
jso_rtti_t *jso_rtti = gethash (jso_inst, jso_rttis_of_structs);
if (NULL == jso_rtti)
return; /* Built-in anonymous JSO, like one used when define input:storage "" */
jso_name = jso_rtti->jrtti_inst_iri;
}
box_dv_uname_make_immortal ((caddr_t)jso_name);
qr_uses_jso (cc->cc_super_cc->cc_query, jso_name);
}
int
spar_graph_static_perms (sparp_t *sparp, caddr_t graph_iri, int req_perms)
{
caddr_t boxed_uid;
id_hash_t *dflt_perms_of_user = rdf_graph_default_world_perms_of_user_dict_htable;
id_hash_t *dflt_other_perms_of_user = rdf_graph_default_private_perms_of_user_dict_htable;
caddr_t *hit = NULL, *potential_hit;
int res = 0, potential_res = 0, potential_res_is_user_specific = 0;
int graph_is_private = 0;
query_t *query_with_deps = NULL;
static caddr_t boxed_zero_iid = NULL;
static caddr_t boxed_8192_iid = NULL;
if (NULL == boxed_zero_iid)
boxed_zero_iid = box_iri_id (0);
if (NULL == boxed_8192_iid)
boxed_8192_iid = box_iri_id (8192);
if (NULL == sparp->sparp_gs_app_callback)
boxed_uid = spar_boxed_exec_uid (sparp);
else
boxed_uid = t_box_num (U_ID_NOBODY);
if (NULL != sparp->sparp_sparqre->sparqre_super_sc)
query_with_deps = sparp->sparp_sparqre->sparqre_super_sc->sc_cc->cc_super_cc->cc_query;
if (NULL != graph_iri)
{
caddr_t boxed_graph_iid = sparp_graph_sec_iri_to_id_nosignal (sparp, graph_iri);
if (NULL != boxed_graph_iid)
{
mutex_enter (rdf_graph_group_of_privates_dict_htable->ht_mutex);
if (NULL != id_hash_get (rdf_graph_group_of_privates_dict_htable, (caddr_t)(&(boxed_graph_iid))))
{
graph_is_private = 1;
dflt_perms_of_user = rdf_graph_default_private_perms_of_user_dict_htable;
dflt_other_perms_of_user = rdf_graph_default_world_perms_of_user_dict_htable;
}
mutex_leave (rdf_graph_group_of_privates_dict_htable->ht_mutex);
/*!!! maybe TBD: add retrieval of permissions of specific user on specific graph */
mutex_enter (dflt_perms_of_user->ht_mutex);
hit = (caddr_t *)id_hash_get (dflt_perms_of_user, (caddr_t)(&(boxed_uid /* not boxed_graph_iid */)));
mutex_leave (dflt_perms_of_user->ht_mutex);
}
if (NULL != hit)
{
if (NULL != query_with_deps)
{
caddr_t graph_uname = box_dv_uname_nchars (graph_iri, box_length (graph_iri) - 1);
qr_uses_jso (query_with_deps, graph_uname);
}
return unbox (hit[0]);
}
}
mutex_enter (dflt_perms_of_user->ht_mutex);
hit = (caddr_t *)id_hash_get (dflt_perms_of_user, (caddr_t)(&(boxed_uid)));
mutex_leave (dflt_perms_of_user->ht_mutex);
if ((NULL != query_with_deps) || (NULL == graph_iri))
{
potential_hit = (caddr_t *)id_hash_get (dflt_other_perms_of_user, (caddr_t)(&(boxed_uid)));
if (NULL == potential_hit)
potential_hit = (caddr_t *)id_hash_get (rdf_graph_public_perms_dict_htable, (caddr_t)(graph_is_private ? &boxed_zero_iid : &boxed_8192_iid));
else
potential_res_is_user_specific = 1;
potential_res = (NULL != potential_hit) ? unbox(potential_hit[0]) : RDF_GRAPH_PERM_DEFAULT;
}
if (NULL != hit)
{
res = unbox (hit[0]);
if (NULL != query_with_deps)
{
caddr_t uname = spar_immortal_exec_uname (sparp);
qr_uses_jso (query_with_deps, uname);
if ((0 != ((res & req_perms) & ~(potential_res & req_perms)))) /* If world and private perms differ significantly and in unsafe direction... */
{
caddr_t dep_graph_uname = (NULL != graph_iri) ? box_dv_uname_string (graph_iri) : uname_virtrdf_ns_uri_PrivateGraphs;
qr_uses_jso (query_with_deps, dep_graph_uname); /* ...then adding dep on graph is required, so changing graph from world to provate or back will trigger re-compilation */
}
}
if (NULL != graph_iri)
return res;
return res & potential_res;
}
mutex_enter (rdf_graph_public_perms_dict_htable->ht_mutex);
hit = (caddr_t *)id_hash_get (rdf_graph_public_perms_dict_htable, (caddr_t)(graph_is_private ? &boxed_8192_iid : &boxed_zero_iid));
mutex_leave (rdf_graph_public_perms_dict_htable->ht_mutex);
if (NULL != hit)
res = unbox (hit[0]);
else res = RDF_GRAPH_PERM_DEFAULT;
if (NULL != query_with_deps)
{
if ((0 != ((res & req_perms) & ~(potential_res & req_perms)))) /* If world and private perms differ significantly and in unsafe direction... */
{
caddr_t dep_graph_uname;
if (potential_res_is_user_specific)
{
caddr_t uname = spar_immortal_exec_uname (sparp);
qr_uses_jso (query_with_deps, uname);
}
dep_graph_uname = (NULL != graph_iri) ? box_dv_uname_string (graph_iri) : uname_virtrdf_ns_uri_PrivateGraphs;
qr_uses_jso (query_with_deps, dep_graph_uname); /* ...then adding dep on graph is required, so changing graph from world to provate or back will trigger re-compilation */
}
}
if (NULL != graph_iri)
return res;
return res & potential_res;
}
int
spar_graph_needs_security_testing (sparp_t *sparp, SPART *g_expn, int req_perms)
{
caddr_t fixed_g;
int default_perms;
switch (SPART_TYPE (g_expn))
{
case SPAR_QNAME: fixed_g = g_expn->_.qname.val; break;
case SPAR_BLANK_NODE_LABEL: case SPAR_VARIABLE:
if (SPART_VARR_CONFLICT & g_expn->_.var.rvr.rvrRestrictions)
return 0;
fixed_g = rvr_string_fixedvalue (&(g_expn->_.var.rvr));
break;
default: fixed_g = NULL; break;
}
if (NULL != fixed_g)
default_perms = spar_graph_static_perms (sparp, fixed_g, req_perms);
else
default_perms = spar_graph_static_perms (sparp, NULL, req_perms);
return (req_perms & ~default_perms);
}
caddr_t
spar_query_lex_analyze (caddr_t str, wcharset_t *query_charset)
{
if (!DV_STRINGP(str))
{
return list (1, list (3, (ptrlong)0, (ptrlong)0, box_dv_short_string ("SPARQL analyzer: input text is not a string")));
}
else
{
dk_set_t lexems = NULL;
caddr_t result_array;
int param_ctr = 0;
spar_query_env_t sparqre;
sparp_t *sparp;
sparp_env_t *se;
MP_START ();
memset (&sparqre, 0, sizeof (spar_query_env_t));
sparp = (sparp_t *)t_alloc (sizeof (sparp_t));
memset (sparp, 0, sizeof (sparp_t));
se = (sparp_env_t *)t_alloc (sizeof (sparp_env_t));
memset (se, 0, sizeof (sparp_env_t));
sparqre.sparqre_param_ctr = ¶m_ctr;
sparqre.sparqre_qi = CALLER_LOCAL;
sparp->sparp_sparqre = &sparqre;
sparp->sparp_text = t_box_copy (str);
sparp->sparp_env = se;
sparp->sparp_permitted_syntax = ~0;
sparp->sparp_synthighlight = 1;
sparp->sparp_err_hdr = t_box_dv_short_string ("SPARQL analyzer");
if (NULL == query_charset)
query_charset = default_charset;
if (NULL == query_charset)
sparp->sparp_enc = &eh__ISO8859_1;
else
{
sparp->sparp_enc = eh_get_handler (CHARSET_NAME (query_charset, NULL));
if (NULL == sparp->sparp_enc)
sparp->sparp_enc = &eh__ISO8859_1;
}
sparp->sparp_lang = server_default_lh;
spar_fill_lexem_bufs (sparp);
DO_SET (spar_lexem_t *, buf, &(sparp->sparp_output_lexem_bufs))
{
int buflen = box_length (buf) / sizeof( spar_lexem_t);
int ctr;
for (ctr = 0; ctr < buflen; ctr++)
{
spar_lexem_t *curr = buf+ctr;
if (0 == curr->sparl_lex_value)
break;
#ifdef SPARQL_DEBUG
dk_set_push (&lexems, list (5,
box_num (curr->sparl_lineno),
curr->sparl_depth,
box_copy (curr->sparl_raw_text),
curr->sparl_lex_value,
curr->sparl_state ) );
#else
dk_set_push (&lexems, list (4,
box_num (curr->sparl_lineno),
curr->sparl_depth,
box_copy (curr->sparl_raw_text),
curr->sparl_lex_value ) );
#endif
}
}
END_DO_SET();
if (NULL != sparp->sparp_sparqre->sparqre_catched_error)
{
dk_set_push (&lexems, list (3,
((NULL != sparp->sparp_curr_lexem) ? sparp->sparp_curr_lexem->sparl_lineno : (ptrlong)0),
sparp->sparp_lexdepth,
box_copy (ERR_MESSAGE (sparp->sparp_sparqre->sparqre_catched_error)) ) );
}
sparp_free (sparp);
MP_DONE ();
result_array = revlist_to_array (lexems);
return result_array;
}
}
#ifdef DEBUG
sparp_t * dbg_curr_sparp;
#endif
sparp_t *
sparp_query_parse (const char * str, spar_query_env_t *sparqre, int rewrite_all)
{
wcharset_t *query_charset = sparqre->sparqre_query_charset;
t_NEW_VAR (sparp_t, sparp);
t_NEW_VARZ (sparp_env_t, spare);
#ifdef DEBUG
dbg_curr_sparp = sparp;
#endif
memset (sparp, 0, sizeof (sparp_t));
sparp->sparp_sparqre = sparqre;
if ((NULL == sparqre->sparqre_cli) && (CALLER_LOCAL != sparqre->sparqre_qi))
sparqre->sparqre_cli = sparqre->sparqre_qi->qi_client;
if ((NULL == sparqre->sparqre_exec_user) && (NULL != sparqre->sparqre_cli))
sparqre->sparqre_exec_user = sparqre->sparqre_cli->cli_user;
sparp->sparp_env = spare;
sparp->sparp_permitted_syntax = ~0;
sparp->sparp_err_hdr = t_box_dv_short_string ("SPARQL compiler");
if ((NULL == query_charset) /*&& (!sparqre->xqre_query_charset_is_set)*/)
{
if (CALLER_LOCAL != sparqre->sparqre_qi)
query_charset = QST_CHARSET (sparqre->sparqre_qi);
if (NULL == query_charset)
query_charset = default_charset;
}
if (NULL == query_charset)
sparp->sparp_enc = &eh__ISO8859_1;
else
{
sparp->sparp_enc = eh_get_handler (CHARSET_NAME (query_charset, NULL));
if (NULL == sparp->sparp_enc)
sparp->sparp_enc = &eh__ISO8859_1;
}
sparp->sparp_lang = server_default_lh;
spare->spare_namespace_prefixes_outer =
spare->spare_namespace_prefixes =
sparqre->sparqre_external_namespaces;
sparp->sparp_text = str;
spar_fill_lexem_bufs (sparp);
if (NULL != sparp->sparp_sparqre->sparqre_catched_error)
return sparp;
sparp->sparp_sg = (sparp_globals_t *) t_alloc (sizeof (sparp_globals_t));
memset (sparp->sparp_sg, 0, sizeof (sparp_globals_t));
QR_RESET_CTX
{
/* Bug 4566: sparpyyrestart (NULL); */
sparyyparse (sparp);
if (rewrite_all)
sparp_rewrite_all (sparp, 0 /* top is never cloned, hence zero safely_copy_retvals */);
}
QR_RESET_CODE
{
du_thread_t *self = THREAD_CURRENT_THREAD;
sparp->sparp_sparqre->sparqre_catched_error = thr_get_error_code (self);
thr_set_error_code (self, NULL);
POP_QR_RESET;
return sparp; /* see below */
}
END_QR_RESET
if (NULL != sparp->sparp_macrolib_to_create && !sparp->sparp_macrolib_ignore_create)
sparp->sparp_expr = spar_make_create_macro_lib (sparp);
#ifndef NDEBUG
t_check_tree (sparp->sparp_expr);
#endif
return sparp;
}
#define ENV_COPY(field) env_copy->field = env->field
#define ENV_BOX_COPY(field) env_copy->field = t_box_copy (env->field)
#define ENV_SPART_COPY(field) env_copy->field = (SPART *)t_box_copy_tree ((caddr_t)(env->field))
#define ENV_SET_COPY(field) \
env_copy->field = t_set_copy (env->field); \
DO_SET_WRITABLE (SPART *, opt, iter, &(env_copy->field)) \
{ \
iter->data = t_box_copy_tree ((caddr_t)opt); \
} \
END_DO_SET()
sparp_t *
sparp_clone_for_variant (sparp_t *sparp, int allow_output_formatting)
{
s_node_t *iter;
sparp_env_t *env = sparp->sparp_env;
t_NEW_VAR (sparp_t, sparp_copy);
t_NEW_VARZ (sparp_env_t, env_copy);
memcpy (sparp_copy, sparp, sizeof (sparp_t));
sparp_copy->sparp_env = env_copy;
ENV_BOX_COPY (spare_input_param_valmode_name);
ENV_BOX_COPY (spare_output_valmode_name);
if (allow_output_formatting)
{
ENV_BOX_COPY (spare_output_format_name);
ENV_BOX_COPY (spare_output_scalar_format_name);
ENV_BOX_COPY (spare_output_dict_format_name);
}
ENV_BOX_COPY (spare_storage_name);
ENV_COPY(spare_parent_env);
#if 0 /* These will be used when libraries of inference rules are introduced. */
id_hash_t * spare_fundefs; /*!< In-scope function definitions */
id_hash_t * spare_vars; /*!< Known variables as keys, equivs as values */
id_hash_t * spare_global_bindings; /*!< Dictionary of global bindings, varnames as keys, default value expns as values. DV_DB_NULL box for no expn! */
#endif
/* No copy for spare_src.ssrc_grab_vars */
ENV_SET_COPY (spare_src.ssrc_common_sponge_options);
ENV_SET_COPY (spare_src.ssrc_default_graphs);
ENV_SET_COPY (spare_src.ssrc_named_graphs);
ENV_COPY (spare_src.ssrc_default_graphs_listed);
ENV_COPY (spare_src.ssrc_named_graphs_listed);
ENV_COPY (spare_src.ssrc_default_graphs_locked);
ENV_COPY (spare_src.ssrc_named_graphs_locked);
ENV_SET_COPY (spare_common_sql_table_options);
ENV_SET_COPY (spare_sql_select_options);
ENV_SET_COPY (spare_global_var_names);
return sparp_copy;
}
void
spar_env_push (sparp_t *sparp)
{
sparp_env_t *env = sparp->sparp_env;
t_NEW_VARZ (sparp_env_t, env_copy);
ENV_COPY (spare_start_lineno);
ENV_COPY (spare_param_counter_ptr);
ENV_COPY (spare_namespace_prefixes);
ENV_COPY (spare_namespace_prefixes_outer);
ENV_COPY (spare_base_uri);
ENV_COPY (spare_input_param_valmode_name);
env_copy->spare_output_valmode_name = t_box_dv_short_string ("AUTO");
ENV_COPY (spare_storage_name);
ENV_COPY (spare_inference_name);
ENV_COPY (spare_inference_ctx);
ENV_COPY (spare_use_same_as);
#if 0 /* These will be used when libraries of inference rules are introduced. Don't forget to patch sparp_clone_for_variant()! */
id_hash_t * spare_fundefs; /*!< In-scope function definitions */
id_hash_t * spare_vars; /*!< Known variables as keys, equivs as values */
id_hash_t * spare_global_bindings; /*!< Dictionary of global bindings, varnames as keys, default value expns as values. DV_DB_NULL box for no expn! */
#endif
ENV_COPY (spare_src.ssrc_grab);
ENV_COPY (spare_src.ssrc_common_sponge_options);
ENV_COPY (spare_src.ssrc_default_graphs);
ENV_COPY (spare_src.ssrc_default_graphs_locked);
ENV_COPY (spare_src.ssrc_named_graphs);
ENV_COPY (spare_src.ssrc_named_graphs_locked);
ENV_COPY (spare_common_sql_table_options);
/* no copy for spare_groupings */
ENV_COPY (spare_sql_select_options);
/* no copy for spare_context_qms */
ENV_COPY (spare_context_qms);
#if 0 /* This check is replaced with check for context qms if define input:storage appear */
if ((NULL != env_copy->spare_context_qms) && ((SPART *)((ptrlong)_STAR) != env_copy->spare_context_qms->data))
spar_error (sparp, "Subqueries are not allowed inside QUAD MAP group patterns other than 'QUAD MAP * {...}'");
#endif
ENV_COPY (spare_context_graphs); /* Do we need this??? */
/* no copy for spare_context_subjects */
/* no copy for spare_context_predicates */
/* no copy for spare_context_objects */
/* no copy for spare_context_gp_subtypes */
/* no copy for spare_acc_triples */
/* no copy for spare_acc_filters */
ENV_COPY (spare_good_graph_varnames);
ENV_COPY (spare_good_graph_varname_sets);
ENV_COPY (spare_good_graph_bmk);
/* no copy for spare_selids */
ENV_COPY (spare_global_var_names);
ENV_COPY (spare_globals_mode);
ENV_COPY (spare_global_num_offset);
/* no copy for spare_acc_qm_sqls */
/* no copy for spare_qm_default_table */
/* no copy for spare_qm_current_table_alias */
/* no copy for spare_qm_parent_tables_of_aliases */
/* no copy for spare_qm_parent_aliases_of_aliases */
/* no copy for spare_qm_descendants_of_aliases */
/* no copy for spare_qm_ft_indexes_of_columns */
/* no copy for spare_qm_where_conditions */
/* no copy for spare_qm_locals */
/* no copy for spare_qm_affected_jso_iris */
/* no copy for spare_qm_deleted */
/* no copy for spare_sparul_log_mode */
ENV_COPY (spare_signal_void_variables);
env_copy->spare_parent_env = env;
sparp->sparp_env = env_copy;
}
#undef ENV_COPY
#undef ENV_BOX_COPY
#undef ENV_SPART_COPY
#undef ENV_SET_COPY
void
spar_env_pop (sparp_t *sparp)
{
sparp_env_t *env = sparp->sparp_env;
sparp_env_t *parent = env->spare_parent_env;
#ifndef NDEBUG
if (NULL == parent)
GPF_T1("Misplaced call of spar_env_pop()");
#endif
parent->spare_global_var_names = env->spare_global_var_names;
sparp->sparp_env = parent;
}
extern void sparp_delete_clone (sparp_t *sparp);
void
sparp_compile_subselect (spar_query_env_t *sparqre)
{
sparp_t * sparp;
query_t * qr = NULL; /*dummy for CC_INIT */
spar_sqlgen_t ssg;
comp_context_t cc;
sql_comp_t sc;
caddr_t str = strses_string (sparqre->sparqre_src->sif_skipped_part);
caddr_t res;
#ifdef SPARQL_DEBUG
printf ("\nsparp_compile_subselect() input:\n%s", str);
#endif
strses_free (sparqre->sparqre_src->sif_skipped_part);
sparqre->sparqre_src->sif_skipped_part = NULL;
sparqre->sparqre_cli = sqlc_client();
sparqre->sparqre_exec_user = sparqre->sparqre_cli->cli_user;
sparp = sparp_query_parse (str, sparqre, 1);
dk_free_box (str);
if (NULL != sparp->sparp_sparqre->sparqre_catched_error)
{
#ifdef SPARQL_DEBUG
printf ("\nsparp_compile_subselect() caught parse error: %s", ERR_MESSAGE(sparp->sparp_sparqre->sparqre_catched_error));
#endif
return;
}
memset (&ssg, 0, sizeof (spar_sqlgen_t));
memset (&sc, 0, sizeof (sql_comp_t));
CC_INIT (cc, ((NULL != sparqre->sparqre_super_sc) ? sparqre->sparqre_super_sc->sc_client : sqlc_client()));
sc.sc_cc = &cc;
if (NULL != sparqre->sparqre_super_sc)
{
cc.cc_super_cc = sparqre->sparqre_super_sc->sc_cc->cc_super_cc;
sc.sc_super = sparqre->sparqre_super_sc;
}
ssg.ssg_out = strses_allocate ();
ssg.ssg_sc = ≻
ssg.ssg_sparp = sparp;
ssg.ssg_tree = sparp->sparp_expr;
ssg_make_whole_sql_text (&ssg);
if (NULL != sparqre->sparqre_catched_error)
{
ssg_free_internals (&ssg);
return;
}
session_buffered_write (ssg.ssg_out, sparqre->sparqre_tail_sql_text, strlen (sparqre->sparqre_tail_sql_text));
session_buffered_write_char (0 /*YY_END_OF_BUFFER_CHAR*/, ssg.ssg_out); /* First terminator */
session_buffered_write_char (0 /*YY_END_OF_BUFFER_CHAR*/, ssg.ssg_out); /* Second terminator. Most of Lex-es need two! */
res = t_strses_string (ssg.ssg_out);
#ifdef SPARQL_DEBUG
printf ("\nsparp_compile_subselect() done: %s", res);
#endif
ssg_free_internals (&ssg);
sparqre->sparqre_compiled_text = res;
}
caddr_t
bif_sparql_explain (caddr_t * qst, caddr_t * err_ret, state_slot_t ** args)
{
int ctr, param_ctr = 0;
spar_query_env_t sparqre;
sparp_t * sparp;
caddr_t str = bif_string_arg (qst, args, 0, "sparql_explain");
int rewrite_all = (0 != ((2 > BOX_ELEMENTS (args)) ? 1 : bif_long_arg (qst, args, 1, "sparql_explain")));
dk_session_t *res;
MP_START ();
memset (&sparqre, 0, sizeof (spar_query_env_t));
sparqre.sparqre_param_ctr = ¶m_ctr;
sparqre.sparqre_qi = (query_instance_t *) qst;
sparp = sparp_query_parse (str, &sparqre, rewrite_all);
if (NULL != sparqre.sparqre_catched_error)
{
MP_DONE ();
sqlr_resignal (sparqre.sparqre_catched_error);
}
res = strses_allocate ();
for (ctr = 0; ctr < sparp->sparp_macro_def_count; ctr++)
{
SPART *defm = sparp->sparp_macro_defs[ctr];
spart_dump (defm, res, 0, "MACRO DEFINITION", -1);
}
spart_dump (sparp->sparp_expr, res, 0, "QUERY", -1);
#if 1
{
int eq_ctr, eq_count;
SES_PRINT (res, "\nEQUIVS:");
eq_count = sparp->sparp_sg->sg_equiv_count;
for (eq_ctr = 0; eq_ctr < eq_count; eq_ctr++)
{
sparp_equiv_t *eq = sparp->sparp_sg->sg_equivs[eq_ctr];
spart_dump_eq (eq_ctr, eq, res);
}
}
#endif
MP_DONE ();
return (caddr_t)res;
}
void sparp_make_sparqld_text (spar_sqlgen_t *ssg);
caddr_t
bif_sparql_detalize (caddr_t * qst, caddr_t * err_ret, state_slot_t ** args)
{
int param_ctr = 0, flags;
spar_query_env_t sparqre;
sparp_t * sparp;
caddr_t str;
spar_sqlgen_t ssg;
sql_comp_t sc;
dk_session_t *res;
str = bif_string_arg (qst, args, 0, "sparql_detalize");
flags = ((2 <= BOX_ELEMENTS (args)) ? bif_long_arg (qst, args, 1, "sparql_detalize") : SSG_SD_VOS_CURRENT);
MP_START ();
memset (&sparqre, 0, sizeof (spar_query_env_t));
sparqre.sparqre_param_ctr = ¶m_ctr;
sparqre.sparqre_qi = (query_instance_t *) qst;
sparp = sparp_query_parse (str, &sparqre, 1);
if (NULL != sparqre.sparqre_catched_error)
{
MP_DONE ();
sqlr_resignal (sparqre.sparqre_catched_error);
}
memset (&ssg, 0, sizeof (spar_sqlgen_t));
memset (&sc, 0, sizeof (sql_comp_t));
sc.sc_client = sparqre.sparqre_qi->qi_client;
ssg.ssg_out = strses_allocate ();
ssg.ssg_sc = ≻
ssg.ssg_sparp = sparp;
ssg.ssg_tree = sparp->sparp_expr;
ssg.ssg_sd_flags = flags;
ssg.ssg_sd_used_namespaces = id_str_hash_create (16);
QR_RESET_CTX
{
sparp_make_sparqld_text (&ssg);
}
QR_RESET_CODE
{
du_thread_t *self = THREAD_CURRENT_THREAD;
sparp->sparp_sparqre->sparqre_catched_error = thr_get_error_code (self);
thr_set_error_code (self, NULL);
}
END_QR_RESET
if (NULL != sparqre.sparqre_catched_error)
{
ssg_free_internals (&ssg);
MP_DONE ();
sqlr_resignal (sparqre.sparqre_catched_error);
}
res = ssg.ssg_out;
ssg.ssg_out = NULL;
ssg_free_internals (&ssg);
MP_DONE ();
return (caddr_t)(res);
}
caddr_t
bif_sparql_to_sql_text (caddr_t * qst, caddr_t * err_ret, state_slot_t ** args)
{
int param_ctr = 0;
spar_query_env_t sparqre;
sparp_t * sparp;
caddr_t str, uname = NULL;
spar_sqlgen_t ssg;
sql_comp_t sc;
dk_session_t *res;
str = bif_string_arg (qst, args, 0, "sparql_to_sql_text");
if (1 < BOX_ELEMENTS (args))
uname = bif_string_arg (qst, args, 1, "sparql_to_sql_text"); /* set before MP_START () for case of argument of wrong type causing signal w/o MP_DONE() */
MP_START ();
memset (&sparqre, 0, sizeof (spar_query_env_t));
sparqre.sparqre_param_ctr = ¶m_ctr;
sparqre.sparqre_qi = (query_instance_t *) qst;
if (NULL != uname)
sparqre.sparqre_exec_user = sec_name_to_user (uname);
sparp = sparp_query_parse (str, &sparqre, 1);
if (NULL != sparqre.sparqre_catched_error)
{
MP_DONE ();
sqlr_resignal (sparqre.sparqre_catched_error);
}
memset (&ssg, 0, sizeof (spar_sqlgen_t));
memset (&sc, 0, sizeof (sql_comp_t));
sc.sc_client = sparqre.sparqre_qi->qi_client;
ssg.ssg_out = strses_allocate ();
ssg.ssg_sc = ≻
ssg.ssg_sparp = sparp;
ssg.ssg_tree = sparp->sparp_expr;
ssg_make_whole_sql_text (&ssg);
if (NULL != sparqre.sparqre_catched_error)
{
ssg_free_internals (&ssg);
MP_DONE ();
sqlr_resignal (sparqre.sparqre_catched_error);
}
res = ssg.ssg_out;
ssg.ssg_out = NULL;
ssg_free_internals (&ssg);
MP_DONE ();
return (caddr_t)(res);
}
caddr_t
bif_sparql_lex_analyze (caddr_t * qst, caddr_t * err_ret, state_slot_t ** args)
{
caddr_t str = bif_string_arg (qst, args, 0, "sparql_lex_analyze");
return spar_query_lex_analyze (str, QST_CHARSET(qst));
}
SPART *
spar_make_literal_from_sql_box (sparp_t * sparp, caddr_t box, int make_bnode_if_null)
{
switch (DV_TYPE_OF (box))
{
case DV_LONG_INT: return spartlist (sparp, 4, SPAR_LIT, t_box_copy (box), uname_xmlschema_ns_uri_hash_integer, NULL);
case DV_NUMERIC: return spartlist (sparp, 4, SPAR_LIT, t_box_copy (box), uname_xmlschema_ns_uri_hash_decimal, NULL);
case DV_DOUBLE_FLOAT: return spartlist (sparp, 4, SPAR_LIT, t_box_copy (box), uname_xmlschema_ns_uri_hash_double, NULL);
case DV_UNAME: return spartlist (sparp, 2, SPAR_QNAME, t_box_copy (box));
case DV_IRI_ID:
{
iri_id_t iid = unbox_iri_id (box);
caddr_t iri;
SPART *res;
if (0L == iid)
return NULL;
if (iid >= min_bnode_iri_id ())
{
caddr_t t_iri;
if (iid >= MIN_64BIT_BNODE_IRI_ID)
t_iri = t_box_sprintf (31, "nodeID://b" BOXINT_FMT, (boxint)(iid-MIN_64BIT_BNODE_IRI_ID));
else
t_iri = t_box_sprintf (30, "nodeID://" BOXINT_FMT, (boxint)(iid));
return spartlist (sparp, 2, SPAR_QNAME, t_box_dv_uname_string (t_iri));
}
iri = (caddr_t)sparp_id_to_iri (sparp, iid);
if (!iri)
return NULL;
res = spartlist (sparp, 2, SPAR_QNAME, t_box_dv_uname_string (iri));
return res;
}
case DV_RDF:
{
rdf_box_t *rb = (rdf_box_t *)box;
if (!rb->rb_is_complete ||
(RDF_BOX_DEFAULT_TYPE != rb->rb_type) ||
(RDF_BOX_DEFAULT_LANG != rb->rb_lang) ||
DV_STRING != DV_TYPE_OF (rb->rb_box) )
spar_internal_error (sparp, "spar_" "make_literal_from_sql_box() does not support rdf boxes other than complete untyped strings, sorry");
return spartlist (sparp, 4, SPAR_LIT, t_box_copy (box), NULL, NULL);
}
case DV_STRING: spartlist (sparp, 4, SPAR_LIT, t_box_copy (box), NULL, NULL);
case DV_DB_NULL:
if (make_bnode_if_null)
return spar_make_blank_node (sparp, spar_mkid (sparp, "_:sqlbox"), 1);
else
return spar_make_variable (sparp, t_box_dv_uname_string ("_:sqlbox"));
break;
default: spar_internal_error (sparp, "spar_" "make_literal_from_sql_box(): unsupported box type");
}
return NULL; /* to keep compiler happy */
}
#define QUAD_MAPS_FOR_QUAD 1
#define SQL_COLS_FOR_QUAD 2
caddr_t
bif_sparql_quad_maps_for_quad_impl (caddr_t * qst, caddr_t * err_ret, state_slot_t ** args, int resulting_format, const char *fname)
{
int param_ctr_for_sparqre = 0;
spar_query_env_t sparqre;
sparp_env_t spare;
sparp_t sparp;
sparp_globals_t sparp_globals;
spar_sqlgen_t ssg;
sql_comp_t sc;
caddr_t sqlvals[SPART_TRIPLE_FIELDS_COUNT];
caddr_t *bad_sources_val = NULL;
caddr_t *good_sources_val = NULL;
caddr_t storage_name = NULL;
caddr_t *res = NULL;
boxint flags = 0;
switch (BOX_ELEMENTS (args))
{
case 8: flags = bif_long_arg (qst, args, 7, fname);
case 7: bad_sources_val = bif_strict_2type_array_arg (DV_UNAME, DV_IRI_ID, qst, args, 6, fname);
case 6: good_sources_val = bif_strict_2type_array_arg (DV_UNAME, DV_IRI_ID, qst, args, 5, fname);
case 5: storage_name = bif_string_or_uname_or_wide_or_null_arg (qst, args, 4, fname);
case 4: sqlvals[SPART_TRIPLE_OBJECT_IDX] = bif_arg (qst, args, 3, fname);
case 3: sqlvals[SPART_TRIPLE_PREDICATE_IDX] = bif_arg (qst, args, 2, fname);
case 2: sqlvals[SPART_TRIPLE_SUBJECT_IDX] = bif_arg (qst, args, 1, fname);
case 1: sqlvals[SPART_TRIPLE_GRAPH_IDX] = bif_arg (qst, args, 0, fname);
case 0: ; /* no break */
}
MP_START ();
memset (&sparqre, 0, sizeof (spar_query_env_t));
memset (&spare, 0, sizeof (sparp_env_t));
memset (&sparp, 0, sizeof (sparp_t));
memset (&sparp_globals, 0, sizeof (sparp_globals_t));
sparqre.sparqre_param_ctr = ¶m_ctr_for_sparqre;
sparqre.sparqre_qi = (query_instance_t *) qst;
sparp.sparp_sparqre = &sparqre;
sparp.sparp_permitted_syntax = ~0;
sparp.sparp_env = &spare;
sparp.sparp_sg = &sparp_globals;
memset (&ssg, 0, sizeof (spar_sqlgen_t));
memset (&sc, 0, sizeof (sql_comp_t));
sc.sc_client = sparqre.sparqre_qi->qi_client;
ssg.ssg_sc = ≻
ssg.ssg_sparp = &sparp;
QR_RESET_CTX
{
int src_max_count = BOX_ELEMENTS_0 (good_sources_val) + BOX_ELEMENTS_0 (bad_sources_val);
SPART **sources = (SPART **)t_alloc_box (src_max_count * sizeof (SPART *), DV_ARRAY_OF_POINTER);
SPART *triple;
SPART *fake_global_sql_param = NULL;
SPART *fake_global_long_param = NULL;
triple_case_t **cases;
int src_idx, case_count, case_ctr;
int src_total_count = 0;
if (DV_STRING == DV_TYPE_OF (storage_name))
storage_name = t_box_dv_uname_string (storage_name);
sparp.sparp_storage = sparp_find_storage_by_name (storage_name);
t_set_push (&(spare.spare_selids), t_box_dv_short_string (fname));
t_set_push (&(spare.spare_context_gp_subtypes), (caddr_t)((ptrlong)WHERE_L));
triple = spar_make_plain_triple (&sparp,
spar_make_literal_from_sql_box (&sparp, sqlvals[SPART_TRIPLE_GRAPH_IDX] , (int)(flags & 1)),
spar_make_literal_from_sql_box (&sparp, sqlvals[SPART_TRIPLE_SUBJECT_IDX] , (int)(flags & 1)),
spar_make_literal_from_sql_box (&sparp, sqlvals[SPART_TRIPLE_PREDICATE_IDX] , (int)(flags & 1)),
spar_make_literal_from_sql_box (&sparp, sqlvals[SPART_TRIPLE_OBJECT_IDX] , (int)(flags & 1)),
(caddr_t)(_STAR), NULL );
DO_BOX_FAST (caddr_t, itm, src_idx, good_sources_val)
{
SPART *expn = spar_make_literal_from_sql_box (&sparp, itm, 0);
if (SPAR_QNAME == SPART_TYPE (expn))
sources [src_total_count++] = spartlist (&sparp, 4, SPAR_GRAPH,
SPART_GRAPH_FROM, expn->_.qname.val, expn );
}
END_DO_BOX_FAST;
DO_BOX_FAST (caddr_t, itm, src_idx, bad_sources_val)
{
SPART *expn = spar_make_literal_from_sql_box (&sparp, itm, 0);
if (SPAR_QNAME == SPART_TYPE (expn))
sources [src_total_count++] = spartlist (&sparp, 4, SPAR_GRAPH,
SPART_GRAPH_NOT_FROM, expn->_.qname.val, expn );
}
END_DO_BOX_FAST;
if (src_total_count < src_max_count)
{
SPART **tmp = (SPART **)t_alloc_box (src_total_count * sizeof (SPART *), DV_ARRAY_OF_POINTER);
memcpy (tmp, sources, src_total_count * sizeof (SPART *));
sources = tmp;
}
cases = sparp_find_triple_cases (&sparp, triple, sources, SPART_GRAPH_FROM);
case_count = BOX_ELEMENTS (cases);
switch (resulting_format)
{
case QUAD_MAPS_FOR_QUAD:
res = dk_alloc_list (case_count);
for (case_ctr = case_count; case_ctr--; /* no step */)
{
triple_case_t *tc = cases [case_ctr];
jso_rtti_t *sub = gethash (tc->tc_qm, jso_rttis_of_structs);
caddr_t qm_name;
if (NULL == sub)
spar_internal_error (&sparp, "corrupted metadata: PointerToCorrupted");
else if (sub->jrtti_self != tc->tc_qm)
spar_internal_error (&sparp, "corrupted metadata: PointerToStaleDeleted");
qm_name = box_copy (((jso_rtti_t *)(sub))->jrtti_inst_iri);
res [case_ctr] = list (2, qm_name, tc->tc_qm->qmMatchingFlags);
}
break;
case SQL_COLS_FOR_QUAD:
{
dk_set_t acc_maps = NULL;
for (case_ctr = case_count; case_ctr--; /* no step */)
{
triple_case_t *tc = cases [case_ctr];
int fld_ctr;
int unique_bij_fld = -1;
for (fld_ctr = SPART_TRIPLE_FIELDS_COUNT; fld_ctr--; /* no step */)
{
int col_ctr, col_count;
int alias_ctr, alias_count;
caddr_t sqlval = sqlvals [fld_ctr];
dtp_t sqlval_dtp = DV_TYPE_OF (sqlval);
caddr_t **col_descs;
caddr_t map_desc;
SPART *param;
ccaddr_t tmpl;
caddr_t expn_text;
qm_value_t *qmv;
if (DV_DB_NULL == sqlval_dtp)
continue;
qmv = SPARP_FIELD_QMV_OF_QM (tc->tc_qm, fld_ctr);
if ((NULL == qmv) || (!qmv->qmvFormat->qmfIsBijection && !qmv->qmvFormat->qmfDerefFlags))
continue;
if (qmv->qmvColumnsFormKey)
unique_bij_fld = fld_ctr;
col_count = BOX_ELEMENTS (qmv->qmvColumns);
col_descs = (caddr_t **)dk_alloc_list (col_count);
alias_count = BOX_ELEMENTS_0 (qmv->qmvATables);
for (col_ctr = col_count; col_ctr--; /* no step */)
{
qm_column_t *qmc = qmv->qmvColumns[col_ctr];
caddr_t *col_desc;
ccaddr_t table_alias = qmc->qmvcAlias;
ccaddr_t table_name = qmv->qmvTableName;
for (alias_ctr = alias_count; alias_ctr--; /* no step */)
{
if (strcmp (qmv->qmvATables[alias_ctr]->qmvaAlias, table_alias))
continue;
table_name = qmv->qmvATables[alias_ctr]->qmvaTableName;
break;
}
col_desc = (caddr_t *)list (4, box_copy (table_alias), box_copy (table_name), box_copy (qmc->qmvcColumnName), NULL);
col_descs[col_ctr] = col_desc;
}
switch (sqlval_dtp)
{
case DV_UNAME:
if (NULL == fake_global_sql_param)
fake_global_sql_param = spar_make_variable (&sparp, t_box_dv_uname_string (":0"));
param = fake_global_sql_param;
tmpl = qmv->qmvFormat->qmfShortOfUriTmpl;
break;
case DV_IRI_ID: case DV_RDF:
if (NULL == fake_global_sql_param)
fake_global_long_param = spar_make_variable (&sparp, t_box_dv_uname_string (":LONG::0"));
param = fake_global_long_param;
tmpl = qmv->qmvFormat->qmfShortOfLongTmpl; break;
default:
if (NULL == fake_global_sql_param)
fake_global_sql_param = spar_make_variable (&sparp, t_box_dv_uname_string (":0"));
param = fake_global_sql_param;
tmpl = qmv->qmvFormat->qmfShortOfSqlvalTmpl;
break;
}
if (NULL == ssg.ssg_out)
ssg.ssg_out = strses_allocate ();
session_buffered_write (ssg.ssg_out, "vector (", strlen ("vector ("));
ssg_print_tmpl (&ssg, qmv->qmvFormat, tmpl, NULL, NULL, param, NULL_ASNAME);
session_buffered_write (ssg.ssg_out, ")", strlen (")"));
expn_text = strses_string (ssg.ssg_out);
strses_flush (ssg.ssg_out);
map_desc = list (4,
box_num (fld_ctr),
box_num (qmv->qmvColumnsFormKey),
col_descs,
expn_text );
dk_set_push (&acc_maps, map_desc);
}
}
res = (caddr_t *)revlist_to_array (acc_maps);
}
}
}
QR_RESET_CODE
{
du_thread_t *self = THREAD_CURRENT_THREAD;
sparqre.sparqre_catched_error = thr_get_error_code (self);
thr_set_error_code (self, NULL);
POP_QR_RESET;
if (SQL_SUCCESS != sparqre.sparqre_catched_error) /* if err is SQL_SUCCESS will be done bellow as no jump will occur */
{
ssg_free_internals (&ssg);
MP_DONE ();
}
sqlr_resignal (sparqre.sparqre_catched_error);
}
END_QR_RESET
ssg_free_internals (&ssg);
MP_DONE ();
return (caddr_t)res;
}
caddr_t
bif_sparql_quad_maps_for_quad (caddr_t * qst, caddr_t * err_ret, state_slot_t ** args)
{
return bif_sparql_quad_maps_for_quad_impl (qst, err_ret, args, QUAD_MAPS_FOR_QUAD, "sparql_quad_maps_for_quad");
}
caddr_t
bif_sparql_sql_cols_for_quad (caddr_t * qst, caddr_t * err_ret, state_slot_t ** args)
{
return bif_sparql_quad_maps_for_quad_impl (qst, err_ret, args, SQL_COLS_FOR_QUAD, "sparql_sql_cols_for_quad");
}
caddr_t
bif_sprintff_is_proven_bijection (caddr_t * qst, caddr_t * err_ret, state_slot_t ** args)
{
caddr_t f = bif_string_or_uname_arg (qst, args, 0, "__sprintff_is_proven_bijection");
return box_num (sprintff_is_proven_bijection (f));
}
caddr_t
bif_sprintff_is_proven_unparseable (caddr_t * qst, caddr_t * err_ret, state_slot_t ** args)
{
caddr_t f = bif_string_or_uname_arg (qst, args, 0, "__sprintff_is_proven_unparseable");
return box_num (sprintff_is_proven_unparseable (f));
}
caddr_t
bif_sprintff_intersect (caddr_t * qst, caddr_t * err_ret, state_slot_t ** args)
{
caddr_t f1 = bif_string_or_uname_arg (qst, args, 0, "__sprintff_intersect");
caddr_t f2 = bif_string_or_uname_arg (qst, args, 1, "__sprintff_intersect");
boxint ignore_cache = bif_long_arg (qst, args, 2, "__sprintff_intersect");
caddr_t res;
sec_check_dba ((query_instance_t *)qst, "__sprintff_intersect"); /* To prevent attack by intersecting garbage in order to run out of memory. */
res = (caddr_t)sprintff_intersect (f1, f2, ignore_cache);
if (NULL == res)
return NEW_DB_NULL;
return (ignore_cache ? res : box_copy (res));
}
caddr_t
bif_sprintff_like (caddr_t * qst, caddr_t * err_ret, state_slot_t ** args)
{
caddr_t f1 = bif_string_or_uname_arg (qst, args, 0, "__sprintff_like");
caddr_t f2 = bif_string_or_uname_arg (qst, args, 1, "__sprintff_like");
sec_check_dba ((query_instance_t *)qst, "__sprintff_like"); /* To prevent attack by likening garbage in order to run out of memory. */
return box_num (sprintff_like (f1, f2));
}
#ifdef DEBUG
typedef struct spar_lexem_descr_s
{
int ld_val;
const char *ld_yname;
char ld_fmttype;
const char * ld_fmt;
caddr_t *ld_tests;
} spar_lexem_descr_t;
spar_lexem_descr_t spar_lexem_descrs[__SPAR_NONPUNCT_END+1];
#define LEX_PROPS spar_lex_props
#define PUNCT(x) 'P', (x)
#define LITERAL(x) 'L', (x)
#define FAKE(x) 'F', (x)
#define SPAR "s"
#define LAST(x) "L", (x)
#define LAST1(x) "K", (x)
#define MISS(x) "M", (x)
#define ERR(x) "E", (x)
#define PUNCT_SPAR_LAST(x) PUNCT(x), SPAR, LAST(x)
static void spar_lex_props (int val, const char *yname, char fmttype, const char *fmt, ...)
{
va_list tail;
const char *cmd;
dk_set_t tests = NULL;
spar_lexem_descr_t *ld = spar_lexem_descrs + val;
if (0 != ld->ld_val)
GPF_T;
ld->ld_val = val;
ld->ld_yname = yname;
ld->ld_fmttype = fmttype;
ld->ld_fmt = fmt;
va_start (tail, fmt);
for (;;)
{
cmd = va_arg (tail, const char *);
if (NULL == cmd)
break;
dk_set_push (&tests, box_dv_short_string (cmd));
}
va_end (tail);
ld->ld_tests = (caddr_t *)revlist_to_array (tests);
}
static void spar_lexem_descrs_fill (void)
{
static int first_run = 1;
if (!first_run)
return;
first_run = 0;
#include "sparql_lex_props.c"
}
caddr_t
bif_sparql_lex_test (caddr_t * qst, caddr_t * err_ret, state_slot_t ** args)
{
dk_set_t report = NULL;
int tested_lex_val = 0;
spar_lexem_descrs_fill ();
for (tested_lex_val = 0; tested_lex_val < __SPAR_NONPUNCT_END; tested_lex_val++)
{
char cmd;
caddr_t **lexems;
unsigned lex_count;
unsigned cmd_idx = 0;
int last_lval, last1_lval;
spar_lexem_descr_t *ld = spar_lexem_descrs + tested_lex_val;
if (0 == ld->ld_val)
continue;
dk_set_push (&report, box_dv_short_string (""));
dk_set_push (&report,
box_sprintf (0x100, "#define % 25s %d /* '%s' (%c) */",
ld->ld_yname, ld->ld_val, ld->ld_fmt, ld->ld_fmttype ) );
for (cmd_idx = 0; cmd_idx < BOX_ELEMENTS(ld->ld_tests); cmd_idx++)
{
cmd = ld->ld_tests[cmd_idx][0];
switch (cmd)
{
case 's': break; /* Fake, SPARQL has only one mode */
case 'K': case 'L': case 'M': case 'E':
cmd_idx++;
lexems = (caddr_t **) spar_query_lex_analyze (ld->ld_tests[cmd_idx], QST_CHARSET(qst));
dk_set_push (&report, box_dv_short_string (ld->ld_tests[cmd_idx]));
lex_count = BOX_ELEMENTS (lexems);
if (0 == lex_count)
{
dk_set_push (&report, box_dv_short_string ("FAILED: no lexems parsed and no error reported!"));
goto end_of_test;
}
{ char buf[0x1000]; char *buf_tail = buf;
unsigned lctr = 0;
for (lctr = 0; lctr < lex_count && (5 == BOX_ELEMENTS(lexems[lctr])); lctr++)
{
ptrlong *ldata = ((ptrlong *)(lexems[lctr]));
int lval = ldata[3];
spar_lexem_descr_t *ld = spar_lexem_descrs + lval;
if (ld->ld_val)
buf_tail += sprintf (buf_tail, " %s", ld->ld_yname);
else if (lval < 0x100)
buf_tail += sprintf (buf_tail, " '%c'", lval);
else GPF_T;
buf_tail += sprintf (buf_tail, " %ld ", (long)(ldata[4]));
}
buf_tail[0] = '\0';
dk_set_push (&report, box_dv_short_string (buf));
}
if (3 == BOX_ELEMENTS(lexems[lex_count-1])) /* lexical error */
{
dk_set_push (&report,
box_sprintf (0x1000, "%s: ERROR %s",
('E' == cmd) ? "PASSED": "FAILED", lexems[lex_count-1][2] ) );
goto end_of_test;
}
if (END_OF_SPARQL_TEXT != ((ptrlong *)(lexems[lex_count-1]))[3])
{
dk_set_push (&report, box_dv_short_string ("FAILED: end of source is not reached and no error reported!"));
goto end_of_test;
}
if (1 == lex_count)
{
dk_set_push (&report, box_dv_short_string ("FAILED: no lexems parsed and only end of source has found!"));
goto end_of_test;
}
last_lval = ((ptrlong *)(lexems[lex_count-2]))[3];
if ('E' == cmd)
{
dk_set_push (&report,
box_sprintf (0x1000, "FAILED: %d lexems found, last lexem is %d, must be error",
lex_count, last_lval) );
goto end_of_test;
}
if ('K' == cmd)
{
if (4 > lex_count)
{
dk_set_push (&report,
box_sprintf (0x1000, "FAILED: %d lexems found, the number of actual lexems is less than two",
lex_count ) );
goto end_of_test;
}
last1_lval = ((ptrlong *)(lexems[lex_count-3]))[3];
dk_set_push (&report,
box_sprintf (0x1000, "%s: %d lexems found, one-before-last lexem is %d, must be %d",
(last1_lval == tested_lex_val) ? "PASSED": "FAILED", lex_count, last1_lval, tested_lex_val) );
goto end_of_test;
}
if ('L' == cmd)
{
dk_set_push (&report,
box_sprintf (0x1000, "%s: %d lexems found, last lexem is %d, must be %d",
(last_lval == tested_lex_val) ? "PASSED": "FAILED", lex_count, last_lval, tested_lex_val) );
goto end_of_test;
}
if ('M' == cmd)
{
unsigned lctr;
for (lctr = 0; lctr < lex_count; lctr++)
{
int lval = ((ptrlong *)(lexems[lctr]))[3];
if (lval == tested_lex_val)
{
dk_set_push (&report,
box_sprintf (0x1000, "FAILED: %d lexems found, lexem %d is found but it should not occur",
lex_count, tested_lex_val) );
goto end_of_test;
}
}
dk_set_push (&report,
box_sprintf (0x1000, "PASSED: %d lexems found, lexem %d is not found and it should not occur",
lex_count, tested_lex_val) );
goto end_of_test;
}
GPF_T;
end_of_test:
dk_free_tree (lexems);
break;
default: GPF_T;
}
}
}
return revlist_to_array (report);
}
#endif
extern caddr_t bif_sparql_rdb2rdf_codegen (caddr_t * qst, caddr_t * err_ret, state_slot_t ** args);
extern caddr_t bif_sparql_rdb2rdf_list_tables (caddr_t * qst, caddr_t * err_ret, state_slot_t ** args);
void
sparql_init (void)
{
caddr_t err;
rdf_ds_load_all();
iri_to_id_nosignal_cached_qr = sql_compile_static (iri_to_id_nosignal_text, bootstrap_cli, &err, SQLC_STATIC_PRESERVES_TREE);
id_to_iri_cached_qr = sql_compile_static (id_to_iri_text, bootstrap_cli, &err, SQLC_STATIC_PRESERVES_TREE);
bif_define ("sparql_to_sql_text", bif_sparql_to_sql_text);
bif_define ("sparql_detalize", bif_sparql_detalize);
bif_define ("sparql_explain", bif_sparql_explain);
bif_define ("sparql_lex_analyze", bif_sparql_lex_analyze);
bif_define ("sparql_quad_maps_for_quad", bif_sparql_quad_maps_for_quad);
bif_define ("sparql_sql_cols_for_quad", bif_sparql_sql_cols_for_quad);
bif_define ("sparql_rdb2rdf_codegen", bif_sparql_rdb2rdf_codegen);
bif_define ("sparql_rdb2rdf_list_tables", bif_sparql_rdb2rdf_list_tables);
bif_define ("__sprintff_is_proven_bijection", bif_sprintff_is_proven_bijection);
bif_define ("__sprintff_is_proven_unparseable", bif_sprintff_is_proven_unparseable);
bif_define ("__sprintff_intersect", bif_sprintff_intersect);
bif_define ("__sprintff_like", bif_sprintff_like);
#ifdef DEBUG
bif_define ("sparql_lex_test", bif_sparql_lex_test);
#endif
}
|