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 107x 107x 107x 107x 107x 107x 107x 107x 1x 1x 94x 94x 94x 94x 94x 94x 107x 8x 8x 8x 93x 107x 88x 88x 85x 85x 85x 107x 107x 107x 7x 7x 7x 2x 2x 2x 2x 2x 7x 83x 83x 107x 107x 8x 8x 8x 8x 107x 7x 7x 7x 7x 83x 107x 48x 48x 78x 107x 7x 7x 107x 1x 1x 94x 94x 33x 33x 18x 18x 33x 94x 94x 94x 50x 22x 22x 22x 50x 94x 94x 94x 3x 3x 3x 3x 3x 6x 6x 6x 6x 6x 2x 2x 2x 2x 2x 2x 2x 6x 3x 94x 1x 1x 94x 4x 4x 90x 90x 94x 74x 74x 74x 16x 16x 94x 94x 16x 16x 16x 12x 12x 4x 16x 16x 16x 1x 1x 18x 1x 1x 17x 18x 16x 16x 16x 1x 18x 1x 18x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 95x 95x 95x 95x 95x 17x 17x 95x 95x 44x 44x 44x 44x 44x 95x 95x 72x 72x 95x 95x 95x 1x | import * as Expressions from "../../2_statements/expressions"; import {ExpressionNode} from "../../nodes"; import {CurrentScope} from "../_current_scope"; import {IStructureComponent, StructureType, TableKeyType, TableType, UnknownType, VoidType} from "../../types/basic"; import {InlineData} from "./inline_data"; import {Target} from "./target"; import {SQLFrom} from "./sql_from"; import {SQLForAllEntries} from "./sql_for_all_entries"; import {ScopeType} from "../_scope_type"; import {SQLSource} from "./sql_source"; import {SQLCompare} from "./sql_compare"; import {DatabaseTableSource} from "./database_table"; import {AbstractType} from "../../types/basic/_abstract_type"; type FieldList = {code: string, as: string, expression: ExpressionNode}[]; const isSimple = /^\w+$/; export class Select { public runSyntax(node: ExpressionNode, scope: CurrentScope, filename: string, skipImplicitInto = false): void { const token = node.getFirstToken(); const from = node.findDirectExpression(Expressions.SQLFrom); const dbSources = from ? new SQLFrom().runSyntax(from, scope, filename) : []; const fields = this.findFields(node); if (fields.length === 0 && node.findDirectExpression(Expressions.SQLFieldListLoop) === undefined) { throw new Error(`fields missing`); } this.checkFields(fields, dbSources, scope); this.handleInto(node, scope, filename, fields, dbSources); const fae = node.findDirectExpression(Expressions.SQLForAllEntries); if (fae) { scope.push(ScopeType.OpenSQL, "SELECT", token.getStart(), filename); new SQLForAllEntries().runSyntax(fae, scope, filename); } for (const t of node.findAllExpressions(Expressions.Target)) { new Target().runSyntax(t, scope, filename); } // check implicit into, the target field is implict equal to the table name if (skipImplicitInto === false && node.findDirectExpression(Expressions.SQLIntoTable) === undefined && node.findDirectExpression(Expressions.SQLIntoList) === undefined && node.findDirectExpression(Expressions.SQLIntoStructure) === undefined) { const fields = node.findFirstExpression(Expressions.SQLAggregation)?.concatTokens(); const c = new RegExp(/^count\(\s*\*\s*\)$/, "i"); if (fields === undefined || c.test(fields) === false) { const name = from?.findDirectExpression(Expressions.SQLFromSource)?.concatTokens(); if (name && scope.findVariable(name) === undefined) { throw new Error(`Target variable ${name} not found in scope`); } } } // OFFSET for (const s of node.findDirectExpressions(Expressions.SQLSource)) { new SQLSource().runSyntax(s, scope, filename); } for (const up of node.findDirectExpressions(Expressions.SQLUpTo)) { for (const s of up.findDirectExpressions(Expressions.SQLSource)) { new SQLSource().runSyntax(s, scope, filename); } } for (const fae of node.findDirectExpressions(Expressions.SQLForAllEntries)) { for (const s of fae.findDirectExpressions(Expressions.SQLSource)) { new SQLSource().runSyntax(s, scope, filename); } } for (const s of node.findAllExpressions(Expressions.SQLCompare)) { new SQLCompare().runSyntax(s, scope, filename, dbSources); } if (scope.getType() === ScopeType.OpenSQL) { scope.pop(node.getLastToken().getEnd()); } } private handleInto(node: ExpressionNode, scope: CurrentScope, filename: string, fields: FieldList, dbSources: DatabaseTableSource[]) { const intoTable = node.findDirectExpression(Expressions.SQLIntoTable); if (intoTable) { const inline = intoTable.findFirstExpression(Expressions.InlineData); if (inline) { new InlineData().runSyntax(inline, scope, filename, this.buildTableType(fields, dbSources, scope)); } } const intoStructure = node.findDirectExpression(Expressions.SQLIntoStructure); if (intoStructure) { for (const inline of intoStructure.findAllExpressions(Expressions.InlineData)) { // todo, for now these are voided new InlineData().runSyntax(inline, scope, filename, new VoidType("SELECT_todo")); } } const intoList = node.findDirectExpression(Expressions.SQLIntoList); if (intoList) { const isDynamic = fields.length === 1 && fields[0].expression.findDirectExpression(Expressions.Dynamic) !== undefined; const targets = intoList.findDirectExpressions(Expressions.SQLTarget); if (targets.length !== fields.length && isDynamic !== true) { throw new Error(`number of fields selected vs list does not match`); } for (let i = 0; i < targets.length; i++) { const target = targets[i]; const field = fields[i]; const inline = target.findFirstExpression(Expressions.InlineData); if (inline) { if (isDynamic) { throw new Error(`dynamic field list, inlining not possible`); } if (isSimple.test(field.code) && dbSources.length === 1 && dbSources[0] !== undefined) { const dbType = dbSources[0].parseType(scope.getRegistry()); let type: AbstractType | undefined = new VoidType("SELECT_todo"); if (dbType instanceof StructureType) { type = dbType.getComponentByName(field.code); if (type === undefined) { throw new Error(`handleInto, internal error, should be checked earlier`); } } new InlineData().runSyntax(inline, scope, filename, type); } else { new InlineData().runSyntax(inline, scope, filename, new VoidType("SELECT_todo")); } } } } } private checkFields(fields: FieldList, dbSources: DatabaseTableSource[], scope: CurrentScope) { if (dbSources.length > 1) { return; } const first = dbSources[0]; if (first === undefined) { // then its voided return; } const type = first.parseType(scope.getRegistry()); if (type instanceof VoidType || type instanceof UnknownType) { return; } if (!(type instanceof StructureType)) { throw new Error("checkFields, expected structure, " + type.constructor.name); } for (const field of fields) { if (field.code === "*") { continue; } if (isSimple.test(field.code) && type.getComponentByName(field.code) === undefined) { throw new Error(`checkFields, field ${field.code} not found`); } } } private buildTableType(fields: FieldList, dbSources: DatabaseTableSource[], scope: CurrentScope) { if (dbSources.length !== 1) { return new VoidType("SELECT_todo"); } if (dbSources[0] === undefined) { // then its a voided table return new VoidType("SELECT_todo"); } const dbType = dbSources[0].parseType(scope.getRegistry()); if (!(dbType instanceof StructureType)) { return new VoidType("SELECT_todo"); } if (fields.length === 1 && fields[0].code === "*") { return new TableType(dbType, {withHeader: false, keyType: TableKeyType.default}, undefined); } const allFieldsSimple = fields.every(f => isSimple.test(f.code)); if (allFieldsSimple === true) { const components: IStructureComponent[] = []; for (const field of fields) { const type = dbType.getComponentByName(field.code); if (type === undefined) { return new VoidType("SELECT_todo"); } components.push({name: field.code, type}); } return new TableType(new StructureType(components), {withHeader: false, keyType: TableKeyType.default}, undefined); } return new VoidType("SELECT_todo"); } private findFields(node: ExpressionNode): FieldList { let expr: ExpressionNode | undefined = undefined; const ret = []; expr = node.findFirstExpression(Expressions.SQLFieldList); if (expr === undefined) { expr = node.findDirectExpression(Expressions.SQLFieldListLoop); } for (const field of expr?.findDirectExpressionsMulti([Expressions.SQLField, Expressions.SQLFieldName]) || []) { let code = field.concatTokens().toUpperCase(); const as = field.findDirectExpression(Expressions.SQLAsName)?.concatTokens() || ""; if (as !== "") { code = code.replace(" AS " + as, ""); } ret.push({code, as, expression: field}); } if (ret.length === 0 && expr) { ret.push({code: expr.concatTokens(), as: "", expression: expr}); } return ret; } } |