1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
/* 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 Services = require("Services");
const { DevToolsServer } = require("devtools/server/devtools-server");
const { Cc, Ci } = require("chrome");
const { ActorClassWithSpec, Actor } = require("devtools/shared/protocol");
const {
processDescriptorSpec,
} = require("devtools/shared/specs/descriptors/process");
loader.lazyRequireGetter(
this,
"ContentProcessTargetActor",
"devtools/server/actors/targets/content-process",
true
);
loader.lazyRequireGetter(
this,
"ParentProcessTargetActor",
"devtools/server/actors/targets/parent-process",
true
);
loader.lazyRequireGetter(
this,
"connectToContentProcess",
"devtools/server/connectors/content-process-connector",
true
);
loader.lazyRequireGetter(
this,
"WatcherActor",
"devtools/server/actors/watcher",
true
);
const ProcessDescriptorActor = ActorClassWithSpec(processDescriptorSpec, {
initialize(connection, options = {}) {
if ("id" in options && typeof options.id != "number") {
throw Error("process connect requires a valid `id` attribute.");
}
Actor.prototype.initialize.call(this, connection);
this.id = options.id;
this._browsingContextTargetActor = null;
this.isParent = options.parent;
this.destroy = this.destroy.bind(this);
},
get browsingContextID() {
if (this._browsingContextTargetActor) {
return this._browsingContextTargetActor.docShell.browsingContext.id;
}
return null;
},
_parentProcessConnect() {
const env = Cc["@mozilla.org/process/environment;1"].getService(
Ci.nsIEnvironment
);
const isXpcshell = env.exists("XPCSHELL_TEST_PROFILE_DIR");
let targetActor;
if (isXpcshell) {
// Check if we are running on xpcshell.
// When running on xpcshell, there is no valid browsing context to attach to
// and so ParentProcessTargetActor doesn't make sense as it inherits from
// BrowsingContextTargetActor. So instead use ContentProcessTargetActor, which
// matches xpcshell needs.
targetActor = new ContentProcessTargetActor(this.conn);
} else {
// Create the target actor for the parent process, which is in the same process
// as this target. Because we are in the same process, we have a true actor that
// should be managed by the ProcessDescriptorActor.
targetActor = new ParentProcessTargetActor(this.conn);
// this is a special field that only parent process with a browsing context
// have, as they are the only processes at the moment that have child
// browsing contexts
this._browsingContextTargetActor = targetActor;
}
this.manage(targetActor);
// to be consistent with the return value of the _childProcessConnect, we are returning
// the form here. This might be memoized in the future
return targetActor.form();
},
/**
* Connect to a remote process actor, always a ContentProcess target.
*/
async _childProcessConnect() {
const { id } = this;
const mm = this._lookupMessageManager(id);
if (!mm) {
return {
error: "noProcess",
message: "There is no process with id '" + id + "'.",
};
}
const childTargetForm = await connectToContentProcess(
this.conn,
mm,
this.destroy
);
return childTargetForm;
},
_lookupMessageManager(id) {
for (let i = 0; i < Services.ppmm.childCount; i++) {
const mm = Services.ppmm.getChildAt(i);
// A zero id is used for the parent process, instead of its actual pid.
if (id ? mm.osPid == id : mm.isInProcess) {
return mm;
}
}
return null;
},
/**
* Connect the a process actor.
*/
async getTarget() {
if (!DevToolsServer.allowChromeProcess) {
return {
error: "forbidden",
message: "You are not allowed to debug processes.",
};
}
if (this.isParent) {
return this._parentProcessConnect();
}
// This is a remote process we are connecting to
return this._childProcessConnect();
},
/**
* Return a Watcher actor, allowing to keep track of targets which
* already exists or will be created. It also helps knowing when they
* are destroyed.
*/
getWatcher() {
if (!this.watcher) {
this.watcher = new WatcherActor(this.conn);
this.manage(this.watcher);
}
return this.watcher;
},
form() {
return {
actor: this.actorID,
id: this.id,
isParent: this.isParent,
traits: {
// Supports the Watcher actor. Can be removed as part of Bug 1680280.
watcher: true,
},
};
},
destroy() {
this._browsingContextTargetActor = null;
Actor.prototype.destroy.call(this);
},
});
exports.ProcessDescriptorActor = ProcessDescriptorActor;
|