All files / src/abap/5_syntax/expressions method_parameters.ts

80.27% Statements 232/289
65.11% Branches 56/86
100% Functions 9/9
80.27% Lines 232/289

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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 2891x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 62x 62x 62x 62x 62x 22x     22x 22x 22x 5x 22x 17x 17x 22x 22x 26x 26x 26x 7x 7x 26x 6x 6x 26x 9x 9x 26x 4x 4x 26x     26x   26x 26x 22x 22x 22x 62x 62x 62x 62x 4x 4x 4x       4x         4x 4x 4x 4x 1x 4x 3x 3x         3x 4x 62x 62x 6x 6x 6x 1x 6x 5x 5x         5x 5x 6x 6x 6x 1x 6x       5x         6x 6x 62x 62x 9x 9x 1x 1x 1x 1x 8x 8x 9x 1x 9x 7x 7x         7x 7x 8x 9x         8x 9x 9x 8x 62x 62x 47x 47x 47x 47x 9x 9x 38x 38x 47x 32x 32x 38x 47x 48x 48x 48x 48x 48x 2x 2x 2x 48x 1x 1x 1x 1x 45x 45x 35x 47x 30x 30x 47x 62x 62x 52x 3x 3x 3x 52x 62x 62x 47x 47x 47x 47x 47x   47x     47x 47x 47x 47x 60x     60x 60x 60x     60x 60x 60x     60x 60x 60x 48x 134x 46x 46x 134x 48x 60x 60x 60x 4x 4x 4x         4x 60x 60x 60x 47x 47x 47x 62x 62x 15x 15x 15x 15x   15x     15x 15x 15x 15x 15x     15x 15x 15x     15x 15x 15x     15x 15x 15x 15x 15x 15x 15x 15x 62x 62x
import {VoidType} from "../../types/basic";
import * as Expressions from "../../2_statements/expressions";
import {IMethodDefinition} from "../../types/_method_definition";
import {ExpressionNode} from "../../nodes";
import {InlineData} from "./inline_data";
import {Target} from "./target";
import {AbstractType} from "../../types/basic/_abstract_type";
import {INode} from "../../nodes/_inode";
import {Source} from "./source";
import {TypeUtils} from "../_type_utils";
import {CheckSyntaxKey, SyntaxInput, syntaxIssue} from "../_syntax_input";
import {AssertError} from "../assert_error";
 
interface IListItemT {
  name: string;
  target: ExpressionNode;
  targetType: AbstractType | undefined;
}
 
interface IListItemS {
  name: string;
  source: ExpressionNode;
  sourceType: AbstractType | undefined;
}
 
export class MethodParameters {
 
  private requiredParameters: Set<string> | undefined = undefined;
 
  public runSyntax(node: INode, input: SyntaxInput, method: IMethodDefinition | VoidType): void {
    if (!(node.get() instanceof Expressions.MethodParameters)) {
      throw new AssertError("MethodParameters, unexpected input");
    }
 
    const children = node.getChildren().slice();
    if (method instanceof VoidType) {
      this.requiredParameters = new Set();
    } else {
      this.requiredParameters = new Set(method.getParameters().getRequiredParameters().map(i => i.getName().toUpperCase()));
    }
 
    while (children.length > 0) {
      const name = children.shift()?.getFirstToken().getStr().toUpperCase();
      switch (name) {
        case "EXPORTING":
          this.checkExporting(children.shift()!, input, method, false);
          break;
        case "IMPORTING":
          this.checkImporting(children.shift()!, input, method);
          break;
        case "CHANGING":
          this.checkChanging(children.shift()!, input, method);
          break;
        case "RECEIVING":
          this.checkReceiving(children.shift()!, input, method);
          break;
        case "EXCEPTIONS":
          children.shift(); // todo, old style exceptions
          break;
        default:
          throw new AssertError("MethodParameters, unexpected token, " + name);
      }
    }
 
    this.reportErrors(node, input);
  }
 
///////////////////////
 
