mirror of
https://github.com/nodejs/node.git
synced 2025-04-30 23:56:58 +00:00

This PR defines two new modes for the --unhandled-rejections flag. The first mode is called "throw". The "throw" mode first emits unhandledRejection. If this hook is not set, the "throw" mode will raise the unhandled rejection as an uncaught exception. The second mode is called "warn-with-error-code". The "warn-with-error-code" mode first emits unhandledRejection. If this hook is not set, the "warn-with-error-code" mode will trigger a warning and set the process's exit code to 1. The PR doesn't change the default behavior for unhandled rejections. That will come in a separate PR. Refs: https://github.com/nodejs/node/pull/33021 PR-URL: https://github.com/nodejs/node/pull/33475 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
301 lines
9.4 KiB
JavaScript
301 lines
9.4 KiB
JavaScript
'use strict';
|
|
|
|
const {
|
|
Error,
|
|
ObjectDefineProperty,
|
|
WeakMap,
|
|
} = primordials;
|
|
|
|
const {
|
|
tickInfo,
|
|
promiseRejectEvents: {
|
|
kPromiseRejectWithNoHandler,
|
|
kPromiseHandlerAddedAfterReject,
|
|
kPromiseResolveAfterResolved,
|
|
kPromiseRejectAfterResolved
|
|
},
|
|
setPromiseRejectCallback
|
|
} = internalBinding('task_queue');
|
|
|
|
const {
|
|
noSideEffectsToString,
|
|
triggerUncaughtException
|
|
} = internalBinding('errors');
|
|
|
|
// *Must* match Environment::TickInfo::Fields in src/env.h.
|
|
const kHasRejectionToWarn = 1;
|
|
|
|
const maybeUnhandledPromises = new WeakMap();
|
|
const pendingUnhandledRejections = [];
|
|
const asyncHandledRejections = [];
|
|
let lastPromiseId = 0;
|
|
|
|
// --unhandled-rejections=none:
|
|
// Emit 'unhandledRejection', but do not emit any warning.
|
|
const kIgnoreUnhandledRejections = 0;
|
|
|
|
// --unhandled-rejections=warn:
|
|
// Emit 'unhandledRejection', then emit 'UnhandledPromiseRejectionWarning'.
|
|
const kAlwaysWarnUnhandledRejections = 1;
|
|
|
|
// --unhandled-rejections=strict:
|
|
// Emit 'uncaughtException'. If it's not handled, print the error to stderr
|
|
// and exit the process.
|
|
// Otherwise, emit 'unhandledRejection'. If 'unhandledRejection' is not
|
|
// handled, emit 'UnhandledPromiseRejectionWarning'.
|
|
const kStrictUnhandledRejections = 2;
|
|
|
|
// --unhandled-rejections=throw:
|
|
// Emit 'unhandledRejection', if it's unhandled, emit
|
|
// 'uncaughtException'. If it's not handled, print the error to stderr
|
|
// and exit the process.
|
|
const kThrowUnhandledRejections = 3;
|
|
|
|
// --unhandled-rejections=warn-with-error-code:
|
|
// Emit 'unhandledRejection', if it's unhandled, emit
|
|
// 'UnhandledPromiseRejectionWarning', then set process exit code to 1.
|
|
|
|
const kWarnWithErrorCodeUnhandledRejections = 4;
|
|
|
|
// --unhandled-rejections is unset:
|
|
// Emit 'unhandledRejection', if it's unhandled, emit
|
|
// 'UnhandledPromiseRejectionWarning', then emit deprecation warning.
|
|
const kDefaultUnhandledRejections = 5;
|
|
|
|
let unhandledRejectionsMode;
|
|
|
|
function setHasRejectionToWarn(value) {
|
|
tickInfo[kHasRejectionToWarn] = value ? 1 : 0;
|
|
}
|
|
|
|
function hasRejectionToWarn() {
|
|
return tickInfo[kHasRejectionToWarn] === 1;
|
|
}
|
|
|
|
function getUnhandledRejectionsMode() {
|
|
const { getOptionValue } = require('internal/options');
|
|
switch (getOptionValue('--unhandled-rejections')) {
|
|
case 'none':
|
|
return kIgnoreUnhandledRejections;
|
|
case 'warn':
|
|
return kAlwaysWarnUnhandledRejections;
|
|
case 'strict':
|
|
return kStrictUnhandledRejections;
|
|
case 'throw':
|
|
return kThrowUnhandledRejections;
|
|
case 'warn-with-error-code':
|
|
return kWarnWithErrorCodeUnhandledRejections;
|
|
default:
|
|
return kDefaultUnhandledRejections;
|
|
}
|
|
}
|
|
|
|
function promiseRejectHandler(type, promise, reason) {
|
|
if (unhandledRejectionsMode === undefined) {
|
|
unhandledRejectionsMode = getUnhandledRejectionsMode();
|
|
}
|
|
switch (type) {
|
|
case kPromiseRejectWithNoHandler:
|
|
unhandledRejection(promise, reason);
|
|
break;
|
|
case kPromiseHandlerAddedAfterReject:
|
|
handledRejection(promise);
|
|
break;
|
|
case kPromiseResolveAfterResolved:
|
|
resolveError('resolve', promise, reason);
|
|
break;
|
|
case kPromiseRejectAfterResolved:
|
|
resolveError('reject', promise, reason);
|
|
break;
|
|
}
|
|
}
|
|
|
|
function resolveError(type, promise, reason) {
|
|
// We have to wrap this in a next tick. Otherwise the error could be caught by
|
|
// the executed promise.
|
|
process.nextTick(() => {
|
|
process.emit('multipleResolves', type, promise, reason);
|
|
});
|
|
}
|
|
|
|
function unhandledRejection(promise, reason) {
|
|
maybeUnhandledPromises.set(promise, {
|
|
reason,
|
|
uid: ++lastPromiseId,
|
|
warned: false
|
|
});
|
|
// This causes the promise to be referenced at least for one tick.
|
|
pendingUnhandledRejections.push(promise);
|
|
setHasRejectionToWarn(true);
|
|
}
|
|
|
|
function handledRejection(promise) {
|
|
const promiseInfo = maybeUnhandledPromises.get(promise);
|
|
if (promiseInfo !== undefined) {
|
|
maybeUnhandledPromises.delete(promise);
|
|
if (promiseInfo.warned) {
|
|
const { uid } = promiseInfo;
|
|
// Generate the warning object early to get a good stack trace.
|
|
// eslint-disable-next-line no-restricted-syntax
|
|
const warning = new Error('Promise rejection was handled ' +
|
|
`asynchronously (rejection id: ${uid})`);
|
|
warning.name = 'PromiseRejectionHandledWarning';
|
|
warning.id = uid;
|
|
asyncHandledRejections.push({ promise, warning });
|
|
setHasRejectionToWarn(true);
|
|
return;
|
|
}
|
|
}
|
|
if (maybeUnhandledPromises.size === 0 && asyncHandledRejections.length === 0)
|
|
setHasRejectionToWarn(false);
|
|
}
|
|
|
|
const unhandledRejectionErrName = 'UnhandledPromiseRejectionWarning';
|
|
function emitUnhandledRejectionWarning(uid, reason) {
|
|
const warning = getErrorWithoutStack(
|
|
unhandledRejectionErrName,
|
|
'Unhandled promise rejection. This error originated either by ' +
|
|
'throwing inside of an async function without a catch block, ' +
|
|
'or by rejecting a promise which was not handled with .catch(). ' +
|
|
'To terminate the node process on unhandled promise ' +
|
|
'rejection, use the CLI flag `--unhandled-rejections=strict` (see ' +
|
|
'https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). ' +
|
|
`(rejection id: ${uid})`
|
|
);
|
|
try {
|
|
if (reason instanceof Error) {
|
|
warning.stack = reason.stack;
|
|
process.emitWarning(reason.stack, unhandledRejectionErrName);
|
|
} else {
|
|
process.emitWarning(
|
|
noSideEffectsToString(reason), unhandledRejectionErrName);
|
|
}
|
|
} catch {}
|
|
|
|
process.emitWarning(warning);
|
|
}
|
|
|
|
let deprecationWarned = false;
|
|
function emitDeprecationWarning() {
|
|
process.emitWarning(
|
|
'Unhandled promise rejections are deprecated. In the future, ' +
|
|
'promise rejections that are not handled will terminate the ' +
|
|
'Node.js process with a non-zero exit code.',
|
|
'DeprecationWarning', 'DEP0018');
|
|
}
|
|
|
|
// If this method returns true, we've executed user code or triggered
|
|
// a warning to be emitted which requires the microtask and next tick
|
|
// queues to be drained again.
|
|
function processPromiseRejections() {
|
|
let maybeScheduledTicksOrMicrotasks = asyncHandledRejections.length > 0;
|
|
|
|
while (asyncHandledRejections.length > 0) {
|
|
const { promise, warning } = asyncHandledRejections.shift();
|
|
if (!process.emit('rejectionHandled', promise)) {
|
|
process.emitWarning(warning);
|
|
}
|
|
}
|
|
|
|
let len = pendingUnhandledRejections.length;
|
|
while (len--) {
|
|
const promise = pendingUnhandledRejections.shift();
|
|
const promiseInfo = maybeUnhandledPromises.get(promise);
|
|
if (promiseInfo === undefined) {
|
|
continue;
|
|
}
|
|
promiseInfo.warned = true;
|
|
const { reason, uid } = promiseInfo;
|
|
switch (unhandledRejectionsMode) {
|
|
case kStrictUnhandledRejections: {
|
|
const err = reason instanceof Error ?
|
|
reason : generateUnhandledRejectionError(reason);
|
|
triggerUncaughtException(err, true /* fromPromise */);
|
|
const handled = process.emit('unhandledRejection', reason, promise);
|
|
if (!handled) emitUnhandledRejectionWarning(uid, reason);
|
|
break;
|
|
}
|
|
case kIgnoreUnhandledRejections: {
|
|
process.emit('unhandledRejection', reason, promise);
|
|
break;
|
|
}
|
|
case kAlwaysWarnUnhandledRejections: {
|
|
process.emit('unhandledRejection', reason, promise);
|
|
emitUnhandledRejectionWarning(uid, reason);
|
|
break;
|
|
}
|
|
case kThrowUnhandledRejections: {
|
|
const handled = process.emit('unhandledRejection', reason, promise);
|
|
if (!handled) {
|
|
const err = reason instanceof Error ?
|
|
reason : generateUnhandledRejectionError(reason);
|
|
triggerUncaughtException(err, true /* fromPromise */);
|
|
}
|
|
break;
|
|
}
|
|
case kWarnWithErrorCodeUnhandledRejections: {
|
|
const handled = process.emit('unhandledRejection', reason, promise);
|
|
if (!handled) {
|
|
emitUnhandledRejectionWarning(uid, reason);
|
|
process.exitCode = 1;
|
|
}
|
|
break;
|
|
}
|
|
case kDefaultUnhandledRejections: {
|
|
const handled = process.emit('unhandledRejection', reason, promise);
|
|
if (!handled) {
|
|
emitUnhandledRejectionWarning(uid, reason);
|
|
if (!deprecationWarned) {
|
|
emitDeprecationWarning();
|
|
deprecationWarned = true;
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
maybeScheduledTicksOrMicrotasks = true;
|
|
}
|
|
return maybeScheduledTicksOrMicrotasks ||
|
|
pendingUnhandledRejections.length !== 0;
|
|
}
|
|
|
|
function getErrorWithoutStack(name, message) {
|
|
// Reset the stack to prevent any overhead.
|
|
const tmp = Error.stackTraceLimit;
|
|
Error.stackTraceLimit = 0;
|
|
// eslint-disable-next-line no-restricted-syntax
|
|
const err = new Error(message);
|
|
Error.stackTraceLimit = tmp;
|
|
ObjectDefineProperty(err, 'name', {
|
|
value: name,
|
|
enumerable: false,
|
|
writable: true,
|
|
configurable: true,
|
|
});
|
|
return err;
|
|
}
|
|
|
|
function generateUnhandledRejectionError(reason) {
|
|
const message =
|
|
'This error originated either by ' +
|
|
'throwing inside of an async function without a catch block, ' +
|
|
'or by rejecting a promise which was not handled with .catch().' +
|
|
' The promise rejected with the reason ' +
|
|
`"${noSideEffectsToString(reason)}".`;
|
|
|
|
const err = getErrorWithoutStack('UnhandledPromiseRejection', message);
|
|
err.code = 'ERR_UNHANDLED_REJECTION';
|
|
return err;
|
|
}
|
|
|
|
function listenForRejections() {
|
|
setPromiseRejectCallback(promiseRejectHandler);
|
|
}
|
|
|
|
module.exports = {
|
|
hasRejectionToWarn,
|
|
setHasRejectionToWarn,
|
|
listenForRejections,
|
|
processPromiseRejections
|
|
};
|