All files / src/objects data_element.ts

95.77% Statements 204/213
89.47% Branches 102/114
92.3% Functions 12/13
95.77% Lines 204/213

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 2141x 1x 1x 1x 1x 1x 1x 1x 1x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 1537x 1537x 84x 84x 113x 113x 113x 84x 84x 43x 43x 43x 43x 43x 84x 84x 102x 102x 102x 102x 84x 84x       84x 84x 84x 84x 4x 4x 3x 3x 4x 1x 1x 1x 1x 1x     84x 84x 46x 46x 46x 84x 84x 46x 46x 46x 84x 84x 46x 46x 46x 84x 84x 33x 33x 33x 84x 84x 227x 227x 227x 227x 227x 227x   227x 227x 140x 140x 87x 87x 227x 10x 2x 10x 8x 8x 227x 1x   1x 1x 1x 77x 76x 24x 76x 52x 52x 52x 52x 52x 52x 52x 52x 52x 52x 52x 76x 227x 87x 227x 7x 7x 87x 87x 227x 61x 61x 61x 61x 87x 87x 84x 84x 626x 545x 545x 81x 81x 81x 81x 626x     81x 626x 626x 626x 626x 626x 626x 626x 626x 626x 626x 626x 626x 626x 626x 626x 626x 626x 626x 626x 626x 626x 626x 626x 626x 626x 5x 5x 5x 5x 5x 5x 5x 5x 5x 81x 81x 81x 81x 84x 84x  
import {AbstractObject} from "./_abstract_object";
import {AbstractType} from "../abap/types/basic/_abstract_type";
import {IRegistry} from "../_iregistry";
import {DDIC, ILookupResult} from "../ddic";
import * as Types from "../abap/types/basic";
import {xmlToArray} from "../xml_utils";
import {IObjectAndToken} from "../_iddic_references";
import {Domain} from "./domain";
 
export class DataElement extends AbstractObject {
  private parsedXML: {
    description?: string,
    refkind?: string,
    domname?: string,
    datatype?: string,
    leng?: string,
    texts?: {
      short?: string,
      medium?: string,
      long?: string,
      heading?: string,
    }
    textMaxLengths?: {
      short?: string,
      medium?: string,
      long?: string,
      heading?: string,
    }
    textsTranslations?: {
      language: string,
      description?: string,
      short?: string,
      medium?: string,
      long?: string,
      heading?: string,
    }[]
    decimals?: string,
    dtelmaster?: string,
  } | undefined = undefined;
  private parsedType: AbstractType | undefined = undefined;
 
  public getType(): string {
    return "DTEL";
  }
 
  public getDescription(): string | undefined {
    this.parse();
    return this.parsedXML?.description;
  }
 
  public getAllowedNaming() {
    return {
      maxLength: 30,
      allowNamespace: true,
    };
  }
 
  public setDirty(): void {
    this.parsedXML = undefined;
    this.parsedType = undefined;
    super.setDirty();
  }
 
  public getDomainName(): string | undefined {
    this.parse();
    return this.parsedXML?.domname;
  }
 
  /** parseType() cannot distinguish DEC, CURR, and QUAN because they all become PackedType.
   * Return the original DDIC datatype instead, resolving domain-backed data elements when possible. */
  public getDataType(reg?: IRegistry): string | undefined {
    this.parse();
    if (this.parsedXML?.datatype) {
      return this.parsedXML.datatype;
    }
    if (reg && this.parsedXML?.refkind === "D" && this.parsedXML.domname) {
      const domain = reg.getObject("DOMA", this.parsedXML.domname);
      if (domain instanceof Domain) {
        return domain.getDataType();
      }
    }
    return undefined;
  }
 
  public getTexts() {
    this.parse();
    return this.parsedXML?.texts;
  }
 
  public getTextMaxLengths() {
    this.parse();
    return this.parsedXML?.textMaxLengths;
  }
 
  public getTextsTranslations() {
    this.parse();
    return this.parsedXML?.textsTranslations;
  }
 
