Search in sources :

Example 26 with Array_Type

use of org.eclipse.titan.designer.AST.TTCN3.types.Array_Type in project titan.EclipsePlug-ins by eclipse.

the class Array_Type method generateCodeTemplate.

/**
 * Generate the template class to represent an array.
 * (Also generates the template classes of the of type if it is an array)
 *
 * @param aData only used to update imports if needed
 * @param source where the source code should be generated
 */
public void generateCodeTemplate(final JavaGenData aData, final StringBuilder source) {
    final String className = getGenNameValue(aData, source, myScope);
    final String classTemplateName = getGenNameTemplate(aData, source, myScope);
    final IType elementType = getElementType();
    final String ofValueType = elementType.getGenNameValue(aData, source, getMyScope());
    final String ofTemplateType = elementType.getGenNameTemplate(aData, source, getMyScope());
    if (elementType.getTypetype() == Type_type.TYPE_ARRAY) {
        ((Array_Type) elementType).generateCodeTemplate(aData, source);
    }
    final ArrayDimension dim = getDimension();
    aData.addBuiltinTypeImport("TitanTemplateArray");
    source.append(MessageFormat.format("public static class {0} extends TitanTemplateArray<{1}, {2}> '{'\n", classTemplateName, ofValueType, ofTemplateType));
    source.append(MessageFormat.format("public {0}() '{'\n", classTemplateName));
    source.append(MessageFormat.format("super({0}.class, {1}.class, {2}, {3});\n", ofValueType, ofTemplateType, dim.getSize(), dim.getOffset()));
    source.append("}\n");
    source.append(MessageFormat.format("public {0} valueOf() '{'\n", className));
    source.append(MessageFormat.format("return ({0})super.valueOf();\n", className));
    source.append("}\n");
    source.append("}\n");
}
Also used : ArrayDimension(org.eclipse.titan.designer.AST.TTCN3.values.ArrayDimension) IType(org.eclipse.titan.designer.AST.IType)

Example 27 with Array_Type

use of org.eclipse.titan.designer.AST.TTCN3.types.Array_Type in project titan.EclipsePlug-ins by eclipse.

the class SpecificValue_Template method generateCodeExpression.

@Override
public /**
 * {@inheritDoc}
 */
void generateCodeExpression(final JavaGenData aData, final ExpressionStruct expression, final TemplateRestriction.Restriction_type templateRestriction) {
    IType governor = myGovernor;
    if (governor == null) {
        governor = getExpressionGovernor(CompilationTimeStamp.getBaseTimestamp(), Expected_Value_type.EXPECTED_TEMPLATE);
    }
    if (governor == null) {
        return;
    }
    final String genName = governor.getGenNameTemplate(aData, expression.expression, myScope);
    if (realTemplate != null && realTemplate != this) {
        realTemplate.generateCodeExpression(aData, expression, templateRestriction);
        return;
    }
    if (lengthRestriction == null && !isIfpresent && templateRestriction == Restriction_type.TR_NONE) {
        // The single expression must be tried first because this rule might cover some referenced templates.
        if (hasSingleExpression()) {
            expression.expression.append(MessageFormat.format("new {0}(", genName));
            if (governor.getTypetype() == Type_type.TYPE_ARRAY) {
                final Array_Type array_type = (Array_Type) governor;
                expression.expression.append(MessageFormat.format(" {0}.class, ", array_type.getElementType().getGenNameTemplate(aData, expression.expression, myScope)));
            }
            expression.expression.append(getSingleExpression(aData, true));
            expression.expression.append(')');
            return;
        }
        expression.expression.append(MessageFormat.format("new {0}(", genName));
        specificValue.generateCodeExpression(aData, expression, false);
        expression.expression.append(')');
        return;
    }
    final String tempId = aData.getTemporaryVariableName();
    expression.preamble.append(MessageFormat.format("{0} {1} = new {0}();\n", governor.getGenNameTemplate(aData, expression.expression, myScope), tempId));
    generateCodeInit(aData, expression.preamble, tempId);
    if (templateRestriction != Restriction_type.TR_NONE) {
        TemplateRestriction.generateRestrictionCheckCode(aData, expression.expression, location, tempId, templateRestriction);
    }
    expression.expression.append(tempId);
}
Also used : Array_Type(org.eclipse.titan.designer.AST.TTCN3.types.Array_Type) IType(org.eclipse.titan.designer.AST.IType)

