-
Notifications
You must be signed in to change notification settings - Fork 30k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
process: add 'warning' event and process.emitWarning()
In several places throughout the code we write directly to stderr to report warnings (deprecation, possible eventemitter memory leak). The current design of simply dumping the text to stderr is less than ideal. This PR introduces a new "process warnings" mechanism that emits 'warning' events on the global process object. These are invoked with a `warning` argument whose value is an Error object. By default, these warnings will be printed to stderr. This can be suppressed using the `--no-warnings` and `--no-deprecation` command line flags. For warnings, the 'warning' event will still be emitted by the process, allowing applications to handle the warnings in custom ways. The existing `--no-deprecation` flag will continue to supress all deprecation output generated by the core lib. The `--trace-warnings` command line flag will tell Node.js to print the full stack trace of warnings as part of the default handling. The existing `--no-deprecation`, `--throw-deprecation` and `--trace-deprecation` flags continue to work as they currently do, but the exact output of the warning message is modified to occur on process.nextTick(). The stack trace for the warnings and deprecations preserve and point to the correct call site. A new `process.emitWarning()` API is provided to permit userland to emit warnings and deprecations using the same consistent mechanism. Test cases and documentation are included. PR-URL: #4782 Reviewed-By: Rod Vagg <rod@vagg.org> Reviewed-By: Wyatt Preul <wpreul@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
- Loading branch information
Showing
14 changed files
with
393 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
'use strict'; | ||
|
||
const traceWarnings = process.traceProcessWarnings; | ||
const noDeprecation = process.noDeprecation; | ||
const traceDeprecation = process.traceDeprecation; | ||
const throwDeprecation = process.throwDeprecation; | ||
const prefix = `(${process.release.name}:${process.pid}) `; | ||
|
||
exports.setup = setupProcessWarnings; | ||
|
||
function setupProcessWarnings() { | ||
if (!process.noProcessWarnings) { | ||
process.on('warning', (warning) => { | ||
if (!(warning instanceof Error)) return; | ||
const isDeprecation = warning.name === 'DeprecationWarning'; | ||
if (isDeprecation && noDeprecation) return; | ||
const trace = traceWarnings || (isDeprecation && traceDeprecation); | ||
if (trace && warning.stack) { | ||
console.error(`${prefix}${warning.stack}`); | ||
} else { | ||
var toString = warning.toString; | ||
if (typeof toString !== 'function') | ||
toString = Error.prototype.toString; | ||
console.error(`${prefix}${toString.apply(warning)}`); | ||
} | ||
}); | ||
} | ||
|
||
// process.emitWarning(error) | ||
// process.emitWarning(str[, name][, ctor]) | ||
process.emitWarning = function(warning, name, ctor) { | ||
if (typeof name === 'function') { | ||
ctor = name; | ||
name = 'Warning'; | ||
} | ||
if (warning === undefined || typeof warning === 'string') { | ||
warning = new Error(warning); | ||
warning.name = name || 'Warning'; | ||
Error.captureStackTrace(warning, ctor || process.emitWarning); | ||
} | ||
if (!(warning instanceof Error)) { | ||
throw new TypeError('\'warning\' must be an Error object or string.'); | ||
} | ||
if (throwDeprecation && warning.name === 'DeprecationWarning') | ||
throw warning; | ||
else | ||
process.nextTick(() => process.emit('warning', warning)); | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.