Search in sources :

Example 1 with ReturnDictonaryType

use of org.eclipse.vorto.core.api.model.functionblock.ReturnDictonaryType in project vorto by eclipse.

the class ModelContentToEcoreConverter method createReturnTypeOrNull.

private ReturnType createReturnTypeOrNull(org.eclipse.vorto.model.ReturnType result, FunctionblockBuilder builder, ModelContent context) {
    if (result == null) {
        return null;
    } else {
        if (result.getType() instanceof PrimitiveType) {
            ReturnPrimitiveType type = FunctionblockFactory.eINSTANCE.createReturnPrimitiveType();
            type.setMultiplicity(result.isMultiple());
            type.setReturnType(org.eclipse.vorto.core.api.model.datatype.PrimitiveType.valueOf(((PrimitiveType) result.getType()).name()));
            return type;
        } else if (result.getType() instanceof org.eclipse.vorto.model.ModelId) {
            ReturnObjectType type = FunctionblockFactory.eINSTANCE.createReturnObjectType();
            type.setMultiplicity(result.isMultiple());
            Type convertedType = ((Type) convert(context.getModels().get((org.eclipse.vorto.model.ModelId) result.getType()), context, Optional.empty()));
            builder.withReference(ModelIdFactory.newInstance(convertedType));
            type.setReturnType(convertedType);
            return type;
        } else if (result.getType() instanceof DictionaryType) {
            ReturnDictonaryType type = FunctionblockFactory.eINSTANCE.createReturnDictonaryType();
            type.setMultiplicity(result.isMultiple());
            type.setReturnType((DictionaryPropertyType) createPropertyType(result.getType(), builder, context));
            return type;
        } else {
            return null;
        }
    }
}
Also used : ReturnPrimitiveType(org.eclipse.vorto.core.api.model.functionblock.ReturnPrimitiveType) ReturnDictonaryType(org.eclipse.vorto.core.api.model.functionblock.ReturnDictonaryType) ReturnPrimitiveType(org.eclipse.vorto.core.api.model.functionblock.ReturnPrimitiveType) DictionaryPropertyType(org.eclipse.vorto.core.api.model.datatype.DictionaryPropertyType) PrimitivePropertyType(org.eclipse.vorto.core.api.model.datatype.PrimitivePropertyType) ReturnObjectType(org.eclipse.vorto.core.api.model.functionblock.ReturnObjectType) Type(org.eclipse.vorto.core.api.model.datatype.Type) ReturnType(org.eclipse.vorto.core.api.model.functionblock.ReturnType) ReturnDictonaryType(org.eclipse.vorto.core.api.model.functionblock.ReturnDictonaryType) DictionaryType(org.eclipse.vorto.model.DictionaryType) PrimitiveType(org.eclipse.vorto.model.PrimitiveType) ConstraintIntervalType(org.eclipse.vorto.core.api.model.datatype.ConstraintIntervalType) IReferenceType(org.eclipse.vorto.model.IReferenceType) PropertyType(org.eclipse.vorto.core.api.model.datatype.PropertyType) ModelType(org.eclipse.vorto.core.api.model.model.ModelType) ObjectPropertyType(org.eclipse.vorto.core.api.model.datatype.ObjectPropertyType) ReturnPrimitiveType(org.eclipse.vorto.core.api.model.functionblock.ReturnPrimitiveType) PrimitiveType(org.eclipse.vorto.model.PrimitiveType) Infomodel(org.eclipse.vorto.model.Infomodel) ReturnObjectType(org.eclipse.vorto.core.api.model.functionblock.ReturnObjectType) DictionaryType(org.eclipse.vorto.model.DictionaryType)

Example 2 with ReturnDictonaryType

use of org.eclipse.vorto.core.api.model.functionblock.ReturnDictonaryType in project vorto by eclipse.

the class ModelDtoFactory method createOperation.

