| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- /**
- * Light-weight helpers for handling JavaScript Errors in node.js and the
- * browser.
- */
- class OError extends Error {
- /**
- * @param {string} message as for built-in Error
- * @param {Object} [info] extra data to attach to the error
- * @param {Error} [cause] the internal error that caused this error
- */
- constructor(message, info, cause) {
- super(message)
- this.name = this.constructor.name
- if (info) this.info = info
- if (cause) this.cause = cause
- /** @private @type {Array<TaggedError>} */
- this._oErrorTags // eslint-disable-line
- }
- /**
- * Set the extra info object for this error.
- *
- * @param {Object | null | undefined} info extra data to attach to the error
- * @return {this}
- */
- withInfo(info) {
- this.info = info
- return this
- }
- /**
- * Wrap the given error, which caused this error.
- *
- * @param {Error} cause the internal error that caused this error
- * @return {this}
- */
- withCause(cause) {
- this.cause = cause
- return this
- }
- /**
- * Tag debugging information onto any error (whether an OError or not) and
- * return it.
- *
- * @param {Error} error the error to tag
- * @param {string} [message] message with which to tag `error`
- * @param {Object} [info] extra data with wich to tag `error`
- * @return {Error} the modified `error` argument
- */
- static tag(error, message, info) {
- const oError = /** @type{OError} */ (error)
- if (!oError._oErrorTags) oError._oErrorTags = []
- let tag
- if (Error.captureStackTrace) {
- // Hide this function in the stack trace.
- tag = { name: 'TaggedError', message, info }
- Error.captureStackTrace(tag, OError.tag)
- } else {
- tag = new TaggedError(message, info)
- }
- oError._oErrorTags.push(tag)
- return error
- }
- /**
- * The merged info from any `tag`s on the given error.
- *
- * If an info property is repeated, the last one wins.
- *
- * @param {Error | null | undefined} error any errror (may or may not be an `OError`)
- * @return {Object}
- */
- static getFullInfo(error) {
- const info = {}
- if (!error) return info
- const oError = /** @type{OError} */ (error)
- if (typeof oError.info === 'object') Object.assign(info, oError.info)
- if (oError._oErrorTags) {
- for (const tag of oError._oErrorTags) {
- Object.assign(info, tag.info)
- }
- }
- return info
- }
- /**
- * Return the `stack` property from `error`, including the `stack`s for any
- * tagged errors added with `OError.tag` and for any `cause`s.
- *
- * @param {Error | null | undefined} error any error (may or may not be an `OError`)
- * @return {string}
- */
- static getFullStack(error) {
- if (!error) return ''
- const oError = /** @type{OError} */ (error)
- let stack = oError.stack
- if (oError._oErrorTags) {
- for (const tag of oError._oErrorTags) {
- stack += `\n${tag.stack}`
- }
- }
- const causeStack = oError.cause && OError.getFullStack(oError.cause)
- if (causeStack) {
- stack += '\ncaused by:\n' + indent(causeStack)
- }
- return stack
- }
- }
- /**
- * Used to record a stack trace every time we tag info onto an Error.
- *
- * @private
- * @extends OError
- */
- class TaggedError extends OError {}
- function indent(string) {
- return string.replace(/^/gm, ' ')
- }
- module.exports = OError
|