/* -*- 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"; const { classes: Cc, interfaces: Ci, utils: Cu } = Components; const DBG_XUL = "chrome://browser/content/devtools/debugger.xul"; const CHROME_DEBUGGER_PROFILE_NAME = "-chrome-debugger"; Cu.import("resource://gre/modules/Services.jsm"); Cu.import("resource://gre/modules/devtools/dbg-server.jsm"); Cu.import("resource:///modules/devtools/ViewHelpers.jsm"); let require = Cu.import("resource://gre/modules/devtools/Loader.jsm", {}).devtools.require; let Telemetry = require("devtools/shared/telemetry"); this.EXPORTED_SYMBOLS = ["BrowserDebuggerProcess"]; /** * Constructor for creating a process that will hold a chrome debugger. * * @param function aOnClose [optional] * A function called when the process stops running. * @param function aOnRun [optional] * A function called when the process starts running. */ this.BrowserDebuggerProcess = function BrowserDebuggerProcess(aOnClose, aOnRun) { this._closeCallback = aOnClose; this._runCallback = aOnRun; this._telemetry = new Telemetry(); this._initServer(); this._initProfile(); this._create(); } /** * Initializes and starts a chrome debugger process. * @return object */ BrowserDebuggerProcess.init = function(aOnClose, aOnRun) { return new BrowserDebuggerProcess(aOnClose, aOnRun); }; BrowserDebuggerProcess.prototype = { /** * Initializes the debugger server. */ _initServer: function() { if (!DebuggerServer.initialized) { DebuggerServer.init(); DebuggerServer.addBrowserActors(); } DebuggerServer.openListener(Prefs.chromeDebuggingPort); }, /** * Initializes a profile for the remote debugger process. */ _initProfile: function() { let profileService = Cc["@mozilla.org/toolkit/profile-service;1"] .createInstance(Ci.nsIToolkitProfileService); let profileName; try { // Attempt to get the required chrome debugging profile name string. profileName = profileService.selectedProfile.name + CHROME_DEBUGGER_PROFILE_NAME; } catch (e) { // Requested profile string could not be retrieved. profileName = CHROME_DEBUGGER_PROFILE_NAME; let msg = "Querying the current profile failed. " + e.name + ": " + e.message; dumpn(msg); Cu.reportError(msg); } let profileObject; try { // Attempt to get the required chrome debugging profile toolkit object. profileObject = profileService.getProfileByName(profileName); // The profile exists but the corresponding folder may have been deleted. var enumerator = Services.dirsvc.get("ProfD", Ci.nsIFile).parent.directoryEntries; while (enumerator.hasMoreElements()) { let profileDir = enumerator.getNext().QueryInterface(Ci.nsIFile); if (profileDir.leafName.contains(profileName)) { // Requested profile was found and the folder exists. this._dbgProfile = profileObject; return; } } // Requested profile was found but the folder was deleted. Cleanup needed. profileObject.remove(true); } catch (e) { // Requested profile object was not found. let msg = "Creating a profile failed. " + e.name + ": " + e.message; dumpn(msg); Cu.reportError(msg); } // Create a new chrome debugging profile. this._dbgProfile = profileService.createProfile(null, null, profileName); profileService.flush(); }, /** * Creates and initializes the profile & process for the remote debugger. */ _create: function() { dumpn("Initializing chrome debugging process."); let process = this._dbgProcess = Cc["@mozilla.org/process/util;1"].createInstance(Ci.nsIProcess); process.init(Services.dirsvc.get("XREExeF", Ci.nsIFile)); dumpn("Running chrome debugging process."); let args = ["-no-remote", "-foreground", "-P", this._dbgProfile.name, "-chrome", DBG_XUL]; process.runwAsync(args, args.length, { observe: () => this.close() }); this._telemetry.toolOpened("jsbrowserdebugger"); dumpn("Chrome debugger is now running..."); if (typeof this._runCallback == "function") { this._runCallback.call({}, this); } }, /** * Closes the remote debugger, removing the profile and killing the process. */ close: function() { if (this._dbgProcess.isRunning) { dumpn("Killing chrome debugging process..."); this._dbgProcess.kill(); } this._telemetry.toolClosed("jsbrowserdebugger"); dumpn("Chrome debugger is now closed..."); if (typeof this._closeCallback == "function") { this._closeCallback.call({}, this); } } }; /** * Shortcuts for accessing various debugger preferences. */ let Prefs = new ViewHelpers.Prefs("devtools.debugger", { chromeDebuggingHost: ["Char", "chrome-debugging-host"], chromeDebuggingPort: ["Int", "chrome-debugging-port"] }); /** * Helper method for debugging. * @param string */ function dumpn(str) { if (wantLogging) { dump("DBG-FRONTEND: " + str + "\n"); } } let wantLogging = Services.prefs.getBoolPref("devtools.debugger.log");