ogrpgeodatasource.cpp
来自「支持各种栅格图像和矢量图像读取的库」· C++ 代码 · 共 264 行
CPP
264 行
/****************************************************************************** * $Id: ogrpgeodatasource.cpp 10646 2007-01-18 02:38:10Z warmerdam $ * * Project: OpenGIS Simple Features Reference Implementation * Purpose: Implements OGRPGeoDataSource class. * Author: Frank Warmerdam, warmerdam@pobox.com * ****************************************************************************** * Copyright (c) 2005, 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. ****************************************************************************/#include "ogr_pgeo.h"#include "cpl_conv.h"#include "cpl_string.h"#include <vector>CPL_CVSID("$Id: ogrpgeodatasource.cpp 10646 2007-01-18 02:38:10Z warmerdam $");/************************************************************************//* OGRPGeoDataSource() *//************************************************************************/OGRPGeoDataSource::OGRPGeoDataSource(){ pszName = NULL; papoLayers = NULL; nLayers = 0;}/************************************************************************//* ~OGRPGeoDataSource() *//************************************************************************/OGRPGeoDataSource::~OGRPGeoDataSource(){ int i; CPLFree( pszName ); for( i = 0; i < nLayers; i++ ) delete papoLayers[i]; CPLFree( papoLayers );}/************************************************************************//* Open() *//************************************************************************/int OGRPGeoDataSource::Open( const char * pszNewName, int bUpdate, int bTestOpen ){ CPLAssert( nLayers == 0 );/* -------------------------------------------------------------------- *//* If this is the name of an MDB file, then construct the *//* appropriate connection string. Otherwise clip of PGEO: to *//* get the DSN. *//* *//* -------------------------------------------------------------------- */ char *pszDSN; if( EQUALN(pszNewName,"PGEO:",5) ) pszDSN = CPLStrdup( pszNewName + 5 ); else { pszDSN = (char *) CPLMalloc(strlen(pszNewName)+50); sprintf( pszDSN, "DRIVER=Microsoft Access Driver (*.mdb);DBQ=%s", pszNewName ); }/* -------------------------------------------------------------------- *//* Initialize based on the DSN. *//* -------------------------------------------------------------------- */ CPLDebug( "PGeo", "EstablishSession(%s)", pszDSN ); if( !oSession.EstablishSession( pszDSN, NULL, NULL ) ) { CPLError( CE_Failure, CPLE_AppDefined, "Unable to initialize ODBC connection to DSN for %s,\n" "%s", pszDSN, oSession.GetLastError() ); CPLFree( pszDSN ); return FALSE; } CPLFree( pszDSN ); pszName = CPLStrdup( pszNewName ); bDSUpdate = bUpdate;/* -------------------------------------------------------------------- *//* Collect list of tables and their supporting info from *//* GDB_GeomColumns. *//* -------------------------------------------------------------------- */ std::vector<char **> apapszGeomColumns; CPLODBCStatement oStmt( &oSession ); oStmt.Append( "SELECT TableName, FieldName, ShapeType, ExtentLeft, ExtentRight, ExtentBottom, ExtentTop, SRID, HasZ FROM GDB_GeomColumns" ); if( !oStmt.ExecuteSQL() ) { CPLDebug( "PGEO", "SELECT on GDB_GeomColumns fails, perhaps not a personal geodatabase?\n%s", oSession.GetLastError() ); return FALSE; } while( oStmt.Fetch() ) { int i, iNew = apapszGeomColumns.size(); char **papszRecord = NULL; for( i = 0; i < 9; i++ ) papszRecord = CSLAddString( papszRecord, oStmt.GetColData(i) ); apapszGeomColumns.resize(iNew+1); apapszGeomColumns[iNew] = papszRecord; } /* -------------------------------------------------------------------- *//* Create a layer for each spatial table. *//* -------------------------------------------------------------------- */ unsigned int iTable; papoLayers = (OGRPGeoLayer **) CPLCalloc(apapszGeomColumns.size(), sizeof(void*)); for( iTable = 0; iTable < apapszGeomColumns.size(); iTable++ ) { char **papszRecord = apapszGeomColumns[iTable]; OGRPGeoTableLayer *poLayer; poLayer = new OGRPGeoTableLayer( this ); if( poLayer->Initialize( papszRecord[0], // TableName papszRecord[1], // FieldName atoi(papszRecord[2]), // ShapeType atof(papszRecord[3]), // ExtentLeft atof(papszRecord[4]), // ExtentRight atof(papszRecord[5]), // ExtentBottom atof(papszRecord[6]), // ExtentTop atoi(papszRecord[7]), // SRID atoi(papszRecord[8])) // HasZ != CE_None ) { delete poLayer; } else papoLayers[nLayers++] = poLayer; CSLDestroy( papszRecord ); } return TRUE;}/************************************************************************//* TestCapability() *//************************************************************************/int OGRPGeoDataSource::TestCapability( const char * pszCap ){ return FALSE;}/************************************************************************//* GetLayer() *//************************************************************************/OGRLayer *OGRPGeoDataSource::GetLayer( int iLayer ){ if( iLayer < 0 || iLayer >= nLayers ) return NULL; else return papoLayers[iLayer];}/************************************************************************//* ExecuteSQL() *//************************************************************************/OGRLayer * OGRPGeoDataSource::ExecuteSQL( const char *pszSQLCommand, OGRGeometry *poSpatialFilter, const char *pszDialect ){/* -------------------------------------------------------------------- *//* Use generic imlplementation for OGRSQL dialect. *//* -------------------------------------------------------------------- */ if( pszDialect != NULL && EQUAL(pszDialect,"OGRSQL") ) return OGRDataSource::ExecuteSQL( pszSQLCommand, poSpatialFilter, pszDialect );/* -------------------------------------------------------------------- *//* Execute statement. *//* -------------------------------------------------------------------- */ CPLODBCStatement *poStmt = new CPLODBCStatement( &oSession ); poStmt->Append( pszSQLCommand ); if( !poStmt->ExecuteSQL() ) { CPLError( CE_Failure, CPLE_AppDefined, "%s", oSession.GetLastError() ); return NULL; }/* -------------------------------------------------------------------- *//* Are there result columns for this statement? *//* -------------------------------------------------------------------- */ if( poStmt->GetColCount() == 0 ) { delete poStmt; CPLErrorReset(); return NULL; }/* -------------------------------------------------------------------- *//* Create a results layer. It will take ownership of the *//* statement. *//* -------------------------------------------------------------------- */ OGRPGeoSelectLayer *poLayer = NULL; poLayer = new OGRPGeoSelectLayer( this, poStmt ); if( poSpatialFilter != NULL ) poLayer->SetSpatialFilter( poSpatialFilter ); return poLayer;}/************************************************************************//* ReleaseResultSet() *//************************************************************************/void OGRPGeoDataSource::ReleaseResultSet( OGRLayer * poLayer ){ delete poLayer;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?