All files / src/objects function_group.ts

81.4% Statements 162/199
81.25% Branches 39/48
81.25% Functions 13/16
81.4% Lines 162/199

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 2001x 1x 1x 1x 1x 1x 1x 23x 23x 23x 23x 23x 23x 23x 203x 203x 23x 23x 1x     1x 1x 1x 23x 23x 81x 81x 81x 81x 23x 23x 1x 1x 1x 1x 1x 23x 23x           23x 23x 21x 21x 2x 2x 19x 19x 21x 15x 15x 37x 15x 15x 15x 15x 15x 37x 15x 19x 19x 19x 23x 23x 29x 12x 12x 29x     29x 29x 29x 23x 23x 71x 71x 71x 209x 510x 510x 510x 22x 22x 510x 91x 91x 510x 510x 510x 22x 22x     22x 510x 209x 71x 71x 23x 23x 66x 66x 66x 78x 26x 26x 78x 40x 40x 23x 23x 36x 36x 73x 33x 33x 73x 3x 3x 23x 23x 73x 5x 5x 73x     73x 73x 73x 23x 23x 7x 7x 7x 7x 7x     23x 23x                         23x 23x 23x 23x 17x 17x 17x 17x 17x     17x 17x 17x 17x 17x 17x 17x 17x 36x 36x 17x 17x 17x 17x 17x 16x 16x 17x 23x 23x                 23x 23x  
import {ABAPObject, ITextElements} from "./_abap_object";
import {FunctionModuleDefinition} from "../abap/types";
import {xmlToArray} from "../xml_utils";
import {XMLParser} from "fast-xml-parser";
import {ABAPFile} from "../abap/abap_file";
import {DynproList, parseDynpros} from "./_dynpros";
 
export class FunctionGroup extends ABAPObject {
  private includes: string[] | undefined = undefined;
  private modules: FunctionModuleDefinition[] | undefined = undefined;
  private description: string | undefined = undefined;
  private dynpros: DynproList | undefined = undefined;
 
  public getType(): string {
    return "FUGR";
  }
 
  public getDescription(): string | undefined {
    if (this.description === undefined) {
      this.parseXML();
    }
 
    return this.description;
  }
 
  public setDirty() {
    super.setDirty();
    this.includes = undefined;
    this.modules = undefined;
  }
 
  public getAllowedNaming() {
    return {
      maxLength: 26,
      allowNamespace: true,
    };
  }
 
  public getDynpros(): DynproList {
    if (this.dynpros === undefined) {
      this.parseXML();
    }
    return this.dynpros || [];
  }
 
  public getSequencedFiles(): readonly ABAPFile[] {
    const main = this.getMainABAPFile();
    if (main === undefined) {
      return [];
    }
    const sequence = [main];
 
    for (const m of this.getModules()) {
      const search = "." + m.getName().toLocaleLowerCase().replace(/\//g, "#") + ".abap";
      for (const f of this.getABAPFiles()) {
        if (f.getFilename().toLocaleLowerCase().endsWith(search)) {
          if (sequence.indexOf(f) < 0) {
            sequence.push(f);
          }
          break;
        }
      }
    }
 
    return sequence;
  }
 
  public getModules(): FunctionModuleDefinition[] {
    if (this.modules === undefined) {
      this.parseXML();
    }
    if (this.modules === undefined) {
      throw new Error("getIncludes, undefined");
    }
 
    return this.modules;
  }
 
  public getIncludeFiles(): {file: ABAPFile, name: string}[] {
    const ret = [];
    const includes = this.getIncludes();
    for (const f of this.getABAPFiles()) {
      for (const i of includes) {
        const namespaced = i.startsWith("/") && i.includes("/L");
        let search = i;
        if (namespaced) {
          search = search.replace(/\//g, "#");
        }
        if ((i.startsWith("L") || namespaced) && f.getFilename().includes(search.toLowerCase())) {
          ret.push({file: f, name: i});
        }
 
        // fix for URL encoded? Uris
        if (namespaced) {
          search = i.replace(/\//g, "%23");
          if (f.getFilename().includes(search.toLowerCase())) {
            ret.push({file: f, name: i});
          }
        }
      }
    }
    return ret;
  }
 
  public getInclude(name: string): ABAPFile | undefined {
    const upper = name.toUpperCase();
    const includes = this.getIncludeFiles();
    for (const i of includes) {
      if (i.name.toUpperCase() === upper) {
        return i.file;
      }
    }
    return undefined;
  }
 
  public getMainABAPFile(): ABAPFile | undefined {
    const regex = new RegExp(/\.fugr\.(#\w+#)?sapl/, "i");
    for (const f of this.getABAPFiles()) {
      if (regex.test(f.getFilename())) {
        return f;
      }
    }
    return undefined;
  }
 
  public getIncludes(): string[] {
    if (this.includes === undefined) {
      this.parseXML();
    }
    if (this.includes === undefined) {
      throw new Error("getIncludes, undefined");
    }
 
    return this.includes;
  }
 
  public getModule(name: string): FunctionModuleDefinition | undefined {
    for (const mod of this.getModules()) {
      if (mod.getName().toUpperCase() === name.toUpperCase()) {
        return mod;
      }
    }
    return undefined;
  }
 
  public getTexts(): ITextElements {
    if (this.texts === undefined) {
      const found = this.findTextFile();
      if (found === undefined) {
        return {};
      }

      const parsed = new XMLParser({parseTagValue: false, ignoreAttributes: true, trimValues: false}).parse(found.getRaw());
      this.findTexts(parsed);
    }

    return this.texts!;
  }
 
/////////////////////////////////
 
  private parseXML() {
    this.includes = [];
    this.modules = [];
 
    const parsed = this.parseRaw2();
    if (parsed === undefined) {
      return;
    }
 
    this.description = parsed.abapGit["asx:abap"]["asx:values"]?.AREAT;
    this.dynpros = parseDynpros(parsed);
 
    // INCLUDES
    const includes = parsed.abapGit["asx:abap"]["asx:values"]?.INCLUDES;
    if (includes !== undefined) {
      for (const i of xmlToArray(includes.SOBJ_NAME)) {
        this.includes.push(i);
      }
    }
 
    // FUNCTION MODULES
    const functions = parsed.abapGit["asx:abap"]["asx:values"]?.FUNCTIONS;
    for (const module of xmlToArray(functions?.item)) {
      this.modules.push(new FunctionModuleDefinition(module));
    }
  }
 
  private findTextFile() {
    const search = this.getName() + ".fugr.sapl" + this.getName() + ".xml";
    for (const f of this.getFiles()) {
      if (f.getFilename().includes(search.toLowerCase())) {
        return f;
      }
    }
    return undefined;
  }
 
}