2012-11-30 00:07:59 -08:00
|
|
|
/* -*- Mode: javascript; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 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/. */
|
|
|
|
"use strict";
|
|
|
|
|
2012-12-13 05:03:55 -08:00
|
|
|
const { classes: Cc, interfaces: Ci, utils: Cu, results: Cr } = Components;
|
2012-11-30 00:07:59 -08:00
|
|
|
|
|
|
|
this.EXPORTED_SYMBOLS = ["DebuggerPanel"];
|
|
|
|
|
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
2013-04-11 13:59:08 -07:00
|
|
|
Cu.import("resource:///modules/devtools/shared/event-emitter.js");
|
2012-11-30 00:07:59 -08:00
|
|
|
|
2013-07-11 00:12:20 -07:00
|
|
|
XPCOMUtils.defineLazyModuleGetter(this, "promise",
|
|
|
|
"resource://gre/modules/commonjs/sdk/core/promise.js", "Promise");
|
2013-03-06 23:30:03 -08:00
|
|
|
|
2013-05-13 00:01:00 -07:00
|
|
|
this.DebuggerPanel = function DebuggerPanel(iframeWindow, toolbox) {
|
2012-12-13 05:03:55 -08:00
|
|
|
this.panelWin = iframeWindow;
|
2012-11-30 00:07:59 -08:00
|
|
|
this._toolbox = toolbox;
|
2012-12-13 05:03:55 -08:00
|
|
|
|
|
|
|
this._view = this.panelWin.DebuggerView;
|
2013-03-28 01:30:37 -07:00
|
|
|
this._controller = this.panelWin.DebuggerController;
|
2012-11-30 00:07:59 -08:00
|
|
|
this._controller._target = this.target;
|
|
|
|
this._bkp = this._controller.Breakpoints;
|
|
|
|
|
2013-05-25 01:05:34 -07:00
|
|
|
this.highlightWhenPaused = this.highlightWhenPaused.bind(this);
|
|
|
|
this.unhighlightWhenResumed = this.unhighlightWhenResumed.bind(this);
|
|
|
|
|
2012-12-13 23:05:00 -08:00
|
|
|
EventEmitter.decorate(this);
|
2012-11-30 00:07:59 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
DebuggerPanel.prototype = {
|
2012-12-13 05:03:55 -08:00
|
|
|
/**
|
2013-03-28 01:30:37 -07:00
|
|
|
* Open is effectively an asynchronous constructor.
|
|
|
|
*
|
|
|
|
* @return object
|
2013-07-11 00:12:20 -07:00
|
|
|
* A promise that is resolved when the Debugger completes opening.
|
2012-12-13 05:03:55 -08:00
|
|
|
*/
|
|
|
|
open: function DebuggerPanel_open() {
|
2013-07-11 00:12:20 -07:00
|
|
|
let targetPromise;
|
2013-03-28 01:30:37 -07:00
|
|
|
|
|
|
|
// Local debugging needs to make the target remote.
|
|
|
|
if (!this.target.isRemote) {
|
2013-07-11 00:12:20 -07:00
|
|
|
targetPromise = this.target.makeRemote();
|
2013-03-28 01:30:37 -07:00
|
|
|
} else {
|
2013-07-11 00:12:20 -07:00
|
|
|
targetPromise = promise.resolve(this.target);
|
2013-03-06 23:30:03 -08:00
|
|
|
}
|
|
|
|
|
2013-07-11 00:12:20 -07:00
|
|
|
return targetPromise
|
2013-03-28 01:30:37 -07:00
|
|
|
.then(() => this._controller.startupDebugger())
|
|
|
|
.then(() => this._controller.connect())
|
|
|
|
.then(() => {
|
2013-05-25 01:05:34 -07:00
|
|
|
this.target.on("thread-paused", this.highlightWhenPaused);
|
|
|
|
this.target.on("thread-resumed", this.unhighlightWhenResumed);
|
2013-03-28 01:30:37 -07:00
|
|
|
this.isReady = true;
|
|
|
|
this.emit("ready");
|
|
|
|
return this;
|
|
|
|
})
|
|
|
|
.then(null, function onError(aReason) {
|
|
|
|
Cu.reportError("DebuggerPanel open failed. " +
|
|
|
|
reason.error + ": " + reason.message);
|
|
|
|
});
|
2012-12-13 05:03:55 -08:00
|
|
|
},
|
|
|
|
|
2012-11-30 00:07:59 -08:00
|
|
|
// DevToolPanel API
|
|
|
|
get target() this._toolbox.target,
|
|
|
|
|
|
|
|
destroy: function() {
|
2013-05-25 01:05:34 -07:00
|
|
|
this.target.off("thread-paused", this.highlightWhenPaused);
|
|
|
|
this.target.off("thread-resumed", this.unhighlightWhenResumed);
|
2013-03-06 23:30:03 -08:00
|
|
|
this.emit("destroyed");
|
2013-07-11 00:12:20 -07:00
|
|
|
return promise.resolve(null);
|
2012-11-30 00:07:59 -08:00
|
|
|
},
|
|
|
|
|
|
|
|
// DebuggerPanel API
|
|
|
|
|
|
|
|
addBreakpoint: function() {
|
|
|
|
this._bkp.addBreakpoint.apply(this._bkp, arguments);
|
|
|
|
},
|
|
|
|
|
|
|
|
removeBreakpoint: function() {
|
|
|
|
this._bkp.removeBreakpoint.apply(this._bkp, arguments);
|
|
|
|
},
|
|
|
|
|
|
|
|
getBreakpoint: function() {
|
|
|
|
return this._bkp.getBreakpoint.apply(this._bkp, arguments);
|
|
|
|
},
|
|
|
|
|
|
|
|
getAllBreakpoints: function() {
|
|
|
|
return this._bkp.store;
|
2013-05-25 01:05:34 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
highlightWhenPaused: function() {
|
|
|
|
this._toolbox.highlightTool("jsdebugger");
|
2013-06-25 23:39:59 -07:00
|
|
|
// Also raise the toolbox window if it is undocked or select the
|
|
|
|
// corresponding tab when toolbox is docked.
|
|
|
|
this._toolbox.raise();
|
2013-05-25 01:05:34 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
unhighlightWhenResumed: function() {
|
|
|
|
this._toolbox.unhighlightTool("jsdebugger");
|
2013-05-13 00:01:00 -07:00
|
|
|
}
|
2012-11-30 00:07:59 -08:00
|
|
|
};
|