  public getDtelMaster() {
    this.parse();
    return this.parsedXML?.dtelmaster;
  }
 
  public parseType(reg: IRegistry): AbstractType {
    const references: IObjectAndToken[] = [];
    let lookup: ILookupResult | undefined = undefined;
 
    this.parse();
 
    if (this.parsedXML === undefined) {
      lookup = {type: new Types.UnknownType("Data Element " + this.getName() + ", parser error")};
    } else {
      if (this.parsedType) {
        return this.parsedType;
      }
 
      const ddic = new DDIC(reg);
      if (this.parsedXML.refkind === "D") {
        if (this.parsedXML.domname === undefined || this.parsedXML.domname === "") {
          lookup = {type: new Types.UnknownType("DOMNAME unexpectely empty in " + this.getName())};
        } else {
          lookup = ddic.lookupDomain(this.parsedXML.domname, this.getName(), this.getDescription());
        }
      } else if (this.parsedXML.refkind === "R") {
        if (this.parsedXML.domname === undefined || this.parsedXML.domname === "") {
          lookup = {type: new Types.UnknownType("DOMNAME unexpectely empty in " + this.getName())};
        } else {
          lookup = ddic.lookupObject(this.parsedXML.domname);
        }
      } else {
        if (this.parsedXML.datatype === undefined || this.parsedXML.datatype === "") {
          lookup = {type: new Types.UnknownType("DATATYPE unexpectely empty in " + this.getName())};
        } else {
          lookup = {type: ddic.textToType({
            text: this.parsedXML.datatype,
            length: this.parsedXML.leng,
            decimals: this.parsedXML.decimals,
            infoText: this.getName(),
            qualifiedName: this.getName(),
            conversionExit: undefined,
            ddicName: this.getName(),
            description: this.parsedXML.texts?.heading,
          })};
        }
      }
    }
 
    if (lookup.object) {
      references.push({object: lookup.object});
    }
    reg.getDDICReferences().setUsing(this, references);
 
    if (!(lookup.type instanceof Types.UnknownType)) {
      // the referenced type might not exist or contain syntax errors(for CLAS)
      // so dont cache it, expect the user to fix it
      this.parsedType = lookup.type;
    }
    return lookup.type;
  }
 
  public parse() {
    if (this.parsedXML !== undefined) {
      return {updated: false, runtime: 0};
    }
 
    const start = Date.now();
    this.parsedXML = {};
    const parsed = super.parseRaw2();
    if (parsed === undefined) {
      return {updated: false, runtime: 0};
    }
 
    const dd04v = parsed.abapGit?.["asx:abap"]?.["asx:values"]?.DD04V;
    this.parsedXML = {
      description: dd04v?.DDTEXT,
      refkind: dd04v?.REFKIND,
      domname: dd04v?.DOMNAME,
      datatype: dd04v?.DATATYPE,
      leng: dd04v?.LENG,
      decimals: dd04v?.DECIMALS,
      dtelmaster: dd04v?.DTELMASTER,
      texts: {
        short: dd04v?.SCRTEXT_S,
        medium: dd04v?.SCRTEXT_M,
        long: dd04v?.SCRTEXT_L,
        heading: dd04v?.REPTEXT,
      },
      textMaxLengths: {
        short: dd04v?.SCRLEN1,
        medium: dd04v?.SCRLEN2,
        long: dd04v?.SCRLEN3,
        heading: dd04v?.HEADLEN,
      },
    };
 
    this.parsedXML.textsTranslations = [];
    for (const item of xmlToArray(parsed.abapGit?.["asx:abap"]?.["asx:values"]?.DD04_TEXTS?.item)) {
      this.parsedXML.textsTranslations.push({
        language: item.DDLANGUAGE,
        description: item.DDTEXT,
        short: item.SCRTEXT_S,
        medium: item.SCRTEXT_M,
        long: item.SCRTEXT_L,
        heading: item.REPTEXT,
      });
    }
 
    const end = Date.now();
    return {updated: true, runtime: end - start};
  }
 
}