-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
Adding Core support for Promises #5020
Conversation
Callbackify turns synchronous and promise-returning functions into callback-accepting functions. Promisify turns callback-accepting functions into promise-returning functions iff the last argument is not a function.
lib/internal/promisify.js
Outdated
case 1: return resolve(); | ||
case 2: return resolve(arguments[1]); | ||
} | ||
return resolve([...arguments].slice(1)); |
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.
eslint chokes on ...
— it may need upgraded?
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.
try to add spread: true
to ecmaFeatures
in our eslint config
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.
@chrisdickinson Looks like the ecmaFeatures
section of .eslintrc is missing spread: true
.
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.
@chrisdickinson Also I'd be worried that the use of arguments
here causing a deoptimisation. It should be better to use a rest param and refer to that.
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.
Afaik rest params are currently still quite slow in our versions of V8, can we avoid them for now?
Hey, |
@gergelyke This provides an escape hatch at application for folks that prefer different promise implementations, while also making sure that core doesn't suck the air out of the promise library ecosystem. Libraries can compete on features and performance without one implementation or the other winning by default. This also means that, in a vm-neutral future, developers working on applications can shield themselves from differences between VMs to some degree by using a third-party promises library. |
Is |
@timoxley, @kittens: Mostly this is so we can use a "verified good for our purposes" promise implementation, and guard it with "hey, don't try and set the implementation twice" warnings. This also means that core always creates known-native promises at the outset and only casts them to user-chosen implementations. This may prove useful when combined with v8 dev tools (OTOH, it could be a case of YAGNI!) |
@gergelyke Note that native v8 promises performance / memory consumption is far from perfect atm. See https://github.com/petkaantonov/bluebird/tree/master/benchmark for a comparison (note the difference between |
@timoxley the |
@madbence That's why |
@chrisdickinson I guess this raises the question of why add this feature specifically for Promises? should node provide pluggable implementations for other APIs as well? |
In the end this API isn't any more async than it currently is. Also I am curious how promisify is supposed to handle swallowing errors if the user's actual callback is fired on a different stack. |
7da4fd4
to
c7066fb
Compare
c133999
to
83c7a88
Compare
@chrisdickinson, there's a lot to take in here 😄 . Is there an update on the general topic of Node.js core API supporting promises instead of callbacks? Thanks, |
Closing given the lack of forward progress on this. We'll definitely want to revisit this later tho. |
Update 02/02/16 15:07:00 PST: Current state of the PR.
Update 02/01/16 14:10:00 PST: Current state of the PR.
Newcomers: As a heads up, GitHub has started clipping the thread down. I'm going to start cataloguing common questions tonight, and I'll include them under this notice so that you can quickly look to see if there's an answer to your issue without having to search through the entire thread. Thanks for taking a look & weighing in! Whether you're for this change or against it, your feedback is valuable and I'll respond to it as soon as I'm able.
FAQ / TL;DR for newcomers
What is the current proposal?
If landed, this will land behind a flag, moving out from behind the flag in the next major version as an unsupported API, finally becoming fully supported one major version after that. It does not replace or supersede the callback API, which will continue to be the canonical Node interface.
Promise-returning variants will be exposed for all "single-operation" Node methods — that is to say, Streams and EventEmitter-based APIs are not included in this discussion.
To use promises:
Using promises with destructuring assignment (where available):
As a prerequisite to this PR landing, domains must work as expected with native Promises (they currently do not.) AsyncWrap is not blocked on this PR, neither is this PR blocked on AsyncWrap. Both PRs are blocked on getting adequate instrumentation of the microtask queue from V8 (we need a callback for "microtask enqueued" events so we can track their creation, and ideally a way to step the microtask queue forward ourselves, running code between invocations.)
Why use the promisify approach?
Response summed up here.
Why not
fs.readFileAsync
?@phpnode notes that it could break existing users of
bluebird.promisifyAll
. Plus, the naming is contentious.Why not return promises when callbacks are not given?
Should programmer errors throw, or reject?
Summed up here.
What is the value in adding them to core?
@rvagg has been massively helpful in driving this conversation forward:
async/await
is spec'd and roadmapped.How do you address the need to keep core small while expanding the exposed API?
Where do we draw the line in supporting language-level constructs?
@yoshuawuyts, @rvagg, and @DonutEspresso have largely driven this conversation:
Why are modules (like
require('fs/promise')
) not in scope for this discussion?@phpnode, @RReverser, @mikeal, @ktrott, (and others, I'm sure!) have brought this up, and I've been pushing to have this conversation in a different, later issue. The conversation has mainly revolved around consensus, and the difficulty in attaining it when adding modules to the mix.
This is the original text of the PR. It does not reflect the current state of the conversation. See above for common themes!
This PR introduces Core support for Promises. Where possible, callbacks have
been made optional; when omitted, a
Promise
is returned. For some APIs (likehttp.get
andcrypto.randomBytes
) this approach is not feasible. In thosecases promise-returning
*Async
versions have been added(
crypto.randomBytesAsync
). The naming there isn't set in stone, but it'sbased on how
bluebird
'spromisifyAll
method generates names.
This PR allows users to swap the implementation of promises used by core.
This helps in a few dimensions:
the promise implementation at app-level and forget about it.
promises in Core doesn't mean Core needs to pick a winner.
preferred library; folks who want to use whatever native debugging is added
at the V8 level for native promises can avoid swapping in promises.
ecosystem that uses promises generated by core and has a benchmarking suite
is a potential benchmark for promise libraries.
The API for swapping implementations is
process.setPromiseImplementation()
.It may be used many times, however after the first time deprecation warnings
are logged with the origin of the first call. This way if a package misbehaves
and sets the implementation for an application, it's easy to track down.
Example:
Streams are notably missing from this PR – promisifying streams is more
involved since the ecosystem already relies on a common (and more importantly,
often pinned) definition of how that type works. Changing streams will take
effort and attention from the @nodejs/streams WG. All other callback-exposing
modules and methods have been promisified (or an alternative made available),
though.
Three new internal modules have been added:
lib/internal/promises
— tracks the original builtinPromise
object, aswell as the currently selected
Promise
implementation. All promisescreated by Node are initially native, and then passed to the selected
implementation's
.resolve
function to cast them.lib/internal/promisify
— turn a callback-accepting function into one thataccepts callbacks or generates promises. Errors thrown on the same tick
are still thrown, not returned as rejected promises — in other words,
programmer errors, such as invalid encodings, are still eagerly thrown.
lib/internal/callbackify
— turn a synchronous or promise-returning functioninto a callback-accepting function. This is only used in
lib/readline
forthe
completer
functionality. This could probably fall off this PR, but itwould be useful for subsequent changes to streams.
Breaking Changes
not throw now.
fs
APIs called without a callback will no longer crash the process with anexception.
ChildProcess#send
with no callback no longer returnsBoolean
, insteadreturns
Promise
that resolves when.send
has completed.child_process.ChildProcess#send
cluster.disconnect
dgram.Socket#bind
dgram.Socket#close
dgram.Socket#send
dgram.Socket#sendto
dns.lookupService
dns.lookup
dns.resolve
fs.access
fs.appendFile
fs.chmod
fs.chown
fs.close
fs.exists
fs.fchmod
fs.fchown
fs.fdatasync
fs.fstat
fs.fsync
fs.ftruncate
fs.futimes
fs.lchmod
fs.lchown
fs.link
fs.lstat
fs.mkdir
fs.open
fs.readFile
fs.readdir
fs.readlink
fs.realpath
fs.rename
fs.rmdir
fs.stat
fs.symlink
fs.unlink
fs.utimes
fs.writeFile
net.Socket#setTimeout
readline.Interface#question
repl.REPLServer#complete
zlib.deflateRaw
zlib.deflate
zlib.gunzip
zlib.gzip
zlib.inflateRaw
zlib.inflate
zlib.unzip
New APIs
process.setPromiseImplementation
net.connectAsync
tls.connectAsync
crypto.randomBytesAsync
crypto.pbkdf2Async
crypto.pseudoRandomBytesAsync
crypto.rngAsync
crypto.prngAsync
http.getAsync
https.getAsync
http.requestAsync
https.requestAsync
child_process.execAsync
child_process.execFileAsync
Next steps
I haven't finished this PR yet: the primary missing piece is tests for the
promise-based APIs, to ensure that they resolve to the correct values. Docs
also need updated. I'll be working on this in my free time over the next week.
Here are the bits that I'd like folks reading this to keep in mind:
it.
previously imagined.
async/await by EOY (Correct me if I'm wrong, here!)
replace callbacks or streams with promises. They can co-exist. While Promises
are complicated, much of that complication falls out of the problem space that
both callbacks and promises abstract over. Give this a fair shake.