From 22db34caa7676ea3fc33c064d007a3ba16c2880b Mon Sep 17 00:00:00 2001 From: Stephen Belanger Date: Tue, 25 Feb 2020 13:46:46 +0800 Subject: [PATCH] async_hooks: add sync enterWith to ALS This allows transitioning the entire following sync and async execution sub-tree to the given async storage context. With this one can be sure the context binding will remain for any following sync activity and all descending async execution whereas the `run*(...)` methods must wrap everything that is intended to exist within the context. This is helpful for scenarios such as prepending a `'connection'` event to an http server which binds everything that occurs within each request to the given context. This is helpful for APMs to minimize the need for patching and especially adding closures. PR-URL: https://github.com/nodejs/node/pull/31945 Reviewed-By: Vladimir de Turckheim Reviewed-By: Matteo Collina Reviewed-By: Michael Dawson --- doc/api/async_hooks.md | 42 +++++++++++++++++++ lib/async_hooks.js | 6 +-- .../test-async-local-storage-enter-with.js | 20 +++++++++ 3 files changed, 65 insertions(+), 3 deletions(-) create mode 100644 test/async-hooks/test-async-local-storage-enter-with.js diff --git a/doc/api/async_hooks.md b/doc/api/async_hooks.md index ac432a4865d137..f0c2373448711a 100644 --- a/doc/api/async_hooks.md +++ b/doc/api/async_hooks.md @@ -957,6 +957,48 @@ If this method is called outside of an asynchronous context initialized by calling `asyncLocalStorage.run` or `asyncLocalStorage.runAndReturn`, it will return `undefined`. +### `asyncLocalStorage.enterWith(store)` + + +* `store` {any} + +Calling `asyncLocalStorage.enterWith(store)` will transition into the context +for the remainder of the current synchronous execution and will persist +through any following asynchronous calls. + +Example: + +```js +const store = { id: 1 }; +asyncLocalStorage.enterWith(store); +asyncLocalStorage.getStore(); // Returns the store object +someAsyncOperation(() => { + asyncLocalStorage.getStore(); // Returns the same object +}); +``` + +This transition will continue for the _entire_ synchronous execution. +This means that if, for example, the context is entered within an event +handler subsequent event handlers will also run within that context unless +specifically bound to another context with an `AsyncResource`. + +```js +const store = { id: 1 }; + +emitter.on('my-event', () => { + asyncLocalStorage.enterWith(store); +}); +emitter.on('my-event', () => { + asyncLocalStorage.getStore(); // Returns the same object +}); + +asyncLocalStorage.getStore(); // Returns undefined +emitter.emit('my-event'); +asyncLocalStorage.getStore(); // Returns the same object +``` + ### `asyncLocalStorage.run(store, callback[, ...args])`