All files / src/cds cds_lexer.ts

99.03% Statements 205/207
97.53% Branches 79/81
100% Functions 8/8
99.03% Lines 205/207

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 2071x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 477x 477x 1x 1x 70596x 70596x 70596x 70596x 1x 1x 70583x 70583x 70583x 1x 1x 71060x 71060x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 477x 477x 477x 477x 26112x 14016x 14016x 10x 14016x 14006x 14006x 14016x 26112x 26112x 477x 477x 477x 477x 477x 1x 1x 1x 477x 477x 477x 477x 477x 477x 477x 477x 477x 477x 70583x 70583x 70583x 70583x 70583x 70583x 70583x 2035x 2035x 2x 2x 2x 2035x 3x 3x 3x 2033x 1x 1x 1x 2030x 352x 352x 352x 2035x 2035x 68548x 68548x 70583x 126x 126x     126x 1x 1x 126x 16x 16x 16x 126x 126x 68422x 68422x 70583x 213x 9x 9x 213x 204x 204x 204x 70583x 5x 5x 5x 5x 68209x 5x 5x 5x 5x 5x 68208x 68208x 70583x 176x 3x 176x 6x 6x 176x 70583x 6x 6x 6x 6x 6x 6x 68026x 68026x 70583x 352x 352x 352x 352x 70583x 16x 16x 16x 16x 70583x 70583x 13768x 13768x 70583x 2155x 2155x 2155x 2155x 70583x 70583x 70583x 70583x 70583x 70583x 70583x 70583x 70583x 70583x 70583x 70583x 70583x 70583x 70583x 70583x 70583x 70583x 4394x 4394x 4394x 70583x 163x 163x 163x 163x 70583x 47178x 47178x 70583x 70583x 477x 477x 477x 477x 1x
import {Comment, Identifier} from "../abap/1_lexer/tokens";
import {AbstractToken} from "../abap/1_lexer/tokens/abstract_token";
import {IFile} from "../files/_ifile";
import {Position} from "../position";
 
// todo: Keywords must be all uppercase, all lowercase, or in lowercase with an
// uppercase initial letter. Other mixes of uppercase and lowercase are not allowed
 
class Stream {
  private buffer: string;
 
  public constructor(buffer: string) {
    this.buffer = buffer;
  }
 
  public takeNext(): string {
    const next = this.buffer.substring(0, 1);
    this.buffer = this.buffer.substring(1);
    return next;
  }
 
  public peekNext(): string {
    const next = this.buffer.substring(0, 1);
    return next;
  }
 
  public length(): number {
    return this.buffer.length;
  }
}
 
enum Mode {
  Default,
  String,
  DoubleQuoteString,
  SingleLineComment,
  MultiLineComment,
}
 
class Result {
  private readonly result: AbstractToken[] = [];
 
  public add(text: string, row: number, col: number, mode: Mode): string {
    if (text.length > 0) {
      if (mode === Mode.SingleLineComment
          && (text.startsWith("--") || text.startsWith("//"))) {
        this.result.push(new Comment(new Position(row, col - text.length), text));
      } else {
        this.result.push(new Identifier(new Position(row, col), text));
      }
    }
    return "";
  }
 
  public get() {
    return this.result;
  }
}
 
export class CDSLexer {
  public static run(file: IFile): AbstractToken[] {
    const result = new Result();
    let mode = Mode.Default;
    let row = 1;
    let col = 1;
    let build = "";
 
    const stream = new Stream(file.getRaw().replace(/\r/g, "").replace(/\u00a0/g, " ").replace(/\u000b/g, " "));
 
    let next = "";
    while (stream.length() > 0) {
      const prev = next;
      next = stream.takeNext();
      const nextNext = stream.peekNext();
      col++;
 
// string handling
      if (mode === Mode.String) {
        build += next;
        if (next === "'" && nextNext === "'") {
          // escaped single quote (doubled), continue string
          build += stream.takeNext();
          col++;
        } else if (next === "\\" && nextNext === "\\") {
          // escaped backslash (e.g. '\\' in ltrim/rtrim calls), consume both chars
          build += stream.takeNext();
          col++;
        } else if (next === "\\" && nextNext === "'") {
          // backslash-escaped single quote, continue string
          build += stream.takeNext();
          col++;
        } else if (next === "'") {
          build = result.add(build, row, col, mode);
          mode = Mode.Default;
        }
        continue;
      }
 
// double-quote string handling
      if (mode === Mode.DoubleQuoteString) {
        build += next;
        if (next === "\\" && nextNext === "\"") {
          build += stream.takeNext();
          col++;
        } else if (next === "\"" && nextNext === "\"") {
          build += stream.takeNext();
          col++;
        } else if (next === "\"") {
          build = result.add(build, row, col, mode);
          mode = Mode.Default;
        }
        continue;
      }
 
// single line comment handling
      if (mode === Mode.SingleLineComment) {
        if (next === "\n") {
          build = result.add(build, row, col, mode);
          mode = Mode.Default;
        } else {
          build += next;
          continue;
        }
      } else if (mode === Mode.Default && next === "/" && nextNext === "/") {
        mode = Mode.SingleLineComment;
        build = result.add(build, row, col, mode);
        build += next;
        continue;
      } else if (mode === Mode.Default && next === "-" && nextNext === "-") {
        mode = Mode.SingleLineComment;
        build = result.add(build, row, col, mode);
        build += next;
        continue;
      }
 
// multi line comment handling
      if (mode === Mode.MultiLineComment) {
        if (next === "\n") {
          row++;
        } else if (prev === "*" && next === "/") {
          mode = Mode.Default;
        }
        continue;
      } else if (mode === Mode.Default && next === "/" && nextNext === "*") {
        mode = Mode.MultiLineComment;
        build = result.add(build, row, col, mode);
        stream.takeNext(); // consume the '*' so it doesn't become prev for '*/' detection
        col++;
        continue;
      }
 
      switch (next) {
        case "'":
          build = result.add(build, row, col, mode);
          mode = Mode.String;
          build += next;
          break;
        case "\"":
          build = result.add(build, row, col, mode);
          mode = Mode.DoubleQuoteString;
          build += next;
          break;
        case " ":
        case "\t":
          build = result.add(build, row, col, mode);
          break;
        case "\n":
          build = result.add(build, row, col, mode);
          row++;
          col = 0;
          break;
        case ";":
        case ":":
        case ",":
        case ".":
        case "{":
        case "}":
        case "(":
        case ")":
        case "[":
        case "]":
        case "!":
        case "=":
        case "<":
        case ">":
        case "+":
        case "-":
        case "*":
        case "/":
          build = result.add(build, row, col, mode);
          result.add(next, row, col, mode);
          break;
        case "@":
          // @ starts a new annotation; flush current token and start building with @
          build = result.add(build, row, col, mode);
          build = "@";
          break;
        default:
          build += next;
          break;
      }
    }
 
    result.add(build, row, col, mode);
    return result.get();
  }
}