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-19 03:39:18 +00:00
|
|
|
for (SymbolRef sym :
|
|
|
|
FindSymbolsAtLocation(working_file, file, request->params.position)) {
|
2018-02-09 17:42:10 +00:00
|
|
|
if (sym.kind == SymbolKind::Type) {
|
2018-02-10 03:07:45 +00:00
|
|
|
QueryType& type = db->GetType(sym);
|
2018-02-21 04:26:17 +00:00
|
|
|
out.result =
|
2018-02-23 23:27:21 +00:00
|
|
|
GetLsLocationExs(db, working_files, GetDeclarations(db, type.derived),
|
2018-02-21 04:26:17 +00:00
|
|
|
config->xref.container, config->xref.maxNum);
|
2018-01-29 04:39:41 +00:00
|
|
|
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-22 07:34:32 +00:00
|
|
|
out.result =
|
2018-02-23 23:27:21 +00:00
|
|
|
GetLsLocationExs(db, working_files, GetDeclarations(db, func.derived),
|
2018-02-22 07:34:32 +00:00
|
|
|
config->xref.container, config->xref.maxNum);
|
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
|