Search in sources :

Example 1 with Type

use of com.robotoworks.mechanoid.net.netModel.Type in project mechanoid by robotoworks.

the class RequestGenerator method _generateFieldForMember.

protected CharSequence _generateFieldForMember(final TypedMember member) {
    StringConcatenation _builder = new StringConcatenation();
    _builder.append("private final ");
    Type _type = member.getType();
    String _signature = ModelExtensions.signature(_type);
    _builder.append(_signature, "");
    _builder.append(" ");
    String _identifier = ModelExtensions.toIdentifier(member);
    _builder.append(_identifier, "");
    _builder.append(";");
    _builder.newLineIfNotEmpty();
    return _builder;
}
Also used : StringType(com.robotoworks.mechanoid.net.netModel.StringType) Type(com.robotoworks.mechanoid.net.netModel.Type) BlockType(com.robotoworks.mechanoid.net.netModel.BlockType) IntrinsicType(com.robotoworks.mechanoid.net.netModel.IntrinsicType) UserType(com.robotoworks.mechanoid.net.netModel.UserType) GenericListType(com.robotoworks.mechanoid.net.netModel.GenericListType) StringConcatenation(org.eclipse.xtend2.lib.StringConcatenation)

Example 2 with Type

use of com.robotoworks.mechanoid.net.netModel.Type in project mechanoid by robotoworks.

the class RequestGenerator method _generateGetterSetterForMember.

protected CharSequence _generateGetterSetterForMember(final TypedMember member) {
    StringConcatenation _builder = new StringConcatenation();
    _builder.append("public ");
    Type _type = member.getType();
    String _signature = ModelExtensions.signature(_type);
    _builder.append(_signature, "");
    _builder.append(" ");
    String _getMethodName = ModelExtensions.toGetMethodName(member);
    _builder.append(_getMethodName, "");
    _builder.append("() {");
    _builder.newLineIfNotEmpty();
    _builder.append("\t");
    _builder.append("return ");
    String _identifier = ModelExtensions.toIdentifier(member);
    _builder.append(_identifier, "\t");
    _builder.append(";");
    _builder.newLineIfNotEmpty();
    _builder.append("}");
    _builder.newLine();
    return _builder;
}
Also used : StringType(com.robotoworks.mechanoid.net.netModel.StringType) Type(com.robotoworks.mechanoid.net.netModel.Type) BlockType(com.robotoworks.mechanoid.net.netModel.BlockType) IntrinsicType(com.robotoworks.mechanoid.net.netModel.IntrinsicType) UserType(com.robotoworks.mechanoid.net.netModel.UserType) GenericListType(com.robotoworks.mechanoid.net.netModel.GenericListType) StringConcatenation(org.eclipse.xtend2.lib.StringConcatenation)

Example 3 with Type

use of com.robotoworks.mechanoid.net.netModel.Type in project mechanoid by robotoworks.

the class ResultGenerator method generateResponseClass.

