blob: 431f55fb498e65d51f513eff2bf1957358a04517 [file] [log] [blame]
/*****************************************************************************
* 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 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
*
*****************************************************************************/
package org.eclipse.papyrus.moka.fuml.actions;
import java.util.List;
import org.eclipse.papyrus.moka.fuml.commonbehavior.SignalEventOccurrence;
import org.eclipse.papyrus.moka.fuml.simpleclassifiers.IValue;
import org.eclipse.papyrus.moka.fuml.simpleclassifiers.SignalInstance;
import org.eclipse.papyrus.moka.fuml.structuredclassifiers.IReference;
import org.eclipse.uml2.uml.InputPin;
import org.eclipse.uml2.uml.Property;
import org.eclipse.uml2.uml.SendSignalAction;
import org.eclipse.uml2.uml.Signal;
public class SendSignalActionActivation extends InvocationActionActivation {
@Override
public void doAction() {
// Get the value from the target pin. If the value is not a reference,
// then do nothing.
// Otherwise, construct a signal using the values from the argument pins
// and send it to the referent object.
SendSignalAction action = (SendSignalAction) (this.node);
IValue target = this.takeTokens(action.getTarget()).get(0);
if (target instanceof IReference) {
Signal signal = action.getSignal();
SignalInstance signalInstance = new SignalInstance();
signalInstance.type = signal;
List<Property> attributes = signal.getOwnedAttributes();
List<InputPin> argumentPins = action.getArguments();
for (int i = 0; i < attributes.size(); i++) {
Property attribute = attributes.get(i);
InputPin argumentPin = argumentPins.get(i);
List<IValue> values = this.takeTokens(argumentPin);
signalInstance.setFeatureValue(attribute, values, 0);
}
SignalEventOccurrence signalEventOccurrence = new SignalEventOccurrence();
signalEventOccurrence.signalInstance = (SignalInstance) signalInstance.copy();
signalEventOccurrence.sendTo((IReference) target);
}
}
}