Example 28 with Array_Type

use of org.eclipse.titan.designer.AST.TTCN3.types.Array_Type in project titan.EclipsePlug-ins by eclipse.

the class SupersetMatch_Template method generateCodeInit.

@Override
public /**
 * {@inheritDoc}
 */
void generateCodeInit(final JavaGenData aData, final StringBuilder source, final String name) {
    if (lastTimeBuilt != null && !lastTimeBuilt.isLess(aData.getBuildTimstamp())) {
        return;
    }
    lastTimeBuilt = aData.getBuildTimstamp();
    aData.addBuiltinTypeImport("Base_Template.template_sel");
    String ofTypeName;
    switch(myGovernor.getTypetype()) {
        case TYPE_SEQUENCE_OF:
            ofTypeName = ((SequenceOf_Type) myGovernor).getOfType().getGenNameTemplate(aData, source, myScope);
            break;
        case TYPE_SET_OF:
            ofTypeName = ((SetOf_Type) myGovernor).getOfType().getGenNameTemplate(aData, source, myScope);
            break;
        case TYPE_ARRAY:
            ofTypeName = ((Array_Type) myGovernor).getElementType().getGenNameTemplate(aData, source, myScope);
            break;
        default:
            ErrorReporter.INTERNAL_ERROR("FATAL ERROR while processing superset match template `" + getFullName() + "''");
            return;
    }
    final ArrayList<Integer> variables = new ArrayList<Integer>();
    long fixedPart = 0;
    for (int i = 0; i < templates.getNofTemplates(); i++) {
        final TTCN3Template templateListItem = templates.getTemplateByIndex(i);
        if (templateListItem.getTemplatetype() == Template_type.ALL_FROM) {
            variables.add(i);
        } else {
            fixedPart++;
        }
    }
    if (variables.size() > 0) {
        final StringBuilder preamble = new StringBuilder();
        final StringBuilder setType = new StringBuilder();
        final StringBuilder[] variableReferences = new StringBuilder[templates.getNofTemplates()];
        setType.append(MessageFormat.format("{0}.setType(template_sel.SUPERSET_MATCH, {1}", name, fixedPart));
        for (int v = 0; v < variables.size(); v++) {
            final TTCN3Template template = templates.getTemplateByIndex(variables.get(v));
            // the template must be all from
            TTCN3Template template2 = template;
            if (template instanceof All_From_Template) {
                template2 = ((All_From_Template) template).getAllFrom();
            }
            final Reference reference = ((SpecificValue_Template) template2).getReference();
            final Assignment assignment = reference.getRefdAssignment(CompilationTimeStamp.getBaseTimestamp(), false);
            setType.append(" + ");
            final ExpressionStruct expression = new ExpressionStruct();
            reference.generateCode(aData, expression);
            if (expression.preamble.length() > 0) {
                preamble.append(expression.preamble);
            }
            switch(assignment.getAssignmentType()) {
                case A_CONST:
                case A_EXT_CONST:
                case A_MODULEPAR:
                case A_VAR:
                case A_PAR_VAL:
                case A_PAR_VAL_IN:
                case A_PAR_VAL_OUT:
                case A_PAR_VAL_INOUT:
                case A_FUNCTION_RVAL:
                case A_EXT_FUNCTION_RVAL:
                    if (assignment.getType(CompilationTimeStamp.getBaseTimestamp()).fieldIsOptional(reference.getSubreferences())) {
                        expression.expression.append(".get()");
                    }
                    break;
                default:
                    break;
            }
            variableReferences[variables.get(v)] = expression.expression;
            setType.append(expression.expression);
            setType.append(".n_elem().getInt()");
        }
        source.append(preamble);
        source.append(setType);
        source.append(");\n");
        final StringBuilder shifty = new StringBuilder();
        for (int i = 0; i < templates.getNofTemplates(); i++) {
            final TTCN3Template template = templates.getTemplateByIndex(i);
            switch(template.getTemplatetype()) {
                case ALL_FROM:
                    {
                        // the template must be all from
                        final StringBuilder storedExpression = variableReferences[i];
                        source.append(MessageFormat.format("for (int i_i = 0, i_lim = {0}.n_elem().getInt(); i_i < i_lim; ++i_i ) '{'\n", storedExpression));
                        final String embeddedName = MessageFormat.format("{0}.setItem({1}{2} + i_i)", name, i, shifty);
                        ((All_From_Template) template).generateCodeInitAllFrom(aData, source, embeddedName, storedExpression);
                        source.append("}\n");
                        shifty.append(MessageFormat.format("-1 + {0}.n_elem().getInt()", storedExpression));
                        break;
                    }
                default:
                    if (template.needsTemporaryReference()) {
                        final String tempId = aData.getTemporaryVariableName();
                        source.append("{\n");
                        source.append(MessageFormat.format("{0} {1} = {2}.setItem({3}{4});\n", ofTypeName, tempId, name, i, shifty));
                        template.generateCodeInit(aData, source, tempId);
                        source.append("}\n");
                    } else {
                        final String embeddedName = MessageFormat.format("{0}.setItem({1}{2})", name, i, shifty);
                        template.generateCodeInit(aData, source, embeddedName);
                    }
                    break;
            }
        }
    } else {
        source.append(MessageFormat.format("{0}.setType(template_sel.SUPERSET_MATCH, {1});\n", name, templates.getNofTemplates()));
        for (int i = 0; i < templates.getNofTemplates(); i++) {
            final TTCN3Template template = templates.getTemplateByIndex(i);
            if (template.needsTemporaryReference()) {
                final String tempId = aData.getTemporaryVariableName();
                source.append("{\n");
                source.append(MessageFormat.format("{0} {1} = {2}.setItem({3});\n", ofTypeName, tempId, name, i));
                template.generateCodeInit(aData, source, tempId);
                source.append("}\n");
            } else {
                final String embeddedName = MessageFormat.format("{0}.setItem({1})", name, i);
                template.generateCodeInit(aData, source, embeddedName);
            }
        }
    }
    if (lengthRestriction != null) {
        if (getCodeSection() == CodeSectionType.CS_POST_INIT) {
            lengthRestriction.reArrangeInitCode(aData, source, myScope.getModuleScope());
        }
        lengthRestriction.generateCodeInit(aData, source, name);
    }
    if (isIfpresent) {
        source.append(name);
        source.append(".set_ifPresent();\n");
    }
}
Also used : Reference(org.eclipse.titan.designer.AST.Reference) ArrayList(java.util.ArrayList) Assignment(org.eclipse.titan.designer.AST.Assignment) SetOf_Type(org.eclipse.titan.designer.AST.TTCN3.types.SetOf_Type) ExpressionStruct(org.eclipse.titan.designer.AST.TTCN3.values.expressions.ExpressionStruct) Array_Type(org.eclipse.titan.designer.AST.TTCN3.types.Array_Type) SequenceOf_Type(org.eclipse.titan.designer.AST.TTCN3.types.SequenceOf_Type)

