|
|
|
|
@@ -15,8 +15,8 @@
|
|
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
// This class supports atomic inserts, removes, and iteration.
|
|
|
|
|
// All operations are synchronized using a read-write lock.
|
|
|
|
|
// This class supports atomic removes (by using a lock and returning a
|
|
|
|
|
// future) and non atomic insert and iteration (by using indexes).
|
|
|
|
|
template <typename T>
|
|
|
|
|
class atomic_vector {
|
|
|
|
|
std::vector<T> _vec;
|
|
|
|
|
@@ -24,10 +24,6 @@ class atomic_vector {
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
void add(const T& value) {
|
|
|
|
|
auto lock = _vec_lock.for_write().lock().get();
|
|
|
|
|
auto unlock = seastar::defer([this] {
|
|
|
|
|
_vec_lock.for_write().unlock();
|
|
|
|
|
});
|
|
|
|
|
_vec.push_back(value);
|
|
|
|
|
}
|
|
|
|
|
seastar::future<> remove(const T& value) {
|
|
|
|
|
@@ -48,14 +44,11 @@ public:
|
|
|
|
|
auto unlock = seastar::defer([this] {
|
|
|
|
|
_vec_lock.for_read().unlock();
|
|
|
|
|
});
|
|
|
|
|
// Take a snapshot of the current contents while holding the read lock,
|
|
|
|
|
// so that concurrent add() calls and possible reallocations won't
|
|
|
|
|
// affect our iteration.
|
|
|
|
|
auto snapshot = _vec;
|
|
|
|
|
// We grab locks in both add() and remove(), so we iterate using
|
|
|
|
|
// indexes on the snapshot to avoid concurrent modifications.
|
|
|
|
|
for (size_t i = 0, n = snapshot.size(); i < n; ++i) {
|
|
|
|
|
func(snapshot[i]);
|
|
|
|
|
// We grab a lock in remove(), but not in add(), so we
|
|
|
|
|
// iterate using indexes to guard against the vector being
|
|
|
|
|
// reallocated.
|
|
|
|
|
for (size_t i = 0, n = _vec.size(); i < n; ++i) {
|
|
|
|
|
func(_vec[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -66,17 +59,16 @@ public:
|
|
|
|
|
void thread_for_each_nested(seastar::noncopyable_function<void(T)> func) const {
|
|
|
|
|
// When called in the context of thread_for_each, the read lock is
|
|
|
|
|
// already held, so we don't need to acquire it again. Acquiring it
|
|
|
|
|
// again could lead to a deadlock. This function must only be called
|
|
|
|
|
// while holding the read lock on _vec_lock.
|
|
|
|
|
// again could lead to a deadlock.
|
|
|
|
|
if (!_vec_lock.locked()) {
|
|
|
|
|
utils::on_internal_error("thread_for_each_nested called without holding the vector lock");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Take a snapshot of the current contents while the read lock is held,
|
|
|
|
|
// so that concurrent add() calls and possible reallocations won't
|
|
|
|
|
// affect our iteration.
|
|
|
|
|
auto snapshot = _vec;
|
|
|
|
|
// We grab locks in both add() and remove(), so we iterate using
|
|
|
|
|
// indexes on the snapshot to avoid concurrent modifications.
|
|
|
|
|
for (size_t i = 0, n = snapshot.size(); i < n; ++i) {
|
|
|
|
|
func(snapshot[i]);
|
|
|
|
|
// We grab a lock in remove(), but not in add(), so we
|
|
|
|
|
// iterate using indexes to guard against the vector being
|
|
|
|
|
// reallocated.
|
|
|
|
|
for (size_t i = 0, n = _vec.size(); i < n; ++i) {
|
|
|
|
|
func(_vec[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -87,14 +79,11 @@ public:
|
|
|
|
|
// preemption.
|
|
|
|
|
seastar::future<> for_each(seastar::noncopyable_function<seastar::future<>(T)> func) const {
|
|
|
|
|
auto holder = co_await _vec_lock.hold_read_lock();
|
|
|
|
|
// Take a snapshot of the current contents while holding the read lock,
|
|
|
|
|
// so that concurrent add() calls and possible reallocations won't
|
|
|
|
|
// affect our iteration.
|
|
|
|
|
auto snapshot = _vec;
|
|
|
|
|
// We grab locks in both add() and remove(), so we iterate using
|
|
|
|
|
// indexes on the snapshot to avoid concurrent modifications.
|
|
|
|
|
for (size_t i = 0, n = snapshot.size(); i < n; ++i) {
|
|
|
|
|
co_await func(snapshot[i]);
|
|
|
|
|
// We grab a lock in remove(), but not in add(), so we
|
|
|
|
|
// iterate using indexes to guard against the vector being
|
|
|
|
|
// reallocated.
|
|
|
|
|
for (size_t i = 0, n = _vec.size(); i < n; ++i) {
|
|
|
|
|
co_await func(_vec[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|