blob: 83c559bcc6519703cd787adc0df21b1dbb9d11aa [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.internal.ui.drag;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
import org.eclipse.cdt.internal.ui.CUIMessages;
import org.eclipse.cdt.internal.ui.util.ExceptionHandler;
import org.eclipse.cdt.ui.CUIPlugin;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.MultiStatus;
import org.eclipse.core.runtime.SubProgressMonitor;
import org.eclipse.jface.dialogs.ProgressMonitorDialog;
import org.eclipse.jface.operation.IRunnableWithProgress;
import org.eclipse.jface.util.Assert;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.ISelectionProvider;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.swt.dnd.DND;
import org.eclipse.swt.dnd.DragSourceEvent;
import org.eclipse.swt.dnd.FileTransfer;
import org.eclipse.swt.dnd.Transfer;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.IWorkbench;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.actions.WorkspaceModifyOperation;
public class FileTransferDragAdapter implements TransferDragSourceListener {
private final ISelectionProvider provider;
public FileTransferDragAdapter(ISelectionProvider provider) {
super();
this.provider = provider;
Assert.isNotNull(provider);
}
public Transfer getTransfer() {
return FileTransfer.getInstance();
}
public void dragStart(DragSourceEvent event) {
event.doit = !getResources().isEmpty();
}
public void dragSetData(DragSourceEvent event) {
String[] locations = getResourceLocations(getResources());
event.data = locations.length != 0 ? locations : null;
}
public void dragFinished(DragSourceEvent event) {
if (event.doit) {
if (event.detail == DND.DROP_MOVE) {
// Never delete resources when dragging outside Eclipse.
// See: http://bugs.eclipse.org/bugs/show_bug.cgi?id=30543
} else if (event.detail == DND.DROP_NONE || event.detail == DND.DROP_TARGET_MOVE) {
runOperation(new RefreshOperation(getResources()), true, false);
}
}
}
private static class RefreshOperation extends WorkspaceModifyOperation {
private final Set roots;
public RefreshOperation(List resources) {
super();
roots = new HashSet(resources.size());
for (Iterator iterator = resources.iterator(); iterator.hasNext();) {
IResource resource = (IResource) iterator.next();
IResource parent = resource.getParent();
roots.add(parent != null ? parent : resource);
}
}
public void execute(IProgressMonitor monitor) throws CoreException {
try {
monitor.beginTask(CUIMessages.getString("DragAdapter.refreshing"), roots.size()); //$NON-NLS-1$
MultiStatus status = new MultiStatus(CUIPlugin.getPluginId(), IStatus.OK, CUIMessages.getString("DragAdapter.problem"), null); //$NON-NLS-1$
for (Iterator iterator = roots.iterator(); iterator.hasNext();) {
IResource resource = (IResource) iterator.next();
try {
resource.refreshLocal(
IResource.DEPTH_ONE,
new SubProgressMonitor(monitor, 1));
} catch (CoreException e) {
status.add(e.getStatus());
}
}
if (!status.isOK())
throw new CoreException(status);
} finally {
monitor.done();
}
}
}
private List getResources() {
List result = Collections.EMPTY_LIST;
ISelection selection = provider.getSelection();
if (selection instanceof IStructuredSelection) {
IStructuredSelection structured = (IStructuredSelection) selection;
result = new ArrayList(structured.size());
for (Iterator iterator = structured.iterator(); iterator.hasNext();) {
Object object = iterator.next();
IResource resource = null;
if (object instanceof IResource)
resource = (IResource) object;
else if (object instanceof IAdaptable)
resource = (IResource) ((IAdaptable) object).getAdapter(IResource.class);
if (resource != null)
result.add(resource);
}
}
return result;
}
private static String[] getResourceLocations(List resources) {
final int count = resources.size();
final List locations = new ArrayList(count);
for (Iterator iterator = resources.iterator(); iterator.hasNext();) {
IResource resource = (IResource) iterator.next();
IPath location = resource.getLocation();
if (location != null)
locations.add(location.toOSString());
}
String[] result = new String[locations.size()];
locations.toArray(result);
return result;
}
private static void runOperation(
IRunnableWithProgress operation,
boolean fork,
boolean cancelable) {
try {
IWorkbench workbench = CUIPlugin.getDefault().getWorkbench();
IWorkbenchWindow window = workbench.getActiveWorkbenchWindow();
Shell parent = window.getShell();
new ProgressMonitorDialog(parent).run(fork, cancelable, operation);
} catch (InterruptedException e) {
// Do nothing. Operation has been canceled by user.
} catch (InvocationTargetException e) {
String message = CUIMessages.getString("Problem while moving or copying files."); //$NON-NLS-1$
String title = CUIMessages.getString("Drag & Drop"); //$NON-NLS-1$
ExceptionHandler.handle(e, title, message);
}
}
}