import type { AnalysisContext } from '@hey-api/codegen-core'; import { py } from '../../ts-python'; import type { MaybePyDsl } from '../base'; import { PyDsl } from '../base'; import type { DoExpr } from '../mixins/do'; import { BlockPyDsl } from './block'; const Mixed = PyDsl; export class ForPyDsl extends Mixed { readonly '~dsl' = 'ForPyDsl'; protected _body?: Array; protected _else?: Array; protected _iterable?: MaybePyDsl; protected _target?: MaybePyDsl; constructor( target: MaybePyDsl, iterable: MaybePyDsl, ...body: Array ) { super(); this._target = target; this._iterable = iterable; this._body = body; } override analyze(ctx: AnalysisContext): void { super.analyze(ctx); if (this._target) ctx.analyze(this._target); if (this._iterable) ctx.analyze(this._iterable); if (this._body) { ctx.pushScope(); try { for (const stmt of this._body) ctx.analyze(stmt); } finally { ctx.popScope(); } } if (this._else) { ctx.pushScope(); try { for (const stmt of this._else) ctx.analyze(stmt); } finally { ctx.popScope(); } } } /** Returns true when all required builder calls are present. */ get isValid(): boolean { return this.missingRequiredCalls().length === 0; } body(...items: Array): this { this._body = items; return this; } else(...items: Array): this { this._else = items; return this; } override toAst(): py.ForStatement { this.$validate(); const body = new BlockPyDsl(...this._body!).$do(); const elseBlock = this._else ? new BlockPyDsl(...this._else).$do() : undefined; return py.factory.createForStatement( this.$node(this._target!) as py.Expression, this.$node(this._iterable!) as py.Expression, [...body], elseBlock ? [...elseBlock] : undefined, ); } $validate(): asserts this is this & { _body: Array; _iterable: MaybePyDsl; _target: MaybePyDsl; } { const missing = this.missingRequiredCalls(); if (missing.length === 0) return; throw new Error(`For statement missing ${missing.join(' and ')}`); } private missingRequiredCalls(): ReadonlyArray { const missing: Array = []; if (!this._target) missing.push('target'); if (!this._iterable) missing.push('iterable'); if (!this._body || this._body.length === 0) missing.push('body'); return missing; } }