123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783 |
- #pragma once
- #include <util/generic/algorithm.h>
- #include <util/generic/ptr.h>
- #include <util/generic/intrlist.h>
- #include <util/generic/hash_set.h>
- #include <util/generic/vector.h>
- #include <util/generic/yexception.h>
- #include <utility>
- template <class TValue>
- struct TUniformSizeProvider {
- size_t operator()(const TValue&) {
- return 1;
- }
- };
- template <typename TKey, typename TValue, class TSizeProvider = TUniformSizeProvider<TValue>>
- class TLRUList {
- public:
- TLRUList(size_t maxSize, const TSizeProvider& sizeProvider = TSizeProvider())
- : List()
- , SizeProvider(sizeProvider)
- , ItemsAmount(0)
- , TotalSize(0)
- , MaxSize(maxSize)
- {
- }
- public:
- struct TItem: public TIntrusiveListItem<TItem> {
- typedef TIntrusiveListItem<TItem> TBase;
- // universal reference for TKey here prevents TItem(/*non-const*/ TItem&) from compiling,
- // so explicitly specify const TKey& and TKey&&
- explicit TItem(const TKey& key)
- : TBase()
- , Key(key)
- , Value()
- {
- }
- explicit TItem(TKey&& key)
- : TBase()
- , Key(std::move(key))
- , Value()
- {
- }
- template<typename TKeyRef, typename TValueRef>
- TItem(TKeyRef&& key, TValueRef&& value)
- : TBase()
- , Key(std::forward<TKeyRef>(key))
- , Value(std::forward<TValueRef>(value))
- {
- }
- TItem(const TItem&) = default;
- TItem(TItem&&) = default;
- bool operator<(const TItem& rhs) const {
- return Key < rhs.Key;
- }
- bool operator==(const TItem& rhs) const {
- return Key == rhs.Key;
- }
- TKey Key;
- TValue Value;
- struct THash {
- size_t operator()(const TItem& item) const {
- return ::THash<TKey>()(item.Key);
- }
- size_t operator()(const TKey& key) const {
- return ::THash<TKey>()(key);
- }
- };
- struct TEqualTo {
- bool operator()(const TItem& lhs, const TItem& rhs) const {
- return lhs.Key == rhs.Key;
- }
- bool operator()(const TItem& lhs, const TKey& rhs) const {
- return lhs.Key == rhs;
- }
- bool operator()(const TKey& lhs, const TItem& rhs) const {
- return lhs == rhs.Key;
- }
- };
- };
- public:
- TItem* Insert(TItem* item) {
- List.PushBack(item);
- ++ItemsAmount;
- TotalSize += SizeProvider(item->Value);
- return RemoveIfOverflown();
- }
- TItem* RemoveIfOverflown() {
- TItem* deleted = nullptr;
- if (TotalSize > MaxSize && ItemsAmount > 1) {
- deleted = GetOldest();
- Erase(deleted);
- }
- return deleted;
- }
- TItem* GetOldest() {
- typename TListType::TIterator it = List.Begin();
- Y_ASSERT(it != List.End());
- return &*it;
- }
- void Erase(TItem* item) {
- item->Unlink();
- --ItemsAmount;
- TotalSize -= SizeProvider(item->Value);
- }
- void Promote(TItem* item) {
- item->Unlink();
- List.PushBack(item);
- }
- [[nodiscard]] size_t GetSize() const {
- return ItemsAmount;
- }
- [[nodiscard]] size_t GetTotalSize() const {
- return TotalSize;
- }
- size_t GetMaxSize() const {
- return MaxSize;
- }
- // It does not remove current items if newSize is less than TotalSize.
- // Caller should use RemoveIfOverflown to clean up list in this case
- void SetMaxSize(size_t newSize) {
- MaxSize = newSize;
- }
- private:
- typedef TIntrusiveList<TItem> TListType;
- TListType List;
- TSizeProvider SizeProvider;
- size_t ItemsAmount;
- size_t TotalSize;
- size_t MaxSize;
- };
- template <typename TKey, typename TValue, class TSizeProvider = TUniformSizeProvider<TValue>>
- class TLFUList {
- public:
- TLFUList(size_t maxSize, const TSizeProvider& sizeProvider = TSizeProvider())
- : List()
- , SizeProvider(sizeProvider)
- , ItemsAmount(0)
- , TotalSize(0)
- , MaxSize(maxSize)
- {
- }
- struct TItem: public TIntrusiveListItem<TItem> {
- typedef TIntrusiveListItem<TItem> TBase;
- explicit TItem(const TKey& key)
- : TBase()
- , Key(key)
- , Value()
- , Counter(0)
- {
- }
- explicit TItem(TKey&& key)
- : TBase()
- , Key(std::move(key))
- , Value()
- , Counter(0)
- {
- }
- template<typename TKeyRef, typename TValueRef>
- TItem(TKeyRef&& key, TValueRef&& value)
- : TBase()
- , Key(std::forward<TKeyRef>(key))
- , Value(std::forward<TValueRef>(value))
- , Counter(0)
- {
- }
- TItem(const TItem&) = default;
- TItem(TItem&&) = default;
- bool operator<(const TItem& rhs) const {
- return Key < rhs.Key;
- }
- bool operator==(const TItem& rhs) const {
- return Key == rhs.Key;
- }
- TKey Key;
- TValue Value;
- size_t Counter;
- struct THash {
- size_t operator()(const TItem& item) const {
- return ::THash<TKey>()(item.Key);
- }
- size_t operator()(const TKey& key) const {
- return ::THash<TKey>()(key);
- }
- };
- struct TEqualTo {
- bool operator()(const TItem& lhs, const TItem& rhs) const {
- return lhs.Key == rhs.Key;
- }
- bool operator()(const TItem& lhs, const TKey& rhs) const {
- return lhs.Key == rhs;
- }
- bool operator()(const TKey& lhs, const TItem& rhs) const {
- return lhs == rhs.Key;
- }
- };
- };
- public:
- TItem* Insert(TItem* item) {
- List.PushBack(item); // give a chance for promotion
- ++ItemsAmount;
- TotalSize += SizeProvider(item->Value);
- return RemoveIfOverflown();
- }
- TItem* RemoveIfOverflown() {
- TItem* deleted = nullptr;
- if (TotalSize > MaxSize && ItemsAmount > 1) {
- deleted = GetLeastFrequentlyUsed();
- Erase(deleted);
- }
- return deleted;
- }
- TItem* GetLeastFrequentlyUsed() {
- typename TListType::TIterator it = List.Begin();
- Y_ASSERT(it != List.End());
- return &*it;
- }
- void Erase(TItem* item) {
- item->Unlink();
- --ItemsAmount;
- TotalSize -= SizeProvider(item->Value);
- }
- void Promote(TItem* item) {
- size_t counter = ++item->Counter;
- typename TListType::TIterator it = item;
- while (it != List.End() && counter >= it->Counter) {
- ++it;
- }
- item->LinkBefore(&*it);
- }
- [[nodiscard]] size_t GetSize() const {
- return ItemsAmount;
- }
- [[nodiscard]] size_t GetTotalSize() const {
- return TotalSize;
- }
- size_t GetMaxSize() const {
- return MaxSize;
- }
- // It does not remove current items if newSize is less than TotalSize.
- // Caller should use RemoveIfOverflown to clean up list in this case
- void SetMaxSize(size_t newSize) {
- MaxSize = newSize;
- }
- private:
- typedef TIntrusiveList<TItem> TListType;
- TListType List;
- TSizeProvider SizeProvider;
- size_t ItemsAmount;
- size_t TotalSize;
- size_t MaxSize;
- };
- // Least Weighted list
- // discards the least weighted items first
- // doesn't support promotion
- template <typename TKey, typename TValue, typename TWeight, typename TWeighter>
- class TLWList {
- public:
- TLWList(size_t maxSize)
- : Size(0)
- , MaxSize(maxSize)
- {
- }
- struct TItem {
- explicit TItem(const TKey& key)
- : Key(key)
- , Value()
- , Weight(TWeighter::Weight(Value))
- {
- }
- explicit TItem(TKey&& key)
- : Key(std::move(key))
- , Value()
- , Weight(TWeighter::Weight(Value))
- {
- }
- template<typename TKeyRef, typename TValueRef>
- TItem(TKeyRef&& key, TValueRef&& value)
- : Key(std::forward<TKeyRef>(key))
- , Value(std::forward<TValueRef>(value))
- , Weight(TWeighter::Weight(Value))
- {
- }
- TItem(const TItem&) = default;
- TItem(TItem&&) = default;
- bool operator<(const TItem& rhs) const {
- return Key < rhs.Key;
- }
- bool operator==(const TItem& rhs) const {
- return Key == rhs.Key;
- }
- TKey Key;
- TValue Value;
- TWeight Weight;
- struct THash {
- size_t operator()(const TItem& item) const {
- return ::THash<TKey>()(item.Key);
- }
- size_t operator()(const TKey& key) const {
- return ::THash<TKey>()(key);
- }
- };
- struct TEqualTo {
- bool operator()(const TItem& lhs, const TItem& rhs) const {
- return lhs.Key == rhs.Key;
- }
- bool operator()(const TItem& lhs, const TKey& rhs) const {
- return lhs.Key == rhs;
- }
- bool operator()(const TKey& lhs, const TItem& rhs) const {
- return lhs == rhs.Key;
- }
- };
- };
- struct THeapComparator {
- bool operator()(TItem* const item1, TItem* const item2) const {
- return item1->Weight > item2->Weight;
- }
- };
- public:
- TItem* Insert(TItem* item) {
- FixHeap();
- if (Size >= MaxSize && item->Weight < GetLightest()->Weight) {
- return item;
- }
- Heap.push_back(item);
- PushHeap(Heap.begin(), Heap.end(), THeapComparator());
- ++Size;
- return RemoveIfOverflown();
- }
- TItem* RemoveIfOverflown() {
- if (Size <= MaxSize) {
- return nullptr;
- }
- auto lightest = GetLightest();
- Erase(lightest);
- PopHeap(Heap.begin(), Heap.end(), THeapComparator());
- return lightest;
- }
- TItem* GetLightest() {
- FixHeap();
- Y_ASSERT(!Heap.empty());
- return Heap.front();
- }
- // This method doesn't remove items from the heap.
- // Erased items are stored in Removed set
- // and will be deleted on-access (using FixHeap method)
- void Erase(TItem* item) {
- Y_ASSERT(Size > 0);
- --Size;
- Removed.insert(item);
- }
- void Promote(TItem*) {
- // do nothing
- }
- [[nodiscard]] size_t GetSize() const {
- return Size;
- }
- [[nodiscard]] size_t GetTotalSize() const {
- return Size;
- }
- size_t GetMaxSize() const {
- return MaxSize;
- }
- // It does not remove current items if newSize is less than TotalSize.
- // Caller should use RemoveIfOverflown to clean up list in this case
- void SetMaxSize(size_t newSize) {
- MaxSize = newSize;
- }
- void Clear() {
- Heap.clear();
- Removed.clear();
- Size = 0;
- }
- private:
- // Physically remove erased elements from the heap
- void FixHeap() {
- if (Removed.empty()) {
- return;
- }
- Heap.erase(std::remove_if(Heap.begin(), Heap.end(), [this](TItem* item) {
- return this->Removed.contains(item);
- }),
- Heap.end());
- MakeHeap(Heap.begin(), Heap.end(), THeapComparator());
- Removed.clear();
- Size = Heap.size();
- }
- private:
- TVector<TItem*> Heap;
- THashSet<TItem*> Removed;
- size_t Size;
- size_t MaxSize;
- };
- template <typename TKey, typename TValue, typename TListType, typename TDeleter, typename TAllocator = std::allocator<void>>
- class TCache {
- typedef typename TListType::TItem TItem;
- typedef typename TItem::THash THash;
- typedef THashMultiSet<TItem, THash, typename TItem::TEqualTo, TAllocator> TIndex;
- typedef typename TIndex::iterator TIndexIterator;
- typedef typename TIndex::const_iterator TIndexConstIterator;
- public:
- class TIterator {
- public:
- explicit TIterator(const TIndexConstIterator& iter)
- : Iter(iter)
- {
- }
- TValue& operator*() {
- return const_cast<TValue&>(Iter->Value);
- }
- TValue* operator->() {
- return const_cast<TValue*>(&Iter->Value);
- }
- bool operator==(const TIterator& rhs) const {
- return Iter == rhs.Iter;
- }
- bool operator!=(const TIterator& rhs) const {
- return Iter != rhs.Iter;
- }
- TIterator& operator++() {
- ++Iter;
- return *this;
- }
- const TKey& Key() const {
- return Iter->Key;
- }
- const TValue& Value() const {
- return Iter->Value;
- }
- friend class TCache<TKey, TValue, TListType, TDeleter, TAllocator>;
- private:
- TIndexConstIterator Iter;
- };
- TCache(TListType&& list, bool multiValue = false)
- : Index()
- , List(std::move(list))
- , MultiValue(multiValue)
- {
- }
- ~TCache() {
- Clear();
- }
- [[nodiscard]] size_t Size() const {
- return Index.size();
- }
- [[nodiscard]] size_t TotalSize() const {
- return List.GetTotalSize();
- }
- TIterator Begin() const {
- return TIterator(Index.begin());
- }
- TIterator End() const {
- return TIterator(Index.end());
- }
- TIterator Find(const TKey& key) {
- TIndexIterator it = Index.find(key);
- if (it != Index.end())
- List.Promote(const_cast<TItem*>(&*it));
- return TIterator(it);
- }
- TIterator FindWithoutPromote(const TKey& key) const {
- return TIterator(Index.find(key));
- }
- // note: it shouldn't touch 'value' if it returns false.
- bool PickOut(const TKey& key, TValue* value) {
- Y_ASSERT(value);
- TIndexIterator it = Index.find(key);
- if (it == Index.end())
- return false;
- *value = std::move(it->Value);
- List.Erase(const_cast<TItem*>(&*it));
- Index.erase(it);
- Y_ASSERT(Index.size() == List.GetSize());
- return true;
- }
- bool Insert(const std::pair<TKey, TValue>& p) {
- return Insert(p.first, p.second);
- }
- template<typename TKeyRef, typename TValueRef>
- bool InsertImpl(TKeyRef&& key, TValueRef&& value) {
- if (!MultiValue && Index.find(key) != Index.end())
- return false;
- TIndexIterator it = Index.emplace(std::forward<TKeyRef>(key), std::forward<TValueRef>(value));
- TItem* insertedItem = const_cast<TItem*>(&*it);
- auto removedItem = List.Insert(insertedItem);
- auto insertedWasRemoved = removedItem == insertedItem;
- if (removedItem) {
- EraseFromIndex(removedItem);
- while ((removedItem = List.RemoveIfOverflown())) {
- insertedWasRemoved = insertedWasRemoved || insertedItem == removedItem;
- EraseFromIndex(removedItem);
- }
- }
- Y_ASSERT(Index.size() == List.GetSize());
- return !insertedWasRemoved;
- }
- // a lot of code calls Insert(key, {arguments for TValue constructor})
- // template version InsertImpl can not process this
- bool Insert(const TKey& key, const TValue& value) {
- return InsertImpl(key, value);
- }
- bool Insert(const TKey& key, TValue&& value) {
- return InsertImpl(key, std::move(value));
- }
- bool Insert(TKey&& key, const TValue& value) {
- return InsertImpl(std::move(key), value);
- }
- bool Insert(TKey&& key, TValue&& value) {
- return InsertImpl(std::move(key), std::move(value));
- }
- template<typename TKeyRef, typename TValueRef>
- void UpdateImpl(TKeyRef&& key, TValueRef&& value) {
- if (MultiValue)
- ythrow yexception() << "TCache: can't \"Update\" in multicache";
- TIterator it = Find(key);
- if (it != End()) {
- Erase(it);
- }
- InsertImpl(std::forward<TKeyRef>(key), std::forward<TValueRef>(value));
- Y_ASSERT(Index.size() == List.GetSize());
- }
- void Update(const TKey& key, const TValue& value) {
- UpdateImpl(key, value);
- }
- void Update(const TKey& key, TValue&& value) {
- UpdateImpl(key, std::move(value));
- }
- void Update(TKey&& key, const TValue& value) {
- UpdateImpl(std::move(key), value);
- }
- void Update(TKey&& key, TValue&& value) {
- UpdateImpl(std::move(key), std::move(value));
- }
- void Erase(TIterator it) {
- TItem* item = const_cast<TItem*>(&*it.Iter);
- List.Erase(item);
- TDeleter::Destroy(item->Value);
- Index.erase(it.Iter);
- Y_ASSERT(Index.size() == List.GetSize());
- }
- bool Empty() const {
- return Index.empty();
- }
- void Clear() {
- for (TIndexIterator it = Index.begin(); it != Index.end(); ++it) {
- TItem* item = const_cast<TItem*>(&*it);
- List.Erase(item);
- TDeleter::Destroy(item->Value);
- }
- Y_ASSERT(List.GetSize() == 0);
- Index.clear();
- }
- void SetMaxSize(size_t newSize) {
- List.SetMaxSize(newSize);
- TItem* removedItem = nullptr;
- while ((removedItem = List.RemoveIfOverflown())) {
- EraseFromIndex(removedItem);
- }
- Y_ASSERT(Index.size() == List.GetSize());
- }
- size_t GetMaxSize() const {
- return List.GetMaxSize();
- }
- void Reserve(size_t hint) {
- Index.reserve(hint);
- }
- typedef typename TIndex::node_allocator_type TNodeAllocatorType;
- TNodeAllocatorType& GetNodeAllocator() {
- return Index.GetNodeAllocator();
- }
- protected:
- TIndex Index;
- TListType List;
- bool MultiValue;
- TIterator FindByItem(TItem* item) {
- std::pair<TIndexIterator, TIndexIterator> p = Index.equal_range(*item);
- // we have to delete the exact unlinked item (there may be multiple items for one key)
- TIndexIterator it;
- for (it = p.first; it != p.second; ++it)
- if (&*it == item)
- break;
- return (it == p.second ? End() : TIterator(it));
- }
- void EraseFromIndex(TItem* item) {
- TDeleter::Destroy(item->Value);
- TIterator it = FindByItem(item);
- Y_ASSERT(it != End());
- Index.erase(it.Iter);
- }
- };
- struct TNoopDelete {
- template <class T>
- static inline void Destroy(const T&) noexcept {
- }
- };
- template <typename TKey, typename TValue, typename TDeleter = TNoopDelete, class TSizeProvider = TUniformSizeProvider<TValue>, typename TAllocator = std::allocator<void>>
- class TLRUCache: public TCache<TKey, TValue, TLRUList<TKey, TValue, TSizeProvider>, TDeleter, TAllocator> {
- using TListType = TLRUList<TKey, TValue, TSizeProvider>;
- typedef TCache<TKey, TValue, TListType, TDeleter, TAllocator> TBase;
- public:
- TLRUCache(size_t maxSize, bool multiValue = false, const TSizeProvider& sizeProvider = TSizeProvider())
- : TBase(TListType(maxSize, sizeProvider), multiValue)
- {
- }
- public:
- typedef typename TBase::TIterator TIterator;
- TValue& GetOldest() {
- return TBase::List.GetOldest()->Value;
- }
- TIterator FindOldest() {
- return TBase::Empty() ? TBase::End() : this->FindByItem(TBase::List.GetOldest());
- }
- size_t TotalSize() const {
- return TBase::List.GetTotalSize();
- }
- };
- template <typename TKey, typename TValue, typename TDeleter = TNoopDelete, typename TAllocator = std::allocator<void>, class TSizeProvider = TUniformSizeProvider<TValue>>
- class TLFUCache: public TCache<TKey, TValue, TLFUList<TKey, TValue, TSizeProvider>, TDeleter, TAllocator> {
- typedef TCache<TKey, TValue, TLFUList<TKey, TValue, TSizeProvider>, TDeleter, TAllocator> TBase;
- using TListType = TLFUList<TKey, TValue, TSizeProvider>;
- public:
- typedef typename TBase::TIterator TIterator;
- TLFUCache(size_t maxSize, bool multiValue = false, const TSizeProvider& sizeProvider = TSizeProvider())
- : TBase(TListType(maxSize, sizeProvider), multiValue)
- {
- }
- TValue& GetLeastFrequentlyUsed() {
- return TBase::List.GetLeastFrequentlyUsed()->Value;
- }
- TIterator FindLeastFrequentlyUsed() {
- return TBase::Empty() ? TBase::End() : this->FindByItem(TBase::List.GetLeastFrequentlyUsed());
- }
- };
- // Least Weighted cache
- // discards the least weighted items first
- // doesn't support promotion
- template <typename TKey, typename TValue, typename TWeight, typename TWeighter, typename TDeleter = TNoopDelete, typename TAllocator = std::allocator<void>>
- class TLWCache: public TCache<TKey, TValue, TLWList<TKey, TValue, TWeight, TWeighter>, TDeleter, TAllocator> {
- typedef TCache<TKey, TValue, TLWList<TKey, TValue, TWeight, TWeighter>, TDeleter, TAllocator> TBase;
- using TListType = TLWList<TKey, TValue, TWeight, TWeighter>;
- public:
- typedef typename TBase::TIterator TIterator;
- TLWCache(size_t maxSize, bool multiValue = false)
- : TBase(TListType(maxSize), multiValue)
- {
- }
- TValue& GetLightest() {
- return TBase::List.GetLightest()->Value;
- }
- TIterator FindLightest() {
- return TBase::Empty() ? TBase::End() : this->FindByItem(TBase::List.GetLightest());
- }
- };
|