1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
|
/* -*- Mode: C++; tab-width: 13; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=13 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef MOZILLA_CACHE_INVALIDATOR_H_
#define MOZILLA_CACHE_INVALIDATOR_H_
#include <cstddef> // nullptr_t
#include <memory>
#include <optional>
#include <vector>
#include "DmdStdContainers.h"
#include "mozilla/Assertions.h"
// -
namespace mozilla {
class AbstractCache;
// -
class CacheInvalidator {
friend class AbstractCache;
private:
mutable webgl::dmd_unordered_set<AbstractCache*> mCaches;
public:
virtual ~CacheInvalidator() {
// It's actually generally unsafe to wait until now to invalidate caches,
// because when used as a mixin, this dtor is called after the dtor for the
// derived class. This means that if the derived class holds a cache (or is
// a cache!), OnInvalidate() will be called on a destroyed object.
// MOZ_ASSERT(!mCaches);
InvalidateCaches();
}
void InvalidateCaches() const;
// -
size_t SizeOfExcludingThis(mozilla::MallocSizeOf mso) const {
return mCaches.SizeOfExcludingThis(mso);
}
};
// -
class AbstractCache {
using InvalidatorListT = std::vector<const CacheInvalidator*>;
private:
InvalidatorListT mInvalidators;
public:
AbstractCache() = default;
explicit AbstractCache(InvalidatorListT&& invalidators) {
ResetInvalidators(std::move(invalidators));
}
virtual ~AbstractCache() { ResetInvalidators({}); }
public:
virtual void OnInvalidate() = 0;
void ResetInvalidators(InvalidatorListT&&);
void AddInvalidator(const CacheInvalidator&);
};
// -
template <typename T>
class CacheMaybe : public AbstractCache {
std::optional<T> mVal;
public:
CacheMaybe& operator=(std::optional<T>&& rhs) {
mVal.swap(rhs);
rhs.reset();
return *this;
}
template <typename U>
CacheMaybe& operator=(U&& rhs) {
mVal.emplace(std::move(rhs));
return *this;
}
CacheMaybe& operator=(std::nullptr_t) {
mVal.reset();
return *this;
}
void OnInvalidate() override {
*this = {};
ResetInvalidators({});
}
explicit operator bool() const { return bool(mVal); }
T* get() const { return mVal ? &*mVal : nullptr; }
T* operator->() const { return get(); }
};
// -
template <typename KeyT, typename ValueT>
class CacheWeakMap final {
class Entry final : public AbstractCache {
public:
CacheWeakMap& mParent;
const KeyT mKey;
const ValueT mValue;
Entry(CacheWeakMap& parent, const KeyT& key, ValueT&& value)
: mParent(parent), mKey(key), mValue(std::move(value)) {}
void OnInvalidate() override {
const auto erased = mParent.mMap.erase(&mKey);
MOZ_ALWAYS_TRUE(erased == 1);
}
};
struct DerefHash final {
size_t operator()(const KeyT* const a) const {
return std::hash<KeyT>()(*a);
}
};
struct DerefEqual final {
bool operator()(const KeyT* const a, const KeyT* const b) const {
return *a == *b;
}
};
using MapT = webgl::dmd_unordered_map<const KeyT*, std::unique_ptr<Entry>,
DerefHash, DerefEqual>;
MapT mMap;
public:
size_t SizeOfExcludingThis(mozilla::MallocSizeOf mso) const {
return mMap.SizeOfExcludingThis(mso);
}
std::unique_ptr<Entry> MakeEntry(const KeyT& key, ValueT&& value) {
return std::unique_ptr<Entry>(new Entry(*this, key, std::move(value)));
}
std::unique_ptr<Entry> MakeEntry(const KeyT& key, const ValueT& value) {
return MakeEntry(key, ValueT(value));
}
const ValueT* Insert(std::unique_ptr<Entry>&& entry) {
auto insertable = typename MapT::value_type{&entry->mKey, std::move(entry)};
const auto res = mMap.insert(std::move(insertable));
const auto& didInsert = res.second;
MOZ_ALWAYS_TRUE(didInsert);
const auto& itr = res.first;
return &itr->second->mValue;
}
const ValueT* Find(const KeyT& key) const {
const auto itr = mMap.find(&key);
if (itr == mMap.end()) return nullptr;
return &itr->second->mValue;
}
void Clear() const {
while (true) {
const auto itr = mMap.begin();
if (itr == mMap.end()) return;
itr->second->OnInvalidate();
}
}
~CacheWeakMap() { Clear(); }
};
} // namespace mozilla
#endif // MOZILLA_CACHE_INVALIDATOR_H_
|