public CharSequence generateResponseClass(final HttpMethod method, final Model module, final Client client) {
    StringConcatenation _builder = new StringConcatenation();
    final ResponseBlock responseBlock = ModelExtensions.getResponseBlock(method);
    _builder.newLineIfNotEmpty();
    _builder.append("public class ");
    String _name = method.getName();
    String _pascalize = Strings.pascalize(_name);
    _builder.append(_pascalize, "");
    _builder.append("Result extends ServiceResult {");
    _builder.newLineIfNotEmpty();
    {
        BlockType _type = null;
        if (responseBlock != null) {
            _type = responseBlock.getType();
        }
        boolean _notEquals = (!Objects.equal(_type, null));
        if (_notEquals) {
            _builder.append("\t");
            BlockType _type_1 = responseBlock.getType();
            CharSequence _generateFieldForType = this.generateFieldForType(_type_1);
            _builder.append(_generateFieldForType, "\t");
            _builder.append("\t");
            _builder.newLineIfNotEmpty();
            _builder.append("\t");
            BlockType _type_2 = responseBlock.getType();
            CharSequence _generateGetterForType = this.generateGetterForType(_type_2);
            _builder.append(_generateGetterForType, "\t");
            _builder.append("\t");
            _builder.newLineIfNotEmpty();
        }
    }
    {
        ComplexTypeDeclaration _superType = null;
        if (responseBlock != null) {
            _superType = responseBlock.getSuperType();
        }
        boolean _notEquals_1 = (!Objects.equal(_superType, null));
        if (_notEquals_1) {
            _builder.append("\t");
            _builder.append("private ");
            ComplexTypeDeclaration _superType_1 = responseBlock.getSuperType();
            String _name_1 = _superType_1.getName();
            String _pascalize_1 = Strings.pascalize(_name_1);
            _builder.append(_pascalize_1, "\t");
            _builder.append(" base;");
            _builder.newLineIfNotEmpty();
            _builder.append("\t");
            ComplexTypeDeclaration _superType_2 = responseBlock.getSuperType();
            ComplexTypeLiteral _literal = _superType_2.getLiteral();
            EList<Member> _members = _literal.getMembers();
            final Function1<Member, Boolean> _function = new Function1<Member, Boolean>() {

                public Boolean apply(final Member superMember) {
                    BlockType _type = null;
                    if (responseBlock != null) {
                        _type = responseBlock.getType();
                    }
                    if ((_type instanceof ComplexTypeLiteral)) {
                        BlockType _type_1 = responseBlock.getType();
                        EList<Member> _members = ((ComplexTypeLiteral) _type_1).getMembers();
                        final Function1<Member, Boolean> _function = new Function1<Member, Boolean>() {

                            public Boolean apply(final Member member) {
                                String _name = superMember.getName();
                                String _name_1 = member.getName();
                                return Boolean.valueOf(_name.equals(_name_1));
                            }
                        };
                        Member _findFirst = IterableExtensions.<Member>findFirst(_members, _function);
                        return Boolean.valueOf(Objects.equal(_findFirst, null));
                    }
                    return Boolean.valueOf(true);
                }
            };
            Iterable<Member> _filter = IterableExtensions.<Member>filter(_members, _function);
            CharSequence _generateBaseAccessors = this.generateBaseAccessors(_filter);
            _builder.append(_generateBaseAccessors, "\t");
            _builder.newLineIfNotEmpty();
        }
    }
    _builder.append("\t");
    _builder.newLine();
    _builder.append("\t");
    _builder.append("public ");
    String _name_2 = method.getName();
    String _pascalize_2 = Strings.pascalize(_name_2);
    _builder.append(_pascalize_2, "\t");
    _builder.append("Result(JsonEntityReaderProvider provider, InputStream inStream) throws IOException {");
    _builder.newLineIfNotEmpty();
    {
        boolean _notEquals_2 = (!Objects.equal(responseBlock, null));
        if (_notEquals_2) {
            {
                boolean _or = false;
                BlockType _type_3 = responseBlock.getType();
                if ((_type_3 instanceof ComplexTypeLiteral)) {
                    _or = true;
                } else {
                    ComplexTypeDeclaration _superType_3 = responseBlock.getSuperType();
                    boolean _notEquals_3 = (!Objects.equal(_superType_3, null));
                    _or = _notEquals_3;
                }
                if (_or) {
                    _builder.append("\t");
                    CharSequence _generateDeserializationStatementHeader = this.generateDeserializationStatementHeader(true);
                    _builder.append(_generateDeserializationStatementHeader, "\t");
                    _builder.newLineIfNotEmpty();
                    {
                        ComplexTypeDeclaration _superType_4 = responseBlock.getSuperType();
                        boolean _notEquals_4 = (!Objects.equal(_superType_4, null));
                        if (_notEquals_4) {
                            _builder.append("\t");
                            _builder.append("\t");
                            _builder.append("this.base = new ");
                            ComplexTypeDeclaration _superType_5 = responseBlock.getSuperType();
                            String _name_3 = _superType_5.getName();
                            String _pascalize_3 = Strings.pascalize(_name_3);
                            _builder.append(_pascalize_3, "\t\t");
                            _builder.append("();");
                            _builder.newLineIfNotEmpty();
                        }
                    }
                    {
                        BlockType _type_4 = responseBlock.getType();
                        if ((_type_4 instanceof ComplexTypeLiteral)) {
                            _builder.append("\t");
                            _builder.append("\t");
                            String _name_4 = method.getName();
                            String _pascalize_4 = Strings.pascalize(_name_4);
                            _builder.append(_pascalize_4, "\t\t");
                            _builder.append("Result subject = this;");
                            _builder.newLineIfNotEmpty();
                            _builder.append("\t");
                            _builder.append("\t");
                            BlockType _type_5 = responseBlock.getType();
                            ComplexTypeDeclaration _superType_6 = null;
                            if (responseBlock != null) {
                                _superType_6 = responseBlock.getSuperType();
                            }
                            ComplexTypeLiteral _literal_1 = null;
                            if (_superType_6 != null) {
                                _literal_1 = _superType_6.getLiteral();
                            }
                            EList<Member> _mergeMembers = this.mergeMembers(((ComplexTypeLiteral) _type_5), _literal_1);
                            CharSequence _genReadComplexTypeLiteralForMembers = this.jsonReaderGenerator.genReadComplexTypeLiteralForMembers(_mergeMembers);
                            _builder.append(_genReadComplexTypeLiteralForMembers, "\t\t");
                            _builder.newLineIfNotEmpty();
                        }
                    }
                    _builder.append("\t");
                    CharSequence _generateDeserializationStatementFooter = this.generateDeserializationStatementFooter(true);
                    _builder.append(_generateDeserializationStatementFooter, "\t");
                    _builder.newLineIfNotEmpty();
                } else {
                    _builder.append("\t");
                    BlockType _type_6 = responseBlock.getType();
                    CharSequence _generateDeserializationStatementForType = this.generateDeserializationStatementForType(responseBlock, ((Type) _type_6));
                    _builder.append(_generateDeserializationStatementForType, "\t");
                    _builder.newLineIfNotEmpty();
                }
            }
        } else {
            _builder.append("\t");
            _builder.append("Closeables.closeSilently(inStream);");
            _builder.newLine();
        }
    }
    _builder.append("\t");
    _builder.append("}");
    _builder.newLine();
    _builder.append("}");
    _builder.newLine();
    return _builder;
}
Also used : ComplexTypeDeclaration(com.robotoworks.mechanoid.net.netModel.ComplexTypeDeclaration) Function1(org.eclipse.xtext.xbase.lib.Functions.Function1) Type(com.robotoworks.mechanoid.net.netModel.Type) BlockType(com.robotoworks.mechanoid.net.netModel.BlockType) IntrinsicType(com.robotoworks.mechanoid.net.netModel.IntrinsicType) UserType(com.robotoworks.mechanoid.net.netModel.UserType) GenericListType(com.robotoworks.mechanoid.net.netModel.GenericListType) BasicEList(org.eclipse.emf.common.util.BasicEList) EList(org.eclipse.emf.common.util.EList) BlockType(com.robotoworks.mechanoid.net.netModel.BlockType) StringConcatenation(org.eclipse.xtend2.lib.StringConcatenation) ResponseBlock(com.robotoworks.mechanoid.net.netModel.ResponseBlock) ComplexTypeLiteral(com.robotoworks.mechanoid.net.netModel.ComplexTypeLiteral) TypedMember(com.robotoworks.mechanoid.net.netModel.TypedMember) Member(com.robotoworks.mechanoid.net.netModel.Member) SkipMember(com.robotoworks.mechanoid.net.netModel.SkipMember)

