ccls/src/messages/cquery_derived.cc

54 lines
1.9 KiB
C++
Raw Normal View History

2017-12-06 03:32:33 +00:00
#include "message_handler.h"
#include "query_utils.h"
2017-12-29 16:29:47 +00:00
#include "queue_manager.h"
2017-12-06 03:32:33 +00:00
namespace {
struct Ipc_CqueryDerived : public RequestMessage<Ipc_CqueryDerived> {
2017-12-06 04:39:44 +00:00
const static IpcId kIpcId = IpcId::CqueryDerived;
lsTextDocumentPositionParams params;
};
MAKE_REFLECT_STRUCT(Ipc_CqueryDerived, id, params);
REGISTER_IPC_MESSAGE(Ipc_CqueryDerived);
2017-12-06 03:32:33 +00:00
struct CqueryDerivedHandler : BaseMessageHandler<Ipc_CqueryDerived> {
void Run(Ipc_CqueryDerived* request) override {
QueryFile* file;
if (!FindFileOrFail(db, project, request->id,
2017-12-06 03:32:33 +00:00
request->params.textDocument.uri.GetPath(), &file)) {
return;
}
WorkingFile* working_file =
working_files->GetFileByFilename(file->def->path);
Out_LocationList out;
out.id = request->id;
2018-02-09 17:42:10 +00:00
std::vector<SymbolRef> syms =
2018-01-30 00:27:43 +00:00
FindSymbolsAtLocation(working_file, file, request->params.position);
// A template definition may be a use of its primary template.
// We want to get the definition instead of the use.
// Order by |Definition| DESC, range size ASC.
2018-02-09 17:42:10 +00:00
std::stable_sort(syms.begin(), syms.end(),
[](const SymbolRef& a, const SymbolRef& b) {
return (a.role & Role::Definition) >
(b.role & Role::Definition);
});
2018-02-09 17:42:10 +00:00
for (const SymbolRef& sym : syms) {
if (sym.kind == SymbolKind::Type) {
2018-02-10 03:07:45 +00:00
QueryType& type = db->GetType(sym);
2018-02-09 07:10:54 +00:00
out.result =
GetLsLocations(db, working_files, ToUses(db, type.derived));
break;
2018-02-09 17:42:10 +00:00
} else if (sym.kind == SymbolKind::Func) {
2018-02-10 03:07:45 +00:00
QueryFunc& func = db->GetFunc(sym);
2018-02-09 07:10:54 +00:00
out.result =
GetLsLocations(db, working_files, ToUses(db, func.derived));
break;
2017-12-06 03:32:33 +00:00
}
}
2017-12-24 00:25:18 +00:00
QueueManager::WriteStdout(IpcId::CqueryDerived, out);
2017-12-06 03:32:33 +00:00
}
};
REGISTER_MESSAGE_HANDLER(CqueryDerivedHandler);
} // namespace