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
|
/**********************************************************************
* $Id: mapwfs.c,v 1.87 2006/09/06 17:26:24 sdlime Exp $
*
* Name: mapwfs.c
* Project: MapServer
* Language: C
* Purpose: WFS server implementation
* Author: Daniel Morissette, DM Solutions Group (morissette@dmsolutions.ca)
*
**********************************************************************
* Copyright (c) 2002, Daniel Morissette, DM Solutions Group Inc
*
* 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 or substantial portions of the 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: mapwfs.c,v $
* Revision 1.87 2006/09/06 17:26:24 sdlime
* Removed advertising GML3 support in WFS 1.0.0 getCapabilities output.
*
* Revision 1.86 2006/08/22 04:45:06 sdlime
* Fixed a bug that did not allow for seperate metadata namespaces to be used for WMS vs. WFS for GML transformations (e.g. WFS_GEOMETRIES, WMS_GEOMETRIES).
*
* Revision 1.85 2006/08/14 21:52:20 sdlime
* Updated WFS GetFeature to reference external namespaces if available.
*
* Revision 1.84 2006/08/14 21:15:00 sdlime
* Added support to WFS DescribeFeatureType for external schemas (initial coding).
*
* Revision 1.83 2006/08/14 20:19:54 dan
* Produce a warning in GetCapabilities if ???_featureid not set (bug 1782)
*
* Revision 1.82 2006/08/14 18:47:28 sdlime
* Some more implementation of external application schema support.
*
* Revision 1.81 2006/08/11 21:44:48 sdlime
* Added namespace reading (using is the hard part) to WFS server.
*
* Revision 1.80 2006/04/08 05:58:48 frank
* fix various memory leaks
*
* Revision 1.79 2006/04/08 03:38:18 frank
* Ensure that an error in FLTApplyFilterToLayer() is reported as a
* WFS exception.
*
* Revision 1.78 2006/03/30 21:43:47 sdlime
* Upgraded GML 3 version from 3.1.0 to 3.1.1 based on discussions with Tom Kralidis.
*
* Revision 1.77 2006/03/22 21:40:47 sdlime
* Added support to allow a service provider (WFS or WMS) tonot expose feature geometries. (bug 1718)
*
* Revision 1.76 2006/03/15 22:54:07 sdlime
* Fixed my brain-dead gml_group schema writing support.
*
* Revision 1.75 2006/02/24 02:55:03 assefa
* Add the possiblity to set wfs_maxfeatures to 0 (Bug 1678)
*
* Revision 1.74 2006/02/17 22:59:47 sdlime
* Updated WFS schema production code to ignore items with templates defined since we can't readily produce schema elements for them.
*
* Revision 1.73 2005/12/27 17:36:27 sdlime
* Fixed a typo in msWFSGetGeometryType().
*
* Revision 1.72 2005/12/06 16:42:25 assefa
* WFS : TYPENAME is manadatory for GetFeature request (Bug 1554).
*
* Revision 1.71 2005/10/25 20:29:52 sdlime
* Completed work to add constants to GML output. For example gml_constants 'aConstant' gml_aConstant_value 'this is a constant', which results in output like <aConstant>this is a constant</aConstant>. Constants can appear in groups and can havespecific types (default is string). Constants are NOT queryable so their use should be limited untilsome extensions to wfs 1.1 appear that will allow us to mark certain elements as queryable or not in capabilities output.
*
* Revision 1.70 2005/10/12 15:34:27 sdlime
* Updated the gmlGroupObj to allow you to set the group type. This impacts schema location. If not set the complex type written by the schema generator is 'groupnameType' and via metadata you can override that (e.g. gml_groupname_type 'MynameType').
*
* Revision 1.69 2005/10/11 17:48:35 sdlime
* Fixed complex type writer to create set the type name when writing a schema. I think we may need more control though (e.g. group types). Also trimmed the revision history to a cover only the more recent mods.
*
* Revision 1.68 2005/09/08 20:57:50 assefa
* Changed default namespace used (Bug 1461).
*
* Revision 1.67 2005/06/02 20:42:14 sdlime
* Fixed a small initialization problem when no namespace metadata supplied.
*
* Revision 1.66 2005/06/02 20:32:01 sdlime
* Changed metadata reference from ...getfeature_collection to ...feature_collection.
*
* Revision 1.65 2005/06/02 20:25:04 sdlime
* Updated WFS output to not use wfs:FeatureCollection as the main container for GML3 output. A default container of msFeatureCollection is provided or the user may define one explicitly.
*
* Revision 1.64 2005/05/31 18:24:49 sdlime
* Updated GML3 writer to use the new gmlGeometryListObj. This allows you to package geometries from WFS in a pretty flexible manner. Will port GML2 writer once testing on GML3 code is complete.
*
* Revision 1.63 2005/05/27 17:24:56 sdlime
* Changed WFS layer type name from [layer name]_Type to [layer name]Type in keeping with schema convension.
*
* Revision 1.62 2005/05/26 16:09:15 sdlime
* Updated mapwfs.c to produce schema compliant with the GML for Simple Feature Exchange proposed standard. Changes are relatively minor with the exception of naming the geometry container and handling of mixed geometry types. The previous version defaulted to a GML type. We need more control for application specific schema. We now package the GML geometry in an element named by default geometry, users can override using gml_geometry_name metadata. We also advertise a *very* generic GMLPropertyType by default again which can be overriden using gml_geometry_type. That metadata *can* contain a list of valid types which are offered as a xsd:choice.
*
* Revision 1.61 2005/04/22 15:50:46 assefa
* Bug 1262 : the SERVICE parameter is now required for wms and wfs
* GetCapbilities request. It is not required for other WMS requests.
* It is required for all WFS requests.
*
* Revision 1.60 2005/04/21 21:10:38 sdlime
* Adjusted WFS support to allow for a new output format (GML3).
*
**********************************************************************/
#include "map.h"
MS_CVSID("$Id: mapwfs.c,v 1.87 2006/09/06 17:26:24 sdlime Exp $")
#if defined(USE_WFS_SVR)
/* There is a dependency to GDAL/OGR for the GML driver and MiniXML parser */
#include "cpl_minixml.h"
#include "mapogcfilter.h"
/*
** msWFSException()
**
** Report current MapServer error in XML exception format.
*/
static int msWFSException(mapObj *map, const char *wmtversion)
{
char *schemalocation = NULL;
/* In WFS, exceptions are always XML.
*/
msIO_printf("Content-type: text/xml%c%c",10,10);
msIO_printf("<ServiceExceptionReport\n");
msIO_printf("xmlns=\"http://www.opengis.net/ogc\" ");
msIO_printf("xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" ");
schemalocation = msEncodeHTMLEntities(msOWSGetSchemasLocation(map));
msIO_printf("xsi:schemaLocation=\"http://www.opengis.net/ogc %s/wms/1.1.1/OGC-exception.xsd\">\n", schemalocation);
free(schemalocation);
msIO_printf(" <ServiceException>\n");
/* Optional <Locator> element currently unused. */
/* msIO_printf(" <Message>\n"); */
msWriteErrorXML(stdout);
/* msIO_printf(" </Message>\n"); */
msIO_printf(" </ServiceException>\n");
msIO_printf("</ServiceExceptionReport>\n");
return MS_FAILURE; /* so we can call 'return msWFSException();' anywhere */
}
/*
**
*/
static void msWFSPrintRequestCap(const char *wmtver, const char *request,
const char *script_url,
const char *format_tag, const char *formats, ...)
{
va_list argp;
const char *fmt;
msIO_printf(" <%s>\n", request);
/* We expect to receive a NULL-terminated args list of formats */
if (format_tag != NULL)
{
msIO_printf(" <%s>\n", format_tag);
va_start(argp, formats);
fmt = formats;
while(fmt != NULL)
{
msIO_printf(" <%s/>\n", fmt);
fmt = va_arg(argp, const char *);
}
va_end(argp);
msIO_printf(" </%s>\n", format_tag);
}
msIO_printf(" <DCPType>\n");
msIO_printf(" <HTTP>\n");
msIO_printf(" <Get onlineResource=\"%s\" />\n", script_url);
msIO_printf(" </HTTP>\n");
msIO_printf(" </DCPType>\n");
msIO_printf(" <DCPType>\n");
msIO_printf(" <HTTP>\n");
msIO_printf(" <Post onlineResource=\"%s\" />\n", script_url);
msIO_printf(" </HTTP>\n");
msIO_printf(" </DCPType>\n");
msIO_printf(" </%s>\n", request);
}
/* msWFSIsLayerSupported()
**
** Returns true (1) is this layer meets the requirements to be served as
** a WFS feature type.
*/
static int msWFSIsLayerSupported(layerObj *lp)
{
/* In order to be supported, lp->type must be specified, even for
** layers that are OGR, SDE, SDO, etc connections.
** lp->dump must be explicitly set to TRUE in mapfile.
*/
if (lp->dump &&
(lp->type == MS_LAYER_POINT ||
lp->type == MS_LAYER_LINE ||
lp->type == MS_LAYER_POLYGON ) &&
lp->connectiontype != MS_WMS )
{
return 1; /* true */
}
return 0; /* false */
}
/* msWFSGetGeomElementName()
**
** Return the geometry propery name base on the layer type
*/
const char *msWFSGetGeomElementName(mapObj *map, layerObj *lp)
{
switch(lp->type)
{
case MS_LAYER_POINT:
return "pointProperty";
case MS_LAYER_LINE:
return "lineStringProperty";
case MS_LAYER_POLYGON:
return "polygonProperty";
default:
break;
}
return "???unknown???";
}
/* msWFSGetGeomType()
**
** Return GML name for geometry type in this layer
** This is based on MapServer geometry type and layers with mixed geometries
** may not return the right feature type.
*/
#ifdef notdef /* not currently used */
static const char *msWFSGetGeomType(layerObj *lp)
{
switch(lp->type)
{
case MS_LAYER_POINT:
return "PointPropertyType";
case MS_LAYER_LINE:
return "LineStringPropertyType";
case MS_LAYER_POLYGON:
return "PolygonPropertyType";
default:
break;
}
return "???unknown???";
}
#endif /* def notdef */
/*
** msWFSDumpLayer()
*/
int msWFSDumpLayer(mapObj *map, layerObj *lp)
{
rectObj ext;
msIO_printf(" <FeatureType>\n");
if (lp->name && strlen(lp->name) > 0 &&
(msIsXMLTagValid(lp->name) == MS_FALSE || isdigit(lp->name[0])))
msIO_fprintf(stdout, "<!-- WARNING: The layer name '%s' might contain spaces or "
"invalid characters or may start with a number. This could lead to potential problems. -->\n",lp->name);
msOWSPrintEncodeParam(stdout, "LAYER.NAME", lp->name, OWS_WARN,
" <Name>%s</Name>\n", NULL);
msOWSPrintEncodeMetadata(stdout, &(lp->metadata), "FO", "title",
OWS_WARN, " <Title>%s</Title>\n", lp->name);
msOWSPrintEncodeMetadata(stdout, &(lp->metadata), "FO", "abstract",
OWS_NOERR, " <Abstract>%s</Abstract>\n", NULL);
msOWSPrintEncodeMetadataList(stdout, &(lp->metadata), "FO",
"keywordlist",
" <Keywords>\n",
" </Keywords>\n",
" %s\n", NULL);
/* In WFS, every layer must have exactly one SRS and there is none at */
/* the top level contrary to WMS */
/* */
/* So here is the way we'll deal with SRS: */
/* 1- If a top-level map projection (or wfs_srs metadata) is set then */
/* all layers are advertized in the map's projection and they will */
/* be reprojected on the fly in the GetFeature request. */
/* 2- If there is no top-level map projection (or wfs_srs metadata) then */
/* each layer is advertized in its own projection as defined in the */
/* layer's projection object or wfs_srs metadata. */
/* */
if (msOWSGetEPSGProj(&(map->projection),&(map->web.metadata),"FO",MS_TRUE) != NULL)
{
/* Map has a SRS. Use it for all layers. */
msOWSPrintEncodeParam(stdout, "(at least one of) MAP.PROJECTION, LAYER.PROJECTION or wfs_srs metadata",
msOWSGetEPSGProj(&(map->projection),&(map->web.metadata),"FO",MS_TRUE),
OWS_WARN, " <SRS>%s</SRS>\n", NULL);
}
else
{
/* Map has no SRS. Use layer SRS or produce a warning. */
msOWSPrintEncodeParam(stdout, "(at least one of) MAP.PROJECTION, LAYER.PROJECTION or wfs_srs metadata",
msOWSGetEPSGProj(&(lp->projection), &(lp->metadata), "FO", MS_TRUE),
OWS_WARN, " <SRS>%s</SRS>\n", NULL);
}
/* If layer has no proj set then use map->proj for bounding box. */
if (msOWSGetLayerExtent(map, lp, "FO", &ext) == MS_SUCCESS)
{
if(lp->projection.numargs > 0)
{
msOWSPrintLatLonBoundingBox(stdout, " ", &(ext),
&(lp->projection), OWS_WFS);
}
else
{
msOWSPrintLatLonBoundingBox(stdout, " ", &(ext),
&(map->projection), OWS_WFS);
}
}
else
{
msIO_printf("<!-- WARNING: Mandatory LatLongBoundingBox could not be established for this layer. Consider setting LAYER.EXTENT or wfs_extent metadata. -->\n");
}
msOWSPrintURLType(stdout, &(lp->metadata), "FO", "metadataurl",
OWS_NOERR, NULL, "MetadataURL", " type=\"%s\"",
NULL, NULL, " format=\"%s\"", "%s",
MS_TRUE, MS_FALSE, MS_FALSE, MS_TRUE, MS_TRUE,
NULL, NULL, NULL, NULL, NULL, " ");
if (msOWSLookupMetadata(&(lp->metadata), "OFG", "featureid") == NULL)
{
msIO_fprintf(stdout, "<!-- WARNING: Required Feature Id attribute (fid) not specified for this feature type. Make sure you set one of wfs_featureid, ows_feature_id or gml_featureid metadata. -->\n");
}
msIO_printf(" </FeatureType>\n");
return MS_SUCCESS;
}
/*
** msWFSGetCapabilities()
*/
int msWFSGetCapabilities(mapObj *map, const char *wmtver, cgiRequestObj *req)
{
char *script_url=NULL, *script_url_encoded;
int i;
/* Decide which version we're going to return... only 1.0.0 for now */
wmtver = "1.0.0";
/* We need this server's onlineresource. */
if ((script_url=msOWSGetOnlineResource(map, "FO", "onlineresource", req)) == NULL ||
(script_url_encoded = msEncodeHTMLEntities(script_url)) == NULL)
{
return msWFSException(map, wmtver);
}
msIO_printf("Content-type: text/xml%c%c",10,10);
msOWSPrintEncodeMetadata(stdout, &(map->web.metadata), "FO", "encoding", OWS_NOERR,
"<?xml version='1.0' encoding=\"%s\" ?>\n",
"ISO-8859-1");
msIO_printf("<WFS_Capabilities \n"
" version=\"%s\" \n"
" updateSequence=\"0\" \n"
" xmlns=\"http://www.opengis.net/wfs\" \n"
" xmlns:ogc=\"http://www.opengis.net/ogc\" \n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
" xsi:schemaLocation=\"http://www.opengis.net/wfs %s/wfs/%s/WFS-capabilities.xsd\">\n",
wmtver,
msOWSGetSchemasLocation(map), wmtver);
/* Report MapServer Version Information */
msIO_printf("\n<!-- %s -->\n\n", msGetVersion());
/*
** SERVICE definition
*/
msIO_printf("<Service>\n");
msIO_printf(" <Name>MapServer WFS</Name>\n");
/* the majority of this section is dependent on appropriately named metadata in the WEB object */
msOWSPrintEncodeMetadata(stdout, &(map->web.metadata), "FO", "title",
OWS_WARN, " <Title>%s</Title>\n", map->name);
msOWSPrintEncodeMetadata(stdout, &(map->web.metadata), "FO", "abstract",
OWS_NOERR, " <Abstract>%s</Abstract>\n", NULL);
msOWSPrintEncodeMetadataList(stdout, &(map->web.metadata), "FO",
"keywordlist",
" <Keywords>\n", " </Keywords>\n",
" %s\n", NULL);
/* Service/onlineresource */
/* Defaults to same as request onlineresource if wfs_service_onlineresource */
/* is not set. */
msOWSPrintEncodeMetadata(stdout, &(map->web.metadata),
"FO", "service_onlineresource", OWS_NOERR,
" <OnlineResource>%s</OnlineResource>\n",
script_url_encoded);
msOWSPrintEncodeMetadata(stdout, &(map->web.metadata), "FO", "fees",
OWS_NOERR, " <Fees>%s</Fees>\n", NULL);
msOWSPrintEncodeMetadata(stdout, &(map->web.metadata), "FO",
"accessconstraints", OWS_NOERR,
" <AccessConstraints>%s</AccessConstraints>\n",
NULL);
msIO_printf("</Service>\n\n");
/*
** CAPABILITY definitions: list of supported requests
*/
msIO_printf("<Capability>\n");
msIO_printf(" <Request>\n");
msWFSPrintRequestCap(wmtver, "GetCapabilities", script_url_encoded,
NULL, NULL);
/* msWFSPrintRequestCap(wmtver, "DescribeFeatureType", script_url_encoded, "SchemaDescriptionLanguage", "XMLSCHEMA", "SFE_XMLSCHEMA", NULL); */
/* msWFSPrintRequestCap(wmtver, "GetFeature", script_url_encoded, "ResultFormat", "GML2", "GML3", NULL); */
/* don't advertise the GML3 or GML for SFE support */
msWFSPrintRequestCap(wmtver, "DescribeFeatureType", script_url_encoded, "SchemaDescriptionLanguage", "XMLSCHEMA", NULL);
msWFSPrintRequestCap(wmtver, "GetFeature", script_url_encoded, "ResultFormat", "GML2", NULL);
msIO_printf(" </Request>\n");
msIO_printf("</Capability>\n\n");
/*
** FeatureTypeList: layers
*/
msIO_printf("<FeatureTypeList>\n");
/* Operations supported... set default at top-level, and more operations */
/* can be added inside each layer... for MapServer only query is supported */
msIO_printf(" <Operations>\n");
msIO_printf(" <Query/>\n");
msIO_printf(" </Operations>\n");
for(i=0; i<map->numlayers; i++)
{
layerObj *lp;
lp = &(map->layers[i]);
/* List only vector layers in which DUMP=TRUE */
if (msWFSIsLayerSupported(lp))
{
msWFSDumpLayer(map, lp);
}
}
msIO_printf("</FeatureTypeList>\n\n");
/*
** OGC Filter Capabilities ... for now we support only BBOX
*/
msIO_printf("<ogc:Filter_Capabilities>\n");
msIO_printf(" <ogc:Spatial_Capabilities>\n");
msIO_printf(" <ogc:Spatial_Operators>\n");
msIO_printf(" <ogc:Intersect/>\n");
msIO_printf(" <ogc:DWithin/>\n");
msIO_printf(" <ogc:BBOX/>\n");
msIO_printf(" </ogc:Spatial_Operators>\n");
msIO_printf(" </ogc:Spatial_Capabilities>\n");
msIO_printf(" <ogc:Scalar_Capabilities>\n");
msIO_printf(" <ogc:Logical_Operators />\n");
msIO_printf(" <ogc:Comparison_Operators>\n");
msIO_printf(" <ogc:Simple_Comparisons />\n");
msIO_printf(" <ogc:Like />\n");
msIO_printf(" <ogc:Between />\n");
msIO_printf(" </ogc:Comparison_Operators>\n");
msIO_printf(" </ogc:Scalar_Capabilities>\n");
msIO_printf("</ogc:Filter_Capabilities>\n\n");
/*
** Done!
*/
msIO_printf("</WFS_Capabilities>\n");
free(script_url);
free(script_url_encoded);
return MS_SUCCESS;
}
/*
** Helper functions for producing XML schema.
*/
static const char *msWFSGetGeometryType(char *type, int outputformat)
{
if(!type) return "???undefined???";
if(strcasecmp(type, "point") == 0) {
switch(outputformat) {
case OWS_GML2:
case OWS_GML3:
return "PointPropertyType";
}
} else if(strcasecmp(type, "multipoint") == 0) {
switch(outputformat) {
case OWS_GML2:
case OWS_GML3:
return "MultiPointPropertyType";
}
} else if(strcasecmp(type, "line") == 0) {
switch(outputformat) {
case OWS_GML2:
return "LineStringPropertyType";
case OWS_GML3:
return "CurvePropertyType";
}
} else if(strcasecmp(type, "multiline") == 0) {
switch(outputformat) {
case OWS_GML2:
return "MultiLineStringPropertyType";
case OWS_GML3:
return "MultiCurvePropertyType";
}
} else if(strcasecmp(type, "polygon") == 0) {
switch(outputformat) {
case OWS_GML2:
return "PolygonPropertyType";
case OWS_GML3:
return "SurfacePropertyType";
}
} else if(strcasecmp(type, "multipolygon") == 0) {
switch(outputformat) {
case OWS_GML2:
return "MultiPolygonPropertyType";
case OWS_GML3:
return "MultiSurfacePropertyType";
}
}
return "???unkown???";
}
static void msWFSWriteGeometryElement(FILE *stream, gmlGeometryListObj *geometryList, int outputformat, const char *tab)
{
int i;
gmlGeometryObj *geometry=NULL;
if(!stream || !tab) return;
if(geometryList && geometryList->numgeometries == 1 && strcasecmp(geometryList->geometries[0].name, "none") == 0) return;
if(!geometryList || geometryList->numgeometries == 0) { /* write a default container */
msIO_fprintf(stream, "%s<element name=\"%s\" type=\"gml:GeometryPropertyType\" minOccurs=\"0\" maxOccurs=\"1\"/>\n", tab, OWS_GML_DEFAULT_GEOMETRY_NAME);
return;
} else {
if(geometryList->numgeometries == 1) {
geometry = &(geometryList->geometries[0]);
msIO_fprintf(stream, "%s<element name=\"%s\" type=\"gml:%s\" minOccurs=\"%d\"", tab, geometry->name, msWFSGetGeometryType(geometry->type, outputformat), geometry->occurmin);
if(geometry->occurmax == OWS_GML_OCCUR_UNBOUNDED)
msIO_fprintf(stream, " maxOccurs=\"unbounded\"/>\n");
else
msIO_fprintf(stream, " maxOccurs=\"%d\"/>\n", geometry->occurmax);
} else {
msIO_fprintf(stream, "%s<choice>\n", tab);
for(i=0; i<geometryList->numgeometries; i++) {
geometry = &(geometryList->geometries[i]);
msIO_fprintf(stream, " %s<element name=\"%s\" type=\"gml:%s\" minOccurs=\"%d\"", tab, geometry->name, msWFSGetGeometryType(geometry->type, outputformat), geometry->occurmin);
if(geometry->occurmax == OWS_GML_OCCUR_UNBOUNDED)
msIO_fprintf(stream, " maxOccurs=\"unbounded\"/>\n");
else
msIO_fprintf(stream, " maxOccurs=\"%d\"/>\n", geometry->occurmax);
}
msIO_fprintf(stream, "%s</choice>\n", tab);
}
}
return;
}
static void msWFSWriteItemElement(FILE *stream, gmlItemObj *item, const char *tab)
{
char *element_name;
char *element_type = "string";
if(!stream || !item || !tab) return;
if(!item->visible) return; /* not exposing this attribute */
if(item->template) return; /* can't adequately deal with templated items yet */
if(item->alias) /* TODO: what about name spaces embedded in the alias? */
element_name = item->alias;
else
element_name = item->name;
if(item->type)
element_type = item->type;
msIO_fprintf(stream, "%s<element name=\"%s\" type=\"%s\"/>\n", tab, element_name, element_type);
return;
}
static void msWFSWriteConstantElement(FILE *stream, gmlConstantObj *constant, const char *tab)
{
char *element_type = "string";
if(!stream || !constant || !tab) return;
if(constant->type)
element_type = constant->type;
msIO_fprintf(stream, "%s<element name=\"%s\" type=\"%s\"/>\n", tab, constant->name, element_type);
return;
}
static void msWFSWriteGroupElement(FILE *stream, gmlGroupObj *group, const char *tab, const char *namespace)
{
if(group->type)
msIO_fprintf(stream, "%s<element name=\"%s\" type=\"%s:%s\"/>\n", tab, group->name, namespace, group->type);
else
msIO_fprintf(stream, "%s<element name=\"%s\" type=\"%s:%sType\"/>\n", tab, group->name, namespace, group->name);
return;
}
static void msWFSWriteGroupElementType(FILE *stream, gmlGroupObj *group, gmlItemListObj *itemList, gmlConstantListObj *constantList, const char *tab)
{
int i, j;
char *element_tab;
gmlItemObj *item=NULL;
gmlConstantObj *constant=NULL;
/* setup the element tab */
element_tab = (char *) malloc(sizeof(char)*strlen(tab)+3);
if(!element_tab) return;
sprintf(element_tab, "%s ", tab);
if(group->type)
msIO_fprintf(stream, "%s<complexType name=\"%s\">\n", tab, group->type);
else
msIO_fprintf(stream, "%s<complexType name=\"%sType\">\n", tab, group->name);
msIO_fprintf(stream, "%s <sequence>\n", tab);
/* now the items/constants (e.g. elements) in the group */
for(i=0; i<group->numitems; i++) {
for(j=0; j<constantList->numconstants; j++) { /* find the right gmlConstantObj */
constant = &(constantList->constants[j]);
if(strcasecmp(constant->name, group->items[i]) == 0) {
msWFSWriteConstantElement(stream, constant, element_tab);
break;
}
}
if(j != constantList->numconstants) continue; /* found this item */
for(j=0; j<itemList->numitems; j++) { /* find the right gmlItemObj */
item = &(itemList->items[j]);
if(strcasecmp(item->name, group->items[i]) == 0) {
msWFSWriteItemElement(stream, item, element_tab);
break;
}
}
}
msIO_fprintf(stream, "%s </sequence>\n", tab);
msIO_fprintf(stream, "%s</complexType>\n", tab);
return;
}
/*
** msWFSDescribeFeatureType()
*/
int msWFSDescribeFeatureType(mapObj *map, wfsParamsObj *paramsObj)
{
int i, numlayers=0;
char **layers = NULL;
char **tokens;
int n=0;
const char *value;
const char *user_namespace_prefix = "ms";
const char *user_namespace_uri = "http://mapserver.gis.umn.edu/mapserver";
char *user_namespace_uri_encoded = NULL;
const char *collection_name = OWS_WFS_FEATURE_COLLECTION_NAME;
char *encoded_name = NULL, *encoded;
int outputformat = OWS_DEFAULT_SCHEMA; /* default output is GML 2.1 compliant schema*/
gmlNamespaceListObj *namespaceList=NULL; /* for external application schema support */
if(paramsObj->pszTypeName && numlayers == 0) {
/* Parse comma-delimited list of type names (layers) */
/* */
/* __TODO__ Need to handle type grouping, e.g. "(l1,l2),l3,l4" */
/* */
layers = split(paramsObj->pszTypeName, ',', &numlayers);
if (numlayers > 0) {
/* strip namespace if there is one :ex TYPENAME=cdf:Other */
tokens = split(layers[0], ':', &n);
if (tokens && n==2 && msGetLayerIndex(map, layers[0]) < 0) {
msFreeCharArray(tokens, n);
for (i=0; i<numlayers; i++) {
tokens = split(layers[i], ':', &n);
if (tokens && n==2) {
free(layers[i]);
layers[i] = strdup(tokens[1]);
}
if (tokens)
msFreeCharArray(tokens, n);
}
}
}
}
if (paramsObj->pszOutputFormat) {
if(strcasecmp(paramsObj->pszOutputFormat, "XMLSCHEMA") == 0)
outputformat = OWS_DEFAULT_SCHEMA;
else if(strcasecmp(paramsObj->pszOutputFormat, "SFE_XMLSCHEMA") == 0)
outputformat = OWS_SFE_SCHEMA;
else {
msSetError(MS_WFSERR, "Unsupported DescribeFeatureType outputFormat (%s).", "msWFSDescribeFeatureType()", paramsObj->pszOutputFormat);
return msWFSException(map, paramsObj->pszVersion);
}
}
/* Validate layers */
if (numlayers > 0) {
for (i=0; i<numlayers; i++) {
if (msGetLayerIndex(map, layers[i]) < 0) {
msSetError(MS_WFSERR, "Invalid typename (%s).", "msWFSDescribeFeatureType()", layers[i]);/* paramsObj->pszTypeName); */
return msWFSException(map, paramsObj->pszVersion);
}
}
}
/*
** retrieve any necessary external namespace/schema configuration information
*/
namespaceList = msGMLGetNamespaces(&(map->web), "OFG");
/*
** DescribeFeatureType response
*/
msIO_printf("Content-type: text/xml%c%c",10,10);
msOWSPrintEncodeMetadata(stdout, &(map->web.metadata), "FO", "encoding", OWS_NOERR,
"<?xml version='1.0' encoding=\"%s\" ?>\n",
"ISO-8859-1");
value = msOWSLookupMetadata(&(map->web.metadata), "FO", "namespace_uri");
if(value) user_namespace_uri = value;
user_namespace_uri_encoded = msEncodeHTMLEntities(user_namespace_uri);
value = msOWSLookupMetadata(&(map->web.metadata), "FO", "namespace_prefix");
if(value) user_namespace_prefix = value;
if(user_namespace_prefix != NULL && msIsXMLTagValid(user_namespace_prefix) == MS_FALSE)
msIO_printf("<!-- WARNING: The value '%s' is not valid XML namespace. -->\n", user_namespace_prefix);
msIO_printf("<schema\n"
" targetNamespace=\"%s\" \n"
" xmlns:%s=\"%s\" \n"
" xmlns:ogc=\"http://www.opengis.net/ogc\"\n"
" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n"
" xmlns=\"http://www.w3.org/2001/XMLSchema\"\n"
" xmlns:gml=\"http://www.opengis.net/gml\"\n",
user_namespace_uri_encoded, user_namespace_prefix, user_namespace_uri_encoded);
/* any additional namespaces */
for(i=0; i<namespaceList->numnamespaces; i++) {
if(namespaceList->namespaces[i].uri) {
char *uri_encoded=NULL;
uri_encoded = msEncodeHTMLEntities(namespaceList->namespaces[i].uri);
msIO_printf(" xmlns:%s=\"%s\" \n", namespaceList->namespaces[i].prefix, uri_encoded);
msFree(uri_encoded);
}
}
msIO_printf(" elementFormDefault=\"qualified\" version=\"0.1\" >\n");
encoded = msEncodeHTMLEntities( msOWSGetSchemasLocation(map) );
if(outputformat == OWS_SFE_SCHEMA) /* reference GML 3.1.1 schema */
msIO_printf("\n <import namespace=\"http://www.opengis.net/gml\"\n"
" schemaLocation=\"%s/gml/3.1.1/base/feature.xsd\" />\n", encoded);
else /* default GML 2.1.x schema */
msIO_printf("\n <import namespace=\"http://www.opengis.net/gml\"\n"
" schemaLocation=\"%s/gml/2.1.2/feature.xsd\" />\n", encoded);
msFree(encoded);
/* any additional namespace includes */
for(i=0; i<namespaceList->numnamespaces; i++) {
if(namespaceList->namespaces[i].uri && namespaceList->namespaces[i].schemalocation) {
char *schema_location_encoded=NULL, *uri_encoded=NULL;
uri_encoded = msEncodeHTMLEntities(namespaceList->namespaces[i].uri);
schema_location_encoded = msEncodeHTMLEntities(namespaceList->namespaces[i].schemalocation);
msIO_printf("\n <import namespace=\"%s\"\n schemaLocation=\"%s\" />\n", uri_encoded, schema_location_encoded);
msFree(uri_encoded);
msFree(schema_location_encoded);
}
}
/* output definition for the default feature container, can't use wfs:FeatureCollection with GML3 */
if(outputformat == OWS_SFE_SCHEMA) {
value = msOWSLookupMetadata(&(map->web.metadata), "FO", "feature_collection");
if(value) collection_name = value;
msIO_printf(" <element name=\"%s\" type=\"%s:%sType\" substitutionGroup=\"gml:_FeatureCollection\"/>\n", collection_name, user_namespace_prefix, collection_name);
msIO_printf(" <complexType name=\"%sType\">\n", collection_name);
msIO_printf(" <complexContent>\n");
msIO_printf(" <extension base=\"gml:AbstractFeatureCollectionType\">\n");
msIO_printf(" <attribute name=\"version\" type=\"string\" use=\"required\" fixed=\"1.0.0\"/>\n");
msIO_printf(" </extension>\n");
msIO_printf(" </complexContent>\n");
msIO_printf(" </complexType>\n");
}
/*
** loop through layers
*/
for(i=0; i<map->numlayers; i++) {
layerObj *lp;
int j, bFound = 0;
lp = &(map->layers[i]);
for (j=0; j<numlayers && !bFound; j++) {
if ( lp->name && strcasecmp(lp->name, layers[j]) == 0)
bFound = 1;
}
if ((numlayers == 0 || bFound) && msWFSIsLayerSupported(lp)) {
/*
** OK, describe this layer IF you can open it and retrieve items
*/
if (msLayerOpen(lp) == MS_SUCCESS) {
if (msLayerGetItems(lp) == MS_SUCCESS) {
int k;
gmlGroupListObj *groupList=NULL;
gmlItemListObj *itemList=NULL;
gmlConstantListObj *constantList=NULL;
gmlGeometryListObj *geometryList=NULL;
gmlItemObj *item=NULL;
gmlConstantObj *constant=NULL;
const char *layer_namespace_prefix;
char *encoded_type=NULL;
itemList = msGMLGetItems(lp, "OFG"); /* GML-related metadata */
constantList = msGMLGetConstants(lp, "OFG");
groupList = msGMLGetGroups(lp, "OFG");
geometryList = msGMLGetGeometries(lp, "OFG");
value = msOWSLookupMetadata(&(lp->metadata), "OFG", "namespace_prefix");
if(value)
layer_namespace_prefix = value;
else
layer_namespace_prefix = user_namespace_prefix;
/* value = msOWSLookupMetadata(&(lp->metadata), "OFG", "layername"); */
encoded_name = msEncodeHTMLEntities( lp->name );
value = msOWSLookupMetadata(&(lp->metadata), "OFG", "layer_type");
if(value) {
encoded_type = msEncodeHTMLEntities(value);
msIO_printf("\n"
" <element name=\"%s\" \n"
" type=\"%s:%s\" \n"
" substitutionGroup=\"gml:_Feature\" />\n\n",
encoded_name, layer_namespace_prefix, encoded_type);
msFree(encoded_type);
} else
msIO_printf("\n"
" <element name=\"%s\" \n"
" type=\"%s:%sType\" \n"
" substitutionGroup=\"gml:_Feature\" />\n\n",
encoded_name, layer_namespace_prefix, encoded_name);
if(strcmp(layer_namespace_prefix, user_namespace_prefix) != 0)
continue; /* the rest is defined in an external schema */
msIO_printf(" <complexType name=\"%sType\">\n", encoded_name);
msIO_printf(" <complexContent>\n");
msIO_printf(" <extension base=\"gml:AbstractFeatureType\">\n");
msIO_printf(" <sequence>\n");
/* write the geometry schema element(s) */
msWFSWriteGeometryElement(stdout, geometryList, outputformat, " ");
/* write the constant-based schema elements */
for(k=0; k<constantList->numconstants; k++) {
constant = &(constantList->constants[k]);
if(msItemInGroups(constant->name, groupList) == MS_FALSE)
msWFSWriteConstantElement(stdout, constant, " ");
}
/* write the item-based schema elements */
for(k=0; k<itemList->numitems; k++) {
item = &(itemList->items[k]);
if(msItemInGroups(item->name, groupList) == MS_FALSE)
msWFSWriteItemElement(stdout, item, " ");
}
for(k=0; k<groupList->numgroups; k++)
msWFSWriteGroupElement(stdout, &(groupList->groups[k]), " ", user_namespace_prefix);
msIO_printf(" </sequence>\n");
msIO_printf(" </extension>\n");
msIO_printf(" </complexContent>\n");
msIO_printf(" </complexType>\n");
/* any group types */
for(k=0; k<groupList->numgroups; k++)
msWFSWriteGroupElementType(stdout, &(groupList->groups[k]), itemList, constantList, " ");
msGMLFreeItems(itemList);
msGMLFreeConstants(constantList);
msGMLFreeGroups(groupList);
msGMLFreeGeometries(geometryList);
}
msLayerClose(lp);
} else {
msIO_printf("\n\n<!-- ERROR: Failed opening layer %s -->\n\n", encoded_name);
}
}
}
/*
** Done!
*/
msIO_printf("\n</schema>\n");
msFree(encoded_name);
msFree(user_namespace_uri_encoded);
if(layers)
msFreeCharArray(layers, numlayers);
return MS_SUCCESS;
}
/*
** msWFSGetFeature()
*/
int msWFSGetFeature(mapObj *map, wfsParamsObj *paramsObj, cgiRequestObj *req)
/* const char *wmtver, char **names, char **values, int numentries) */
{
int i, maxfeatures=-1;
const char *typename="";
char *script_url=NULL, *script_url_encoded;
rectObj bbox;
const char *pszOutputSRS = NULL;
char **layers = NULL;
int numlayers = 0;
char *pszFilter = NULL;
int bFilterSet = 0;
int bBBOXSet = 0;
char *pszNameSpace = NULL;
const char *value;
const char *user_namespace_prefix = "ms";
const char *user_namespace_uri = "http://mapserver.gis.umn.edu/mapserver";
char *user_namespace_uri_encoded = NULL;
const char *collection_name = OWS_WFS_FEATURE_COLLECTION_NAME;
char *encoded, *encoded_typename, *encoded_schema;
const char *tmpmaxfeatures = NULL;
const char *output_schema_format = "XMLSCHEMA";
int outputformat = OWS_GML2; /* default output is GML 2.1 */
gmlNamespaceListObj *namespaceList=NULL; /* for external application schema support */
/* Default filter is map extents */
bbox = map->extent;
/* Read CGI parameters */
/* */
/* __TODO__ Need to support XML encoded requests */
/* */
/* typename is mandatory unlsess featureid is specfied. We do not
support featureid */
if (paramsObj->pszTypeName==NULL)
{
msSetError(MS_WFSERR,
"Incomplete WFS request: TYPENAME parameter missing",
"msWFSGetFeature()");
return msWFSException(map, paramsObj->pszVersion);
}
if(paramsObj->pszTypeName) {
int j, k;
const char *pszMapSRS = NULL;
char **tokens;
int n=0, i=0;
/* keep a ref for layer use. */
typename = paramsObj->pszTypeName;
/* Parse comma-delimited list of type names (layers) */
/* */
/* __TODO__ Need to handle type grouping, e.g. "(l1,l2),l3,l4" */
/* */
layers = split(typename, ',', &numlayers);
/* ==================================================================== */
/* TODO: check if the typename contains namespaces (ex cdf:Other), */
/* If that is the case extarct only the layer name. */
/* ==================================================================== */
if (layers==NULL || numlayers < 1) {
msSetError(MS_WFSERR, "At least one type name required in TYPENAME parameter.", "msWFSGetFeature()");
return msWFSException(map, paramsObj->pszVersion);
}
tokens = split(layers[0], ':', &n);
if (tokens && n==2 && msGetLayerIndex(map, layers[0]) < 0) {
/* pszNameSpace = strdup(tokens[0]); */
msFreeCharArray(tokens, n);
for (i=0; i<numlayers; i++) {
tokens = split(layers[i], ':', &n);
if (tokens && n==2) {
free(layers[i]);
layers[i] = strdup(tokens[1]);
}
if (tokens)
msFreeCharArray(tokens, n);
}
}
else
msFreeCharArray(tokens, n);
pszMapSRS = msOWSGetEPSGProj(&(map->projection), &(map->web.metadata), "FO", MS_TRUE);
/* Keep only selected layers, set to OFF by default. */
for(j=0; j<map->numlayers; j++) {
layerObj *lp;
lp = &(map->layers[j]);
/* Keep only selected layers, set to OFF by default. */
lp->status = MS_OFF;
}
for (k=0; k<numlayers; k++) {
int bLayerFound = MS_FALSE;
for (j=0; j<map->numlayers; j++) {
layerObj *lp;
lp = &(map->layers[j]);
if (msWFSIsLayerSupported(lp) && lp->name && strcasecmp(lp->name, layers[k]) == 0) {
const char *pszThisLayerSRS;
bLayerFound = MS_TRUE;
lp->status = MS_ON;
if (lp->template == NULL) {
/* Force setting a template to enable query. */
lp->template = strdup("ttt.html");
}
/* See comments in msWFSGetCapabilities() about the rules for SRS. */
if ((pszThisLayerSRS = pszMapSRS) == NULL) {
pszThisLayerSRS = msOWSGetEPSGProj(&(lp->projection), &(lp->metadata), "FO", MS_TRUE);
}
if (pszThisLayerSRS == NULL) {
msSetError(MS_WFSERR,
"Server config error: SRS must be set at least at the map or at the layer level.",
"msWFSGetFeature()");
return msWFSException(map, paramsObj->pszVersion);
}
/* Keep track of output SRS. If different from value */
/* from previous layers then this is an invalid request */
/* i.e. all layers in a single request must be in the */
/* same SRS. */
if (pszOutputSRS == NULL) {
pszOutputSRS = pszThisLayerSRS;
} else if (strcasecmp(pszThisLayerSRS,pszOutputSRS) != 0) {
msSetError(MS_WFSERR,
"Invalid GetFeature Request: All TYPENAMES in a single GetFeature request must have been advertized in the same SRS. Please check the capabilities and reformulate your request.",
"msWFSGetFeature()");
return msWFSException(map, paramsObj->pszVersion);
}
}
}
if (!bLayerFound) {
/* Requested layer name was not in capabilities:
* either it just doesn't exist, or it's missing DUMP TRUE
*/
msSetError(MS_WFSERR,
"TYPENAME '%s' doesn't exist in this server. Please check the capabilities and reformulate your request.",
"msWFSGetFeature()", layers[k]);
return msWFSException(map, paramsObj->pszVersion);
}
}
}
/* Validate outputformat */
if (paramsObj->pszOutputFormat) {
/* We support only GML2 and GML3 for now. */
if(strcasecmp(paramsObj->pszOutputFormat, "GML2") == 0) {
outputformat = OWS_GML2;
output_schema_format = "XMLSCHEMA";
} else if(strcasecmp(paramsObj->pszOutputFormat, "GML3") == 0) {
outputformat = OWS_GML3;
output_schema_format = "SFE_XMLSCHEMA";
} else {
msSetError(MS_WFSERR,
"Unsupported GetFeature outputFormat (%s). Only GML2 and GML3 are supported.",
"msWFSDescribeFeatureType()", paramsObj->pszOutputFormat);
return msWFSException(map, paramsObj->pszVersion);
}
}
/* else if (strcasecmp(names[i], "PROPERTYNAME") == 0) */
/* { */
/* */
/* } */
tmpmaxfeatures = msOWSLookupMetadata(&(map->web.metadata), "FO", "maxfeatures");
if (tmpmaxfeatures)
maxfeatures = atoi(tmpmaxfeatures);
if (paramsObj->nMaxFeatures > 0) {
if (maxfeatures < 0 || (maxfeatures > 0 && paramsObj->nMaxFeatures < maxfeatures))
maxfeatures = paramsObj->nMaxFeatures;
}
/* if (strcasecmp(names[i], "FEATUREID") == 0) */
/* { */
/* */
/* } */
if (paramsObj->pszFilter) {
bFilterSet = 1;
pszFilter = paramsObj->pszFilter;
} else if (paramsObj->pszBbox) {
char **tokens;
int n;
tokens = split(paramsObj->pszBbox, ',', &n);
if (tokens==NULL || n != 4) {
msSetError(MS_WFSERR, "Wrong number of arguments for BBOX.", "msWFSGetFeature()");
return msWFSException(map, paramsObj->pszVersion);
}
bbox.minx = atof(tokens[0]);
bbox.miny = atof(tokens[1]);
bbox.maxx = atof(tokens[2]);
bbox.maxy = atof(tokens[3]);
msFreeCharArray(tokens, n);
/* Note: BBOX SRS is implicit, it is the SRS of the selected */
/* feature types, see pszOutputSRS in TYPENAMES above. */
}
#ifdef USE_OGR
if (bFilterSet && pszFilter && strlen(pszFilter) > 0) {
char **tokens = NULL;
int nFilters;
FilterEncodingNode *psNode = NULL;
int iLayerIndex =1;
char **paszFilter = NULL;
/* -------------------------------------------------------------------- */
/* Validate the parameters. When a FILTER parameter is given, */
/* It needs the TYPENAME parameter for the layers. Also Filter */
/* is Mutually exclusive with FEATUREID and BBOX (see wfs specs */
/* 1.0 section 13.7.3 on GetFeature) */
/* */
/* -------------------------------------------------------------------- */
if (typename == NULL || strlen(typename) <= 0 || layers == NULL || numlayers <= 0) {
msSetError(MS_WFSERR,
"Required TYPENAME parameter missing for GetFeature with a FILTER parameter.",
"msWFSGetFeature()");
return msWFSException(map, paramsObj->pszVersion);
}
if (bBBOXSet) {
msSetError(MS_WFSERR,
"BBOX parameter and FILTER parameter are mutually exclusive in GetFeature.",
"msWFSGetFeature()");
return msWFSException(map, paramsObj->pszVersion);
}
/* -------------------------------------------------------------------- */
/* Parse the Filter parameter. If there are several Filter */
/* parameters, each Filter is inside a parantheses. Eg : */
/* FILTER=(<Filter><Within><PropertyName> */
/* INWATERA_1M/WKB_GEOM|INWATERA_1M/WKB_GEOM */
/* <PropertyName><gml:Box><gml:coordinates>10,10 20,20</gml:coordinates>*/
/* </gml:Box></Within></Filter>)(<Filter><Within><PropertyName> */
/* INWATERA_1M/WKB_GEOM<PropertyName><gml:Box><gml:coordinates>10,10*/
/* 20,20</gml:coordinates></gml:Box></Within></Filter>) */
/* -------------------------------------------------------------------- */
nFilters = 0;
if (strlen(pszFilter) > 0 && pszFilter[0] == '(') {
tokens = split(pszFilter+1, '(', &nFilters);
if (tokens == NULL || nFilters <=0 || nFilters != numlayers) {
msSetError(MS_WFSERR, "Wrong number of FILTER attributes",
"msWFSGetFeature()");
return msWFSException(map, paramsObj->pszVersion);
}
paszFilter = (char **)malloc(sizeof(char *)*nFilters);
for (i=0; i<nFilters; i++)
paszFilter[i] = strdup(tokens[i]);
if (tokens)
msFreeCharArray(tokens, nFilters);
} else {
nFilters=1;
paszFilter = (char **)malloc(sizeof(char *)*nFilters);
paszFilter[0] = pszFilter;
}
/* -------------------------------------------------------------------- */
/* run through the filters and build the class expressions. */
/* TODO: items may have namespace prefixes, or reference aliases, */
/* or groups. Need to be a bit more sophisticated here. */
/* -------------------------------------------------------------------- */
for (i=0; i<nFilters; i++) {
iLayerIndex = msGetLayerIndex(map, layers[i]);
if (iLayerIndex < 0) {
msSetError(MS_WFSERR, "Invalid Typename in GetFeature : %s", "msWFSGetFeature()", layers[i]);
return msWFSException(map, paramsObj->pszVersion);
}
psNode = FLTParseFilterEncoding(paszFilter[i]);
if (!psNode) {
msSetError(MS_WFSERR,
"Invalid or Unsupported FILTER in GetFeature : %s",
"msWFSGetFeature()", pszFilter);
return msWFSException(map, paramsObj->pszVersion);
}
if( FLTApplyFilterToLayer(psNode, map, iLayerIndex, MS_FALSE) != MS_SUCCESS )
return msWFSException(map, paramsObj->pszVersion);
FLTFreeFilterEncodingNode( psNode );
psNode = NULL;
}
if (paszFilter)
free(paszFilter);
}/* end if filter set */
#endif
if(layers)
msFreeCharArray(layers, numlayers);
if(typename == NULL) {
msSetError(MS_WFSERR,
"Required TYPENAME parameter missing for GetFeature.",
"msWFSGetFeature()");
return msWFSException(map, paramsObj->pszFilter);
}
/* Set map output projection to which output features should be reprojected */
if (pszOutputSRS && strncasecmp(pszOutputSRS, "EPSG:", 5) == 0) {
char szBuf[32];
sprintf(szBuf, "init=epsg:%.10s", pszOutputSRS+5);
if (msLoadProjectionString(&(map->projection), szBuf) != 0)
return msWFSException(map, paramsObj->pszVersion);
}
/*
** Perform Query (only BBOX for now)
*/
/* __TODO__ Using a rectangle query may not be the most efficient way */
/* to do things here. */
if (!bFilterSet) {
if(msQueryByRect(map, -1, bbox) != MS_SUCCESS) {
errorObj *ms_error;
ms_error = msGetErrorObj();
if(ms_error->code != MS_NOTFOUND)
return msWFSException(map, paramsObj->pszVersion);
}
}
/*
** GetFeature response
*/
if ((script_url=msOWSGetOnlineResource(map,"FO","onlineresource",req)) ==NULL ||
(script_url_encoded = msEncodeHTMLEntities(script_url)) == NULL) {
return msWFSException(map, paramsObj->pszVersion);
}
/*
** retrieve any necessary external namespace/schema configuration information
*/
namespaceList = msGMLGetNamespaces(&(map->web), "OFG");
msIO_printf("Content-type: text/xml%c%c",10,10);
msOWSPrintEncodeMetadata(stdout, &(map->web.metadata), "FO",
"encoding", OWS_NOERR,
"<?xml version='1.0' encoding=\"%s\" ?>\n",
"ISO-8859-1");
value = msOWSLookupMetadata(&(map->web.metadata), "FO", "namespace_uri");
if(value) user_namespace_uri = value;
user_namespace_uri_encoded = msEncodeHTMLEntities(user_namespace_uri);
value = msOWSLookupMetadata(&(map->web.metadata), "FO", "namespace_prefix");
if(value) user_namespace_prefix = value;
if(user_namespace_prefix != NULL && msIsXMLTagValid(user_namespace_prefix) == MS_FALSE)
msIO_printf("<!-- WARNING: The value '%s' is not valid XML namespace. -->\n", user_namespace_prefix);
pszNameSpace = strdup(user_namespace_prefix);
value = msOWSLookupMetadata(&(map->web.metadata), "FO", "feature_collection");
if(value) collection_name = value;
encoded = msEncodeHTMLEntities( paramsObj->pszVersion );
encoded_typename = msEncodeHTMLEntities( typename );
encoded_schema = msEncodeHTMLEntities( msOWSGetSchemasLocation(map) );
if(outputformat == OWS_GML2) { /* use a wfs:FeatureCollection */
msIO_printf("<wfs:FeatureCollection\n"
" xmlns:%s=\"%s\"\n"
" xmlns:wfs=\"http://www.opengis.net/wfs\"\n"
" xmlns:gml=\"http://www.opengis.net/gml\"\n"
" xmlns:ogc=\"http://www.opengis.net/ogc\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n",
user_namespace_prefix, user_namespace_uri_encoded);
/* any additional namespaces */
for(i=0; i<namespaceList->numnamespaces; i++) {
if(namespaceList->namespaces[i].uri) {
char *uri_encoded=NULL;
uri_encoded = msEncodeHTMLEntities(namespaceList->namespaces[i].uri);
msIO_printf(" xmlns:%s=\"%s\" \n", namespaceList->namespaces[i].prefix, uri_encoded);
msFree(uri_encoded);
}
}
msIO_printf(" xsi:schemaLocation=\"http://www.opengis.net/wfs %s/wfs/%s/WFS-basic.xsd \n"
" %s %sSERVICE=WFS&VERSION=%s&REQUEST=DescribeFeatureType&TYPENAME=%s&OUTPUTFORMAT=%s\">\n",
encoded_schema, encoded, user_namespace_uri_encoded,
script_url_encoded, encoded, encoded_typename, output_schema_format);
} else {
msIO_printf("<%s:%s\n"
" version=\"1.0.0\"\n"
" xmlns:%s=\"%s\"\n"
" xmlns:gml=\"http://www.opengis.net/gml\"\n"
" xmlns:ogc=\"http://www.opengis.net/ogc\"\n"
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n",
user_namespace_prefix, collection_name, user_namespace_prefix, user_namespace_uri_encoded);
/* any additional namespaces */
for(i=0; i<namespaceList->numnamespaces; i++) {
if(namespaceList->namespaces[i].uri) {
char *uri_encoded=NULL;
uri_encoded = msEncodeHTMLEntities(namespaceList->namespaces[i].uri);
msIO_printf(" xmlns:%s=\"%s\" \n", namespaceList->namespaces[i].prefix, uri_encoded);
msFree(uri_encoded);
}
}
msIO_printf(" xsi:schemaLocation=\"%s %sSERVICE=WFS&VERSION=%s&REQUEST=DescribeFeatureType&TYPENAME=%s&OUTPUTFORMAT=%s\">\n",
user_namespace_uri_encoded, script_url_encoded, encoded, encoded_typename, output_schema_format);
}
msFree(encoded);
msFree(encoded_schema);
msFree(encoded_typename);
/* handle case of maxfeatures = 0 */
if(maxfeatures != 0)
msGMLWriteWFSQuery(map, stdout, maxfeatures, pszNameSpace, outputformat);
/* if no results where written (TODO: this needs to be GML2/3 specific I imagine */
for(i=0; i<map->numlayers; i++) {
if (map->layers[i].resultcache && map->layers[i].resultcache->numresults > 0)
break;
}
if ((i==map->numlayers) || (maxfeatures == 0)) {
msIO_printf(" <gml:boundedBy>\n");
msIO_printf(" <gml:null>missing</gml:null>\n");
msIO_printf(" </gml:boundedBy>\n");
}
if(outputformat == OWS_GML2)
msIO_printf("</wfs:FeatureCollection>\n\n");
else
msIO_printf("</%s:%s>\n\n", user_namespace_prefix, collection_name);
/*
** Done! Now a bit of clean-up.
*/
free(script_url);
free(script_url_encoded);
if (pszNameSpace)
free(pszNameSpace);
msFree(user_namespace_uri_encoded);
return MS_SUCCESS;
}
#endif /* USE_WFS_SVR */
/*
** msWFSDispatch() is the entry point for WFS requests.
** - If this is a valid request then it is processed and MS_SUCCESS is returned
** on success, or MS_FAILURE on failure.
** - If this does not appear to be a valid WFS request then MS_DONE
** is returned and MapServer is expected to process this as a regular
** MapServer request.
*/
int msWFSDispatch(mapObj *map, cgiRequestObj *requestobj)
{
#ifdef USE_WFS_SVR
int status;
int returnvalue = MS_DONE;
/* static char *wmtver = NULL, *request=NULL, *service=NULL; */
wfsParamsObj *paramsObj;
/*
** Populate the Params object based on the request
*/
paramsObj = msWFSCreateParamsObj();
/* TODO : store also parameters that are inside the map object */
/* into the paramsObj. */
msWFSParseRequest(requestobj, paramsObj);
/* If SERVICE is specified then it MUST be "WFS" */
if (paramsObj->pszService != NULL &&
strcasecmp(paramsObj->pszService, "WFS") != 0)
{
msWFSFreeParamsObj(paramsObj);
free(paramsObj);
paramsObj = NULL;
return MS_DONE; /* Not a WFS request */
}
/* If SERVICE, VERSION and REQUEST not included than this isn't a WFS req*/
if (paramsObj->pszService == NULL && paramsObj->pszVersion==NULL &&
paramsObj->pszRequest==NULL)
{
msWFSFreeParamsObj(paramsObj);
free(paramsObj);
paramsObj = NULL;
return MS_DONE; /* Not a WFS request */
}
/* VERSION *and* REQUEST *and* SERVICE required by all WFS requests including
* GetCapabilities.
*/
if (paramsObj->pszVersion==NULL)
{
msSetError(MS_WFSERR,
"Incomplete WFS request: VERSION parameter missing",
"msWFSDispatch()");
returnvalue = msWFSException(map, paramsObj->pszVersion);
msWFSFreeParamsObj(paramsObj);
free(paramsObj);
paramsObj = NULL;
return returnvalue;
}
if (paramsObj->pszRequest==NULL)
{
msSetError(MS_WFSERR,
"Incomplete WFS request: REQUEST parameter missing",
"msWFSDispatch()");
returnvalue = msWFSException(map, paramsObj->pszVersion);
msWFSFreeParamsObj(paramsObj);
free(paramsObj);
paramsObj = NULL;
return returnvalue;
}
if (paramsObj->pszService==NULL)
{
msSetError(MS_WFSERR,
"Incomplete WFS request: SERVICE parameter missing",
"msWFSDispatch()");
returnvalue = msWFSException(map, paramsObj->pszVersion);
msWFSFreeParamsObj(paramsObj);
free(paramsObj);
paramsObj = NULL;
return returnvalue;
}
if ((status = msOWSMakeAllLayersUnique(map)) != MS_SUCCESS)
{
returnvalue = msWFSException(map, paramsObj->pszVersion);
msWFSFreeParamsObj(paramsObj);
free(paramsObj);
paramsObj = NULL;
return returnvalue;
}
/*
** Start dispatching requests
*/
if (strcasecmp(paramsObj->pszRequest, "GetCapabilities") == 0 )
{
returnvalue =
msWFSGetCapabilities(map, paramsObj->pszVersion, requestobj);
msWFSFreeParamsObj(paramsObj);
free(paramsObj);
paramsObj = NULL;
return returnvalue;
}
/*
** Validate VERSION against the versions that we support... we don't do this
** for GetCapabilities in order to allow version negociation.
*/
if (strcmp(paramsObj->pszVersion, "1.0.0") != 0)
{
msSetError(MS_WFSERR,
"WFS Server does not support VERSION %s.",
"msWFSDispatch()", paramsObj->pszVersion);
returnvalue = msWFSException(map, paramsObj->pszVersion);
msWFSFreeParamsObj(paramsObj);
free(paramsObj);
paramsObj = NULL;
return returnvalue;
}
returnvalue = MS_DONE;
/* Continue dispatching...
*/
if (strcasecmp(paramsObj->pszRequest, "DescribeFeatureType") == 0)
returnvalue = msWFSDescribeFeatureType(map, paramsObj);
else if (strcasecmp(paramsObj->pszRequest, "GetFeature") == 0)
returnvalue = msWFSGetFeature(map, paramsObj, requestobj);
else if (strcasecmp(paramsObj->pszRequest, "GetFeatureWithLock") == 0 ||
strcasecmp(paramsObj->pszRequest, "LockFeature") == 0 ||
strcasecmp(paramsObj->pszRequest, "Transaction") == 0 )
{
/* Unsupported WFS request */
msSetError(MS_WFSERR, "Unsupported WFS request: %s", "msWFSDispatch()",
paramsObj->pszRequest);
returnvalue = msWFSException(map, paramsObj->pszVersion);
}
else if (strcasecmp(paramsObj->pszService, "WFS") == 0)
{
/* Invalid WFS request */
msSetError(MS_WFSERR, "Invalid WFS request: %s", "msWFSDispatch()",
paramsObj->pszRequest);
returnvalue = msWFSException(map, paramsObj->pszVersion);
}
/* This was not detected as a WFS request... let MapServer handle it */
msWFSFreeParamsObj(paramsObj);
free(paramsObj);
paramsObj = NULL;
return returnvalue;
#else
msSetError(MS_WFSERR, "WFS server support is not available.",
"msWFSDispatch()");
return(MS_FAILURE);
#endif
}
/************************************************************************/
/* msWFSCreateParamsObj */
/* */
/* Create a parameter object, initialize it. */
/* The caller should free the object using msWFSFreeParamsObj. */
/************************************************************************/
wfsParamsObj *msWFSCreateParamsObj()
{
wfsParamsObj *paramsObj = (wfsParamsObj *)calloc(1, sizeof(wfsParamsObj));
if (paramsObj)
{
paramsObj->nMaxFeatures = -1;
}
return paramsObj;
}
/************************************************************************/
/* msWFSFreeParmsObj */
/* */
/* Free params object. */
/************************************************************************/
void msWFSFreeParamsObj(wfsParamsObj *wfsparams)
{
if (wfsparams)
{
if (wfsparams->pszVersion)
free(wfsparams->pszVersion);
if (wfsparams->pszRequest)
free(wfsparams->pszRequest);
if (wfsparams->pszService)
free(wfsparams->pszService);
if (wfsparams->pszTypeName)
free(wfsparams->pszTypeName);
if (wfsparams->pszFilter)
free(wfsparams->pszFilter);
}
}
/************************************************************************/
/* msWFSParseRequest */
/* */
/* Parse request into the params object. */
/************************************************************************/
void msWFSParseRequest(cgiRequestObj *request, wfsParamsObj *wfsparams)
{
#ifdef USE_WFS_SVR
int i = 0;
if (!request || !wfsparams)
return;
if (request->NumParams > 0)
{
for(i=0; i<request->NumParams; i++)
{
if (request->ParamNames[i] && request->ParamValues[i])
{
if (strcasecmp(request->ParamNames[i], "VERSION") == 0)
wfsparams->pszVersion = strdup(request->ParamValues[i]);
else if (strcasecmp(request->ParamNames[i], "REQUEST") == 0)
wfsparams->pszRequest = strdup(request->ParamValues[i]);
else if (strcasecmp(request->ParamNames[i], "SERVICE") == 0)
wfsparams->pszService = strdup(request->ParamValues[i]);
else if (strcasecmp(request->ParamNames[i], "MAXFEATURES") == 0)
wfsparams->nMaxFeatures = atoi(request->ParamValues[i]);
else if (strcasecmp(request->ParamNames[i], "BBOX") == 0)
wfsparams->pszBbox = strdup(request->ParamValues[i]);
else if (strcasecmp(request->ParamNames[i], "TYPENAME") == 0)
wfsparams->pszTypeName = strdup(request->ParamValues[i]);
else if (strcasecmp(request->ParamNames[i], "FILTER") == 0)
wfsparams->pszFilter = strdup(request->ParamValues[i]);
else if (strcasecmp(request->ParamNames[i], "OUTPUTFORMAT") == 0)
wfsparams->pszOutputFormat = strdup(request->ParamValues[i]);
}
}
/* version is optional is the GetCapabilities. If not */
/* provided, set it. */
if (wfsparams->pszRequest &&
strcasecmp(wfsparams->pszRequest, "GetCapabilities") == 0)
wfsparams->pszVersion = strdup("1.0.0");
}
/* -------------------------------------------------------------------- */
/* Parse the post request. It is assumed to be an XML document. */
/* -------------------------------------------------------------------- */
#ifdef USE_OGR
if (request->postrequest)
{
CPLXMLNode *psRoot, *psQuery, *psFilter, *psTypeName = NULL;
CPLXMLNode *psGetFeature = NULL;
CPLXMLNode *psGetCapabilities = NULL;
CPLXMLNode *psDescribeFeature = NULL;
CPLXMLNode *psOperation = NULL;
char *pszValue, *pszSerializedFilter, *pszTmp = NULL;
int bMultiLayer = 0;
psRoot = CPLParseXMLString(request->postrequest);
if (psRoot)
{
/* need to strip namespaces */
CPLStripXMLNamespace(psRoot, NULL, 1);
for( psOperation = psRoot;
psOperation != NULL;
psOperation = psOperation->psNext )
{
if(psOperation->eType == CXT_Element)
{
if(strcasecmp(psOperation->pszValue,"GetFeature")==0)
{
psGetFeature = psOperation;
break;
}
else if(strcasecmp(psOperation->pszValue,"GetCapabilities")==0)
{
psGetCapabilities = psOperation;
break;
}
else if(strcasecmp(psOperation->pszValue,
"DescribeFeatureType")==0)
{
psDescribeFeature = psOperation;
break;
}
/* these are unsupported requests. Just set the */
/* request value and return; */
else if (strcasecmp(psOperation->pszValue,
"GetFeatureWithLock") == 0)
{
wfsparams->pszRequest = strdup("GetFeatureWithLock");
break;
}
else if (strcasecmp(psOperation->pszValue,
"LockFeature") == 0)
{
wfsparams->pszRequest = strdup("LockFeature");
break;
}
else if (strcasecmp(psOperation->pszValue,
"Transaction") == 0)
{
wfsparams->pszRequest = strdup("Transaction");
break;
}
}
}
/* -------------------------------------------------------------------- */
/* Parse the GetFeature */
/* -------------------------------------------------------------------- */
if (psGetFeature)
{
wfsparams->pszRequest = strdup("GetFeature");
pszValue = (char*)CPLGetXMLValue(psGetFeature, "version",
NULL);
if (pszValue)
wfsparams->pszVersion = strdup(pszValue);
pszValue = (char*)CPLGetXMLValue(psGetFeature, "service",
NULL);
if (pszValue)
wfsparams->pszService = strdup(pszValue);
pszValue = (char*)CPLGetXMLValue(psGetFeature, "maxFeatures",
NULL);
if (pszValue)
wfsparams->nMaxFeatures = atoi(pszValue);
psQuery = CPLGetXMLNode(psGetFeature, "Query");
if (psQuery)
{
/* free typname and filter. There may have been */
/* values if they were passed in the URL */
if (wfsparams->pszTypeName)
free(wfsparams->pszTypeName);
wfsparams->pszTypeName = NULL;
if (wfsparams->pszFilter)
free(wfsparams->pszFilter);
wfsparams->pszFilter = NULL;
if (psQuery->psNext && psQuery->psNext->pszValue &&
strcasecmp(psQuery->psNext->pszValue, "Query") == 0)
bMultiLayer = 1;
/* -------------------------------------------------------------------- */
/* Parse typenames and filters. If there are multiple queries, */
/* typenames will be build with comma between thme */
/* (typename1,typename2,...) and filters will be build with */
/* bracets enclosinf the filters :(filter1)(filter2)... */
/* -------------------------------------------------------------------- */
while (psQuery && psQuery->pszValue &&
strcasecmp(psQuery->pszValue, "Query") == 0)
{
/* parse typenames */
pszValue = (char*)CPLGetXMLValue(psQuery,
"typename", NULL);
if (pszValue)
{
if (wfsparams->pszTypeName == NULL)
wfsparams->pszTypeName = strdup(pszValue);
else
{
pszTmp = strdup(wfsparams->pszTypeName);
wfsparams->pszTypeName =
(char *)realloc(wfsparams->pszTypeName,
sizeof(char)*
(strlen(pszTmp)+
strlen(pszValue)+2));
sprintf(wfsparams->pszTypeName,"%s,%s",pszTmp,
pszValue);
free(pszTmp);
}
}
/* parse filter */
psFilter = CPLGetXMLNode(psQuery, "Filter");
if (psFilter)
{
if (!bMultiLayer)
wfsparams->pszFilter = CPLSerializeXMLTree(psFilter);
else
{
pszSerializedFilter = CPLSerializeXMLTree(psFilter);
pszTmp = (char *)malloc(sizeof(char)*
(strlen(pszSerializedFilter)+3));
sprintf(pszTmp, "(%s)", pszSerializedFilter);
free(pszSerializedFilter);
if (wfsparams->pszFilter == NULL)
wfsparams->pszFilter = strdup(pszTmp);
else
{
pszSerializedFilter = strdup(wfsparams->pszFilter);
wfsparams->pszFilter =
(char *)realloc(wfsparams->pszFilter,
sizeof(char)*
(strlen(pszSerializedFilter)+
strlen(pszTmp)+1));
sprintf(wfsparams->pszFilter, "%s%s",
pszSerializedFilter, pszTmp);
free(pszSerializedFilter);
}
free(pszTmp);
}
}
psQuery = psQuery->psNext;
}/* while psQuery */
}
}/* end of GetFeatures */
/* -------------------------------------------------------------------- */
/* Parse GetCapabilities. */
/* -------------------------------------------------------------------- */
if (psGetCapabilities)
{
wfsparams->pszRequest = strdup("GetCapabilities");
pszValue = (char*)CPLGetXMLValue(psGetCapabilities, "version",
NULL);
/* version is optional is the GetCapabilities. If not */
/* provided, set it. */
if (pszValue)
wfsparams->pszVersion = strdup(pszValue);
else
wfsparams->pszVersion = strdup("1.0.0");
pszValue =
(char*)CPLGetXMLValue(psGetCapabilities, "service",
NULL);
if (pszValue)
wfsparams->pszService = strdup(pszValue);
}/* end of GetCapabilites */
/* -------------------------------------------------------------------- */
/* Parse DescribeFeatureType */
/* -------------------------------------------------------------------- */
if (psDescribeFeature)
{
wfsparams->pszRequest = strdup("DescribeFeatureType");
pszValue = (char*)CPLGetXMLValue(psDescribeFeature, "version",
NULL);
if (pszValue)
wfsparams->pszVersion = strdup(pszValue);
pszValue = (char*)CPLGetXMLValue(psDescribeFeature, "service",
NULL);
if (pszValue)
wfsparams->pszService = strdup(pszValue);
pszValue = (char*)CPLGetXMLValue(psDescribeFeature,
"outputFormat",
NULL);
if (pszValue)
wfsparams->pszOutputFormat = strdup(pszValue);
psTypeName = CPLGetXMLNode(psDescribeFeature, "TypeName");
if (psTypeName)
{
/* free typname and filter. There may have been */
/* values if they were passed in the URL */
if (wfsparams->pszTypeName)
free(wfsparams->pszTypeName);
wfsparams->pszTypeName = NULL;
while (psTypeName && psTypeName->pszValue &&
strcasecmp(psTypeName->pszValue, "TypeName") == 0)
{
if (psTypeName->psChild && psTypeName->psChild->pszValue)
{
pszValue = psTypeName->psChild->pszValue;
if (wfsparams->pszTypeName == NULL)
wfsparams->pszTypeName = strdup(pszValue);
else
{
pszTmp = strdup(wfsparams->pszTypeName);
wfsparams->pszTypeName =
(char *)realloc(wfsparams->pszTypeName,
sizeof(char)*
(strlen(pszTmp)+
strlen(pszValue)+2));
sprintf(wfsparams->pszTypeName,"%s,%s",pszTmp,
pszValue);
free(pszTmp);
}
}
psTypeName = psTypeName->psNext;
}
}
}/* end of DescibeFeatureType */
}
}
#endif
#endif
}
|