432{
433 const uint32_t set_count = 2;
435 int pgrastpos[2] = {-1, -1};
437 uint32_t bandindex[2] = {0};
438 uint32_t hasbandindex[2] = {0};
439
440 uint32_t i;
441 uint32_t j;
442 uint32_t k;
443 uint32_t numBands;
444 int rtn;
445 int result;
446
447 for (i = 0, j = 0; i < set_count; i++) {
448
449 if (PG_ARGISNULL(j)) {
450 for (k = 0; k < i; k++) {
452 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
453 }
454 PG_RETURN_NULL();
455 }
456 pgrast[i] = (
rt_pgraster *) PG_DETOAST_DATUM(PG_GETARG_DATUM(j));
457 pgrastpos[i] = j;
458 j++;
459
460
462 if (!rast[i]) {
463 for (k = 0; k <= i; k++) {
464 if (k < i)
466 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
467 }
468 elog(ERROR, "RASTER_contains: Could not deserialize the %s raster", i < 1 ? "first" : "second");
469 PG_RETURN_NULL();
470 }
471
472
474 if (numBands < 1) {
475 elog(NOTICE, "The %s raster provided has no bands", i < 1 ? "first" : "second");
476 if (i > 0) i++;
477 for (k = 0; k < i; k++) {
479 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
480 }
481 PG_RETURN_NULL();
482 }
483
484
485 if (!PG_ARGISNULL(j)) {
486 bandindex[i] = PG_GETARG_INT32(j);
487 if (bandindex[i] < 1 || bandindex[i] > numBands) {
488 elog(NOTICE, "Invalid band index (must use 1-based) for the %s raster. Returning NULL", i < 1 ? "first" : "second");
489 if (i > 0) i++;
490 for (k = 0; k < i; k++) {
492 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
493 }
494 PG_RETURN_NULL();
495 }
496 hasbandindex[i] = 1;
497 }
498 else
499 hasbandindex[i] = 0;
502 j++;
503 }
504
505
506 if (
507 (hasbandindex[0] && !hasbandindex[1]) ||
508 (!hasbandindex[0] && hasbandindex[1])
509 ) {
510 elog(NOTICE, "Missing band index. Band indices must be provided for both rasters if any one is provided");
511 for (k = 0; k < set_count; k++) {
513 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
514 }
515 PG_RETURN_NULL();
516 }
517
518
520 for (k = 0; k < set_count; k++) {
522 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
523 }
524 elog(ERROR, "The two rasters provided have different SRIDs");
525 PG_RETURN_NULL();
526 }
527
529 rast[0], (hasbandindex[0] ? (int)bandindex[0] - 1 : -1),
530 rast[1], (hasbandindex[1] ? (int)bandindex[1] - 1 : -1),
531 &result
532 );
533 for (k = 0; k < set_count; k++) {
535 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
536 }
537
539 elog(ERROR, "RASTER_contains: Could not test that the first raster contains the second raster");
540 PG_RETURN_NULL();
541 }
542
543 PG_RETURN_BOOL(result);
544}
rt_errorstate rt_raster_contains(rt_raster rast1, int nband1, rt_raster rast2, int nband2, int *contains)
Return ES_ERROR if error occurred in function.
int32_t rt_raster_get_srid(rt_raster raster)
Get raster's SRID.
void rt_raster_destroy(rt_raster raster)
Release memory associated to a raster.
uint16_t rt_raster_get_num_bands(rt_raster raster)
rt_raster rt_raster_deserialize(void *serialized, int header_only)
Return a raster from a serialized form.
#define POSTGIS_RT_DEBUGF(level, msg,...)