blob: 25d22557ce0559027f65ad3e2d6e23f1a2b306a6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 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.team.internal.ccvs.ui.wizards;
import java.lang.reflect.InvocationTargetException;
import org.eclipse.core.resources.*;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.wizard.IWizardPage;
import org.eclipse.jface.wizard.Wizard;
import org.eclipse.team.internal.ccvs.core.*;
import org.eclipse.team.internal.ccvs.ui.*;
import org.eclipse.team.internal.ccvs.ui.Policy;
import org.eclipse.team.internal.ccvs.ui.operations.*;
import org.eclipse.team.internal.ccvs.ui.tags.*;
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.actions.NewProjectAction;
/**
* @author Administrator
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class CheckoutAsWizard extends Wizard {
private ICVSRemoteFolder[] remoteFolders;
private boolean allowProjectConfiguration;
private CheckoutAsMainPage mainPage;
private CheckoutAsProjectSelectionPage projectSelectionPage;
private CheckoutAsLocationSelectionPage locationSelectionPage;
private TagSelectionWizardPage tagSelectionPage;
private IWorkbenchPart part;
class NewProjectListener implements IResourceChangeListener {
private IProject newProject = null;
/**
* @see IResourceChangeListener#resourceChanged(IResourceChangeEvent)
*/
public void resourceChanged(IResourceChangeEvent event) {
IResourceDelta root = event.getDelta();
IResourceDelta[] projectDeltas = root.getAffectedChildren();
for (int i = 0; i < projectDeltas.length; i++) {
IResourceDelta delta = projectDeltas[i];
IResource resource = delta.getResource();
if (delta.getKind() == IResourceDelta.ADDED) {
newProject = (IProject)resource;
}
}
}
/**
* Gets the newProject.
* @return Returns a IProject
*/
public IProject getNewProject() {
return newProject;
}
}
public CheckoutAsWizard(IWorkbenchPart part, ICVSRemoteFolder[] remoteFolders, boolean allowProjectConfiguration) {
this.part = part;
this.remoteFolders = remoteFolders;
setWindowTitle(Policy.bind("CheckoutAsWizard.title")); //$NON-NLS-1$
this.allowProjectConfiguration = allowProjectConfiguration;
}
/**
* @see org.eclipse.jface.wizard.IWizard#addPages()
*/
public void addPages() {
setNeedsProgressMonitor(true);
ImageDescriptor substImage = CVSUIPlugin.getPlugin().getImageDescriptor(ICVSUIConstants.IMG_WIZBAN_CHECKOUT);
mainPage = new CheckoutAsMainPage(substImage, remoteFolders, allowProjectConfiguration);
addPage(mainPage);
projectSelectionPage = new CheckoutAsProjectSelectionPage(substImage, remoteFolders);
addPage(projectSelectionPage);
locationSelectionPage = new CheckoutAsLocationSelectionPage(substImage, remoteFolders);
addPage(locationSelectionPage);
tagSelectionPage = new TagSelectionWizardPage("tagPage", Policy.bind("CheckoutAsWizard.3"), substImage, Policy.bind("CheckoutAsWizard.4"), TagSource.create(remoteFolders), //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
TagSelectionArea.INCLUDE_HEAD_TAG |
TagSelectionArea.INCLUDE_BRANCHES |
TagSelectionArea.INCLUDE_VERSIONS |
TagSelectionArea.INCLUDE_DATES
);
if (remoteFolders.length > 0) {
try {
CVSTag selectedTag = remoteFolders[0].getFolderSyncInfo().getTag();
tagSelectionPage.setSelection(selectedTag);
} catch (CVSException e) {
CVSUIPlugin.log(e);
}
}
tagSelectionPage.setHelpContxtId(IHelpContextIds.CHECKOUT_TAG_SELETION_PAGE);
addPage(tagSelectionPage);
}
/* (non-Javadoc)
* @see org.eclipse.jface.wizard.IWizard#performFinish()
*/
public boolean performFinish() {
try {
if (mainPage.isPerformConfigure()) {
return performConfigureAndCheckout();
} else if (mainPage.isPerformCheckoutAs()) {
if (isSingleFolder()) {
return performSingleCheckoutAs();
} else {
return performMultipleCheckoutAs();
}
} else if (mainPage.isPerformCheckoutInto()) {
return performCheckoutInto();
}
} catch (InvocationTargetException e) {
handle(e);
// drop through
} catch (InterruptedException e) {
// drop through
}
return false;
}
/**
* @return
*/
private boolean isSingleFolder() {
return remoteFolders.length == 1;
}
/* (non-Javadoc)
* @see org.eclipse.jface.wizard.IWizard#canFinish()
*/
public boolean canFinish() {
return (mainPage.isPageComplete()
&& (mainPage.isPerformConfigure()
|| (mainPage.isPerformCheckoutInto() && projectSelectionPage.isPageComplete())
|| (mainPage.isPerformCheckoutAs() && locationSelectionPage.isPageComplete())));
}
/* (non-Javadoc)
* @see org.eclipse.jface.wizard.IWizard#getNextPage(org.eclipse.jface.wizard.IWizardPage)
*/
public IWizardPage getNextPage(IWizardPage page) {
if (page == mainPage) {
if (mainPage.isPerformConfigure()) return tagSelectionPage;
if (mainPage.isPerformCheckoutInto()) return projectSelectionPage;
if (mainPage.isPerformCheckoutAs()) {
if (isSingleFolder()) {
locationSelectionPage.setProjectName(mainPage.getProjectName());
} else {
locationSelectionPage.setProject(null);
}
return locationSelectionPage;
}
}
// The tag selection page is always shown as the last page
if (page != tagSelectionPage) {
return tagSelectionPage;
}
return null;
}
private void handle(Throwable e) {
CVSUIPlugin.openError(getShell(), Policy.bind("CheckoutAsWizard.error"), null, e); //$NON-NLS-1$
}
/*
* Configure a local project and checkout the selected remote folder into the project.
* This only occurs for single folders.
*/
private boolean performConfigureAndCheckout() throws InvocationTargetException, InterruptedException {
IProject newProject = getNewProject();
if (newProject == null) return false;
// Run the checkout in the background
ICVSRemoteFolder folder = getRemoteFolder();
new CheckoutSingleProjectOperation(part, folder, newProject, null, true).run();
return true;
}
/*
* Return the single remote folder to be checked out
*/
private ICVSRemoteFolder getRemoteFolder() {
ICVSRemoteFolder folder = remoteFolders[0];
CVSTag selectedTag = getSelectedTag();
if (selectedTag != null) {
folder = (ICVSRemoteFolder)folder.forTag(selectedTag);
}
return folder;
}
/*
* Return the remote folders to be checked out
*/
private ICVSRemoteFolder[] getRemoteFolders() {
ICVSRemoteFolder[] folders = new ICVSRemoteFolder[remoteFolders.length];
for (int i = 0; i < remoteFolders.length; i++) {
ICVSRemoteFolder remote = remoteFolders[i];
folders[i] = (ICVSRemoteFolder)remote.forTag(getSelectedTag());
}
return folders;
}
private CVSTag getSelectedTag() {
return tagSelectionPage.getSelectedTag();
}
private boolean performSingleCheckoutAs() throws InvocationTargetException, InterruptedException {
IProject newProject = ResourcesPlugin.getWorkspace().getRoot().getProject(mainPage.getProjectName());
String targetLocation = locationSelectionPage.getTargetLocation();
// Run the checkout in the background
ICVSRemoteFolder folder = getRemoteFolder();
new CheckoutSingleProjectOperation(part, folder, newProject, targetLocation, false).run();
return true;
}
/**
* Check out multiple folders to the workspace using a custom location if one is
* specified.
*/
private boolean performMultipleCheckoutAs() throws InvocationTargetException, InterruptedException {
String targetLocation = locationSelectionPage.getTargetLocation();
// Run the checkout in the background
new CheckoutMultipleProjectsOperation(part, getRemoteFolders(), targetLocation).run();
return true;
}
private boolean performCheckoutInto() throws InvocationTargetException, InterruptedException {
CheckoutIntoOperation operation;
boolean recursive = projectSelectionPage.isRecurse();
if (isSingleFolder()) {
ICVSRemoteFolder folder = getRemoteFolder();
operation = new CheckoutIntoOperation(part, folder, projectSelectionPage.getLocalFolder(), recursive);
} else {
operation = new CheckoutIntoOperation(part, getRemoteFolders(), projectSelectionPage.getParentFolder(), recursive);
}
// Run the checkout in the background
operation.run();
return true;
}
/**
* Get a new project that is configured by the new project wizard.
* This is currently the only way to do this.
*/
private IProject getNewProject() {
NewProjectListener listener = new NewProjectListener();
ResourcesPlugin.getWorkspace().addResourceChangeListener(listener, IResourceChangeEvent.POST_CHANGE);
(new NewProjectAction(PlatformUI.getWorkbench().getActiveWorkbenchWindow())).run();
ResourcesPlugin.getWorkspace().removeResourceChangeListener(listener);
IProject project = listener.getNewProject();
return project;
}
}