blob: 24b4974ab9a972c29e41f198392b227a5bd78289 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 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.gmf.runtime.diagram.ui.actions.internal;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.gef.commands.Command;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.viewers.StructuredSelection;
import org.eclipse.ui.IObjectActionDelegate;
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.ui.IWorkbenchWindowActionDelegate;
import org.eclipse.gmf.runtime.common.core.command.CommandResult;
import org.eclipse.gmf.runtime.common.core.command.ICommand;
import org.eclipse.gmf.runtime.diagram.core.internal.services.semantic.DuplicateElementsRequest;
import org.eclipse.gmf.runtime.diagram.core.internal.services.semantic.SemanticService;
import org.eclipse.gmf.runtime.diagram.ui.commands.XtoolsProxyCommand;
import org.eclipse.gmf.runtime.diagram.ui.editparts.IGraphicalEditPart;
import org.eclipse.gmf.runtime.diagram.ui.internal.requests.DuplicateRequest;
import org.eclipse.gmf.runtime.diagram.ui.parts.IDiagramGraphicalViewer;
import org.eclipse.gmf.runtime.diagram.ui.parts.IDiagramWorkbenchPart;
import org.eclipse.gmf.runtime.emf.ui.action.AbstractModelActionDelegate;
import org.eclipse.gmf.runtime.notation.View;
/**
* An action delegate that handles duplication of selected model elements and
* views on a diagram.
*
* @author cmahoney
* @canBeSeenBy org.eclipse.gmf.runtime.diagram.ui.actions.*
*/
public class DuplicateActionDelegate
extends AbstractModelActionDelegate
implements IObjectActionDelegate, IWorkbenchWindowActionDelegate {
/**
* Runs this duplicate action delegate by executing a duplicate command on
* the selected model elements or views.
*
* @see org.eclipse.gmf.runtime.common.ui.internal.action.AbstractActionDelegate#doRun(IProgressMonitor)
*/
protected void doRun(IProgressMonitor progressMonitor) {
Object request;
ICommand cmd;
if (getWorkbenchPart() instanceof IDiagramWorkbenchPart) {
request = new DuplicateRequest();
cmd = getDuplicateViewCommand(getStructuredSelection(),
getWorkbenchPart(), (DuplicateRequest) request);
} else {
request = new DuplicateElementsRequest();
cmd = getDuplicateElementsCommand(getStructuredSelection(),
(DuplicateElementsRequest) request);
}
if (cmd != null && cmd.isExecutable())
;
{
CommandResult result = getCommandManager().execute(cmd);
if (result.getStatus().isOK()) {
if (request instanceof DuplicateRequest) {
selectViews(((DuplicateRequest) request)
.getDuplicatedViews());
} else {
// This should select the new elements in ME. Once
// RATLC00533879 is fixed, this can be implemented.
}
}
}
}
/**
* Determines if the selection can be duplicated by trying to get a command
* to do so.
*
* @param selection
* @param workbenchPart
* @return true if the selection can be duplicated; false otherwise.
*/
static boolean canDuplicate(IStructuredSelection selection,
IWorkbenchPart workbenchPart) {
ICommand cmd = (workbenchPart instanceof IDiagramWorkbenchPart) ? getDuplicateViewCommand(
selection, workbenchPart, new DuplicateRequest())
: getDuplicateElementsCommand(selection,
new DuplicateElementsRequest());
return (cmd != null && cmd.isExecutable());
}
/**
* Tries to get a command to duplicate the selected elements by going to the
* semantic service.
*
* @param selection
* the selected elements
* @param request
* the empty <code>DuplicateElementsRequest</code>
* @return a command to duplicate the elements, or null if one could not be
* found.
*/
private static ICommand getDuplicateElementsCommand(
IStructuredSelection selection, DuplicateElementsRequest request) {
HashSet elements = new HashSet();
for (Iterator i = selection.iterator(); i.hasNext();) {
EObject element = (EObject) ((IAdaptable) i.next())
.getAdapter(EObject.class);
if (null != element) {
elements.add(element);
}
}
if (!elements.isEmpty()) {
request.setElementsToBeDuplicated(new ArrayList(elements));
return SemanticService.getInstance().getCommand(request);
}
return null;
}
/**
* Tries to get a command to duplicate the selected views by sending a
* request to the diagram editpart.
*
* @param selection
* the selected editparts
* @param workbenchPart
* the workbench part from which the diagram editpart can be
* found
* @param request
* the empty <code>DuplicateElementsRequest</code>
* @return a command to duplicate the views (and underlying elements), or
* null if one could not be found.
*/
private static ICommand getDuplicateViewCommand(
IStructuredSelection selection, IWorkbenchPart workbenchPart,
DuplicateRequest request) {
List eps = new ArrayList();
for (Iterator i = selection.iterator(); i.hasNext();) {
Object selectedItem = i.next();
if (selectedItem instanceof IGraphicalEditPart) {
eps.add(selectedItem);
}
}
if (!eps.isEmpty()) {
request.setEditParts(eps);
Command cmd = ((IDiagramWorkbenchPart) workbenchPart)
.getDiagramEditPart().getCommand(request);
if (cmd != null && cmd.canExecute()) {
return new XtoolsProxyCommand(cmd);
}
}
return null;
}
/**
* Selects the newly added views on the diagram.
*/
private void selectViews(List views) {
IDiagramGraphicalViewer viewer = ((IDiagramWorkbenchPart) getWorkbenchPart())
.getDiagramGraphicalViewer();
if (viewer != null && views != null && !views.isEmpty()) {
List editparts = new ArrayList();
for (Iterator iter = views.iterator(); iter.hasNext();) {
Object view = iter.next();
if (view instanceof View) {
Object ep = viewer.getEditPartRegistry().get(view);
if (ep != null) {
editparts.add(ep);
}
}
}
if (!editparts.isEmpty()) {
viewer.setSelection(new StructuredSelection(editparts));
}
}
}
}