зеркало из https://github.com/mozilla/gecko-dev.git
448 строки
13 KiB
JavaScript
448 строки
13 KiB
JavaScript
/* vim: set ts=2 sw=2 sts=2 et 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";
|
|
|
|
/**
|
|
* This module implements logic for managing JavaScript actor instances bound to
|
|
* message managers. It handles lazily instantiating those actors based on
|
|
* DOM events, IPC messages, or observer notifications, and is meant to entirely
|
|
* replace the existing concept of frame scripts.
|
|
*
|
|
* All actors must be registered in the parent process, before the first child
|
|
* process starts. Once all actors have been registered, the actor data is
|
|
* mangled into a form which can be handled efficiently during content process
|
|
* startup, and shared with all content processes. Frame scripts in those
|
|
* content processes attach that data to frame message managers via
|
|
* ActorManagerChild, which handles instantiating and dispatching to those
|
|
* actors as necessary.
|
|
*
|
|
*
|
|
* Each actor is a class which lives in a JSM, and has a constructor which takes
|
|
* a single message manager argument. Each actor may conceptually have both
|
|
* Child and Parent variants, but only Child variants are currently implemented.
|
|
* The parent and child variants live in separate JSMs, and have separate class
|
|
* names, each of which have Child or Parent appended to their names, as
|
|
* appropriate. For instance, the Browser actor has a child instance named
|
|
* BrowserChild which lives in BrowserChild.jsm.
|
|
*
|
|
*
|
|
* Actors are defined by calling ActorManagerParent.addActors, with an object
|
|
* containing a property for each actor being defined, whose value is an object
|
|
* describing how the actor should be loaded. That object may have the following
|
|
* properties:
|
|
*
|
|
* - "child": The actor definition for the child side of the actor.
|
|
*
|
|
* Each "child" (or "parent", when it is implemented) actor definition may
|
|
* contain the following properties:
|
|
*
|
|
* - "module": The URI from which the modules is loaded. This should be a
|
|
* resource: URI, ideally beginning with "resource://gre/actors/" or
|
|
* "resource:///actors/", with a filename matching the name of the actor for
|
|
* the given side. So, the child side of the Browser actor should live at
|
|
* "resource://gre/actors/BrowserChild.jsm".
|
|
*
|
|
* - "group": A group name which restricts the message managers to which this
|
|
* actor may be attached. This should match the "messagemanagergroup"
|
|
* attribute of a <browser> element. Frame scripts are responsible for
|
|
* attaching the appropriate actors to the appropriate browsers using
|
|
* ActorManagerChild.attach().
|
|
*
|
|
* - "events": An object containing a property for each event the actor will
|
|
* listen for, with an options object, as accepted by addEventListener, as its
|
|
* value. For each such property, an event listener will be added to the
|
|
* message manager[1] for the given event name, which delegates to the actor's
|
|
* handleEvent method.
|
|
*
|
|
* - "messages": An array of message manager message names. For each message
|
|
* name in the list, a message listener will be added to the frame message
|
|
* manager, and the messages it receives will be delegated to the actor's
|
|
* receiveMessage method.
|
|
*
|
|
* - "observers": An array of observer topics. A global observer will be added
|
|
* for each topic in the list, and observer notifications for it will be
|
|
* delegated to the actor's observe method. Note that observers are global in
|
|
* nature, and these notifications may therefore have nothing to do with the
|
|
* message manager the actor is bound to. The actor itself is responsible for
|
|
* filtering the notifications that apply to it.
|
|
*
|
|
* These observers are automatically unregistered when the message manager is
|
|
* destroyed.
|
|
*
|
|
* - "matches": An array of URL match patterns (as accepted by the MatchPattern
|
|
* class in MatchPattern.webidl) which restrict which pages the actor may be
|
|
* instantiated for. If this is defined, the actor will only receive DOM
|
|
* events sent to windows which match this pattern, and will only receive
|
|
* message manager messages for frame message managers which are currently
|
|
* hosting a matching DOM window.
|
|
*
|
|
* - "allFrames": this modifies its behavior to allow it to match sub-frames
|
|
* as well as top-level frames. If "allFrames" is not specified, it will
|
|
* match only top-level frames.
|
|
*
|
|
* - "matchAboutBlank": If "matches" is specified, this modifies its behavior to
|
|
* allow it to match about:blank pages. See MozDocumentMatcher.webidl for more
|
|
* information.
|
|
*
|
|
* [1]: For actors which specify "matches" or "allFrames", the listener will be
|
|
* added to the DOM window rather than the frame message manager.
|
|
*
|
|
* If Fission is being simulated, and an actor needs to receive events from
|
|
* sub-frames, it must use "allFrames".
|
|
*/
|
|
|
|
var EXPORTED_SYMBOLS = ["ActorManagerParent"];
|
|
|
|
const {ExtensionUtils} = ChromeUtils.import("resource://gre/modules/ExtensionUtils.jsm");
|
|
const {Services} = ChromeUtils.import("resource://gre/modules/Services.jsm");
|
|
|
|
const {DefaultMap} = ExtensionUtils;
|
|
|
|
let ACTORS = {
|
|
AudioPlayback: {
|
|
child: {
|
|
module: "resource://gre/actors/AudioPlaybackChild.jsm",
|
|
messages: [
|
|
"AudioPlayback",
|
|
],
|
|
observers: [
|
|
"audio-playback",
|
|
],
|
|
},
|
|
},
|
|
|
|
Autoplay: {
|
|
child: {
|
|
module: "resource://gre/actors/AutoplayChild.jsm",
|
|
events: {
|
|
"GloballyAutoplayBlocked": {},
|
|
},
|
|
},
|
|
},
|
|
|
|
Browser: {
|
|
child: {
|
|
module: "resource://gre/actors/BrowserChild.jsm",
|
|
events: {
|
|
"DOMWindowClose": {},
|
|
},
|
|
|
|
messages: [
|
|
"Browser:CreateAboutBlank",
|
|
"InPermitUnload",
|
|
"PermitUnload",
|
|
],
|
|
},
|
|
},
|
|
|
|
Controllers: {
|
|
child: {
|
|
module: "resource://gre/actors/ControllersChild.jsm",
|
|
messages: [
|
|
"ControllerCommands:Do",
|
|
"ControllerCommands:DoWithParams",
|
|
],
|
|
},
|
|
},
|
|
|
|
DateTimePicker: {
|
|
child: {
|
|
module: "resource://gre/actors/DateTimePickerChild.jsm",
|
|
events: {
|
|
"MozOpenDateTimePicker": {},
|
|
},
|
|
},
|
|
},
|
|
|
|
ExtFind: {
|
|
child: {
|
|
module: "resource://gre/actors/ExtFindChild.jsm",
|
|
messages: [
|
|
"ext-Finder:CollectResults",
|
|
"ext-Finder:HighlightResults",
|
|
"ext-Finder:clearHighlighting",
|
|
],
|
|
},
|
|
},
|
|
|
|
FindBar: {
|
|
child: {
|
|
module: "resource://gre/actors/FindBarChild.jsm",
|
|
events: {
|
|
"keypress": {mozSystemGroup: true},
|
|
},
|
|
},
|
|
},
|
|
|
|
Finder: {
|
|
child: {
|
|
module: "resource://gre/actors/FinderChild.jsm",
|
|
messages: [
|
|
"Finder:Initialize",
|
|
],
|
|
},
|
|
},
|
|
|
|
FormSubmit: {
|
|
child: {
|
|
module: "resource://gre/actors/FormSubmitChild.jsm",
|
|
allFrames: true,
|
|
events: {
|
|
"DOMFormBeforeSubmit": {},
|
|
},
|
|
},
|
|
},
|
|
|
|
KeyPressEventModelChecker: {
|
|
child: {
|
|
module: "resource://gre/actors/KeyPressEventModelCheckerChild.jsm",
|
|
events: {
|
|
"CheckKeyPressEventModel": {capture: true, mozSystemGroup: true},
|
|
},
|
|
},
|
|
},
|
|
|
|
ManifestMessages: {
|
|
child: {
|
|
module: "resource://gre/modules/ManifestMessagesChild.jsm",
|
|
messages: [
|
|
"DOM:Manifest:FireAppInstalledEvent",
|
|
"DOM:ManifestObtainer:Obtain",
|
|
"DOM:WebManifest:fetchIcon",
|
|
"DOM:WebManifest:hasManifestLink",
|
|
],
|
|
},
|
|
},
|
|
|
|
PictureInPicture: {
|
|
child: {
|
|
module: "resource://gre/actors/PictureInPictureChild.jsm",
|
|
events: {
|
|
"MozTogglePictureInPicture": {capture: true},
|
|
},
|
|
|
|
messages: [
|
|
"PictureInPicture:SetupPlayer",
|
|
"PictureInPicture:Play",
|
|
"PictureInPicture:Pause",
|
|
],
|
|
},
|
|
},
|
|
|
|
PopupBlocking: {
|
|
child: {
|
|
module: "resource://gre/actors/PopupBlockingChild.jsm",
|
|
events: {
|
|
"DOMPopupBlocked": {capture: true},
|
|
},
|
|
},
|
|
},
|
|
|
|
Printing: {
|
|
child: {
|
|
module: "resource://gre/actors/PrintingChild.jsm",
|
|
events: {
|
|
"PrintingError": {capture: true},
|
|
"printPreviewUpdate": {capture: true},
|
|
},
|
|
messages: [
|
|
"Printing:Preview:Enter",
|
|
"Printing:Preview:Exit",
|
|
"Printing:Preview:Navigate",
|
|
"Printing:Preview:ParseDocument",
|
|
"Printing:Print",
|
|
],
|
|
},
|
|
},
|
|
|
|
PurgeSessionHistory: {
|
|
child: {
|
|
module: "resource://gre/actors/PurgeSessionHistoryChild.jsm",
|
|
messages: [
|
|
"Browser:PurgeSessionHistory",
|
|
],
|
|
},
|
|
},
|
|
|
|
Select: {
|
|
child: {
|
|
module: "resource://gre/actors/SelectChild.jsm",
|
|
events: {
|
|
"mozshowdropdown": {},
|
|
"mozshowdropdown-sourcetouch": {},
|
|
},
|
|
},
|
|
},
|
|
|
|
SelectionSource: {
|
|
child: {
|
|
module: "resource://gre/actors/SelectionSourceChild.jsm",
|
|
messages: [
|
|
"ViewSource:GetSelection",
|
|
],
|
|
},
|
|
},
|
|
|
|
Thumbnails: {
|
|
child: {
|
|
module: "resource://gre/actors/ThumbnailsChild.jsm",
|
|
messages: [
|
|
"Browser:Thumbnail:Request",
|
|
"Browser:Thumbnail:CheckState",
|
|
"Browser:Thumbnail:GetOriginalURL",
|
|
],
|
|
},
|
|
},
|
|
|
|
UAWidgets: {
|
|
child: {
|
|
module: "resource://gre/actors/UAWidgetsChild.jsm",
|
|
events: {
|
|
"UAWidgetSetupOrChange": {},
|
|
"UAWidgetTeardown": {},
|
|
},
|
|
},
|
|
},
|
|
|
|
UnselectedTabHover: {
|
|
child: {
|
|
module: "resource://gre/actors/UnselectedTabHoverChild.jsm",
|
|
events: {
|
|
"UnselectedTabHover:Enable": {},
|
|
"UnselectedTabHover:Disable": {},
|
|
},
|
|
messages: [
|
|
"Browser:UnselectedTabHover",
|
|
],
|
|
},
|
|
},
|
|
|
|
WebChannel: {
|
|
child: {
|
|
module: "resource://gre/actors/WebChannelChild.jsm",
|
|
events: {
|
|
"WebChannelMessageToChrome": {capture: true, wantUntrusted: true},
|
|
},
|
|
messages: [
|
|
"WebChannelMessageToContent",
|
|
],
|
|
},
|
|
},
|
|
|
|
WebNavigation: {
|
|
child: {
|
|
module: "resource://gre/actors/WebNavigationChild.jsm",
|
|
messages: [
|
|
"WebNavigation:GoBack",
|
|
"WebNavigation:GoForward",
|
|
"WebNavigation:GotoIndex",
|
|
"WebNavigation:LoadURI",
|
|
"WebNavigation:Reload",
|
|
"WebNavigation:SetOriginAttributes",
|
|
"WebNavigation:Stop",
|
|
],
|
|
},
|
|
},
|
|
|
|
Zoom: {
|
|
child: {
|
|
module: "resource://gre/actors/ZoomChild.jsm",
|
|
events: {
|
|
"FullZoomChange": {},
|
|
"TextZoomChange": {},
|
|
"ZoomChangeUsingMouseWheel": {},
|
|
},
|
|
messages: [
|
|
"FullZoom",
|
|
"TextZoom",
|
|
],
|
|
},
|
|
},
|
|
};
|
|
|
|
class ActorSet {
|
|
constructor(group, actorSide) {
|
|
this.group = group;
|
|
this.actorSide = actorSide;
|
|
|
|
this.actors = new Map();
|
|
this.events = [];
|
|
this.messages = new DefaultMap(() => []);
|
|
this.observers = new DefaultMap(() => []);
|
|
}
|
|
|
|
addActor(actorName, actor) {
|
|
actorName += this.actorSide;
|
|
this.actors.set(actorName, {module: actor.module});
|
|
|
|
if (actor.events) {
|
|
for (let [event, options] of Object.entries(actor.events)) {
|
|
this.events.push({actor: actorName, event, options});
|
|
}
|
|
}
|
|
for (let msg of actor.messages || []) {
|
|
this.messages.get(msg).push(actorName);
|
|
}
|
|
for (let topic of actor.observers || []) {
|
|
this.observers.get(topic).push(actorName);
|
|
}
|
|
}
|
|
}
|
|
|
|
const {sharedData} = Services.ppmm;
|
|
|
|
var ActorManagerParent = {
|
|
// Actor sets which should be loaded in the child side, keyed by
|
|
// "messagemanagergroup".
|
|
childGroups: new DefaultMap(group => new ActorSet(group, "Child")),
|
|
// Actor sets which should be loaded in the parent side, keyed by
|
|
// "messagemanagergroup".
|
|
parentGroups: new DefaultMap(group => new ActorSet(group, "Parent")),
|
|
|
|
// Singleton actor sets, which should be loaded only for documents which match
|
|
// a specific pattern. The keys in this map are plain objects specifying
|
|
// filter keys as understood by MozDocumentMatcher.
|
|
singletons: new DefaultMap(() => new ActorSet(null, "Child")),
|
|
|
|
addActors(actors) {
|
|
for (let [actorName, actor] of Object.entries(actors)) {
|
|
let {child} = actor;
|
|
{
|
|
let actorSet;
|
|
if (child.matches || child.allFrames) {
|
|
actorSet = this.singletons.get({matches: child.matches || ["<all_urls>"],
|
|
allFrames: child.allFrames,
|
|
matchAboutBlank: child.matchAboutBlank});
|
|
} else {
|
|
actorSet = this.childGroups.get(child.group || null);
|
|
}
|
|
|
|
actorSet.addActor(actorName, child);
|
|
}
|
|
|
|
if (actor.parent) {
|
|
let {parent} = actor;
|
|
this.parentGroups.get(parent.group || null).addActor(
|
|
actorName, parent);
|
|
}
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Serializes the current set of registered actors into ppmm.sharedData, for
|
|
* use by ActorManagerChild. This must be called before any frame message
|
|
* managers have been created. It will have no effect on existing message
|
|
* managers.
|
|
*/
|
|
flush() {
|
|
for (let [name, data] of this.childGroups) {
|
|
sharedData.set(`ChildActors:${name || ""}`, data);
|
|
}
|
|
sharedData.set("ChildSingletonActors", this.singletons);
|
|
},
|
|
};
|
|
|
|
ActorManagerParent.addActors(ACTORS);
|