Search in sources :

Example 6 with CopyFilesAndFoldersOperation

use of org.eclipse.ui.actions.CopyFilesAndFoldersOperation in project translationstudio8 by heartsome.

the class ResourceDropAdapterAssistant method performResourceMove.

/**
	 * Performs a resource move
	 */
private IStatus performResourceMove(CommonDropAdapter dropAdapter, IResource[] sources) {
    MultiStatus problems = new MultiStatus(PlatformUI.PLUGIN_ID, 1, WorkbenchNavigatorMessages.resources_ResourceDropAdapterAssistant_problemsMoving, null);
    mergeStatus(problems, validateTarget(dropAdapter.getCurrentTarget(), dropAdapter.getCurrentTransfer(), dropAdapter.getCurrentOperation()));
    IContainer target = getActualTarget((IResource) dropAdapter.getCurrentTarget());
    boolean shouldLinkAutomatically = false;
    if (target.isVirtual()) {
        shouldLinkAutomatically = true;
        for (int i = 0; i < sources.length; i++) {
            if (sources[i].isVirtual() || sources[i].isLinked()) {
                shouldLinkAutomatically = false;
                break;
            }
        }
    }
    if (shouldLinkAutomatically) {
        CopyFilesAndFoldersOperation operation = new CopyFilesAndFoldersOperation(getShell());
        operation.setCreateLinks(true);
        operation.copyResources(sources, target);
    } else {
        ReadOnlyStateChecker checker = new ReadOnlyStateChecker(getShell(), WorkbenchNavigatorMessages.resources_ResourceDropAdapterAssistant_MoveResourceAction_title, WorkbenchNavigatorMessages.resources_ResourceDropAdapterAssistant_MoveResourceAction_checkMoveMessage);
        sources = checker.checkReadOnlyResources(sources);
        try {
            RefactoringContribution contribution = RefactoringCore.getRefactoringContribution(MoveResourcesDescriptor.ID);
            MoveResourcesDescriptor descriptor = (MoveResourcesDescriptor) contribution.createDescriptor();
            descriptor.setResourcesToMove(sources);
            descriptor.setDestination(target);
            refactoringStatus = new RefactoringStatus();
            final Refactoring refactoring = descriptor.createRefactoring(refactoringStatus);
            returnStatus = null;
            IRunnableWithProgress checkOp = new IRunnableWithProgress() {

                public void run(IProgressMonitor monitor) {
                    try {
                        refactoringStatus = refactoring.checkAllConditions(monitor);
                    } catch (CoreException ex) {
                        returnStatus = WorkbenchNavigatorPlugin.createErrorStatus(0, ex.getLocalizedMessage(), ex);
                    }
                }
            };
            if (returnStatus != null)
                return returnStatus;
            try {
                PlatformUI.getWorkbench().getProgressService().run(false, false, checkOp);
            } catch (InterruptedException e) {
                return Status.CANCEL_STATUS;
            } catch (InvocationTargetException e) {
                return WorkbenchNavigatorPlugin.createErrorStatus(0, e.getLocalizedMessage(), e);
            }
            if (refactoringStatus.hasEntries()) {
                RefactoringStatusEntry[] entries = refactoringStatus.getEntries();
                StringBuffer message = new StringBuffer();
                int severity = 0;
                for (RefactoringStatusEntry refactoringStatusEntry : entries) {
                    if (refactoringStatusEntry.getSeverity() > severity) {
                        severity = refactoringStatusEntry.getSeverity();
                        message.replace(0, message.length(), refactoringStatusEntry.getMessage());
                    } else if (refactoringStatusEntry.getSeverity() == severity) {
                        message.append("\n\n").append(refactoringStatusEntry.getMessage());
                    }
                }
                if (severity == RefactoringStatus.INFO) {
                    MessageDialog.openInformation(getShell(), WorkbenchNavigatorMessages.resources_ResourceDropAdapterAssistant_MoveResourceAction_title, message.toString());
                } else if (severity == RefactoringStatus.WARNING) {
                    boolean result = MessageDialog.openConfirm(getShell(), WorkbenchNavigatorMessages.resources_ResourceDropAdapterAssistant_MoveResourceAction_title, message.toString());
                    if (!result) {
                        return Status.CANCEL_STATUS;
                    }
                } else if (severity == RefactoringStatus.ERROR || severity == RefactoringStatus.FATAL) {
                    MessageDialog.openError(getShell(), WorkbenchNavigatorMessages.resources_ResourceDropAdapterAssistant_MoveResourceAction_title, message.toString());
                    return Status.CANCEL_STATUS;
                } else {
                }
            /**
					 * Weachy:
					 * RefactoringUI 类需引入 org.eclipse.ltk.ui.refactoring 插件,
					 * 而 org.eclipse.ltk.ui.refactoring 插件会引入
					 * org.eclipse.compare、org.eclipse.team.core、org.eclipse.team.ui
					 * 三个插件。会导致在导航视图、首选项等出现无用的功能项。因此注释以下4行代码。
					 */
            //					Dialog dialog= RefactoringUI.createLightWeightStatusDialog(refactoringStatus, getShell(), WorkbenchNavigatorMessages.MoveResourceAction_title);
            //					int result = dialog.open();
            //					if (result != IStatus.OK)
            //						return Status.CANCEL_STATUS;
            }
            final PerformRefactoringOperation op = new PerformRefactoringOperation(refactoring, CheckConditionsOperation.ALL_CONDITIONS);
            final IWorkspaceRunnable r = new IWorkspaceRunnable() {

                public void run(IProgressMonitor monitor) throws CoreException {
                    op.run(monitor);
                }
            };
            returnStatus = null;
            IRunnableWithProgress refactorOp = new IRunnableWithProgress() {

                public void run(IProgressMonitor monitor) {
                    try {
                        ResourcesPlugin.getWorkspace().run(r, ResourcesPlugin.getWorkspace().getRoot(), IWorkspace.AVOID_UPDATE, monitor);
                    } catch (CoreException ex) {
                        returnStatus = WorkbenchNavigatorPlugin.createErrorStatus(0, ex.getLocalizedMessage(), ex);
                    }
                }
            };
            if (returnStatus != null)
                return returnStatus;
            try {
                PlatformUI.getWorkbench().getProgressService().run(false, false, refactorOp);
            } catch (InterruptedException e) {
                return Status.CANCEL_STATUS;
            } catch (InvocationTargetException e) {
                return WorkbenchNavigatorPlugin.createErrorStatus(0, e.getLocalizedMessage(), e);
            }
        } catch (CoreException ex) {
            return WorkbenchNavigatorPlugin.createErrorStatus(0, ex.getLocalizedMessage(), ex);
        } catch (OperationCanceledException e) {
        }
    }
    return problems;
}
Also used : IWorkspaceRunnable(org.eclipse.core.resources.IWorkspaceRunnable) RefactoringContribution(org.eclipse.ltk.core.refactoring.RefactoringContribution) OperationCanceledException(org.eclipse.core.runtime.OperationCanceledException) RefactoringStatusEntry(org.eclipse.ltk.core.refactoring.RefactoringStatusEntry) MultiStatus(org.eclipse.core.runtime.MultiStatus) RefactoringStatus(org.eclipse.ltk.core.refactoring.RefactoringStatus) PerformRefactoringOperation(org.eclipse.ltk.core.refactoring.PerformRefactoringOperation) InvocationTargetException(java.lang.reflect.InvocationTargetException) IRunnableWithProgress(org.eclipse.jface.operation.IRunnableWithProgress) MoveResourcesDescriptor(org.eclipse.ltk.core.refactoring.resource.MoveResourcesDescriptor) IProgressMonitor(org.eclipse.core.runtime.IProgressMonitor) CoreException(org.eclipse.core.runtime.CoreException) IContainer(org.eclipse.core.resources.IContainer) CopyFilesAndFoldersOperation(org.eclipse.ui.actions.CopyFilesAndFoldersOperation) Refactoring(org.eclipse.ltk.core.refactoring.Refactoring) ReadOnlyStateChecker(org.eclipse.ui.actions.ReadOnlyStateChecker)

