gecko-dev/devtools/client/performance-new/frame-script.js
Julian Descottes 640fe52298 Bug 1454696 - Run eslint --fix for prefer-const;r=yulia
MozReview-Commit-ID: F6xUXCgdRE4

--HG--
extra : rebase_source : 65de1b0aba412d9044b5196115f74276caa058f2
2018-06-01 12:36:09 +02:00

107 lines
3.7 KiB
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
/* global addMessageListener, addEventListener, content */
/**
* This frame script injects itself into perf-html.io and injects the profile
* into the page. It is mostly taken from the Gecko Profiler Addon implementation.
*/
const TRANSFER_EVENT = "devtools:perf-html-transfer-profile";
let gProfile = null;
addMessageListener(TRANSFER_EVENT, e => {
gProfile = e.data;
// Eagerly try and see if the framescript was evaluated after perf loaded its scripts.
connectToPage();
// If not try again at DOMContentLoaded which should be called after the script
// tag was synchronously loaded in.
addEventListener("DOMContentLoaded", connectToPage);
});
function connectToPage() {
const unsafeWindow = content.wrappedJSObject;
if (unsafeWindow.connectToGeckoProfiler) {
unsafeWindow.connectToGeckoProfiler(makeAccessibleToPage({
getProfile: () => Promise.resolve(gProfile),
getSymbolTable: (debugName, breakpadId) => getSymbolTable(debugName, breakpadId),
}, unsafeWindow));
}
}
/**
* For now, do not try to symbolicate. Reject any attempt.
*/
function getSymbolTable(debugName, breakpadId) {
// Errors will not properly clone into the content page as they bring privileged
// stacks information into the page. In this case provide a mock object to maintain
// the Error type object shape.
const error = {
message: `The DevTools' "perf" actor does not support symbolication.`
};
return Promise.reject(error);
}
// The following functions handle the security of cloning the object into the page.
// The code was taken from the original Gecko Profiler Add-on to maintain
// compatibility with the existing profile importing mechanism:
// See: https://github.com/devtools-html/Gecko-Profiler-Addon/blob/78138190b42565f54ce4022a5b28583406489ed2/data/tab-framescript.js
/**
* Create a promise that can be used in the page.
*/
function createPromiseInPage(fun, contentGlobal) {
function funThatClonesObjects(resolve, reject) {
return fun(result => resolve(Cu.cloneInto(result, contentGlobal)),
error => reject(Cu.cloneInto(error, contentGlobal)));
}
return new contentGlobal.Promise(Cu.exportFunction(funThatClonesObjects,
contentGlobal));
}
/**
* Returns a function that calls the original function and tries to make the
* return value available to the page.
*/
function wrapFunction(fun, contentGlobal) {
return function() {
const result = fun.apply(this, arguments);
if (typeof result === "object") {
if (("then" in result) && (typeof result.then === "function")) {
// fun returned a promise.
return createPromiseInPage((resolve, reject) =>
result.then(resolve, reject), contentGlobal);
}
return Cu.cloneInto(result, contentGlobal);
}
return result;
};
}
/**
* Pass a simple object containing values that are objects or functions.
* The objects or functions are wrapped in such a way that they can be
* consumed by the page.
*/
function makeAccessibleToPage(obj, contentGlobal) {
const result = Cu.createObjectIn(contentGlobal);
for (const field in obj) {
switch (typeof obj[field]) {
case "function":
Cu.exportFunction(
wrapFunction(obj[field], contentGlobal), result, { defineAs: field });
break;
case "object":
Cu.cloneInto(obj[field], result, { defineAs: field });
break;
default:
result[field] = obj[field];
break;
}
}
return result;
}