Source code

Revision control

Copy as Markdown

Other Tools

/* Any copyright is dedicated to the Public Domain.
"use strict";
const {
LazyPool,
createExtraActors,
const { RootActor } = require("resource://devtools/server/actors/root.js");
const {
WatcherActor,
const { ThreadActor } = require("resource://devtools/server/actors/thread.js");
const {
DevToolsServer,
const {
ActorRegistry,
const {
SourcesManager,
const protocol = require("resource://devtools/shared/protocol.js");
const {
windowGlobalTargetSpec,
const {
tabDescriptorSpec,
const {
createContentProcessSessionContext,
const { TargetActorRegistry } = ChromeUtils.importESModule(
{ global: "shared" }
);
const {
BaseTargetActor,
var gTestGlobals = new Set();
DevToolsServer.addTestGlobal = function (global) {
gTestGlobals.add(global);
};
DevToolsServer.removeTestGlobal = function (global) {
gTestGlobals.delete(global);
};
DevToolsServer.getTestGlobal = function (name) {
for (const g of gTestGlobals) {
if (g.__name == name) {
return g;
}
}
return null;
};
var gAllowNewThreadGlobals = false;
DevToolsServer.allowNewThreadGlobals = function () {
gAllowNewThreadGlobals = true;
};
DevToolsServer.disallowNewThreadGlobals = function () {
gAllowNewThreadGlobals = false;
};
// A mock tab list, for use by tests. This simply presents each global in
// gTestGlobals as a tab, and the list is fixed: it never calls its
// onListChanged handler.
//
// As implemented now, we consult gTestGlobals when we're constructed, not
// when we're iterated over, so tests have to add their globals before the
// root actor is created.
function TestTabList(connection) {
this.conn = connection;
// An array of actors for each global added with
// DevToolsServer.addTestGlobal.
this._descriptorActors = [];
// A pool mapping those actors' names to the actors.
this._descriptorActorPool = new LazyPool(connection);
for (const global of gTestGlobals) {
const actor = new TestTargetActor(connection, global);
this._descriptorActorPool.manage(actor);
// Register the target actor, so that the Watcher actor can have access to it.
TargetActorRegistry.registerXpcShellTargetActor(actor);
const descriptorActor = new TestDescriptorActor(connection, actor);
this._descriptorActorPool.manage(descriptorActor);
this._descriptorActors.push(descriptorActor);
}
}
TestTabList.prototype = {
constructor: TestTabList,
destroy() {},
getList() {
return Promise.resolve([...this._descriptorActors]);
},
// Helper method only available for the xpcshell implementation of tablist.
getTargetActorForTab(title) {
const descriptorActor = this._descriptorActors.find(d => d.title === title);
if (!descriptorActor) {
return null;
}
return descriptorActor._targetActor;
},
};
exports.createRootActor = function createRootActor(connection) {
ActorRegistry.registerModule("devtools/server/actors/webconsole", {
prefix: "console",
constructor: "WebConsoleActor",
type: { target: true },
});
const root = new RootActor(connection, {
tabList: new TestTabList(connection),
globalActorFactories: ActorRegistry.globalActorFactories,
});
root.applicationType = "xpcshell-tests";
return root;
};
class TestDescriptorActor extends protocol.Actor {
constructor(conn, targetActor) {
super(conn, tabDescriptorSpec);
this._targetActor = targetActor;
}
// We don't exercise the selected tab in xpcshell tests.
get selected() {
return false;
}
get title() {
return this._targetActor.title;
}
form() {
const form = {
actor: this.actorID,
traits: {
watcher: true,
},
selected: this.selected,
title: this._targetActor.title,
url: this._targetActor.url,
};
return form;
}
getWatcher() {
const sessionContext = {
type: "all",
supportedTargets: {},
supportedResources: [
Resources.TYPES.SOURCE,
Resources.TYPES.CONSOLE_MESSAGE,
Resources.TYPES.THREAD_STATE,
],
};
const watcherActor = new WatcherActor(this.conn, sessionContext);
return watcherActor;
}
getFavicon() {
return "";
}
getTarget() {
return this._targetActor.form();
}
}
class TestTargetActor extends BaseTargetActor {
constructor(conn, global) {
super(conn, Targets.TYPES.FRAME, windowGlobalTargetSpec);
this.sessionContext = createContentProcessSessionContext();
this._global = global;
this._global.wrappedJSObject = global;
this.threadActor = new ThreadActor(this, this._global);
this.conn.addActor(this.threadActor);
this._extraActors = {};
// This is a hack in order to enable threadActor to be accessed from getFront
this._extraActors.threadActor = this.threadActor;
this.makeDebugger = makeDebugger.bind(null, {
findDebuggees: () => [this._global],
shouldAddNewGlobalAsDebuggee: () => gAllowNewThreadGlobals,
});
this.dbg = this.makeDebugger();
this.notifyResources = this.notifyResources.bind(this);
}
targetType = Targets.TYPES.FRAME;
get window() {
return this._global;
}
// Both title and url point to this._global.__name
get title() {
return this._global.__name;
}
get url() {
return this._global.__name;
}
get sourcesManager() {
if (!this._sourcesManager) {
this._sourcesManager = new SourcesManager(this.threadActor);
}
return this._sourcesManager;
}
form() {
const response = {
actor: this.actorID,
title: this.title,
threadActor: this.threadActor.actorID,
};
// Walk over target-scoped actors and add them to a new LazyPool.
const actorPool = new LazyPool(this.conn);
const actors = createExtraActors(
ActorRegistry.targetScopedActorFactories,
actorPool,
this
);
if (actorPool?._poolMap.size > 0) {
this._descriptorActorPool = actorPool;
this.conn.addActorPool(this._descriptorActorPool);
}
return { ...response, ...actors };
}
detach() {
this.threadActor.destroy();
return { type: "detached" };
}
reload() {
this.sourcesManager.reset();
this.threadActor.clearDebuggees();
this.threadActor.dbg.addDebuggees();
return {};
}
removeActorByName(name) {
const actor = this._extraActors[name];
if (this._descriptorActorPool) {
this._descriptorActorPool.removeActor(actor);
}
delete this._extraActors[name];
}
notifyResources(updateType, resources) {
this.emit(`resource-${updateType}-form`, resources);
}
}