Skip to content

Commit

Permalink
Test for write access mode for editing capabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugo Mercier committed Jan 5, 2015
1 parent c800a8c commit 3ce5275
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
17 changes: 11 additions & 6 deletions src/providers/ogr/qgsogrprovider.cpp
Expand Up @@ -268,6 +268,7 @@ QgsOgrProvider::QgsOgrProvider( QString const & uri )
, valid( false )
, featuresCounted( -1 )
, mDataModified( false )
, mWriteAccess( false )
{
QgsCPLErrorHandler handler;

Expand Down Expand Up @@ -368,7 +369,11 @@ QgsOgrProvider::QgsOgrProvider( QString const & uri )
if ( !openReadOnly )
ogrDataSource = OGROpen( TO8F( mFilePath ), true, &ogrDriver );

if ( !ogrDataSource )
if ( ogrDataSource )
{
mWriteAccess = true;
}
else
{
QgsDebugMsg( "OGR failed to opened in update mode, trying in read-only mode" );

Expand Down Expand Up @@ -1442,19 +1447,19 @@ int QgsOgrProvider::capabilities() const
ability |= QgsVectorDataProvider::SelectAtId | QgsVectorDataProvider::SelectGeometryAtId;
}

if ( OGR_L_TestCapability( ogrLayer, "SequentialWrite" ) )
if ( mWriteAccess && OGR_L_TestCapability( ogrLayer, "SequentialWrite" ) )
// true if the CreateFeature() method works for this layer.
{
ability |= QgsVectorDataProvider::AddFeatures;
}

if ( OGR_L_TestCapability( ogrLayer, "DeleteFeature" ) )
if ( mWriteAccess && OGR_L_TestCapability( ogrLayer, "DeleteFeature" ) )
// true if this layer can delete its features
{
ability |= DeleteFeatures;
}

if ( OGR_L_TestCapability( ogrLayer, "RandomWrite" ) )
if ( mWriteAccess && OGR_L_TestCapability( ogrLayer, "RandomWrite" ) )
// true if the SetFeature() method is operational on this layer.
{
// TODO According to http://shapelib.maptools.org/ (Shapefile C Library V1.2)
Expand Down Expand Up @@ -1502,12 +1507,12 @@ int QgsOgrProvider::capabilities() const
}
#endif

if ( OGR_L_TestCapability( ogrLayer, "CreateField" ) )
if ( mWriteAccess && OGR_L_TestCapability( ogrLayer, "CreateField" ) )
{
ability |= AddAttributes;
}

if ( OGR_L_TestCapability( ogrLayer, "DeleteField" ) )
if ( mWriteAccess && OGR_L_TestCapability( ogrLayer, "DeleteField" ) )
{
ability |= DeleteAttributes;
}
Expand Down
3 changes: 3 additions & 0 deletions src/providers/ogr/qgsogrprovider.h
Expand Up @@ -344,6 +344,9 @@ class QgsOgrProvider : public QgsVectorDataProvider
OGRLayerH setSubsetString( OGRLayerH layer, OGRDataSourceH ds );

friend class QgsOgrFeatureSource;

/** whether the file is opened in write mode*/
bool mWriteAccess;
};


Expand Down

0 comments on commit 3ce5275

Please sign in to comment.