-
-
Notifications
You must be signed in to change notification settings - Fork 31.9k
async_hooks: fixup do not reuse HTTPParser #27477
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
7 commits
Select commit
Hold shift + click to select a range
60479d4
async_hooks: fixup do not reuse HTTPParser
Flarna 40842c6
make initialize() mandatory
Flarna b4c189d
fixup: revert whitespace changes
Flarna a8bc5f1
fixup: rename invalid_async_id to kInvalidAsyncId
Flarna 0d790d2
fixup: add initialize to DummyParser in test-http-parser-lazy-loaded
Flarna 565d515
fixup: adapt bench-parser
Flarna 4677245
fixup: move reuse decission from AsyncReset to constructor
Flarna 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
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 |
---|---|---|
@@ -1,39 +1,76 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const http = require('http'); | ||
const assert = require('assert'); | ||
const { createHook } = require('async_hooks'); | ||
const http = require('http'); | ||
|
||
// Verify that resource emitted for an HTTPParser is not reused. | ||
// Verify that correct create/destroy events are emitted. | ||
|
||
const reused = Symbol('reused'); | ||
|
||
let reusedHTTPParser = false; | ||
const asyncHook = createHook({ | ||
const reusedParser = []; | ||
const incomingMessageParser = []; | ||
const clientRequestParser = []; | ||
const dupDestroys = []; | ||
const destroyed = []; | ||
|
||
createHook({ | ||
init(asyncId, type, triggerAsyncId, resource) { | ||
switch (type) { | ||
case 'HTTPINCOMINGMESSAGE': | ||
incomingMessageParser.push(asyncId); | ||
break; | ||
case 'HTTPCLIENTREQUEST': | ||
clientRequestParser.push(asyncId); | ||
break; | ||
} | ||
|
||
if (resource[reused]) { | ||
reusedHTTPParser = true; | ||
reusedParser.push( | ||
`resource reused: ${asyncId}, ${triggerAsyncId}, ${type}` | ||
); | ||
} | ||
resource[reused] = true; | ||
}, | ||
destroy(asyncId) { | ||
if (destroyed.includes(asyncId)) { | ||
dupDestroys.push(asyncId); | ||
} else { | ||
destroyed.push(asyncId); | ||
} | ||
} | ||
}); | ||
asyncHook.enable(); | ||
}).enable(); | ||
|
||
const server = http.createServer(function(req, res) { | ||
const server = http.createServer((req, res) => { | ||
res.end(); | ||
}); | ||
|
||
const PORT = 3000; | ||
const url = 'http://127.0.0.1:' + PORT; | ||
const url = `http://127.0.0.1:${PORT}`; | ||
|
||
server.listen(PORT, common.mustCall(() => { | ||
http.get(url, common.mustCall(() => { | ||
server.close(common.mustCall(() => { | ||
server.listen(PORT, common.mustCall(() => { | ||
http.get(url, common.mustCall(() => { | ||
server.close(common.mustCall(() => { | ||
assert.strictEqual(reusedHTTPParser, false); | ||
setTimeout(common.mustCall(verify), 200); | ||
})); | ||
})); | ||
})); | ||
})); | ||
})); | ||
})); | ||
|
||
function verify() { | ||
assert.strictEqual(reusedParser.length, 0); | ||
|
||
assert.strictEqual(incomingMessageParser.length, 2); | ||
assert.strictEqual(clientRequestParser.length, 2); | ||
|
||
assert.strictEqual(dupDestroys.length, 0); | ||
incomingMessageParser.forEach((id) => assert.ok(destroyed.includes(id))); | ||
clientRequestParser.forEach((id) => assert.ok(destroyed.includes(id))); | ||
} |
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
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.