2017-12-06 03:32:33 +00:00
|
|
|
#include "message_handler.h"
|
|
|
|
#include "query_utils.h"
|
|
|
|
|
2017-12-06 05:03:38 +00:00
|
|
|
namespace {
|
2017-12-19 05:20:00 +00:00
|
|
|
|
|
|
|
std::string GetHoverForSymbol(QueryDatabase* db, const SymbolIdx& symbol) {
|
|
|
|
switch (symbol.kind) {
|
|
|
|
case SymbolKind::Type: {
|
|
|
|
QueryType& type = db->types[symbol.idx];
|
|
|
|
if (type.def)
|
|
|
|
return type.def->hover;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SymbolKind::Func: {
|
|
|
|
QueryFunc& func = db->funcs[symbol.idx];
|
|
|
|
if (func.def)
|
|
|
|
return func.def->hover;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SymbolKind::Var: {
|
|
|
|
QueryVar& var = db->vars[symbol.idx];
|
|
|
|
if (var.def)
|
|
|
|
return var.def->hover;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SymbolKind::File:
|
|
|
|
case SymbolKind::Invalid: {
|
|
|
|
assert(false && "unexpected");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2017-12-06 04:39:44 +00:00
|
|
|
struct Ipc_TextDocumentHover : public IpcMessage<Ipc_TextDocumentHover> {
|
|
|
|
const static IpcId kIpcId = IpcId::TextDocumentHover;
|
|
|
|
|
|
|
|
lsRequestId id;
|
|
|
|
lsTextDocumentPositionParams params;
|
|
|
|
};
|
|
|
|
MAKE_REFLECT_STRUCT(Ipc_TextDocumentHover, id, params);
|
|
|
|
REGISTER_IPC_MESSAGE(Ipc_TextDocumentHover);
|
|
|
|
|
|
|
|
struct Out_TextDocumentHover : public lsOutMessage<Out_TextDocumentHover> {
|
|
|
|
struct Result {
|
|
|
|
lsMarkedString contents;
|
|
|
|
optional<lsRange> range;
|
|
|
|
};
|
|
|
|
|
|
|
|
lsRequestId id;
|
|
|
|
Result result;
|
|
|
|
};
|
|
|
|
MAKE_REFLECT_STRUCT(Out_TextDocumentHover::Result, contents, range);
|
|
|
|
MAKE_REFLECT_STRUCT(Out_TextDocumentHover, jsonrpc, id, result);
|
|
|
|
|
2017-12-06 03:32:33 +00:00
|
|
|
struct TextDocumentHoverHandler : BaseMessageHandler<Ipc_TextDocumentHover> {
|
|
|
|
void Run(Ipc_TextDocumentHover* request) override {
|
|
|
|
QueryFile* file;
|
|
|
|
if (!FindFileOrFail(db, request->id,
|
|
|
|
request->params.textDocument.uri.GetPath(), &file)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
WorkingFile* working_file =
|
|
|
|
working_files->GetFileByFilename(file->def->path);
|
|
|
|
|
|
|
|
Out_TextDocumentHover out;
|
|
|
|
out.id = request->id;
|
|
|
|
|
|
|
|
for (const SymbolRef& ref :
|
|
|
|
FindSymbolsAtLocation(working_file, file, request->params.position)) {
|
|
|
|
// Found symbol. Return hover.
|
|
|
|
optional<lsRange> ls_range = GetLsRange(
|
|
|
|
working_files->GetFileByFilename(file->def->path), ref.loc.range);
|
|
|
|
if (!ls_range)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
out.result.contents.value = GetHoverForSymbol(db, ref.idx);
|
|
|
|
out.result.contents.language = file->def->language;
|
|
|
|
|
|
|
|
out.result.range = *ls_range;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-12-19 05:20:00 +00:00
|
|
|
if (out.result.contents.value.empty()) {
|
|
|
|
Out_Error out;
|
|
|
|
out.id = request->id;
|
|
|
|
out.error.code = lsErrorCodes::InternalError;
|
|
|
|
IpcManager::WriteStdout(IpcId::Unknown, out);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-12-06 03:32:33 +00:00
|
|
|
IpcManager::WriteStdout(IpcId::TextDocumentHover, out);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
REGISTER_MESSAGE_HANDLER(TextDocumentHoverHandler);
|
2017-12-06 05:03:38 +00:00
|
|
|
} // namespace
|