blob: adae76ee8374bff4d92d0f0a9232933c41293c26 [file] [log] [blame]
/*
* Copyright 2000-2014 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.refactoring;
import com.intellij.lang.refactoring.RefactoringSupportProvider;
import com.intellij.psi.PsiElement;
import com.intellij.psi.PsiFile;
import com.intellij.psi.search.LocalSearchScope;
import com.intellij.psi.search.PsiSearchHelper;
import com.intellij.psi.search.SearchScope;
import com.intellij.psi.util.PsiTreeUtil;
import com.intellij.refactoring.RefactoringActionHandler;
import com.intellij.refactoring.changeSignature.ChangeSignatureHandler;
import com.intellij.refactoring.memberPullUp.JavaPullUpHandler;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.jetbrains.plugins.groovy.lang.psi.GrReferenceElement;
import org.jetbrains.plugins.groovy.lang.psi.api.GroovyResolveResult;
import org.jetbrains.plugins.groovy.lang.psi.api.statements.GrField;
import org.jetbrains.plugins.groovy.lang.psi.api.statements.GrLabeledStatement;
import org.jetbrains.plugins.groovy.lang.psi.api.statements.typedef.GrTypeDefinition;
import org.jetbrains.plugins.groovy.lang.psi.api.statements.typedef.members.GrMember;
import org.jetbrains.plugins.groovy.lang.psi.api.statements.typedef.members.GrMethod;
import org.jetbrains.plugins.groovy.lang.psi.api.toplevel.imports.GrImportStatement;
import org.jetbrains.plugins.groovy.refactoring.changeSignature.GrChangeSignatureHandler;
import org.jetbrains.plugins.groovy.refactoring.extract.method.GroovyExtractMethodHandler;
import org.jetbrains.plugins.groovy.refactoring.introduce.constant.GrIntroduceConstantHandler;
import org.jetbrains.plugins.groovy.refactoring.introduce.field.GrIntroduceFieldHandler;
import org.jetbrains.plugins.groovy.refactoring.introduce.parameter.GrIntroduceParameterHandler;
import org.jetbrains.plugins.groovy.refactoring.introduce.variable.GrIntroduceVariableHandler;
/**
* @author ilyas
*/
public class GroovyRefactoringSupportProvider extends RefactoringSupportProvider {
public static final GroovyRefactoringSupportProvider INSTANCE = new GroovyRefactoringSupportProvider();
@Override
public boolean isSafeDeleteAvailable(@NotNull PsiElement element) {
return element instanceof GrTypeDefinition ||
element instanceof GrField ||
element instanceof GrMethod;
}
/**
* @return handler for introducing local variables in Groovy
*/
@Override
@Nullable
public RefactoringActionHandler getIntroduceVariableHandler() {
return new GrIntroduceVariableHandler();
}
@Override
@Nullable
public RefactoringActionHandler getExtractMethodHandler() {
return new GroovyExtractMethodHandler();
}
@Override
public ChangeSignatureHandler getChangeSignatureHandler() {
return new GrChangeSignatureHandler();
}
@Override
public boolean isInplaceRenameAvailable(@NotNull PsiElement elementToRename, PsiElement nameSuggestionContext) {
//local vars & params renames GrVariableInplaceRenameHandler
if (nameSuggestionContext != null && nameSuggestionContext.getContainingFile() != elementToRename.getContainingFile()) return false;
if (!(elementToRename instanceof GrLabeledStatement)) {
return false;
}
SearchScope useScope = PsiSearchHelper.SERVICE.getInstance(elementToRename.getProject()).getUseScope(elementToRename);
if (!(useScope instanceof LocalSearchScope)) return false;
PsiElement[] scopeElements = ((LocalSearchScope)useScope).getScope();
if (scopeElements.length > 1) {
return false;
}
PsiFile containingFile = elementToRename.getContainingFile();
return PsiTreeUtil.isAncestor(containingFile, scopeElements[0], false);
}
@Override
public boolean isInplaceIntroduceAvailable(@NotNull PsiElement element, PsiElement context) {
if (context == null || context.getContainingFile() != element.getContainingFile()) return false;
return true;
}
@Override
public boolean isMemberInplaceRenameAvailable(@NotNull PsiElement element, @Nullable PsiElement context) {
if (context == null) return false;
PsiElement parent = context.getParent();
//don't try to inplace rename aliased imported references
if (parent instanceof GrReferenceElement) {
GroovyResolveResult result = ((GrReferenceElement)parent).advancedResolve();
PsiElement fileResolveContext = result.getCurrentFileResolveContext();
if (fileResolveContext instanceof GrImportStatement && ((GrImportStatement)fileResolveContext).isAliasedImport()) {
return false;
}
}
return element instanceof GrMember;
}
@Override
public RefactoringActionHandler getIntroduceFieldHandler() {
return new GrIntroduceFieldHandler();
}
@Override
public RefactoringActionHandler getIntroduceParameterHandler() {
return new GrIntroduceParameterHandler();
}
@Override
public RefactoringActionHandler getIntroduceConstantHandler() {
return new GrIntroduceConstantHandler();
}
@Nullable
@Override
public RefactoringActionHandler getPullUpHandler() {
return new JavaPullUpHandler();
}
@Nullable
@Override
public RefactoringActionHandler getExtractInterfaceHandler() {
//return new ExtractInterfaceHandler();
return null;
}
}