Example 4 with Type

use of com.robotoworks.mechanoid.net.netModel.Type in project mechanoid by robotoworks.

the class ResultGenerator method _generateGetter.

protected CharSequence _generateGetter(final TypedMember member) {
    StringConcatenation _builder = new StringConcatenation();
    _builder.append("public ");
    Type _type = member.getType();
    String _signature = ModelExtensions.signature(_type);
    _builder.append(_signature, "");
    _builder.append(" ");
    String _getMethodName = ModelExtensions.toGetMethodName(member);
    _builder.append(_getMethodName, "");
    _builder.append("(){");
    _builder.newLineIfNotEmpty();
    _builder.append("\t");
    _builder.append("return this.");
    String _identifier = ModelExtensions.toIdentifier(member);
    _builder.append(_identifier, "\t");
    _builder.append(";");
    _builder.newLineIfNotEmpty();
    _builder.append("}");
    _builder.newLine();
    _builder.append("public void ");
    String _setMethodName = ModelExtensions.toSetMethodName(member);
    _builder.append(_setMethodName, "");
    _builder.append("(");
    Type _type_1 = member.getType();
    String _signature_1 = ModelExtensions.signature(_type_1);
    _builder.append(_signature_1, "");
    _builder.append(" value){");
    _builder.newLineIfNotEmpty();
    _builder.append("\t");
    _builder.append("this.");
    String _identifier_1 = ModelExtensions.toIdentifier(member);
    _builder.append(_identifier_1, "\t");
    _builder.append(" = value;");
    _builder.newLineIfNotEmpty();
    _builder.append("}");
    _builder.newLine();
    return _builder;
}
Also used : Type(com.robotoworks.mechanoid.net.netModel.Type) BlockType(com.robotoworks.mechanoid.net.netModel.BlockType) IntrinsicType(com.robotoworks.mechanoid.net.netModel.IntrinsicType) UserType(com.robotoworks.mechanoid.net.netModel.UserType) GenericListType(com.robotoworks.mechanoid.net.netModel.GenericListType) StringConcatenation(org.eclipse.xtend2.lib.StringConcatenation)

