1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
|
//===--- TypeContextInfo.cpp ----------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2019 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
#include "swift/IDE/TypeContextInfo.h"
#include "ExprContextAnalysis.h"
#include "swift/AST/GenericEnvironment.h"
#include "swift/AST/NameLookup.h"
#include "swift/AST/USRGeneration.h"
#include "swift/IDE/TypeCheckCompletionCallback.h"
#include "swift/Parse/IDEInspectionCallbacks.h"
#include "swift/Sema/ConstraintSystem.h"
#include "swift/Sema/IDETypeChecking.h"
#include "clang/AST/Attr.h"
#include "clang/AST/Decl.h"
#include "llvm/ADT/SmallSet.h"
using namespace swift;
using namespace ide;
class ContextInfoCallbacks : public CodeCompletionCallbacks,
public DoneParsingCallback {
TypeContextInfoConsumer &Consumer;
SourceLoc Loc;
Expr *ParsedExpr = nullptr;
DeclContext *CurDeclContext = nullptr;
void getImplicitMembers(Type T, SmallVectorImpl<ValueDecl *> &Result);
public:
ContextInfoCallbacks(Parser &P, TypeContextInfoConsumer &Consumer)
: CodeCompletionCallbacks(P), DoneParsingCallback(), Consumer(Consumer) {}
void completePostfixExprBeginning(CodeCompletionExpr *E) override;
void completeForEachSequenceBeginning(CodeCompletionExpr *E) override;
void completeCaseStmtBeginning(CodeCompletionExpr *E) override;
void completeCallArg(CodeCompletionExpr *E) override;
void completeReturnStmt(CodeCompletionExpr *E) override;
void completeThenStmt(CodeCompletionExpr *E) override;
void completeYieldStmt(CodeCompletionExpr *E,
std::optional<unsigned> yieldIndex) override;
void completeUnresolvedMember(CodeCompletionExpr *E,
SourceLoc DotLoc) override;
void doneParsing(SourceFile *SrcFile) override;
};
void ContextInfoCallbacks::completePostfixExprBeginning(CodeCompletionExpr *E) {
CurDeclContext = P.CurDeclContext;
ParsedExpr = E;
}
void ContextInfoCallbacks::completeForEachSequenceBeginning(
CodeCompletionExpr *E) {
CurDeclContext = P.CurDeclContext;
ParsedExpr = E;
}
void ContextInfoCallbacks::completeCallArg(CodeCompletionExpr *E) {
CurDeclContext = P.CurDeclContext;
ParsedExpr = E;
}
void ContextInfoCallbacks::completeReturnStmt(CodeCompletionExpr *E) {
CurDeclContext = P.CurDeclContext;
ParsedExpr = E;
}
void ContextInfoCallbacks::completeThenStmt(CodeCompletionExpr *E) {
CurDeclContext = P.CurDeclContext;
ParsedExpr = E;
}
void ContextInfoCallbacks::completeYieldStmt(
CodeCompletionExpr *E, std::optional<unsigned> yieldIndex) {
CurDeclContext = P.CurDeclContext;
ParsedExpr = E;
}
void ContextInfoCallbacks::completeUnresolvedMember(CodeCompletionExpr *E,
SourceLoc DotLoc) {
CurDeclContext = P.CurDeclContext;
ParsedExpr = E;
}
void ContextInfoCallbacks::completeCaseStmtBeginning(CodeCompletionExpr *E) {
// TODO: Implement?
}
class TypeContextInfoCallback : public TypeCheckCompletionCallback {
Expr *ParsedExpr;
SmallVector<Type, 2> Types;
void sawSolutionImpl(const constraints::Solution &S) override {
if (!S.hasType(ParsedExpr)) {
return;
}
if (Type T = getTypeForCompletion(S, ParsedExpr)) {
Types.push_back(T);
}
}
public:
TypeContextInfoCallback(Expr *ParsedExpr) : ParsedExpr(ParsedExpr) {}
ArrayRef<Type> getTypes() const { return Types; }
};
void ContextInfoCallbacks::doneParsing(SourceFile *SrcFile) {
if (!ParsedExpr)
return;
TypeContextInfoCallback TypeCheckCallback(ParsedExpr);
{
llvm::SaveAndRestore<TypeCheckCompletionCallback *> CompletionCollector(
Context.CompletionCallback, &TypeCheckCallback);
typeCheckContextAt(
TypeCheckASTNodeAtLocContext::declContext(CurDeclContext),
ParsedExpr->getLoc());
}
llvm::SmallSet<CanType, 2> seenTypes;
SmallVector<TypeContextInfoItem, 2> results;
for (auto T : TypeCheckCallback.getTypes()) {
if (T->is<ErrorType>() || T->is<UnresolvedType>())
continue;
T = T->getRValueType();
auto interfaceTy = T;
if (interfaceTy->hasArchetype())
interfaceTy = interfaceTy->mapTypeOutOfContext();
// TODO: Do we need '.none' for Optionals?
auto objTy = T->lookThroughAllOptionalTypes();
if (!seenTypes.insert(objTy->getCanonicalType()).second)
continue;
results.emplace_back(interfaceTy);
auto &item = results.back();
getImplicitMembers(objTy, item.ImplicitMembers);
}
Consumer.handleResults(results);
}
void ContextInfoCallbacks::getImplicitMembers(
Type T, SmallVectorImpl<ValueDecl *> &Result) {
if (!T->mayHaveMembers())
return;
class LocalConsumer : public VisibleDeclConsumer {
DeclContext *DC;
ModuleDecl *CurModule;
Type T;
SmallVectorImpl<ValueDecl *> &Result;
bool canBeImplictMember(ValueDecl *VD) {
if (VD->isOperator())
return false;
// Enum element decls can always be referenced by implicit member
// expression.
if (isa<EnumElementDecl>(VD))
return true;
// Static properties which is convertible to 'Self'.
if (auto *Var = dyn_cast<VarDecl>(VD)) {
if (Var->isStatic()) {
auto declTy = T->getTypeOfMember(CurModule, Var);
if (declTy->isEqual(T) ||
swift::isConvertibleTo(declTy, T, /*openArchetypes=*/true, *DC))
return true;
}
}
return false;
}
public:
LocalConsumer(DeclContext *DC, Type T, SmallVectorImpl<ValueDecl *> &Result)
: DC(DC), CurModule(DC->getParentModule()), T(T), Result(Result) {}
void foundDecl(ValueDecl *VD, DeclVisibilityKind Reason,
DynamicLookupInfo) override {
if (canBeImplictMember(VD) && !VD->shouldHideFromEditor())
Result.push_back(VD);
}
} LocalConsumer(CurDeclContext, T, Result);
lookupVisibleMemberDecls(LocalConsumer, MetatypeType::get(T),
Loc, CurDeclContext,
/*includeInstanceMembers=*/false,
/*includeDerivedRequirements*/false,
/*includeProtocolExtensionMembers*/true);
}
IDEInspectionCallbacksFactory *swift::ide::makeTypeContextInfoCallbacksFactory(
TypeContextInfoConsumer &Consumer) {
// CC callback factory which produces 'ContextInfoCallbacks'.
class ContextInfoCallbacksFactoryImpl
: public IDEInspectionCallbacksFactory {
TypeContextInfoConsumer &Consumer;
public:
ContextInfoCallbacksFactoryImpl(TypeContextInfoConsumer &Consumer)
: Consumer(Consumer) {}
Callbacks createCallbacks(Parser &P) override {
auto Callbacks = std::make_shared<ContextInfoCallbacks>(P, Consumer);
return {Callbacks, Callbacks};
}
};
return new ContextInfoCallbacksFactoryImpl(Consumer);
}
|