1 //===--- CodeComplete.cpp ----------------------------------------*- C++-*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // Code completion has several moving parts: 10 // - AST-based completions are provided using the completion hooks in Sema. 11 // - external completions are retrieved from the index (using hints from Sema) 12 // - the two sources overlap, and must be merged and overloads bundled 13 // - results must be scored and ranked (see Quality.h) before rendering 14 // 15 // Signature help works in a similar way as code completion, but it is simpler: 16 // it's purely AST-based, and there are few candidates. 17 // 18 //===----------------------------------------------------------------------===// 19 20 #include "CodeComplete.h" 21 #include "AST.h" 22 #include "CodeCompletionStrings.h" 23 #include "Compiler.h" 24 #include "Diagnostics.h" 25 #include "ExpectedTypes.h" 26 #include "FileDistance.h" 27 #include "FuzzyMatch.h" 28 #include "Headers.h" 29 #include "Hover.h" 30 #include "Preamble.h" 31 #include "Protocol.h" 32 #include "Quality.h" 33 #include "SourceCode.h" 34 #include "TUScheduler.h" 35 #include "URI.h" 36 #include "index/Index.h" 37 #include "index/Symbol.h" 38 #include "index/SymbolOrigin.h" 39 #include "support/Logger.h" 40 #include "support/Threading.h" 41 #include "support/ThreadsafeFS.h" 42 #include "support/Trace.h" 43 #include "clang/AST/Decl.h" 44 #include "clang/AST/DeclBase.h" 45 #include "clang/Basic/CharInfo.h" 46 #include "clang/Basic/LangOptions.h" 47 #include "clang/Basic/SourceLocation.h" 48 #include "clang/Basic/TokenKinds.h" 49 #include "clang/Format/Format.h" 50 #include "clang/Frontend/CompilerInstance.h" 51 #include "clang/Frontend/FrontendActions.h" 52 #include "clang/Lex/ExternalPreprocessorSource.h" 53 #include "clang/Lex/Lexer.h" 54 #include "clang/Lex/Preprocessor.h" 55 #include "clang/Lex/PreprocessorOptions.h" 56 #include "clang/Sema/CodeCompleteConsumer.h" 57 #include "clang/Sema/DeclSpec.h" 58 #include "clang/Sema/Sema.h" 59 #include "llvm/ADT/ArrayRef.h" 60 #include "llvm/ADT/None.h" 61 #include "llvm/ADT/Optional.h" 62 #include "llvm/ADT/SmallVector.h" 63 #include "llvm/ADT/StringExtras.h" 64 #include "llvm/ADT/StringRef.h" 65 #include "llvm/Support/Casting.h" 66 #include "llvm/Support/Compiler.h" 67 #include "llvm/Support/Debug.h" 68 #include "llvm/Support/Error.h" 69 #include "llvm/Support/Format.h" 70 #include "llvm/Support/FormatVariadic.h" 71 #include "llvm/Support/ScopedPrinter.h" 72 #include <algorithm> 73 #include <iterator> 74 #include <limits> 75 76 // We log detailed candidate here if you run with -debug-only=codecomplete. 77 #define DEBUG_TYPE "CodeComplete" 78 79 namespace clang { 80 namespace clangd { 81 namespace { 82 83 CompletionItemKind toCompletionItemKind(index::SymbolKind Kind) { 84 using SK = index::SymbolKind; 85 switch (Kind) { 86 case SK::Unknown: 87 return CompletionItemKind::Missing; 88 case SK::Module: 89 case SK::Namespace: 90 case SK::NamespaceAlias: 91 return CompletionItemKind::Module; 92 case SK::Macro: 93 return CompletionItemKind::Text; 94 case SK::Enum: 95 return CompletionItemKind::Enum; 96 case SK::Struct: 97 return CompletionItemKind::Struct; 98 case SK::Class: 99 case SK::Protocol: 100 case SK::Extension: 101 case SK::Union: 102 return CompletionItemKind::Class; 103 case SK::TypeAlias: 104 // We use the same kind as the VSCode C++ extension. 105 // FIXME: pick a better option when we have one. 106 return CompletionItemKind::Interface; 107 case SK::Using: 108 return CompletionItemKind::Reference; 109 case SK::Function: 110 case SK::ConversionFunction: 111 return CompletionItemKind::Function; 112 case SK::Variable: 113 case SK::Parameter: 114 case SK::NonTypeTemplateParm: 115 return CompletionItemKind::Variable; 116 case SK::Field: 117 return CompletionItemKind::Field; 118 case SK::EnumConstant: 119 return CompletionItemKind::EnumMember; 120 case SK::InstanceMethod: 121 case SK::ClassMethod: 122 case SK::StaticMethod: 123 case SK::Destructor: 124 return CompletionItemKind::Method; 125 case SK::InstanceProperty: 126 case SK::ClassProperty: 127 case SK::StaticProperty: 128 return CompletionItemKind::Property; 129 case SK::Constructor: 130 return CompletionItemKind::Constructor; 131 case SK::TemplateTypeParm: 132 case SK::TemplateTemplateParm: 133 return CompletionItemKind::TypeParameter; 134 } 135 llvm_unreachable("Unhandled clang::index::SymbolKind."); 136 } 137 138 CompletionItemKind 139 toCompletionItemKind(CodeCompletionResult::ResultKind ResKind, 140 const NamedDecl *Decl, 141 CodeCompletionContext::Kind CtxKind) { 142 if (Decl) 143 return toCompletionItemKind(index::getSymbolInfo(Decl).Kind); 144 if (CtxKind == CodeCompletionContext::CCC_IncludedFile) 145 return CompletionItemKind::File; 146 switch (ResKind) { 147 case CodeCompletionResult::RK_Declaration: 148 llvm_unreachable("RK_Declaration without Decl"); 149 case CodeCompletionResult::RK_Keyword: 150 return CompletionItemKind::Keyword; 151 case CodeCompletionResult::RK_Macro: 152 return CompletionItemKind::Text; // unfortunately, there's no 'Macro' 153 // completion items in LSP. 154 case CodeCompletionResult::RK_Pattern: 155 return CompletionItemKind::Snippet; 156 } 157 llvm_unreachable("Unhandled CodeCompletionResult::ResultKind."); 158 } 159 160 // Identifier code completion result. 161 struct RawIdentifier { 162 llvm::StringRef Name; 163 unsigned References; // # of usages in file. 164 }; 165 166 /// A code completion result, in clang-native form. 167 /// It may be promoted to a CompletionItem if it's among the top-ranked results. 168 struct CompletionCandidate { 169 llvm::StringRef Name; // Used for filtering and sorting. 170 // We may have a result from Sema, from the index, or both. 171 const CodeCompletionResult *SemaResult = nullptr; 172 const Symbol *IndexResult = nullptr; 173 const RawIdentifier *IdentifierResult = nullptr; 174 llvm::SmallVector<llvm::StringRef, 1> RankedIncludeHeaders; 175 176 // Returns a token identifying the overload set this is part of. 177 // 0 indicates it's not part of any overload set. 178 size_t overloadSet(const CodeCompleteOptions &Opts, llvm::StringRef FileName, 179 IncludeInserter *Inserter) const { 180 if (!Opts.BundleOverloads.getValueOr(false)) 181 return 0; 182 183 // Depending on the index implementation, we can see different header 184 // strings (literal or URI) mapping to the same file. We still want to 185 // bundle those, so we must resolve the header to be included here. 186 std::string HeaderForHash; 187 if (Inserter) { 188 if (auto Header = headerToInsertIfAllowed(Opts)) { 189 if (auto HeaderFile = toHeaderFile(*Header, FileName)) { 190 if (auto Spelled = 191 Inserter->calculateIncludePath(*HeaderFile, FileName)) 192 HeaderForHash = *Spelled; 193 } else { 194 vlog("Code completion header path manipulation failed {0}", 195 HeaderFile.takeError()); 196 } 197 } 198 } 199 200 llvm::SmallString<256> Scratch; 201 if (IndexResult) { 202 switch (IndexResult->SymInfo.Kind) { 203 case index::SymbolKind::ClassMethod: 204 case index::SymbolKind::InstanceMethod: 205 case index::SymbolKind::StaticMethod: 206 #ifndef NDEBUG 207 llvm_unreachable("Don't expect members from index in code completion"); 208 #else 209 LLVM_FALLTHROUGH; 210 #endif 211 case index::SymbolKind::Function: 212 // We can't group overloads together that need different #includes. 213 // This could break #include insertion. 214 return llvm::hash_combine( 215 (IndexResult->Scope + IndexResult->Name).toStringRef(Scratch), 216 HeaderForHash); 217 default: 218 return 0; 219 } 220 } 221 if (SemaResult) { 222 // We need to make sure we're consistent with the IndexResult case! 223 const NamedDecl *D = SemaResult->Declaration; 224 if (!D || !D->isFunctionOrFunctionTemplate()) 225 return 0; 226 { 227 llvm::raw_svector_ostream OS(Scratch); 228 D->printQualifiedName(OS); 229 } 230 return llvm::hash_combine(Scratch, HeaderForHash); 231 } 232 assert(IdentifierResult); 233 return 0; 234 } 235 236 // The best header to include if include insertion is allowed. 237 llvm::Optional<llvm::StringRef> 238 headerToInsertIfAllowed(const CodeCompleteOptions &Opts) const { 239 if (Opts.InsertIncludes == CodeCompleteOptions::NeverInsert || 240 RankedIncludeHeaders.empty()) 241 return None; 242 if (SemaResult && SemaResult->Declaration) { 243 // Avoid inserting new #include if the declaration is found in the current 244 // file e.g. the symbol is forward declared. 245 auto &SM = SemaResult->Declaration->getASTContext().getSourceManager(); 246 for (const Decl *RD : SemaResult->Declaration->redecls()) 247 if (SM.isInMainFile(SM.getExpansionLoc(RD->getBeginLoc()))) 248 return None; 249 } 250 return RankedIncludeHeaders[0]; 251 } 252 253 using Bundle = llvm::SmallVector<CompletionCandidate, 4>; 254 }; 255 using ScoredBundle = 256 std::pair<CompletionCandidate::Bundle, CodeCompletion::Scores>; 257 struct ScoredBundleGreater { 258 bool operator()(const ScoredBundle &L, const ScoredBundle &R) { 259 if (L.second.Total != R.second.Total) 260 return L.second.Total > R.second.Total; 261 return L.first.front().Name < 262 R.first.front().Name; // Earlier name is better. 263 } 264 }; 265 266 // Assembles a code completion out of a bundle of >=1 completion candidates. 267 // Many of the expensive strings are only computed at this point, once we know 268 // the candidate bundle is going to be returned. 269 // 270 // Many fields are the same for all candidates in a bundle (e.g. name), and are 271 // computed from the first candidate, in the constructor. 272 // Others vary per candidate, so add() must be called for remaining candidates. 273 struct CodeCompletionBuilder { 274 CodeCompletionBuilder(ASTContext *ASTCtx, const CompletionCandidate &C, 275 CodeCompletionString *SemaCCS, 276 llvm::ArrayRef<std::string> QueryScopes, 277 const IncludeInserter &Includes, 278 llvm::StringRef FileName, 279 CodeCompletionContext::Kind ContextKind, 280 const CodeCompleteOptions &Opts, 281 bool IsUsingDeclaration, tok::TokenKind NextTokenKind) 282 : ASTCtx(ASTCtx), 283 EnableFunctionArgSnippets(Opts.EnableFunctionArgSnippets), 284 IsUsingDeclaration(IsUsingDeclaration), NextTokenKind(NextTokenKind) { 285 Completion.Deprecated = true; // cleared by any non-deprecated overload. 286 add(C, SemaCCS); 287 if (C.SemaResult) { 288 assert(ASTCtx); 289 Completion.Origin |= SymbolOrigin::AST; 290 Completion.Name = std::string(llvm::StringRef(SemaCCS->getTypedText())); 291 if (Completion.Scope.empty()) { 292 if ((C.SemaResult->Kind == CodeCompletionResult::RK_Declaration) || 293 (C.SemaResult->Kind == CodeCompletionResult::RK_Pattern)) 294 if (const auto *D = C.SemaResult->getDeclaration()) 295 if (const auto *ND = dyn_cast<NamedDecl>(D)) 296 Completion.Scope = std::string( 297 splitQualifiedName(printQualifiedName(*ND)).first); 298 } 299 Completion.Kind = toCompletionItemKind( 300 C.SemaResult->Kind, C.SemaResult->Declaration, ContextKind); 301 // Sema could provide more info on whether the completion was a file or 302 // folder. 303 if (Completion.Kind == CompletionItemKind::File && 304 Completion.Name.back() == '/') 305 Completion.Kind = CompletionItemKind::Folder; 306 for (const auto &FixIt : C.SemaResult->FixIts) { 307 Completion.FixIts.push_back(toTextEdit( 308 FixIt, ASTCtx->getSourceManager(), ASTCtx->getLangOpts())); 309 } 310 llvm::sort(Completion.FixIts, [](const TextEdit &X, const TextEdit &Y) { 311 return std::tie(X.range.start.line, X.range.start.character) < 312 std::tie(Y.range.start.line, Y.range.start.character); 313 }); 314 } 315 if (C.IndexResult) { 316 Completion.Origin |= C.IndexResult->Origin; 317 if (Completion.Scope.empty()) 318 Completion.Scope = std::string(C.IndexResult->Scope); 319 if (Completion.Kind == CompletionItemKind::Missing) 320 Completion.Kind = toCompletionItemKind(C.IndexResult->SymInfo.Kind); 321 if (Completion.Name.empty()) 322 Completion.Name = std::string(C.IndexResult->Name); 323 // If the completion was visible to Sema, no qualifier is needed. This 324 // avoids unneeded qualifiers in cases like with `using ns::X`. 325 if (Completion.RequiredQualifier.empty() && !C.SemaResult) { 326 llvm::StringRef ShortestQualifier = C.IndexResult->Scope; 327 for (llvm::StringRef Scope : QueryScopes) { 328 llvm::StringRef Qualifier = C.IndexResult->Scope; 329 if (Qualifier.consume_front(Scope) && 330 Qualifier.size() < ShortestQualifier.size()) 331 ShortestQualifier = Qualifier; 332 } 333 Completion.RequiredQualifier = std::string(ShortestQualifier); 334 } 335 } 336 if (C.IdentifierResult) { 337 Completion.Origin |= SymbolOrigin::Identifier; 338 Completion.Kind = CompletionItemKind::Text; 339 Completion.Name = std::string(C.IdentifierResult->Name); 340 } 341 342 // Turn absolute path into a literal string that can be #included. 343 auto Inserted = [&](llvm::StringRef Header) 344 -> llvm::Expected<std::pair<std::string, bool>> { 345 auto ResolvedDeclaring = 346 URI::resolve(C.IndexResult->CanonicalDeclaration.FileURI, FileName); 347 if (!ResolvedDeclaring) 348 return ResolvedDeclaring.takeError(); 349 auto ResolvedInserted = toHeaderFile(Header, FileName); 350 if (!ResolvedInserted) 351 return ResolvedInserted.takeError(); 352 auto Spelled = Includes.calculateIncludePath(*ResolvedInserted, FileName); 353 if (!Spelled) 354 return error("Header not on include path"); 355 return std::make_pair( 356 std::move(*Spelled), 357 Includes.shouldInsertInclude(*ResolvedDeclaring, *ResolvedInserted)); 358 }; 359 bool ShouldInsert = C.headerToInsertIfAllowed(Opts).hasValue(); 360 // Calculate include paths and edits for all possible headers. 361 for (const auto &Inc : C.RankedIncludeHeaders) { 362 if (auto ToInclude = Inserted(Inc)) { 363 CodeCompletion::IncludeCandidate Include; 364 Include.Header = ToInclude->first; 365 if (ToInclude->second && ShouldInsert) 366 Include.Insertion = Includes.insert(ToInclude->first); 367 Completion.Includes.push_back(std::move(Include)); 368 } else 369 log("Failed to generate include insertion edits for adding header " 370 "(FileURI='{0}', IncludeHeader='{1}') into {2}: {3}", 371 C.IndexResult->CanonicalDeclaration.FileURI, Inc, FileName, 372 ToInclude.takeError()); 373 } 374 // Prefer includes that do not need edits (i.e. already exist). 375 std::stable_partition(Completion.Includes.begin(), 376 Completion.Includes.end(), 377 [](const CodeCompletion::IncludeCandidate &I) { 378 return !I.Insertion.hasValue(); 379 }); 380 } 381 382 void add(const CompletionCandidate &C, CodeCompletionString *SemaCCS) { 383 assert(bool(C.SemaResult) == bool(SemaCCS)); 384 Bundled.emplace_back(); 385 BundledEntry &S = Bundled.back(); 386 if (C.SemaResult) { 387 bool IsPattern = C.SemaResult->Kind == CodeCompletionResult::RK_Pattern; 388 getSignature(*SemaCCS, &S.Signature, &S.SnippetSuffix, 389 &Completion.RequiredQualifier, IsPattern); 390 S.ReturnType = getReturnType(*SemaCCS); 391 } else if (C.IndexResult) { 392 S.Signature = std::string(C.IndexResult->Signature); 393 S.SnippetSuffix = std::string(C.IndexResult->CompletionSnippetSuffix); 394 S.ReturnType = std::string(C.IndexResult->ReturnType); 395 } 396 if (!Completion.Documentation) { 397 auto SetDoc = [&](llvm::StringRef Doc) { 398 if (!Doc.empty()) { 399 Completion.Documentation.emplace(); 400 parseDocumentation(Doc, *Completion.Documentation); 401 } 402 }; 403 if (C.IndexResult) { 404 SetDoc(C.IndexResult->Documentation); 405 } else if (C.SemaResult) { 406 const auto DocComment = getDocComment(*ASTCtx, *C.SemaResult, 407 /*CommentsFromHeader=*/false); 408 SetDoc(formatDocumentation(*SemaCCS, DocComment)); 409 } 410 } 411 if (Completion.Deprecated) { 412 if (C.SemaResult) 413 Completion.Deprecated &= 414 C.SemaResult->Availability == CXAvailability_Deprecated; 415 if (C.IndexResult) 416 Completion.Deprecated &= 417 bool(C.IndexResult->Flags & Symbol::Deprecated); 418 } 419 } 420 421 CodeCompletion build() { 422 Completion.ReturnType = summarizeReturnType(); 423 Completion.Signature = summarizeSignature(); 424 Completion.SnippetSuffix = summarizeSnippet(); 425 Completion.BundleSize = Bundled.size(); 426 return std::move(Completion); 427 } 428 429 private: 430 struct BundledEntry { 431 std::string SnippetSuffix; 432 std::string Signature; 433 std::string ReturnType; 434 }; 435 436 // If all BundledEntries have the same value for a property, return it. 437 template <std::string BundledEntry::*Member> 438 const std::string *onlyValue() const { 439 auto B = Bundled.begin(), E = Bundled.end(); 440 for (auto I = B + 1; I != E; ++I) 441 if (I->*Member != B->*Member) 442 return nullptr; 443 return &(B->*Member); 444 } 445 446 template <bool BundledEntry::*Member> const bool *onlyValue() const { 447 auto B = Bundled.begin(), E = Bundled.end(); 448 for (auto I = B + 1; I != E; ++I) 449 if (I->*Member != B->*Member) 450 return nullptr; 451 return &(B->*Member); 452 } 453 454 std::string summarizeReturnType() const { 455 if (auto *RT = onlyValue<&BundledEntry::ReturnType>()) 456 return *RT; 457 return ""; 458 } 459 460 std::string summarizeSnippet() const { 461 if (IsUsingDeclaration) 462 return ""; 463 auto *Snippet = onlyValue<&BundledEntry::SnippetSuffix>(); 464 if (!Snippet) 465 // All bundles are function calls. 466 // FIXME(ibiryukov): sometimes add template arguments to a snippet, e.g. 467 // we need to complete 'forward<$1>($0)'. 468 return "($0)"; 469 // Suppress function argument snippets cursor is followed by left 470 // parenthesis (and potentially arguments) or if there are potentially 471 // template arguments. There are cases where it would be wrong (e.g. next 472 // '<' token is a comparison rather than template argument list start) but 473 // it is less common and suppressing snippet provides better UX. 474 if (Completion.Kind == CompletionItemKind::Function || 475 Completion.Kind == CompletionItemKind::Method || 476 Completion.Kind == CompletionItemKind::Constructor) { 477 // If there is a potential template argument list, drop snippet and just 478 // complete symbol name. Ideally, this could generate an edit that would 479 // paste function arguments after template argument list but it would be 480 // complicated. Example: 481 // 482 // fu^<int> -> function<int> 483 if (NextTokenKind == tok::less && Snippet->front() == '<') 484 return ""; 485 // Potentially followed by argument list. 486 if (NextTokenKind == tok::l_paren) { 487 // If snippet contains template arguments we will emit them and drop 488 // function arguments. Example: 489 // 490 // fu^(42) -> function<int>(42); 491 if (Snippet->front() == '<') { 492 // Find matching '>'. Snippet->find('>') will not work in cases like 493 // template <typename T=std::vector<int>>. Hence, iterate through 494 // the snippet until the angle bracket balance reaches zero. 495 int Balance = 0; 496 size_t I = 0; 497 do { 498 if (Snippet->at(I) == '>') 499 --Balance; 500 else if (Snippet->at(I) == '<') 501 ++Balance; 502 ++I; 503 } while (Balance > 0); 504 return Snippet->substr(0, I); 505 } 506 return ""; 507 } 508 } 509 if (EnableFunctionArgSnippets) 510 return *Snippet; 511 512 // Replace argument snippets with a simplified pattern. 513 if (Snippet->empty()) 514 return ""; 515 if (Completion.Kind == CompletionItemKind::Function || 516 Completion.Kind == CompletionItemKind::Method) { 517 // Functions snippets can be of 2 types: 518 // - containing only function arguments, e.g. 519 // foo(${1:int p1}, ${2:int p2}); 520 // We transform this pattern to '($0)' or '()'. 521 // - template arguments and function arguments, e.g. 522 // foo<${1:class}>(${2:int p1}). 523 // We transform this pattern to '<$1>()$0' or '<$0>()'. 524 525 bool EmptyArgs = llvm::StringRef(*Snippet).endswith("()"); 526 if (Snippet->front() == '<') 527 return EmptyArgs ? "<$1>()$0" : "<$1>($0)"; 528 if (Snippet->front() == '(') 529 return EmptyArgs ? "()" : "($0)"; 530 return *Snippet; // Not an arg snippet? 531 } 532 // 'CompletionItemKind::Interface' matches template type aliases. 533 if (Completion.Kind == CompletionItemKind::Interface || 534 Completion.Kind == CompletionItemKind::Class) { 535 if (Snippet->front() != '<') 536 return *Snippet; // Not an arg snippet? 537 538 // Classes and template using aliases can only have template arguments, 539 // e.g. Foo<${1:class}>. 540 if (llvm::StringRef(*Snippet).endswith("<>")) 541 return "<>"; // can happen with defaulted template arguments. 542 return "<$0>"; 543 } 544 return *Snippet; 545 } 546 547 std::string summarizeSignature() const { 548 if (auto *Signature = onlyValue<&BundledEntry::Signature>()) 549 return *Signature; 550 // All bundles are function calls. 551 return "(…)"; 552 } 553 554 // ASTCtx can be nullptr if not run with sema. 555 ASTContext *ASTCtx; 556 CodeCompletion Completion; 557 llvm::SmallVector<BundledEntry, 1> Bundled; 558 bool EnableFunctionArgSnippets; 559 // No snippets will be generated for using declarations and when the function 560 // arguments are already present. 561 bool IsUsingDeclaration; 562 tok::TokenKind NextTokenKind; 563 }; 564 565 // Determine the symbol ID for a Sema code completion result, if possible. 566 SymbolID getSymbolID(const CodeCompletionResult &R, const SourceManager &SM) { 567 switch (R.Kind) { 568 case CodeCompletionResult::RK_Declaration: 569 case CodeCompletionResult::RK_Pattern: { 570 // Computing USR caches linkage, which may change after code completion. 571 if (hasUnstableLinkage(R.Declaration)) 572 return {}; 573 return clang::clangd::getSymbolID(R.Declaration); 574 } 575 case CodeCompletionResult::RK_Macro: 576 return clang::clangd::getSymbolID(R.Macro->getName(), R.MacroDefInfo, SM); 577 case CodeCompletionResult::RK_Keyword: 578 return {}; 579 } 580 llvm_unreachable("unknown CodeCompletionResult kind"); 581 } 582 583 // Scopes of the partial identifier we're trying to complete. 584 // It is used when we query the index for more completion results. 585 struct SpecifiedScope { 586 // The scopes we should look in, determined by Sema. 587 // 588 // If the qualifier was fully resolved, we look for completions in these 589 // scopes; if there is an unresolved part of the qualifier, it should be 590 // resolved within these scopes. 591 // 592 // Examples of qualified completion: 593 // 594 // "::vec" => {""} 595 // "using namespace std; ::vec^" => {"", "std::"} 596 // "namespace ns {using namespace std;} ns::^" => {"ns::", "std::"} 597 // "std::vec^" => {""} // "std" unresolved 598 // 599 // Examples of unqualified completion: 600 // 601 // "vec^" => {""} 602 // "using namespace std; vec^" => {"", "std::"} 603 // "using namespace std; namespace ns { vec^ }" => {"ns::", "std::", ""} 604 // 605 // "" for global namespace, "ns::" for normal namespace. 606 std::vector<std::string> AccessibleScopes; 607 // The full scope qualifier as typed by the user (without the leading "::"). 608 // Set if the qualifier is not fully resolved by Sema. 609 llvm::Optional<std::string> UnresolvedQualifier; 610 611 // Construct scopes being queried in indexes. The results are deduplicated. 612 // This method format the scopes to match the index request representation. 613 std::vector<std::string> scopesForIndexQuery() { 614 std::set<std::string> Results; 615 for (llvm::StringRef AS : AccessibleScopes) 616 Results.insert( 617 (AS + (UnresolvedQualifier ? *UnresolvedQualifier : "")).str()); 618 return {Results.begin(), Results.end()}; 619 } 620 }; 621 622 // Get all scopes that will be queried in indexes and whether symbols from 623 // any scope is allowed. The first scope in the list is the preferred scope 624 // (e.g. enclosing namespace). 625 std::pair<std::vector<std::string>, bool> 626 getQueryScopes(CodeCompletionContext &CCContext, const Sema &CCSema, 627 const CompletionPrefix &HeuristicPrefix, 628 const CodeCompleteOptions &Opts) { 629 SpecifiedScope Scopes; 630 for (auto *Context : CCContext.getVisitedContexts()) { 631 if (isa<TranslationUnitDecl>(Context)) 632 Scopes.AccessibleScopes.push_back(""); // global namespace 633 else if (isa<NamespaceDecl>(Context)) 634 Scopes.AccessibleScopes.push_back(printNamespaceScope(*Context)); 635 } 636 637 const CXXScopeSpec *SemaSpecifier = 638 CCContext.getCXXScopeSpecifier().getValueOr(nullptr); 639 // Case 1: unqualified completion. 640 if (!SemaSpecifier) { 641 // Case 2 (exception): sema saw no qualifier, but there appears to be one! 642 // This can happen e.g. in incomplete macro expansions. Use heuristics. 643 if (!HeuristicPrefix.Qualifier.empty()) { 644 vlog("Sema said no scope specifier, but we saw {0} in the source code", 645 HeuristicPrefix.Qualifier); 646 StringRef SpelledSpecifier = HeuristicPrefix.Qualifier; 647 if (SpelledSpecifier.consume_front("::")) 648 Scopes.AccessibleScopes = {""}; 649 Scopes.UnresolvedQualifier = std::string(SpelledSpecifier); 650 return {Scopes.scopesForIndexQuery(), false}; 651 } 652 // The enclosing namespace must be first, it gets a quality boost. 653 std::vector<std::string> EnclosingAtFront; 654 std::string EnclosingScope = printNamespaceScope(*CCSema.CurContext); 655 EnclosingAtFront.push_back(EnclosingScope); 656 for (auto &S : Scopes.scopesForIndexQuery()) { 657 if (EnclosingScope != S) 658 EnclosingAtFront.push_back(std::move(S)); 659 } 660 // Allow AllScopes completion as there is no explicit scope qualifier. 661 return {EnclosingAtFront, Opts.AllScopes}; 662 } 663 // Case 3: sema saw and resolved a scope qualifier. 664 if (SemaSpecifier && SemaSpecifier->isValid()) 665 return {Scopes.scopesForIndexQuery(), false}; 666 667 // Case 4: There was a qualifier, and Sema didn't resolve it. 668 Scopes.AccessibleScopes.push_back(""); // Make sure global scope is included. 669 llvm::StringRef SpelledSpecifier = Lexer::getSourceText( 670 CharSourceRange::getCharRange(SemaSpecifier->getRange()), 671 CCSema.SourceMgr, clang::LangOptions()); 672 if (SpelledSpecifier.consume_front("::")) 673 Scopes.AccessibleScopes = {""}; 674 Scopes.UnresolvedQualifier = std::string(SpelledSpecifier); 675 // Sema excludes the trailing "::". 676 if (!Scopes.UnresolvedQualifier->empty()) 677 *Scopes.UnresolvedQualifier += "::"; 678 679 return {Scopes.scopesForIndexQuery(), false}; 680 } 681 682 // Should we perform index-based completion in a context of the specified kind? 683 // FIXME: consider allowing completion, but restricting the result types. 684 bool contextAllowsIndex(enum CodeCompletionContext::Kind K) { 685 switch (K) { 686 case CodeCompletionContext::CCC_TopLevel: 687 case CodeCompletionContext::CCC_ObjCInterface: 688 case CodeCompletionContext::CCC_ObjCImplementation: 689 case CodeCompletionContext::CCC_ObjCIvarList: 690 case CodeCompletionContext::CCC_ClassStructUnion: 691 case CodeCompletionContext::CCC_Statement: 692 case CodeCompletionContext::CCC_Expression: 693 case CodeCompletionContext::CCC_ObjCMessageReceiver: 694 case CodeCompletionContext::CCC_EnumTag: 695 case CodeCompletionContext::CCC_UnionTag: 696 case CodeCompletionContext::CCC_ClassOrStructTag: 697 case CodeCompletionContext::CCC_ObjCProtocolName: 698 case CodeCompletionContext::CCC_Namespace: 699 case CodeCompletionContext::CCC_Type: 700 case CodeCompletionContext::CCC_ParenthesizedExpression: 701 case CodeCompletionContext::CCC_ObjCInterfaceName: 702 case CodeCompletionContext::CCC_ObjCCategoryName: 703 case CodeCompletionContext::CCC_Symbol: 704 case CodeCompletionContext::CCC_SymbolOrNewName: 705 return true; 706 case CodeCompletionContext::CCC_OtherWithMacros: 707 case CodeCompletionContext::CCC_DotMemberAccess: 708 case CodeCompletionContext::CCC_ArrowMemberAccess: 709 case CodeCompletionContext::CCC_ObjCPropertyAccess: 710 case CodeCompletionContext::CCC_MacroName: 711 case CodeCompletionContext::CCC_MacroNameUse: 712 case CodeCompletionContext::CCC_PreprocessorExpression: 713 case CodeCompletionContext::CCC_PreprocessorDirective: 714 case CodeCompletionContext::CCC_SelectorName: 715 case CodeCompletionContext::CCC_TypeQualifiers: 716 case CodeCompletionContext::CCC_ObjCInstanceMessage: 717 case CodeCompletionContext::CCC_ObjCClassMessage: 718 case CodeCompletionContext::CCC_IncludedFile: 719 case CodeCompletionContext::CCC_Attribute: 720 // FIXME: Provide identifier based completions for the following contexts: 721 case CodeCompletionContext::CCC_Other: // Be conservative. 722 case CodeCompletionContext::CCC_NaturalLanguage: 723 case CodeCompletionContext::CCC_Recovery: 724 case CodeCompletionContext::CCC_NewName: 725 return false; 726 } 727 llvm_unreachable("unknown code completion context"); 728 } 729 730 static bool isInjectedClass(const NamedDecl &D) { 731 if (auto *R = dyn_cast_or_null<RecordDecl>(&D)) 732 if (R->isInjectedClassName()) 733 return true; 734 return false; 735 } 736 737 // Some member calls are excluded because they're so rarely useful. 738 static bool isExcludedMember(const NamedDecl &D) { 739 // Destructor completion is rarely useful, and works inconsistently. 740 // (s.^ completes ~string, but s.~st^ is an error). 741 if (D.getKind() == Decl::CXXDestructor) 742 return true; 743 // Injected name may be useful for A::foo(), but who writes A::A::foo()? 744 if (isInjectedClass(D)) 745 return true; 746 // Explicit calls to operators are also rare. 747 auto NameKind = D.getDeclName().getNameKind(); 748 if (NameKind == DeclarationName::CXXOperatorName || 749 NameKind == DeclarationName::CXXLiteralOperatorName || 750 NameKind == DeclarationName::CXXConversionFunctionName) 751 return true; 752 return false; 753 } 754 755 // The CompletionRecorder captures Sema code-complete output, including context. 756 // It filters out ignored results (but doesn't apply fuzzy-filtering yet). 757 // It doesn't do scoring or conversion to CompletionItem yet, as we want to 758 // merge with index results first. 759 // Generally the fields and methods of this object should only be used from 760 // within the callback. 761 struct CompletionRecorder : public CodeCompleteConsumer { 762 CompletionRecorder(const CodeCompleteOptions &Opts, 763 llvm::unique_function<void()> ResultsCallback) 764 : CodeCompleteConsumer(Opts.getClangCompleteOpts()), 765 CCContext(CodeCompletionContext::CCC_Other), Opts(Opts), 766 CCAllocator(std::make_shared<GlobalCodeCompletionAllocator>()), 767 CCTUInfo(CCAllocator), ResultsCallback(std::move(ResultsCallback)) { 768 assert(this->ResultsCallback); 769 } 770 771 std::vector<CodeCompletionResult> Results; 772 CodeCompletionContext CCContext; 773 Sema *CCSema = nullptr; // Sema that created the results. 774 // FIXME: Sema is scary. Can we store ASTContext and Preprocessor, instead? 775 776 void ProcessCodeCompleteResults(class Sema &S, CodeCompletionContext Context, 777 CodeCompletionResult *InResults, 778 unsigned NumResults) override final { 779 // Results from recovery mode are generally useless, and the callback after 780 // recovery (if any) is usually more interesting. To make sure we handle the 781 // future callback from sema, we just ignore all callbacks in recovery mode, 782 // as taking only results from recovery mode results in poor completion 783 // results. 784 // FIXME: in case there is no future sema completion callback after the 785 // recovery mode, we might still want to provide some results (e.g. trivial 786 // identifier-based completion). 787 if (Context.getKind() == CodeCompletionContext::CCC_Recovery) { 788 log("Code complete: Ignoring sema code complete callback with Recovery " 789 "context."); 790 return; 791 } 792 // If a callback is called without any sema result and the context does not 793 // support index-based completion, we simply skip it to give way to 794 // potential future callbacks with results. 795 if (NumResults == 0 && !contextAllowsIndex(Context.getKind())) 796 return; 797 if (CCSema) { 798 log("Multiple code complete callbacks (parser backtracked?). " 799 "Dropping results from context {0}, keeping results from {1}.", 800 getCompletionKindString(Context.getKind()), 801 getCompletionKindString(this->CCContext.getKind())); 802 return; 803 } 804 // Record the completion context. 805 CCSema = &S; 806 CCContext = Context; 807 808 // Retain the results we might want. 809 for (unsigned I = 0; I < NumResults; ++I) { 810 auto &Result = InResults[I]; 811 // Class members that are shadowed by subclasses are usually noise. 812 if (Result.Hidden && Result.Declaration && 813 Result.Declaration->isCXXClassMember()) 814 continue; 815 if (!Opts.IncludeIneligibleResults && 816 (Result.Availability == CXAvailability_NotAvailable || 817 Result.Availability == CXAvailability_NotAccessible)) 818 continue; 819 if (Result.Declaration && 820 !Context.getBaseType().isNull() // is this a member-access context? 821 && isExcludedMember(*Result.Declaration)) 822 continue; 823 // Skip injected class name when no class scope is not explicitly set. 824 // E.g. show injected A::A in `using A::A^` but not in "A^". 825 if (Result.Declaration && !Context.getCXXScopeSpecifier().hasValue() && 826 isInjectedClass(*Result.Declaration)) 827 continue; 828 // We choose to never append '::' to completion results in clangd. 829 Result.StartsNestedNameSpecifier = false; 830 Results.push_back(Result); 831 } 832 ResultsCallback(); 833 } 834 835 CodeCompletionAllocator &getAllocator() override { return *CCAllocator; } 836 CodeCompletionTUInfo &getCodeCompletionTUInfo() override { return CCTUInfo; } 837 838 // Returns the filtering/sorting name for Result, which must be from Results. 839 // Returned string is owned by this recorder (or the AST). 840 llvm::StringRef getName(const CodeCompletionResult &Result) { 841 switch (Result.Kind) { 842 case CodeCompletionResult::RK_Declaration: 843 if (auto *ID = Result.Declaration->getIdentifier()) 844 return ID->getName(); 845 break; 846 case CodeCompletionResult::RK_Keyword: 847 return Result.Keyword; 848 case CodeCompletionResult::RK_Macro: 849 return Result.Macro->getName(); 850 case CodeCompletionResult::RK_Pattern: 851 return Result.Pattern->getTypedText(); 852 } 853 auto *CCS = codeCompletionString(Result); 854 return CCS->getTypedText(); 855 } 856 857 // Build a CodeCompletion string for R, which must be from Results. 858 // The CCS will be owned by this recorder. 859 CodeCompletionString *codeCompletionString(const CodeCompletionResult &R) { 860 // CodeCompletionResult doesn't seem to be const-correct. We own it, anyway. 861 return const_cast<CodeCompletionResult &>(R).CreateCodeCompletionString( 862 *CCSema, CCContext, *CCAllocator, CCTUInfo, 863 /*IncludeBriefComments=*/false); 864 } 865 866 private: 867 CodeCompleteOptions Opts; 868 std::shared_ptr<GlobalCodeCompletionAllocator> CCAllocator; 869 CodeCompletionTUInfo CCTUInfo; 870 llvm::unique_function<void()> ResultsCallback; 871 }; 872 873 struct ScoredSignature { 874 // When not null, requires documentation to be requested from the index with 875 // this ID. 876 SymbolID IDForDoc; 877 SignatureInformation Signature; 878 SignatureQualitySignals Quality; 879 }; 880 881 class SignatureHelpCollector final : public CodeCompleteConsumer { 882 public: 883 SignatureHelpCollector(const clang::CodeCompleteOptions &CodeCompleteOpts, 884 const SymbolIndex *Index, SignatureHelp &SigHelp) 885 : CodeCompleteConsumer(CodeCompleteOpts), SigHelp(SigHelp), 886 Allocator(std::make_shared<clang::GlobalCodeCompletionAllocator>()), 887 CCTUInfo(Allocator), Index(Index) {} 888 889 void ProcessOverloadCandidates(Sema &S, unsigned CurrentArg, 890 OverloadCandidate *Candidates, 891 unsigned NumCandidates, 892 SourceLocation OpenParLoc) override { 893 assert(!OpenParLoc.isInvalid()); 894 SourceManager &SrcMgr = S.getSourceManager(); 895 OpenParLoc = SrcMgr.getFileLoc(OpenParLoc); 896 if (SrcMgr.isInMainFile(OpenParLoc)) 897 SigHelp.argListStart = sourceLocToPosition(SrcMgr, OpenParLoc); 898 else 899 elog("Location oustide main file in signature help: {0}", 900 OpenParLoc.printToString(SrcMgr)); 901 902 std::vector<ScoredSignature> ScoredSignatures; 903 SigHelp.signatures.reserve(NumCandidates); 904 ScoredSignatures.reserve(NumCandidates); 905 // FIXME(rwols): How can we determine the "active overload candidate"? 906 // Right now the overloaded candidates seem to be provided in a "best fit" 907 // order, so I'm not too worried about this. 908 SigHelp.activeSignature = 0; 909 assert(CurrentArg <= (unsigned)std::numeric_limits<int>::max() && 910 "too many arguments"); 911 SigHelp.activeParameter = static_cast<int>(CurrentArg); 912 for (unsigned I = 0; I < NumCandidates; ++I) { 913 OverloadCandidate Candidate = Candidates[I]; 914 // We want to avoid showing instantiated signatures, because they may be 915 // long in some cases (e.g. when 'T' is substituted with 'std::string', we 916 // would get 'std::basic_string<char>'). 917 if (auto *Func = Candidate.getFunction()) { 918 if (auto *Pattern = Func->getTemplateInstantiationPattern()) 919 Candidate = OverloadCandidate(Pattern); 920 } 921 922 const auto *CCS = Candidate.CreateSignatureString( 923 CurrentArg, S, *Allocator, CCTUInfo, true); 924 assert(CCS && "Expected the CodeCompletionString to be non-null"); 925 ScoredSignatures.push_back(processOverloadCandidate( 926 Candidate, *CCS, 927 Candidate.getFunction() 928 ? getDeclComment(S.getASTContext(), *Candidate.getFunction()) 929 : "")); 930 } 931 932 // Sema does not load the docs from the preamble, so we need to fetch extra 933 // docs from the index instead. 934 llvm::DenseMap<SymbolID, std::string> FetchedDocs; 935 if (Index) { 936 LookupRequest IndexRequest; 937 for (const auto &S : ScoredSignatures) { 938 if (!S.IDForDoc) 939 continue; 940 IndexRequest.IDs.insert(S.IDForDoc); 941 } 942 Index->lookup(IndexRequest, [&](const Symbol &S) { 943 if (!S.Documentation.empty()) 944 FetchedDocs[S.ID] = std::string(S.Documentation); 945 }); 946 log("SigHelp: requested docs for {0} symbols from the index, got {1} " 947 "symbols with non-empty docs in the response", 948 IndexRequest.IDs.size(), FetchedDocs.size()); 949 } 950 951 llvm::sort(ScoredSignatures, [](const ScoredSignature &L, 952 const ScoredSignature &R) { 953 // Ordering follows: 954 // - Less number of parameters is better. 955 // - Function is better than FunctionType which is better than 956 // Function Template. 957 // - High score is better. 958 // - Shorter signature is better. 959 // - Alphabetically smaller is better. 960 if (L.Quality.NumberOfParameters != R.Quality.NumberOfParameters) 961 return L.Quality.NumberOfParameters < R.Quality.NumberOfParameters; 962 if (L.Quality.NumberOfOptionalParameters != 963 R.Quality.NumberOfOptionalParameters) 964 return L.Quality.NumberOfOptionalParameters < 965 R.Quality.NumberOfOptionalParameters; 966 if (L.Quality.Kind != R.Quality.Kind) { 967 using OC = CodeCompleteConsumer::OverloadCandidate; 968 switch (L.Quality.Kind) { 969 case OC::CK_Function: 970 return true; 971 case OC::CK_FunctionType: 972 return R.Quality.Kind != OC::CK_Function; 973 case OC::CK_FunctionTemplate: 974 return false; 975 } 976 llvm_unreachable("Unknown overload candidate type."); 977 } 978 if (L.Signature.label.size() != R.Signature.label.size()) 979 return L.Signature.label.size() < R.Signature.label.size(); 980 return L.Signature.label < R.Signature.label; 981 }); 982 983 for (auto &SS : ScoredSignatures) { 984 auto IndexDocIt = 985 SS.IDForDoc ? FetchedDocs.find(SS.IDForDoc) : FetchedDocs.end(); 986 if (IndexDocIt != FetchedDocs.end()) 987 SS.Signature.documentation = IndexDocIt->second; 988 989 SigHelp.signatures.push_back(std::move(SS.Signature)); 990 } 991 } 992 993 GlobalCodeCompletionAllocator &getAllocator() override { return *Allocator; } 994 995 CodeCompletionTUInfo &getCodeCompletionTUInfo() override { return CCTUInfo; } 996 997 private: 998 void processParameterChunk(llvm::StringRef ChunkText, 999 SignatureInformation &Signature) const { 1000 // (!) this is O(n), should still be fast compared to building ASTs. 1001 unsigned ParamStartOffset = lspLength(Signature.label); 1002 unsigned ParamEndOffset = ParamStartOffset + lspLength(ChunkText); 1003 // A piece of text that describes the parameter that corresponds to 1004 // the code-completion location within a function call, message send, 1005 // macro invocation, etc. 1006 Signature.label += ChunkText; 1007 ParameterInformation Info; 1008 Info.labelOffsets.emplace(ParamStartOffset, ParamEndOffset); 1009 // FIXME: only set 'labelOffsets' when all clients migrate out of it. 1010 Info.labelString = std::string(ChunkText); 1011 1012 Signature.parameters.push_back(std::move(Info)); 1013 } 1014 1015 void processOptionalChunk(const CodeCompletionString &CCS, 1016 SignatureInformation &Signature, 1017 SignatureQualitySignals &Signal) const { 1018 for (const auto &Chunk : CCS) { 1019 switch (Chunk.Kind) { 1020 case CodeCompletionString::CK_Optional: 1021 assert(Chunk.Optional && 1022 "Expected the optional code completion string to be non-null."); 1023 processOptionalChunk(*Chunk.Optional, Signature, Signal); 1024 break; 1025 case CodeCompletionString::CK_VerticalSpace: 1026 break; 1027 case CodeCompletionString::CK_CurrentParameter: 1028 case CodeCompletionString::CK_Placeholder: 1029 processParameterChunk(Chunk.Text, Signature); 1030 Signal.NumberOfOptionalParameters++; 1031 break; 1032 default: 1033 Signature.label += Chunk.Text; 1034 break; 1035 } 1036 } 1037 } 1038 1039 // FIXME(ioeric): consider moving CodeCompletionString logic here to 1040 // CompletionString.h. 1041 ScoredSignature processOverloadCandidate(const OverloadCandidate &Candidate, 1042 const CodeCompletionString &CCS, 1043 llvm::StringRef DocComment) const { 1044 SignatureInformation Signature; 1045 SignatureQualitySignals Signal; 1046 const char *ReturnType = nullptr; 1047 1048 Signature.documentation = formatDocumentation(CCS, DocComment); 1049 Signal.Kind = Candidate.getKind(); 1050 1051 for (const auto &Chunk : CCS) { 1052 switch (Chunk.Kind) { 1053 case CodeCompletionString::CK_ResultType: 1054 // A piece of text that describes the type of an entity or, 1055 // for functions and methods, the return type. 1056 assert(!ReturnType && "Unexpected CK_ResultType"); 1057 ReturnType = Chunk.Text; 1058 break; 1059 case CodeCompletionString::CK_CurrentParameter: 1060 case CodeCompletionString::CK_Placeholder: 1061 processParameterChunk(Chunk.Text, Signature); 1062 Signal.NumberOfParameters++; 1063 break; 1064 case CodeCompletionString::CK_Optional: { 1065 // The rest of the parameters are defaulted/optional. 1066 assert(Chunk.Optional && 1067 "Expected the optional code completion string to be non-null."); 1068 processOptionalChunk(*Chunk.Optional, Signature, Signal); 1069 break; 1070 } 1071 case CodeCompletionString::CK_VerticalSpace: 1072 break; 1073 default: 1074 Signature.label += Chunk.Text; 1075 break; 1076 } 1077 } 1078 if (ReturnType) { 1079 Signature.label += " -> "; 1080 Signature.label += ReturnType; 1081 } 1082 dlog("Signal for {0}: {1}", Signature, Signal); 1083 ScoredSignature Result; 1084 Result.Signature = std::move(Signature); 1085 Result.Quality = Signal; 1086 const FunctionDecl *Func = Candidate.getFunction(); 1087 if (Func && Result.Signature.documentation.empty()) { 1088 // Computing USR caches linkage, which may change after code completion. 1089 if (!hasUnstableLinkage(Func)) 1090 Result.IDForDoc = clangd::getSymbolID(Func); 1091 } 1092 return Result; 1093 } 1094 1095 SignatureHelp &SigHelp; 1096 std::shared_ptr<clang::GlobalCodeCompletionAllocator> Allocator; 1097 CodeCompletionTUInfo CCTUInfo; 1098 const SymbolIndex *Index; 1099 }; // SignatureHelpCollector 1100 1101 // Used only for completion of C-style comments in function call (i.e. 1102 // /*foo=*/7). Similar to SignatureHelpCollector, but needs to do less work. 1103 class ParamNameCollector final : public CodeCompleteConsumer { 1104 public: 1105 ParamNameCollector(const clang::CodeCompleteOptions &CodeCompleteOpts, 1106 std::set<std::string> &ParamNames) 1107 : CodeCompleteConsumer(CodeCompleteOpts), 1108 Allocator(std::make_shared<clang::GlobalCodeCompletionAllocator>()), 1109 CCTUInfo(Allocator), ParamNames(ParamNames) {} 1110 1111 void ProcessOverloadCandidates(Sema &S, unsigned CurrentArg, 1112 OverloadCandidate *Candidates, 1113 unsigned NumCandidates, 1114 SourceLocation OpenParLoc) override { 1115 assert(CurrentArg <= (unsigned)std::numeric_limits<int>::max() && 1116 "too many arguments"); 1117 1118 for (unsigned I = 0; I < NumCandidates; ++I) { 1119 OverloadCandidate Candidate = Candidates[I]; 1120 auto *Func = Candidate.getFunction(); 1121 if (!Func || Func->getNumParams() <= CurrentArg) 1122 continue; 1123 auto *PVD = Func->getParamDecl(CurrentArg); 1124 if (!PVD) 1125 continue; 1126 auto *Ident = PVD->getIdentifier(); 1127 if (!Ident) 1128 continue; 1129 auto Name = Ident->getName(); 1130 if (!Name.empty()) 1131 ParamNames.insert(Name.str()); 1132 } 1133 } 1134 1135 private: 1136 GlobalCodeCompletionAllocator &getAllocator() override { return *Allocator; } 1137 1138 CodeCompletionTUInfo &getCodeCompletionTUInfo() override { return CCTUInfo; } 1139 1140 std::shared_ptr<clang::GlobalCodeCompletionAllocator> Allocator; 1141 CodeCompletionTUInfo CCTUInfo; 1142 std::set<std::string> &ParamNames; 1143 }; 1144 1145 struct SemaCompleteInput { 1146 PathRef FileName; 1147 size_t Offset; 1148 const PreambleData &Preamble; 1149 const llvm::Optional<PreamblePatch> Patch; 1150 const ParseInputs &ParseInput; 1151 }; 1152 1153 void loadMainFilePreambleMacros(const Preprocessor &PP, 1154 const PreambleData &Preamble) { 1155 // The ExternalPreprocessorSource has our macros, if we know where to look. 1156 // We can read all the macros using PreambleMacros->ReadDefinedMacros(), 1157 // but this includes transitively included files, so may deserialize a lot. 1158 ExternalPreprocessorSource *PreambleMacros = PP.getExternalSource(); 1159 // As we have the names of the macros, we can look up their IdentifierInfo 1160 // and then use this to load just the macros we want. 1161 const auto &ITable = PP.getIdentifierTable(); 1162 IdentifierInfoLookup *PreambleIdentifiers = 1163 ITable.getExternalIdentifierLookup(); 1164 1165 if (!PreambleIdentifiers || !PreambleMacros) 1166 return; 1167 for (const auto &MacroName : Preamble.Macros.Names) { 1168 if (ITable.find(MacroName.getKey()) != ITable.end()) 1169 continue; 1170 if (auto *II = PreambleIdentifiers->get(MacroName.getKey())) 1171 if (II->isOutOfDate()) 1172 PreambleMacros->updateOutOfDateIdentifier(*II); 1173 } 1174 } 1175 1176 // Invokes Sema code completion on a file. 1177 // If \p Includes is set, it will be updated based on the compiler invocation. 1178 bool semaCodeComplete(std::unique_ptr<CodeCompleteConsumer> Consumer, 1179 const clang::CodeCompleteOptions &Options, 1180 const SemaCompleteInput &Input, 1181 IncludeStructure *Includes = nullptr) { 1182 trace::Span Tracer("Sema completion"); 1183 1184 IgnoreDiagnostics IgnoreDiags; 1185 auto CI = buildCompilerInvocation(Input.ParseInput, IgnoreDiags); 1186 if (!CI) { 1187 elog("Couldn't create CompilerInvocation"); 1188 return false; 1189 } 1190 auto &FrontendOpts = CI->getFrontendOpts(); 1191 FrontendOpts.SkipFunctionBodies = true; 1192 // Disable typo correction in Sema. 1193 CI->getLangOpts()->SpellChecking = false; 1194 // Code completion won't trigger in delayed template bodies. 1195 // This is on-by-default in windows to allow parsing SDK headers; we're only 1196 // disabling it for the main-file (not preamble). 1197 CI->getLangOpts()->DelayedTemplateParsing = false; 1198 // Setup code completion. 1199 FrontendOpts.CodeCompleteOpts = Options; 1200 FrontendOpts.CodeCompletionAt.FileName = std::string(Input.FileName); 1201 std::tie(FrontendOpts.CodeCompletionAt.Line, 1202 FrontendOpts.CodeCompletionAt.Column) = 1203 offsetToClangLineColumn(Input.ParseInput.Contents, Input.Offset); 1204 1205 std::unique_ptr<llvm::MemoryBuffer> ContentsBuffer = 1206 llvm::MemoryBuffer::getMemBuffer(Input.ParseInput.Contents, 1207 Input.FileName); 1208 // The diagnostic options must be set before creating a CompilerInstance. 1209 CI->getDiagnosticOpts().IgnoreWarnings = true; 1210 // We reuse the preamble whether it's valid or not. This is a 1211 // correctness/performance tradeoff: building without a preamble is slow, and 1212 // completion is latency-sensitive. 1213 // However, if we're completing *inside* the preamble section of the draft, 1214 // overriding the preamble will break sema completion. Fortunately we can just 1215 // skip all includes in this case; these completions are really simple. 1216 PreambleBounds PreambleRegion = 1217 ComputePreambleBounds(*CI->getLangOpts(), *ContentsBuffer, 0); 1218 bool CompletingInPreamble = Input.Offset < PreambleRegion.Size || 1219 (!PreambleRegion.PreambleEndsAtStartOfLine && 1220 Input.Offset == PreambleRegion.Size); 1221 if (Input.Patch) 1222 Input.Patch->apply(*CI); 1223 // NOTE: we must call BeginSourceFile after prepareCompilerInstance. Otherwise 1224 // the remapped buffers do not get freed. 1225 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS = 1226 Input.ParseInput.TFS->view(Input.ParseInput.CompileCommand.Directory); 1227 if (Input.Preamble.StatCache) 1228 VFS = Input.Preamble.StatCache->getConsumingFS(std::move(VFS)); 1229 auto Clang = prepareCompilerInstance( 1230 std::move(CI), !CompletingInPreamble ? &Input.Preamble.Preamble : nullptr, 1231 std::move(ContentsBuffer), std::move(VFS), IgnoreDiags); 1232 Clang->getPreprocessorOpts().SingleFileParseMode = CompletingInPreamble; 1233 Clang->setCodeCompletionConsumer(Consumer.release()); 1234 1235 SyntaxOnlyAction Action; 1236 if (!Action.BeginSourceFile(*Clang, Clang->getFrontendOpts().Inputs[0])) { 1237 log("BeginSourceFile() failed when running codeComplete for {0}", 1238 Input.FileName); 1239 return false; 1240 } 1241 // Macros can be defined within the preamble region of the main file. 1242 // They don't fall nicely into our index/Sema dichotomy: 1243 // - they're not indexed for completion (they're not available across files) 1244 // - but Sema code complete won't see them: as part of the preamble, they're 1245 // deserialized only when mentioned. 1246 // Force them to be deserialized so SemaCodeComplete sees them. 1247 loadMainFilePreambleMacros(Clang->getPreprocessor(), Input.Preamble); 1248 if (Includes) 1249 Clang->getPreprocessor().addPPCallbacks( 1250 Includes->collect(Clang->getSourceManager())); 1251 if (llvm::Error Err = Action.Execute()) { 1252 log("Execute() failed when running codeComplete for {0}: {1}", 1253 Input.FileName, toString(std::move(Err))); 1254 return false; 1255 } 1256 Action.EndSourceFile(); 1257 1258 return true; 1259 } 1260 1261 // Should we allow index completions in the specified context? 1262 bool allowIndex(CodeCompletionContext &CC) { 1263 if (!contextAllowsIndex(CC.getKind())) 1264 return false; 1265 // We also avoid ClassName::bar (but allow namespace::bar). 1266 auto Scope = CC.getCXXScopeSpecifier(); 1267 if (!Scope) 1268 return true; 1269 NestedNameSpecifier *NameSpec = (*Scope)->getScopeRep(); 1270 if (!NameSpec) 1271 return true; 1272 // We only query the index when qualifier is a namespace. 1273 // If it's a class, we rely solely on sema completions. 1274 switch (NameSpec->getKind()) { 1275 case NestedNameSpecifier::Global: 1276 case NestedNameSpecifier::Namespace: 1277 case NestedNameSpecifier::NamespaceAlias: 1278 return true; 1279 case NestedNameSpecifier::Super: 1280 case NestedNameSpecifier::TypeSpec: 1281 case NestedNameSpecifier::TypeSpecWithTemplate: 1282 // Unresolved inside a template. 1283 case NestedNameSpecifier::Identifier: 1284 return false; 1285 } 1286 llvm_unreachable("invalid NestedNameSpecifier kind"); 1287 } 1288 1289 std::future<SymbolSlab> startAsyncFuzzyFind(const SymbolIndex &Index, 1290 const FuzzyFindRequest &Req) { 1291 return runAsync<SymbolSlab>([&Index, Req]() { 1292 trace::Span Tracer("Async fuzzyFind"); 1293 SymbolSlab::Builder Syms; 1294 Index.fuzzyFind(Req, [&Syms](const Symbol &Sym) { Syms.insert(Sym); }); 1295 return std::move(Syms).build(); 1296 }); 1297 } 1298 1299 // Creates a `FuzzyFindRequest` based on the cached index request from the 1300 // last completion, if any, and the speculated completion filter text in the 1301 // source code. 1302 FuzzyFindRequest speculativeFuzzyFindRequestForCompletion( 1303 FuzzyFindRequest CachedReq, const CompletionPrefix &HeuristicPrefix) { 1304 CachedReq.Query = std::string(HeuristicPrefix.Name); 1305 return CachedReq; 1306 } 1307 1308 // Runs Sema-based (AST) and Index-based completion, returns merged results. 1309 // 1310 // There are a few tricky considerations: 1311 // - the AST provides information needed for the index query (e.g. which 1312 // namespaces to search in). So Sema must start first. 1313 // - we only want to return the top results (Opts.Limit). 1314 // Building CompletionItems for everything else is wasteful, so we want to 1315 // preserve the "native" format until we're done with scoring. 1316 // - the data underlying Sema completion items is owned by the AST and various 1317 // other arenas, which must stay alive for us to build CompletionItems. 1318 // - we may get duplicate results from Sema and the Index, we need to merge. 1319 // 1320 // So we start Sema completion first, and do all our work in its callback. 1321 // We use the Sema context information to query the index. 1322 // Then we merge the two result sets, producing items that are Sema/Index/Both. 1323 // These items are scored, and the top N are synthesized into the LSP response. 1324 // Finally, we can clean up the data structures created by Sema completion. 1325 // 1326 // Main collaborators are: 1327 // - semaCodeComplete sets up the compiler machinery to run code completion. 1328 // - CompletionRecorder captures Sema completion results, including context. 1329 // - SymbolIndex (Opts.Index) provides index completion results as Symbols 1330 // - CompletionCandidates are the result of merging Sema and Index results. 1331 // Each candidate points to an underlying CodeCompletionResult (Sema), a 1332 // Symbol (Index), or both. It computes the result quality score. 1333 // CompletionCandidate also does conversion to CompletionItem (at the end). 1334 // - FuzzyMatcher scores how the candidate matches the partial identifier. 1335 // This score is combined with the result quality score for the final score. 1336 // - TopN determines the results with the best score. 1337 class CodeCompleteFlow { 1338 PathRef FileName; 1339 IncludeStructure Includes; // Complete once the compiler runs. 1340 SpeculativeFuzzyFind *SpecFuzzyFind; // Can be nullptr. 1341 const CodeCompleteOptions &Opts; 1342 1343 // Sema takes ownership of Recorder. Recorder is valid until Sema cleanup. 1344 CompletionRecorder *Recorder = nullptr; 1345 CodeCompletionContext::Kind CCContextKind = CodeCompletionContext::CCC_Other; 1346 bool IsUsingDeclaration = false; 1347 // The snippets will not be generated if the token following completion 1348 // location is an opening parenthesis (tok::l_paren) because this would add 1349 // extra parenthesis. 1350 tok::TokenKind NextTokenKind = tok::eof; 1351 // Counters for logging. 1352 int NSema = 0, NIndex = 0, NSemaAndIndex = 0, NIdent = 0; 1353 bool Incomplete = false; // Would more be available with a higher limit? 1354 CompletionPrefix HeuristicPrefix; 1355 llvm::Optional<FuzzyMatcher> Filter; // Initialized once Sema runs. 1356 Range ReplacedRange; 1357 std::vector<std::string> QueryScopes; // Initialized once Sema runs. 1358 // Initialized once QueryScopes is initialized, if there are scopes. 1359 llvm::Optional<ScopeDistance> ScopeProximity; 1360 llvm::Optional<OpaqueType> PreferredType; // Initialized once Sema runs. 1361 // Whether to query symbols from any scope. Initialized once Sema runs. 1362 bool AllScopes = false; 1363 llvm::StringSet<> ContextWords; 1364 // Include-insertion and proximity scoring rely on the include structure. 1365 // This is available after Sema has run. 1366 llvm::Optional<IncludeInserter> Inserter; // Available during runWithSema. 1367 llvm::Optional<URIDistance> FileProximity; // Initialized once Sema runs. 1368 /// Speculative request based on the cached request and the filter text before 1369 /// the cursor. 1370 /// Initialized right before sema run. This is only set if `SpecFuzzyFind` is 1371 /// set and contains a cached request. 1372 llvm::Optional<FuzzyFindRequest> SpecReq; 1373 1374 public: 1375 // A CodeCompleteFlow object is only useful for calling run() exactly once. 1376 CodeCompleteFlow(PathRef FileName, const IncludeStructure &Includes, 1377 SpeculativeFuzzyFind *SpecFuzzyFind, 1378 const CodeCompleteOptions &Opts) 1379 : FileName(FileName), Includes(Includes), SpecFuzzyFind(SpecFuzzyFind), 1380 Opts(Opts) {} 1381 1382 CodeCompleteResult run(const SemaCompleteInput &SemaCCInput) && { 1383 trace::Span Tracer("CodeCompleteFlow"); 1384 HeuristicPrefix = guessCompletionPrefix(SemaCCInput.ParseInput.Contents, 1385 SemaCCInput.Offset); 1386 populateContextWords(SemaCCInput.ParseInput.Contents); 1387 if (Opts.Index && SpecFuzzyFind && SpecFuzzyFind->CachedReq.hasValue()) { 1388 assert(!SpecFuzzyFind->Result.valid()); 1389 SpecReq = speculativeFuzzyFindRequestForCompletion( 1390 *SpecFuzzyFind->CachedReq, HeuristicPrefix); 1391 SpecFuzzyFind->Result = startAsyncFuzzyFind(*Opts.Index, *SpecReq); 1392 } 1393 1394 // We run Sema code completion first. It builds an AST and calculates: 1395 // - completion results based on the AST. 1396 // - partial identifier and context. We need these for the index query. 1397 CodeCompleteResult Output; 1398 auto RecorderOwner = std::make_unique<CompletionRecorder>(Opts, [&]() { 1399 assert(Recorder && "Recorder is not set"); 1400 CCContextKind = Recorder->CCContext.getKind(); 1401 IsUsingDeclaration = Recorder->CCContext.isUsingDeclaration(); 1402 auto Style = getFormatStyleForFile(SemaCCInput.FileName, 1403 SemaCCInput.ParseInput.Contents, 1404 *SemaCCInput.ParseInput.TFS); 1405 const auto NextToken = Lexer::findNextToken( 1406 Recorder->CCSema->getPreprocessor().getCodeCompletionLoc(), 1407 Recorder->CCSema->getSourceManager(), Recorder->CCSema->LangOpts); 1408 if (NextToken) 1409 NextTokenKind = NextToken->getKind(); 1410 // If preprocessor was run, inclusions from preprocessor callback should 1411 // already be added to Includes. 1412 Inserter.emplace( 1413 SemaCCInput.FileName, SemaCCInput.ParseInput.Contents, Style, 1414 SemaCCInput.ParseInput.CompileCommand.Directory, 1415 &Recorder->CCSema->getPreprocessor().getHeaderSearchInfo()); 1416 for (const auto &Inc : Includes.MainFileIncludes) 1417 Inserter->addExisting(Inc); 1418 1419 // Most of the cost of file proximity is in initializing the FileDistance 1420 // structures based on the observed includes, once per query. Conceptually 1421 // that happens here (though the per-URI-scheme initialization is lazy). 1422 // The per-result proximity scoring is (amortized) very cheap. 1423 FileDistanceOptions ProxOpts{}; // Use defaults. 1424 const auto &SM = Recorder->CCSema->getSourceManager(); 1425 llvm::StringMap<SourceParams> ProxSources; 1426 auto MainFileID = 1427 Includes.getID(SM.getFileEntryForID(SM.getMainFileID())); 1428 assert(MainFileID); 1429 for (auto &HeaderIDAndDepth : Includes.includeDepth(*MainFileID)) { 1430 auto &Source = 1431 ProxSources[Includes.getRealPath(HeaderIDAndDepth.getFirst())]; 1432 Source.Cost = HeaderIDAndDepth.getSecond() * ProxOpts.IncludeCost; 1433 // Symbols near our transitive includes are good, but only consider 1434 // things in the same directory or below it. Otherwise there can be 1435 // many false positives. 1436 if (HeaderIDAndDepth.getSecond() > 0) 1437 Source.MaxUpTraversals = 1; 1438 } 1439 FileProximity.emplace(ProxSources, ProxOpts); 1440 1441 Output = runWithSema(); 1442 Inserter.reset(); // Make sure this doesn't out-live Clang. 1443 SPAN_ATTACH(Tracer, "sema_completion_kind", 1444 getCompletionKindString(CCContextKind)); 1445 log("Code complete: sema context {0}, query scopes [{1}] (AnyScope={2}), " 1446 "expected type {3}{4}", 1447 getCompletionKindString(CCContextKind), 1448 llvm::join(QueryScopes.begin(), QueryScopes.end(), ","), AllScopes, 1449 PreferredType ? Recorder->CCContext.getPreferredType().getAsString() 1450 : "<none>", 1451 IsUsingDeclaration ? ", inside using declaration" : ""); 1452 }); 1453 1454 Recorder = RecorderOwner.get(); 1455 1456 semaCodeComplete(std::move(RecorderOwner), Opts.getClangCompleteOpts(), 1457 SemaCCInput, &Includes); 1458 logResults(Output, Tracer); 1459 return Output; 1460 } 1461 1462 void logResults(const CodeCompleteResult &Output, const trace::Span &Tracer) { 1463 SPAN_ATTACH(Tracer, "sema_results", NSema); 1464 SPAN_ATTACH(Tracer, "index_results", NIndex); 1465 SPAN_ATTACH(Tracer, "merged_results", NSemaAndIndex); 1466 SPAN_ATTACH(Tracer, "identifier_results", NIdent); 1467 SPAN_ATTACH(Tracer, "returned_results", int64_t(Output.Completions.size())); 1468 SPAN_ATTACH(Tracer, "incomplete", Output.HasMore); 1469 log("Code complete: {0} results from Sema, {1} from Index, " 1470 "{2} matched, {3} from identifiers, {4} returned{5}.", 1471 NSema, NIndex, NSemaAndIndex, NIdent, Output.Completions.size(), 1472 Output.HasMore ? " (incomplete)" : ""); 1473 assert(!Opts.Limit || Output.Completions.size() <= Opts.Limit); 1474 // We don't assert that isIncomplete means we hit a limit. 1475 // Indexes may choose to impose their own limits even if we don't have one. 1476 } 1477 1478 CodeCompleteResult runWithoutSema(llvm::StringRef Content, size_t Offset, 1479 const ThreadsafeFS &TFS) && { 1480 trace::Span Tracer("CodeCompleteWithoutSema"); 1481 // Fill in fields normally set by runWithSema() 1482 HeuristicPrefix = guessCompletionPrefix(Content, Offset); 1483 populateContextWords(Content); 1484 CCContextKind = CodeCompletionContext::CCC_Recovery; 1485 IsUsingDeclaration = false; 1486 Filter = FuzzyMatcher(HeuristicPrefix.Name); 1487 auto Pos = offsetToPosition(Content, Offset); 1488 ReplacedRange.start = ReplacedRange.end = Pos; 1489 ReplacedRange.start.character -= HeuristicPrefix.Name.size(); 1490 1491 llvm::StringMap<SourceParams> ProxSources; 1492 ProxSources[FileName].Cost = 0; 1493 FileProximity.emplace(ProxSources); 1494 1495 auto Style = getFormatStyleForFile(FileName, Content, TFS); 1496 // This will only insert verbatim headers. 1497 Inserter.emplace(FileName, Content, Style, 1498 /*BuildDir=*/"", /*HeaderSearchInfo=*/nullptr); 1499 1500 auto Identifiers = collectIdentifiers(Content, Style); 1501 std::vector<RawIdentifier> IdentifierResults; 1502 for (const auto &IDAndCount : Identifiers) { 1503 RawIdentifier ID; 1504 ID.Name = IDAndCount.first(); 1505 ID.References = IDAndCount.second; 1506 // Avoid treating typed filter as an identifier. 1507 if (ID.Name == HeuristicPrefix.Name) 1508 --ID.References; 1509 if (ID.References > 0) 1510 IdentifierResults.push_back(std::move(ID)); 1511 } 1512 1513 // Simplified version of getQueryScopes(): 1514 // - accessible scopes are determined heuristically. 1515 // - all-scopes query if no qualifier was typed (and it's allowed). 1516 SpecifiedScope Scopes; 1517 Scopes.AccessibleScopes = visibleNamespaces( 1518 Content.take_front(Offset), format::getFormattingLangOpts(Style)); 1519 for (std::string &S : Scopes.AccessibleScopes) 1520 if (!S.empty()) 1521 S.append("::"); // visibleNamespaces doesn't include trailing ::. 1522 if (HeuristicPrefix.Qualifier.empty()) 1523 AllScopes = Opts.AllScopes; 1524 else if (HeuristicPrefix.Qualifier.startswith("::")) { 1525 Scopes.AccessibleScopes = {""}; 1526 Scopes.UnresolvedQualifier = 1527 std::string(HeuristicPrefix.Qualifier.drop_front(2)); 1528 } else 1529 Scopes.UnresolvedQualifier = std::string(HeuristicPrefix.Qualifier); 1530 // First scope is the (modified) enclosing scope. 1531 QueryScopes = Scopes.scopesForIndexQuery(); 1532 ScopeProximity.emplace(QueryScopes); 1533 1534 SymbolSlab IndexResults = Opts.Index ? queryIndex() : SymbolSlab(); 1535 1536 CodeCompleteResult Output = toCodeCompleteResult(mergeResults( 1537 /*SemaResults=*/{}, IndexResults, IdentifierResults)); 1538 Output.RanParser = false; 1539 logResults(Output, Tracer); 1540 return Output; 1541 } 1542 1543 private: 1544 void populateContextWords(llvm::StringRef Content) { 1545 // Take last 3 lines before the completion point. 1546 unsigned RangeEnd = HeuristicPrefix.Qualifier.begin() - Content.data(), 1547 RangeBegin = RangeEnd; 1548 for (size_t I = 0; I < 3 && RangeBegin > 0; ++I) { 1549 auto PrevNL = Content.rfind('\n', RangeBegin); 1550 if (PrevNL == StringRef::npos) { 1551 RangeBegin = 0; 1552 break; 1553 } 1554 RangeBegin = PrevNL; 1555 } 1556 1557 ContextWords = collectWords(Content.slice(RangeBegin, RangeEnd)); 1558 dlog("Completion context words: {0}", 1559 llvm::join(ContextWords.keys(), ", ")); 1560 } 1561 1562 // This is called by run() once Sema code completion is done, but before the 1563 // Sema data structures are torn down. It does all the real work. 1564 CodeCompleteResult runWithSema() { 1565 const auto &CodeCompletionRange = CharSourceRange::getCharRange( 1566 Recorder->CCSema->getPreprocessor().getCodeCompletionTokenRange()); 1567 // When we are getting completions with an empty identifier, for example 1568 // std::vector<int> asdf; 1569 // asdf.^; 1570 // Then the range will be invalid and we will be doing insertion, use 1571 // current cursor position in such cases as range. 1572 if (CodeCompletionRange.isValid()) { 1573 ReplacedRange = halfOpenToRange(Recorder->CCSema->getSourceManager(), 1574 CodeCompletionRange); 1575 } else { 1576 const auto &Pos = sourceLocToPosition( 1577 Recorder->CCSema->getSourceManager(), 1578 Recorder->CCSema->getPreprocessor().getCodeCompletionLoc()); 1579 ReplacedRange.start = ReplacedRange.end = Pos; 1580 } 1581 Filter = FuzzyMatcher( 1582 Recorder->CCSema->getPreprocessor().getCodeCompletionFilter()); 1583 std::tie(QueryScopes, AllScopes) = getQueryScopes( 1584 Recorder->CCContext, *Recorder->CCSema, HeuristicPrefix, Opts); 1585 if (!QueryScopes.empty()) 1586 ScopeProximity.emplace(QueryScopes); 1587 PreferredType = 1588 OpaqueType::fromType(Recorder->CCSema->getASTContext(), 1589 Recorder->CCContext.getPreferredType()); 1590 // Sema provides the needed context to query the index. 1591 // FIXME: in addition to querying for extra/overlapping symbols, we should 1592 // explicitly request symbols corresponding to Sema results. 1593 // We can use their signals even if the index can't suggest them. 1594 // We must copy index results to preserve them, but there are at most Limit. 1595 auto IndexResults = (Opts.Index && allowIndex(Recorder->CCContext)) 1596 ? queryIndex() 1597 : SymbolSlab(); 1598 trace::Span Tracer("Populate CodeCompleteResult"); 1599 // Merge Sema and Index results, score them, and pick the winners. 1600 auto Top = 1601 mergeResults(Recorder->Results, IndexResults, /*Identifiers*/ {}); 1602 return toCodeCompleteResult(Top); 1603 } 1604 1605 CodeCompleteResult 1606 toCodeCompleteResult(const std::vector<ScoredBundle> &Scored) { 1607 CodeCompleteResult Output; 1608 1609 // Convert the results to final form, assembling the expensive strings. 1610 for (auto &C : Scored) { 1611 Output.Completions.push_back(toCodeCompletion(C.first)); 1612 Output.Completions.back().Score = C.second; 1613 Output.Completions.back().CompletionTokenRange = ReplacedRange; 1614 } 1615 Output.HasMore = Incomplete; 1616 Output.Context = CCContextKind; 1617 Output.CompletionRange = ReplacedRange; 1618 return Output; 1619 } 1620 1621 SymbolSlab queryIndex() { 1622 trace::Span Tracer("Query index"); 1623 SPAN_ATTACH(Tracer, "limit", int64_t(Opts.Limit)); 1624 1625 // Build the query. 1626 FuzzyFindRequest Req; 1627 if (Opts.Limit) 1628 Req.Limit = Opts.Limit; 1629 Req.Query = std::string(Filter->pattern()); 1630 Req.RestrictForCodeCompletion = true; 1631 Req.Scopes = QueryScopes; 1632 Req.AnyScope = AllScopes; 1633 // FIXME: we should send multiple weighted paths here. 1634 Req.ProximityPaths.push_back(std::string(FileName)); 1635 if (PreferredType) 1636 Req.PreferredTypes.push_back(std::string(PreferredType->raw())); 1637 vlog("Code complete: fuzzyFind({0:2})", toJSON(Req)); 1638 1639 if (SpecFuzzyFind) 1640 SpecFuzzyFind->NewReq = Req; 1641 if (SpecFuzzyFind && SpecFuzzyFind->Result.valid() && (*SpecReq == Req)) { 1642 vlog("Code complete: speculative fuzzy request matches the actual index " 1643 "request. Waiting for the speculative index results."); 1644 SPAN_ATTACH(Tracer, "Speculative results", true); 1645 1646 trace::Span WaitSpec("Wait speculative results"); 1647 return SpecFuzzyFind->Result.get(); 1648 } 1649 1650 SPAN_ATTACH(Tracer, "Speculative results", false); 1651 1652 // Run the query against the index. 1653 SymbolSlab::Builder ResultsBuilder; 1654 if (Opts.Index->fuzzyFind( 1655 Req, [&](const Symbol &Sym) { ResultsBuilder.insert(Sym); })) 1656 Incomplete = true; 1657 return std::move(ResultsBuilder).build(); 1658 } 1659 1660 // Merges Sema and Index results where possible, to form CompletionCandidates. 1661 // \p Identifiers is raw identifiers that can also be completion candidates. 1662 // Identifiers are not merged with results from index or sema. 1663 // Groups overloads if desired, to form CompletionCandidate::Bundles. The 1664 // bundles are scored and top results are returned, best to worst. 1665 std::vector<ScoredBundle> 1666 mergeResults(const std::vector<CodeCompletionResult> &SemaResults, 1667 const SymbolSlab &IndexResults, 1668 const std::vector<RawIdentifier> &IdentifierResults) { 1669 trace::Span Tracer("Merge and score results"); 1670 std::vector<CompletionCandidate::Bundle> Bundles; 1671 llvm::DenseMap<size_t, size_t> BundleLookup; 1672 auto AddToBundles = [&](const CodeCompletionResult *SemaResult, 1673 const Symbol *IndexResult, 1674 const RawIdentifier *IdentifierResult) { 1675 CompletionCandidate C; 1676 C.SemaResult = SemaResult; 1677 C.IndexResult = IndexResult; 1678 C.IdentifierResult = IdentifierResult; 1679 if (C.IndexResult) { 1680 C.Name = IndexResult->Name; 1681 C.RankedIncludeHeaders = getRankedIncludes(*C.IndexResult); 1682 } else if (C.SemaResult) { 1683 C.Name = Recorder->getName(*SemaResult); 1684 } else { 1685 assert(IdentifierResult); 1686 C.Name = IdentifierResult->Name; 1687 } 1688 if (auto OverloadSet = C.overloadSet( 1689 Opts, FileName, Inserter ? Inserter.getPointer() : nullptr)) { 1690 auto Ret = BundleLookup.try_emplace(OverloadSet, Bundles.size()); 1691 if (Ret.second) 1692 Bundles.emplace_back(); 1693 Bundles[Ret.first->second].push_back(std::move(C)); 1694 } else { 1695 Bundles.emplace_back(); 1696 Bundles.back().push_back(std::move(C)); 1697 } 1698 }; 1699 llvm::DenseSet<const Symbol *> UsedIndexResults; 1700 auto CorrespondingIndexResult = 1701 [&](const CodeCompletionResult &SemaResult) -> const Symbol * { 1702 if (auto SymID = 1703 getSymbolID(SemaResult, Recorder->CCSema->getSourceManager())) { 1704 auto I = IndexResults.find(SymID); 1705 if (I != IndexResults.end()) { 1706 UsedIndexResults.insert(&*I); 1707 return &*I; 1708 } 1709 } 1710 return nullptr; 1711 }; 1712 // Emit all Sema results, merging them with Index results if possible. 1713 for (auto &SemaResult : SemaResults) 1714 AddToBundles(&SemaResult, CorrespondingIndexResult(SemaResult), nullptr); 1715 // Now emit any Index-only results. 1716 for (const auto &IndexResult : IndexResults) { 1717 if (UsedIndexResults.count(&IndexResult)) 1718 continue; 1719 AddToBundles(/*SemaResult=*/nullptr, &IndexResult, nullptr); 1720 } 1721 // Emit identifier results. 1722 for (const auto &Ident : IdentifierResults) 1723 AddToBundles(/*SemaResult=*/nullptr, /*IndexResult=*/nullptr, &Ident); 1724 // We only keep the best N results at any time, in "native" format. 1725 TopN<ScoredBundle, ScoredBundleGreater> Top( 1726 Opts.Limit == 0 ? std::numeric_limits<size_t>::max() : Opts.Limit); 1727 for (auto &Bundle : Bundles) 1728 addCandidate(Top, std::move(Bundle)); 1729 return std::move(Top).items(); 1730 } 1731 1732 llvm::Optional<float> fuzzyScore(const CompletionCandidate &C) { 1733 // Macros can be very spammy, so we only support prefix completion. 1734 if (((C.SemaResult && 1735 C.SemaResult->Kind == CodeCompletionResult::RK_Macro) || 1736 (C.IndexResult && 1737 C.IndexResult->SymInfo.Kind == index::SymbolKind::Macro)) && 1738 !C.Name.startswith_insensitive(Filter->pattern())) 1739 return None; 1740 return Filter->match(C.Name); 1741 } 1742 1743 CodeCompletion::Scores 1744 evaluateCompletion(const SymbolQualitySignals &Quality, 1745 const SymbolRelevanceSignals &Relevance) { 1746 using RM = CodeCompleteOptions::CodeCompletionRankingModel; 1747 CodeCompletion::Scores Scores; 1748 switch (Opts.RankingModel) { 1749 case RM::Heuristics: 1750 Scores.Quality = Quality.evaluateHeuristics(); 1751 Scores.Relevance = Relevance.evaluateHeuristics(); 1752 Scores.Total = 1753 evaluateSymbolAndRelevance(Scores.Quality, Scores.Relevance); 1754 // NameMatch is in fact a multiplier on total score, so rescoring is 1755 // sound. 1756 Scores.ExcludingName = 1757 Relevance.NameMatch > std::numeric_limits<float>::epsilon() 1758 ? Scores.Total / Relevance.NameMatch 1759 : Scores.Quality; 1760 return Scores; 1761 1762 case RM::DecisionForest: 1763 DecisionForestScores DFScores = Opts.DecisionForestScorer( 1764 Quality, Relevance, Opts.DecisionForestBase); 1765 Scores.ExcludingName = DFScores.ExcludingName; 1766 Scores.Total = DFScores.Total; 1767 return Scores; 1768 } 1769 llvm_unreachable("Unhandled CodeCompletion ranking model."); 1770 } 1771 1772 // Scores a candidate and adds it to the TopN structure. 1773 void addCandidate(TopN<ScoredBundle, ScoredBundleGreater> &Candidates, 1774 CompletionCandidate::Bundle Bundle) { 1775 SymbolQualitySignals Quality; 1776 SymbolRelevanceSignals Relevance; 1777 Relevance.Context = CCContextKind; 1778 Relevance.Name = Bundle.front().Name; 1779 Relevance.FilterLength = HeuristicPrefix.Name.size(); 1780 Relevance.Query = SymbolRelevanceSignals::CodeComplete; 1781 Relevance.FileProximityMatch = FileProximity.getPointer(); 1782 if (ScopeProximity) 1783 Relevance.ScopeProximityMatch = ScopeProximity.getPointer(); 1784 if (PreferredType) 1785 Relevance.HadContextType = true; 1786 Relevance.ContextWords = &ContextWords; 1787 Relevance.MainFileSignals = Opts.MainFileSignals; 1788 1789 auto &First = Bundle.front(); 1790 if (auto FuzzyScore = fuzzyScore(First)) 1791 Relevance.NameMatch = *FuzzyScore; 1792 else 1793 return; 1794 SymbolOrigin Origin = SymbolOrigin::Unknown; 1795 bool FromIndex = false; 1796 for (const auto &Candidate : Bundle) { 1797 if (Candidate.IndexResult) { 1798 Quality.merge(*Candidate.IndexResult); 1799 Relevance.merge(*Candidate.IndexResult); 1800 Origin |= Candidate.IndexResult->Origin; 1801 FromIndex = true; 1802 if (!Candidate.IndexResult->Type.empty()) 1803 Relevance.HadSymbolType |= true; 1804 if (PreferredType && 1805 PreferredType->raw() == Candidate.IndexResult->Type) { 1806 Relevance.TypeMatchesPreferred = true; 1807 } 1808 } 1809 if (Candidate.SemaResult) { 1810 Quality.merge(*Candidate.SemaResult); 1811 Relevance.merge(*Candidate.SemaResult); 1812 if (PreferredType) { 1813 if (auto CompletionType = OpaqueType::fromCompletionResult( 1814 Recorder->CCSema->getASTContext(), *Candidate.SemaResult)) { 1815 Relevance.HadSymbolType |= true; 1816 if (PreferredType == CompletionType) 1817 Relevance.TypeMatchesPreferred = true; 1818 } 1819 } 1820 Origin |= SymbolOrigin::AST; 1821 } 1822 if (Candidate.IdentifierResult) { 1823 Quality.References = Candidate.IdentifierResult->References; 1824 Relevance.Scope = SymbolRelevanceSignals::FileScope; 1825 Origin |= SymbolOrigin::Identifier; 1826 } 1827 } 1828 1829 CodeCompletion::Scores Scores = evaluateCompletion(Quality, Relevance); 1830 if (Opts.RecordCCResult) 1831 Opts.RecordCCResult(toCodeCompletion(Bundle), Quality, Relevance, 1832 Scores.Total); 1833 1834 dlog("CodeComplete: {0} ({1}) = {2}\n{3}{4}\n", First.Name, 1835 llvm::to_string(Origin), Scores.Total, llvm::to_string(Quality), 1836 llvm::to_string(Relevance)); 1837 1838 NSema += bool(Origin & SymbolOrigin::AST); 1839 NIndex += FromIndex; 1840 NSemaAndIndex += bool(Origin & SymbolOrigin::AST) && FromIndex; 1841 NIdent += bool(Origin & SymbolOrigin::Identifier); 1842 if (Candidates.push({std::move(Bundle), Scores})) 1843 Incomplete = true; 1844 } 1845 1846 CodeCompletion toCodeCompletion(const CompletionCandidate::Bundle &Bundle) { 1847 llvm::Optional<CodeCompletionBuilder> Builder; 1848 for (const auto &Item : Bundle) { 1849 CodeCompletionString *SemaCCS = 1850 Item.SemaResult ? Recorder->codeCompletionString(*Item.SemaResult) 1851 : nullptr; 1852 if (!Builder) 1853 Builder.emplace(Recorder ? &Recorder->CCSema->getASTContext() : nullptr, 1854 Item, SemaCCS, QueryScopes, *Inserter, FileName, 1855 CCContextKind, Opts, IsUsingDeclaration, NextTokenKind); 1856 else 1857 Builder->add(Item, SemaCCS); 1858 } 1859 return Builder->build(); 1860 } 1861 }; 1862 1863 } // namespace 1864 1865 clang::CodeCompleteOptions CodeCompleteOptions::getClangCompleteOpts() const { 1866 clang::CodeCompleteOptions Result; 1867 Result.IncludeCodePatterns = EnableSnippets; 1868 Result.IncludeMacros = true; 1869 Result.IncludeGlobals = true; 1870 // We choose to include full comments and not do doxygen parsing in 1871 // completion. 1872 // FIXME: ideally, we should support doxygen in some form, e.g. do markdown 1873 // formatting of the comments. 1874 Result.IncludeBriefComments = false; 1875 1876 // When an is used, Sema is responsible for completing the main file, 1877 // the index can provide results from the preamble. 1878 // Tell Sema not to deserialize the preamble to look for results. 1879 Result.LoadExternal = !Index; 1880 Result.IncludeFixIts = IncludeFixIts; 1881 1882 return Result; 1883 } 1884 1885 CompletionPrefix guessCompletionPrefix(llvm::StringRef Content, 1886 unsigned Offset) { 1887 assert(Offset <= Content.size()); 1888 StringRef Rest = Content.take_front(Offset); 1889 CompletionPrefix Result; 1890 1891 // Consume the unqualified name. We only handle ASCII characters. 1892 // isAsciiIdentifierContinue will let us match "0invalid", but we don't mind. 1893 while (!Rest.empty() && isAsciiIdentifierContinue(Rest.back())) 1894 Rest = Rest.drop_back(); 1895 Result.Name = Content.slice(Rest.size(), Offset); 1896 1897 // Consume qualifiers. 1898 while (Rest.consume_back("::") && !Rest.endswith(":")) // reject :::: 1899 while (!Rest.empty() && isAsciiIdentifierContinue(Rest.back())) 1900 Rest = Rest.drop_back(); 1901 Result.Qualifier = 1902 Content.slice(Rest.size(), Result.Name.begin() - Content.begin()); 1903 1904 return Result; 1905 } 1906 1907 // Code complete the argument name on "/*" inside function call. 1908 // Offset should be pointing to the start of the comment, i.e.: 1909 // foo(^/*, rather than foo(/*^) where the cursor probably is. 1910 CodeCompleteResult codeCompleteComment(PathRef FileName, unsigned Offset, 1911 llvm::StringRef Prefix, 1912 const PreambleData *Preamble, 1913 const ParseInputs &ParseInput) { 1914 if (Preamble == nullptr) // Can't run without Sema. 1915 return CodeCompleteResult(); 1916 1917 clang::CodeCompleteOptions Options; 1918 Options.IncludeGlobals = false; 1919 Options.IncludeMacros = false; 1920 Options.IncludeCodePatterns = false; 1921 Options.IncludeBriefComments = false; 1922 std::set<std::string> ParamNames; 1923 // We want to see signatures coming from newly introduced includes, hence a 1924 // full patch. 1925 semaCodeComplete( 1926 std::make_unique<ParamNameCollector>(Options, ParamNames), Options, 1927 {FileName, Offset, *Preamble, 1928 PreamblePatch::createFullPatch(FileName, ParseInput, *Preamble), 1929 ParseInput}); 1930 if (ParamNames.empty()) 1931 return CodeCompleteResult(); 1932 1933 CodeCompleteResult Result; 1934 Result.Context = CodeCompletionContext::CCC_NaturalLanguage; 1935 for (llvm::StringRef Name : ParamNames) { 1936 if (!Name.startswith(Prefix)) 1937 continue; 1938 CodeCompletion Item; 1939 Item.Name = Name.str() + "="; 1940 Item.Kind = CompletionItemKind::Text; 1941 Result.Completions.push_back(Item); 1942 } 1943 1944 return Result; 1945 } 1946 1947 // If Offset is inside what looks like argument comment (e.g. 1948 // "/*^" or "/* foo^"), returns new offset pointing to the start of the /* 1949 // (place where semaCodeComplete should run). 1950 llvm::Optional<unsigned> 1951 maybeFunctionArgumentCommentStart(llvm::StringRef Content) { 1952 while (!Content.empty() && isAsciiIdentifierContinue(Content.back())) 1953 Content = Content.drop_back(); 1954 Content = Content.rtrim(); 1955 if (Content.endswith("/*")) 1956 return Content.size() - 2; 1957 return None; 1958 } 1959 1960 CodeCompleteResult codeComplete(PathRef FileName, Position Pos, 1961 const PreambleData *Preamble, 1962 const ParseInputs &ParseInput, 1963 CodeCompleteOptions Opts, 1964 SpeculativeFuzzyFind *SpecFuzzyFind) { 1965 auto Offset = positionToOffset(ParseInput.Contents, Pos); 1966 if (!Offset) { 1967 elog("Code completion position was invalid {0}", Offset.takeError()); 1968 return CodeCompleteResult(); 1969 } 1970 1971 auto Content = llvm::StringRef(ParseInput.Contents).take_front(*Offset); 1972 if (auto OffsetBeforeComment = maybeFunctionArgumentCommentStart(Content)) { 1973 // We are doing code completion of a comment, where we currently only 1974 // support completing param names in function calls. To do this, we 1975 // require information from Sema, but Sema's comment completion stops at 1976 // parsing, so we must move back the position before running it, extract 1977 // information we need and construct completion items ourselves. 1978 auto CommentPrefix = Content.substr(*OffsetBeforeComment + 2).trim(); 1979 return codeCompleteComment(FileName, *OffsetBeforeComment, CommentPrefix, 1980 Preamble, ParseInput); 1981 } 1982 1983 auto Flow = CodeCompleteFlow( 1984 FileName, Preamble ? Preamble->Includes : IncludeStructure(), 1985 SpecFuzzyFind, Opts); 1986 return (!Preamble || Opts.RunParser == CodeCompleteOptions::NeverParse) 1987 ? std::move(Flow).runWithoutSema(ParseInput.Contents, *Offset, 1988 *ParseInput.TFS) 1989 : std::move(Flow).run({FileName, *Offset, *Preamble, 1990 /*PreamblePatch=*/ 1991 PreamblePatch::createMacroPatch( 1992 FileName, ParseInput, *Preamble), 1993 ParseInput}); 1994 } 1995 1996 SignatureHelp signatureHelp(PathRef FileName, Position Pos, 1997 const PreambleData &Preamble, 1998 const ParseInputs &ParseInput) { 1999 auto Offset = positionToOffset(ParseInput.Contents, Pos); 2000 if (!Offset) { 2001 elog("Signature help position was invalid {0}", Offset.takeError()); 2002 return SignatureHelp(); 2003 } 2004 SignatureHelp Result; 2005 clang::CodeCompleteOptions Options; 2006 Options.IncludeGlobals = false; 2007 Options.IncludeMacros = false; 2008 Options.IncludeCodePatterns = false; 2009 Options.IncludeBriefComments = false; 2010 semaCodeComplete( 2011 std::make_unique<SignatureHelpCollector>(Options, ParseInput.Index, 2012 Result), 2013 Options, 2014 {FileName, *Offset, Preamble, 2015 PreamblePatch::createFullPatch(FileName, ParseInput, Preamble), 2016 ParseInput}); 2017 return Result; 2018 } 2019 2020 bool isIndexedForCodeCompletion(const NamedDecl &ND, ASTContext &ASTCtx) { 2021 auto InTopLevelScope = [](const NamedDecl &ND) { 2022 switch (ND.getDeclContext()->getDeclKind()) { 2023 case Decl::TranslationUnit: 2024 case Decl::Namespace: 2025 case Decl::LinkageSpec: 2026 return true; 2027 default: 2028 break; 2029 }; 2030 return false; 2031 }; 2032 // We only complete symbol's name, which is the same as the name of the 2033 // *primary* template in case of template specializations. 2034 if (isExplicitTemplateSpecialization(&ND)) 2035 return false; 2036 2037 // Category decls are not useful on their own outside the interface or 2038 // implementation blocks. Moreover, sema already provides completion for 2039 // these, even if it requires preamble deserialization. So by excluding them 2040 // from the index, we reduce the noise in all the other completion scopes. 2041 if (llvm::isa<ObjCCategoryDecl>(&ND) || llvm::isa<ObjCCategoryImplDecl>(&ND)) 2042 return false; 2043 2044 if (InTopLevelScope(ND)) 2045 return true; 2046 2047 if (const auto *EnumDecl = dyn_cast<clang::EnumDecl>(ND.getDeclContext())) 2048 return InTopLevelScope(*EnumDecl) && !EnumDecl->isScoped(); 2049 2050 return false; 2051 } 2052 2053 // FIXME: find a home for this (that can depend on both markup and Protocol). 2054 static MarkupContent renderDoc(const markup::Document &Doc, MarkupKind Kind) { 2055 MarkupContent Result; 2056 Result.kind = Kind; 2057 switch (Kind) { 2058 case MarkupKind::PlainText: 2059 Result.value.append(Doc.asPlainText()); 2060 break; 2061 case MarkupKind::Markdown: 2062 Result.value.append(Doc.asMarkdown()); 2063 break; 2064 } 2065 return Result; 2066 } 2067 2068 CompletionItem CodeCompletion::render(const CodeCompleteOptions &Opts) const { 2069 CompletionItem LSP; 2070 const auto *InsertInclude = Includes.empty() ? nullptr : &Includes[0]; 2071 LSP.label = ((InsertInclude && InsertInclude->Insertion) 2072 ? Opts.IncludeIndicator.Insert 2073 : Opts.IncludeIndicator.NoInsert) + 2074 (Opts.ShowOrigins ? "[" + llvm::to_string(Origin) + "]" : "") + 2075 RequiredQualifier + Name + Signature; 2076 2077 LSP.kind = Kind; 2078 LSP.detail = BundleSize > 1 2079 ? std::string(llvm::formatv("[{0} overloads]", BundleSize)) 2080 : ReturnType; 2081 LSP.deprecated = Deprecated; 2082 // Combine header information and documentation in LSP `documentation` field. 2083 // This is not quite right semantically, but tends to display well in editors. 2084 if (InsertInclude || Documentation) { 2085 markup::Document Doc; 2086 if (InsertInclude) 2087 Doc.addParagraph().appendText("From ").appendCode(InsertInclude->Header); 2088 if (Documentation) 2089 Doc.append(*Documentation); 2090 LSP.documentation = renderDoc(Doc, Opts.DocumentationFormat); 2091 } 2092 LSP.sortText = sortText(Score.Total, Name); 2093 LSP.filterText = Name; 2094 LSP.textEdit = {CompletionTokenRange, RequiredQualifier + Name}; 2095 // Merge continuous additionalTextEdits into main edit. The main motivation 2096 // behind this is to help LSP clients, it seems most of them are confused when 2097 // they are provided with additionalTextEdits that are consecutive to main 2098 // edit. 2099 // Note that we store additional text edits from back to front in a line. That 2100 // is mainly to help LSP clients again, so that changes do not effect each 2101 // other. 2102 for (const auto &FixIt : FixIts) { 2103 if (FixIt.range.end == LSP.textEdit->range.start) { 2104 LSP.textEdit->newText = FixIt.newText + LSP.textEdit->newText; 2105 LSP.textEdit->range.start = FixIt.range.start; 2106 } else { 2107 LSP.additionalTextEdits.push_back(FixIt); 2108 } 2109 } 2110 if (Opts.EnableSnippets) 2111 LSP.textEdit->newText += SnippetSuffix; 2112 2113 // FIXME(kadircet): Do not even fill insertText after making sure textEdit is 2114 // compatible with most of the editors. 2115 LSP.insertText = LSP.textEdit->newText; 2116 LSP.insertTextFormat = Opts.EnableSnippets ? InsertTextFormat::Snippet 2117 : InsertTextFormat::PlainText; 2118 if (InsertInclude && InsertInclude->Insertion) 2119 LSP.additionalTextEdits.push_back(*InsertInclude->Insertion); 2120 2121 LSP.score = Score.ExcludingName; 2122 2123 return LSP; 2124 } 2125 2126 llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const CodeCompletion &C) { 2127 // For now just lean on CompletionItem. 2128 return OS << C.render(CodeCompleteOptions()); 2129 } 2130 2131 llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, 2132 const CodeCompleteResult &R) { 2133 OS << "CodeCompleteResult: " << R.Completions.size() << (R.HasMore ? "+" : "") 2134 << " (" << getCompletionKindString(R.Context) << ")" 2135 << " items:\n"; 2136 for (const auto &C : R.Completions) 2137 OS << C << "\n"; 2138 return OS; 2139 } 2140 2141 // Heuristically detect whether the `Line` is an unterminated include filename. 2142 bool isIncludeFile(llvm::StringRef Line) { 2143 Line = Line.ltrim(); 2144 if (!Line.consume_front("#")) 2145 return false; 2146 Line = Line.ltrim(); 2147 if (!(Line.consume_front("include_next") || Line.consume_front("include") || 2148 Line.consume_front("import"))) 2149 return false; 2150 Line = Line.ltrim(); 2151 if (Line.consume_front("<")) 2152 return Line.count('>') == 0; 2153 if (Line.consume_front("\"")) 2154 return Line.count('"') == 0; 2155 return false; 2156 } 2157 2158 bool allowImplicitCompletion(llvm::StringRef Content, unsigned Offset) { 2159 // Look at last line before completion point only. 2160 Content = Content.take_front(Offset); 2161 auto Pos = Content.rfind('\n'); 2162 if (Pos != llvm::StringRef::npos) 2163 Content = Content.substr(Pos + 1); 2164 2165 // Complete after scope operators. 2166 if (Content.endswith(".") || Content.endswith("->") || 2167 Content.endswith("::") || Content.endswith("/*")) 2168 return true; 2169 // Complete after `#include <` and #include `<foo/`. 2170 if ((Content.endswith("<") || Content.endswith("\"") || 2171 Content.endswith("/")) && 2172 isIncludeFile(Content)) 2173 return true; 2174 2175 // Complete words. Give non-ascii characters the benefit of the doubt. 2176 return !Content.empty() && (isAsciiIdentifierContinue(Content.back()) || 2177 !llvm::isASCII(Content.back())); 2178 } 2179 2180 } // namespace clangd 2181 } // namespace clang 2182