2017-06-14 22:45:59 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2017 Google Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
2020-05-07 10:54:55 +00:00
|
|
|
import { assert } from './helper';
|
|
|
|
import { Events } from './Events';
|
2020-06-02 08:32:02 +00:00
|
|
|
import * as debug from 'debug';
|
2020-04-21 08:20:25 +00:00
|
|
|
const debugProtocol = debug('puppeteer:protocol');
|
|
|
|
|
2020-05-21 16:04:05 +00:00
|
|
|
import Protocol from './protocol';
|
2020-06-04 10:47:13 +00:00
|
|
|
import { ConnectionTransport } from './ConnectionTransport';
|
2020-06-02 08:32:02 +00:00
|
|
|
import * as EventEmitter from 'events';
|
2020-04-21 08:20:25 +00:00
|
|
|
|
|
|
|
interface ConnectionCallback {
|
2020-05-07 10:54:55 +00:00
|
|
|
resolve: Function;
|
|
|
|
reject: Function;
|
|
|
|
error: Error;
|
|
|
|
method: string;
|
2020-04-21 08:20:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class Connection extends EventEmitter {
|
|
|
|
_url: string;
|
2020-05-06 13:23:07 +00:00
|
|
|
_transport: ConnectionTransport;
|
2020-04-21 08:20:25 +00:00
|
|
|
_delay: number;
|
|
|
|
_lastId = 0;
|
|
|
|
_sessions: Map<string, CDPSession> = new Map();
|
|
|
|
_closed = false;
|
|
|
|
|
|
|
|
_callbacks: Map<number, ConnectionCallback> = new Map();
|
2017-06-14 22:45:59 +00:00
|
|
|
|
2020-05-06 13:23:07 +00:00
|
|
|
constructor(url: string, transport: ConnectionTransport, delay = 0) {
|
2017-06-21 20:51:06 +00:00
|
|
|
super();
|
2017-08-15 21:29:42 +00:00
|
|
|
this._url = url;
|
|
|
|
this._delay = delay;
|
2017-06-14 22:45:59 +00:00
|
|
|
|
2018-02-15 01:51:29 +00:00
|
|
|
this._transport = transport;
|
2018-09-07 20:36:16 +00:00
|
|
|
this._transport.onmessage = this._onMessage.bind(this);
|
|
|
|
this._transport.onclose = this._onClose.bind(this);
|
2018-09-14 18:44:54 +00:00
|
|
|
}
|
|
|
|
|
2020-04-21 08:20:25 +00:00
|
|
|
static fromSession(session: CDPSession): Connection {
|
2019-01-22 23:10:11 +00:00
|
|
|
return session._connection;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {string} sessionId
|
2020-06-12 10:38:24 +00:00
|
|
|
* @returns {?CDPSession}
|
2019-01-22 23:10:11 +00:00
|
|
|
*/
|
2020-04-21 08:20:25 +00:00
|
|
|
session(sessionId: string): CDPSession | null {
|
2019-01-22 23:10:11 +00:00
|
|
|
return this._sessions.get(sessionId) || null;
|
2017-07-19 05:10:38 +00:00
|
|
|
}
|
|
|
|
|
2020-04-21 08:20:25 +00:00
|
|
|
url(): string {
|
2017-08-15 21:29:42 +00:00
|
|
|
return this._url;
|
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
send<T extends keyof Protocol.CommandParameters>(
|
|
|
|
method: T,
|
|
|
|
params?: Protocol.CommandParameters[T]
|
|
|
|
): Promise<Protocol.CommandReturnValues[T]> {
|
|
|
|
const id = this._rawSend({ method, params });
|
2017-06-21 20:51:06 +00:00
|
|
|
return new Promise((resolve, reject) => {
|
2020-05-07 10:54:55 +00:00
|
|
|
this._callbacks.set(id, { resolve, reject, error: new Error(), method });
|
2017-06-21 20:51:06 +00:00
|
|
|
});
|
|
|
|
}
|
2017-06-14 22:45:59 +00:00
|
|
|
|
2020-04-21 08:20:25 +00:00
|
|
|
_rawSend(message: {}): number {
|
2019-01-22 23:10:11 +00:00
|
|
|
const id = ++this._lastId;
|
2020-05-07 10:54:55 +00:00
|
|
|
message = JSON.stringify(Object.assign({}, message, { id }));
|
2019-01-22 23:10:11 +00:00
|
|
|
debugProtocol('SEND ► ' + message);
|
|
|
|
this._transport.send(message);
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2020-04-21 08:20:25 +00:00
|
|
|
async _onMessage(message: string): Promise<void> {
|
2020-05-07 10:54:55 +00:00
|
|
|
if (this._delay) await new Promise((f) => setTimeout(f, this._delay));
|
2017-08-12 00:47:33 +00:00
|
|
|
debugProtocol('◀ RECV ' + message);
|
2017-08-21 23:39:04 +00:00
|
|
|
const object = JSON.parse(message);
|
2019-01-22 23:10:11 +00:00
|
|
|
if (object.method === 'Target.attachedToTarget') {
|
|
|
|
const sessionId = object.params.sessionId;
|
2020-05-07 10:54:55 +00:00
|
|
|
const session = new CDPSession(
|
|
|
|
this,
|
|
|
|
object.params.targetInfo.type,
|
|
|
|
sessionId
|
|
|
|
);
|
2019-01-22 23:10:11 +00:00
|
|
|
this._sessions.set(sessionId, session);
|
|
|
|
} else if (object.method === 'Target.detachedFromTarget') {
|
|
|
|
const session = this._sessions.get(object.params.sessionId);
|
|
|
|
if (session) {
|
|
|
|
session._onClosed();
|
|
|
|
this._sessions.delete(object.params.sessionId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (object.sessionId) {
|
|
|
|
const session = this._sessions.get(object.sessionId);
|
2020-05-07 10:54:55 +00:00
|
|
|
if (session) session._onMessage(object);
|
2019-01-22 23:10:11 +00:00
|
|
|
} else if (object.id) {
|
2017-08-21 23:39:04 +00:00
|
|
|
const callback = this._callbacks.get(object.id);
|
2018-04-08 00:59:22 +00:00
|
|
|
// Callbacks could be all rejected if someone has called `.dispose()`.
|
|
|
|
if (callback) {
|
|
|
|
this._callbacks.delete(object.id);
|
|
|
|
if (object.error)
|
2020-05-07 10:54:55 +00:00
|
|
|
callback.reject(
|
|
|
|
createProtocolError(callback.error, callback.method, object)
|
|
|
|
);
|
|
|
|
else callback.resolve(object.result);
|
2018-04-08 00:59:22 +00:00
|
|
|
}
|
2017-06-21 20:51:06 +00:00
|
|
|
} else {
|
2019-01-22 23:10:11 +00:00
|
|
|
this.emit(object.method, object.params);
|
2017-06-14 22:45:59 +00:00
|
|
|
}
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
2017-06-14 22:45:59 +00:00
|
|
|
|
2020-04-21 08:20:25 +00:00
|
|
|
_onClose(): void {
|
2020-05-07 10:54:55 +00:00
|
|
|
if (this._closed) return;
|
2018-09-14 18:44:54 +00:00
|
|
|
this._closed = true;
|
2018-09-07 20:36:16 +00:00
|
|
|
this._transport.onmessage = null;
|
|
|
|
this._transport.onclose = null;
|
2017-08-21 23:39:04 +00:00
|
|
|
for (const callback of this._callbacks.values())
|
2020-05-07 10:54:55 +00:00
|
|
|
callback.reject(
|
|
|
|
rewriteError(
|
|
|
|
callback.error,
|
|
|
|
`Protocol error (${callback.method}): Target closed.`
|
|
|
|
)
|
|
|
|
);
|
2017-08-09 23:14:00 +00:00
|
|
|
this._callbacks.clear();
|
2020-05-07 10:54:55 +00:00
|
|
|
for (const session of this._sessions.values()) session._onClosed();
|
2017-08-09 23:14:00 +00:00
|
|
|
this._sessions.clear();
|
2019-01-15 03:57:05 +00:00
|
|
|
this.emit(Events.Connection.Disconnected);
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
2017-06-14 22:45:59 +00:00
|
|
|
|
2020-04-21 08:20:25 +00:00
|
|
|
dispose(): void {
|
2017-08-15 01:08:06 +00:00
|
|
|
this._onClose();
|
2018-02-15 01:51:29 +00:00
|
|
|
this._transport.close();
|
2017-08-09 23:14:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-06-07 01:16:17 +00:00
|
|
|
* @param {Protocol.Target.TargetInfo} targetInfo
|
2020-06-12 10:38:24 +00:00
|
|
|
* @returns {!Promise<!CDPSession>}
|
2017-08-09 23:14:00 +00:00
|
|
|
*/
|
2020-05-07 10:54:55 +00:00
|
|
|
async createSession(
|
|
|
|
targetInfo: Protocol.Target.TargetInfo
|
|
|
|
): Promise<CDPSession> {
|
|
|
|
const { sessionId } = await this.send('Target.attachToTarget', {
|
|
|
|
targetId: targetInfo.targetId,
|
|
|
|
flatten: true,
|
|
|
|
});
|
2019-01-22 23:10:11 +00:00
|
|
|
return this._sessions.get(sessionId);
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
2017-06-14 22:45:59 +00:00
|
|
|
}
|
|
|
|
|
2020-04-21 08:20:25 +00:00
|
|
|
interface CDPSessionOnMessageObject {
|
2020-05-07 10:54:55 +00:00
|
|
|
id?: number;
|
|
|
|
method: string;
|
|
|
|
params: {};
|
|
|
|
error: { message: string; data: any };
|
|
|
|
result?: any;
|
2020-04-21 08:20:25 +00:00
|
|
|
}
|
|
|
|
export class CDPSession extends EventEmitter {
|
|
|
|
_connection: Connection;
|
|
|
|
_sessionId: string;
|
|
|
|
_targetType: string;
|
|
|
|
_callbacks: Map<number, ConnectionCallback> = new Map();
|
|
|
|
|
|
|
|
constructor(connection: Connection, targetType: string, sessionId: string) {
|
2017-08-09 23:14:00 +00:00
|
|
|
super();
|
|
|
|
this._connection = connection;
|
2018-06-07 01:16:17 +00:00
|
|
|
this._targetType = targetType;
|
2017-08-09 23:14:00 +00:00
|
|
|
this._sessionId = sessionId;
|
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
send<T extends keyof Protocol.CommandParameters>(
|
|
|
|
method: T,
|
|
|
|
params?: Protocol.CommandParameters[T]
|
|
|
|
): Promise<Protocol.CommandReturnValues[T]> {
|
2017-08-15 21:54:02 +00:00
|
|
|
if (!this._connection)
|
2020-05-07 10:54:55 +00:00
|
|
|
return Promise.reject(
|
|
|
|
new Error(
|
|
|
|
`Protocol error (${method}): Session closed. Most likely the ${this._targetType} has been closed.`
|
|
|
|
)
|
|
|
|
);
|
2020-04-21 08:20:25 +00:00
|
|
|
|
|
|
|
const id = this._connection._rawSend({
|
|
|
|
sessionId: this._sessionId,
|
|
|
|
method,
|
|
|
|
/* TODO(jacktfranklin@): once this Firefox bug is solved
|
|
|
|
* we no longer need the `|| {}` check
|
|
|
|
* https://bugzilla.mozilla.org/show_bug.cgi?id=1631570
|
|
|
|
*/
|
2020-05-07 10:54:55 +00:00
|
|
|
params: params || {},
|
2020-04-21 08:20:25 +00:00
|
|
|
});
|
|
|
|
|
2017-08-09 23:14:00 +00:00
|
|
|
return new Promise((resolve, reject) => {
|
2020-05-07 10:54:55 +00:00
|
|
|
this._callbacks.set(id, { resolve, reject, error: new Error(), method });
|
2017-08-09 23:14:00 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-04-21 08:20:25 +00:00
|
|
|
_onMessage(object: CDPSessionOnMessageObject): void {
|
2017-08-09 23:14:00 +00:00
|
|
|
if (object.id && this._callbacks.has(object.id)) {
|
2017-08-21 23:39:04 +00:00
|
|
|
const callback = this._callbacks.get(object.id);
|
2017-08-09 23:14:00 +00:00
|
|
|
this._callbacks.delete(object.id);
|
|
|
|
if (object.error)
|
2020-05-07 10:54:55 +00:00
|
|
|
callback.reject(
|
|
|
|
createProtocolError(callback.error, callback.method, object)
|
|
|
|
);
|
|
|
|
else callback.resolve(object.result);
|
2017-08-09 23:14:00 +00:00
|
|
|
} else {
|
2018-05-31 23:53:51 +00:00
|
|
|
assert(!object.id);
|
2017-08-09 23:14:00 +00:00
|
|
|
this.emit(object.method, object.params);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-21 08:20:25 +00:00
|
|
|
async detach(): Promise<void> {
|
2018-08-24 22:17:36 +00:00
|
|
|
if (!this._connection)
|
2020-05-07 10:54:55 +00:00
|
|
|
throw new Error(
|
|
|
|
`Session already detached. Most likely the ${this._targetType} has been closed.`
|
|
|
|
);
|
|
|
|
await this._connection.send('Target.detachFromTarget', {
|
|
|
|
sessionId: this._sessionId,
|
|
|
|
});
|
2017-08-09 23:14:00 +00:00
|
|
|
}
|
|
|
|
|
2020-04-21 08:20:25 +00:00
|
|
|
_onClosed(): void {
|
2017-08-21 23:39:04 +00:00
|
|
|
for (const callback of this._callbacks.values())
|
2020-05-07 10:54:55 +00:00
|
|
|
callback.reject(
|
|
|
|
rewriteError(
|
|
|
|
callback.error,
|
|
|
|
`Protocol error (${callback.method}): Target closed.`
|
|
|
|
)
|
|
|
|
);
|
2017-08-09 23:14:00 +00:00
|
|
|
this._callbacks.clear();
|
2017-08-15 21:54:02 +00:00
|
|
|
this._connection = null;
|
2019-01-15 03:57:05 +00:00
|
|
|
this.emit(Events.CDPSession.Disconnected);
|
2017-08-09 23:14:00 +00:00
|
|
|
}
|
|
|
|
}
|
2018-11-20 22:21:13 +00:00
|
|
|
|
2018-06-14 22:27:59 +00:00
|
|
|
/**
|
|
|
|
* @param {!Error} error
|
|
|
|
* @param {string} method
|
|
|
|
* @param {{error: {message: string, data: any}}} object
|
2020-06-12 10:38:24 +00:00
|
|
|
* @returns {!Error}
|
2018-06-14 22:27:59 +00:00
|
|
|
*/
|
2020-05-07 10:54:55 +00:00
|
|
|
function createProtocolError(
|
|
|
|
error: Error,
|
|
|
|
method: string,
|
|
|
|
object: { error: { message: string; data: any } }
|
|
|
|
): Error {
|
2018-06-14 22:27:59 +00:00
|
|
|
let message = `Protocol error (${method}): ${object.error.message}`;
|
2020-05-07 10:54:55 +00:00
|
|
|
if ('data' in object.error) message += ` ${object.error.data}`;
|
2018-08-24 22:17:36 +00:00
|
|
|
return rewriteError(error, message);
|
2018-06-14 22:27:59 +00:00
|
|
|
}
|
|
|
|
|
2017-12-09 03:05:46 +00:00
|
|
|
/**
|
|
|
|
* @param {!Error} error
|
|
|
|
* @param {string} message
|
2020-06-12 10:38:24 +00:00
|
|
|
* @returns {!Error}
|
2017-12-09 03:05:46 +00:00
|
|
|
*/
|
2020-04-21 08:20:25 +00:00
|
|
|
function rewriteError(error: Error, message: string): Error {
|
2017-12-09 03:05:46 +00:00
|
|
|
error.message = message;
|
|
|
|
return error;
|
|
|
|
}
|