blob: 00d4a2dafa520ca7a04560c91f73fc816799f48c [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2020 CEA LIST
*
*
* 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:
* ansgar.radermacher@cea.fr - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.robotics.assertions.types.advice;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.gmf.runtime.common.core.command.CompositeCommand;
import org.eclipse.gmf.runtime.common.core.command.ICommand;
import org.eclipse.gmf.runtime.emf.type.core.requests.ConfigureRequest;
import org.eclipse.gmf.runtime.emf.type.core.requests.CreateElementRequest;
import org.eclipse.gmf.runtime.emf.type.core.requests.GetEditContextRequest;
import org.eclipse.gmf.runtime.emf.type.core.requests.IEditCommandRequest;
import org.eclipse.gmf.runtime.emf.type.core.requests.SetRequest;
import org.eclipse.papyrus.infra.services.edit.service.ElementEditServiceUtils;
import org.eclipse.papyrus.infra.services.edit.service.IElementEditService;
import org.eclipse.papyrus.robotics.assertions.profile.assertions.Assertion;
import org.eclipse.papyrus.robotics.assertions.profile.util.AssertionsResource;
import org.eclipse.papyrus.robotics.core.types.advice.AbstractApplyStereotypeEditHelperAdvice;
import org.eclipse.papyrus.robotics.core.utils.NamingUtil;
import org.eclipse.uml2.uml.Class;
import org.eclipse.uml2.uml.Constraint;
import org.eclipse.uml2.uml.UMLPackage;
public class AssertionAdvice extends AbstractApplyStereotypeEditHelperAdvice {
private static final String ASSERTION_PREFIX = "A"; //$NON-NLS-1$
@Override
public boolean approveRequest(IEditCommandRequest request) {
if (request instanceof GetEditContextRequest) {
GetEditContextRequest context = (GetEditContextRequest) request;
if (context.getEditCommandRequest() instanceof CreateElementRequest) {
CreateElementRequest createReq = (CreateElementRequest) context.getEditCommandRequest();
if (!(createReq.getContainer() instanceof Class)) {
return false;
}
}
}
return super.approveRequest(request);
}
/**
* @see org.eclipse.gmf.runtime.emf.type.core.edithelper.AbstractEditHelperAdvice#getAfterConfigureCommand(ogrg.eclipse.gmf.runtime.emf.type.core.requests.CreateElementRequest)
*
* Add data-type.
*/
@Override
protected ICommand getAfterConfigureCommand(ConfigureRequest request) {
CompositeCommand compositeCommand = new CompositeCommand("Configure Assertion"); //$NON-NLS-1$
EObject newElement = request.getElementToConfigure();
if (!(newElement instanceof Constraint)) {
return super.getAfterConfigureCommand(request);
}
final Constraint assertion = (Constraint) newElement;
// set name element and constrained elements
final IElementEditService commandProvider = ElementEditServiceUtils.getCommandProvider(assertion);
SetRequest setAssertionNameReq = new SetRequest(assertion, UMLPackage.eINSTANCE.getNamedElement_Name(),
NamingUtil.getName(assertion, ASSERTION_PREFIX, "%04d")); //$NON-NLS-1$
ICommand setAssertionNameCmd = commandProvider.getEditCommand(setAssertionNameReq);
SetRequest setConstrainedElemReq = new SetRequest(assertion, UMLPackage.eINSTANCE.getConstraint_ConstrainedElement(),
assertion.getContext());
ICommand setConstrainedElemCmd = commandProvider.getEditCommand(setConstrainedElemReq);
compositeCommand.add(setAssertionNameCmd);
compositeCommand.add(setConstrainedElemCmd);
return compositeCommand.isEmpty() ? super.getAfterConfigureCommand(request) : compositeCommand;
}
@Override
protected URI getProfileURI() {
return AssertionsResource.PROFILE_PATH_URI;
}
@Override
protected java.lang.Class<? extends EObject> stereotypeToApply() {
return Assertion.class;
}
}