Skip to content

Commit

Permalink
Fix provider for min/max updates
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso committed Jun 1, 2018
1 parent 6f3be9f commit 749bc02
Showing 1 changed file with 17 additions and 14 deletions.
31 changes: 17 additions & 14 deletions tests/src/python/provider_python.py
@@ -1,5 +1,8 @@
# -*- coding: utf-8 -*-
"""QGIS test python layer provider.
"""QGIS python layer provider test.
This module is a Python implementation of (a clone of) the core memory
vector layer provider, to be used for test_provider_python.py
.. note:: This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -166,8 +169,6 @@ def __init__(self, provider):
self._subset_expression = None

def getFeatures(self, request):
# QgsFeatureIterator getFeatures( const QgsFeatureRequest &request ) override;
# NOTE: this is the same as PyProvider.getFeatures
return QgsFeatureIterator(PyFeatureIterator(self, request))


Expand All @@ -178,18 +179,15 @@ class PyProvider(QgsVectorDataProvider):
@classmethod
def providerKey(cls):
"""Returns the memory provider key"""
#static QString providerKey();
return 'pythonprovider'

@classmethod
def description(cls):
"""Returns the memory provider description"""
#static QString providerDescription();
return 'Python Test Provider'

@classmethod
def createProvider(cls, uri):
#static QgsMemoryProvider *createProvider( const QString &uri );
return PyProvider(uri)

# Implementation of functions from QgsVectorDataProvider
Expand Down Expand Up @@ -272,9 +270,10 @@ def addFeatures(self, flist, flags=None):
self._spatialindex.insertFeature(_f)

if len(f_added):
self.clearMinMaxCache()
self.updateExtents()

return added, flist
return added, f_added

def deleteFeatures(self, ids):
if not ids:
Expand All @@ -287,6 +286,7 @@ def deleteFeatures(self, ids):
del self._features[id]
removed = True
if removed:
self.clearMinMaxCache()
self.updateExtents()
return removed

Expand All @@ -300,6 +300,7 @@ def addAttributes(self, attrs):
old_attrs = f.attributes()
old_attrs.append(None)
f.setAttributes(old_attrs)
self.clearMinMaxCache()
return True
except Exception:
return False
Expand All @@ -308,26 +309,27 @@ def renameAttributes(self, renamedAttributes):
result = True
for key, new_name in renamedAttributes:
fieldIndex = key
if fieldIndex < 0 or fieldIndex >= lself._fields.count():
result = false
if fieldIndex < 0 or fieldIndex >= self._fields.count():
result = False
continue
if new_name in self._fields.indexFromName(new_name) >= 0:
#field name already in use
result = False
continue
self._fields[fieldIndex].setName(new_name)
return True
return result

def deleteAttributes(self, attributes):
attrIdx = sorted(attributes.toList(), reverse=True)
attrIdx = sorted(attributes, reverse=True)

# delete attributes one-by-one with decreasing index
for idx in attrIdx:
self._fields.remove(idx)
for f in self._features:
for f in self._features.values():
attr = f.attributes()
attr.remove(idx)
del(attr[idx])
f.setAttributes(attr)
self.clearMinMaxCache()
return True

def changeAttributeValues(self, attr_map):
Expand All @@ -338,6 +340,7 @@ def changeAttributeValues(self, attr_map):
continue
for k, v in attrs.items():
f.setAttribute(k, v)
self.clearMinMaxCache()
return True

def changeGeometryValues(self, geometry_map):
Expand Down Expand Up @@ -373,7 +376,7 @@ def createSpatialIndex(self):
return True

def capabilities(self):
return QgsVectorDataProvider.AddFeatures | QgsVectorDataProvider.DeleteFeatures | QgsVectorDataProvider.ChangeGeometries | QgsVectorDataProvider.ChangeAttributeValues | QgsVectorDataProvider.AddAttributes | QgsVectorDataProvider.DeleteAttributes | QgsVectorDataProvider.RenameAttributes | QgsVectorDataProvider.SelectAtId | QgsVectorDataProvider. CircularGeometries
return QgsVectorDataProvider.AddFeatures | QgsVectorDataProvider.DeleteFeatures | QgsVectorDataProvider.CreateSpatialIndex | QgsVectorDataProvider.ChangeGeometries | QgsVectorDataProvider.ChangeAttributeValues | QgsVectorDataProvider.AddAttributes | QgsVectorDataProvider.DeleteAttributes | QgsVectorDataProvider.RenameAttributes | QgsVectorDataProvider.SelectAtId | QgsVectorDataProvider. CircularGeometries

#/* Implementation of functions from QgsDataProvider */

Expand Down

0 comments on commit 749bc02

Please sign in to comment.