-
Notifications
You must be signed in to change notification settings - Fork 5k
worker_threads: defer worker-side stdio/Console setup to first access #34345
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
robobun
wants to merge
5
commits into
main
Choose a base branch
from
farm/876bb94d/worker-threads-lazy-stdio
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+126
−45
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
f57557a
worker_threads: defer stdio/Console creation to first access
robobun 7d727b7
setupWorkerStdio: shadow stdio slots conditionally, matching the getters
robobun 1806acc
worker_threads: prime node:console before the lazy getter; move test …
robobun c4be815
[autofix.ci] apply automated fixes
autofix-ci[bot] 42403df
ci: retrigger
robobun File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,63 @@ | ||
| import { expect, test } from "bun:test"; | ||
| import { once } from "node:events"; | ||
| import { Worker } from "node:worker_threads"; | ||
|
|
||
| // Regression: the stdio rebind used to run eagerly in every worker's preload, | ||
| // cold-loading node:stream + Console and reifying the process static table on | ||
| // every spawn even when the worker never touched stdio. | ||
| test("worker process.stdio and console are installed as lazy accessors", async () => { | ||
| const worker = new Worker( | ||
| ` | ||
| const { parentPort } = require("worker_threads"); | ||
| const d = (obj, k) => { | ||
| const desc = Object.getOwnPropertyDescriptor(obj, k); | ||
| return desc ? (desc.get ? "accessor" : "value") : "none"; | ||
| }; | ||
| const before = { | ||
| stdout: d(process, "stdout"), | ||
| stderr: d(process, "stderr"), | ||
| stdin: d(process, "stdin"), | ||
| console: d(globalThis, "console"), | ||
| }; | ||
| // first read materializes the stream; second read must be the same object | ||
| const s1 = process.stdout; | ||
| const s2 = process.stdout; | ||
| parentPort.postMessage({ | ||
| before, | ||
| afterStdout: d(process, "stdout"), | ||
| sameInstance: s1 === s2, | ||
| isWritable: typeof s1.write === "function", | ||
| }); | ||
| `, | ||
| { eval: true }, | ||
| ); | ||
| const [msg] = await once(worker, "message"); | ||
| expect(msg).toEqual({ | ||
| before: { stdout: "accessor", stderr: "accessor", stdin: "accessor", console: "accessor" }, | ||
| afterStdout: "value", | ||
| sameInstance: true, | ||
| isWritable: true, | ||
| }); | ||
| await worker.terminate(); | ||
| }); | ||
|
|
||
| // node:console is `export default globalThis.console`; evaluating it after the | ||
| // lazy getter is installed would cache a plain Console instance that lacks | ||
| // .Console/.write, so the preload primes the module registry first. | ||
| test("require('node:console') in a worker still exposes Console and write", async () => { | ||
| const worker = new Worker( | ||
| ` | ||
| const { parentPort } = require("worker_threads"); | ||
| const c = require("node:console"); | ||
| parentPort.postMessage({ | ||
| hasConsoleCtor: typeof c.Console === "function", | ||
| hasWrite: typeof c.write === "function", | ||
| hasAsyncIterator: typeof c[Symbol.asyncIterator] === "function", | ||
| }); | ||
| `, | ||
| { eval: true }, | ||
| ); | ||
| const [msg] = await once(worker, "message"); | ||
| expect(msg).toEqual({ hasConsoleCtor: true, hasWrite: true, hasAsyncIterator: true }); | ||
| await worker.terminate(); | ||
| }); |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.