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
|
|
|
|
|
|
|
#include <loguru.hpp>
|
|
|
|
|
2017-12-06 05:03:38 +00:00
|
|
|
namespace {
|
2017-12-06 04:39:44 +00:00
|
|
|
struct Ipc_TextDocumentReferences
|
2018-01-19 08:47:52 +00:00
|
|
|
: public RequestMessage<Ipc_TextDocumentReferences> {
|
2018-01-20 05:11:03 +00:00
|
|
|
const static IpcId kIpcId = IpcId::TextDocumentReferences;
|
2017-12-06 04:39:44 +00:00
|
|
|
struct lsReferenceContext {
|
|
|
|
// Include the declaration of the current symbol.
|
|
|
|
bool includeDeclaration;
|
|
|
|
};
|
2018-01-20 05:11:03 +00:00
|
|
|
struct Params {
|
2017-12-06 04:39:44 +00:00
|
|
|
lsTextDocumentIdentifier textDocument;
|
|
|
|
lsPosition position;
|
|
|
|
lsReferenceContext context;
|
|
|
|
};
|
|
|
|
|
2018-01-20 05:11:03 +00:00
|
|
|
Params params;
|
2017-12-06 04:39:44 +00:00
|
|
|
};
|
|
|
|
MAKE_REFLECT_STRUCT(Ipc_TextDocumentReferences::lsReferenceContext,
|
|
|
|
includeDeclaration);
|
2018-01-20 05:11:03 +00:00
|
|
|
MAKE_REFLECT_STRUCT(Ipc_TextDocumentReferences::Params,
|
2017-12-06 04:39:44 +00:00
|
|
|
textDocument,
|
|
|
|
position,
|
|
|
|
context);
|
|
|
|
MAKE_REFLECT_STRUCT(Ipc_TextDocumentReferences, id, params);
|
|
|
|
REGISTER_IPC_MESSAGE(Ipc_TextDocumentReferences);
|
|
|
|
|
|
|
|
struct Out_TextDocumentReferences
|
|
|
|
: public lsOutMessage<Out_TextDocumentReferences> {
|
|
|
|
lsRequestId id;
|
2018-02-11 01:50:44 +00:00
|
|
|
std::vector<lsLocationEx> result;
|
2017-12-06 04:39:44 +00:00
|
|
|
};
|
|
|
|
MAKE_REFLECT_STRUCT(Out_TextDocumentReferences, jsonrpc, id, result);
|
|
|
|
|
2017-12-06 03:32:33 +00:00
|
|
|
struct TextDocumentReferencesHandler
|
|
|
|
: BaseMessageHandler<Ipc_TextDocumentReferences> {
|
|
|
|
void Run(Ipc_TextDocumentReferences* 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_TextDocumentReferences out;
|
|
|
|
out.id = request->id;
|
|
|
|
|
2018-02-09 17:42:10 +00:00
|
|
|
for (const SymbolRef& sym :
|
2017-12-06 03:32:33 +00:00
|
|
|
FindSymbolsAtLocation(working_file, file, request->params.position)) {
|
|
|
|
// Found symbol. Return references.
|
2018-02-21 01:50:48 +00:00
|
|
|
EachUse(db, sym, request->params.context.includeDeclaration,
|
|
|
|
[&](Use use) {
|
|
|
|
if (optional<lsLocationEx> ls_loc =
|
|
|
|
GetLsLocationEx(db, working_files, use,
|
|
|
|
config->extension.referenceContainer))
|
|
|
|
out.result.push_back(*ls_loc);
|
|
|
|
});
|
2017-12-06 03:32:33 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-01-20 05:11:03 +00:00
|
|
|
if (out.result.empty())
|
|
|
|
for (const IndexInclude& include : file->def->includes)
|
|
|
|
if (include.line == request->params.position.line) {
|
|
|
|
// |include| is the line the cursor is on.
|
|
|
|
for (QueryFile& file1 : db->files)
|
|
|
|
if (file1.def)
|
|
|
|
for (const IndexInclude& include1 : file1.def->includes)
|
|
|
|
if (include1.resolved_path == include.resolved_path) {
|
|
|
|
// Another file |file1| has the same include line.
|
2018-02-11 01:50:44 +00:00
|
|
|
lsLocationEx result;
|
2018-01-20 05:11:03 +00:00
|
|
|
result.uri = lsDocumentUri::FromPath(file1.def->path);
|
|
|
|
result.range.start.line = result.range.end.line =
|
|
|
|
include1.line;
|
|
|
|
out.result.push_back(std::move(result));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-12-24 00:25:18 +00:00
|
|
|
QueueManager::WriteStdout(IpcId::TextDocumentReferences, out);
|
2017-12-06 03:32:33 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
REGISTER_MESSAGE_HANDLER(TextDocumentReferencesHandler);
|
2017-12-31 03:18:33 +00:00
|
|
|
} // namespace
|