use of com.archimatetool.model.IArchimateRelationship in project archi by archimatetool.
the class CSVImporterTests method testImportRelations.
@Test
public void testImportRelations() throws Exception {
importer.importElements(elements1File);
importer.importRelations(relations1File);
assertEquals(5, importer.newConcepts.size());
IArchimateRelationship relation = (IArchimateRelationship) importer.newConcepts.get("cdbfc933");
assertEquals(IArchimatePackage.eINSTANCE.getAssignmentRelationship(), relation.eClass());
assertEquals("cdbfc933", relation.getId());
assertEquals("Assignment relation", relation.getName());
assertEquals("Assignment documentation\r\nIs here \"hello\"", relation.getDocumentation());
IArchimateConcept source = relation.getSource();
assertNotNull(source);
assertEquals("f00aa5b4", source.getId());
IArchimateConcept target = relation.getTarget();
assertNotNull(target);
assertEquals("f6a18059", target.getId());
relation = (IArchimateRelationship) importer.newConcepts.get("5854f8a3");
assertEquals(IArchimatePackage.eINSTANCE.getCompositionRelationship(), relation.eClass());
assertEquals("5854f8a3", relation.getId());
assertEquals("Compo", relation.getName());
assertEquals("Here it is\r\nagain\r\n\r\n\r\n", relation.getDocumentation());
source = relation.getSource();
assertNotNull(source);
assertEquals("f00aa5b4", source.getId());
target = relation.getTarget();
assertNotNull(target);
assertEquals("d9fe8c17", target.getId());
}
use of com.archimatetool.model.IArchimateRelationship in project archi by archimatetool.
the class ArchimateContainerEditPolicy method createNewConnectionCommands.
/**
* When Archimate child objects are dragged out of a parent Archimate object check to see if new connections should be created
*
* TODO A3: If O1--C1--O2 and in parent. C1 is also connected to parent (and hidden).
* O1 or O2 is removed from parent - should add connection from C1 to parent?
* Or should it be only when O1 AND O2 are removed from parent?
*/
void createNewConnectionCommands(IDiagramModelArchimateObject parentObject, List<?> childEditParts, CompoundCommand command) {
IArchimateElement parentElement = parentObject.getArchimateElement();
for (Object o : childEditParts) {
IDiagramModelObject child = (IDiagramModelObject) ((EditPart) o).getModel();
// If it's an Archimate type child object...
if (child instanceof IDiagramModelArchimateObject) {
IDiagramModelArchimateObject childObject = (IDiagramModelArchimateObject) child;
IArchimateElement childElement = childObject.getArchimateElement();
// See if there are any (nested type) relationships between parent element and child element...
for (IArchimateRelationship relation : parentElement.getSourceRelationships()) {
if (relation.getTarget() == childElement && DiagramModelUtils.isNestedConnectionTypeRelationship(relation)) {
// And there's not a connection already there then add one
if (!DiagramModelUtils.hasDiagramModelArchimateConnection(parentObject, childObject, relation)) {
command.add(new CreateDiagramArchimateConnectionCommand(parentObject, childObject, relation));
}
}
}
}
}
}
use of com.archimatetool.model.IArchimateRelationship in project archi by archimatetool.
the class ArchimateDNDEditPolicy method getDropCommand.
@Override
protected Command getDropCommand(DiagramDropRequest request) {
if (!(request.getData() instanceof IStructuredSelection)) {
return null;
}
// XY drop point
Point pt = getDropLocation(request);
int origin = pt.x;
int x = pt.x;
int y = pt.y;
fElementsToAdd = new ArrayList<IArchimateElement>();
fRelationsToAdd = new ArrayList<IArchimateRelationship>();
fDiagramRefsToAdd = new ArrayList<IDiagramModel>();
// Gather an actual list of elements dragged onto the container, omitting duplicates and anything already on the diagram
Object[] objects = ((IStructuredSelection) request.getData()).toArray();
getElementsToAdd(objects);
// Store the Diagram Model Components that will be added in this list
List<IDiagramModelArchimateComponent> diagramComponentsThatWereAdded = new ArrayList<IDiagramModelArchimateComponent>();
// Create a Compound Command - it has to be Non-Notifying or it's too slow (tested with Bill's UoB model!)
CompoundCommand result = new NonNotifyingCompoundCommand(Messages.ArchimateDNDEditPolicy_0);
// Add the Commands adding the Elements first
for (IArchimateElement element : fElementsToAdd) {
// Add Diagram object
IDiagramModelArchimateObject dmo = ArchimateDiagramModelFactory.createDiagramModelArchimateObject(element);
// Set location
dmo.getBounds().setLocation(x, y);
// Store it
diagramComponentsThatWereAdded.add(dmo);
// Add Command
result.add(new AddDiagramObjectCommand(getTargetContainer(), dmo));
// Increase x,y
x += 150;
if (x > origin + 400) {
x = origin;
y += 100;
}
}
// Then any Diagram Model Ref Commands
for (IDiagramModel diagramModel : fDiagramRefsToAdd) {
result.add(new AddDiagramModelReferenceCommand(getTargetContainer(), diagramModel, x, y));
x += 150;
if (x > origin + 400) {
x = origin;
y += 100;
}
}
// Add selected Relations to create connections to those elements on the diagram that don't already have them
for (IArchimateRelationship relation : fRelationsToAdd) {
// Find existing source & target components on the diagram that the new connection will link to
List<IDiagramModelArchimateComponent> sources = DiagramModelUtils.findDiagramModelComponentsForArchimateConcept(getTargetDiagramModel(), relation.getSource());
List<IDiagramModelArchimateComponent> targets = DiagramModelUtils.findDiagramModelComponentsForArchimateConcept(getTargetDiagramModel(), relation.getTarget());
for (IDiagramModelComponent dcSource : sources) {
for (IDiagramModelComponent dcTarget : targets) {
if (dcSource instanceof IConnectable && dcTarget instanceof IConnectable) {
// Add a new connection between dcSource & dcTarget if there isn't already one on the diagram
if (dcTarget != dcSource && !DiagramModelUtils.hasDiagramModelArchimateConnection((IConnectable) dcSource, (IConnectable) dcTarget, relation)) {
// Check that source or target is not a hiden connection
if (!((dcSource instanceof IDiagramModelArchimateConnection && DiagramModelUtils.shouldBeHiddenConnection((IDiagramModelArchimateConnection) dcSource)) || (dcTarget instanceof IDiagramModelArchimateConnection && DiagramModelUtils.shouldBeHiddenConnection((IDiagramModelArchimateConnection) dcTarget)))) {
AddDiagramArchimateConnectionCommand cmd = new AddDiagramArchimateConnectionCommand((IConnectable) dcSource, (IConnectable) dcTarget, relation);
result.add(cmd);
// Store it
diagramComponentsThatWereAdded.add(cmd.getConnection());
}
}
}
}
}
}
// Whether to add connections to elements
Boolean value = (Boolean) request.getExtendedData().get(ArchimateDiagramTransferDropTargetListener.ADD_ELEMENT_CONNECTIONS);
boolean addConnectionsToElements = value != null && value.booleanValue();
// Newly added concepts will need new connections to both existing and newly added concepts
for (IDiagramModelArchimateComponent dmComponent : diagramComponentsThatWereAdded) {
IArchimateConcept archimateConcept = dmComponent.getArchimateConcept();
for (IArchimateRelationship relation : ArchimateModelUtils.getAllRelationshipsForConcept(archimateConcept)) {
/*
* If the user holds down the Copy key (Ctrl on win/lnx, Alt on Mac) then linked connections
* are not added on drag and drop. However, any selected relations' linked objects are added.
*/
if (!addConnectionsToElements && !fRelationsToAdd.contains(relation)) {
continue;
}
// Find existing objects
List<IDiagramModelArchimateComponent> sources = DiagramModelUtils.findDiagramModelComponentsForArchimateConcept(getTargetDiagramModel(), relation.getSource());
List<IDiagramModelArchimateComponent> targets = DiagramModelUtils.findDiagramModelComponentsForArchimateConcept(getTargetDiagramModel(), relation.getTarget());
// Add new ones too
for (IDiagramModelArchimateComponent dmComponent2 : diagramComponentsThatWereAdded) {
if (dmComponent != dmComponent2) {
IArchimateConcept archimateConcept2 = dmComponent2.getArchimateConcept();
if (archimateConcept2 == relation.getSource()) {
// Only need to add sources, not targets
sources.add(dmComponent2);
}
}
}
// Make the Commands...
for (IDiagramModelComponent dcSource : sources) {
if (dcSource instanceof IConnectable && archimateConcept == relation.getTarget()) {
result.add(new AddDiagramArchimateConnectionCommand((IConnectable) dcSource, (IConnectable) dmComponent, relation));
}
}
for (IDiagramModelComponent dcTarget : targets) {
if (dcTarget instanceof IConnectable && archimateConcept == relation.getSource()) {
result.add(new AddDiagramArchimateConnectionCommand((IConnectable) dmComponent, (IConnectable) dcTarget, relation));
}
}
}
}
// Then, if adding to an Archimate container type to create nesting, ask whether to add new relations if none exist...
if (ConnectionPreferences.createRelationWhenAddingModelTreeElement() && getTargetContainer() instanceof IDiagramModelArchimateObject) {
List<IDiagramModelArchimateObject> diagramObjectsThatWereAdded = new ArrayList<IDiagramModelArchimateObject>();
for (IDiagramModelArchimateComponent dmc : diagramComponentsThatWereAdded) {
if (dmc instanceof IDiagramModelArchimateObject) {
diagramObjectsThatWereAdded.add((IDiagramModelArchimateObject) dmc);
}
}
Command cmd = new CreateNestedArchimateConnectionsWithDialogCommand((IDiagramModelArchimateObject) getTargetContainer(), diagramObjectsThatWereAdded);
result.add(cmd);
}
// return the full compound command
return result;
}
use of com.archimatetool.model.IArchimateRelationship in project archi by archimatetool.
the class ArchimateDiagramConnectionPolicy method getReconnectCommand.
/**
* Create a ReconnectCommand
*/
protected Command getReconnectCommand(ReconnectRequest request, boolean isSourceCommand) {
IDiagramModelConnection connection = (IDiagramModelConnection) request.getConnectionEditPart().getModel();
// The re-connected object
IConnectable newObject = (IConnectable) getHost().getModel();
// Get the type of connection (plain) or relationship (if archimate connection) and check if it is valid
EClass type = connection.eClass();
if (connection instanceof IDiagramModelArchimateConnection) {
type = ((IDiagramModelArchimateConnection) connection).getArchimateRelationship().eClass();
}
if (isSourceCommand) {
if (!isValidConnection(newObject, connection.getTarget(), type)) {
return null;
}
} else {
if (!isValidConnection(connection.getSource(), newObject, type)) {
return null;
}
}
/*
* Re-connect ArchiMate Connection to Archimate Component
* In this case we have to check for matching occurences on all diagrams
*/
if (connection instanceof IDiagramModelArchimateConnection && newObject instanceof IDiagramModelArchimateComponent) {
IArchimateRelationship relationship = ((IDiagramModelArchimateConnection) connection).getArchimateRelationship();
IArchimateConcept newConcept = ((IDiagramModelArchimateComponent) newObject).getArchimateConcept();
// Compound Command
CompoundCommand result = new CompoundCommand();
// Check for matching connections in this and other diagrams
for (IDiagramModel diagramModel : newConcept.getArchimateModel().getDiagramModels()) {
for (IDiagramModelArchimateConnection matchingConnection : DiagramModelUtils.findDiagramModelConnectionsForRelation(diagramModel, relationship)) {
IDiagramModelArchimateComponent matchingComponent = null;
// Same Diagram so use the new target
if (newObject.getDiagramModel() == diagramModel) {
matchingComponent = (IDiagramModelArchimateComponent) newObject;
} else // Different Diagram so find a match
{
List<IDiagramModelArchimateComponent> list = DiagramModelUtils.findDiagramModelComponentsForArchimateConcept(diagramModel, newConcept);
if (!list.isEmpty()) {
matchingComponent = list.get(0);
}
}
// Does the new object exist on the diagram? Yes, reconnect
if (matchingComponent != null) {
ReconnectDiagramConnectionCommand cmd = new ReconnectDiagramConnectionCommand(matchingConnection);
if (isSourceCommand) {
cmd.setNewSource(matchingComponent);
} else {
cmd.setNewTarget(matchingComponent);
}
result.add(cmd);
} else // No, so delete the matching connection
{
result.add(DiagramCommandFactory.createDeleteDiagramConnectionCommand(matchingConnection));
}
}
}
return result.unwrap();
} else // Re-connect other cases
{
ReconnectDiagramConnectionCommand cmd = new ReconnectDiagramConnectionCommand(connection);
if (isSourceCommand) {
cmd.setNewSource(newObject);
} else {
cmd.setNewTarget(newObject);
}
return cmd;
}
}
use of com.archimatetool.model.IArchimateRelationship in project archi by archimatetool.
the class ZestViewerContentProvider method getRelations.
/**
* Get all relations from source and target of concept and add to list, no more than DEPTH
*/
private void getRelations(List<IArchimateRelationship> mainList, List<IArchimateConcept> checkList, IArchimateConcept concept, int count) {
if (checkList.contains(concept)) {
return;
}
checkList.add(concept);
if (count > fDepth) {
return;
}
count++;
List<IArchimateRelationship> allRelationships = ArchimateModelUtils.getAllRelationshipsForConcept(concept);
for (IArchimateRelationship relationship : allRelationships) {
IArchimateConcept other = relationship.getSource().equals(concept) ? relationship.getTarget() : relationship.getSource();
int direction = relationship.getSource().equals(concept) ? DIR_OUT : DIR_IN;
if (!mainList.contains(relationship) && fViewpoint.isAllowedConcept(other.eClass()) && !isFilteredByRelationship(relationship)) {
if (direction == fDirection || fDirection == DIR_BOTH) {
mainList.add(relationship);
}
}
if (fViewpoint.isAllowedConcept(other.eClass()) && !isFilteredByRelationship(relationship)) {
if (direction == fDirection || fDirection == DIR_BOTH) {
getRelations(mainList, checkList, other, count);
}
}
}
}
Aggregations