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
|
/******************************************************************************
*
* Project: MapServer
* Purpose: Various template processing functions.
* Author: Steve Lime and the MapServer team.
*
******************************************************************************
* Copyright (c) 1996-2005 Regents of the University of Minnesota.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies of this Software or works derived from this Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
******************************************************************************
*
* $Log: maptemplate.c,v $
* Revision 1.122 2006/09/29 20:52:05 sdlime
* Updated error message about malformed template names to output the actual name. Makes debugging easier.
*
* Revision 1.121 2006/08/23 04:15:29 sdlime
* Updated template tags that maintain checkbox/radio box/select list state to output valid XHTML. (bug 1860)
*
* Revision 1.120 2006/08/16 14:05:07 sdlime
* Removed any ambiguity with msCommifyString(). At the moment it only handles North American representaions of numbers (e.g. 2,345.678).
*
* Revision 1.119 2006/04/25 20:58:46 sdlime
* Fixed bug in shpxy that prevented the requested projection from being applied in certain cases.
*
* Revision 1.118 2006/01/31 17:18:35 sdlime
* Initial item tag support, only for core attributes, does not cover joined attributes as yet.
*
* Revision 1.117 2005/12/14 19:17:14 sdlime
* Added a few simple tags to the HTML legend output code.
*
* Revision 1.116 2005/12/07 16:50:52 sdlime
* Fixed crash with non-substition lines in one-to-many join templates. (bug 1557)
*
* Revision 1.115 2005/10/28 14:28:29 sdlime
* Altered default coordinate output for the shpxy template tag to match imagemap specs. Added centroid option to shpxy tag to output a single point for line and polygon shapes. Should more closely match the label point, but isn't perfect.
*
* Revision 1.114 2005/10/16 04:20:01 frank
* Avoid warnings on gcc4.
*
* Revision 1.113 2005/10/10 23:18:51 sdlime
* Update the shpxy tag processor to avoid outputing degenerate shapes (or parts). That is, don't output a polygon with less than 3 vertices or a line with less than 2. Should only really affect image map production.
*
* Revision 1.112 2005/06/14 16:03:35 dan
* Updated copyright date to 2005
*
* Revision 1.111 2005/05/27 15:00:12 dan
* New regex wrappers to solve issues with previous version (bug 1354)
*
* Revision 1.110 2005/05/25 14:29:46 dan
* Bug 1364: HTML legend templates: support [if] tests on "group_name" in
* leg_group_html blocks, and for "class_name" in leg_class_html blocks.
*
* Revision 1.109 2005/05/18 18:11:30 sdlime
* Moved layer query header parsing to AFTER the layer items and joins have been done.
*
* Revision 1.108 2005/03/28 02:38:55 dan
* Make sure we always use PID in temp image filenames generated by
* msProcessTemplate() (bug 1299)
*
* Revision 1.107 2005/03/04 14:00:33 dan
* More fixes for null layer names in template procesing (bug 1271)
*
* Revision 1.106 2005/03/04 13:37:56 dan
* Fixed crash in template generation with empty layer names (bug 1271)
*
* Revision 1.105 2005/02/18 03:06:47 dan
* Turned all C++ (//) comments into C comments (bug 1238)
*
* Revision 1.104 2005/01/28 15:09:41 julien
* HTML Legend: Add opt_flag support for layer groups. Default flag=15. Bug 1173
*
* Revision 1.103 2004/12/02 18:40:32 sdlime
* Added template tags to expose the reference map extent (bug 1102).
*
* Revision 1.102 2004/11/22 03:43:54 sdlime
* Added tests to mimimize the threat of recursion problems when evaluating LAYER REQUIRES or LABELREQUIRES expressions. Note that via MapScript it is possible to circumvent that test by defining layers with problems after running prepareImage. Other things crop up in that case too (symbol scaling dies) so it should be considered bad programming practice.
*
* Revision 1.101 2004/11/12 21:53:39 dan
* Free legHeaderHtml and legFooterHtml in generateLegendTemplate() (bug 1032)
*
* Revision 1.100 2004/11/12 21:31:11 sdlime
* Addressed bug 1032. HTML legends now support a [leg_header_html] and [leg_footer_html] tag.
*
* Revision 1.99 2004/11/11 20:25:52 sdlime
* Addressed bug 1057 by removing the [get_layers] template tag.
*
* Revision 1.98 2004/11/11 19:55:24 sdlime
* Fixed enhancement request 1004, plus a bit more. ERROR and EMPTY properties are now treated as URL templates so for example you could pass the map xy value for a bombed query (perhaps to another service). Also added [errmsg] and [errmsg_esc] tags to the templating code so that the current error stack can be output. Various error messages are delimited by semi-colons.
*
* Revision 1.97 2004/11/01 15:42:53 julien
* Allow use of '=' in HTML template tag parser (Bug 978).
*
* Revision 1.96 2004/10/28 18:16:17 dan
* Fixed WMS GetLegendGraphic which was returning an exception (GD error)
* when requested layer was out of scale (bug 1006)
*
* Revision 1.95 2004/10/21 04:30:55 frank
* Added standardized headers. Added MS_CVSID().
*
*/
#include "maptemplate.h"
#include "maphash.h"
#include "map.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <time.h>
#include <ctype.h>
MS_CVSID("$Id: maptemplate.c,v 1.122 2006/09/29 20:52:05 sdlime Exp $")
char *processLine(mapservObj* msObj, char* instr, int mode);
/*
* Redirect to (only use in CGI)
*
*/
int msRedirect(char *url)
{
msIO_printf("Status: 302 Found\n");
msIO_printf("Uri: %s\n", url);
msIO_printf("Location: %s\n", url);
msIO_printf("Content-type: text/html%c%c",10,10);
/* the following may be an issue for fastcgi/msIO_. */
fflush(stdout);
return MS_SUCCESS;
}
/*
** Sets the map extent under a variety of scenarios.
*/
int setExtent(mapservObj *msObj)
{
double cellx,celly,cellsize;
switch(msObj->CoordSource)
{
case FROMUSERBOX: /* user passed in a map extent */
break;
case FROMIMGBOX: /* fully interactive web, most likely with java front end */
cellx = MS_CELLSIZE(msObj->ImgExt.minx, msObj->ImgExt.maxx, msObj->ImgCols);
celly = MS_CELLSIZE(msObj->ImgExt.miny, msObj->ImgExt.maxy, msObj->ImgRows);
msObj->Map->extent.minx = MS_IMAGE2MAP_X(msObj->ImgBox.minx, msObj->ImgExt.minx, cellx);
msObj->Map->extent.maxx = MS_IMAGE2MAP_X(msObj->ImgBox.maxx, msObj->ImgExt.minx, cellx);
msObj->Map->extent.maxy = MS_IMAGE2MAP_Y(msObj->ImgBox.miny, msObj->ImgExt.maxy, celly); /* y's are flip flopped because img/map coordinate systems are */
msObj->Map->extent.miny = MS_IMAGE2MAP_Y(msObj->ImgBox.maxy, msObj->ImgExt.maxy, celly);
break;
case FROMIMGPNT:
cellx = MS_CELLSIZE(msObj->ImgExt.minx, msObj->ImgExt.maxx, msObj->ImgCols);
celly = MS_CELLSIZE(msObj->ImgExt.miny, msObj->ImgExt.maxy, msObj->ImgRows);
msObj->MapPnt.x = MS_IMAGE2MAP_X(msObj->ImgPnt.x, msObj->ImgExt.minx, cellx);
msObj->MapPnt.y = MS_IMAGE2MAP_Y(msObj->ImgPnt.y, msObj->ImgExt.maxy, celly);
msObj->Map->extent.minx = msObj->MapPnt.x - .5*((msObj->ImgExt.maxx - msObj->ImgExt.minx)/msObj->fZoom); /* create an extent around that point */
msObj->Map->extent.miny = msObj->MapPnt.y - .5*((msObj->ImgExt.maxy - msObj->ImgExt.miny)/msObj->fZoom);
msObj->Map->extent.maxx = msObj->MapPnt.x + .5*((msObj->ImgExt.maxx - msObj->ImgExt.minx)/msObj->fZoom);
msObj->Map->extent.maxy = msObj->MapPnt.y + .5*((msObj->ImgExt.maxy - msObj->ImgExt.miny)/msObj->fZoom);
break;
case FROMREFPNT:
cellx = MS_CELLSIZE(msObj->Map->reference.extent.minx, msObj->Map->reference.extent.maxx, msObj->Map->reference.width);
celly = MS_CELLSIZE(msObj->Map->reference.extent.miny, msObj->Map->reference.extent.maxy, msObj->Map->reference.height);
msObj->MapPnt.x = MS_IMAGE2MAP_X(msObj->RefPnt.x, msObj->Map->reference.extent.minx, cellx);
msObj->MapPnt.y = MS_IMAGE2MAP_Y(msObj->RefPnt.y, msObj->Map->reference.extent.maxy, celly);
msObj->Map->extent.minx = msObj->MapPnt.x - .5*(msObj->ImgExt.maxx - msObj->ImgExt.minx); /* create an extent around that point */
msObj->Map->extent.miny = msObj->MapPnt.y - .5*(msObj->ImgExt.maxy - msObj->ImgExt.miny);
msObj->Map->extent.maxx = msObj->MapPnt.x + .5*(msObj->ImgExt.maxx - msObj->ImgExt.minx);
msObj->Map->extent.maxy = msObj->MapPnt.y + .5*(msObj->ImgExt.maxy - msObj->ImgExt.miny);
break;
case FROMBUF:
msObj->Map->extent.minx = msObj->MapPnt.x - msObj->Buffer; /* create an extent around that point, using the buffer */
msObj->Map->extent.miny = msObj->MapPnt.y - msObj->Buffer;
msObj->Map->extent.maxx = msObj->MapPnt.x + msObj->Buffer;
msObj->Map->extent.maxy = msObj->MapPnt.y + msObj->Buffer;
break;
case FROMSCALE:
cellsize = (msObj->Scale/msObj->Map->resolution)/msInchesPerUnit(msObj->Map->units,0); /* user supplied a point and a scale */
msObj->Map->extent.minx = msObj->MapPnt.x - cellsize*msObj->Map->width/2.0;
msObj->Map->extent.miny = msObj->MapPnt.y - cellsize*msObj->Map->height/2.0;
msObj->Map->extent.maxx = msObj->MapPnt.x + cellsize*msObj->Map->width/2.0;
msObj->Map->extent.maxy = msObj->MapPnt.y + cellsize*msObj->Map->height/2.0;
break;
default: /* use the default in the mapfile if it exists */
if((msObj->Map->extent.minx == msObj->Map->extent.maxx) && (msObj->Map->extent.miny == msObj->Map->extent.maxy)) {
msSetError(MS_WEBERR, "No way to generate map extent.", "mapserv()");
return MS_FAILURE;
}
}
msObj->RawExt = msObj->Map->extent; /* save unaltered extent */
return MS_SUCCESS;
}
int checkWebExtent(mapservObj *msObj)
{
return MS_SUCCESS;
}
int checkWebScale(mapservObj *msObj)
{
int status;
msObj->Map->cellsize = msAdjustExtent(&(msObj->Map->extent), msObj->Map->width, msObj->Map->height); /* we do this cause we need a scale */
if((status = msCalculateScale(msObj->Map->extent, msObj->Map->units, msObj->Map->width, msObj->Map->height, msObj->Map->resolution, &msObj->Map->scale)) != MS_SUCCESS) return status;
if((msObj->Map->scale < msObj->Map->web.minscale) && (msObj->Map->web.minscale > 0)) {
if(msObj->Map->web.mintemplate) { /* use the template provided */
if(TEMPLATE_TYPE(msObj->Map->web.mintemplate) == MS_FILE) {
if ((status = msReturnPage(msObj, msObj->Map->web.mintemplate, BROWSE, NULL)) != MS_SUCCESS) return status;
}
else
{
if ((status = msReturnURL(msObj, msObj->Map->web.mintemplate, BROWSE)) != MS_SUCCESS) return status;
}
}
else
{ /* force zoom = 1 (i.e. pan) */
msObj->fZoom = msObj->Zoom = 1;
msObj->ZoomDirection = 0;
msObj->CoordSource = FROMSCALE;
msObj->Scale = msObj->Map->web.minscale;
msObj->MapPnt.x = (msObj->Map->extent.maxx + msObj->Map->extent.minx)/2; /* use center of bad extent */
msObj->MapPnt.y = (msObj->Map->extent.maxy + msObj->Map->extent.miny)/2;
setExtent(msObj);
msObj->Map->cellsize = msAdjustExtent(&(msObj->Map->extent), msObj->Map->width, msObj->Map->height);
if((status = msCalculateScale(msObj->Map->extent, msObj->Map->units, msObj->Map->width, msObj->Map->height, msObj->Map->resolution, &msObj->Map->scale)) != MS_SUCCESS) return status;
}
}
else
if((msObj->Map->scale > msObj->Map->web.maxscale) && (msObj->Map->web.maxscale > 0)) {
if(msObj->Map->web.maxtemplate) { /* use the template provided */
if(TEMPLATE_TYPE(msObj->Map->web.maxtemplate) == MS_FILE) {
if ((status = msReturnPage(msObj, msObj->Map->web.maxtemplate, BROWSE, NULL)) != MS_SUCCESS) return status;
}
else {
if ((status = msReturnURL(msObj, msObj->Map->web.maxtemplate, BROWSE)) != MS_SUCCESS) return status;
}
} else { /* force zoom = 1 (i.e. pan) */
msObj->fZoom = msObj->Zoom = 1;
msObj->ZoomDirection = 0;
msObj->CoordSource = FROMSCALE;
msObj->Scale = msObj->Map->web.maxscale;
msObj->MapPnt.x = (msObj->Map->extent.maxx + msObj->Map->extent.minx)/2; /* use center of bad extent */
msObj->MapPnt.y = (msObj->Map->extent.maxy + msObj->Map->extent.miny)/2;
setExtent(msObj);
msObj->Map->cellsize = msAdjustExtent(&(msObj->Map->extent), msObj->Map->width, msObj->Map->height);
if((status = msCalculateScale(msObj->Map->extent, msObj->Map->units, msObj->Map->width, msObj->Map->height, msObj->Map->resolution, &msObj->Map->scale)) != MS_SUCCESS) return status;
}
}
return MS_SUCCESS;
}
int msReturnTemplateQuery(mapservObj *msObj, char* pszMimeType,
char **papszBuffer)
{
imageObj *img = NULL;
int status;
char buffer[1024];
if (!pszMimeType)
{
msSetError(MS_WEBERR, "Mime type not specified.", "msReturnTemplateQuery()");
return MS_FAILURE;
}
if(msObj->Map->querymap.status)
{
checkWebScale(msObj);
img = msDrawQueryMap(msObj->Map);
if(!img) return MS_FAILURE;
snprintf(buffer, 1024, "%s%s%s.%s", msObj->Map->web.imagepath, msObj->Map->name, msObj->Id, MS_IMAGE_EXTENSION(msObj->Map->outputformat));
status = msSaveImage(msObj->Map, img, buffer);
if(status != MS_SUCCESS) return status;
msFreeImage(img);
if((msObj->Map->legend.status == MS_ON || msObj->UseShapes) && msObj->Map->legend.template == NULL)
{
img = msDrawLegend(msObj->Map, MS_FALSE);
if(!img) return MS_FAILURE;
snprintf(buffer, 1024, "%s%sleg%s.%s", msObj->Map->web.imagepath, msObj->Map->name, msObj->Id, MS_IMAGE_EXTENSION(msObj->Map->outputformat));
status = msSaveImage(msObj->Map, img, buffer);
if(status != MS_SUCCESS) return status;
msFreeImage(img);
}
if(msObj->Map->scalebar.status == MS_ON)
{
img = msDrawScalebar(msObj->Map);
if(!img) return MS_FAILURE;
snprintf(buffer, 1024, "%s%ssb%s.%s", msObj->Map->web.imagepath, msObj->Map->name, msObj->Id, MS_IMAGE_EXTENSION(msObj->Map->outputformat));
status = msSaveImage( msObj->Map, img, buffer);
if(status != MS_SUCCESS) return status;
msFreeImage(img);
}
if(msObj->Map->reference.status == MS_ON)
{
img = msDrawReferenceMap(msObj->Map);
if(!img) return MS_FAILURE;
snprintf(buffer, 1024, "%s%sref%s.%s", msObj->Map->web.imagepath, msObj->Map->name, msObj->Id, MS_IMAGE_EXTENSION(msObj->Map->outputformat));
status = msSaveImage(msObj->Map, img, buffer);
if(status != MS_SUCCESS) return status;
msFreeImage(img);
}
}
if ((status = msReturnQuery(msObj, pszMimeType, papszBuffer)) != MS_SUCCESS)
return status;
return MS_SUCCESS;
}
/*
** Is a particular layer or group on, that is was it requested explicitly by the user.
*/
int isOn(mapservObj *msObj, char *name, char *group)
{
int i;
for(i=0;i<msObj->NumLayers;i++) {
if(name && strcmp(msObj->Layers[i], name) == 0) return(MS_TRUE);
if(group && strcmp(msObj->Layers[i], group) == 0) return(MS_TRUE);
}
return(MS_FALSE);
}
/************************************************************************/
/* int sortLayerByOrder(mapObj *map, char* pszOrder) */
/* */
/* sorth the displaying in ascending or descending order. */
/************************************************************************/
int sortLayerByOrder(mapObj *map, char* pszOrder)
{
int *panCurrentOrder = NULL;
int i = 0;
if (!map)
{
msSetError(MS_WEBERR, "Invalid pointer.", "sortLayerByOrder()");
return MS_FAILURE;
}
/* ==================================================================== */
/* The flag "ascending" is in fact not useful since the */
/* default ordering is ascending. */
/* ==================================================================== */
/* -------------------------------------------------------------------- */
/* the map->layerorder should be set at this point in the */
/* sortLayerByMetadata. */
/* -------------------------------------------------------------------- */
if (map->layerorder)
{
panCurrentOrder = (int*)malloc(map->numlayers * sizeof(int));
for (i=0; i<map->numlayers ;i++)
panCurrentOrder[i] = map->layerorder[i];
if (strcasecmp(pszOrder, "DESCENDING") == 0)
{
for (i=0; i<map->numlayers; i++)
map->layerorder[i] = panCurrentOrder[map->numlayers-1-i];
}
free(panCurrentOrder);
}
return MS_SUCCESS;
}
/*!
* This function set the map->layerorder
* index order by the metadata collumn name
*/
int sortLayerByMetadata(mapObj *map, char* pszMetadata)
{
int nLegendOrder1;
int nLegendOrder2;
char *pszLegendOrder1;
char *pszLegendOrder2;
int i, j;
int tmp;
if (!map) {
msSetError(MS_WEBERR, "Invalid pointer.", "sortLayerByMetadata()");
return MS_FAILURE;
}
/*
* Initiate to default order (Reverse mapfile order)
*/
if (map->layerorder)
{
int *pnLayerOrder;
/* Backup the original layer order to be able to reverse it */
pnLayerOrder = (int*)malloc(map->numlayers * sizeof(int));
for (i=0; i<map->numlayers ;i++)
pnLayerOrder[i] = map->layerorder[i];
/* Get a new layerorder array */
free(map->layerorder);
map->layerorder = (int*)malloc(map->numlayers * sizeof(int));
/* Reverse the layerorder array */
for (i=0; i<map->numlayers ;i++)
map->layerorder[i] = pnLayerOrder[map->numlayers - i - 1];
free(pnLayerOrder);
}
else
{
map->layerorder = (int*)malloc(map->numlayers * sizeof(int));
for (i=0; i<map->numlayers ;i++)
map->layerorder[i] = map->numlayers - i - 1;
}
if (!pszMetadata)
return MS_SUCCESS;
/*
* Bubble sort algo (not very efficient)
* should implement a kind of quick sort
* alog instead
*/
for (i=0; i<map->numlayers-1; i++) {
for (j=0; j<map->numlayers-1-i; j++) {
pszLegendOrder1 = msLookupHashTable(&(map->layers[map->layerorder[j+1]].metadata), pszMetadata);
pszLegendOrder2 = msLookupHashTable(&(map->layers[map->layerorder[j]].metadata), pszMetadata);
if (!pszLegendOrder1 || !pszLegendOrder2)
continue;
nLegendOrder1 = atoi(pszLegendOrder1);
nLegendOrder2 = atoi(pszLegendOrder2);
if (nLegendOrder1 < nLegendOrder2) { /* compare the two neighbors */
tmp = map->layerorder[j]; /* swap a[j] and a[j+1] */
map->layerorder[j] = map->layerorder[j+1];
map->layerorder[j+1] = tmp;
}
}
}
return MS_SUCCESS;
}
/*!
* This function return a pointer
* at the begining of the first occurence
* of pszTag in pszInstr.
*
* Tag can be [TAG] or [TAG something]
*/
char* findTag(char* pszInstr, char* pszTag)
{
char *pszTag1, *pszTag2, *pszStart;
if (!pszInstr || !pszTag) {
msSetError(MS_WEBERR, "Invalid pointer.", "findTag()");
return NULL;
}
pszTag1 = (char*)malloc(strlen(pszTag) + 3);
pszTag2 = (char*)malloc(strlen(pszTag) + 3);
strcpy(pszTag1, "[");
strcat(pszTag1, pszTag);
strcat(pszTag1, " ");
strcpy(pszTag2, "[");
strcat(pszTag2, pszTag);
strcat(pszTag2, "]");
pszStart = strstr(pszInstr, pszTag1);
if (pszStart == NULL)
pszStart = strstr(pszInstr, pszTag2);
free(pszTag1);
free(pszTag2);
return pszStart;
}
/*!
* return a hashtableobj from instr of all
* arguments. hashtable must be freed by caller.
*/
int getTagArgs(char* pszTag, char* pszInstr, hashTableObj **ppoHashTable)
{
char *pszStart, *pszEnd, *pszArgs;
int nLength;
char **papszArgs, **papszVarVal;
int nArgs, nDummy;
int i;
char *pszQuoteStr, *pszQuoteStart, *pszQuoteEnd;
if (!pszTag || !pszInstr) {
msSetError(MS_WEBERR, "Invalid pointer.", "getTagArgs()");
return MS_FAILURE;
}
/* set position to the begining of tag */
pszStart = findTag(pszInstr, pszTag);
if (pszStart) {
/* find ending position */
pszEnd = strchr(pszStart, ']');
if (pszEnd) {
/* skip the tag name */
pszStart = pszStart + strlen(pszTag) + 1;
/* get length of all args */
nLength = pszEnd - pszStart;
if (nLength > 0) { /* is there arguments ? */
pszArgs = (char*)malloc(nLength + 1);
strncpy(pszArgs, pszStart, nLength);
pszArgs[nLength] = '\0';
if (!(*ppoHashTable))
*ppoHashTable = msCreateHashTable();
/* Enable the use of "" in args */
/* To do so, extract all "" values */
/* and replace the " in it by spaces */
if(strchr(pszArgs, '"'))
{
pszQuoteEnd = pszArgs;
while((pszQuoteStart = strchr(pszQuoteEnd, '"')))
{
pszQuoteEnd = strchr(pszQuoteStart+1, '"');
if(pszQuoteEnd)
{
pszQuoteEnd[0] = '\0';
while((pszQuoteStr = strchr(pszQuoteStart, ' ')))
pszQuoteStr[0] = '"';
/* Replace also the '=' to be able to use it in the */
/* quoted argument. The '=' is replaced by ']' which */
/* is illegal before here since this is the closing */
/* character of the whole tag. */
while((pszQuoteStr = strchr(pszQuoteStart, '=')))
pszQuoteStr[0] = ']';
/* Then remove the starting and ending quote */
pszQuoteEnd[0] = '"';
for(i=(pszQuoteStart-pszArgs); i<nLength; i++)
{
if(i+1 >= pszQuoteEnd-pszArgs)
if(i+2 >= nLength)
pszArgs[i] = '\0';
else
pszArgs[i] = pszArgs[i+2];
else
pszArgs[i] = pszArgs[i+1];
}
}
}
}
/* put all arguments seperate by space in a hash table */
papszArgs = split(pszArgs, ' ', &nArgs);
/* msReturnTemplateQuerycheck all argument if they have values */
for (i=0; i<nArgs; i++) {
/* Quotes are in fact spaces */
if(strchr(papszArgs[i],'"'))
while((pszQuoteStr = strchr(papszArgs[i],'"')))
pszQuoteStr[0] = ' ';
if (strchr(papszArgs[i], '='))
{
papszVarVal = split(papszArgs[i], '=', &nDummy);
/* ']' are in fact '=' (See above). */
if(strchr(papszVarVal[1],']'))
while((pszQuoteStr = strchr(papszVarVal[1],']')))
pszQuoteStr[0] = '=';
msInsertHashTable(*ppoHashTable, papszVarVal[0],
papszVarVal[1]);
free(papszVarVal[0]);
free(papszVarVal[1]);
free(papszVarVal);
}
else /* no value specified. set it to 1 */
msInsertHashTable(*ppoHashTable, papszArgs[i], "1");
free(papszArgs[i]);
}
free(papszArgs);
free(pszArgs);
}
}
}
return MS_SUCCESS;
}
/*!
* return a substring from instr beetween [tag] and [/tag]
* char* returned must be freed by caller.
* pszNextInstr will be a pointer at the end of the
* first occurence found.
*/
int getInlineTag(char* pszTag, char* pszInstr, char **pszResult)
{
char *pszStart, *pszEnd=NULL, *pszEndTag, *pszPatIn, *pszPatOut=NULL, *pszTmp;
int nInst=0;
int nLength;
*pszResult = NULL;
if (!pszInstr || !pszTag) {
msSetError(MS_WEBERR, "Invalid pointer.", "getInlineTag()");
return MS_FAILURE;
}
pszEndTag = (char*)malloc(strlen(pszTag) + 3);
strcpy(pszEndTag, "[/");
strcat(pszEndTag, pszTag);
/* find start tag */
pszPatIn = findTag(pszInstr, pszTag);
pszPatOut = strstr(pszInstr, pszEndTag);
pszStart = pszPatIn;
pszTmp = pszInstr;
if (pszPatIn)
{
do
{
if (pszPatIn && pszPatIn < pszPatOut)
{
nInst++;
pszTmp = pszPatIn;
}
if (pszPatOut && ((pszPatIn == NULL) || pszPatOut < pszPatIn))
{
pszEnd = pszPatOut;
nInst--;
pszTmp = pszPatOut;
}
pszPatIn = findTag(pszTmp+1, pszTag);
pszPatOut = strstr(pszTmp+1, pszEndTag);
}while (pszTmp != NULL && nInst > 0);
}
if (pszStart && pszEnd) {
/* find end of start tag */
pszStart = strchr(pszStart, ']');
if (pszStart) {
pszStart++;
nLength = pszEnd - pszStart;
if (nLength > 0) {
*pszResult = (char*)malloc(nLength + 1);
/* copy string beetween start and end tag */
strncpy(*pszResult, pszStart, nLength);
(*pszResult)[nLength] = '\0';
}
}
else
{
msSetError(MS_WEBERR, "Malformed [%s] tag.", "getInlineTag()", pszTag);
return MS_FAILURE;
}
}
msFree(pszEndTag);
return MS_SUCCESS;
}
/*!
* this function process all if tag in pszInstr.
* this function return a modified pszInstr.
* ht mus contain all variables needed by the function
* to interpret if expression.
*
* If bLastPass is true then all tests for 'null' values will be
* considered true if the corresponding value is not set.
*/
int processIf(char** pszInstr, hashTableObj *ht, int bLastPass)
{
/* char *pszNextInstr = pszInstr; */
char *pszStart, *pszEnd=NULL;
char *pszName, *pszValue, *pszOperator, *pszThen=NULL, *pszHTValue;
char *pszIfTag;
char *pszPatIn=NULL, *pszPatOut=NULL, *pszTmp;
int nInst = 0;
int bEmpty = 0;
int nLength;
hashTableObj *ifArgs=NULL;
if (!*pszInstr) {
msSetError(MS_WEBERR, "Invalid pointer.", "processIf()");
return MS_FAILURE;
}
/* find the if start tag */
pszStart = findTag(*pszInstr, "if");
while (pszStart)
{
pszPatIn = findTag(pszStart, "if");
pszPatOut = strstr(pszStart, "[/if]");
pszTmp = pszPatIn;
do
{
if (pszPatIn && pszPatIn < pszPatOut)
{
nInst++;
pszTmp = pszPatIn;
}
if (pszPatOut && ((pszPatIn == NULL) || pszPatOut < pszPatIn))
{
pszEnd = pszPatOut;
nInst--;
pszTmp = pszPatOut;
}
pszPatIn = findTag(pszTmp+1, "if");
pszPatOut = strstr(pszTmp+1, "[/if]");
}while (pszTmp != NULL && nInst > 0);
/* get the then string (if expression is true) */
if (getInlineTag("if", pszStart, &pszThen) != MS_SUCCESS)
{
msSetError(MS_WEBERR, "Malformed then if tag.", "processIf()");
return MS_FAILURE;
}
/* retrieve if tag args */
if (getTagArgs("if", pszStart, &ifArgs) != MS_SUCCESS)
{
msSetError(MS_WEBERR, "Malformed args if tag.", "processIf()");
return MS_FAILURE;
}
pszName = msLookupHashTable(ifArgs, "name");
pszValue = msLookupHashTable(ifArgs, "value");
pszOperator = msLookupHashTable(ifArgs, "oper");
/* Default operator if not set is "eq" */
if (pszOperator == NULL)
pszOperator = "eq";
bEmpty = 0;
if (pszName) {
/* build the complete if tag ([if all_args]then string[/if]) */
/* to replace if by then string if expression is true */
/* or by a white space if not. */
nLength = pszEnd - pszStart;
pszIfTag = (char*)malloc(nLength + 6);
strncpy(pszIfTag, pszStart, nLength);
pszIfTag[nLength] = '\0';
strcat(pszIfTag, "[/if]");
pszHTValue = msLookupHashTable(ht, pszName);
if (strcmp(pszOperator, "neq") == 0) {
if (pszValue && pszHTValue && strcasecmp(pszValue, pszHTValue) != 0)
{
*pszInstr = gsub(*pszInstr, pszIfTag, pszThen);
}
else if (pszHTValue)
{
*pszInstr = gsub(*pszInstr, pszIfTag, "");
bEmpty = 1;
}
}
else if (strcmp(pszOperator, "eq") == 0) {
if (pszValue && pszHTValue && strcasecmp(pszValue, pszHTValue) == 0)
{
*pszInstr = gsub(*pszInstr, pszIfTag, pszThen);
}
else if (pszHTValue)
{
*pszInstr = gsub(*pszInstr, pszIfTag, "");
bEmpty = 1;
}
}
else if (strcmp(pszOperator, "isnull") == 0) {
if (pszHTValue != NULL)
{
/* We met a non-null value... condition is false */
*pszInstr = gsub(*pszInstr, pszIfTag, "");
bEmpty = 1;
}
else if (bLastPass)
{
/* On last pass, if value is still null then condition is true */
*pszInstr = gsub(*pszInstr, pszIfTag, pszThen);
}
}
else if (strcmp(pszOperator, "isset") == 0) {
if (pszHTValue != NULL)
{
/* Found a non-null value... condition is true */
*pszInstr = gsub(*pszInstr, pszIfTag, pszThen);
}
else if (bLastPass)
{
/* On last pass, if value still not set then condition is false */
*pszInstr = gsub(*pszInstr, pszIfTag, "");
bEmpty = 1;
}
}
else {
msSetError(MS_WEBERR, "Unsupported operator (%s) in if tag.",
"processIf()", pszOperator);
return MS_FAILURE;
}
if (pszIfTag)
free(pszIfTag);
pszIfTag = NULL;
}
if (pszThen)
free (pszThen);
pszThen=NULL;
msFreeHashTable(ifArgs);
ifArgs=NULL;
/* find the if start tag */
if (bEmpty)
pszStart = findTag(pszStart, "if");
else
pszStart = findTag(pszStart + 1, "if");
}
return MS_SUCCESS;
}
/*
** Function to process an [item ...] tag: line contains the tag, shape holds the attributes.
*/
enum ITEM_ESCAPING {ESCAPE_HTML, ESCAPE_URL, ESCAPE_NONE};
static int processItem(layerObj *layer, char **line, shapeObj *shape)
{
int i, j;
char *tag, *tagStart, *tagEnd;
hashTableObj *tagArgs=NULL;
int tagOffset, tagLength;
char *encodedTagValue=NULL, *tagValue=NULL;
char *argValue;
char *name=NULL;
int precision=-1; /* don't change */
char *format="$value";
char *nullFormat="";
int uc=MS_FALSE, lc=MS_FALSE, commify=MS_FALSE;
/* int substr=MS_FALSE, substrStart, substrLength; */
int escape=ESCAPE_HTML;
if(!*line) {
msSetError(MS_WEBERR, "Invalid line pointer.", "processItem()");
return(MS_FAILURE);
}
tagStart = findTag(*line, "item");
if(!tagStart) return(MS_SUCCESS); /* OK, just return; */
while (tagStart) {
tagOffset = tagStart - *line;
/* check for any tag arguments */
if(getTagArgs("item", tagStart, &tagArgs) != MS_SUCCESS) return(MS_FAILURE);
if(tagArgs) {
argValue = msLookupHashTable(tagArgs, "name");
if(argValue) name = argValue;
argValue = msLookupHashTable(tagArgs, "precision");
if(argValue) precision = atoi(argValue);
argValue = msLookupHashTable(tagArgs, "format");
if(argValue) format = argValue;
argValue = msLookupHashTable(tagArgs, "nullformat");
if(argValue) nullFormat = argValue;
argValue = msLookupHashTable(tagArgs, "uc");
if(argValue && strcasecmp(argValue, "true") == 0) uc = MS_TRUE;
argValue = msLookupHashTable(tagArgs, "lc");
if(argValue && strcasecmp(argValue, "true") == 0) lc = MS_TRUE;
argValue = msLookupHashTable(tagArgs, "commify");
if(argValue && strcasecmp(argValue, "true") == 0) commify = MS_TRUE;
argValue = msLookupHashTable(tagArgs, "escape");
if(argValue && strcasecmp(argValue, "url") == 0) escape = ESCAPE_URL;
else if(argValue && strcasecmp(argValue, "none") == 0) escape = ESCAPE_NONE;
/* TODO: deal with sub strings */
}
if(!name) {
msSetError(MS_WEBERR, "Item tag contains no name attribute.", "processItem()");
return(MS_FAILURE);
}
for(i=0; i<layer->numitems; i++)
if(strcasecmp(name, layer->items[i]) == 0) break;
if(i == layer->numitems) {
msSetError(MS_WEBERR, "Item name not found in layer item list.", "processItem()");
return(MS_FAILURE);
}
/*
** now we know which item so build the tagValue
*/
if(shape->values[i] && strlen(shape->values[i]) > 0) {
char *itemValue=NULL;
if(precision != -1) {
char numberFormat[16];
itemValue = (char *) malloc(64); /* plenty big */
snprintf(numberFormat, 16, "%%.%dlf", precision);
snprintf(itemValue, 64, numberFormat, atof(shape->values[i]));
} else
itemValue = strdup(shape->values[i]);
if(commify == MS_TRUE)
itemValue = msCommifyString(itemValue);
/* apply other effects */
if(uc == MS_TRUE)
for(j=0; j<strlen(itemValue); j++) itemValue[j] = toupper(itemValue[j]);
if(lc == MS_TRUE)
for(j=0; j<strlen(itemValue); j++) itemValue[j] = tolower(itemValue[j]);
tagValue = strdup(format);
tagValue = gsub(tagValue, "$value", itemValue);
msFree(itemValue);
if(!tagValue) {
msSetError(MS_WEBERR, "Error applying item format.", "processItem()");
return(MS_FAILURE);
}
} else {
tagValue = strdup(nullFormat);
}
/* find the end of the tag */
tagEnd = strchr(tagStart, ']');
tagEnd++;
/* build the complete tag so we can do substitution */
tagLength = tagEnd - tagStart;
tag = (char *) malloc(tagLength + 1);
strncpy(tag, tagStart, tagLength);
tag[tagLength] = '\0';
/* do the replacement */
switch(escape) {
case ESCAPE_HTML:
encodedTagValue = msEncodeHTMLEntities(tagValue);
*line = gsub(*line, tag, encodedTagValue);
break;
case ESCAPE_URL:
encodedTagValue = msEncodeUrl(tagValue);
*line = gsub(*line, tag, encodedTagValue);
break;
case ESCAPE_NONE:
*line = gsub(*line, tag, tagValue);
break;
default:
break;
}
/* clean up */
free(tag); tag = NULL;
msFreeHashTable(tagArgs); tagArgs=NULL;
msFree(tagValue); tagValue=NULL;
msFree(encodedTagValue); encodedTagValue=NULL;
if((*line)[tagOffset] != '\0')
tagStart = findTag(*line+tagOffset+1, "item");
else
tagStart = NULL;
}
return(MS_SUCCESS);
}
/*
** Function to process a [shpxy ...] tag: line contains the tag, shape holds the coordinates.
**
** TODO's:
** - May need to change attribute names.
** - Need generalization routines (not here, but in mapprimative.c).
** - Try to avoid all the realloc calls.
*/
static int processCoords(layerObj *layer, char **line, shapeObj *shape)
{
int i,j;
int status;
char *tag, *tagStart, *tagEnd;
hashTableObj *tagArgs=NULL;
int tagOffset, tagLength;
char *argValue;
char *pointFormat1, *pointFormat2;
int pointFormatLength;
/* h = header, f=footer, s=seperator */
char *xh="", *xf=",";
char *yh="", *yf="";
char *cs=" "; /* coordinate */
char *ph="", *pf="", *ps=""; /* part */
char *sh="", *sf=""; /* shape */
int centroid=MS_FALSE; /* output just the centroid */
int precision=0;
shapeObj tShape;
char *projectionString=NULL;
char *coords=NULL, point[128];
if(!*line) {
msSetError(MS_WEBERR, "Invalid line pointer.", "processCoords()");
return(MS_FAILURE);
}
tagStart = findTag(*line, "shpxy");
/* It is OK to have no shpxy tags, just return. */
if( !tagStart )
return MS_SUCCESS;
if(!shape || shape->numlines <= 0) { /* I suppose we need to make sure the part has vertices (need shape checker?) */
msSetError(MS_WEBERR, "Null or empty shape.", "processCoords()");
return(MS_FAILURE);
}
while (tagStart) {
tagOffset = tagStart - *line;
/* check for any tag arguments */
if(getTagArgs("shpxy", tagStart, &tagArgs) != MS_SUCCESS) return(MS_FAILURE);
if(tagArgs) {
argValue = msLookupHashTable(tagArgs, "xh");
if(argValue) xh = argValue;
argValue = msLookupHashTable(tagArgs, "xf");
if(argValue) xf = argValue;
argValue = msLookupHashTable(tagArgs, "yh");
if(argValue) yh = argValue;
argValue = msLookupHashTable(tagArgs, "yf");
if(argValue) yf = argValue;
argValue = msLookupHashTable(tagArgs, "cs");
if(argValue) cs = argValue;
argValue = msLookupHashTable(tagArgs, "ph");
if(argValue) ph = argValue;
argValue = msLookupHashTable(tagArgs, "pf");
if(argValue) pf = argValue;
argValue = msLookupHashTable(tagArgs, "ps");
if(argValue) ps = argValue;
argValue = msLookupHashTable(tagArgs, "sh");
if(argValue) sh = argValue;
argValue = msLookupHashTable(tagArgs, "sf");
if(argValue) sf = argValue;
argValue = msLookupHashTable(tagArgs, "precision");
if(argValue) precision = atoi(argValue);
argValue = msLookupHashTable(tagArgs, "centroid");
if(argValue)
if(strcasecmp(argValue,"true") == 0) centroid = MS_TRUE;
argValue = msLookupHashTable(tagArgs, "proj");
if(argValue) projectionString = argValue;
}
/* build the per point format strings (version 1 contains the coordinate seperator, version 2 doesn't) */
pointFormatLength = strlen("xh") + strlen("xf") + strlen("yh") + strlen("yf") + strlen("cs") + 10 + 1;
pointFormat1 = (char *) malloc(pointFormatLength);
snprintf(pointFormat1, pointFormatLength, "%s%%.%dlf%s%s%%.%dlf%s%s", xh, precision, xf, yh, precision, yf, cs);
pointFormat2 = (char *) malloc(pointFormatLength);
snprintf(pointFormat2, pointFormatLength, "%s%%.%dlf%s%s%%.%dlf%s", xh, precision, xf, yh, precision, yf);
/* make a copy of the original shape or compute a centroid if necessary */
msInitShape(&tShape);
if(centroid == MS_TRUE) {
pointObj p;
p.x = (shape->bounds.minx + shape->bounds.maxx)/2;
p.y = (shape->bounds.miny + shape->bounds.maxy)/2;
tShape.type = MS_SHAPE_POINT;
tShape.line = (lineObj *) malloc(sizeof(lineObj));
tShape.numlines = 1;
tShape.line[0].point = NULL; /* initialize the line */
tShape.line[0].numpoints = 0;
msAddPointToLine(&(tShape.line[0]), &p);
} else {
status = msCopyShape(shape, &tShape);
if(status != 0) return(MS_FAILURE); /* copy failed */
}
/* no big deal to convert from file to image coordinates, but what are the image parameters */
if(projectionString && strcasecmp(projectionString,"image") ==0) {
precision = 0;
/* if necessary, project the shape to match the map */
if(msProjectionsDiffer(&(layer->projection), &(layer->map->projection)))
msProjectShape(&layer->projection, &layer->map->projection, &tShape);
switch(tShape.type) {
case(MS_SHAPE_POINT):
/* at this point we only convert the first point of the first shape */
tShape.line[0].point[0].x = MS_MAP2IMAGE_X(tShape.line[0].point[0].x, layer->map->extent.minx, layer->map->cellsize);
tShape.line[0].point[0].y = MS_MAP2IMAGE_Y(tShape.line[0].point[0].y, layer->map->extent.maxy, layer->map->cellsize);
break;
case(MS_SHAPE_LINE):
msClipPolylineRect(&tShape, layer->map->extent);
break;
case(MS_SHAPE_POLYGON):
msClipPolygonRect(&tShape, layer->map->extent);
break;
default:
/* TO DO: need an error message here */
return(MS_FAILURE);
break;
}
msTransformShapeToPixel(&tShape, layer->map->extent, layer->map->cellsize);
} else if(projectionString) {
projectionObj projection;
msInitProjection(&projection);
status = msLoadProjectionString(&projection, projectionString);
if(status != MS_SUCCESS) return MS_FAILURE;
if(msProjectionsDiffer(&(layer->projection), &projection))
msProjectShape(&layer->projection, &projection, &tShape);
}
/* TODO: add thinning support here */
/* build the coordinate string */
if(strlen(sh) > 0) coords = strcatalloc(coords, sh);
for(i=0; i<tShape.numlines; i++) { /* e.g. part */
/* skip degenerate parts, really should only happen with pixel output */
if((tShape.type == MS_SHAPE_LINE && tShape.line[i].numpoints < 2) ||
(tShape.type == MS_SHAPE_POLYGON && tShape.line[i].numpoints < 3))
continue;
if(strlen(ph) > 0) coords = strcatalloc(coords, ph);
for(j=0; j<tShape.line[i].numpoints-1; j++) {
snprintf(point, 128, pointFormat1, tShape.line[i].point[j].x, tShape.line[i].point[j].y);
coords = strcatalloc(coords, point);
}
snprintf(point, 128, pointFormat2, tShape.line[i].point[j].x, tShape.line[i].point[j].y);
coords = strcatalloc(coords, point);
if(strlen(pf) > 0) coords = strcatalloc(coords, pf);
if((i < tShape.numlines-1) && (strlen(ps) > 0)) coords = strcatalloc(coords, ps);
}
if(strlen(sf) > 0) coords = strcatalloc(coords, sf);
msFreeShape(&tShape);
/* find the end of the tag */
tagEnd = strchr(tagStart, ']');
tagEnd++;
/* build the complete tag so we can do substitution */
tagLength = tagEnd - tagStart;
tag = (char *) malloc(tagLength + 1);
strncpy(tag, tagStart, tagLength);
tag[tagLength] = '\0';
/* do the replacement */
*line = gsub(*line, tag, coords);
/* clean up */
free(tag); tag = NULL;
msFreeHashTable(tagArgs); tagArgs=NULL;
free(pointFormat1);
free(pointFormat2);
free(coords);
if((*line)[tagOffset] != '\0')
tagStart = findTag(*line+tagOffset+1, "shpxy");
else
tagStart = NULL;
}
return(MS_SUCCESS);
}
/*!
* this function process all metadata
* in pszInstr. ht mus contain all corresponding
* metadata value.
*
* this function return a modified pszInstr
*/
int processMetadata(char** pszInstr, hashTableObj *ht)
{
/* char *pszNextInstr = pszInstr; */
char *pszEnd, *pszStart;
char *pszMetadataTag;
char *pszHashName;
char *pszHashValue;
int nLength, nOffset;
hashTableObj *metadataArgs = NULL;
if (!*pszInstr) {
msSetError(MS_WEBERR, "Invalid pointer.", "processMetadata()");
return MS_FAILURE;
}
/* set position to the begining of metadata tag */
pszStart = findTag(*pszInstr, "metadata");
while (pszStart) {
/* get metadata args */
if (getTagArgs("metadata", pszStart, &metadataArgs) != MS_SUCCESS)
return MS_FAILURE;
pszHashName = msLookupHashTable(metadataArgs, "name");
pszHashValue = msLookupHashTable(ht, pszHashName);
nOffset = pszStart - *pszInstr;
if (pszHashName && pszHashValue) {
/* set position to the end of metadata start tag */
pszEnd = strchr(pszStart, ']');
pszEnd++;
/* build the complete metadata tag ([metadata all_args]) */
/* to replace it by the corresponding value from ht */
nLength = pszEnd - pszStart;
pszMetadataTag = (char*)malloc(nLength + 1);
strncpy(pszMetadataTag, pszStart, nLength);
pszMetadataTag[nLength] = '\0';
*pszInstr = gsub(*pszInstr, pszMetadataTag, pszHashValue);
free(pszMetadataTag);
pszMetadataTag=NULL;
}
msFreeHashTable(metadataArgs);
metadataArgs=NULL;
/* set position to the begining of the next metadata tag */
if ((*pszInstr)[nOffset] != '\0')
pszStart = findTag(*pszInstr+nOffset+1, "metadata");
else
pszStart = NULL;
}
return MS_SUCCESS;
}
/*!
* this function process all icon tag
* from pszInstr.
*
* This func return a modified pszInstr.
*/
int processIcon(mapObj *map, int nIdxLayer, int nIdxClass, char** pszInstr, char* pszPrefix)
{
int nWidth, nHeight, nLen;
char szImgFname[1024], *pszFullImgFname=NULL, *pszImgTag;
char szPath[MS_MAXPATHLEN];
hashTableObj *myHashTable=NULL;
FILE *fIcon;
if (!map ||
nIdxLayer > map->numlayers ||
nIdxLayer < 0 ) {
msSetError(MS_WEBERR, "Invalid pointer.", "processIcon()");
return MS_FAILURE;
}
/* find the begining of tag */
pszImgTag = strstr(*pszInstr, "[leg_icon");
while (pszImgTag) {
if (getTagArgs("leg_icon", pszImgTag, &myHashTable) != MS_SUCCESS)
return MS_FAILURE;
/* if no specified width or height, set them to map default */
if (!msLookupHashTable(myHashTable, "width") || !msLookupHashTable(myHashTable, "height")) {
nWidth = map->legend.keysizex;
nHeight= map->legend.keysizey;
}
else {
nWidth = atoi(msLookupHashTable(myHashTable, "width"));
nHeight = atoi(msLookupHashTable(myHashTable, "height"));
}
snprintf(szImgFname, 1024, "%s_%d_%d_%d_%d.%s%c", pszPrefix, nIdxLayer, nIdxClass, nWidth, nHeight, MS_IMAGE_EXTENSION(map->outputformat),'\0');
pszFullImgFname = strdup(msBuildPath3(szPath, map->mappath,
map->web.imagepath, szImgFname));
/* check if icon already exist in cache */
if ((fIcon = fopen(pszFullImgFname, "r+")) != NULL)
{
char cTmp[1];
fseek(fIcon, 0, SEEK_SET);
fread(cTmp, 1, 1, fIcon);
fseek(fIcon, 0, SEEK_SET);
fwrite(cTmp, 1, 1, fIcon);
fclose(fIcon);
}
else
{
/* Create an image corresponding to the current class */
imageObj *img=NULL;
if (map->layers[nIdxLayer].numclasses <= 0 ||
nIdxClass > map->layers[nIdxLayer].numclasses || nIdxClass < 0)
{
/* Nonexistent class. Create an empty image */
img = msCreateLegendIcon(map, NULL, NULL, nWidth, nHeight);
}
else
{
img = msCreateLegendIcon(map, &(map->layers[nIdxLayer]),
&(map->layers[nIdxLayer].class[nIdxClass]),
nWidth, nHeight);
}
if(!img) {
if (myHashTable)
msFreeHashTable(myHashTable);
msSetError(MS_GDERR, "Error while creating GD image.", "processIcon()");
return MS_FAILURE;
}
/* save it with a unique file name */
if(msSaveImage(map, img, pszFullImgFname) != MS_SUCCESS) {
if (myHashTable)
msFreeHashTable(myHashTable);
msFree(pszFullImgFname);
msFreeImage(img);
msSetError(MS_IOERR, "Error while save GD image to disk (%s).", "processIcon()", pszFullImgFname);
return MS_FAILURE;
}
msFreeImage(img);
}
msFree(pszFullImgFname);
pszFullImgFname = NULL;
nLen = (strchr(pszImgTag, ']') + 1) - pszImgTag;
if (nLen > 0) {
char *pszTag;
/* rebuid image tag ([leg_class_img all_args]) */
/* to replace it by the image url */
pszTag = (char*)malloc(nLen + 1);
strncpy(pszTag, pszImgTag, nLen);
pszTag[nLen] = '\0';
pszFullImgFname = (char*)malloc(strlen(map->web.imageurl) + strlen(szImgFname) + 1);
strcpy(pszFullImgFname, map->web.imageurl);
strcat(pszFullImgFname, szImgFname);
*pszInstr = gsub(*pszInstr, pszTag, pszFullImgFname);
msFree(pszFullImgFname);
pszFullImgFname = NULL;
msFree(pszTag);
/* find the begining of tag */
pszImgTag = strstr(*pszInstr, "[leg_icon");
}
else {
pszImgTag = NULL;
}
if (myHashTable)
{
msFreeHashTable(myHashTable);
myHashTable = NULL;
}
}
return MS_SUCCESS;
}
/*!
* Replace all tags from group template
* with correct value.
*
* this function return a buffer containing
* the template with correct values.
*
* buffer must be freed by caller.
*/
int generateGroupTemplate(char* pszGroupTemplate, mapObj *map, char* pszGroupName, hashTableObj *oGroupArgs, char **pszTemp, char* pszPrefix)
{
hashTableObj *myHashTable;
char pszStatus[3];
char *pszClassImg;
char *pszOptFlag = NULL;
int i, j;
int nOptFlag = 15;
int bShowGroup;
*pszTemp = NULL;
if (!pszGroupName || !pszGroupTemplate) {
msSetError(MS_WEBERR, "Invalid pointer.", "generateGroupTemplate()");
return MS_FAILURE;
}
/*
* Get the opt_flag is any.
*/
if (oGroupArgs)
pszOptFlag = msLookupHashTable(oGroupArgs, "opt_flag");
if (pszOptFlag)
nOptFlag = atoi(pszOptFlag);
/*
* Check all layers, if one in the group
* should be visible, print the group.
* (Check for opt_flag)
*/
bShowGroup = 0;
for (j=0; j<map->numlayers; j++)
{
if (map->layers[map->layerorder[j]].group &&
strcmp(map->layers[map->layerorder[j]].group, pszGroupName) == 0)
{
/* dont display layer is off. */
if( (nOptFlag & 2) == 0 &&
map->layers[map->layerorder[j]].status == MS_OFF )
bShowGroup = 0;
else
bShowGroup = 1;
/* dont display layer is query. */
if( (nOptFlag & 4) == 0 &&
map->layers[map->layerorder[j]].type == MS_LAYER_QUERY )
bShowGroup = 0;
/* dont display layer is annotation. */
if( (nOptFlag & 8) == 0 &&
map->layers[map->layerorder[j]].type == MS_LAYER_ANNOTATION )
bShowGroup = 0;
/* dont display layer if out of scale. */
if ((nOptFlag & 1) == 0)
{
if(map->scale > 0) {
if((map->layers[map->layerorder[j]].maxscale > 0) &&
(map->scale > map->layers[map->layerorder[j]].maxscale))
bShowGroup = 0;
if((map->layers[map->layerorder[j]].minscale > 0) &&
(map->scale <= map->layers[map->layerorder[j]].minscale))
bShowGroup = 0;
}
}
/* The group contains one visible layer */
/* Draw the group */
if( bShowGroup )
break;
}
}
if( ! bShowGroup )
return MS_SUCCESS;
/*
* Work from a copy
*/
*pszTemp = (char*)malloc(strlen(pszGroupTemplate) + 1);
strcpy(*pszTemp, pszGroupTemplate);
/*
* Change group tags
*/
*pszTemp = gsub(*pszTemp, "[leg_group_name]", pszGroupName);
/*
* Create a hash table that contain info
* on current layer
*/
myHashTable = msCreateHashTable();
/*
* Check for the first layer
* that belong to this group.
* Get his status and check for if.
*/
for (j=0; j<map->numlayers; j++)
{
if (map->layers[map->layerorder[j]].group && strcmp(map->layers[map->layerorder[j]].group, pszGroupName) == 0)
{
sprintf(pszStatus, "%d", map->layers[map->layerorder[j]].status);
msInsertHashTable(myHashTable, "layer_status", pszStatus);
msInsertHashTable(myHashTable, "layer_visible", msLayerIsVisible(map, &(map->layers[map->layerorder[j]]))?"1":"0" );
msInsertHashTable(myHashTable, "group_name", pszGroupName);
if (processIf(pszTemp, myHashTable, MS_FALSE) != MS_SUCCESS)
return MS_FAILURE;
if (processIf(pszTemp, &(map->layers[map->layerorder[j]].metadata), MS_FALSE) != MS_SUCCESS)
return MS_FAILURE;
if (processMetadata(pszTemp, &(map->layers[map->layerorder[j]].metadata)) != MS_SUCCESS)
return MS_FAILURE;
break;
}
}
msFreeHashTable(myHashTable);
/*
* Process all metadata tags
* only web object is accessible
*/
if (processMetadata(pszTemp, &(map->web.metadata)) != MS_SUCCESS)
return MS_FAILURE;
/*
* check for if tag
*/
if (processIf(pszTemp, &(map->web.metadata), MS_TRUE) != MS_SUCCESS)
return MS_FAILURE;
/*
* Check if leg_icon tag exist
* if so display the first layer first class icon
*/
pszClassImg = strstr(*pszTemp, "[leg_icon");
if (pszClassImg) {
/* find first layer of this group */
for (i=0; i<map->numlayers; i++)
if (map->layers[map->layerorder[i]].group && strcmp(map->layers[map->layerorder[i]].group, pszGroupName) == 0)
processIcon(map, map->layerorder[i], 0, pszTemp, pszPrefix);
}
return MS_SUCCESS;
}
/*!
* Replace all tags from layer template
* with correct value.
*
* this function return a buffer containing
* the template with correct values.
*
* buffer must be freed by caller.
*/
int generateLayerTemplate(char *pszLayerTemplate, mapObj *map, int nIdxLayer, hashTableObj *oLayerArgs, char **pszTemp, char* pszPrefix)
{
hashTableObj *myHashTable;
char szStatus[10];
char szType[10];
int nOptFlag=0;
char *pszOptFlag = NULL;
char *pszClassImg;
char szTmpstr[128]; /* easily big enough for the couple of instances we need */
*pszTemp = NULL;
if (!pszLayerTemplate ||
!map ||
nIdxLayer > map->numlayers ||
nIdxLayer < 0 ) {
msSetError(MS_WEBERR, "Invalid pointer.", "generateLayerTemplate()");
return MS_FAILURE;
}
if (oLayerArgs)
pszOptFlag = msLookupHashTable(oLayerArgs, "opt_flag");
if (pszOptFlag)
nOptFlag = atoi(pszOptFlag);
/* don't display deleted layers */
if (map->layers[nIdxLayer].status == MS_DELETE)
return MS_SUCCESS;
/* dont display layer is off. */
/* check this if Opt flag is not set */
if((nOptFlag & 2) == 0 && map->layers[nIdxLayer].status == MS_OFF)
return MS_SUCCESS;
/* dont display layer is query. */
/* check this if Opt flag is not set */
if ((nOptFlag & 4) == 0 && map->layers[nIdxLayer].type == MS_LAYER_QUERY)
return MS_SUCCESS;
/* dont display layer is annotation. */
/* check this if Opt flag is not set */
if ((nOptFlag & 8) == 0 && map->layers[nIdxLayer].type == MS_LAYER_ANNOTATION)
return MS_SUCCESS;
/* dont display layer if out of scale. */
/* check this if Opt flag is not set */
if ((nOptFlag & 1) == 0) {
if(map->scale > 0) {
if((map->layers[nIdxLayer].maxscale > 0) && (map->scale > map->layers[nIdxLayer].maxscale))
return MS_SUCCESS;
if((map->layers[nIdxLayer].minscale > 0) && (map->scale <= map->layers[nIdxLayer].minscale))
return MS_SUCCESS;
}
}
/*
* Work from a copy
*/
*pszTemp = strdup(pszLayerTemplate);
/*
* Change layer tags
*/
*pszTemp = gsub(*pszTemp, "[leg_layer_name]", map->layers[nIdxLayer].name);
*pszTemp = gsub(*pszTemp, "[leg_layer_group]", map->layers[nIdxLayer].group);
snprintf(szTmpstr, 128, "%d", nIdxLayer);
*pszTemp = gsub(*pszTemp, "[leg_layer_index]", szTmpstr);
snprintf(szTmpstr, 128, "%g", map->layers[nIdxLayer].minscale);
*pszTemp = gsub(*pszTemp, "[leg_layer_minscale]", szTmpstr);
snprintf(szTmpstr, 128, "%g", map->layers[nIdxLayer].maxscale);
*pszTemp = gsub(*pszTemp, "[leg_layer_maxscale]", szTmpstr);
/*
* Create a hash table that contain info
* on current layer
*/
myHashTable = msCreateHashTable();
/*
* for now, only status and type is required by template
*/
sprintf(szStatus, "%d", map->layers[nIdxLayer].status);
msInsertHashTable(myHashTable, "layer_status", szStatus);
sprintf(szType, "%d", map->layers[nIdxLayer].type);
msInsertHashTable(myHashTable, "layer_type", szType);
msInsertHashTable(myHashTable, "layer_name", map->layers[nIdxLayer].name);
msInsertHashTable(myHashTable, "layer_group", map->layers[nIdxLayer].group);
msInsertHashTable(myHashTable, "layer_visible", msLayerIsVisible(map, &(map->layers[nIdxLayer]))?"1":"0" );
if (processIf(pszTemp, myHashTable, MS_FALSE) != MS_SUCCESS)
return MS_FAILURE;
if (processIf(pszTemp, &(map->layers[nIdxLayer].metadata), MS_FALSE) != MS_SUCCESS)
return MS_FAILURE;
if (processIf(pszTemp, &(map->web.metadata), MS_TRUE) != MS_SUCCESS)
return MS_FAILURE;
msFreeHashTable(myHashTable);
/*
* Check if leg_icon tag exist
* if so display the first class icon
*/
pszClassImg = strstr(*pszTemp, "[leg_icon");
if (pszClassImg) {
processIcon(map, nIdxLayer, 0, pszTemp, pszPrefix);
}
/* process all metadata tags
* only current layer and web object
* metaddata are accessible
*/
if (processMetadata(pszTemp, &(map->layers[nIdxLayer].metadata)) != MS_SUCCESS)
return MS_FAILURE;
if (processMetadata(pszTemp, &(map->web.metadata)) != MS_SUCCESS)
return MS_FAILURE;
return MS_SUCCESS;
}
/*!
* Replace all tags from class template
* with correct value.
*
* this function return a buffer containing
* the template with correct values.
*
* buffer must be freed by caller.
*/
int generateClassTemplate(char* pszClassTemplate, mapObj *map, int nIdxLayer, int nIdxClass, hashTableObj *oClassArgs, char **pszTemp, char* pszPrefix)
{
hashTableObj *myHashTable;
char szStatus[10];
char szType[10];
char *pszClassImg;
int nOptFlag=0;
char *pszOptFlag = NULL;
char szTmpstr[128]; /* easily big enough for the couple of instances we need */
*pszTemp = NULL;
if (!pszClassTemplate ||
!map ||
nIdxLayer > map->numlayers ||
nIdxLayer < 0 ||
nIdxClass > map->layers[nIdxLayer].numclasses ||
nIdxClass < 0) {
msSetError(MS_WEBERR, "Invalid pointer.", "generateClassTemplate()");
return MS_FAILURE;
}
if (oClassArgs)
pszOptFlag = msLookupHashTable(oClassArgs, "Opt_flag");
if (pszOptFlag)
nOptFlag = atoi(pszOptFlag);
/* don't display deleted layers */
if (map->layers[nIdxLayer].status == MS_DELETE)
return MS_SUCCESS;
/* dont display class if layer is off. */
/* check this if Opt flag is not set */
if((nOptFlag & 2) == 0 && map->layers[nIdxLayer].status == MS_OFF)
return MS_SUCCESS;
/* dont display class if layer is query. */
/* check this if Opt flag is not set */
if ((nOptFlag & 4) == 0 && map->layers[nIdxLayer].type == MS_LAYER_QUERY)
return MS_SUCCESS;
/* dont display class if layer is annotation. */
/* check this if Opt flag is not set */
if ((nOptFlag & 8) == 0 && map->layers[nIdxLayer].type == MS_LAYER_ANNOTATION)
return MS_SUCCESS;
/* dont display layer if out of scale. */
/* check this if Opt flag is not set */
if ((nOptFlag & 1) == 0) {
if(map->scale > 0) {
if((map->layers[nIdxLayer].maxscale > 0) && (map->scale > map->layers[nIdxLayer].maxscale))
return MS_SUCCESS;
if((map->layers[nIdxLayer].minscale > 0) && (map->scale <= map->layers[nIdxLayer].minscale))
return MS_SUCCESS;
}
}
/*
* Work from a copy
*/
*pszTemp = (char*)malloc(strlen(pszClassTemplate) + 1);
strcpy(*pszTemp, pszClassTemplate);
/*
* Change class tags
*/
*pszTemp = gsub(*pszTemp, "[leg_class_name]", map->layers[nIdxLayer].class[nIdxClass].name);
*pszTemp = gsub(*pszTemp, "[leg_class_title]", map->layers[nIdxLayer].class[nIdxClass].title);
*pszTemp = gsub(*pszTemp, "[leg_layer_name]", map->layers[nIdxLayer].name);
snprintf(szTmpstr, 128, "%d", nIdxClass);
*pszTemp = gsub(*pszTemp, "[leg_class_index]", szTmpstr);
snprintf(szTmpstr, 128, "%g", map->layers[nIdxLayer].class[nIdxClass].minscale);
*pszTemp = gsub(*pszTemp, "[leg_class_minscale]", szTmpstr);
snprintf(szTmpstr, 128, "%g", map->layers[nIdxLayer].class[nIdxClass].maxscale);
*pszTemp = gsub(*pszTemp, "[leg_class_maxscale]", szTmpstr);
/*
* Create a hash table that contain info
* on current layer
*/
myHashTable = msCreateHashTable();
/*
* for now, only status, type, name and group are required by template
*/
sprintf(szStatus, "%d", map->layers[nIdxLayer].status);
msInsertHashTable(myHashTable, "layer_status", szStatus);
sprintf(szType, "%d", map->layers[nIdxLayer].type);
msInsertHashTable(myHashTable, "layer_type", szType);
msInsertHashTable(myHashTable, "layer_name", map->layers[nIdxLayer].name);
msInsertHashTable(myHashTable, "layer_group", map->layers[nIdxLayer].group);
msInsertHashTable(myHashTable, "layer_visible", msLayerIsVisible(map, &(map->layers[nIdxLayer]))?"1":"0" );
msInsertHashTable(myHashTable, "class_name", map->layers[nIdxLayer].class[nIdxClass].name);
if (processIf(pszTemp, myHashTable, MS_FALSE) != MS_SUCCESS)
return MS_FAILURE;
if (processIf(pszTemp, &(map->layers[nIdxLayer].metadata), MS_FALSE) != MS_SUCCESS)
return MS_FAILURE;
if (processIf(pszTemp, &(map->web.metadata), MS_TRUE) != MS_SUCCESS)
return MS_FAILURE;
msFreeHashTable(myHashTable);
/*
* Check if leg_icon tag exist
*/
pszClassImg = strstr(*pszTemp, "[leg_icon");
if (pszClassImg) {
processIcon(map, nIdxLayer, nIdxClass, pszTemp, pszPrefix);
}
/* process all metadata tags
* only current layer and web object
* metaddata are accessible
*/
if (processMetadata(pszTemp, &(map->layers[nIdxLayer].metadata)) != MS_SUCCESS)
return MS_FAILURE;
if (processMetadata(pszTemp, &(map->web.metadata)) != MS_SUCCESS)
return MS_FAILURE;
return MS_SUCCESS;
}
char *generateLegendTemplate(mapservObj *msObj)
{
FILE *stream;
char *file = NULL;
int length;
char *pszResult = NULL;
char *legGroupHtml = NULL;
char *legLayerHtml = NULL;
char *legClassHtml = NULL;
char *legLayerHtmlCopy = NULL;
char *legClassHtmlCopy = NULL;
char *legGroupHtmlCopy = NULL;
char *legHeaderHtml = NULL;
char *legFooterHtml = NULL;
char *pszPrefix = NULL;
char *pszMapFname = NULL;
struct stat tmpStat;
char *pszOrderMetadata = NULL;
char *pszOrder = NULL;
int i,j,k;
char **papszGroups = NULL;
int nGroupNames = 0;
int nLegendOrder = 0;
char *pszOrderValue;
hashTableObj *groupArgs = NULL;
hashTableObj *layerArgs = NULL;
hashTableObj *classArgs = NULL;
ms_regex_t re; /* compiled regular expression to be matched */
int *panCurrentDrawingOrder = NULL;
char szPath[MS_MAXPATHLEN];
if(ms_regcomp(&re, MS_TEMPLATE_EXPR, MS_REG_EXTENDED|MS_REG_NOSUB) != 0) {
msSetError(MS_IOERR, "Error regcomp.", "generateLegendTemplate()");
return NULL;
}
if(ms_regexec(&re, msObj->Map->legend.template, 0, NULL, 0) != 0) { /* no match */
msSetError(MS_IOERR, "Invalid template file name.", "generateLegendTemplate()");
ms_regfree(&re);
return NULL;
}
ms_regfree(&re);
/* -------------------------------------------------------------------- */
/* Save the current drawing order. The drawing order is reset */
/* at the end of the function. */
/* -------------------------------------------------------------------- */
if (msObj && msObj->Map && msObj->Map->numlayers > 0)
{
panCurrentDrawingOrder =
(int *)malloc(sizeof(int)*msObj->Map->numlayers);
for (i=0; i<msObj->Map->numlayers; i++)
{
if (msObj->Map->layerorder)
panCurrentDrawingOrder[i] = msObj->Map->layerorder[i];
else
panCurrentDrawingOrder[i] = i;
}
}
/*
* build prefix filename
* for legend icon creation
*/
for(i=0;i<msObj->request->NumParams;i++) /* find the mapfile parameter first */
if(strcasecmp(msObj->request->ParamNames[i], "map") == 0) break;
if(i == msObj->request->NumParams)
{
if ( getenv("MS_MAPFILE"))
pszMapFname = strcatalloc(pszMapFname, getenv("MS_MAPFILE"));
}
else
{
if(getenv(msObj->request->ParamValues[i])) /* an environment references the actual file to use */
pszMapFname = strcatalloc(pszMapFname, getenv(msObj->request->ParamValues[i]));
else
pszMapFname = strcatalloc(pszMapFname, msObj->request->ParamValues[i]);
}
if (pszMapFname)
{
if (stat(pszMapFname, &tmpStat) != -1)
{
int nLen;
nLen = (msObj->Map->name?strlen(msObj->Map->name):0) + 50;
pszPrefix = (char*)malloc((nLen+1) * sizeof(char));
if (pszPrefix == NULL) {
}
snprintf(pszPrefix, nLen, "%s_%ld_%ld",
msObj->Map->name,
(long) tmpStat.st_size,
(long) tmpStat.st_mtime);
pszPrefix[nLen] = '\0';
}
free(pszMapFname);
pszMapFname = NULL;
}
else
{
/* -------------------------------------------------------------------- */
/* map file name may not be avaible when the template functions */
/* are called from mapscript. Use the time stamp as prefix. */
/* -------------------------------------------------------------------- */
char pszTime[20];
snprintf(pszTime, 20, "%ld", (long)time(NULL));
pszPrefix = strcatalloc(pszPrefix, pszTime);
}
/* open template */
if((stream = fopen(msBuildPath(szPath, msObj->Map->mappath, msObj->Map->legend.template), "r")) == NULL) {
msSetError(MS_IOERR, "Error while opening template file.", "generateLegendTemplate()");
return NULL;
}
fseek(stream, 0, SEEK_END);
length = ftell(stream);
rewind(stream);
file = (char*)malloc(length + 1);
if (!file) {
msSetError(MS_IOERR, "Error while allocating memory for template file.", "generateLegendTemplate()");
return NULL;
}
/*
* Read all the template file
*/
fread(file, 1, length, stream);
file[length] = '\0';
if(msValidateContexts(msObj->Map) != MS_SUCCESS) return NULL; /* make sure there are no recursive REQUIRES or LABELREQUIRES expressions */
/*
* Seperate header/footer, groups, layers and class
*/
getInlineTag("leg_header_html", file, &legHeaderHtml);
getInlineTag("leg_footer_html", file, &legFooterHtml);
getInlineTag("leg_group_html", file, &legGroupHtml);
getInlineTag("leg_layer_html", file, &legLayerHtml);
getInlineTag("leg_class_html", file, &legClassHtml);
/*
* Retrieve arguments of all three parts
*/
if (legGroupHtml)
if (getTagArgs("leg_group_html", file, &groupArgs) != MS_SUCCESS)
return NULL;
if (legLayerHtml)
if (getTagArgs("leg_layer_html", file, &layerArgs) != MS_SUCCESS)
return NULL;
if (legClassHtml)
if (getTagArgs("leg_class_html", file, &classArgs) != MS_SUCCESS)
return NULL;
msObj->Map->cellsize = msAdjustExtent(&(msObj->Map->extent),
msObj->Map->width,
msObj->Map->height);
if(msCalculateScale(msObj->Map->extent, msObj->Map->units,
msObj->Map->width, msObj->Map->height,
msObj->Map->resolution, &msObj->Map->scale) != MS_SUCCESS)
return(NULL);
/* start with the header if present */
if(legHeaderHtml) pszResult = strcatalloc(pszResult, legHeaderHtml);
/********************************************************************/
/*
* order layers if order_metadata args is set
* If not, keep default order
*/
pszOrderMetadata = msLookupHashTable(layerArgs, "order_metadata");
if (sortLayerByMetadata(msObj->Map, pszOrderMetadata) != MS_SUCCESS)
goto error;
/* -------------------------------------------------------------------- */
/* if the order tag is set to ascending or descending, the */
/* current order will be changed to correspond to that. */
/* -------------------------------------------------------------------- */
pszOrder = msLookupHashTable(layerArgs, "order");
if (pszOrder && ((strcasecmp(pszOrder, "ASCENDING") == 0) ||
(strcasecmp(pszOrder, "DESCENDING") == 0)))
{
if (sortLayerByOrder(msObj->Map, pszOrder) != MS_SUCCESS)
goto error;
}
if (legGroupHtml) {
/* retrieve group names */
papszGroups = msGetAllGroupNames(msObj->Map, &nGroupNames);
for (i=0; i<nGroupNames; i++) {
/* process group tags */
if (generateGroupTemplate(legGroupHtml, msObj->Map, papszGroups[i], groupArgs, &legGroupHtmlCopy, pszPrefix) != MS_SUCCESS)
{
if (pszResult)
free(pszResult);
pszResult=NULL;
goto error;
}
/* concatenate it to final result */
pszResult = strcatalloc(pszResult, legGroupHtmlCopy);
/*
if (!pszResult)
{
if (pszResult)
free(pszResult);
pszResult=NULL;
goto error;
}
*/
if (legGroupHtmlCopy)
{
free(legGroupHtmlCopy);
legGroupHtmlCopy = NULL;
}
/* for all layers in group */
if (legLayerHtml) {
for (j=0; j<msObj->Map->numlayers; j++) {
/*
* if order_metadata is set and the order
* value is less than 0, dont display it
*/
pszOrderMetadata = msLookupHashTable(layerArgs, "order_metadata");
if (pszOrderMetadata) {
pszOrderValue = msLookupHashTable(&(msObj->Map->layers[msObj->Map->layerorder[j]].metadata), pszOrderMetadata);
if (pszOrderValue) {
nLegendOrder = atoi(pszOrderValue);
if (nLegendOrder < 0)
continue;
}
}
if (msObj->Map->layers[msObj->Map->layerorder[j]].group && strcmp(msObj->Map->layers[msObj->Map->layerorder[j]].group, papszGroups[i]) == 0) {
/* process all layer tags */
if (generateLayerTemplate(legLayerHtml, msObj->Map, msObj->Map->layerorder[j], layerArgs, &legLayerHtmlCopy, pszPrefix) != MS_SUCCESS)
{
if (pszResult)
free(pszResult);
pszResult=NULL;
goto error;
}
/* concatenate to final result */
pszResult = strcatalloc(pszResult, legLayerHtmlCopy);
if (legLayerHtmlCopy)
{
free(legLayerHtmlCopy);
legLayerHtmlCopy = NULL;
}
/* for all classes in layer */
if (legClassHtml) {
for (k=0; k<msObj->Map->layers[msObj->Map->layerorder[j]].numclasses; k++) {
/* process all class tags */
if (!msObj->Map->layers[msObj->Map->layerorder[j]].class[k].name)
continue;
if (generateClassTemplate(legClassHtml, msObj->Map, msObj->Map->layerorder[j], k, classArgs, &legClassHtmlCopy, pszPrefix) != MS_SUCCESS)
{
if (pszResult)
free(pszResult);
pszResult=NULL;
goto error;
}
/* concatenate to final result */
pszResult = strcatalloc(pszResult, legClassHtmlCopy);
if (legClassHtmlCopy) {
free(legClassHtmlCopy);
legClassHtmlCopy = NULL;
}
}
}
}
}
}
else
if (legClassHtml){ /* no layer template specified but class and group template */
for (j=0; j<msObj->Map->numlayers; j++) {
/*
* if order_metadata is set and the order
* value is less than 0, dont display it
*/
pszOrderMetadata = msLookupHashTable(layerArgs, "order_metadata");
if (pszOrderMetadata) {
pszOrderValue = msLookupHashTable(&(msObj->Map->layers[msObj->Map->layerorder[j]].metadata), pszOrderMetadata);
if (pszOrderValue) {
nLegendOrder = atoi(pszOrderValue);
if (nLegendOrder < 0)
continue;
}
}
if (msObj->Map->layers[msObj->Map->layerorder[j]].group && strcmp(msObj->Map->layers[msObj->Map->layerorder[j]].group, papszGroups[i]) == 0) {
/* for all classes in layer */
if (legClassHtml) {
for (k=0; k<msObj->Map->layers[msObj->Map->layerorder[j]].numclasses; k++) {
/* process all class tags */
if (!msObj->Map->layers[msObj->Map->layerorder[j]].class[k].name)
continue;
if (generateClassTemplate(legClassHtml, msObj->Map, msObj->Map->layerorder[j], k, classArgs, &legClassHtmlCopy, pszPrefix) != MS_SUCCESS)
{
if (pszResult)
free(pszResult);
pszResult=NULL;
goto error;
}
/* concatenate to final result */
pszResult = strcatalloc(pszResult, legClassHtmlCopy);
if (legClassHtmlCopy) {
free(legClassHtmlCopy);
legClassHtmlCopy = NULL;
}
}
}
}
}
}
}
}
else {
/* if no group template specified */
if (legLayerHtml) {
for (j=0; j<msObj->Map->numlayers; j++) {
/*
* if order_metadata is set and the order
* value is less than 0, dont display it
*/
pszOrderMetadata = msLookupHashTable(layerArgs, "order_metadata");
if (pszOrderMetadata) {
pszOrderValue = msLookupHashTable(&(msObj->Map->layers[msObj->Map->layerorder[j]].metadata), pszOrderMetadata);
if (pszOrderValue) {
nLegendOrder = atoi(pszOrderValue);
if (nLegendOrder < 0)
continue;
}
else
nLegendOrder=0;
}
/* process a layer tags */
if (generateLayerTemplate(legLayerHtml, msObj->Map, msObj->Map->layerorder[j], layerArgs, &legLayerHtmlCopy, pszPrefix) != MS_SUCCESS)
{
if (pszResult)
free(pszResult);
pszResult=NULL;
goto error;
}
/* concatenate to final result */
pszResult = strcatalloc(pszResult, legLayerHtmlCopy);
if (legLayerHtmlCopy) {
free(legLayerHtmlCopy);
legLayerHtmlCopy = NULL;
}
/* for all classes in layer */
if (legClassHtml) {
for (k=0; k<msObj->Map->layers[msObj->Map->layerorder[j]].numclasses; k++) {
/* process all class tags */
if (!msObj->Map->layers[msObj->Map->layerorder[j]].class[k].name)
continue;
if (generateClassTemplate(legClassHtml, msObj->Map, msObj->Map->layerorder[j], k, classArgs, &legClassHtmlCopy, pszPrefix) != MS_SUCCESS)
{
if (pszResult)
free(pszResult);
pszResult=NULL;
goto error;
}
/* concatenate to final result */
pszResult = strcatalloc(pszResult, legClassHtmlCopy);
if (legClassHtmlCopy) {
free(legClassHtmlCopy);
legClassHtmlCopy = NULL;
}
}
}
}
}
else { /* if no group and layer template specified */
if (legClassHtml) {
for (j=0; j<msObj->Map->numlayers; j++) {
/*
* if order_metadata is set and the order
* value is less than 0, dont display it
*/
pszOrderMetadata = msLookupHashTable(layerArgs, "order_metadata");
if (pszOrderMetadata) {
pszOrderValue = msLookupHashTable(&(msObj->Map->layers[msObj->Map->layerorder[j]].metadata), pszOrderMetadata);
if (pszOrderValue) {
nLegendOrder = atoi(pszOrderValue);
if (nLegendOrder < 0)
continue;
}
}
for (k=0; k<msObj->Map->layers[msObj->Map->layerorder[j]].numclasses; k++) {
if (!msObj->Map->layers[msObj->Map->layerorder[j]].class[k].name)
continue;
if (generateClassTemplate(legClassHtml, msObj->Map, msObj->Map->layerorder[j], k, classArgs, &legClassHtmlCopy, pszPrefix) != MS_SUCCESS)
{
if (pszResult)
free(pszResult);
pszResult=NULL;
goto error;
}
pszResult = strcatalloc(pszResult, legClassHtmlCopy);
if (legClassHtmlCopy) {
free(legClassHtmlCopy);
legClassHtmlCopy = NULL;
}
}
}
}
}
}
/* finish with the footer if present */
if(legFooterHtml) pszResult = strcatalloc(pszResult, legFooterHtml);
/*
* if we reach this point, that mean no error was generated.
* So check if template is null and initialize it to <space>.
*/
if (pszResult == NULL)
{
pszResult = strcatalloc(pszResult, " ");
}
/********************************************************************/
error:
if (papszGroups) {
for (i=0; i<nGroupNames; i++)
msFree(papszGroups[i]);
msFree(papszGroups);
}
msFreeHashTable(groupArgs);
msFreeHashTable(layerArgs);
msFreeHashTable(classArgs);
msFree(file);
msFree(legGroupHtmlCopy);
msFree(legLayerHtmlCopy);
msFree(legClassHtmlCopy);
msFree(legHeaderHtml);
msFree(legFooterHtml);
msFree(legGroupHtml);
msFree(legLayerHtml);
msFree(legClassHtml);
msFree(pszPrefix);
fclose(stream);
/* -------------------------------------------------------------------- */
/* Reset the layerdrawing order. */
/* -------------------------------------------------------------------- */
if (panCurrentDrawingOrder && msObj->Map->layerorder)
{
for (i=0; i<msObj->Map->numlayers; i++)
msObj->Map->layerorder[i] = panCurrentDrawingOrder[i];
free(panCurrentDrawingOrder);
}
return pszResult;
}
char *processOneToManyJoin(mapservObj* msObj, joinObj *join)
{
int records=MS_FALSE;
FILE *stream=NULL;
char *outbuf;
char line[MS_BUFFER_LENGTH], *tmpline;
char szPath[MS_MAXPATHLEN];
if((outbuf = strdup("")) == NULL) return(NULL); /* empty at first */
msJoinPrepare(join, &(msObj->ResultShape)); /* execute the join */
while(msJoinNext(join) == MS_SUCCESS) {
/* First time through, deal with the header (if necessary) and open the main template. We only */
/* want to do this if there are joined records. */
if(records == MS_FALSE) {
if(join->header != NULL) {
if((stream = fopen(msBuildPath(szPath, msObj->Map->mappath, join->header), "r")) == NULL) {
msSetError(MS_IOERR, "Error while opening join header file %s.", "processOneToManyJoin()", join->header);
return(NULL);
}
/* echo file to the output buffer, no substitutions */
while(fgets(line, MS_BUFFER_LENGTH, stream) != NULL) outbuf = strcatalloc(outbuf, line);
fclose(stream);
}
if((stream = fopen(msBuildPath(szPath, msObj->Map->mappath, join->template), "r")) == NULL) {
msSetError(MS_IOERR, "Error while opening join template file %s.", "processOneToManyJoin()", join->template);
return(NULL);
}
records = MS_TRUE;
}
while(fgets(line, MS_BUFFER_LENGTH, stream) != NULL) { /* now on to the end of the template */
if(strchr(line, '[') != NULL) {
tmpline = processLine(msObj, line, QUERY);
if(!tmpline) return NULL;
outbuf = strcatalloc(outbuf, tmpline);
free(tmpline);
} else /* no subs, just echo */
outbuf = strcatalloc(outbuf, line);
}
rewind(stream);
} /* next record */
if(records==MS_TRUE && join->footer) {
if((stream = fopen(msBuildPath(szPath, msObj->Map->mappath, join->footer), "r")) == NULL) {
msSetError(MS_IOERR, "Error while opening join footer file %s.", "processOneToManyJoin()", join->footer);
return(NULL);
}
/* echo file to the output buffer, no substitutions */
while(fgets(line, MS_BUFFER_LENGTH, stream) != NULL) outbuf = strcatalloc(outbuf, line);
fclose(stream);
}
/* clear any data associated with the join */
msFreeCharArray(join->values, join->numitems);
join->values = NULL;
return(outbuf);
}
char *processLine(mapservObj* msObj, char* instr, int mode)
{
int i, j;
#define PROCESSLINE_BUFLEN 5120
char repstr[PROCESSLINE_BUFLEN], substr[PROCESSLINE_BUFLEN], *outstr; /* repstr = replace string, substr = sub string */
struct hashObj *tp=NULL;
char *encodedstr;
#ifdef USE_PROJ
rectObj llextent;
pointObj llpoint;
#endif
outstr = strdup(instr); /* work from a copy */
if(strstr(outstr, "[version]")) outstr = gsub(outstr, "[version]", msGetVersion());
snprintf(repstr, PROCESSLINE_BUFLEN, "%s%s%s.%s", msObj->Map->web.imageurl, msObj->Map->name, msObj->Id, MS_IMAGE_EXTENSION(msObj->Map->outputformat));
outstr = gsub(outstr, "[img]", repstr);
snprintf(repstr, PROCESSLINE_BUFLEN, "%s%sref%s.%s", msObj->Map->web.imageurl, msObj->Map->name, msObj->Id, MS_IMAGE_EXTENSION(msObj->Map->outputformat));
outstr = gsub(outstr, "[ref]", repstr);
if(strstr(outstr, "[errmsg")) {
char *errmsg = msGetErrorString(";");
if(!errmsg) errmsg = strdup("Error message buffer is empty."); /* should never happen, but just in case... */
outstr = gsub(outstr, "[errmsg]", errmsg);
encodedstr = msEncodeUrl(errmsg);
outstr = gsub(outstr, "[errmsg_esc]", encodedstr);
free(errmsg);
free(encodedstr);
}
if (strstr(outstr, "[legend]")) {
/* if there's a template legend specified, use it */
if (msObj->Map->legend.template) {
char *legendTemplate;
legendTemplate = generateLegendTemplate(msObj);
if (legendTemplate) {
outstr = gsub(outstr, "[legend]", legendTemplate);
free(legendTemplate);
}
else /* error already generated by (generateLegendTemplate()) */
return NULL;
}
else { /* if not display gif image with all legend icon */
snprintf(repstr, PROCESSLINE_BUFLEN, "%s%sleg%s.%s", msObj->Map->web.imageurl, msObj->Map->name, msObj->Id, MS_IMAGE_EXTENSION(msObj->Map->outputformat));
outstr = gsub(outstr, "[legend]", repstr);
}
}
snprintf(repstr, PROCESSLINE_BUFLEN, "%s%ssb%s.%s", msObj->Map->web.imageurl, msObj->Map->name, msObj->Id, MS_IMAGE_EXTENSION(msObj->Map->outputformat));
outstr = gsub(outstr, "[scalebar]", repstr);
if(msObj->SaveQuery) {
snprintf(repstr, PROCESSLINE_BUFLEN, "%s%s%s%s", msObj->Map->web.imagepath, msObj->Map->name, msObj->Id, MS_QUERY_EXTENSION);
outstr = gsub(outstr, "[queryfile]", repstr);
}
if(msObj->SaveMap) {
snprintf(repstr, PROCESSLINE_BUFLEN, "%s%s%s.map", msObj->Map->web.imagepath, msObj->Map->name, msObj->Id);
outstr = gsub(outstr, "[map]", repstr);
}
snprintf(repstr, PROCESSLINE_BUFLEN, "%s", getenv("HTTP_HOST"));
outstr = gsub(outstr, "[host]", repstr);
snprintf(repstr, PROCESSLINE_BUFLEN, "%s", getenv("SERVER_PORT"));
outstr = gsub(outstr, "[port]", repstr);
snprintf(repstr, PROCESSLINE_BUFLEN, "%s", msObj->Id);
outstr = gsub(outstr, "[id]", repstr);
repstr[0] = '\0'; /* Layer list for a "POST" request */
for(i=0;i<msObj->NumLayers;i++) {
strlcat(repstr, msObj->Layers[i], sizeof(repstr));
strlcat(repstr, " ", sizeof(repstr));
}
trimBlanks(repstr);
outstr = gsub(outstr, "[layers]", repstr);
encodedstr = msEncodeUrl(repstr);
outstr = gsub(outstr, "[layers_esc]", encodedstr);
free(encodedstr);
strcpy(repstr, ""); /* list of ALL layers that can be toggled */
repstr[0] = '\0';
for(i=0;i<msObj->Map->numlayers;i++) {
if(msObj->Map->layers[i].status != MS_DEFAULT && msObj->Map->layers[i].name != NULL) {
strlcat(repstr, msObj->Map->layers[i].name, sizeof(repstr));
strlcat(repstr, " ", sizeof(repstr));
}
}
trimBlanks(repstr);
outstr = gsub(outstr, "[toggle_layers]", repstr);
encodedstr = msEncodeUrl(repstr);
outstr = gsub(outstr, "[toggle_layers_esc]", encodedstr);
free(encodedstr);
for(i=0;i<msObj->Map->numlayers;i++) { /* Set form widgets (i.e. checkboxes, radio and select lists), note that default layers don't show up here */
if(isOn(msObj, msObj->Map->layers[i].name, msObj->Map->layers[i].group) == MS_TRUE) {
if(msObj->Map->layers[i].group) {
sprintf(substr, "[%s_select]", msObj->Map->layers[i].group);
outstr = gsub(outstr, substr, "selected=\"selected\"");
sprintf(substr, "[%s_check]", msObj->Map->layers[i].group);
outstr = gsub(outstr, substr, "checked=\"checked\"");
}
if(msObj->Map->layers[i].name) {
sprintf(substr, "[%s_select]", msObj->Map->layers[i].name);
outstr = gsub(outstr, substr, "selected=\"selected\"");
sprintf(substr, "[%s_check]", msObj->Map->layers[i].name);
outstr = gsub(outstr, substr, "checked=\"checked\"");
}
} else {
if(msObj->Map->layers[i].group) {
sprintf(substr, "[%s_select]", msObj->Map->layers[i].group);
outstr = gsub(outstr, substr, "");
sprintf(substr, "[%s_check]", msObj->Map->layers[i].group);
outstr = gsub(outstr, substr, "");
}
if(msObj->Map->layers[i].name) {
sprintf(substr, "[%s_select]", msObj->Map->layers[i].name);
outstr = gsub(outstr, substr, "");
sprintf(substr, "[%s_check]", msObj->Map->layers[i].name);
outstr = gsub(outstr, substr, "");
}
}
}
for(i=-1;i<=1;i++) { /* make zoom direction persistant */
if(msObj->ZoomDirection == i) {
sprintf(substr, "[zoomdir_%d_select]", i);
outstr = gsub(outstr, substr, "selected=\"selected\"");
sprintf(substr, "[zoomdir_%d_check]", i);
outstr = gsub(outstr, substr, "checked=\"checked\"");
} else {
sprintf(substr, "[zoomdir_%d_select]", i);
outstr = gsub(outstr, substr, "");
sprintf(substr, "[zoomdir_%d_check]", i);
outstr = gsub(outstr, substr, "");
}
}
for(i=MINZOOM;i<=MAXZOOM;i++) { /* make zoom persistant */
if(msObj->Zoom == i) {
sprintf(substr, "[zoom_%d_select]", i);
outstr = gsub(outstr, substr, "selected=\"selected\"");
sprintf(substr, "[zoom_%d_check]", i);
outstr = gsub(outstr, substr, "checked=\"checked\"");
} else {
sprintf(substr, "[zoom_%d_select]", i);
outstr = gsub(outstr, substr, "");
sprintf(substr, "[zoom_%d_check]", i);
outstr = gsub(outstr, substr, "");
}
}
/* allow web object metadata access in template */
/*
* reworked by SG to use HashTable methods
*/
if (&(msObj->Map->web.metadata) && strstr(outstr, "web_")) {
for (j=0; j<MS_HASHSIZE; j++) {
if (msObj->Map->web.metadata.items[j] != NULL) {
for(tp=msObj->Map->web.metadata.items[j]; tp!=NULL; tp=tp->next) {
sprintf(substr, "[web_%s]", tp->key);
outstr = gsub(outstr, substr, tp->data);
sprintf(substr, "[web_%s_esc]", tp->key);
encodedstr = msEncodeUrl(tp->data);
outstr = gsub(outstr, substr, encodedstr);
free(encodedstr);
}
}
}
}
/* allow layer metadata access in template */
for(i=0;i<msObj->Map->numlayers;i++) {
if(&(msObj->Map->layers[i].metadata) && msObj->Map->layers[i].name && strstr(outstr, msObj->Map->layers[i].name)) {
for(j=0; j<MS_HASHSIZE; j++) {
if(msObj->Map->layers[i].metadata.items[j] != NULL) {
for(tp=msObj->Map->layers[i].metadata.items[j]; tp!=NULL; tp=tp->next) {
sprintf(substr, "[%s_%s]", msObj->Map->layers[i].name, tp->key);
if(msObj->Map->layers[i].status == MS_ON)
outstr = gsub(outstr, substr, tp->data);
else
outstr = gsub(outstr, substr, "");
sprintf(substr, "[%s_%s_esc]", msObj->Map->layers[i].name, tp->key);
if(msObj->Map->layers[i].status == MS_ON) {
encodedstr = msEncodeUrl(tp->data);
outstr = gsub(outstr, substr, encodedstr);
free(encodedstr);
} else
outstr = gsub(outstr, substr, "");
}
}
}
}
}
sprintf(repstr, "%f", msObj->MapPnt.x);
outstr = gsub(outstr, "[mapx]", repstr);
sprintf(repstr, "%f", msObj->MapPnt.y);
outstr = gsub(outstr, "[mapy]", repstr);
sprintf(repstr, "%f", msObj->Map->extent.minx); /* Individual mapextent elements for spatial query building */
outstr = gsub(outstr, "[minx]", repstr);
sprintf(repstr, "%f", msObj->Map->extent.maxx);
outstr = gsub(outstr, "[maxx]", repstr);
sprintf(repstr, "%f", msObj->Map->extent.miny);
outstr = gsub(outstr, "[miny]", repstr);
sprintf(repstr, "%f", msObj->Map->extent.maxy);
outstr = gsub(outstr, "[maxy]", repstr);
sprintf(repstr, "%f %f %f %f", msObj->Map->extent.minx, msObj->Map->extent.miny, msObj->Map->extent.maxx, msObj->Map->extent.maxy);
outstr = gsub(outstr, "[mapext]", repstr);
encodedstr = msEncodeUrl(repstr);
outstr = gsub(outstr, "[mapext_esc]", encodedstr);
free(encodedstr);
sprintf(repstr, "%f", (msObj->Map->extent.maxx-msObj->Map->extent.minx)); /* useful for creating cachable extents (i.e. 0 0 dx dy) with legends and scalebars */
outstr = gsub(outstr, "[dx]", repstr);
sprintf(repstr, "%f", (msObj->Map->extent.maxy-msObj->Map->extent.miny));
outstr = gsub(outstr, "[dy]", repstr);
sprintf(repstr, "%f", msObj->RawExt.minx); /* Individual raw extent elements for spatial query building */
outstr = gsub(outstr, "[rawminx]", repstr);
sprintf(repstr, "%f", msObj->RawExt.maxx);
outstr = gsub(outstr, "[rawmaxx]", repstr);
sprintf(repstr, "%f", msObj->RawExt.miny);
outstr = gsub(outstr, "[rawminy]", repstr);
sprintf(repstr, "%f", msObj->RawExt.maxy);
outstr = gsub(outstr, "[rawmaxy]", repstr);
sprintf(repstr, "%f %f %f %f", msObj->RawExt.minx, msObj->RawExt.miny, msObj->RawExt.maxx, msObj->RawExt.maxy);
outstr = gsub(outstr, "[rawext]", repstr);
encodedstr = msEncodeUrl(repstr);
outstr = gsub(outstr, "[rawext_esc]", encodedstr);
free(encodedstr);
#ifdef USE_PROJ
if((strstr(outstr, "lat]") || strstr(outstr, "lon]") || strstr(outstr, "lon_esc]"))
&& msObj->Map->projection.proj != NULL
&& !pj_is_latlong(msObj->Map->projection.proj) ) {
llextent=msObj->Map->extent;
llpoint=msObj->MapPnt;
msProjectRect(&(msObj->Map->projection), &(msObj->Map->latlon), &llextent);
msProjectPoint(&(msObj->Map->projection), &(msObj->Map->latlon), &llpoint);
sprintf(repstr, "%f", llpoint.x);
outstr = gsub(outstr, "[maplon]", repstr);
sprintf(repstr, "%f", llpoint.y);
outstr = gsub(outstr, "[maplat]", repstr);
sprintf(repstr, "%f", llextent.minx); /* map extent as lat/lon */
outstr = gsub(outstr, "[minlon]", repstr);
sprintf(repstr, "%f", llextent.maxx);
outstr = gsub(outstr, "[maxlon]", repstr);
sprintf(repstr, "%f", llextent.miny);
outstr = gsub(outstr, "[minlat]", repstr);
sprintf(repstr, "%f", llextent.maxy);
outstr = gsub(outstr, "[maxlat]", repstr);
sprintf(repstr, "%f %f %f %f", llextent.minx, llextent.miny, llextent.maxx, llextent.maxy);
outstr = gsub(outstr, "[mapext_latlon]", repstr);
encodedstr = msEncodeUrl(repstr);
outstr = gsub(outstr, "[mapext_latlon_esc]", encodedstr);
free(encodedstr);
}
#endif
/* submitted by J.F (bug 1102) */
if (msObj->Map->reference.status == MS_ON) {
sprintf(repstr, "%f", msObj->Map->reference.extent.minx); /* Individual reference map extent elements for spatial query building */
outstr = gsub(outstr, "[refminx]", repstr);
sprintf(repstr, "%f", msObj->Map->reference.extent.maxx);
outstr = gsub(outstr, "[refmaxx]", repstr);
sprintf(repstr, "%f", msObj->Map->reference.extent.miny);
outstr = gsub(outstr, "[refminy]", repstr);
sprintf(repstr, "%f", msObj->Map->reference.extent.maxy);
outstr = gsub(outstr, "[refmaxy]", repstr);
sprintf(repstr, "%f %f %f %f", msObj->Map->reference.extent.minx, msObj->Map->reference.extent.miny, msObj->Map->reference.extent.maxx, msObj->Map->reference.extent.maxy);
outstr = gsub(outstr, "[refext]", repstr);
encodedstr = msEncodeUrl(repstr);
outstr = gsub(outstr, "[refext_esc]", encodedstr);
free(encodedstr);
}
sprintf(repstr, "%d %d", msObj->Map->width, msObj->Map->height);
outstr = gsub(outstr, "[mapsize]", repstr);
encodedstr = msEncodeUrl(repstr);
outstr = gsub(outstr, "[mapsize_esc]", encodedstr);
free(encodedstr);
sprintf(repstr, "%d", msObj->Map->width);
outstr = gsub(outstr, "[mapwidth]", repstr);
sprintf(repstr, "%d", msObj->Map->height);
outstr = gsub(outstr, "[mapheight]", repstr);
sprintf(repstr, "%f", msObj->Map->scale);
outstr = gsub(outstr, "[scale]", repstr);
sprintf(repstr, "%f", msObj->Map->cellsize);
outstr = gsub(outstr, "[cellsize]", repstr);
sprintf(repstr, "%.1f %.1f", (msObj->Map->width)/2.0, (msObj->Map->height)/2.0); /* not subtracting 1 from image dimensions (see bug 633) */
outstr = gsub(outstr, "[center]", repstr);
sprintf(repstr, "%.1f", (msObj->Map->width)/2.0);
outstr = gsub(outstr, "[center_x]", repstr);
sprintf(repstr, "%.1f", (msObj->Map->height)/2.0);
outstr = gsub(outstr, "[center_y]", repstr);
/* These are really for situations with multiple result sets only, but often used in header/footer */
sprintf(repstr, "%d", msObj->NR); /* total number of results */
outstr = gsub(outstr, "[nr]", repstr);
sprintf(repstr, "%d", msObj->NL); /* total number of layers with results */
outstr = gsub(outstr, "[nl]", repstr);
if(msObj->ResultLayer) {
if(strstr(outstr, "[items]") != NULL) {
char *itemstr=NULL;
itemstr = msJoinStrings(msObj->ResultLayer->items, msObj->ResultLayer->numitems, ",");
outstr = gsub(outstr, "[items]", itemstr);
free(itemstr);
}
sprintf(repstr, "%d", msObj->NLR); /* total number of results within this layer */
outstr = gsub(outstr, "[nlr]", repstr);
sprintf(repstr, "%d", msObj->RN); /* sequential (eg. 1..n) result number within all layers */
outstr = gsub(outstr, "[rn]", repstr);
sprintf(repstr, "%d", msObj->LRN); /* sequential (eg. 1..n) result number within this layer */
outstr = gsub(outstr, "[lrn]", repstr);
outstr = gsub(outstr, "[cl]", msObj->ResultLayer->name); /* current layer name */
/* if(ResultLayer->description) outstr = gsub(outstr, "[cd]", ResultLayer->description); // current layer description */
}
if(mode == QUERY) { /* return shape and/or values */
/* allow layer metadata access in a query template, within the context of a query no layer name is necessary */
if(&(msObj->ResultLayer->metadata) && strstr(outstr, "[metadata_")) {
for(i=0; i<MS_HASHSIZE; i++) {
if(msObj->ResultLayer->metadata.items[i] != NULL) {
for(tp=msObj->ResultLayer->metadata.items[i]; tp!=NULL; tp=tp->next) {
sprintf(substr, "[metadata_%s]", tp->key);
outstr = gsub(outstr, substr, tp->data);
sprintf(substr, "[metadata_%s_esc]", tp->key);
encodedstr = msEncodeUrl(tp->data);
outstr = gsub(outstr, substr, encodedstr);
free(encodedstr);
}
}
}
}
sprintf(repstr, "%f %f", (msObj->ResultShape.bounds.maxx + msObj->ResultShape.bounds.minx)/2, (msObj->ResultShape.bounds.maxy + msObj->ResultShape.bounds.miny)/2);
outstr = gsub(outstr, "[shpmid]", repstr);
sprintf(repstr, "%f", (msObj->ResultShape.bounds.maxx + msObj->ResultShape.bounds.minx)/2);
outstr = gsub(outstr, "[shpmidx]", repstr);
sprintf(repstr, "%f", (msObj->ResultShape.bounds.maxy + msObj->ResultShape.bounds.miny)/2);
outstr = gsub(outstr, "[shpmidy]", repstr);
sprintf(repstr, "%f %f %f %f", msObj->ResultShape.bounds.minx, msObj->ResultShape.bounds.miny, msObj->ResultShape.bounds.maxx, msObj->ResultShape.bounds.maxy);
outstr = gsub(outstr, "[shpext]", repstr);
encodedstr = msEncodeUrl(repstr);
outstr = gsub(outstr, "[shpext_esc]", encodedstr);
free(encodedstr);
sprintf(repstr, "%d", msObj->ResultShape.classindex);
outstr = gsub(outstr, "[shpclass]", repstr);
if(processCoords(msObj->ResultLayer, &outstr, &msObj->ResultShape) != MS_SUCCESS)
return(NULL);
sprintf(repstr, "%f", msObj->ResultShape.bounds.minx);
outstr = gsub(outstr, "[shpminx]", repstr);
sprintf(repstr, "%f", msObj->ResultShape.bounds.miny);
outstr = gsub(outstr, "[shpminy]", repstr);
sprintf(repstr, "%f", msObj->ResultShape.bounds.maxx);
outstr = gsub(outstr, "[shpmaxx]", repstr);
sprintf(repstr, "%f", msObj->ResultShape.bounds.maxy);
outstr = gsub(outstr, "[shpmaxy]", repstr);
sprintf(repstr, "%ld", msObj->ResultShape.index);
outstr = gsub(outstr, "[shpidx]", repstr);
sprintf(repstr, "%d", msObj->ResultShape.tileindex);
outstr = gsub(outstr, "[tileidx]", repstr);
/* return ALL attributes in one delimeted list */
if(strstr(outstr, "[values]") != NULL) {
char *valuestr=NULL;
valuestr = msJoinStrings(msObj->ResultShape.values, msObj->ResultLayer->numitems, ",");
outstr = gsub(outstr, "[values]", valuestr);
free(valuestr);
}
for(i=0;i<msObj->ResultLayer->numitems;i++) {
/* by default let's encode attributes for HTML presentation */
sprintf(substr, "[%s]", msObj->ResultLayer->items[i]);
if(strstr(outstr, substr) != NULL) {
encodedstr = msEncodeHTMLEntities(msObj->ResultShape.values[i]);
outstr = gsub(outstr, substr, encodedstr);
free(encodedstr);
}
/* of course you might want to embed that data in URLs */
sprintf(substr, "[%s_esc]", msObj->ResultLayer->items[i]);
if(strstr(outstr, substr) != NULL) {
encodedstr = msEncodeUrl(msObj->ResultShape.values[i]);
outstr = gsub(outstr, substr, encodedstr);
free(encodedstr);
}
/* or you might want to access the attributes unaltered */
sprintf(substr, "[%s_raw]", msObj->ResultLayer->items[i]);
if(strstr(outstr, substr) != NULL)
outstr = gsub(outstr, substr, msObj->ResultShape.values[i]);
}
if(processItem(msObj->ResultLayer, &outstr, &msObj->ResultShape) != MS_SUCCESS)
return(NULL);
/* handle joins in this next section */
for(i=0; i<msObj->ResultLayer->numjoins; i++) {
if(msObj->ResultLayer->joins[i].values) { /* join has data */
for(j=0;j<msObj->ResultLayer->joins[i].numitems;j++) {
/* by default let's encode attributes for HTML presentation */
sprintf(substr, "[%s_%s]", msObj->ResultLayer->joins[i].name, msObj->ResultLayer->joins[i].items[j]);
if(strstr(outstr, substr) != NULL) {
encodedstr = msEncodeHTMLEntities(msObj->ResultLayer->joins[i].values[j]);
outstr = gsub(outstr, substr, encodedstr);
free(encodedstr);
}
/* of course you might want to embed that data in URLs */
sprintf(substr, "[%s_%s_esc]", msObj->ResultLayer->joins[i].name, msObj->ResultLayer->joins[i].items[j]);
if(strstr(outstr, substr) != NULL) {
encodedstr = msEncodeUrl(msObj->ResultLayer->joins[i].values[j]);
outstr = gsub(outstr, substr, encodedstr);
free(encodedstr);
}
/* or you might want to access the attributes unaltered */
sprintf(substr, "[%s_%s_raw]", msObj->ResultLayer->joins[i].name, msObj->ResultLayer->joins[i].items[j]);
if(strstr(outstr, substr) != NULL)
outstr = gsub(outstr, substr, msObj->ResultLayer->joins[i].values[j]);
}
} else if(msObj->ResultLayer->joins[i].type == MS_JOIN_ONE_TO_MANY){ /* one-to-many join */
char *joinTemplate=NULL;
sprintf(substr, "[join_%s]", msObj->ResultLayer->joins[i].name);
if(strstr(outstr, substr) != NULL) {
joinTemplate = processOneToManyJoin(msObj, &(msObj->ResultLayer->joins[i]));
if(joinTemplate) {
outstr = gsub(outstr, substr, joinTemplate);
free(joinTemplate);
} else
return NULL;
}
}
} /* next join */
} /* end query mode specific substitutions */
for(i=0;i<msObj->request->NumParams;i++) {
sprintf(substr, "[%s]", msObj->request->ParamNames[i]);
outstr = gsub(outstr, substr, msObj->request->ParamValues[i]);
sprintf(substr, "[%s_esc]", msObj->request->ParamNames[i]);
encodedstr = msEncodeUrl(msObj->request->ParamValues[i]);
outstr = gsub(outstr, substr, encodedstr);
free(encodedstr);
}
return(outstr);
}
#define MS_TEMPLATE_BUFFER 1024 /* 1k */
int msReturnPage(mapservObj* msObj, char* html, int mode, char **papszBuffer)
{
FILE *stream;
char line[MS_BUFFER_LENGTH], *tmpline;
int nBufferSize = 0;
int nCurrentSize = 0;
int nExpandBuffer = 0;
ms_regex_t re; /* compiled regular expression to be matched */
char szPath[MS_MAXPATHLEN];
if(ms_regcomp(&re, MS_TEMPLATE_EXPR, MS_REG_EXTENDED|MS_REG_NOSUB) != 0) {
msSetError(MS_REGEXERR, NULL, "msReturnPage()");
return MS_FAILURE;
}
if(ms_regexec(&re, html, 0, NULL, 0) != 0) { /* no match */
ms_regfree(&re);
msSetError(MS_WEBERR, "Malformed template name (%s).", "msReturnPage()", html);
return MS_FAILURE;
}
ms_regfree(&re);
if((stream = fopen(msBuildPath(szPath, msObj->Map->mappath, html), "r")) == NULL) {
msSetError(MS_IOERR, html, "msReturnPage()");
return MS_FAILURE;
}
if (papszBuffer)
{
if ((*papszBuffer) == NULL)
{
(*papszBuffer) = (char *)malloc(MS_TEMPLATE_BUFFER);
(*papszBuffer)[0] = '\0';
nBufferSize = MS_TEMPLATE_BUFFER;
nCurrentSize = 0;
nExpandBuffer = 1;
}
else
{
nCurrentSize = strlen((*papszBuffer));
nBufferSize = nCurrentSize;
nExpandBuffer = (nCurrentSize/MS_TEMPLATE_BUFFER) +1;
}
}
while(fgets(line, MS_BUFFER_LENGTH, stream) != NULL) { /* now on to the end of the file */
if(strchr(line, '[') != NULL) {
tmpline = processLine(msObj, line, mode);
if (!tmpline)
return MS_FAILURE;
if (papszBuffer)
{
if (nBufferSize <= (int)(nCurrentSize + strlen(tmpline) + 1))
{
nExpandBuffer = (strlen(tmpline) / MS_TEMPLATE_BUFFER) + 1;
nBufferSize =
MS_TEMPLATE_BUFFER*nExpandBuffer + strlen((*papszBuffer));
(*papszBuffer) =
(char *)realloc((*papszBuffer),sizeof(char)*nBufferSize);
}
strcat((*papszBuffer), tmpline);
nCurrentSize += strlen(tmpline);
}
else
msIO_printf("%s", tmpline);
free(tmpline);
}
else
{
if (papszBuffer)
{
if (nBufferSize <= (int)(nCurrentSize + strlen(line)))
{
nExpandBuffer = (strlen(line) / MS_TEMPLATE_BUFFER) + 1;
nBufferSize =
MS_TEMPLATE_BUFFER*nExpandBuffer + strlen((*papszBuffer));
(*papszBuffer) =
(char *)realloc((*papszBuffer),sizeof(char)*nBufferSize);
}
strcat((*papszBuffer), line);
nCurrentSize += strlen(line);
}
else
msIO_printf("%s", line);
}
if (!papszBuffer)
fflush(stdout);
} /* next line */
fclose(stream);
return MS_SUCCESS;
}
int msReturnURL(mapservObj* msObj, char* url, int mode)
{
char *tmpurl;
if(url == NULL) {
msSetError(MS_WEBERR, "Empty URL.", "msReturnURL()");
return MS_FAILURE;
}
tmpurl = processLine(msObj, url, mode);
if (!tmpurl)
return MS_FAILURE;
msRedirect(tmpurl);
free(tmpurl);
return MS_SUCCESS;
}
int msReturnQuery(mapservObj* msObj, char* pszMimeType, char **papszBuffer)
{
int status;
int i,j,k;
char buffer[1024];
int nBufferSize =0;
int nCurrentSize = 0;
int nExpandBuffer = 0;
char *template;
layerObj *lp=NULL;
/* -------------------------------------------------------------------- */
/* mime type could be null when the function is called from */
/* mapscript (function msProcessQueryTemplate) */
/* -------------------------------------------------------------------- */
/* if(!pszMimeType) {
msSetError(MS_WEBERR, "Mime type not specified.", "msReturnQuery()");
return MS_FAILURE;
} */
if(papszBuffer) {
(*papszBuffer) = (char *)malloc(MS_TEMPLATE_BUFFER);
(*papszBuffer)[0] = '\0';
nBufferSize = MS_TEMPLATE_BUFFER;
nCurrentSize = 0;
nExpandBuffer = 1;
}
msInitShape(&(msObj->ResultShape));
if((msObj->Mode == ITEMQUERY) || (msObj->Mode == QUERY)) { /* may need to handle a URL result set */
for(i=(msObj->Map->numlayers-1); i>=0; i--) {
lp = &(msObj->Map->layers[i]);
if(!lp->resultcache) continue;
if(lp->resultcache->numresults > 0) break;
}
if(i >= 0) { /* at least if no result found, mapserver will display an empty template. */
if(lp->resultcache->results[0].classindex >= 0 && lp->class[(int)(lp->resultcache->results[0].classindex)].template)
template = lp->class[(int)(lp->resultcache->results[0].classindex)].template;
else
template = lp->template;
if( template == NULL )
{
msSetError(MS_WEBERR, "No template for layer %s or it's classes.",
"msReturnQuery()", lp->name );
return MS_FAILURE;
}
if(TEMPLATE_TYPE(template) == MS_URL) {
msObj->ResultLayer = lp;
status = msLayerOpen(lp);
if(status != MS_SUCCESS) return status;
/* retrieve all the item names */
status = msLayerGetItems(lp);
if(status != MS_SUCCESS) return status;
status = msLayerGetShape(lp, &(msObj->ResultShape), lp->resultcache->results[0].tileindex, lp->resultcache->results[0].shapeindex);
if(status != MS_SUCCESS) return status;
if(lp->numjoins > 0) {
for(k=0; k<lp->numjoins; k++) {
msJoinConnect(lp, &(lp->joins[k]));
msJoinPrepare(&(lp->joins[k]), &(msObj->ResultShape));
msJoinNext(&(lp->joins[k])); /* fetch the first row */
}
}
if(papszBuffer == NULL) {
if(msReturnURL(msObj, template, QUERY) != MS_SUCCESS) return MS_FAILURE;
}
msFreeShape(&(msObj->ResultShape));
msLayerClose(lp);
msObj->ResultLayer = NULL;
return MS_SUCCESS;
}
}
}
msObj->NR = msObj->NL = 0;
for(i=0; i<msObj->Map->numlayers; i++) { /* compute some totals */
lp = &(msObj->Map->layers[i]);
if(!lp->resultcache) continue;
if(lp->resultcache->numresults > 0) {
msObj->NL++;
msObj->NR += lp->resultcache->numresults;
}
}
if(papszBuffer && pszMimeType) {
sprintf(buffer, "Content-type: %s%c%c\n", pszMimeType, 10, 10);
/* sprintf(buffer, "<!-- %s -->\n", msGetVersion()); */
if(nBufferSize <= (int)(nCurrentSize + strlen(buffer) + 1)) {
nExpandBuffer++;
(*papszBuffer) = (char *)realloc((*papszBuffer), MS_TEMPLATE_BUFFER*nExpandBuffer);
nBufferSize = MS_TEMPLATE_BUFFER*nExpandBuffer;
}
strcat((*papszBuffer), buffer);
nCurrentSize += strlen(buffer);
} else if(pszMimeType) {
msIO_printf("Content-type: %s%c%c", pszMimeType, 10, 10); /* write MIME header */
/* printf("<!-- %s -->\n", msGetVersion()); */
fflush(stdout);
}
if(msObj->Map->web.header) {
if(msReturnPage(msObj, msObj->Map->web.header, BROWSE, papszBuffer) != MS_SUCCESS) return MS_FAILURE;
}
msObj->RN = 1; /* overall result number */
for(i=(msObj->Map->numlayers-1); i>=0; i--) {
msObj->ResultLayer = lp = &(msObj->Map->layers[i]);
if(!lp->resultcache) continue;
if(lp->resultcache->numresults <= 0) continue;
msObj->NLR = lp->resultcache->numresults;
/* open this layer */
status = msLayerOpen(lp);
if(status != MS_SUCCESS) return status;
/* retrieve all the item names */
status = msLayerGetItems(lp);
if(status != MS_SUCCESS) return status;
/* open any necessary JOINs here */
if(lp->numjoins > 0) {
for(k=0; k<lp->numjoins; k++) {
status = msJoinConnect(lp, &(lp->joins[k]));
if(status != MS_SUCCESS) return status;
}
}
if(lp->header) {
if(msReturnPage(msObj, lp->header, BROWSE, papszBuffer) != MS_SUCCESS) return MS_FAILURE;
}
msObj->LRN = 1; /* layer result number */
for(j=0; j<lp->resultcache->numresults; j++) {
status = msLayerGetShape(lp, &(msObj->ResultShape), lp->resultcache->results[j].tileindex, lp->resultcache->results[j].shapeindex);
if(status != MS_SUCCESS) return status;
/* prepare any necessary JOINs here (one-to-one only) */
if(lp->numjoins > 0) {
for(k=0; k<lp->numjoins; k++) {
if(lp->joins[k].type == MS_JOIN_ONE_TO_ONE) {
msJoinPrepare(&(lp->joins[k]), &(msObj->ResultShape));
msJoinNext(&(lp->joins[k])); /* fetch the first row */
}
}
}
if(lp->resultcache->results[j].classindex >= 0 && lp->class[(int)(lp->resultcache->results[j].classindex)].template)
template = lp->class[(int)(lp->resultcache->results[j].classindex)].template;
else
template = lp->template;
if(msReturnPage(msObj, template, QUERY, papszBuffer) != MS_SUCCESS) return MS_FAILURE;
msFreeShape(&(msObj->ResultShape)); /* init too */
msObj->RN++; /* increment counters */
msObj->LRN++;
}
if(lp->footer) {
if(msReturnPage(msObj, lp->footer, BROWSE, papszBuffer) != MS_SUCCESS) return MS_FAILURE;
}
msLayerClose(lp);
msObj->ResultLayer = NULL;
}
if(msObj->Map->web.footer)
return msReturnPage(msObj, msObj->Map->web.footer, BROWSE, papszBuffer);
return MS_SUCCESS;
}
mapservObj* msAllocMapServObj()
{
mapservObj* msObj = malloc(sizeof(mapservObj));
msObj->SaveMap=MS_FALSE;
msObj->SaveQuery=MS_FALSE; /* should the query and/or map be saved */
msObj->request = msAllocCgiObj();
msObj->Map=NULL;
msObj->NumLayers=0; /* number of layers specfied by a user */
msObj->RawExt.minx=-1;
msObj->RawExt.miny=-1;
msObj->RawExt.maxx=-1;
msObj->RawExt.maxy=-1;
msObj->fZoom=1;
msObj->Zoom=1; /* default for browsing */
msObj->ResultLayer=NULL;
msObj->UseShapes=MS_FALSE;
msObj->MapPnt.x=-1;
msObj->MapPnt.y=-1;
msObj->ZoomDirection=0; /* whether zooming in or out, default is pan or 0 */
msObj->Mode=BROWSE; /* can be BROWSE, QUERY, etc. */
sprintf(msObj->Id, "%ld%d",(long)time(NULL),(int)getpid());
msObj->CoordSource=NONE;
msObj->Scale=0;
msObj->ImgRows=-1;
msObj->ImgCols=-1;
msObj->ImgExt.minx=-1;
msObj->ImgExt.miny=-1;
msObj->ImgExt.maxx=-1;
msObj->ImgExt.maxy=-1;
msObj->ImgBox.minx=-1;
msObj->ImgBox.miny=-1;
msObj->ImgBox.maxx=-1;
msObj->ImgBox.maxy=-1;
msObj->RefPnt.x=-1;
msObj->RefPnt.y=-1;
msObj->ImgPnt.x=-1;
msObj->ImgPnt.y=-1;
msObj->Buffer=0;
/*
** variables for multiple query results processing
*/
msObj->RN=0; /* overall result number */
msObj->LRN=0; /* result number within a layer */
msObj->NL=0; /* total number of layers with results */
msObj->NR=0; /* total number or results */
msObj->NLR=0; /* number of results in a layer */
return msObj;
}
void msFreeMapServObj(mapservObj* msObj)
{
int i;
if(msObj) {
msFreeMap(msObj->Map);
msFreeCgiObj(msObj->request);
msObj->request = NULL;
for(i=0;i<msObj->NumLayers;i++) free(msObj->Layers[i]);
free(msObj);
}
}
/*
** Utility function to generate map, legend, scalebar and reference
** images.
** Parameters :
** - msObj : mapserv object (used to extrcat the map object)
** - szQuery : query file used my mapserv cgi. Set to NULL if not
** needed
** - bReturnOnError : if set to TRUE, the function will return on
** the first error. Else it will try to generate
** all the images.
**/
int msGenerateImages(mapservObj *msObj, char *szQuery, int bReturnOnError)
{
char buffer[1024];
if(msObj) {
/* -------------------------------------------------------------------- */
/* rednder map. */
/* -------------------------------------------------------------------- */
if(msObj->Map->status == MS_ON) {
imageObj *image = NULL;
if(szQuery)
image = msDrawQueryMap(msObj->Map);
else
image = msDrawMap(msObj->Map);
if(image) {
sprintf(buffer, "%s%s%s.%s", msObj->Map->web.imagepath, msObj->Map->name, msObj->Id, MS_IMAGE_EXTENSION(msObj->Map->outputformat));
if(msSaveImage(msObj->Map, image, buffer) != MS_SUCCESS && bReturnOnError) {
msFreeImage(image);
return MS_FALSE;
}
msFreeImage(image);
} else if (bReturnOnError)
return MS_FALSE;
}
/* -------------------------------------------------------------------- */
/* render legend. */
/* -------------------------------------------------------------------- */
if(msObj->Map->legend.status == MS_ON) {
imageObj *image = NULL;
image = msDrawLegend(msObj->Map, MS_FALSE);
if(image) {
sprintf(buffer, "%s%sleg%s.%s", msObj->Map->web.imagepath, msObj->Map->name, msObj->Id, MS_IMAGE_EXTENSION(msObj->Map->outputformat));
if(msSaveImage(msObj->Map, image, buffer) != MS_SUCCESS && bReturnOnError) {
msFreeImage(image);
return MS_FALSE;
}
msFreeImage(image);
} else if (bReturnOnError)
return MS_FALSE;
}
/* -------------------------------------------------------------------- */
/* render scalebar. */
/* -------------------------------------------------------------------- */
if(msObj->Map->scalebar.status == MS_ON) {
imageObj *image = NULL;
image = msDrawScalebar(msObj->Map);
if(image) {
sprintf(buffer, "%s%ssb%s.%s", msObj->Map->web.imagepath, msObj->Map->name, msObj->Id, MS_IMAGE_EXTENSION(msObj->Map->outputformat));
if(msSaveImage(msObj->Map, image, buffer) != MS_SUCCESS && bReturnOnError) {
msFreeImage(image);
return MS_FALSE;
}
msFreeImage(image);
} else if (bReturnOnError)
return MS_FALSE;
}
/* -------------------------------------------------------------------- */
/* render refernece. */
/* -------------------------------------------------------------------- */
if(msObj->Map->reference.status == MS_ON) {
imageObj *image;
image = msDrawReferenceMap(msObj->Map);
if(image) {
sprintf(buffer, "%s%sref%s.%s", msObj->Map->web.imagepath, msObj->Map->name, msObj->Id, MS_IMAGE_EXTENSION(msObj->Map->outputformat));
if(msSaveImage(msObj->Map, image, buffer) != MS_SUCCESS && bReturnOnError) {
msFreeImage(image);
return MS_FALSE;
}
msFreeImage(image);
} else if (bReturnOnError)
return MS_FALSE;
}
}
return MS_TRUE;
}
/*
** Utility function to open a template file, process it and
** and return into a buffer the processed template.
** Uses the template file from the web object.
** return NULL if there is an error.
*/
char *msProcessTemplate(mapObj *map, int bGenerateImages,
char **names, char **values,
int numentries)
{
char *pszBuffer = NULL;
if (map) {
/* -------------------------------------------------------------------- */
/* initialize object and set values. */
/* -------------------------------------------------------------------- */
mapservObj *msObj = NULL;
msObj = msAllocMapServObj();
msObj->Map = map;
msObj->Mode = BROWSE;
if(names && values && numentries > 0) {
msObj->request->ParamNames = names;
msObj->request->ParamValues = values;
msObj->request->NumParams = numentries;
}
/* -------------------------------------------------------------------- */
/* ISSUE/TODO : some of the name/values should be extracted and */
/* processed (ex imgext, layers, ...) as it is done in function */
/* loadform. */
/* */
/* -------------------------------------------------------------------- */
if(bGenerateImages)
msGenerateImages(msObj, NULL, MS_FALSE);
/* -------------------------------------------------------------------- */
/* process the template. */
/* */
/* TODO : use webminscale/maxscale depending on the scale. */
/* -------------------------------------------------------------------- */
if(msReturnPage(msObj, msObj->Map->web.template, BROWSE, &pszBuffer) != MS_SUCCESS) {
msFree(pszBuffer);
pszBuffer = NULL;
}
/* Don't free the map and names and values arrays since they were */
/* passed by ref */
msObj->Map = NULL;
msObj->request->ParamNames = msObj->request->ParamValues = NULL;
msObj->request->NumParams = 0;
msFreeMapServObj(msObj);
}
return pszBuffer;
}
/************************************************************************/
/* char *msProcessLegendTemplate(mapObj *map, */
/* char **names, char **values, */
/* int numentries) */
/* */
/* Utility method to process the legend template. */
/************************************************************************/
char *msProcessLegendTemplate(mapObj *map,
char **names, char **values,
int numentries)
{
char *pszOutBuf = NULL;
if(map && map->legend.template) {
/* -------------------------------------------------------------------- */
/* initialize object and set values. */
/* -------------------------------------------------------------------- */
mapservObj *msObj = NULL;
msObj = msAllocMapServObj();
msObj->Map = map;
msObj->Mode = BROWSE;
if(names && values && numentries > 0) {
msObj->request->ParamNames = names;
msObj->request->ParamValues = values;
msObj->request->NumParams = numentries;
}
pszOutBuf = generateLegendTemplate(msObj);
/* Don't free the map and names and values arrays since they were */
/* passed by ref */
msObj->Map = NULL;
msObj->request->ParamNames = msObj->request->ParamValues = NULL;
msObj->request->NumParams = 0;
msFreeMapServObj(msObj);
}
return pszOutBuf;
}
/************************************************************************/
/* char *msProcessQueryTemplate(mapObj *map, */
/* char **names, char **values, */
/* int numentries) */
/* */
/* Utility function that process a template file(s) used in the */
/* query and retrun the processed template(s) in a bufffer. */
/************************************************************************/
char *msProcessQueryTemplate(mapObj *map, int bGenerateImages,
char **names, char **values,
int numentries)
{
char *pszBuffer = NULL;
if(map) {
/* -------------------------------------------------------------------- */
/* initialize object and set values. */
/* -------------------------------------------------------------------- */
mapservObj *msObj = NULL;
msObj = msAllocMapServObj();
msObj->Map = map;
msObj->Mode = QUERY;
if(names && values && numentries > 0) {
msObj->request->ParamNames = names;
msObj->request->ParamValues = values;
msObj->request->NumParams = numentries;
}
if(bGenerateImages)
msGenerateImages(msObj, NULL, MS_FALSE);
msReturnQuery(msObj, NULL, &pszBuffer );
msObj->Map = NULL;
msObj->request->ParamNames = msObj->request->ParamValues = NULL;
msObj->request->NumParams = 0;
msFreeMapServObj(msObj);
}
return pszBuffer;
}
|