Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ac1078d8c8a66b31eebbc19709a30cd3d0ee6e63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
/*****************************************************************************
 * Copyright (c) 2009 CEA LIST.
 *
 *    
 * 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:
 *  Patrick Tessier (CEA LIST) Patrick.tessier@cea.fr - Initial API and implementation
 *  Vincent Lorenzo (CEA LIST) vincent.lorenzo@cea.fr - Adapted code from Class Diagram
 *****************************************************************************/
package org.eclipse.papyrus.uml.diagram.profile.custom.helper;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;

import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.draw2d.geometry.Point;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.transaction.TransactionalEditingDomain;
import org.eclipse.gef.EditPart;
import org.eclipse.gef.EditPartViewer;
import org.eclipse.gef.commands.Command;
import org.eclipse.gef.commands.CompoundCommand;
import org.eclipse.gef.commands.UnexecutableCommand;
import org.eclipse.gmf.runtime.common.core.command.CompositeCommand;
import org.eclipse.gmf.runtime.common.core.command.ICommand;
import org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand;
import org.eclipse.gmf.runtime.diagram.core.preferences.PreferencesHint;
import org.eclipse.gmf.runtime.diagram.core.util.ViewUtil;
import org.eclipse.gmf.runtime.diagram.ui.commands.CreateCommand;
import org.eclipse.gmf.runtime.diagram.ui.commands.ICommandProxy;
import org.eclipse.gmf.runtime.diagram.ui.commands.SetBoundsCommand;
import org.eclipse.gmf.runtime.diagram.ui.editparts.CompartmentEditPart;
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.internal.commands.SetConnectionBendpointsCommand;
import org.eclipse.gmf.runtime.diagram.ui.requests.CreateConnectionViewAndElementRequest;
import org.eclipse.gmf.runtime.diagram.ui.requests.CreateConnectionViewRequest.ConnectionViewDescriptor;
import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest.ViewDescriptor;
import org.eclipse.gmf.runtime.emf.core.util.EObjectAdapter;
import org.eclipse.gmf.runtime.emf.type.core.IHintedType;
import org.eclipse.gmf.runtime.emf.type.core.commands.EditElementCommand;
import org.eclipse.gmf.runtime.emf.type.core.requests.CreateElementRequest;
import org.eclipse.gmf.runtime.notation.Edge;
import org.eclipse.gmf.runtime.notation.Node;
import org.eclipse.gmf.runtime.notation.View;
import org.eclipse.papyrus.infra.gmfdiag.common.utils.DiagramUtils;
import org.eclipse.papyrus.uml.diagram.common.commands.DeleteLinkDuringCreationCommand;
import org.eclipse.papyrus.uml.diagram.common.commands.SemanticAdapter;
import org.eclipse.papyrus.uml.diagram.common.helper.ElementHelper;
import org.eclipse.papyrus.uml.diagram.profile.custom.commands.AssociationDiamondViewCreateCommand;
import org.eclipse.papyrus.uml.diagram.profile.custom.commands.PropertyCommandForAssociation;
import org.eclipse.papyrus.uml.diagram.profile.custom.providers.CustomDeferredCreateConnectionViewCommand;
import org.eclipse.papyrus.uml.diagram.profile.edit.parts.AssociationBranchEditPart;
import org.eclipse.papyrus.uml.diagram.profile.edit.parts.AssociationNodeEditPart;
import org.eclipse.papyrus.uml.diagram.profile.providers.UMLElementTypes;
import org.eclipse.uml2.uml.Association;
import org.eclipse.uml2.uml.Classifier;
import org.eclipse.uml2.uml.NamedElement;
import org.eclipse.uml2.uml.Property;
import org.eclipse.uml2.uml.UMLPackage;

/**
 * The Class MultiAssociationHelper to manage the creation of branches or transformation of binary
 * to n-ary association
 */
