/* * Copyright 2000-2017 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.jetbrains.plugins.groovy.lang.psi.impl.statements.blocks; import com.intellij.lang.ASTNode; import com.intellij.psi.*; import com.intellij.psi.scope.ElementClassHint; import com.intellij.psi.scope.PsiScopeProcessor; import com.intellij.psi.tree.IElementType; import com.intellij.psi.util.CachedValueProvider; import com.intellij.psi.util.CachedValuesManager; import com.intellij.psi.util.PsiModificationTracker; import com.intellij.psi.util.PsiTreeUtil; import com.intellij.util.Function; import com.intellij.util.IncorrectOperationException; import com.intellij.util.NullableFunction; import groovy.lang.Closure; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import org.jetbrains.plugins.groovy.lang.lexer.GroovyTokenTypes; import org.jetbrains.plugins.groovy.lang.psi.GroovyElementVisitor; import org.jetbrains.plugins.groovy.lang.psi.GroovyFile; import org.jetbrains.plugins.groovy.lang.psi.GroovyPsiElement; import org.jetbrains.plugins.groovy.lang.psi.api.statements.blocks.GrClosableBlock; import org.jetbrains.plugins.groovy.lang.psi.api.statements.expressions.GrExpression; import org.jetbrains.plugins.groovy.lang.psi.api.statements.expressions.literals.GrStringInjection; import org.jetbrains.plugins.groovy.lang.psi.api.statements.params.GrParameter; import org.jetbrains.plugins.groovy.lang.psi.api.statements.params.GrParameterList; import org.jetbrains.plugins.groovy.lang.psi.api.statements.typedef.GrTypeDefinition; import org.jetbrains.plugins.groovy.lang.psi.dataFlow.types.TypeInferenceHelper; import org.jetbrains.plugins.groovy.lang.psi.impl.*; import org.jetbrains.plugins.groovy.lang.psi.impl.statements.expressions.TypesUtil; import org.jetbrains.plugins.groovy.lang.psi.impl.statements.params.GrParameterListImpl; import org.jetbrains.plugins.groovy.lang.psi.impl.synthetic.ClosureSyntheticParameter; import org.jetbrains.plugins.groovy.lang.psi.impl.synthetic.GrLightVariable; import org.jetbrains.plugins.groovy.lang.psi.util.GroovyCommonClassNames; import org.jetbrains.plugins.groovy.lang.resolve.MethodTypeInferencer; import org.jetbrains.plugins.groovy.lang.resolve.ResolveUtil; import org.jetbrains.plugins.groovy.lang.resolve.delegatesTo.DelegatesToInfo; import org.jetbrains.plugins.groovy.lang.resolve.delegatesTo.GrDelegatesToUtilKt; import org.jetbrains.plugins.groovy.lang.resolve.processors.ClassHint; /** * @author ilyas */ public class GrClosableBlockImpl extends GrBlockImpl implements GrClosableBlock { private volatile GrParameter[] mySyntheticItParameter; public GrClosableBlockImpl(@NotNull IElementType type, CharSequence buffer) { super(type, buffer); } @Override public void accept(GroovyElementVisitor visitor) { visitor.visitClosure(this); } @Override public void clearCaches() { super.clearCaches(); mySyntheticItParameter = null; } @Override public boolean processClosureDeclarations(@NotNull final PsiScopeProcessor plainProcessor, @NotNull final ResolveState state, @Nullable final PsiElement lastParent, @NotNull final PsiElement place) { if (!processDeclarations(plainProcessor, state, lastParent, place)) return false; if (!processOwnerAndDelegate(plainProcessor, state, place)) return false; return true; } @Override public boolean processDeclarations(@NotNull final PsiScopeProcessor processor, @NotNull final ResolveState state, @Nullable final PsiElement lastParent, @NotNull final PsiElement place) { if (lastParent == null) return true; if (!super.processDeclarations(processor, state, lastParent, place)) return false; if (!processParameters(processor, state, place)) return false; if (ResolveUtil.shouldProcessProperties(processor.getHint(ElementClassHint.KEY)) && !ResolveUtil.processElement(processor, getOwner(), state)) return false; if (!processClosureClassMembers(processor, state, lastParent, place)) return false; return true; } private boolean processOwnerAndDelegate(@NotNull PsiScopeProcessor processor, @NotNull ResolveState state, @NotNull PsiElement place) { Boolean result = processDelegatesTo(processor, state, place); if (result != null) return result.booleanValue(); if (!processOwner(processor, state, place)) return false; return true; } @Nullable private Boolean processDelegatesTo(@NotNull PsiScopeProcessor processor, @NotNull ResolveState state, @NotNull PsiElement place) { DelegatesToInfo info = GrDelegatesToUtilKt.getDelegatesToInfo(this); if (info == null) { return null; } switch (info.getStrategy()) { case Closure.OWNER_FIRST: if (!processOwner(processor, state, place)) return false; if (!processDelegate(processor, state, place, info.getTypeToDelegate())) return false; return true; case Closure.DELEGATE_FIRST: if (!processDelegate(processor, state, place, info.getTypeToDelegate())) return false; if (!processOwner(processor, state, place)) return false; return true; case Closure.OWNER_ONLY: if (!processOwner(processor, state, place)) return false; return true; case Closure.DELEGATE_ONLY: if (!processDelegate(processor, state, place, info.getTypeToDelegate())) return false; return true; case Closure.TO_SELF: return true; default: return null; } } private boolean processDelegate(@NotNull PsiScopeProcessor processor, @NotNull ResolveState state, @NotNull PsiElement place, @Nullable final PsiType classToDelegate) { if (classToDelegate == null) return true; return ResolveUtil.processAllDeclarations(classToDelegate, processor, state.put(ClassHint.RESOLVE_CONTEXT, this), place); } private boolean processClosureClassMembers(@NotNull PsiScopeProcessor processor, @NotNull ResolveState state, @Nullable PsiElement lastParent, @NotNull PsiElement place) { final PsiClass closureClass = JavaPsiFacade.getInstance(getProject()).findClass(GroovyCommonClassNames.GROOVY_LANG_CLOSURE, getResolveScope()); if (closureClass == null) return true; return ResolveUtil.processClassDeclarations(closureClass, processor, state.put(ClassHint.RESOLVE_CONTEXT, this), lastParent, place); } private boolean processParameters(@NotNull PsiScopeProcessor processor, @NotNull ResolveState state, @NotNull PsiElement place) { if (!ResolveUtil.shouldProcessProperties(processor.getHint(ElementClassHint.KEY))) return true; if (hasParametersSection()) { for (GrParameter parameter : getParameters()) { if (!ResolveUtil.processElement(processor, parameter, state)) return false; } } else if (!isItAlreadyDeclared(place)) { GrParameter[] synth = getSyntheticItParameter(); if (synth.length > 0) { if (!ResolveUtil.processElement(processor, synth[0], state.put(ClassHint.RESOLVE_CONTEXT, this))) return false; } } return true; } private boolean processOwner(@NotNull PsiScopeProcessor processor, @NotNull ResolveState state, @NotNull PsiElement place) { final PsiElement parent = getParent(); if (parent == null) return true; if (!ResolveUtil.processStaticImports(processor, getContainingFile(), state, place)) return false; return ResolveUtil.treeWalkUp(parent, place, processor, state); } private boolean isItAlreadyDeclared(@Nullable PsiElement place) { while (place != this && place != null) { if (place instanceof GrClosableBlock && !((GrClosableBlock)place).hasParametersSection() && !(place.getParent() instanceof GrStringInjection)) { return true; } place = place.getParent(); } return false; } public String toString() { return "Closable block"; } @Override public GrParameter[] getParameters() { if (hasParametersSection()) { GrParameterListImpl parameterList = getParameterList(); return parameterList.getParameters(); } return GrParameter.EMPTY_ARRAY; } @Override public GrParameter[] getAllParameters() { if (getParent() instanceof GrStringInjection) return GrParameter.EMPTY_ARRAY; if (hasParametersSection()) return getParameters(); return getSyntheticItParameter(); } @Override @Nullable public PsiElement getArrow() { return findPsiChildByType(GroovyTokenTypes.mCLOSABLE_BLOCK_OP); } @Override public boolean isVarArgs() { return PsiImplUtil.isVarArgs(getParameters()); } @Override @NotNull public GrParameterListImpl getParameterList() { final GrParameterListImpl childByClass = findChildByClass(GrParameterListImpl.class); assert childByClass != null; return childByClass; } @Override public GrParameter addParameter(GrParameter parameter) { GrParameterList parameterList = getParameterList(); if (getArrow() == null) { final GrParameterList newParamList = (GrParameterList)addAfter(parameterList, getLBrace()); parameterList.delete(); ASTNode next = newParamList.getNode().getTreeNext(); getNode().addLeaf(GroovyTokenTypes.mCLOSABLE_BLOCK_OP, "->", next); return (GrParameter)newParamList.add(parameter); } return (GrParameter)parameterList.add(parameter); } @Override public boolean hasParametersSection() { return getArrow() != null; } @Override public PsiType getType() { return GrClosureType.create(this, true); } @Override @Nullable public PsiType getNominalType() { return getType(); } public GrParameter[] getSyntheticItParameter() { if (getParent() instanceof GrStringInjection) { return GrParameter.EMPTY_ARRAY; } GrParameter[] res = mySyntheticItParameter; if (res == null) { res = new GrParameter[]{new ClosureSyntheticParameter(this)}; synchronized (this) { if (mySyntheticItParameter == null) { mySyntheticItParameter = res; } } } return res; } private PsiVariable getOwner() { return CachedValuesManager.getCachedValue(this, () -> { final GroovyPsiElement context = PsiTreeUtil.getParentOfType(this, GrTypeDefinition.class, GrClosableBlock.class, GroovyFile.class); final PsiElementFactory factory = JavaPsiFacade.getInstance(getProject()).getElementFactory(); PsiType type = null; if (context instanceof GrTypeDefinition) { type = factory.createType((PsiClass)context); } else if (context instanceof GrClosableBlock) { type = GrClosureType.create((GrClosableBlock)context, true); } else if (context instanceof GroovyFile) { final PsiClass scriptClass = ((GroovyFile)context).getScriptClass(); if (scriptClass != null && GroovyNamesUtil.isIdentifier(scriptClass.getName())) type = factory.createType(scriptClass); } if (type == null) { type = TypesUtil.getJavaLangObject(this); } PsiVariable owner = new GrLightVariable(getManager(), OWNER_NAME, type, this); return CachedValueProvider.Result.create(owner, PsiModificationTracker.MODIFICATION_COUNT); }); } @Override public GrExpression replaceWithExpression(@NotNull GrExpression newExpr, boolean removeUnnecessaryParentheses) { return PsiImplUtil.replaceExpression(this, newExpr, removeUnnecessaryParentheses); } private static final Function<GrClosableBlock, PsiType> ourTypesCalculator = (NullableFunction<GrClosableBlock, PsiType>)block -> GroovyPsiManager.inferType(block, new MethodTypeInferencer(block)); @Override @Nullable public PsiType getReturnType() { return TypeInferenceHelper.getCurrentContext().getExpressionType(this, ourTypesCalculator); } @Override public void removeStatement() throws IncorrectOperationException { GroovyPsiElementImpl.removeStatement(this); } @Override public boolean isTopControlFlowOwner() { return !(getParent() instanceof GrStringInjection); } }