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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
|
/*
* Copyright (C) 2011 Google Inc. All rights reserved.
* Copyright (C) 2013, 2015, 2016 Apple Inc. All rights reserved.
* Copyright (C) 2014 University of Washington.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
InspectorBackendClass = class InspectorBackendClass
{
constructor()
{
this._lastSequenceId = 1;
this._pendingResponses = new Map;
this._agents = {};
this._deferredScripts = [];
this._customTracer = null;
this._defaultTracer = new WebInspector.LoggingProtocolTracer;
this._activeTracers = [this._defaultTracer];
this._dumpInspectorTimeStats = false;
let setting = WebInspector.autoLogProtocolMessagesSetting = new WebInspector.Setting("auto-collect-protocol-messages", false);
setting.addEventListener(WebInspector.Setting.Event.Changed, this._startOrStopAutomaticTracing.bind(this))
this._startOrStopAutomaticTracing();
}
// Public
// It's still possible to set this flag on InspectorBackend to just
// dump protocol traffic as it happens. For more complex uses of
// protocol data, install a subclass of WebInspector.ProtocolTracer.
set dumpInspectorProtocolMessages(value)
{
// Implicitly cause automatic logging to start if it's allowed.
let setting = WebInspector.autoLogProtocolMessagesSetting;
setting.value = value;
this._defaultTracer.dumpMessagesToConsole = value;
}
get dumpInspectorProtocolMessages()
{
return WebInspector.autoLogProtocolMessagesSetting.value;
}
set dumpInspectorTimeStats(value)
{
if (!this.dumpInspectorProtocolMessages)
this.dumpInspectorProtocolMessages = true;
this._defaultTracer.dumpTimingDataToConsole = value;
}
get dumpInspectorTimeStats()
{
return this._dumpInspectorTimeStats;
}
set customTracer(tracer)
{
console.assert(!tracer || tracer instanceof WebInspector.ProtocolTracer, tracer);
console.assert(!tracer || tracer !== this._defaultTracer, tracer);
// Bail early if no state change is to be made.
if (!tracer && !this._customTracer)
return;
if (tracer === this._customTracer)
return;
if (tracer === this._defaultTracer)
return;
if (this._customTracer)
this._customTracer.logFinished();
this._customTracer = tracer;
this._activeTracers = [this._defaultTracer];
if (this._customTracer) {
this._customTracer.logStarted();
this._activeTracers.push(this._customTracer);
}
}
get activeTracers()
{
return this._activeTracers;
}
registerCommand(qualifiedName, callSignature, replySignature)
{
var [domainName, commandName] = qualifiedName.split(".");
var agent = this._agentForDomain(domainName);
agent.addCommand(InspectorBackend.Command.create(this, qualifiedName, callSignature, replySignature));
}
registerEnum(qualifiedName, enumValues)
{
var [domainName, enumName] = qualifiedName.split(".");
var agent = this._agentForDomain(domainName);
agent.addEnum(enumName, enumValues);
}
registerEvent(qualifiedName, signature)
{
var [domainName, eventName] = qualifiedName.split(".");
var agent = this._agentForDomain(domainName);
agent.addEvent(new InspectorBackend.Event(eventName, signature));
}
registerDomainDispatcher(domainName, dispatcher)
{
var agent = this._agentForDomain(domainName);
agent.dispatcher = dispatcher;
}
dispatch(message)
{
let messageObject = (typeof message === "string") ? JSON.parse(message) : message;
if ("id" in messageObject)
this._dispatchResponse(messageObject);
else
this._dispatchEvent(messageObject);
}
runAfterPendingDispatches(script)
{
console.assert(script);
console.assert(typeof script === "function");
if (!this._pendingResponses.size)
script.call(this);
else
this._deferredScripts.push(script);
}
activateDomain(domainName, activationDebuggableType)
{
if (!activationDebuggableType || InspectorFrontendHost.debuggableType() === activationDebuggableType) {
var agent = this._agents[domainName];
agent.activate();
return agent;
}
return null;
}
// Private
_startOrStopAutomaticTracing()
{
this._defaultTracer.dumpMessagesToConsole = this.dumpInspectorProtocolMessages;
this._defaultTracer.dumpTimingDataToConsole = this.dumpTimingDataToConsole;
}
_agentForDomain(domainName)
{
if (this._agents[domainName])
return this._agents[domainName];
var agent = new InspectorBackend.Agent(domainName);
this._agents[domainName] = agent;
return agent;
}
_sendCommandToBackendWithCallback(command, parameters, callback)
{
let sequenceId = this._lastSequenceId++;
let messageObject = {
"id": sequenceId,
"method": command.qualifiedName,
};
if (Object.keys(parameters).length)
messageObject["params"] = parameters;
let responseData = {command, callback};
if (this.activeTracer)
responseData.sendRequestTimestamp = timestamp();
this._pendingResponses.set(sequenceId, responseData);
this._sendMessageToBackend(messageObject);
}
_sendCommandToBackendExpectingPromise(command, parameters)
{
let sequenceId = this._lastSequenceId++;
let messageObject = {
"id": sequenceId,
"method": command.qualifiedName,
};
if (Object.keys(parameters).length)
messageObject["params"] = parameters;
let responseData = {command};
if (this.activeTracer)
responseData.sendRequestTimestamp = timestamp();
let responsePromise = new Promise(function(resolve, reject) {
responseData.promise = {resolve, reject};
});
this._pendingResponses.set(sequenceId, responseData);
this._sendMessageToBackend(messageObject);
return responsePromise;
}
_sendMessageToBackend(messageObject)
{
for (let tracer of this.activeTracers)
tracer.logFrontendRequest(messageObject);
InspectorFrontendHost.sendMessageToBackend(JSON.stringify(messageObject));
}
_dispatchResponse(messageObject)
{
console.assert(this._pendingResponses.size >= 0);
if (messageObject["error"]) {
if (messageObject["error"].code !== -32000)
this._reportProtocolError(messageObject);
}
let sequenceId = messageObject["id"];
console.assert(this._pendingResponses.has(sequenceId), sequenceId, this._pendingResponses);
let responseData = this._pendingResponses.take(sequenceId) || {};
let {command, callback, promise} = responseData;
let processingStartTimestamp = timestamp();
for (let tracer of this.activeTracers)
tracer.logWillHandleResponse(messageObject);
if (typeof callback === "function")
this._dispatchResponseToCallback(command, messageObject, callback);
else if (typeof promise === "object")
this._dispatchResponseToPromise(command, messageObject, promise);
else
console.error("Received a command response without a corresponding callback or promise.", messageObject, command);
let processingTime = (timestamp() - processingStartTimestamp).toFixed(3);
let roundTripTime = (processingStartTimestamp - responseData.sendRequestTimestamp).toFixed(3);
for (let tracer of this.activeTracers)
tracer.logDidHandleResponse(messageObject, {rtt: roundTripTime, dispatch: processingTime});
if (this._deferredScripts.length && !this._pendingResponses.size)
this._flushPendingScripts();
}
_dispatchResponseToCallback(command, messageObject, callback)
{
let callbackArguments = [];
callbackArguments.push(messageObject["error"] ? messageObject["error"].message : null);
if (messageObject["result"]) {
for (var parameterName of command.replySignature)
callbackArguments.push(messageObject["result"][parameterName]);
}
try {
callback.apply(null, callbackArguments);
} catch (e) {
console.error("Uncaught exception in inspector page while dispatching callback for command " + command.qualifiedName, e);
}
}
_dispatchResponseToPromise(command, messageObject, promise)
{
let {resolve, reject} = promise;
if (messageObject["error"])
reject(new Error(messageObject["error"].message));
else
resolve(messageObject["result"]);
}
_dispatchEvent(messageObject)
{
let qualifiedName = messageObject["method"];
let [domainName, eventName] = qualifiedName.split(".");
if (!(domainName in this._agents)) {
console.error("Protocol Error: Attempted to dispatch method '" + eventName + "' for non-existing domain '" + domainName + "'");
return;
}
let agent = this._agentForDomain(domainName);
if (!agent.active) {
console.error("Protocol Error: Attempted to dispatch method for domain '" + domainName + "' which exists but is not active.");
return;
}
let event = agent.getEvent(eventName);
if (!event) {
console.error("Protocol Error: Attempted to dispatch an unspecified method '" + qualifiedName + "'");
return;
}
let eventArguments = [];
if (messageObject["params"])
eventArguments = event.parameterNames.map((name) => messageObject["params"][name]);
let processingStartTimestamp = timestamp();
for (let tracer of this.activeTracers)
tracer.logWillHandleEvent(messageObject);
try {
agent.dispatchEvent(eventName, eventArguments);
} catch (e) {
console.error("Uncaught exception in inspector page while handling event " + qualifiedName, e);
for (let tracer of this.activeTracers)
tracer.logFrontendException(messageObject, e);
}
let processingDuration = (timestamp() - processingStartTimestamp).toFixed(3);
for (let tracer of this.activeTracers)
tracer.logDidHandleEvent(messageObject, {dispatch: processingDuration});
}
_reportProtocolError(messageObject)
{
console.error("Request with id = " + messageObject["id"] + " failed. " + JSON.stringify(messageObject["error"]));
}
_flushPendingScripts()
{
console.assert(this._pendingResponses.size === 0);
let scriptsToRun = this._deferredScripts;
this._deferredScripts = [];
for (let script of scriptsToRun)
script.call(this);
}
};
InspectorBackend = new InspectorBackendClass;
InspectorBackend.Agent = class InspectorBackendAgent
{
constructor(domainName)
{
this._domainName = domainName;
// Agents are always created, but are only useable after they are activated.
this._active = false;
// Commands are stored directly on the Agent instance using their unqualified
// method name as the property. Thus, callers can write: FooAgent.methodName().
// Enums are stored similarly based on the unqualified type name.
this._events = {};
}
// Public
get domainName()
{
return this._domainName;
}
get active()
{
return this._active;
}
set dispatcher(value)
{
this._dispatcher = value;
}
addEnum(enumName, enumValues)
{
this[enumName] = enumValues;
}
addCommand(command)
{
this[command.commandName] = command;
}
addEvent(event)
{
this._events[event.eventName] = event;
}
getEvent(eventName)
{
return this._events[eventName];
}
hasEvent(eventName)
{
return eventName in this._events;
}
activate()
{
this._active = true;
window[this._domainName + "Agent"] = this;
}
dispatchEvent(eventName, eventArguments)
{
if (!(eventName in this._dispatcher)) {
console.error("Protocol Error: Attempted to dispatch an unimplemented method '" + this._domainName + "." + eventName + "'");
return false;
}
this._dispatcher[eventName].apply(this._dispatcher, eventArguments);
return true;
}
};
// InspectorBackend.Command can't use ES6 classes because of its trampoline nature.
// But we can use strict mode to get stricter handling of the code inside its functions.
InspectorBackend.Command = function(backend, qualifiedName, callSignature, replySignature)
{
'use strict';
this._backend = backend;
this._instance = this;
var [domainName, commandName] = qualifiedName.split(".");
this._qualifiedName = qualifiedName;
this._commandName = commandName;
this._callSignature = callSignature || [];
this._replySignature = replySignature || [];
};
InspectorBackend.Command.create = function(backend, commandName, callSignature, replySignature)
{
'use strict';
var instance = new InspectorBackend.Command(backend, commandName, callSignature, replySignature);
function callable() {
return instance._invokeWithArguments.apply(instance, arguments);
}
callable._instance = instance;
Object.setPrototypeOf(callable, InspectorBackend.Command.prototype);
return callable;
};
// As part of the workaround to make commands callable, these functions use |this._instance|.
// |this| could refer to the callable trampoline, or the InspectorBackend.Command instance.
InspectorBackend.Command.prototype = {
__proto__: Function.prototype,
// Public
get qualifiedName()
{
return this._instance._qualifiedName;
},
get commandName()
{
return this._instance._commandName;
},
get callSignature()
{
return this._instance._callSignature;
},
get replySignature()
{
return this._instance._replySignature;
},
invoke: function(commandArguments, callback)
{
'use strict';
let instance = this._instance;
if (typeof callback === "function")
instance._backend._sendCommandToBackendWithCallback(instance, commandArguments, callback);
else
return instance._backend._sendCommandToBackendExpectingPromise(instance, commandArguments);
},
supports: function(parameterName)
{
'use strict';
var instance = this._instance;
return instance.callSignature.some(function(parameter) {
return parameter["name"] === parameterName;
});
},
// Private
_invokeWithArguments: function()
{
'use strict';
let instance = this._instance;
let commandArguments = Array.from(arguments);
let callback = typeof commandArguments.lastValue === "function" ? commandArguments.pop() : null;
function deliverFailure(message) {
console.error(`Protocol Error: ${message}`);
if (callback)
setTimeout(callback.bind(null, message), 0);
else
return Promise.reject(new Error(message));
}
let parameters = {};
for (let parameter of instance.callSignature) {
let parameterName = parameter["name"];
let typeName = parameter["type"];
let optionalFlag = parameter["optional"];
if (!commandArguments.length && !optionalFlag)
return deliverFailure(`Invalid number of arguments for command '${instance.qualifiedName}'.`);
let value = commandArguments.shift();
if (optionalFlag && value === undefined)
continue;
if (typeof value !== typeName)
return deliverFailure(`Invalid type of argument '${parameterName}' for command '${instance.qualifiedName}' call. It must be '${typeName}' but it is '${typeof value}'.`);
parameters[parameterName] = value;
}
if (!callback && commandArguments.length === 1 && commandArguments[0] !== undefined)
return deliverFailure(`Protocol Error: Optional callback argument for command '${instance.qualifiedName}' call must be a function but its type is '${typeof args[0]}'.`);
if (callback)
instance._backend._sendCommandToBackendWithCallback(instance, parameters, callback);
else
return instance._backend._sendCommandToBackendExpectingPromise(instance, parameters);
}
};
InspectorBackend.Event = class Event
{
constructor(eventName, parameterNames)
{
this.eventName = eventName;
this.parameterNames = parameterNames;
}
};
|