Example 7 with CopyFilesAndFoldersOperation

use of org.eclipse.ui.actions.CopyFilesAndFoldersOperation in project translationstudio8 by heartsome.

the class PasteAction method run.

/**
     * Implementation of method defined on <code>IAction</code>.
     */
public void run() {
    // try a resource transfer
    ResourceTransfer resTransfer = ResourceTransfer.getInstance();
    IResource[] resourceData = (IResource[]) clipboard.getContents(resTransfer);
    if (resourceData != null && resourceData.length > 0) {
        if (resourceData[0].getType() == IResource.PROJECT) {
            // enablement checks for all projects
            for (int i = 0; i < resourceData.length; i++) {
                CopyProjectOperation operation = new CopyProjectOperation(this.shell);
                operation.copyProject((IProject) resourceData[i]);
            }
        } else {
            // enablement should ensure that we always have access to a container
            IContainer container = getContainer();
            CopyFilesAndFoldersOperation operation = new CopyFilesAndFoldersOperation(this.shell);
            operation.copyResources(resourceData, container);
        }
        return;
    }
    // try a file transfer
    FileTransfer fileTransfer = FileTransfer.getInstance();
    String[] fileData = (String[]) clipboard.getContents(fileTransfer);
    if (fileData != null) {
        // enablement should ensure that we always have access to a container
        IContainer container = getContainer();
        CopyFilesAndFoldersOperation operation = new CopyFilesAndFoldersOperation(this.shell);
        operation.copyFiles(fileData, container);
    }
}
Also used : ResourceTransfer(org.eclipse.ui.part.ResourceTransfer) FileTransfer(org.eclipse.swt.dnd.FileTransfer) CopyProjectOperation(org.eclipse.ui.actions.CopyProjectOperation) IContainer(org.eclipse.core.resources.IContainer) CopyFilesAndFoldersOperation(org.eclipse.ui.actions.CopyFilesAndFoldersOperation) IResource(org.eclipse.core.resources.IResource)

