/usr/include/gdal/vrtdataset.h is in libgdal1-dev 1.7.3-6ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /******************************************************************************
* $Id: vrtdataset.h 19819 2010-06-09 16:52:42Z warmerdam $
*
* Project: Virtual GDAL Datasets
* Purpose: Declaration of virtual gdal dataset classes.
* Author: Frank Warmerdam, warmerdam@pobox.com
*
******************************************************************************
* Copyright (c) 2001, Frank Warmerdam <warmerdam@pobox.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.
****************************************************************************/
#ifndef VIRTUALDATASET_H_INCLUDED
#define VIRTUALDATASET_H_INCLUDED
#include "gdal_priv.h"
#include "gdal_pam.h"
#include "gdal_vrt.h"
#include "cpl_hash_set.h"
int VRTApplyMetadata( CPLXMLNode *, GDALMajorObject * );
CPLXMLNode *VRTSerializeMetadata( GDALMajorObject * );
/************************************************************************/
/* VRTSource */
/************************************************************************/
class VRTSource
{
public:
virtual ~VRTSource();
virtual CPLErr RasterIO( int nXOff, int nYOff, int nXSize, int nYSize,
void *pData, int nBufXSize, int nBufYSize,
GDALDataType eBufType,
int nPixelSpace, int nLineSpace ) = 0;
virtual CPLErr XMLInit( CPLXMLNode *psTree, const char * ) = 0;
virtual CPLXMLNode *SerializeToXML( const char *pszVRTPath ) = 0;
virtual void GetFileList(char*** ppapszFileList, int *pnSize,
int *pnMaxSize, CPLHashSet* hSetFiles);
};
typedef VRTSource *(*VRTSourceParser)(CPLXMLNode *, const char *);
VRTSource *VRTParseCoreSources( CPLXMLNode *psTree, const char * );
VRTSource *VRTParseFilterSources( CPLXMLNode *psTree, const char * );
/************************************************************************/
/* VRTDataset */
/************************************************************************/
class CPL_DLL VRTDataset : public GDALDataset
{
char *pszProjection;
int bGeoTransformSet;
double adfGeoTransform[6];
int nGCPCount;
GDAL_GCP *pasGCPList;
char *pszGCPProjection;
int bNeedsFlush;
int bWritable;
char *pszVRTPath;
public:
VRTDataset(int nXSize, int nYSize);
~VRTDataset();
void SetNeedsFlush() { bNeedsFlush = TRUE; }
virtual void FlushCache();
void SetWritable(int bWritable) { this->bWritable = bWritable; }
virtual const char *GetProjectionRef(void);
virtual CPLErr SetProjection( const char * );
virtual CPLErr GetGeoTransform( double * );
virtual CPLErr SetGeoTransform( double * );
virtual CPLErr SetMetadata( char **papszMD, const char *pszDomain = "" );
virtual CPLErr SetMetadataItem( const char *pszName, const char *pszValue,
const char *pszDomain = "" );
virtual int GetGCPCount();
virtual const char *GetGCPProjection();
virtual const GDAL_GCP *GetGCPs();
virtual CPLErr SetGCPs( int nGCPCount, const GDAL_GCP *pasGCPList,
const char *pszGCPProjection );
virtual CPLErr AddBand( GDALDataType eType,
char **papszOptions=NULL );
virtual char **GetFileList();
virtual CPLXMLNode *SerializeToXML( const char *pszVRTPath);
virtual CPLErr XMLInit( CPLXMLNode *, const char * );
static int Identify( GDALOpenInfo * );
static GDALDataset *Open( GDALOpenInfo * );
static GDALDataset *OpenXML( const char *, const char * = NULL, GDALAccess eAccess = GA_ReadOnly );
static GDALDataset *Create( const char * pszName,
int nXSize, int nYSize, int nBands,
GDALDataType eType, char ** papszOptions );
static CPLErr Delete( const char * pszFilename );
};
/************************************************************************/
/* VRTWarpedDataset */
/************************************************************************/
class GDALWarpOperation;
class VRTWarpedRasterBand;
class CPL_DLL VRTWarpedDataset : public VRTDataset
{
int nBlockXSize;
int nBlockYSize;
GDALWarpOperation *poWarper;
friend class VRTWarpedRasterBand;
public:
int nOverviewCount;
VRTWarpedDataset **papoOverviews;
public:
VRTWarpedDataset( int nXSize, int nYSize );
~VRTWarpedDataset();
CPLErr Initialize( /* GDALWarpOptions */ void * );
virtual CPLErr IBuildOverviews( const char *, int, int *,
int, int *, GDALProgressFunc, void * );
virtual CPLXMLNode *SerializeToXML( const char *pszVRTPath );
virtual CPLErr XMLInit( CPLXMLNode *, const char * );
virtual CPLErr AddBand( GDALDataType eType,
char **papszOptions=NULL );
virtual char **GetFileList();
CPLErr ProcessBlock( int iBlockX, int iBlockY );
void GetBlockSize( int *, int * );
};
/************************************************************************/
/* VRTRasterBand */
/* */
/* Provides support for all the various kinds of metadata but */
/* no raster access. That is handled by derived classes. */
/************************************************************************/
class CPL_DLL VRTRasterBand : public GDALRasterBand
{
protected:
int bNoDataValueSet;
int bHideNoDataValue; // If set to true, will not report the existance of nodata
double dfNoDataValue;
GDALColorTable *poColorTable;
GDALColorInterp eColorInterp;
char *pszUnitType;
char **papszCategoryNames;
double dfOffset;
double dfScale;
CPLXMLNode *psSavedHistograms;
void Initialize( int nXSize, int nYSize );
public:
VRTRasterBand();
virtual ~VRTRasterBand();
virtual CPLErr XMLInit( CPLXMLNode *, const char * );
virtual CPLXMLNode * SerializeToXML( const char *pszVRTPath );
virtual CPLErr SetNoDataValue( double );
virtual double GetNoDataValue( int *pbSuccess = NULL );
virtual CPLErr SetColorTable( GDALColorTable * );
virtual GDALColorTable *GetColorTable();
virtual CPLErr SetColorInterpretation( GDALColorInterp );
virtual GDALColorInterp GetColorInterpretation();
virtual const char *GetUnitType();
CPLErr SetUnitType( const char * );
virtual char **GetCategoryNames();
virtual CPLErr SetCategoryNames( char ** );
virtual CPLErr SetMetadata( char **papszMD, const char *pszDomain = "" );
virtual CPLErr SetMetadataItem( const char *pszName, const char *pszValue,
const char *pszDomain = "" );
virtual double GetOffset( int *pbSuccess = NULL );
CPLErr SetOffset( double );
virtual double GetScale( int *pbSuccess = NULL );
CPLErr SetScale( double );
virtual CPLErr GetHistogram( double dfMin, double dfMax,
int nBuckets, int * panHistogram,
int bIncludeOutOfRange, int bApproxOK,
GDALProgressFunc, void *pProgressData );
virtual CPLErr GetDefaultHistogram( double *pdfMin, double *pdfMax,
int *pnBuckets, int ** ppanHistogram,
int bForce,
GDALProgressFunc, void *pProgressData);
virtual CPLErr SetDefaultHistogram( double dfMin, double dfMax,
int nBuckets, int *panHistogram );
CPLErr CopyCommonInfoFrom( GDALRasterBand * );
virtual void GetFileList(char*** ppapszFileList, int *pnSize,
int *pnMaxSize, CPLHashSet* hSetFiles);
virtual void SetDescription( const char * );
};
/************************************************************************/
/* VRTSourcedRasterBand */
/************************************************************************/
class CPL_DLL VRTSourcedRasterBand : public VRTRasterBand
{
int bAlreadyInIRasterIO;
void Initialize( int nXSize, int nYSize );
public:
int nSources;
VRTSource **papoSources;
int bEqualAreas;
VRTSourcedRasterBand( GDALDataset *poDS, int nBand );
VRTSourcedRasterBand( GDALDataType eType,
int nXSize, int nYSize );
VRTSourcedRasterBand( GDALDataset *poDS, int nBand,
GDALDataType eType,
int nXSize, int nYSize );
virtual ~VRTSourcedRasterBand();
virtual CPLErr IRasterIO( GDALRWFlag, int, int, int, int,
void *, int, int, GDALDataType,
int, int );
virtual char **GetMetadata( const char * pszDomain = "" );
virtual CPLErr SetMetadata( char ** papszMetadata,
const char * pszDomain = "" );
virtual CPLErr SetMetadataItem( const char * pszName,
const char * pszValue,
const char * pszDomain = "" );
virtual CPLErr XMLInit( CPLXMLNode *, const char * );
virtual CPLXMLNode * SerializeToXML( const char *pszVRTPath );
CPLErr AddSource( VRTSource * );
CPLErr AddSimpleSource( GDALRasterBand *poSrcBand,
int nSrcXOff=-1, int nSrcYOff=-1,
int nSrcXSize=-1, int nSrcYSize=-1,
int nDstXOff=-1, int nDstYOff=-1,
int nDstXSize=-1, int nDstYSize=-1,
const char *pszResampling = "near",
double dfNoDataValue = VRT_NODATA_UNSET);
CPLErr AddComplexSource( GDALRasterBand *poSrcBand,
int nSrcXOff=-1, int nSrcYOff=-1,
int nSrcXSize=-1, int nSrcYSize=-1,
int nDstXOff=-1, int nDstYOff=-1,
int nDstXSize=-1, int nDstYSize=-1,
double dfScaleOff=0.0,
double dfScaleRatio=1.0,
double dfNoDataValue = VRT_NODATA_UNSET,
int nColorTableComponent = 0);
CPLErr AddFuncSource( VRTImageReadFunc pfnReadFunc, void *hCBData,
double dfNoDataValue = VRT_NODATA_UNSET );
virtual CPLErr IReadBlock( int, int, void * );
virtual void GetFileList(char*** ppapszFileList, int *pnSize,
int *pnMaxSize, CPLHashSet* hSetFiles);
};
/************************************************************************/
/* VRTWarpedRasterBand */
/************************************************************************/
class CPL_DLL VRTWarpedRasterBand : public VRTRasterBand
{
public:
VRTWarpedRasterBand( GDALDataset *poDS, int nBand,
GDALDataType eType = GDT_Unknown );
virtual ~VRTWarpedRasterBand();
virtual CPLErr XMLInit( CPLXMLNode *, const char * );
virtual CPLXMLNode * SerializeToXML( const char *pszVRTPath );
virtual CPLErr IReadBlock( int, int, void * );
virtual CPLErr IWriteBlock( int, int, void * );
virtual int GetOverviewCount();
virtual GDALRasterBand *GetOverview(int);
};
/************************************************************************/
/* VRTDerivedRasterBand */
/************************************************************************/
class CPL_DLL VRTDerivedRasterBand : public VRTSourcedRasterBand
{
public:
char *pszFuncName;
GDALDataType eSourceTransferType;
VRTDerivedRasterBand(GDALDataset *poDS, int nBand);
VRTDerivedRasterBand(GDALDataset *poDS, int nBand,
GDALDataType eType, int nXSize, int nYSize);
virtual ~VRTDerivedRasterBand();
virtual CPLErr IRasterIO( GDALRWFlag, int, int, int, int,
void *, int, int, GDALDataType,
int, int );
static CPLErr AddPixelFunction
(const char *pszFuncName, GDALDerivedPixelFunc pfnPixelFunc);
static GDALDerivedPixelFunc GetPixelFunction(const char *pszFuncName);
void SetPixelFunctionName(const char *pszFuncName);
void SetSourceTransferType(GDALDataType eDataType);
virtual CPLErr XMLInit( CPLXMLNode *, const char * );
virtual CPLXMLNode * SerializeToXML( const char *pszVRTPath );
};
/************************************************************************/
/* VRTRawRasterBand */
/************************************************************************/
class RawRasterBand;
class CPL_DLL VRTRawRasterBand : public VRTRasterBand
{
RawRasterBand *poRawRaster;
char *pszSourceFilename;
int bRelativeToVRT;
public:
VRTRawRasterBand( GDALDataset *poDS, int nBand,
GDALDataType eType = GDT_Unknown );
virtual ~VRTRawRasterBand();
virtual CPLErr XMLInit( CPLXMLNode *, const char * );
virtual CPLXMLNode * SerializeToXML( const char *pszVRTPath );
virtual CPLErr IRasterIO( GDALRWFlag, int, int, int, int,
void *, int, int, GDALDataType,
int, int );
virtual CPLErr IReadBlock( int, int, void * );
virtual CPLErr IWriteBlock( int, int, void * );
CPLErr SetRawLink( const char *pszFilename,
const char *pszVRTPath,
int bRelativeToVRT,
vsi_l_offset nImageOffset,
int nPixelOffset, int nLineOffset,
const char *pszByteOrder );
void ClearRawLink();
virtual void GetFileList(char*** ppapszFileList, int *pnSize,
int *pnMaxSize, CPLHashSet* hSetFiles);
};
/************************************************************************/
/* VRTDriver */
/************************************************************************/
class VRTDriver : public GDALDriver
{
public:
VRTDriver();
~VRTDriver();
char **papszSourceParsers;
virtual char **GetMetadata( const char * pszDomain = "" );
virtual CPLErr SetMetadata( char ** papszMetadata,
const char * pszDomain = "" );
VRTSource *ParseSource( CPLXMLNode *psSrc, const char *pszVRTPath );
void AddSourceParser( const char *pszElementName,
VRTSourceParser pfnParser );
};
/************************************************************************/
/* VRTSimpleSource */
/************************************************************************/
class VRTSimpleSource : public VRTSource
{
protected:
GDALRasterBand *poRasterBand;
int nSrcXOff;
int nSrcYOff;
int nSrcXSize;
int nSrcYSize;
int nDstXOff;
int nDstYOff;
int nDstXSize;
int nDstYSize;
int bNoDataSet;
double dfNoDataValue;
public:
VRTSimpleSource();
virtual ~VRTSimpleSource();
virtual CPLErr XMLInit( CPLXMLNode *psTree, const char * );
virtual CPLXMLNode *SerializeToXML( const char *pszVRTPath );
void SetSrcBand( GDALRasterBand * );
void SetSrcWindow( int, int, int, int );
void SetDstWindow( int, int, int, int );
void SetNoDataValue( double dfNoDataValue );
int GetSrcDstWindow( int, int, int, int, int, int,
int *, int *, int *, int *,
int *, int *, int *, int * );
virtual CPLErr RasterIO( int nXOff, int nYOff, int nXSize, int nYSize,
void *pData, int nBufXSize, int nBufYSize,
GDALDataType eBufType,
int nPixelSpace, int nLineSpace );
void DstToSrc( double dfX, double dfY,
double &dfXOut, double &dfYOut );
void SrcToDst( double dfX, double dfY,
double &dfXOut, double &dfYOut );
virtual void GetFileList(char*** ppapszFileList, int *pnSize,
int *pnMaxSize, CPLHashSet* hSetFiles);
};
/************************************************************************/
/* VRTAveragedSource */
/************************************************************************/
class VRTAveragedSource : public VRTSimpleSource
{
public:
VRTAveragedSource();
virtual CPLErr RasterIO( int nXOff, int nYOff, int nXSize, int nYSize,
void *pData, int nBufXSize, int nBufYSize,
GDALDataType eBufType,
int nPixelSpace, int nLineSpace );
virtual CPLXMLNode *SerializeToXML( const char *pszVRTPath );
};
/************************************************************************/
/* VRTComplexSource */
/************************************************************************/
class VRTComplexSource : public VRTSimpleSource
{
public:
VRTComplexSource();
virtual ~VRTComplexSource();
virtual CPLErr RasterIO( int nXOff, int nYOff, int nXSize, int nYSize,
void *pData, int nBufXSize, int nBufYSize,
GDALDataType eBufType,
int nPixelSpace, int nLineSpace );
virtual CPLXMLNode *SerializeToXML( const char *pszVRTPath );
virtual CPLErr XMLInit( CPLXMLNode *, const char * );
double LookupValue( double dfInput );
int bDoScaling;
double dfScaleOff;
double dfScaleRatio;
double *padfLUTInputs;
double *padfLUTOutputs;
int nLUTItemCount;
int nColorTableComponent;
};
/************************************************************************/
/* VRTFilteredSource */
/************************************************************************/
class VRTFilteredSource : public VRTComplexSource
{
private:
int IsTypeSupported( GDALDataType eType );
protected:
int nSupportedTypesCount;
GDALDataType aeSupportedTypes[20];
int nExtraEdgePixels;
public:
VRTFilteredSource();
virtual ~VRTFilteredSource();
void SetExtraEdgePixels( int );
void SetFilteringDataTypesSupported( int, GDALDataType * );
virtual CPLErr FilterData( int nXSize, int nYSize, GDALDataType eType,
GByte *pabySrcData, GByte *pabyDstData ) = 0;
virtual CPLErr RasterIO( int nXOff, int nYOff, int nXSize, int nYSize,
void *pData, int nBufXSize, int nBufYSize,
GDALDataType eBufType,
int nPixelSpace, int nLineSpace );
};
/************************************************************************/
/* VRTKernelFilteredSource */
/************************************************************************/
class VRTKernelFilteredSource : public VRTFilteredSource
{
protected:
int nKernelSize;
double *padfKernelCoefs;
int bNormalized;
public:
VRTKernelFilteredSource();
virtual ~VRTKernelFilteredSource();
virtual CPLErr XMLInit( CPLXMLNode *psTree, const char * );
virtual CPLXMLNode *SerializeToXML( const char *pszVRTPath );
virtual CPLErr FilterData( int nXSize, int nYSize, GDALDataType eType,
GByte *pabySrcData, GByte *pabyDstData );
CPLErr SetKernel( int nKernelSize, double *padfCoefs );
void SetNormalized( int );
};
/************************************************************************/
/* VRTAverageFilteredSource */
/************************************************************************/
class VRTAverageFilteredSource : public VRTKernelFilteredSource
{
public:
VRTAverageFilteredSource( int nKernelSize );
virtual ~VRTAverageFilteredSource();
virtual CPLErr XMLInit( CPLXMLNode *psTree, const char * );
virtual CPLXMLNode *SerializeToXML( const char *pszVRTPath );
};
/************************************************************************/
/* VRTFuncSource */
/************************************************************************/
class VRTFuncSource : public VRTSource
{
public:
VRTFuncSource();
virtual ~VRTFuncSource();
virtual CPLErr XMLInit( CPLXMLNode *, const char *) { return CE_Failure; }
virtual CPLXMLNode *SerializeToXML( const char *pszVRTPath );
virtual CPLErr RasterIO( int nXOff, int nYOff, int nXSize, int nYSize,
void *pData, int nBufXSize, int nBufYSize,
GDALDataType eBufType,
int nPixelSpace, int nLineSpace );
VRTImageReadFunc pfnReadFunc;
void *pCBData;
GDALDataType eType;
float fNoDataValue;
};
#endif /* ndef VIRTUALDATASET_H_INCLUDED */
|