mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-28 10:31:56 +00:00
48 lines
1.5 KiB
C++
48 lines
1.5 KiB
C++
|
#include "message_handler.h"
|
||
|
#include "query_utils.h"
|
||
|
|
||
|
#include <loguru.hpp>
|
||
|
|
||
|
struct TextDocumentReferencesHandler
|
||
|
: BaseMessageHandler<Ipc_TextDocumentReferences> {
|
||
|
void Run(Ipc_TextDocumentReferences* request) override {
|
||
|
QueryFile* file;
|
||
|
if (!FindFileOrFail(db, request->id,
|
||
|
request->params.textDocument.uri.GetPath(), &file)) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
WorkingFile* working_file =
|
||
|
working_files->GetFileByFilename(file->def->path);
|
||
|
|
||
|
Out_TextDocumentReferences out;
|
||
|
out.id = request->id;
|
||
|
|
||
|
for (const SymbolRef& ref :
|
||
|
FindSymbolsAtLocation(working_file, file, request->params.position)) {
|
||
|
optional<QueryLocation> excluded_declaration;
|
||
|
if (!request->params.context.includeDeclaration) {
|
||
|
LOG_S(INFO) << "Excluding declaration in references";
|
||
|
excluded_declaration = GetDefinitionSpellingOfSymbol(db, ref.idx);
|
||
|
}
|
||
|
|
||
|
// Found symbol. Return references.
|
||
|
std::vector<QueryLocation> uses = GetUsesOfSymbol(db, ref.idx);
|
||
|
out.result.reserve(uses.size());
|
||
|
for (const QueryLocation& use : uses) {
|
||
|
if (excluded_declaration.has_value() && use == *excluded_declaration)
|
||
|
continue;
|
||
|
|
||
|
optional<lsLocation> ls_location =
|
||
|
GetLsLocation(db, working_files, use);
|
||
|
if (ls_location)
|
||
|
out.result.push_back(*ls_location);
|
||
|
}
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
IpcManager::WriteStdout(IpcId::TextDocumentReferences, out);
|
||
|
}
|
||
|
};
|
||
|
REGISTER_MESSAGE_HANDLER(TextDocumentReferencesHandler);
|