2018-08-20 22:39:32 +08:00
|
|
|
//===-- IndexHelpers.cpp ----------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "TestIndex.h"
|
|
|
|
|
2018-10-20 23:30:37 +08:00
|
|
|
using namespace llvm;
|
2018-08-20 22:39:32 +08:00
|
|
|
namespace clang {
|
|
|
|
namespace clangd {
|
|
|
|
|
2018-10-20 23:30:37 +08:00
|
|
|
Symbol symbol(StringRef QName) {
|
2018-08-20 22:39:32 +08:00
|
|
|
Symbol Sym;
|
|
|
|
Sym.ID = SymbolID(QName.str());
|
|
|
|
size_t Pos = QName.rfind("::");
|
2018-10-20 23:30:37 +08:00
|
|
|
if (Pos == StringRef::npos) {
|
2018-08-20 22:39:32 +08:00
|
|
|
Sym.Name = QName;
|
|
|
|
Sym.Scope = "";
|
|
|
|
} else {
|
|
|
|
Sym.Name = QName.substr(Pos + 2);
|
|
|
|
Sym.Scope = QName.substr(0, Pos + 2);
|
|
|
|
}
|
|
|
|
return Sym;
|
|
|
|
}
|
|
|
|
|
[clangd] Factor out the data-swapping functionality from MemIndex/DexIndex.
Summary:
This is now handled by a wrapper class SwapIndex, so MemIndex/DexIndex can be
immutable and focus on their job.
Old and busted:
I have a MemIndex, which holds a shared_ptr<vector<Symbol*>>, which keeps the
symbol slab alive. I update by calling build(shared_ptr<vector<Symbol*>>).
New hotness: I have a SwapIndex, which holds a unique_ptr<SymbolIndex>, which
holds a MemIndex, which holds a shared_ptr<void>, which keeps backing
data alive.
I update by building a new MemIndex and calling SwapIndex::reset().
Reviewers: kbobyrev, ioeric
Subscribers: ilya-biryukov, ioeric, MaskRay, jkorous, mgrang, arphaman, kadircet, cfe-commits
Differential Revision: https://reviews.llvm.org/D51422
llvm-svn: 341318
2018-09-03 22:37:43 +08:00
|
|
|
SymbolSlab generateSymbols(std::vector<std::string> QualifiedNames) {
|
2018-08-20 22:39:32 +08:00
|
|
|
SymbolSlab::Builder Slab;
|
2018-10-20 23:30:37 +08:00
|
|
|
for (StringRef QName : QualifiedNames)
|
2018-08-20 22:39:32 +08:00
|
|
|
Slab.insert(symbol(QName));
|
[clangd] Factor out the data-swapping functionality from MemIndex/DexIndex.
Summary:
This is now handled by a wrapper class SwapIndex, so MemIndex/DexIndex can be
immutable and focus on their job.
Old and busted:
I have a MemIndex, which holds a shared_ptr<vector<Symbol*>>, which keeps the
symbol slab alive. I update by calling build(shared_ptr<vector<Symbol*>>).
New hotness: I have a SwapIndex, which holds a unique_ptr<SymbolIndex>, which
holds a MemIndex, which holds a shared_ptr<void>, which keeps backing
data alive.
I update by building a new MemIndex and calling SwapIndex::reset().
Reviewers: kbobyrev, ioeric
Subscribers: ilya-biryukov, ioeric, MaskRay, jkorous, mgrang, arphaman, kadircet, cfe-commits
Differential Revision: https://reviews.llvm.org/D51422
llvm-svn: 341318
2018-09-03 22:37:43 +08:00
|
|
|
return std::move(Slab).build();
|
2018-08-20 22:39:32 +08:00
|
|
|
}
|
|
|
|
|
[clangd] Factor out the data-swapping functionality from MemIndex/DexIndex.
Summary:
This is now handled by a wrapper class SwapIndex, so MemIndex/DexIndex can be
immutable and focus on their job.
Old and busted:
I have a MemIndex, which holds a shared_ptr<vector<Symbol*>>, which keeps the
symbol slab alive. I update by calling build(shared_ptr<vector<Symbol*>>).
New hotness: I have a SwapIndex, which holds a unique_ptr<SymbolIndex>, which
holds a MemIndex, which holds a shared_ptr<void>, which keeps backing
data alive.
I update by building a new MemIndex and calling SwapIndex::reset().
Reviewers: kbobyrev, ioeric
Subscribers: ilya-biryukov, ioeric, MaskRay, jkorous, mgrang, arphaman, kadircet, cfe-commits
Differential Revision: https://reviews.llvm.org/D51422
llvm-svn: 341318
2018-09-03 22:37:43 +08:00
|
|
|
SymbolSlab generateNumSymbols(int Begin, int End) {
|
2018-08-20 22:39:32 +08:00
|
|
|
std::vector<std::string> Names;
|
|
|
|
for (int i = Begin; i <= End; i++)
|
|
|
|
Names.push_back(std::to_string(i));
|
[clangd] Factor out the data-swapping functionality from MemIndex/DexIndex.
Summary:
This is now handled by a wrapper class SwapIndex, so MemIndex/DexIndex can be
immutable and focus on their job.
Old and busted:
I have a MemIndex, which holds a shared_ptr<vector<Symbol*>>, which keeps the
symbol slab alive. I update by calling build(shared_ptr<vector<Symbol*>>).
New hotness: I have a SwapIndex, which holds a unique_ptr<SymbolIndex>, which
holds a MemIndex, which holds a shared_ptr<void>, which keeps backing
data alive.
I update by building a new MemIndex and calling SwapIndex::reset().
Reviewers: kbobyrev, ioeric
Subscribers: ilya-biryukov, ioeric, MaskRay, jkorous, mgrang, arphaman, kadircet, cfe-commits
Differential Revision: https://reviews.llvm.org/D51422
llvm-svn: 341318
2018-09-03 22:37:43 +08:00
|
|
|
return generateSymbols(Names);
|
2018-08-20 22:39:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string getQualifiedName(const Symbol &Sym) {
|
|
|
|
return (Sym.Scope + Sym.Name).str();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<std::string> match(const SymbolIndex &I,
|
|
|
|
const FuzzyFindRequest &Req, bool *Incomplete) {
|
|
|
|
std::vector<std::string> Matches;
|
|
|
|
bool IsIncomplete = I.fuzzyFind(Req, [&](const Symbol &Sym) {
|
|
|
|
Matches.push_back(clang::clangd::getQualifiedName(Sym));
|
|
|
|
});
|
|
|
|
if (Incomplete)
|
|
|
|
*Incomplete = IsIncomplete;
|
|
|
|
return Matches;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns qualified names of symbols with any of IDs in the index.
|
2018-10-20 23:30:37 +08:00
|
|
|
std::vector<std::string> lookup(const SymbolIndex &I, ArrayRef<SymbolID> IDs) {
|
2018-08-20 22:39:32 +08:00
|
|
|
LookupRequest Req;
|
|
|
|
Req.IDs.insert(IDs.begin(), IDs.end());
|
|
|
|
std::vector<std::string> Results;
|
|
|
|
I.lookup(Req, [&](const Symbol &Sym) {
|
|
|
|
Results.push_back(getQualifiedName(Sym));
|
|
|
|
});
|
|
|
|
return Results;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace clangd
|
|
|
|
} // namespace clang
|