⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ogrshapedriver.cpp

📁 用于读取TAB、MIF、SHP文件的类
💻 CPP
字号:
/****************************************************************************** * $Id: ogrshapedriver.cpp,v 1.10 2006/03/28 23:22:08 fwarmerdam Exp $ * * Project:  OpenGIS Simple Features Reference Implementation * Purpose:  Implements OGRShapeDriver class. * Author:   Frank Warmerdam, warmerdam@pobox.com * ****************************************************************************** * Copyright (c) 1999,  Les Technologies SoftMap Inc. * * 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. ****************************************************************************** * * $Log: ogrshapedriver.cpp,v $ * Revision 1.10  2006/03/28 23:22:08  fwarmerdam * update contact info * * Revision 1.9  2005/01/04 03:42:54  fwarmerdam * cleanup qix files * * Revision 1.8  2003/05/21 04:03:54  warmerda * expand tabs * * Revision 1.7  2003/03/20 19:11:05  warmerda * ensure delete cleans up indexes * * Revision 1.6  2003/03/03 05:06:46  warmerda * implemented DeleteDataSource * * Revision 1.5  2002/03/27 21:04:38  warmerda * Added support for reading, and creating lone .dbf files for wkbNone geometry * layers. Added support for creating a single .shp file instead of a directory * if a path ending in .shp is passed to the data source create method. * * Revision 1.4  2001/12/12 17:24:08  warmerda * use CPLStat, not VSIStat * * Revision 1.3  2001/07/18 04:55:16  warmerda * added CPL_CSVID * * Revision 1.2  2000/01/26 22:06:32  warmerda * add directory creation, fix open of empty dir * * Revision 1.1  1999/11/04 21:16:11  warmerda * New * */#include "ogrshape.h"#include "cpl_conv.h"#include "cpl_string.h"CPL_CVSID("$Id: ogrshapedriver.cpp,v 1.10 2006/03/28 23:22:08 fwarmerdam Exp $");/************************************************************************//*                          ~OGRShapeDriver()                           *//************************************************************************/OGRShapeDriver::~OGRShapeDriver(){}/************************************************************************//*                              GetName()                               *//************************************************************************/const char *OGRShapeDriver::GetName(){    return "ESRI Shapefile";}/************************************************************************//*                                Open()                                *//************************************************************************/OGRDataSource *OGRShapeDriver::Open( const char * pszFilename,                                     int bUpdate ){    OGRShapeDataSource  *poDS;    poDS = new OGRShapeDataSource();    if( !poDS->Open( pszFilename, bUpdate, TRUE )        || poDS->GetLayerCount() == 0 )    {        delete poDS;        return NULL;    }    else        return poDS;}/************************************************************************//*                          CreateDataSource()                          *//************************************************************************/OGRDataSource *OGRShapeDriver::CreateDataSource( const char * pszName,                                                 char **papszOptions ){    VSIStatBuf  stat;    int         bSingleNewFile = FALSE;/* -------------------------------------------------------------------- *//*      Is the target a valid existing directory?                       *//* -------------------------------------------------------------------- */    if( CPLStat( pszName, &stat ) == 0 )    {        if( !VSI_ISDIR(stat.st_mode) )        {            CPLError( CE_Failure, CPLE_AppDefined,                      "%s is not a directory.\n",                      pszName );                        return NULL;        }    }/* -------------------------------------------------------------------- *//*      Does it end in the extension .shp indicating the user likely    *//*      wants to create a single file set?                              *//* -------------------------------------------------------------------- */    else if( EQUAL(CPLGetExtension(pszName),"shp")              || EQUAL(CPLGetExtension(pszName),"dbf") )    {        bSingleNewFile = TRUE;    }/* -------------------------------------------------------------------- *//*      Otherwise try to create a new directory.                        *//* -------------------------------------------------------------------- */    else    {        if( VSIMkdir( pszName, 0755 ) != 0 )        {            CPLError( CE_Failure, CPLE_AppDefined,                      "Failed to create directory %s\n"                      "for shapefile datastore.\n",                      pszName );                        return NULL;        }    }/* -------------------------------------------------------------------- *//*      Return a new OGRDataSource()                                    *//* -------------------------------------------------------------------- */    OGRShapeDataSource  *poDS = NULL;    poDS = new OGRShapeDataSource();        if( !poDS->Open( pszName, TRUE, FALSE, bSingleNewFile ) )    {        delete poDS;        return NULL;    }    else        return poDS;}/************************************************************************//*                          DeleteDataSource()                          *//************************************************************************/OGRErr OGRShapeDriver::DeleteDataSource( const char *pszDataSource ){    int iExt;    VSIStatBuf sStatBuf;    static const char *apszExtensions[] =         { "shp", "shx", "dbf", "sbn", "sbx", "prj", "idm", "ind",           "qix", NULL };    if( VSIStat( pszDataSource, &sStatBuf ) != 0 )    {        CPLError( CE_Failure, CPLE_AppDefined,                  "%s does not appear to be a file or directory.",                  pszDataSource );        return OGRERR_FAILURE;    }    if( VSI_ISREG(sStatBuf.st_mode)         && (EQUAL(CPLGetExtension(pszDataSource),"shp")            || EQUAL(CPLGetExtension(pszDataSource),"shx")            || EQUAL(CPLGetExtension(pszDataSource),"dbf")) )    {        for( iExt=0; apszExtensions[iExt] != NULL; iExt++ )        {            const char *pszFile = CPLResetExtension(pszDataSource,                                                    apszExtensions[iExt] );            if( VSIStat( pszFile, &sStatBuf ) == 0 )                VSIUnlink( pszFile );        }    }    else if( VSI_ISDIR(sStatBuf.st_mode) )    {        char **papszDirEntries = CPLReadDir( pszDataSource );        int  iFile;        for( iFile = 0;              papszDirEntries != NULL && papszDirEntries[iFile] != NULL;             iFile++ )        {            if( CSLFindString( (char **) apszExtensions,                                CPLGetExtension(papszDirEntries[iFile])) != -1)            {                VSIUnlink( CPLFormFilename( pszDataSource,                                             papszDirEntries[iFile],                                             NULL ) );            }        }        CSLDestroy( papszDirEntries );        VSIRmdir( pszDataSource );    }    return OGRERR_NONE;}/************************************************************************//*                           TestCapability()                           *//************************************************************************/int OGRShapeDriver::TestCapability( const char * pszCap ){    if( EQUAL(pszCap,ODrCCreateDataSource) )        return TRUE;    else if( EQUAL(pszCap,ODrCDeleteDataSource) )        return TRUE;    else        return FALSE;}/************************************************************************//*                          RegisterOGRShape()                          *//************************************************************************/void RegisterOGRShape(){    OGRSFDriverRegistrar::GetRegistrar()->RegisterDriver( new OGRShapeDriver );}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -