Merge pull request #1373 from ahocevar/rbush-fail
ol.structs.RBush#remove() is unreliable
This commit is contained in:
+13
-5
@@ -620,8 +620,9 @@ ol.structs.RBush.prototype.remove_ = function(extent, value) {
|
|||||||
var path = [node];
|
var path = [node];
|
||||||
/** @type {Array.<number>} */
|
/** @type {Array.<number>} */
|
||||||
var indexes = [0];
|
var indexes = [0];
|
||||||
var child, children, i, ii;
|
var childrenDone, child, children, i, ii;
|
||||||
while (path.length > 0) {
|
while (path.length > 0) {
|
||||||
|
childrenDone = false;
|
||||||
goog.asserts.assert(node.height > 0);
|
goog.asserts.assert(node.height > 0);
|
||||||
if (node.height == 1) {
|
if (node.height == 1) {
|
||||||
children = node.children;
|
children = node.children;
|
||||||
@@ -633,8 +634,7 @@ ol.structs.RBush.prototype.remove_ = function(extent, value) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
node = path.pop();
|
childrenDone = true;
|
||||||
index = indexes.pop();
|
|
||||||
} else if (index < node.children.length) {
|
} else if (index < node.children.length) {
|
||||||
child = node.children[index];
|
child = node.children[index];
|
||||||
if (ol.extent.containsExtent(child.extent, extent)) {
|
if (ol.extent.containsExtent(child.extent, extent)) {
|
||||||
@@ -646,8 +646,16 @@ ol.structs.RBush.prototype.remove_ = function(extent, value) {
|
|||||||
++index;
|
++index;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
node = path.pop();
|
childrenDone = true;
|
||||||
index = indexes.pop();
|
}
|
||||||
|
if (childrenDone) {
|
||||||
|
var lastPathIndex = path.length - 1;
|
||||||
|
node = path[lastPathIndex];
|
||||||
|
index = ++indexes[lastPathIndex];
|
||||||
|
if (index > node.children.length) {
|
||||||
|
path.pop();
|
||||||
|
indexes.pop();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -32,13 +32,18 @@ describe('ol.structs.RBush', function() {
|
|||||||
|
|
||||||
var objs;
|
var objs;
|
||||||
beforeEach(function() {
|
beforeEach(function() {
|
||||||
objs = [{}, {}, {}, {}, {}, {}];
|
objs = [{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}];
|
||||||
rBush.insert([0, 0, 1, 1], objs[0]);
|
rBush.insert([0, 0, 1, 1], objs[0]);
|
||||||
rBush.insert([1, 1, 4, 4], objs[1]);
|
rBush.insert([1, 1, 4, 4], objs[1]);
|
||||||
rBush.insert([2, 2, 3, 3], objs[2]);
|
rBush.insert([2, 2, 3, 3], objs[2]);
|
||||||
rBush.insert([-5, -5, -4, -4], objs[3]);
|
rBush.insert([-5, -5, -4, -4], objs[3]);
|
||||||
rBush.insert([-4, -4, -1, -1], objs[4]);
|
rBush.insert([-4, -4, -1, -1], objs[4]);
|
||||||
rBush.insert([-3, -3, -2, -2], objs[5]);
|
rBush.insert([-3, -3, -2, -2], objs[5]);
|
||||||
|
rBush.insert([-3, -3, -2, -2], objs[6]);
|
||||||
|
rBush.insert([-3, -3, -2, -2], objs[7]);
|
||||||
|
rBush.insert([-3, -3, -2, -2], objs[8]);
|
||||||
|
rBush.insert([-3, -3, -2, -2], objs[9]);
|
||||||
|
rBush.insert([-3, -3, -2, -2], objs[10]);
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('#getAllInExtent', function() {
|
describe('#getAllInExtent', function() {
|
||||||
@@ -294,6 +299,20 @@ describe('ol.structs.RBush', function() {
|
|||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe('#remove', function() {
|
||||||
|
|
||||||
|
it('can remove all 2000 objects', function() {
|
||||||
|
var objs = rBush.getAll();
|
||||||
|
var i, value;
|
||||||
|
for (i = objs.length - 1; i >= 0; --i) {
|
||||||
|
value = objs[i];
|
||||||
|
rBush.remove(value);
|
||||||
|
}
|
||||||
|
expect(rBush.isEmpty()).to.be(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user