mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-25 00:55:08 +00:00
42 lines
1.4 KiB
C++
42 lines
1.4 KiB
C++
|
#include "message_handler.h"
|
||
|
#include "query_utils.h"
|
||
|
|
||
|
struct CqueryBaseHandler : BaseMessageHandler<Ipc_CqueryBase> {
|
||
|
void Run(Ipc_CqueryBase* 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_LocationList out;
|
||
|
out.id = request->id;
|
||
|
for (const SymbolRef& ref :
|
||
|
FindSymbolsAtLocation(working_file, file, request->params.position)) {
|
||
|
if (ref.idx.kind == SymbolKind::Type) {
|
||
|
QueryType& type = db->types[ref.idx.idx];
|
||
|
if (!type.def)
|
||
|
continue;
|
||
|
std::vector<QueryLocation> locations =
|
||
|
ToQueryLocation(db, type.def->parents);
|
||
|
out.result = GetLsLocations(db, working_files, locations);
|
||
|
} else if (ref.idx.kind == SymbolKind::Func) {
|
||
|
QueryFunc& func = db->funcs[ref.idx.idx];
|
||
|
optional<QueryLocation> location =
|
||
|
GetBaseDefinitionOrDeclarationSpelling(db, func);
|
||
|
if (!location)
|
||
|
continue;
|
||
|
optional<lsLocation> ls_loc =
|
||
|
GetLsLocation(db, working_files, *location);
|
||
|
if (!ls_loc)
|
||
|
continue;
|
||
|
out.result.push_back(*ls_loc);
|
||
|
}
|
||
|
}
|
||
|
IpcManager::WriteStdout(IpcId::CqueryBase, out);
|
||
|
}
|
||
|
};
|
||
|
REGISTER_MESSAGE_HANDLER(CqueryBaseHandler);
|