Migrate to Promise-based async implementation #1776
+2,381
−2,303
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.
Fixes #1715 and #834
Hi there!
Hopefully this is a welcome request. I've seen @daniellockyer mention a few times that you all would be open to a pull request that moves this library to using a Promise-based async implementation. I'm personally interested in using this library for Storyteller, so I spent some time this past week working on just that.
What does this PR do?
This PR replaces the
callback
property on the Baton structs with adeferred
property, of typeNapi::Promise::Deferred
. Everywhere that was previously calling the callback now either rejects or resolves thedeferred
instead.The one exception to this is
Statement::Each
, which now returns anAsyncIterable
. This allows consumers to use thefor await (...)
construct to loop through result rows.Constructors have been made "private" (in Typescript, at least, and this should be changed in the docs as well). Javascript constructors can't return Promises/be async, so instead, the async initialization code for
Database
,Statement
, andBackup
has been split out into their own methods, and newcreate
static methods have been added that construct the object and then asynchronously initialize it.All of the tests have been updated and are passing. The only one that I could use some explanation on is the
async_calls
test; I'm not sure what it was meant to be testing before!My C++ is rusty at best; I did my best to follow best practices and the patterns laid out in this library, but I may have stumbled. I would absolutely appreciate any and all feedback on my C++ code here!