NotCollocated.java
/*******************************************************************************
* Copyright (c) 2004-2025 Carnegie Mellon University and others. (see Contributors file).
* All Rights Reserved.
*
* NO WARRANTY. ALL MATERIAL IS FURNISHED ON AN "AS-IS" BASIS. CARNEGIE MELLON UNIVERSITY MAKES NO WARRANTIES OF ANY
* KIND, EITHER EXPRESSED OR IMPLIED, AS TO ANY MATTER INCLUDING, BUT NOT LIMITED TO, WARRANTY OF FITNESS FOR PURPOSE
* OR MERCHANTABILITY, EXCLUSIVITY, OR RESULTS OBTAINED FROM USE OF THE MATERIAL. CARNEGIE MELLON UNIVERSITY DOES NOT
* MAKE ANY WARRANTY OF ANY KIND WITH RESPECT TO FREEDOM FROM PATENT, TRADEMARK, OR COPYRIGHT INFRINGEMENT.
*
* This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
* SPDX-License-Identifier: EPL-2.0
*
* Created, in part, with funding and support from the United States Government. (see Acknowledgments file).
*
* This program includes and/or can make use of certain third party source code, object code, documentation and other
* files ("Third Party Software"). The Third Party Software that is used by this program is dependent upon your system
* configuration. By using this program, You agree to comply with any and all relevant Third Party Software terms and
* conditions contained in any such Third Party Software or separate license file distributed with such Third Party
* Software. The parties who own the Third Party Software ("Third Party Licensors") are intended third party beneficiaries
* to this license with respect to the terms applicable to their Third Party Software. Third Party Software licenses
* only apply to the Third Party Software and not any other portion of this program or this program as a whole.
*******************************************************************************/
package org.osate.aadl2.contrib.deployment;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.stream.Collectors;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.resource.ResourceSet;
import org.osate.aadl2.Aadl2Factory;
import org.osate.aadl2.BasicPropertyAssociation;
import org.osate.aadl2.Classifier;
import org.osate.aadl2.ClassifierValue;
import org.osate.aadl2.ListValue;
import org.osate.aadl2.Mode;
import org.osate.aadl2.NamedElement;
import org.osate.aadl2.PropertyExpression;
import org.osate.aadl2.RecordValue;
import org.osate.aadl2.instance.InstanceObject;
import org.osate.aadl2.instance.InstanceReferenceValue;
import org.osate.aadl2.properties.PropertyNotPresentException;
import org.osate.pluginsupport.properties.CodeGenUtil;
import org.osate.pluginsupport.properties.GeneratedRecord;
public class NotCollocated extends GeneratedRecord {
public static final String TARGETS__NAME = "Targets";
public static final String LOCATION__NAME = "Location";
public static final URI TARGETS__URI = URI.createURI("platform:/plugin/org.osate.aadl2.contrib/resources/properties/Predeclared_Property_Sets/Deployment_Properties.aadl#/0/@ownedProperty.18/@ownedPropertyType/@ownedField.0");
public static final URI LOCATION__URI = URI.createURI("platform:/plugin/org.osate.aadl2.contrib/resources/properties/Predeclared_Property_Sets/Deployment_Properties.aadl#/0/@ownedProperty.18/@ownedPropertyType/@ownedField.1");
private final Optional<List<InstanceObject>> targets;
private final Optional<Classifier> location;
public NotCollocated(
Optional<List<InstanceObject>> targets,
Optional<Classifier> location
) {
this.targets = targets;
this.location = location;
}
public NotCollocated(PropertyExpression propertyExpression, NamedElement lookupContext, Optional<Mode> mode) {
RecordValue recordValue = (RecordValue) propertyExpression;
Optional<List<InstanceObject>> targets_local;
try {
targets_local = findFieldValue(recordValue, TARGETS__NAME).map(field -> {
PropertyExpression resolved = CodeGenUtil.resolveNamedValue(field.getOwnedValue(), lookupContext, mode);
return ((ListValue) resolved).getOwnedListElements().stream().map(element1 -> {
PropertyExpression resolved1 = CodeGenUtil.resolveNamedValue(element1, lookupContext, mode);
return ((InstanceReferenceValue) resolved1).getReferencedInstanceObject();
}).collect(Collectors.toList());
});
} catch (PropertyNotPresentException e) {
targets_local = Optional.empty();
}
this.targets = targets_local;
Optional<Classifier> location_local;
try {
location_local = findFieldValue(recordValue, LOCATION__NAME).map(field -> {
PropertyExpression resolved = CodeGenUtil.resolveNamedValue(field.getOwnedValue(), lookupContext, mode);
return ((ClassifierValue) resolved).getClassifier();
});
} catch (PropertyNotPresentException e) {
location_local = Optional.empty();
}
this.location = location_local;
}
public NotCollocated(PropertyExpression propertyExpression) {
RecordValue recordValue = (RecordValue) propertyExpression;
Optional<List<InstanceObject>> targets_local;
try {
targets_local = findFieldValue(recordValue, TARGETS__NAME).map(field -> {
PropertyExpression resolved = CodeGenUtil.resolveNamedValue(field.getOwnedValue());
return ((ListValue) resolved).getOwnedListElements().stream().map(element1 -> {
PropertyExpression resolved1 = CodeGenUtil.resolveNamedValue(element1);
return ((InstanceReferenceValue) resolved1).getReferencedInstanceObject();
}).collect(Collectors.toList());
});
} catch (PropertyNotPresentException e) {
targets_local = Optional.empty();
}
this.targets = targets_local;
Optional<Classifier> location_local;
try {
location_local = findFieldValue(recordValue, LOCATION__NAME).map(field -> {
PropertyExpression resolved = CodeGenUtil.resolveNamedValue(field.getOwnedValue());
return ((ClassifierValue) resolved).getClassifier();
});
} catch (PropertyNotPresentException e) {
location_local = Optional.empty();
}
this.location = location_local;
}
public Optional<List<InstanceObject>> getTargets() {
return targets;
}
public Optional<Classifier> getLocation() {
return location;
}
@Override
public RecordValue toPropertyExpression(ResourceSet resourceSet) {
if (!targets.isPresent()
&& !location.isPresent()
) {
throw new IllegalStateException("Record must have at least one field set.");
}
RecordValue recordValue = Aadl2Factory.eINSTANCE.createRecordValue();
targets.ifPresent(field -> {
BasicPropertyAssociation fieldAssociation = recordValue.createOwnedFieldValue();
fieldAssociation.setProperty(loadField(resourceSet, TARGETS__URI, TARGETS__NAME));
fieldAssociation.setOwnedValue(CodeGenUtil.toPropertyExpression(field, element1 -> {
return CodeGenUtil.toPropertyExpression(element1);
}));
});
location.ifPresent(field -> {
BasicPropertyAssociation fieldAssociation = recordValue.createOwnedFieldValue();
fieldAssociation.setProperty(loadField(resourceSet, LOCATION__URI, LOCATION__NAME));
fieldAssociation.setOwnedValue(CodeGenUtil.toPropertyExpression(field));
});
return recordValue;
}
@Override
public int hashCode() {
return Objects.hash(
targets,
location
);
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof NotCollocated)) {
return false;
}
NotCollocated other = (NotCollocated) obj;
return Objects.equals(this.targets, other.targets)
&& Objects.equals(this.location, other.location);
}
@Override
public String toString() {
StringBuilder builder = new StringBuilder();
builder.append('[');
this.targets.ifPresent(field -> {
builder.append(TARGETS__NAME);
builder.append(" => ");
builder.append(field.stream().map(element1 -> {
return "reference (" + element1.getName() + ")";
}).collect(Collectors.joining(", ", "(", ")")));
builder.append(';');
});
this.location.ifPresent(field -> {
builder.append(LOCATION__NAME);
builder.append(" => classifier (");
builder.append(field.getQualifiedName());
builder.append(");");
});
builder.append(']');
return builder.toString();
}
}