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 {
|
2018-01-19 09:01:56 +00:00
|
|
|
struct Ipc_CqueryCallers : public RequestMessage<Ipc_CqueryCallers> {
|
2017-12-06 04:39:44 +00:00
|
|
|
const static IpcId kIpcId = IpcId::CqueryCallers;
|
|
|
|
lsTextDocumentPositionParams params;
|
|
|
|
};
|
|
|
|
MAKE_REFLECT_STRUCT(Ipc_CqueryCallers, id, params);
|
|
|
|
REGISTER_IPC_MESSAGE(Ipc_CqueryCallers);
|
|
|
|
|
2017-12-06 03:32:33 +00:00
|
|
|
struct CqueryCallersHandler : BaseMessageHandler<Ipc_CqueryCallers> {
|
|
|
|
void Run(Ipc_CqueryCallers* 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_LocationList out;
|
|
|
|
out.id = request->id;
|
|
|
|
for (const SymbolRef& ref :
|
|
|
|
FindSymbolsAtLocation(working_file, file, request->params.position)) {
|
|
|
|
if (ref.idx.kind == SymbolKind::Func) {
|
|
|
|
QueryFunc& func = db->funcs[ref.idx.idx];
|
|
|
|
std::vector<QueryLocation> locations =
|
|
|
|
ToQueryLocation(db, func.callers);
|
|
|
|
for (QueryFuncRef func_ref : GetCallersForAllBaseFunctions(db, func))
|
|
|
|
locations.push_back(func_ref.loc);
|
|
|
|
for (QueryFuncRef func_ref : GetCallersForAllDerivedFunctions(db, func))
|
|
|
|
locations.push_back(func_ref.loc);
|
|
|
|
|
|
|
|
out.result = GetLsLocations(db, working_files, locations);
|
|
|
|
}
|
|
|
|
}
|
2017-12-24 00:25:18 +00:00
|
|
|
QueueManager::WriteStdout(IpcId::CqueryCallers, out);
|
2017-12-06 03:32:33 +00:00
|
|
|
}
|
|
|
|
};
|
2017-12-06 05:03:38 +00:00
|
|
|
REGISTER_MESSAGE_HANDLER(CqueryCallersHandler);
|
2017-12-31 03:18:33 +00:00
|
|
|
} // namespace
|