blob: b9b1b89b9140c0b19667941937cd528ac297ddca [file] [edit]
/*
* Copyright (C) 2022-2024 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include <wtf/HashSet.h>
#include <wtf/Lock.h>
#include <wtf/ThreadSafeWeakPtr.h>
#include <wtf/Vector.h>
#include <wtf/WordLock.h>
namespace WTF {
template<typename T>
class ThreadSafeWeakHashSet final {
WTF_DEPRECATED_MAKE_FAST_ALLOCATED(ThreadSafeWeakHashSet);
public:
ThreadSafeWeakHashSet() = default;
ThreadSafeWeakHashSet(ThreadSafeWeakHashSet&& other) { moveFrom(WTF::move(other)); }
ThreadSafeWeakHashSet& operator=(ThreadSafeWeakHashSet&& other)
{
moveFrom(WTF::move(other));
return *this;
}
class const_iterator {
public:
using iterator_category = std::forward_iterator_tag;
using value_type = T;
using pointer = const value_type*;
using reference = const value_type&;
private:
const_iterator(Vector<Ref<T>>&& strongReferences)
: m_strongReferences(WTF::move(strongReferences)) { }
public:
T* get() const
{
RELEASE_ASSERT(m_position < m_strongReferences.size());
return m_strongReferences[m_position].ptr();
}
T& operator*() const { return *get(); }
T* operator->() const { return get(); }
const_iterator& operator++()
{
RELEASE_ASSERT(m_position < m_strongReferences.size());
++m_position;
return *this;
}
bool operator==(const const_iterator& other) const
{
// This should only be used to compare with end.
ASSERT_UNUSED(other, other.m_strongReferences.isEmpty());
return m_position == m_strongReferences.size();
}
private:
template<typename> friend class ThreadSafeWeakHashSet;
Vector<Ref<T>> m_strongReferences;
size_t m_position { 0 };
};
const_iterator begin() const
{
return { values() };
}
const_iterator end() const { return { { } }; }
template<typename U>
void add(const U& value) requires (std::is_convertible_v<U*, T*>)
{
RELEASE_ASSERT_WITH_SECURITY_IMPLICATION(!value.controlBlock().objectHasStartedDeletion());
Locker locker { m_lock };
ControlBlockRefPtr retainedControlBlock { &value.controlBlock() };
ASSERT(retainedControlBlock);
amortizedCleanupIfNeeded();
m_set.add(std::make_pair(WTF::move(retainedControlBlock), &value));
}
template<typename U>
bool remove(const U& value) requires (std::is_convertible_v<U*, T*>)
{
Locker locker { m_lock };
amortizedCleanupIfNeeded();
// If there are no weak refs then it can't be in our table. In that case
// there's no point in potentially allocating a ControlBlock.
if (!value.weakRefCount())
return false;
auto it = m_set.find(std::make_pair(&value.controlBlock(), &value));
if (it == m_set.end())
return false;
bool wasDeleted = it->first->objectHasStartedDeletion();
bool result = m_set.remove(it);
ASSERT_UNUSED(result, result);
return !wasDeleted;
}
void clear()
{
Locker locker { m_lock };
m_set.clear();
cleanupHappened();
}
template<typename U>
bool contains(const U& value) const requires (std::is_convertible_v<U*, T*>)
{
Locker locker { m_lock };
amortizedCleanupIfNeeded();
// If there are no weak refs then it can't be in our table. In that case
// there's no point in potentially allocating a ControlBlock.
if (!value.weakRefCount())
return false;
auto it = m_set.find(std::make_pair(&value.controlBlock(), &value));
if (it == m_set.end())
return false;
bool wasDeleted = it->first->objectHasStartedDeletion();
if (wasDeleted)
m_set.remove(it);
return !wasDeleted;
}
bool isEmptyIgnoringNullReferences() const
{
Locker locker { m_lock };
amortizedCleanupIfNeeded();
// FIXME: This seems like it should remove any stale entries it finds along the way. Although, it might require a
// HashSet::removeNoRehash function. https://bugs.webkit.org/show_bug.cgi?id=283928
for (auto& pair : m_set) {
if (!pair.first->objectHasStartedDeletion())
return false;
}
return true;
}
Vector<Ref<T>> values() const
{
Vector<Ref<T>> strongReferences;
{
Locker locker { m_lock };
bool hasNullReferences = false;
strongReferences = compactMap(m_set, [&hasNullReferences](auto& pair) -> RefPtr<T> {
if (RefPtr strongReference = pair.first->template makeStrongReferenceIfPossible<T>(pair.second))
return strongReference;
hasNullReferences = true;
return nullptr;
});
if (hasNullReferences)
m_set.removeIf([](auto& pair) { return pair.first->objectHasStartedDeletion(); });
cleanupHappened();
}
return strongReferences;
}
Vector<ThreadSafeWeakPtr<T>> weakValues() const
{
Vector<ThreadSafeWeakPtr<T>> weakReferences;
{
// FIXME: It seems like this should prune known dead entries as it goes. https://bugs.webkit.org/show_bug.cgi?id=283928
Locker locker { m_lock };
weakReferences = WTF::map(m_set, [](auto& pair) {
return ThreadSafeWeakPtr<T> { *pair.first, *pair.second };
});
}
return weakReferences;
}
template<typename Functor>
void forEach(const Functor& callback) const
{
for (auto& item : values())
callback(item.get());
}
unsigned sizeIncludingEmptyEntriesForTesting()
{
Locker locker { m_lock };
return m_set.size();
}
private:
ALWAYS_INLINE void cleanupHappened() const WTF_REQUIRES_LOCK(m_lock)
{
m_operationCountSinceLastCleanup = 0;
m_maxOperationCountWithoutCleanup = std::min(std::numeric_limits<unsigned>::max() / 2, m_set.size()) * 2;
}
ALWAYS_INLINE void moveFrom(ThreadSafeWeakHashSet&& other)
{
Locker locker { m_lock };
Locker otherLocker { other.m_lock };
m_set = std::exchange(other.m_set, { });
m_operationCountSinceLastCleanup = std::exchange(other.m_operationCountSinceLastCleanup, 0);
m_maxOperationCountWithoutCleanup = std::exchange(other.m_maxOperationCountWithoutCleanup, 0);
}
ALWAYS_INLINE void amortizedCleanupIfNeeded() const WTF_REQUIRES_LOCK(m_lock)
{
if (++m_operationCountSinceLastCleanup > m_maxOperationCountWithoutCleanup) {
m_set.removeIf([] (auto& pair) {
ASSERT(pair.first->weakRefCount());
return pair.first->objectHasStartedDeletion();
});
cleanupHappened();
}
}
mutable HashSet<std::pair<ControlBlockRefPtr, const T*>> m_set WTF_GUARDED_BY_LOCK(m_lock);
mutable unsigned m_operationCountSinceLastCleanup WTF_GUARDED_BY_LOCK(m_lock) { 0 };
mutable unsigned m_maxOperationCountWithoutCleanup WTF_GUARDED_BY_LOCK(m_lock) { 0 };
mutable WordLock m_lock;
};
} // namespace WTF
using WTF::ThreadSafeWeakHashSet;