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
|
/******************************************************************************
* $Id$
*
* Project: MapServer
* Purpose: MapCache tile caching support file: high level functions called
* from the CGI or apache-module implementations
* Author: Thomas Bonfort and the MapServer team.
*
******************************************************************************
* Copyright (c) 1996-2011 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.
*****************************************************************************/
#include <apr_strings.h>
#include "mapcache.h"
#if APR_HAS_THREADS
#include "apu_version.h"
#if (APU_MAJOR_VERSION <= 1 && APU_MINOR_VERSION <= 3)
#define USE_THREADPOOL 0
#else
#define USE_THREADPOOL 1
#endif
/* use a thread pool if using 1.3.12 or higher apu */
#if !USE_THREADPOOL
#include <apr_thread_proc.h>
#else
#include <apr_thread_pool.h>
#endif
typedef struct {
mapcache_tile *tile;
mapcache_context *ctx;
int launch;
} _thread_tile;
static void* APR_THREAD_FUNC _thread_get_tile(apr_thread_t *thread, void *data)
{
_thread_tile* t = (_thread_tile*)data;
mapcache_tileset_tile_get(t->ctx, t->tile);
#if !USE_THREADPOOL
apr_thread_exit(thread, APR_SUCCESS);
#endif
return NULL;
}
#endif
mapcache_http_response *mapcache_http_response_create(apr_pool_t *pool)
{
mapcache_http_response *response = (mapcache_http_response*) apr_pcalloc(pool,
sizeof(mapcache_http_response));
/* make room for at least Expires, Cache-Control, and Content-Type */
response->headers = apr_table_make(pool,3);
response->code = 200;
return response;
}
void mapcache_prefetch_tiles(mapcache_context *ctx, mapcache_tile **tiles, int ntiles)
{
apr_thread_t **threads;
apr_threadattr_t *thread_attrs;
int nthreads;
#if !APR_HAS_THREADS
int i;
for(i=0; i<ntiles; i++) {
mapcache_tileset_tile_get(ctx, tiles[i]);
GC_CHECK_ERROR(ctx);
}
#else
int i,rv;
_thread_tile* thread_tiles;
if(ntiles==1 || ctx->config->threaded_fetching == 0) {
/* if threads disabled, or only fetching a single tile, don't launch a thread for the operation */
for(i=0; i<ntiles; i++) {
mapcache_tileset_tile_get(ctx, tiles[i]);
GC_CHECK_ERROR(ctx);
}
return;
}
/* allocate a thread struct for each tile. Not all will be used */
thread_tiles = (_thread_tile*)apr_pcalloc(ctx->pool,ntiles*sizeof(_thread_tile));
#if 1 || !USE_THREADPOOL
/* use multiple threads, to fetch from multiple metatiles and/or multiple tilesets */
apr_threadattr_create(&thread_attrs, ctx->pool);
threads = (apr_thread_t**)apr_pcalloc(ctx->pool, ntiles*sizeof(apr_thread_t*));
nthreads = 0;
for(i=0; i<ntiles; i++) {
int j;
thread_tiles[i].tile = tiles[i];
thread_tiles[i].launch = 1;
j=i-1;
/*
* we only launch one thread per metatile as in the unseeded case the threads
* for a same metatile will lock while only a single thread launches the actual
* rendering request
*/
while(j>=0) {
/* check that the given metatile hasn't been rendered yet */
if(thread_tiles[j].launch &&
(thread_tiles[i].tile->tileset == thread_tiles[j].tile->tileset) &&
(thread_tiles[i].tile->x / thread_tiles[i].tile->tileset->metasize_x ==
thread_tiles[j].tile->x / thread_tiles[j].tile->tileset->metasize_x)&&
(thread_tiles[i].tile->y / thread_tiles[i].tile->tileset->metasize_y ==
thread_tiles[j].tile->y / thread_tiles[j].tile->tileset->metasize_y)) {
thread_tiles[i].launch = 0; /* this tile will not have a thread spawned for it */
break;
}
j--;
}
if(thread_tiles[i].launch)
thread_tiles[i].ctx = ctx->clone(ctx);
}
for(i=0; i<ntiles; i++) {
if(!thread_tiles[i].launch) continue; /* skip tiles that have been marked */
rv = apr_thread_create(&threads[i], thread_attrs, _thread_get_tile, (void*)&(thread_tiles[i]), thread_tiles[i].ctx->pool);
if(rv != APR_SUCCESS) {
ctx->set_error(ctx,500, "failed to create thread %d of %d\n",i,ntiles);
break;
}
nthreads++;
}
/* wait for launched threads to finish */
for(i=0; i<ntiles; i++) {
if(!thread_tiles[i].launch) continue;
apr_thread_join(&rv, threads[i]);
if(rv != APR_SUCCESS) {
ctx->set_error(ctx,500, "thread %d of %d failed on exit\n",i,ntiles);
}
if(GC_HAS_ERROR(thread_tiles[i].ctx)) {
/* transfer error message from child thread to main context */
ctx->set_error(ctx,thread_tiles[i].ctx->get_error(thread_tiles[i].ctx),
thread_tiles[i].ctx->get_error_message(thread_tiles[i].ctx));
}
}
for(i=0; i<ntiles; i++) {
/* fetch the tiles that did not get a thread launched for them */
if(thread_tiles[i].launch) continue;
mapcache_tileset_tile_get(ctx, tiles[i]);
GC_CHECK_ERROR(ctx);
}
#else
/* experimental version using a threadpool, disabled for stability reasons */
apr_thread_pool_t *thread_pool;
apr_thread_pool_create(&thread_pool,2,ctx->config->download_threads,ctx->pool);
for(i=0; i<ntiles; i++) {
ctx->log(ctx,MAPCACHE_DEBUG,"starting thread for tile %s",tiles[i]->tileset->name);
thread_tiles[i].tile = tiles[i];
thread_tiles[i].ctx = ctx->clone(ctx);
rv = apr_thread_pool_push(thread_pool,_thread_get_tile,(void*)&(thread_tiles[i]), 0,NULL);
if(rv != APR_SUCCESS) {
ctx->set_error(ctx,500, "failed to push thread %d of %d in thread pool\n",i,ntiles);
break;
}
}
GC_CHECK_ERROR(ctx);
while(apr_thread_pool_tasks_run_count(thread_pool) != ntiles || apr_thread_pool_busy_count(thread_pool)>0)
apr_sleep(10000);
apr_thread_pool_destroy(thread_pool);
for(i=0; i<ntiles; i++) {
if(GC_HAS_ERROR(thread_tiles[i].ctx)) {
ctx->set_error(ctx,thread_tiles[i].ctx->get_error(thread_tiles[i].ctx),
thread_tiles[i].ctx->get_error_message(thread_tiles[i].ctx));
}
}
#endif
#endif
}
mapcache_http_response *mapcache_core_get_tile(mapcache_context *ctx, mapcache_request_get_tile *req_tile)
{
int expires = 0;
mapcache_http_response *response;
char *timestr;
mapcache_image *base;
mapcache_image_format *format;
mapcache_image_format_type t;
int i,is_empty=1; /* response image is initially empty */;
base=NULL;
format = NULL;
#ifdef DEBUG
if(req_tile->ntiles ==0) {
ctx->set_error(ctx,500,"BUG: get_tile called with 0 tiles");
return NULL;
}
#endif
response = mapcache_http_response_create(ctx->pool);
if(ctx->supports_redirects && req_tile->ntiles == 1) {
req_tile->tiles[0]->allow_redirect = 1;
}
mapcache_prefetch_tiles(ctx,req_tile->tiles,req_tile->ntiles);
if(GC_HAS_ERROR(ctx))
return NULL;
if(req_tile->tiles[0]->redirect) {
response->code = 302;
apr_table_set(response->headers,"Location",req_tile->tiles[0]->redirect);
response->data = mapcache_buffer_create(0, ctx->pool);
return response;
}
/* loop through tiles, and eventually merge them vertically together */
for(i=0; i<req_tile->ntiles; i++) {
mapcache_tile *tile = req_tile->tiles[i]; /* shortcut */
if(tile->mtime && (tile->mtime < response->mtime || response->mtime == 0))
response->mtime = tile->mtime;
if(tile->expires && (tile->expires < expires || expires == 0)) {
expires = tile->expires;
}
if(tile->nodata) {
/* treat the special case where the cache explicitely stated that the
tile was empty, and we don't have any vertical merging to do */
if(tile->encoded_data && req_tile->ntiles == 1) {
response->data = tile->encoded_data;
/* we don't touch is_empty, as we have access to the encoded empty image, but the
resulting tile is empty */
}
continue;
}
/* treat the most common case:
- we have a single tile request (i.e. isempty is true)
- the cache returned the encoded image
*/
if(is_empty && tile->encoded_data) {
response->data = tile->encoded_data;
/* just in case we also have the raw image data available, keep a ref to it
if we need to merge another tile ontop of it*/
if(tile->raw_image) {
base = tile->raw_image;
}
is_empty = 0; /* we now know we might need to do some vertical merging */
continue;
}
/* if we're here, either
* - we need to merge the current tile onto the previous one(s), or
* - we only have the tile's raw data available
*/
if(!is_empty) {
/* we have an existing tile, so we know we need to merge the current one into it */
if(!base) {
/* the existing tile has not been decoded yet, but we need the access to the raw pixels*/
base = mapcache_imageio_decode(ctx, response->data);
if(!base) return NULL;
}
response->data = NULL; /* the encoded data is now obsolete, as we will be merging the current tile */
/* we need to access the current tile's pixel data */
if(!tile->raw_image) {
tile->raw_image = mapcache_imageio_decode(ctx,tile->encoded_data);
if(!tile->raw_image) return NULL;
}
mapcache_image_merge(ctx, base, tile->raw_image);
} else {
/* we don't need to merge onto an existing tile and don't have access to the tile's encoded data.
*
* we don't encode the tile's raw image data just yet because we might need to merge another one on top
* of it later.
*/
base = tile->raw_image;
is_empty = 0;
}
}
if(!response->data) {
/* we need to encode the raw image data*/
if(base) {
if(req_tile->image_request.format) {
format = req_tile->image_request.format;
} else {
format = req_tile->tiles[0]->tileset->format;
if(!format) {
format = ctx->config->default_image_format; /* this one is always defined */
}
}
response->data = format->write(ctx, base, format);
if(GC_HAS_ERROR(ctx)) {
return NULL;
}
} else {
unsigned char empty[5] = {'#',0,0,0,0};
#ifdef DEBUG
if(!is_empty) {
ctx->set_error(ctx,500,"BUG: no image data to encode, but tile not marked as empty");
return NULL;
}
#endif
response->data = mapcache_empty_png_decode(ctx,req_tile->tiles[0]->grid_link->grid->tile_sx, req_tile->tiles[0]->grid_link->grid->tile_sy, empty,&is_empty); /* is_empty is unchanged and left to 1 */
format = mapcache_configuration_get_image_format(ctx->config,"PNG8");
}
}
/* compute the content-type */
t = mapcache_imageio_header_sniff(ctx,response->data);
if(t == GC_PNG)
apr_table_set(response->headers,"Content-Type","image/png");
else if(t == GC_JPEG)
apr_table_set(response->headers,"Content-Type","image/jpeg");
/* compute expiry headers */
if(expires) {
apr_time_t now = apr_time_now();
apr_time_t additional = apr_time_from_sec(expires);
apr_time_t texpires = now + additional;
apr_table_set(response->headers, "Cache-Control",apr_psprintf(ctx->pool, "max-age=%d", expires));
timestr = apr_palloc(ctx->pool, APR_RFC822_DATE_LEN);
apr_rfc822_date(timestr, texpires);
apr_table_setn(response->headers, "Expires", timestr);
}
return response;
}
mapcache_map* mapcache_assemble_maps(mapcache_context *ctx, mapcache_map **maps, int nmaps, mapcache_resample_mode mode)
{
mapcache_tile ***maptiles;
int *nmaptiles;
mapcache_tile **tiles;
mapcache_grid_link **effectively_used_grid_links;
mapcache_map *basemap = NULL;
int ntiles = 0;
int i;
maptiles = apr_pcalloc(ctx->pool,nmaps*sizeof(mapcache_tile**));
nmaptiles = apr_pcalloc(ctx->pool,nmaps*sizeof(int));
effectively_used_grid_links = apr_pcalloc(ctx->pool,nmaps*sizeof(mapcache_grid_link*));
for(i=0; i<nmaps; i++) {
mapcache_tileset_get_map_tiles(ctx,maps[i]->tileset,maps[i]->grid_link,
&maps[i]->extent, maps[i]->width, maps[i]->height,
&(nmaptiles[i]), &(maptiles[i]), &(effectively_used_grid_links[i]));
if(GC_HAS_ERROR(ctx)) return NULL;
ntiles += nmaptiles[i];
}
tiles = apr_pcalloc(ctx->pool,ntiles * sizeof(mapcache_tile*));
ntiles = 0;
for(i=0; i<nmaps; i++) {
int j;
for(j=0; j<nmaptiles[i]; j++) {
tiles[ntiles] = maptiles[i][j];
tiles[ntiles]->dimensions = maps[i]->dimensions;
ntiles++;
}
}
mapcache_prefetch_tiles(ctx,tiles,ntiles);
if(GC_HAS_ERROR(ctx)) return NULL;
for(i=0; i<nmaps; i++) {
int j,hasdata = 0;
for(j=0; j<nmaptiles[i]; j++) {
mapcache_tile *tile = maptiles[i][j];
if(tile->nodata) {
continue;
}
hasdata++;
/* update the map modification time if it is older than the tile mtime */
if(tile->mtime>maps[i]->mtime) {
maps[i]->mtime = tile->mtime;
}
/* set the map expiration delay to the tile expiration delay,
* either if the map hasn't got an expiration delay yet
* or if the tile expiration is shorter than the map expiration
*/
if(!maps[i]->expires || tile->expires<maps[i]->expires) {
maps[i]->expires = tile->expires;
}
}
if(hasdata) {
maps[i]->raw_image = mapcache_tileset_assemble_map_tiles(ctx,maps[i]->tileset,effectively_used_grid_links[i],
&maps[i]->extent, maps[i]->width, maps[i]->height,
nmaptiles[i], maptiles[i],
mode);
if(!basemap) {
basemap = maps[i];
} else {
mapcache_image_merge(ctx,basemap->raw_image,maps[i]->raw_image);
if(GC_HAS_ERROR(ctx)) return NULL;
if(maps[i]->mtime > basemap->mtime) basemap->mtime = maps[i]->mtime;
if(!basemap->expires || maps[i]->expires<basemap->expires) basemap->expires = maps[i]->expires;
apr_pool_cleanup_run(ctx->pool, maps[i]->raw_image->data, (void*)free) ;
maps[i]->raw_image = NULL;
}
} else {
maps[i]->nodata = 1;
}
}
if(!basemap) {
ctx->set_error(ctx,404,
"no tiles containing image data could be retrieved to create map (not in cache, and/or no source configured)");
return NULL;
}
return basemap;
}
mapcache_http_response *mapcache_core_get_map(mapcache_context *ctx, mapcache_request_get_map *req_map)
{
mapcache_image_format *format = NULL;
mapcache_http_response *response;
mapcache_map *basemap = NULL;
char *timestr;
#ifdef DEBUG
if(req_map->nmaps ==0) {
ctx->set_error(ctx,500,"BUG: get_map called with 0 maps");
return NULL;
}
#endif
if(req_map->getmap_strategy == MAPCACHE_GETMAP_ERROR) {
ctx->set_error(ctx, 404, "full wms support disabled");
return NULL;
}
format = NULL;
response = mapcache_http_response_create(ctx->pool);
if(req_map->getmap_strategy == MAPCACHE_GETMAP_ASSEMBLE) {
basemap = mapcache_assemble_maps(ctx, req_map->maps, req_map->nmaps, req_map->resample_mode);
if(GC_HAS_ERROR(ctx)) return NULL;
} else if(!ctx->config->non_blocking && req_map->getmap_strategy == MAPCACHE_GETMAP_FORWARD) {
int i;
basemap = req_map->maps[0];
for(i=0; i<req_map->nmaps; i++) {
if(!req_map->maps[i]->tileset->source) {
ctx->set_error(ctx,404,"cannot forward request for tileset %s: no source configured",
req_map->maps[i]->tileset->name);
return NULL;
}
}
basemap->tileset->source->render_map(ctx, basemap);
if(GC_HAS_ERROR(ctx)) return NULL;
if(req_map->nmaps>1) {
if(!basemap->raw_image) {
basemap->raw_image = mapcache_imageio_decode(ctx,basemap->encoded_data);
if(GC_HAS_ERROR(ctx)) return NULL;
}
for(i=1; i<req_map->nmaps; i++) {
mapcache_map *overlaymap = req_map->maps[i];
overlaymap->tileset->source->render_map(ctx, overlaymap);
if(GC_HAS_ERROR(ctx)) return NULL;
if(!overlaymap->raw_image) {
overlaymap->raw_image = mapcache_imageio_decode(ctx,overlaymap->encoded_data);
if(GC_HAS_ERROR(ctx)) return NULL;
}
if(GC_HAS_ERROR(ctx)) return NULL;
mapcache_image_merge(ctx,basemap->raw_image,overlaymap->raw_image);
if(GC_HAS_ERROR(ctx)) return NULL;
if(!basemap->expires || overlaymap->expires<basemap->expires) basemap->expires = overlaymap->expires;
}
}
} else {
ctx->set_error(ctx,400,"failed getmap, readonly mode");
return NULL;
}
if(basemap->raw_image) {
format = req_map->image_request.format; /* always defined, defaults to JPEG */
response->data = format->write(ctx,basemap->raw_image,format);
if(GC_HAS_ERROR(ctx)) {
return NULL;
}
} else {
/* this case happens when we have a forward strategy for a single tileset */
#ifdef DEBUG
if(!basemap->encoded_data) {
ctx->set_error(ctx,500,"###BUG### core_get_map failed with null encoded_data");
return NULL;
}
#endif
response->data = basemap->encoded_data;
}
/* compute the content-type */
if(format && format->mime_type) {
apr_table_set(response->headers,"Content-Type",format->mime_type);
} else {
mapcache_image_format_type t = mapcache_imageio_header_sniff(ctx,response->data);
if(t == GC_PNG)
apr_table_set(response->headers,"Content-Type","image/png");
else if(t == GC_JPEG)
apr_table_set(response->headers,"Content-Type","image/jpeg");
}
/* compute expiry headers */
if(basemap->expires) {
apr_time_t now = apr_time_now();
apr_time_t additional = apr_time_from_sec(basemap->expires);
apr_time_t texpires = now + additional;
apr_table_set(response->headers, "Cache-Control",
apr_psprintf(ctx->pool, "max-age=%d", basemap->expires));
timestr = apr_palloc(ctx->pool, APR_RFC822_DATE_LEN);
apr_rfc822_date(timestr, texpires);
apr_table_setn(response->headers, "Expires", timestr);
}
response->mtime = basemap->mtime;
return response;
}
mapcache_http_response *mapcache_core_proxy_request(mapcache_context *ctx, mapcache_request_proxy *req_proxy)
{
mapcache_http *http;
mapcache_http_response *response = mapcache_http_response_create(ctx->pool);
response->data = mapcache_buffer_create(30000,ctx->pool);
http = mapcache_http_clone(ctx, req_proxy->rule->http);
if(req_proxy->pathinfo) {
if( (*(req_proxy->pathinfo)) == '/' ||
http->url[strlen(http->url)-1] == '/')
http->url = apr_pstrcat(ctx->pool,http->url,req_proxy->pathinfo,NULL);
else
http->url = apr_pstrcat(ctx->pool,http->url,"/",req_proxy->pathinfo,NULL);
}
http->url = mapcache_http_build_url(ctx,http->url,req_proxy->params);
http->post_body = req_proxy->post_buf;
http->post_len = req_proxy->post_len;
if(req_proxy->headers) {
apr_table_overlap(http->headers, req_proxy->headers, APR_OVERLAP_TABLES_SET);
}
mapcache_http_do_request(ctx,http, response->data,response->headers,&response->code);
if(response->code !=0 && GC_HAS_ERROR(ctx)) {
/* the http request was successful, but the server returned an error */
ctx->clear_errors(ctx);
}
/*remove some headers that should not be sent back to the client*/
apr_table_unset(response->headers,"Transfer-Encoding");
apr_table_unset(response->headers,"Connection");
return response;
}
mapcache_http_response *mapcache_core_get_featureinfo(mapcache_context *ctx,
mapcache_request_get_feature_info *req_fi)
{
mapcache_feature_info *fi = req_fi->fi;
mapcache_tileset *tileset = fi->map.tileset;
if(!tileset->source) {
ctx->set_error(ctx,404,"cannot query tileset %s: no source defined",tileset->name);
return NULL;
}
if(tileset->source->info_formats) {
int i;
mapcache_http_response *response;
for(i=0; i<tileset->source->info_formats->nelts; i++) {
if(!strcmp(fi->format, APR_ARRAY_IDX(tileset->source->info_formats,i,char*))) {
break;
}
}
if(i == tileset->source->info_formats->nelts) {
ctx->set_error(ctx,404, "unsupported feature info format %s",fi->format);
return NULL;
}
tileset->source->query_info(ctx,fi);
if(GC_HAS_ERROR(ctx)) return NULL;
response = mapcache_http_response_create(ctx->pool);
response->data = fi->data;
apr_table_set(response->headers,"Content-Type",fi->format);
return response;
} else {
ctx->set_error(ctx,404, "tileset %s does not support feature info requests");
return NULL;
}
}
mapcache_http_response* mapcache_core_get_capabilities(mapcache_context *ctx, mapcache_service *service,
mapcache_request_get_capabilities *req_caps, char *url, char *path_info, mapcache_cfg *config)
{
mapcache_http_response *response;
service->create_capabilities_response(ctx,req_caps,url,path_info,config);
if(GC_HAS_ERROR(ctx)) {
return NULL;
}
response = mapcache_http_response_create(ctx->pool);
response->data = mapcache_buffer_create(0,ctx->pool);
response->data->size = strlen(req_caps->capabilities);
response->data->buf = req_caps->capabilities;
response->data->avail = response->data->size;
apr_table_set(response->headers,"Content-Type",req_caps->mime_type);
return response;
}
mapcache_http_response* mapcache_core_respond_to_error(mapcache_context *ctx)
{
char *msg;
//TODO: have the service format the error response
mapcache_http_response *response = mapcache_http_response_create(ctx->pool);
/* extract code and message from context */
response->code = ctx->_errcode;
if(!response->code) response->code = 500;
msg = ctx->_errmsg;
if(!msg) {
msg = apr_pstrdup(ctx->pool,"an unspecified error has occurred");
}
ctx->log(ctx,MAPCACHE_ERROR,msg);
if(ctx->config && ctx->config->reporting == MAPCACHE_REPORT_MSG) {
char *err_body = msg;
apr_table_set(response->headers, "Content-Type", "text/plain");
if(ctx->service && ctx->service->format_error) {
ctx->service->format_error(ctx,ctx->service,msg,&err_body,response->headers);
}
/* manually populate the mapcache_buffer with the error message */
response->data = mapcache_buffer_create(0,ctx->pool);
response->data->size = strlen(err_body);
response->data->buf = err_body;
response->data->avail = response->data->size;
} else if(ctx->config && ctx->config->reporting == MAPCACHE_REPORT_EMPTY_IMG) {
response->data = ctx->config->empty_image;
apr_table_set(response->headers, "Content-Type", ctx->config->default_image_format->mime_type);
apr_table_set(response->headers, "X-Mapcache-Error", msg);
} else if(ctx->config && ctx->config->reporting == MAPCACHE_REPORT_ERROR_IMG) {
mapcache_image *errim = mapcache_error_image(ctx,256,256,msg);
mapcache_buffer *buf = ctx->config->default_image_format->write(ctx,errim,ctx->config->default_image_format);
response->data = buf;
apr_table_set(response->headers, "Content-Type", ctx->config->default_image_format->mime_type);
apr_table_set(response->headers, "X-Mapcache-Error", msg);
}
return response;
}
/* vim: ts=2 sts=2 et sw=2
*/
|