forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR-URL: nodejs#48765 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
- Loading branch information
1 parent
aa41110
commit a26b26d
Showing
3 changed files
with
88 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 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 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,76 @@ | ||
import * as common from '../common/index.mjs'; | ||
import assert from 'node:assert'; | ||
import net from 'node:net'; | ||
import url from 'node:url'; | ||
import { fork } from 'node:child_process'; | ||
|
||
common.skipIfInspectorDisabled(); | ||
if (process.env.BE_CHILD) { | ||
await beChild(); | ||
} else { | ||
let firstPort; | ||
|
||
const filename = url.fileURLToPath(import.meta.url); | ||
const child = fork(filename, { env: { ...process.env, BE_CHILD: 1 } }); | ||
|
||
child.once('message', common.mustCall((msg) => { | ||
assert.strictEqual(msg.cmd, 'started'); | ||
|
||
child.send({ cmd: 'open', args: [] }); | ||
child.once('message', common.mustCall(wasOpenedHandler)); | ||
})); | ||
|
||
function wasOpenedHandler(msg) { | ||
assert.strictEqual(msg.cmd, 'url'); | ||
const port = url.parse(msg.url).port; | ||
ping(port, common.mustSucceed(() => { | ||
// Inspector is already open, and won't be reopened, so args don't matter. | ||
child.send({ cmd: 'dispose' }); | ||
child.once('message', common.mustCall(wasDisposedWhenOpenHandler)); | ||
firstPort = port; | ||
})); | ||
} | ||
|
||
function wasDisposedWhenOpenHandler(msg) { | ||
assert.strictEqual(msg.cmd, 'url'); | ||
assert.strictEqual(msg.url, undefined); | ||
ping(firstPort, (err) => { | ||
assert(err); | ||
child.send({ cmd: 'dispose' }); | ||
child.once('message', common.mustCall(wasReDisposedHandler)); | ||
}); | ||
} | ||
|
||
function wasReDisposedHandler(msg) { | ||
assert.strictEqual(msg.cmd, 'url'); | ||
assert.strictEqual(msg.url, undefined); | ||
process.exit(); | ||
} | ||
} | ||
|
||
function ping(port, callback) { | ||
net.connect({ port, family: 4 }) | ||
.on('connect', function() { close(this); }) | ||
.on('error', function(err) { close(this, err); }); | ||
|
||
function close(self, err) { | ||
self.end(); | ||
self.on('close', () => callback(err)); | ||
} | ||
} | ||
|
||
async function beChild() { | ||
const inspector = await import('node:inspector'); | ||
let inspectorDisposer; | ||
process.send({ cmd: 'started' }); | ||
|
||
process.on('message', (msg) => { | ||
if (msg.cmd === 'open') { | ||
inspectorDisposer = inspector.open(0, false, undefined); | ||
} | ||
if (msg.cmd === 'dispose') { | ||
inspectorDisposer[Symbol.dispose](); | ||
} | ||
process.send({ cmd: 'url', url: inspector.url() }); | ||
}); | ||
} |