First attempt at handling deletes and inserts during iteration.

This commit is contained in:
ExeVirus 2024-05-13 17:02:51 -04:00
parent f50dd4318c
commit 0975a98dfe
2 changed files with 70 additions and 32 deletions

View File

@ -26,7 +26,11 @@ namespace server
// all inserted entires go into the uncached vector
void SpatialMap::insert(u16 id, const v3f &pos)
{
m_cached.insert({SpatialKey(pos), id});
if(!m_iterators_stopping_insertion_and_deletion) {
m_cached.insert({SpatialKey(pos), id});
} else {
m_pending_inserts.insert(SpatialKey(pos,id));
}
}
// Invalidates upon position update
@ -40,52 +44,51 @@ void SpatialMap::updatePosition(u16 id, const v3f &oldPos, const v3f &newPos)
}
}
// remove from old cache position
range = m_cached.equal_range(SpatialKey(oldPos));
for (auto it = range.first; it != range.second; ++it) {
if (it->second == id) {
m_cached.erase(it);
break; // Erase and leave early
}
}
// place in new bucket
insert(id, newPos);
remove(id, oldPos); // remove from old cache position
insert(id, newPos); // reinsert
}
void SpatialMap::remove(u16 id, const v3f &pos)
{
SpatialKey key(pos);
if(m_cached.find(key) != m_cached.end()) {
auto range = m_cached.equal_range(key);
for (auto it = range.first; it != range.second; ++it) {
if (it->second == id) {
m_cached.erase(it);
return; // Erase and leave early
if(!m_iterators_stopping_insertion_and_deletion) {
SpatialKey key(pos);
if(m_cached.find(key) != m_cached.end()) {
auto range = m_cached.equal_range(key);
for (auto it = range.first; it != range.second; ++it) {
if (it->second == id) {
m_cached.erase(it);
return; // Erase and leave early
}
}
}
} else {
m_pending_deletes.insert(SpatialKey(pos, id));
return;
}
remove(id); // should never be hit
}
void SpatialMap::remove(u16 id)
{
for (auto it = m_cached.begin(); it != m_cached.end(); ++it) {
if (it->second == id) {
m_cached.erase(it);
return; // Erase and leave early
if(!m_iterators_stopping_insertion_and_deletion) {
for (auto it = m_cached.begin(); it != m_cached.end(); ++it) {
if (it->second == id) {
m_cached.erase(it);
break; // Erase and leave early
}
}
} else {
m_pending_deletes.insert(SpatialKey(v3f(), id));
}
}
void SpatialMap::removeAll()
{
m_cached.clear();
}
void SpatialMap::removeMapblock(const v3f &mapblockOrigin)
{
m_cached.erase(SpatialKey(mapblockOrigin));
if(!m_iterators_stopping_insertion_and_deletion) {
m_cached.clear();
} else {
m_remove_all = true;
}
}
void SpatialMap::getRelevantObjectIds(const aabb3f &box, const std::function<void(u16 id)> &callback)
@ -113,20 +116,45 @@ void SpatialMap::getRelevantObjectIds(const aabb3f &box, const std::function<voi
for (s16 z = min.Z; z < max.Z;z++) {
SpatialKey key(x,y,z, false);
if (m_cached.find(key) != m_cached.end()) {
m_iterators_stopping_insertion_and_deletion++;
auto range = m_cached.equal_range(key);
for (auto &it = range.first; it != range.second; ++it) {
callback(it->second);
}
m_iterators_stopping_insertion_and_deletion--;
handleInsertsAndDeletes();
}
}
}
}
} else { // let's just iterate, it'll be faster
m_iterators_stopping_insertion_and_deletion++;
for (auto it = m_cached.begin(); it != m_cached.end(); ++it) {
callback(it->second);
}
m_iterators_stopping_insertion_and_deletion--;
handleInsertsAndDeletes();
}
}
}
void SpatialMap::handleInsertsAndDeletes()
{
if(!m_iterators_stopping_insertion_and_deletion) {
if(!m_remove_all) {
for (auto key : m_pending_deletes) {
remove(key.padding_or_optional_id, v3f(key.x, key.y, key.z));
}
for (auto key : m_pending_inserts) {
insert(key.padding_or_optional_id, v3f(key.x, key.y, key.z));
}
} else {
m_cached.clear();
m_remove_all = false;
}
m_pending_inserts.clear();
m_pending_deletes.clear();
}
}
} // namespace server

View File

@ -21,6 +21,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include <functional>
#include <vector>
#include <unordered_set>
#include "irrlichttypes_bloated.h"
namespace server
@ -31,14 +32,14 @@ public:
void insert(u16 id, const v3f &pos);
void remove(u16 id, const v3f &pos);
void remove(u16 id);
void removeMapblock(const v3f &mapblockOrigin); // removes all entities at a given mapblock
void removeAll();
void updatePosition(u16 id, const v3f &oldPos, const v3f &newPos);
void getRelevantObjectIds(const aabb3f &box, const std::function<void(u16 id)> &callback);
void handleInsertsAndDeletes();
protected:
typedef struct SpatialKey{
u16 padding{0};
typedef struct SpatialKey {
u16 padding_or_optional_id{0};
s16 x;
s16 y;
s16 z;
@ -55,6 +56,11 @@ protected:
}
}
SpatialKey(const v3f &_pos) : SpatialKey(_pos.X, _pos.Y, _pos.Z){}
// The following use case is for storing pending insertions and deletions while iterating
// using the extra 16 bit padding makes keeping track of them super efficient for hashing.
SpatialKey(const v3f &_pos, const u16 id) : SpatialKey(_pos.X, _pos.Y, _pos.Z, false){
padding_or_optional_id = id;
}
bool operator==(const SpatialKey &other) const {
return (x == other.x && y == other.y && z == other.z);
@ -68,5 +74,9 @@ protected:
};
std::unordered_multimap<SpatialKey, u16, SpatialKeyHash> m_cached;
std::unordered_set<SpatialKey, SpatialKeyHash> m_pending_inserts;
std::unordered_set<SpatialKey, SpatialKeyHash> m_pending_deletes;
bool m_remove_all{false};
u64 m_iterators_stopping_insertion_and_deletion{0};
};
} // namespace server