blob: 9a465c532fc302836c5c4b13fe51f8968663db4c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015, 2017 Willink Transformations and others.
* 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:
* E.D.Willink - Initial API and implementation
*******************************************************************************/
package org.eclipse.qvtd.compiler.internal.qvts2qvti;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.eclipse.emf.common.util.TreeIterator;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.util.EcoreUtil;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.jdt.annotation.Nullable;
import org.eclipse.ocl.pivot.CollectionItem;
import org.eclipse.ocl.pivot.CollectionLiteralExp;
import org.eclipse.ocl.pivot.CollectionLiteralPart;
import org.eclipse.ocl.pivot.CollectionRange;
import org.eclipse.ocl.pivot.CollectionType;
import org.eclipse.ocl.pivot.EnumLiteralExp;
import org.eclipse.ocl.pivot.IfExp;
import org.eclipse.ocl.pivot.IterateExp;
import org.eclipse.ocl.pivot.Iteration;
import org.eclipse.ocl.pivot.IteratorExp;
import org.eclipse.ocl.pivot.LetExp;
import org.eclipse.ocl.pivot.MapLiteralExp;
import org.eclipse.ocl.pivot.MapLiteralPart;
import org.eclipse.ocl.pivot.MapType;
import org.eclipse.ocl.pivot.NavigationCallExp;
import org.eclipse.ocl.pivot.OCLExpression;
import org.eclipse.ocl.pivot.Operation;
import org.eclipse.ocl.pivot.OperationCallExp;
import org.eclipse.ocl.pivot.OppositePropertyCallExp;
import org.eclipse.ocl.pivot.PrimitiveLiteralExp;
import org.eclipse.ocl.pivot.Property;
import org.eclipse.ocl.pivot.PropertyCallExp;
import org.eclipse.ocl.pivot.ShadowExp;
import org.eclipse.ocl.pivot.ShadowPart;
import org.eclipse.ocl.pivot.StandardLibrary;
import org.eclipse.ocl.pivot.TupleLiteralExp;
import org.eclipse.ocl.pivot.TupleLiteralPart;
import org.eclipse.ocl.pivot.TupleType;
import org.eclipse.ocl.pivot.Type;
import org.eclipse.ocl.pivot.TypeExp;
import org.eclipse.ocl.pivot.TypedElement;
import org.eclipse.ocl.pivot.Variable;
import org.eclipse.ocl.pivot.VariableDeclaration;
import org.eclipse.ocl.pivot.VariableExp;
import org.eclipse.ocl.pivot.internal.manager.PivotMetamodelManager;
import org.eclipse.ocl.pivot.util.Visitable;
import org.eclipse.ocl.pivot.utilities.ClassUtil;
import org.eclipse.ocl.pivot.utilities.MetamodelManager;
import org.eclipse.ocl.pivot.utilities.NameUtil;
import org.eclipse.ocl.pivot.utilities.NameUtil.ToStringComparator;
import org.eclipse.ocl.pivot.utilities.PivotUtil;
import org.eclipse.ocl.pivot.utilities.TreeIterable;
import org.eclipse.qvtd.compiler.internal.qvtm2qvts.RegionUtil;
import org.eclipse.qvtd.compiler.internal.qvtm2qvts.ScheduleManager;
import org.eclipse.qvtd.compiler.internal.qvts2qvts.ClassDatumAnalysis;
import org.eclipse.qvtd.compiler.internal.qvts2qvts.RegionAnalysis;
import org.eclipse.qvtd.pivot.qvtbase.Function;
import org.eclipse.qvtd.pivot.qvtbase.Transformation;
import org.eclipse.qvtd.pivot.qvtbase.TypedModel;
import org.eclipse.qvtd.pivot.qvtbase.utilities.QVTbaseUtil;
import org.eclipse.qvtd.pivot.qvtcore.analysis.DomainUsage;
import org.eclipse.qvtd.pivot.qvtcore.util.AbstractExtendingQVTcoreVisitor;
import org.eclipse.qvtd.pivot.qvtimperative.CheckStatement;
import org.eclipse.qvtd.pivot.qvtimperative.ConnectionVariable;
import org.eclipse.qvtd.pivot.qvtimperative.DeclareStatement;
import org.eclipse.qvtd.pivot.qvtimperative.GuardParameter;
import org.eclipse.qvtd.pivot.qvtimperative.ImperativeTypedModel;
import org.eclipse.qvtd.pivot.qvtimperative.LoopVariable;
import org.eclipse.qvtd.pivot.qvtimperative.MappingParameter;
import org.eclipse.qvtd.pivot.qvtimperative.MappingParameterBinding;
import org.eclipse.qvtd.pivot.qvtimperative.MappingStatement;
import org.eclipse.qvtd.pivot.qvtimperative.NewStatement;
import org.eclipse.qvtd.pivot.qvtimperative.ObservableStatement;
import org.eclipse.qvtd.pivot.qvtimperative.SetStatement;
import org.eclipse.qvtd.pivot.qvtimperative.SimpleParameter;
import org.eclipse.qvtd.pivot.qvtimperative.Statement;
import org.eclipse.qvtd.pivot.qvtimperative.utilities.QVTimperativeUtil;
import org.eclipse.qvtd.pivot.qvtrelation.utilities.QVTrelationUtil;
import org.eclipse.qvtd.pivot.qvtschedule.CastEdge;
import org.eclipse.qvtd.pivot.qvtschedule.ClassDatum;
import org.eclipse.qvtd.pivot.qvtschedule.Edge;
import org.eclipse.qvtd.pivot.qvtschedule.ExpressionEdge;
import org.eclipse.qvtd.pivot.qvtschedule.NavigableEdge;
import org.eclipse.qvtd.pivot.qvtschedule.Node;
import org.eclipse.qvtd.pivot.qvtschedule.NodeConnection;
import org.eclipse.qvtd.pivot.qvtschedule.OperationNode;
import org.eclipse.qvtd.pivot.qvtschedule.PredicateEdge;
import org.eclipse.qvtd.pivot.qvtschedule.Region;
import org.eclipse.qvtd.pivot.qvtschedule.Role;
import org.eclipse.qvtd.pivot.qvtschedule.utilities.QVTscheduleConstants;
import com.google.common.collect.Iterables;
import com.google.common.collect.Lists;
import com.google.common.collect.Sets;
public class BasicRegion2Mapping extends AbstractRegion2Mapping
{
/**
* The OldEdgeSchedule analyses the old (constant, loaded, speculation, predicated) nodes and edges
* to build a linear edge traversal schedule in which unconditional checks that may fail appear
* as early as possible.
*/
private class OldEdgeSchedule implements Comparator<@NonNull Edge>
{
protected final @NonNull Region region;
private @NonNull Map<@NonNull Node, @NonNull Integer> node2depth;
private final @NonNull List<@NonNull Edge> oldUnconditionalEdges;
/**
* All properties (and their opposites) that need to be checked for readiness before access.
*/
private final @Nullable Set<@NonNull Property> allCheckedProperties;
/**
* The linear execution schedule for edges.
*/
private @NonNull List<@NonNull Edge> edgeSchedule = new ArrayList<>();
/**
* The edges (and their opposites) in edgeSchedule.
*/
private final @NonNull Set<@NonNull Edge> scheduledEdges = new HashSet<>();
/**
* The edges (and their opposites) in edgeSchedule.
*/
private final @NonNull Set<@NonNull Node> scheduledNodes;
public OldEdgeSchedule(@NonNull Region region) {
this.region = region;
this.node2depth = computeDepths();
this.oldUnconditionalEdges = computeOldUnconditionalEdges();
this.allCheckedProperties = computeCheckedProperties();
this.scheduledNodes = Sets.newHashSet(RegionUtil.getHeadNodes(region));
}
private void addEdge(@NonNull Edge edge) {
if (scheduledEdges.add(edge)) {
if (edge instanceof NavigableEdge) {
Edge oppositeEdge = ((NavigableEdge)edge).getOppositeEdge();
if (oppositeEdge != null) {
boolean wasAdded = scheduledEdges.add(oppositeEdge);
assert wasAdded;
}
}
Node sourceNode = RegionUtil.getSourceNode(edge);
Node targetNode = RegionUtil.getTargetNode(edge);
if (!sourceNode.isDependency() && !targetNode.isDependency()) {
addNode(sourceNode);
addNode(targetNode);
edgeSchedule.add(edge);
}
}
}
private void addNode(@NonNull Node targetNode) {
if (scheduledNodes.add(targetNode)) {
Subexpression subexpression = node2subexpression.get(targetNode);
if (subexpression != null) {
for (@NonNull Node inputNode : subexpression.inputNodes) {
addNode(inputNode);
}
}
else {
Integer targetDepth = node2depth.get(targetNode);
assert targetDepth != null;
for (@NonNull Edge edge : RegionUtil.getIncomingEdges(targetNode)) {
if (edge.isOld()) {
Node sourceNode = RegionUtil.getSourceNode(edge);
Integer sourceDepth = node2depth.get(sourceNode);
assert sourceDepth != null;
if (sourceDepth < targetDepth) {
addEdge(edge);
}
}
}
}
}
}
public void analyze() {
Set<@NonNull Edge> checkableEdges = computeCheckables();
int checkableSize = checkableEdges.size();
if (checkableSize > 0) {
List<@NonNull Edge> sortedCheckableEdges = new ArrayList<>(checkableEdges);
if (checkableSize > 1) {
Collections.sort(sortedCheckableEdges, this);
}
for (@NonNull Edge checkableEdge : sortedCheckableEdges) {
addEdge(checkableEdge);
}
}
for (@NonNull Edge edge : oldUnconditionalEdges) {
if (!edge2subexpression.containsKey(edge)) {
addEdge(edge);
}
}
// assert edgeSchedule.size() == oldEdges.size(); -- FIXME oppositeEdges inhibit simple equality check
// assert new HashSet<>(edgeSchedule).equals(new HashSet<>(oldEdges));
}
@Override
public int compare(@NonNull Edge e1, @NonNull Edge e2) {
Integer d1s = node2depth.get(RegionUtil.getSourceNode(e1));
Integer d1t = node2depth.get(RegionUtil.getTargetNode(e1));
Integer d2s = node2depth.get(RegionUtil.getSourceNode(e2));
Integer d2t = node2depth.get(RegionUtil.getTargetNode(e2));
assert (d1s != null) && (d1t != null) && (d2s != null) && (d2t != null);
int d1 = Math.max(d1s, d1t);
int d2 = Math.max(d2s, d2t);
if (d1 != d2) {
return d1 - d2;
}
if (d1s != d2s) {
return d1s - d2s;
}
return ClassUtil.safeCompareTo(e1.getDisplayName(), e2.getDisplayName());
}
/**
* Return all old edges that require a check for readiness or consistency.
*/
private @NonNull Set<@NonNull Edge> computeCheckables() {
Set<@NonNull Property> allCheckedProperties2 = allCheckedProperties;
Set<@NonNull Edge> checkables = new HashSet<>();
for (@NonNull Edge edge : oldUnconditionalEdges) {
if (edge instanceof CastEdge) {
checkables.add(edge);
}
else if (edge instanceof PredicateEdge) {
checkables.add(edge);
}
else if (edge instanceof NavigableEdge) {
if (allCheckedProperties2 != null) {
Property property = ((NavigableEdge)edge).getProperty();
if (allCheckedProperties2.contains(property)) {
checkables.add(edge);
}
}
}
}
//
// Double input nodes require a consistency check.
//
for (@NonNull Node node : RegionUtil.getOwnedNodes(region)) {
if (node.isOld() && node.isUnconditional()) {
Integer targetDepth = node2depth.get(node);
assert targetDepth != null;
if (node.isOld()) {
Edge firstEdge = null;
for (@NonNull Edge edge : RegionUtil.getIncomingEdges(node)) {
if (edge.isOld() && !edge.isExpression()) {
Integer sourceDepth = node2depth.get(RegionUtil.getSourceNode(edge));
assert sourceDepth != null;
if (sourceDepth <= targetDepth) {
if (firstEdge == null) {
firstEdge = edge;
}
else {
checkables.add(firstEdge);
checkables.add(edge);
}
}
}
}
}
}
}
return checkables;
}
/**
* Return all properties (and their opposites) that need checking for readiness prior to access.
*/
private @Nullable Set<@NonNull Property> computeCheckedProperties() {
//
// Better, we would not be pessimistic about input/output typedModel ambiguity in endogeneous
// mappings, but that incurs many typedModel accuracy issues.
//
Set<@NonNull Property> allCheckedProperties = null;
DomainUsage anyUsage = RegionUtil.getScheduleManager(region).getDomainAnalysis().getAnyUsage();
for (@NonNull TypedModel qvtmTypedModel : anyUsage.getTypedModels()) {
Iterable<@NonNull NavigableEdge> checkedEdges = RegionAnalysis.get(region).getCheckedEdges(qvtmTypedModel);
if (checkedEdges != null) {
for (NavigableEdge checkedEdge : checkedEdges) {
Property asProperty = RegionUtil.getProperty(checkedEdge);
if (allCheckedProperties == null) {
allCheckedProperties = new HashSet<>();
}
allCheckedProperties.add(asProperty);
Property asOppositeProperty = asProperty.getOpposite();
if (asOppositeProperty != null) {
allCheckedProperties.add(asOppositeProperty);
}
}
}
}
return allCheckedProperties;
}
/**
* Return a map from each old node to the minimum edge distance from a head node.
* @return
*/
private @NonNull Map<@NonNull Node, @NonNull Integer> computeDepths() {
// Successive depth candidate iteration works fine.
// A recursion has trouble with the forward/reverse edge pairs.
// A max-depth similarly has trouble with forward/reverse recursion.
Map<@NonNull Node, @NonNull Integer> node2minDepth = new HashMap<>();
Set<@NonNull Node> lowerDepthNodes = new HashSet<>();
Iterable<@NonNull Node> thisDepthNodes = RegionUtil.getHeadNodes(region);
for (int depth = 0; thisDepthNodes != null; depth++) {
Set<@NonNull Node> nextDepthNodes = null;
for (@NonNull Node node : thisDepthNodes) {
if (!node2minDepth.containsKey(node)) {
node2minDepth.put(node, depth);
}
for (@NonNull Edge edge : RegionUtil.getOutgoingEdges(node)) {
if (edge.isOld()) {
Node targetNode = RegionUtil.getTargetNode(edge);
if (!lowerDepthNodes.contains(targetNode)) {
if (nextDepthNodes == null) {
nextDepthNodes = new HashSet<>();
}
nextDepthNodes.add(targetNode);
}
}
}
}
for (@NonNull Node node : thisDepthNodes) {
lowerDepthNodes.add(node);
}
thisDepthNodes = nextDepthNodes;
}
for (@NonNull Node node : RegionUtil.getOwnedNodes(region)) {
if (node.isOld()) {
Integer depth = node2minDepth.get(node);
if (depth == null) {
assert node.isConstant();
node2minDepth.put(node, 0);
}
}
}
return node2minDepth;
}
private @NonNull List<@NonNull Edge> computeOldUnconditionalEdges() {
Set<@NonNull Edge> oldEdges = new HashSet<>();
for (@NonNull Edge edge : RegionUtil.getOwnedEdges(region)) {
if (edge.isOld() && edge.isUnconditional()) {
oldEdges.add(edge);
}
}
List<@NonNull Edge> sortedEdges = new ArrayList<>(oldEdges);
Collections.sort(sortedEdges, this);
return sortedEdges;
}
private void createCastPredicates(@NonNull Node sourceNode, @NonNull VariableDeclaration sourceVariable) {
for (@NonNull NavigableEdge edge : sourceNode.getNavigationEdges()) {
if (edge.isCast() && edge.isUnconditional()) {
Node targetNode = RegionUtil.getTargetNode(edge);
Property castProperty = RegionUtil.getProperty(edge);
Type targetType = PivotUtil.getType(castProperty);
VariableExp sourceExpression = helper.createVariableExp(sourceVariable);
VariableDeclaration targetVariable = node2variable.get(targetNode);
if (targetVariable == null) {
boolean isRequired = sourceVariable.isIsRequired();
String safeName = getSafeName(PivotUtil.getName(sourceVariable));
DeclareStatement declareStatement = helper.createDeclareStatement(safeName, targetType, isRequired, sourceExpression);
declareStatement.setIsCheck(true);
mapping.getOwnedStatements().add(declareStatement);
targetVariable = declareStatement;
node2variable.put(targetNode, targetVariable);
createCastPredicates(targetNode, targetVariable);
}
else {
createCheckStatement(sourceExpression, "oclIsKindOf", helper.createTypeExp(targetType));
}
}
}
}
public @Nullable Set<@NonNull Property> getAllCheckedProperties() {
return allCheckedProperties;
}
public void synthesize() {
@SuppressWarnings("unused")String regionName = region.getName();
for (@NonNull Edge edge : edgeSchedule) {
assert edge.isUnconditional();
Node sourceNode = RegionUtil.getSourceNode(edge);
Node targetNode = RegionUtil.getTargetNode(edge);
assert sourceNode.isUnconditional();
assert targetNode.isUnconditional();
if (edge instanceof NavigableEdge) {
Property property = RegionUtil.getProperty((NavigableEdge)edge);
OCLExpression sourceExp = createVariableExp(sourceNode);
OCLExpression source2targetExp = createCallExp(sourceExp, property);
if (targetNode.isTrue()) {
createCheckStatement(source2targetExp);
}
else if (targetNode.isExplicitNull()) {
createCheckStatement(source2targetExp, "=", helper.createNullLiteralExp());
}
else {
VariableDeclaration nodeVariable = node2variable.get(targetNode);
if (nodeVariable == null) {
DeclareStatement declareStatement = createDeclareStatement(targetNode, source2targetExp);
createCastPredicates(targetNode, declareStatement);
}
else {
VariableExp targetVariableExp = getSubexpressionVariableExp(targetNode);
createCheckStatement(targetVariableExp, "=", source2targetExp);
}
}
}
else if (edge instanceof PredicateEdge) {
VariableExp sourceVariableExp = getSubexpressionVariableExp(sourceNode);
if (!targetNode.isTrue()) {
String edgeName = ClassUtil.nonNullState(edge.getName()).trim();
if (edgeName.length() >= 2) {
edgeName = edgeName.substring(1, edgeName.length()-1); // Lose guillemets
}
VariableExp targetVariableExp = getSubexpressionVariableExp(targetNode);
createCheckStatement(sourceVariableExp, edgeName, targetVariableExp);
}
else {
createCheckStatement(sourceVariableExp);
}
}
else if (edge instanceof ExpressionEdge) {
getSubexpressionDeclaration(targetNode);
}
}
List<@NonNull Subexpression> subexpressions = new ArrayList<>(node2subexpression.values());
Collections.sort(subexpressions);
for (@NonNull Subexpression subexpression : subexpressions) {
if (!subexpression.resultNode.isNew() && subexpression.resultNode.isUnconditional()) {
getSubexpressionDeclaration(subexpression.resultNode);
}
}
}
@Override
public @NonNull String toString() {
StringBuilder s = new StringBuilder();
boolean isFirst = true;
for (@NonNull Edge edge : edgeSchedule) {
if (!isFirst) {
s.append("\n");
}
s.append(edge);
isFirst = false;
}
return s.toString();
}
}
private class ExpressionCreator extends AbstractExtendingQVTcoreVisitor<@NonNull OCLExpression, @NonNull BasicRegion2Mapping>
{
protected final @NonNull Set<@NonNull Node> multiAccessedNodes = new HashSet<>();
protected final @NonNull Set<@NonNull Node> conditionalNodes = new HashSet<>();
private /*@LazyNonNull*/ ExpressionCreator inlineExpressionCreator = null;
public ExpressionCreator() {
super(BasicRegion2Mapping.this);
analyzeExpressions(multiAccessedNodes, conditionalNodes);
}
/**
* Compute the nodes that are only evaluated if a run-time if-condition is satisfied, and the nodes that are always accessed more than once.
*/
private void analyzeExpressions(@NonNull Set<Node> multiAccessedNodes, @NonNull Set<Node> conditionalNodes) {
Set<@NonNull Node> unconditionalNodes = new HashSet<>();
for (@NonNull Edge edge : region.getRealizedEdges()) {
analyzeIncomingPath(edge.getEdgeTarget(), unconditionalNodes, conditionalNodes, false);
}
conditionalNodes.removeAll(unconditionalNodes);
for (@NonNull Node node : unconditionalNodes) {
int accesses = 0;
for (@NonNull Edge outgoingEdge : RegionUtil.getOutgoingEdges(node)) {
if (outgoingEdge.isNavigation() || outgoingEdge.isComputation()) {
accesses++;
}
}
if (accesses > 1) {
multiAccessedNodes.add(node);
}
}
}
private void analyzeIncomingPath(@NonNull Node node, @NonNull Set<Node> unconditionalNodes, @NonNull Set<Node> conditionalNodes, boolean isConditional) {
if ((isConditional ? conditionalNodes : unconditionalNodes).add(node)) {
boolean isIf = isIfExp(node);
for (@NonNull Edge edge : RegionUtil.getIncomingEdges(node)) {
if (edge.isComputation()) {
boolean isIfThenOrElse = isIf && ("then".equals(edge.getName()) || "else".equals(edge.getName()));
analyzeIncomingPath(edge.getEdgeSource(), unconditionalNodes, conditionalNodes, isConditional || isIfThenOrElse);
}
else if (edge.isNavigation()) {
analyzeIncomingPath(edge.getEdgeSource(), unconditionalNodes, conditionalNodes, isConditional);
}
}
return;
}
}
protected @NonNull OCLExpression create(/*@NonNull*/ Node node) {
if (node.isExplicitNull()) {
return helper.createNullLiteralExp();
}
VariableDeclaration theVariable = node2variable.get(node);
if (theVariable == null) {
TypedElement oldTypedElement = node.getTypedElements().iterator().next();
assert oldTypedElement != null;
OCLExpression initExpression = oldTypedElement.accept(this);
assert initExpression != null;
// Type type = newExpression.getType();
// assert type != null;
// theVariable = PivotUtil.createVariable(getSafeName(node), type, true, newExpression);
// mapping.getBottomPattern().getVariable().add(theVariable);
// node2variable.put(node, theVariable);
if ((initExpression instanceof PrimitiveLiteralExp) || hasRealizedVariableReference(initExpression) || conditionalNodes.contains(node)) {
return initExpression;
}
theVariable = createDeclareStatement(node, initExpression);
}
return PivotUtil.createVariableExp(theVariable);
}
private @Nullable OCLExpression create(@Nullable OCLExpression oldTypedElement) {
if (oldTypedElement == null) {
return null;
}
Node node = context.getNode(oldTypedElement);
if (node == null) {
node = context.getNode(oldTypedElement); // FIXME debugging
}
if (node != null) {
return create(node);
}
else {
return oldTypedElement.accept(this);
}
}
private @NonNull List<@NonNull OCLExpression> createAll(@NonNull List<@NonNull OCLExpression> oldTypedElements) {
List<@NonNull OCLExpression> newTypedElements = new ArrayList<>(oldTypedElements.size());
for (@NonNull OCLExpression oldTypedElement : oldTypedElements) {
OCLExpression newTypedElement = create(oldTypedElement);
assert newTypedElement != null;
newTypedElements.add(newTypedElement);
}
return newTypedElements;
}
private @NonNull Variable createIteratorVariable(@NonNull Variable oldVariable) {
String name = oldVariable.getName();
assert name != null;
Type type = oldVariable.getType();
assert type != null;
assert oldVariable.getOwnedInit() == null;
Variable newVariable = helper.createIteratorVariable(name, type, oldVariable.isIsRequired());
Node variableNode = getNode(oldVariable);
if (variableNode != null) {
node2variable.put(variableNode, newVariable);
}
return newVariable;
}
private @NonNull List<@NonNull Variable> createIteratorVariables(@NonNull List<@NonNull Variable> oldVariables) {
List<@NonNull Variable> newVariables = new ArrayList<>(oldVariables.size());
for (@NonNull Variable oldVariable : oldVariables) {
Variable newVariable = createIteratorVariable(oldVariable);
newVariables.add(newVariable);
}
return newVariables;
}
private @NonNull Variable createLetVariable(@NonNull Variable oldVariable) {
String name = oldVariable.getName();
assert name != null;
Type type = oldVariable.getType();
assert type != null;
OCLExpression newInit = ClassUtil.nonNullState(create(oldVariable.getOwnedInit()));
Variable newVariable = helper.createLetVariable(name, type, oldVariable.isIsRequired(), newInit);
Node variableNode = getNode(oldVariable);
if (variableNode != null) {
node2variable.put(variableNode, newVariable);
}
return newVariable;
}
private @NonNull OCLExpression createNonNull(@Nullable OCLExpression oldTypedElement) {
assert oldTypedElement != null;
Node node = context.getNode(oldTypedElement);
if (node == null) {
node = context.getNode(oldTypedElement); // FIXME debugging
}
return create(node);
}
private @NonNull Variable createResultVariable(@NonNull Variable oldVariable) {
String name = oldVariable.getName();
assert name != null;
Type type = oldVariable.getType();
assert type != null;
OCLExpression newInit = ClassUtil.nonNullState(create(oldVariable.getOwnedInit()));
Variable newVariable = helper.createResultVariable(name, type, oldVariable.isIsRequired(), newInit);
Node variableNode = getNode(oldVariable);
if (variableNode != null) {
node2variable.put(variableNode, newVariable);
}
return newVariable;
}
public @Nullable OCLExpression getExpression(@NonNull Node node) {
if (node.isExplicitNull()) {
return helper.createNullLiteralExp();
}
VariableDeclaration variable = node2variable.get(node);
if (variable != null) {
return PivotUtil.createVariableExp(variable);
}
if (node.isOperation()) {
Iterable<@NonNull TypedElement> typedElements = node.getTypedElements();
assert Iterables.size(typedElements) >= 1;
return typedElements.iterator().next().accept(getInlineExpressionCreator());
}
for (@NonNull Edge edge : node.getArgumentEdges()) {
Node expNode = edge.getEdgeSource();
OCLExpression clonedElement = create(expNode);
if (clonedElement instanceof VariableExp) {
VariableDeclaration referredVariable = ((VariableExp)clonedElement).getReferredVariable();
if (referredVariable instanceof Variable) {
node2variable.put(node, referredVariable);
}
}
return clonedElement;
}
for (@NonNull Edge edge : RegionUtil.getIncomingEdges(node)) {
if (edge.isNavigation()) {
Role edgeRole = RegionUtil.getEdgeRole(edge);
if (edgeRole == Role.LOADED) {
OCLExpression source = getExpression(edge.getEdgeSource());
if (source != null) {
return helper.createNavigationCallExp(source, RegionUtil.getProperty((NavigableEdge)edge));
}
}
else if (edgeRole == Role.PREDICATED) {
OCLExpression source = create(edge.getEdgeSource());
return helper.createNavigationCallExp(source, RegionUtil.getProperty((NavigableEdge)edge));
}
}
}
for (@NonNull Edge edge : RegionUtil.getIncomingEdges(node)) {
if (edge.isExpression()) {
OCLExpression source = create(edge.getEdgeSource());
return source;
}
}
return null;
}
public @NonNull ExpressionCreator getInlineExpressionCreator() {
ExpressionCreator inlineExpressionCreator2 = inlineExpressionCreator ;
if (inlineExpressionCreator2 == null) {
inlineExpressionCreator = inlineExpressionCreator2 = new InlineExpressionCreator();
}
return inlineExpressionCreator2;
}
private boolean hasRealizedVariableReference(@NonNull OCLExpression oclExpression) {
for (TreeIterator<EObject> tit = oclExpression.eAllContents(); tit.hasNext(); ) {
EObject eObject = tit.next();
if (eObject instanceof VariableExp) {
if (((VariableExp)eObject).getReferredVariable() instanceof NewStatement) {
return true;
}
}
}
return false;
}
@Override
public String toString() {
return getClass().getSimpleName() + " " + region;
}
@Override
public @NonNull OCLExpression visiting(@NonNull Visitable visitable) {
throw new UnsupportedOperationException(getClass().getSimpleName() + ": " + visitable.getClass().getSimpleName());
}
// public boolean isConditional(@NonNull Node node) {
// return conditionalNodes.contains(node);
// }
@Override
public @NonNull OCLExpression visitCollectionLiteralExp(@NonNull CollectionLiteralExp pCollectionLiteralExp) {
List<@NonNull CollectionLiteralPart> clonedParts = new ArrayList<>();
for (@NonNull CollectionLiteralPart pPart : ClassUtil.nullFree(pCollectionLiteralExp.getOwnedParts())) {
if (pPart instanceof CollectionItem) {
OCLExpression item = createNonNull(((CollectionItem)pPart).getOwnedItem());
clonedParts.add(helper.createCollectionItem(item));
}
else {
CollectionRange pCollectionRange = (CollectionRange)pPart;
OCLExpression first = createNonNull(pCollectionRange.getOwnedFirst());
OCLExpression last = createNonNull(pCollectionRange.getOwnedLast());
clonedParts.add(helper.createCollectionRange(first, last));
}
}
CollectionType collectionType = (CollectionType)pCollectionLiteralExp.getType();
assert collectionType != null;
return helper.createCollectionLiteralExp(collectionType, clonedParts);
}
@Override
public @NonNull OCLExpression visitEnumLiteralExp(@NonNull EnumLiteralExp pEnumLiteralExp) {
return EcoreUtil.copy(pEnumLiteralExp);
}
@Override
public @NonNull OCLExpression visitIfExp(@NonNull IfExp pIfExp) {
MetamodelManager metamodelManager = visitor.getMetamodelManager();
ExpressionCreator inlineExpressionCreator = getInlineExpressionCreator();
return ((PivotMetamodelManager)metamodelManager).createIfExp(createNonNull(pIfExp.getOwnedCondition()),
inlineExpressionCreator.createNonNull(pIfExp.getOwnedThen()),
inlineExpressionCreator.createNonNull(pIfExp.getOwnedElse()));
}
@Override
public @NonNull OCLExpression visitIterateExp(@NonNull IterateExp pIterateExp) {
OCLExpression iSource = create(pIterateExp.getOwnedSource());
assert iSource != null;
List<@NonNull ? extends Variable> iIterators = createIteratorVariables(ClassUtil.nullFree(pIterateExp.getOwnedIterators()));
Variable result = createResultVariable(ClassUtil.nonNull(pIterateExp.getOwnedResult()));
Iteration referredIteration = (Iteration) visitor.create(pIterateExp.getReferredIteration());
assert referredIteration != null;
OCLExpression iBody = getInlineExpressionCreator().create(pIterateExp.getOwnedBody());
assert iBody != null;
return helper.createIterateExp(iSource, referredIteration, iIterators, result, iBody);
}
@Override
public @NonNull OCLExpression visitIteratorExp(@NonNull IteratorExp pIteratorExp) {
OCLExpression iSource = create(pIteratorExp.getOwnedSource());
assert iSource != null;
List<@NonNull ? extends Variable> iIterators = createIteratorVariables(ClassUtil.nullFree(pIteratorExp.getOwnedIterators()));
Iteration referredIteration = (Iteration) visitor.create(pIteratorExp.getReferredIteration());
assert referredIteration != null;
OCLExpression iBody = getInlineExpressionCreator().create(pIteratorExp.getOwnedBody());
assert iBody != null;
return helper.createIteratorExp(iSource, referredIteration, iIterators, iBody);
}
@Override
public @NonNull OCLExpression visitLetExp(@NonNull LetExp pLetExp) {
Variable asVariable = createLetVariable(ClassUtil.nonNull(pLetExp.getOwnedVariable()));
OCLExpression asInExpression = create(pLetExp.getOwnedIn());
assert asInExpression != null;
return helper.createLetExp(asVariable, asInExpression);
}
@Override
public @NonNull OCLExpression visitMapLiteralExp(@NonNull MapLiteralExp pMapLiteralExp) {
List<@NonNull MapLiteralPart> clonedParts = new ArrayList<>();
for (@NonNull MapLiteralPart pPart : ClassUtil.nullFree(pMapLiteralExp.getOwnedParts())) {
OCLExpression key = createNonNull(pPart.getOwnedKey());
OCLExpression value = createNonNull(pPart.getOwnedValue());
clonedParts.add(helper.createMapLiteralPart(key, value));
}
MapType mapType = (MapType)pMapLiteralExp.getType();
assert mapType != null;
return helper.createMapLiteralExp(mapType, clonedParts);
}
@Override
public @NonNull OCLExpression visitOperationCallExp(@NonNull OperationCallExp pOperationCallExp) {
OCLExpression iSource = create(pOperationCallExp.getOwnedSource());
List<@NonNull OCLExpression> iArguments = createAll(ClassUtil.nullFree(pOperationCallExp.getOwnedArguments()));
Operation referredOperation = visitor.create(pOperationCallExp.getReferredOperation());
assert referredOperation != null;
if ((iSource == null) && (referredOperation instanceof Function)) {
ScheduleManager scheduleManager = RegionUtil.getScheduleManager(getRegion());
StandardLibrary standardLibrary = scheduleManager.getStandardLibrary();
VariableDeclaration thisVariable = QVTbaseUtil.getContextVariable(standardLibrary, visitor.getTransformation());
iSource = PivotUtil.createVariableExp(thisVariable);
}
return helper.createOperationCallExp(iSource, referredOperation, iArguments);
}
@Override
public @NonNull OCLExpression visitNavigationCallExp(@NonNull NavigationCallExp pNavigationCallExp) {
OCLExpression iSource = createNonNull(pNavigationCallExp.getOwnedSource());
Property referredProperty = PivotUtil.getReferredProperty(pNavigationCallExp);
return helper.createNavigationCallExp(iSource, referredProperty);
}
@Override
public @NonNull OCLExpression visitPrimitiveLiteralExp(@NonNull PrimitiveLiteralExp pPrimitiveLiteralExp) {
return EcoreUtil.copy(pPrimitiveLiteralExp);
}
@Override
public @NonNull OCLExpression visitShadowExp(@NonNull ShadowExp pShadowExp) {
List<@NonNull ShadowPart> clonedParts = new ArrayList<>();
for (@NonNull ShadowPart pPart : ClassUtil.nullFree(pShadowExp.getOwnedParts())) {
OCLExpression init = createNonNull(pPart.getOwnedInit());
String name = pPart.getName();
Type type = pPart.getType();
assert (name != null) && (type != null);
Property referredProperty = pPart.getReferredProperty();
assert referredProperty != null;
clonedParts.add(helper.createShadowPart(referredProperty, init));
}
org.eclipse.ocl.pivot.Class shadowType = pShadowExp.getType();
assert shadowType != null;
return helper.createShadowExp(shadowType, clonedParts);
}
@Override
public @NonNull OCLExpression visitTupleLiteralExp(@NonNull TupleLiteralExp pTupleLiteralExp) {
List<@NonNull TupleLiteralPart> clonedParts = new ArrayList<>();
for (@NonNull TupleLiteralPart pPart : ClassUtil.nullFree(pTupleLiteralExp.getOwnedParts())) {
OCLExpression init = createNonNull(pPart.getOwnedInit());
String name = pPart.getName();
Type type = pPart.getType();
assert (name != null) && (type != null);
clonedParts.add(helper.createTupleLiteralPart(name, type, pPart.isIsRequired(), init));
}
TupleType tupleType = (TupleType)pTupleLiteralExp.getType();
assert tupleType != null;
return helper.createTupleLiteralExp(tupleType, clonedParts);
}
@Override
public @NonNull OCLExpression visitTypeExp(@NonNull TypeExp pTypeExp) {
Type referredType = pTypeExp.getReferredType();
assert referredType != null;
return helper.createTypeExp(referredType);
}
// @Override -- should not be invoked; results in use of input not output variable
// public @NonNull OCLExpression visitVariable(@NonNull Variable pVariable) {
// return helper.createVariableExp(pVariable);
// }
@Override
public @NonNull OCLExpression visitVariableExp(@NonNull VariableExp pVariableExp) {
VariableDeclaration pVariable = pVariableExp.getReferredVariable();
Node node = getNode(pVariable);
if (node == null) {
ScheduleManager scheduleManager = RegionUtil.getScheduleManager(getRegion());
StandardLibrary standardLibrary = scheduleManager.getStandardLibrary();
Transformation pTransformation = QVTbaseUtil.getContainingTransformation(pVariableExp);
Variable pThisVariable = QVTbaseUtil.getContextVariable(standardLibrary, pTransformation);
if (pVariableExp.getReferredVariable() == pThisVariable) {
VariableDeclaration iThisVariable = QVTbaseUtil.getContextVariable(standardLibrary, visitor.getTransformation());
return PivotUtil.createVariableExp(iThisVariable);
}
}
if (node != null) {
VariableDeclaration iVariable = basicGetVariable(node);
assert iVariable != null;
return PivotUtil.createVariableExp(iVariable);
}
else {
System.err.println("Creating unexpected variable for " + pVariable + " in " + region);
Type variableType = pVariable.getType();
assert variableType != null;
String safeName = getSafeName(ClassUtil.nonNullState(pVariable.getName()));
DeclareStatement iVariable = helper.createDeclareStatement(safeName, variableType, pVariable.isIsRequired(), helper.createNullLiteralExp());
mapping.getOwnedStatements().add(iVariable);
// Variable oldVariable = node2variable.put(node, iVariable);
// assert oldVariable == null;
return PivotUtil.createVariableExp(iVariable);
}
}
}
private class InlineExpressionCreator extends ExpressionCreator
{
private InlineExpressionCreator() {}
@Override
public @NonNull OCLExpression create(/*@NonNull*/ Node node) {
if (node.isExplicitNull()) {
return helper.createNullLiteralExp();
}
VariableDeclaration theVariable = node2variable.get(node);
if (theVariable != null) {
return PivotUtil.createVariableExp(theVariable);
}
TypedElement oldTypedElement = node.getTypedElements().iterator().next();
assert oldTypedElement != null;
if ((oldTypedElement instanceof Variable) && (((Variable)oldTypedElement).getOwnedInit() == null)) {
for (@NonNull Edge edge : RegionUtil.getIncomingEdges(node)) {
if (edge.isExpression() && QVTscheduleConstants.EQUALS_NAME.equals(edge.getName())) {
Node edgeSource = edge.getEdgeSource();
return create(edgeSource); //createBottomVariable(node, helper.createNullLiteralExp()); // FIXME is this possible?
}
else if (edge.isCast()) {
throw new UnsupportedOperationException();
//theVariable = createBottomVariable(node, helper.createNullLiteralExp()); // FIXME is this possible?
}
}
}
else {
return oldTypedElement.accept(this);
}
throw new UnsupportedOperationException();
}
}
private class Subexpression implements Comparable<@NonNull Subexpression>
{
/**
* The subexpression result
*/
private final @NonNull OperationNode resultNode;
/**
* Externalnodes used within the subexpression
*/
private final @NonNull Set<@NonNull Node> inputNodes = new HashSet<>();
/**
* Nodes within the subexpression
*/
private final @NonNull Set<@NonNull Node> contentNodes = new HashSet<>();
private @Nullable Integer depth = null;
public Subexpression(@NonNull OperationNode resultNode) {
this.resultNode = resultNode;
assert resultNode.isUnconditional();
}
public void analyze(@NonNull Set<@NonNull OperationNode> subexpressionResults) {
computeSubexpressionContent(resultNode, subexpressionResults);
}
@Override
public int compareTo(@NonNull Subexpression e2) {
Subexpression e1 = this;
int d1 = e1.getDepth();
int d2 = e2.getDepth();
if (d1 != d2) {
return d1 - d2;
}
return ClassUtil.safeCompareTo(e1.resultNode.getDisplayName(), e2.resultNode.getDisplayName());
}
private void computeSubexpressionContent(@NonNull Node node, @NonNull Set<@NonNull OperationNode> subexpressionResults) {
if (contentNodes.add(node)) {
for (@NonNull Edge edge : RegionUtil.getIncomingEdges(node)) {
// if (edge.isUnconditional()) {
Node sourceNode = edge.getEdgeSource();
if (subexpressionResults.contains(sourceNode)) {
if (sourceNode.isOld() || (!edge.isSecondary() && resultNode.isNew())) {
inputNodes.add(sourceNode);
}
}
else if (sourceNode.isExpression()) {
edge2subexpression.put(edge, this);
computeSubexpressionContent(sourceNode, subexpressionResults);
}
else if (!sourceNode.isUnconditional()) {
edge2subexpression.put(edge, this);
computeSubexpressionContent(sourceNode, subexpressionResults);
}
else {
if (sourceNode.isOld() || resultNode.isNew()) {
inputNodes.add(sourceNode);
edge2subexpression.put(edge, this);
}
}
// }
}
}
}
public int getDepth() {
Integer depth2 = depth;
if (depth2 == null) {
int inputDepth = 0;
for (@NonNull Node inputNode : inputNodes) {
Subexpression inputSubexpression = node2subexpression.get(inputNode);
if (inputSubexpression != null) {
inputDepth = Math.max(inputDepth, inputSubexpression.getDepth()+1);
}
}
depth = depth2 = inputDepth;
}
return depth2;
}
@Override
public @NonNull String toString() {
return String.valueOf(resultNode);
}
}
/**
* Map from each subexpression result to its contents.
*/
private final @NonNull Map<@NonNull OperationNode, @NonNull Subexpression> node2subexpression;
/**
* Map from each subexpression edge to its contents.
*/
private final @NonNull Map<@NonNull Edge, @NonNull Subexpression> edge2subexpression = new HashMap<>();
/**
* The selected head from each head group that is actually passed. Other heads are computed.
*/
private final @NonNull List<@NonNull Node> headNodes = new ArrayList<>();
/**
* The subset of possible guard nodes that all callers can pass.
*/
private final @NonNull List<@NonNull Node> guardNodes = new ArrayList<>();
/**
* Mapping from the scheduled Nodes to their QVTi variables.
*/
private final @NonNull Map<@NonNull Node, @NonNull VariableDeclaration> node2variable = new HashMap<>();
public BasicRegion2Mapping(@NonNull QVTs2QVTiVisitor visitor, @NonNull Region region) {
super(visitor, region);
@SuppressWarnings("unused")String name = region.getName();
this.node2subexpression = computeSubexpressions();
//
// Create the 'local' statements.
//
createHeadAndGuardNodeVariables(); // BLUE/CYAN guard/append nodes
OldEdgeSchedule oldSchedule = createNavigablePredicates(); // BLUE/CYAN navigable nodes and edges
createRealizedVariables(); // GREEN nodes
createPropertyAssignments(); // GREEN edges
createAddStatements(); // export to append nodes
createRealizedIncludesAssignments();
Set<@NonNull Property> allCheckedProperties = oldSchedule.getAllCheckedProperties();
if (allCheckedProperties != null) {
createObservedProperties(allCheckedProperties); // wrap observable clauses around hazardous accesses
}
//
// The 'global' statements are created by createSchedulingStatements().
//
}
public @Nullable VariableDeclaration basicGetVariable(@NonNull Node node) {
return node2variable.get(node);
}
/**
* Return all subexpressions and their content. A subexpression is an OperationNode whose value is consumed by
* one (or more) PatternNodes or by two (or more) OperationNodes.
*/
private @NonNull Map<@NonNull OperationNode, @NonNull Subexpression> computeSubexpressions() {
Map<@NonNull OperationNode, @NonNull Subexpression> node2subexpression = new HashMap<>();
//
// Identify the subexpression result nodes
//
for (@NonNull Node node : RegionUtil.getOwnedNodes(region)) {
if (node.isOperation() && node.isUnconditional()) {
OperationNode resultNode = (OperationNode) node;
Edge firstEdge = null;
boolean isSubexpression = false;
for (@NonNull Edge edge : RegionUtil.getIncomingEdges(node)) {
if (edge.isNew() && !edge.isSecondary()) {
Node edgeSource = edge.getSourceNode();
if (edgeSource.isPattern()) {
node2subexpression.put(resultNode, new Subexpression(resultNode));
isSubexpression = true;
break;
}
}
}
if (!isSubexpression) {
for (@NonNull Edge edge : RegionUtil.getOutgoingEdges(node)) {
Node edgeTarget = edge.getTargetNode();
if (edgeTarget.isPattern() || edgeTarget.isTrue()) {
node2subexpression.put(resultNode, new Subexpression(resultNode));
break;
}
if (firstEdge == null) {
firstEdge = edge;
}
else {
node2subexpression.put(resultNode, new Subexpression(resultNode));
break;
}
}
}
}
}
//
// Gather the subexpression contents.
//
Set<@NonNull OperationNode> subexpressionResults = node2subexpression.keySet();
for (@NonNull Subexpression subexpression : node2subexpression.values()) {
subexpression.analyze(subexpressionResults);
}
return node2subexpression;
}
/**
* Create accumulation assignments for connections.
*/
private void createAddStatements() {
if (connection2variable != null) {
for (@NonNull NodeConnection connection : connection2variable.keySet()) {
Node sourceNode = connection.getSource(region);
OCLExpression variableExpression = createVariableExp(sourceNode);
ConnectionVariable connectionVariable = connection2variable.get(connection);
assert connectionVariable != null;
createAddStatement(connectionVariable, variableExpression);
}
}
}
private @NonNull CheckStatement createCheckStatement(@NonNull OCLExpression booleanExpression) {
CheckStatement checkStatement = helper.createCheckStatement(booleanExpression);
mapping.getOwnedStatements().add(checkStatement);
return checkStatement;
}
private @NonNull CheckStatement createCheckStatement(@NonNull OCLExpression firstExpression, @NonNull String operatorName, @NonNull OCLExpression secondExpression) {
OCLExpression booleanExpression = helper.createOperationCallExp(firstExpression, operatorName, secondExpression);
CheckStatement checkStatement = createCheckStatement(booleanExpression);
return checkStatement;
}
private void createClassSetStatements(@NonNull Iterable<@NonNull List<@NonNull NavigableEdge>> classAssignments) {
for (@NonNull List<@NonNull NavigableEdge> edges : classAssignments) {
for (@NonNull NavigableEdge edge : edges) {
Node sourceNode = edge.getEdgeSource();
Node targetNode = edge.getEdgeTarget();
Property property = RegionUtil.getProperty(edge);
boolean isNotify = isHazardousWrite(edge);
Property setProperty;
VariableDeclaration slotVariable;
OCLExpression targetVariableExp;
SetStatement setStatement;
boolean isPartial;
if (/*!isPartial &&*/ property.isIsImplicit()) {
slotVariable = getVariable(targetNode);
setProperty = QVTrelationUtil.getOpposite(property);
targetVariableExp = createVariableExp(sourceNode);
isPartial = setProperty.isIsMany();
}
else {
slotVariable = getVariable(sourceNode);
setProperty = property;
targetVariableExp = createVariableExp(targetNode);
isPartial = edge.isPartial();
}
setStatement = helper.createSetStatement(slotVariable, setProperty, targetVariableExp, isPartial, isNotify);
mapping.getOwnedStatements().add(setStatement);
}
}
}
private @NonNull DeclareStatement createDeclareStatement(@NonNull Node node, @NonNull OCLExpression initExpression) {
Type variableType = node.getCompleteClass().getPrimaryClass();
assert variableType != null;
boolean isRequired = node.isMatched();
for (@NonNull TypedElement typedElement : node.getTypedElements()) {
if (!typedElement.isIsRequired()) {
isRequired = false;
}
}
if (initExpression.isIsRequired()) {
isRequired = true;
}
String safeName = getSafeName(node);
DeclareStatement newVariable = helper.createDeclareStatement(safeName, variableType, isRequired, initExpression);
mapping.getOwnedStatements().add(newVariable);
VariableDeclaration oldVariable = node2variable.put(node, newVariable);
assert oldVariable == null;
return newVariable;
}
private @NonNull GuardParameter createGuardParameter(@NonNull Node guardNode) {
ClassDatumAnalysis classDatumAnalysis = RegionUtil.getClassDatumAnalysis(guardNode);
Type variableType = guardNode.getCompleteClass().getPrimaryClass();
ImperativeTypedModel iTypedModel = ClassUtil.nonNullState(visitor.getQVTiTypedModel(classDatumAnalysis.getClassDatum().getReferredTypedModel()));
GuardParameter guardParameter = helper.createGuardParameter(getSafeName(guardNode), iTypedModel, variableType, true);
Property statusProperty = RegionUtil.basicGetStatusProperty(guardNode);
if (statusProperty != null) {
NavigableEdge statusEdge = guardNode.getNavigationEdge(statusProperty);
if ((statusEdge != null) && statusEdge.isRealized()) {
guardParameter.setSuccessProperty(statusProperty);
}
}
mapping.getOwnedMappingParameters().add(guardParameter);
VariableDeclaration oldVariable = node2variable.put(guardNode, guardParameter);
assert oldVariable == null;
return guardParameter;
}
/**
* Identify the headNodes/guardNodes and create a guard variable for each guard node.
*/
private void createHeadAndGuardNodeVariables() {
Set<@NonNull Region> headCallingRegions = new HashSet<@NonNull Region>();
Iterable<@NonNull Edge> recursionEdges = region.getRecursionEdges();
if (Iterables.size(recursionEdges) > 0) {
headCallingRegions.add(region);
}
for (@NonNull Node headNode : RegionUtil.getHeadNodes(region)) {
if (!headNode.isTrue() && !headNode.isDependency()) {
Node bestHeadNode = null;
Iterable<@NonNull Node> callingSources = headNode.getPassedBindingSources();
if (!Iterables.isEmpty(callingSources)) {
bestHeadNode = headNode;
}
for (@NonNull Node callingSource : callingSources) {
headCallingRegions.add(RegionUtil.getOwningRegion(callingSource));
}
if (bestHeadNode != null) {
headNodes.add(bestHeadNode);
}
else {
visitor.addProblem(RegionUtil.createRegionError(region, "No best head"));
}
}
}
guardNodes.addAll(headNodes);
Collections.sort(guardNodes, NameUtil.NAMEABLE_COMPARATOR);
for (@NonNull Node guardNode : guardNodes) {
assert !guardNode.isDependency();
createGuardParameter(guardNode);
}
//
// Create any connectionVariable guards
//
createAppendParameters();
}
private void createMappingStatements(@NonNull Map<@NonNull Region, @NonNull Map<@NonNull Node, @NonNull Node>> calls) {
List<@NonNull MappingStatement> mappingStatements = new ArrayList<>();
Map<@NonNull LoopVariable, @NonNull OCLExpression> loopVariables = null;
for (Map.Entry<@NonNull Region, @NonNull Map<@NonNull Node, @NonNull Node>> entry : calls.entrySet()) {
@NonNull Region calledRegion = entry.getKey();
AbstractRegion2Mapping calledRegion2Mapping = visitor.getRegion2Mapping(calledRegion);
List<@NonNull MappingParameterBinding> mappingParameterBindings = new ArrayList<>();
for (Map.Entry<@NonNull Node, @NonNull Node> entry2 : entry.getValue().entrySet()) {
@NonNull Node sourceNode = entry2.getKey();
@NonNull Node targetNode = entry2.getValue();
OCLExpression sourceExpression = createVariableExp(sourceNode);
Type type = sourceExpression.getType();
if (type instanceof CollectionType) {
if (loopVariables == null) {
loopVariables = new HashMap<>();
}
Type elementType = ((CollectionType)type).getElementType();
assert elementType != null;
LoopVariable loopVariable = helper.createLoopVariable(getSafeName("loop" + loopVariables.size()), elementType);//, true, sourceExpression);
loopVariables.put(loopVariable, sourceExpression);
// sourceExpression = PivotUtil.createVariableExp(loopVariable);
VariableDeclaration guardVariable = calledRegion2Mapping.getGuardVariable(targetNode);
mappingParameterBindings.add(helper.createLoopParameterBinding((GuardParameter) guardVariable, loopVariable));
}
else {
VariableDeclaration guardVariable = calledRegion2Mapping.getGuardVariable(targetNode);
mappingParameterBindings.add(helper.createSimpleParameterBinding((SimpleParameter) guardVariable, sourceExpression));
}
}
Collections.sort(mappingParameterBindings, QVTimperativeUtil.MappingParameterBindingComparator.INSTANCE);
MappingStatement mappingCallStatement = calledRegion2Mapping.createMappingCall(mappingParameterBindings);
if (loopVariables != null) {
for (Map.Entry<@NonNull LoopVariable, @NonNull OCLExpression> loopEntry : loopVariables.entrySet()) {
@NonNull LoopVariable loopVariable = loopEntry.getKey();
@NonNull OCLExpression loopSource = loopEntry.getValue();
mappingCallStatement = helper.createMappingLoop(loopSource, loopVariable, mappingCallStatement);
}
}
mappingStatements.add(mappingCallStatement);
}
mapping.getOwnedStatements().addAll(mappingStatements);
}
/**
* Recurse over the guard nodes and loaded/predicates region and convert the non-guard nodes to unrealized variables
* and edges to predicates or initializations
*/
private @NonNull OldEdgeSchedule createNavigablePredicates() {
OldEdgeSchedule oldSchedule = new OldEdgeSchedule(region);
oldSchedule.analyze();
oldSchedule.synthesize();
return oldSchedule;
}
private void createObservedProperties(@NonNull Set<@NonNull Property> allCheckedProperties) {
//
// Ideally we could install each observed property as it is actually used. But
// this needs to be coded in many places.
//
for (Statement asStatement : mapping.getOwnedStatements()) {
if (asStatement instanceof ObservableStatement) {
List<Property> observedProperties = ((ObservableStatement)asStatement).getObservedProperties();
for (EObject eObject : new TreeIterable(asStatement, false)) {
if (eObject instanceof PropertyCallExp) {
Property property = PivotUtil.getReferredProperty((PropertyCallExp) eObject);
if (allCheckedProperties.contains(property) && !observedProperties.contains(property)) {
observedProperties.add(property);
}
}
else if (eObject instanceof OppositePropertyCallExp) {
Property property = PivotUtil.getReferredProperty((NavigationCallExp) eObject).getOpposite();
if (allCheckedProperties.contains(property) && !observedProperties.contains(property)) {
observedProperties.add(property);
}
}
}
}
}
}
private void createPropertyAssignments() {
Map<@NonNull Node, @NonNull List<@NonNull NavigableEdge>> classAssignments = null;
for (@NonNull NavigableEdge edge : NavigationEdgeSorter.getSortedAssignments(region.getRealizedNavigationEdges())) {
Node sourceNode = edge.getEdgeSource();
Node targetNode = edge.getEdgeTarget();
if (targetNode.isStatus()) {} // SuccessNode has a 'magic' automatic assignment
else if (targetNode.isDataType()) {
VariableDeclaration asVariable = getVariable(sourceNode);
Property property = RegionUtil.getProperty(edge);
ExpressionCreator expressionCreator = new ExpressionCreator();
OCLExpression valueExp = expressionCreator.getExpression(targetNode);
if (valueExp == null) {
ExpressionCreator expressionCreator2 = new ExpressionCreator();
valueExp = expressionCreator2.getExpression(targetNode); // FIXME debugging
}
if (valueExp != null) {
boolean isNotify = isHazardousWrite(edge);
SetStatement setStatement = helper.createSetStatement(asVariable, property, valueExp, edge.isPartial(), isNotify);
// addObservedProperties(setStatement);
mapping.getOwnedStatements().add(setStatement);
}
else {
System.err.println("No assignment in " + this + " to " + asVariable + "." + property);
}
}
else {
if (classAssignments == null) {
classAssignments = new HashMap<>();
}
List<@NonNull NavigableEdge> edges = classAssignments.get(sourceNode);
if (edges == null) {
edges = new ArrayList<>();
classAssignments.put(sourceNode, edges);
}
edges.add(edge);
}
}
if (classAssignments != null) {
pruneClassAssignments(classAssignments);
Collection<@NonNull List<@NonNull NavigableEdge>> values = classAssignments.values();
createClassSetStatements(values);
}
// @SuppressWarnings("null")
// @NonNull EList<@NonNull Statement> statements = mapping.getOwnedStatements();
// ECollections.sort(statements, new StatementComparator(statements));
}
private void createRealizedIncludesAssignments() {
List<@NonNull Edge> realizedIncludesEdges = null;
for (@NonNull Edge edge : region.getRealizedEdges()) {
// if (RegionUtil.isRealizedIncludes(edge)) {
// if (realizedIncludesEdges == null) {
// realizedIncludesEdges = new ArrayList<>();
// }
// realizedIncludesEdges.add(edge);
// }
}
if (realizedIncludesEdges != null) {
if (realizedIncludesEdges.size() > 1) {
Collections.sort(realizedIncludesEdges, ToStringComparator.INSTANCE);
}
for (@NonNull Edge edge : realizedIncludesEdges) {
Node sourceNode = edge.getEdgeSource();
Node targetNode = edge.getEdgeTarget();
/* if (targetNode.isDataType()) {
OCLExpression slotVariableExp = createVariableExp(sourceNode);
Property property = edge.getProperty();
OCLExpression valueExp = expressionCreator.getExpression(targetNode);
if (valueExp == null) {
valueExp = expressionCreator.getExpression(targetNode); // FIXME debugging
}
if (valueExp != null) {
PropertyAssignment propertyAssignment = QVTimperativeUtil.createPropertyAssignment(slotVariableExp, property, valueExp);
bottomPattern.getAssignment().add(propertyAssignment);
}
else {
System.err.println("No assignment in " + this + " to " + slotVariableExp + "." + property);
*/
}
}
}
private void createRealizedVariables() {
List<@NonNull Node> sortedNodes = Lists.newArrayList(region.getNewNodes());
Collections.sort(sortedNodes,NameUtil.NAMEABLE_COMPARATOR);
for (@NonNull Node newNode : sortedNodes) {
if (/*newNode.isPattern() &&*/ newNode.isClass()) {
ExpressionCreator expressionCreator = new ExpressionCreator();
OCLExpression constructor = null;
if (newNode.isOperation()) {
constructor = ((OperationCallExp)newNode.getTypedElements().iterator().next()).accept(expressionCreator);
}
ClassDatum classDatum = newNode.getClassDatum();
TypedModel pTypedModel = classDatum.getReferredTypedModel();
ImperativeTypedModel iTypedModel = ClassUtil.nonNullState(visitor.getQVTiTypedModel(pTypedModel));
NewStatement newStatement = helper.createNewStatement(getSafeName(newNode), iTypedModel, classDatum.getCompleteClass().getPrimaryClass());
newStatement.setOwnedExpression(constructor);
newStatement.setIsContained(newNode.isContained());
mapping.getOwnedStatements().add(newStatement);
VariableDeclaration oldVariable = node2variable.put(newNode, newStatement);
assert oldVariable == null;
}
}
}
@Override
public void createSchedulingStatements() {
Map<@NonNull Region, @NonNull Map<@NonNull Node, @NonNull Node>> calls = null;
for (@NonNull Region calledRegion : region.getCallableChildren()) {
if (calls == null) {
calls = new HashMap<>();
}
Map<@NonNull Node, @NonNull Node> source2target = calls.get(calledRegion);
if (source2target == null) {
source2target = new HashMap<>();
calls.put(calledRegion, source2target);
}
AbstractRegion2Mapping calledRegion2Mapping = visitor.getRegion2Mapping(calledRegion);
for (@NonNull Node calledGuardNode : calledRegion2Mapping.getGuardNodes()) {
for (@NonNull Node callingNode : calledGuardNode.getPassedBindingSources()) {
if (callingNode.getOwningRegion() == region) {
Node oldNode = source2target.put(callingNode, calledGuardNode);
assert oldNode == null;
}
}
for (@NonNull Node callingNode : calledGuardNode.getUsedBindingSources()) {
if (callingNode.getOwningRegion() == region) {
Node oldNode = source2target.put(callingNode, calledGuardNode);
assert oldNode == null;
}
}
}
}
if (calls != null) {
createMappingStatements(calls);
}
}
private @NonNull OCLExpression createVariableExp(@NonNull Node node) {
if (node.isExplicitNull()) {
return helper.createNullLiteralExp();
}
else {
VariableDeclaration variable = getVariable(node);
return PivotUtil.createVariableExp(variable);
}
}
@Override
public @NonNull List<@NonNull Node> getGuardNodes() {
return guardNodes;
}
@Override
public @NonNull MappingParameter getGuardVariable(@NonNull Node node) {
VariableDeclaration variable = node2variable.get(node);
assert variable != null;
return (MappingParameter) variable;
}
private @NonNull VariableDeclaration getSubexpressionDeclaration(@NonNull Node node) {
VariableDeclaration variable = node2variable.get(node);
if (variable == null) {
ExpressionCreator expressionCreator = new ExpressionCreator();
ExpressionCreator inlineExpressionCreator = expressionCreator.getInlineExpressionCreator();
OCLExpression targetExpression = inlineExpressionCreator.getExpression(node);
assert targetExpression != null;
variable = createDeclareStatement(node, targetExpression);
}
return variable;
}
private @NonNull VariableExp getSubexpressionVariableExp(@NonNull Node node) {
return helper.createVariableExp(getSubexpressionDeclaration(node));
}
protected @NonNull VariableDeclaration getVariable(@NonNull Node node) {
return getSubexpressionDeclaration(node);
/* VariableDeclaration variable = node2variable.get(node);
if (variable == null) {
ExpressionCreator expressionCreator = new ExpressionCreator();
TypedElement typedElement = node.getTypedElements().iterator().next();
OCLExpression initExpression = typedElement.accept(expressionCreator);
variable = createDeclareStatement(node, initExpression);
}
return variable; */
}
private boolean isIfExp(@NonNull Node node) {
if (node.isExpression()) {
for (TypedElement typedElement : node.getTypedElements()) {
if (typedElement instanceof IfExp) {
return true;
}
}
}
return false;
}
private boolean isHazardousWrite(@NonNull NavigableEdge edge) {
Node sourceNode = edge.getEdgeSource();
Property asProperty = edge.getProperty();
TypedModel typedModel = RegionUtil.getTypedModel(RegionUtil.getClassDatumAnalysis(sourceNode));
Iterable<@NonNull NavigableEdge> enforcedEdges = RegionAnalysis.get(region).getEnforcedEdges(typedModel);
if (enforcedEdges != null) {
Property asOppositeProperty = asProperty.getOpposite();
for (@NonNull NavigableEdge enforcedEdge : enforcedEdges) {
Property edgeProperty = enforcedEdge.getProperty();
if ((edgeProperty == asProperty) || (edgeProperty == asOppositeProperty)) {
return true;
}
}
}
return false;
}
@Override
public boolean isInfinite() {
if (region.getRecursionEdges().iterator().hasNext()) { // FIXME unduly pessimistic
return true;
}
return false;
}
/**
* Filter classAssignments to retain only one of each opposite-property assignment pair.
*/
private void pruneClassAssignments(@NonNull Map<@NonNull Node, @NonNull List<@NonNull NavigableEdge>> classAssignments) {
for (@NonNull Node sourceNode : new ArrayList<>(classAssignments.keySet())) {
List<@NonNull NavigableEdge> forwardEdges = classAssignments.get(sourceNode);
assert forwardEdges != null;
for (int iForward = forwardEdges.size()-1; iForward >= 0; iForward--) {
NavigableEdge forwardEdge = forwardEdges.get(iForward);
Node targetNode = forwardEdge.getEdgeTarget();
List<@NonNull NavigableEdge> reverseEdges = classAssignments.get(targetNode);
if (reverseEdges != null) {
for (int iReverse = reverseEdges.size()-1; iReverse >= 0; iReverse--) {
NavigableEdge reverseEdge = reverseEdges.get(iReverse);
if (sourceNode == reverseEdge.getEdgeTarget()) {
Property forwardProperty = forwardEdge.getProperty();
Property reverseProperty = reverseEdge.getProperty();
if (forwardProperty.getOpposite() == reverseProperty) {
if (forwardProperty.isIsImplicit()) {
forwardEdges.remove(forwardEdge);
}
else if (reverseProperty.isIsImplicit()) {
reverseEdges.remove(reverseEdge);
}
else if (sourceNode.isDependency()) {
forwardEdges.remove(forwardEdge);
}
else if (targetNode.isDependency()) {
reverseEdges.remove(reverseEdge);
}
else { // FIXME do we prefer either direction ?
reverseEdges.remove(reverseEdge);
}
}
}
}
}
}
}
}
@Override
public @NonNull String toString() {
return String.valueOf(region);
}
}