@nimbus-sh/core 0.1.0 → 0.2.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.
Files changed (60) hide show
  1. package/dist/index.d.ts +2 -0
  2. package/dist/index.d.ts.map +1 -1
  3. package/dist/index.js +1 -0
  4. package/dist/runtime/bash-runner.d.ts +63 -0
  5. package/dist/runtime/bash-runner.d.ts.map +1 -0
  6. package/dist/runtime/bash-runner.generated.d.ts +14 -0
  7. package/dist/runtime/bash-runner.generated.d.ts.map +1 -0
  8. package/dist/runtime/bash-runner.generated.js +13 -0
  9. package/dist/runtime/bash-runner.js +290 -0
  10. package/dist/runtime/cpython-runner.d.ts +86 -0
  11. package/dist/runtime/cpython-runner.d.ts.map +1 -0
  12. package/dist/runtime/cpython-runner.js +425 -0
  13. package/dist/runtime/facet-host.d.ts +159 -0
  14. package/dist/runtime/facet-host.d.ts.map +1 -0
  15. package/dist/runtime/facet-host.js +22 -0
  16. package/dist/runtime/installed-runtimes.d.ts +99 -0
  17. package/dist/runtime/installed-runtimes.d.ts.map +1 -0
  18. package/dist/runtime/installed-runtimes.js +162 -0
  19. package/dist/runtime/local-facet-host.d.ts +38 -0
  20. package/dist/runtime/local-facet-host.d.ts.map +1 -0
  21. package/dist/runtime/local-facet-host.js +171 -0
  22. package/dist/runtime/python-pip.d.ts +38 -0
  23. package/dist/runtime/python-pip.d.ts.map +1 -0
  24. package/dist/runtime/python-pip.js +1063 -0
  25. package/dist/runtime/runtime-manifest.d.ts +86 -0
  26. package/dist/runtime/runtime-manifest.d.ts.map +1 -0
  27. package/dist/runtime/runtime-manifest.js +72 -0
  28. package/dist/runtime/runtime-registry.d.ts +161 -0
  29. package/dist/runtime/runtime-registry.d.ts.map +1 -0
  30. package/dist/runtime/runtime-registry.js +363 -0
  31. package/dist/runtime/vfs-snapshot.d.ts.map +1 -1
  32. package/dist/runtime/vfs-snapshot.js +15 -1
  33. package/dist/runtime/vfs-supervisor.d.ts +22 -0
  34. package/dist/runtime/vfs-supervisor.d.ts.map +1 -0
  35. package/dist/runtime/vfs-supervisor.js +65 -0
  36. package/dist/runtime/virtual-socket-kernel.generated.d.ts +14 -0
  37. package/dist/runtime/virtual-socket-kernel.generated.d.ts.map +1 -0
  38. package/dist/runtime/virtual-socket-kernel.generated.js +13 -0
  39. package/dist/runtime/wasm-runner.d.ts +80 -0
  40. package/dist/runtime/wasm-runner.d.ts.map +1 -0
  41. package/dist/runtime/wasm-runner.js +686 -0
  42. package/dist/workspace/nimbus-workspace.d.ts +16 -0
  43. package/dist/workspace/nimbus-workspace.d.ts.map +1 -1
  44. package/dist/workspace/nimbus-workspace.js +57 -2
  45. package/package.json +4 -2
  46. package/src/index.ts +9 -0
  47. package/src/runtime/bash-runner.generated.ts +14 -0
  48. package/src/runtime/bash-runner.ts +347 -0
  49. package/src/runtime/cpython-runner.ts +504 -0
  50. package/src/runtime/facet-host.ts +170 -0
  51. package/src/runtime/installed-runtimes.ts +235 -0
  52. package/src/runtime/local-facet-host.ts +205 -0
  53. package/src/runtime/python-pip.ts +1211 -0
  54. package/src/runtime/runtime-manifest.ts +155 -0
  55. package/src/runtime/runtime-registry.ts +510 -0
  56. package/src/runtime/vfs-snapshot.ts +15 -1
  57. package/src/runtime/vfs-supervisor.ts +67 -0
  58. package/src/runtime/virtual-socket-kernel.generated.ts +14 -0
  59. package/src/runtime/wasm-runner.ts +835 -0
  60. package/src/workspace/nimbus-workspace.ts +102 -3
