mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
e9ac80bb39
Instead of exposing internals of async_hooks & async_wrap throughout the code base, create necessary helper methods within the internal async_hooks that allows easy usage by Node.js internals. This stops every single internal user of async_hooks from importing a ton of functions, constants and internal Aliased Buffers from C++ async_wrap. Adds functions initHooksExist, afterHooksExist, and destroyHooksExist to determine whether the related emit methods need to be triggered. Adds clearDefaultTriggerAsyncId and clearAsyncIdStack on the JS side as an alternative to always calling C++. Moves async_id_symbol and trigger_async_id_symbol to internal async_hooks as they are never used in C++. Renames newUid to newAsyncId for added clarity of its purpose. Adjusts usage throughout the codebase, as well as in a couple of tests. PR-URL: https://github.com/nodejs/node/pull/18720 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
223 lines
6.3 KiB
JavaScript
223 lines
6.3 KiB
JavaScript
'use strict';
|
|
|
|
const errors = require('internal/errors');
|
|
const async_wrap = process.binding('async_wrap');
|
|
const internal_async_hooks = require('internal/async_hooks');
|
|
|
|
// Get functions
|
|
// For userland AsyncResources, make sure to emit a destroy event when the
|
|
// resource gets gced.
|
|
const { registerDestroyHook } = async_wrap;
|
|
const {
|
|
executionAsyncId,
|
|
triggerAsyncId,
|
|
// Private API
|
|
getHookArrays,
|
|
enableHooks,
|
|
disableHooks,
|
|
// Internal Embedder API
|
|
newAsyncId,
|
|
getDefaultTriggerAsyncId,
|
|
emitInit,
|
|
emitBefore,
|
|
emitAfter,
|
|
emitDestroy,
|
|
} = internal_async_hooks;
|
|
|
|
// Get symbols
|
|
const {
|
|
async_id_symbol, trigger_async_id_symbol,
|
|
init_symbol, before_symbol, after_symbol, destroy_symbol,
|
|
promise_resolve_symbol
|
|
} = internal_async_hooks.symbols;
|
|
|
|
// Get constants
|
|
const {
|
|
kInit, kBefore, kAfter, kDestroy, kTotals, kPromiseResolve,
|
|
} = async_wrap.constants;
|
|
|
|
// Listener API //
|
|
|
|
class AsyncHook {
|
|
constructor({ init, before, after, destroy, promiseResolve }) {
|
|
if (init !== undefined && typeof init !== 'function')
|
|
throw new errors.TypeError('ERR_ASYNC_CALLBACK', 'init');
|
|
if (before !== undefined && typeof before !== 'function')
|
|
throw new errors.TypeError('ERR_ASYNC_CALLBACK', 'before');
|
|
if (after !== undefined && typeof after !== 'function')
|
|
throw new errors.TypeError('ERR_ASYNC_CALLBACK', 'before');
|
|
if (destroy !== undefined && typeof destroy !== 'function')
|
|
throw new errors.TypeError('ERR_ASYNC_CALLBACK', 'before');
|
|
if (promiseResolve !== undefined && typeof promiseResolve !== 'function')
|
|
throw new errors.TypeError('ERR_ASYNC_CALLBACK', 'promiseResolve');
|
|
|
|
this[init_symbol] = init;
|
|
this[before_symbol] = before;
|
|
this[after_symbol] = after;
|
|
this[destroy_symbol] = destroy;
|
|
this[promise_resolve_symbol] = promiseResolve;
|
|
}
|
|
|
|
enable() {
|
|
// The set of callbacks for a hook should be the same regardless of whether
|
|
// enable()/disable() are run during their execution. The following
|
|
// references are reassigned to the tmp arrays if a hook is currently being
|
|
// processed.
|
|
const [hooks_array, hook_fields] = getHookArrays();
|
|
|
|
// Each hook is only allowed to be added once.
|
|
if (hooks_array.includes(this))
|
|
return this;
|
|
|
|
const prev_kTotals = hook_fields[kTotals];
|
|
hook_fields[kTotals] = 0;
|
|
|
|
// createHook() has already enforced that the callbacks are all functions,
|
|
// so here simply increment the count of whether each callbacks exists or
|
|
// not.
|
|
hook_fields[kTotals] += hook_fields[kInit] += +!!this[init_symbol];
|
|
hook_fields[kTotals] += hook_fields[kBefore] += +!!this[before_symbol];
|
|
hook_fields[kTotals] += hook_fields[kAfter] += +!!this[after_symbol];
|
|
hook_fields[kTotals] += hook_fields[kDestroy] += +!!this[destroy_symbol];
|
|
hook_fields[kTotals] +=
|
|
hook_fields[kPromiseResolve] += +!!this[promise_resolve_symbol];
|
|
hooks_array.push(this);
|
|
|
|
if (prev_kTotals === 0 && hook_fields[kTotals] > 0) {
|
|
enableHooks();
|
|
}
|
|
|
|
return this;
|
|
}
|
|
|
|
disable() {
|
|
const [hooks_array, hook_fields] = getHookArrays();
|
|
|
|
const index = hooks_array.indexOf(this);
|
|
if (index === -1)
|
|
return this;
|
|
|
|
const prev_kTotals = hook_fields[kTotals];
|
|
hook_fields[kTotals] = 0;
|
|
|
|
hook_fields[kTotals] += hook_fields[kInit] -= +!!this[init_symbol];
|
|
hook_fields[kTotals] += hook_fields[kBefore] -= +!!this[before_symbol];
|
|
hook_fields[kTotals] += hook_fields[kAfter] -= +!!this[after_symbol];
|
|
hook_fields[kTotals] += hook_fields[kDestroy] -= +!!this[destroy_symbol];
|
|
hook_fields[kTotals] +=
|
|
hook_fields[kPromiseResolve] -= +!!this[promise_resolve_symbol];
|
|
hooks_array.splice(index, 1);
|
|
|
|
if (prev_kTotals > 0 && hook_fields[kTotals] === 0) {
|
|
disableHooks();
|
|
}
|
|
|
|
return this;
|
|
}
|
|
}
|
|
|
|
|
|
function createHook(fns) {
|
|
return new AsyncHook(fns);
|
|
}
|
|
|
|
|
|
// Embedder API //
|
|
|
|
const destroyedSymbol = Symbol('destroyed');
|
|
|
|
let emitBeforeAfterWarning = true;
|
|
function showEmitBeforeAfterWarning() {
|
|
if (emitBeforeAfterWarning) {
|
|
process.emitWarning(
|
|
'asyncResource.emitBefore and emitAfter are deprecated. Please use ' +
|
|
'asyncResource.runInAsyncScope instead',
|
|
'DeprecationWarning', 'DEP0098');
|
|
emitBeforeAfterWarning = false;
|
|
}
|
|
}
|
|
|
|
class AsyncResource {
|
|
constructor(type, opts = {}) {
|
|
if (typeof type !== 'string')
|
|
throw new errors.TypeError('ERR_INVALID_ARG_TYPE', 'type', 'string');
|
|
|
|
if (typeof opts === 'number') {
|
|
opts = { triggerAsyncId: opts, requireManualDestroy: false };
|
|
} else if (opts.triggerAsyncId === undefined) {
|
|
opts.triggerAsyncId = getDefaultTriggerAsyncId();
|
|
}
|
|
|
|
// Unlike emitInitScript, AsyncResource doesn't supports null as the
|
|
// triggerAsyncId.
|
|
const triggerAsyncId = opts.triggerAsyncId;
|
|
if (!Number.isSafeInteger(triggerAsyncId) || triggerAsyncId < -1) {
|
|
throw new errors.RangeError('ERR_INVALID_ASYNC_ID',
|
|
'triggerAsyncId',
|
|
triggerAsyncId);
|
|
}
|
|
|
|
this[async_id_symbol] = newAsyncId();
|
|
this[trigger_async_id_symbol] = triggerAsyncId;
|
|
// this prop name (destroyed) has to be synchronized with C++
|
|
this[destroyedSymbol] = { destroyed: false };
|
|
|
|
emitInit(
|
|
this[async_id_symbol], type, this[trigger_async_id_symbol], this
|
|
);
|
|
|
|
if (!opts.requireManualDestroy) {
|
|
registerDestroyHook(this, this[async_id_symbol], this[destroyedSymbol]);
|
|
}
|
|
}
|
|
|
|
emitBefore() {
|
|
showEmitBeforeAfterWarning();
|
|
emitBefore(this[async_id_symbol], this[trigger_async_id_symbol]);
|
|
return this;
|
|
}
|
|
|
|
emitAfter() {
|
|
showEmitBeforeAfterWarning();
|
|
emitAfter(this[async_id_symbol]);
|
|
return this;
|
|
}
|
|
|
|
runInAsyncScope(fn, thisArg, ...args) {
|
|
emitBefore(this[async_id_symbol], this[trigger_async_id_symbol]);
|
|
let ret;
|
|
try {
|
|
ret = Reflect.apply(fn, thisArg, args);
|
|
} finally {
|
|
emitAfter(this[async_id_symbol]);
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
emitDestroy() {
|
|
this[destroyedSymbol].destroyed = true;
|
|
emitDestroy(this[async_id_symbol]);
|
|
return this;
|
|
}
|
|
|
|
asyncId() {
|
|
return this[async_id_symbol];
|
|
}
|
|
|
|
triggerAsyncId() {
|
|
return this[trigger_async_id_symbol];
|
|
}
|
|
}
|
|
|
|
|
|
// Placing all exports down here because the exported classes won't export
|
|
// otherwise.
|
|
module.exports = {
|
|
// Public API
|
|
createHook,
|
|
executionAsyncId,
|
|
triggerAsyncId,
|
|
// Embedder API
|
|
AsyncResource,
|
|
};
|