Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Modeling » Papyrus » Can't convert diagram to PapyrusUMLComponentDiagram
Can't convert diagram to PapyrusUMLComponentDiagram [message #1820786] Tue, 28 January 2020 19:10 Go to next message
Adrian Bernal Bermejo is currently offline Adrian Bernal BermejoFriend
Messages: 11
Registered: May 2017
Junior Member
Hi,

I have a problem when I switch the architecture context and my diagram is converted to the uml component diagram.

When the method convertDiagram(Diagram diagram) from org.eclipse.papyrus.uml.architecture.commands.UMLModelConversionCommand is executed, the type of element represented by the diagram is compared in order to know if the component diagram element is a package or a component. As the class org.eclipse.uml2.uml.Package is not imported, the class of the element is compared to java.lang.Package. So that diagramKind is not initialized and the conversion is not done.

Is there a workaround to make it work for my plugin?

Thanks.

package org.eclipse.papyrus.uml.architecture.commands;

import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.gmf.runtime.notation.Diagram;
import org.eclipse.papyrus.infra.architecture.ArchitectureDomainManager;
import org.eclipse.papyrus.infra.core.architecture.RepresentationKind;
import org.eclipse.papyrus.infra.core.resource.ModelSet;
import org.eclipse.papyrus.infra.gmfdiag.common.model.NotationUtils;
import org.eclipse.papyrus.infra.gmfdiag.common.utils.DiagramUtils;
import org.eclipse.papyrus.infra.gmfdiag.representation.PapyrusDiagram;
import org.eclipse.papyrus.infra.gmfdiag.style.PapyrusDiagramStyle;
import org.eclipse.papyrus.infra.gmfdiag.style.StyleFactory;
import org.eclipse.papyrus.infra.nattable.model.nattable.Table;
import org.eclipse.papyrus.infra.nattable.representation.PapyrusTable;
import org.eclipse.papyrus.uml.architecture.UMLArchitectureContextIds;
import org.eclipse.papyrus.uml.architecture.UMLDiagramKinds;
import org.eclipse.papyrus.uml.architecture.UMLDiagramTypes;
import org.eclipse.papyrus.uml.architecture.UMLTableKinds;
import org.eclipse.papyrus.uml.diagram.common.commands.AbstractModelConversionCommand;
import org.eclipse.uml2.uml.Component;
import org.eclipse.uml2.uml.StructuredClassifier;

/**
 * A command to convert a model from an arbitrary context to the UML language context
 */
public class UMLModelConversionCommand extends AbstractModelConversionCommand {

	/**
	 * @see org.eclipse.papyrus.uml.diagram.common.commands.ModelConversionCommandBase#doConvertModel(org.eclipse.papyrus.infra.core.resource.ModelSet)
	 *
	 * @param modelSet
	 */
	@Override
	public void doConvertModel(ModelSet modelSet) {
		final Resource notationResource = NotationUtils.getNotationResource(modelSet);
		if (notationResource != null) {
			for (EObject eObject : notationResource.getContents()) {
				if (eObject instanceof Diagram)
					convertDiagram((Diagram)eObject);
				else if (eObject instanceof Table)
					convertTable((Table)eObject);
			}
		}
	}