Aggregations

CopyFilesAndFoldersOperation (org.eclipse.ui.actions.CopyFilesAndFoldersOperation)7 IContainer (org.eclipse.core.resources.IContainer)6 IResource (org.eclipse.core.resources.IResource)4 MultiStatus (org.eclipse.core.runtime.MultiStatus)3 IWorkspaceRunnable (org.eclipse.core.resources.IWorkspaceRunnable)2 MoveFilesAndFoldersOperation (org.eclipse.ui.actions.MoveFilesAndFoldersOperation)2 Document (de.pdark.decentxml.Document)1 IOException (java.io.IOException)1 InvocationTargetException (java.lang.reflect.InvocationTargetException)1 NodeTypeRegistry (org.apache.sling.ide.transport.NodeTypeRegistry)1 Repository (org.apache.sling.ide.transport.Repository)1 IProject (org.eclipse.core.resources.IProject)1 CoreException (org.eclipse.core.runtime.CoreException)1 IProgressMonitor (org.eclipse.core.runtime.IProgressMonitor)1 OperationCanceledException (org.eclipse.core.runtime.OperationCanceledException)1 IRunnableWithProgress (org.eclipse.jface.operation.IRunnableWithProgress)1 PerformRefactoringOperation (org.eclipse.ltk.core.refactoring.PerformRefactoringOperation)1 Refactoring (org.eclipse.ltk.core.refactoring.Refactoring)1 RefactoringContribution (org.eclipse.ltk.core.refactoring.RefactoringContribution)1 RefactoringStatus (org.eclipse.ltk.core.refactoring.RefactoringStatus)1