private static Operation createOperation(org.eclipse.vorto.core.api.model.functionblock.Operation o, Optional<MappingModel> mappingModel) {
    Operation operation = new Operation(o.getName());
    operation.setBreakable(o.isBreakable());
    operation.setDescription(o.getDescription());
    operation.setParams(o.getParams().stream().map(p -> createParam(p, mappingModel)).collect(Collectors.toList()));
    if (o.getReturnType() != null) {
        ReturnType returnType = new ReturnType();
        returnType.setMultiple(o.getReturnType().isMultiplicity());
        if (o.getReturnType() instanceof ReturnPrimitiveType) {
            returnType.setPrimitive(true);
            PrimitiveType pt = ((ReturnPrimitiveType) o.getReturnType()).getReturnType();
            returnType.setType(org.eclipse.vorto.model.PrimitiveType.valueOf(pt.name()));
        } else if (o.getReturnType() instanceof ReturnObjectType) {
            returnType.setPrimitive(false);
            returnType.setType(createModelId(((ReturnObjectType) o.getReturnType()).getReturnType()));
        } else if (o.getReturnType() instanceof ReturnDictonaryType) {
            returnType.setPrimitive(false);
            returnType.setMultiple(true);
            DictionaryPropertyType dt = ((ReturnDictonaryType) o.getReturnType()).getReturnType();
            returnType.setType(new DictionaryType(createReferenceType(dt.getKeyType()), createReferenceType(dt.getValueType())));
        }
        operation.setResult(returnType);
    }
    if (mappingModel.isPresent()) {
        operation.setTargetPlatformKey(mappingModel.get().getTargetPlatform());
        for (MappingRule rule : getOperationRule(operation.getName(), mappingModel.get().getRules())) {
            if (rule.getTarget() instanceof StereoTypeTarget) {
                StereoTypeTarget target = (StereoTypeTarget) rule.getTarget();
                operation.addStereotype(Stereotype.create(target.getName(), convertAttributesToMap(target.getAttributes())));
            } else if (rule.getTarget() instanceof ReferenceTarget) {
                ReferenceTarget target = (ReferenceTarget) rule.getTarget();
                operation.setMappingReference(createModelId(target.getMappingModel()));
            }
        }
    }
    return operation;
}
Also used : ReturnPrimitiveType(org.eclipse.vorto.core.api.model.functionblock.ReturnPrimitiveType) ReturnDictonaryType(org.eclipse.vorto.core.api.model.functionblock.ReturnDictonaryType) DictionaryPropertyType(org.eclipse.vorto.core.api.model.datatype.DictionaryPropertyType) ReferenceTarget(org.eclipse.vorto.core.api.model.mapping.ReferenceTarget) ReturnPrimitiveType(org.eclipse.vorto.core.api.model.functionblock.ReturnPrimitiveType) PrimitiveType(org.eclipse.vorto.core.api.model.datatype.PrimitiveType) Operation(org.eclipse.vorto.model.Operation) ReturnType(org.eclipse.vorto.model.ReturnType) ReturnObjectType(org.eclipse.vorto.core.api.model.functionblock.ReturnObjectType) MappingRule(org.eclipse.vorto.core.api.model.mapping.MappingRule) StereoTypeTarget(org.eclipse.vorto.core.api.model.mapping.StereoTypeTarget) DictionaryType(org.eclipse.vorto.model.DictionaryType)

Aggregations

DictionaryPropertyType (org.eclipse.vorto.core.api.model.datatype.DictionaryPropertyType)2 ReturnDictonaryType (org.eclipse.vorto.core.api.model.functionblock.ReturnDictonaryType)2 ReturnObjectType (org.eclipse.vorto.core.api.model.functionblock.ReturnObjectType)2 ReturnPrimitiveType (org.eclipse.vorto.core.api.model.functionblock.ReturnPrimitiveType)2 DictionaryType (org.eclipse.vorto.model.DictionaryType)2 ConstraintIntervalType (org.eclipse.vorto.core.api.model.datatype.ConstraintIntervalType)1 ObjectPropertyType (org.eclipse.vorto.core.api.model.datatype.ObjectPropertyType)1 PrimitivePropertyType (org.eclipse.vorto.core.api.model.datatype.PrimitivePropertyType)1 PrimitiveType (org.eclipse.vorto.core.api.model.datatype.PrimitiveType)1 PropertyType (org.eclipse.vorto.core.api.model.datatype.PropertyType)1 Type (org.eclipse.vorto.core.api.model.datatype.Type)1 ReturnType (org.eclipse.vorto.core.api.model.functionblock.ReturnType)1 MappingRule (org.eclipse.vorto.core.api.model.mapping.MappingRule)1 ReferenceTarget (org.eclipse.vorto.core.api.model.mapping.ReferenceTarget)1 StereoTypeTarget (org.eclipse.vorto.core.api.model.mapping.StereoTypeTarget)1 ModelType (org.eclipse.vorto.core.api.model.model.ModelType)1 IReferenceType (org.eclipse.vorto.model.IReferenceType)1 Infomodel (org.eclipse.vorto.model.Infomodel)1 Operation (org.eclipse.vorto.model.Operation)1 PrimitiveType (org.eclipse.vorto.model.PrimitiveType)1