  private checkReceiving(node: INode, input: SyntaxInput, method: IMethodDefinition | VoidType) {
 
    const type = method instanceof VoidType ? method : method.getParameters().getReturning()?.getType();
    if (type === undefined) {
      const message = "Method does not have a returning parameter";
      input.issues.push(syntaxIssue(input, node.getFirstToken(), message));
      return;
    } else if (!(node instanceof ExpressionNode)) {
      const message = "checkReceiving, not an expression node";
      input.issues.push(syntaxIssue(input, node.getFirstToken(), message));
      return;
    }
 
    const target = node.findDirectExpression(Expressions.Target);
    const inline = target?.findDirectExpression(Expressions.InlineData);
    if (inline) {
      new InlineData().runSyntax(inline, input, type);
    } else if (target) {
      const targetType = new Target().runSyntax(target, input);
      if (targetType && new TypeUtils(input.scope).isAssignable(type, targetType) === false) {
        const message = "Method returning value not type compatible";
        input.issues.push(syntaxIssue(input, node.getFirstToken(), message));
        return;
      }
    }
  }
 
  private checkImporting(node: INode, input: SyntaxInput, method: IMethodDefinition | VoidType) {
    for (const item of this.parameterListT(node, input)) {
      let parameterType: AbstractType | undefined = undefined;
      if (method instanceof VoidType) {
        parameterType = method;
      } else {
        const parameter = method.getParameters().getExporting().find(p => p.getName().toUpperCase() === item.name);
        if (parameter === undefined) {
          const message = "Method exporting parameter \"" + item.name + "\" does not exist";
          input.issues.push(syntaxIssue(input, node.getFirstToken(), message));
          return;
        }
        parameterType = parameter.getType();
      }
 
      const inline = item.target.findDirectExpression(Expressions.InlineData);
      if (inline) {
        new InlineData().runSyntax(inline, input, parameterType);
      } else if (item.targetType === undefined) {
        const message = "Could not determine target type";
        input.issues.push(syntaxIssue(input, node.getFirstToken(), message));
        return;
      } else if (item.targetType && new TypeUtils(input.scope).isAssignable(parameterType, item.targetType) === false) {
        const message = "Method parameter type not compatible, " + item.name;
        input.issues.push(syntaxIssue(input, node.getFirstToken(), message));
        return;
      }
    }
  }
 
  private checkChanging(node: INode, input: SyntaxInput, method: IMethodDefinition | VoidType) {
    for (const item of this.parameterListT(node, input)) {
      if (item.target.findFirstExpression(Expressions.InlineData) !== undefined) {
        const message = "CHANGING cannot be inlined";
        input.issues.push(syntaxIssue(input, node.getFirstToken(), message));
        return;
      }
 
      let parameterType: AbstractType | undefined = undefined;
      if (method instanceof VoidType) {
        parameterType = method;
      } else {
        const parameter = method.getParameters().getChanging().find(p => p.getName().toUpperCase() === item.name);
        if (parameter === undefined) {
          const message = "Method changing parameter \"" + item.name + "\" does not exist";
          input.issues.push(syntaxIssue(input, node.getFirstToken(), message));
          return;
        }
        parameterType = parameter.getType();
      }
 
      if (item.targetType && new TypeUtils(input.scope).isAssignable(parameterType, item.targetType) === false) {
        const message = "Method parameter type not compatible, " + item.name;
        input.issues.push(syntaxIssue(input, node.getFirstToken(), message));
        return;
      }
 
      this.requiredParameters?.delete(item.name);
    }
  }
 
