blob: 5e1294bec39c08f8f616c08447accf3ea672b215 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 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.jdt.internal.corext.refactoring.changes;
import org.eclipse.core.runtime.Assert;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.SubProgressMonitor;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IProjectDescription;
import org.eclipse.core.resources.IResource;
import org.eclipse.ltk.core.refactoring.Change;
import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
import org.eclipse.ltk.core.refactoring.RefactoringStatus;
import org.eclipse.jdt.core.IClasspathEntry;
import org.eclipse.jdt.core.IJavaProject;
import org.eclipse.jdt.core.JavaCore;
import org.eclipse.jdt.core.JavaModelException;
import org.eclipse.jdt.internal.corext.refactoring.AbstractJavaElementRenameChange;
import org.eclipse.jdt.internal.corext.refactoring.RefactoringCoreMessages;
import org.eclipse.jdt.internal.corext.util.Messages;
public final class RenameJavaProjectChange extends AbstractJavaElementRenameChange {
private boolean fUpdateReferences;
public RenameJavaProjectChange(RefactoringDescriptor descriptor, IJavaProject project, String newName, String comment, boolean updateReferences) {
this(descriptor, project.getPath(), project.getElementName(), newName, comment, IResource.NULL_STAMP, updateReferences);
Assert.isTrue(!project.isReadOnly(), "should not be read only"); //$NON-NLS-1$
}
private RenameJavaProjectChange(RefactoringDescriptor descriptor, IPath resourcePath, String oldName, String newName, String comment, long stampToRestore, boolean updateReferences) {
super(descriptor, resourcePath, oldName, newName, comment);
fUpdateReferences= updateReferences;
}
private IClasspathEntry createModifiedEntry(IClasspathEntry oldEntry) {
return JavaCore.newProjectEntry(createNewPath(), oldEntry.getAccessRules(), oldEntry.combineAccessRules(), oldEntry.getExtraAttributes(), oldEntry.isExported());
}
protected IPath createNewPath() {
return getResourcePath().removeLastSegments(1).append(getNewName());
}
protected Change createUndoChange(long stampToRestore) throws JavaModelException {
return new RenameJavaProjectChange(null, createNewPath(), getNewName(), getOldName(), getComment(), stampToRestore, fUpdateReferences);
}
protected void doRename(IProgressMonitor pm) throws CoreException {
try {
pm.beginTask(getName(), 2);
if (fUpdateReferences)
modifyClassPaths(new SubProgressMonitor(pm, 1));
IProject project= getProject();
if (project != null) {
IProjectDescription description= project.getDescription();
description.setName(getNewName());
project.move(description, IResource.FORCE | IResource.SHALLOW, new SubProgressMonitor(pm, 1));
}
} finally {
pm.done();
}
}
private IJavaProject getJavaProject() {
return (IJavaProject) getModifiedElement();
}
public String getName() {
return Messages.format(RefactoringCoreMessages.RenameJavaProjectChange_rename, new String[] { getOldName(), getNewName()});
}
private IProject getProject() {
IJavaProject jp= getJavaProject();
if (jp == null)
return null;
return jp.getProject();
}
private boolean isOurEntry(IClasspathEntry cpe) {
if (cpe.getEntryKind() != IClasspathEntry.CPE_PROJECT)
return false;
if (!cpe.getPath().equals(getResourcePath()))
return false;
return true;
}
public RefactoringStatus isValid(IProgressMonitor pm) throws CoreException {
return isValid(pm, DIRTY);
}
private void modifyClassPath(IJavaProject referencingProject, IProgressMonitor pm) throws JavaModelException {
pm.beginTask("", 1); //$NON-NLS-1$
IClasspathEntry[] oldEntries= referencingProject.getRawClasspath();
IClasspathEntry[] newEntries= new IClasspathEntry[oldEntries.length];
for (int i= 0; i < newEntries.length; i++) {
if (isOurEntry(oldEntries[i]))
newEntries[i]= createModifiedEntry(oldEntries[i]);
else
newEntries[i]= oldEntries[i];
}
referencingProject.setRawClasspath(newEntries, pm);
pm.done();
}
private void modifyClassPaths(IProgressMonitor pm) throws JavaModelException {
IProject[] referencing= getProject().getReferencingProjects();
pm.beginTask(RefactoringCoreMessages.RenameJavaProjectChange_update, referencing.length);
for (int i= 0; i < referencing.length; i++) {
IJavaProject jp= JavaCore.create(referencing[i]);
if (jp != null && jp.exists()) {
modifyClassPath(jp, new SubProgressMonitor(pm, 1));
} else {
pm.worked(1);
}
}
pm.done();
}
}