	@SuppressWarnings("unchecked")
	protected void convertDiagram(Diagram diagram) {
		// get the existing diagram kind id if any
		String diagramKindId = null;
		PapyrusDiagramStyle pvs = DiagramUtils.getPapyrusDiagramStyle(diagram);
		if (pvs != null) {
			diagramKindId = pvs.getDiagramKindId();
		}
		
		// return if the existing diagram kind is already in the UML language
		if (diagramKindId != null) {
			PapyrusDiagram kind = getDiagramKindById(diagramKindId);
			if (kind != null && UMLArchitectureContextIds.UML.equals(kind.getLanguage().getId())) {
				return;
			}
		}
		
		// Choose a UML diagram kind based on the diagram's type (and the diagram's element)
		PapyrusDiagram diagramKind = null;
		if (UMLDiagramTypes.ACTIVITY_DIAGRAM.equals(diagram.getType())) {
			diagramKind = getDiagramKindById(UMLDiagramKinds.ACTIVITY_DIAGRAM);
		} else if (UMLDiagramTypes.CLASS_DIAGRAM.equals(diagram.getType())) {
			diagramKind = getDiagramKindById(UMLDiagramKinds.CLASS_DIAGRAM);
		} else if (UMLDiagramTypes.COMMUNICATION_DIAGRAM.equals(diagram.getType())) {
			diagramKind = getDiagramKindById(UMLDiagramKinds.COMMUNICATION_DIAGRAM);
		} else if (UMLDiagramTypes.COMPONENT_DIAGRAM.equals(diagram.getType())) {
			if (diagram.getElement() instanceof Component) {
				diagramKind = getDiagramKindById(UMLDiagramKinds.COMPONENT_DIAGRAM_IN_COMPONENT);
			} else if (diagram.getElement() instanceof Package) {
				diagramKind = getDiagramKindById(UMLDiagramKinds.COMPONENT_DIAGRAM_IN_PACKAGE);
			}
		} else if (UMLDiagramTypes.COMPOSITE_STRUCTURE_DIAGRAM.equals(diagram.getType())) {
			if (diagram.getElement() instanceof StructuredClassifier) {
				diagramKind = getDiagramKindById(UMLDiagramKinds.COMPOSITE_STRUCTURE_DIAGRAM_IN_STRUCTURED_CLASSIFIER);
			} else if (diagram.getElement() instanceof Package) {
				diagramKind = getDiagramKindById(UMLDiagramKinds.COMPOSITE_STRUCTURE_DIAGRAM_IN_PACKAGE);
			}
		} else if (UMLDiagramTypes.DEPLOYMENT_DIAGRAM.equals(diagram.getType())) {
			diagramKind = getDiagramKindById(UMLDiagramKinds.DEPLOYMENT_DIAGRAM);
		} else if (UMLDiagramTypes.INTERACTION_OVERVIEW_DIAGRAM.equals(diagram.getType())) {
			diagramKind = getDiagramKindById(UMLDiagramKinds.INTERACTION_OVERVIEW_DIAGRAM);
		} else if (UMLDiagramTypes.PROFILE_DIAGRAM.equals(diagram.getType())) {
			diagramKind = getDiagramKindById(UMLDiagramKinds.PROFILE_DIAGRAM);
		} else if (UMLDiagramTypes.SEQUENCE_DIAGRAM.equals(diagram.getType())) {
			diagramKind = getDiagramKindById(UMLDiagramKinds.SEQUENCE_DIAGRAM);
		} else if (UMLDiagramTypes.STATE_MACHINE_DIAGRAM.equals(diagram.getType())) {
			diagramKind = getDiagramKindById(UMLDiagramKinds.STATE_MACHINE_DIAGRAM);
		} else if (UMLDiagramTypes.TIMING_DIAGRAM.equals(diagram.getType())) {
			diagramKind = getDiagramKindById(UMLDiagramKinds.TIMING_DIAGRAM);
		} else if (UMLDiagramTypes.USE_CASE_DIAGRAM.equals(diagram.getType())) {
			diagramKind = getDiagramKindById(UMLDiagramKinds.USE_CASE_DIAGRAM);
		}
		
		// set the new diagram kind
		if (diagramKind != null) {
			if (pvs == null){
				pvs = StyleFactory.eINSTANCE.createPapyrusDiagramStyle();
				pvs.setOwner(diagram.getElement());
				diagram.getStyles().add(pvs);
			}
			pvs.setDiagramKindId(diagramKind.getId());
		}
	}
	
	protected void convertTable(Table table) {
		// get the existing diagram kind id if any
		String tableKindId = table.getTableKindId();
		
		// return if the existing table kind is already in the UML language
		if (tableKindId != null) {
			RepresentationKind kind = getTableKindById(tableKindId);
			if (kind != null && UMLArchitectureContextIds.UML.equals(kind.getLanguage().getId())) {
				return;
			}
		}
		
		// set the new table kind to a generic table (to make it visible in the model explorer)
		// this does not by itself make the table readable under the UML context
		PapyrusTable kind = getTableKindById(UMLTableKinds.GENERIC_TABLE);
		if (kind != null) {
			table.setTableKindId(kind.getId());
			table.setTableConfiguration(kind.getConfiguration());
		}
	}

	/**
	 * Gets a diagram kind that matches the given id
	 */
	private PapyrusDiagram getDiagramKindById(String id) {
		ArchitectureDomainManager manager = ArchitectureDomainManager.getInstance();
		RepresentationKind kind = manager.getRepresentationKindById(id);
		return (kind instanceof PapyrusDiagram)? (PapyrusDiagram) kind : null;
	}

	/**
	 * Gets a sync table kind that matches the given id
	 */
	private PapyrusTable getTableKindById(String id) {
		ArchitectureDomainManager manager = ArchitectureDomainManager.getInstance();
		RepresentationKind kind = manager.getRepresentationKindById(id);
		return (kind instanceof PapyrusTable)? (PapyrusTable) kind : null;
	}

}

[Updated on: Tue, 28 January 2020 19:18]

Report message to a moderator

Re: Can't convert diagram to PapyrusUMLComponentDiagram [message #1826847 is a reply to message #1820786] Sat, 02 May 2020 10:26 Go to previous messageGo to next message
Ansgar Radermacher is currently offline Ansgar RadermacherFriend
Messages: 461
Registered: March 2011
Location: Paris Saclay, France
Senior Member
Can you please post a bug, this should clearly be fixed.
Re: Can't convert diagram to PapyrusUMLComponentDiagram [message #1827326 is a reply to message #1826847] Wed, 13 May 2020 07:22 Go to previous messageGo to next message
Ansgar Radermacher is currently offline Ansgar RadermacherFriend
Messages: 461
Registered: March 2011
Location: Paris Saclay, France
Senior Member
https://bugs.eclipse.org/bugs/show_bug.cgi?id=563116
Re: Can't convert diagram to PapyrusUMLComponentDiagram [message #1827476 is a reply to message #1827326] Fri, 15 May 2020 10:14 Go to previous message
Ansgar Radermacher is currently offline Ansgar RadermacherFriend
Messages: 461
Registered: March 2011
Location: Paris Saclay, France
Senior Member
Bug has been fixed, it should be in the nightly build tomorrow. Can you please test, if that solves your problem?
Previous Topic:Error in Papyrus Setup with Eclipse Installer
Next Topic:Composite state
Goto Forum:
  


Current Time: Sat Apr 20 03:09:45 GMT 2024

Powered by FUDForum. Page generated in 0.04789 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top