EVOLUTION-MANAGER
Edit File: ogrgeomediadriver.cpp
/****************************************************************************** * $Id: ogrgeomediadriver.cpp 27741 2014-09-26 19:20:02Z goatbar $ * * Project: OpenGIS Simple Features Reference Implementation * Purpose: Implements Personal Geodatabase driver. * Author: Even Rouault, <even dot rouault at mines dash paris dot org> * ****************************************************************************** * Copyright (c) 2011-2012, Even Rouault <even dot rouault at mines-paris dot org> * 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_geomedia.h" #include "cpl_conv.h" CPL_CVSID("$Id: ogrgeomediadriver.cpp 27741 2014-09-26 19:20:02Z goatbar $"); /************************************************************************/ /* ~OGRODBCDriver() */ /************************************************************************/ OGRGeomediaDriver::~OGRGeomediaDriver() { } /************************************************************************/ /* GetName() */ /************************************************************************/ const char *OGRGeomediaDriver::GetName() { return "Geomedia"; } /************************************************************************/ /* Open() */ /************************************************************************/ OGRDataSource *OGRGeomediaDriver::Open( const char * pszFilename, int bUpdate ) { OGRGeomediaDataSource *poDS; if( EQUALN(pszFilename, "WALK:", strlen("WALK:")) ) return NULL; if( EQUALN(pszFilename, "PGEO:", strlen("PGEO:")) ) return NULL; if( !EQUALN(pszFilename,"GEOMEDIA:",9) && !EQUAL(CPLGetExtension(pszFilename),"mdb") ) return NULL; /* Disabling the attempt to guess if a MDB file is a Geomedia database */ /* or not. See similar fix in PGeo driver for rationale. */ #if 0 if( !EQUALN(pszFilename,"GEOMEDIA:",9) && EQUAL(CPLGetExtension(pszFilename),"mdb") ) { VSILFILE* fp = VSIFOpenL(pszFilename, "rb"); if (!fp) return NULL; GByte* pabyHeader = (GByte*) CPLMalloc(100000); VSIFReadL(pabyHeader, 100000, 1, fp); VSIFCloseL(fp); /* Look for GAliasTable table */ const GByte pabyNeedle[] = { 'G', 0, 'A', 0, 'l', 0, 'i', 0, 'a', 0, 's', 0, 'T', 0, 'a', 0, 'b', 0, 'l', 0, 'e'}; int bFound = FALSE; for(int i=0;i<100000 - (int)sizeof(pabyNeedle);i++) { if (memcmp(pabyHeader + i, pabyNeedle, sizeof(pabyNeedle)) == 0) { bFound = TRUE; break; } } CPLFree(pabyHeader); if (!bFound) return NULL; } #endif #ifndef WIN32 // Try to register MDB Tools driver // // ODBCINST.INI NOTE: // This operation requires write access to odbcinst.ini file // located in directory pointed by ODBCINISYS variable. // Usually, it points to /etc, so non-root users can overwrite this // setting ODBCINISYS with location they have write access to, e.g.: // $ export ODBCINISYS=$HOME/etc // $ touch $ODBCINISYS/odbcinst.ini // // See: http://www.unixodbc.org/internals.html // if ( !InstallMdbDriver() ) { CPLError( CE_Warning, CPLE_AppDefined, "Unable to install MDB driver for ODBC, MDB access may not supported.\n" ); } else CPLDebug( "Geomedia", "MDB Tools driver installed successfully!"); #endif /* ndef WIN32 */ // Open data source poDS = new OGRGeomediaDataSource(); if( !poDS->Open( pszFilename, bUpdate, TRUE ) ) { delete poDS; return NULL; } else return poDS; } /************************************************************************/ /* TestCapability() */ /************************************************************************/ int OGRGeomediaDriver::TestCapability( CPL_UNUSED const char * pszCap ) { return FALSE; } /************************************************************************/ /* RegisterOGRODBC() */ /************************************************************************/ void RegisterOGRGeomedia() { OGRSFDriverRegistrar::GetRegistrar()->RegisterDriver( new OGRGeomediaDriver ); }