// Copyright 2017-2018 ccls Authors // SPDX-License-Identifier: Apache-2.0 #include "message_handler.hh" #include "pipeline.hh" #include "query_utils.h" #include MAKE_HASHABLE(ccls::SymbolIdx, t.usr, t.kind); namespace ccls { MAKE_REFLECT_STRUCT(lsSymbolInformation, name, kind, location, containerName); namespace { struct DocumentHighlight { enum Kind { Text = 1, Read = 2, Write = 3 }; lsRange range; int kind = 1; // ccls extension Role role = Role::None; bool operator<(const DocumentHighlight &o) const { return !(range == o.range) ? range < o.range : kind < o.kind; } }; MAKE_REFLECT_STRUCT(DocumentHighlight, range, kind, role); } // namespace void MessageHandler::textDocument_documentHighlight( TextDocumentPositionParam ¶m, ReplyOnce &reply) { int file_id; QueryFile *file = FindFile(reply, param.textDocument.uri.GetPath(), &file_id); if (!file) return; WorkingFile *wfile = working_files->GetFileByFilename(file->def->path); std::vector result; std::vector syms = FindSymbolsAtLocation(wfile, file, param.position, true); for (auto [sym, refcnt] : file->symbol2refcnt) { if (refcnt <= 0) continue; Usr usr = sym.usr; SymbolKind kind = sym.kind; if (std::none_of(syms.begin(), syms.end(), [&](auto &sym1) { return usr == sym1.usr && kind == sym1.kind; })) continue; if (auto loc = GetLsLocation(db, working_files, sym, file_id)) { DocumentHighlight highlight; highlight.range = loc->range; if (sym.role & Role::Write) highlight.kind = DocumentHighlight::Write; else if (sym.role & Role::Read) highlight.kind = DocumentHighlight::Read; else highlight.kind = DocumentHighlight::Text; highlight.role = sym.role; result.push_back(highlight); } } std::sort(result.begin(), result.end()); reply(result); } namespace { struct lsDocumentLink { lsRange range; lsDocumentUri target; }; MAKE_REFLECT_STRUCT(lsDocumentLink, range, target); } // namespace void MessageHandler::textDocument_documentLink(TextDocumentParam ¶m, ReplyOnce &reply) { QueryFile *file = FindFile(reply, param.textDocument.uri.GetPath()); if (!file) return; std::vector result; for (const IndexInclude &include : file->def->includes) result.push_back({lsRange{{include.line, 0}, {include.line + 1, 0}}, lsDocumentUri::FromPath(include.resolved_path)}); reply(result); } // namespace ccls namespace { struct DocumentSymbolParam : TextDocumentParam { // false: outline; true: all symbols bool all = false; // If >= 0, return Range[] instead of SymbolInformation[] to reduce output. int startLine = -1; int endLine = -1; }; MAKE_REFLECT_STRUCT(DocumentSymbolParam, textDocument, all, startLine, endLine); struct lsDocumentSymbol { std::string name; std::string detail; lsSymbolKind kind; lsRange range; lsRange selectionRange; std::vector> children; }; void Reflect(Writer &vis, std::unique_ptr &v); MAKE_REFLECT_STRUCT(lsDocumentSymbol, name, detail, kind, range, selectionRange, children); void Reflect(Writer &vis, std::unique_ptr &v) { Reflect(vis, *v); } template bool Ignore(const Def *def) { return false; } template <> bool Ignore(const QueryType::Def *def) { return !def || def->kind == lsSymbolKind::TypeParameter; } template<> bool Ignore(const QueryVar::Def *def) { return !def || def->is_local(); } } // namespace void MessageHandler::textDocument_documentSymbol(Reader &reader, ReplyOnce &reply) { DocumentSymbolParam param; Reflect(reader, param); int file_id; QueryFile *file = FindFile(reply, param.textDocument.uri.GetPath(), &file_id); if (!file) return; WorkingFile *wfile = working_files->GetFileByFilename(file->def->path); if (!wfile) return; if (param.startLine >= 0) { std::vector result; for (auto [sym, refcnt] : file->symbol2refcnt) if (refcnt > 0 && (param.all || sym.extent.Valid()) && param.startLine <= sym.range.start.line && sym.range.start.line <= param.endLine) if (auto loc = GetLsLocation(db, working_files, sym, file_id)) result.push_back(loc->range); std::sort(result.begin(), result.end()); reply(result); } else if (g_config->client.hierarchicalDocumentSymbolSupport) { std::unordered_map> sym2ds; std::vector, lsDocumentSymbol *>> funcs, types; for (auto [sym, refcnt] : file->symbol2refcnt) { if (refcnt <= 0 || !sym.extent.Valid()) continue; auto r = sym2ds.try_emplace(SymbolIdx{sym.usr, sym.kind}); if (!r.second) continue; auto &ds = r.first->second; ds = std::make_unique(); std::vector def_ptrs; WithEntity(db, sym, [&, sym = sym](const auto &entity) { auto *def = entity.AnyDef(); if (!def) return; ds->name = def->Name(false); ds->detail = def->Name(true); if (auto ls_range = GetLsRange(wfile, sym.range)) { ds->selectionRange = *ls_range; ds->range = ds->selectionRange; if (sym.extent.Valid()) if (auto ls_range1 = GetLsRange(wfile, sym.extent)) ds->range = *ls_range1; } for (auto &def : entity.def) if (def.file_id == file_id && !Ignore(&def)) { ds->kind = def.kind; if (def.spell || def.kind == lsSymbolKind::Namespace) def_ptrs.push_back(&def); } }); if (def_ptrs.empty() || !(param.all || sym.role & Role::Definition || ds->kind == lsSymbolKind::Namespace)) { ds.reset(); continue; } if (sym.kind == SymbolKind::Func) funcs.emplace_back(std::move(def_ptrs), ds.get()); else if (sym.kind == SymbolKind::Type) types.emplace_back(std::move(def_ptrs), ds.get()); } for (auto &[def_ptrs, ds] : funcs) for (const void *def_ptr : def_ptrs) for (Usr usr1 : ((const QueryFunc::Def *)def_ptr)->vars) { auto it = sym2ds.find(SymbolIdx{usr1, SymbolKind::Var}); if (it != sym2ds.end() && it->second) ds->children.push_back(std::move(it->second)); } for (auto &[def_ptrs, ds] : types) for (const void *def_ptr : def_ptrs) { auto *def = (const QueryType::Def *)def_ptr; for (Usr usr1 : def->funcs) { auto it = sym2ds.find(SymbolIdx{usr1, SymbolKind::Func}); if (it != sym2ds.end() && it->second) ds->children.push_back(std::move(it->second)); } for (Usr usr1 : def->types) { auto it = sym2ds.find(SymbolIdx{usr1, SymbolKind::Type}); if (it != sym2ds.end() && it->second) ds->children.push_back(std::move(it->second)); } for (auto [usr1, _] : def->vars) { auto it = sym2ds.find(SymbolIdx{usr1, SymbolKind::Var}); if (it != sym2ds.end() && it->second) ds->children.push_back(std::move(it->second)); } } std::vector> result; for (auto &[_, ds] : sym2ds) if (ds) result.push_back(std::move(ds)); reply(result); } else { std::vector result; for (auto [sym, refcnt] : file->symbol2refcnt) { if (refcnt <= 0 || !sym.extent.Valid() || !(param.all || sym.role & Role::Definition)) continue; if (std::optional info = GetSymbolInfo(db, sym, false)) { if ((sym.kind == SymbolKind::Type && Ignore(db->GetType(sym).AnyDef())) || (sym.kind == SymbolKind::Var && Ignore(db->GetVar(sym).AnyDef()))) continue; if (auto loc = GetLsLocation(db, working_files, sym, file_id)) { info->location = *loc; result.push_back(*info); } } } reply(result); } } } // namespace ccls