ccls/src/messages/text_document_document_link.cc

84 lines
2.8 KiB
C++
Raw Normal View History

2017-12-06 03:32:33 +00:00
#include "lex_utils.h"
#include "message_handler.h"
2017-12-29 16:29:47 +00:00
#include "queue_manager.h"
#include "working_files.h"
2017-12-06 03:32:33 +00:00
#include <loguru.hpp>
namespace {
2017-12-06 04:39:44 +00:00
struct Ipc_TextDocumentDocumentLink
: public RequestMessage<Ipc_TextDocumentDocumentLink> {
2017-12-06 04:39:44 +00:00
const static IpcId kIpcId = IpcId::TextDocumentDocumentLink;
struct Params {
2017-12-06 04:39:44 +00:00
// The document to provide document links for.
lsTextDocumentIdentifier textDocument;
};
Params params;
2017-12-06 04:39:44 +00:00
};
2018-01-30 00:27:43 +00:00
MAKE_REFLECT_STRUCT(Ipc_TextDocumentDocumentLink::Params, textDocument);
2017-12-06 04:39:44 +00:00
MAKE_REFLECT_STRUCT(Ipc_TextDocumentDocumentLink, id, params);
REGISTER_IPC_MESSAGE(Ipc_TextDocumentDocumentLink);
// A document link is a range in a text document that links to an internal or
// external resource, like another text document or a web site.
struct lsDocumentLink {
// The range this link applies to.
lsRange range;
// The uri this link points to. If missing a resolve request is sent later.
optional<lsDocumentUri> target;
};
MAKE_REFLECT_STRUCT(lsDocumentLink, range, target);
struct Out_TextDocumentDocumentLink
: public lsOutMessage<Out_TextDocumentDocumentLink> {
lsRequestId id;
2017-12-12 05:20:29 +00:00
std::vector<lsDocumentLink> result;
2017-12-06 04:39:44 +00:00
};
MAKE_REFLECT_STRUCT(Out_TextDocumentDocumentLink, jsonrpc, id, result);
2017-12-06 03:32:33 +00:00
struct TextDocumentDocumentLinkHandler
: BaseMessageHandler<Ipc_TextDocumentDocumentLink> {
void Run(Ipc_TextDocumentDocumentLink* request) override {
Out_TextDocumentDocumentLink out;
out.id = request->id;
if (config->showDocumentLinksOnIncludes) {
QueryFile* file;
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(
request->params.textDocument.uri.GetPath());
if (!working_file) {
LOG_S(WARNING) << "Unable to find working file "
<< request->params.textDocument.uri.GetPath();
return;
}
for (const IndexInclude& include : file->def->includes) {
2018-01-30 00:27:43 +00:00
optional<int> buffer_line = working_file->GetBufferPosFromIndexPos(
include.line, nullptr, false);
if (!buffer_line)
2017-12-06 03:32:33 +00:00
continue;
// Subtract 1 from line because querydb stores 1-based lines but
// vscode expects 0-based lines.
optional<lsRange> between_quotes = ExtractQuotedRange(
*buffer_line, working_file->buffer_lines[*buffer_line]);
2017-12-06 03:32:33 +00:00
if (!between_quotes)
continue;
lsDocumentLink link;
link.target = lsDocumentUri::FromPath(include.resolved_path);
link.range = *between_quotes;
out.result.push_back(link);
}
}
2017-12-24 00:25:18 +00:00
QueueManager::WriteStdout(IpcId::TextDocumentDocumentLink, out);
2017-12-06 03:32:33 +00:00
}
};
REGISTER_MESSAGE_HANDLER(TextDocumentDocumentLinkHandler);
} // namespace