In a following patch, all DevTools moz.build files will use DevToolsModules to install JS modules at a path that corresponds directly to their source tree location. Here we rewrite all require and import calls to match the new location that these files are installed to.
103 lines
2.6 KiB
JavaScript
103 lines
2.6 KiB
JavaScript
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
|
/* vim: set ft=javascript ts=2 et sw=2 tw=80: */
|
|
/* 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/. */
|
|
|
|
/* global promise, PromisesPanel, PromisesFront, DevToolsUtils */
|
|
|
|
"use strict";
|
|
|
|
const { utils: Cu } = Components;
|
|
const { loader, require } =
|
|
Cu.import("resource://gre/modules/devtools/shared/Loader.jsm", {});
|
|
|
|
const { Task } = require("resource://gre/modules/Task.jsm");
|
|
|
|
loader.lazyRequireGetter(this, "promise");
|
|
loader.lazyRequireGetter(this, "EventEmitter",
|
|
"devtools/shared/event-emitter");
|
|
loader.lazyRequireGetter(this, "DevToolsUtils",
|
|
"devtools/shared/DevToolsUtils");
|
|
loader.lazyRequireGetter(this, "PromisesFront",
|
|
"devtools/server/actors/promises", true);
|
|
|
|
// Global toolbox, set when startup is called.
|
|
var gToolbox;
|
|
|
|
/**
|
|
* Initialize the promise debugger controller and view upon loading the iframe.
|
|
*/
|
|
var startup = Task.async(function*(toolbox) {
|
|
gToolbox = toolbox;
|
|
|
|
yield PromisesController.initialize(toolbox);
|
|
yield PromisesPanel.initialize();
|
|
});
|
|
|
|
/**
|
|
* Destroy the promise debugger controller and view when unloading the iframe.
|
|
*/
|
|
var shutdown = Task.async(function*() {
|
|
yield PromisesController.destroy();
|
|
yield PromisesPanel.destroy();
|
|
|
|
gToolbox = null;
|
|
});
|
|
|
|
function setPanel(toolbox) {
|
|
return startup(toolbox).catch(e =>
|
|
DevToolsUtils.reportException("setPanel", e));
|
|
}
|
|
|
|
function destroy() {
|
|
return shutdown().catch(e => DevToolsUtils.reportException("destroy", e));
|
|
}
|
|
|
|
/**
|
|
* The promisedebugger controller's job is to retrieve PromisesFronts from the
|
|
* server.
|
|
*/
|
|
var PromisesController = {
|
|
initialize: Task.async(function*() {
|
|
if (this.initialized) {
|
|
return this.initialized.promise;
|
|
}
|
|
|
|
this.initialized = promise.defer();
|
|
|
|
let target = gToolbox.target;
|
|
this.promisesFront = new PromisesFront(target.client, target.form);
|
|
yield this.promisesFront.attach();
|
|
|
|
if (this.destroyed) {
|
|
console.warn("Could not fully initialize the PromisesController");
|
|
return null;
|
|
}
|
|
|
|
this.initialized.resolve();
|
|
}),
|
|
|
|
destroy: Task.async(function*() {
|
|
if (!this.initialized) {
|
|
return null;
|
|
}
|
|
|
|
if (this.destroyed) {
|
|
return this.destroyed.promise;
|
|
}
|
|
|
|
this.destroyed = promise.defer();
|
|
|
|
if (this.promisesFront) {
|
|
yield this.promisesFront.detach();
|
|
this.promisesFront.destroy();
|
|
this.promisesFront = null;
|
|
}
|
|
|
|
this.destroyed.resolve();
|
|
}),
|
|
};
|
|
|
|
EventEmitter.decorate(PromisesController);
|