All files / src/abap/5_syntax/statements create_object.ts

91.87% Statements 147/160
87.95% Branches 73/83
100% Functions 2/2
91.87% Lines 147/160

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 1601x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 57x 57x 57x 57x 57x 57x 15x 15x 15x 15x 12x 12x 12x 1x 1x 1x 1x 15x   3x 3x 3x 3x 3x 15x 53x 53x 57x     53x 57x     53x 53x 53x 53x 53x 53x 10x 53x 5x 5x 5x 43x 38x 38x 38x       38x 2x 2x 2x 38x 28x 28x 28x 2x 2x 2x 28x 26x 26x       26x 20x 20x 28x 2x 2x 2x 2x 28x 42x 53x 1x 1x 53x 42x 57x 5x 5x 42x 57x 57x 8x 8x 42x 57x 57x 57x 57x 57x 1x 1x 42x 13x 13x 2x 2x 13x 13x 29x 29x 42x 42x 42x 42x 42x 42x 11x 11x     11x 11x 11x 11x 11x 11x 3x 3x 3x 11x 1x 1x 1x 1x 7x 7x 7x 25x 42x 2x 2x 2x 2x 23x 1x
import * as Expressions from "../../2_statements/expressions";
import {StatementNode} from "../../nodes";
import {Source} from "../expressions/source";
import {Target} from "../expressions/target";
import {Dynamic} from "../expressions/dynamic";
import {ReferenceType} from "../_reference";
import {AnyType, DataType, GenericObjectReferenceType, ObjectReferenceType, UnknownType, VoidType} from "../../types/basic";
import {ClassDefinition, InterfaceDefinition} from "../../types";
import {StatementSyntax} from "../_statement_syntax";
import {IClassDefinition} from "../../types/_class_definition";
import {ObjectOriented} from "../_object_oriented";
import {TypeUtils} from "../_type_utils";
import {SyntaxInput, syntaxIssue} from "../_syntax_input";
 
