| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- // Exceptions. See /LICENSE for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- #include "toolchain/base/shared_value_stores.h"
- #include "toolchain/diagnostics/null_diagnostics.h"
- #include "toolchain/language_server/handle.h"
- #include "toolchain/lex/lex.h"
- #include "toolchain/parse/node_kind.h"
- #include "toolchain/parse/parse.h"
- #include "toolchain/parse/tree_and_subtrees.h"
- #include "toolchain/source/source_buffer.h"
- namespace Carbon::LanguageServer {
- // Returns the text of first child of kind IdentifierNameBeforeParams or
- // IdentifierNameNotBeforeParams.
- static auto GetIdentifierName(const Parse::TreeAndSubtrees& tree_and_subtrees,
- Parse::NodeId node)
- -> std::optional<llvm::StringRef> {
- const auto& tokens = tree_and_subtrees.tree().tokens();
- for (auto child : tree_and_subtrees.children(node)) {
- switch (tree_and_subtrees.tree().node_kind(child)) {
- case Parse::NodeKind::IdentifierNameBeforeParams:
- case Parse::NodeKind::IdentifierNameNotBeforeParams: {
- auto token = tree_and_subtrees.tree().node_token(child);
- if (tokens.GetKind(token) == Lex::TokenKind::Identifier) {
- return tokens.GetTokenText(token);
- }
- break;
- }
- default:
- break;
- }
- }
- return std::nullopt;
- }
- auto HandleDocumentSymbol(
- Context& context, const clang::clangd::DocumentSymbolParams& params,
- llvm::function_ref<
- void(llvm::Expected<std::vector<clang::clangd::DocumentSymbol>>)>
- on_done) -> void {
- auto* file = context.LookupFile(params.textDocument.uri.file());
- if (!file) {
- return;
- }
- const auto& tree_and_subtrees = file->tree_and_subtrees();
- const auto& tree = tree_and_subtrees.tree();
- const auto& tokens = tree.tokens();
- std::vector<clang::clangd::DocumentSymbol> result;
- for (const auto& node_id : tree.postorder()) {
- clang::clangd::SymbolKind symbol_kind;
- switch (tree.node_kind(node_id)) {
- case Parse::NodeKind::FunctionDecl:
- case Parse::NodeKind::FunctionDefinitionStart:
- symbol_kind = clang::clangd::SymbolKind::Function;
- break;
- case Parse::NodeKind::Namespace:
- symbol_kind = clang::clangd::SymbolKind::Namespace;
- break;
- case Parse::NodeKind::InterfaceDefinitionStart:
- case Parse::NodeKind::NamedConstraintDefinitionStart:
- symbol_kind = clang::clangd::SymbolKind::Interface;
- break;
- case Parse::NodeKind::ClassDefinitionStart:
- symbol_kind = clang::clangd::SymbolKind::Class;
- break;
- default:
- continue;
- }
- if (auto name = GetIdentifierName(tree_and_subtrees, node_id)) {
- auto token = tree.node_token(node_id);
- clang::clangd::Position pos{tokens.GetLineNumber(token) - 1,
- tokens.GetColumnNumber(token) - 1};
- clang::clangd::DocumentSymbol symbol{
- .name = std::string(*name),
- .kind = symbol_kind,
- .range = {.start = pos, .end = pos},
- .selectionRange = {.start = pos, .end = pos},
- };
- result.push_back(symbol);
- }
- }
- on_done(result);
- }
- } // namespace Carbon::LanguageServer
|