Example 29 with Array_Type

use of org.eclipse.titan.designer.AST.TTCN3.types.Array_Type in project titan.EclipsePlug-ins by eclipse.

the class Template_List method generateCodeInit.

@Override
public /**
 * {@inheritDoc}
 */
void generateCodeInit(final JavaGenData aData, final StringBuilder source, final String name) {
    if (lastTimeBuilt != null && !lastTimeBuilt.isLess(aData.getBuildTimstamp())) {
        return;
    }
    lastTimeBuilt = aData.getBuildTimstamp();
    if (asValue != null) {
        asValue.generateCodeInit(aData, source, name);
        return;
    }
    if (converted != null) {
        converted.generateCodeInit(aData, source, name);
        return;
    }
    if (myGovernor == null) {
        return;
    }
    // TODO special case for empty list
    final IType typeLast = myGovernor.getTypeRefdLast(CompilationTimeStamp.getBaseTimestamp());
    long indexOffset = 0;
    if (typeLast.getTypetype().equals(Type_type.TYPE_ARRAY)) {
        indexOffset = ((Array_Type) typeLast).getDimension().getOffset();
    }
    String ofTypeName;
    switch(typeLast.getTypetype()) {
        case TYPE_SEQUENCE_OF:
            ofTypeName = ((SequenceOf_Type) typeLast).getOfType().getGenNameTemplate(aData, source, myScope);
            break;
        case TYPE_SET_OF:
            ofTypeName = ((SetOf_Type) typeLast).getOfType().getGenNameTemplate(aData, source, myScope);
            break;
        case TYPE_ARRAY:
            ofTypeName = ((Array_Type) typeLast).getElementType().getGenNameTemplate(aData, source, myScope);
            break;
        default:
            ErrorReporter.INTERNAL_ERROR("FATAL ERROR while processing template list `" + getFullName() + "''");
            return;
    }
    if (hasPermutation || hasAllFrom()) {
        long fixedPart = 0;
        final StringBuilder preamble = new StringBuilder();
        final StringBuilder setSize = new StringBuilder();
        final StringBuilder body = new StringBuilder();
        final String counter = aData.getTemporaryVariableName();
        body.append(MessageFormat.format("int {0} = {1};\n", counter, indexOffset));
        for (int i = 0, size = templates.getNofTemplates(); i < size; i++) {
            final TTCN3Template template = templates.getTemplateByIndex(i);
            if (template.getTemplatetype() == Template_type.ALL_FROM) {
                final TTCN3Template subTemplate = ((All_From_Template) template).getAllFrom();
                final Reference reference = ((SpecificValue_Template) subTemplate).getReference();
                final Assignment assignment = reference.getRefdAssignment(CompilationTimeStamp.getBaseTimestamp(), false);
                setSize.append(" + ");
                final ExpressionStruct referenceExpression = new ExpressionStruct();
                reference.generateCode(aData, referenceExpression);
                switch(assignment.getAssignmentType()) {
                    case A_CONST:
                    case A_EXT_CONST:
                    case A_MODULEPAR:
                    case A_VAR:
                    case A_PAR_VAL:
                    case A_PAR_VAL_IN:
                    case A_PAR_VAL_OUT:
                    case A_PAR_VAL_INOUT:
                    case A_FUNCTION_RVAL:
                    case A_EXT_FUNCTION_RVAL:
                        if (assignment.getType(CompilationTimeStamp.getBaseTimestamp()).fieldIsOptional(reference.getSubreferences())) {
                            referenceExpression.expression.append(".get()");
                        }
                        break;
                    default:
                        break;
                }
                setSize.append(referenceExpression.expression);
                if (referenceExpression.preamble.length() > 0) {
                    preamble.append(referenceExpression.preamble);
                }
                setSize.append(".n_elem().getInt()");
                body.append(MessageFormat.format("for (int i_i = 0, i_lim = {0}.n_elem().getInt(); i_i < i_lim; ++i_i ) '{'\n", referenceExpression.expression));
                final String embeddedName = MessageFormat.format("{0}.getAt({1} + i_i)", name, counter);
                ((All_From_Template) template).generateCodeInitAllFrom(aData, body, embeddedName, referenceExpression.expression);
                body.append("}\n");
                body.append(MessageFormat.format("{0} += {1}.n_elem().getInt();\n", counter, referenceExpression.expression));
            } else if (template.getTemplatetype() == Template_type.PERMUTATION_MATCH) {
                final int numPermutations = ((PermutationMatch_Template) template).getNofTemplates();
                final String permutationStart = aData.getTemporaryVariableName();
                body.append(MessageFormat.format("int {0} = {1};\n", permutationStart, counter));
                for (int j = 0; j < numPermutations; j++) {
                    final TTCN3Template template2 = ((PermutationMatch_Template) template).getTemplateByIndex(j);
                    if (template2.getTemplatetype() == Template_type.ALL_FROM) {
                        final TTCN3Template subTemplate = ((All_From_Template) template2).getAllFrom();
                        final Reference reference = ((SpecificValue_Template) subTemplate).getReference();
                        final Assignment assignment = reference.getRefdAssignment(CompilationTimeStamp.getBaseTimestamp(), false);
                        setSize.append(" + ");
                        final ExpressionStruct referenceExpression = new ExpressionStruct();
                        reference.generateCode(aData, referenceExpression);
                        switch(assignment.getAssignmentType()) {
                            case A_CONST:
                            case A_EXT_CONST:
                            case A_MODULEPAR:
                            case A_VAR:
                            case A_PAR_VAL:
                            case A_PAR_VAL_IN:
                            case A_PAR_VAL_OUT:
                            case A_PAR_VAL_INOUT:
                            case A_FUNCTION_RVAL:
                            case A_EXT_FUNCTION_RVAL:
                                if (assignment.getType(CompilationTimeStamp.getBaseTimestamp()).fieldIsOptional(reference.getSubreferences())) {
                                    referenceExpression.expression.append(".get()");
                                }
                                break;
                            default:
                                break;
                        }
                        setSize.append(referenceExpression.expression);
                        if (referenceExpression.preamble.length() > 0) {
                            preamble.append(referenceExpression.preamble);
                        }
                        setSize.append(".n_elem().getInt()");
                        body.append(MessageFormat.format("for (int i_i = 0, i_lim = {0}.n_elem().getInt(); i_i < i_lim; ++i_i ) '{'\n", referenceExpression.expression));
                        final String embeddedName = MessageFormat.format("{0}.getAt({1} + i_i)", name, counter);
                        ((All_From_Template) template2).generateCodeInitAllFrom(aData, body, embeddedName, referenceExpression.expression);
                        body.append("}\n");
                        body.append(MessageFormat.format("{0} += {1}.n_elem().getInt();\n", counter, referenceExpression.expression));
                        template2.lastTimeBuilt = aData.buildTimestamp;
                    } else {
                        fixedPart++;
                        template2.generateCodeInitSeofElement(aData, body, name, counter, ofTypeName);
                        body.append(MessageFormat.format("{0}++;\n", counter));
                    }
                }
                // do not consider index_offset in case of permutation indicators
                body.append(MessageFormat.format("{0}.add_permutation({1}, {2} - 1);\n", name, permutationStart, counter));
                template.lastTimeBuilt = aData.buildTimestamp;
            } else {
                fixedPart++;
                template.generateCodeInitSeofElement(aData, body, name, counter, ofTypeName);
                body.append(MessageFormat.format("{0}++;\n", counter));
            }
        }
        source.append(preamble);
        source.append(MessageFormat.format("{0}.setSize({1}", name, fixedPart));
        source.append(setSize);
        source.append(");\n");
        source.append(body);
    } else {
        // source.append(MessageFormat.format("{0}.setSize({1});\n", name, getNofTemplates()));
        int index = 0;
        for (int i = 0, size = templates.getNofTemplates(); i < size; i++) {
            final TTCN3Template template = templates.getTemplateByIndex(i);
            switch(template.getTemplatetype()) {
                case PERMUTATION_MATCH:
                    final PermutationMatch_Template actualTemplate = (PermutationMatch_Template) template;
                    final int nofPermutatedTemplates = actualTemplate.getNofTemplates();
                    for (int j = 0; j < nofPermutatedTemplates; j++) {
                        final long ix = indexOffset + index + j;
                        final TTCN3Template template2 = actualTemplate.getTemplateByIndex(j);
                        template2.generateCodeInitSeofElement(aData, source, name, Long.toString(ix), ofTypeName);
                    }
                    // do not consider index_offset in case of permutation indicators
                    source.append(MessageFormat.format("{0}.add_permutation({1}, {2});\n", name, index, index + nofPermutatedTemplates - 1));
                    template.lastTimeBuilt = aData.buildTimestamp;
                    index += nofPermutatedTemplates;
                    break;
                case ALL_FROM:
                case TEMPLATE_NOTUSED:
                    index++;
                    break;
                default:
                    template.generateCodeInitSeofElement(aData, source, name, Long.toString(indexOffset + index), ofTypeName);
                    index++;
                    break;
            }
        }
    }
    if (lengthRestriction != null) {
        if (getCodeSection() == CodeSectionType.CS_POST_INIT) {
            lengthRestriction.reArrangeInitCode(aData, source, myScope.getModuleScope());
        }
        lengthRestriction.generateCodeInit(aData, source, name);
    }
    if (isIfpresent) {
        source.append(name);
        source.append(".set_ifPresent();\n");
    }
}
Also used : Reference(org.eclipse.titan.designer.AST.Reference) IType(org.eclipse.titan.designer.AST.IType) Assignment(org.eclipse.titan.designer.AST.Assignment) SetOf_Type(org.eclipse.titan.designer.AST.TTCN3.types.SetOf_Type) ExpressionStruct(org.eclipse.titan.designer.AST.TTCN3.values.expressions.ExpressionStruct) Array_Type(org.eclipse.titan.designer.AST.TTCN3.types.Array_Type) SequenceOf_Type(org.eclipse.titan.designer.AST.TTCN3.types.SequenceOf_Type)

