-
-
Notifications
You must be signed in to change notification settings - Fork 31.7k
bootstrap: support configure-time user-land snapshot #42466
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
Closed
Closed
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
208d047
bootstrap: refresh options in pre-execution
joyeecheung 4d59a74
build: add --node-snapshot-main configure option
joyeecheung c812b98
bootstrap: make I/O streams work with user-land snapshot
joyeecheung 39cd563
bootstrap: run inspector and event loop in snapshot builder
joyeecheung da8c19f
fixup! build: add --node-snapshot-main configure option
joyeecheung b1f934f
bootsrap: reset process._exit and process.exitCode in pre-execution
joyeecheung 4d0500d
fixup! build: add --node-snapshot-main configure option
joyeecheung 25f4c8d
fixup! bootstrap: run inspector and event loop in snapshot builder
joyeecheung 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
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
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,142 @@ | ||
'use strict'; | ||
|
||
const { | ||
Error, | ||
SafeSet, | ||
SafeArrayIterator | ||
} = primordials; | ||
|
||
const binding = internalBinding('mksnapshot'); | ||
const { NativeModule } = require('internal/bootstrap/loaders'); | ||
const { | ||
compileSnapshotMain, | ||
} = binding; | ||
|
||
const { | ||
getOptionValue | ||
} = require('internal/options'); | ||
|
||
const { | ||
readFileSync | ||
} = require('fs'); | ||
|
||
const supportedModules = new SafeSet(new SafeArrayIterator([ | ||
// '_http_agent', | ||
// '_http_client', | ||
// '_http_common', | ||
// '_http_incoming', | ||
// '_http_outgoing', | ||
// '_http_server', | ||
'_stream_duplex', | ||
'_stream_passthrough', | ||
'_stream_readable', | ||
'_stream_transform', | ||
'_stream_wrap', | ||
'_stream_writable', | ||
// '_tls_common', | ||
// '_tls_wrap', | ||
'assert', | ||
'assert/strict', | ||
// 'async_hooks', | ||
'buffer', | ||
// 'child_process', | ||
// 'cluster', | ||
'console', | ||
'constants', | ||
'crypto', | ||
// 'dgram', | ||
// 'diagnostics_channel', | ||
// 'dns', | ||
// 'dns/promises', | ||
// 'domain', | ||
'events', | ||
'fs', | ||
'fs/promises', | ||
// 'http', | ||
// 'http2', | ||
// 'https', | ||
// 'inspector', | ||
// 'module', | ||
// 'net', | ||
'os', | ||
'path', | ||
'path/posix', | ||
'path/win32', | ||
// 'perf_hooks', | ||
'process', | ||
'punycode', | ||
'querystring', | ||
// 'readline', | ||
// 'repl', | ||
'stream', | ||
'stream/promises', | ||
'string_decoder', | ||
'sys', | ||
'timers', | ||
'timers/promises', | ||
// 'tls', | ||
// 'trace_events', | ||
// 'tty', | ||
'url', | ||
'util', | ||
'util/types', | ||
'v8', | ||
// 'vm', | ||
// 'worker_threads', | ||
// 'zlib', | ||
])); | ||
|
||
const warnedModules = new SafeSet(); | ||
function supportedInUserSnapshot(id) { | ||
return supportedModules.has(id); | ||
} | ||
|
||
function requireForUserSnapshot(id) { | ||
if (!NativeModule.canBeRequiredByUsers(id)) { | ||
// eslint-disable-next-line no-restricted-syntax | ||
const err = new Error( | ||
`Cannot find module '${id}'. ` | ||
); | ||
err.code = 'MODULE_NOT_FOUND'; | ||
throw err; | ||
} | ||
if (!supportedInUserSnapshot(id)) { | ||
if (!warnedModules.has(id)) { | ||
process.emitWarning( | ||
`built-in module ${id} is not yet supported in user snapshots`); | ||
warnedModules.add(id); | ||
} | ||
} | ||
|
||
return require(id); | ||
} | ||
|
||
function main() { | ||
const { | ||
prepareMainThreadExecution | ||
} = require('internal/bootstrap/pre_execution'); | ||
|
||
prepareMainThreadExecution(true, false); | ||
process.once('beforeExit', function runCleanups() { | ||
for (const cleanup of binding.cleanups) { | ||
cleanup(); | ||
} | ||
}); | ||
|
||
const file = process.argv[1]; | ||
const path = require('path'); | ||
const filename = path.resolve(file); | ||
const dirname = path.dirname(filename); | ||
const source = readFileSync(file, 'utf-8'); | ||
const snapshotMainFunction = compileSnapshotMain(filename, source); | ||
|
||
if (getOptionValue('--inspect-brk')) { | ||
internalBinding('inspector').callAndPauseOnStart( | ||
snapshotMainFunction, undefined, | ||
requireForUserSnapshot, filename, dirname); | ||
} else { | ||
snapshotMainFunction(requireForUserSnapshot, filename, dirname); | ||
} | ||
} | ||
|
||
main(); |
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
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.