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
|
/*
SPDX-FileCopyrightText: 2022 Milian Wolff <mail@milianw.de>
SPDX-License-Identifier: LGPL-2.0-only
*/
#ifndef KDEVPLATFORM_ITEMREPOSITORYREFERENCECOUNTING_H
#define KDEVPLATFORM_ITEMREPOSITORYREFERENCECOUNTING_H
#include "itemrepository.h"
namespace KDevelop {
struct ItemRepositoryReferenceCounting {
template <typename Item>
static inline bool inc(Item* item)
{
Q_ASSERT(item);
const auto index = item->index();
Q_ASSERT(index);
if (!shouldDoDUChainReferenceCounting(item)) {
return false;
}
LockedItemRepository::write<Item>(
[&](auto& repo) { item->increase(repo.dynamicItemFromIndexSimple(index)->m_refCount, index); });
return true;
}
template <typename Item>
static inline bool dec(Item* item)
{
Q_ASSERT(item);
const auto index = item->index();
Q_ASSERT(index);
if (!shouldDoDUChainReferenceCounting(item)) {
return false;
}
LockedItemRepository::write<Item>(
[&](auto& repo) { item->decrease(repo.dynamicItemFromIndexSimple(index)->m_refCount, index); });
return true;
}
struct AssumeValidIndex {
bool operator()(unsigned int index) const
{
Q_ASSERT(index);
return true;
}
};
template <typename Item, typename CheckIndex = AssumeValidIndex>
static inline void setIndex(Item* item, unsigned int& m_index, unsigned int index,
CheckIndex checkIndex = AssumeValidIndex{})
{
Q_ASSERT(item);
if (m_index == index) {
return;
}
if (shouldDoDUChainReferenceCounting(item)) {
LockedItemRepository::write<Item>([&](auto& repo) {
if (checkIndex(m_index)) {
item->decrease(repo.dynamicItemFromIndexSimple(m_index)->m_refCount, m_index);
}
m_index = index;
if (checkIndex(m_index)) {
item->increase(repo.dynamicItemFromIndexSimple(m_index)->m_refCount, m_index);
}
});
} else {
m_index = index;
}
}
};
}
#endif
|