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
|
/******************************************************************************
* File : PostGISRasterRasterBand.cpp
* Project: PostGIS Raster driver
* Purpose: GDAL Raster Band implementation for PostGIS Raster driver
* Author: Jorge Arevalo, jorgearevalo@deimos-space.com
*
* Last changes:
* $Id: $
*
******************************************************************************
* Copyright (c) 2009 - 2011, Jorge Arevalo, jorge.arevalo@deimos-space.com
*
* 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.
******************************************************************************/
#include "postgisraster.h"
#include "ogr_api.h"
#include "ogr_geometry.h"
#include "gdal_priv.h"
#include "gdal.h"
#include <string>
#include "cpl_string.h"
#include "gdal_vrt.h"
#include "vrtdataset.h"
#include "memdataset.h"
/**
* \brief Constructor.
* Parameters:
* - PostGISRasterDataset *: The Dataset this band belongs to
* - int: the band number
* - GDALDataType: The data type for this band
* - double: The nodata value. Could be any kind of data (GByte, GUInt16,
* GInt32...) but the variable has the bigger type.
* - GBool: if the data type is signed byte or not. If yes, the SIGNEDBYTE
* metadata value is added to IMAGE_STRUCTURE domain
* - int: The bit depth, to add NBITS as metadata value in IMAGE_STRUCTURE
* domain.
* TODO: Comment the rest of parameters
*/
PostGISRasterRasterBand::PostGISRasterRasterBand(PostGISRasterDataset *poDS,
int nBand, GDALDataType hDataType, GBool bHasNoDataValue, double dfNodata,
GBool bSignedByte,int nBitDepth, int nFactor, int nBlockXSize, int nBlockYSize,
GBool bIsOffline, char * inPszSchema, char * inPszTable, char * inPszColumn)
{
/* Basic properties */
this->poDS = poDS;
this->nBand = nBand;
this->bIsOffline = bIsOffline;
eAccess = poDS->GetAccess();
eDataType = hDataType;
this->bHasNoDataValue = bHasNoDataValue;
dfNoDataValue = dfNodata;
if (poDS->nBands == 1) {
eBandInterp = GCI_GrayIndex;
}
else if (poDS->nBands == 3) {
if (nBand == 1)
eBandInterp = GCI_RedBand;
else if( nBand == 2 )
eBandInterp = GCI_GreenBand;
else if( nBand == 3 )
eBandInterp = GCI_BlueBand;
else
eBandInterp = GCI_Undefined;
}
else {
eBandInterp = GCI_Undefined;
}
/**************************************************************************
* TODO: Set a non arbitrary blocksize. In case or regular blocking, this is
* easy, otherwise, does it make any sense? Any single tile has its own
* dimensions.
*************************************************************************/
if (poDS->bRegularBlocking) {
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::Constructor: "
"Band %d has regular blocking", nBand);
this->nBlockXSize = nBlockXSize;
this->nBlockYSize = nBlockYSize;
}
else {
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::Constructor: "
"Band %d does not have regular blocking", nBand);
/*
this->nBlockXSize = MIN(poDS->nRasterXSize, DEFAULT_BLOCK_X_SIZE);
this->nBlockYSize = MIN(poDS->nRasterYSize, DEFAULT_BLOCK_Y_SIZE);
*/
this->nBlockXSize = poDS->nRasterXSize;
this->nBlockYSize = 1;
}
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::Constructor: "
"Block size (%dx%d)", this->nBlockXSize, this->nBlockYSize);
// Add pixeltype to image structure domain
if (bSignedByte == true) {
SetMetadataItem("PIXELTYPE", "SIGNEDBYTE", "IMAGE_STRUCTURE" );
}
// Add NBITS to metadata only for sub-byte types
if (nBitDepth < 8)
SetMetadataItem("NBITS", CPLString().Printf( "%d", nBitDepth ),
"IMAGE_STRUCTURE" );
nOverviewFactor = nFactor;
this->pszSchema = (inPszSchema) ? inPszSchema : poDS->pszSchema;
this->pszTable = (inPszTable) ? inPszTable : poDS->pszTable;
this->pszColumn = (inPszColumn) ? inPszColumn : poDS->pszColumn;
/**********************************************************
* Check overviews. Query RASTER_OVERVIEWS table for
* existing overviews, only in case we are on level 0
* TODO: can we do this without querying RASTER_OVERVIEWS?
* How do we know the number of overviews? Is an inphinite
* loop...
**********************************************************/
if (nOverviewFactor == 0) {
CPLString osCommand;
PGresult * poResult = NULL;
int i = 0;
int nFetchOvFactor = 0;
char * pszOvSchema = NULL;
char * pszOvTable = NULL;
char * pszOvColumn = NULL;
nRasterXSize = poDS->GetRasterXSize();
nRasterYSize = poDS->GetRasterYSize();
osCommand.Printf("select o_table_name, overview_factor, o_raster_column, "
"o_table_schema from raster_overviews where r_table_schema = "
"'%s' and r_table_name = '%s' and r_raster_column = '%s'",
poDS->pszSchema, poDS->pszTable, poDS->pszColumn);
poResult = PQexec(poDS->poConn, osCommand.c_str());
if (poResult != NULL && PQresultStatus(poResult) == PGRES_TUPLES_OK &&
PQntuples(poResult) > 0) {
/* Create overviews */
nOverviewCount = PQntuples(poResult);
papoOverviews = (PostGISRasterRasterBand **)VSICalloc(nOverviewCount,
sizeof(PostGISRasterRasterBand *));
if (papoOverviews == NULL) {
CPLError(CE_Warning, CPLE_OutOfMemory, "Couldn't create "
"overviews for band %d\n", nBand);
PQclear(poResult);
return;
}
for(i = 0; i < nOverviewCount; i++) {
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::Constructor: "
"Creating overview for band %d", nBand);
nFetchOvFactor = atoi(PQgetvalue(poResult, i, 1));
pszOvSchema = CPLStrdup(PQgetvalue(poResult, i, 3));
pszOvTable = CPLStrdup(PQgetvalue(poResult, i, 0));
pszOvColumn = CPLStrdup(PQgetvalue(poResult, i, 2));
/**
* NOTE: Overview bands are not considered to be a part of a
* dataset, but we use the same dataset for all the overview
* bands just for simplification (we'll need to access the table
* and schema names). But in method GetDataset, NULL is return
* if we're talking about an overview band
*/
papoOverviews[i] = new PostGISRasterRasterBand(poDS, nBand,
hDataType, bHasNoDataValue, dfNodata, bSignedByte, nBitDepth,
nFetchOvFactor, nBlockXSize, nBlockYSize, bIsOffline, pszOvSchema,
pszOvTable, pszOvColumn);
}
PQclear(poResult);
}
else {
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::Constructor: "
"Band %d does not have overviews", nBand);
nOverviewCount = 0;
papoOverviews = NULL;
if (poResult)
PQclear(poResult);
}
}
/************************************
* We are in an overview level. Set
* raster size to its value
************************************/
else {
/*
* No overviews inside an overview (all the overviews are from original
* band
*/
nOverviewCount = 0;
papoOverviews = NULL;
nRasterXSize = (int) floor((double)poDS->GetRasterXSize() / nOverviewFactor);
nRasterYSize = (int) floor((double)poDS->GetRasterYSize() / nOverviewFactor);
}
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand constructor: Band "
"created (srid = %d)", poDS->nSrid);
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand constructor: Band "
"size: (%d X %d)", nRasterXSize, nRasterYSize);
}
/***********************************************
* \brief: Band destructor
***********************************************/
PostGISRasterRasterBand::~PostGISRasterRasterBand()
{
int i;
if (papoOverviews) {
for(i = 0; i < nOverviewCount; i++)
delete papoOverviews[i];
CPLFree(papoOverviews);
}
}
/**
*
**/
GDALDataType PostGISRasterRasterBand::TranslateDataType(const char * pszDataType)
{
if (EQUALN(pszDataType, "1BB", 3 * sizeof (char)) ||
EQUALN(pszDataType, "2BUI", 4 * sizeof (char)) ||
EQUALN(pszDataType, "4BUI", 4 * sizeof (char)) ||
EQUALN(pszDataType, "8BUI", 4 * sizeof (char)) ||
EQUALN(pszDataType, "8BSI", 4 * sizeof (char)))
return GDT_Byte;
else if (EQUALN(pszDataType, "16BSI", 5 * sizeof (char)))
return GDT_Int16;
else if (EQUALN(pszDataType, "16BUI", 5 * sizeof (char)))
return GDT_UInt16;
else if (EQUALN(pszDataType, "32BSI", 5 * sizeof (char)))
return GDT_Int32;
else if (EQUALN(pszDataType, "32BUI", 5 * sizeof (char)))
return GDT_UInt32;
else if (EQUALN(pszDataType, "32BF", 4 * sizeof (char)))
return GDT_Float32;
else if (EQUALN(pszDataType, "64BF", 4 * sizeof (char)))
return GDT_Float64;
else
return GDT_Unknown;
}
/**
* Read/write a region of image data for this band.
*
* This method allows reading a region of a PostGISRasterBanda into a buffer.
* The write support is still under development
*
* The function fetches all the raster data that intersects with the region
* provided, and store the data in the GDAL cache.
*
* It automatically takes care of data type translation if the data type
* (eBufType) of the buffer is different than that of the PostGISRasterRasterBand.
*
* The nPixelSpace and nLineSpace parameters allow reading into from various
* organization of buffers.
*
* @param eRWFlag Either GF_Read to read a region of data (GF_Write, to write
* a region of data, yet not supported)
*
* @param nXOff The pixel offset to the top left corner of the region of the
* band to be accessed. This would be zero to start from the left side.
*
* @param nYOff The line offset to the top left corner of the region of the band
* to be accessed. This would be zero to start from the top.
*
* @param nXSize The width of the region of the band to be accessed in pixels.
*
* @param nYSize The height of the region of the band to be accessed in lines.
*
* @param pData The buffer into which the data should be read, or from which it
* should be written. This buffer must contain at least
* nBufXSize * nBufYSize * nBandCount words of type eBufType. It is organized in
* left to right,top to bottom pixel order. Spacing is controlled by the
* nPixelSpace, and nLineSpace parameters.
*
* @param nBufXSize the width of the buffer image into which the desired region
* is to be read, or from which it is to be written.
*
* @param nBufYSize the height of the buffer image into which the desired region
* is to be read, or from which it is to be written.
*
* @param eBufType the type of the pixel values in the pData data buffer. The
* pixel values will automatically be translated to/from the
* PostGISRasterRasterBand data type as needed.
*
* @param nPixelSpace The byte offset from the start of one pixel value in pData
* to the start of the next pixel value within a scanline. If defaulted (0) the
* size of the datatype eBufType is used.
*
* @param nLineSpace The byte offset from the start of one scanline in pData to
* the start of the next. If defaulted (0) the size of the datatype
* eBufType * nBufXSize is used.
*
* @return CE_Failure if the access fails, otherwise CE_None.
*/
CPLErr PostGISRasterRasterBand::IRasterIO(GDALRWFlag eRWFlag, int nXOff, int nYOff,
int nXSize, int nYSize, void * pData, int nBufXSize, int nBufYSize,
GDALDataType eBufType, int nPixelSpace, int nLineSpace)
{
double adfTransform[6];
double adfProjWin[8];
int ulx, uly, lrx, lry;
CPLString osCommand;
PGresult* poResult = NULL;
int iTuplesIndex;
int nTuples = 0;
GByte* pbyData = NULL;
GByte** ppbyBandData = NULL;
int nWKBLength = 0;
int nBandDataLength;
int nBandDataSize;
int nBufDataSize;
int nTileWidth;
int nTileHeight;
double dfTileScaleX;
double dfTileScaleY;
double dfTileUpperLeftX;
double dfTileUpperLeftY;
char * pszDataType = NULL;
GDALDataType eTileDataType;
int nTileDataTypeSize;
double dfTileBandNoDataValue;
VRTDatasetH vrtDataset;
GDALDataset ** memDatasets;
GDALRasterBandH memRasterBand;
GDALRasterBandH vrtRasterBand;
char szMemOpenInfo[100];
char szTmp[64];
char szTileWidth[64];
char szTileHeight[64];
CPLErr err;
PostGISRasterDataset * poPostGISRasterDS = (PostGISRasterDataset*)poDS;
int nSrcXOff, nSrcYOff, nDstXOff, nDstYOff;
int nDstXSize, nDstYSize;
double xRes, yRes;
/**
* TODO: Write support not implemented yet
**/
if (eRWFlag == GF_Write) {
CPLError(CE_Failure, CPLE_NotSupported,
"Writing through PostGIS Raster band not supported yet");
return CE_Failure;
}
nBandDataSize = GDALGetDataTypeSize(eDataType) / 8;
nBufDataSize = GDALGetDataTypeSize( eBufType ) / 8;
/**************************************************************************
* Do we have overviews that would be appropriate to satisfy this request?
*************************************************************************/
if( (nBufXSize < nXSize || nBufYSize < nYSize) && GetOverviewCount() > 0 ) {
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::IRasterIO: "
"nBufXSize = %d, nBufYSize = %d, nXSize = %d, nYSize = %d "
"- OverviewRasterIO call", nBufXSize, nBufYSize, nXSize, nYSize);
if( OverviewRasterIO( eRWFlag, nXOff, nYOff, nXSize, nYSize, pData,
nBufXSize, nBufYSize, eBufType, nPixelSpace, nLineSpace ) == CE_None )
return CE_None;
}
/**************************************************************************
* Get all the raster rows that are intersected by the window requested
*************************************************************************/
// We first construct a polygon to intersect with
poPostGISRasterDS->GetGeoTransform(adfTransform);
ulx = nXOff;
uly = nYOff;
lrx = nXOff + nXSize * nBandDataSize;
lry = nYOff + nYSize * nBandDataSize;
// Calculate right pixel resolution
xRes = (nOverviewFactor == 0) ?
adfTransform[GEOTRSFRM_WE_RES] :
adfTransform[GEOTRSFRM_WE_RES] * nOverviewFactor;
yRes = (nOverviewFactor == 0) ?
adfTransform[GEOTRSFRM_NS_RES] :
adfTransform[GEOTRSFRM_NS_RES] * nOverviewFactor;
adfProjWin[0] = adfTransform[GEOTRSFRM_TOPLEFT_X] +
ulx * xRes +
uly * adfTransform[GEOTRSFRM_ROTATION_PARAM1];
adfProjWin[1] = adfTransform[GEOTRSFRM_TOPLEFT_Y] +
ulx * adfTransform[GEOTRSFRM_ROTATION_PARAM2] +
uly * yRes;
adfProjWin[2] = adfTransform[GEOTRSFRM_TOPLEFT_X] +
lrx * xRes +
uly * adfTransform[GEOTRSFRM_ROTATION_PARAM1];
adfProjWin[3] = adfTransform[GEOTRSFRM_TOPLEFT_Y] +
lrx * adfTransform[GEOTRSFRM_ROTATION_PARAM2] +
uly * yRes;
adfProjWin[4] = adfTransform[GEOTRSFRM_TOPLEFT_X] +
lrx * xRes +
lry * adfTransform[GEOTRSFRM_ROTATION_PARAM1];
adfProjWin[5] = adfTransform[GEOTRSFRM_TOPLEFT_Y] +
lrx * adfTransform[GEOTRSFRM_ROTATION_PARAM2] +
lry * yRes;
adfProjWin[6] = adfTransform[GEOTRSFRM_TOPLEFT_X] +
ulx * xRes +
lry * adfTransform[GEOTRSFRM_ROTATION_PARAM1];
adfProjWin[7] = adfTransform[GEOTRSFRM_TOPLEFT_Y] +
ulx * adfTransform[GEOTRSFRM_ROTATION_PARAM2] +
lry * yRes;
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::IRasterIO: "
"Buffer size = (%d, %d), Region size = (%d, %d)",
nBufXSize, nBufYSize, nXSize, nYSize);
if (poPostGISRasterDS->pszWhere == NULL) {
osCommand.Printf("SELECT st_band(%s, %d), st_width(%s), st_height(%s), st_bandpixeltype(%s, %d), "
"st_bandnodatavalue(%s, %d), st_scalex(%s), st_scaley(%s), st_upperleftx(%s), st_upperlefty(%s) "
"FROM %s.%s WHERE st_intersects(%s, st_polygonfromtext('POLYGON((%.17f %.17f, %.17f %.17f, "
"%.17f %.17f, %.17f %.17f, %.17f %.17f))', %d))", pszColumn, nBand, pszColumn, pszColumn, pszColumn, nBand, pszColumn,
nBand, pszColumn, pszColumn, pszColumn, pszColumn, pszSchema, pszTable, pszColumn,
adfProjWin[0], adfProjWin[1], adfProjWin[2], adfProjWin[3], adfProjWin[4], adfProjWin[5],
adfProjWin[6], adfProjWin[7], adfProjWin[0], adfProjWin[1], poPostGISRasterDS->nSrid);
}
else {
osCommand.Printf("SELECT st_band(%s, %d), st_width(%s), st_height(%s), st_bandpixeltype(%s, %d), "
"st_bandnodatavalue(%s, %d), st_scalex(%s), st_scaley(%s), st_upperleftx(%s), st_upperlefty(%s) "
"FROM %s.%s WHERE (%s) AND st_intersects(%s, st_polygonfromtext('POLYGON((%.17f %.17f, %.17f %.17f, "
"%.17f %.17f, %.17f %.17f, %.17f %.17f))', %d))", pszColumn, nBand, pszColumn, pszColumn, pszColumn, nBand, pszColumn,
nBand, pszColumn, pszColumn, pszColumn, pszColumn, pszSchema, pszTable, poPostGISRasterDS->pszWhere,
pszColumn, adfProjWin[0], adfProjWin[1], adfProjWin[2], adfProjWin[3], adfProjWin[4], adfProjWin[5],
adfProjWin[6], adfProjWin[7], adfProjWin[0], adfProjWin[1], poPostGISRasterDS->nSrid);
}
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::IRasterIO(): Query = %s", osCommand.c_str());
poResult = PQexec(poPostGISRasterDS->poConn, osCommand.c_str());
if (poResult == NULL || PQresultStatus(poResult) != PGRES_TUPLES_OK ||
PQntuples(poResult) < 0) {
if (poResult)
PQclear(poResult);
CPLError(CE_Failure, CPLE_AppDefined, "Error retrieving raster data from database");
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::IRasterIO(): %s",
PQerrorMessage(poPostGISRasterDS->poConn));
return CE_Failure;
}
/**
* No data. Return the buffer filled with nodata values
**/
else if (PQntuples(poResult) == 0) {
PQclear(poResult);
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::IRasterIO(): Null block");
memset(pData, dfNoDataValue, nBufDataSize * nBufXSize * nBufYSize);
return CE_None;
}
nTuples = PQntuples(poResult);
/**************************************************************************
* Allocate memory for MEM dataset
* TODO: In case of memory error, provide a different alternative
*************************************************************************/
memDatasets = (GDALDataset **)VSICalloc(nTuples, sizeof(GDALDataset *));
if (!memDatasets) {
PQclear(poResult);
CPLError(CE_Failure, CPLE_AppDefined, "Memory error while trying to read band data "
"from database");
return CE_Failure;
}
/**************************************************************************
* Create an empty in-memory VRT dataset
* TODO: In case of memory error, provide a different alternative
*************************************************************************/
vrtDataset = VRTCreate(nXSize, nYSize);
if (!vrtDataset) {
PQclear(poResult);
CPLFree(memDatasets);
CPLError(CE_Failure, CPLE_AppDefined, "Memory error while trying to read band data "
"from database");
return CE_Failure;
}
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::IRasterIO: VRT Dataset "
"of (%d, %d) created", nXSize, nYSize);
// NOTE: Do NOT add a Dataset description, or the VRT file will be written to disk.
// This is a memory only dataset.
GDALSetProjection(vrtDataset, GDALGetProjectionRef((GDALDatasetH)this->poDS));
GDALSetGeoTransform(vrtDataset, adfTransform);
/**
* Create one VRT Raster Band. It will contain the same band of all tiles
* as Simple Sources
**/
VRTAddBand(vrtDataset, eDataType, NULL);
vrtRasterBand = GDALGetRasterBand(vrtDataset, 1);
/**
* Allocate memory for MEM data pointers
**/
ppbyBandData = (GByte **)VSICalloc(nTuples, sizeof(GByte *));
if (!ppbyBandData) {
PQclear(poResult);
CPLFree(memDatasets);
GDALClose(vrtDataset);
CPLError(CE_Failure, CPLE_AppDefined, "Memory error while trying to read band data "
"from database");
return CE_Failure;
}
/**************************************************************************
* Now, for each block, create a MEM dataset
* TODO: What if whe have a really BIG amount of data fetched from db? CURSORS
*************************************************************************/
for(iTuplesIndex = 0; iTuplesIndex < nTuples; iTuplesIndex++) {
/**
* Fetch data from result
**/
pbyData = CPLHexToBinary(PQgetvalue(poResult, iTuplesIndex, 0), &nWKBLength);
nTileWidth = atoi(PQgetvalue(poResult, iTuplesIndex, 1));
nTileHeight = atoi(PQgetvalue(poResult, iTuplesIndex, 2));
pszDataType = CPLStrdup(PQgetvalue(poResult, iTuplesIndex, 3));
dfTileBandNoDataValue = atof(PQgetvalue(poResult, iTuplesIndex, 4));
dfTileScaleX = atof(PQgetvalue(poResult, iTuplesIndex, 5));
dfTileScaleY = atof(PQgetvalue(poResult, iTuplesIndex, 6));
dfTileUpperLeftX = atof(PQgetvalue(poResult, iTuplesIndex, 7));
dfTileUpperLeftY = atof(PQgetvalue(poResult, iTuplesIndex, 8));
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::IRasterIO: Tile of "
"(%d, %d) px created. With pixel size of (%f, %f) and located at "
"(%f, %f)", nTileWidth, nTileHeight, dfTileScaleX, dfTileScaleY,
dfTileUpperLeftX, dfTileUpperLeftY);
/**
* Calculate some useful parameters
**/
eTileDataType = TranslateDataType(pszDataType);
nTileDataTypeSize = GDALGetDataTypeSize(eTileDataType) / 8;
nBandDataLength = nTileWidth * nTileHeight * nTileDataTypeSize;
ppbyBandData[iTuplesIndex] = (GByte *)
VSIMalloc(nBandDataLength * sizeof(GByte));
if (!ppbyBandData[iTuplesIndex]) {
CPLError(CE_Warning, CPLE_AppDefined, "Could not allocate memory for "
"MEMDataset, skipping. The result image may contain gaps");
continue;
}
/**
* Get the pointer to the band pixels
**/
memcpy(ppbyBandData[iTuplesIndex],
GET_BAND_DATA(pbyData, 1, nTileDataTypeSize, nBandDataLength),
nBandDataLength);
/**
* Create new MEM dataset, based on in-memory array, to hold the pixels.
* The dataset will only have 1 band
**/
memset(szTmp, 0, sizeof(szTmp));
CPLPrintPointer(szTmp, ppbyBandData[iTuplesIndex], sizeof(szTmp));
memset(szTileWidth, 0, sizeof(szTileWidth));
CPLPrintInt32(szTileWidth, (GInt32)nTileWidth, sizeof(nTileWidth));
memset(szTileHeight, 0, sizeof(szTileHeight));
CPLPrintInt32(szTileHeight, (GInt32)nTileHeight, sizeof(nTileHeight));
memset(szMemOpenInfo, 0, sizeof(szMemOpenInfo));
sprintf(szMemOpenInfo, "MEM:::DATAPOINTER=%s,PIXELS=%d,LINES=%d,DATATYPE=%s",
szTmp, nTileWidth, nTileHeight, GDALGetDataTypeName(eTileDataType));
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::IRasterIO: MEMDataset "
"open info = %s", szMemOpenInfo);
GDALOpenInfo oOpenInfo(szMemOpenInfo, GA_ReadOnly, NULL);
memDatasets[iTuplesIndex] = MEMDataset::Open(&oOpenInfo);
if (!memDatasets[iTuplesIndex]) {
CPLError(CE_Warning, CPLE_AppDefined, "Could not create MEMDataset, "
"skipping. The result image may contain gaps");
continue;
}
GDALSetDescription(memDatasets[iTuplesIndex], szMemOpenInfo);
/**
* Get MEM raster band, to add it as simple source.
**/
memRasterBand = (GDALRasterBandH)memDatasets[iTuplesIndex]->GetRasterBand(1);
if (!memRasterBand) {
CPLError(CE_Warning, CPLE_AppDefined, "Could not get MEMRasterBand , "
"skipping. The result image may contain gaps");
continue;
}
((MEMRasterBand *)memRasterBand)->SetNoDataValue(dfTileBandNoDataValue);
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::IRasterIO: Adding "
"VRT Complex Source");
/**
* Get source and destination windows for the simple source (first check source
* and destination bounding boxes match. Otherwise, skip this data)
**/
if (dfTileUpperLeftX + nTileWidth * dfTileScaleX < adfProjWin[0]) {
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::IRasterIO: "
"dfTileUpperLeftX = %f, nTileWidth = %d, dfTileScaleX = %f, "
"RasterDataset minx = %f", dfTileUpperLeftX, nTileWidth, dfTileScaleX,
adfProjWin[0]);
continue;
}
if (dfTileUpperLeftX > adfProjWin[4]) {
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::IRasterIO: "
"dfTileUpperLeftX = %f, RasterDataset maxx = %f", dfTileUpperLeftX,
adfProjWin[4]);
continue;
}
if (dfTileUpperLeftY + nTileHeight * dfTileScaleY > adfProjWin[1]) {
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::IRasterIO: "
"dfTileUpperLeftY = %f, nTileHeight = %d, ns res = %f, "
"RasterDataset maxy = %f", dfTileUpperLeftY, nTileHeight, dfTileScaleY,
adfProjWin[1]);
continue;
}
if (dfTileUpperLeftY < adfProjWin[5]) {
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::IRasterIO: "
"dfTileUpperLeftY = %f, RasterDataset miny = %f", dfTileUpperLeftY,
adfProjWin[5]);
continue;
}
if (dfTileUpperLeftX < adfProjWin[0]) {
nSrcXOff = (int)((adfProjWin[0] - dfTileUpperLeftX) /
dfTileScaleX + 0.5);
nDstXOff = 0;
}
else {
nSrcXOff = 0;
nDstXOff = (int)(0.5 + (dfTileUpperLeftX - adfProjWin[0]) /
xRes);
}
if (adfProjWin[1] < dfTileUpperLeftY) {
nSrcYOff = (int)((dfTileUpperLeftY - adfProjWin[1]) /
fabs(dfTileScaleY) + 0.5);
nDstYOff = 0;
}
else {
nSrcYOff = 0;
nDstYOff = (int)(0.5 + (adfProjWin[1] - dfTileUpperLeftY) /
fabs(yRes));
}
nDstXSize = (int)(0.5 + nTileWidth * dfTileScaleX / xRes);
nDstYSize = (int)(0.5 + nTileHeight * fabs(dfTileScaleY) / fabs(yRes));
/**
* Add the mem raster band as new complex source band (so, I can specify a nodata value)
**/
VRTAddComplexSource(vrtRasterBand, memRasterBand, nSrcXOff, nSrcYOff, nTileWidth, nTileHeight,
nDstXOff, nDstYOff, nDstXSize, nDstYSize, 0, 1, dfTileBandNoDataValue);
CPLFree(pbyData);
CPLFree(pszDataType);
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::IRasterIO(): VRT complex source added");
}
PQclear(poResult);
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::IRasterIO(): VRT dataset created");
/**
* We've constructed the VRT Dataset based on the window requested. So, we always
* start from 0
**/
nXOff = nYOff = 0;
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::IRasterIO(): The window requested is "
"from (%d, %d) of size (%d, %d). Buffer of size (%d, %d)", nXOff, nYOff,
nXSize, nYSize, nBufXSize, nBufYSize);
// Execute VRT RasterIO over the band
err = ((VRTRasterBand *)vrtRasterBand)->RasterIO(eRWFlag, nXOff, nYOff, nXSize,
nYSize, pData, nBufXSize, nBufYSize, eBufType, nPixelSpace, nLineSpace);
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::IRasterIO(): Data read");
GDALClose(vrtDataset);
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::IRasterIO(): VRTDataset released");
// Free resources
for(iTuplesIndex = 0; iTuplesIndex < nTuples; iTuplesIndex++) {
if (ppbyBandData[iTuplesIndex])
VSIFree(ppbyBandData[iTuplesIndex]);
delete memDatasets[iTuplesIndex];
//GDALClose(memDatasets[iTuplesIndex]);
}
VSIFree(ppbyBandData);
VSIFree(memDatasets);
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::IRasterIO(): MEMDatasets were released");
return err;
}
/**
* \brief Set the no data value for this band.
* Parameters:
* - double: The nodata value
* Returns:
* - CE_None.
*/
CPLErr PostGISRasterRasterBand::SetNoDataValue(double dfNewValue) {
dfNoDataValue = dfNewValue;
return CE_None;
}
/**
* \brief Fetch the no data value for this band.
* Parameters:
* - int *: pointer to a boolean to use to indicate if a value is actually
* associated with this layer. May be NULL (default).
* Returns:
* - double: the nodata value for this band.
*/
double PostGISRasterRasterBand::GetNoDataValue(int *pbSuccess) {
if (pbSuccess != NULL)
*pbSuccess = (int) bHasNoDataValue;
return dfNoDataValue;
}
/***************************************************
* \brief Return the number of overview layers available
***************************************************/
int PostGISRasterRasterBand::GetOverviewCount()
{
return (nOverviewFactor) ?
0 :
nOverviewCount;
}
/**********************************************************
* \brief Fetch overview raster band object
**********************************************************/
GDALRasterBand * PostGISRasterRasterBand::GetOverview(int i)
{
return (i >= 0 && i < GetOverviewCount()) ?
(GDALRasterBand *)papoOverviews[i] : GDALRasterBand::GetOverview(i);
}
/*****************************************************
* \brief Read a natural block of raster band data
*****************************************************/
CPLErr PostGISRasterRasterBand::IReadBlock(int nBlockXOff, int nBlockYOff, void*
pImage)
{
int nPixelSize = GDALGetDataTypeSize(eDataType)/8;
int nReadXSize, nReadYSize;
if( (nBlockXOff+1) * nBlockXSize > GetXSize() )
nReadXSize = GetXSize() - nBlockXOff * nBlockXSize;
else
nReadXSize = nBlockXSize;
if( (nBlockYOff+1) * nBlockYSize > GetYSize() )
nReadYSize = GetYSize() - nBlockYOff * nBlockYSize;
else
nReadYSize = nBlockYSize;
CPLDebug("PostGIS_Raster", "PostGISRasterRasterBand::IReadBlock: "
"Calling to IRasterIO");
return IRasterIO( GF_Read,
nBlockXOff * nBlockXSize, nBlockYOff * nBlockYSize,
nReadXSize, nReadYSize,
pImage, nReadXSize, nReadYSize, eDataType,
nPixelSize, nPixelSize * nBlockXSize );
}
/**
* \brief How should this band be interpreted as color?
* GCI_Undefined is returned when the format doesn't know anything about the
* color interpretation.
**/
GDALColorInterp PostGISRasterRasterBand::GetColorInterpretation()
{
return eBandInterp;
}
|