gecko-dev/browser/extensions/screenshots/catcher.js
Jared Hirsch 849a6e51da Bug 1498410 - Part 4 - Export comma-dangle refactoring as a separate commit to ease reviews; r=ianbicking
MozReview-Commit-ID: 455LZbfCGfy

Differential Revision: https://phabricator.services.mozilla.com/D8506

--HG--
extra : rebase_source : 698bd15f7d81b9815a9f176359c28f2cc97132e4
extra : source : 01fa6937f05fc51562205eac8e895c62324452f8
2018-10-15 20:10:29 +00:00

97 lines
2 KiB
JavaScript

"use strict";
// eslint-disable-next-line no-var
var global = this;
this.catcher = (function() {
const exports = {};
let handler;
let queue = [];
const log = global.log;
exports.unhandled = function(error, info) {
if (!error.noReport) {
log.error("Unhandled error:", error, info);
}
const e = makeError(error, info);
if (!handler) {
queue.push(e);
} else {
handler(e);
}
};
/** Turn an exception into an error object */
function makeError(exc, info) {
let result;
if (exc.fromMakeError) {
result = exc;
} else {
result = {
fromMakeError: true,
name: exc.name || "ERROR",
message: String(exc),
stack: exc.stack,
};
for (const attr in exc) {
result[attr] = exc[attr];
}
}
if (info) {
for (const attr of Object.keys(info)) {
result[attr] = info[attr];
}
}
return result;
}
/** Wrap the function, and if it raises any exceptions then call unhandled() */
exports.watchFunction = function watchFunction(func, quiet) {
return function() {
try {
return func.apply(this, arguments);
} catch (e) {
if (!quiet) {
exports.unhandled(e);
}
throw e;
}
};
};
exports.watchPromise = function watchPromise(promise, quiet) {
return promise.catch((e) => {
if (quiet) {
if (!e.noReport) {
log.debug("------Error in promise:", e);
log.debug(e.stack);
}
} else {
if (!e.noReport) {
log.error("------Error in promise:", e);
log.error(e.stack);
}
exports.unhandled(makeError(e));
}
throw e;
});
};
exports.registerHandler = function(h) {
if (handler) {
log.error("registerHandler called after handler was already registered");
return;
}
handler = h;
for (const error of queue) {
handler(error);
}
queue = [];
};
return exports;
})();
null;