/******************************************************************************* * Copyright (c) 2000, 2015 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.wst.jsdt.internal.corext.refactoring.structure; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.HashMap; import java.util.HashSet; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Set; import java.util.StringTokenizer; import org.eclipse.core.runtime.Assert; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.core.runtime.NullProgressMonitor; import org.eclipse.core.runtime.OperationCanceledException; import org.eclipse.core.runtime.SubProgressMonitor; import org.eclipse.ltk.core.refactoring.Change; import org.eclipse.ltk.core.refactoring.RefactoringDescriptor; import org.eclipse.ltk.core.refactoring.RefactoringStatus; import org.eclipse.ltk.core.refactoring.participants.RefactoringArguments; import org.eclipse.text.edits.MultiTextEdit; import org.eclipse.text.edits.TextEditGroup; import org.eclipse.wst.jsdt.core.IField; import org.eclipse.wst.jsdt.core.IFunction; import org.eclipse.wst.jsdt.core.IJavaScriptElement; import org.eclipse.wst.jsdt.core.IJavaScriptProject; import org.eclipse.wst.jsdt.core.IJavaScriptUnit; import org.eclipse.wst.jsdt.core.JavaScriptModelException; import org.eclipse.wst.jsdt.core.dom.AST; import org.eclipse.wst.jsdt.core.dom.ASTNode; import org.eclipse.wst.jsdt.core.dom.Expression; import org.eclipse.wst.jsdt.core.dom.FieldDeclaration; import org.eclipse.wst.jsdt.core.dom.FunctionDeclaration; import org.eclipse.wst.jsdt.core.dom.IBinding; import org.eclipse.wst.jsdt.core.dom.IFunctionBinding; import org.eclipse.wst.jsdt.core.dom.ITypeBinding; import org.eclipse.wst.jsdt.core.dom.IVariableBinding; import org.eclipse.wst.jsdt.core.dom.JavaScriptUnit; import org.eclipse.wst.jsdt.core.dom.QualifiedName; import org.eclipse.wst.jsdt.core.dom.SimpleName; import org.eclipse.wst.jsdt.core.dom.SingleVariableDeclaration; import org.eclipse.wst.jsdt.core.dom.Type; import org.eclipse.wst.jsdt.core.dom.VariableDeclarationExpression; import org.eclipse.wst.jsdt.core.dom.VariableDeclarationFragment; import org.eclipse.wst.jsdt.core.dom.VariableDeclarationStatement; import org.eclipse.wst.jsdt.core.dom.rewrite.ASTRewrite; import org.eclipse.wst.jsdt.core.dom.rewrite.ImportRewrite; import org.eclipse.wst.jsdt.core.dom.rewrite.TargetSourceRangeComputer; import org.eclipse.wst.jsdt.core.refactoring.IJavaScriptRefactorings; import org.eclipse.wst.jsdt.core.refactoring.descriptors.JavaScriptRefactoringDescriptor; import org.eclipse.wst.jsdt.core.search.IJavaScriptSearchConstants; import org.eclipse.wst.jsdt.core.search.IJavaScriptSearchScope; import org.eclipse.wst.jsdt.core.search.SearchPattern; import org.eclipse.wst.jsdt.internal.corext.codemanipulation.StubUtility; import org.eclipse.wst.jsdt.internal.corext.dom.ASTNodeFactory; import org.eclipse.wst.jsdt.internal.corext.dom.Bindings; import org.eclipse.wst.jsdt.internal.corext.dom.NodeFinder; import org.eclipse.wst.jsdt.internal.corext.refactoring.Checks; import org.eclipse.wst.jsdt.internal.corext.refactoring.CollectingSearchRequestor; import org.eclipse.wst.jsdt.internal.corext.refactoring.JDTRefactoringDescriptor; import org.eclipse.wst.jsdt.internal.corext.refactoring.JDTRefactoringDescriptorComment; import org.eclipse.wst.jsdt.internal.corext.refactoring.JavaRefactoringArguments; import org.eclipse.wst.jsdt.internal.corext.refactoring.RefactoringCoreMessages; import org.eclipse.wst.jsdt.internal.corext.refactoring.RefactoringScopeFactory; import org.eclipse.wst.jsdt.internal.corext.refactoring.RefactoringSearchEngine; import org.eclipse.wst.jsdt.internal.corext.refactoring.SearchResultGroup; import org.eclipse.wst.jsdt.internal.corext.refactoring.changes.CompilationUnitChange; import org.eclipse.wst.jsdt.internal.corext.refactoring.changes.DynamicValidationRefactoringChange; import org.eclipse.wst.jsdt.internal.corext.refactoring.code.ScriptableRefactoring; import org.eclipse.wst.jsdt.internal.corext.refactoring.rename.RippleMethodFinder2; import org.eclipse.wst.jsdt.internal.corext.refactoring.typeconstraints.ASTCreator; import org.eclipse.wst.jsdt.internal.corext.refactoring.typeconstraints.CompositeOrTypeConstraint; import org.eclipse.wst.jsdt.internal.corext.refactoring.typeconstraints.ConstraintCollector; import org.eclipse.wst.jsdt.internal.corext.refactoring.typeconstraints.ConstraintOperator; import org.eclipse.wst.jsdt.internal.corext.refactoring.typeconstraints.ConstraintVariable; import org.eclipse.wst.jsdt.internal.corext.refactoring.typeconstraints.ConstraintVariableFactory; import org.eclipse.wst.jsdt.internal.corext.refactoring.typeconstraints.ExpressionVariable; import org.eclipse.wst.jsdt.internal.corext.refactoring.typeconstraints.FullConstraintCreator; import org.eclipse.wst.jsdt.internal.corext.refactoring.typeconstraints.ITypeConstraint; import org.eclipse.wst.jsdt.internal.corext.refactoring.typeconstraints.ParameterTypeVariable; import org.eclipse.wst.jsdt.internal.corext.refactoring.typeconstraints.ReturnTypeVariable; import org.eclipse.wst.jsdt.internal.corext.refactoring.typeconstraints.SimpleTypeConstraint; import org.eclipse.wst.jsdt.internal.corext.refactoring.typeconstraints.TypeConstraintFactory; import org.eclipse.wst.jsdt.internal.corext.refactoring.typeconstraints.TypeVariable; import org.eclipse.wst.jsdt.internal.corext.refactoring.util.RefactoringASTParser; import org.eclipse.wst.jsdt.internal.corext.refactoring.util.ResourceUtil; import org.eclipse.wst.jsdt.internal.corext.util.Messages; import org.eclipse.wst.jsdt.internal.corext.util.SearchUtils; import org.eclipse.wst.jsdt.internal.ui.JavaScriptPlugin; import org.eclipse.wst.jsdt.internal.ui.viewsupport.BindingLabelProvider; import org.eclipse.wst.jsdt.ui.JavaScriptElementLabels; /** * @author tip */ public class ChangeTypeRefactoring extends ScriptableRefactoring { private static final String ATTRIBUTE_TYPE= "type"; //$NON-NLS-1$ private final Map/*<IJavaScriptUnit, Collection<ITypeConstraint>>*/ fConstraintCache; /** * Offset of the selected text area. */ private int fSelectionStart; /** * Length of the selected text area. */ private int fSelectionLength; /** * Offset of the effective selection */ private int fEffectiveSelectionStart; /** * Length of the effective selection */ private int fEffectiveSelectionLength; /** * IJavaScriptUnit containing the selection. */ private IJavaScriptUnit fCu; /** * If the selection corresponds to a method parameter/return type, this field stores * a reference to its IFunctionBinding, otherwise this field remains null. Used during * search for references in other CUs, and for determining the ConstraintVariable * that corresponds to the selection */ private IFunctionBinding fMethodBinding; /** * If the selection corresponds to a method parameter, this field stores the parameter * index (0 = first parameter for static methods, 0 = this for nonstatic methods). The * value -1 is stored in the field if the selection corresponds to a method return type. */ private int fParamIndex; /** * The name of the selected parameter, or <code>null</code>. */ private String fParamName; /** * If the selection corresponds to a field, this field stores a reference to its IVariableBinding, * otherwise this field remains null. Used during search for references in other CUs. */ private IVariableBinding fFieldBinding; /** * The compilation units that contain constraint variables related to the selection */ private IJavaScriptUnit[] fAffectedUnits; /** * The constraint variables that are of interest to this refactoring. This includes * the constraint var. corresponding to the text selection, and possibly additional * elements due to method overriding, method calls, etc. */ private Collection/*<ConstraintVariable>*/ fRelevantVars; /** * The set of types (other than the original type) that can be given to * the selected ASTNode. */ private final Collection/*<IType>*/ fValidTypes; /** * The type constraints that are related to the selected ASTNode. */ private Collection/*<ITypeConstraint>*/ fRelevantConstraints; /** * All type constraints in affected compilation units. */ private Collection/*<ITypeConstraint>*/ fAllConstraints; /** * The name of the new type of the selected declaration. */ private String fSelectedTypeName; /** * The new type of the selected declaration. */ private ITypeBinding fSelectedType; /** * Organizes SearchResults by JavaScriptUnit */ private Map/*<IJavaScriptUnit,SearchResultGroup>*/ fCuToSearchResultGroup= new HashMap(); /** * ITypeBinding for java.lang.Object */ private ITypeBinding fObject; public ITypeBinding getObject(){ return fObject; } /** * Control debugging output. */ private static final boolean DEBUG= false; private ConstraintVariable fCv; private IBinding fSelectionBinding; private ITypeBinding fSelectionTypeBinding; private ConstraintCollector fCollector; public ChangeTypeRefactoring(IJavaScriptUnit cu, int selectionStart, int selectionLength) { this(cu, selectionStart, selectionLength, null); } /** * Constructor for ChangeTypeRefactoring (invoked from tests only) */ public ChangeTypeRefactoring(IJavaScriptUnit cu, int selectionStart, int selectionLength, String selectedType) { Assert.isTrue(selectionStart >= 0); Assert.isTrue(selectionLength >= 0); fSelectionStart= selectionStart; fSelectionLength= selectionLength; fEffectiveSelectionStart= selectionStart; fEffectiveSelectionLength= selectionLength; fCu= cu; if (selectedType != null) fSelectedTypeName= selectedType; fConstraintCache= new HashMap(); fValidTypes= new HashSet(); } // ------------------------------------------------------------------------------------------------- // /* * @see org.eclipse.wst.jsdt.internal.corext.refactoring.base.Refactoring#checkActivation(org.eclipse.core.runtime.IProgressMonitor) */ public RefactoringStatus checkInitialConditions(IProgressMonitor pm) throws CoreException { if (fCu == null || !fCu.isStructureKnown()) return RefactoringStatus.createFatalErrorStatus(RefactoringCoreMessages.ChangeTypeRefactoring_invalidSelection); return checkSelection(new SubProgressMonitor(pm, 1)); } private void setSelectionRanges(Expression exp){ fEffectiveSelectionStart= exp.getStartPosition(); fEffectiveSelectionLength= exp.getLength(); fSelectionBinding= ExpressionVariable.resolveBinding(exp); setOriginalType(exp.resolveTypeBinding()); } /** * Check if the right type of AST Node is selected. Create the TypeHierarchy needed to * bring up the wizard. */ private RefactoringStatus checkSelection(IProgressMonitor pm) throws JavaScriptModelException { try { pm.beginTask("", 5); //$NON-NLS-1$ ASTNode node= getTargetNode(fCu, fSelectionStart, fSelectionLength); if (DEBUG) { System.out.println( "selection: [" //$NON-NLS-1$ + fSelectionStart + "," //$NON-NLS-1$ + (fSelectionStart + fSelectionLength) + "] in " //$NON-NLS-1$ + fCu.getElementName()); System.out.println("node= " + node + ", type= " + node.getClass().getName()); //$NON-NLS-1$ //$NON-NLS-2$ } TypeConstraintFactory typeConstraintFactory = new TypeConstraintFactory(){ public boolean filter(ConstraintVariable v1, ConstraintVariable v2, ConstraintOperator o){ if (o.isStrictSubtypeOperator()) //TODO: explain why these can be excluded return true; //Don't create constraint if fSelectionTypeBinding is not involved: if (v1.getBinding() != null && v2.getBinding() != null && ! Bindings.equals(v1.getBinding(), fSelectionTypeBinding) && ! Bindings.equals(v2.getBinding(), fSelectionTypeBinding)) { if (PRINT_STATS) fNrFiltered++; return true; } return super.filter(v1, v2, o); } }; fCollector= new ConstraintCollector(new FullConstraintCreator(new ConstraintVariableFactory(), typeConstraintFactory)); String selectionValid= determineSelection(node); if (selectionValid != null){ if (DEBUG){ System.out.println("invalid selection: " + selectionValid); //$NON-NLS-1$ } return RefactoringStatus.createFatalErrorStatus(selectionValid); } if (fMethodBinding != null) { IFunction selectedMethod= (IFunction) fMethodBinding.getJavaElement(); if (selectedMethod == null){ return RefactoringStatus.createFatalErrorStatus(RefactoringCoreMessages.ChangeTypeRefactoring_insideLocalTypesNotSupported); } } pm.worked(1); RefactoringStatus result= new RefactoringStatus(); if (DEBUG){ System.out.println("fSelectionTypeBinding: " + fSelectionTypeBinding.getName()); //$NON-NLS-1$ } // produce error message if array or primitive type is selected if (fSelectionTypeBinding.isArray()){ return RefactoringStatus.createFatalErrorStatus(RefactoringCoreMessages.ChangeTypeRefactoring_arraysNotSupported); } if (fSelectionTypeBinding.isPrimitive()){ return RefactoringStatus.createFatalErrorStatus(RefactoringCoreMessages.ChangeTypeRefactoring_primitivesNotSupported); } if (checkOverriddenBinaryMethods()) return RefactoringStatus.createFatalErrorStatus(RefactoringCoreMessages.ChangeTypeRefactoring_notSupportedOnBinary); if (fSelectionTypeBinding.isLocal()){ return RefactoringStatus.createFatalErrorStatus(RefactoringCoreMessages.ChangeTypeRefactoring_localTypesNotSupported); } if (fFieldBinding != null && fFieldBinding.getDeclaringClass().isLocal()){ return RefactoringStatus.createFatalErrorStatus(RefactoringCoreMessages.ChangeTypeRefactoring_insideLocalTypesNotSupported); } pm.worked(1); if (fSelectedType != null){ // if invoked from unit test, compute valid types here computeValidTypes(new NullProgressMonitor()); } return result; } finally { pm.done(); } } private boolean checkOverriddenBinaryMethods() throws JavaScriptModelException { if (fMethodBinding != null){ Set declaringSupertypes= getDeclaringSuperTypes(fMethodBinding); for (Iterator iter= declaringSupertypes.iterator(); iter.hasNext();) { ITypeBinding superType= (ITypeBinding) iter.next(); IFunctionBinding overriddenMethod= findMethod(fMethodBinding, superType); Assert.isNotNull(overriddenMethod);//because we asked for declaring types IFunction iMethod= (IFunction) overriddenMethod.getJavaElement(); if (iMethod.isBinary()){ return true; } } } return false; } // copied from FullConstraintCreator private static IFunctionBinding findMethod(IFunctionBinding methodBinding, ITypeBinding type) { if (methodBinding.getDeclaringClass().equals(type)) return methodBinding; return Bindings.findOverriddenMethodInType(type, methodBinding); } // copied from FullConstraintCreator private static Set getDeclaringSuperTypes(IFunctionBinding methodBinding) { ITypeBinding[] allSuperTypes= Bindings.getAllSuperTypes(methodBinding.getDeclaringClass()); Set result= new HashSet(); for (int i= 0; i < allSuperTypes.length; i++) { ITypeBinding type= allSuperTypes[i]; if (findMethod(methodBinding, type) != null) result.add(type); } return result; } /** * Do the actual work of computing allowable types. Invoked by the wizard when * "compute" button is pressed */ public Collection/*<IType>*/ computeValidTypes(IProgressMonitor pm) { pm.beginTask(RefactoringCoreMessages.ChangeTypeRefactoring_checking_preconditions, 100); try { fCv= findConstraintVariableForSelectedNode(new SubProgressMonitor(pm, 3)); if (DEBUG) System.out.println("selected CV: " + fCv + //$NON-NLS-1$ " (" + fCv.getClass().getName() + //$NON-NLS-1$ ")"); //$NON-NLS-1$ if (pm.isCanceled()) throw new OperationCanceledException(); fRelevantVars= findRelevantConstraintVars(fCv, new SubProgressMonitor(pm, 50)); if (DEBUG) printCollection("relevant vars:", fRelevantVars); //$NON-NLS-1$ if (pm.isCanceled()) throw new OperationCanceledException(); fRelevantConstraints= findRelevantConstraints(fRelevantVars, new SubProgressMonitor(pm, 30)); if (pm.isCanceled()) throw new OperationCanceledException(); fValidTypes.addAll(computeValidTypes(fSelectionTypeBinding, fRelevantVars, fRelevantConstraints, new SubProgressMonitor(pm, 20))); if (DEBUG) printCollection("valid types:", getValidTypeNames()); //$NON-NLS-1$ } catch (CoreException e) { JavaScriptPlugin.logErrorMessage("Error occurred during computation of valid types: " + e.toString()); //$NON-NLS-1$ fValidTypes.clear(); // error occurred during computation of valid types } pm.done(); return fValidTypes; } /* * @see org.eclipse.wst.jsdt.internal.corext.refactoring.base.Refactoring#checkInput(org.eclipse.core.runtime.IProgressMonitor) */ public RefactoringStatus checkFinalConditions(IProgressMonitor pm) throws CoreException { pm.beginTask(RefactoringCoreMessages.ChangeTypeRefactoring_checking_preconditions, 1); RefactoringStatus result= Checks.validateModifiesFiles( ResourceUtil.getFiles(fAffectedUnits), getValidationContext()); pm.done(); return result; } // TODO: do sanity check somewhere if the refactoring changes any files. /* * @see org.eclipse.wst.jsdt.internal.corext.refactoring.base.IRefactoring#createChange(org.eclipse.core.runtime.IProgressMonitor) */ public Change createChange(IProgressMonitor pm) throws CoreException { pm.beginTask(RefactoringCoreMessages.ChangeTypeMessages_CreateChangesForChangeType, 1); try { Map/* <IJavaScriptUnit,Set<ConstraintVariable>> */relevantVarsByUnit= new HashMap/* <IJavaScriptUnit,HashSet<ConstraintVariable>> */(); groupChangesByCompilationUnit(relevantVarsByUnit); final Map arguments= new HashMap(); String project= null; IJavaScriptProject javaProject= fCu.getJavaScriptProject(); if (javaProject != null) project= javaProject.getElementName(); final String description= RefactoringCoreMessages.ChangeTypeRefactoring_descriptor_description_short; final String header= Messages.format(RefactoringCoreMessages.ChangeTypeRefactoring_descriptor_description, new String[] { BindingLabelProvider.getBindingLabel(fSelectionBinding, JavaScriptElementLabels.ALL_FULLY_QUALIFIED), BindingLabelProvider.getBindingLabel(fSelectedType, JavaScriptElementLabels.ALL_FULLY_QUALIFIED)}); final JDTRefactoringDescriptorComment comment= new JDTRefactoringDescriptorComment(project, this, header); comment.addSetting(Messages.format(RefactoringCoreMessages.ChangeTypeRefactoring_original_element_pattern, BindingLabelProvider.getBindingLabel(fSelectionBinding, JavaScriptElementLabels.ALL_FULLY_QUALIFIED))); comment.addSetting(Messages.format(RefactoringCoreMessages.ChangeTypeRefactoring_original_type_pattern, BindingLabelProvider.getBindingLabel(getOriginalType(), JavaScriptElementLabels.ALL_FULLY_QUALIFIED))); comment.addSetting(Messages.format(RefactoringCoreMessages.ChangeTypeRefactoring_refactored_type_pattern, BindingLabelProvider.getBindingLabel(fSelectedType, JavaScriptElementLabels.ALL_FULLY_QUALIFIED))); final JDTRefactoringDescriptor descriptor= new JDTRefactoringDescriptor(IJavaScriptRefactorings.GENERALIZE_TYPE, project, description, comment.asString(), arguments, (RefactoringDescriptor.STRUCTURAL_CHANGE | JavaScriptRefactoringDescriptor.JAR_REFACTORING | JavaScriptRefactoringDescriptor.JAR_SOURCE_ATTACHMENT)); arguments.put(JDTRefactoringDescriptor.ATTRIBUTE_INPUT, descriptor.elementToHandle(fCu)); arguments.put(JDTRefactoringDescriptor.ATTRIBUTE_SELECTION, Integer.valueOf(fSelectionStart).toString() + " " + Integer.valueOf(fSelectionLength).toString()); //$NON-NLS-1$ arguments.put(ATTRIBUTE_TYPE, fSelectedType.getQualifiedName()); final DynamicValidationRefactoringChange result= new DynamicValidationRefactoringChange(descriptor, RefactoringCoreMessages.ChangeTypeRefactoring_allChanges); for (Iterator/* <IJavaScriptUnit> */it= relevantVarsByUnit.keySet().iterator(); it.hasNext();) { IJavaScriptUnit icu= (IJavaScriptUnit) it.next(); Set/* <ConstraintVariable> */cVars= (Set) relevantVarsByUnit.get(icu); CompilationUnitChange cuChange= new CompilationUnitChange(getName(), icu); addAllChangesFor(icu, cVars, cuChange); result.add(cuChange); pm.worked(1); if (pm.isCanceled()) throw new OperationCanceledException(); } return result; } finally { pm.done(); } } /** * Apply all changes related to a single IJavaScriptUnit */ private void addAllChangesFor(IJavaScriptUnit icu, Set vars, CompilationUnitChange unitChange) throws CoreException { JavaScriptUnit unit= new RefactoringASTParser(AST.JLS3).parse(icu, false); ASTRewrite unitRewriter= ASTRewrite.create(unit.getAST()); MultiTextEdit root= new MultiTextEdit(); unitChange.setEdit(root); // Adam sez don't need this, but then unitChange.addGroupDescription() fails an assertion! String typeName= updateImports(unit, root); updateCu(unit, vars, unitChange, unitRewriter, typeName); root.addChild(unitRewriter.rewriteAST()); } private class SourceRangeComputer extends TargetSourceRangeComputer { public SourceRange computeSourceRange(ASTNode node) { return new SourceRange(node.getStartPosition(),node.getLength()); } } private void updateCu(JavaScriptUnit unit, Set vars, CompilationUnitChange unitChange, ASTRewrite unitRewriter, String typeName) throws JavaScriptModelException { // use custom SourceRangeComputer to avoid losing comments unitRewriter.setTargetSourceRangeComputer(new SourceRangeComputer()); for (Iterator it=vars.iterator(); it.hasNext(); ){ ConstraintVariable cv = (ConstraintVariable)it.next(); ASTNode decl= findDeclaration(unit, cv); if ((decl instanceof SimpleName || decl instanceof QualifiedName) && cv instanceof ExpressionVariable) { ASTNode gp= decl.getParent().getParent(); updateType(unit, getType(gp), unitChange, unitRewriter, typeName); // local variable or parameter } else if (decl instanceof FunctionDeclaration || decl instanceof FieldDeclaration) { updateType(unit, getType(decl), unitChange, unitRewriter, typeName); // method return or field type } } } private void updateType(JavaScriptUnit cu, Type oldType, CompilationUnitChange unitChange, ASTRewrite unitRewriter, String typeName) { String oldName= fSelectionTypeBinding.getName(); String description= Messages.format(RefactoringCoreMessages.ChangeTypeRefactoring_typeChange, new String[] {oldName, typeName}); TextEditGroup gd= new TextEditGroup(description); AST ast= cu.getAST(); ASTNode nodeToReplace= oldType; //TODO handle types other than simple & parameterized (e.g., arrays) Assert.isTrue(fSelectedType.isClass()); Type newType= ast.newSimpleType(ASTNodeFactory.newName(ast, typeName)); unitRewriter.replace(nodeToReplace, newType, gd); unitChange.addTextEditGroup(gd); } private void groupChangesByCompilationUnit(Map relevantVarsByUnit) throws JavaScriptModelException { for (Iterator it= fRelevantVars.iterator(); it.hasNext();) { ConstraintVariable cv= (ConstraintVariable) it.next(); if (!(cv instanceof ExpressionVariable) && !(cv instanceof ReturnTypeVariable)){ continue; } IJavaScriptUnit icu = null; if (cv instanceof ExpressionVariable) { ExpressionVariable ev = (ExpressionVariable)cv; icu = ev.getCompilationUnitRange().getCompilationUnit(); } else if (cv instanceof ReturnTypeVariable){ ReturnTypeVariable rtv = (ReturnTypeVariable)cv; IFunctionBinding mb= rtv.getMethodBinding(); icu= ((IFunction) mb.getJavaElement()).getJavaScriptUnit(); } if (!relevantVarsByUnit.containsKey(icu)){ relevantVarsByUnit.put(icu, new HashSet/*<ConstraintVariable>*/()); } ((Set)relevantVarsByUnit.get(icu)).add(cv); } } private ASTNode findDeclaration(JavaScriptUnit root, ConstraintVariable cv) throws JavaScriptModelException { if (fFieldBinding != null){ IField f= (IField) fFieldBinding.getJavaElement(); return ASTNodeSearchUtil.getFieldDeclarationNode(f, root); } if (cv instanceof ExpressionVariable){ for (Iterator iter= fAllConstraints.iterator(); iter.hasNext();) { ITypeConstraint constraint= (ITypeConstraint) iter.next(); if (constraint.isSimpleTypeConstraint()){ SimpleTypeConstraint stc= (SimpleTypeConstraint)constraint; if (stc.isDefinesConstraint() && stc.getLeft().equals(cv)){ ConstraintVariable right= stc.getRight(); if (right instanceof TypeVariable){ TypeVariable typeVariable= (TypeVariable)right; return NodeFinder.perform(root, typeVariable.getCompilationUnitRange().getSourceRange()); } } } } } else if (cv instanceof ReturnTypeVariable) { ReturnTypeVariable rtv= (ReturnTypeVariable) cv; IFunctionBinding mb= rtv.getMethodBinding(); IFunction im= (IFunction) mb.getJavaElement(); return ASTNodeSearchUtil.getMethodDeclarationNode(im, root); } return null; } private static Type getType(ASTNode node) { switch(node.getNodeType()){ case ASTNode.SINGLE_VARIABLE_DECLARATION: return ((SingleVariableDeclaration) node).getType(); case ASTNode.FIELD_DECLARATION: return ((FieldDeclaration) node).getType(); case ASTNode.VARIABLE_DECLARATION_STATEMENT: return ((VariableDeclarationStatement) node).getType(); case ASTNode.FUNCTION_DECLARATION: return ((FunctionDeclaration)node).getReturnType2(); default: Assert.isTrue(false); return null; } } /* * @see org.eclipse.wst.jsdt.internal.corext.refactoring.base.IRefactoring#getName() */ public String getName() { return RefactoringCoreMessages.ChangeTypeRefactoring_name; } // ------------------------------------------------------------------------------------------------- // // Method for examining if a suitable kind of ASTNode was selected. Information about this node and // its parents in the AST are stored in fields fBinding, theMethod, and theField /** * Determines what kind of ASTNode has been selected. A non-null String containing an error message * is returned if the ChangeTypeRefactoring refactoring cannot be applied to the selected ASTNode. * A return value of null indicates a valid selection. */ private String determineSelection(ASTNode node) { if (node == null) { return RefactoringCoreMessages.ChangeTypeRefactoring_invalidSelection; } else { if (DEBUG) System.out.println("node nodeType= " + node.getClass().getName()); //$NON-NLS-1$ if (DEBUG) System.out.println("parent nodeType= " + node.getParent().getClass().getName()); //$NON-NLS-1$ if (DEBUG) System.out.println("GrandParent nodeType= " + node.getParent().getParent().getClass().getName()); //$NON-NLS-1$ ASTNode parent= node.getParent(); ASTNode grandParent= parent.getParent(); if (grandParent == null) return nodeTypeNotSupported(); // adjustment needed if part of a qualified name is selected ASTNode current= null; if (node.getNodeType() == ASTNode.QUALIFIED_NAME){ current= node; while (current.getNodeType() == ASTNode.QUALIFIED_NAME){ current= current.getParent(); } if (current.getNodeType() != ASTNode.SIMPLE_TYPE){ return nodeTypeNotSupported(); } node= current.getParent(); } else if (parent.getNodeType() == ASTNode.QUALIFIED_NAME){ current= parent; while (current.getNodeType() == ASTNode.QUALIFIED_NAME){ current= current.getParent(); } if (current.getNodeType() != ASTNode.SIMPLE_TYPE){ return nodeTypeNotSupported(); } node= current.getParent(); } fObject= node.getAST().resolveWellKnownType("java.lang.Object"); //$NON-NLS-1$ switch (node.getNodeType()) { case ASTNode.SIMPLE_NAME : return simpleNameSelected((SimpleName)node); case ASTNode.VARIABLE_DECLARATION_STATEMENT : return variableDeclarationStatementSelected((VariableDeclarationStatement) node); case ASTNode.FIELD_DECLARATION : return fieldDeclarationSelected((FieldDeclaration) node); case ASTNode.SINGLE_VARIABLE_DECLARATION : return singleVariableDeclarationSelected((SingleVariableDeclaration) node); default : return nodeTypeNotSupported(); } } } /** * The selection corresponds to an ASTNode on which "ChangeTypeRefactoring" is not defined. */ private static String nodeTypeNotSupported() { return RefactoringCoreMessages.ChangeTypeRefactoring_notSupportedOnNodeType; } /** * The selection corresponds to a SingleVariableDeclaration */ private String singleVariableDeclarationSelected(SingleVariableDeclaration svd) { SimpleName name = svd.getName(); setSelectionRanges(name); return simpleNameSelected(name); } /** * The selection corresponds to a VariableDeclarationStatement */ private String variableDeclarationStatementSelected(VariableDeclarationStatement vds) { if (vds.fragments().size() != 1) { return RefactoringCoreMessages.ChangeTypeRefactoring_multiDeclarationsNotSupported; } else { VariableDeclarationFragment elem= (VariableDeclarationFragment) vds.fragments().iterator().next(); SimpleName name= elem.getName(); setSelectionRanges(name); return simpleNameSelected(name); } } /** * The selection corresponds to a FieldDeclaration */ private String fieldDeclarationSelected(FieldDeclaration fieldDeclaration) { if (fieldDeclaration.fragments().size() != 1) { return RefactoringCoreMessages.ChangeTypeRefactoring_multiDeclarationsNotSupported; } else { VariableDeclarationFragment elem= (VariableDeclarationFragment) fieldDeclaration.fragments().iterator().next(); fFieldBinding= elem.resolveBinding(); SimpleName name= elem.getName(); setSelectionRanges(name); return simpleNameSelected(name); } } /** * The selection corresponds to a SimpleName */ private String simpleNameSelected(SimpleName simpleName) { ASTNode parent= simpleName.getParent(); ASTNode grandParent= parent.getParent(); if (parent.getNodeType() == ASTNode.VARIABLE_DECLARATION_STATEMENT){ VariableDeclarationStatement vds= (VariableDeclarationStatement)parent; if (vds.fragments().size() > 1){ return RefactoringCoreMessages.ChangeTypeRefactoring_multiDeclarationsNotSupported; } } else if (parent.getNodeType() == ASTNode.VARIABLE_DECLARATION_FRAGMENT) { if (grandParent.getNodeType() == ASTNode.VARIABLE_DECLARATION_STATEMENT){ VariableDeclarationStatement vds= (VariableDeclarationStatement)grandParent; if (vds.fragments().size() > 1) { return RefactoringCoreMessages.ChangeTypeRefactoring_multiDeclarationsNotSupported; } setSelectionRanges(simpleName); } else if (grandParent.getNodeType() == ASTNode.VARIABLE_DECLARATION_EXPRESSION) { VariableDeclarationExpression vde= (VariableDeclarationExpression)grandParent; if (vde.fragments().size() > 1) { return RefactoringCoreMessages.ChangeTypeRefactoring_multiDeclarationsNotSupported; } setSelectionRanges(simpleName); } else if (grandParent.getNodeType() == ASTNode.FIELD_DECLARATION) { FieldDeclaration fd= (FieldDeclaration)grandParent; if (fd.fragments().size() > 1){ return RefactoringCoreMessages.ChangeTypeRefactoring_multiDeclarationsNotSupported; } VariableDeclarationFragment fragment = (VariableDeclarationFragment)parent; fFieldBinding= fragment.resolveBinding(); setSelectionRanges(fragment.getName()); } else { return RefactoringCoreMessages.ChangeTypeRefactoring_notSupportedOnNodeType; } } else if (parent.getNodeType() == ASTNode.SINGLE_VARIABLE_DECLARATION) { SingleVariableDeclaration singleVariableDeclaration= (SingleVariableDeclaration) parent; if ((grandParent.getNodeType() == ASTNode.FUNCTION_DECLARATION)) { fMethodBinding= ((FunctionDeclaration)grandParent).resolveBinding(); setOriginalType(simpleName.resolveTypeBinding()); fParamIndex= ((FunctionDeclaration)grandParent).parameters().indexOf(parent); fParamName= singleVariableDeclaration.getName().getIdentifier(); } else { setSelectionRanges(singleVariableDeclaration.getName()); } } else if (parent.getNodeType() == ASTNode.SIMPLE_TYPE && (grandParent.getNodeType() == ASTNode.SINGLE_VARIABLE_DECLARATION)) { ASTNode greatGrandParent= grandParent.getParent(); SingleVariableDeclaration singleVariableDeclaration= (SingleVariableDeclaration) grandParent; if (singleVariableDeclaration.getExtraDimensions() > 0) { return RefactoringCoreMessages.ChangeTypeRefactoring_arraysNotSupported; } if (greatGrandParent != null && greatGrandParent.getNodeType() == ASTNode.FUNCTION_DECLARATION) { fMethodBinding= ((FunctionDeclaration)greatGrandParent).resolveBinding(); fParamIndex= ((FunctionDeclaration)greatGrandParent).parameters().indexOf(grandParent); fParamName= singleVariableDeclaration.getName().getIdentifier(); setSelectionRanges(simpleName); } else { setSelectionRanges(singleVariableDeclaration.getName()); } } else if (parent.getNodeType() == ASTNode.SIMPLE_TYPE && grandParent.getNodeType() == ASTNode.FUNCTION_DECLARATION) { fMethodBinding= ((FunctionDeclaration)grandParent).resolveBinding(); setOriginalType(fMethodBinding.getReturnType()); fParamIndex= -1; } else if (parent.getNodeType() == ASTNode.FUNCTION_DECLARATION && grandParent.getNodeType() == ASTNode.TYPE_DECLARATION) { FunctionDeclaration methodDeclaration= (FunctionDeclaration)parent; if (methodDeclaration.getName().equals(simpleName) || methodDeclaration.thrownExceptions().contains(simpleName)){ return RefactoringCoreMessages.ChangeTypeRefactoring_notSupportedOnNodeType; } fMethodBinding= ((FunctionDeclaration)parent).resolveBinding(); fParamIndex= -1; } else if ( parent.getNodeType() == ASTNode.SIMPLE_TYPE && (grandParent.getNodeType() == ASTNode.VARIABLE_DECLARATION_STATEMENT)) { return variableDeclarationStatementSelected((VariableDeclarationStatement) grandParent); } else if (parent.getNodeType() == ASTNode.SIMPLE_TYPE && grandParent.getNodeType() == ASTNode.FIELD_DECLARATION) { return fieldDeclarationSelected((FieldDeclaration) grandParent); } else if (parent.getNodeType() == ASTNode.SIMPLE_TYPE && grandParent.getNodeType() == ASTNode.ARRAY_TYPE){ return RefactoringCoreMessages.ChangeTypeRefactoring_arraysNotSupported; } else if (parent.getNodeType() == ASTNode.QUALIFIED_NAME){ setSelectionRanges(simpleName); } else { return RefactoringCoreMessages.ChangeTypeRefactoring_notSupportedOnNodeType; } return null; } // ------------------------------------------------------------------------------------------------- // // Methods for examining & solving type constraints. This includes: // (1) locating the ConstraintVariable corresponding to the selected ASTNode // (2) finding all ConstraintVariables "related" to (1) via overriding, method calls, field access // (3) find all ITypeConstraints of interest that mention ConstraintVariables in (2) // (4) determining all ITypes for which the ITypeConstraints in (3) are satisfied /** * Find a ConstraintVariable that corresponds to the selected ASTNode. */ private ConstraintVariable findConstraintVariableForSelectedNode(IProgressMonitor pm) { pm.beginTask(RefactoringCoreMessages.ChangeTypeRefactoring_analyzingMessage, 100); IJavaScriptUnit[] cus= { fCu }; // only search in CU containing selection if (DEBUG){ System.out.println("Effective selection: " + fEffectiveSelectionStart + "/" + fEffectiveSelectionLength); //$NON-NLS-1$ //$NON-NLS-2$ } Collection/*<ITypeConstraint>*/ allConstraints= getConstraints(cus, new SubProgressMonitor(pm, 50)); IProgressMonitor subMonitor= new SubProgressMonitor(pm, 50); subMonitor.beginTask(RefactoringCoreMessages.ChangeTypeRefactoring_analyzingMessage, allConstraints.size()); for (Iterator it= allConstraints.iterator(); it.hasNext(); ) { subMonitor.worked(1); ITypeConstraint tc= (ITypeConstraint)it.next(); if (! (tc instanceof SimpleTypeConstraint)) continue; SimpleTypeConstraint stc= (SimpleTypeConstraint) tc; if (matchesSelection(stc.getLeft())) return stc.getLeft(); if (matchesSelection(stc.getRight())) return stc.getRight(); } subMonitor.done(); pm.done(); Assert.isTrue(false, RefactoringCoreMessages.ChangeTypeRefactoring_noMatchingConstraintVariable); return null; } /** * Determine if a given ConstraintVariable matches the selected ASTNode. */ private boolean matchesSelection(ConstraintVariable cv){ if (cv instanceof ExpressionVariable){ ExpressionVariable ev= (ExpressionVariable)cv; return (fSelectionBinding != null && Bindings.equals(fSelectionBinding, ev.getExpressionBinding())); } else if (cv instanceof ParameterTypeVariable){ ParameterTypeVariable ptv = (ParameterTypeVariable)cv; if (fMethodBinding != null && Bindings.equals(ptv.getMethodBinding(), fMethodBinding) && ptv.getParameterIndex() == fParamIndex){ return true; } } else if (cv instanceof ReturnTypeVariable){ ReturnTypeVariable rtv = (ReturnTypeVariable)cv; if (fMethodBinding != null && Bindings.equals(rtv.getMethodBinding(), fMethodBinding) && fParamIndex == -1){ return true; } } return false; } /** * Determine the set of constraint variables related to the selected * expression. In addition to the expression itself, this consists of * any expression that is defines-equal to it, and any expression equal * to it. */ private Collection/*<ConstraintVariable>*/ findRelevantConstraintVars(ConstraintVariable cv, IProgressMonitor pm) throws CoreException { pm.beginTask(RefactoringCoreMessages.ChangeTypeRefactoring_analyzingMessage, 150); Collection/*<ConstraintVariable>*/ result= new HashSet(); result.add(cv); IJavaScriptUnit[] cus= collectAffectedUnits(new SubProgressMonitor(pm, 50)); Collection/*<ITypeConstraint>*/ allConstraints= getConstraints(cus, new SubProgressMonitor(pm, 50)); List/*<ConstraintVariable>*/ workList= new ArrayList(result); while(! workList.isEmpty()){ pm.worked(10); ConstraintVariable first= (ConstraintVariable)workList.remove(0); for (Iterator iter= allConstraints.iterator(); iter.hasNext();) { pm.worked(1); ITypeConstraint typeConstraint= (ITypeConstraint) iter.next(); if (! typeConstraint.isSimpleTypeConstraint()) continue; SimpleTypeConstraint stc= (SimpleTypeConstraint)typeConstraint; if (! stc.isDefinesConstraint() && ! stc.isEqualsConstraint()) continue; ConstraintVariable match= match(first, stc.getLeft(), stc.getRight()); if (match instanceof ExpressionVariable || match instanceof ParameterTypeVariable || match instanceof ReturnTypeVariable){ if (! result.contains(match)){ workList.add(match); result.add(match); } } } } pm.done(); return result; } private static ConstraintVariable match(ConstraintVariable matchee, ConstraintVariable left, ConstraintVariable right) { if (matchee.equals(left)) return right; if (matchee.equals(right)) return left; return null; } /** * Select the type constraints that involve the selected ASTNode. */ private Collection/*<ITypeConstraint>*/ findRelevantConstraints(Collection/*<ConstraintVariable>*/ relevantConstraintVars, IProgressMonitor pm) throws CoreException { IJavaScriptUnit[] cus= collectAffectedUnits(new SubProgressMonitor(pm, 100)); fAllConstraints= getConstraints(cus, new SubProgressMonitor(pm, 900)); pm.beginTask(RefactoringCoreMessages.ChangeTypeRefactoring_analyzingMessage, 1000 + fAllConstraints.size()); if (DEBUG) printCollection("type constraints: ", fAllConstraints); //$NON-NLS-1$ Collection/*<ITypeConstraint>*/ result= new ArrayList(); for (Iterator it= fAllConstraints.iterator(); it.hasNext(); ) { ITypeConstraint tc= (ITypeConstraint)it.next(); if (tc.isSimpleTypeConstraint()) { SimpleTypeConstraint stc= (SimpleTypeConstraint) tc; if (stc.isDefinesConstraint() || stc.isEqualsConstraint()) continue; if (stc.getLeft().equals(stc.getRight())) continue; if (isNull(stc.getLeft())) continue; if (relevantConstraintVars.contains(stc.getLeft()) || relevantConstraintVars.contains(stc.getRight())) result.add(tc); } else { CompositeOrTypeConstraint cotc= (CompositeOrTypeConstraint) tc; ITypeConstraint[] components= cotc.getConstraints(); for (int i= 0; i < components.length; i++) { ITypeConstraint component= components[i]; SimpleTypeConstraint simpleComponent= (SimpleTypeConstraint) component; if (relevantConstraintVars.contains(simpleComponent.getLeft())) result.add(tc); } } pm.worked(1); } if (DEBUG) printCollection("selected constraints: ", result); //$NON-NLS-1$ pm.done(); return result; } /** * Finds the declaration of the ASTNode in a given AST at a specified offset and with a specified length */ private static ASTNode findDeclaration(final ASTNode root, final int start, final int length){ ASTNode node= NodeFinder.perform(root, start, length); Assert.isTrue(node instanceof SimpleName, String.valueOf(node.getNodeType())); Assert.isTrue(root instanceof JavaScriptUnit, String.valueOf(root.getNodeType())); return ((JavaScriptUnit)root).findDeclaringNode(((SimpleName)node).resolveBinding()); } // For debugging static String print(Collection/*<ITypeBinding>*/ types){ if (types.isEmpty()) { return "{ }"; //$NON-NLS-1$ } StringBuilder result = new StringBuilder("{ "); //$NON-NLS-1$ for (Iterator it=types.iterator(); it.hasNext(); ){ ITypeBinding type= (ITypeBinding)it.next(); result.append(type.getQualifiedName()); if (it.hasNext()){ result.append(',').append(' '); } else { result.append(' ').append('}'); } } return result.toString(); } /** * Determines the set of types for which a set of type constraints is satisfied. */ private Collection/*<ITypeBinding>*/ computeValidTypes(ITypeBinding originalType, Collection/*<ConstraintVariable>*/ relevantVars, Collection/*<ITypeConstraint>*/ relevantConstraints, IProgressMonitor pm) throws JavaScriptModelException { Collection/*<ITypeBinding>*/ result= new HashSet(); IJavaScriptProject project= fCu.getJavaScriptProject(); Collection/*<ITypeBinding>*/ allTypes = new HashSet/*<IType>*/(); allTypes.addAll(getAllSuperTypes(originalType)); pm.beginTask(RefactoringCoreMessages.ChangeTypeRefactoring_analyzingMessage, allTypes.size()); for (Iterator/*<ITypeBinding>*/ it= allTypes.iterator(); it.hasNext(); ) { ITypeBinding type= (ITypeBinding)it.next(); if (isValid(project, type, relevantVars, relevantConstraints, new SubProgressMonitor(pm, 1))) { result.add(type); } } // "changing" to the original type is a no-op result.remove(originalType); // TODO: remove all types that are not visible --- need to check visibility in the CUs for // all relevant constraint variables pm.done(); return result; } /** * Determines if a given type satisfies a set of type constraints. */ private boolean isValid(IJavaScriptProject project, ITypeBinding type, Collection/*<ConstraintVariable>*/ relevantVars, Collection/*<ITypeConstraint>*/ constraints, IProgressMonitor pm) throws JavaScriptModelException { pm.beginTask(RefactoringCoreMessages.ChangeTypeRefactoring_analyzingMessage, constraints.size()); for (Iterator it= constraints.iterator(); it.hasNext(); ) { ITypeConstraint tc= (ITypeConstraint)it.next(); if (tc instanceof SimpleTypeConstraint) { if (!(isValidSimpleConstraint(project, type, relevantVars, (SimpleTypeConstraint) tc))) return false; } else if (tc instanceof CompositeOrTypeConstraint) { if (!(isValidOrConstraint(project, type, relevantVars, (CompositeOrTypeConstraint) tc))) return false; } pm.worked(1); } pm.done(); return true; } private boolean isValidSimpleConstraint(IJavaScriptProject project, ITypeBinding type, Collection/*<ConstraintVariable>*/ relevantVars, SimpleTypeConstraint stc) throws JavaScriptModelException{ if (relevantVars.contains(stc.getLeft())) { // upper bound if (!isSubTypeOf(type, findType(stc.getRight()))) { return false; } } return true; } private boolean isValidOrConstraint(IJavaScriptProject project, ITypeBinding type, Collection/*<ConstraintVariable>*/ relevantVars, CompositeOrTypeConstraint cotc) throws JavaScriptModelException{ ITypeConstraint[] components= cotc.getConstraints(); for (int i= 0; i < components.length; i++) { if (components[i] instanceof SimpleTypeConstraint) { SimpleTypeConstraint sc= (SimpleTypeConstraint) components[i]; if (relevantVars.contains(sc.getLeft())) { // upper bound if (isSubTypeOf(type, findType(sc.getRight()))) return true; } else if (relevantVars.contains(sc.getRight())) { // lower bound if (isSubTypeOf(findType(sc.getLeft()), type)) return true; } } } return false; } private ITypeBinding findType(ConstraintVariable cv) { return cv.getBinding(); } /** * Gather constraints associated with a set of compilation units. */ private Collection/*<ITypeConstraint>*/ getConstraints(IJavaScriptUnit[] referringCus, IProgressMonitor pm) { pm.beginTask(RefactoringCoreMessages.ChangeTypeRefactoring_analyzingMessage, referringCus.length); Collection/*<ITypeConstraint>*/ result= new ArrayList(); for (int i= 0; i < referringCus.length; i++) { result.addAll(getConstraints(referringCus[i])); pm.worked(1); if (pm.isCanceled()) throw new OperationCanceledException(); } pm.done(); return result; } private List/*<ITypeConstraint>*/ getConstraints(IJavaScriptUnit unit) { if (fConstraintCache.containsKey(unit)) return (List) fConstraintCache.get(unit); JavaScriptUnit cu= ASTCreator.createAST(unit, null); // only generate type constraints for relevant FunctionDeclaration subtrees if (fMethodBinding != null && fCuToSearchResultGroup.containsKey(unit)){ SearchResultGroup group= (SearchResultGroup) fCuToSearchResultGroup.get(unit); ASTNode[] nodes= ASTNodeSearchUtil.getAstNodes(group.getSearchResults(), cu); for (int i=0; i < nodes.length; i++){ ASTNode node = nodes[i]; if (fMethodBinding != null){ // find FunctionDeclaration above it in the tree ASTNode n= node; while (!(n instanceof FunctionDeclaration)){ n = n.getParent(); } FunctionDeclaration md = (FunctionDeclaration)n; md.accept(fCollector); } } } else { cu.accept(fCollector); } List/*<ITypeConstraint>*/ constraints= Arrays.asList(fCollector.getConstraints()); fConstraintCache.put(unit, constraints); return constraints; } /** * update a JavaScriptUnit's imports after changing the type of declarations */ private String updateImports(JavaScriptUnit astRoot, MultiTextEdit rootEdit) throws CoreException{ ImportRewrite rewrite= StubUtility.createImportRewrite(astRoot, true); String typeName= rewrite.addImport(fSelectedType.getQualifiedName()); rootEdit.addChild(rewrite.rewriteImports(null)); return typeName; } // ------------------------------------------------------------------------------------------------- // // Miscellaneous helper methods /** * Returns the Collection<IType> of types that can be given to the selected declaration. */ public Collection/*<IType>*/ getValidTypes() { return fValidTypes; } public ITypeBinding getOriginalType(){ return fSelectionTypeBinding; } private void setOriginalType(ITypeBinding originalType){ fSelectionTypeBinding= originalType; fSelectedType= findSuperTypeByName(originalType, fSelectedTypeName); } public String getTarget() { String typeName= fSelectionTypeBinding == null ? "" : fSelectionTypeBinding.getName() + " "; //$NON-NLS-1$//$NON-NLS-2$ if (fFieldBinding != null) { return typeName + fFieldBinding.getName(); } else if (fMethodBinding != null) { if (fParamIndex == -1) { return typeName + fMethodBinding.getName() + "(...)"; //$NON-NLS-1$ } else { return typeName + fParamName; } } else if (fSelectionBinding != null) { return typeName + fSelectionBinding.getName(); } else { return typeName; } } /** * Returns the Collection<String> of names of types that can be given to the selected declaration. * (used in tests only) */ public Collection/*<String>*/ getValidTypeNames() { Collection/*<String>*/ typeNames= new ArrayList(); for (Iterator it= fValidTypes.iterator(); it.hasNext();) { ITypeBinding type= (ITypeBinding) it.next(); typeNames.add(type.getQualifiedName()); } return typeNames; } /** * Find the ASTNode for the given source text selection, if it is a type * declaration, or null otherwise. * @param unit The compilation unit in which the selection was made * @param offset * @param length * @return ASTNode */ private ASTNode getTargetNode(IJavaScriptUnit unit, int offset, int length) { JavaScriptUnit root= ASTCreator.createAST(unit, null); ASTNode node= NodeFinder.perform(root, offset, length); return node; } /** * Determines the set of compilation units that may give rise to type constraints that * we are interested in. This involves searching for overriding/overridden methods, * method calls, field accesses. */ private IJavaScriptUnit[] collectAffectedUnits(IProgressMonitor pm) throws CoreException { // BUG: currently, no type constraints are generated for methods that are related // but that do not override each other. As a result, we may miss certain relevant // variables pm.beginTask(RefactoringCoreMessages.ChangeTypeRefactoring_analyzingMessage, 100); if (fAffectedUnits != null) { if (DEBUG) printCollection("affected units: ", Arrays.asList(fAffectedUnits)); //$NON-NLS-1$ pm.worked(100); return fAffectedUnits; } if (fMethodBinding != null) { if (fMethodBinding != null) { IFunction selectedMethod= (IFunction) fMethodBinding.getJavaElement(); if (selectedMethod == null) { // can't happen since we checked it up front in check initial conditions Assert.isTrue(false, RefactoringCoreMessages.ChangeTypeRefactoring_no_method); } // the following code fragment appears to be the source of a memory leak, when // GT is repeatedly applied IFunction root= selectedMethod; // end code fragment IFunction[] rippleMethods= RippleMethodFinder2.getRelatedMethods( root, new SubProgressMonitor(pm, 15), null); SearchPattern pattern= RefactoringSearchEngine.createOrPattern( rippleMethods, IJavaScriptSearchConstants.ALL_OCCURRENCES); // To compute the scope we have to use the selected method. Otherwise we // might start from the wrong project. IJavaScriptSearchScope scope= RefactoringScopeFactory.create(selectedMethod); CollectingSearchRequestor csr= new CollectingSearchRequestor(); SearchResultGroup[] groups= RefactoringSearchEngine.search( pattern, null, scope, csr, new SubProgressMonitor(pm, 80), new RefactoringStatus()); //TODO: deal with errors from non-CU matches fAffectedUnits= getCus(groups); } } else if (fFieldBinding != null) { IField iField= (IField) fFieldBinding.getJavaElement(); if (iField == null) { // can't happen since we checked it up front in check initial conditions Assert.isTrue(false, RefactoringCoreMessages.ChangeTypeRefactoring_no_filed); } SearchPattern pattern= SearchPattern.createPattern( iField, IJavaScriptSearchConstants.ALL_OCCURRENCES, SearchUtils.GENERICS_AGNOSTIC_MATCH_RULE); IJavaScriptSearchScope scope= RefactoringScopeFactory.create(iField); CollectingSearchRequestor csr= new CollectingSearchRequestor(); SearchResultGroup[] groups= RefactoringSearchEngine.search(pattern, null, scope, csr, new SubProgressMonitor(pm, 100), new RefactoringStatus()); //TODO: deal with errors from non-CU matches fAffectedUnits= getCus(groups); } else { // otherwise, selection was a local variable and we only have to search the CU // containing the selection fAffectedUnits= new IJavaScriptUnit[] { fCu }; } if (DEBUG) { System.out.println("Determining affected CUs:"); //$NON-NLS-1$ for (int i= 0; i < fAffectedUnits.length; i++) { System.out.println(" affected CU: " + fAffectedUnits[i].getElementName()); //$NON-NLS-1$ } } pm.done(); return fAffectedUnits; } public void setSelectedType(ITypeBinding type){ fSelectedType= type; } // -------------------------------------------------------------------------------------------- // // TODO The following utility methods should probably be moved to another class /** * Determines if a constraint variable corresponds to the constant "null". */ private static boolean isNull(ConstraintVariable cv) { return cv instanceof ExpressionVariable && ((ExpressionVariable)cv).getExpressionType() == ASTNode.NULL_LITERAL; } /** * For debugging. */ void printCollection(String title, Collection/*<Object>*/ l) { System.out.println(l.size() + " " + title); //$NON-NLS-1$ for (Iterator it= l.iterator(); it.hasNext();) { System.out.println(" " + it.next()); //$NON-NLS-1$ } } /** * Returns the compilation units that contain the search results. */ private IJavaScriptUnit[] getCus(SearchResultGroup[] groups) { List result= new ArrayList(groups.length); for (int i= 0; i < groups.length; i++) { SearchResultGroup group= groups[i]; IJavaScriptUnit cu= group.getCompilationUnit(); if (cu != null) { result.add(cu); fCuToSearchResultGroup.put(cu, group); } } return (IJavaScriptUnit[]) result.toArray(new IJavaScriptUnit[result.size()]); } /** * This always includes the type itself. It will include type * Object for any type other than Object */ public Set/*<ITypeBinding>*/ getAllSuperTypes(ITypeBinding type){ Set/*<ITypeBinding>*/ result= new HashSet(); result.add(type); if (type.getSuperclass() != null){ result.addAll(getAllSuperTypes(type.getSuperclass())); } if ((type != fObject) && !contains(result, fObject)){ result.add(fObject); } return result; } private ITypeBinding findSuperTypeByName(ITypeBinding type, String superTypeName){ Set/*<ITypeBinding>*/ superTypes= getAllSuperTypes(type); for (Iterator/*<ITypeBinding>*/ it= superTypes.iterator(); it.hasNext(); ){ ITypeBinding sup= (ITypeBinding)it.next(); if (sup.getQualifiedName().equals(superTypeName)){ return sup; } } return null; } public boolean isSubTypeOf(ITypeBinding type1, ITypeBinding type2){ Set superTypes= getAllSuperTypes(type1); return contains(superTypes, type2); } private static boolean contains(Collection/*<ITypeBinding>*/ c, ITypeBinding binding){ for (Iterator/*<ITypeBinding>*/ it=c.iterator(); it.hasNext(); ){ ITypeBinding b = (ITypeBinding)it.next(); if (Bindings.equals(b, binding)) return true; } return false; } /** * {@inheritDoc} */ public RefactoringStatus initialize(RefactoringArguments arguments) { if (arguments instanceof JavaRefactoringArguments) { final JavaRefactoringArguments extended= (JavaRefactoringArguments) arguments; final String selection= extended.getAttribute(JDTRefactoringDescriptor.ATTRIBUTE_SELECTION); if (selection != null) { int offset= -1; int length= -1; final StringTokenizer tokenizer= new StringTokenizer(selection); if (tokenizer.hasMoreTokens()) offset= Integer.valueOf(tokenizer.nextToken()).intValue(); if (tokenizer.hasMoreTokens()) length= Integer.valueOf(tokenizer.nextToken()).intValue(); if (offset >= 0 && length >= 0) { fSelectionStart= offset; fSelectionLength= length; } else return RefactoringStatus.createFatalErrorStatus(Messages.format(RefactoringCoreMessages.InitializableRefactoring_illegal_argument, new Object[] { selection, JDTRefactoringDescriptor.ATTRIBUTE_SELECTION})); } else return RefactoringStatus.createFatalErrorStatus(Messages.format(RefactoringCoreMessages.InitializableRefactoring_argument_not_exist, JDTRefactoringDescriptor.ATTRIBUTE_SELECTION)); final String handle= extended.getAttribute(JDTRefactoringDescriptor.ATTRIBUTE_INPUT); if (handle != null) { final IJavaScriptElement element= JDTRefactoringDescriptor.handleToElement(extended.getProject(), handle, false); if (element == null || !element.exists() || element.getElementType() != IJavaScriptElement.JAVASCRIPT_UNIT) return createInputFatalStatus(element, IJavaScriptRefactorings.GENERALIZE_TYPE); else fCu= (IJavaScriptUnit) element; } else return RefactoringStatus.createFatalErrorStatus(Messages.format(RefactoringCoreMessages.InitializableRefactoring_argument_not_exist, JDTRefactoringDescriptor.ATTRIBUTE_INPUT)); final String type= extended.getAttribute(ATTRIBUTE_TYPE); if (type != null && !"".equals(type)) //$NON-NLS-1$ fSelectedTypeName= type; else return RefactoringStatus.createFatalErrorStatus(Messages.format(RefactoringCoreMessages.InitializableRefactoring_argument_not_exist, ATTRIBUTE_TYPE)); } else return RefactoringStatus.createFatalErrorStatus(RefactoringCoreMessages.InitializableRefactoring_inacceptable_arguments); return new RefactoringStatus(); } }