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 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
|
/*
SPDX-FileCopyrightText: 2008 David Nolden <david.nolden.kdevelop@art-master.de>
SPDX-License-Identifier: LGPL-2.0-only
*/
#include "codemodel.h"
#include "appendedlist.h"
#include <debug.h>
#include <serialization/itemrepository.h>
#include "identifier.h"
#include <serialization/indexedstring.h>
#include <serialization/referencecounting.h>
#include <util/embeddedfreetree.h>
#define ifDebug(x)
namespace KDevelop {
class CodeModelItemHandler
{
public:
static int leftChild(const CodeModelItem& m_data)
{
return ( int )m_data.referenceCount;
}
static void setLeftChild(CodeModelItem& m_data, int child)
{
m_data.referenceCount = ( uint )child;
}
static int rightChild(const CodeModelItem& m_data)
{
return ( int )m_data.uKind;
}
static void setRightChild(CodeModelItem& m_data, int child)
{
m_data.uKind = ( uint )child;
}
//Copies this item into the given one
static void copyTo(const CodeModelItem& m_data, CodeModelItem& data)
{
data = m_data;
}
static void createFreeItem(CodeModelItem& data)
{
data = CodeModelItem();
data.referenceCount = (uint) - 1;
data.uKind = (uint) - 1;
}
static bool isFree(const CodeModelItem& m_data)
{
return !m_data.id.isValid();
}
static const CodeModelItem& data(const CodeModelItem& m_data)
{
return m_data;
}
static bool equals(const CodeModelItem& m_data, const CodeModelItem& rhs)
{
return m_data.id == rhs.id;
}
};
DEFINE_LIST_MEMBER_HASH(CodeModelRepositoryItem, items, CodeModelItem)
class CodeModelRepositoryItem
{
public:
CodeModelRepositoryItem()
{
initializeAppendedLists();
}
CodeModelRepositoryItem(const CodeModelRepositoryItem& rhs, bool dynamic = true) : file(rhs.file)
, centralFreeItem(rhs.centralFreeItem)
{
initializeAppendedLists(dynamic);
copyListsFrom(rhs);
}
~CodeModelRepositoryItem()
{
freeAppendedLists();
}
CodeModelRepositoryItem& operator=(const CodeModelRepositoryItem& rhs) = delete;
unsigned int hash() const
{
//We only compare the declaration. This allows us implementing a map, although the item-repository
//originally represents a set.
return file.index();
}
uint itemSize() const
{
return dynamicSize();
}
uint classSize() const
{
return sizeof(CodeModelRepositoryItem);
}
IndexedString file;
int centralFreeItem = -1;
START_APPENDED_LISTS(CodeModelRepositoryItem);
APPENDED_LIST_FIRST(CodeModelRepositoryItem, CodeModelItem, items);
END_APPENDED_LISTS(CodeModelRepositoryItem, items);
};
class CodeModelRequestItem
{
public:
CodeModelRequestItem(const CodeModelRepositoryItem& item) : m_item(item)
{
}
enum {
AverageSize = 30 //This should be the approximate average size of an Item
};
unsigned int hash() const
{
return m_item.hash();
}
uint itemSize() const
{
return m_item.itemSize();
}
void createItem(CodeModelRepositoryItem* item) const
{
Q_ASSERT(shouldDoDUChainReferenceCounting(item));
Q_ASSERT(shouldDoDUChainReferenceCounting(reinterpret_cast<char*>(item) + (itemSize() - 1)));
new (item) CodeModelRepositoryItem(m_item, false);
}
static void destroy(CodeModelRepositoryItem* item, KDevelop::AbstractItemRepository&)
{
Q_ASSERT(shouldDoDUChainReferenceCounting(item));
// Q_ASSERT(shouldDoDUChainReferenceCounting(((char*)item) + (itemSize()-1)));
item->~CodeModelRepositoryItem();
}
static bool persistent(const CodeModelRepositoryItem* item)
{
Q_UNUSED(item);
return true;
}
bool equals(const CodeModelRepositoryItem* item) const
{
return m_item.file == item->file;
}
const CodeModelRepositoryItem& m_item;
};
// Maps declaration-ids to items
using CodeModelRepo = ItemRepository<CodeModelRepositoryItem, CodeModelRequestItem>;
template <>
class ItemRepositoryFor<CodeModel>
{
friend struct LockedItemRepository;
static CodeModelRepo& repo()
{
static QMutex mutex;
static CodeModelRepo repo(QStringLiteral("Code Model"), &mutex);
return repo;
}
};
CodeModel::CodeModel()
{
LockedItemRepository::initialize<CodeModel>();
}
void CodeModel::addItem(const IndexedString& file, const IndexedQualifiedIdentifier& id, CodeModelItem::Kind kind)
{
ifDebug(qCDebug(LANGUAGE) << "addItem" << file.str() << id.identifier().toString() << id.index; )
if (!id.isValid())
return;
CodeModelRepositoryItem item;
item.file = file;
CodeModelRequestItem request(item);
CodeModelItem newItem;
newItem.id = id;
newItem.kind = kind;
newItem.referenceCount = 1;
LockedItemRepository::write<CodeModel>([&](CodeModelRepo& repo) {
uint index = repo.findIndex(item);
if (index) {
const CodeModelRepositoryItem* oldItem = repo.itemFromIndex(index);
EmbeddedTreeAlgorithms<CodeModelItem, CodeModelItemHandler> alg(oldItem->items(), oldItem->itemsSize(),
oldItem->centralFreeItem);
int listIndex = alg.indexOf(newItem);
DynamicItem<CodeModelRepositoryItem, true> editableItem = repo.dynamicItemFromIndex(index);
auto* items = const_cast<CodeModelItem*>(editableItem->items());
if (listIndex != -1) {
// Only update the reference-count
++items[listIndex].referenceCount;
items[listIndex].kind = kind;
return;
} else {
// Add the item to the list
EmbeddedTreeAddItem<CodeModelItem, CodeModelItemHandler> add(items, editableItem->itemsSize(),
editableItem->centralFreeItem, newItem);
if (add.newItemCount() != editableItem->itemsSize()) {
// The data needs to be transferred into a bigger list. That list is within "item".
item.itemsList().resize(add.newItemCount());
add.transferData(item.itemsList().data(), item.itemsList().size(), &item.centralFreeItem);
repo.deleteItem(index);
} else {
// We're fine: The item fits into the existing list.
return;
}
}
} else {
// We're creating a new index
item.itemsList().append(newItem);
}
Q_ASSERT(!repo.findIndex(request));
// This inserts the changed item
const uint newIndex = repo.index(request);
Q_UNUSED(newIndex);
ifDebug(qCDebug(LANGUAGE) << "new index" << newIndex;)
Q_ASSERT(repo.findIndex(request));
});
}
void CodeModel::updateItem(const IndexedString& file, const IndexedQualifiedIdentifier& id, CodeModelItem::Kind kind)
{
ifDebug(qCDebug(LANGUAGE) << file.str() << id.identifier().toString() << kind; )
if (!id.isValid())
return;
CodeModelRepositoryItem item;
item.file = file;
CodeModelRequestItem request(item);
CodeModelItem newItem;
newItem.id = id;
newItem.kind = kind;
newItem.referenceCount = 1;
LockedItemRepository::write<CodeModel>([&](CodeModelRepo& repo) {
uint index = repo.findIndex(item);
if (index) {
// Check whether the item is already in the mapped list, else copy the list into the new created item
DynamicItem<CodeModelRepositoryItem, true> oldItem = repo.dynamicItemFromIndex(index);
EmbeddedTreeAlgorithms<CodeModelItem, CodeModelItemHandler> alg(oldItem->items(), oldItem->itemsSize(),
oldItem->centralFreeItem);
int listIndex = alg.indexOf(newItem);
Q_ASSERT(listIndex != -1);
auto* items = const_cast<CodeModelItem*>(oldItem->items());
Q_ASSERT(items[listIndex].id == id);
items[listIndex].kind = kind;
return;
}
Q_ASSERT(0); // The updated item as not in the symbol table!
});
}
void CodeModel::removeItem(const IndexedString& file, const IndexedQualifiedIdentifier& id)
{
if (!id.isValid())
return;
ifDebug(qCDebug(LANGUAGE) << "removeItem" << file.str() << id.identifier().toString(); )
CodeModelRepositoryItem item;
item.file = file;
CodeModelRequestItem request(item);
LockedItemRepository::write<CodeModel>([&](CodeModelRepo& repo) {
uint index = repo.findIndex(item);
if (index) {
CodeModelItem searchItem;
searchItem.id = id;
DynamicItem<CodeModelRepositoryItem, true> oldItem = repo.dynamicItemFromIndex(index);
EmbeddedTreeAlgorithms<CodeModelItem, CodeModelItemHandler> alg(oldItem->items(), oldItem->itemsSize(),
oldItem->centralFreeItem);
int listIndex = alg.indexOf(searchItem);
if (listIndex == -1)
return;
auto* items = const_cast<CodeModelItem*>(oldItem->items());
--items[listIndex].referenceCount;
if (oldItem->items()[listIndex].referenceCount)
return; // Nothing to remove, there's still a reference-count left
// We have reduced the reference-count to zero, so remove the item from the list
EmbeddedTreeRemoveItem<CodeModelItem, CodeModelItemHandler> remove(items, oldItem->itemsSize(),
oldItem->centralFreeItem, searchItem);
uint newItemCount = remove.newItemCount();
if (newItemCount != oldItem->itemsSize()) {
if (newItemCount == 0) {
// Has become empty, delete the item
repo.deleteItem(index);
return;
} else {
// Make smaller
item.itemsList().resize(newItemCount);
remove.transferData(item.itemsList().data(), item.itemsSize(), &item.centralFreeItem);
// Delete the old list
repo.deleteItem(index);
// Add the new list
repo.index(request);
return;
}
}
}
});
}
// FIXME: this API is unsafe, we should return a KDevVarLengthArray of values instead
void CodeModel::items(const IndexedString& file, uint& count, const CodeModelItem*& items) const
{
ifDebug(qCDebug(LANGUAGE) << "items" << file.str(); )
CodeModelRepositoryItem item;
item.file = file;
CodeModelRequestItem request(item);
LockedItemRepository::read<CodeModel>([&](const CodeModelRepo& repo) {
uint index = repo.findIndex(item);
if (index) {
const CodeModelRepositoryItem* repositoryItem = repo.itemFromIndex(index);
ifDebug(qCDebug(LANGUAGE) << "found index" << index << repositoryItem->itemsSize();)
count = repositoryItem->itemsSize();
items = repositoryItem->items();
} else {
ifDebug(qCDebug(LANGUAGE) << "found no index";)
count = 0;
items = nullptr;
}
});
}
CodeModel& CodeModel::self()
{
static CodeModel ret;
return ret;
}
}
|