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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 26x 26x 26x 26x 26x 63x 63x 26x 26x 2x 2x 2x 2x 2x 26x 26x 11x 11x 11x 26x 26x 12x 12x 12x 26x 26x 1x 1x 1x 26x 26x 12x 12x 12x 26x 26x 1x 1x 26x 26x 2x 2x 2x 26x 26x 26x 26x 26x 26x 26x 26x 85x 85x 26x 26x 4x 4x 26x 26x 2x 2x 2x 2x 15x 7x 7x 15x 2x 2x 26x 26x 66x 41x 41x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 25x 66x 22x 103x 27x 27x 103x 22x 22x 22x 103x 22x 22x 66x 3x 3x 25x 25x 25x 25x 26x 26x 5x 5x 26x 26x 26x 26x 25x 25x 9x 9x 25x 26x 25x 25x 5x 5x 20x 20x 26x 26x 22x 22x 2x 2x 22x 2x 2x 22x 22x 61x 61x 61x 49x 49x 2x 49x 47x 47x 18x 18x 47x 49x 61x 61x 61x 61x 61x 2x 2x 59x 59x 61x 4x 4x 59x 59x 59x 59x 59x 59x 59x 59x 22x 26x 26x 22x 22x 22x 22x 22x 22x 22x 3x 3x 3x 3x 22x 22x 3x 3x 3x 3x 3x 3x 3x 3x 3x 22x 26x | import {ExpressionNode} from "../abap/nodes"; import {AbstractType} from "../abap/types/basic/_abstract_type"; import {CDSDetermineTypes} from "../cds/cds_determine_types"; import {CDSParser} from "../cds/cds_parser"; import {CDSAnnotate, CDSAnnotation, CDSAs, CDSAssociation, CDSDefineProjection, CDSElement, CDSName, CDSRelation, CDSSelect, CDSSource} from "../cds/expressions"; import {IRegistry} from "../_iregistry"; import {AbstractObject} from "./_abstract_object"; import {IParseResult} from "./_iobject"; export type ParsedDataDefinition = { sqlViewName: string | undefined; definitionName: string | undefined; description: string | undefined; fields: {key: boolean, name: string, prefix: string, annotations: string[]}[]; sources: {name: string, as: string | undefined}[]; associations: {name: string, as: string | undefined}[], relations: {name: string, as: string | undefined}[]; tree: ExpressionNode | undefined; }; export class DataDefinition extends AbstractObject { private parserError: boolean | undefined = undefined; private parsedData: ParsedDataDefinition | undefined = undefined; public getType(): string { return "DDLS"; } public getAllowedNaming() { return { maxLength: 40, allowNamespace: true, }; } public getSQLViewName(): string | undefined { this.parse(); return this.parsedData?.sqlViewName; } public getDefinitionName(): string | undefined { this.parse(); return this.parsedData?.definitionName; } public getDescription(): string | undefined { this.parse(); return this.parsedData?.description; } public parseType(reg: IRegistry): AbstractType { this.parse(); return new CDSDetermineTypes().parseType(reg, this.parsedData!, this.getName()); } public getParsedData() { return this.parsedData; } public listSources() { this.parse(); return this.parsedData?.sources; } public setDirty(): void { this.parsedData = undefined; this.parserError = undefined; super.setDirty(); } public findSourceFile() { return this.getFiles().find(f => f.getFilename().endsWith(".asddls") || f.getFilename().endsWith(".acds")); } public hasParserError() { return this.parserError; } public listKeys(): string[] { this.parse(); const ret: string[] = []; for (const field of this.parsedData?.fields || []) { if (field.key === true) { ret.push(field.name); } } return ret; } public parse(): IParseResult { if (this.isDirty() === false) { return {updated: false, runtime: 0}; } const start = Date.now(); this.parsedData = { sqlViewName: undefined, definitionName: undefined, description: this.findDescription(), fields: [], sources: [], relations: [], associations: [], tree: undefined, }; this.findSQLViewName(); this.parsedData.tree = new CDSParser().parse(this.findSourceFile()); if (this.parsedData.tree) { for (const c of this.parsedData.tree?.getChildren() || []) { if (c.get() instanceof CDSAnnotation) { continue; } if (c instanceof ExpressionNode) { this.parsedData.definitionName = c.findFirstExpression(CDSName)?.concatTokens().replace(/ /g, ""); break; } } this.findSourcesAndRelations(this.parsedData.tree); this.findFieldNames(this.parsedData.tree); } else { this.parserError = true; } this.dirty = false; return {updated: true, runtime: Date.now() - start}; } public getTree() { return this.parsedData?.tree; } ////////// private findSQLViewName(): void { const match = this.findSourceFile()?.getRaw().match(/@AbapCatalog\.sqlViewName: '([\w/]+)'/); if (match) { this.parsedData!.sqlViewName = match[1].toUpperCase(); } } private findDescription(): string | undefined { const match = this.findSourceFile()?.getRaw().match(/@EndUserText\.label: '([\w,.:-=#%&() ]+)'/); if (match) { return match[1]; } return undefined; } private findFieldNames(tree: ExpressionNode) { let expr = tree.findFirstExpression(CDSSelect); if (expr === undefined) { expr = tree.findFirstExpression(CDSAnnotate); } if (expr === undefined) { expr = tree.findFirstExpression(CDSDefineProjection); } for (const e of expr?.findDirectExpressions(CDSElement) || []) { let prefix = ""; let found = e.findDirectExpression(CDSAs)?.findDirectExpression(CDSName); if (found === undefined) { const list = e.findAllExpressions(CDSName); if (e.concatTokens().toUpperCase().includes(" REDIRECTED TO ")) { found = list[0]; } else { found = list[list.length - 1]; if (list.length > 1) { prefix = list[0].concatTokens(); } } } if (found === undefined) { continue; } const name = found?.concatTokens(); if (this.parsedData?.associations.some(a => a.name.toUpperCase() === name.toUpperCase() || a.as?.toUpperCase() === name.toUpperCase())) { continue; } const annotations: string[] = []; for (const a of e.findDirectExpressions(CDSAnnotation)) { annotations.push(a.concatTokens()); } this.parsedData!.fields.push({ name: name, annotations: annotations, prefix: prefix, key: e.findDirectTokenByText("KEY") !== undefined, }); } } private findSourcesAndRelations(tree: ExpressionNode) { for (const e of tree.findAllExpressions(CDSSource)) { const name = e.getFirstChild()?.concatTokens().toUpperCase().replace(/ /g, "") || "ERROR"; const as = e.findDirectExpression(CDSAs)?.findDirectExpression(CDSName)?.concatTokens().toUpperCase(); this.parsedData!.sources.push({name, as}); } for (const e of tree.findAllExpressions(CDSRelation)) { const name = e.getFirstToken().getStr(); const as = e.findDirectExpression(CDSAs)?.findDirectExpression(CDSName)?.getFirstToken().getStr(); this.parsedData!.relations.push({name, as}); } for (const e of tree.findAllExpressions(CDSAssociation)) { const j = e.findDirectExpression(CDSRelation); if (j === undefined) { continue; } const name = j.getFirstToken().getStr(); const as = j.findDirectExpression(CDSAs)?.findDirectExpression(CDSName)?.getFirstToken().getStr(); this.parsedData!.associations.push({ name: name || "ERROR", as: as, }); } } } |