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_CqueryVars : public RequestMessage<Ipc_CqueryVars> {
|
2017-12-06 04:39:44 +00:00
|
|
|
const static IpcId kIpcId = IpcId::CqueryVars;
|
|
|
|
lsTextDocumentPositionParams params;
|
|
|
|
};
|
|
|
|
MAKE_REFLECT_STRUCT(Ipc_CqueryVars, id, params);
|
|
|
|
REGISTER_IPC_MESSAGE(Ipc_CqueryVars);
|
|
|
|
|
2017-12-06 03:32:33 +00:00
|
|
|
struct CqueryVarsHandler : BaseMessageHandler<Ipc_CqueryVars> {
|
|
|
|
void Run(Ipc_CqueryVars* 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-10 06:51:58 +00:00
|
|
|
for (SymbolRef sym :
|
2017-12-06 03:32:33 +00:00
|
|
|
FindSymbolsAtLocation(working_file, file, request->params.position)) {
|
2018-02-10 06:51:58 +00:00
|
|
|
RawId idx = sym.Idx();
|
|
|
|
switch (sym.kind) {
|
2018-01-21 06:34:41 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
case SymbolKind::Var: {
|
2018-02-10 06:51:58 +00:00
|
|
|
QueryVar& var = db->GetVar(sym);
|
2018-01-21 06:34:41 +00:00
|
|
|
if (!var.def || !var.def->variable_type)
|
|
|
|
continue;
|
2018-02-09 17:42:10 +00:00
|
|
|
idx = var.def->variable_type->id;
|
2018-01-21 06:34:41 +00:00
|
|
|
}
|
|
|
|
// fallthrough
|
|
|
|
case SymbolKind::Type: {
|
2018-02-09 17:42:10 +00:00
|
|
|
QueryType& type = db->types[idx];
|
2018-02-09 07:10:54 +00:00
|
|
|
out.result = GetLsLocations(db, working_files,
|
|
|
|
ToReference(db, type.instances));
|
2018-01-21 06:34:41 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-12-06 03:32:33 +00:00
|
|
|
}
|
|
|
|
}
|
2017-12-24 00:25:18 +00:00
|
|
|
QueueManager::WriteStdout(IpcId::CqueryVars, out);
|
2017-12-06 03:32:33 +00:00
|
|
|
}
|
|
|
|
};
|
2017-12-06 05:03:38 +00:00
|
|
|
REGISTER_MESSAGE_HANDLER(CqueryVarsHandler);
|
2017-12-31 03:18:33 +00:00
|
|
|
} // namespace
|