Search in sources :

Example 1 with PrimitiveType

use of org.eclipse.vorto.model.PrimitiveType 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 PrimitiveType

use of org.eclipse.vorto.model.PrimitiveType in project vorto by eclipse.

the class ModelContentToEcoreConverter method createPropertyType.

private PropertyType createPropertyType(IReferenceType referenceType, ModelBuilder<?> builder, ModelContent context) {
    if (referenceType instanceof PrimitiveType) {
        PrimitivePropertyType primitive = DatatypeFactory.eINSTANCE.createPrimitivePropertyType();
        primitive.setType(org.eclipse.vorto.core.api.model.datatype.PrimitiveType.valueOf(((PrimitiveType) referenceType).name()));
        return primitive;
    } else if (referenceType instanceof org.eclipse.vorto.model.ModelId) {
        IModel referencedModel = context.getModels().get((org.eclipse.vorto.model.ModelId) referenceType);
        Type convertedReference = (Type) convert(referencedModel, context, Optional.empty());
        builder.withReference(ModelIdFactory.newInstance(convertedReference));
        ObjectPropertyType objType = DatatypeFactory.eINSTANCE.createObjectPropertyType();
        objType.setType(convertedReference);
        return objType;
    } else if (referenceType instanceof DictionaryType) {
        DictionaryType dictionaryType = (DictionaryType) referenceType;
        DictionaryPropertyType dictionary = DatatypeFactory.eINSTANCE.createDictionaryPropertyType();
        if (dictionaryType.getKey() != null) {
            dictionary.setKeyType(createPropertyType(dictionaryType.getKey(), builder, context));
        }
        if (dictionaryType.getValue() != null) {
            dictionary.setValueType(createPropertyType(dictionaryType.getValue(), builder, context));
        }
        return dictionary;
    } else {
        throw new UnsupportedOperationException("Reference type is not valie");
    }
}
Also used : IModel(org.eclipse.vorto.model.IModel) ObjectPropertyType(org.eclipse.vorto.core.api.model.datatype.ObjectPropertyType) PrimitivePropertyType(org.eclipse.vorto.core.api.model.datatype.PrimitivePropertyType) DictionaryType(org.eclipse.vorto.model.DictionaryType) 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) DictionaryPropertyType(org.eclipse.vorto.core.api.model.datatype.DictionaryPropertyType) ReturnPrimitiveType(org.eclipse.vorto.core.api.model.functionblock.ReturnPrimitiveType) PrimitiveType(org.eclipse.vorto.model.PrimitiveType) Infomodel(org.eclipse.vorto.model.Infomodel) ModelId(org.eclipse.vorto.core.api.model.model.ModelId)

Example 3 with PrimitiveType

use of org.eclipse.vorto.model.PrimitiveType in project vorto by eclipse.

the class ModelContentToEcoreConverter method createParams.

private Param[] createParams(List<org.eclipse.vorto.model.Param> params, ModelBuilder<?> builder, ModelContent context) {
    List<Param> ecoreParams = new ArrayList<>();
    for (org.eclipse.vorto.model.Param param : params) {
        if (param.getType() instanceof PrimitiveType) {
            PrimitiveParam type = FunctionblockFactory.eINSTANCE.createPrimitiveParam();
            type.setMultiplicity(param.isMultiple());
            type.setName(param.getName());
            type.setType((org.eclipse.vorto.core.api.model.datatype.PrimitiveType.valueOf(((PrimitiveType) param.getType()).name())));
            ecoreParams.add(type);
        } else if (param.getType() instanceof org.eclipse.vorto.model.ModelId) {
            RefParam type = FunctionblockFactory.eINSTANCE.createRefParam();
            type.setMultiplicity(param.isMultiple());
            type.setName(param.getName());
            type.setType((Type) convert(context.getModels().get((org.eclipse.vorto.model.ModelId) param.getType()), context, Optional.empty()));
            ecoreParams.add(type);
        } else if (param.getType() instanceof DictionaryType) {
            DictonaryParam type = FunctionblockFactory.eINSTANCE.createDictonaryParam();
            type.setName(param.getName());
            type.setMultiplicity(param.isMultiple());
            type.setType((DictionaryPropertyType) createPropertyType(param.getType(), builder, context));
            ecoreParams.add(type);
        } else {
            return null;
        }
    }
    return ecoreParams.toArray(new Param[ecoreParams.size()]);
}
Also used : RefParam(org.eclipse.vorto.core.api.model.functionblock.RefParam) ArrayList(java.util.ArrayList) PrimitiveParam(org.eclipse.vorto.core.api.model.functionblock.PrimitiveParam) DictionaryType(org.eclipse.vorto.model.DictionaryType) 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) RefParam(org.eclipse.vorto.core.api.model.functionblock.RefParam) PrimitiveParam(org.eclipse.vorto.core.api.model.functionblock.PrimitiveParam) Param(org.eclipse.vorto.core.api.model.functionblock.Param) DictonaryParam(org.eclipse.vorto.core.api.model.functionblock.DictonaryParam) DictonaryParam(org.eclipse.vorto.core.api.model.functionblock.DictonaryParam) Infomodel(org.eclipse.vorto.model.Infomodel) ReturnPrimitiveType(org.eclipse.vorto.core.api.model.functionblock.ReturnPrimitiveType) PrimitiveType(org.eclipse.vorto.model.PrimitiveType)

Aggregations

ConstraintIntervalType (org.eclipse.vorto.core.api.model.datatype.ConstraintIntervalType)3 DictionaryPropertyType (org.eclipse.vorto.core.api.model.datatype.DictionaryPropertyType)3 ObjectPropertyType (org.eclipse.vorto.core.api.model.datatype.ObjectPropertyType)3 PrimitivePropertyType (org.eclipse.vorto.core.api.model.datatype.PrimitivePropertyType)3 PropertyType (org.eclipse.vorto.core.api.model.datatype.PropertyType)3 Type (org.eclipse.vorto.core.api.model.datatype.Type)3 ReturnDictonaryType (org.eclipse.vorto.core.api.model.functionblock.ReturnDictonaryType)3 ReturnObjectType (org.eclipse.vorto.core.api.model.functionblock.ReturnObjectType)3 ReturnPrimitiveType (org.eclipse.vorto.core.api.model.functionblock.ReturnPrimitiveType)3 ReturnType (org.eclipse.vorto.core.api.model.functionblock.ReturnType)3 ModelType (org.eclipse.vorto.core.api.model.model.ModelType)3 DictionaryType (org.eclipse.vorto.model.DictionaryType)3 IReferenceType (org.eclipse.vorto.model.IReferenceType)3 Infomodel (org.eclipse.vorto.model.Infomodel)3 PrimitiveType (org.eclipse.vorto.model.PrimitiveType)3 ArrayList (java.util.ArrayList)1 DictonaryParam (org.eclipse.vorto.core.api.model.functionblock.DictonaryParam)1 Param (org.eclipse.vorto.core.api.model.functionblock.Param)1 PrimitiveParam (org.eclipse.vorto.core.api.model.functionblock.PrimitiveParam)1 RefParam (org.eclipse.vorto.core.api.model.functionblock.RefParam)1