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
|
/*!
\file lib/vector/Vlib/write_pg.c
\brief Vector library - write vector feature (PostGIS format)
Higher level functions for reading/writing/manipulating vectors.
Write subroutine inspired by OGR PostgreSQL driver.
\todo PostGIS version of V2__delete_area_cats_from_cidx_nat()
\todo function to delete corresponding entry in fidx
\todo PostGIS version of V2__add_area_cats_to_cidx_nat
(C) 2012-2014 by Martin Landa, and the GRASS Development Team
This program is free software under the GNU General Public License
(>=v2). Read the file COPYING that comes with GRASS for details.
\author Martin Landa <landa.martin gmail.com>
*/
#include <inttypes.h>
#include <string.h>
#include <grass/vector.h>
#include <grass/glocale.h>
#include "local_proto.h"
#ifdef HAVE_POSTGRES
#include "pg_local_proto.h"
#define WKBSRIDFLAG 0x20000000
#define TOPOGEOM_COLUMN "topo"
/*! Use SQL statements from PostGIS Topology extension (this options
is quite slow. By default are used simple SQL statements (INSERT, UPDATE)
*/
#define USE_TOPO_STMT 0
static int create_table(struct Format_info_pg *);
static int check_schema(const struct Format_info_pg *);
static int create_topo_schema(struct Format_info_pg *, int);
static int create_pg_layer(struct Map_info *, int);
static char *get_sftype(SF_FeatureType);
static off_t write_line_sf(struct Map_info *, int, const struct line_pnts **,
int, const struct line_cats *);
static off_t write_line_tp(struct Map_info *, int, int,
const struct line_pnts *, const struct line_cats *);
static char *binary_to_hex(int, const unsigned char *);
static unsigned char *point_to_wkb(int, const struct line_pnts *, int, int *);
static unsigned char *linestring_to_wkb(int, const struct line_pnts *, int,
int *);
static unsigned char *polygon_to_wkb(int, const struct line_pnts **, int, int,
int *);
static char *line_to_wkb(struct Format_info_pg *, const struct line_pnts **,
int, int, int);
static int write_feature(struct Map_info *, int, int, const struct line_pnts **,
int, int);
static char *build_insert_stmt(const struct Format_info_pg *, const char *, int,
int);
static int insert_topo_element(struct Map_info *, int, int, const char *);
static int type_to_topogeom(const struct Format_info_pg *);
static int update_next_edge(struct Map_info *, int, int);
#if 0 /* unused */
static int delete_face(struct Map_info *, int);
static int update_topo_edge(struct Map_info *, int);
#endif
static int update_topo_face(struct Map_info *, int);
static int add_line_to_topo_pg(struct Map_info *, off_t, int,
const struct line_pnts *);
static int delete_line_from_topo_pg(struct Map_info *, int, int,
const struct line_pnts *);
static int set_constraint_to_deferrable(struct Format_info_pg *, const char *,
const char *, const char *,
const char *, const char *);
static dbDriver *open_db(struct Format_info_pg *);
static struct line_pnts *Points;
#define NOPG_UNUSED
#else
#define NOPG_UNUSED UNUSED
#endif
/*!
\brief Writes feature on level 1 (PostGIS interface)
Notes for simple feature access:
- centroids are not supported in PostGIS, pseudotopo holds virtual
centroids
- boundaries are not supported in PostGIS, pseudotopo treats polygons
as boundaries
Notes for PostGIS Topology access:
- centroids are stored as isolated nodes
- boundaries are stored as edges
\param Map pointer to Map_info structure
\param type feature type (GV_POINT, GV_LINE, ...)
\param points pointer to line_pnts structure (feature geometry)
\param cats pointer to line_cats structure (feature categories)
\return feature offset into file
\return -1 on error
*/
off_t V1_write_line_pg(struct Map_info *Map NOPG_UNUSED, int type NOPG_UNUSED,
const struct line_pnts *points NOPG_UNUSED,
const struct line_cats *cats NOPG_UNUSED)
{
#ifdef HAVE_POSTGRES
struct Format_info_pg *pg_info;
pg_info = &(Map->fInfo.pg);
if (pg_info->feature_type == SF_GEOMETRY) {
/* create PostGIS table if doesn't exist */
if (create_pg_layer(Map, type) < 0)
return -1;
}
if (!points)
return 0;
if (!pg_info->toposchema_name) { /* simple features access */
return write_line_sf(Map, type, &points, 1, cats);
}
/* PostGIS Topology access */
return write_line_tp(Map, type, FALSE, points, cats);
#else
G_fatal_error(_("GRASS is not compiled with PostgreSQL support"));
return -1;
#endif
}
/*!
\brief Writes feature on topological level (PostGIS interface)
Calls V2_write_line_sfa() for simple features access.
\param Map pointer to Map_info structure
\param type feature type (GV_POINT, GV_LINE, ...)
\param points pointer to line_pnts structure (feature geometry)
\param cats pointer to line_cats structure (feature categories)
\return feature offset into file
\return -1 on error
*/
off_t V2_write_line_pg(struct Map_info *Map NOPG_UNUSED, int type NOPG_UNUSED,
const struct line_pnts *points NOPG_UNUSED,
const struct line_cats *cats NOPG_UNUSED)
{
#ifdef HAVE_POSTGRES
struct Format_info_pg *pg_info;
pg_info = &(Map->fInfo.pg);
if (!pg_info->toposchema_name) { /* pseudo-topology */
return V2_write_line_sfa(Map, type, points, cats);
}
/* PostGIS Topology */
return write_line_tp(Map, type, FALSE, points, cats);
#else
G_fatal_error(_("GRASS is not compiled with PostgreSQL support"));
return -1;
#endif
}
/*!
\brief Rewrites feature at the given offset (level 1) (PostGIS interface,
internal use only)
Only for simple feature access. PostGIS Topology requires level 2.
\todo Use UPDATE statement ?
\param Map pointer to Map_info structure
\param offset feature offset
\param type feature type (GV_POINT, GV_LINE, ...)
\param points feature geometry
\param cats feature categories
\return feature offset (rewritten feature)
\return -1 on error
*/
off_t V1_rewrite_line_pg(struct Map_info *Map NOPG_UNUSED, off_t offset,
int type, const struct line_pnts *points NOPG_UNUSED,
const struct line_cats *cats NOPG_UNUSED)
{
G_debug(3, "V1_rewrite_line_pg(): type=%d offset=%" PRId64, type, offset);
#ifdef HAVE_POSTGRES
if (type != V1_read_line_pg(Map, NULL, NULL, offset)) {
G_warning(_("Unable to rewrite feature (incompatible feature types)"));
return -1;
}
/* delete old */
V1_delete_line_pg(Map, offset);
return V1_write_line_pg(Map, type, points, cats);
#else
G_fatal_error(_("GRASS is not compiled with PostgreSQL support"));
return -1;
#endif
}
/*!
\brief Rewrites feature at topological level (PostGIS interface, internal use
only)
Note: Topology must be built at level >= GV_BUILD_BASE
\todo Handle also categories
\todo Store original geometry in tmp table for restore
\param Map pointer to Map_info structure
\param line feature id
\param type feature type (GV_POINT, GV_LINE, ...)
\param points feature geometry
\param cats feature categories (unused)
\return offset where feature was rewritten
\return -1 on error
*/
off_t V2_rewrite_line_pg(struct Map_info *Map NOPG_UNUSED, off_t line, int type,
const struct line_pnts *points NOPG_UNUSED,
const struct line_cats *cats UNUSED)
{
G_debug(3, "V2_rewrite_line_pg(): line=%d type=%d", (int)line, type);
#ifdef HAVE_POSTGRES
const char *schema_name, *table_name, *keycolumn;
char *stmt, *geom_data;
struct Format_info_pg *pg_info;
struct P_line *Line;
off_t offset;
geom_data = NULL;
stmt = NULL;
pg_info = &(Map->fInfo.pg);
if (line < 1 || line > Map->plus.n_lines) {
G_warning(_("Attempt to access feature with invalid id (%d)"),
(int)line);
return -1;
}
Line = Map->plus.Line[line];
if (Line == NULL) {
G_warning(_("Attempt to access dead feature %d"), (int)line);
return -1;
}
offset = Line->offset;
if (!(Map->plus.update_cidx)) {
Map->plus.cidx_up_to_date = FALSE; /* category index will be outdated */
}
if (!Points)
Points = Vect_new_line_struct();
if (type != V2_read_line_pg(Map, Points, NULL, line)) {
G_warning(_("Unable to rewrite feature (incompatible feature types)"));
return -1;
}
/* remove line from topology */
if (0 != delete_line_from_topo_pg(Map, line, type, Points))
return -1;
if (pg_info->toposchema_name) { /* PostGIS Topology */
schema_name = pg_info->toposchema_name;
if (type & GV_POINTS) {
table_name = keycolumn = "node";
}
else {
table_name = "edge_data";
keycolumn = "edge";
}
}
else { /* simple features access */
schema_name = pg_info->schema_name;
table_name = pg_info->table_name;
keycolumn = pg_info->fid_column;
}
geom_data = line_to_wkb(pg_info, &points, 1, type, Map->head.with_z);
G_asprintf(&stmt,
"UPDATE \"%s\".\"%s\" SET geom = '%s'::GEOMETRY WHERE %s_id = "
"%" PRId64,
schema_name, table_name, geom_data, keycolumn, line);
G_free(geom_data);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
G_warning(_("Unable to rewrite feature %d"), (int)line);
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
/* update topology
note: offset is not changed */
return add_line_to_topo_pg(Map, offset, type, points);
#else
G_fatal_error(_("GRASS is not compiled with PostgreSQL support"));
return -1;
#endif
}
/*!
\brief Deletes feature at the given offset (level 1)
Only for simple feature access. PostGIS Topology requires level 2.
\param Map pointer Map_info structure
\param offset feature offset
\return 0 on success
\return -1 on error
*/
int V1_delete_line_pg(struct Map_info *Map NOPG_UNUSED,
off_t offset NOPG_UNUSED)
{
#ifdef HAVE_POSTGRES
long fid;
char stmt[DB_SQL_MAX];
struct Format_info_pg *pg_info;
pg_info = &(Map->fInfo.pg);
if (!pg_info->conn || !pg_info->table_name) {
G_warning(_("No connection defined"));
return -1;
}
if (offset >= pg_info->offset.array_num) {
G_warning(_("Invalid offset (%" PRId64 ")"), offset);
return -1;
}
fid = pg_info->offset.array[offset];
G_debug(3, "V1_delete_line_pg(): offset = %lu -> fid = %ld",
(unsigned long)offset, fid);
if (!pg_info->inTransaction) {
/* start transaction */
pg_info->inTransaction = TRUE;
if (Vect__execute_pg(pg_info->conn, "BEGIN") == -1)
return -1;
}
sprintf(stmt, "DELETE FROM %s WHERE %s = %ld", pg_info->table_name,
pg_info->fid_column, fid);
G_debug(3, "SQL: %s", stmt);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
G_warning(_("Unable to delete feature"));
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
return 0;
#else
G_fatal_error(_("GRASS is not compiled with PostgreSQL support"));
return -1;
#endif
}
/*!
\brief Deletes feature on topological level (PostGIS interface)
Note: Topology must be built at level >= GV_BUILD_BASE
Calls V2_delete_line_sfa() for simple feature access.
\param Map pointer to Map_info structure
\param line feature id to be deleted
\return 0 on success
\return -1 on error
*/
int V2_delete_line_pg(struct Map_info *Map NOPG_UNUSED, off_t line NOPG_UNUSED)
{
#ifdef HAVE_POSTGRES
int ret;
struct Format_info_pg *pg_info;
pg_info = &(Map->fInfo.pg);
if (line < 1 || line > Map->plus.n_lines) {
G_warning(_("Attempt to access feature with invalid id (%d)"),
(int)line);
return -1;
}
if (!pg_info->toposchema_name) { /* pseudo-topology */
return V2_delete_line_sfa(Map, line);
}
else { /* PostGIS topology */
int type;
char stmt[DB_SQL_MAX];
const char *table_name, *keycolumn;
struct P_line *Line;
if (line < 1 || line > Map->plus.n_lines) {
G_warning(_("Attempt to access feature with invalid id (%d)"),
(int)line);
return -1;
}
Line = Map->plus.Line[line];
if (!Line) {
G_warning(_("Attempt to access dead feature %d"), (int)line);
return -1;
}
if (!(Map->plus.update_cidx)) {
Map->plus.cidx_up_to_date =
FALSE; /* category index will be outdated */
}
Vect__execute_pg(pg_info->conn, "BEGIN");
if (Line->type & GV_POINTS) {
table_name = keycolumn = "node";
}
else {
table_name = "edge_data";
keycolumn = "edge";
/* first remove references to this edge */
/* (1) left next edge */
sprintf(stmt,
"UPDATE \"%s\".\"%s\" SET abs_next_left_edge = edge_id, "
"next_left_edge = -edge_id WHERE abs_next_left_edge = %d",
pg_info->toposchema_name, table_name, (int)Line->offset);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
/* (2) right next edge */
sprintf(stmt,
"UPDATE \"%s\".\"%s\" SET abs_next_right_edge = edge_id, "
"next_right_edge = edge_id WHERE abs_next_right_edge = %d",
pg_info->toposchema_name, table_name, (int)Line->offset);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
}
/* read the line */
if (!Points)
Points = Vect_new_line_struct();
type = V2_read_line_pg(Map, Points, NULL, line);
if (type < 0)
return -1;
/* delete record from topology table */
sprintf(stmt, "DELETE FROM \"%s\".\"%s\" WHERE %s_id = %d",
pg_info->toposchema_name, table_name, keycolumn,
(int)Line->offset);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
G_warning(_("Unable to delete feature (%s) %d"), keycolumn,
(int)line);
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
if (pg_info->cache.ctype == CACHE_MAP) {
/* delete from cache */
Vect_destroy_line_struct(pg_info->cache.lines[line - 1]);
pg_info->cache.lines[line - 1] = NULL;
pg_info->cache.lines_types[line - 1] = 0;
pg_info->cache.lines_cats[line - 1] = 0;
}
/* update topology */
ret = delete_line_from_topo_pg(Map, line, type, Points);
if (ret == 0)
Vect__execute_pg(pg_info->conn, "COMMIT");
return ret;
}
#else
G_fatal_error(_("GRASS is not compiled with PostgreSQL support"));
return -1;
#endif
}
#ifdef HAVE_POSTGRES
/*!
\brief Writes node on topological level (PostGIS Topology
interface, internal use only)
The vector map must be open on level 2 at least with
GV_BUILD_BASE. PostGIS Topology schema must be defined.
\param Map pointer to Map_info structure
\param node node id (starts at 1)
\param points pointer to line_pnts structure
\return 0 on success
\return -1 on error
*/
off_t V2__write_node_pg(struct Map_info *Map, const struct line_pnts *points)
{
struct Format_info_pg *pg_info;
pg_info = &(Map->fInfo.pg);
if (!pg_info->toposchema_name)
return -1; /* PostGIS Topology required */
return write_line_tp(Map, GV_POINT, TRUE, points, NULL);
}
/*!
\brief Writes area on topological level (PostGIS Simple Features
interface, internal use only)
\param Map pointer to Map_info structure
\param points feature geometry (exterior + interior rings)
\param nparts number of parts including exterior ring
\param cats feature categories
\return feature offset
\return -1 on error
*/
off_t V2__write_area_pg(struct Map_info *Map, const struct line_pnts **points,
int nparts, const struct line_cats *cats)
{
return write_line_sf(Map, GV_BOUNDARY, points, nparts, cats);
}
/*!
\brief Updates simple features geometry from GRASS-like topo
\param Map pointer to Map_info structure
\param points feature geometry (exterior + interior rings)
\param nparts number of parts including exterior ring
\param cat area category
\return 0 on success
\return -1 on error
*/
int V2__update_area_pg(struct Map_info *Map, const struct line_pnts **points,
int nparts, int cat)
{
int part, npoints;
char *stmt, *geom_data;
struct Format_info_pg *pg_info;
pg_info = &(Map->fInfo.pg);
for (part = 0; part < nparts; part++) {
npoints = points[part]->n_points - 1;
if (points[part]->x[0] != points[part]->x[npoints] ||
points[part]->y[0] != points[part]->y[npoints] ||
points[part]->z[0] != points[part]->z[npoints]) {
G_warning(_("Boundary is not closed. Skipping."));
return -1;
}
}
geom_data = line_to_wkb(pg_info, points, nparts, GV_AREA, Vect_is_3d(Map));
if (!geom_data)
return -1;
stmt = NULL;
G_asprintf(&stmt,
"UPDATE \"%s\".\"%s\" SET %s = '%s'::GEOMETRY WHERE %s = %d",
pg_info->schema_name, pg_info->table_name, pg_info->geom_column,
geom_data, pg_info->fid_column, cat);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
/* rollback transaction */
Vect__execute_pg(pg_info->conn, "ROLLBACK");
G_free(geom_data);
G_free(stmt);
return -1;
}
G_free(geom_data);
G_free(stmt);
return 0;
}
/*!
\brief Create new feature table
\param pg_info pointer to Format_info_pg
\return -1 on error
\return 0 on success
*/
int create_table(struct Format_info_pg *pg_info)
{
int spatial_index, primary_key;
char stmt[DB_SQL_MAX];
char *geom_type, *def_file;
struct field_info *Fi;
PGresult *result;
def_file = getenv("GRASS_VECTOR_PGFILE");
/* by default create spatial index & add primary key */
spatial_index = primary_key = TRUE;
if (G_find_file2("", def_file ? def_file : "PG", G_mapset())) {
FILE *fp;
const char *p;
struct Key_Value *key_val;
fp = G_fopen_old("", def_file ? def_file : "PG", G_mapset());
if (!fp) {
G_warning(_("Unable to open PG file"));
}
else {
key_val = G_fread_key_value(fp);
fclose(fp);
/* disable spatial index ? */
p = G_find_key_value("spatial_index", key_val);
if (p && G_strcasecmp(p, "no") == 0)
spatial_index = FALSE;
/* disable primary key ? */
p = G_find_key_value("primary_key", key_val);
if (p && G_strcasecmp(p, "no") == 0)
primary_key = FALSE;
G_free_key_value(key_val);
}
}
/* create schema if not exists */
if (G_strcasecmp(pg_info->schema_name, "public") != 0) {
if (check_schema(pg_info) != 0)
return -1;
}
/* prepare CREATE TABLE statement */
sprintf(stmt, "CREATE TABLE \"%s\".\"%s\" (%s SERIAL%s, %s INTEGER",
pg_info->schema_name, pg_info->table_name, pg_info->fid_column,
primary_key ? " PRIMARY KEY" : "", GV_KEY_COLUMN);
Fi = pg_info->fi;
if (Fi) {
/* append attributes */
int col, ncols, sqltype, length;
char stmt_col[DB_SQL_MAX];
const char *colname;
dbString dbtable_name;
dbDriver *driver;
dbTable *table;
dbColumn *column;
db_init_string(&dbtable_name);
driver = open_db(pg_info);
if (driver == NULL)
return -1;
/* describe table */
db_set_string(&dbtable_name, Fi->table);
if (db_describe_table(driver, &dbtable_name, &table) != DB_OK) {
G_warning(_("Unable to describe table <%s>"), Fi->table);
db_close_database_shutdown_driver(driver);
pg_info->dbdriver = NULL;
return -1;
}
ncols = db_get_table_number_of_columns(table);
G_debug(3,
"copying attributes: driver = %s database = %s table = %s cols "
"= %d",
Fi->driver, Fi->database, Fi->table, ncols);
for (col = 0; col < ncols; col++) {
column = db_get_table_column(table, col);
colname = db_get_column_name(column);
sqltype = db_get_column_sqltype(column);
length = db_get_column_length(column);
G_debug(3, "\tcolumn = %d name = %s type = %d length = %d", col,
colname, sqltype, length);
if (G_strcasecmp(pg_info->fid_column, colname) == 0 ||
G_strcasecmp(GV_KEY_COLUMN, colname) == 0) {
/* skip fid column if exists */
G_debug(3, "\t%s skipped", colname);
continue;
}
/* append column */
sprintf(stmt_col, ",\"%s\" %s", colname, db_sqltype_name(sqltype));
strcat(stmt, stmt_col);
if (sqltype == DB_SQL_TYPE_CHARACTER) {
/* length only for string columns */
sprintf(stmt_col, "(%d)", length);
strcat(stmt, stmt_col);
}
}
db_free_string(&dbtable_name);
}
strcat(stmt, ")"); /* close CREATE TABLE statement */
/* begin transaction (create table) */
if (Vect__execute_pg(pg_info->conn, "BEGIN") == -1) {
return -1;
}
/* create table */
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
/* determine geometry type (string) */
switch (pg_info->feature_type) {
case (SF_POINT):
geom_type = "POINT";
break;
case (SF_LINESTRING):
geom_type = "LINESTRING";
break;
case (SF_POLYGON):
geom_type = "POLYGON";
break;
case (SF_POLYGON25D):
geom_type = "POLYGONZ";
break;
case (SF_GEOMETRY):
geom_type = "GEOMETRY";
break;
default:
G_warning(_("Unsupported feature type %d"), pg_info->feature_type);
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
/* add geometry column */
sprintf(stmt,
"SELECT AddGeometryColumn('%s', '%s', "
"'%s', %d, '%s', %d)",
pg_info->schema_name, pg_info->table_name, pg_info->geom_column,
pg_info->srid, geom_type, pg_info->coor_dim);
G_debug(2, "SQL: %s", stmt);
result = PQexec(pg_info->conn, stmt);
if (!result || PQresultStatus(result) != PGRES_TUPLES_OK) {
G_warning("%s", PQresultErrorMessage(result));
PQclear(result);
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
/* create indices
- GV_KEY_COLUMN
- geometry column
*/
sprintf(stmt, "CREATE INDEX %s_%s_idx ON \"%s\".\"%s\" (%s)",
pg_info->table_name, GV_KEY_COLUMN, pg_info->schema_name,
pg_info->table_name, GV_KEY_COLUMN);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
if (spatial_index) {
G_verbose_message(_("Building spatial index on <%s>..."),
pg_info->geom_column);
sprintf(stmt, "CREATE INDEX %s_%s_idx ON \"%s\".\"%s\" USING GIST (%s)",
pg_info->table_name, pg_info->geom_column, pg_info->schema_name,
pg_info->table_name, pg_info->geom_column);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
}
/* close transaction (create table) */
if (Vect__execute_pg(pg_info->conn, "COMMIT") == -1) {
return -1;
}
return 0;
}
/*!
\brief Creates new schema for feature table if not exists
\param pg_info pointer to Format_info_pg
\return -1 on error
\return 0 on success
*/
int check_schema(const struct Format_info_pg *pg_info)
{
int i, found, nschema;
char stmt[DB_SQL_MAX];
PGresult *result;
if (!pg_info->conn || !pg_info->table_name) {
G_warning(_("No connection defined"));
return -1;
}
/* add geometry column */
sprintf(stmt, "SELECT nspname FROM pg_namespace");
G_debug(2, "SQL: %s", stmt);
result = PQexec(pg_info->conn, stmt);
if (!result || PQresultStatus(result) != PGRES_TUPLES_OK) {
PQclear(result);
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
found = FALSE;
nschema = PQntuples(result);
for (i = 0; i < nschema && !found; i++) {
if (strcmp(pg_info->schema_name, PQgetvalue(result, i, 0)) == 0)
found = TRUE;
}
PQclear(result);
if (!found) {
sprintf(stmt, "CREATE SCHEMA %s", pg_info->schema_name);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
G_warning(_("Schema <%s> doesn't exist, created"),
pg_info->schema_name);
}
return 0;
}
/*!
\brief Create new PostGIS topology schema
- create topology schema
- add topology column to the feature table
\todo Add constraints for grass-like tables
\param pg_info pointer to Format_info_pg
\return 0 on success
\return 1 topology disable, nothing to do
\return -1 on failure
*/
int create_topo_schema(struct Format_info_pg *pg_info, int with_z)
{
double tolerance;
char stmt[DB_SQL_MAX];
char *def_file;
def_file = getenv("GRASS_VECTOR_PGFILE");
/* read default values from PG file */
tolerance = 0.;
if (G_find_file2("", def_file ? def_file : "PG", G_mapset())) {
FILE *fp;
const char *p;
struct Key_Value *key_val;
fp = G_fopen_old("", def_file ? def_file : "PG", G_mapset());
if (!fp) {
G_fatal_error(_("Unable to open PG file"));
}
key_val = G_fread_key_value(fp);
fclose(fp);
/* tolerance */
p = G_find_key_value("topo_tolerance", key_val);
if (p)
tolerance = atof(p);
G_debug(1, "PG: tolerance: %f", tolerance);
/* topogeom column */
p = G_find_key_value("topogeom_name", key_val);
if (p)
pg_info->topogeom_column = G_store(p);
else
pg_info->topogeom_column = G_store(TOPOGEOM_COLUMN);
G_debug(1, "PG: topogeom_column :%s", pg_info->topogeom_column);
/* topo-geo only (default: no) */
p = G_find_key_value("topo_geo_only", key_val);
if (p && G_strcasecmp(p, "yes") == 0)
pg_info->topo_geo_only = TRUE;
G_debug(1, "PG: topo_geo_only :%d", pg_info->topo_geo_only);
/* build simple features from topogeometry data */
p = G_find_key_value("simple_feature", key_val);
if (p && G_strcasecmp(p, "yes") == 0)
pg_info->topo_geo_only = TRUE;
G_debug(1, "PG: topo_geo_only :%d", pg_info->topo_geo_only);
G_free_key_value(key_val);
}
/* begin transaction (create topo schema) */
if (Vect__execute_pg(pg_info->conn, "BEGIN") == -1) {
return -1;
}
/* create topology schema */
G_verbose_message(_("Creating topology schema <%s>..."),
pg_info->toposchema_name);
sprintf(stmt,
"SELECT topology.createtopology('%s', "
"find_srid('%s', '%s', '%s'), %f, '%s')",
pg_info->toposchema_name, pg_info->schema_name, pg_info->table_name,
pg_info->geom_column, tolerance, with_z == WITH_Z ? "t" : "f");
pg_info->toposchema_id = Vect__execute_get_value_pg(pg_info->conn, stmt);
if (pg_info->toposchema_id == -1) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
/* add topo column to the feature table */
G_verbose_message(_("Adding new topology column <%s>..."),
pg_info->topogeom_column);
sprintf(stmt,
"SELECT topology.AddTopoGeometryColumn('%s', '%s', '%s', "
"'%s', '%s')",
pg_info->toposchema_name, pg_info->schema_name, pg_info->table_name,
pg_info->topogeom_column, get_sftype(pg_info->feature_type));
if (-1 == Vect__execute_get_value_pg(pg_info->conn, stmt)) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
/* create index on topo column */
sprintf(stmt, "CREATE INDEX \"%s_%s_%s_idx\" ON \"%s\".\"%s\" (((%s).id))",
pg_info->schema_name, pg_info->table_name, pg_info->topogeom_column,
pg_info->schema_name, pg_info->table_name,
pg_info->topogeom_column);
if (-1 == Vect__execute_pg(pg_info->conn, stmt)) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
/* change constraints to deferrable initially deferred */
if (!pg_info->topo_geo_only) {
if (-1 == set_constraint_to_deferrable(pg_info, "node", "face_exists",
"containing_face", "face",
"face_id") ||
-1 == set_constraint_to_deferrable(pg_info, "edge_data",
"end_node_exists", "end_node",
"node", "node_id") ||
-1 == set_constraint_to_deferrable(pg_info, "edge_data",
"left_face_exists", "left_face",
"face", "face_id") ||
-1 == set_constraint_to_deferrable(
pg_info, "edge_data", "right_face_exists", "right_face",
"face", "face_id") ||
-1 == set_constraint_to_deferrable(pg_info, "edge_data",
"start_node_exists",
"start_node", "node", "node_id"))
return -1;
}
/* create additional tables in topological schema to store
GRASS topology in DB */
if (!pg_info->topo_geo_only) {
/* (1) create 'node_grass' (see P_node struct)
todo: add constraints for lines and angles
*/
sprintf(stmt,
"CREATE TABLE \"%s\".%s (node_id SERIAL PRIMARY KEY, "
"lines integer[], angles float[])",
pg_info->toposchema_name, TOPO_TABLE_NODE);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
sprintf(stmt,
"ALTER TABLE \"%s\".%s ADD CONSTRAINT node_exists "
"FOREIGN KEY (node_id) REFERENCES \"%s\".node (node_id) "
"DEFERRABLE INITIALLY DEFERRED",
pg_info->toposchema_name, TOPO_TABLE_NODE,
pg_info->toposchema_name);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
/* (2) create 'line_grass' (see P_line struct)
*/
sprintf(stmt,
"CREATE TABLE \"%s\".%s (line_id SERIAL PRIMARY KEY, "
"left_area integer, right_area integer)",
pg_info->toposchema_name, TOPO_TABLE_LINE);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
sprintf(stmt,
"ALTER TABLE \"%s\".%s ADD CONSTRAINT line_exists "
"FOREIGN KEY (line_id) REFERENCES \"%s\".edge_data (edge_id) "
"DEFERRABLE INITIALLY DEFERRED",
pg_info->toposchema_name, TOPO_TABLE_LINE,
pg_info->toposchema_name);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
/* (3) create 'area_grass' (see P_area struct)
todo: add constraints for lines, centtroid and isles
*/
sprintf(stmt,
"CREATE TABLE \"%s\".%s (area_id SERIAL PRIMARY KEY, "
"lines integer[], centroid integer, isles integer[])",
pg_info->toposchema_name, TOPO_TABLE_AREA);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
/* (4) create 'isle_grass' (see P_isle struct)
todo: add constraints for lines and area
*/
sprintf(stmt,
"CREATE TABLE \"%s\".%s (isle_id SERIAL PRIMARY KEY, "
"lines integer[], area integer)",
pg_info->toposchema_name, TOPO_TABLE_ISLE);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
}
/* close transaction (create topo schema) */
if (Vect__execute_pg(pg_info->conn, "COMMIT") == -1) {
return -1;
}
return 0;
}
/*!
\brief Create new PostGIS layer in given database (internal use only)
V1_open_new_pg() must be called before this function.
List of currently supported types:
- GV_POINT (SF_POINT)
- GV_LINE (SF_LINESTRING)
- GV_BOUNDARY (SF_POLYGON)
When PostGIS Topology the map level is updated to topological level
and build level set to GV_BUILD_BASE.
\param[in,out] Map pointer to Map_info structure
\param type feature type (GV_POINT, GV_LINE, ...)
\return 0 success
\return -1 error
*/
int create_pg_layer(struct Map_info *Map, int type)
{
int ndblinks;
struct Format_info_pg *pg_info;
pg_info = &(Map->fInfo.pg);
if (!pg_info->conninfo) {
G_warning(_("Connection string not defined"));
return -1;
}
if (!pg_info->table_name) {
G_warning(_("PostGIS feature table not defined"));
return -1;
}
G_debug(1, "Vect__open_new_pg(): conninfo='%s' table='%s' -> type = %d",
pg_info->conninfo, pg_info->table_name, type);
/* determine geometry type */
switch (type) {
case GV_POINT:
case GV_CENTROID:
pg_info->feature_type = SF_POINT;
break;
case GV_LINE:
case GV_BOUNDARY:
pg_info->feature_type = SF_LINESTRING;
break;
case GV_AREA:
pg_info->feature_type = SF_POLYGON;
break;
case GV_FACE:
pg_info->feature_type = SF_POLYGON25D;
break;
case -2:
pg_info->feature_type = SF_GEOMETRY;
break;
default:
G_warning(_("Unsupported geometry type (%d)"), type);
return -1;
}
/* coordinate dimension */
pg_info->coor_dim = Vect_is_3d(Map) ? 3 : 2;
/* create new PostGIS table */
ndblinks = Vect_get_num_dblinks(Map);
if (ndblinks > 0) {
pg_info->fi = Vect_get_dblink(Map, 0); /* TODO: support more layers */
if (pg_info->fi) {
if (ndblinks > 1)
G_warning(_("More layers defined, using driver <%s> and "
"database <%s>"),
pg_info->fi->driver, pg_info->fi->database);
}
else {
G_warning(_("Database connection not defined. "
"Unable to write attributes."));
}
}
/* create new feature table */
if (create_table(pg_info) == -1) {
G_warning(_("Unable to create new PostGIS feature table"));
return -1;
}
/* create new topology schema (if PostGIS topology support is enabled) */
if (pg_info->toposchema_name) {
/* force topological level */
Map->level = LEVEL_2;
Map->plus.built = GV_BUILD_BASE;
/* track updated features, used in V2__add_line_to_topo_nat() */
Vect_set_updated(Map, TRUE);
if (create_topo_schema(pg_info, Vect_is_3d(Map)) == -1) {
G_warning(_("Unable to create new PostGIS topology schema"));
return -1;
}
}
return 0;
}
/*!
\brief Get simple feature type as a string
Used for AddTopoGeometryColumn().
Valid types:
- SF_POINT
- SF_LINESTRING
- SF_POLYGON
\return string with feature type
\return empty string
*/
char *get_sftype(SF_FeatureType sftype)
{
if (sftype == SF_POINT)
return "POINT";
else if (sftype == SF_LINESTRING)
return "LINE";
else if (sftype == SF_POLYGON)
return "POLYGON";
else if (sftype == SF_GEOMETRY || sftype == SF_GEOMETRYCOLLECTION)
return "COLLECTION";
else
G_warning(_("Unsupported feature type %d"), sftype);
return "";
}
/*!
\brief Write vector features as PostGIS simple feature element
\param Map pointer to Map_info structure
\param type feature type (GV_POINT, GV_LINE, ...)
\param points feature geometry (exterior + interior rings for polygonsx)
\param nparts number of parts
\param cats feature categories
\return feature offset
\return -1 on error
*/
off_t write_line_sf(struct Map_info *Map, int type,
const struct line_pnts **points, int nparts,
const struct line_cats *cats)
{
int cat;
off_t offset;
SF_FeatureType sf_type;
struct Format_info_pg *pg_info;
struct Format_info_offset *offset_info;
pg_info = &(Map->fInfo.pg);
offset_info = &(pg_info->offset);
if (nparts < 1)
return -1;
/* check required PG settings */
if (!pg_info->conn) {
G_warning(_("No connection defined"));
return -1;
}
if (!pg_info->table_name) {
G_warning(_("PostGIS feature table not defined"));
return -1;
}
/* create PostGIS table if doesn't exist */
if (pg_info->feature_type == SF_GEOMETRY) {
if (create_pg_layer(Map, type) < 0)
return -1;
}
/* get category & check for attributes */
cat = -1;
if (cats->n_cats > 0) {
int field;
if (pg_info->fi)
field = pg_info->fi->number;
else
field = 1;
if (!Vect_cat_get(cats, field, &cat))
G_warning(_("No category defined for layer %d"), field);
if (cats->n_cats > 1) {
G_warning(_("Feature has more categories, using "
"category %d (from layer %d)"),
cat, field);
}
}
sf_type = pg_info->feature_type;
/* determine matching PostGIS feature geometry type */
if (type & (GV_POINT | GV_KERNEL)) {
if (sf_type != SF_POINT && sf_type != SF_POINT25D) {
G_warning(_("Point skipped (output feature type: %s)"),
Vect_get_finfo_geometry_type(Map));
return 0;
}
}
else if (type & GV_LINE) {
if (sf_type != SF_LINESTRING && sf_type != SF_LINESTRING25D) {
G_warning(_("Line skipped (output feature type: %s)"),
Vect_get_finfo_geometry_type(Map));
return 0;
}
}
else if (type & GV_CENTROID) {
if (sf_type != SF_POLYGON && sf_type != SF_POINT) {
G_warning(_("Centroid skipped (output feature type: %s)"),
Vect_get_finfo_geometry_type(Map));
return 0;
}
}
else if (type & GV_BOUNDARY) {
if (sf_type != SF_POLYGON && sf_type != SF_LINESTRING) {
G_warning(_("Boundary skipped (output feature type: %s)"),
Vect_get_finfo_geometry_type(Map));
return 0;
}
}
else if (type & GV_FACE) {
if (sf_type != SF_POLYGON25D) {
G_warning(_("Face skipped (output feature type: %s)"),
Vect_get_finfo_geometry_type(Map));
return 0;
}
}
else {
G_warning(_("Unsupported feature type %d"), type);
return -1;
}
G_debug(3, "write_line_sf(): type = %d n_points = %d cat = %d", type,
points[0]->n_points, cat);
if (sf_type == SF_POLYGON || sf_type == SF_POLYGON25D) {
/* skip this check when writing PostGIS topology */
int part, npoints;
for (part = 0; part < nparts; part++) {
npoints = points[part]->n_points - 1;
if (points[part]->x[0] != points[part]->x[npoints] ||
points[part]->y[0] != points[part]->y[npoints] ||
points[part]->z[0] != points[part]->z[npoints]) {
G_warning(_("Boundary is not closed. Skipping."));
return -1;
}
}
}
/* write feature's geometry and fid */
if (-1 == write_feature(Map, -1, type, points, nparts, cat)) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
/* update offset array */
if (offset_info->array_num >= offset_info->array_alloc) {
offset_info->array_alloc += 1000;
offset_info->array = (int *)G_realloc(
offset_info->array, offset_info->array_alloc * sizeof(int));
}
offset = offset_info->array_num;
offset_info->array[offset_info->array_num++] = cat;
if (sf_type == SF_POLYGON || sf_type == SF_POLYGON25D) {
/* register first part in offset array */
offset_info->array[offset_info->array_num++] = 0;
}
G_debug(3, "write_line_sf(): -> offset = %lu offset_num = %d cat = %d",
(unsigned long)offset, offset_info->array_num, cat);
return offset;
}
/*!
\brief Write vector feature in PostGIS topology schema and
updates internal topology structures
\param Map vector map
\param type feature type to be written
\param points feature geometry
\param is_node TRUE for nodes (written as points)
\return feature id (build level >= GV_BUILD_BASE otherwise 0)
\return 0 for nodes
\return -1 on error
*/
off_t write_line_tp(struct Map_info *Map, int type, int is_node,
const struct line_pnts *points,
const struct line_cats *cats)
{
int line, cat, line_id;
struct Format_info_pg *pg_info;
struct Plus_head *plus;
struct field_info *Fi;
pg_info = &(Map->fInfo.pg);
plus = &(Map->plus);
if (!(plus->update_cidx)) {
plus->cidx_up_to_date = FALSE; /* category index will be outdated */
}
/* check type for nodes */
if (is_node && type != GV_POINT) {
G_warning(_("Invalid feature type (%d) for nodes"), type);
return -1;
}
/* check required PG settings */
if (!pg_info->conn) {
G_warning(_("No connection defined"));
return -1;
}
if (!pg_info->table_name) {
G_warning(_("PostGIS feature table not defined"));
return -1;
}
if (!pg_info->toposchema_name) {
G_warning(_("PostGIS topology schema not defined"));
return -1;
}
/* create PostGIS table if doesn't exist */
if (pg_info->feature_type == SF_GEOMETRY) {
if (create_pg_layer(Map, type) < 0)
return -1;
}
if (!points)
return 0;
G_debug(3, "write_line_pg(): type = %d n_points = %d", type,
points->n_points);
Fi = pg_info->fi;
cat = -1;
if (cats && cats->n_cats > 0) {
if (Fi) {
if (!pg_info->dbdriver)
open_db(pg_info);
if (!Vect_cat_get(cats, Fi->number, &cat))
G_warning(_("No category defined for layer %d"), Fi->number);
if (cats->n_cats > 1) {
G_warning(_("Feature has more categories, using "
"category %d (from layer %d)"),
cat, cats->field[0]);
}
}
/* assume layer=1 */
Vect_cat_get(cats, 1, &cat);
}
/* update GRASS topology before writing PostGIS feature */
line = 0;
if (plus->built >= GV_BUILD_BASE) {
if (is_node) {
/* nodes are given with negative id */
line = -1 *
dig_add_node(plus, points->x[0], points->y[0], points->z[0]);
}
else {
off_t offset;
/* better is probably to check nextval directly */
if (type & GV_POINTS) {
offset = Vect_get_num_primitives(Map, GV_POINTS) + 1; /* next */
offset += Vect_get_num_nodes(
Map); /* nodes are also stored in 'node' table */
}
else { /* LINES */
offset = Vect_get_num_primitives(Map, GV_LINES) + 1; /* next */
}
line = add_line_to_topo_pg(Map, offset, type, points);
}
}
/* write new feature to PostGIS
- feature table for simple features
- feature table and topo schema for topological access
*/
line_id = write_feature(Map, line, type, &points, 1, cat);
if (line_id < 0) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
if (pg_info->cache.ctype == CACHE_MAP) {
/* add line to the cache */
Vect__reallocate_cache(&(pg_info->cache), 1, TRUE);
pg_info->cache.lines[line - 1] = Vect_new_line_struct();
pg_info->cache.lines_types[line - 1] = type;
pg_info->cache.lines_cats[line - 1] = cat;
}
/* update offset array for nodes */
if (is_node) {
int node;
struct Format_info_offset *offset;
offset = &(pg_info->offset);
node = abs(line);
if (node > offset->array_alloc) {
offset->array_alloc += 1000;
offset->array = (int *)G_realloc(offset->array,
offset->array_alloc * sizeof(int));
}
offset->array_num = node;
offset->array[node - 1] = (int)line_id; /* node id starts at 1 */
}
/* update PostGIS-line topo */
if (plus->built >= GV_BUILD_AREAS && type == GV_BOUNDARY)
update_topo_face(Map, line); /* TODO: avoid extra statements */
return !is_node ? line : 0;
}
/*!
\brief Binary data to HEX
Allocated buffer should be freed by G_free().
\param nbytes number of bytes to allocate
\param wkb_data WKB data
\return allocated buffer with HEX data
*/
char *binary_to_hex(int nbytes, const unsigned char *wkb_data)
{
char *hex_data;
int i, nlow, nhigh;
static const char ach_hex[] = "0123456789ABCDEF";
hex_data = (char *)G_malloc(nbytes * 2 + 1);
hex_data[nbytes * 2] = '\0';
for (i = 0; i < nbytes; i++) {
nlow = wkb_data[i] & 0x0f;
nhigh = (wkb_data[i] & 0xf0) >> 4;
hex_data[i * 2] = ach_hex[nhigh];
hex_data[i * 2 + 1] = ach_hex[nlow];
}
return hex_data;
}
/*!
\brief Write point into WKB buffer
See OGRPoint::exportToWkb from GDAL/OGR library
\param byte_order byte order (ENDIAN_LITTLE or BIG_ENDIAN)
\param points feature geometry
\param with_z WITH_Z for 3D data
\param[out] nsize buffer size
\return allocated WKB buffer
\return NULL on error
*/
unsigned char *point_to_wkb(int byte_order, const struct line_pnts *points,
int with_z, int *nsize)
{
unsigned char *wkb_data;
unsigned int sf_type;
if (points->n_points != 1)
return NULL;
/* allocate buffer */
*nsize = with_z ? 29 : 21;
wkb_data = G_malloc(*nsize);
G_zero(wkb_data, *nsize);
G_debug(5, "\t->point size=%d (with_z = %d)", *nsize, with_z);
/* set the byte order */
if (byte_order == ENDIAN_LITTLE)
wkb_data[0] = '\001';
else
wkb_data[0] = '\000';
/* set the geometry feature type */
sf_type = with_z ? SF_POINT25D : SF_POINT;
if (byte_order == ENDIAN_LITTLE)
sf_type = LSBWORD32(sf_type);
else
sf_type = MSBWORD32(sf_type);
memcpy(wkb_data + 1, &sf_type, 4);
/* copy in the raw data */
memcpy(wkb_data + 5, &(points->x[0]), 8);
memcpy(wkb_data + 5 + 8, &(points->y[0]), 8);
if (with_z) {
memcpy(wkb_data + 5 + 16, &(points->z[0]), 8);
}
/* swap if needed */
if (byte_order == ENDIAN_BIG) {
SWAPDOUBLE(wkb_data + 5);
SWAPDOUBLE(wkb_data + 5 + 8);
if (with_z)
SWAPDOUBLE(wkb_data + 5 + 16);
}
return wkb_data;
}
/*!
\bried Write linestring into WKB buffer
See OGRLineString::exportToWkb from GDAL/OGR library
\param byte_order byte order (ENDIAN_LITTLE or ENDIAN_BIG)
\param points feature geometry
\param with_z WITH_Z for 3D data
\param[out] nsize buffer size
\return allocated WKB buffer
\return NULL on error
*/
unsigned char *linestring_to_wkb(int byte_order, const struct line_pnts *points,
int with_z, int *nsize)
{
int i, point_size;
unsigned char *wkb_data;
unsigned int sf_type;
if (points->n_points < 1)
return NULL;
/* allocate buffer */
point_size = 8 * (with_z ? 3 : 2);
*nsize = 5 + 4 + points->n_points * point_size;
wkb_data = G_malloc(*nsize);
G_zero(wkb_data, *nsize);
G_debug(5, "\t->linestring size=%d (with_z = %d)", *nsize, with_z);
/* set the byte order */
if (byte_order == ENDIAN_LITTLE)
wkb_data[0] = '\001';
else
wkb_data[0] = '\000';
/* set the geometry feature type */
sf_type = with_z ? SF_LINESTRING25D : SF_LINESTRING;
if (byte_order == ENDIAN_LITTLE)
sf_type = LSBWORD32(sf_type);
else
sf_type = MSBWORD32(sf_type);
memcpy(wkb_data + 1, &sf_type, 4);
/* copy in the data count */
memcpy(wkb_data + 5, &(points->n_points), 4);
/* copy in the raw data */
for (i = 0; i < points->n_points; i++) {
memcpy(wkb_data + 9 + point_size * i, &(points->x[i]), 8);
memcpy(wkb_data + 9 + 8 + point_size * i, &(points->y[i]), 8);
if (with_z) {
memcpy(wkb_data + 9 + 16 + point_size * i, &(points->z[i]), 8);
}
}
/* swap if needed */
if (byte_order == ENDIAN_BIG) {
int npoints, nitems;
npoints = SWAP32(points->n_points);
memcpy(wkb_data + 5, &npoints, 4);
nitems = (with_z ? 3 : 2) * points->n_points;
for (i = 0; i < nitems; i++) {
SWAPDOUBLE(wkb_data + 9 + 4 + 8 * i);
}
}
return wkb_data;
}
/*!
\bried Write polygon into WKB buffer
See OGRPolygon::exportToWkb from GDAL/OGR library
\param byte_order byte order (ENDIAN_LITTLE or ENDIAN_BIG)
\param ipoints list of ring geometries (first is outer ring)
\param nrings number of rings
\param with_z WITH_Z for 3D data
\param[out] nsize buffer size
\return allocated WKB buffer
\return NULL on error
*/
unsigned char *polygon_to_wkb(int byte_order, const struct line_pnts **points,
int nrings, int with_z, int *nsize)
{
int i, ring, point_size, offset;
unsigned char *wkb_data;
unsigned int sf_type;
/* check data validity */
if (nrings < 1)
return NULL;
for (ring = 0; ring < nrings; ring++) {
if (points[ring]->n_points < 3)
return NULL;
}
/* allocate buffer */
point_size = 8 * (with_z ? 3 : 2);
*nsize = 9;
for (ring = 0; ring < nrings; ring++)
*nsize += 4 + point_size * points[ring]->n_points;
wkb_data = G_malloc(*nsize);
G_zero(wkb_data, *nsize);
G_debug(5, "\t->polygon size=%d (with_z = %d)", *nsize, with_z);
/* set the byte order */
if (byte_order == ENDIAN_LITTLE)
wkb_data[0] = '\001';
else
wkb_data[0] = '\000';
/* set the geometry feature type */
sf_type = with_z ? SF_POLYGON25D : SF_POLYGON;
if (byte_order == ENDIAN_LITTLE)
sf_type = LSBWORD32(sf_type);
else
sf_type = MSBWORD32(sf_type);
memcpy(wkb_data + 1, &sf_type, 4);
/* copy in the raw data */
if (byte_order == ENDIAN_BIG) {
int ncount;
ncount = SWAP32(nrings);
memcpy(wkb_data + 5, &ncount, 4);
}
else {
memcpy(wkb_data + 5, &nrings, 4);
}
/* serialize rings */
offset = 9;
for (ring = 0; ring < nrings; ring++) {
memcpy(wkb_data + offset, &(points[ring]->n_points), 4);
for (i = 0; i < points[ring]->n_points; i++) {
memcpy(wkb_data + offset + 4 + point_size * i,
&(points[ring]->x[i]), 8);
memcpy(wkb_data + offset + 4 + 8 + point_size * i,
&(points[ring]->y[i]), 8);
if (with_z) {
memcpy(wkb_data + offset + 4 + 16 + point_size * i,
&(points[ring]->z[i]), 8);
}
}
offset += 4 + point_size * points[ring]->n_points;
/* swap if needed */
if (byte_order == ENDIAN_BIG) {
int npoints, nitems;
npoints = SWAP32(points[ring]->n_points);
memcpy(wkb_data + 5, &npoints, 4);
nitems = (with_z ? 3 : 2) * points[ring]->n_points;
for (i = 0; i < nitems; i++) {
SWAPDOUBLE(wkb_data + offset + 4 + 8 * i);
}
}
}
return wkb_data;
}
/*!
\brief Write feature to WKB buffer
Allocated string buffer should be freed by G_free().
\param pg_info pointer to Format_info_pg struct
\param points array of geometries which form feature
\param nparts number of geometries in array
\param type feature type (GV_POINT, GV_LINE, ...)
\param with_z WITH_Z for 3D data
\return allocated string buffer
\return NULL on error
*/
char *line_to_wkb(struct Format_info_pg *pg_info,
const struct line_pnts **points, int nparts, int type,
int with_z)
{
int byte_order, nbytes, nsize;
unsigned int sf_type;
unsigned char *wkb_data;
char *text_data, *text_data_p, *hex_data;
byte_order = dig__byte_order_out();
/* get wkb data */
nbytes = -1;
wkb_data = NULL;
if (type & GV_POINTS) /* point or centroid */
wkb_data = point_to_wkb(byte_order, points[0], with_z, &nbytes);
else if (type == GV_LINE ||
(type == GV_BOUNDARY && pg_info->feature_type == SF_LINESTRING))
wkb_data = linestring_to_wkb(byte_order, points[0], with_z, &nbytes);
else if (type & (GV_BOUNDARY | GV_FACE | GV_AREA)) {
if (!pg_info->toposchema_name || type == GV_AREA) {
/* PostGIS simple feature access */
wkb_data =
polygon_to_wkb(byte_order, points, nparts, with_z, &nbytes);
}
else {
/* PostGIS topology access */
wkb_data =
linestring_to_wkb(byte_order, points[0], with_z, &nbytes);
}
}
if (!wkb_data || nbytes < 1) {
G_warning(_("Unsupported feature type %d"), type);
return NULL;
}
/* When converting to hex, each byte takes 2 hex characters. In
addition we add in 8 characters to represent the SRID integer
in hex, and one for a null terminator */
nsize = nbytes * 2 + 8 + 1;
text_data = text_data_p = (char *)G_malloc(nsize);
/* convert the 1st byte, which is the endianness flag, to hex */
hex_data = binary_to_hex(1, wkb_data);
strcpy(text_data_p, hex_data);
G_free(hex_data);
text_data_p += 2;
/* get the geom type which is bytes 2 through 5 */
memcpy(&sf_type, wkb_data + 1, 4);
/* add the SRID flag if an SRID is provided */
if (pg_info->srid > 0) {
unsigned int srs_flag;
/* change the flag to little endianness */
srs_flag = LSBWORD32(WKBSRIDFLAG);
/* apply the flag */
sf_type = sf_type | srs_flag;
}
/* write the geom type which is 4 bytes */
hex_data = binary_to_hex(4, (unsigned char *)&sf_type);
strcpy(text_data_p, hex_data);
G_free(hex_data);
text_data_p += 8;
/* include SRID if provided */
if (pg_info->srid > 0) {
unsigned int srs_id;
/* force the srsid to little endianness */
srs_id = LSBWORD32(pg_info->srid);
hex_data = binary_to_hex(sizeof(srs_id), (unsigned char *)&srs_id);
strcpy(text_data_p, hex_data);
G_free(hex_data);
text_data_p += 8;
}
/* copy the rest of the data over - subtract 5 since we already
copied 5 bytes above */
hex_data = binary_to_hex(nbytes - 5, wkb_data + 5);
strcpy(text_data_p, hex_data);
G_free(hex_data);
return text_data;
}
/*!
\brief Insert feature into table
\param Map pointer to Map_info structure
\param line feature id (topo access only)
\param type feature type (GV_POINT, GV_LINE, ...)
\param points pointer to line_pnts struct
\param nparts number of parts (rings for polygon)
\param cat category number (-1 for no category)
\return topo_id for PostGIS Topology
\return 0 for simple features access
\return -1 on error
*/
int write_feature(struct Map_info *Map, int line, int type,
const struct line_pnts **points, int nparts, int cat)
{
int with_z, topo_id;
char *stmt, *geom_data;
struct Format_info_pg *pg_info;
pg_info = &(Map->fInfo.pg);
with_z = Map->head.with_z;
if (with_z && pg_info->coor_dim != 3) {
G_warning(_("Trying to insert 3D data into feature table "
"which store 2D data only"));
return -1;
}
if (!with_z && pg_info->coor_dim != 2) {
G_warning(_("Trying to insert 2D data into feature table "
"which store 3D data only"));
return -1;
}
/* build WKB geometry from line_pnts structures */
geom_data = line_to_wkb(pg_info, points, nparts, type, with_z);
if (!geom_data)
return -1;
/* start transaction */
if (!pg_info->inTransaction) {
pg_info->inTransaction = TRUE;
if (Vect__execute_pg(pg_info->conn, "BEGIN") == -1) {
G_free(geom_data);
return -1;
}
}
/* write feature in PostGIS topology schema if enabled */
topo_id = -1;
if (pg_info->toposchema_name) {
/* insert feature into topology schema (node or edge) */
topo_id = insert_topo_element(Map, line, type, geom_data);
if (topo_id < 0) {
G_warning(_("Unable to insert topological element into PostGIS "
"Topology schema"));
G_free(geom_data);
return -1;
}
if (pg_info->feature_type != SF_POLYGON) {
/* define relation */
Vect__define_topo_relation(pg_info, topo_id, topo_id);
}
}
/* build INSERT statement
simple feature geometry + attributes
*/
stmt = build_insert_stmt(pg_info, geom_data, topo_id, cat);
/* stmt can NULL when writing PostGIS topology with no attributes
* attached */
if (stmt && Vect__execute_pg(pg_info->conn, stmt) == -1) {
/* rollback transaction */
Vect__execute_pg(pg_info->conn, "ROLLBACK");
G_free(geom_data);
G_free(stmt);
return -1;
}
G_free(geom_data);
G_free(stmt);
return pg_info->toposchema_name ? topo_id : 0;
}
/*!
\brief Build INSERT statement to add new feature to the feature
table
Note: Allocated string should be freed.
\param pg_info pointer to Format_info_pg structure
\param geom_data geometry data
\param type feature type (GV_POINT, GV_LINE, ...) - (only for PostGIS
Topology) \param id topology element id (only for PostGIS Topology) \param
cat category number (or -1 for no category) \param Fi pointer to field_info
structure (NULL for no attributes)
\return allocated string with INSERT statement
*/
char *build_insert_stmt(const struct Format_info_pg *pg_info,
const char *geom_data, int topo_id, int cat)
{
int topogeom_type;
char *stmt, buf[DB_SQL_MAX];
struct field_info *Fi;
topogeom_type = -1;
if (pg_info->toposchema_name) {
topogeom_type = type_to_topogeom(pg_info);
if (topogeom_type < 0)
return NULL;
}
Fi = pg_info->fi;
stmt = NULL;
if (Fi && cat > -1) {
/* write attributes (simple features and topology elements) */
int col, ncol, more;
int sqltype, ctype, is_fid;
char buf_val[DB_SQL_MAX], buf_tmp[DB_SQL_MAX];
const char *colname;
dbString dbstmt;
dbCursor cursor;
dbTable *table;
dbColumn *column;
dbValue *value;
db_init_string(&dbstmt);
buf_val[0] = '\0';
/* read & set attributes */
sprintf(buf, "SELECT * FROM %s WHERE %s = %d", Fi->table, Fi->key, cat);
G_debug(4, "SQL: %s", buf);
db_set_string(&dbstmt, buf);
/* prepare INSERT statement */
sprintf(buf, "INSERT INTO \"%s\".\"%s\" (", pg_info->schema_name,
pg_info->table_name);
/* select data */
if (db_open_select_cursor(pg_info->dbdriver, &dbstmt, &cursor,
DB_SEQUENTIAL) != DB_OK) {
G_warning(_("Unable to select attributes for category %d"), cat);
}
else {
if (db_fetch(&cursor, DB_NEXT, &more) != DB_OK) {
G_warning(_("Unable to fetch data from table <%s>"), Fi->table);
}
if (!more) {
G_warning(_("No database record for category %d, "
"no attributes will be written"),
cat);
}
else {
table = db_get_cursor_table(&cursor);
ncol = db_get_table_number_of_columns(table);
for (col = 0; col < ncol; col++) {
column = db_get_table_column(table, col);
colname = db_get_column_name(column);
/* -> values */
value = db_get_column_value(column);
/* for debug only */
db_convert_column_value_to_string(column, &dbstmt);
G_debug(3, "col %d : val = %s", col,
db_get_string(&dbstmt));
sqltype = db_get_column_sqltype(column);
ctype = db_sqltype_to_Ctype(sqltype);
is_fid = strcmp(pg_info->fid_column, colname) == 0;
/* check fid column (must be integer) */
if (is_fid == TRUE && ctype != DB_C_TYPE_INT) {
G_warning(_("FID column must be integer, column <%s> "
"ignored!"),
colname);
continue;
}
/* -> columns */
sprintf(buf_tmp, "\"%s\"", colname);
strcat(buf, buf_tmp);
if (col < ncol - 1)
strcat(buf, ",");
/* prevent writing NULL values */
if (!db_test_value_isnull(value)) {
switch (ctype) {
case DB_C_TYPE_INT:
sprintf(buf_tmp, "%d", db_get_value_int(value));
break;
case DB_C_TYPE_DOUBLE:
sprintf(buf_tmp, "%.14f",
db_get_value_double(value));
break;
case DB_C_TYPE_STRING: {
char *value_tmp;
value_tmp = G_str_replace(
db_get_value_string(value), "'", "''");
sprintf(buf_tmp, "'%s'", value_tmp);
G_free(value_tmp);
break;
}
case DB_C_TYPE_DATETIME:
db_convert_column_value_to_string(column, &dbstmt);
sprintf(buf_tmp, "%s", db_get_string(&dbstmt));
break;
default:
G_warning(_("Unsupported column type %d"), ctype);
sprintf(buf_tmp, "NULL");
break;
}
}
else {
if (is_fid == TRUE)
G_warning(_("Invalid value for FID column: NULL"));
sprintf(buf_tmp, "NULL");
}
strcat(buf_val, buf_tmp);
if (col < ncol - 1)
strcat(buf_val, ",");
}
if (!pg_info->toposchema_name) {
/* simple feature access */
G_asprintf(&stmt, "%s,%s) VALUES (%s,'%s'::GEOMETRY)", buf,
pg_info->geom_column, buf_val, geom_data);
}
else {
/* PostGIS topology access, write geometry in
* topology schema, skip geometry at this point */
if (buf[strlen(buf) - 1] == ',') { /* last column skipped */
buf[strlen(buf) - 1] = '\0';
buf_val[strlen(buf_val) - 1] = '\0';
}
G_asprintf(&stmt,
"%s, %s) VALUES (%s, '(%d, 1, %d, "
"%d)'::topology.TopoGeometry)",
buf, pg_info->topogeom_column, buf_val,
pg_info->toposchema_id, topo_id, topogeom_type);
}
}
}
}
else {
/* no attributes */
if (!pg_info->toposchema_name) {
/* no attributes (simple features access) */
if (cat > 0) {
/* cetegory defined */
G_asprintf(&stmt,
"INSERT INTO \"%s\".\"%s\" (%s,%s) VALUES "
"(%d, '%s'::GEOMETRY)",
pg_info->schema_name, pg_info->table_name,
GV_KEY_COLUMN, pg_info->geom_column, cat, geom_data);
}
else {
/* no category */
G_asprintf(&stmt,
"INSERT INTO \"%s\".\"%s\" (%s) VALUES "
"('%s'::GEOMETRY)",
pg_info->schema_name, pg_info->table_name,
pg_info->geom_column, geom_data);
}
}
else {
if (cat > 0) {
/* no attributes (topology elements) */
G_asprintf(&stmt,
"INSERT INTO \"%s\".\"%s\" (%s,%s) VALUES "
"(%d, '(%d, 1, %d, %d)'::topology.TopoGeometry)",
pg_info->schema_name, pg_info->table_name,
GV_KEY_COLUMN, pg_info->topogeom_column, cat,
pg_info->toposchema_id, topo_id, topogeom_type);
}
}
}
return stmt;
}
/*!
\brief Insert topological element into 'node' or 'edge' table
Negative id for nodes, 0 for next value.
\param Map pointer to Map_info struct
\param id feature id (0 for next val)
\param type feature type (GV_POINT, GV_LINE, ...)
\param geom_data geometry in wkb
\return new topo id
\return -1 on error
*/
int insert_topo_element(struct Map_info *Map, int id, int type,
const char *geom_data)
{
int ret, topo_id;
char *stmt, stmt_id[DB_SQL_MAX];
struct Format_info_pg *pg_info;
struct Plus_head *plus;
struct P_line *Line;
pg_info = &(Map->fInfo.pg);
plus = &(Map->plus);
Line = NULL;
if (plus->built >= GV_BUILD_BASE) {
if (id > 0) { /* -> feature */
topo_id = id;
if (topo_id > Map->plus.n_lines) {
G_warning(_("Invalid feature %d (max: %d)"), topo_id,
Map->plus.n_lines);
return -1;
}
Line = Map->plus.Line[topo_id];
if (Line->type & GV_POINTS) {
/* set topo_id for points */
topo_id = Vect_get_num_primitives(Map, GV_POINTS) +
Vect_get_num_nodes(Map);
}
}
else if (id < 0) { /* node */
topo_id = abs(id);
if (type != GV_POINT) {
G_warning(_("Invalid feature type (%d) for node"), type);
return -1;
}
if (topo_id > Map->plus.n_nodes) {
G_warning(_("Invalid node %d (%d)"), topo_id,
Map->plus.n_nodes);
return -1;
}
/* increment topo_id - also points and centroids are
* stored in 'node' table */
topo_id += Vect_get_num_primitives(Map, GV_POINTS);
}
}
stmt = NULL;
switch (type) {
case GV_POINT: {
/* insert new node */
#if USE_TOPO_STMT
G_asprintf(&stmt, "SELECT topology.AddNode('%s', '%s'::GEOMETRY)",
pg_info->toposchema_name, geom_data);
#else
if (id == 0) {
/* get node_id */
sprintf(stmt_id, "SELECT nextval('\"%s\".node_node_id_seq')",
pg_info->toposchema_name);
topo_id = Vect__execute_get_value_pg(pg_info->conn, stmt_id);
}
/* build insert statement */
G_asprintf(&stmt,
"INSERT INTO \"%s\".node (node_id, geom) VALUES "
"(%d, '%s'::GEOMETRY)",
pg_info->toposchema_name, topo_id, geom_data);
#endif
break;
}
case GV_LINE:
case GV_BOUNDARY: {
/* insert new edge */
#if USE_TOPO_STMT
G_asprintf(&stmt, "SELECT topology.AddEdge('%s', '%s'::GEOMETRY)",
pg_info->toposchema_name, geom_data);
#else
int n1, n2, nle, nre;
struct Format_info_offset *offset;
offset = &(pg_info->offset);
if (id == 0) {
/* get edge_id */
sprintf(stmt_id, "SELECT nextval('\"%s\".edge_data_edge_id_seq')",
pg_info->toposchema_name);
topo_id = Vect__execute_get_value_pg(pg_info->conn, stmt_id);
}
nle = -topo_id; /* assuming isolated lines */
nre = topo_id;
if (Line) {
int i, n, next_edge;
struct P_topo_l *topo = (struct P_topo_l *)Line->topo;
topo_id = (int)Line->offset;
/* start & end node */
n1 = topo->N1;
n2 = topo->N2;
/* next left & right edge */
for (i = 0; i < 2; i++) {
n = Vect_get_node_n_lines(Map, i == 0 ? n1 : n2);
if (n < 2) /* no connection */
continue;
next_edge =
update_next_edge(Map, n, i == 0 ? topo_id : -topo_id);
if (next_edge != 0) {
if (i == 0)
nre = next_edge; /* update next right edge for start
node */
else
nle =
next_edge; /* update next left edge for end node */
}
else {
G_warning(_("Unable to determine next left/right edge for "
"edge %d"),
topo_id);
}
}
}
else {
G_warning(_("Unable to insert new edge. Topology not available."));
return -1;
}
G_debug(3, "new edge: id=%d next_left_edge=%d next_right_edge=%d",
topo_id, nle, nre);
if (n1 > offset->array_num ||
n2 > offset->array_num) /* node id starts at 1 */
return -1;
/* build insert statement */
G_asprintf(
&stmt,
"INSERT INTO \"%s\".edge_data (edge_id, start_node, end_node, "
"next_left_edge, abs_next_left_edge, next_right_edge, "
"abs_next_right_edge, "
"left_face, right_face, geom) VALUES "
"(%d, %d, %d, %d, %d, %d, %d, 0, 0, '%s'::GEOMETRY)",
pg_info->toposchema_name, topo_id, offset->array[n1 - 1],
offset->array[n2 - 1], nle, abs(nle), nre, abs(nre), geom_data);
#endif
break;
}
case GV_CENTROID: {
/* insert new node (with containing_face) */
#if USE_TOPO_STMT
G_asprintf(&stmt, "SELECT topology.AddNode('%s', '%s'::GEOMETRY)",
pg_info->toposchema_name, geom_data);
#else
int area;
if (id == 0) {
/* get node_id */
sprintf(stmt_id, "SELECT nextval('\"%s\".node_node_id_seq')",
pg_info->toposchema_name);
topo_id = Vect__execute_get_value_pg(pg_info->conn, stmt_id);
}
if (Line) {
struct P_topo_c *topo = (struct P_topo_c *)Line->topo;
area = topo->area;
}
else {
area = 0;
}
G_asprintf(
&stmt,
"INSERT INTO \"%s\".node (node_id, containing_face, geom) VALUES "
"(%d, %d, '%s'::GEOMETRY)",
pg_info->toposchema_name, topo_id, area, geom_data);
#endif
break;
}
default:
G_warning(_("Unsupported feature type %d"), type);
break;
}
/* execute insert statement */
ret = Vect__execute_pg(pg_info->conn, stmt);
G_free(stmt);
if (ret == -1) {
/* rollback transaction */
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
return topo_id;
}
int type_to_topogeom(const struct Format_info_pg *pg_info)
{
int topogeom_type;
topogeom_type = -1;
switch (pg_info->feature_type) {
case SF_POINT:
topogeom_type = 1;
break;
case SF_LINESTRING:
topogeom_type = 2;
break;
case SF_POLYGON:
topogeom_type = 3;
break;
default:
G_warning(_("Unsupported feature type %d"), pg_info->feature_type);
}
return topogeom_type;
}
int Vect__define_topo_relation(const struct Format_info_pg *pg_info,
int topo_id, int element_id)
{
int topogeom_type;
char stmt[DB_SQL_MAX];
topogeom_type = type_to_topogeom(pg_info);
if (topogeom_type < 0)
return -1;
sprintf(stmt, "INSERT into \"%s\".relation VALUES(%d, 1, %d, %d)",
pg_info->toposchema_name, topo_id, element_id, topogeom_type);
G_debug(3, "SQL: %s", stmt);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
return 0;
}
/*!
\brief Find next line (topo only)
\param Map pointer to Map_info struct
\param nlines number of lines
\param line current line
\param[out] left left line
\param[out] right right line
\return left (line < 0) or right (line > 0) next edge
\return 0 on failure
*/
int update_next_edge(struct Map_info *Map, int nlines, int line)
{
int ret, next_line, edge;
char stmt[DB_SQL_MAX];
const struct Format_info_pg *pg_info;
struct P_line *Line_next, *Line;
Line = Line_next = NULL;
pg_info = &(Map->fInfo.pg);
/* find next line
start node -> next on the left
end node -> next on the right
*/
next_line =
dig_angle_next_line(&(Map->plus), line, GV_LEFT, GV_LINES, NULL);
G_debug(3, "line=%d next_line=%d", line, next_line);
if (next_line == 0) {
G_warning(_("Invalid topology"));
return 0;
}
Line = Map->plus.Line[abs(line)];
Line_next = Map->plus.Line[abs(next_line)];
if (!Line || !Line_next) {
G_warning(_("Invalid topology"));
return 0;
}
if (line > 0) {
edge = Line->offset;
ret = next_line > 0 ? Line_next->offset : -Line_next->offset;
}
else {
edge = -Line->offset;
ret = next_line > 0 ? Line_next->offset : -Line_next->offset;
}
if (next_line < 0) {
sprintf(stmt,
"UPDATE \"%s\".edge_data SET next_left_edge = %d, "
"abs_next_left_edge = %d WHERE edge_id = %d AND "
"abs_next_left_edge = %d",
pg_info->toposchema_name, edge, abs(edge),
(int)Line_next->offset, (int)Line_next->offset);
G_debug(3, "update edge=%d next_left_edge=%d (?)",
(int)Line_next->offset, edge);
}
else {
sprintf(stmt,
"UPDATE \"%s\".edge_data SET next_right_edge = %d, "
"abs_next_right_edge = %d WHERE edge_id = %d AND "
"abs_next_right_edge = %d",
pg_info->toposchema_name, edge, abs(edge),
(int)Line_next->offset, (int)Line_next->offset);
G_debug(3, "update edge=%d next_right_edge=%d (?)",
(int)Line_next->offset, edge);
}
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return 0;
}
if (nlines > 2) {
/* more lines connected to the node
start node -> next on the right
end node -> next on the left
*/
next_line =
dig_angle_next_line(&(Map->plus), line, GV_RIGHT, GV_LINES, NULL);
Line_next = Map->plus.Line[abs(next_line)];
if (next_line < 0) {
sprintf(stmt,
"UPDATE \"%s\".edge_data SET next_left_edge = %d, "
"abs_next_left_edge = %d WHERE edge_id = %d",
pg_info->toposchema_name, edge, abs(edge),
(int)Line_next->offset);
G_debug(3, "update edge=%d next_left_edge=%d",
(int)Line_next->offset, edge);
}
else {
sprintf(stmt,
"UPDATE \"%s\".edge_data SET next_right_edge = %d, "
"abs_next_right_edge = %d WHERE edge_id = %d",
pg_info->toposchema_name, edge, abs(edge),
(int)Line_next->offset);
G_debug(3, "update edge=%d next_right_edge=%d",
(int)Line_next->offset, edge);
}
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return 0;
}
}
return ret;
}
/*!
\brief Insert new face to the 'face' table (topo only)
\param Map pointer to Map_info struct
\param area area id (negative id for isles)
\return 0 on error
\return area id on success (>0)
*/
int Vect__insert_face_pg(struct Map_info *Map, int area)
{
char *stmt;
struct Format_info_pg *pg_info;
struct bound_box box;
if (area == 0)
return 0; /* universal face has id '0' in PostGIS Topology */
stmt = NULL;
pg_info = &(Map->fInfo.pg);
/* check if face exists */
/* get mbr of the area */
if (area > 0)
Vect_get_area_box(Map, area, &box);
else
Vect_get_isle_box(Map, abs(area), &box);
/* insert face if not exists */
G_asprintf(&stmt,
"INSERT INTO \"%s\".face (face_id, mbr) VALUES "
"(%d, ST_GeomFromText('POLYGON((%.12f %.12f, %.12f %.12f, %.12f "
"%.12f, %.12f %.12f, "
"%.12f %.12f))', %d))",
pg_info->toposchema_name, area, box.W, box.S, box.W, box.N,
box.E, box.N, box.E, box.S, box.W, box.S, pg_info->srid);
G_debug(3, "new face id=%d", area);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return 0;
}
G_free(stmt);
return area;
}
#if 0 /* unused */
/*!
\brief Delete existing face (currently unused)
\todo Set foreign keys as DEFERRABLE INITIALLY DEFERRED and use SET
CONSTRAINTS ALL DEFERRED
\param Map pointer to Map_info struct
\param area area id to delete
\return 0 on success
\return -1 on error
*/
int delete_face(struct Map_info *Map, int area)
{
char stmt[DB_SQL_MAX];
const struct Format_info_pg *pg_info;
pg_info = &(Map->fInfo.pg);
/* update centroids first */
sprintf(stmt, "UPDATE \"%s\".node SET containing_face = 0 "
"WHERE containing_face = %d", pg_info->toposchema_name, area);
G_debug(3, "SQL: %s", stmt);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
/* update also edges (left face) */
sprintf(stmt, "UPDATE \"%s\".edge_data SET left_face = 0 "
"WHERE left_face = %d", pg_info->toposchema_name, area);
G_debug(3, "SQL: %s", stmt);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
/* update also edges (left face) */
sprintf(stmt, "UPDATE \"%s\".edge_data SET right_face = 0 "
"WHERE right_face = %d", pg_info->toposchema_name, area);
G_debug(3, "SQL: %s", stmt);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
/* delete face */
sprintf(stmt, "DELETE FROM \"%s\".face WHERE face_id = %d",
pg_info->toposchema_name, area);
G_debug(3, "delete face id=%d", area);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
return 0;
}
/*!
\brief Update lines (next left and right edges)
- isolated edges
next left edge: -edge
next right edge: edge
- connected edges
next left edge: next edge or -edge
next right edge: next edge or edge
\param Map pointer to Map_info struct
\param line feature id
\return 0 on success
\return -1 on error
*/
int update_topo_edge(struct Map_info *Map, int line)
{
int i, n;
int nle, nre, next_edge;
char stmt[DB_SQL_MAX];
struct Format_info_pg *pg_info;
struct P_line *Line;
pg_info = &(Map->fInfo.pg);
if (line < 1 || line > Map->plus.n_lines) {
G_warning(_("Attempt to access non-existing feature %d"), line);
return -1;
}
Line = Map->plus.Line[line];
if (!Line) {
G_warning(_("Attempt to access dead feature %d"), line);
return -1;
}
struct P_topo_l *topo = (struct P_topo_l *)Line->topo;
nre = nle = 0; /* edge = 0 is an illegal value */
/* check for line connection */
for (i = 0; i < 2; i++) {
/* first check start node then end node */
n = i == 0 ? Vect_get_node_n_lines(Map, topo->N1)
: Vect_get_node_n_lines(Map, topo->N2);
if (n < 2) /* no connection */
continue;
next_edge = update_next_edge(Map, n, i == 0 ? line : -line);
if (next_edge != 0) {
if (i == 0)
nre = next_edge; /* update next right edge for start node */
else
nle = next_edge; /* update next left edge for end node */
}
else {
G_warning(_("Unable to determine next left/right edge"));
return -1;
}
}
if (nle == 0 && nre == 0) /* nothing changed */
return 0;
if (nle != 0 && nre != 0) {
/* update both next left and right edge */
sprintf(stmt, "UPDATE \"%s\".edge_data SET "
"next_left_edge = %d, abs_next_left_edge = %d, "
"next_right_edge = %d, abs_next_right_edge = %d "
"WHERE edge_id = %d", pg_info->toposchema_name,
nle, abs(nle), nre, abs(nre), (int)Line->offset);
}
else if (nle != 0) {
/* update next left edge only */
sprintf(stmt, "UPDATE \"%s\".edge_data SET "
"next_left_edge = %d, abs_next_left_edge = %d "
"WHERE edge_id = %d", pg_info->toposchema_name,
nle, abs(nle), (int)Line->offset);
}
else {
/* update next right edge only */
sprintf(stmt, "UPDATE \"%s\".edge_data SET "
"next_right_edge = %d, abs_next_right_edge = %d "
"WHERE edge_id = %d", pg_info->toposchema_name,
nre, abs(nre), (int)Line->offset);
}
G_debug(3, "update edge=%d next_left_edge=%d next_right_edge=%d",
(int)Line->offset, nle, nre);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
/* rollback transaction */
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
return 0;
}
#endif
/*!
\brief Update lines (left and right faces)
TODO: handle isles
\param Map pointer to Map_info struct
\param line feature id
\return 0 on success
\return -1 on error
*/
int update_topo_face(struct Map_info *Map, int line)
{
int i, s, area, face[2];
char stmt[DB_SQL_MAX];
struct Format_info_pg *pg_info;
struct P_line *Line, *Line_i;
struct P_area *Area;
struct P_topo_b *topo, *topo_i;
pg_info = &(Map->fInfo.pg);
if (line < 1 || line > Map->plus.n_lines) {
G_warning(_("Attempt to access non-existing feature %d"), line);
return -1;
}
Line = Map->plus.Line[line];
if (!Line) {
G_warning(_("Attempt to access dead feature %d"), line);
return -1;
}
topo = (struct P_topo_b *)Line->topo;
/* for both side on the current boundary (line) */
/* create new faces */
for (s = 0; s < 2; s++) { /* for each side */
area = s == 0 ? topo->left : topo->right;
if (area <= 0) /* no area - skip */
continue;
face[s] = Vect__insert_face_pg(Map, area);
if (face[s] < 1) {
G_warning(_("Unable to create new face"));
return -1;
}
}
/* update edges forming faces */
for (s = 0; s < 2; s++) { /* for each side */
area = s == 0 ? topo->left : topo->right;
if (area <= 0) /* no area - skip */
continue;
Area = Map->plus.Area[area];
for (i = 0; i < Area->n_lines; i++) {
Line_i = Map->plus.Line[abs(Area->lines[i])];
topo_i = (struct P_topo_b *)Line_i->topo;
sprintf(stmt,
"UPDATE \"%s\".edge_data SET "
"left_face = %d, right_face = %d "
"WHERE edge_id = %d",
pg_info->toposchema_name,
topo_i->left > 0 ? topo_i->left : 0,
topo_i->right > 0 ? topo_i->right : 0, (int)Line_i->offset);
G_debug(2, "SQL: %s", stmt);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
}
/* update also centroids (stored as nodes) */
if (Area->centroid > 0) {
Line_i = Map->plus.Line[Area->centroid];
sprintf(stmt,
"UPDATE \"%s\".node SET containing_face = %d "
"WHERE node_id = %d",
pg_info->toposchema_name, face[s], (int)Line_i->offset);
G_debug(2, "SQL: %s", stmt);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
/* rollback transaction */
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
}
}
return 0;
}
/*!
\brief Add line to native and PostGIS topology
\param Map vector map
\param offset ???
\param type feature type
\param Points feature vertices
\return feature id
\return -1 on error
*/
int add_line_to_topo_pg(struct Map_info *Map, off_t offset, int type,
const struct line_pnts *points)
{
int line, n_nodes;
struct Plus_head *plus;
plus = &(Map->plus);
Vect_reset_updated(Map);
line = V2__add_line_to_topo_nat(Map, offset, type, points, NULL, -1, NULL);
/* insert new nodes into 'node' table */
n_nodes = Vect_get_num_updated_nodes(Map);
if (n_nodes > 0) {
int i, node;
double x, y, z;
if (!Points)
Points = Vect_new_line_struct();
for (i = 0; i < n_nodes; i++) {
node = Vect_get_updated_node(Map, i);
/* skip updated and deleted nodes */
if (node > 0 || plus->Node[abs(node)] == NULL)
continue;
G_debug(3, " new node: %d", node);
Vect_get_node_coor(Map, abs(node), &x, &y, &z);
Vect_reset_line(Points);
Vect_append_point(Points, x, y, z);
write_feature(Map, node, GV_POINT,
(const struct line_pnts **)&Points, 1, -1);
}
}
return line;
}
/*!
\brief Delete line from native and PostGIS topology
\param Map vector map
\param line feature id to remove from topo
\param type feature type
\param Points feature vertices
\return 0 on success
\return -1 on error
*/
int delete_line_from_topo_pg(struct Map_info *Map, int line, int type,
const struct line_pnts *Points)
{
int N1, N2, node_id;
char stmt[DB_SQL_MAX];
struct Format_info_pg *pg_info;
struct P_node *Node;
pg_info = &(Map->fInfo.pg);
Vect_reset_updated(Map);
if (!(type & GV_LINES))
return 0;
Vect_get_line_nodes(Map, line, &N1, &N2);
if (0 != V2__delete_line_from_topo_nat(Map, line, type, Points, NULL))
return -1;
Node = Map->plus.Node[N1];
if (!Node || Node->n_lines == 0) {
node_id = pg_info->offset.array[N1 - 1];
sprintf(stmt, "DELETE FROM \"%s\".\"node\" WHERE node_id = %d",
pg_info->toposchema_name, node_id);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
G_warning(_("Unable to delete node %d"), node_id);
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
}
Node = Map->plus.Node[N2];
if (!Node || Node->n_lines == 0) {
node_id = pg_info->offset.array[N2 - 1];
sprintf(stmt, "DELETE FROM \"%s\".\"node\" WHERE node_id = %d",
pg_info->toposchema_name, node_id);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
G_warning(_("Unable to delete node %d"), node_id);
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
}
return 0;
}
int set_constraint_to_deferrable(struct Format_info_pg *pg_info,
const char *table, const char *constraint,
const char *column, const char *ref_table,
const char *ref_column)
{
char stmt[DB_SQL_MAX];
sprintf(stmt, "ALTER TABLE \"%s\".%s DROP CONSTRAINT %s",
pg_info->toposchema_name, table, constraint);
if (-1 == Vect__execute_pg(pg_info->conn, stmt)) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
sprintf(stmt,
"ALTER TABLE \"%s\".%s ADD CONSTRAINT %s "
"FOREIGN KEY (%s) REFERENCES \"%s\".%s (%s) "
"DEFERRABLE INITIALLY DEFERRED",
pg_info->toposchema_name, table, constraint, column,
pg_info->toposchema_name, ref_table, ref_column);
if (-1 == Vect__execute_pg(pg_info->conn, stmt)) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
return 0;
}
/*!
\brief Open database connection with attribute table
\param pg_info pointer to Format_info_pg struct
\return pointer to dbDriver on success
\return NULL on failure
*/
dbDriver *open_db(struct Format_info_pg *pg_info)
{
dbDriver *driver;
dbHandle handle;
struct field_info *Fi;
db_init_handle(&handle);
Fi = pg_info->fi;
pg_info->dbdriver = driver = db_start_driver(Fi->driver);
if (!driver) {
G_warning(_("Unable to start driver <%s>"), Fi->driver);
return NULL;
}
db_set_handle(&handle, Fi->database, NULL);
if (db_open_database(driver, &handle) != DB_OK) {
G_warning(_("Unable to open database <%s> by driver <%s>"),
Fi->database, Fi->driver);
db_close_database_shutdown_driver(driver);
pg_info->dbdriver = NULL;
return NULL;
}
return pg_info->dbdriver;
}
#endif
|