public class MultiAssociationHelper extends ElementHelper {
	/**
	 * get the member end that will be managed by the branch of the association.
	 * 
	 * @param associationBranchView
	 *            the association branch view
	 * @param association
	 *            the association
	 * 
	 * @return the property concerned by the branch or null if the property is not found
	 */
	public static Property getPropertyToListen(Edge associationBranchView, Association association) {
		Classifier target = (Classifier) (associationBranchView.getTarget().getElement());
		// look for the property that is typed by the classifier
		Property propertyToDisplay = null;
		Iterator<Property> propertiesIterator = association.getMemberEnds().iterator();
		while (propertiesIterator.hasNext()) {
			Property currentProperty = propertiesIterator.next();
			if (currentProperty.getType().equals(target)) {
				propertyToDisplay = currentProperty;
			}
		}
		return propertyToDisplay;
	}

	/**
	 * constructor.
	 * 
	 * @param editDomain
	 *            the editDomain , important to create commands can not be null
	 */
	public MultiAssociationHelper(TransactionalEditingDomain editDomain) {
		super();
		this.editDomain = editDomain;
	}

	/**
	 * Display all branches command.
	 * 
	 * @param associationNodeEditPart
	 *            the association node edit part
	 * 
	 * @return the command
	 */
	public Command displayAllBranchesCommand(AssociationNodeEditPart associationNodeEditPart) {
		Command command = new CompoundCommand();
		// 0. Obtain list of property to display
		Association association = (Association) associationNodeEditPart.resolveSemanticElement();
		ArrayList<Property> endToDisplay = new ArrayList<Property>(association.getMemberEnds());
		// 1. remove in the list all displayedElement.
		Iterator<?> iter = associationNodeEditPart.getSourceConnections().iterator();
		while (iter.hasNext()) {
			EditPart currentEditPart = (EditPart) iter.next();
			if (currentEditPart instanceof AssociationBranchEditPart) {
				endToDisplay.remove(getPropertyToListen((Edge) ((AssociationBranchEditPart) currentEditPart).getModel(), association));
			}
		}
		// 2. for each element create a graphical representation of the type and
		// finally the branch
		Iterator<Property> iteratorProp = endToDisplay.iterator();
		int index = 0;
		while (iteratorProp.hasNext()) {
			index += 1;
			// source editPart
			EditPart sourceEditPart = null;
			// end of the association end
			Property currentEnd = iteratorProp.next();
			// look for if an editpart exist for this element
			Collection<?> values = associationNodeEditPart.getViewer().getEditPartRegistry().values();
			Collection<EditPart> editPartSet = new ArrayList<EditPart>();
			for (Object object : values) {
				if (object instanceof EditPart)
				{
					editPartSet.add((EditPart) object);
				}
			}
			Iterator<EditPart> editPartIterator = editPartSet.iterator();
			while (editPartIterator.hasNext() && sourceEditPart == null) {
				EditPart currentEditPart = editPartIterator.next();
				if ((!(currentEditPart instanceof CompartmentEditPart)) && currentEditPart instanceof GraphicalEditPart && currentEnd.getType().equals(((GraphicalEditPart) currentEditPart).resolveSemanticElement())) {
					sourceEditPart = currentEditPart;
				}
			}
			// descriptor for the branch
			ConnectionViewDescriptor viewBranchDescriptor = new ConnectionViewDescriptor(UMLElementTypes.Association_4019, ((IHintedType) UMLElementTypes.Association_4019).getSemanticHint(),
					((IGraphicalEditPart) associationNodeEditPart).getDiagramPreferencesHint());
			// the editpart exist -> only creation of the branch
			if (sourceEditPart != null) {
				CustomDeferredCreateConnectionViewCommand aBranchCommand = new CustomDeferredCreateConnectionViewCommand(getEditingDomain(), ((IHintedType) UMLElementTypes.Association_4019).getSemanticHint(), new SemanticAdapter(null,
						associationNodeEditPart.getModel()), new SemanticAdapter(null, sourceEditPart.getModel()), sourceEditPart.getViewer(), ((IGraphicalEditPart) sourceEditPart).getDiagramPreferencesHint(), viewBranchDescriptor, null);
				aBranchCommand.setElement(association);
				((CompoundCommand) command).add(new ICommandProxy(aBranchCommand));
			} else {// the editpart does not exist
				// creation of the node
				IAdaptable elementAdapter = new EObjectAdapter(currentEnd.getType());
				ViewDescriptor descriptor = new ViewDescriptor(elementAdapter, Node.class, null, ViewUtil.APPEND, true, associationNodeEditPart.getDiagramPreferencesHint());
				// get the command and execute it.
				CreateCommand nodeCreationCommand = new CreateCommand(getEditingDomain(), descriptor, (View) ((View) associationNodeEditPart.getModel()).eContainer());
				((CompoundCommand) command).add(new ICommandProxy(nodeCreationCommand));
				SetBoundsCommand setBoundsCommand = new SetBoundsCommand(getEditingDomain(),
						"move", (IAdaptable) nodeCreationCommand.getCommandResult().getReturnValue(), new Point(associationNodeEditPart.getLocation().x + 200, associationNodeEditPart.getLocation().y + index * 100)); //$NON-NLS-1$
				((CompoundCommand) command).add(new ICommandProxy(setBoundsCommand));
				// Creation of the branch
				CustomDeferredCreateConnectionViewCommand aBranchCommand = new CustomDeferredCreateConnectionViewCommand(getEditingDomain(), ((IHintedType) UMLElementTypes.Association_4019).getSemanticHint(), new SemanticAdapter(null,
						associationNodeEditPart.getModel()), (IAdaptable) nodeCreationCommand.getCommandResult().getReturnValue(), associationNodeEditPart.getViewer(), ((IGraphicalEditPart) associationNodeEditPart).getDiagramPreferencesHint(),
						viewBranchDescriptor, null);
				aBranchCommand.setElement(association);
				((CompoundCommand) command).add(new ICommandProxy(aBranchCommand));
				// creation of the link
			}
		}
		return command;
	}

