@telorun/kernel 0.11.1 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/application-env.d.ts +24 -0
- package/dist/application-env.d.ts.map +1 -0
- package/dist/application-env.js +156 -0
- package/dist/application-env.js.map +1 -0
- package/dist/controller-loaders/npm-loader.d.ts +1 -6
- package/dist/controller-loaders/npm-loader.d.ts.map +1 -1
- package/dist/controller-loaders/npm-loader.js +67 -79
- package/dist/controller-loaders/npm-loader.js.map +1 -1
- package/dist/controllers/resource-definition/resource-definition-controller.d.ts +1 -0
- package/dist/controllers/resource-definition/resource-definition-controller.d.ts.map +1 -1
- package/dist/controllers/resource-definition/resource-definition-controller.js +3 -0
- package/dist/controllers/resource-definition/resource-definition-controller.js.map +1 -1
- package/dist/controllers/resource-definition/resource-template-controller.d.ts +6 -1
- package/dist/controllers/resource-definition/resource-template-controller.d.ts.map +1 -1
- package/dist/controllers/resource-definition/resource-template-controller.js +79 -13
- package/dist/controllers/resource-definition/resource-template-controller.js.map +1 -1
- package/dist/kernel.d.ts.map +1 -1
- package/dist/kernel.js +19 -3
- package/dist/kernel.js.map +1 -1
- package/package.json +6 -5
- package/src/application-env.ts +216 -0
- package/src/controller-loaders/npm-loader.ts +77 -78
- package/src/controllers/resource-definition/resource-definition-controller.ts +6 -0
- package/src/controllers/resource-definition/resource-template-controller.ts +110 -16
- package/src/kernel.ts +24 -3
- package/dist/generated/runtime-deps.json +0 -6
|
@@ -150,7 +150,13 @@ export class NpmControllerLoader {
|
|
|
150
150
|
|
|
151
151
|
const installRoot = await this.ensureInstallRoot();
|
|
152
152
|
const resolved = await resolveInstallSpec(parsed, packageName, baseUri);
|
|
153
|
-
const source = await this.installPackage(
|
|
153
|
+
const source = await this.installPackage(
|
|
154
|
+
installRoot,
|
|
155
|
+
packageName,
|
|
156
|
+
resolved.spec,
|
|
157
|
+
resolved.kind,
|
|
158
|
+
parsed.version ?? null,
|
|
159
|
+
);
|
|
154
160
|
const instance = await loadFromInstall(installRoot, packageName, parsed.subpath ?? null, purl);
|
|
155
161
|
return { instance, source };
|
|
156
162
|
}
|
|
@@ -195,25 +201,22 @@ export class NpmControllerLoader {
|
|
|
195
201
|
const entryDir = path.dirname(path.resolve(entryPath));
|
|
196
202
|
const installRoot = path.join(entryDir, ".telo", "npm");
|
|
197
203
|
|
|
198
|
-
// Build the install-root package.json: kernel-runtime deps as `file:` refs
|
|
199
|
-
//
|
|
200
|
-
//
|
|
201
|
-
//
|
|
202
|
-
//
|
|
203
|
-
//
|
|
204
|
-
const runtimeDeps = await loadRuntimeDeps();
|
|
204
|
+
// Build the install-root package.json: kernel-runtime deps as `file:` refs
|
|
205
|
+
// pointing at the kernel-side realpath. Modules declare these names as
|
|
206
|
+
// `peerDependencies`, so npm/pnpm resolve each controller's `import` to the
|
|
207
|
+
// single copy provided here — the realm-collapse mechanism that gives
|
|
208
|
+
// class-identity-sensitive types (today: `Stream`) one constructor across
|
|
209
|
+
// the kernel/controller boundary.
|
|
205
210
|
const dependencies: Record<string, string> = {};
|
|
206
|
-
const
|
|
207
|
-
for (const name of runtimeDeps) {
|
|
211
|
+
for (const name of REALM_COLLAPSE_NAMES) {
|
|
208
212
|
const resolvedPkgRoot = await resolveKernelPackageRoot(name);
|
|
209
213
|
if (!resolvedPkgRoot) {
|
|
210
214
|
// A kernel runtime dep that can't be resolved at boot is unusual but
|
|
211
|
-
// not fatal — the realm-collapse story degrades to "rely on
|
|
212
|
-
//
|
|
215
|
+
// not fatal — the realm-collapse story degrades to "rely on whatever
|
|
216
|
+
// the package manager picks" for that name. Don't crash the loader.
|
|
213
217
|
continue;
|
|
214
218
|
}
|
|
215
219
|
dependencies[name] = `file:${resolvedPkgRoot}`;
|
|
216
|
-
overrides[name] = `$${name}`;
|
|
217
220
|
}
|
|
218
221
|
|
|
219
222
|
const packageJson = {
|
|
@@ -221,8 +224,6 @@ export class NpmControllerLoader {
|
|
|
221
224
|
private: true,
|
|
222
225
|
version: "0.0.0",
|
|
223
226
|
dependencies,
|
|
224
|
-
overrides,
|
|
225
|
-
pnpm: { overrides },
|
|
226
227
|
};
|
|
227
228
|
const packageJsonPath = path.join(installRoot, "package.json");
|
|
228
229
|
const stateFile = path.join(installRoot, ".telo-state.json");
|
|
@@ -299,6 +300,7 @@ export class NpmControllerLoader {
|
|
|
299
300
|
packageName: string,
|
|
300
301
|
spec: string,
|
|
301
302
|
kind: SpecKind,
|
|
303
|
+
requestedVersion: string | null,
|
|
302
304
|
): Promise<NpmResolveSource> {
|
|
303
305
|
const cacheKey = `${packageName}@${spec}`;
|
|
304
306
|
if (this.installedSpecs.has(cacheKey)) return "cache";
|
|
@@ -309,22 +311,37 @@ export class NpmControllerLoader {
|
|
|
309
311
|
return "cache";
|
|
310
312
|
}
|
|
311
313
|
|
|
312
|
-
// Lock-free fast path: consult the in-process snapshot of the install
|
|
313
|
-
// root's `dependencies` map (seeded by `materializeInstallRoot`). If the
|
|
314
|
-
// spec matches what's already wired in and the package directory exists,
|
|
315
|
-
// there's nothing to do — no lock, no fork, no per-load file read. This
|
|
316
|
-
// is the dominant case for warm test suites: every Kernel touches the
|
|
317
|
-
// same controllers and a fresh-on-disk read per (Kernel × controller)
|
|
318
|
-
// dominates wall time even when the actual installs are already done.
|
|
319
|
-
//
|
|
320
|
-
// Normalize specs before comparing because npm rewrites absolute `file:`
|
|
321
|
-
// deps to relative paths inside the install root's `package.json`. The
|
|
322
|
-
// loader passes absolute paths (resolved against the declaring library's
|
|
323
|
-
// baseUri); the on-disk record is `file:../../foo`. Without normalization
|
|
324
|
-
// every fast-path read is a string-mismatch and the loader would fall
|
|
325
|
-
// through to a real `npm install` per controller per Kernel — turning a
|
|
326
|
-
// 1ms hit into a 150–200ms one.
|
|
327
314
|
const targetPath = path.join(installRoot, "node_modules", ...packageName.split("/"));
|
|
315
|
+
|
|
316
|
+
// Registry fast path: compare against the installed package's own
|
|
317
|
+
// `package.json` version field. `rootDeps[packageName]` can't be used
|
|
318
|
+
// here because npm rewrites registry specs on `--save` — we pass
|
|
319
|
+
// `@scope/pkg@0.3.4`, npm writes `^0.3.4` — so a string comparison
|
|
320
|
+
// never matches and every fresh `NpmControllerLoader` (one per
|
|
321
|
+
// `Telo.Definition.init`) would fall through to a no-op but ~200ms
|
|
322
|
+
// `npm install`. Reading the installed package.json sidesteps that
|
|
323
|
+
// entirely: if the requested PURL version equals what's on disk, we
|
|
324
|
+
// already have the right thing.
|
|
325
|
+
//
|
|
326
|
+
// Ranges (`^1.0.0`, `~2.3.0`) fall through to a real `npm install` —
|
|
327
|
+
// they're rare in PURLs (which typically pin) and a proper range check
|
|
328
|
+
// would need a semver dep here.
|
|
329
|
+
if (kind === "registry") {
|
|
330
|
+
const installedVersion = await readInstalledVersion(targetPath);
|
|
331
|
+
if (
|
|
332
|
+
installedVersion !== null &&
|
|
333
|
+
(requestedVersion === null || requestedVersion === installedVersion)
|
|
334
|
+
) {
|
|
335
|
+
this.installedSpecs.add(cacheKey);
|
|
336
|
+
return "cache";
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
// Local (`file:`) spec fast path: consult the in-process snapshot of the
|
|
341
|
+
// install root's `dependencies` map (seeded by `materializeInstallRoot`).
|
|
342
|
+
// Normalize because npm rewrites absolute `file:` deps to relative paths
|
|
343
|
+
// inside the install root's `package.json` — the loader passes the
|
|
344
|
+
// absolute path, the on-disk record is `file:../../foo`.
|
|
328
345
|
const cachedSpec = this.rootDeps[packageName];
|
|
329
346
|
if (
|
|
330
347
|
cachedSpec !== undefined &&
|
|
@@ -383,54 +400,18 @@ export class NpmControllerLoader {
|
|
|
383
400
|
}
|
|
384
401
|
|
|
385
402
|
/**
|
|
386
|
-
*
|
|
387
|
-
*
|
|
388
|
-
*
|
|
389
|
-
*
|
|
390
|
-
*
|
|
391
|
-
*
|
|
392
|
-
*
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
// Walk up from this file's location to the kernel-package root (the dir
|
|
397
|
-
// that contains package.json). In dev: `kernel/nodejs/`. In published:
|
|
398
|
-
// the installed package root inside `node_modules/@telorun/kernel/`.
|
|
399
|
-
// Walk-until-root rather than a fixed depth — the directory tree depth
|
|
400
|
-
// depends on whether we're in a workspace or installed tree.
|
|
401
|
-
const pkgDir = await walkUpToPackageRoot(path.dirname(here));
|
|
402
|
-
if (!pkgDir) return [];
|
|
403
|
-
|
|
404
|
-
const generated = path.join(pkgDir, "dist", "generated", "runtime-deps.json");
|
|
405
|
-
if (!(await pathExists(generated))) return [];
|
|
406
|
-
// The file is generated by `scripts/generate-runtime-deps.mjs`; if it
|
|
407
|
-
// exists but is malformed, that's a kernel-build bug. Don't swallow —
|
|
408
|
-
// surface so the cause is debuggable. Realm collapse is the whole point
|
|
409
|
-
// of this code path; quietly degrading to "no realm collapse" would
|
|
410
|
-
// silently re-introduce the very bug the file fixes.
|
|
411
|
-
const data = JSON.parse(await fs.readFile(generated, "utf8"));
|
|
412
|
-
if (!Array.isArray(data?.names)) {
|
|
413
|
-
throw new Error(
|
|
414
|
-
`[telo] ${generated} is malformed: expected { names: string[] } at top level. ` +
|
|
415
|
-
`Re-run \`node scripts/generate-runtime-deps.mjs <pkg-dir>\` to regenerate.`,
|
|
416
|
-
);
|
|
417
|
-
}
|
|
418
|
-
return data.names as string[];
|
|
419
|
-
}
|
|
420
|
-
|
|
421
|
-
/**
|
|
422
|
-
* Walk up from `from` until the directory contains a `package.json`.
|
|
423
|
-
* Returns null at filesystem root if none found.
|
|
403
|
+
* Names of packages whose realpath must be shared between the kernel and every
|
|
404
|
+
* loaded controller. Each name here becomes a `file:` dep in the install-root
|
|
405
|
+
* `package.json`, pinned at the kernel's own resolution; controllers declare
|
|
406
|
+
* these names as `peerDependencies` so npm/pnpm resolves them to that single
|
|
407
|
+
* copy instead of nesting their own.
|
|
408
|
+
*
|
|
409
|
+
* Add a name here if you ship another shared runtime symbol whose `instanceof`
|
|
410
|
+
* or constructor identity matters across module boundaries. Today the only
|
|
411
|
+
* such name is `@telorun/sdk` (carries the `Stream` class registered with
|
|
412
|
+
* `@marcbachmann/cel-js`).
|
|
424
413
|
*/
|
|
425
|
-
|
|
426
|
-
let dir = from;
|
|
427
|
-
while (true) {
|
|
428
|
-
if (await pathExists(path.join(dir, "package.json"))) return dir;
|
|
429
|
-
const parent = path.dirname(dir);
|
|
430
|
-
if (parent === dir) return null;
|
|
431
|
-
dir = parent;
|
|
432
|
-
}
|
|
433
|
-
}
|
|
414
|
+
const REALM_COLLAPSE_NAMES: ReadonlyArray<string> = ["@telorun/sdk"];
|
|
434
415
|
|
|
435
416
|
/**
|
|
436
417
|
* Resolve a kernel-runtime dep name to the realpath of its package directory.
|
|
@@ -618,6 +599,24 @@ async function readJsonField(filePath: string, field: string): Promise<unknown>
|
|
|
618
599
|
}
|
|
619
600
|
}
|
|
620
601
|
|
|
602
|
+
/**
|
|
603
|
+
* Read the `version` field from `<packageRoot>/package.json`, or null if the
|
|
604
|
+
* file is missing/unreadable/malformed or carries a non-string version. Used
|
|
605
|
+
* by the registry fast path to decide whether an existing install already
|
|
606
|
+
* satisfies the requested PURL version — the install-root's own
|
|
607
|
+
* `dependencies` map can't answer that because npm rewrites registry specs
|
|
608
|
+
* on `--save`.
|
|
609
|
+
*/
|
|
610
|
+
async function readInstalledVersion(packageRoot: string): Promise<string | null> {
|
|
611
|
+
try {
|
|
612
|
+
const text = await fs.readFile(path.join(packageRoot, "package.json"), "utf8");
|
|
613
|
+
const pkg = JSON.parse(text);
|
|
614
|
+
return typeof pkg?.version === "string" ? pkg.version : null;
|
|
615
|
+
} catch {
|
|
616
|
+
return null;
|
|
617
|
+
}
|
|
618
|
+
}
|
|
619
|
+
|
|
621
620
|
/**
|
|
622
621
|
* Read the install root's `dependencies[<packageName>]` value, or undefined
|
|
623
622
|
* if package.json is missing/unreadable or the dep isn't listed. Used by the
|
|
@@ -914,7 +913,7 @@ export const __testing__ = {
|
|
|
914
913
|
resolvePackageExportTarget,
|
|
915
914
|
resolveExportTargetValue,
|
|
916
915
|
tryResolveFile,
|
|
917
|
-
walkUpToPackageRoot,
|
|
918
916
|
EXPORTS_MAX_DEPTH,
|
|
919
917
|
DEFAULT_RESOLVER_CONDITIONS,
|
|
918
|
+
REALM_COLLAPSE_NAMES,
|
|
920
919
|
};
|
|
@@ -18,6 +18,7 @@ type ResourceDefinitionResource = RuntimeResource & {
|
|
|
18
18
|
schema: Record<string, any>;
|
|
19
19
|
capability?: string;
|
|
20
20
|
controllers?: Array<string>;
|
|
21
|
+
provide?: unknown;
|
|
21
22
|
};
|
|
22
23
|
|
|
23
24
|
/**
|
|
@@ -31,6 +32,11 @@ class ResourceDefinition implements ResourceInstance {
|
|
|
31
32
|
|
|
32
33
|
async init(ctx: ResourceContext) {
|
|
33
34
|
if (!this.resource.controllers?.length) {
|
|
35
|
+
if (this.resource.capability === "Telo.Provider" && this.resource.provide == null) {
|
|
36
|
+
throw new Error(
|
|
37
|
+
`Telo.Definition '${this.resource.metadata.name}': 'capability: Telo.Provider' requires either 'controllers:' (TS-backed) or 'provide:' (template-backed).`,
|
|
38
|
+
);
|
|
39
|
+
}
|
|
34
40
|
const controllerInstance = createTemplateController(this.resource as any);
|
|
35
41
|
ctx.registerDefinition(this.resource);
|
|
36
42
|
await ctx.registerController(
|
|
@@ -1,11 +1,32 @@
|
|
|
1
1
|
import type { ControllerInstance, ResourceContext, ResourceInstance } from "@telorun/sdk";
|
|
2
2
|
import { isCompiledValue } from "@telorun/sdk";
|
|
3
3
|
|
|
4
|
+
/** Reports the resources: entries available to dispatch against, by expanded
|
|
5
|
+
* name and kind. Used in error messages to guide the developer back to the
|
|
6
|
+
* template's `resources:` array when a dispatch target doesn't match. */
|
|
7
|
+
function describeAvailableTargets(
|
|
8
|
+
ctx: ResourceContext,
|
|
9
|
+
resources: any[] | undefined,
|
|
10
|
+
self: Record<string, unknown>,
|
|
11
|
+
): string {
|
|
12
|
+
if (!resources || resources.length === 0) return "<none>";
|
|
13
|
+
return resources
|
|
14
|
+
.map((r) => {
|
|
15
|
+
const expanded = ctx.moduleContext.expandWith(r?.metadata?.name ?? "", { self }) as string;
|
|
16
|
+
const kind = typeof r?.kind === "string" ? r.kind : "<unknown-kind>";
|
|
17
|
+
return `'${expanded || "<unnamed>"}' (${kind})`;
|
|
18
|
+
})
|
|
19
|
+
.join(", ");
|
|
20
|
+
}
|
|
21
|
+
|
|
4
22
|
export function createTemplateController(definition: {
|
|
5
23
|
schema: Record<string, any>;
|
|
6
24
|
resources?: any[];
|
|
7
|
-
invoke?: string | { kind?: string; name: string
|
|
25
|
+
invoke?: string | { kind?: string; name: string };
|
|
26
|
+
inputs?: Record<string, any>;
|
|
8
27
|
run?: string;
|
|
28
|
+
provide?: { kind: string; name: string };
|
|
29
|
+
result?: Record<string, any>;
|
|
9
30
|
}): ControllerInstance {
|
|
10
31
|
return {
|
|
11
32
|
schema: definition.schema ?? { type: "object", additionalProperties: true },
|
|
@@ -13,13 +34,16 @@ export function createTemplateController(definition: {
|
|
|
13
34
|
create: async (resource: any, ctx: ResourceContext): Promise<ResourceInstance> => {
|
|
14
35
|
const self = { ...resource, name: resource.metadata.name };
|
|
15
36
|
|
|
16
|
-
//
|
|
17
|
-
//
|
|
37
|
+
// `invoke` describes the dispatch target: a string name template (legacy
|
|
38
|
+
// shorthand) or an object `{ kind?, name }` for explicit kind-typed
|
|
39
|
+
// dispatch. `inputs:` lives as a sibling on the definition (same shape
|
|
40
|
+
// as Run.Sequence steps) — the values passed to the dispatch target's
|
|
41
|
+
// invoke() after CEL expansion.
|
|
18
42
|
const objectInvoke =
|
|
19
43
|
definition.invoke !== null &&
|
|
20
44
|
typeof definition.invoke === "object" &&
|
|
21
45
|
!isCompiledValue(definition.invoke)
|
|
22
|
-
? (definition.invoke as { kind?: string; name: string
|
|
46
|
+
? (definition.invoke as { kind?: string; name: string })
|
|
23
47
|
: null;
|
|
24
48
|
const invokeNameTemplate = objectInvoke ? objectInvoke.name : (definition.invoke ?? null);
|
|
25
49
|
const invokeTarget = invokeNameTemplate
|
|
@@ -28,6 +52,9 @@ export function createTemplateController(definition: {
|
|
|
28
52
|
const runTarget = definition.run
|
|
29
53
|
? (ctx.moduleContext.expandWith(definition.run, { self }) as string)
|
|
30
54
|
: null;
|
|
55
|
+
const provideTarget = definition.provide?.name
|
|
56
|
+
? (ctx.moduleContext.expandWith(definition.provide.name, { self }) as string)
|
|
57
|
+
: null;
|
|
31
58
|
|
|
32
59
|
const persistentManifests: any[] = [];
|
|
33
60
|
let ephemeralTemplate: any = null;
|
|
@@ -36,7 +63,10 @@ export function createTemplateController(definition: {
|
|
|
36
63
|
const expandedName = ctx.moduleContext.expandWith(template.metadata?.name ?? "", {
|
|
37
64
|
self,
|
|
38
65
|
}) as string;
|
|
39
|
-
const isTarget =
|
|
66
|
+
const isTarget =
|
|
67
|
+
expandedName === invokeTarget ||
|
|
68
|
+
expandedName === runTarget ||
|
|
69
|
+
expandedName === provideTarget;
|
|
40
70
|
if (isTarget) {
|
|
41
71
|
ephemeralTemplate = template;
|
|
42
72
|
} else {
|
|
@@ -80,7 +110,8 @@ export function createTemplateController(definition: {
|
|
|
80
110
|
invoke: async (inputs: any) => {
|
|
81
111
|
if (!ephemeralTemplate) {
|
|
82
112
|
throw new Error(
|
|
83
|
-
`Template '${resource.metadata.name}':
|
|
113
|
+
`Template '${resource.metadata.name}': 'invoke:' targets '${invokeTarget}' ` +
|
|
114
|
+
`but no entry in 'resources:' has that metadata.name. Available: ${describeAvailableTargets(ctx, definition.resources, self)}.`,
|
|
84
115
|
);
|
|
85
116
|
}
|
|
86
117
|
const extraContext = { self, inputs };
|
|
@@ -91,18 +122,32 @@ export function createTemplateController(definition: {
|
|
|
91
122
|
return withEphemeral(expanded, async (name) => {
|
|
92
123
|
const entry = ctx.moduleContext.resourceInstances.get(name);
|
|
93
124
|
if (!entry?.instance?.invoke) {
|
|
94
|
-
|
|
125
|
+
const targetKind = (entry?.resource?.kind ?? expanded?.kind ?? "<unknown-kind>") as string;
|
|
126
|
+
const targetDef = ctx.moduleContext.getDefinition?.(targetKind);
|
|
127
|
+
const actualCap = typeof targetDef?.capability === "string" ? targetDef.capability : "<unknown>";
|
|
128
|
+
throw new Error(
|
|
129
|
+
`Template '${resource.metadata.name}': 'invoke:' target '${targetKind}/${invokeTarget}' ` +
|
|
130
|
+
`has capability '${actualCap}', not Telo.Invocable. Update 'invoke:' to a Telo.Invocable kind, or change the target's kind in 'resources:'.`,
|
|
131
|
+
);
|
|
95
132
|
}
|
|
96
|
-
//
|
|
97
|
-
//
|
|
98
|
-
//
|
|
99
|
-
|
|
133
|
+
// Top-level `inputs:` (sibling of `invoke:`) carries the values passed
|
|
134
|
+
// to the dispatch target's invoke(). When absent, fall back to the
|
|
135
|
+
// expanded resource entry's own `inputs` field (legacy string-form
|
|
136
|
+
// shape where the inputs live on the resource declaration), then
|
|
137
|
+
// finally to the caller's `inputs` arg.
|
|
138
|
+
const invokeInputs = definition.inputs != null
|
|
100
139
|
? ctx.moduleContext.expandWith(
|
|
101
|
-
ctx.moduleContext.expandWith(
|
|
140
|
+
ctx.moduleContext.expandWith(definition.inputs, extraContext),
|
|
102
141
|
extraContext,
|
|
103
142
|
)
|
|
104
143
|
: expanded.inputs ?? inputs;
|
|
105
|
-
|
|
144
|
+
const raw = await entry.instance.invoke(invokeInputs);
|
|
145
|
+
if (definition.result == null) return raw;
|
|
146
|
+
const resultContext = { self, result: raw };
|
|
147
|
+
return ctx.moduleContext.expandWith(
|
|
148
|
+
ctx.moduleContext.expandWith(definition.result, resultContext),
|
|
149
|
+
resultContext,
|
|
150
|
+
);
|
|
106
151
|
});
|
|
107
152
|
},
|
|
108
153
|
}),
|
|
@@ -111,24 +156,73 @@ export function createTemplateController(definition: {
|
|
|
111
156
|
run: async () => {
|
|
112
157
|
if (!ephemeralTemplate) {
|
|
113
158
|
throw new Error(
|
|
114
|
-
`Template '${resource.metadata.name}':
|
|
159
|
+
`Template '${resource.metadata.name}': 'run:' targets '${runTarget}' ` +
|
|
160
|
+
`but no entry in 'resources:' has that metadata.name. Available: ${describeAvailableTargets(ctx, definition.resources, self)}.`,
|
|
115
161
|
);
|
|
116
162
|
}
|
|
117
163
|
const extraContext = { self };
|
|
118
164
|
const expanded = ctx.moduleContext.expandWith(
|
|
119
165
|
ctx.moduleContext.expandWith(ephemeralTemplate, extraContext),
|
|
120
166
|
extraContext,
|
|
121
|
-
);
|
|
167
|
+
) as any;
|
|
122
168
|
return withEphemeral(expanded, async (name) => {
|
|
123
169
|
const entry = ctx.moduleContext.resourceInstances.get(name);
|
|
124
170
|
if (!entry?.instance?.run) {
|
|
125
|
-
|
|
171
|
+
const targetKind = (entry?.resource?.kind ?? expanded?.kind ?? "<unknown-kind>") as string;
|
|
172
|
+
const targetDef = ctx.moduleContext.getDefinition?.(targetKind);
|
|
173
|
+
const actualCap = typeof targetDef?.capability === "string" ? targetDef.capability : "<unknown>";
|
|
174
|
+
throw new Error(
|
|
175
|
+
`Template '${resource.metadata.name}': 'run:' target '${targetKind}/${runTarget}' ` +
|
|
176
|
+
`has capability '${actualCap}', not Telo.Runnable. Update 'run:' to a Telo.Runnable kind, or change the target's kind in 'resources:'.`,
|
|
177
|
+
);
|
|
126
178
|
}
|
|
127
179
|
return entry.instance.run();
|
|
128
180
|
});
|
|
129
181
|
},
|
|
130
182
|
}),
|
|
131
183
|
|
|
184
|
+
...(provideTarget && {
|
|
185
|
+
provide: async () => {
|
|
186
|
+
if (!ephemeralTemplate) {
|
|
187
|
+
throw new Error(
|
|
188
|
+
`Template '${resource.metadata.name}': 'provide:' targets '${provideTarget}' ` +
|
|
189
|
+
`but no entry in 'resources:' has that metadata.name. Available: ${describeAvailableTargets(ctx, definition.resources, self)}.`,
|
|
190
|
+
);
|
|
191
|
+
}
|
|
192
|
+
const extraContext = { self };
|
|
193
|
+
const expanded = ctx.moduleContext.expandWith(
|
|
194
|
+
ctx.moduleContext.expandWith(ephemeralTemplate, extraContext),
|
|
195
|
+
extraContext,
|
|
196
|
+
) as any;
|
|
197
|
+
return withEphemeral(expanded, async (name) => {
|
|
198
|
+
const entry = ctx.moduleContext.resourceInstances.get(name);
|
|
199
|
+
if (!entry?.instance?.invoke) {
|
|
200
|
+
const targetKind = (entry?.resource?.kind ?? expanded?.kind ?? "<unknown-kind>") as string;
|
|
201
|
+
const targetDef = ctx.moduleContext.getDefinition?.(targetKind);
|
|
202
|
+
const actualCap = typeof targetDef?.capability === "string" ? targetDef.capability : "<unknown>";
|
|
203
|
+
throw new Error(
|
|
204
|
+
`Template '${resource.metadata.name}': 'provide:' target '${targetKind}/${provideTarget}' ` +
|
|
205
|
+
`has capability '${actualCap}', not Telo.Invocable. Update 'provide:' to a Telo.Invocable kind, or change the target's kind in 'resources:'.`,
|
|
206
|
+
);
|
|
207
|
+
}
|
|
208
|
+
const provideInputs: any =
|
|
209
|
+
definition.inputs != null
|
|
210
|
+
? ctx.moduleContext.expandWith(
|
|
211
|
+
ctx.moduleContext.expandWith(definition.inputs, extraContext),
|
|
212
|
+
extraContext,
|
|
213
|
+
)
|
|
214
|
+
: {};
|
|
215
|
+
const raw = await entry.instance.invoke(provideInputs);
|
|
216
|
+
if (definition.result == null) return raw;
|
|
217
|
+
const resultContext = { self, result: raw };
|
|
218
|
+
return ctx.moduleContext.expandWith(
|
|
219
|
+
ctx.moduleContext.expandWith(definition.result, resultContext),
|
|
220
|
+
resultContext,
|
|
221
|
+
);
|
|
222
|
+
});
|
|
223
|
+
},
|
|
224
|
+
}),
|
|
225
|
+
|
|
132
226
|
teardown: async () => {
|
|
133
227
|
await childContext.teardownResources();
|
|
134
228
|
},
|
package/src/kernel.ts
CHANGED
|
@@ -30,6 +30,7 @@ import { EventStream } from "./event-stream.js";
|
|
|
30
30
|
import { EventBus } from "./events.js";
|
|
31
31
|
import { ModuleContext } from "./module-context.js";
|
|
32
32
|
import { ResourceContextImpl } from "./resource-context.js";
|
|
33
|
+
import { resolveApplicationEnv } from "./application-env.js";
|
|
33
34
|
import { policyFingerprint } from "./runtime-registry.js";
|
|
34
35
|
import { SchemaValidator } from "./schema-validator.js";
|
|
35
36
|
|
|
@@ -304,15 +305,35 @@ export class Kernel implements IKernel {
|
|
|
304
305
|
const normalizedManifests = this.analyzer.normalize(allManifests, this.registry);
|
|
305
306
|
this.staticManifests = normalizedManifests;
|
|
306
307
|
|
|
308
|
+
let rootApplicationManifest: ResourceManifest | undefined;
|
|
307
309
|
for (const manifest of normalizedManifests) {
|
|
308
310
|
if (isModuleKind(manifest.kind)) {
|
|
309
|
-
// Root is always Telo.Application (Library root rejected above).
|
|
310
|
-
//
|
|
311
|
-
//
|
|
311
|
+
// Root is always Telo.Application (Library root rejected above).
|
|
312
|
+
// Application-level `variables` / `secrets` declarations carry an `env:`
|
|
313
|
+
// mapping per field; the kernel populates the root scope from
|
|
314
|
+
// `process.env` after the manifest loop so imports can read
|
|
315
|
+
// `${{ variables.X }}` during their own init.
|
|
312
316
|
this.rootContext.setTargets(manifest.targets ?? []);
|
|
317
|
+
if (manifest.kind === "Telo.Application") {
|
|
318
|
+
rootApplicationManifest = manifest;
|
|
319
|
+
}
|
|
313
320
|
}
|
|
314
321
|
this.rootContext.registerManifest(manifest);
|
|
315
322
|
}
|
|
323
|
+
|
|
324
|
+
if (rootApplicationManifest) {
|
|
325
|
+
const { variables, secrets } = resolveApplicationEnv(
|
|
326
|
+
rootApplicationManifest as Record<string, any>,
|
|
327
|
+
this.env,
|
|
328
|
+
this.sharedSchemaValidator,
|
|
329
|
+
);
|
|
330
|
+
if (Object.keys(variables).length > 0) {
|
|
331
|
+
this.rootContext.setVariables(variables);
|
|
332
|
+
}
|
|
333
|
+
if (Object.keys(secrets).length > 0) {
|
|
334
|
+
this.rootContext.setSecrets(secrets);
|
|
335
|
+
}
|
|
336
|
+
}
|
|
316
337
|
}
|
|
317
338
|
|
|
318
339
|
/**
|