Search in sources :

Example 6 with PropertyNotPresentException

use of org.osate.aadl2.properties.PropertyNotPresentException in project osate2 by osate.

the class ProgrammingProperties method getSourceName.

public static Optional<String> getSourceName(NamedElement lookupContext, Optional<Mode> mode) {
    Property property = getSourceName_Property(lookupContext);
    try {
        PropertyExpression value = CodeGenUtil.lookupProperty(property, lookupContext, mode);
        PropertyExpression resolved = CodeGenUtil.resolveNamedValue(value, lookupContext, mode);
        return Optional.of(((StringLiteral) resolved).getValue());
    } catch (PropertyNotPresentException e) {
        return Optional.empty();
    }
}
Also used : PropertyNotPresentException(org.osate.aadl2.properties.PropertyNotPresentException) PropertyExpression(org.osate.aadl2.PropertyExpression) Property(org.osate.aadl2.Property)

Example 7 with PropertyNotPresentException

use of org.osate.aadl2.properties.PropertyNotPresentException in project osate2 by osate.

the class ProgrammingProperties method getSourceText.

public static Optional<List<String>> getSourceText(NamedElement lookupContext, Optional<Mode> mode) {
    Property property = getSourceText_Property(lookupContext);
    try {
        PropertyExpression value = CodeGenUtil.lookupProperty(property, lookupContext, mode);
        PropertyExpression resolved = CodeGenUtil.resolveNamedValue(value, lookupContext, mode);
        return Optional.of(((ListValue) resolved).getOwnedListElements().stream().map(element1 -> {
            PropertyExpression resolved1 = CodeGenUtil.resolveNamedValue(element1, lookupContext, mode);
            return ((StringLiteral) resolved1).getValue();
        }).collect(Collectors.toList()));
    } catch (PropertyNotPresentException e) {
        return Optional.empty();
    }
}
Also used : StringLiteral(org.osate.aadl2.StringLiteral) PropertyNotPresentException(org.osate.aadl2.properties.PropertyNotPresentException) ListValue(org.osate.aadl2.ListValue) PropertyExpression(org.osate.aadl2.PropertyExpression) Property(org.osate.aadl2.Property)

Example 8 with PropertyNotPresentException

use of org.osate.aadl2.properties.PropertyNotPresentException in project osate2 by osate.

the class ProgrammingProperties method getHardwareDescriptionSourceText.

public static Optional<List<String>> getHardwareDescriptionSourceText(NamedElement lookupContext, Optional<Mode> mode) {
    Property property = getHardwareDescriptionSourceText_Property(lookupContext);
    try {
        PropertyExpression value = CodeGenUtil.lookupProperty(property, lookupContext, mode);
        PropertyExpression resolved = CodeGenUtil.resolveNamedValue(value, lookupContext, mode);
        return Optional.of(((ListValue) resolved).getOwnedListElements().stream().map(element1 -> {
            PropertyExpression resolved1 = CodeGenUtil.resolveNamedValue(element1, lookupContext, mode);
            return ((StringLiteral) resolved1).getValue();
        }).collect(Collectors.toList()));
    } catch (PropertyNotPresentException e) {
        return Optional.empty();
    }
}
Also used : StringLiteral(org.osate.aadl2.StringLiteral) PropertyNotPresentException(org.osate.aadl2.properties.PropertyNotPresentException) ListValue(org.osate.aadl2.ListValue) PropertyExpression(org.osate.aadl2.PropertyExpression) Property(org.osate.aadl2.Property)

Example 9 with PropertyNotPresentException

use of org.osate.aadl2.properties.PropertyNotPresentException in project osate2 by osate.

the class ProgrammingProperties method getInitializeEntrypoint.

public static Optional<Classifier> getInitializeEntrypoint(NamedElement lookupContext, Optional<Mode> mode) {
    Property property = getInitializeEntrypoint_Property(lookupContext);
    try {
        PropertyExpression value = CodeGenUtil.lookupProperty(property, lookupContext, mode);
        PropertyExpression resolved = CodeGenUtil.resolveNamedValue(value, lookupContext, mode);
        return Optional.of(((ClassifierValue) resolved).getClassifier());
    } catch (PropertyNotPresentException e) {
        return Optional.empty();
    }
}
Also used : PropertyNotPresentException(org.osate.aadl2.properties.PropertyNotPresentException) PropertyExpression(org.osate.aadl2.PropertyExpression) Property(org.osate.aadl2.Property)

Example 10 with PropertyNotPresentException

use of org.osate.aadl2.properties.PropertyNotPresentException in project osate2 by osate.

the class ThreadProperties method getUrgency.

public static OptionalLong getUrgency(NamedElement lookupContext, Optional<Mode> mode) {
    Property property = getUrgency_Property(lookupContext);
    try {
        PropertyExpression value = CodeGenUtil.lookupProperty(property, lookupContext, mode);
        PropertyExpression resolved = CodeGenUtil.resolveNamedValue(value, lookupContext, mode);
        return OptionalLong.of(((IntegerLiteral) resolved).getValue());
    } catch (PropertyNotPresentException e) {
        return OptionalLong.empty();
    }
}
Also used : PropertyNotPresentException(org.osate.aadl2.properties.PropertyNotPresentException) PropertyExpression(org.osate.aadl2.PropertyExpression) Property(org.osate.aadl2.Property)

Aggregations

PropertyNotPresentException (org.osate.aadl2.properties.PropertyNotPresentException)238 PropertyExpression (org.osate.aadl2.PropertyExpression)236 Property (org.osate.aadl2.Property)233 ListValue (org.osate.aadl2.ListValue)50 TimeUnits (org.osate.aadl2.contrib.aadlproject.TimeUnits)40 SizeUnits (org.osate.aadl2.contrib.aadlproject.SizeUnits)17 InstanceReferenceValue (org.osate.aadl2.instance.InstanceReferenceValue)13 ClassifierValue (org.osate.aadl2.ClassifierValue)7 StringLiteral (org.osate.aadl2.StringLiteral)6 DataRateUnits (org.osate.aadl2.contrib.aadlproject.DataRateUnits)4 IntegerLiteral (org.osate.aadl2.IntegerLiteral)3 RangeValue (org.osate.aadl2.RangeValue)3 ComponentInstance (org.osate.aadl2.instance.ComponentInstance)3 InvalidModelException (org.osate.aadl2.properties.InvalidModelException)3 List (java.util.List)2 BasicProperty (org.osate.aadl2.BasicProperty)2 EnumerationLiteral (org.osate.aadl2.EnumerationLiteral)2 ModalPropertyValue (org.osate.aadl2.ModalPropertyValue)2 PropertyAssociation (org.osate.aadl2.PropertyAssociation)2 SystemInstance (org.osate.aadl2.instance.SystemInstance)2