blob: 569d5541a1864c7fd9a85b68fd0cc03c7cda7ad1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Fundación Tecnalia Research & Innovation.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Huascar Espinoza - initial API and implementation
* Alejandra Ruíz - initial API and implementation
* Idoya Del Río - initial API and implementation
* Mari Carmen Palacios - initial API and implementation
* Angel López - initial API and implementation
*******************************************************************************/
package org.eclipse.opencert.sam.arg.arg.diagram.edit.commands;
import java.io.File;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.draw2d.geometry.Dimension;
import org.eclipse.draw2d.geometry.Point;
import org.eclipse.emf.cdo.common.id.CDOID;
import org.eclipse.emf.cdo.eresource.CDOResource;
import org.eclipse.emf.cdo.util.CDOUtil;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.emf.ecore.impl.MinimalEObjectImpl;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.emf.ecore.resource.ResourceSet;
import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl;
import org.eclipse.emf.ecore.xmi.XMLResource;
import org.eclipse.emf.internal.cdo.CDOObjectImpl;
import org.eclipse.emf.internal.cdo.object.CDOLegacyAdapter;
import org.eclipse.emf.transaction.TransactionalEditingDomain;
import org.eclipse.gef.EditPart;
import org.eclipse.gef.commands.Command;
import org.eclipse.gmf.runtime.common.core.command.CommandResult;
import org.eclipse.gmf.runtime.diagram.core.util.ViewUtil;
import org.eclipse.gmf.runtime.diagram.ui.commands.SetViewMutabilityCommand;
import org.eclipse.gmf.runtime.diagram.ui.editparts.CompartmentEditPart;
import org.eclipse.gmf.runtime.diagram.ui.editparts.DiagramEditPart;
import org.eclipse.gmf.runtime.diagram.ui.editparts.GraphicalEditPart;
import org.eclipse.gmf.runtime.diagram.ui.editparts.IGraphicalEditPart;
import org.eclipse.gmf.runtime.diagram.ui.editpolicies.CanonicalEditPolicy;
import org.eclipse.gmf.runtime.diagram.ui.requests.CreateConnectionViewRequest;
import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest;
import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest.ViewDescriptor;
import org.eclipse.gmf.runtime.diagram.ui.requests.RequestConstants;
import org.eclipse.gmf.runtime.emf.commands.core.command.AbstractTransactionalCommand;
import org.eclipse.gmf.runtime.emf.core.resources.GMFResource;
import org.eclipse.gmf.runtime.emf.core.resources.GMFResourceFactory;
import org.eclipse.gmf.runtime.emf.core.util.EObjectAdapter;
import org.eclipse.gmf.runtime.notation.Bounds;
import org.eclipse.gmf.runtime.notation.Diagram;
import org.eclipse.gmf.runtime.notation.Edge;
import org.eclipse.gmf.runtime.notation.LayoutConstraint;
import org.eclipse.gmf.runtime.notation.Location;
import org.eclipse.gmf.runtime.notation.Node;
import org.eclipse.gmf.runtime.notation.View;
import org.eclipse.gmf.runtime.notation.impl.DiagramImpl;
import org.eclipse.gmf.tooling.runtime.update.UpdaterLinkDescriptor;
import org.eclipse.opencert.sam.arg.arg.Agreement;
import org.eclipse.opencert.sam.arg.arg.ArgPackage;
import org.eclipse.opencert.sam.arg.arg.ArgumentElement;
import org.eclipse.opencert.sam.arg.arg.ArgumentElementCitation;
import org.eclipse.opencert.sam.arg.arg.Argumentation;
import org.eclipse.opencert.sam.arg.arg.AssertedChallenge;
import org.eclipse.opencert.sam.arg.arg.InformationElementCitation;
import org.eclipse.opencert.sam.arg.arg.ModelElement;
import org.eclipse.opencert.sam.arg.arg.diagram.edit.commands.RepairDawnViewLocationsCommand.CaseRepairDawnViewLocationsCanonicalEditPolicy;
import org.eclipse.opencert.sam.arg.arg.diagram.edit.parts.AgreementEditPart;
import org.eclipse.opencert.sam.arg.arg.diagram.edit.parts.ArgumentElementCitationEditPart;
import org.eclipse.opencert.sam.arg.arg.diagram.edit.parts.ArgumentReasoningEditPart;
import org.eclipse.opencert.sam.arg.arg.diagram.edit.parts.ArgumentationEditPart;
import org.eclipse.opencert.sam.arg.arg.diagram.edit.parts.AssertedChallengeEditPart;
import org.eclipse.opencert.sam.arg.arg.diagram.edit.parts.AssertedContextEditPart;
import org.eclipse.opencert.sam.arg.arg.diagram.edit.parts.AssertedCounterEvidenceEditPart;
import org.eclipse.opencert.sam.arg.arg.diagram.edit.parts.AssertedEvidenceEditPart;
import org.eclipse.opencert.sam.arg.arg.diagram.edit.parts.AssertedInferenceEditPart;
import org.eclipse.opencert.sam.arg.arg.diagram.edit.parts.CaseEditPart;
import org.eclipse.opencert.sam.arg.arg.diagram.edit.parts.Choice2EditPart;
import org.eclipse.opencert.sam.arg.arg.diagram.edit.parts.ChoiceEditPart;
import org.eclipse.opencert.sam.arg.arg.diagram.edit.parts.ClaimEditPart;
import org.eclipse.opencert.sam.arg.arg.diagram.edit.parts.InformationElementCitationEditPart;
import org.eclipse.opencert.sam.arg.arg.diagram.part.ArgDiagramUpdater;
import org.eclipse.opencert.sam.arg.arg.diagram.part.ArgLinkDescriptor;
import org.eclipse.opencert.sam.arg.arg.diagram.part.ArgNodeDescriptor;
import org.eclipse.opencert.sam.arg.arg.diagram.part.ArgVisualIDRegistry;
import org.eclipse.opencert.sam.arg.arg.impl.CaseImpl;
import org.eclipse.opencert.sam.arg.arg.impl.ClaimImpl;
/**
*
* @author Alejandra Ruiz
*/
/**
* @generated NOT
*/
public class RepairCDOViewLocationsCommand extends AbstractTransactionalCommand {
private LoadViewLocations sourceViewLocations;
private Point offset;
//private List<View> listViews;
private List<EObject> listObjects;
private View parentView;
private EditPart host;
/**
* @generated NOT
*/
public RepairCDOViewLocationsCommand (
LoadViewLocations l,
Point offset,
List<EObject> listNodes,
TransactionalEditingDomain editingDomain, View parentView,
EditPart host) {
super(editingDomain, "Repair location of views", getWorkspaceFiles(parentView));
this.sourceViewLocations = l;
this.parentView = parentView;
this.host = host;
//this.listViews = findViews(listNodes);
this.listObjects = listNodes;
this.offset = offset;
}
@SuppressWarnings("unused")
private List<View> findViews(List<EObject> listNodes)
{
List<View> res = new ArrayList<View>();
for(EObject elem : listNodes)
{
EditPart editPart = lookForEditPart(elem);
View view = ((IGraphicalEditPart)editPart).getNotationView();
res.add(view);
}
return res;
}
private EditPart lookForEditPart(EObject semantic) {
Collection<EditPart> editPartSet = ((IGraphicalEditPart) host).getViewer().getEditPartRegistry().values();
Iterator<EditPart> editPartIterator = editPartSet.iterator();
EditPart existedEditPart = null;
while(editPartIterator.hasNext() && existedEditPart == null) {
EditPart currentEditPart = editPartIterator.next();
if(isEditPartTypeAdapted(currentEditPart.getClass(), semantic.eClass()) && semantic.equals(((GraphicalEditPart)currentEditPart).resolveSemanticElement())) {
existedEditPart = currentEditPart;
}
}
return existedEditPart;
}
private boolean isEditPartTypeAdapted(Class<? extends EditPart> editPartClass, EClass eClass) {
if(DiagramEditPart.class.isAssignableFrom(editPartClass) || CompartmentEditPart.class.isAssignableFrom(editPartClass)) {
// the edit part is disqualified, as a compartment or a diagram can not be dropped
return false;
} else if(GraphicalEditPart.class.isAssignableFrom(editPartClass)) {
// check the edit part type against advised ones
return isEditPartTypeSuitableForEClass(editPartClass.asSubclass(GraphicalEditPart.class), eClass);
} else {
// only a GraphicalEditPart must be selected
return false;
}
}
protected boolean isEditPartTypeSuitableForEClass(Class<? extends GraphicalEditPart> editPartClass, EClass eClass) {
return true;
}
/**
* @generated NOT
*/
protected CommandResult doExecuteWithResult(IProgressMonitor monitor,
IAdaptable info) throws ExecutionException {
//if (listViews == null || listViews.isEmpty()) return CommandResult.newOKCommandResult();
if (listObjects == null || listObjects.isEmpty())
return CommandResult.newOKCommandResult();
CaseRepairCDODawnViewLocationsCanonicalEditPolicy kk = new CaseRepairCDODawnViewLocationsCanonicalEditPolicy();
//kk.setViews(listViews);
kk.setObjects(listObjects);
kk.setHost(host);
kk.setoffset(offset);
sourceViewLocations.LoadObjectLocations();
// kk.LoadObjectLocations(sourceViewLocations);
kk.refresh();
kk.deactivate(); // para que no invoque refreshSemantic() al eliminar del diagrama uno de los objetos
return CommandResult.newOKCommandResult();
}
/**
* @generated NOT
*/
public class CaseRepairCDODawnViewLocationsCanonicalEditPolicy extends CanonicalEditPolicy {
private Map<String, String> eObjectToIDMap = null;
//Map<String, Point> objectLocations = new HashMap<String, Point>();
Map<String, LayoutConstraint> objectLocations = new HashMap<String, LayoutConstraint>();
private Point offset;
//private List<View> listViews = null;
private List<EObject> listRootObjects = null;
/**
* @generated NOT
*/
public void setObjects(List<EObject> lro)
{
listRootObjects = lro;
for(EObject element : this.listRootObjects)
{
if(element instanceof CaseImpl)
System.out.println("CaseRepairCDODawnViewLocationsCanonicalEditPolicy.setObject(): Error object not allowed - " + element.getClass().getCanonicalName());
}
}
/**
* @generated NOT
*/
public void setoffset(Point offset)
{
this.offset = offset;
}
/**
* @generated NOT
*/
private String getModelFile(EObject model)
{
String ret ="";
// esto es un poco chapuzilla...
MinimalEObjectImpl model2 = (MinimalEObjectImpl)model;
// Si CDO: String name = model.toString();
// Si CDO Native: String name = model2.eProxyURI().toString();
String name = model2.eProxyURI().toString();
int index = name.indexOf("eProxyURI: ");
if (index != -1) index += "eProxyURI: ".length();
else index = 0;
name = name.substring(index);
ret = name.substring(0, name.indexOf("#"));
return ret;
}
// /**
// * @generated NOT
// */
public void LoadObjectLocations(LoadViewLocations sourceLocations)
{
sourceLocations.toString();
// sourceLocations.getObjectLocation(key)
// objectLocations.put(me.getId()+me.getName()+me.eClass().getName(), lc);
// DiagramImpl diagramImpl = null;
// // Create a resource set to hold the resources.
// //
// ResourceSet resourceSet = new ResourceSetImpl();
//
// // Register the appropriate resource factory to handle all file extensions.
// //
// resourceSet.getResourceFactoryRegistry().getExtensionToFactoryMap().put
// (Resource.Factory.Registry.DEFAULT_EXTENSION,
// new GMFResourceFactory());
//
// // Register the package to ensure it is available during loading.
// //
// resourceSet.getPackageRegistry().put
// (ArgPackage.eNS_URI,
// ArgPackage.eINSTANCE);
//
// // Construct the URI for the instance file.
// // The argument is treated as a file path only if it denotes an existing file.
// // Otherwise, it's directly treated as a URL.
// //
//
// File file = new File(fileSource);
// URI uri = file.isFile() ? URI.createFileURI(file.getAbsolutePath()): URI.createURI(fileSource);
//
// try {
// // Demand load resource for this file.
// //
// Resource resource = resourceSet.getResource(uri, true);
// System.out.println("Loaded " + uri);
//
// diagramImpl = (DiagramImpl)resource.getContents().get(0);
// }
// catch (RuntimeException exception) {
// System.out.println("Problem loading " + uri);
// exception.printStackTrace();
// }
//
// //CaseImpl cs = (CaseImpl) diagramImpl.basicGetElement();
// //GMFResource aa =(GMFResource) cs.eResource();
// GMFResource aa = (GMFResource)diagramImpl.eResource();
// EObject obj = diagramImpl.basicGetElement();
// //GMFResource bb = (GMFResource)obj.eResource(); //OJO valor NULL
// String sModelFile = getModelFile(obj);
// File modelFile = new File(sModelFile);
// URI modelUri = modelFile.isFile() ? URI.createFileURI(modelFile.getAbsolutePath()): URI.createURI(sModelFile);
// Resource modelResource = resourceSet.getResource(modelUri, true);
// System.out.println("Loaded " + modelUri);
// GMFResource bb = (GMFResource)modelResource;
//
// DiagramImpl d = (DiagramImpl)aa.getContents().get(0);
// for(Object elem0 : d.getChildren())
// {
// if(elem0 instanceof Node)
// {
// Node view= (Node)elem0;
//
// //String objectId = aa.getID(view);
// String objectId = bb.getID(view.getElement());
//
// //<layoutConstraint xmi:type="notation:Bounds" xmi:id="_HxWc8zZfEeOqz6ZKAHqxFQ" x="440" y="200" width="96" height="91"/>
// LayoutConstraint lc = view.getLayoutConstraint();
//
// // hay varios elementos con el mismo UUID
// // Guardo no el id de la view sino del modelo
// /* PROBLEMA los nuevos ficheros (diagrama y modelo tienen UUIDs muy diferentes!!!!)
// System.out.println("key = "+ objectId+view.getElement().getClass().getName());
// objectLocations.put(objectId+view.getElement().getClass().getName(), pt);
// */
// ModelElement me = (ModelElement)view.getElement();
// //MCP: OJO los UUIDs han cambiado porque he copiado los modelos y ademas dan problemas las superclases en el caso de AgreementImpl!!!!
// // solo si guardo traza transformacion podre hacerlo correctamente
// //me.eClass().getName()
// System.out.println("key = "+ me.getId()+me.getName()+me.getClass().getName());
// objectLocations.put(me.getId()+me.getName()+me.eClass().getName(), lc);
// }
// }
}
/**
* @generated NOT
*/
protected IStatus changeLocations(List<View> nodel, Location offset) {
for(View elem : nodel)
{
changeLocation((Node)elem, offset);
}
return Status.OK_STATUS;
}
/**
* @generated NOT
*/
private IStatus changeLocation(Node node, Location offset) {
Location lc = (Location) node.getLayoutConstraint();
int x = lc.getX(); int y = lc.getY();
lc.setX(offset.getX()+x);
lc.setY(offset.getY()+y);
return Status.OK_STATUS;
}
/**
* @generated
*/
private Set<EStructuralFeature> myFeaturesToSynchronize;
/**
* @generated
*/
protected void refreshOnActivate() {
// Need to activate editpart children before invoking the canonical refresh for EditParts to add event listeners
List<?> c = getHost().getChildren();
for (int i = 0; i < c.size(); i++) {
((EditPart) c.get(i)).activate();
}
super.refreshOnActivate();
}
/**
* @generated
*/
protected Set getFeaturesToSynchronize() {
if (myFeaturesToSynchronize == null) {
myFeaturesToSynchronize = new HashSet<EStructuralFeature>();
myFeaturesToSynchronize
.add(ArgPackage.eINSTANCE.getCase_Argument());
myFeaturesToSynchronize.add(ArgPackage.eINSTANCE
.getCase_Argumentation());
}
return myFeaturesToSynchronize;
}
/**
* @generated
*/
@SuppressWarnings("rawtypes")
protected List getSemanticChildrenList() {
View viewObject = (View) getHost().getModel();
LinkedList<EObject> result = new LinkedList<EObject>();
List<ArgNodeDescriptor> childDescriptors = ArgDiagramUpdater
.getCase_1000SemanticChildren(viewObject);
for (ArgNodeDescriptor d : childDescriptors) {
result.add(d.getModelElement());
}
return result;
}
/**
* @generated
*/
protected boolean isOrphaned(Collection<EObject> semanticChildren,
final View view) {
if (isShortcut(view)) {
return ArgDiagramUpdater.isShortcutOrphaned(view);
}
return isMyDiagramElement(view)
&& !semanticChildren.contains(view.getElement());
}
/**
* @generated NOT
*/
private boolean isMyDiagramElement(View view) {
int visualID = ArgVisualIDRegistry.getVisualID(view);
// Start MCP
boolean res2 = false;
if(view.getElement() != null)
{
DiagramImpl diagramImpl = (DiagramImpl)getHost().getModel();
CaseImpl cs = (CaseImpl) diagramImpl.basicGetElement();
CDOResource bb = (CDOResource) cs.eResource();
// GMFResource aa = null; CDOResource bb = null;
// if(cs.eResource() instanceof GMFResource)
// aa =(GMFResource) cs.eResource();
// else if(cs.eResource() instanceof CDOResource)
// {
// bb =(CDOResource) cs.eResource();
// }
switch (visualID) {
case ClaimEditPart.VISUAL_ID:
case ArgumentReasoningEditPart.VISUAL_ID:
case InformationElementCitationEditPart.VISUAL_ID:
case ArgumentElementCitationEditPart.VISUAL_ID:
case ChoiceEditPart.VISUAL_ID:
case AgreementEditPart.VISUAL_ID:
case ArgumentationEditPart.VISUAL_ID:
ModelElement me = (ModelElement)ViewUtil.resolveSemanticElement(view);
if(me != null)
{
String meID = "-1";
CDOID mecdoID = CDOUtil.getCDOObject(me).cdoID();
if (bb != null) meID = getID(mecdoID.toString());
// if (aa != null) meID = aa.getID(me);
// else if (bb != null) meID = getID(me);
//
for(EObject elem : this.listRootObjects)
{
String rootObjectId = "-1";
// if (aa != null) rootObjectId= aa.getID(elem);
// else if (bb != null) rootObjectId = getID(elem);
CDOID elemcdoID = CDOUtil.getCDOObject(elem).cdoID();
rootObjectId = getID(elemcdoID.toString());
if(rootObjectId == null) // Dawn cdo. a veces incluyo las relaciones y dan problemas y otras veces no
{
continue;
}
if(meID!= null && meID.compareToIgnoreCase(rootObjectId) == 0 &&
me.getClass().equals(elem.getClass())) // hay varios elementos con el mismo UUID
{
res2 = true;
break;
}
}
}
}
}
// End MCP
switch (visualID) {
case ClaimEditPart.VISUAL_ID:
case ArgumentReasoningEditPart.VISUAL_ID:
case InformationElementCitationEditPart.VISUAL_ID:
case ArgumentElementCitationEditPart.VISUAL_ID:
case ChoiceEditPart.VISUAL_ID:
case AgreementEditPart.VISUAL_ID:
case ArgumentationEditPart.VISUAL_ID:
// Start MCP
// return true;
return true && res2;
// End MCP
}
return false;
}
/**
* @generated
*/
protected boolean isShortcut(View view) {
return view.getEAnnotation("Shortcut") != null; //$NON-NLS-1$
}
/**
* @generated NOT
*/
// Start MCP
private void setIDs() {
eObjectToIDMap = new HashMap<String, String>();
List<EObject> result = getSemanticChildrenList();
for(EObject elem : result)
{
// Si CDO Native
CDOID cdoID = CDOUtil.getCDOObject(elem).cdoID();
Long cdoIdLong = new Long(cdoID.toURIFragment());
eObjectToIDMap.put(cdoID.toString(), cdoID.toString());
ModelElement me = (ModelElement)elem;
System.out.println("key = "+ me.getId()+"|"+me.getName()+"|"+me.getClass().getName() + ". (" + cdoID.toString() + ")");
if(true == elem instanceof ClaimImpl)
{
ClaimImpl obj = (ClaimImpl)elem;
EObject elem2 = obj.getChoice();
if(elem2 != null)
{
/* Si CDO:
CDOLegacyAdapter cdaA2 = (CDOLegacyAdapter)elem2.eAdapters().get(0);
eObjectToIDMap.put(elem2, cdaA2.cdoID().toString());
*/
// Si CDO Native
CDOID cdoID2 = CDOUtil.getCDOObject(elem2).cdoID();
eObjectToIDMap.put(cdoID2.toString(), cdoID2.toString());
ModelElement me2 = (ModelElement)elem2;
System.out.println("key = "+ me2.getId()+"|"+me2.getName()+"|"+me2.getClass().getName() + ". (" + cdoID2.toString() + ")");
}
}
}
}
// End MCP
/**
* @generated NOT
*/
// Start MCP
private String getID(String eObjectID) {
if (eObjectToIDMap == null)
{
return null;
}
else
{
return eObjectToIDMap.get(eObjectID);
}
}
// End MCP
/**
* @generated NOT
*/
protected void refreshSemantic() {
if (resolveSemanticElement() == null) {
return;
}
LinkedList<IAdaptable> createdViews = new LinkedList<IAdaptable>();
List<ArgNodeDescriptor> childDescriptors = ArgDiagramUpdater
.getCase_1000SemanticChildren((View) getHost().getModel());
// Start MCP
//eliminar los hijos que no son de este diagram
DiagramImpl diagramImpl = (DiagramImpl)getHost().getModel();
CaseImpl cs = (CaseImpl) diagramImpl.basicGetElement();
CDOResource bb =(CDOResource) cs.eResource();
setIDs();
Set<String> rootObjectIds = new HashSet<String>();
for(EObject elem : this.listRootObjects)
{
if(false == elem instanceof CaseImpl)
{
String rootObjectId = "-1";
CDOID elemcdoID = CDOUtil.getCDOObject(elem).cdoID();
rootObjectId = getID(elemcdoID.toString());
rootObjectIds.add(rootObjectId);
}
}
LinkedList<ArgNodeDescriptor> c = new LinkedList<ArgNodeDescriptor>();
for(ArgNodeDescriptor next : childDescriptors)
{
ModelElement me = (ModelElement)next.getModelElement();
if(me != null)
{
String meID = "-1";
CDOID mecdoID = CDOUtil.getCDOObject(me).cdoID();
meID = getID(mecdoID.toString());
if(meID == null || !rootObjectIds.contains(meID))
{
c.add(next);
}
else if (meID != null && rootObjectIds.contains(meID))
{
boolean OK = false;
for(EObject elem : this.listRootObjects) // hay varios elementos con el mismo UUID
{
if(me.getClass().equals(elem.getClass()))
{
OK = true;
break;
}
}
if(!OK) c.add(next);
}
}
}
childDescriptors.removeAll(c);
//End MCP
LinkedList<View> orphaned = new LinkedList<View>();
// we care to check only views we recognize as ours and not shortcuts
LinkedList<View> knownViewChildren = new LinkedList<View>();
for (View v : getViewChildren()) {
if (isShortcut(v)) {
if (ArgDiagramUpdater.isShortcutOrphaned(v)) {
orphaned.add(v);
}
continue;
}
if (isMyDiagramElement(v)) {
knownViewChildren.add(v);
}
}
// Start MCP
/*
// alternative to #cleanCanonicalSemanticChildren(getViewChildren(), semanticChildren)
//
// iteration happens over list of desired semantic elements, trying to find best matching View, while original CEP
// iterates views, potentially losing view (size/bounds) information - i.e. if there are few views to reference same EObject, only last one
// to answer isOrphaned == true will be used for the domain element representation, see #cleanCanonicalSemanticChildren()
for (Iterator<ArgNodeDescriptor> descriptorsIterator = childDescriptors
.iterator(); descriptorsIterator.hasNext();) {
ArgNodeDescriptor next = descriptorsIterator.next();
String hint = ArgVisualIDRegistry.getType(next.getVisualID());
LinkedList<View> perfectMatch = new LinkedList<View>(); // both semanticElement and hint match that of NodeDescriptor
for (View childView : getViewChildren()) {
EObject semanticElement = childView.getElement();
if (next.getModelElement().equals(semanticElement)) {
if (hint.equals(childView.getType())) {
perfectMatch.put(semanticElement, childView);
// actually, can stop iteration over view children here, but
// may want to use not the first view but last one as a 'real' match (the way original CEP does
// with its trick with viewToSemanticMap inside #cleanCanonicalSemanticChildren
}
}
}
if (perfectMatch.size() > 0) {
descriptorsIterator.remove(); // precise match found no need to create anything for the NodeDescriptor
// use only one view (first or last?), keep rest as orphaned for further consideration
knownViewChildren.remove(perfectMatch.getFirst());
}
}
*/
// End MCP
// those left in knownViewChildren are subject to removal - they are our diagram elements we didn't find match to,
// or those we have potential matches to, and thus need to be recreated, preserving size/location information.
orphaned.addAll(knownViewChildren);
//
ArrayList<CreateViewRequest.ViewDescriptor> viewDescriptors = new ArrayList<CreateViewRequest.ViewDescriptor>(
childDescriptors.size());
for (ArgNodeDescriptor next : childDescriptors) {
String hint = ArgVisualIDRegistry.getType(next.getVisualID());
IAdaptable elementAdapter = new CanonicalElementAdapter(
next.getModelElement(), hint);
CreateViewRequest.ViewDescriptor descriptor = new CreateViewRequest.ViewDescriptor(
elementAdapter, Node.class, hint, ViewUtil.APPEND, false,
host().getDiagramPreferencesHint());
viewDescriptors.add(descriptor);
}
boolean changed = deleteViews(orphaned.iterator());
// Start MCP
for(ViewDescriptor oneviewDescriptor : viewDescriptors)
{
//CreateViewRequest request = getCreateViewRequest(viewDescriptors);
List<ViewDescriptor> oneviewDescriptorl = new ArrayList(1);
oneviewDescriptorl.add(oneviewDescriptor);
CreateViewRequest request = getCreateViewRequest(oneviewDescriptorl);
ModelElement me = (ModelElement)oneviewDescriptor.getElementAdapter().getAdapter(ModelElement.class);
//Point newlocation = objectLocations.get(me.getId());
// hay varios elementos con el mismo UUID
/* PROBLEMA los nuevos ficheros (diagrama y modelo tienen IDs muy diferentes!!!!)
System.out.println("key = "+ aa.getID(me)+ me.getClass().getName());
Point newlocation = objectLocations.get(aa.getID(me)+ me.getClass().getName());
*/
/* Dawn cdo. Esto debería cambiarlo si lo necesito al cambiar esta funcion
String objectId = ((XMLResource) me.eResource()).getID(me);
*/
System.out.println("key = "+ me.getId()+me.getName()+me.getClass().getName());
/*
Point newlocation = objectLocations.get(me.getId()+me.getName()+me.getClass().getName());
int x = newlocation.x(); int y = newlocation.y();
*/
Bounds lc = (Bounds) sourceViewLocations.getObjectLocation(me.getId()+me.getName()+me.eClass().getName());
//MCP: OJO los UUIDs han cambiado porque he copiado los modelos y ademas dan problemas las superclases en el caso de AgreementImpl!!!!
// solo si guardo traza transformacion podre hacerlo correctamente
int x = 0; int y = 0;
if(lc != null)
{
x = lc.getX(); y = lc.getY();
Dimension newSize = new Dimension(lc.getWidth(), lc.getHeight());
request.setSize(newSize);
}
Point newlocation = new Point();
newlocation.setX(offset.x()+x);
newlocation.setY(offset.y()+y);
request.setLocation(newlocation);
Command cmd = getCreateViewCommand(request);
if (cmd != null && cmd.canExecute()) {
SetViewMutabilityCommand.makeMutable(
new EObjectAdapter(host().getNotationView())).execute();
executeCommand(cmd);
@SuppressWarnings("unchecked")
List<IAdaptable> nl = (List<IAdaptable>) request.getNewObject();
createdViews.addAll(nl);
}
}
// End MCP
if (changed || createdViews.size() > 0) {
postProcessRefreshSemantic(createdViews);
}
Collection<IAdaptable> createdConnectionViews = refreshConnections();
/*MCP
if (createdViews.size() > 1) {
// perform a layout of the container
DeferredLayoutCommand layoutCmd = new DeferredLayoutCommand(host()
.getEditingDomain(), createdViews, host());
executeCommand(new ICommandProxy(layoutCmd));
}
*/
createdViews.addAll(createdConnectionViews);
makeViewsImmutable(createdViews);
}
/**
* @generated
*/
private Collection<IAdaptable> refreshConnections() {
Domain2Notation domain2NotationMap = new Domain2Notation();
Collection<ArgLinkDescriptor> linkDescriptors = collectAllLinks(
getDiagram(), domain2NotationMap);
Collection existingLinks = new LinkedList(getDiagram().getEdges());
for (Iterator linksIterator = existingLinks.iterator(); linksIterator
.hasNext();) {
Edge nextDiagramLink = (Edge) linksIterator.next();
int diagramLinkVisualID = ArgVisualIDRegistry
.getVisualID(nextDiagramLink);
if (diagramLinkVisualID == -1) {
if (nextDiagramLink.getSource() != null
&& nextDiagramLink.getTarget() != null) {
linksIterator.remove();
}
continue;
}
EObject diagramLinkObject = nextDiagramLink.getElement();
EObject diagramLinkSrc = nextDiagramLink.getSource().getElement();
EObject diagramLinkDst = nextDiagramLink.getTarget().getElement();
for (Iterator<ArgLinkDescriptor> linkDescriptorsIterator = linkDescriptors
.iterator(); linkDescriptorsIterator.hasNext();) {
ArgLinkDescriptor nextLinkDescriptor = linkDescriptorsIterator
.next();
if (diagramLinkObject == nextLinkDescriptor.getModelElement()
&& diagramLinkSrc == nextLinkDescriptor.getSource()
&& diagramLinkDst == nextLinkDescriptor
.getDestination()
&& diagramLinkVisualID == nextLinkDescriptor
.getVisualID()) {
linksIterator.remove();
linkDescriptorsIterator.remove();
break;
}
}
}
deleteViews(existingLinks.iterator());
return createConnections(linkDescriptors, domain2NotationMap);
}
/**
* @generated
*/
private Collection<ArgLinkDescriptor> collectAllLinks(View view,
Domain2Notation domain2NotationMap) {
if (!CaseEditPart.MODEL_ID.equals(ArgVisualIDRegistry.getModelID(view))) {
return Collections.emptyList();
}
LinkedList<ArgLinkDescriptor> result = new LinkedList<ArgLinkDescriptor>();
switch (ArgVisualIDRegistry.getVisualID(view)) {
case CaseEditPart.VISUAL_ID: {
if (!domain2NotationMap.containsKey(view.getElement())) {
result.addAll(ArgDiagramUpdater
.getCase_1000ContainedLinks(view));
}
domain2NotationMap.putView(view.getElement(), view);
break;
}
case ClaimEditPart.VISUAL_ID: {
if (!domain2NotationMap.containsKey(view.getElement())) {
result.addAll(ArgDiagramUpdater
.getClaim_2001ContainedLinks(view));
}
domain2NotationMap.putView(view.getElement(), view);
break;
}
case ArgumentReasoningEditPart.VISUAL_ID: {
if (!domain2NotationMap.containsKey(view.getElement())) {
result.addAll(ArgDiagramUpdater
.getArgumentReasoning_2003ContainedLinks(view));
}
domain2NotationMap.putView(view.getElement(), view);
break;
}
case InformationElementCitationEditPart.VISUAL_ID: {
if (!domain2NotationMap.containsKey(view.getElement())) {
result.addAll(ArgDiagramUpdater
.getInformationElementCitation_2005ContainedLinks(view));
}
domain2NotationMap.putView(view.getElement(), view);
break;
}
case ArgumentElementCitationEditPart.VISUAL_ID: {
if (!domain2NotationMap.containsKey(view.getElement())) {
result.addAll(ArgDiagramUpdater
.getArgumentElementCitation_2006ContainedLinks(view));
}
domain2NotationMap.putView(view.getElement(), view);
break;
}
case ChoiceEditPart.VISUAL_ID: {
if (!domain2NotationMap.containsKey(view.getElement())) {
result.addAll(ArgDiagramUpdater
.getChoice_2007ContainedLinks(view));
}
domain2NotationMap.putView(view.getElement(), view);
break;
}
case AgreementEditPart.VISUAL_ID: {
if (!domain2NotationMap.containsKey(view.getElement())) {
result.addAll(ArgDiagramUpdater
.getAgreement_2002ContainedLinks(view));
}
domain2NotationMap.putView(view.getElement(), view);
break;
}
case ArgumentationEditPart.VISUAL_ID: {
if (!domain2NotationMap.containsKey(view.getElement())) {
result.addAll(ArgDiagramUpdater
.getArgumentation_2004ContainedLinks(view));
}
domain2NotationMap.putView(view.getElement(), view);
break;
}
case Choice2EditPart.VISUAL_ID: {
if (!domain2NotationMap.containsKey(view.getElement())) {
result.addAll(ArgDiagramUpdater
.getChoice_3001ContainedLinks(view));
}
domain2NotationMap.putView(view.getElement(), view);
break;
}
case AssertedInferenceEditPart.VISUAL_ID: {
if (!domain2NotationMap.containsKey(view.getElement())) {
result.addAll(ArgDiagramUpdater
.getAssertedInference_4001ContainedLinks(view));
}
domain2NotationMap.putView(view.getElement(), view);
break;
}
case AssertedEvidenceEditPart.VISUAL_ID: {
if (!domain2NotationMap.containsKey(view.getElement())) {
result.addAll(ArgDiagramUpdater
.getAssertedEvidence_4002ContainedLinks(view));
}
domain2NotationMap.putView(view.getElement(), view);
break;
}
case AssertedContextEditPart.VISUAL_ID: {
if (!domain2NotationMap.containsKey(view.getElement())) {
result.addAll(ArgDiagramUpdater
.getAssertedContext_4003ContainedLinks(view));
}
domain2NotationMap.putView(view.getElement(), view);
break;
}
case AssertedChallengeEditPart.VISUAL_ID: {
if (!domain2NotationMap.containsKey(view.getElement())) {
result.addAll(ArgDiagramUpdater
.getAssertedChallenge_4004ContainedLinks(view));
}
domain2NotationMap.putView(view.getElement(), view);
break;
}
case AssertedCounterEvidenceEditPart.VISUAL_ID: {
if (!domain2NotationMap.containsKey(view.getElement())) {
result.addAll(ArgDiagramUpdater
.getAssertedCounterEvidence_4005ContainedLinks(view));
}
domain2NotationMap.putView(view.getElement(), view);
break;
}
}
for (Iterator children = view.getChildren().iterator(); children
.hasNext();) {
result.addAll(collectAllLinks((View) children.next(),
domain2NotationMap));
}
for (Iterator edges = view.getSourceEdges().iterator(); edges.hasNext();) {
result.addAll(collectAllLinks((View) edges.next(),
domain2NotationMap));
}
return result;
}
/**
* @generated
*/
private Collection<IAdaptable> createConnections(
Collection<ArgLinkDescriptor> linkDescriptors,
Domain2Notation domain2NotationMap) {
LinkedList<IAdaptable> adapters = new LinkedList<IAdaptable>();
// Start MCP
// OJO: NO FUNCIONA!!!!!
// Problemas con AssertedChallenge. Deben ser las ultimas en crearse por si apuntan a otro edge
Collection<ArgLinkDescriptor> linkDescriptors2 = new LinkedList<ArgLinkDescriptor>();
List<ArgLinkDescriptor> lastEdges = new ArrayList<ArgLinkDescriptor>();
for (ArgLinkDescriptor nextLinkDescriptor : linkDescriptors) {
if(nextLinkDescriptor.getModelElement() instanceof AssertedChallenge)
{
lastEdges.add(nextLinkDescriptor);
}
else
{
linkDescriptors2.add(nextLinkDescriptor);
}
}
// annadir AssertedChallenge edges al final
if(!lastEdges.isEmpty())
{
/// OJO : Falta reordenar cuando un AssertedChallenge apunta a otro AssertedChallenge
for(ArgLinkDescriptor nextLinkDescriptor : lastEdges)
{
linkDescriptors2.add(nextLinkDescriptor);
}
}
//for (ArgLinkDescriptor nextLinkDescriptor : linkDescriptors) {
// End MCP
for (ArgLinkDescriptor nextLinkDescriptor : linkDescriptors2) {
EditPart sourceEditPart = getSourceEditPart(nextLinkDescriptor,
domain2NotationMap);
EditPart targetEditPart = getTargetEditPart(nextLinkDescriptor,
domain2NotationMap);
if (sourceEditPart == null || targetEditPart == null) {
continue;
}
CreateConnectionViewRequest.ConnectionViewDescriptor descriptor = new CreateConnectionViewRequest.ConnectionViewDescriptor(
nextLinkDescriptor.getSemanticAdapter(),
ArgVisualIDRegistry.getType(nextLinkDescriptor
// Start MCP
// hacer persistentes los edges
//.getVisualID()), ViewUtil.APPEND, false,
.getVisualID()), ViewUtil.APPEND, true,
// End MCP
((IGraphicalEditPart) getHost())
.getDiagramPreferencesHint());
CreateConnectionViewRequest ccr = new CreateConnectionViewRequest(
descriptor);
ccr.setType(RequestConstants.REQ_CONNECTION_START);
ccr.setSourceEditPart(sourceEditPart);
sourceEditPart.getCommand(ccr);
ccr.setTargetEditPart(targetEditPart);
ccr.setType(RequestConstants.REQ_CONNECTION_END);
Command cmd = targetEditPart.getCommand(ccr);
if (cmd != null && cmd.canExecute()) {
executeCommand(cmd);
IAdaptable viewAdapter = (IAdaptable) ccr.getNewObject();
if (viewAdapter != null) {
adapters.add(viewAdapter);
}
}
}
return adapters;
}
/**
* @generated
*/
private EditPart getEditPart(EObject domainModelElement,
Domain2Notation domain2NotationMap) {
View view = (View) domain2NotationMap.get(domainModelElement);
if (view != null) {
return (EditPart) getHost().getViewer().getEditPartRegistry()
.get(view);
}
return null;
}
/**
* @generated
*/
private Diagram getDiagram() {
return ((View) getHost().getModel()).getDiagram();
}
/**
* @generated
*/
private EditPart getSourceEditPart(UpdaterLinkDescriptor descriptor,
Domain2Notation domain2NotationMap) {
return getEditPart(descriptor.getSource(), domain2NotationMap);
}
/**
* @generated
*/
private EditPart getTargetEditPart(UpdaterLinkDescriptor descriptor,
Domain2Notation domain2NotationMap) {
return getEditPart(descriptor.getDestination(), domain2NotationMap);
}
/**
* @generated
*/
protected final EditPart getHintedEditPart(EObject domainModelElement,
Domain2Notation domain2NotationMap, int hintVisualId) {
View view = (View) domain2NotationMap.getHinted(domainModelElement,
ArgVisualIDRegistry.getType(hintVisualId));
if (view != null) {
return (EditPart) getHost().getViewer().getEditPartRegistry()
.get(view);
}
return null;
}
/**
* @generated
*/
@SuppressWarnings("serial")
protected class Domain2Notation extends HashMap<EObject, View> {
/**
* @generated
*/
public boolean containsDomainElement(EObject domainElement) {
return this.containsKey(domainElement);
}
/**
* @generated
*/
public View getHinted(EObject domainEObject, String hint) {
return this.get(domainEObject);
}
/**
* @generated
*/
public void putView(EObject domainElement, View view) {
if (!containsKey(view.getElement()) || !isShortcut(view)) {
this.put(domainElement, view);
}
}
}
}
}