ccls/src/messages/ccls_vars.cc

62 lines
1.7 KiB
C++
Raw Normal View History

2017-12-06 03:32:33 +00:00
#include "message_handler.h"
2018-05-28 00:50:02 +00:00
#include "pipeline.hh"
2018-08-09 17:08:14 +00:00
#include "query_utils.h"
2018-05-28 00:50:02 +00:00
using namespace ccls;
2017-12-06 03:32:33 +00:00
namespace {
2018-03-31 03:16:33 +00:00
MethodType kMethodType = "$ccls/vars";
2018-03-31 03:16:33 +00:00
struct In_CclsVars : public RequestInMessage {
MethodType GetMethodType() const override { return kMethodType; }
struct Params : lsTextDocumentPositionParams {
// 1: field
// 2: local
// 4: parameter
unsigned kind = ~0u;
} params;
2017-12-06 04:39:44 +00:00
};
2018-08-09 17:08:14 +00:00
MAKE_REFLECT_STRUCT(In_CclsVars::Params, textDocument, position, kind);
2018-03-31 03:16:33 +00:00
MAKE_REFLECT_STRUCT(In_CclsVars, id, params);
REGISTER_IN_MESSAGE(In_CclsVars);
2018-03-31 03:16:33 +00:00
struct Handler_CclsVars : BaseMessageHandler<In_CclsVars> {
MethodType GetMethodType() const override { return kMethodType; }
2017-12-06 04:39:44 +00:00
2018-08-09 17:08:14 +00:00
void Run(In_CclsVars *request) override {
auto &params = request->params;
QueryFile *file;
if (!FindFileOrFail(db, project, request->id,
params.textDocument.uri.GetPath(), &file))
2017-12-06 03:32:33 +00:00
return;
2018-08-09 17:08:14 +00:00
WorkingFile *working_file =
2017-12-06 03:32:33 +00:00
working_files->GetFileByFilename(file->def->path);
Out_LocationList out;
out.id = request->id;
2018-02-10 06:51:58 +00:00
for (SymbolRef sym :
FindSymbolsAtLocation(working_file, file, params.position)) {
Usr usr = sym.usr;
2018-02-10 06:51:58 +00:00
switch (sym.kind) {
2018-08-09 17:08:14 +00:00
default:
break;
case SymbolKind::Var: {
const QueryVar::Def *def = db->GetVar(sym).AnyDef();
if (!def || !def->type)
continue;
usr = def->type;
[[fallthrough]];
}
case SymbolKind::Type:
out.result = GetLsLocationExs(
db, working_files,
GetVarDeclarations(db, db->Type(usr).instances, params.kind));
break;
2017-12-06 03:32:33 +00:00
}
}
2018-05-28 00:50:02 +00:00
pipeline::WriteStdout(kMethodType, out);
2017-12-06 03:32:33 +00:00
}
};
2018-03-31 03:16:33 +00:00
REGISTER_MESSAGE_HANDLER(Handler_CclsVars);
2018-08-09 17:08:14 +00:00
} // namespace