Example 5 with Type

use of com.robotoworks.mechanoid.net.netModel.Type in project mechanoid by robotoworks.

the class GenericListTypeImpl method basicSetElementType.

/**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
public NotificationChain basicSetElementType(Type newElementType, NotificationChain msgs) {
    Type oldElementType = elementType;
    elementType = newElementType;
    if (eNotificationRequired()) {
        ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, NetModelPackage.GENERIC_LIST_TYPE__ELEMENT_TYPE, oldElementType, newElementType);
        if (msgs == null)
            msgs = notification;
        else
            msgs.add(notification);
    }
    return msgs;
}
Also used : Type(com.robotoworks.mechanoid.net.netModel.Type) GenericListType(com.robotoworks.mechanoid.net.netModel.GenericListType) ENotificationImpl(org.eclipse.emf.ecore.impl.ENotificationImpl)

Aggregations

Type (com.robotoworks.mechanoid.net.netModel.Type)14 GenericListType (com.robotoworks.mechanoid.net.netModel.GenericListType)12 IntrinsicType (com.robotoworks.mechanoid.net.netModel.IntrinsicType)9 UserType (com.robotoworks.mechanoid.net.netModel.UserType)9 StringConcatenation (org.eclipse.xtend2.lib.StringConcatenation)9 BlockType (com.robotoworks.mechanoid.net.netModel.BlockType)8 StringType (com.robotoworks.mechanoid.net.netModel.StringType)4 ComplexTypeLiteral (com.robotoworks.mechanoid.net.netModel.ComplexTypeLiteral)2 Member (com.robotoworks.mechanoid.net.netModel.Member)2 ResponseBlock (com.robotoworks.mechanoid.net.netModel.ResponseBlock)2 SkipMember (com.robotoworks.mechanoid.net.netModel.SkipMember)2 TypedMember (com.robotoworks.mechanoid.net.netModel.TypedMember)2 ENotificationImpl (org.eclipse.emf.ecore.impl.ENotificationImpl)2 ImportHelper (com.robotoworks.mechanoid.net.generator.ImportHelper)1 ComplexTypeDeclaration (com.robotoworks.mechanoid.net.netModel.ComplexTypeDeclaration)1 SimpleMember (com.robotoworks.mechanoid.net.netModel.SimpleMember)1 BasicEList (org.eclipse.emf.common.util.BasicEList)1 EList (org.eclipse.emf.common.util.EList)1 Function1 (org.eclipse.xtext.xbase.lib.Functions.Function1)1