Aggregations

Array_Type (org.eclipse.titan.designer.AST.TTCN3.types.Array_Type)19 IType (org.eclipse.titan.designer.AST.IType)13 IValue (org.eclipse.titan.designer.AST.IValue)10 Assignment (org.eclipse.titan.designer.AST.Assignment)6 IReferenceChain (org.eclipse.titan.designer.AST.IReferenceChain)6 ArrayDimension (org.eclipse.titan.designer.AST.TTCN3.values.ArrayDimension)6 Integer_Value (org.eclipse.titan.designer.AST.TTCN3.values.Integer_Value)6 Reference (org.eclipse.titan.designer.AST.Reference)5 SequenceOf_Type (org.eclipse.titan.designer.AST.TTCN3.types.SequenceOf_Type)5 ArrayList (java.util.ArrayList)4 ISubReference (org.eclipse.titan.designer.AST.ISubReference)4 SetOf_Type (org.eclipse.titan.designer.AST.TTCN3.types.SetOf_Type)4 ExpressionStruct (org.eclipse.titan.designer.AST.TTCN3.values.expressions.ExpressionStruct)4 ArraySubReference (org.eclipse.titan.designer.AST.ArraySubReference)3 CompField (org.eclipse.titan.designer.AST.TTCN3.types.CompField)3 ASN1_Choice_Type (org.eclipse.titan.designer.AST.ASN1.types.ASN1_Choice_Type)2 ASN1_Sequence_Type (org.eclipse.titan.designer.AST.ASN1.types.ASN1_Sequence_Type)2 ASN1_Set_Type (org.eclipse.titan.designer.AST.ASN1.types.ASN1_Set_Type)2 FieldSubReference (org.eclipse.titan.designer.AST.FieldSubReference)2 Identifier (org.eclipse.titan.designer.AST.Identifier)2