	/**
	 * Returns the drop Command for a MultiAssociation
	 * 
	 * @param association
	 *            the association to drop
	 * @param viewer
	 *            the viewer
	 * @param diagramPreferencesHint
	 *            the Diagram Preference Hint
	 * @param location
	 *            the location for the drop
	 * @param containerView
	 *            the container view
	 * @return
	 *         The drop Command for a MultiAssociation
	 */
	public Command dropMultiAssociation(Association association, EditPartViewer viewer, PreferencesHint diagramPreferencesHint, Point location, View containerView) {
		Command command = new CompoundCommand();
		// 0. Obtain list of property to display
		ArrayList<Property> endToDisplay = new ArrayList<Property>(association.getMemberEnds());
		// 1. creatiuon of the diamon of association
		AssociationDiamondViewCreateCommand nodeCreation = new AssociationDiamondViewCreateCommand(getEditingDomain(), containerView, viewer, diagramPreferencesHint, location, new SemanticAdapter(association, null));
		((CompoundCommand) command).add(new ICommandProxy(nodeCreation));
		// 2. for each element create a graphical representation of the type and
		// finally the branch
		Iterator<Property> iteratorProp = endToDisplay.iterator();
		int index = 0;
		while (iteratorProp.hasNext()) {
			index += 1;
			// source editPart
			EditPart sourceEditPart = null;
			// end of the association end
			Property currentEnd = iteratorProp.next();
			// look for if an editpart exist for this element
			Collection<EditPart> editPartSet = new ArrayList<EditPart>();
			Collection<?> values = viewer.getEditPartRegistry().values();
			for (Object object : values) {
				if (object instanceof EditPart)
				{
					editPartSet.add((EditPart) object);
				}
			}
			Iterator<EditPart> editPartIterator = editPartSet.iterator();
			while (editPartIterator.hasNext() && sourceEditPart == null) {
				EditPart currentEditPart = editPartIterator.next();
				if ((!(currentEditPart instanceof CompartmentEditPart)) && currentEditPart instanceof GraphicalEditPart && currentEnd.getType().equals(((GraphicalEditPart) currentEditPart).resolveSemanticElement())) {
					sourceEditPart = currentEditPart;
				}
			}
			// descriptor for the branch
			ConnectionViewDescriptor viewBranchDescriptor = new ConnectionViewDescriptor(UMLElementTypes.Association_4019, ((IHintedType) UMLElementTypes.Association_4019).getSemanticHint(), diagramPreferencesHint);
			// the editpart exist -> only creation of the branch
			if (sourceEditPart != null) {
				CustomDeferredCreateConnectionViewCommand aBranchCommand = new CustomDeferredCreateConnectionViewCommand(getEditingDomain(), ((IHintedType) UMLElementTypes.Association_4019).getSemanticHint(), (IAdaptable) nodeCreation.getCommandResult()
						.getReturnValue(), new SemanticAdapter(null, sourceEditPart.getModel()), sourceEditPart.getViewer(), ((IGraphicalEditPart) sourceEditPart).getDiagramPreferencesHint(), viewBranchDescriptor, null);
				aBranchCommand.setElement(association);
				((CompoundCommand) command).add(new ICommandProxy(aBranchCommand));
			} else {// the editpart does not exist
				// creation of the node
				IAdaptable elementAdapter = new EObjectAdapter(currentEnd.getType());
				ViewDescriptor descriptor = new ViewDescriptor(elementAdapter, Node.class, null, ViewUtil.APPEND, true, diagramPreferencesHint);
				// get the command and execute it.
				CreateCommand nodeCreationCommand = new CreateCommand(getEditingDomain(), descriptor, containerView);
				((CompoundCommand) command).add(new ICommandProxy(nodeCreationCommand));
				SetBoundsCommand setBoundsCommand = new SetBoundsCommand(getEditingDomain(), "move", (IAdaptable) nodeCreationCommand.getCommandResult().getReturnValue(), new Point(location.x + 200, location.y + index * 100)); //$NON-NLS-1$
				((CompoundCommand) command).add(new ICommandProxy(setBoundsCommand));
				// Creation of the branch
				CustomDeferredCreateConnectionViewCommand aBranchCommand = new CustomDeferredCreateConnectionViewCommand(getEditingDomain(), ((IHintedType) UMLElementTypes.Association_4019).getSemanticHint(), (IAdaptable) nodeCreation.getCommandResult()
						.getReturnValue(), (IAdaptable) nodeCreationCommand.getCommandResult().getReturnValue(), viewer, diagramPreferencesHint, viewBranchDescriptor, null);
				aBranchCommand.setElement(association);
				((CompoundCommand) command).add(new ICommandProxy(aBranchCommand));
				// creation of the link
			}
		}
		return command;
	}

