-
Notifications
You must be signed in to change notification settings - Fork 505
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
introduce AsyncResource class #729
Conversation
I took a quick look and this looks mostly good. I will take a closer look later and see if I can get the oldest versions working. The old |
I was planning on a separate PR with the deprecations. What is this project's stance on whether marking something as deprecated is semver-major? If that is considered okay for a semver-minor, I can include those changes here. Note that intend to follow-up with other PRs that add similar support to |
Deprecation with warnings is fine in minor updates, with the actual removal happening in a subsequent major release. I agree that all functionality should be available before marking as deprecated, but since deprecations with suitable replacements are fine in minor updates, that should happen at the same time. |
The problem is that marking the legacy MakeCallback as deprecated will lead to quite a bit of warnings unless I go and modify all the tests as well. The tests will probably require the changes to Alternatively, we can add NAN_DEPRECATED now, and live with the warnings until the subsequent PRs are landed. Or we could do it in stages as I original proposed. Whatever works for you. |
Ah, yes. In that case I think your original plan of doing the deprecation separately is the best.
…On February 7, 2018 2:18:57 AM GMT+02:00, Ali Ijaz Sheikh ***@***.***> wrote:
The problem is that marking the legacy MakeCallback as deprecated will
lead to quite a bit of warnings unless I go and modify all the tests as
well. The tests will probably require the changes to `Nan::Callback`
and `AsyncWorker`. That would balloon the scope of this PR; something I
would like to avoid.
Alternatively, we can add NAN_DEPRECATED now, and live with the
warnings until the subsequent PRs are landed. Or we could do it in
stages as I original proposed. Whatever works for you.
|
I'm getting compile problems with Node <=0.12 without my changes:
Known issue? I'll go take care of the rest that I caused :). |
I think I have seen that error in some test run in the last three months, but only on OS X and only 0.12. It has definitely passed before. Based on the lines and error messages, I think I wrote it off as a random fluke or such with that particular V8 version and OS X, but it seems to need closer investigation. |
These are the lines in question: #include <nan.h> https://github.com/nodejs/nan/blob/master/nan.h#L51 #include <node.h> https://github.com/nodejs/node/blob/v0.12/src/node.h#L61 #include "v8.h" // NOLINT(build/include_order) https://github.com/nodejs/node/blob/v0.12/deps/v8/include/v8.h#L5800 return Handle<T>(reinterpret_cast<T*>(HandleScope::CreateHandle( Based on this, I guess the issue is in that old version of V8 or in that version of clang. |
I can reliably reproduce it on my machine; I suspect that the compiler being used now is newer and it no longer likes the code it sees. The compiler is indeed making a valid complaint about the contents of I am not sure how we can actually make the change given that neither V8 nor Node are going to do a release for that version line :/. |
I think the only recourse is to document it as a known issue and stop testing 0.12 on OS X. If someone needs it built, they have to get an older compiler or build Node from source with a patched V8. |
f510440
to
8b810a2
Compare
This seems to pass all test now (modulo 0.12 on OS X). I looked through the code again and everything seems good. One thing did come to mind: I am not familiar with the new async contexts, so I do not know if it was iterated there, but would it make sense to use RAII and have an |
10a38e8
to
622a125
Compare
@kkoopa 👍 . Added a I am still debating whether we should continue to expose the lower-level |
Assuming that |
The new Perhaps the documentation will be enough to guide users towards |
Documentation would probably be enough, but after pondering this some more I agree that it is best to remove them all. They can always be added back if someone files a ticket for a valid use case which cannot be done with |
This commit adds support for the AsyncResource API to allow native modules to asynchronously call back into JavaScript while preserving node's async context. This acts as a higher level alternative to the MakeCallback API. This is analogous to the AsyncResource JavaScript class exposed by [async_hooks][] and similar to the `napi_async_init`, `napi_async_destroy` and `napi_make_callback` APIs, albeit wrapped in a convenient RAII form-factor. Ref: nodejs/node#13254 [N-API]: https://nodejs.org/dist/latest-v9.x/docs/api/n-api.html#n_api_custom_asynchronous_operations [async_hooks]: https://nodejs.org/api/async_hooks.html
b583db3
to
0ef3d51
Compare
The CI is green. Thanks for all your reviews on this! |
Thanks for all your work coding this. I'll look at merging tomorrow.
…On February 8, 2018 3:51:34 AM GMT+02:00, Ali Ijaz Sheikh ***@***.***> wrote:
The CI is green.
Thanks for all your reviews on this!
|
This commit adds support for the async context accepting versions of
node::MakeCallback. An async_context concept has been added as a
wrapper around node::async_context, along with APIs for initializing
and destroying async context, similar to how N-API exposes this
functionality.
Ref: nodejs/node#13254