Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d4b658f6e17ec42a71e10fd7ca9b4716acb34502 (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
/*****************************************************************************
 * Copyright (c) 2017 - 2018 CEA LIST, EclipseSource and others.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *   CEA LIST - Initial API and implementation
 *   Vincent Lorenzo (CEA LIST) - vincent.lorenzo@cea.fr - bug 527259
 *   EclipseSource - Bug 536488, 536489
 *****************************************************************************/
package org.eclipse.papyrus.uml.service.types.helper.advice;

import java.util.ArrayList;
import java.util.List;

import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.gmf.runtime.common.core.command.CommandResult;
import org.eclipse.gmf.runtime.common.core.command.CompositeCommand;
import org.eclipse.gmf.runtime.common.core.command.ICommand;
import org.eclipse.gmf.runtime.emf.commands.core.command.AbstractTransactionalCommand;
import org.eclipse.gmf.runtime.emf.type.core.commands.SetValueCommand;
import org.eclipse.gmf.runtime.emf.type.core.requests.ConfigureRequest;
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest;
import org.eclipse.gmf.runtime.emf.type.core.requests.SetRequest;
import org.eclipse.papyrus.uml.tools.utils.NamedElementUtil;
import org.eclipse.uml2.uml.Duration;
import org.eclipse.uml2.uml.DurationConstraint;
import org.eclipse.uml2.uml.DurationInterval;
import org.eclipse.uml2.uml.Element;
import org.eclipse.uml2.uml.Interaction;
import org.eclipse.uml2.uml.OccurrenceSpecification;
import org.eclipse.uml2.uml.UMLFactory;
import org.eclipse.uml2.uml.UMLPackage.Literals;

/**
 * @since 3.0
 *
 */
public class DurationConstraintEditHelperAdvice extends AbstractOccurrenceLinkEditHelperAdvice {


	/**
	 * Add Duration value to the created Duration Interval
	 * Set name with prefix
	 *
	 * @param durationInterval
	 */
	private void initDurationInterval(final DurationInterval durationInterval) {
		// create, add and set the min and max duration of the duration interval
		org.eclipse.uml2.uml.Package parent = durationInterval.getNearestPackage();
		Duration minDuration = UMLFactory.eINSTANCE.createDuration();
		Duration maxDuration = UMLFactory.eINSTANCE.createDuration();

		parent.getPackagedElements().add(minDuration);
		parent.getPackagedElements().add(maxDuration);

		String nameMin = NamedElementUtil.getDefaultNameWithIncrement("Min", minDuration, minDuration.getNearestPackage().getPackagedElements());// $NON-NLS-0$
		String nameMax = NamedElementUtil.getDefaultNameWithIncrement("Max", maxDuration, maxDuration.getNearestPackage().getPackagedElements());// $NON-NLS-0$
		minDuration.setName(nameMin);
		maxDuration.setName(nameMax);

		durationInterval.setMin(minDuration);
		durationInterval.setMax(maxDuration);
		minDuration.setExpr(UMLFactory.eINSTANCE.createLiteralInteger());
		maxDuration.setExpr(UMLFactory.eINSTANCE.createLiteralInteger());
	}

	/**
	 * <p>
	 * Configure the new DurationConstraint with
	 * </p>
	 *
	 * @return
	 */
	@Override
	protected ICommand getAfterConfigureCommand(ConfigureRequest request) {
		ICommand composite = new CompositeCommand("After Configure Command of DurationConstraint");// $NON-NLS-0$
		ICommand afterConfigureCommand = super.getAfterConfigureCommand(request);
		if (null != afterConfigureCommand && afterConfigureCommand.canExecute()) {
			composite.compose(afterConfigureCommand);
		}

		EObject toConfigure = request.getElementToConfigure();
		if (false == toConfigure instanceof DurationConstraint) {
			return composite;
		}

		DurationConstraint constraint = (DurationConstraint) toConfigure;

		// Create the command to initialize Duration Interval in case of Duration Constraint
		final ICommand initInterval = new AbstractTransactionalCommand(request.getEditingDomain(), "Init DurationConstraint Specification", null) { //$NON-NLS-1$

			@Override
			protected CommandResult doExecuteWithResult(IProgressMonitor monitor, IAdaptable info) throws ExecutionException {
				if (constraint.getSpecification() instanceof DurationInterval) {
					// initialize Duration Interval
					initDurationInterval((DurationInterval) constraint.getSpecification());
				}
				return CommandResult.newOKCommandResult();
			}
		};

		composite.compose(initInterval);

		// Create the command to initialize the ConstrainedElement (Multiplicity [1..2]
		Element source = getSourceElement(request);
		Element target = getTargetElement(request);

		if (source != null && target != null) {
			final ICommand initConstrainedElements = new AbstractTransactionalCommand(request.getEditingDomain(), "Init DurationConstraint constrained elements", null) {

				@Override
				protected CommandResult doExecuteWithResult(IProgressMonitor monitor, IAdaptable info) throws ExecutionException {
					constraint.getConstrainedElements().add(0, source);
					if (target != source) {
						constraint.getConstrainedElements().add(1, target);
					}
					return CommandResult.newOKCommandResult();
				}
			};

			composite.compose(initConstrainedElements);
		}

		return composite;
	}

	@Override
	protected ICommand getAfterReorientRelationshipCommand(ReorientRelationshipRequest request) {
		EObject relationship = request.getRelationship();
		if (relationship instanceof DurationConstraint) {
			DurationConstraint constraint = (DurationConstraint) relationship;
			EObject newEnd = request.getNewRelationshipEnd();
			if (newEnd instanceof OccurrenceSpecification) {
				OccurrenceSpecification newOccurrence = (OccurrenceSpecification) newEnd;
				List<Element> values = new ArrayList<>(constraint.getConstrainedElements());
				if (request.getDirection() == ReorientRelationshipRequest.REORIENT_SOURCE) {
					if (values.isEmpty()) {
						values.add(newOccurrence);
					} else if (values.size() == 1) {
						values.add(0, newOccurrence);
					} else if (values.get(0) == newOccurrence) {
						return null;
					} else {
						values.set(0, newOccurrence);
					}
				} else { // Reorient Target
					if (values.isEmpty()) {
						values.add(newOccurrence);
					} else if (values.size() == 1) {
						values.add(newOccurrence);
					} else if (values.get(1) == newOccurrence) {
						return null;
					} else {
						values.set(1, newOccurrence);
					}
				}

				SetRequest setRequest = new SetRequest(constraint, Literals.CONSTRAINT__CONSTRAINED_ELEMENT, values);
				return new SetValueCommand(setRequest);
			}
		}
		return super.getAfterReorientRelationshipCommand(request);
	}

	/**
	 * @see org.eclipse.papyrus.uml.service.types.helper.advice.AbstractDurationEditHelperAdvice#getCreationContainer(org.eclipse.uml2.uml.Element)
	 *
	 * @param targetElement
	 * @return
	 */
	@Override
	protected Element getCreationContainer(Element targetElement) {
		return findInteraction(targetElement);
	}

	protected Interaction findInteraction(Element source) {
		Element element = source;
		while (element != null) {
			if (element instanceof Interaction) {
				return (Interaction) element;
			}
			element = element.getOwner();
		}
		return null;
	}

}

Back to the top