	/**
	 * transform binary association to n-ary association.
	 * 
	 * @param createConnectionViewAndElementRequest
	 *            the create connection view and element request
	 * @param command
	 *            the command
	 * 
	 * @return the command in charge of this job
	 */
	private Command getAssociationToMultiAssociationCommand(CreateConnectionViewAndElementRequest createConnectionViewAndElementRequest, Command command) {
		// 0. creation of variables
		command = new CompoundCommand();
		Point sourceLocation = null;
		Point targetLocation = null;
		Point nodeLocation = null;
		NamedElement newSemanticElement = null;// element that will be added as
		// client ou supplier of the
		// association
		EditPart sourceEditPart = createConnectionViewAndElementRequest.getSourceEditPart();
		EditPart targetEditPart = createConnectionViewAndElementRequest.getTargetEditPart();
		View associationView = null;
		Association association = null;
		View parentView = null;
		// ---------------------------------------------------------
		// help to debug
		// System.err.println("\n+ 0. creation of variables");
		// System.err.println("+-> editting domain"+ getEditingDomain());
		// System.err.println("+-> sourceEditpart:" + sourceEditPart);
		// System.err.println("+-> targetEditPart:" + targetEditPart);
		// ---------------------------------------------------------
		// 1. initialization
		Command startCommand = createConnectionViewAndElementRequest.getStartCommand();
		if (command instanceof ICommandProxy) {
			ICommand startICommand = ((ICommandProxy) startCommand).getICommand();
			if (startICommand instanceof CompositeCommand) {
				Iterator<?> ite = ((CompositeCommand) startICommand).iterator();
				while (ite.hasNext()) {
					ICommand currentCommand = (ICommand) ite.next();
					if (currentCommand instanceof SetConnectionBendpointsCommand) {
						sourceLocation = ((SetConnectionBendpointsCommand) currentCommand).getSourceRefPoint();
						targetLocation = ((SetConnectionBendpointsCommand) currentCommand).getTargetRefPoint();
					}
				}
			}
		}
		if (targetEditPart != null && sourceLocation != null && targetLocation != null) {
			// the source or the target must be a association
			// look for the edit part that represent the editpart
			if (((View) sourceEditPart.getModel()).getElement() != null && ((View) sourceEditPart.getModel()).getElement() instanceof Association) {
				associationView = ((View) sourceEditPart.getModel());
				association = (Association) ((View) sourceEditPart.getModel()).getElement();
				nodeLocation = sourceLocation;
				newSemanticElement = (NamedElement) ((View) targetEditPart.getModel()).getElement();
			}
			if (((View) targetEditPart.getModel()).getElement() != null && ((View) targetEditPart.getModel()).getElement() instanceof Association) {
				associationView = ((View) targetEditPart.getModel());
				association = (Association) ((View) targetEditPart.getModel()).getElement();
				nodeLocation = targetLocation;
				newSemanticElement = (NamedElement) ((View) sourceEditPart.getModel()).getElement();
			}
			if (associationView == null || (targetEditPart.getModel() instanceof Edge)) {
				return null;
			}
			parentView = (View) associationView.eContainer();
			// ---------------------------------------------------------
			// help to debug
			// System.err.println("+ 1. initialization");
			// System.err.println("+-> sourceLocation:" + sourceLocation);
			// System.err.println("+-> targetLocation:" + targetLocation);
			// System.err.println("+-> AssociationView:" + associationView);
			// System.err.println("+-> association:" + association);
			// System.err.println("+-> nodeLocation:" + nodeLocation);
			// System.err.println("+-> newSemanticElement:" + newSemanticElement);
			// System.err.println("+-> feature:" + feature);
			// System.err.println("+-> parentView:" + parentView);
			// ---------------------------------------------------------
			// 2. Remove the view of the association
			DeleteCommand deleteCommand = new DeleteLinkDuringCreationCommand(getEditingDomain(), (Edge) associationView, sourceEditPart.getViewer());
			deleteCommand.setReuseParentTransaction(true);
			Command removecommand = new ICommandProxy(deleteCommand);
			// to execute
			((CompoundCommand) command).add(removecommand);
			// ((CompoundCommand)command).add(removecommand);
			// ---------------------------------------------------------
			// help to debug
			// System.err.println("+ 2. Remove the view of the association");
			// System.err.println("+-> command:" + command.canExecute());
			// ---------------------------------------------------------
			// 3. set a new end association in the UML model
			// 3.1 creation of the property
			CreateElementRequest request = new CreateElementRequest(getEditingDomain(), association, UMLElementTypes.Property_3002, UMLPackage.eINSTANCE.getAssociation_OwnedEnd());
			request.setParameter("type", newSemanticElement); //$NON-NLS-1$
			EditElementCommand propertyCreateCommand = new PropertyCommandForAssociation(request, DiagramUtils.getDiagramFrom(sourceEditPart));
			propertyCreateCommand.setReuseParentTransaction(true);
			((CompoundCommand) command).add(new ICommandProxy(propertyCreateCommand));
			// 3. Node creation at this position
			View associationViewSource = ((Edge) associationView).getSource();
			View associationViewTarget = ((Edge) associationView).getTarget();
			AssociationDiamondViewCreateCommand nodeCreation = new AssociationDiamondViewCreateCommand(getEditingDomain(), parentView, sourceEditPart.getViewer(), ((IGraphicalEditPart) sourceEditPart).getDiagramPreferencesHint(), nodeLocation,
					new SemanticAdapter(association, null));
			nodeCreation.setReuseParentTransaction(true);
			((CompoundCommand) command).add(new ICommandProxy(nodeCreation));
			// 4. reconstruction of the old link by taking in account the old
			// connection
			ConnectionViewDescriptor viewDescriptor = new ConnectionViewDescriptor(UMLElementTypes.Association_4019, ((IHintedType) UMLElementTypes.Association_4019).getSemanticHint(), ((IGraphicalEditPart) sourceEditPart).getDiagramPreferencesHint());
			// 5. reconstruction of the first branch between old source to node
			ICommand firstBranchCommand = new CustomDeferredCreateConnectionViewCommand(getEditingDomain(), ((IHintedType) UMLElementTypes.Association_4019).getSemanticHint(), (IAdaptable) nodeCreation.getCommandResult().getReturnValue(), new SemanticAdapter(
					null, associationViewSource), sourceEditPart.getViewer(), ((IGraphicalEditPart) sourceEditPart).getDiagramPreferencesHint(), viewDescriptor, null);
			((CustomDeferredCreateConnectionViewCommand) firstBranchCommand).setElement(association);
			((CompoundCommand) command).add(new ICommandProxy(firstBranchCommand));
			// 6. reconstruction of the second branch between node to old target
			ICommand secondBranchCommand = new CustomDeferredCreateConnectionViewCommand(getEditingDomain(), ((IHintedType) UMLElementTypes.Association_4019).getSemanticHint(), (IAdaptable) nodeCreation.getCommandResult().getReturnValue(),
					new SemanticAdapter(null, associationViewTarget), sourceEditPart.getViewer(), ((IGraphicalEditPart) sourceEditPart).getDiagramPreferencesHint(), viewDescriptor, null);
			((CustomDeferredCreateConnectionViewCommand) secondBranchCommand).setElement(association);
			((CompoundCommand) command).add(new ICommandProxy(secondBranchCommand));
			// 7. Create of the third branch between node and target our source.
			ICommand thirdBranchCommand = null;
			if (associationView.equals((sourceEditPart.getModel()))) {
				// third branch node and target
				thirdBranchCommand = new CustomDeferredCreateConnectionViewCommand(getEditingDomain(), ((IHintedType) UMLElementTypes.Association_4019).getSemanticHint(), (IAdaptable) nodeCreation.getCommandResult().getReturnValue(), new SemanticAdapter(null,
						targetEditPart.getModel()), sourceEditPart.getViewer(), ((IGraphicalEditPart) sourceEditPart).getDiagramPreferencesHint(), viewDescriptor, null);
			} else {
				// // third branch source and node
				thirdBranchCommand = new CustomDeferredCreateConnectionViewCommand(getEditingDomain(), ((IHintedType) UMLElementTypes.Association_4019).getSemanticHint(), new SemanticAdapter(null, sourceEditPart.getModel()), (IAdaptable) nodeCreation
						.getCommandResult().getReturnValue(), sourceEditPart.getViewer(), ((IGraphicalEditPart) sourceEditPart).getDiagramPreferencesHint(), viewDescriptor, null);
			}
			((CustomDeferredCreateConnectionViewCommand) thirdBranchCommand).setElement(association);
			((CompoundCommand) command).add(new ICommandProxy(thirdBranchCommand));
		}
		return command;
	}