@@ -0,0 +1,363 @@
1
+ /**
2
+ * runtime-registry.ts — shared shell-command factory for runtime
3
+ * dispatchers (node, bun, and future native-WASM / Python / Ruby /
4
+ * AssemblyScript runtimes).
5
+ *
6
+ * Why this exists
7
+ * ───────────────
8
+ * `node` and `bun` shell-command handlers in src/session/init.ts
9
+ * shared ~85% of their code: argv parsing for --version / --help /
10
+ * -e / script-path, VFS lookup, shebang strip, esbuild transform for
11
+ * .ts/.tsx/.jsx, dispatch to the runner. The duplication had drifted
12
+ * — only `node` had the primitive #1 nodeFlagSpan fix
13
+ * (init.ts:233-243), only `node` had primitive-#2 binSpawn ctx
14
+ * propagation (init.ts:391-403), only `bun` had install / run
15
+ * subcommand routing.
16
+ *
17
+ * `buildRuntimeHandler` returns a single shell-handler function that
18
+ * encodes the shared contract. Per-runtime variation is supplied
19
+ * via the `RuntimeSpec` parameter:
20
+ *
21
+ * - name + version + helpText
22
+ * - run(): runner fn (runFresh / runBunScript / wasm-runner)
23
+ * - subcommands: optional map of `<verb> → handler` for
24
+ * bun-style `bun install`, `bun run` (node has none today)
25
+ * - transform(): optional code rewriter (bun prepends BUN_SHIM_PREAMBLE)
26
+ * - supportsBinSpawn: true for node (the .bin handler propagates
27
+ * a callerPid); other runtimes use a plain spawn flow.
28
+ *
29
+ * Anti-requirements observed
30
+ * ──────────────────────────
31
+ * - NO setTimeout / NO retry / NO defensive-catch added.
32
+ * - NO behavioral change vs the pre-refactor handlers — every
33
+ * runtime-specific quirk is preserved exactly.
34
+ * - Per-runtime test parity: existing runtime-primitives probes
35
+ * (#1 npx / #2 .bin) and runtime-pkg probes (G1-G4) MUST still
36
+ * pass against the refactored handlers — the contract is
37
+ * observable behaviour, not implementation shape.
38
+ */
39
+ import { normalizeVfsPath, resolveVfsPath, vfsPathExtension } from '../vfs/path.js';
40
+ import { CRED_KERNEL } from './os-contracts.js';
41
+ import { parseFacetBundleProfile } from './bundle-profile.js';
42
+ import { bindImportMetaResolve, importMetaDefines } from './import-meta-transform.js';
43
+ /** Extensions probed when a target names no exact file, in Node's order. */
44
+ const SCRIPT_RESOLUTION_CANDIDATES = ['.js', '.ts', '.tsx', '.mjs', '.jsx', '/index.js', '/index.ts'];
45
+ /**
46
+ * Resolve a runtime target — `./cli.ts`, `sub/x`, `.`, or a bare name — to a
47
+ * canonical VFS key, or null when nothing runnable sits there.
48
+ *
49
+ * A directory never resolves to itself: it falls through to the index
50
+ * candidates, so `bun ./tools` finds `tools/index.js` the way real bun does
51
+ * rather than trying to read the directory as source.
52
+ */
53
+ export function resolveRuntimeScriptPath(fs, cwd, target, opts) {
54
+ const base = normalizeVfsPath(cwd || '/home/user');
55
+ let resolved;
56
+ if (target === '.' || target === './') {
57
+ // `node .` / `bun .` — the package's declared entry point.
58
+ let main = 'index.js';
59
+ try {
60
+ const pkg = JSON.parse(fs.readFileString(`${base}/package.json`));
61
+ main = (opts?.preferModuleField ? pkg.module : undefined) || pkg.main || 'index.js';
62
+ }
63
+ catch { /* no readable package.json — index.js */ }
64
+ resolved = resolveVfsPath(main, base);
65
+ }
66
+ else {
67
+ resolved = resolveVfsPath(target, base);
68
+ }
69
+ if (fs.isFile(resolved))
70
+ return resolved;
71
+ for (const candidate of SCRIPT_RESOLUTION_CANDIDATES) {
72
+ if (fs.isFile(resolved + candidate))
73
+ return resolved + candidate;
74
+ }
75
+ return null;
76
+ }
77
+ /**
78
+ * Build a shell-handler function for a runtime. The returned function
79
+ * is the value passed to `registry.register('<name>', handler)`.
80
+ *
81
+ * Captures `vfs`, `getEsbuild` (for lazy init) + the spec. The same factory is used for every runtime; the only
82
+ * runtime-specific code lives in `spec`.
83
+ */
84
+ export function buildRuntimeHandler(spec, ctx0) {
85
+ const { vfs, getEsbuild, registry } = ctx0;
86
+ const fs = vfs.as(CRED_KERNEL);
87
+ /**
88
+ * The standard invocation: flag span, --version/--help/-e, then the
89
+ * script-path flow. Subcommand verbs are NOT considered here — the
90
+ * caller has already consumed them — so a verb handler can delegate
91
+ * back in with a rewritten argv without re-triggering itself.
92
+ */
93
+ async function runtimeInvocation(ctx, args) {
94
+ const name = spec.name;
95
+ const nimbusCtx = ctx;
96
+ // A facet-hosted runtime streams its output to the session terminal over
97
+ // the supervisor RPC and hands the shell an empty string. That is live and
98
+ // cheap, and it is only correct while the process's stdout IS the terminal:
99
+ // the stream bypasses the shell's stdout chain, so the moment fd 1 or fd 2
100
+ // is a file, a pipe, a command substitution, or the capture sink of a
101
+ // programmatic exec, the bytes have to come back in the result and be
102
+ // written through ctx.stdout instead. A context with no fd table of its own
103
+ // — the child_process broker synthesizes one — says so directly.
104
+ const captureOutput = !!nimbusCtx.__nimbusCaptureOutput
105
+ || ctx.isFdTerminal?.(1) === false
106
+ || ctx.isFdTerminal?.(2) === false;
107
+ const bundleProfile = parseFacetBundleProfile(nimbusCtx.__nimbusBundleProfile);
108
+ // ── Flag-span computation (primitive #1) ──
109
+ //
110
+ // Real-Node only treats args UP TO the first non-flag token as
111
+ // CLI flags. Pre-refactor, version/help/eval scanned the entire
112
+ // args array, breaking `node /path/to/tsc --version` (the user's
113
+ // --version was misinterpreted as a node flag).
114
+ let flagSpan = 0;
115
+ while (flagSpan < args.length && args[flagSpan].startsWith('-')) {
116
+ flagSpan++;
117
+ const prev = args[flagSpan - 1];
118
+ // -e / --eval consumes one value; advance past it.
119
+ if ((prev === '-e' || prev === '--eval') && flagSpan < args.length) {
120
+ flagSpan++;
121
+ }
122
+ }
123
+ const flagSlice = args.slice(0, flagSpan);
124
+ // ── --version ──
125
+ if (flagSlice.includes('-v') || flagSlice.includes('--version')) {
126
+ ctx.stdout.write(spec.version + '\n');
127
+ return 0;
128
+ }
129
+ // ── --help ──
130
+ if (flagSlice.includes('--help') || flagSlice.includes('-h')) {
131
+ ctx.stdout.write(spec.helpText);
132
+ if (!spec.helpText.endsWith('\n'))
133
+ ctx.stdout.write('\n');
134
+ return 0;
135
+ }
136
+ // ── -e / --eval ──
137
+ const evalIdx = flagSlice.indexOf('-e') !== -1
138
+ ? flagSlice.indexOf('-e')
139
+ : flagSlice.indexOf('--eval');
140
+ if (evalIdx !== -1) {
141
+ const code = args[evalIdx + 1];
142
+ if (!code) {
143
+ ctx.stderr.write(`${name}: -e requires an argument\n`);
144
+ return 1;
145
+ }
146
+ const result = await spec.run(code, {
147
+ cred: ctx.cred,
148
+ argv: args.slice(evalIdx + 2),
149
+ env: ctx.env,
150
+ cwd: ctx.cwd,
151
+ filename: '<eval>',
152
+ dirname: ctx.cwd || '/home/user',
153
+ command: `${name} -e ...`,
154
+ ...(captureOutput ? { captureOutput: true } : {}),
155
+ ...(bundleProfile ? { bundleProfile } : {}),
156
+ });
157
+ if (result.stdout)
158
+ ctx.stdout.write(result.stdout);
159
+ if (result.stderr)
160
+ ctx.stderr.write(result.stderr);
161
+ return result.exitCode;
162
+ }
163
+ // ── script path (or .wasm path for bypassesScriptRead) ──
164
+ const scriptIdx = flagSpan;
165
+ const scriptPath = args[scriptIdx];
166
+ if (!scriptPath) {
167
+ ctx.stderr.write(`${name}: REPL not supported. Use ${name} -e "code" or ${name} script.js\n`);
168
+ return 1;
169
+ }
170
+ // ── bypassesScriptRead branch (wasm-runner) ──
171
+ //
172
+ // The runner takes the path AS-IS (it's a .wasm, not JS source).
173
+ // We don't read or transform here; the runner reads the bytes
174
+ // and instantiates them. `.` resolution and extension probing are
175
+ // meaningless for a .wasm target and stay out of this branch.
176
+ if (spec.bypassesScriptRead) {
177
+ const filename = '/' + resolveVfsPath(scriptPath, ctx.cwd || '/home/user');
178
+ const dirname = filename.includes('/')
179
+ ? filename.substring(0, filename.lastIndexOf('/'))
180
+ : '/';
181
+ // `args.slice(scriptIdx + 1)` are the runner's user args (e.g.
182
+ // [exportName, intArg1, intArg2, ...] for wasm-runner).
183
+ const result = await spec.run('', {
184
+ cred: ctx.cred,
185
+ argv: args.slice(scriptIdx + 1),
186
+ env: ctx.env,
187
+ cwd: ctx.cwd,
188
+ filename,
189
+ dirname,
190
+ command: `${name} ${args.slice(0, scriptIdx + 1).join(' ')}`,
191
+ ...(captureOutput ? { captureOutput: true } : {}),
192
+ ...(bundleProfile ? { bundleProfile } : {}),
193
+ });
194
+ if (result.stdout)
195
+ ctx.stdout.write(result.stdout);
196
+ if (result.stderr)
197
+ ctx.stderr.write(result.stderr);
198
+ return result.exitCode;
199
+ }
200
+ // Resolve against cwd: `.` → the package entry, then extension probing.
201
+ const resolvedPath = resolveRuntimeScriptPath(fs, ctx.cwd || '/home/user', scriptPath, {
202
+ // bun prefers .module over .main when both exist; node uses .main.
203
+ preferModuleField: name === 'bun',
204
+ });
205
+ let code = null;
206
+ if (resolvedPath !== null) {
207
+ try {
208
+ code = fs.readFileString(resolvedPath);
209
+ }
210
+ catch { /* unreadable — reported below */ }
211
+ }
212
+ if (resolvedPath === null || code === null) {
213
+ ctx.stderr.write(`${name}: cannot find module '${scriptPath}'\n`);
214
+ return 1;
215
+ }
216
+ // Shebang strip (primitive #1).
217
+ if (code.startsWith('#!')) {
218
+ const nl = code.indexOf('\n');
219
+ code = nl >= 0 ? code.substring(nl + 1) : '';
220
+ }
221
+ // ── ESM-source detection (primitive: type:module entry scripts) ──
222
+ //
223
+ // Nimbus's facet pre-compile loop wraps every entry script in
224
+ // `new Function(...)` which runs it as CJS. A real `node script.js`
225
+ // dispatch honours the nearest package.json's `"type"` field
226
+ // (and the file extension) to decide whether to parse as ESM:
227
+ //
228
+ // - .mjs → always ESM
229
+ // - .cjs → always CJS
230
+ // - .js → ESM iff nearest package.json has "type": "module"
231
+ // - no extension → same rule as .js. Node allows an extensionless
232
+ // main entry and resolves its format from the
233
+ // package type, and that is the shape of nearly
234
+ // every npm `bin` script (typescript's `bin/tsc`,
235
+ // and the `node_modules/.bin/<cli>` target the bin
236
+ // dispatcher hands us).
237
+ //
238
+ // Without this, every modern ESM-only npm initialiser
239
+ // (create-vite, create-astro, create-svelte, modern create-*)
240
+ // crashes immediately with "Cannot use import statement outside
241
+ // a module" because their bin entry is `index.js` and the
242
+ // package.json declares `type: module`.
243
+ //
244
+ // We transform to CJS (format: 'cjs') so the facet's `new
245
+ // Function()` runs it as a CJS module body — same path that the
246
+ // bundle's `transformEsmInBundle` (W3.5 Fix B) takes for
247
+ // sub-module ESM files. esbuild's CJS output emits __require /
248
+ // module.exports / exports.X so the facet's pre-compile loop
249
+ // sees ordinary CJS source.
250
+ function nearestPackageTypeIsModule(absPath) {
251
+ // Walk up dirs looking for the nearest package.json. First one
252
+ // wins (Node spec); we do NOT consult ancestors past it.
253
+ let dir = absPath.replace(/^\/+/, '');
254
+ const slash = dir.lastIndexOf('/');
255
+ dir = slash > 0 ? dir.substring(0, slash) : '';
256
+ const visited = new Set();
257
+ while (dir && !visited.has(dir)) {
258
+ visited.add(dir);
259
+ const pj = dir + '/package.json';
260
+ if (fs.exists(pj)) {
261
+ try {
262
+ const pkg = JSON.parse(fs.readFileString(pj));
263
+ return pkg && pkg.type === 'module';
264
+ }
265
+ catch {
266
+ return false;
267
+ }
268
+ }
269
+ const last = dir.lastIndexOf('/');
270
+ if (last <= 0)
271
+ break;
272
+ dir = dir.substring(0, last);
273
+ }
274
+ return false;
275
+ }
276
+ const scriptExt = vfsPathExtension(resolvedPath);
277
+ const needsEsmTransform = scriptExt === '.mjs' ||
278
+ ((scriptExt === '.js' || scriptExt === '') && nearestPackageTypeIsModule(resolvedPath));
279
+ // esbuild transform for TypeScript / TSX / JSX (both node and bun)
280
+ // AND for ESM entry scripts (primitive ESM-detect).
281
+ if (scriptExt === '.ts' ||
282
+ scriptExt === '.tsx' ||
283
+ scriptExt === '.jsx' ||
284
+ needsEsmTransform) {
285
+ try {
286
+ const eb = getEsbuild();
287
+ const loader = scriptExt === '.tsx' ? 'tsx' :
288
+ scriptExt === '.jsx' ? 'jsx' :
289
+ scriptExt === '.ts' ? 'ts' :
290
+ 'js';
291
+ // Substitute `import.meta.url` at compile-time so esbuild's
292
+ // CJS output doesn't reduce it to `undefined` (its default
293
+ // for unknown import.meta references). The substitution
294
+ // value is a real `file://<absolute-path>` URL — exactly
295
+ // what real Node returns when running this script. Tools
296
+ // that compute `fileURLToPath(import.meta.url)` (create-vite,
297
+ // most modern CLIs) then resolve relative paths against
298
+ // the actual script location.
299
+ //
300
+ // Without this, `create-vite` does
301
+ // r(import.meta.url) → fileURLToPath(undefined) → throws
302
+ // → falls into a different code path
303
+ // → readdirSync(wrong-template-dir) returns []
304
+ // → "Scaffolding..." but writes no files.
305
+ const absUrl = 'file:///' + resolvedPath.replace(/^\/+/, '');
306
+ const transformed = await eb.transform(code, {
307
+ loader,
308
+ format: 'cjs',
309
+ define: importMetaDefines(absUrl),
310
+ });
311
+ code = bindImportMetaResolve(transformed.code, absUrl);
312
+ }
313
+ catch (e) {
314
+ ctx.stderr.write(`${name}: transform error for ${scriptPath}: ${e?.message}\n`);
315
+ return 1;
316
+ }
317
+ }
318
+ const filename = '/' + resolvedPath;
319
+ const dirname = filename.includes('/')
320
+ ? filename.substring(0, filename.lastIndexOf('/'))
321
+ : '/';
322
+ // Primitive #1 / G4 — propagate bin-spawn ctx if the runtime
323
+ // supports it (currently node only).
324
+ const binSpawn = spec.supportsBinSpawn ? nimbusCtx.__nimbusBinSpawn : undefined;
325
+ const leadingFlags = args.slice(0, scriptIdx);
326
+ const result = await spec.run(code, {
327
+ cred: ctx.cred,
328
+ argv: [...leadingFlags, filename, ...args.slice(scriptIdx + 1)],
329
+ env: ctx.env,
330
+ cwd: ctx.cwd,
331
+ filename,
332
+ dirname,
333
+ command: binSpawn?.command || `${name} ${args.slice(0, scriptIdx + 1).join(' ')}`,
334
+ ...(binSpawn ? {
335
+ skipSpawn: true,
336
+ callerPid: binSpawn.callerPid,
337
+ forceLongRunning: binSpawn.forceLongRunning === true,
338
+ attachedTty: binSpawn.attachedTty === true,
339
+ } : {}),
340
+ ...(captureOutput ? { captureOutput: true } : {}),
341
+ ...(bundleProfile ? { bundleProfile } : {}),
342
+ });
343
+ if (result.stdout)
344
+ ctx.stdout.write(result.stdout);
345
+ if (result.stderr)
346
+ ctx.stderr.write(result.stderr);
347
+ return result.exitCode;
348
+ }
349
+ return async function runtimeHandler(ctx) {
350
+ const args = ctx.args || [];
351
+ // ── Subcommand dispatch ──
352
+ //
353
+ // BEFORE flag-span computation: subcommands like `bun install`
354
+ // have their first positional arg as the verb, NOT a node-style
355
+ // flag. A verb owns the whole invocation, but it may hand a
356
+ // rewritten argv back to the standard flow — that is how
357
+ // `bun run <file>` reaches the same execution path as `bun <file>`.
358
+ if (spec.subcommands && args.length > 0 && spec.subcommands[args[0]]) {
359
+ return spec.subcommands[args[0]](ctx, registry, (rewritten) => runtimeInvocation(ctx, rewritten));
360
+ }
361
+ return runtimeInvocation(ctx, args);
362
+ };
363
+ }
@@ -1 +1 @@
1
- {"version":3,"file":"vfs-snapshot.d.ts","sourceRoot":"","sources":["../../src/runtime/vfs-snapshot.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACzD,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAGjD;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,6CAA6C;IAC7C,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACrC,sBAAsB;IACtB,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,2BAA2B;IAC3B,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB,0CAA0C;IAC1C,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACtC;;;;;OAKG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAC1C;AAED,MAAM,WAAW,eAAe;IAC9B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;IAC/B,UAAU,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;CAC/B;AAED,MAAM,WAAW,iBAAiB;IAChC,QAAQ,EAAE,cAAc,CAAC;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACf;AAED,wBAAgB,UAAU,CAAC,KAAK,EAAE,UAAU,GAAG,MAAM,CAIpD;AAED,wBAAgB,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,UAAU,CAKlD;AAED;;;;;;GAMG;AACH,wBAAgB,WAAW,CACzB,GAAG,EAAE,OAAO,EACZ,OAAO,EAAE,MAAM,EACf,IAAI,GAAE,eAAoB,GACzB,iBAAiB,GAAG;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,CA6HvC;AAED;;;GAGG;AACH,wBAAgB,YAAY,CAC1B,GAAG,EAAE,OAAO,EACZ,IAAI,EAAE,UAAU,GACf;IAAE,OAAO,EAAE,MAAM,CAAC;IAAC,OAAO,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,MAAM,CAAC;IAAC,QAAQ,EAAE,MAAM,CAAA;CAAE,CA2DxG"}
1
+ {"version":3,"file":"vfs-snapshot.d.ts","sourceRoot":"","sources":["../../src/runtime/vfs-snapshot.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACzD,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAGjD;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,6CAA6C;IAC7C,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACrC,sBAAsB;IACtB,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,2BAA2B;IAC3B,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB,0CAA0C;IAC1C,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACtC;;;;;OAKG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAC1C;AAED,MAAM,WAAW,eAAe;IAC9B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;IAC/B,UAAU,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;CAC/B;AAED,MAAM,WAAW,iBAAiB;IAChC,QAAQ,EAAE,cAAc,CAAC;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACf;AAED,wBAAgB,UAAU,CAAC,KAAK,EAAE,UAAU,GAAG,MAAM,CAIpD;AAED,wBAAgB,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,UAAU,CAKlD;AAED;;;;;;GAMG;AACH,wBAAgB,WAAW,CACzB,GAAG,EAAE,OAAO,EACZ,OAAO,EAAE,MAAM,EACf,IAAI,GAAE,eAAoB,GACzB,iBAAiB,GAAG;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,CA2IvC;AAED;;;GAGG;AACH,wBAAgB,YAAY,CAC1B,GAAG,EAAE,OAAO,EACZ,IAAI,EAAE,UAAU,GACf;IAAE,OAAO,EAAE,MAAM,CAAC;IAAC,OAAO,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,MAAM,CAAC;IAAC,QAAQ,EAAE,MAAM,CAAA;CAAE,CA2DxG"}
@@ -144,7 +144,21 @@ export function snapshotVfs(vfs, vfsRoot, caps = {}) {
144
144
  return { error: `runtime filesystem snapshot incomplete: ${failures.join('; ')}` };
145
145
  }
146
146
  return {
147
- snapshot: { root, roots, preopens: [], files, dirs: Array.from(dirsSet).sort(), modes },
147
+ snapshot: {
148
+ root,
149
+ roots,
150
+ preopens: [],
151
+ files,
152
+ dirs: Array.from(dirsSet).sort(),
153
+ modes,
154
+ // Only when the walk hid nothing. The walk either finishes or returns an
155
+ // error above, so a snapshot taken with no skip list HAS listed each root
156
+ // exhaustively — which is what lets a guest treat a path it does not find
157
+ // as absent instead of asking for it. With the default skip list it has
158
+ // not, and claiming otherwise would make node_modules invisible rather
159
+ // than merely unseeded.
160
+ ...(skipSubdirs.size === 0 ? { enumeratedRoots: roots } : {}),
161
+ },
148
162
  bytes: totalBytes,
149
163
  files: fileCount,
150
164
  };
@@ -0,0 +1,22 @@
1
+ /**
2
+ * vfs-supervisor.ts — the session's syscall capability, served in place.
3
+ *
4
+ * The WASI layer treats its seed as a CACHE over the session filesystem and
5
+ * reaches the real thing through a {@link WasiSupervisorStub}. In a Durable
6
+ * Object that stub is an RPC handle minted for a pid, because the facet is a
7
+ * different isolate; in the caller's own isolate the filesystem is right here
8
+ * and the credential is already on the view.
9
+ *
10
+ * The methods are `async` because the shim's contract is, not because anything
11
+ * here waits. That is what makes this usable on a host with no JSPI: every
12
+ * mutation is queued and drained OUTSIDE the guest (`__wasiDrainPersist`, which
13
+ * a runner awaits after the program returns), so a promise there costs nothing.
14
+ * A READ is different — its promise would have to suspend the guest mid-syscall
15
+ * — which is why a host without parking must seed the filesystem completely and
16
+ * never reach the read paths at all. See FacetHost.parking.
17
+ */
18
+ import type { CredentialedVfs } from '../vfs/sqlite-vfs.js';
19
+ import type { WasiSupervisorStub } from './wasi/types.js';
20
+ /** Serve the WASI syscall surface directly from `vfs`, as its own credential. */
21
+ export declare function vfsSupervisor(vfs: CredentialedVfs): WasiSupervisorStub;
22
+ //# sourceMappingURL=vfs-supervisor.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vfs-supervisor.d.ts","sourceRoot":"","sources":["../../src/runtime/vfs-supervisor.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAEH,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAC5D,OAAO,KAAK,EAAkB,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AAE1E,iFAAiF;AACjF,wBAAgB,aAAa,CAAC,GAAG,EAAE,eAAe,GAAG,kBAAkB,CA4CtE"}
@@ -0,0 +1,65 @@
1
+ /**
2
+ * vfs-supervisor.ts — the session's syscall capability, served in place.
3
+ *
4
+ * The WASI layer treats its seed as a CACHE over the session filesystem and
5
+ * reaches the real thing through a {@link WasiSupervisorStub}. In a Durable
6
+ * Object that stub is an RPC handle minted for a pid, because the facet is a
7
+ * different isolate; in the caller's own isolate the filesystem is right here
8
+ * and the credential is already on the view.
9
+ *
10
+ * The methods are `async` because the shim's contract is, not because anything
11
+ * here waits. That is what makes this usable on a host with no JSPI: every
12
+ * mutation is queued and drained OUTSIDE the guest (`__wasiDrainPersist`, which
13
+ * a runner awaits after the program returns), so a promise there costs nothing.
14
+ * A READ is different — its promise would have to suspend the guest mid-syscall
15
+ * — which is why a host without parking must seed the filesystem completely and
16
+ * never reach the read paths at all. See FacetHost.parking.
17
+ */
18
+ /** Serve the WASI syscall surface directly from `vfs`, as its own credential. */
19
+ export function vfsSupervisor(vfs) {
20
+ const key = (path) => path.replace(/^\/+/, '');
21
+ return {
22
+ async fsReadRange(vfsPath, offset, length) {
23
+ return vfs.readRange(key(vfsPath), offset, length);
24
+ },
25
+ async fsRevision(root) {
26
+ return vfs.revision(key(root));
27
+ },
28
+ async stat(vfsPath) {
29
+ const path = key(vfsPath);
30
+ if (!vfs.exists(path))
31
+ return null;
32
+ const stat = vfs.lstat(path);
33
+ return {
34
+ type: stat.type === 'directory' ? 'directory' : stat.type === 'symlink' ? 'symlink' : 'file',
35
+ size: stat.size,
36
+ mtime: stat.mtime,
37
+ };
38
+ },
39
+ async writeFile(vfsPath, bytes) {
40
+ const path = key(vfsPath);
41
+ const parent = path.includes('/') ? path.slice(0, path.lastIndexOf('/')) : '';
42
+ if (parent && !vfs.exists(parent))
43
+ vfs.mkdir(parent, { recursive: true });
44
+ vfs.writeFile(path, bytes);
45
+ },
46
+ async unlink(vfsPath) {
47
+ vfs.unlink(key(vfsPath));
48
+ },
49
+ async mkdir(vfsPath) {
50
+ vfs.mkdir(key(vfsPath), { recursive: true });
51
+ },
52
+ async rmdir(vfsPath) {
53
+ vfs.rmdir(key(vfsPath));
54
+ },
55
+ async rename(from, to) {
56
+ vfs.rename(key(from), key(to));
57
+ },
58
+ async symlink(target, vfsPath) {
59
+ vfs.symlink(target, key(vfsPath));
60
+ },
61
+ async utimes(vfsPath, atimeMs, mtimeMs) {
62
+ vfs.utimes(key(vfsPath), atimeMs, mtimeMs);
63
+ },
64
+ };
65
+ }
@@ -0,0 +1,14 @@
1
+ /**
2
+ * virtual-socket-kernel.generated.ts — AUTO-GENERATED. DO NOT EDIT.
3
+ *
4
+ * Produced by scripts/bundle-facet-workers.mjs from:
5
+ * - @nimbus-sh/core src/runtime/virtual-socket-kernel.ts
6
+ *
7
+ * Self-contained IIFE that installs globalThis.__nimbusVirtualSockets.
8
+ * Consumed by python-runner.ts and ruby-runner.ts: spliced into the
9
+ * socket process worker module source passed to NimbusLoaderPool.
10
+ *
11
+ * Size: 33.72 KiB
12
+ */
13
+ export declare const VIRTUAL_SOCKET_KERNEL_SRC: string;
14
+ //# sourceMappingURL=virtual-socket-kernel.generated.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"virtual-socket-kernel.generated.d.ts","sourceRoot":"","sources":["../../src/runtime/virtual-socket-kernel.generated.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,eAAO,MAAM,yBAAyB,EAAE,MAAu5lC,CAAC"}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * virtual-socket-kernel.generated.ts — AUTO-GENERATED. DO NOT EDIT.
3
+ *
4
+ * Produced by scripts/bundle-facet-workers.mjs from:
5
+ * - @nimbus-sh/core src/runtime/virtual-socket-kernel.ts
6
+ *
7
+ * Self-contained IIFE that installs globalThis.__nimbusVirtualSockets.
8
+ * Consumed by python-runner.ts and ruby-runner.ts: spliced into the
9
+ * socket process worker module source passed to NimbusLoaderPool.
10
+ *
11
+ * Size: 33.72 KiB
12
+ */
13
+ export const VIRTUAL_SOCKET_KERNEL_SRC = "(() => {\n // ../core/src/runtime/virtual-socket-kernel.ts\n var DEFAULT_LIMITS = {\n responseTimeoutMs: 3e4,\n maxRequestBodyBytes: 32 * 1024 * 1024,\n maxResponseBufferBytes: 64 * 1024 * 1024\n };\n var EMPTY_BYTES = new Uint8Array(0);\n var Deferred = class {\n promise;\n resolve;\n reject;\n constructor() {\n let resolve = () => {\n };\n let reject = () => {\n };\n this.promise = new Promise((res, rej) => {\n resolve = res;\n reject = rej;\n });\n this.resolve = resolve;\n this.reject = reject;\n }\n };\n function isPyodideProxyLike(value) {\n return value !== null && typeof value === \"object\" && typeof value.toJs === \"function\";\n }\n function toBytes(value) {\n if (value instanceof Uint8Array) return value;\n if (value instanceof ArrayBuffer) return new Uint8Array(value);\n if (ArrayBuffer.isView(value)) return new Uint8Array(value.buffer, value.byteOffset, value.byteLength);\n if (Array.isArray(value)) return Uint8Array.from(value);\n if (typeof value === \"string\") return new TextEncoder().encode(value);\n if (isPyodideProxyLike(value)) return toBytes(value.toJs());\n return EMPTY_BYTES;\n }\n function concatBytes(parts) {\n let length = 0;\n for (const part of parts) length += part.byteLength;\n const out = new Uint8Array(length);\n let offset = 0;\n for (const part of parts) {\n out.set(part, offset);\n offset += part.byteLength;\n }\n return out;\n }\n function responseCanHaveBody(requestMethod, status) {\n if (requestMethod.toUpperCase() === \"HEAD\") return false;\n return status !== 204 && status !== 205 && status !== 304;\n }\n function encodeHttpRequest(request, body) {\n const url = new URL(request.url);\n const path = (url.pathname || \"/\") + url.search;\n const headers = new Headers(request.headers);\n if (!headers.has(\"Host\")) headers.set(\"Host\", url.host || \"nimbus.local\");\n if (body.byteLength > 0 && !headers.has(\"Content-Length\")) {\n headers.set(\"Content-Length\", String(body.byteLength));\n }\n const lines = [`${request.method} ${path} HTTP/1.1`];\n headers.forEach((value, key) => lines.push(`${key}: ${value}`));\n lines.push(\"\", \"\");\n return concatBytes([new TextEncoder().encode(lines.join(\"\\r\\n\")), body]);\n }\n function encodeHttpResponseHead(status, statusText, headers, chunkedBody) {\n const lines = [`HTTP/1.1 ${status} ${statusText}`];\n headers.forEach((value, key) => lines.push(`${key}: ${value}`));\n if (chunkedBody) lines.push(\"Transfer-Encoding: chunked\");\n lines.push(\"Connection: close\");\n lines.push(\"\", \"\");\n return new TextEncoder().encode(lines.join(\"\\r\\n\"));\n }\n function encodeChunkedFrame(bytes) {\n return concatBytes([\n new TextEncoder().encode(`${bytes.byteLength.toString(16)}\\r\n`),\n bytes,\n new TextEncoder().encode(\"\\r\\n\")\n ]);\n }\n var CHUNKED_TERMINATOR = new TextEncoder().encode(\"0\\r\\n\\r\\n\");\n var LOOPBACK_READ_HIGH_WATER_BYTES = 1024 * 1024;\n var LOOPBACK_STREAM_CHUNK_BYTES = 64 * 1024;\n var ByteChunkQueue = class {\n constructor(limitTotalBytes, overflowLabel) {\n this.limitTotalBytes = limitTotalBytes;\n this.overflowLabel = overflowLabel;\n }\n limitTotalBytes;\n overflowLabel;\n chunks = [];\n headOffset = 0;\n enqueuedTotalBytes = 0;\n undrainedBytes = 0;\n /** Bytes enqueued but not yet read. Drives flow control on streamed queues. */\n get pendingBytes() {\n return this.undrainedBytes;\n }\n enqueue(bytes) {\n if (bytes.byteLength === 0) return;\n if (this.enqueuedTotalBytes + bytes.byteLength > this.limitTotalBytes) {\n throw new Error(\n `Nimbus virtual socket: ${this.overflowLabel} exceeds ${this.limitTotalBytes} bytes`\n );\n }\n this.enqueuedTotalBytes += bytes.byteLength;\n this.undrainedBytes += bytes.byteLength;\n this.chunks.push(bytes);\n }\n /** Drain up to maxBytes from the head chunk; empty result means no data is queued. */\n readUpTo(maxBytes) {\n const head = this.chunks[0];\n if (!head) return EMPTY_BYTES;\n const available = head.byteLength - this.headOffset;\n const take = Math.min(available, Math.max(1, maxBytes));\n const out = head.subarray(this.headOffset, this.headOffset + take);\n this.headOffset += take;\n this.undrainedBytes -= take;\n if (this.headOffset >= head.byteLength) {\n this.chunks.shift();\n this.headOffset = 0;\n }\n return out;\n }\n };\n var HttpMessageParser = class {\n phase = \"headers\";\n settled = null;\n headerBuffer = EMPTY_BYTES;\n headerScanOffset = 0;\n headerPairs = [];\n framing = \"none\";\n expectedBodyBytes = 0;\n bodyChunks = [];\n bodyByteCount = 0;\n chunkState = \"size\";\n chunkSizeLine = [];\n chunkDataRemaining = 0;\n get outcome() {\n return this.settled;\n }\n feed(chunk) {\n if (this.phase === \"done\" || chunk.byteLength === 0) return;\n if (this.phase === \"headers\") {\n this.feedHeaders(chunk);\n return;\n }\n this.feedBody(chunk);\n }\n /** EOF from the peer closing the connection (or the request being torn down). */\n finish() {\n if (this.phase === \"done\") return;\n if (this.phase === \"headers\") {\n this.fail(`connection closed before ${this.messageLabel} headers`);\n return;\n }\n if (this.framing === \"until-close\") {\n this.completeWithBody(concatBytes(this.bodyChunks));\n return;\n }\n this.fail(`connection closed before the ${this.messageLabel} completed`);\n }\n feedHeaders(chunk) {\n this.headerBuffer = concatBytes([this.headerBuffer, chunk]);\n const headerEnd = this.findHeaderEnd();\n if (headerEnd < 0) {\n this.headerScanOffset = Math.max(0, this.headerBuffer.byteLength - 3);\n return;\n }\n const parsed = this.parseHeaderBlock(this.headerBuffer.subarray(0, headerEnd));\n const leftover = this.headerBuffer.subarray(headerEnd);\n this.headerBuffer = EMPTY_BYTES;\n if (!parsed) return;\n if (!this.bodyAllowed()) {\n this.completeWithBody(null);\n return;\n }\n const transferEncoding = this.headerValue(\"Transfer-Encoding\");\n if (transferEncoding !== null && /chunked/i.test(transferEncoding)) {\n this.framing = \"chunked\";\n } else {\n const contentLength = this.headerValue(\"Content-Length\");\n const expected = contentLength === null ? Number.NaN : parseInt(contentLength, 10);\n if (Number.isFinite(expected) && expected >= 0) {\n this.framing = \"content-length\";\n this.expectedBodyBytes = expected;\n if (expected === 0) {\n this.completeWithBody(EMPTY_BYTES);\n return;\n }\n } else {\n this.framing = this.defaultFramingWhenUnframed();\n if (this.framing === \"none\") {\n this.completeWithBody(null);\n return;\n }\n }\n }\n this.phase = \"body\";\n this.feedBody(leftover);\n }\n feedBody(chunk) {\n if (this.framing === \"chunked\") {\n this.feedChunkedBody(chunk);\n return;\n }\n if (chunk.byteLength === 0) return;\n if (this.framing === \"content-length\") {\n const needed = this.expectedBodyBytes - this.bodyByteCount;\n this.appendBody(chunk.subarray(0, Math.min(needed, chunk.byteLength)));\n if (this.bodyByteCount >= this.expectedBodyBytes) {\n this.completeWithBody(concatBytes(this.bodyChunks));\n }\n return;\n }\n this.appendBody(chunk);\n }\n feedChunkedBody(chunk) {\n let i = 0;\n while (i < chunk.byteLength && this.phase === \"body\") {\n if (this.chunkState === \"size\") {\n const byte = chunk[i++];\n if (byte === 10) {\n const line = new TextDecoder().decode(Uint8Array.from(this.chunkSizeLine)).trim();\n this.chunkSizeLine.length = 0;\n const size = parseInt(line.split(\";\", 1)[0], 16);\n if (!Number.isFinite(size) || size < 0) {\n this.fail(\"malformed chunked transfer encoding\");\n return;\n }\n if (size === 0) {\n this.completeWithBody(concatBytes(this.bodyChunks));\n return;\n }\n this.chunkState = \"data\";\n this.chunkDataRemaining = size;\n } else if (byte !== 13) {\n this.chunkSizeLine.push(byte);\n }\n } else if (this.chunkState === \"data\") {\n const take = Math.min(this.chunkDataRemaining, chunk.byteLength - i);\n this.appendBody(chunk.subarray(i, i + take));\n i += take;\n this.chunkDataRemaining -= take;\n if (this.chunkDataRemaining === 0) this.chunkState = \"data-end\";\n } else {\n const byte = chunk[i++];\n if (byte === 10) {\n this.chunkState = \"size\";\n } else if (byte !== 13) {\n this.fail(\"malformed chunked transfer encoding\");\n return;\n }\n }\n }\n }\n appendBody(bytes) {\n if (bytes.byteLength === 0) return;\n this.bodyChunks.push(bytes);\n this.bodyByteCount += bytes.byteLength;\n }\n findHeaderEnd() {\n const bytes = this.headerBuffer;\n for (let i = this.headerScanOffset; i + 3 < bytes.byteLength; i++) {\n if (bytes[i] === 13 && bytes[i + 1] === 10 && bytes[i + 2] === 13 && bytes[i + 3] === 10) {\n return i + 4;\n }\n }\n return -1;\n }\n /** Returns false when the start line is malformed (the parser has already failed). */\n parseHeaderBlock(headerBytes) {\n const headerText = new TextDecoder().decode(headerBytes);\n const lines = headerText.replace(/\\r\\n/g, \"\\n\").split(\"\\n\").filter((line) => line.length > 0);\n const startLine = lines.shift() ?? \"\";\n if (!this.parseStartLine(startLine)) return false;\n for (const line of lines) {\n const separator = line.indexOf(\":\");\n if (separator <= 0) continue;\n this.headerPairs.push([line.slice(0, separator), line.slice(separator + 1).trimStart()]);\n }\n return true;\n }\n headerValue(name) {\n const target = name.toLowerCase();\n for (const [key, value] of this.headerPairs) {\n if (key.toLowerCase() === target) return value;\n }\n return null;\n }\n completeWithBody(body) {\n this.phase = \"done\";\n this.settled = { kind: \"message\", message: this.buildMessage(body) };\n }\n fail(message) {\n this.phase = \"done\";\n this.settled = { kind: \"failed\", message };\n }\n };\n var HttpResponseParser = class extends HttpMessageParser {\n constructor(requestMethod) {\n super();\n this.requestMethod = requestMethod;\n }\n requestMethod;\n status = 200;\n statusText = \"\";\n get messageLabel() {\n return \"response\";\n }\n parseStartLine(line) {\n const match = /^HTTP\\/\\d(?:\\.\\d)?\\s+(\\d{3})(?:\\s+(.*))?$/.exec(line || \"HTTP/1.1 200 OK\");\n this.status = match ? parseInt(match[1], 10) : 200;\n this.statusText = match?.[2] ?? \"\";\n return true;\n }\n bodyAllowed() {\n return responseCanHaveBody(this.requestMethod, this.status);\n }\n defaultFramingWhenUnframed() {\n return \"until-close\";\n }\n buildMessage(body) {\n return { status: this.status, statusText: this.statusText, headerPairs: this.headerPairs, body };\n }\n };\n var HttpRequestParser = class extends HttpMessageParser {\n method = \"GET\";\n target = \"/\";\n get messageLabel() {\n return \"request\";\n }\n parseStartLine(line) {\n const match = /^([A-Za-z]+)\\s+(\\S+)\\s+HTTP\\/\\d(?:\\.\\d)?$/.exec(line);\n if (!match) {\n this.fail(`malformed HTTP request line: ${JSON.stringify(line.slice(0, 120))}`);\n return false;\n }\n this.method = match[1].toUpperCase();\n this.target = match[2];\n return true;\n }\n bodyAllowed() {\n return true;\n }\n defaultFramingWhenUnframed() {\n return \"none\";\n }\n buildMessage(body) {\n return { method: this.method, target: this.target, headerPairs: this.headerPairs, body };\n }\n };\n function errorResponse(status, message) {\n return {\n status,\n statusText: \"\",\n headerPairs: [[\"content-type\", \"text/plain; charset=utf-8\"]],\n body: new TextEncoder().encode(`Nimbus virtual socket: ${message}`)\n };\n }\n function toResponse(settled) {\n const headers = new Headers();\n for (const [key, value] of settled.headerPairs) headers.append(key, value);\n return new Response(settled.body, {\n status: settled.status,\n statusText: settled.statusText,\n headers\n });\n }\n var VirtualConnection = class {\n constructor(id, requestMethod, requestBytes, limits) {\n this.id = id;\n this.inbound = new ByteChunkQueue(requestBytes.byteLength, \"request buffer\");\n this.inbound.enqueue(requestBytes);\n this.outbound = new ByteChunkQueue(limits.maxResponseBufferBytes, \"response buffer\");\n this.parser = new HttpResponseParser(requestMethod);\n }\n id;\n /** Request bytes the guest server reads; filled in one shot in stage 1. */\n inbound;\n /** Response bytes the guest server writes; drained into the parser. */\n outbound;\n parser;\n responseReady = new Deferred();\n settled = false;\n closed = false;\n read(maxBytes) {\n return Array.from(this.inbound.readUpTo(Math.max(1, maxBytes | 0)));\n }\n /** The whole request is buffered before the connection is accepted, so nothing is ever awaited. */\n readAsync(maxBytes) {\n return Promise.resolve(this.read(maxBytes));\n }\n readBytesAsync(maxBytes) {\n return Promise.resolve(this.inbound.readUpTo(Math.max(1, maxBytes | 0)));\n }\n /** Same reason: an empty read on an accepted connection is always genuine EOF. */\n atEof() {\n return true;\n }\n write(bytesLike) {\n const bytes = toBytes(bytesLike);\n if (bytes.byteLength === 0 || this.settled || this.closed) return bytes.byteLength;\n this.outbound.enqueue(bytes.slice());\n this.pumpParser();\n return bytes.byteLength;\n }\n /** EOF from the server side (or request teardown); completes until-close bodies. */\n close() {\n if (this.closed) return;\n this.closed = true;\n if (this.settled) return;\n this.parser.finish();\n this.pumpParser();\n }\n /** Abort propagation: settle the pending preview request with a terminal status. */\n abort(message, status) {\n this.closed = true;\n this.settle(errorResponse(status, message));\n }\n async response(timeoutMs) {\n const timer = setTimeout(() => {\n this.settle(errorResponse(504, \"timed out waiting for response\"));\n }, Math.max(1, timeoutMs));\n try {\n return toResponse(await this.responseReady.promise);\n } finally {\n clearTimeout(timer);\n }\n }\n pumpParser() {\n for (; ; ) {\n const chunk = this.outbound.readUpTo(Number.MAX_SAFE_INTEGER);\n if (chunk.byteLength === 0) break;\n this.parser.feed(chunk);\n }\n const outcome = this.parser.outcome;\n if (!outcome) return;\n if (outcome.kind === \"failed\") {\n this.settle(errorResponse(502, outcome.message));\n return;\n }\n const { status, statusText, headerPairs, body } = outcome.message;\n this.settle({\n status,\n statusText,\n // The framing is consumed here; the Worker Response re-frames the body itself.\n headerPairs: headerPairs.filter(([key]) => !/^transfer-encoding$/i.test(key)),\n body\n });\n }\n settle(response) {\n if (this.settled) return;\n this.settled = true;\n this.responseReady.resolve(response);\n }\n };\n var LoopbackClientConnection = class {\n constructor(id, port, route, limits) {\n this.id = id;\n this.port = port;\n this.route = route;\n this.limits = limits;\n }\n id;\n port;\n route;\n limits;\n parser = new HttpRequestParser();\n /** Response bytes the guest client reads. */\n inbound = new ByteChunkQueue(Number.MAX_SAFE_INTEGER, \"loopback response buffer\");\n readable = null;\n drained = null;\n dispatched = false;\n eof = false;\n closed = false;\n write(bytesLike) {\n const bytes = toBytes(bytesLike);\n if (bytes.byteLength === 0 || this.closed) return bytes.byteLength;\n if (this.dispatched) {\n throw new Error(\n `Nimbus loopback socket: port ${this.port} answered with \"Connection: close\"; open a new connection for the next request`\n );\n }\n this.parser.feed(bytes.slice());\n const outcome = this.parser.outcome;\n if (!outcome) return bytes.byteLength;\n this.dispatched = true;\n if (outcome.kind === \"failed\") this.failWith(400, outcome.message);\n else void this.dispatch(outcome.message);\n return bytes.byteLength;\n }\n read(maxBytes) {\n return Array.from(this.readBytes(maxBytes));\n }\n /** Byte-array read. The fd-backed path uses this so a stream never round-trips through number[]. */\n readBytes(maxBytes) {\n const out = this.inbound.readUpTo(Math.max(1, maxBytes | 0));\n if (this.drained && this.inbound.pendingBytes <= LOOPBACK_READ_HIGH_WATER_BYTES) {\n const waiter = this.drained;\n this.drained = null;\n waiter.resolve();\n }\n return out;\n }\n atEof() {\n return (this.eof || this.closed) && this.inbound.pendingBytes === 0;\n }\n /** Blocks the guest until response bytes arrive; an empty result is EOF. */\n async readAsync(maxBytes) {\n return Array.from(await this.readBytesAsync(maxBytes));\n }\n async readBytesAsync(maxBytes) {\n for (; ; ) {\n const chunk = this.readBytes(maxBytes);\n if (chunk.byteLength > 0) return chunk;\n if (this.eof || this.closed) return EMPTY_BYTES;\n if (!this.dispatched) {\n throw new Error(\n \"Nimbus loopback socket: read before a complete HTTP request was written (loopback sockets carry HTTP requests, not arbitrary byte streams)\"\n );\n }\n const waiter = this.readable ??= new Deferred();\n await waiter.promise;\n }\n }\n close() {\n if (this.closed) return;\n this.closed = true;\n this.wakeReader();\n if (this.drained) {\n const waiter = this.drained;\n this.drained = null;\n waiter.resolve();\n }\n }\n async dispatch(parsed) {\n let request;\n try {\n request = this.buildRequest(parsed);\n } catch (error) {\n this.failWith(400, describeError(error));\n return;\n }\n let response;\n try {\n response = await this.withTimeout(this.route(this.port, request));\n } catch (error) {\n this.failWith(502, describeError(error));\n return;\n }\n await this.streamResponse(request.method, response);\n }\n buildRequest(parsed) {\n const headers = new Headers();\n let authority = `127.0.0.1:${this.port}`;\n for (const [key, value] of parsed.headerPairs) {\n if (/^host$/i.test(key)) {\n authority = value;\n continue;\n }\n if (/^(transfer-encoding|connection|content-length|keep-alive)$/i.test(key)) continue;\n headers.append(key, value);\n }\n const target = parsed.target.startsWith(\"/\") ? parsed.target : `/${parsed.target}`;\n const url = /^https?:\\/\\//i.test(parsed.target) ? parsed.target : `http://${authority}${target}`;\n const body = parsed.body && parsed.body.byteLength > 0 ? parsed.body : null;\n const methodTakesBody = parsed.method !== \"GET\" && parsed.method !== \"HEAD\";\n return new Request(url, {\n method: parsed.method,\n headers,\n body: methodTakesBody ? body : null\n });\n }\n async streamResponse(method, response) {\n const withBody = responseCanHaveBody(method, response.status) && response.body !== null;\n const headers = new Headers(response.headers);\n for (const hopByHop of [\"transfer-encoding\", \"content-length\", \"connection\", \"keep-alive\"]) {\n headers.delete(hopByHop);\n }\n this.pushBytes(encodeHttpResponseHead(response.status, response.statusText, headers, withBody));\n if (!withBody || !response.body) {\n this.finishStream();\n return;\n }\n const reader = response.body.getReader();\n try {\n for (; ; ) {\n const { value, done } = await reader.read();\n if (done) break;\n if (this.closed) return;\n const bytes = value instanceof Uint8Array ? value : new Uint8Array(value);\n if (bytes.byteLength === 0) continue;\n this.pushBytes(encodeChunkedFrame(bytes));\n await this.awaitDrain();\n }\n this.pushBytes(CHUNKED_TERMINATOR);\n } catch {\n } finally {\n try {\n await reader.cancel();\n } catch {\n }\n this.finishStream();\n }\n }\n /** Synthesize a complete response so the guest sees an HTTP error, never a hang. */\n failWith(status, detail) {\n const body = new TextEncoder().encode(`Nimbus loopback socket: ${detail}`);\n const headers = new Headers({\n \"content-type\": \"text/plain; charset=utf-8\",\n \"content-length\": String(body.byteLength)\n });\n this.pushBytes(encodeHttpResponseHead(status, \"\", headers, false));\n this.pushBytes(body);\n this.finishStream();\n }\n pushBytes(bytes) {\n if (this.closed) return;\n this.inbound.enqueue(bytes);\n this.wakeReader();\n }\n finishStream() {\n this.eof = true;\n this.wakeReader();\n }\n wakeReader() {\n const waiter = this.readable;\n if (!waiter) return;\n this.readable = null;\n waiter.resolve();\n }\n /** Pause the body pump while the guest is behind, so a big stream cannot grow unbounded. */\n awaitDrain() {\n if (this.inbound.pendingBytes <= LOOPBACK_READ_HIGH_WATER_BYTES) return Promise.resolve();\n return (this.drained ??= new Deferred()).promise;\n }\n withTimeout(promise) {\n let timer = null;\n const timeout = new Promise((_resolve, reject) => {\n timer = setTimeout(\n () => reject(new Error(`port ${this.port} did not respond within ${this.limits.responseTimeoutMs}ms`)),\n Math.max(1, this.limits.responseTimeoutMs)\n );\n });\n return Promise.race([promise, timeout]).finally(() => {\n if (timer !== null) clearTimeout(timer);\n });\n }\n };\n function describeError(error) {\n return error instanceof Error ? error.message : String(error);\n }\n function socketStreamFor(conn) {\n return {\n // Neither direction has a handshake: an accepted connection already holds\n // the request, and a dialed one starts its exchange on the first write.\n opened: Promise.resolve(),\n readable: new ReadableStream(\n {\n async pull(controller) {\n const bytes = await conn.readBytesAsync(LOOPBACK_STREAM_CHUNK_BYTES);\n if (bytes.byteLength === 0) controller.close();\n else controller.enqueue(bytes);\n },\n cancel() {\n conn.close();\n }\n },\n // highWaterMark 0 so the stream never pulls speculatively. A default\n // strategy pulls once at construction, which on a client connection\n // means reading before the guest has written its request.\n { highWaterMark: 0 }\n ),\n writable: new WritableStream({\n write(chunk) {\n conn.write(chunk);\n },\n abort() {\n conn.close();\n }\n }),\n close() {\n conn.close();\n return Promise.resolve();\n }\n };\n }\n var VirtualListener = class {\n constructor(port) {\n this.port = port;\n }\n port;\n queue = [];\n acceptWaiters = [];\n push(conn) {\n const waiter = this.acceptWaiters.shift();\n if (waiter) waiter.resolve(conn);\n else this.queue.push(conn);\n }\n accept() {\n const queued = this.queue.shift();\n if (queued) return Promise.resolve(queued);\n const waiter = new Deferred();\n this.acceptWaiters.push(waiter);\n return waiter.promise;\n }\n take() {\n return this.queue.shift() ?? null;\n }\n pending() {\n return this.queue.length;\n }\n drainQueued() {\n return this.queue.splice(0);\n }\n rejectPendingAccepts(error) {\n for (const waiter of this.acceptWaiters.splice(0)) waiter.reject(error);\n }\n };\n var VirtualSocketKernel = class {\n constructor(host, limits) {\n this.host = host;\n this.limits = { ...DEFAULT_LIMITS, ...limits };\n }\n host;\n /** Public: runner glue inspects listeners.keys() for the default preview port. */\n listeners = /* @__PURE__ */ new Map();\n connections = /* @__PURE__ */ new Map();\n limits;\n nextConnectionId = 1;\n nextEphemeralPort = 49152;\n listenWaiters = [];\n readableWaiters = /* @__PURE__ */ new Set();\n listen(port) {\n let n = Number(port);\n if (!Number.isInteger(n) || n < 0 || n >= 65536) throw new Error(`invalid port: ${port}`);\n if (n === 0) {\n while (this.listeners.has(this.nextEphemeralPort)) {\n this.nextEphemeralPort++;\n if (this.nextEphemeralPort >= 65535) this.nextEphemeralPort = 49152;\n }\n n = this.nextEphemeralPort++;\n if (this.nextEphemeralPort >= 65535) this.nextEphemeralPort = 49152;\n }\n if (!this.listeners.has(n)) {\n this.listeners.set(n, new VirtualListener(n));\n try {\n this.host.__nimbusVirtualSocketDidListen?.(n);\n } catch {\n }\n for (const waiter of this.listenWaiters.splice(0)) waiter.resolve(n);\n }\n return n;\n }\n closeListener(port) {\n const n = Number(port);\n const listener = this.listeners.get(n);\n if (!listener) return;\n this.listeners.delete(n);\n for (const conn of listener.drainQueued()) {\n this.connections.delete(conn.id);\n conn.abort(`listener closed on port ${n}`, 502);\n }\n listener.rejectPendingAccepts(new Error(`port is not listening: ${n}`));\n }\n async accept(port) {\n const listener = this.listeners.get(Number(port));\n if (!listener) throw new Error(`port is not listening: ${port}`);\n const conn = await listener.accept();\n return { id: conn.id, host: \"127.0.0.1\", port: 0 };\n }\n acceptNow(port) {\n const listener = this.listeners.get(Number(port));\n if (!listener) throw new Error(`port is not listening: ${port}`);\n const conn = listener.take();\n return conn ? { id: conn.id, host: \"127.0.0.1\", port: 0 } : null;\n }\n /**\n * Open a client connection to `port` on the session's loopback.\n *\n * The returned id is an ordinary connection id: send() writes the\n * request, recv()/recvAsync() read the response, close() releases it.\n * Only HTTP/1.1 crosses a loopback connection - see\n * LoopbackClientConnection for why - and each one carries a single\n * request/response exchange.\n */\n connect(port) {\n const conn = this.openLoopbackClient(port);\n this.connections.set(conn.id, conn);\n return conn.id;\n }\n /**\n * The same client connection as `connect`, handed back in Cloudflare's\n * `Socket` shape.\n *\n * Guests whose sockets are real WASI file descriptors (ruby.wasm, and any\n * future wasm32-wasi program) reach loopback through this: the WASI shim\n * stores it in exactly the fd slot a `cloudflare:sockets` connection would\n * occupy, so `fd_read` on an in-session port is the same suspending read as\n * `fd_read` on a remote host.\n */\n connectStream(port) {\n return socketStreamFor(this.openLoopbackClient(port));\n }\n /**\n * An already-accepted connection in the same `Socket` shape, so a server's\n * accepted socket is the same kind of file descriptor as a client's dialed\n * one. `accept`/`acceptNow` still hand out the connection id, because accept\n * itself stays on the cooperative pump - this only binds the result.\n */\n streamFor(id) {\n const conn = this.connections.get(Number(id));\n if (!conn) throw new Error(`connection is closed: ${id}`);\n return socketStreamFor(conn);\n }\n openLoopbackClient(port) {\n const n = Number(port);\n if (!Number.isInteger(n) || n <= 0 || n >= 65536) throw new Error(`invalid port: ${port}`);\n const route = this.host.__nimbusVirtualSocketRouteLoopback;\n if (typeof route !== \"function\") {\n throw new Error(\"Nimbus loopback sockets are unavailable in this runtime\");\n }\n return new LoopbackClientConnection(this.nextConnectionId++, n, route, this.limits);\n }\n /** Plain number array: Pyodide bytes() and the ruby.wasm base64 bridge both consume it. */\n recv(id, maxBytes) {\n const conn = this.connections.get(Number(id));\n if (!conn) return [];\n return conn.read(Number(maxBytes));\n }\n /**\n * Suspending read. A client connection has nothing to hand back until\n * the loopback response arrives, so guests that can suspend (Pyodide\n * `run_sync`, a JSPI-suspending WASI call) await this instead of\n * spinning on recv(). An empty result is EOF.\n */\n async recvAsync(id, maxBytes) {\n const conn = this.connections.get(Number(id));\n if (!conn) return [];\n return conn.readAsync(Number(maxBytes));\n }\n /**\n * Whether an empty recv() means end-of-response rather than \"not yet\".\n * Guests that poll instead of suspending (ruby.wasm, whose JS bridge is\n * synchronous) need the two apart to avoid truncating a response.\n */\n atEof(id) {\n const conn = this.connections.get(Number(id));\n return conn ? conn.atEof() : true;\n }\n send(id, bytesLike) {\n const conn = this.connections.get(Number(id));\n if (!conn) throw new Error(`connection is closed: ${id}`);\n return conn.write(bytesLike);\n }\n close(id) {\n const conn = this.connections.get(Number(id));\n if (!conn) return;\n conn.close();\n this.connections.delete(Number(id));\n }\n pending(port) {\n return this.listeners.get(Number(port))?.pending() ?? 0;\n }\n firstListeningPort() {\n for (const port of this.listeners.keys()) return port;\n return null;\n }\n /** select()-style readiness: resolves ports with queued connections, [] on timeout. */\n waitReadable(ports, timeoutSeconds) {\n const normalized = (Array.isArray(ports) ? ports : []).map((p) => Number(p)).filter((p) => Number.isInteger(p));\n const readyNow = normalized.filter((port) => this.pending(port) > 0);\n if (readyNow.length > 0) return Promise.resolve(readyNow);\n const timeoutMs = timeoutSeconds == null ? this.limits.responseTimeoutMs : Math.max(0, Number(timeoutSeconds) * 1e3);\n const deferred = new Deferred();\n const waiter = {\n ports: normalized,\n deferred,\n timer: setTimeout(() => {\n this.readableWaiters.delete(waiter);\n deferred.resolve([]);\n }, timeoutMs)\n };\n this.readableWaiters.add(waiter);\n return deferred.promise;\n }\n async waitForListen(timeoutMs) {\n const existing = this.firstListeningPort();\n if (existing) return existing;\n const waiter = new Deferred();\n this.listenWaiters.push(waiter);\n let timer = null;\n const timeout = new Promise((resolve) => {\n timer = setTimeout(() => resolve(null), Math.max(1, timeoutMs ?? 5e3));\n });\n try {\n return await Promise.race([waiter.promise, timeout]);\n } finally {\n if (timer !== null) clearTimeout(timer);\n }\n }\n async handleHttpRequest(port, request) {\n const n = Number(port);\n let listener = this.listeners.get(n);\n if (!listener) {\n try {\n await this.host.__nimbusVirtualSocketEnsureListener?.(n);\n } catch {\n }\n listener = this.listeners.get(n);\n }\n if (!listener) {\n return new Response(`Nimbus virtual socket: no listener on port ${port}`, { status: 502 });\n }\n const body = request.method === \"GET\" || request.method === \"HEAD\" ? EMPTY_BYTES : new Uint8Array(await request.arrayBuffer());\n if (body.byteLength > this.limits.maxRequestBodyBytes) {\n return new Response(\n `Nimbus virtual socket: request body exceeds ${this.limits.maxRequestBodyBytes} bytes`,\n { status: 413 }\n );\n }\n const id = this.nextConnectionId++;\n const conn = new VirtualConnection(id, request.method, encodeHttpRequest(request, body), this.limits);\n this.connections.set(id, conn);\n listener.push(conn);\n this.notifyReadable(n);\n const signal = request.signal;\n const onAbort = () => conn.abort(\"client aborted the request\", 499);\n if (signal?.aborted) onAbort();\n else signal?.addEventListener(\"abort\", onAbort);\n try {\n try {\n const accepted = await this.host.__nimbusVirtualSocketRequestQueued?.(n);\n if (accepted === false) {\n const detail = typeof this.host.__nimbusVirtualSocketLastError === \"string\" ? this.host.__nimbusVirtualSocketLastError.trim() : \"\";\n const suffix = detail ? `: ${detail}` : \"\";\n return new Response(\n `Nimbus virtual socket: runtime handler did not accept the request${suffix}`,\n { status: 502 }\n );\n }\n } catch {\n }\n return await conn.response(this.limits.responseTimeoutMs);\n } finally {\n signal?.removeEventListener(\"abort\", onAbort);\n conn.close();\n this.connections.delete(id);\n }\n }\n notifyReadable(port) {\n for (const waiter of Array.from(this.readableWaiters)) {\n if (!waiter.ports.includes(port)) continue;\n const ready = waiter.ports.filter((p) => this.pending(p) > 0);\n if (ready.length === 0) continue;\n clearTimeout(waiter.timer);\n this.readableWaiters.delete(waiter);\n waiter.deferred.resolve(ready);\n }\n }\n };\n function installVirtualSocketKernel(scope = globalThis) {\n if (!scope.__nimbusVirtualSockets) {\n scope.__nimbusVirtualSockets = new VirtualSocketKernel(scope);\n }\n return scope.__nimbusVirtualSockets;\n }\n\n // <stdin>\n installVirtualSocketKernel();\n})();\n";