/** * This file Copyright (c) 2005-2010 Aptana, Inc. This program is * dual-licensed under both the Aptana Public License and the GNU General * Public license. You may elect to use one or the other of these licenses. * * This program is distributed in the hope that it will be useful, but * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * NONINFRINGEMENT. Redistribution, except as permitted by whichever of * the GPL or APL you select, is prohibited. * * 1. For the GPL license (GPL), you can redistribute and/or modify this * program under the terms of the GNU General Public License, * Version 3, as published by the Free Software Foundation. You should * have received a copy of the GNU General Public License, Version 3 along * with this program; if not, write to the Free Software Foundation, Inc., 51 * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Aptana provides a special exception to allow redistribution of this file * with certain other free and open source software ("FOSS") code and certain additional terms * pursuant to Section 7 of the GPL. You may view the exception and these * terms on the web at http://www.aptana.com/legal/gpl/. * * 2. For the Aptana Public License (APL), this program and the * accompanying materials are made available under the terms of the APL * v1.0 which accompanies this distribution, and is available at * http://www.aptana.com/legal/apl/. * * You may view the GPL, Aptana's exception and additional terms, and the * APL in the file titled license.html at the root of the corresponding * plugin containing this source file. * * Any modifications to this file must keep this entire header intact. */ package com.aptana.ide.ui.io.navigator.actions; import java.util.ArrayList; import java.util.List; import org.eclipse.core.filesystem.IFileStore; import org.eclipse.jface.dialogs.MessageDialog; import org.eclipse.jface.util.LocalSelectionTransfer; import org.eclipse.jface.viewers.IStructuredSelection; import org.eclipse.jface.viewers.StructuredSelection; import org.eclipse.swt.SWTError; import org.eclipse.swt.dnd.Clipboard; import org.eclipse.swt.dnd.DND; import org.eclipse.swt.dnd.FileTransfer; import org.eclipse.swt.dnd.TextTransfer; import org.eclipse.swt.dnd.Transfer; import org.eclipse.swt.widgets.Shell; import org.eclipse.ui.PlatformUI; import org.eclipse.ui.actions.BaseSelectionListenerAction; import com.aptana.ide.ui.io.FileSystemUtils; import com.aptana.ide.ui.io.IOUIPlugin; /** * @author Michael Xia (mxia@aptana.com) */ public class FileSystemCopyAction extends BaseSelectionListenerAction { /** * The id of this action */ public static final String ID = IOUIPlugin.PLUGIN_ID + ".CopyAction"; //$NON-NLS-1$ /** * The shell in which to show any dialogs */ private Shell fShell; /** * System clipboard */ private Clipboard fClipboard; private List<IFileStore> fFileStores; /** * Associated paste action. May be <code>null</code> */ private FileSystemPasteAction fPasteAction; public FileSystemCopyAction(Shell shell, Clipboard clipboard) { super(Messages.FileSystemCopyAction_TXT); fShell = shell; fClipboard = clipboard; fFileStores = new ArrayList<IFileStore>(); setToolTipText(Messages.FileSystemCopyAction_TTP); setId(ID); PlatformUI.getWorkbench().getHelpSystem().setHelp(this, "CopyHelpId"); //$NON-NLS-1$ } public FileSystemCopyAction(Shell shell, Clipboard clipboard, FileSystemPasteAction pasteAction) { this(shell, clipboard); fPasteAction = pasteAction; } @Override public void run() { // Get the file names and a string representation IFileStore[] fileStores = fFileStores.toArray(new IFileStore[fFileStores.size()]); String[] fileNames = new String[fileStores.length]; StringBuilder buf = new StringBuilder(); for (int i = 0; i < fileStores.length; ++i) { fileNames[i] = fileStores[i].toString(); if (i > 0) { buf.append("\n"); //$NON-NLS-1$ } buf.append(fileStores[i].getName()); } setClipboard(fileStores, fileNames, buf.toString()); // update the enablement of the paste action // workaround since the clipboard does not support callbacks if (fPasteAction != null && fPasteAction.getStructuredSelection() != null) { fPasteAction.selectionChanged(fPasteAction.getStructuredSelection()); } } @Override protected boolean updateSelection(IStructuredSelection selection) { fFileStores.clear(); if (!super.updateSelection(selection)) { return false; } if (selection == null || selection.isEmpty()) { return false; } Object[] elements = selection.toArray(); IFileStore fileStore; for (Object element : elements) { fileStore = FileSystemUtils.getFileStore(element); if (fileStore != null) { fFileStores.add(fileStore); } } if (fFileStores.size() == 0) { return false; } // must have a common parent IFileStore firstParent = fFileStores.get(0).getParent(); if (firstParent == null) { return false; } for (IFileStore store : fFileStores) { if (!store.getParent().equals(firstParent)) { return false; } } return true; } private void setClipboard(IFileStore[] fileStores, String[] fileNames, String names) { try { // set the clipboard contents LocalSelectionTransfer selectionTransfer = LocalSelectionTransfer.getTransfer(); selectionTransfer.setSelection(new StructuredSelection(fileStores)); if (fileNames.length > 0) { fClipboard.setContents(new Object[] { fileStores, fileNames, names }, new Transfer[] { LocalSelectionTransfer.getTransfer(), FileTransfer.getInstance(), TextTransfer.getInstance() }); } else { fClipboard.setContents(new Object[] { fileStores, names }, new Transfer[] { LocalSelectionTransfer.getTransfer(), TextTransfer.getInstance() }); } } catch (SWTError e) { if (e.code != DND.ERROR_CANNOT_SET_CLIPBOARD) { throw e; } if (MessageDialog.openQuestion(fShell, "Problem with copy title", //$NON-NLS-1$ "Problem with copy.")) { //$NON-NLS-1$ setClipboard(fileStores, fileNames, names); } } } }