	/**
	 * code to create new branch.
	 * 
	 * @param createConnectionViewAndElementRequest
	 *            the create connection view and element request
	 * @param command
	 *            that will contain sub commands
	 * 
	 * @return the command in charge of the branch creation
	 */
	private Command getBranchAssociationCommand(CreateConnectionViewAndElementRequest createConnectionViewAndElementRequest, Command command) {
		command = new CompoundCommand();
		// init
		EditPart sourceEditPart = createConnectionViewAndElementRequest.getSourceEditPart();
		EditPart targetEditPart = createConnectionViewAndElementRequest.getTargetEditPart();
		if (targetEditPart != null) {
			if ((targetEditPart.getModel() instanceof Edge)) {
				return null;
			}
			// the source or the target must be a association
			// look for the edit part that represent the editpart
			EObject association = null;
			NamedElement newSemanticElement = null;
			if (((View) sourceEditPart.getModel()).getElement() != null && ((View) sourceEditPart.getModel()).getElement() instanceof Association) {
				association = ((View) sourceEditPart.getModel()).getElement();
				newSemanticElement = (NamedElement) ((View) targetEditPart.getModel()).getElement();
			}
			if (((View) targetEditPart.getModel()).getElement() != null && ((View) targetEditPart.getModel()).getElement() instanceof Association) {
				association = ((View) targetEditPart.getModel()).getElement();
				newSemanticElement = (NamedElement) ((View) sourceEditPart.getModel()).getElement();
			}
			// System.err.println("step init, can execute?" + command.canExecute());
			// 0. add semantic
			CreateElementRequest request = new CreateElementRequest(getEditingDomain(), association, UMLElementTypes.Property_3002, UMLPackage.eINSTANCE.getAssociation_OwnedEnd());
			request.setParameter("type", newSemanticElement); //$NON-NLS-1$
			EditElementCommand propertyCreateCommand = new PropertyCommandForAssociation(request, DiagramUtils.getDiagramFrom(sourceEditPart));
			((CompoundCommand) command).add(new ICommandProxy(propertyCreateCommand));
			// System.err.println("0. add semantic, can execute?" + command.canExecute());
			// 1. add the branch graphically
			ConnectionViewDescriptor viewDescriptor = new ConnectionViewDescriptor(UMLElementTypes.Association_4019, ((IHintedType) UMLElementTypes.Association_4019).getSemanticHint(), ((IGraphicalEditPart) sourceEditPart).getDiagramPreferencesHint());
			CustomDeferredCreateConnectionViewCommand aBranchCommand = new CustomDeferredCreateConnectionViewCommand(getEditingDomain(), ((IHintedType) UMLElementTypes.Association_4019).getSemanticHint(), new SemanticAdapter(null, sourceEditPart.getModel()),
					new SemanticAdapter(null, targetEditPart.getModel()), sourceEditPart.getViewer(), ((IGraphicalEditPart) sourceEditPart).getDiagramPreferencesHint(), viewDescriptor, null);
			aBranchCommand.setElement(association);
			((CompoundCommand) command).add(new ICommandProxy(aBranchCommand));
			// System.err.println("1. add the branch graphically, can execute?" + command.canExecute());
			return command;
		}
		return UnexecutableCommand.INSTANCE;
	}