export class CreateObject implements StatementSyntax {
  public runSyntax(node: StatementNode, input: SyntaxInput): void {
 
    let cdef: IClassDefinition | undefined = undefined;
 
    // CREATE OBJECT, TYPE
    const type = node.findExpressionAfterToken("TYPE");
    if (type && type.get() instanceof Expressions.ClassName) {
      const token = type.getFirstToken();
      const name = token.getStr();
      cdef = input.scope.findClassDefinition(name);
      if (cdef) {
        input.scope.addReference(token, cdef, ReferenceType.ObjectOrientedReference, input.filename);
        input.scope.addReference(token, cdef, ReferenceType.ConstructorReference, input.filename, {ooName: cdef.getName()});
        if (cdef.isAbstract() === true) {
          const message = cdef.getName() + " is abstract, cannot be instantiated";
          input.issues.push(syntaxIssue(input, node.getFirstToken(), message));
          return;
        }
      } else if (input.scope.getDDIC().inErrorNamespace(name) === false) {
        input.scope.addReference(token, undefined, ReferenceType.ObjectOrientedVoidReference, input.filename, {ooName: name, ooType: "CLAS"});
      } else {
        const message = "TYPE \"" + name + "\" not found";
        input.issues.push(syntaxIssue(input, node.getFirstToken(), message));
        return;
      }
    }
 
    // just recurse
    for (const s of node.findDirectExpressions(Expressions.Source)) {
      Source.runSyntax(s, input);
    }
 
    for (const t of node.findDirectExpression(Expressions.ParameterListExceptions)?.findAllExpressions(Expressions.Target) || []) {
      Target.runSyntax(t, input);
    }
 
    const t = node.findDirectExpression(Expressions.Target);
    let found = undefined;
    if (t) {
      found = Target.runSyntax(t, input);
      if (found instanceof VoidType) {
        // do nothing
      } else if (found instanceof UnknownType) {
        const message = "Target type unknown, " + t.concatTokens();
        input.issues.push(syntaxIssue(input, node.getFirstToken(), message));
        return;
      } else if (!(found instanceof ObjectReferenceType)
          && !(found instanceof AnyType)
          && !(found instanceof DataType)
          && !(found instanceof GenericObjectReferenceType)) {
        const message = "Target must be an object reference, " + t.concatTokens();
        input.issues.push(syntaxIssue(input, node.getFirstToken(), message));
        return;
      } else if (found instanceof GenericObjectReferenceType && type === undefined) {
        const message = "Generic type, cannot be instantiated";
        input.issues.push(syntaxIssue(input, node.getFirstToken(), message));
        return;
      } else if (found instanceof ObjectReferenceType) {
        const identifier = found.getIdentifier();
        const idFound = input.scope.findObjectDefinition(identifier.getName());
        if (idFound instanceof InterfaceDefinition && type === undefined) {
          const message = "Interface reference, cannot be instantiated";
          input.issues.push(syntaxIssue(input, node.getFirstToken(), message));
          return;
        } else if (found instanceof ObjectReferenceType
            && type === undefined
            && input.scope.findInterfaceDefinition(found.getQualifiedName())) {
          const message = "Interface reference, cannot be instantiated";
          input.issues.push(syntaxIssue(input, node.getFirstToken(), message));
          return;
        } else if (idFound instanceof ClassDefinition && cdef === undefined) {
          cdef = idFound;
        }
        if (type === undefined && idFound instanceof ClassDefinition && idFound.isAbstract() === true) {
          const message = identifier.getName() + " is abstract, cannot be instantiated";
          input.issues.push(syntaxIssue(input, node.getFirstToken(), message));
          return;
        }
      }
 
      if (found instanceof ObjectReferenceType && cdef === undefined) {
        cdef = input.scope.findClassDefinition(found.getQualifiedName());
      }
    }
 
    for (const t of node.findDirectExpressions(Expressions.Dynamic)) {
      Dynamic.runSyntax(t, input);
    }
 
    let ooName = cdef?.getName();
    if (ooName === undefined && found instanceof VoidType) {
      ooName = found.getVoided();
    }
 
    input.scope.addReference(t?.getFirstToken(), cdef, ReferenceType.ConstructorReference, input.filename,
                             {ooName: ooName});
 
    this.validateParameters(cdef, node, input);
  }
 
  private validateParameters(cdef: IClassDefinition | undefined, node: StatementNode, input: SyntaxInput): void {
    if (cdef === undefined) {
      const sources = node.findDirectExpression(Expressions.ParameterListS)?.findAllExpressions(Expressions.Source);
      for (const s of sources || []) {
        Source.runSyntax(s, input);
      }
      return;
    }
 
    const methodDef = new ObjectOriented(input.scope).searchMethodName(cdef, "CONSTRUCTOR");
    const methodParameters = methodDef.method?.getParameters();
 
    const allImporting = methodParameters?.getImporting() || [];
    const requiredImporting = new Set(methodParameters?.getRequiredParameters().map(i => i.getName().toUpperCase()));
 
    for (const p of node.findDirectExpression(Expressions.ParameterListS)?.findAllExpressions(Expressions.ParameterS) || []) {
      const name = p.findDirectExpression(Expressions.ParameterName)?.concatTokens().toUpperCase();
      if (name === undefined) {
        continue;
      }
 
      const source = p.findDirectExpression(Expressions.Source);
      const sourceType = Source.runSyntax(source, input);
 
      const found = allImporting?.find(p => p.getName().toUpperCase() === name);
      if (found === undefined) {
        const message = `constructor parameter "${name}" does not exist`;
        input.issues.push(syntaxIssue(input, node.getFirstToken(), message));
        return;
      } else if (new TypeUtils(input.scope).isAssignableStrict(sourceType, found.getType(), source) === false) {
        const message = `constructor parameter "${name}" type not compatible`;
        input.issues.push(syntaxIssue(input, node.getFirstToken(), message));
        return;
      }
 
      requiredImporting.delete(name);
    }
 
    for (const r of requiredImporting.values()) {
      const message = `constructor parameter "${r}" must be supplied`;
      input.issues.push(syntaxIssue(input, node.getFirstToken(), message));
      return;
    }
  }
}