EVOLUTION-MANAGER
Edit File: ogr_mysql.h
/****************************************************************************** * $Id: ogr_mysql.h 40363 2017-10-08 17:20:37Z rouault $ * * Project: OpenGIS Simple Features Reference Implementation * Purpose: Declarations for MySQL OGR Driver Classes. * Author: Frank Warmerdam, warmerdam@pobox.com * Author: Howard Butler, hobu@hobu.net * ****************************************************************************** * Copyright (c) 2004, Frank Warmerdam <warmerdam@pobox.com> * Copyright (c) 2008-2012, Even Rouault <even dot rouault at mines-paris dot org> * * 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 OGR_MYSQL_H_INCLUDED #define OGR_MYSQL_H_INCLUDED // Include cpl_port.h before mysql stuff to avoid issues with CPLIsFinite() // See https://trac.osgeo.org/gdal/ticket/6899 #include "cpl_port.h" #ifdef _MSC_VER #pragma warning( push ) #pragma warning( disable : 4324 ) /* 'my_alignment_imp<0x02>' : structure was padded due to __declspec(align()) */ #pragma warning( disable : 4201 ) /* nonstandard extension used : nameless struct/union */ #pragma warning( disable : 4211 ) /* nonstandard extension used : redefined extern to static */ #endif #include <mysql.h> #ifdef _MSC_VER #pragma warning( pop ) #endif /* my_global.h from mysql 5.1 declares the min and max macros. */ /* This conflicts with templates in g++-4.3.2 header files. Grrr */ #ifdef min #undef min #endif #ifdef max #undef max #endif #ifdef bool #undef bool #endif #include "ogrsf_frmts.h" /************************************************************************/ /* OGRMySQLLayer */ /************************************************************************/ class OGRMySQLDataSource; class OGRMySQLLayer : public OGRLayer { protected: OGRFeatureDefn *poFeatureDefn; // Layer spatial reference system, and srid. OGRSpatialReference *poSRS; int nSRSId; GIntBig iNextShapeId; OGRMySQLDataSource *poDS; char *pszQueryStatement; int nResultOffset; char *pszGeomColumn; char *pszGeomColumnTable; int nGeomType; int bHasFid; char *pszFIDColumn; MYSQL_RES *hResultSet; int FetchSRSId(); public: OGRMySQLLayer(); virtual ~OGRMySQLLayer(); virtual void ResetReading() override; virtual OGRFeature *GetNextFeature() override; virtual OGRFeature *GetFeature( GIntBig nFeatureId ) override; OGRFeatureDefn * GetLayerDefn() override { return poFeatureDefn; } virtual OGRSpatialReference *GetSpatialRef() override; virtual const char *GetFIDColumn() override; virtual const char *GetGeometryColumn() override; /* custom methods */ virtual OGRFeature *RecordToFeature( char **papszRow, unsigned long * ); virtual OGRFeature *GetNextRawFeature(); }; /************************************************************************/ /* OGRMySQLTableLayer */ /************************************************************************/ class OGRMySQLTableLayer : public OGRMySQLLayer { int bUpdateAccess; OGRFeatureDefn *ReadTableDefinition(const char *); void BuildWhere(); char *BuildFields(); void BuildFullQueryStatement(); char *pszQuery; char *pszWHERE; int bLaunderColumnNames; int bPreservePrecision; public: OGRMySQLTableLayer( OGRMySQLDataSource *, const char * pszName, int bUpdate, int nSRSId = -2 ); virtual ~OGRMySQLTableLayer(); OGRErr Initialize(const char* pszTableName); virtual OGRFeature *GetFeature( GIntBig nFeatureId ) override; virtual void ResetReading() override; virtual GIntBig GetFeatureCount( int ) override; void SetSpatialFilter( OGRGeometry * ) override; virtual void SetSpatialFilter( int iGeomField, OGRGeometry *poGeom ) override { OGRLayer::SetSpatialFilter(iGeomField, poGeom); } virtual OGRErr SetAttributeFilter( const char * ) override; virtual OGRErr ICreateFeature( OGRFeature *poFeature ) override; virtual OGRErr DeleteFeature( GIntBig nFID ) override; virtual OGRErr ISetFeature( OGRFeature *poFeature ) override; virtual OGRErr CreateField( OGRFieldDefn *poField, int bApproxOK = TRUE ) override; void SetLaunderFlag( int bFlag ) { bLaunderColumnNames = bFlag; } void SetPrecisionFlag( int bFlag ) { bPreservePrecision = bFlag; } virtual int TestCapability( const char * ) override; virtual OGRErr GetExtent(OGREnvelope *psExtent, int bForce = TRUE) override; virtual OGRErr GetExtent(int iGeomField, OGREnvelope *psExtent, int bForce) override { return OGRLayer::GetExtent(iGeomField, psExtent, bForce); } }; /************************************************************************/ /* OGRMySQLResultLayer */ /************************************************************************/ class OGRMySQLResultLayer : public OGRMySQLLayer { void BuildFullQueryStatement(); char *pszRawStatement; public: OGRMySQLResultLayer( OGRMySQLDataSource *, const char * pszRawStatement, MYSQL_RES *hResultSetIn ); virtual ~OGRMySQLResultLayer(); OGRFeatureDefn *ReadResultDefinition(); virtual void ResetReading() override; virtual GIntBig GetFeatureCount( int ) override; virtual int TestCapability( const char * ) override; }; /************************************************************************/ /* OGRMySQLDataSource */ /************************************************************************/ class OGRMySQLDataSource : public OGRDataSource { OGRMySQLLayer **papoLayers; int nLayers; char *pszName; int bDSUpdate; MYSQL *hConn; OGRErr DeleteLayer( int iLayer ) override; // We maintain a list of known SRID to reduce the number of trips to // the database to get SRSes. int nKnownSRID; int *panSRID; OGRSpatialReference **papoSRS; OGRMySQLLayer *poLongResultLayer; public: OGRMySQLDataSource(); virtual ~OGRMySQLDataSource(); MYSQL *GetConn() { return hConn; } int FetchSRSId( OGRSpatialReference * poSRS ); OGRSpatialReference *FetchSRS( int nSRSId ); OGRErr InitializeMetadataTables(); int Open( const char *, char** papszOpenOptions, int bUpdate ); int OpenTable( const char *, int bUpdate ); const char *GetName() override { return pszName; } int GetLayerCount() override { return nLayers; } OGRLayer *GetLayer( int ) override; virtual OGRLayer *ICreateLayer( const char *, OGRSpatialReference * = NULL, OGRwkbGeometryType = wkbUnknown, char ** = NULL ) override; int TestCapability( const char * ) override; virtual OGRLayer * ExecuteSQL( const char *pszSQLCommand, OGRGeometry *poSpatialFilter, const char *pszDialect ) override; virtual void ReleaseResultSet( OGRLayer * poLayer ) override; // nonstandard void ReportError( const char * = NULL ); char *LaunderName( const char * ); void RequestLongResult( OGRMySQLLayer * ); void InterruptLongResult(); }; #endif /* ndef OGR_MYSQL_H_INCLUDED */