	/**
	 * return commands to transform a binary association to n-ary association or allow adding
	 * branches.
	 * 
	 * @param createConnectionViewAndElementRequest
	 *            the create connection view and element request
	 * @param command
	 *            that will contains subcommands
	 * 
	 * @return the command
	 */
	public Command getCommand(CreateConnectionViewAndElementRequest createConnectionViewAndElementRequest, Command command) {
		// 0. get source and target type
		command = new CompoundCommand();
		EditPart sourceEditPart = createConnectionViewAndElementRequest.getSourceEditPart();
		EditPart targetEditPart = createConnectionViewAndElementRequest.getTargetEditPart();
		// if the the source or the target is a node association the goal is
		// to create only one branch
		if ((((View) sourceEditPart.getModel()).getType() == "" + AssociationNodeEditPart.VISUAL_ID)) { //$NON-NLS-1$
			return getBranchAssociationCommand(createConnectionViewAndElementRequest, command);
		}
		if ((((View) targetEditPart.getModel()).getType() == "" + AssociationNodeEditPart.VISUAL_ID)) { //$NON-NLS-1$
			return UnexecutableCommand.INSTANCE;
		}
		// the source or the target has to be different of a dependency branch
		if (sourceEditPart instanceof AssociationBranchEditPart) {
			GraphicalEditPart associationNodeEditPart = lookForAssociationNodeEditPart((AssociationBranchEditPart) sourceEditPart);
			if (associationNodeEditPart != null) {
				createConnectionViewAndElementRequest.setSourceEditPart(associationNodeEditPart);
				return getBranchAssociationCommand(createConnectionViewAndElementRequest, command);
			} else {
				return UnexecutableCommand.INSTANCE;
			}
		}
		// the source or the target has to be different of a dependency branch
		if (targetEditPart instanceof AssociationBranchEditPart) {
			return UnexecutableCommand.INSTANCE;
		}
		// if not this a transformation of simple dependency to multiDependency
		return getAssociationToMultiAssociationCommand(createConnectionViewAndElementRequest, command);
	}

	/**
	 * look for a dependency node from a dependency branch.
	 * 
	 * @param dependencyBranchEditPart
	 * @return may be null
	 */
	protected GraphicalEditPart lookForAssociationNodeEditPart(AssociationBranchEditPart associationBranchEditPart) {
		if (associationBranchEditPart.getSource() instanceof AssociationNodeEditPart) {
			return (GraphicalEditPart) associationBranchEditPart.getSource();
		}
		if (associationBranchEditPart.getTarget() instanceof AssociationNodeEditPart) {
			return (GraphicalEditPart) associationBranchEditPart.getTarget();
		}
		return null;
	}
}

Back to the top