  public checkExporting(node: INode, input: SyntaxInput,
                        method: IMethodDefinition | VoidType, errors = true): void {
 
    const items = this.parameterListS(node, input, method);
    if (method instanceof VoidType) {
      return;
    }
 
    const allImporting = method.getParameters().getImporting();
    if (this.requiredParameters === undefined) {
      this.requiredParameters = new Set(method.getParameters().getRequiredParameters().map(i => i.getName().toUpperCase()));
    }
 
    for (const item of items) {
      const parameter = allImporting.find(p => p.getName().toUpperCase() === item.name);
      const calculated = item.source.findFirstExpression(Expressions.MethodCallChain) !== undefined
        || item.source.findFirstExpression(Expressions.StringTemplate) !== undefined
        || item.source.findFirstExpression(Expressions.ArithOperator) !== undefined;
      if (parameter === undefined) {
        const message = "Method importing parameter \"" + item.name + "\" does not exist";
        input.issues.push(syntaxIssue(input, node.getFirstToken(), message));
        return;
      } else if (new TypeUtils(input.scope).isAssignableStrict(item.sourceType, parameter.getType(), calculated) === false) {
        const message = "Method parameter type not compatible, " + item.name;
        input.issues.push(syntaxIssue(input, node.getFirstToken(), message));
        return;
      }
      this.requiredParameters.delete(item.name);
    }
 
    if (errors === true) {
      this.reportErrors(node, input);
    }
  }
 
  private reportErrors(node: INode, input: SyntaxInput) {
    for (const r of this.requiredParameters?.values() || []) {
      const message = `method parameter "${r}" must be supplied`;
      input.issues.push(syntaxIssue(input, node.getFirstToken(), message));
    }
  }
 
  private parameterListS(
    node: INode | undefined,
    input: SyntaxInput,
    method: IMethodDefinition | VoidType): IListItemS[] {
 
    if (node === undefined) {
      return [];
    } else if (!(node.get() instanceof Expressions.ParameterListS)) {
      throw new AssertError("parameterListS, unexpected node");
    }
 
    const ret: IListItemS[] = [];
 
    for (const c of node.getChildren()) {
      if (!(c.get() instanceof Expressions.ParameterS) || !(c instanceof ExpressionNode)) {
        throw new AssertError("parameterListS, unexpected node, child");
      }
 
      const name = c.findDirectExpression(Expressions.ParameterName)?.getFirstToken().getStr().toUpperCase();
      if (name === undefined) {
        throw new AssertError("parameterListS, no name determined");
      }
 
      const source = c.findDirectExpression(Expressions.Source);
      if (source === undefined) {
        throw new AssertError("parameterListS, no source found");
      }
 
      let targetType: AbstractType | undefined = undefined;
      if (!(method instanceof VoidType)) {
        for (const i of method.getParameters().getImporting()) {
          if (i.getName().toUpperCase() === name) {
            targetType = i.getType();
          }
        }
      }
      let sourceType = new Source().runSyntax(source, input, targetType);
 
      if (sourceType === undefined) {
        if (method instanceof VoidType) {
          sourceType = method;
        } else {
          const message = "No source type determined for parameter " + name + " input";
          input.issues.push(syntaxIssue(input, node.getFirstToken(), message));
          sourceType = new VoidType(CheckSyntaxKey);
        }
      }
 
      ret.push({name, source, sourceType});
    }
 
    return ret;
  }
 
  private parameterListT(
    node: INode | undefined,
    input: SyntaxInput): IListItemT[] {
 
    if (node === undefined) {
      return [];
    } else if (!(node.get() instanceof Expressions.ParameterListT)) {
      throw new AssertError("parameterListT, unexpected node");
    }
 
    const ret: IListItemT[] = [];
 
    for (const c of node.getChildren()) {
      if (!(c.get() instanceof Expressions.ParameterT) || !(c instanceof ExpressionNode)) {
        throw new AssertError("parameterListT, unexpected node, child");
      }
 
      const name = c.findDirectExpression(Expressions.ParameterName)?.getFirstToken().getStr().toUpperCase();
      if (name === undefined) {
        throw new AssertError("parameterListT, no name determined");
      }
 
      const target = c.findDirectExpression(Expressions.Target);
      if (target === undefined) {
        throw new AssertError("parameterListT, no target found");
      }
 
      const targetType = new Target().runSyntax(target, input);
 
      ret.push({name, target, targetType});
    }
 
    return ret;
  }
 
}