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 {
|
2017-12-23 16:01:43 +00:00
|
|
|
|
2018-01-31 07:48:34 +00:00
|
|
|
std::pair<std::string_view, std::string_view> GetCommentsAndHover(
|
2017-12-26 05:26:03 +00:00
|
|
|
QueryDatabase* db,
|
2018-02-09 17:42:10 +00:00
|
|
|
SymbolRef sym) {
|
|
|
|
switch (sym.kind) {
|
2017-12-19 05:20:00 +00:00
|
|
|
case SymbolKind::Type: {
|
2018-02-09 17:42:10 +00:00
|
|
|
QueryType& type = db->types[sym.Idx()];
|
2017-12-24 02:22:22 +00:00
|
|
|
if (type.def)
|
2018-02-11 05:36:15 +00:00
|
|
|
return {type.def->comments,
|
|
|
|
!type.def->hover.empty()
|
|
|
|
? std::string_view(type.def->hover)
|
|
|
|
: std::string_view(type.def->detailed_name)};
|
2017-12-19 05:20:00 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SymbolKind::Func: {
|
2018-02-09 17:42:10 +00:00
|
|
|
QueryFunc& func = db->funcs[sym.Idx()];
|
2017-12-24 02:22:22 +00:00
|
|
|
if (func.def)
|
2018-02-11 05:36:15 +00:00
|
|
|
return {func.def->comments,
|
|
|
|
!func.def->hover.empty()
|
|
|
|
? std::string_view(func.def->hover)
|
|
|
|
: std::string_view(func.def->detailed_name)};
|
2017-12-19 05:20:00 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SymbolKind::Var: {
|
2018-02-09 17:42:10 +00:00
|
|
|
QueryVar& var = db->vars[sym.Idx()];
|
2017-12-24 02:22:22 +00:00
|
|
|
if (var.def)
|
2018-02-11 05:36:15 +00:00
|
|
|
return {var.def->comments,
|
|
|
|
!var.def->hover.empty()
|
|
|
|
? std::string_view(var.def->hover)
|
|
|
|
: std::string_view(var.def->detailed_name)};
|
2017-12-19 05:20:00 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SymbolKind::File:
|
|
|
|
case SymbolKind::Invalid: {
|
|
|
|
assert(false && "unexpected");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-01-31 07:48:34 +00:00
|
|
|
return {"", ""};
|
2017-12-19 05:20:00 +00:00
|
|
|
}
|
|
|
|
|
2018-01-19 08:56:09 +00:00
|
|
|
struct Ipc_TextDocumentHover : public RequestMessage<Ipc_TextDocumentHover> {
|
2017-12-06 04:39:44 +00:00
|
|
|
const static IpcId kIpcId = IpcId::TextDocumentHover;
|
|
|
|
lsTextDocumentPositionParams params;
|
|
|
|
};
|
|
|
|
MAKE_REFLECT_STRUCT(Ipc_TextDocumentHover, id, params);
|
|
|
|
REGISTER_IPC_MESSAGE(Ipc_TextDocumentHover);
|
|
|
|
|
|
|
|
struct Out_TextDocumentHover : public lsOutMessage<Out_TextDocumentHover> {
|
|
|
|
struct Result {
|
2017-12-26 05:26:03 +00:00
|
|
|
std::vector<lsMarkedString> contents;
|
2017-12-06 04:39:44 +00:00
|
|
|
optional<lsRange> range;
|
|
|
|
};
|
|
|
|
|
|
|
|
lsRequestId id;
|
2017-12-19 07:27:52 +00:00
|
|
|
optional<Result> result;
|
2017-12-06 04:39:44 +00:00
|
|
|
};
|
|
|
|
MAKE_REFLECT_STRUCT(Out_TextDocumentHover::Result, contents, range);
|
2017-12-23 16:01:43 +00:00
|
|
|
void Reflect(Writer& visitor, Out_TextDocumentHover& value) {
|
2018-01-08 04:10:16 +00:00
|
|
|
REFLECT_MEMBER_START();
|
2017-12-19 07:54:00 +00:00
|
|
|
REFLECT_MEMBER(jsonrpc);
|
|
|
|
REFLECT_MEMBER(id);
|
|
|
|
if (value.result)
|
|
|
|
REFLECT_MEMBER(result);
|
|
|
|
else {
|
|
|
|
// Empty optional<> is elided by the default serializer, we need to write
|
|
|
|
// |null| to be compliant with the LSP.
|
|
|
|
visitor.Key("result");
|
|
|
|
visitor.Null();
|
|
|
|
}
|
|
|
|
REFLECT_MEMBER_END();
|
|
|
|
}
|
2017-12-06 04:39:44 +00:00
|
|
|
|
2017-12-06 03:32:33 +00:00
|
|
|
struct TextDocumentHoverHandler : BaseMessageHandler<Ipc_TextDocumentHover> {
|
|
|
|
void Run(Ipc_TextDocumentHover* 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_TextDocumentHover 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)) {
|
|
|
|
// Found symbol. Return hover.
|
|
|
|
optional<lsRange> ls_range = GetLsRange(
|
2018-02-09 17:42:10 +00:00
|
|
|
working_files->GetFileByFilename(file->def->path), sym.range);
|
2017-12-06 03:32:33 +00:00
|
|
|
if (!ls_range)
|
|
|
|
continue;
|
|
|
|
|
2018-01-31 07:48:34 +00:00
|
|
|
std::pair<std::string_view, std::string_view> comments_hover =
|
2018-02-09 17:42:10 +00:00
|
|
|
GetCommentsAndHover(db, sym);
|
2018-01-31 07:48:34 +00:00
|
|
|
if (comments_hover.first.size() || comments_hover.second.size()) {
|
2017-12-19 07:27:52 +00:00
|
|
|
out.result = Out_TextDocumentHover::Result();
|
2018-01-31 07:48:34 +00:00
|
|
|
if (comments_hover.first.size()) {
|
|
|
|
out.result->contents.emplace_back(comments_hover.first);
|
2017-12-26 05:26:03 +00:00
|
|
|
}
|
|
|
|
if (comments_hover.second.size()) {
|
2018-01-31 07:48:34 +00:00
|
|
|
out.result->contents.emplace_back(lsMarkedString1{
|
|
|
|
std::string_view(file->def->language), comments_hover.second});
|
2017-12-26 05:26:03 +00:00
|
|
|
}
|
2017-12-19 07:27:52 +00:00
|
|
|
out.result->range = *ls_range;
|
|
|
|
break;
|
|
|
|
}
|
2017-12-06 03:32:33 +00:00
|
|
|
}
|
|
|
|
|
2017-12-24 00:25:18 +00:00
|
|
|
QueueManager::WriteStdout(IpcId::TextDocumentHover, out);
|
2017-12-06 03:32:33 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
REGISTER_MESSAGE_HANDLER(TextDocumentHoverHandler);
|
2017-12-19 07:10:42 +00:00
|
|
|
} // namespace
|