org.eclipse.ui.actions.CopyResourceAction Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2000, 2017 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.actions;
import java.util.Iterator;
import java.util.List;
import org.eclipse.core.resources.IContainer;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.IWorkspace;
import org.eclipse.core.resources.IWorkspaceRoot;
import org.eclipse.core.runtime.Assert;
import org.eclipse.core.runtime.IPath;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.window.IShellProvider;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.dialogs.ContainerSelectionDialog;
import org.eclipse.ui.dialogs.ISelectionValidator;
import org.eclipse.ui.internal.ide.IDEWorkbenchMessages;
import org.eclipse.ui.internal.ide.IDEWorkbenchPlugin;
import org.eclipse.ui.internal.ide.IIDEHelpContextIds;
/**
* Standard action for copying the currently selected resources elsewhere
* in the workspace. All resources being copied as a group must be siblings.
*
* This class may be instantiated; it is not intended to be subclassed.
*
* @noextend This class is not intended to be subclassed by clients.
*/
public class CopyResourceAction extends SelectionListenerAction implements
ISelectionValidator {
/**
* The id of this action.
*/
public static final String ID = PlatformUI.PLUGIN_ID
+ ".CopyResourceAction"; //$NON-NLS-1$
/**
* The IShellProvider in which to show any dialogs.
*/
protected IShellProvider shellProvider;
/**
* The operation to run. This is created only during the life-cycle of the
* run method.
*/
protected CopyFilesAndFoldersOperation operation;
private String[] modelProviderIds;
/**
* Returns a new name for a copy of the resource at the given path in the given
* workspace. This name could be determined either automatically or by querying
* the user. This name will not be verified by the caller, so it must be
* valid and unique.
*
* Note this method is for internal use only.
*
*
* @param originalName the full path of the resource
* @param workspace the workspace
* @return the new full path for the copy, or null
if the resource
* should not be copied
*/
public static IPath getNewNameFor(IPath originalName, IWorkspace workspace) {
return CopyFilesAndFoldersOperation.getAutoNewNameFor(originalName,
workspace);
}
/**
* Creates a new action.
*
* @param shell the shell for any dialogs
*
* @deprecated {@link #CopyResourceAction(IShellProvider)}
*/
@Deprecated
public CopyResourceAction(Shell shell) {
this(shell, IDEWorkbenchMessages.CopyResourceAction_title);
}
/**
* Creates a new action
*
* @param provider the shell for any dialogs
* @since 3.4
*/
public CopyResourceAction(IShellProvider provider){
this(provider, IDEWorkbenchMessages.CopyResourceAction_title);
}
/**
* Creates a new action with the given text.
*
* @param shell the shell for any dialogs
* @param name the string used as the name for the action,
* or null
if there is no name
*
* @deprecated {@link #CopyResourceAction(IShellProvider, String)}
*/
@Deprecated
CopyResourceAction(final Shell shell, String name) {
super(name);
Assert.isNotNull(shell);
shellProvider = () -> shell;
initAction();
}
/**
* Creates a new action with the given text
*
* @param provider the shell for any dialogs
* @param name the string used as the name for the action,
* or null
if there is no name
*/
CopyResourceAction(IShellProvider provider, String name){
super(name);
Assert.isNotNull(provider);
shellProvider = provider;
initAction();
}
/**
* Returns the operation to perform when this action runs.
*
* @return the operation to perform when this action runs.
*/
protected CopyFilesAndFoldersOperation createOperation() {
return new CopyFilesAndFoldersOperation(getShell());
}
private void initAction(){
setToolTipText(IDEWorkbenchMessages.CopyResourceAction_toolTip);
setId(CopyResourceAction.ID);
PlatformUI.getWorkbench().getHelpSystem().setHelp(this,
IIDEHelpContextIds.COPY_RESOURCE_ACTION);
}
/**
* Returns the path of the container to initially select in the container
* selection dialog, or null
if there is no initial selection
* @return The initial container; null
if none.
*/
IContainer getInitialContainer() {
List extends IResource> resources = getSelectedResources();
if (resources.size() > 0) {
IResource resource = resources.get(0);
return resource.getParent();
}
return null;
}
/**
* Returns an array of resources to use for the operation from
* the provided list.
*
* @param resourceList The list of resources to converted into an array.
* @return an array of resources to use for the operation
*/
protected IResource[] getResources(List extends IResource> resourceList) {
return resourceList.toArray(new IResource[resourceList
.size()]);
}
/**
* Returns the shell in which to show any dialogs
* @return The shell for parenting dialogs; never null
.
*/
Shell getShell() {
return shellProvider.getShell();
}
/**
* The CopyResourceAction
implementation of this
* ISelectionValidator
method checks whether the given path
* is a good place to copy the selected resources.
*/
@Override
public String isValid(Object destination) {
IWorkspaceRoot root = IDEWorkbenchPlugin.getPluginWorkspace().getRoot();
IContainer container = (IContainer) root
.findMember((IPath) destination);
if (container != null) {
// create a new operation here.
// isValid is API and may be called in any context.
CopyFilesAndFoldersOperation newOperation = createOperation();
List extends IResource> sources = getSelectedResources();
IResource[] resources = sources
.toArray(new IResource[sources.size()]);
return newOperation.validateDestination(container, resources);
}
return null;
}
/**
* Asks the user for the destination of this action.
*
* @return the path on an existing or new resource container, or
* null
if the operation should be abandoned
*/
IPath queryDestinationResource() {
// start traversal at root resource, should probably start at a
// better location in the tree
ContainerSelectionDialog dialog = new ContainerSelectionDialog(shellProvider.getShell(),
getInitialContainer(), true, IDEWorkbenchMessages.CopyResourceAction_selectDestination);
dialog.setValidator(this);
dialog.showClosedProjects(false);
dialog.open();
Object[] result = dialog.getResult();
if (result != null && result.length == 1) {
return (IPath) result[0];
}
return null;
}
@Override
public void run() {
try {
operation = createOperation();
operation.setModelProviderIds(getModelProviderIds());
// WARNING: do not query the selected resources more than once
// since the selection may change during the run,
// e.g. due to window activation when the prompt dialog is dismissed.
// For more details, see Bug 60606 [Navigator] (data loss) Navigator deletes/moves the wrong file
List extends IResource> sources = getSelectedResources();
IPath destination = queryDestinationResource();
if (destination == null) {
return;
}
IWorkspaceRoot root = IDEWorkbenchPlugin.getPluginWorkspace()
.getRoot();
IContainer container = (IContainer) root.findMember(destination);
if (container == null) {
return;
}
runOperation(getResources(sources), container);
} finally {
operation = null;
}
}
/**
* Runs the operation created in createOperation
*
* @param resources source resources to pass to the operation
* @param destination destination container to pass to the operation
*/
protected void runOperation(IResource[] resources, IContainer destination) {
operation.copyResources(resources, destination);
}
/**
* The CopyResourceAction
implementation of this
* SelectionListenerAction
method enables this action only if
* all of the one or more selections are sibling resources which are
* local (depth infinity).
*/
@Override
protected boolean updateSelection(IStructuredSelection selection) {
if (!super.updateSelection(selection)) {
return false;
}
if (getSelectedNonResources().size() > 0) {
return false;
}
// to enable this command all selected resources must be siblings
List extends IResource> selectedResources = getSelectedResources();
if (selectedResources.isEmpty()) {
return false;
}
IContainer firstParent = selectedResources.get(0)
.getParent();
if (firstParent == null) {
return false;
}
Iterator extends IResource> resourcesEnum = selectedResources.iterator();
while (resourcesEnum.hasNext()) {
IResource currentResource = resourcesEnum.next();
if (!currentResource.exists()) {
return false;
}
if (currentResource.getType() == IResource.PROJECT) {
return false;
}
IContainer parent = currentResource.getParent();
if ((parent != null) && (!parent.equals(firstParent))) {
return false;
}
}
return true;
}
/**
* Returns the model provider ids that are known to the client
* that instantiated this operation.
*
* @return the model provider ids that are known to the client
* that instantiated this operation.
* @since 3.2
*/
public String[] getModelProviderIds() {
return modelProviderIds;
}
/**
* Sets the model provider ids that are known to the client
* that instantiated this operation. Any potential side effects
* reported by these models during validation will be ignored.
*
* @param modelProviderIds the model providers known to the client
* who is using this operation.
* @since 3.2
*/
public void setModelProviderIds(String[] modelProviderIds) {
this.modelProviderIds = modelProviderIds;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy