-
Notifications
You must be signed in to change notification settings - Fork 31.2k
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
stream: improve ReadableStream.tee
perf by remove ReflectConstruct
usage
#49546
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -1199,34 +1199,41 @@ ObjectDefineProperties(ReadableByteStreamController.prototype, { | |||||||||||||||||||||||
[SymbolToStringTag]: getNonWritablePropertyDescriptor(ReadableByteStreamController.name), | ||||||||||||||||||||||||
}); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
function TeeReadableStream(start, pull, cancel) { | ||||||||||||||||||||||||
markTransferMode(this, false, true); | ||||||||||||||||||||||||
this[kType] = 'ReadableStream'; | ||||||||||||||||||||||||
this[kState] = { | ||||||||||||||||||||||||
disturbed: false, | ||||||||||||||||||||||||
state: 'readable', | ||||||||||||||||||||||||
storedError: undefined, | ||||||||||||||||||||||||
stream: undefined, | ||||||||||||||||||||||||
transfer: { | ||||||||||||||||||||||||
writable: undefined, | ||||||||||||||||||||||||
port: undefined, | ||||||||||||||||||||||||
promise: undefined, | ||||||||||||||||||||||||
}, | ||||||||||||||||||||||||
}; | ||||||||||||||||||||||||
this[kIsClosedPromise] = createDeferredPromise(); | ||||||||||||||||||||||||
setupReadableStreamDefaultControllerFromSource( | ||||||||||||||||||||||||
this, | ||||||||||||||||||||||||
ObjectCreate(null, { | ||||||||||||||||||||||||
start: { __proto__: null, value: start }, | ||||||||||||||||||||||||
pull: { __proto__: null, value: pull }, | ||||||||||||||||||||||||
cancel: { __proto__: null, value: cancel }, | ||||||||||||||||||||||||
}), | ||||||||||||||||||||||||
1, | ||||||||||||||||||||||||
() => 1); | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
ObjectSetPrototypeOf(TeeReadableStream.prototype, ReadableStream.prototype); | ||||||||||||||||||||||||
ObjectSetPrototypeOf(TeeReadableStream, ReadableStream); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
function createTeeReadableStream(start, pull, cancel) { | ||||||||||||||||||||||||
return ReflectConstruct( | ||||||||||||||||||||||||
function() { | ||||||||||||||||||||||||
markTransferMode(this, false, true); | ||||||||||||||||||||||||
this[kType] = 'ReadableStream'; | ||||||||||||||||||||||||
this[kState] = { | ||||||||||||||||||||||||
disturbed: false, | ||||||||||||||||||||||||
state: 'readable', | ||||||||||||||||||||||||
storedError: undefined, | ||||||||||||||||||||||||
stream: undefined, | ||||||||||||||||||||||||
transfer: { | ||||||||||||||||||||||||
writable: undefined, | ||||||||||||||||||||||||
port: undefined, | ||||||||||||||||||||||||
promise: undefined, | ||||||||||||||||||||||||
}, | ||||||||||||||||||||||||
}; | ||||||||||||||||||||||||
this[kIsClosedPromise] = createDeferredPromise(); | ||||||||||||||||||||||||
setupReadableStreamDefaultControllerFromSource( | ||||||||||||||||||||||||
this, | ||||||||||||||||||||||||
ObjectCreate(null, { | ||||||||||||||||||||||||
start: { __proto__: null, value: start }, | ||||||||||||||||||||||||
pull: { __proto__: null, value: pull }, | ||||||||||||||||||||||||
cancel: { __proto__: null, value: cancel }, | ||||||||||||||||||||||||
}), | ||||||||||||||||||||||||
1, | ||||||||||||||||||||||||
() => 1); | ||||||||||||||||||||||||
}, [], ReadableStream, | ||||||||||||||||||||||||
); | ||||||||||||||||||||||||
const tee = new TeeReadableStream(start, pull, cancel); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
// For spec compliance the Tee must be a ReadableStream | ||||||||||||||||||||||||
tee.constructor = ReadableStream; | ||||||||||||||||||||||||
Comment on lines
+1234
to
+1235
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Otherwise, the wpt node/test/fixtures/wpt/streams/readable-streams/tee.any.js Lines 8 to 18 in 6dde810
And the spec says
|
||||||||||||||||||||||||
return tee; | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
const isReadableStream = | ||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is there a reason this can't be a normal class? Would help with the inheritance/prototype hacks needed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll have to call super and the original implementation don't call the constructor
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it would simplify the code significantly, not blocking or anything
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so you mean to just convert it to class with
extends
but withoutsuper
?when I do the WPT tests fails so keeping it as is