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
|
/******************************************************************************
*
* Project: MapServer
* Purpose: Implementation of most layerObj functions.
* Author: Steve Lime and the MapServer team.
*
******************************************************************************
* Copyright (c) 1996-2005 Regents of the University of Minnesota.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies of this Software or works derived from this Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
******************************************************************************
*
* $Log: maplayer.c,v $
* Revision 1.112 2006/08/22 13:56:58 hobu
* ssh! comment out "tile;" which was unused and
* causing compiler to complain
*
* Revision 1.111 2006/04/27 04:05:17 sdlime
* Initial support for relative coordinates. (bug 1547)
*
* Revision 1.110 2006/03/28 17:31:30 assefa
* When setting the time filter, do not override existing Filter paramter
* if possible (Bug 1261).
*
* Revision 1.109 2006/01/31 17:06:10 assefa
* Add connectiontype initialization logic when the layer's virtual
* table is initialized (Bug 1615)
*
* Revision 1.108 2005/10/29 02:03:43 jani
* MS RFC 8: Pluggable External Feature Layer Providers (bug 1477).
*
* Revision 1.107 2005/10/28 01:09:41 jani
* MS RFC 3: Layer vtable architecture (bug 1477)
*
* Revision 1.106 2005/07/16 19:07:38 jerryp
* Bug 1420: PostGIS connector no longer needs two layer close functions.
*
* Revision 1.105 2005/06/14 16:03:33 dan
* Updated copyright date to 2005
*
* Revision 1.104 2005/04/25 06:41:56 sdlime
* Applied Bill's newest gradient patch, more concise in the mapfile and potential to use via MapScript.
*
* Revision 1.103 2005/04/15 17:10:36 sdlime
* Applied Bill Benko's patch for bug 1305, gradient support.
*
* Revision 1.102 2005/02/18 03:06:46 dan
* Turned all C++ (//) comments into C comments (bug 1238)
*
* Revision 1.101 2005/01/12 21:11:21 frank
* removed LABELS_ROTATE_WITH_MAP, rotate labels if angle!=0 or labelangleitem
*
* Revision 1.100 2005/01/11 00:24:59 frank
* added msLayerLabelsRotateWithMap
*
* Revision 1.99 2004/11/16 19:18:43 assefa
* Make sure that the timestring is complete for pg layers (Bug 837)
*
* Revision 1.98 2004/11/15 21:11:23 dan
* Moved the layer->getExtent() logic down to msLayerGetExtent() (bug 1051)
*
* Revision 1.97 2004/11/15 20:35:02 dan
* Added msLayerIsOpen() to all vector layer types (bug 1051)
*
* Revision 1.96 2004/10/21 10:54:17 assefa
* Add postgis date_trunc support.
*
* Revision 1.95 2004/10/21 04:30:55 frank
* Added standardized headers. Added MS_CVSID().
*
*/
#include "map.h"
#include "maptime.h"
#include "mapogcfilter.h"
#include <assert.h>
MS_CVSID("$Id: maplayer.c,v 1.112 2006/08/22 13:56:58 hobu Exp $")
static int populateVirtualTable(layerVTableObj *vtable);
/*
** Iteminfo is a layer parameter that holds information necessary to retrieve an individual item for
** a particular source. It is an array built from a list of items. The type of iteminfo will vary by
** source. For shapefiles and OGR it is simply an array of integers where each value is an index for
** the item. For SDE it's a ESRI specific type that contains index and column type information. Two
** helper functions below initialize and free that structure member which is used locally by layer
** specific functions.
*/
int msLayerInitItemInfo(layerObj *layer)
{
if ( ! layer->vtable) {
int rv = msInitializeVirtualTable(layer);
if (rv != MS_SUCCESS)
return rv;
}
return layer->vtable->LayerInitItemInfo(layer);
}
void msLayerFreeItemInfo(layerObj *layer)
{
if ( ! layer->vtable) {
int rv = msInitializeVirtualTable(layer);
if (rv != MS_SUCCESS)
return;
}
layer->vtable->LayerFreeItemInfo(layer);
}
/*
** Does exactly what it implies, readies a layer for processing.
*/
int msLayerOpen(layerObj *layer)
{
if(layer->features && layer->connectiontype != MS_GRATICULE )
layer->connectiontype = MS_INLINE;
if(layer->tileindex && layer->connectiontype == MS_SHAPEFILE)
layer->connectiontype = MS_TILED_SHAPEFILE;
if(layer->type == MS_LAYER_RASTER )
layer->connectiontype = MS_RASTER;
if ( ! layer->vtable) {
int rv = msInitializeVirtualTable(layer);
if (rv != MS_SUCCESS)
return rv;
}
return layer->vtable->LayerOpen(layer);
}
/*
** Returns MS_TRUE if layer has been opened using msLayerOpen(), MS_FALSE otherwise
*/
int msLayerIsOpen(layerObj *layer)
{
if ( ! layer->vtable) {
int rv = msInitializeVirtualTable(layer);
if (rv != MS_SUCCESS)
return rv;
}
return layer->vtable->LayerIsOpen(layer);
}
/*
** Performs a spatial, and optionally an attribute based feature search. The function basically
** prepares things so that candidate features can be accessed by query or drawing functions. For
** OGR and shapefiles this sets an internal bit vector that indicates whether a particular feature
** is to processed. For SDE it executes an SQL statement on the SDE server. Once run the msLayerNextShape
** function should be called to actually access the shapes.
**
** Note that for shapefiles we apply any maxfeatures constraint at this point. That may be the only
** connection type where this is feasible.
*/
int msLayerWhichShapes(layerObj *layer, rectObj rect)
{
if ( ! layer->vtable) {
int rv = msInitializeVirtualTable(layer);
if (rv != MS_SUCCESS)
return rv;
}
return layer->vtable->LayerWhichShapes(layer, rect);
}
/*
** Called after msWhichShapes has been called to actually retrieve shapes within a given area
** and matching a vendor specific filter (i.e. layer FILTER attribute).
**
** Shapefiles: NULL shapes (shapes with attributes but NO vertices are skipped)
*/
int msLayerNextShape(layerObj *layer, shapeObj *shape)
{
if ( ! layer->vtable) {
int rv = msInitializeVirtualTable(layer);
if (rv != MS_SUCCESS)
return rv;
}
/* At the end of switch case (default -> break; -> return MS_FAILURE),
* was following TODO ITEM:
*/
/* TO DO! This is where dynamic joins will happen. Joined attributes will be */
/* tagged on to the main attributes with the naming scheme [join name].[item name]. */
/* We need to leverage the iteminfo (I think) at this point */
return layer->vtable->LayerNextShape(layer, shape);
}
/*
** Used to retrieve a shape by index. All data sources must be capable of random access using
** a record number of some sort.
*/
int msLayerGetShape(layerObj *layer, shapeObj *shape, int tile, long record)
{
if ( ! layer->vtable) {
int rv = msInitializeVirtualTable(layer);
if (rv != MS_SUCCESS)
return rv;
}
/* At the end of switch case (default -> break; -> return MS_FAILURE),
* was following TODO ITEM:
*/
/* TO DO! This is where dynamic joins will happen. Joined attributes will be */
/* tagged on to the main attributes with the naming scheme [join name].[item name]. */
return layer->vtable->LayerGetShape(layer, shape, tile, record);
}
/*
** Closes resources used by a particular layer.
*/
void msLayerClose(layerObj *layer)
{
/* no need for items once the layer is closed */
msLayerFreeItemInfo(layer);
if(layer->items) {
msFreeCharArray(layer->items, layer->numitems);
layer->items = NULL;
layer->numitems = 0;
}
if (layer->vtable) {
layer->vtable->LayerClose(layer);
}
}
/*
** Retrieves a list of attributes available for this layer. Most sources also set the iteminfo array
** at this point. This function is used when processing query results to expose attributes to query
** templates. At that point all attributes are fair game.
*/
int msLayerGetItems(layerObj *layer)
{
/* clean up any previously allocated instances */
msLayerFreeItemInfo(layer);
if(layer->items) {
msFreeCharArray(layer->items, layer->numitems);
layer->items = NULL;
layer->numitems = 0;
}
if ( ! layer->vtable) {
int rv = msInitializeVirtualTable(layer);
if (rv != MS_SUCCESS)
return rv;
}
/* At the end of switch case (default -> break; -> return MS_FAILURE),
* was following TODO ITEM:
*/
/* TO DO! Need to add any joined itemd on to the core layer items, one long list! */
return layer->vtable->LayerGetItems(layer);
}
/*
** Returns extent of spatial coverage for a layer.
**
** If layer->extent is set then this value is used, otherwise the
** driver-specific implementation is called (this can be expensive).
**
** If layer is not already opened then it is opened and closed (so this
** function can be called on both opened or closed layers).
**
** Returns MS_SUCCESS/MS_FAILURE.
*/
int msLayerGetExtent(layerObj *layer, rectObj *extent)
{
int need_to_close = MS_FALSE, status = MS_SUCCESS;
if (MS_VALID_EXTENT(layer->extent))
{
*extent = layer->extent;
return MS_SUCCESS;
}
if (!msLayerIsOpen(layer))
{
if (msLayerOpen(layer) != MS_SUCCESS)
return MS_FAILURE;
need_to_close = MS_TRUE;
}
if ( ! layer->vtable) {
int rv = msInitializeVirtualTable(layer);
if (rv != MS_SUCCESS) {
if (need_to_close)
msLayerClose(layer);
return rv;
}
}
status = layer->vtable->LayerGetExtent(layer, extent);
if (need_to_close)
msLayerClose(layer);
return(status);
}
static int string2list(char **list, int *listsize, char *string)
{
int i;
for(i=0; i<(*listsize); i++)
if(strcmp(list[i], string) == 0) {
/* printf("string2list (duplicate): %s %d\n", string, i); */
return(i);
}
list[i] = strdup(string);
(*listsize)++;
/* printf("string2list: %s %d\n", string, i); */
return(i);
}
/* TO DO: this function really needs to use the lexer */
static void expression2list(char **list, int *listsize, expressionObj *expression)
{
int i, j, l;
char tmpstr1[1024], tmpstr2[1024];
short in=MS_FALSE;
int tmpint;
j = 0;
l = strlen(expression->string);
for(i=0; i<l; i++) {
if(expression->string[i] == '[') {
in = MS_TRUE;
tmpstr2[j] = expression->string[i];
j++;
continue;
}
if(expression->string[i] == ']') {
in = MS_FALSE;
tmpint = expression->numitems;
tmpstr2[j] = expression->string[i];
tmpstr2[j+1] = '\0';
string2list(expression->items, &(expression->numitems), tmpstr2);
if(tmpint != expression->numitems) { /* not a duplicate, so no need to calculate the index */
tmpstr1[j-1] = '\0';
expression->indexes[expression->numitems - 1] = string2list(list, listsize, tmpstr1);
}
j = 0; /* reset */
continue;
}
if(in) {
tmpstr2[j] = expression->string[i];
tmpstr1[j-1] = expression->string[i];
j++;
}
}
}
int msLayerWhichItemsNew(layerObj *layer, int classify, int annotate, char *metadata)
{
int status;
int numchars;
/* int i; */
status = msLayerGetItems(layer); /* get a list of all attributes available for this layer (including JOINs) */
if(status != MS_SUCCESS) return(status);
/* allocate space for the various item lists */
if(classify && layer->filter.type == MS_EXPRESSION) {
numchars = countChars(layer->filter.string, '[');
if(numchars > 0) {
layer->filter.items = (char **)calloc(numchars, sizeof(char *)); /* should be more than enough space */
if(!(layer->filter.items)) {
msSetError(MS_MEMERR, NULL, "msLayerWhichItems()");
return(MS_FAILURE);
}
layer->filter.indexes = (int *)malloc(numchars*sizeof(int));
if(!(layer->filter.indexes)) {
msSetError(MS_MEMERR, NULL, "msLayerWhichItems()");
return(MS_FAILURE);
}
layer->filter.numitems = 0;
}
}
/* for(i=0; i<layer->numitems; i++) { } */
return(MS_SUCCESS);
}
/*
** This function builds a list of items necessary to draw or query a particular layer by
** examining the contents of the various xxxxitem parameters and expressions. That list is
** then used to set the iteminfo variable. SDE is kinda special, we always need to retrieve
** the shape column and a virtual record number column. Most sources should not have to
** modify this function.
*/
int msLayerWhichItems(layerObj *layer, int classify, int annotate, char *metadata)
{
int i, j, rv;
int nt=0, ne=0;
if ( ! layer->vtable) {
rv = msInitializeVirtualTable(layer);
if (rv != MS_SUCCESS) {
return rv;
}
}
/* */
/* TO DO! I have a better algorithm. */
/* */
/* 1) call msLayerGetItems to get a complete list (including joins) */
/* 2) loop though item-based parameters and expressions to identify items to keep */
/* 3) based on 2) build a list of items */
/* */
/* This is more straight forward and robust, fixes the problem of [...] regular expressions */
/* embeded in logical expressions. It also opens up to using dynamic joins anywhere... */
/* */
/* Cleanup any previous item selection */
msLayerFreeItemInfo(layer);
if(layer->items) {
msFreeCharArray(layer->items, layer->numitems);
layer->items = NULL;
layer->numitems = 0;
}
if(classify) {
if(layer->classitem) nt++;
if(layer->filteritem) nt++;
for(i=0; i<layer->numclasses; i++) {
for(j=0; j<layer->class[i].numstyles; j++) {
if(layer->class[i].styles[j].angleitem) nt++;
if(layer->class[i].styles[j].sizeitem) nt++;
if(layer->class[i].styles[j].rangeitem) nt++;
}
}
ne = 0;
if(layer->filter.type == MS_EXPRESSION) {
ne = countChars(layer->filter.string, '[');
if(ne > 0) {
layer->filter.items = (char **)calloc(ne, sizeof(char *)); /* should be more than enough space */
if(!(layer->filter.items)) {
msSetError(MS_MEMERR, NULL, "msLayerWhichItems()");
return(MS_FAILURE);
}
layer->filter.indexes = (int *)malloc(ne*sizeof(int));
if(!(layer->filter.indexes)) {
msSetError(MS_MEMERR, NULL, "msLayerWhichItems()");
return(MS_FAILURE);
}
layer->filter.numitems = 0;
nt += ne;
}
}
}
if(annotate) {
if(layer->labelitem) nt++;
if(layer->labelsizeitem) nt++;
if(layer->labelangleitem) nt++;
}
for(i=0; i<layer->numclasses; i++) {
ne = 0;
if(classify && layer->class[i].expression.type == MS_EXPRESSION) {
ne = countChars(layer->class[i].expression.string, '[');
if(ne > 0) {
layer->class[i].expression.items = (char **)calloc(ne, sizeof(char *)); /* should be more than enough space */
if(!(layer->class[i].expression.items)) {
msSetError(MS_MEMERR, NULL, "msLayerWhichItems()");
return(MS_FAILURE);
}
layer->class[i].expression.indexes = (int *)malloc(ne*sizeof(int));
if(!(layer->class[i].expression.indexes)) {
msSetError(MS_MEMERR, NULL, "msLayerWhichItems()");
return(MS_FAILURE);
}
layer->class[i].expression.numitems = 0;
nt += ne;
}
}
ne = 0;
if(annotate && layer->class[i].text.type == MS_EXPRESSION) {
ne = countChars(layer->class[i].text.string, '[');
if(ne > 0) {
layer->class[i].text.items = (char **)calloc(ne, sizeof(char *)); /* should be more than enough space */
if(!(layer->class[i].text.items)) {
msSetError(MS_MEMERR, NULL, "msLayerWhichItems()");
return(MS_FAILURE);
}
layer->class[i].text.indexes = (int *)malloc(ne*sizeof(int));
if(!(layer->class[i].text.indexes)) {
msSetError(MS_MEMERR, NULL, "msLayerWhichItems()");
return(MS_FAILURE);
}
layer->class[i].text.numitems = 0;
nt += ne;
}
}
}
rv = layer->vtable->LayerCreateItems(layer, nt);
if (rv != MS_SUCCESS) {
return rv;
}
if(nt > 0) {
if(classify) {
if(layer->classitem) layer->classitemindex = string2list(layer->items, &(layer->numitems), layer->classitem);
if(layer->filteritem) layer->filteritemindex = string2list(layer->items, &(layer->numitems), layer->filteritem);
for(i=0; i<layer->numclasses; i++) {
for(j=0; j<layer->class[i].numstyles; j++) {
if(layer->class[i].styles[j].angleitem) layer->class[i].styles[j].angleitemindex = string2list(layer->items, &(layer->numitems), layer->class[i].styles[j].angleitem);
if(layer->class[i].styles[j].sizeitem) layer->class[i].styles[j].sizeitemindex = string2list(layer->items, &(layer->numitems), layer->class[i].styles[j].sizeitem);
if(layer->class[i].styles[j].rangeitem) layer->class[i].styles[j].rangeitemindex = string2list(layer->items, &(layer->numitems), layer->class[i].styles[j].rangeitem);
}
}
if(layer->filter.type == MS_EXPRESSION) expression2list(layer->items, &(layer->numitems), &(layer->filter));
}
if(annotate) {
if(layer->labelitem) layer->labelitemindex = string2list(layer->items, &(layer->numitems), layer->labelitem);
if(layer->labelsizeitem) layer->labelsizeitemindex = string2list(layer->items, &(layer->numitems), layer->labelsizeitem);
if(layer->labelangleitem) layer->labelangleitemindex = string2list(layer->items, &(layer->numitems), layer->labelangleitem);
}
for(i=0; i<layer->numclasses; i++) {
if(classify && layer->class[i].expression.type == MS_EXPRESSION) expression2list(layer->items, &(layer->numitems), &(layer->class[i].expression));
if(annotate && layer->class[i].text.type == MS_EXPRESSION) expression2list(layer->items, &(layer->numitems), &(layer->class[i].text));
}
}
if(metadata) {
char **tokens;
int n = 0;
int j;
int bFound = 0;
tokens = split(metadata, ',', &n);
if(tokens) {
for(i=0; i<n; i++) {
bFound = 0;
for(j=0; j<layer->numitems; j++) {
if(strcmp(tokens[i], layer->items[j]) == 0) {
bFound = 1;
break;
}
}
if(!bFound) {
layer->numitems++;
layer->items = (char **)realloc(layer->items, sizeof(char *)*(layer->numitems));
layer->items[layer->numitems-1] = strdup(tokens[i]);
}
}
msFreeCharArray(tokens, n);
}
}
/* populate the iteminfo array */
if(layer->numitems == 0)
return(MS_SUCCESS);
return(msLayerInitItemInfo(layer));
}
/*
** A helper function to set the items to be retrieved with a particular shape. Unused at the moment but will be used
** from within MapScript. Should not need modification.
*/
int msLayerSetItems(layerObj *layer, char **items, int numitems)
{
int i;
/* Cleanup any previous item selection */
msLayerFreeItemInfo(layer);
if(layer->items) {
msFreeCharArray(layer->items, layer->numitems);
layer->items = NULL;
layer->numitems = 0;
}
/* now allocate and set the layer item parameters */
layer->items = (char **)malloc(sizeof(char *)*numitems);
if(!layer->items) {
msSetError(MS_MEMERR, NULL, "msLayerSetItems()");
return(MS_FAILURE);
}
for(i=0; i<numitems; i++)
layer->items[i] = strdup(items[i]);
layer->numitems = numitems;
/* populate the iteminfo array */
return(msLayerInitItemInfo(layer));
return(MS_SUCCESS);
}
/*
** Fills a classObj with style info from the specified shape. This is used
** with STYLEITEM AUTO when rendering shapes.
** For optimal results, this should be called immediately after
** GetNextShape() or GetShape() so that the shape doesn't have to be read
** twice.
**
*/
int msLayerGetAutoStyle(mapObj *map, layerObj *layer, classObj *c,
int tile, long record)
{
if ( ! layer->vtable) {
int rv = msInitializeVirtualTable(layer);
if (rv != MS_SUCCESS)
return rv;
}
return layer->vtable->LayerGetAutoStyle(map, layer, c, tile, record);
}
/*
Returns the number of inline feature of a layer
*/
int msLayerGetNumFeatures(layerObj *layer)
{
if ( ! layer->vtable) {
int rv = msInitializeVirtualTable(layer);
if (rv != MS_SUCCESS)
return rv;
}
return layer->vtable->LayerGetNumFeatures(layer);
}
void
msLayerSetProcessingKey( layerObj *layer, const char *key, const char *value)
{
int len = strlen(key);
int i;
char *directive;
directive = (char *) malloc(strlen(key)+strlen(value)+2);
sprintf( directive, "%s=%s", key, value );
for( i = 0; i < layer->numprocessing; i++ )
{
/* If the key is found, replace it */
if( strncasecmp( key, layer->processing[i], len ) == 0
&& layer->processing[i][len] == '=' )
{
free( layer->processing[i] );
layer->processing[i] = directive;
return;
}
}
/* otherwise add the directive at the end. */
msLayerAddProcessing( layer, directive );
free( directive );
}
void msLayerAddProcessing( layerObj *layer, const char *directive )
{
layer->numprocessing++;
if( layer->numprocessing == 1 )
layer->processing = (char **) malloc(2*sizeof(char *));
else
layer->processing = (char **) realloc(layer->processing, sizeof(char*) * (layer->numprocessing+1) );
layer->processing[layer->numprocessing-1] = strdup(directive);
layer->processing[layer->numprocessing] = NULL;
}
char *msLayerGetProcessing( layerObj *layer, int proc_index) {
if (proc_index < 0 || proc_index >= layer->numprocessing) {
msSetError(MS_CHILDERR, "Invalid processing index.", "msLayerGetProcessing()");
return NULL;
}
else {
return layer->processing[proc_index];
}
}
char *msLayerGetProcessingKey( layerObj *layer, const char *key )
{
int i, len = strlen(key);
for( i = 0; i < layer->numprocessing; i++ )
{
if( strncasecmp(layer->processing[i],key,len) == 0
&& layer->processing[i][len] == '=' )
return layer->processing[i] + len + 1;
}
return NULL;
}
int msLayerClearProcessing( layerObj *layer ) {
if (layer->numprocessing > 0) {
msFreeCharArray( layer->processing, layer->numprocessing );
layer->processing = NULL;
layer->numprocessing = 0;
}
return layer->numprocessing;
}
int
makeTimeFilter(layerObj *lp,
const char *timestring,
const char *timefield,
const int addtimebacktics)
{
char **atimes, **tokens = NULL;
int numtimes,i, ntmp = 0;
char *pszBuffer = NULL;
int bOnlyExistingFilter = 0;
if (!lp || !timestring || !timefield)
return MS_FALSE;
/* parse the time string. We support dicrete times (eg 2004-09-21), */
/* multiple times (2004-09-21, 2004-09-22, ...) */
/* and range(s) (2004-09-21/2004-09-25, 2004-09-27/2004-09-29) */
if (strstr(timestring, ",") == NULL &&
strstr(timestring, "/") == NULL) /* discrete time */
{
/*
if(lp->filteritem) free(lp->filteritem);
lp->filteritem = strdup(timefield);
if (&lp->filter)
freeExpression(&lp->filter);
*/
if (&lp->filter)
{
/* if the filter is set and it's a sting type, concatenate it with
the time. If not just free it */
if (lp->filter.type == MS_EXPRESSION)
{
pszBuffer = strcatalloc(pszBuffer, "((");
pszBuffer = strcatalloc(pszBuffer, lp->filter.string);
pszBuffer = strcatalloc(pszBuffer, ") and ");
}
else
{
freeExpression(&lp->filter);
}
}
pszBuffer = strcatalloc(pszBuffer, "(");
if (addtimebacktics)
pszBuffer = strcatalloc(pszBuffer, "`");
if (addtimebacktics)
pszBuffer = strcatalloc(pszBuffer, "[");
pszBuffer = strcatalloc(pszBuffer, (char *)timefield);
if (addtimebacktics)
pszBuffer = strcatalloc(pszBuffer, "]");
if (addtimebacktics)
pszBuffer = strcatalloc(pszBuffer, "`");
pszBuffer = strcatalloc(pszBuffer, " = ");
if (addtimebacktics)
pszBuffer = strcatalloc(pszBuffer, "`");
else
pszBuffer = strcatalloc(pszBuffer, "'");
pszBuffer = strcatalloc(pszBuffer, (char *)timestring);
if (addtimebacktics)
pszBuffer = strcatalloc(pszBuffer, "`");
else
pszBuffer = strcatalloc(pszBuffer, "'");
pszBuffer = strcatalloc(pszBuffer, ")");
/* if there was a filter, It was concatenate with an And ans should be closed*/
if(&lp->filter && lp->filter.type == MS_EXPRESSION)
{
pszBuffer = strcatalloc(pszBuffer, ")");
}
loadExpressionString(&lp->filter, pszBuffer);
if (pszBuffer)
msFree(pszBuffer);
return MS_TRUE;
}
atimes = split (timestring, ',', &numtimes);
if (atimes == NULL || numtimes < 1)
return MS_FALSE;
if (numtimes >= 1)
{
if (&lp->filter && lp->filter.type == MS_EXPRESSION)
{
pszBuffer = strcatalloc(pszBuffer, "((");
pszBuffer = strcatalloc(pszBuffer, lp->filter.string);
pszBuffer = strcatalloc(pszBuffer, ") and ");
/*this flag is used to indicate that the buffer contains only the
existing filter. It is set to 0 when time filter parts are
added to the buffer */
bOnlyExistingFilter = 1;
}
else
freeExpression(&lp->filter);
/* check to see if we have ranges by parsing the first entry */
tokens = split(atimes[0], '/', &ntmp);
if (ntmp == 2) /* ranges */
{
msFreeCharArray(tokens, ntmp);
for (i=0; i<numtimes; i++)
{
tokens = split(atimes[i], '/', &ntmp);
if (ntmp == 2)
{
if (pszBuffer && strlen(pszBuffer) > 0 && bOnlyExistingFilter == 0)
pszBuffer = strcatalloc(pszBuffer, " OR ");
else
pszBuffer = strcatalloc(pszBuffer, "(");
bOnlyExistingFilter = 0;
pszBuffer = strcatalloc(pszBuffer, "(");
if (addtimebacktics)
pszBuffer = strcatalloc(pszBuffer, "`");
if (addtimebacktics)
pszBuffer = strcatalloc(pszBuffer, "[");
pszBuffer = strcatalloc(pszBuffer, (char *)timefield);
if (addtimebacktics)
pszBuffer = strcatalloc(pszBuffer, "]");
if (addtimebacktics)
pszBuffer = strcatalloc(pszBuffer, "`");
pszBuffer = strcatalloc(pszBuffer, " >= ");
if (addtimebacktics)
pszBuffer = strcatalloc(pszBuffer, "`");
else
pszBuffer = strcatalloc(pszBuffer, "'");
pszBuffer = strcatalloc(pszBuffer, tokens[0]);
if (addtimebacktics)
pszBuffer = strcatalloc(pszBuffer, "`");
else
pszBuffer = strcatalloc(pszBuffer, "'");
pszBuffer = strcatalloc(pszBuffer, " AND ");
if (addtimebacktics)
pszBuffer = strcatalloc(pszBuffer, "`");
if (addtimebacktics)
pszBuffer = strcatalloc(pszBuffer, "[");
pszBuffer = strcatalloc(pszBuffer, (char *)timefield);
if (addtimebacktics)
pszBuffer = strcatalloc(pszBuffer, "]");
if (addtimebacktics)
pszBuffer = strcatalloc(pszBuffer, "`");
pszBuffer = strcatalloc(pszBuffer, " <= ");
if (addtimebacktics)
pszBuffer = strcatalloc(pszBuffer, "`");
else
pszBuffer = strcatalloc(pszBuffer, "'");
pszBuffer = strcatalloc(pszBuffer, tokens[1]);
if (addtimebacktics)
pszBuffer = strcatalloc(pszBuffer, "`");
else
pszBuffer = strcatalloc(pszBuffer, "'");
pszBuffer = strcatalloc(pszBuffer, ")");
}
msFreeCharArray(tokens, ntmp);
}
if (pszBuffer && strlen(pszBuffer) > 0 && bOnlyExistingFilter == 0)
pszBuffer = strcatalloc(pszBuffer, ")");
}
else if (ntmp == 1) /* multiple times */
{
msFreeCharArray(tokens, ntmp);
pszBuffer = strcatalloc(pszBuffer, "(");
for (i=0; i<numtimes; i++)
{
if (i > 0)
pszBuffer = strcatalloc(pszBuffer, " OR ");
pszBuffer = strcatalloc(pszBuffer, "(");
if (addtimebacktics)
pszBuffer = strcatalloc(pszBuffer, "`");
if (addtimebacktics)
pszBuffer = strcatalloc(pszBuffer, "[");
pszBuffer = strcatalloc(pszBuffer, (char *)timefield);
if (addtimebacktics)
pszBuffer = strcatalloc(pszBuffer, "]");
if (addtimebacktics)
pszBuffer = strcatalloc(pszBuffer, "`");
pszBuffer = strcatalloc(pszBuffer, " = ");
if (addtimebacktics)
pszBuffer = strcatalloc(pszBuffer, "`");
else
pszBuffer = strcatalloc(pszBuffer, "'");
pszBuffer = strcatalloc(pszBuffer, atimes[i]);
if (addtimebacktics)
pszBuffer = strcatalloc(pszBuffer, "`");
else
pszBuffer = strcatalloc(pszBuffer, "'");
pszBuffer = strcatalloc(pszBuffer, ")");
}
pszBuffer = strcatalloc(pszBuffer, ")");
}
else
{
msFreeCharArray(atimes, numtimes);
return MS_FALSE;
}
msFreeCharArray(atimes, numtimes);
/* load the string to the filter */
if (pszBuffer && strlen(pszBuffer) > 0)
{
if(&lp->filter && lp->filter.type == MS_EXPRESSION)
pszBuffer = strcatalloc(pszBuffer, ")");
/*
if(lp->filteritem)
free(lp->filteritem);
lp->filteritem = strdup(timefield);
*/
loadExpressionString(&lp->filter, pszBuffer);
if (pszBuffer)
msFree(pszBuffer);
}
return MS_TRUE;
}
return MS_FALSE;
}
/**
set the filter parameter for a time filter
**/
int msLayerSetTimeFilter(layerObj *lp, const char *timestring,
const char *timefield)
{
if ( ! lp->vtable) {
int rv = msInitializeVirtualTable(lp);
if (rv != MS_SUCCESS)
return rv;
}
return lp->vtable->LayerSetTimeFilter(lp, timestring, timefield);
}
int
msLayerMakeBackticsTimeFilter(layerObj *lp, const char *timestring,
const char *timefield)
{
return makeTimeFilter(lp, timestring, timefield, MS_TRUE);
}
int
msLayerMakePlainTimeFilter(layerObj *lp, const char *timestring,
const char *timefield)
{
return makeTimeFilter(lp, timestring, timefield, MS_FALSE);
}
/*
* Dummies / default actions for layers
*/
int
LayerDefaultInitItemInfo(layerObj *layer)
{
return MS_SUCCESS;
}
void
LayerDefaultFreeItemInfo(layerObj *layer)
{
return;
}
int LayerDefaultOpen(layerObj *layer)
{
return MS_FAILURE;
}
int
LayerDefaultIsOpen(layerObj *layer)
{
return MS_FALSE;
}
int
LayerDefaultWhichShapes(layerObj *layer, rectObj rect)
{
return MS_SUCCESS;
}
int
LayerDefaultNextShape(layerObj *layer, shapeObj *shape)
{
return MS_FAILURE;
}
int
LayerDefaultGetShape(layerObj *layer, shapeObj *shape,
int tile, long record)
{
return MS_FAILURE;
}
int
LayerDefaultClose(layerObj *layer)
{
return MS_SUCCESS;
}
int
LayerDefaultGetItems(layerObj *layer)
{
return MS_FAILURE;
}
int
msLayerApplyCondSQLFilterToLayer(FilterEncodingNode *psNode, mapObj *map,
int iLayerIndex, int bOnlySpatialFilter)
{
#if USE_OGR
return FLTLayerApplyCondSQLFilterToLayer(psNode, map, iLayerIndex,
bOnlySpatialFilter);
#else
return MS_FAILURE;
#endif
}
int
msLayerApplyPlainFilterToLayer(FilterEncodingNode *psNode, mapObj *map,
int iLayerIndex, int bOnlySpatialFilter)
{
#if USE_OGR
return FLTLayerApplyPlainFilterToLayer(psNode, map, iLayerIndex,
bOnlySpatialFilter);
#else
return MS_FAILURE;
#endif
}
int
LayerDefaultGetExtent(layerObj *layer, rectObj *extent)
{
return MS_FAILURE;
}
int
LayerDefaultGetAutoStyle(mapObj *map, layerObj *layer, classObj *c,
int tile, long record)
{
msSetError(MS_MISCERR, "'STYLEITEM AUTO' not supported for this data source.", "msLayerGetAutoStyle()");
return MS_FAILURE;
}
int
LayerDefaultCloseConnection(layerObj *layer)
{
return MS_SUCCESS;
}
int
LayerDefaultCreateItems(layerObj *layer,
const int nt)
{
if (nt > 0) {
layer->items = (char **)calloc(nt, sizeof(char *)); /* should be more than enough space */
if(!layer->items) {
msSetError(MS_MEMERR, NULL, "LayerDefaultCreateItems()");
return(MS_FAILURE);
}
layer->numitems = 0;
}
return MS_SUCCESS;
}
int
LayerDefaultGetNumFeatures(layerObj *layer)
{
msSetError(MS_SHPERR, "Not an inline layer", "msLayerGetNumFeatures()");
return MS_FAILURE;
}
/*
* msConnectLayer
*
* This will connect layer object to the new layer type.
* Caller is responsible to close previous layer correctly.
* For Internal types the library_str is ignored, for PLUGIN it's
* define what plugin to use. Returns MS_FAILURE or MS_SUCCESS.
*/
int msConnectLayer(layerObj *layer,
const int connectiontype,
const char *library_str)
{
layer->connectiontype = connectiontype;
/* For internal types, library_str is ignored */
if (connectiontype == MS_PLUGIN) {
int rv;
msFree(layer->plugin_library);
msFree(layer->plugin_library_original);
layer->plugin_library_original = strdup(library_str);
rv = msBuildPluginLibraryPath(&layer->plugin_library,
layer->plugin_library_original,
layer->map);
if (rv != MS_SUCCESS) {
return rv;
}
}
return msInitializeVirtualTable(layer) ;
}
static int
populateVirtualTable(layerVTableObj *vtable)
{
assert(vtable != NULL);
vtable->LayerInitItemInfo = LayerDefaultInitItemInfo;
vtable->LayerFreeItemInfo = LayerDefaultFreeItemInfo;
vtable->LayerOpen = LayerDefaultOpen;
vtable->LayerIsOpen = LayerDefaultIsOpen;
vtable->LayerWhichShapes = LayerDefaultWhichShapes;
vtable->LayerNextShape = LayerDefaultNextShape;
vtable->LayerGetShape = LayerDefaultGetShape;
vtable->LayerClose = LayerDefaultClose;
vtable->LayerGetItems = LayerDefaultGetItems;
vtable->LayerGetExtent = LayerDefaultGetExtent;
vtable->LayerGetAutoStyle = LayerDefaultGetAutoStyle;
vtable->LayerCloseConnection = LayerDefaultCloseConnection;
vtable->LayerSetTimeFilter = msLayerMakePlainTimeFilter;
vtable->LayerApplyFilterToLayer = msLayerApplyPlainFilterToLayer;
vtable->LayerCreateItems = LayerDefaultCreateItems;
vtable->LayerGetNumFeatures = LayerDefaultGetNumFeatures;
return MS_SUCCESS;
}
static int
createVirtualTable(layerVTableObj **vtable)
{
*vtable = malloc(sizeof(**vtable));
if ( ! *vtable) {
return MS_FAILURE;
}
return populateVirtualTable(*vtable);
}
static int
destroyVirtualTable(layerVTableObj **vtable)
{
memset(*vtable, 0, sizeof(**vtable));
msFree(*vtable);
*vtable = NULL;
return MS_SUCCESS;
}
int
msInitializeVirtualTable(layerObj *layer)
{
if (layer->vtable) {
destroyVirtualTable(&layer->vtable);
}
createVirtualTable(&layer->vtable);
if(layer->features && layer->connectiontype != MS_GRATICULE )
layer->connectiontype = MS_INLINE;
if(layer->tileindex && layer->connectiontype == MS_SHAPEFILE)
layer->connectiontype = MS_TILED_SHAPEFILE;
if(layer->type == MS_LAYER_RASTER )
layer->connectiontype = MS_RASTER;
switch(layer->connectiontype) {
case(MS_INLINE):
return(msINLINELayerInitializeVirtualTable(layer));
break;
case(MS_SHAPEFILE):
return(msShapeFileLayerInitializeVirtualTable(layer));
break;
case(MS_TILED_SHAPEFILE):
return(msTiledSHPLayerInitializeVirtualTable(layer));
break;
case(MS_SDE):
return(msSDELayerInitializeVirtualTable(layer));
break;
case(MS_OGR):
return(msOGRLayerInitializeVirtualTable(layer));
break;
case(MS_POSTGIS):
return(msPOSTGISLayerInitializeVirtualTable(layer));
break;
case(MS_WMS):
/* WMS isn't a public layer type, it isn't used anywhere */
return MS_FAILURE;
break;
case(MS_ORACLESPATIAL):
return(msOracleSpatialLayerInitializeVirtualTable(layer));
break;
case(MS_WFS):
return(msWFSLayerInitializeVirtualTable(layer));
break;
case(MS_GRATICULE):
return(msGraticuleLayerInitializeVirtualTable(layer));
break;
case(MS_MYGIS):
return(msMYGISLayerInitializeVirtualTable(layer));
break;
case(MS_RASTER):
return(msRASTERLayerInitializeVirtualTable(layer));
break;
case(MS_PLUGIN):
return(msPluginLayerInitializeVirtualTable(layer));
break;
default:
msSetError(MS_MISCERR,
"Unknown connectiontype, it was %d",
"msInitializeVirtualTable()", layer->connectiontype);
return MS_FAILURE;
break;
}
/* not reached */
return MS_FAILURE;
}
/*
* INLINE: Virtual table functions
*/
int msINLINELayerIsOpen(layerObj *layer)
{
if (layer->currentfeature)
return(MS_TRUE);
else
return(MS_FALSE);
}
int msINLINELayerOpen(layerObj *layer)
{
layer->currentfeature = layer->features; /* point to the begining of the feature list */
return(MS_SUCCESS);
}
/* Author: Cristoph Spoerri and Sean Gillies */
int msINLINELayerGetShape(layerObj *layer, shapeObj *shape, int tile, long shapeindex)
{
int i=0;
featureListNodeObjPtr current;
/* tile ; */ /* Not used -- commented out to silence compiler warning. hobu*/
current = layer->features;
while (current!=NULL && i!=shapeindex) {
i++;
current = current->next;
}
if (current == NULL) {
msSetError(MS_SHPERR, "No inline feature with this index.",
"msINLINELayerGetShape()");
return MS_FAILURE;
}
if (msCopyShape(&(current->shape), shape) != MS_SUCCESS) {
msSetError(MS_SHPERR, "Cannot retrieve inline shape. There some problem with the shape", "msLayerGetShape()");
return MS_FAILURE;
}
return MS_SUCCESS;
}
int msINLINELayerNextShape(layerObj *layer, shapeObj *shape)
{
if( ! (layer->currentfeature)) {
/* out of features */
return(MS_DONE);
}
msCopyShape(&(layer->currentfeature->shape), shape);
layer->currentfeature = layer->currentfeature->next;
return(MS_SUCCESS);
}
int msINLINELayerGetNumFeatures(layerObj *layer)
{
int i = 0;
featureListNodeObjPtr current;
current = layer->features;
while (current != NULL) {
i++;
current = current->next;
}
return i;
}
int
msINLINELayerInitializeVirtualTable(layerObj *layer)
{
assert(layer != NULL);
assert(layer->vtable != NULL);
/* layer->vtable->LayerInitItemInfo, use default */
/* layer->vtable->LayerFreeItemInfo, use default */
layer->vtable->LayerOpen = msINLINELayerOpen;
layer->vtable->LayerIsOpen = msINLINELayerIsOpen;
/* layer->vtable->LayerWhichShapes, use default */
layer->vtable->LayerNextShape = msINLINELayerNextShape;
layer->vtable->LayerGetShape = msINLINELayerGetShape;
/* layer->vtable->LayerClose, use default */
/* layer->vtable->LayerGetItems, use default */
/*
* Original code contained following
* TODO: need to compute extents
*/
/* layer->vtable->LayerGetExtent, use default */
/* layer->vtable->LayerGetAutoStyle, use default */
/* layer->vtable->LayerCloseConnection, use default */
layer->vtable->LayerSetTimeFilter = msLayerMakeBackticsTimeFilter;
/* layer->vtable->LayerApplyFilterToLayer, use default */
/* layer->vtable->LayerCreateItems, use default */
layer->vtable->LayerGetNumFeatures = msINLINELayerGetNumFeatures;
return MS_SUCCESS;
}
|