mirror of
https://github.com/MaskRay/ccls.git
synced 2025-04-03 15:32:09 +00:00
Delete method.{cc,h} Rename $ccls/setSkippedRanges to $ccls/publishSkippedRanges Rename $ccls/publishSemanticHighlighting to $ccls/publishSemanticHighlight; stableId -> id
138 lines
4.6 KiB
C++
138 lines
4.6 KiB
C++
// Copyright 2017-2018 ccls Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
#include "message_handler.h"
|
|
#include "pipeline.hh"
|
|
#include "query_utils.h"
|
|
|
|
#include <unordered_set>
|
|
|
|
using namespace ccls;
|
|
|
|
namespace {
|
|
MethodType kMethodType = "textDocument/references";
|
|
|
|
struct In_TextDocumentReferences : public RequestMessage {
|
|
MethodType GetMethodType() const override { return kMethodType; }
|
|
struct lsReferenceContext {
|
|
bool base = true;
|
|
// Exclude references with any |Role| bits set.
|
|
Role excludeRole = Role::None;
|
|
// Include the declaration of the current symbol.
|
|
bool includeDeclaration = false;
|
|
// Include references with all |Role| bits set.
|
|
Role role = Role::None;
|
|
};
|
|
struct Params {
|
|
lsTextDocumentIdentifier textDocument;
|
|
lsPosition position;
|
|
lsReferenceContext context;
|
|
};
|
|
|
|
Params params;
|
|
};
|
|
MAKE_REFLECT_STRUCT(In_TextDocumentReferences::lsReferenceContext, base,
|
|
excludeRole, includeDeclaration, role);
|
|
MAKE_REFLECT_STRUCT(In_TextDocumentReferences::Params, textDocument, position,
|
|
context);
|
|
MAKE_REFLECT_STRUCT(In_TextDocumentReferences, id, params);
|
|
REGISTER_IN_MESSAGE(In_TextDocumentReferences);
|
|
|
|
struct Handler_TextDocumentReferences
|
|
: BaseMessageHandler<In_TextDocumentReferences> {
|
|
MethodType GetMethodType() const override { return kMethodType; }
|
|
|
|
void Run(In_TextDocumentReferences *request) override {
|
|
auto ¶ms = request->params;
|
|
QueryFile *file;
|
|
if (!FindFileOrFail(db, project, request->id,
|
|
params.textDocument.uri.GetPath(), &file))
|
|
return;
|
|
std::vector<lsLocation> result;
|
|
WorkingFile *wfile = working_files->GetFileByFilename(file->def->path);
|
|
if (!file) {
|
|
pipeline::Reply(request->id, result);
|
|
return;
|
|
}
|
|
|
|
std::unordered_set<Use> seen_uses;
|
|
int line = params.position.line;
|
|
|
|
for (SymbolRef sym : FindSymbolsAtLocation(wfile, file, params.position)) {
|
|
// Found symbol. Return references.
|
|
std::unordered_set<Usr> seen;
|
|
seen.insert(sym.usr);
|
|
std::vector<Usr> stack{sym.usr};
|
|
if (sym.kind != SymbolKind::Func)
|
|
params.context.base = false;
|
|
while (stack.size()) {
|
|
sym.usr = stack.back();
|
|
stack.pop_back();
|
|
auto fn = [&](Use use, lsSymbolKind parent_kind) {
|
|
if (Role(use.role & params.context.role) == params.context.role &&
|
|
!(use.role & params.context.excludeRole) &&
|
|
seen_uses.insert(use).second)
|
|
if (auto loc = GetLsLocation(db, working_files, use)) {
|
|
result.push_back(*loc);
|
|
}
|
|
};
|
|
WithEntity(db, sym, [&](const auto &entity) {
|
|
lsSymbolKind parent_kind = lsSymbolKind::Unknown;
|
|
for (auto &def : entity.def)
|
|
if (def.spell) {
|
|
parent_kind = GetSymbolKind(db, sym);
|
|
if (params.context.base)
|
|
for (Usr usr : def.GetBases())
|
|
if (!seen.count(usr)) {
|
|
seen.insert(usr);
|
|
stack.push_back(usr);
|
|
}
|
|
break;
|
|
}
|
|
for (Use use : entity.uses)
|
|
fn(use, parent_kind);
|
|
if (params.context.includeDeclaration) {
|
|
for (auto &def : entity.def)
|
|
if (def.spell)
|
|
fn(*def.spell, parent_kind);
|
|
for (Use use : entity.declarations)
|
|
fn(use, parent_kind);
|
|
}
|
|
});
|
|
}
|
|
break;
|
|
}
|
|
|
|
if (result.empty()) {
|
|
// |path| is the #include line. If the cursor is not on such line but line
|
|
// = 0,
|
|
// use the current filename.
|
|
std::string path;
|
|
if (line == 0 || line >= (int)wfile->buffer_lines.size() - 1)
|
|
path = file->def->path;
|
|
for (const IndexInclude &include : file->def->includes)
|
|
if (include.line == params.position.line) {
|
|
path = include.resolved_path;
|
|
break;
|
|
}
|
|
if (path.size())
|
|
for (QueryFile &file1 : db->files)
|
|
if (file1.def)
|
|
for (const IndexInclude &include : file1.def->includes)
|
|
if (include.resolved_path == path) {
|
|
// Another file |file1| has the same include line.
|
|
lsLocation &loc = result.emplace_back();
|
|
loc.uri = lsDocumentUri::FromPath(file1.def->path);
|
|
loc.range.start.line = loc.range.end.line = include.line;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if ((int)result.size() >= g_config->xref.maxNum)
|
|
result.resize(g_config->xref.maxNum);
|
|
pipeline::Reply(request->id, result);
|
|
}
|
|
};
|
|
REGISTER_MESSAGE_HANDLER(Handler_TextDocumentReferences);
|
|
} // namespace
|