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
|
|
|
|
2017-12-06 05:03:38 +00:00
|
|
|
namespace {
|
2018-01-19 09:01:56 +00:00
|
|
|
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;
|
2017-12-31 03:18:33 +00:00
|
|
|
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);
|
2018-01-29 04:39:41 +00:00
|
|
|
// 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(),
|
2018-01-29 04:39:41 +00:00
|
|
|
[](const SymbolRef& a, const SymbolRef& b) {
|
|
|
|
return (a.role & SymbolRole::Definition) >
|
|
|
|
(b.role & SymbolRole::Definition);
|
|
|
|
});
|
2018-02-09 17:42:10 +00:00
|
|
|
for (const SymbolRef& sym : syms) {
|
|
|
|
if (sym.kind == SymbolKind::Type) {
|
|
|
|
QueryType& type = sym.Type(db);
|
2018-02-09 07:10:54 +00:00
|
|
|
out.result =
|
|
|
|
GetLsLocations(db, working_files, ToReference(db, type.derived));
|
2018-01-29 04:39:41 +00:00
|
|
|
break;
|
2018-02-09 17:42:10 +00:00
|
|
|
} else if (sym.kind == SymbolKind::Func) {
|
|
|
|
QueryFunc& func = sym.Func(db);
|
2018-02-09 07:10:54 +00:00
|
|
|
out.result =
|
|
|
|
GetLsLocations(db, working_files, ToReference(db, func.derived));
|
2018-01-29 04:39:41 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
};
|
2017-12-06 05:03:38 +00:00
|
|
|
REGISTER_MESSAGE_HANDLER(CqueryDerivedHandler);
|
2017-12-31 03:18:33 +00:00
|
|
|
} // namespace
|