Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8639de0bc9236318882a1391b41e871aad70db3d (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
/*****************************************************************************
 * Copyright (c) 2012 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
 *
 *****************************************************************************/
package org.eclipse.papyrus.uml.diagram.timing.custom.parsers;

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.emf.ecore.EStructuralFeature;
import org.eclipse.emf.transaction.TransactionalEditingDomain;
import org.eclipse.emf.transaction.util.TransactionUtil;
import org.eclipse.gmf.runtime.common.core.command.CommandResult;
import org.eclipse.gmf.runtime.common.core.command.ICommand;
import org.eclipse.gmf.runtime.common.core.command.UnexecutableCommand;
import org.eclipse.gmf.runtime.common.ui.services.parser.IParserEditStatus;
import org.eclipse.gmf.runtime.common.ui.services.parser.ParserEditStatus;
import org.eclipse.gmf.runtime.emf.commands.core.command.AbstractTransactionalCommand;
import org.eclipse.gmf.runtime.emf.ui.services.parser.ISemanticParser;
import org.eclipse.jface.text.contentassist.IContentAssistProcessor;
import org.eclipse.papyrus.uml.diagram.timing.custom.Messages;
import org.eclipse.papyrus.uml.diagram.timing.custom.utils.EcoreUtils;
import org.eclipse.papyrus.uml.diagram.timing.custom.utils.LifelineUtils;
import org.eclipse.papyrus.uml.diagram.timing.custom.utils.StateDefinitionUtils;
import org.eclipse.papyrus.uml.diagram.timing.custom.utils.StateInvariantUtils;
import org.eclipse.uml2.uml.Constraint;
import org.eclipse.uml2.uml.Lifeline;
import org.eclipse.uml2.uml.StateInvariant;
import org.eclipse.uml2.uml.UMLPackage;
import org.eclipse.uml2.uml.ValueSpecification;

/**
 * Used to get and set the name of a StateInvariant when editing a StateInvariant's label (this gets and sets the body
 * in the OpaqueExpression of the Constraint of the StateInvariant)
 */
public class CompactStateInvariantNameParser implements ISemanticParser {

	public String getEditString(final IAdaptable adaptable, final int flags) {
		final StateInvariant stateInvariant = getStateInvariant(adaptable);
		final String name = StateInvariantUtils.getInnerStateInvariantName(stateInvariant);
		if(name == null) {
			return ""; //$NON-NLS-1$
		}
		return name;
	}

	public IParserEditStatus isValidEditString(final IAdaptable element, final String editString) {
		return ParserEditStatus.EDITABLE_STATUS;
	}

	public ICommand getParseCommand(final IAdaptable adaptable, final String newString, final int flags) {
		final StateInvariant stateInvariant = getStateInvariant(adaptable);
		final TransactionalEditingDomain editingDomain = TransactionUtil.getEditingDomain(stateInvariant);
		if(editingDomain == null) {
			return UnexecutableCommand.INSTANCE;
		}
		return new AbstractTransactionalCommand(editingDomain, Messages.CompactStateInvariantNameParser_SetStateInvariantName, null) {

			@Override
			protected CommandResult doExecuteWithResult(final IProgressMonitor monitor, final IAdaptable info) throws ExecutionException {
				// set the name on the Constraint and OpaqueExpression
				StateInvariantUtils.setInnerStateInvariantName(stateInvariant, newString);
				// set the name directly on the StateInvariant (note that this triggers a refresh of the label)
				stateInvariant.setName(newString);
				for(final Lifeline coveredLifeline : stateInvariant.getCovereds()) {
					LifelineUtils.updateFragmentNames(coveredLifeline, null);
					// XXX what if the StateInvariant appears both on a compact and on a full lifeline?
					StateDefinitionUtils.updateStateDefinitionNamesForCompactLifeline(coveredLifeline);
				}
				return CommandResult.newOKCommandResult();
			}
		};
	}

	private static StateInvariant getStateInvariant(final IAdaptable adaptable) {
		return (StateInvariant)adaptable.getAdapter(EObject.class);
	}

	public String getPrintString(final IAdaptable adaptable, final int flags) {
		final StateInvariant stateInvariant = getStateInvariant(adaptable);
		final String name = StateInvariantUtils.getInnerStateInvariantName(stateInvariant);
		if(name == null || name.length() == 0) {
			return Messages.CompactStateInvariantNameParser_Unnamed;
		}
		return name;
	}

	public boolean isAffectingEvent(final Object event, final int flags) {
		return true;
	}

	public IContentAssistProcessor getCompletionProcessor(final IAdaptable element) {
		return null;
	}

	public List<?> getSemanticElementsBeingParsed(final EObject element) {
		final List<EObject> list = new ArrayList<EObject>();
		if(element instanceof StateInvariant) {
			final StateInvariant stateInvariant = (StateInvariant)element;
			final Constraint invariant = stateInvariant.getInvariant();
			if(invariant != null) {
				final ValueSpecification specification = invariant.getSpecification();
				if(specification != null) {
					list.add(specification);
				}
			}
		}
		return list;
	}

	public boolean areSemanticElementsAffected(final EObject listener, final Object notification) {
		final EStructuralFeature feature = EcoreUtils.getEStructuralFeature(notification);
		return UMLPackage.eINSTANCE.getStateInvariant_Invariant().equals(feature) || UMLPackage.eINSTANCE.getConstraint_Specification().equals(feature) || UMLPackage.eINSTANCE.getOpaqueExpression_Body().equals(feature);
	}
}

Back to the top