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
|
/**********************************************************************
* $Id: mapwmslayer.c,v 1.79 2006/02/09 16:57:14 julien Exp $
*
* Project: MapServer
* Purpose: Implementation of WMS CONNECTIONTYPE - client to WMS servers
* Author: Daniel Morissette, DM Solutions Group (morissette@dmsolutions.ca)
*
**********************************************************************
* Copyright (c) 2001-2004, 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: mapwmslayer.c,v $
* Revision 1.79 2006/02/09 16:57:14 julien
* Support SLD_BODY in Web Map Context
*
* Revision 1.78 2005/10/26 17:51:28 frank
* avoid warnings about unused functions
*
* Revision 1.77 2005/09/26 18:55:20 assefa
* use transparency set at the layer level on wms client layers (Bug 1458).
*
* Revision 1.76 2005/05/13 17:23:34 dan
* First pass at properly handling XML exceptions from CONNECTIONTYPE WMS
* layers. Still needs some work. (bug 1246)
*
* Revision 1.75 2005/02/18 03:06:48 dan
* Turned all C++ (//) comments into C comments (bug 1238)
*
* Revision 1.74 2005/02/14 04:33:32 sdlime
* Changed %.17g to %.15g for WMS/WFS server code.
*
* Revision 1.73 2004/11/18 21:18:36 assefa
* Make sure that msDrawWMSLayerLow calls msDrawLayer instead of msDrawRasterLayerLow
* directly ensuring that some logic (transparency) that are in msDrawLayer are
* applied (Bug 541).
*
* Revision 1.72 2004/11/16 21:57:49 dan
* Final pass at updating WMS/WFS client/server interfaces to lookup "ows_*"
* metadata in addition to default "wms_*"/"wfs_*" metadata (bug 568)
*
* Revision 1.71 2004/11/12 17:05:01 assefa
* Use %.17g instrad of %f when output bbox values (Bug 678)
*
* Revision 1.70 2004/11/11 22:08:17 frank
* fix off-by-half-pixel error in wms worldfile - bug 1050
*
* Revision 1.69 2004/08/03 23:43:31 dan
* Cleanup OWS version tests in the code (bug 799)
*
* Revision 1.68 2004/07/28 17:52:16 dan
* Pass FEATURE_COUNT instead of FEATURECOUNT in GetFeatureInfo (bug 790)
*
* Revision 1.67 2004/07/13 20:39:37 dan
* Made msTmpFile() more robust using msBuildPath() to return absolute paths (bug 771)
*
* Revision 1.66 2004/06/22 20:55:21 sean
* Towards resolving issue 737 changed hashTableObj to a structure which contains a hashObj **items. Changed all hash table access functions to operate on the target table by reference. msFreeHashTable should not be used on the hashTableObj type members of mapserver structures, use msFreeHashItems instead.
*
* Revision 1.65 2004/04/17 06:33:24 dan
* Increased precision of values written to .wld file for WMS layers (bug 446)
*
* Revision 1.64 2004/04/05 21:57:06 assefa
* Fix bug in msWMSGetFeatureInfoURL not passing a wmsparams structure to the
* msBuildWMSLayerURL.
*
* Revision 1.63 2004/03/30 15:44:20 dan
* Fixed leak of pszURL when merging multiple WMS layers
*
* Revision 1.62 2004/03/30 14:55:44 dan
* Added wms_force_separate_request metadata to prevent a WMS layer from
* being included in multi-layer request.
*
* Revision 1.61 2004/03/30 00:12:28 dan
* Added ability to combine multiple WMS connections to the same server
* into a single request when the layers are adjacent and compatible.(bug 116)
*
* Revision 1.60 2004/03/25 21:59:23 sean
* Undoing accidental changes to mapwmslayer.c
*
* Revision 1.58 2004/02/13 15:28:56 assefa
* Use wms_sld_url to send sld request.
*
* Revision 1.57 2004/02/11 20:45:38 assefa
* When generating the SLD, generate only for the layer and not the whole map.
*
* Revision 1.56 2004/02/02 20:47:39 assefa
* Use of wms_sld_body url.
* Make sure that the layer type is preserved after a msDrawWMSLayerLow call.
*
* Revision 1.55 2004/01/08 20:44:21 assefa
* Add #ifdef for windows to be able to use snprintf.
*
* Revision 1.54 2003/11/03 15:45:29 assefa
* Do not delete the temporary file comming from the server if we are in debug
* mode. (DEBUG ON on the layer)
*
* ...
*
* Revision 1.1 2001/08/14 21:26:54 dan
* Initial revision - only loads and draws WMS CONNECTION URL for now.
*
**********************************************************************/
#include "map.h"
#include "maperror.h"
#include "mapogcsld.h"
#include <time.h>
#include <ctype.h>
#if defined(_WIN32) && !defined(__CYGWIN__)
#include <process.h>
#include <stdio.h>
#endif
/**********************************************************************
* msInitWmsParamsObj()
*
**********************************************************************/
int msInitWmsParamsObj(wmsParamsObj *wmsparams)
{
wmsparams->onlineresource = NULL;
wmsparams->params = msCreateHashTable();
wmsparams->numparams=0;
return MS_SUCCESS;
}
/**********************************************************************
* msFreeWmsParamsObj()
*
* Frees the contents of the object, but not the object itself.
**********************************************************************/
void msFreeWmsParamsObj(wmsParamsObj *wmsparams)
{
msFree(wmsparams->onlineresource);
wmsparams->onlineresource = NULL;
msFreeHashTable(wmsparams->params);
wmsparams->params = NULL;
wmsparams->numparams=0;
}
/**********************************************************************
* msSetWMSParamString()
*
**********************************************************************/
#ifdef USE_WMS_LYR
static int msSetWMSParamString(wmsParamsObj *psWMSParams,
const char *name, const char * value,
int urlencode)
{
if (urlencode)
{
char *pszTmp;
pszTmp = msEncodeUrl(value);
msInsertHashTable(psWMSParams->params, name, pszTmp);
msFree(pszTmp);
}
else
{
msInsertHashTable(psWMSParams->params, name, value);
}
psWMSParams->numparams++;
return MS_SUCCESS;
}
#endif /* def USE_WMS_LYR */
/**********************************************************************
* msSetWMSParamInt()
*
**********************************************************************/
#ifdef USE_WMS_LYR
static int msSetWMSParamInt(wmsParamsObj *wmsparams,
const char *name, int value)
{
char szBuf[100];
snprintf(szBuf, 100, "%d", value);
msInsertHashTable(wmsparams->params, name, szBuf);
wmsparams->numparams++;
return MS_SUCCESS;
}
#endif /* def USE_WMS_LYR */
/**********************************************************************
* msBuildWMSParamsUrl()
*
**********************************************************************/
static char *msBuildURLFromWMSParams(wmsParamsObj *wmsparams)
{
const char *key, *value;
int nLen;
char *pszURL;
/* Compute size required for URL buffer
*/
nLen = strlen(wmsparams->onlineresource) + 3;
key = msFirstKeyFromHashTable(wmsparams->params);
while (key != NULL)
{
value = msLookupHashTable(wmsparams->params, key);
nLen += strlen(key) + strlen(value) + 2;
key = msNextKeyFromHashTable(wmsparams->params, key);
}
pszURL = (char*)malloc((nLen+1)*sizeof(char*));
/* Start with the onlineresource value and append trailing '?' or '&'
* if missing.
*/
strcpy(pszURL, wmsparams->onlineresource);
if (strchr(pszURL, '?') == NULL)
strcat(pszURL, "?");
else
{
char *c;
c = pszURL+strlen(pszURL)-1;
if (*c != '?' && *c != '&')
strcpy(c+1, "&");
}
/* Now add all the parameters
*/
nLen = strlen(pszURL);
key = msFirstKeyFromHashTable(wmsparams->params);
while (key != NULL)
{
value = msLookupHashTable(wmsparams->params, key);
sprintf(pszURL+nLen, "%s=%s&", key, value);
nLen += strlen(key) + strlen(value) + 2;
key = msNextKeyFromHashTable(wmsparams->params, key);
}
/* Get rid of trailing '&'*/
pszURL[nLen-1] = '\0';
return pszURL;
}
#ifdef USE_WMS_LYR
/**********************************************************************
* msBuildWMSLayerURLBase()
*
* Build the base of a GetMap or GetFeatureInfo URL using metadata.
* The parameters to set are:
* VERSION
* LAYERS
* FORMAT
* TRANSPARENT
* STYLES
* QUERY_LAYERS (for queriable layers only)
*
* Returns a reference to a newly allocated string that should be freed
* by the caller.
**********************************************************************/
static int msBuildWMSLayerURLBase(mapObj *map, layerObj *lp,
wmsParamsObj *psWMSParams)
{
const char *pszOnlineResource, *pszVersion, *pszName, *pszFormat;
const char *pszFormatList, *pszStyle, *pszStyleList, *pszTime;
const char *pszSLD=NULL, *pszStyleSLDBody=NULL, *pszVersionKeyword=NULL;
const char *pszSLDBody=NULL, *pszSLDURL = NULL;
char *pszSLDGenerated = NULL;
/* If lp->connection is not set then use wms_onlineresource metadata */
pszOnlineResource = lp->connection;
if (pszOnlineResource == NULL)
pszOnlineResource = msOWSLookupMetadata(&(lp->metadata),
"MO", "onlineresource");
pszVersion = msOWSLookupMetadata(&(lp->metadata), "MO", "server_version");
pszName = msOWSLookupMetadata(&(lp->metadata), "MO", "name");
pszFormat = msOWSLookupMetadata(&(lp->metadata), "MO", "format");
pszFormatList = msOWSLookupMetadata(&(lp->metadata), "MO", "formatlist");
pszStyle = msOWSLookupMetadata(&(lp->metadata), "MO", "style");
pszStyleList = msOWSLookupMetadata(&(lp->metadata), "MO", "stylelist");
pszTime = msOWSLookupMetadata(&(lp->metadata), "MO", "time");
pszSLDBody = msOWSLookupMetadata(&(lp->metadata), "MO", "sld_body");
pszSLDURL = msOWSLookupMetadata(&(lp->metadata), "MO", "sld_url");
if (pszOnlineResource==NULL || pszVersion==NULL || pszName==NULL)
{
msSetError(MS_WMSCONNERR,
"One of wms_onlineresource, wms_server_version, wms_name "
"metadata is missing in layer %s. "
"Please either provide a valid CONNECTION URL, or provide "
"those values in the layer's metadata.\n",
"msBuildWMSLayerURLBase()", lp->name);
return MS_FAILURE;
}
psWMSParams->onlineresource = strdup(pszOnlineResource);
if (strncmp(pszVersion, "1.0.7", 5) < 0)
pszVersionKeyword = "WMTVER";
else
pszVersionKeyword = "VERSION";
msSetWMSParamString(psWMSParams, pszVersionKeyword, pszVersion, MS_FALSE);
msSetWMSParamString(psWMSParams, "SERVICE", "WMS", MS_FALSE);
msSetWMSParamString(psWMSParams, "LAYERS", pszName, MS_TRUE);
msSetWMSParamString(psWMSParams, "TRANSPARENT", "TRUE",MS_FALSE);
if (pszFormat==NULL && pszFormatList==NULL)
{
msSetError(MS_WMSCONNERR,
"At least wms_format or wms_formatlist is required for "
"layer %s. "
"Please either provide a valid CONNECTION URL, or provide "
"those values in the layer's metadata.\n",
"msBuildWMSLayerURLBase()", lp->name);
return MS_FAILURE;
}
if (pszFormat != NULL)
{
msSetWMSParamString(psWMSParams, "FORMAT", pszFormat, MS_TRUE);
}
else
{
/* Look for the first format in list that matches */
char **papszTok;
int i, n;
papszTok = split(pszFormatList, ',', &n);
for(i=0; pszFormat==NULL && i<n; i++)
{
if (0
#ifdef USE_GD_GIF
|| strcasecmp(papszTok[i], "GIF")
|| strcasecmp(papszTok[i], "image/gif")
#endif
#ifdef USE_GD_PNG
|| strcasecmp(papszTok[i], "PNG")
|| strcasecmp(papszTok[i], "image/png")
#endif
#ifdef USE_GD_JPEG
|| strcasecmp(papszTok[i], "JPEG")
|| strcasecmp(papszTok[i], "image/jpeg")
#endif
#ifdef USE_GD_WBMP
|| strcasecmp(papszTok[i], "WBMP")
|| strcasecmp(papszTok[i], "image/wbmp")
#endif
)
{
pszFormat = papszTok[i];
}
}
if (pszFormat)
{
msSetWMSParamString(psWMSParams, "FORMAT", pszFormat, MS_TRUE);
msFreeCharArray(papszTok, n);
}
else
{
msSetError(MS_WMSCONNERR,
"Could not find a format that matches supported input "
"formats in wms_formatlist metdata in layer %s. "
"Please either provide a valid CONNECTION URL, or "
"provide the required layer metadata.\n",
"msBuildWMSLayerURLBase()", lp->name);
msFreeCharArray(papszTok, n);
return MS_FAILURE;
}
}
if (pszStyle==NULL)
{
/* When no style is selected, use "" which is a valid default. */
pszStyle = "";
}
else
{
/* Was a wms_style_..._sld URL provided? */
char szBuf[100];
sprintf(szBuf, "style_%.80s_sld", pszStyle);
pszSLD = msOWSLookupMetadata(&(lp->metadata), "MO", szBuf);
sprintf(szBuf, "style_%.80s_sld_body", pszStyle);
pszStyleSLDBody = msOWSLookupMetadata(&(lp->metadata), "MO", szBuf);
if (pszSLD || pszStyleSLDBody)
{
/* SLD URL is set. If this defn. came from a map context then */
/* the style name may just be an internal name: "Style{%d}" if */
/* that's the case then we should not pass this name via the URL */
if (strncmp(pszStyle, "Style{", 6) == 0)
pszStyle = "";
}
}
if (strlen(pszStyle) > 0)
{
/* STYLES is set */
msSetWMSParamString(psWMSParams, "STYLES", pszStyle, MS_TRUE);
}
if (pszSLD != NULL)
{
/* Only SLD is set */
msSetWMSParamString(psWMSParams, "SLD", pszSLD, MS_TRUE);
}
else if (pszStyleSLDBody != NULL)
{
/* SLDBODY are set */
msSetWMSParamString(psWMSParams, "SLD_BODY", pszStyleSLDBody, MS_TRUE);
}
if (msIsLayerQueryable(lp))
{
msSetWMSParamString(psWMSParams, "QUERY_LAYERS", pszName, MS_TRUE);
}
if (pszTime && strlen(pszTime) > 0)
{
msSetWMSParamString(psWMSParams, "TIME", pszTime, MS_TRUE);
}
/* if the metadata wms_sld_body is set to AUTO, we generate
* the sld based on classes found in the map file and send
* it in the URL. If diffrent from AUTO, we are assuming that
* it is a valid sld.
*/
if (pszSLDBody)
{
if (strcasecmp(pszSLDBody, "AUTO") == 0)
{
pszSLDGenerated = msSLDGenerateSLD(map, lp->index);
if (pszSLDGenerated)
{
msSetWMSParamString(psWMSParams, "SLD_BODY",
pszSLDGenerated, MS_TRUE);
free(pszSLDGenerated);
}
}
else
{
msSetWMSParamString(psWMSParams, "SLD_BODY", pszSLDBody, MS_TRUE);
}
}
if (pszSLDURL)
{
msSetWMSParamString(psWMSParams, "SLD", pszSLDURL, MS_TRUE);
}
return MS_SUCCESS;
}
#endif /* USE_WMS_LYR */
/**********************************************************************
* msBuildWMSLayerURL()
*
* Build a GetMap or GetFeatureInfo URL.
*
* Returns a reference to a newly allocated string that should be freed
* by the caller.
**********************************************************************/
#define WMS_GETMAP 1
#define WMS_GETFEATUREINFO 2
int msBuildWMSLayerURL(mapObj *map, layerObj *lp, int nRequestType,
int nClickX, int nClickY, int nFeatureCount,
const char *pszInfoFormat, rectObj *bbox_ret,
wmsParamsObj *psWMSParams)
{
#ifdef USE_WMS_LYR
char *pszEPSG = NULL;
const char *pszVersion, *pszTmp, *pszRequestParam, *pszExceptionsParam;
rectObj bbox;
int nVersion;
if (lp->connectiontype != MS_WMS)
{
msSetError(MS_WMSCONNERR, "Call supported only for CONNECTIONTYPE WMS",
"msBuildWMSLayerURL()");
return MS_FAILURE;
}
/* ------------------------------------------------------------------
* Find out request version
* ------------------------------------------------------------------ */
if (lp->connection == NULL ||
((pszVersion = strstr(lp->connection, "VERSION=")) == NULL &&
(pszVersion = strstr(lp->connection, "version=")) == NULL &&
(pszVersion = strstr(lp->connection, "WMTVER=")) == NULL &&
(pszVersion = strstr(lp->connection, "wmtver=")) == NULL ) )
{
/* CONNECTION missing or seems incomplete... try to build from metadata */
if (msBuildWMSLayerURLBase(map, lp, psWMSParams) != MS_SUCCESS)
return MS_FAILURE; /* An error already produced. */
/* If we received MS_SUCCESS then version must have been set */
pszVersion = msLookupHashTable(psWMSParams->params, "VERSION");
if (pszVersion ==NULL)
pszVersion = msLookupHashTable(psWMSParams->params, "WMTVER");
}
else
{
/* CONNECTION string seems complete, start with that. */
psWMSParams->onlineresource = strdup(lp->connection);
pszVersion = strchr(pszVersion, '=')+1;
}
nVersion = msOWSParseVersionString(pszVersion);
switch (nVersion)
{
case OWS_1_0_8:
nVersion = OWS_1_1_0; /* 1.0.8 == 1.1.0 */
break;
case OWS_1_0_0:
case OWS_1_0_7:
case OWS_1_1_0:
case OWS_1_1_1:
/* All is good, this is a supported version. */
break;
default:
/* Not a supported version */
msSetError(MS_WMSCONNERR, "MapServer supports only WMS 1.0.0 to 1.1.1 (please verify the VERSION parameter in the connection string).", "msBuildWMSLayerURL()");
return MS_FAILURE;
}
/* ------------------------------------------------------------------
* For GetFeatureInfo requests, make sure QUERY_LAYERS is included
* ------------------------------------------------------------------ */
if (nRequestType == WMS_GETFEATUREINFO &&
strstr(psWMSParams->onlineresource, "QUERY_LAYERS=") == NULL &&
strstr(psWMSParams->onlineresource, "query_layers=") == NULL &&
msLookupHashTable(psWMSParams->params, "QUERY_LAYERS") == NULL)
{
msSetError(MS_WMSCONNERR, "WMS Connection String must contain the QUERY_LAYERS parameter to support GetFeatureInfo requests (with name in uppercase).", "msBuildWMSLayerURL()");
return MS_FAILURE;
}
/* ------------------------------------------------------------------
* Figure the SRS we'll use for the request.
* - Fetch the map SRS (if it's EPSG)
* - Check if map SRS is listed in layer wms_srs metadata
* - If map SRS is valid for this layer then use it
* - Otherwise request layer in its default SRS and we'll reproject later
* ------------------------------------------------------------------ */
if ((pszEPSG = (char*)msOWSGetEPSGProj(&(map->projection),
NULL, NULL, MS_TRUE)) != NULL &&
(pszEPSG = strdup(pszEPSG)) != NULL &&
(strncasecmp(pszEPSG, "EPSG:", 5) == 0 ||
strncasecmp(pszEPSG, "AUTO:", 5) == 0) )
{
const char *pszLyrEPSG, *pszFound;
int nLen;
char *pszPtr = NULL;
/* If it's an AUTO projection then keep only id and strip off */
/* the parameters for now (we'll restore them at the end) */
if (strncasecmp(pszEPSG, "AUTO:", 5) == 0)
{
if ((pszPtr = strchr(pszEPSG, ',')))
*pszPtr = '\0';
}
nLen = strlen(pszEPSG);
pszLyrEPSG = msOWSGetEPSGProj(&(lp->projection), &(lp->metadata),
"MO", MS_FALSE);
if (pszLyrEPSG == NULL ||
(pszFound = strstr(pszLyrEPSG, pszEPSG)) == NULL ||
! ((*(pszFound+nLen) == '\0') || isspace(*(pszFound+nLen))) )
{
/* Not found in Layer's list of SRS (including projection object) */
free(pszEPSG);
pszEPSG = NULL;
}
if (pszEPSG && pszPtr)
*pszPtr = ','; /* Restore full AUTO:... definition */
}
if (pszEPSG == NULL &&
((pszEPSG = (char*)msOWSGetEPSGProj(&(lp->projection), &(lp->metadata),
"MO", MS_TRUE)) == NULL ||
(pszEPSG = strdup(pszEPSG)) == NULL ||
(strncasecmp(pszEPSG, "EPSG:", 5) != 0 &&
strncasecmp(pszEPSG, "AUTO:", 5) != 0 ) ) )
{
msSetError(MS_WMSCONNERR, "Layer must have an EPSG or AUTO projection code (in its PROJECTION object or wms_srs metadata)", "msBuildWMSLayerURL()");
if (pszEPSG) free(pszEPSG);
return MS_FAILURE;
}
/* ------------------------------------------------------------------
* For an AUTO projection, set the Units,lon0,lat0 if not already set
* ------------------------------------------------------------------ */
if (strncasecmp(pszEPSG, "AUTO:", 5) == 0 &&
strchr(pszEPSG, ',') == NULL)
{
pointObj oPoint;
char *pszNewEPSG;
/* Use center of map view for lon0,lat0 */
oPoint.x = (map->extent.minx + map->extent.maxx)/2.0;
oPoint.y = (map->extent.miny + map->extent.maxy)/2.0;
msProjectPoint(&(map->projection), &(map->latlon), &oPoint);
pszNewEPSG = (char*)malloc(101*sizeof(char));
snprintf(pszNewEPSG, 100, "%s,9001,%.16g,%.16g",
pszEPSG, oPoint.x, oPoint.y);
pszNewEPSG[100]='\0';
free(pszEPSG);
pszEPSG=pszNewEPSG;
}
/* ------------------------------------------------------------------
* Set layer SRS and reproject map extents to the layer's SRS
* ------------------------------------------------------------------ */
/* No need to set lp->proj if it's already set to the right EPSG code */
if ((pszTmp = msOWSGetEPSGProj(&(lp->projection), NULL, "MO", MS_TRUE)) == NULL ||
strcasecmp(pszEPSG, pszTmp) != 0)
{
if (strncasecmp(pszEPSG, "EPSG:", 5) == 0)
{
char szProj[20];
sprintf(szProj, "init=epsg:%s", pszEPSG+5);
if (msLoadProjectionString(&(lp->projection), szProj) != 0)
return MS_FAILURE;
}
else
{
if (msLoadProjectionString(&(lp->projection), pszEPSG) != 0)
return MS_FAILURE;
}
}
bbox = map->extent;
if (msProjectionsDiffer(&(map->projection), &(lp->projection)))
{
msProjectRect(&(map->projection), &(lp->projection), &bbox);
}
if (bbox_ret != NULL)
*bbox_ret = bbox;
/* ------------------------------------------------------------------
* Build the request URL.
* At this point we set only the following parameters for GetMap:
* REQUEST
* SRS
* BBOX
*
* And for GetFeatureInfo:
* X
* Y
* INFO_FORMAT
* FEATURE_COUNT (only if nFeatureCount > 0)
*
* The connection string should contain all other required params,
* including:
* VERSION
* LAYERS
* FORMAT
* TRANSPARENT
* STYLES
* QUERY_LAYERS (for queriable layers only)
* ------------------------------------------------------------------ */
if (nRequestType == WMS_GETFEATUREINFO)
{
char szBuf[100] = "";
if (nVersion >= OWS_1_0_7)
pszRequestParam = "GetFeatureInfo";
else
pszRequestParam = "feature_info";
if (nVersion >= OWS_1_1_0)
pszExceptionsParam = "application/vnd.ogc.se_xml";
else if (nVersion > OWS_1_1_0) /* 1.0.1 to 1.0.7 */
pszExceptionsParam = "SE_XML";
else
pszExceptionsParam = "WMS_XML";
msSetWMSParamString(psWMSParams, "REQUEST", pszRequestParam, MS_FALSE);
msSetWMSParamInt( psWMSParams, "WIDTH", map->width);
msSetWMSParamInt( psWMSParams, "HEIGHT", map->height);
msSetWMSParamString(psWMSParams, "SRS", pszEPSG, MS_FALSE);
snprintf(szBuf, 100, "%.15g,%.15g,%.15g,%.15g",
bbox.minx, bbox.miny, bbox.maxx, bbox.maxy);
msSetWMSParamString(psWMSParams, "BBOX", szBuf, MS_TRUE);
msSetWMSParamInt( psWMSParams, "X", nClickX);
msSetWMSParamInt( psWMSParams, "Y", nClickY);
msSetWMSParamString(psWMSParams, "EXCEPTIONS", pszExceptionsParam, MS_FALSE);
msSetWMSParamString(psWMSParams, "INFO_FORMAT",pszInfoFormat, MS_TRUE);
/* If FEATURE_COUNT <= 0 then don't pass this parameter */
/* The spec states that FEATURE_COUNT must be greater than zero */
/* and if not passed then the behavior is up to the server */
if (nFeatureCount > 0)
{
msSetWMSParamInt(psWMSParams, "FEATURE_COUNT", nFeatureCount);
}
}
else /* if (nRequestType == WMS_GETMAP) */
{
char szBuf[100] = "";
if (nVersion >= OWS_1_0_7)
pszRequestParam = "GetMap";
else
pszRequestParam = "map";
pszExceptionsParam = msOWSLookupMetadata(&(lp->metadata),
"MO", "exceptions_format");
if (pszExceptionsParam == NULL)
{
if (nVersion >= OWS_1_1_0)
pszExceptionsParam = "application/vnd.ogc.se_inimage";
else
pszExceptionsParam = "INIMAGE";
}
msSetWMSParamString(psWMSParams, "REQUEST", pszRequestParam, MS_FALSE);
msSetWMSParamInt( psWMSParams, "WIDTH", map->width);
msSetWMSParamInt( psWMSParams, "HEIGHT", map->height);
msSetWMSParamString(psWMSParams, "SRS", pszEPSG, MS_FALSE);
snprintf(szBuf, 100, "%.15g,%.15g,%.15g,%.15g",
bbox.minx, bbox.miny, bbox.maxx, bbox.maxy);
msSetWMSParamString(psWMSParams, "BBOX", szBuf, MS_TRUE);
msSetWMSParamString(psWMSParams, "EXCEPTIONS", pszExceptionsParam, MS_FALSE);
}
free(pszEPSG);
return MS_SUCCESS;
#else
/* ------------------------------------------------------------------
* WMS CONNECTION Support not included...
* ------------------------------------------------------------------ */
msSetError(MS_WMSCONNERR, "WMS CLIENT CONNECTION support is not available.",
"msBuildWMSLayerURL()");
return MS_FAILURE;
#endif /* USE_WMS_LYR */
}
/**********************************************************************
* msWMSGetFeatureInfoURL()
*
* Build a GetFeatureInfo URL for this layer.
*
* Returns a reference to a newly allocated string that should be freed
* by the caller.
**********************************************************************/
char *msWMSGetFeatureInfoURL(mapObj *map, layerObj *lp,
int nClickX, int nClickY, int nFeatureCount,
const char *pszInfoFormat)
{
wmsParamsObj sThisWMSParams;
char *pszURL;
msInitWmsParamsObj(&sThisWMSParams);
if (msBuildWMSLayerURL(map, lp, WMS_GETFEATUREINFO,
nClickX, nClickY, nFeatureCount,
pszInfoFormat, NULL, &sThisWMSParams)!= MS_SUCCESS)
{
return NULL;
}
pszURL = msBuildURLFromWMSParams(&sThisWMSParams);
msFreeWmsParamsObj(&sThisWMSParams);
return pszURL;
}
/**********************************************************************
* msPrepareWMSLayerRequest()
*
**********************************************************************/
int msPrepareWMSLayerRequest(int nLayerId, mapObj *map, layerObj *lp,
enum MS_CONNECTION_TYPE lastconnectiontype,
wmsParamsObj *psLastWMSParams,
httpRequestObj *pasReqInfo, int *numRequests)
{
#ifdef USE_WMS_LYR
char *pszURL = NULL;
const char *pszTmp;
rectObj bbox;
int nTimeout, bOkToMerge, bForceSeparateRequest;
wmsParamsObj sThisWMSParams;
if (lp->connectiontype != MS_WMS)
return MS_FAILURE;
msInitWmsParamsObj(&sThisWMSParams);
/* ------------------------------------------------------------------
* Build the request URL, this will also set layer projection and
* compute BBOX in that projection.
* ------------------------------------------------------------------ */
if ( msBuildWMSLayerURL(map, lp, WMS_GETMAP,
0, 0, 0, NULL, &bbox,
&sThisWMSParams) != MS_SUCCESS)
{
/* an error was already reported. */
msFreeWmsParamsObj(&sThisWMSParams);
return MS_FAILURE;
}
/* ------------------------------------------------------------------
* Check if layer overlaps current view window (using wms_latlonboundingbox)
* ------------------------------------------------------------------ */
if ((pszTmp = msOWSLookupMetadata(&(lp->metadata),
"MO", "latlonboundingbox")) != NULL)
{
char **tokens;
int n;
rectObj ext;
tokens = split(pszTmp, ' ', &n);
if (tokens==NULL || n != 4) {
msSetError(MS_WMSCONNERR, "Wrong number of arguments for 'wms_latlonboundingbox' metadata.",
"msDrawWMSLayer()");
msFreeWmsParamsObj(&sThisWMSParams);
return MS_FAILURE;
}
ext.minx = atof(tokens[0]);
ext.miny = atof(tokens[1]);
ext.maxx = atof(tokens[2]);
ext.maxy = atof(tokens[3]);
msFreeCharArray(tokens, n);
/* Reproject latlonboundingbox to the selected SRS for the layer and */
/* check if it overlaps the bbox that we calculated for the request */
msProjectRect(&(map->latlon), &(lp->projection), &ext);
if (!msRectOverlap(&bbox, &ext))
{
/* No overlap... nothing to do */
msFreeWmsParamsObj(&sThisWMSParams);
return MS_SUCCESS; /* No overlap. */
}
}
/* ------------------------------------------------------------------
* check to see if a the metadata wms_connectiontimeout is set. If it is
* the case we will use it, else we use the default which is 30 seconds.
* First check the metadata in the layer object and then in the map object.
* ------------------------------------------------------------------ */
nTimeout = 30; /* Default is 30 seconds */
if ((pszTmp = msOWSLookupMetadata(&(lp->metadata),
"MO", "connectiontimeout")) != NULL)
{
nTimeout = atoi(pszTmp);
}
else if ((pszTmp = msOWSLookupMetadata(&(map->web.metadata),
"MO", "connectiontimeout")) != NULL)
{
nTimeout = atoi(pszTmp);
}
/* ------------------------------------------------------------------
* Check if layer can be merged with previous WMS layer requests
* Metadata wms_force_separate_request can be set to 1 to prevent this
* this layer from being combined with any other layer.
* ------------------------------------------------------------------ */
bForceSeparateRequest = MS_FALSE;
if ((pszTmp = msOWSLookupMetadata(&(lp->metadata),
"MO", "force_separate_request")) != NULL)
{
bForceSeparateRequest = atoi(pszTmp);
}
bOkToMerge = MS_FALSE;
if (!bForceSeparateRequest &&
lastconnectiontype == MS_WMS &&
psLastWMSParams != NULL &&
sThisWMSParams.numparams == psLastWMSParams->numparams &&
strcmp(sThisWMSParams.onlineresource,
psLastWMSParams->onlineresource) == 0)
{
const char *key, *value1, *value2;
bOkToMerge = MS_TRUE;
key = msFirstKeyFromHashTable(sThisWMSParams.params);
while (key != NULL && bOkToMerge == MS_TRUE)
{
/* Skip parameters whose values can be different */
if (!(strcmp(key, "LAYERS") == 0 ||
strcmp(key, "QUERY_LAYERS") == 0 ||
strcmp(key, "STYLES") == 0) )
{
value1 = msLookupHashTable(psLastWMSParams->params, key);
value2 = msLookupHashTable(sThisWMSParams.params, key);
if (value1==NULL || value2==NULL ||
strcmp(value1, value2) != 0)
{
bOkToMerge = MS_FALSE;
break;
}
}
key = msNextKeyFromHashTable(sThisWMSParams.params, key);
}
}
if (bOkToMerge)
{
/* Merge both requests into sThisWMSParams
*/
const char *value1, *value2;
char *keys[] = {"LAYERS", "QUERY_LAYERS", "STYLES"};
int i;
for(i=0; i<3; i++)
{
value1 = msLookupHashTable(psLastWMSParams->params, keys[i]);
value2 = msLookupHashTable(sThisWMSParams.params, keys[i]);
if (value1 && value2)
{
char *pszBuf;
int nLen;
nLen = strlen(value1) + strlen(value2) +2;
pszBuf = malloc(nLen * sizeof(char));
if (pszBuf == NULL)
{
msSetError(MS_MEMERR, NULL, "msPrepareWMSLayerRequest()");
return MS_FAILURE;
}
sprintf(pszBuf, "%s,%s", value1, value2);
msSetWMSParamString(&sThisWMSParams, keys[i], pszBuf,MS_FALSE);
/* This key existed already, we don't want it counted twice */
sThisWMSParams.numparams--;
msFree(pszBuf);
}
}
}
/* ------------------------------------------------------------------
* Build new request URL
* ------------------------------------------------------------------ */
pszURL = msBuildURLFromWMSParams(&sThisWMSParams);
if (bOkToMerge && (*numRequests)>0)
{
/* ------------------------------------------------------------------
* Update the last request in the array: (*numRequests)-1
* ------------------------------------------------------------------ */
msFree(pasReqInfo[(*numRequests)-1].pszGetUrl);
pasReqInfo[(*numRequests)-1].pszGetUrl = pszURL;
pszURL = NULL;
pasReqInfo[(*numRequests)-1].debug |= lp->debug;
if (nTimeout > pasReqInfo[(*numRequests)-1].nTimeout)
pasReqInfo[(*numRequests)-1].nTimeout = nTimeout;
}
else
{
/* ------------------------------------------------------------------
* Add a request to the array (already preallocated)
* ------------------------------------------------------------------ */
pasReqInfo[(*numRequests)].nLayerId = nLayerId;
pasReqInfo[(*numRequests)].pszGetUrl = pszURL;
pszURL = NULL;
/* We'll store the remote server's response to a tmp file. */
if (map->web.imagepath == NULL || strlen(map->web.imagepath) == 0)
{
msSetError(MS_WMSERR,
"WEB.IMAGEPATH must be set to use WMS client connections.",
"msPrepareWMSLayerRequest()");
return MS_FAILURE;
}
pasReqInfo[(*numRequests)].pszOutputFile =msTmpFile(map->mappath,
map->web.imagepath,
"img.tmp");
pasReqInfo[(*numRequests)].nStatus = 0;
pasReqInfo[(*numRequests)].nTimeout = nTimeout;
pasReqInfo[(*numRequests)].bbox = bbox;
pasReqInfo[(*numRequests)].debug = lp->debug;
(*numRequests)++;
}
/* ------------------------------------------------------------------
* Replace contents of psLastWMSParams with sThisWMSParams
* unless bForceSeparateRequest is set in which case we make it empty
* ------------------------------------------------------------------ */
if (psLastWMSParams)
{
msFreeWmsParamsObj(psLastWMSParams);
if (!bForceSeparateRequest)
*psLastWMSParams = sThisWMSParams;
else
msInitWmsParamsObj(psLastWMSParams);
}
else
{
/* Can't copy it, so we just free it */
msFreeWmsParamsObj(&sThisWMSParams);
}
return MS_SUCCESS;
#else
/* ------------------------------------------------------------------
* WMS CONNECTION Support not included...
* ------------------------------------------------------------------ */
msSetError(MS_WMSCONNERR, "WMS CLIENT CONNECTION support is not available.",
"msDrawWMSLayer()");
return(MS_FAILURE);
#endif /* USE_WMS_LYR */
}
/**********************************************************************
* msDrawWMSLayerLow()
*
**********************************************************************/
int msDrawWMSLayerLow(int nLayerId, httpRequestObj *pasReqInfo,
int numRequests, mapObj *map, layerObj *lp, imageObj *img)
{
#ifdef USE_WMS_LYR
int status = MS_SUCCESS;
int iReq = -1;
char szPath[MS_MAXPATHLEN];
int currenttype;
int currentconnectiontype;
int numclasses;
/* ------------------------------------------------------------------
* Find the request info for this layer in the array, based on nLayerId
* ------------------------------------------------------------------ */
for(iReq=0; iReq<numRequests; iReq++)
{
if (pasReqInfo[iReq].nLayerId == nLayerId)
break;
}
if (iReq == numRequests)
{
/* This layer was skipped or was included in a multi-layers
* request ... nothing to do.
*/
return MS_SUCCESS;
}
if ( !MS_HTTP_SUCCESS( pasReqInfo[iReq].nStatus ) )
{
/* ====================================================================
Failed downloading layer... we log an error but we still return
SUCCESS here so that the layer is only skipped intead of aborting
the whole draw map.
==================================================================== */
msSetError(MS_WMSERR,
"WMS GetMap request failed for layer '%s' (Status %d: %s).",
"msDrawWMSLayerLow()",
(lp->name?lp->name:"(null)"),
pasReqInfo[iReq].nStatus, pasReqInfo[iReq].pszErrBuf );
return MS_SUCCESS;
}
/* ------------------------------------------------------------------
* Check the content-type of the response to see if we got an exception,
* if yes then try to parse it and pass the info to msSetError().
* We log an error but we still return SUCCESS here so that the layer
* is only skipped intead of aborting the whole draw map.
* ------------------------------------------------------------------ */
if (pasReqInfo[iReq].pszContentType &&
(strcmp(pasReqInfo[iReq].pszContentType, "text/xml") == 0 ||
strcmp(pasReqInfo[iReq].pszContentType, "application/vnd.ogc.se_xml") == 0))
{
FILE *fp;
char szBuf[MS_BUFFER_LENGTH];
fp = fopen(pasReqInfo[iReq].pszOutputFile, "r");
if (fp)
{
/* TODO: For now we'll only read the first chunk and return it
* via msSetError()... we should really try to parse the XML
* and extract the exception code/message though
*/
size_t nSize;
nSize = fread(szBuf, sizeof(char), MS_BUFFER_LENGTH-1, fp);
if (nSize >= 0 && nSize < MS_BUFFER_LENGTH)
szBuf[nSize] = '\0';
else
strcpy(szBuf, "(!!!)"); /* This should never happen */
fclose(fp);
/* We're done with the remote server's response... delete it. */
if (!lp->debug)
unlink(pasReqInfo[iReq].pszOutputFile);
}
else
{
strcpy(szBuf, "(Failed to open exception response)");
}
if (lp->debug)
msDebug("WMS GetMap request got XML exception for layer '%s': %s.",
(lp->name?lp->name:"(null)"), szBuf );
msSetError(MS_WMSERR,
"WMS GetMap request got XML exception for layer '%s': %s.",
"msDrawWMSLayerLow()",
(lp->name?lp->name:"(null)"), szBuf );
return MS_SUCCESS;
}
/* ------------------------------------------------------------------
* Prepare layer for drawing, reprojecting the image received from the
* server if needed...
* ------------------------------------------------------------------ */
/* keep the current type that will be restored at the end of this */
/* function. */
currenttype = lp->type;
currentconnectiontype = lp->connectiontype;
lp->type = MS_LAYER_RASTER;
lp->connectiontype = MS_SHAPEFILE;
/* set the classes to 0 so that It won't do client side */
/* classification if an sld was set. */
numclasses = lp->numclasses;
if (msOWSLookupMetadata(&(lp->metadata), "MO", "sld_body") ||
msOWSLookupMetadata(&(lp->metadata), "MO", "sld_url"))
lp->numclasses = 0;
if (lp->data) free(lp->data);
lp->data = strdup(pasReqInfo[iReq].pszOutputFile);
if (!msProjectionsDiffer(&(map->projection), &(lp->projection)))
{
/* The simple case... no reprojection needed... render layer directly. */
lp->transform = MS_FALSE;
/* if (msDrawRasterLayerLow(map, lp, img) != 0) */
/* status = MS_FAILURE; */
if (msDrawLayer(map, lp, img) != 0)
status = MS_FAILURE;
}
else
{
FILE *fp;
char *wldfile;
/* OK, we have to resample the raster to map projection... */
lp->transform = MS_TRUE;
/* Create a world file with raster extents */
/* One line per value, in this order: cx, 0, 0, cy, ulx, uly */
wldfile = msBuildPath(szPath, lp->map->mappath, lp->data);
if (wldfile)
strcpy(wldfile+strlen(wldfile)-3, "wld");
if (wldfile && (fp = fopen(wldfile, "wt")) != NULL)
{
double dfCellSizeX = MS_CELLSIZE(pasReqInfo[iReq].bbox.minx,
pasReqInfo[iReq].bbox.maxx,
map->width);
double dfCellSizeY = MS_CELLSIZE(pasReqInfo[iReq].bbox.maxy,
pasReqInfo[iReq].bbox.miny,
map->height);
fprintf(fp, "%.12f\n", dfCellSizeX );
fprintf(fp, "0\n");
fprintf(fp, "0\n");
fprintf(fp, "%.12f\n", dfCellSizeY );
fprintf(fp, "%.12f\n",
pasReqInfo[iReq].bbox.minx + dfCellSizeX * 0.5 );
fprintf(fp, "%.12f\n",
pasReqInfo[iReq].bbox.maxy + dfCellSizeY * 0.5 );
fclose(fp);
/* GDAL should be called to reproject automatically. */
if (msDrawLayer(map, lp, img) != 0)
status = MS_FAILURE;
if (!lp->debug)
unlink(wldfile);
}
else
{
msSetError(MS_WMSCONNERR,
"Unable to create wld file for WMS slide.",
"msDrawWMSLayer()");
status = MS_FAILURE;
}
}
/* We're done with the remote server's response... delete it. */
if (!lp->debug)
unlink(lp->data);
/* restore prveious type */
lp->type = currenttype;
lp->connectiontype = currentconnectiontype;
/* restore previous numclasses */
lp->numclasses = numclasses;
free(lp->data);
lp->data = NULL;
return status;
#else
/* ------------------------------------------------------------------
* WMS CONNECTION Support not included...
* ------------------------------------------------------------------ */
msSetError(MS_WMSCONNERR, "WMS CLIENT CONNECTION support is not available.",
"msDrawWMSLayer()");
return(MS_FAILURE);
#endif /* USE_WMS_LYR */
}
|