2019-12-19 16:53:24 -08:00
|
|
|
/**
|
|
|
|
* Copyright 2017 Google Inc. All rights reserved.
|
|
|
|
* Modifications copyright (c) Microsoft Corporation.
|
|
|
|
*
|
|
|
|
* 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-03-06 15:11:03 -08:00
|
|
|
import { assert } from '../helper';
|
2020-01-07 11:55:24 -08:00
|
|
|
import * as platform from '../platform';
|
2020-03-27 15:18:34 -07:00
|
|
|
import { ConnectionTransport, ProtocolRequest, ProtocolResponse } from '../transport';
|
2019-12-19 16:53:24 -08:00
|
|
|
import { Protocol } from './protocol';
|
|
|
|
|
|
|
|
export const ConnectionEvents = {
|
|
|
|
Disconnected: Symbol('ConnectionEvents.Disconnected')
|
|
|
|
};
|
|
|
|
|
2020-01-23 17:45:31 -08:00
|
|
|
// CRPlaywright uses this special id to issue Browser.close command which we
|
|
|
|
// should ignore.
|
|
|
|
export const kBrowserCloseMessageId = -9999;
|
|
|
|
|
2020-01-07 11:55:24 -08:00
|
|
|
export class CRConnection extends platform.EventEmitter {
|
2019-12-19 16:53:24 -08:00
|
|
|
private _lastId = 0;
|
2020-03-06 15:11:03 -08:00
|
|
|
private readonly _transport: ConnectionTransport;
|
|
|
|
private readonly _sessions = new Map<string, CRSession>();
|
2019-12-19 16:53:24 -08:00
|
|
|
readonly rootSession: CRSession;
|
|
|
|
_closed = false;
|
2020-03-26 23:30:55 -07:00
|
|
|
_debugProtocol: platform.DebuggerType;
|
2019-12-19 16:53:24 -08:00
|
|
|
|
|
|
|
constructor(transport: ConnectionTransport) {
|
|
|
|
super();
|
|
|
|
this._transport = transport;
|
|
|
|
this._transport.onmessage = this._onMessage.bind(this);
|
|
|
|
this._transport.onclose = this._onClose.bind(this);
|
2020-03-06 15:11:03 -08:00
|
|
|
this.rootSession = new CRSession(this, '', 'browser', '');
|
2019-12-19 16:53:24 -08:00
|
|
|
this._sessions.set('', this.rootSession);
|
2020-02-12 22:35:06 -08:00
|
|
|
this._debugProtocol = platform.debug('pw:protocol');
|
2020-03-23 15:08:02 -07:00
|
|
|
(this._debugProtocol as any).color = '34';
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
static fromSession(session: CRSession): CRConnection {
|
2020-01-13 13:33:25 -08:00
|
|
|
return session._connection!;
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
session(sessionId: string): CRSession | null {
|
|
|
|
return this._sessions.get(sessionId) || null;
|
|
|
|
}
|
|
|
|
|
2020-03-27 15:18:34 -07:00
|
|
|
_rawSend(sessionId: string, method: string, params: any): number {
|
2019-12-19 16:53:24 -08:00
|
|
|
const id = ++this._lastId;
|
2020-03-27 15:18:34 -07:00
|
|
|
const message: ProtocolRequest = { id, method, params };
|
2019-12-19 16:53:24 -08:00
|
|
|
if (sessionId)
|
|
|
|
message.sessionId = sessionId;
|
2020-03-26 23:30:55 -07:00
|
|
|
if (this._debugProtocol.enabled)
|
|
|
|
this._debugProtocol('SEND ► ' + rewriteInjectedScriptEvaluationLog(message));
|
|
|
|
this._transport.send(message);
|
2019-12-19 16:53:24 -08:00
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2020-03-27 15:18:34 -07:00
|
|
|
async _onMessage(message: ProtocolResponse) {
|
2020-03-26 23:30:55 -07:00
|
|
|
if (this._debugProtocol.enabled)
|
2020-03-27 15:18:34 -07:00
|
|
|
this._debugProtocol('◀ RECV ' + JSON.stringify(message));
|
2020-03-26 23:30:55 -07:00
|
|
|
if (message.id === kBrowserCloseMessageId)
|
2020-01-23 17:45:31 -08:00
|
|
|
return;
|
2020-03-26 23:30:55 -07:00
|
|
|
if (message.method === 'Target.attachedToTarget') {
|
|
|
|
const sessionId = message.params.sessionId;
|
|
|
|
const rootSessionId = message.sessionId || '';
|
|
|
|
const session = new CRSession(this, rootSessionId, message.params.targetInfo.type, sessionId);
|
2019-12-19 16:53:24 -08:00
|
|
|
this._sessions.set(sessionId, session);
|
2020-03-26 23:30:55 -07:00
|
|
|
} else if (message.method === 'Target.detachedFromTarget') {
|
|
|
|
const session = this._sessions.get(message.params.sessionId);
|
2019-12-19 16:53:24 -08:00
|
|
|
if (session) {
|
|
|
|
session._onClosed();
|
2020-03-26 23:30:55 -07:00
|
|
|
this._sessions.delete(message.params.sessionId);
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
}
|
2020-03-26 23:30:55 -07:00
|
|
|
const session = this._sessions.get(message.sessionId || '');
|
2019-12-19 16:53:24 -08:00
|
|
|
if (session)
|
2020-03-26 23:30:55 -07:00
|
|
|
session._onMessage(message);
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
_onClose() {
|
|
|
|
this._closed = true;
|
2020-01-13 13:33:25 -08:00
|
|
|
this._transport.onmessage = undefined;
|
|
|
|
this._transport.onclose = undefined;
|
2019-12-19 16:53:24 -08:00
|
|
|
for (const session of this._sessions.values())
|
|
|
|
session._onClosed();
|
|
|
|
this._sessions.clear();
|
|
|
|
Promise.resolve().then(() => this.emit(ConnectionEvents.Disconnected));
|
|
|
|
}
|
|
|
|
|
2020-01-22 17:42:10 -08:00
|
|
|
close() {
|
|
|
|
if (!this._closed)
|
|
|
|
this._transport.close();
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
async createSession(targetInfo: Protocol.Target.TargetInfo): Promise<CRSession> {
|
|
|
|
const { sessionId } = await this.rootSession.send('Target.attachToTarget', { targetId: targetInfo.targetId, flatten: true });
|
2020-01-13 13:33:25 -08:00
|
|
|
return this._sessions.get(sessionId)!;
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
async createBrowserSession(): Promise<CRSession> {
|
|
|
|
const { sessionId } = await this.rootSession.send('Target.attachToBrowserTarget');
|
2020-01-13 13:33:25 -08:00
|
|
|
return this._sessions.get(sessionId)!;
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const CRSessionEvents = {
|
|
|
|
Disconnected: Symbol('Events.CDPSession.Disconnected')
|
|
|
|
};
|
|
|
|
|
2020-01-07 11:55:24 -08:00
|
|
|
export class CRSession extends platform.EventEmitter {
|
2020-01-13 13:33:25 -08:00
|
|
|
_connection: CRConnection | null;
|
2020-03-06 15:11:03 -08:00
|
|
|
private readonly _callbacks = new Map<number, {resolve: (o: any) => void, reject: (e: Error) => void, error: Error, method: string}>();
|
|
|
|
private readonly _targetType: string;
|
|
|
|
private readonly _sessionId: string;
|
|
|
|
private readonly _rootSessionId: string;
|
2019-12-19 16:53:24 -08:00
|
|
|
on: <T extends keyof Protocol.Events | symbol>(event: T, listener: (payload: T extends symbol ? any : Protocol.Events[T extends keyof Protocol.Events ? T : never]) => void) => this;
|
|
|
|
addListener: <T extends keyof Protocol.Events | symbol>(event: T, listener: (payload: T extends symbol ? any : Protocol.Events[T extends keyof Protocol.Events ? T : never]) => void) => this;
|
|
|
|
off: <T extends keyof Protocol.Events | symbol>(event: T, listener: (payload: T extends symbol ? any : Protocol.Events[T extends keyof Protocol.Events ? T : never]) => void) => this;
|
|
|
|
removeListener: <T extends keyof Protocol.Events | symbol>(event: T, listener: (payload: T extends symbol ? any : Protocol.Events[T extends keyof Protocol.Events ? T : never]) => void) => this;
|
|
|
|
once: <T extends keyof Protocol.Events | symbol>(event: T, listener: (payload: T extends symbol ? any : Protocol.Events[T extends keyof Protocol.Events ? T : never]) => void) => this;
|
|
|
|
|
2020-03-06 15:11:03 -08:00
|
|
|
constructor(connection: CRConnection, rootSessionId: string, targetType: string, sessionId: string) {
|
2019-12-19 16:53:24 -08:00
|
|
|
super();
|
|
|
|
this._connection = connection;
|
2020-03-06 15:11:03 -08:00
|
|
|
this._rootSessionId = rootSessionId;
|
2019-12-19 16:53:24 -08:00
|
|
|
this._targetType = targetType;
|
|
|
|
this._sessionId = sessionId;
|
2020-01-13 13:33:25 -08:00
|
|
|
|
|
|
|
this.on = super.on;
|
|
|
|
this.addListener = super.addListener;
|
|
|
|
this.off = super.removeListener;
|
|
|
|
this.removeListener = super.removeListener;
|
|
|
|
this.once = super.once;
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
|
2020-03-02 13:51:32 -08:00
|
|
|
async send<T extends keyof Protocol.CommandParameters>(
|
2019-12-19 16:53:24 -08:00
|
|
|
method: T,
|
|
|
|
params?: Protocol.CommandParameters[T]
|
|
|
|
): Promise<Protocol.CommandReturnValues[T]> {
|
|
|
|
if (!this._connection)
|
2020-03-02 13:51:32 -08:00
|
|
|
throw new Error(`Protocol error (${method}): Session closed. Most likely the ${this._targetType} has been closed.`);
|
2020-03-27 15:18:34 -07:00
|
|
|
const id = this._connection._rawSend(this._sessionId, method, params);
|
2019-12-19 16:53:24 -08:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
this._callbacks.set(id, {resolve, reject, error: new Error(), method});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-03-27 15:18:34 -07:00
|
|
|
_onMessage(object: ProtocolResponse) {
|
2019-12-19 16:53:24 -08:00
|
|
|
if (object.id && this._callbacks.has(object.id)) {
|
2020-01-13 13:33:25 -08:00
|
|
|
const callback = this._callbacks.get(object.id)!;
|
2019-12-19 16:53:24 -08:00
|
|
|
this._callbacks.delete(object.id);
|
|
|
|
if (object.error)
|
2020-03-26 23:30:55 -07:00
|
|
|
callback.reject(createProtocolError(callback.error, callback.method, object.error));
|
2019-12-19 16:53:24 -08:00
|
|
|
else
|
|
|
|
callback.resolve(object.result);
|
|
|
|
} else {
|
|
|
|
assert(!object.id);
|
2020-03-27 15:18:34 -07:00
|
|
|
Promise.resolve().then(() => this.emit(object.method!, object.params));
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async detach() {
|
|
|
|
if (!this._connection)
|
|
|
|
throw new Error(`Session already detached. Most likely the ${this._targetType} has been closed.`);
|
2020-03-06 15:11:03 -08:00
|
|
|
const rootSession = this._connection.session(this._rootSessionId);
|
|
|
|
if (!rootSession)
|
|
|
|
throw new Error('Root session has been closed');
|
|
|
|
await rootSession.send('Target.detachFromTarget', { sessionId: this._sessionId });
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
_onClosed() {
|
|
|
|
for (const callback of this._callbacks.values())
|
|
|
|
callback.reject(rewriteError(callback.error, `Protocol error (${callback.method}): Target closed.`));
|
|
|
|
this._callbacks.clear();
|
|
|
|
this._connection = null;
|
|
|
|
Promise.resolve().then(() => this.emit(CRSessionEvents.Disconnected));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-26 23:30:55 -07:00
|
|
|
function createProtocolError(error: Error, method: string, protocolError: { message: string; data: any; }): Error {
|
|
|
|
let message = `Protocol error (${method}): ${protocolError.message}`;
|
|
|
|
if ('data' in protocolError)
|
|
|
|
message += ` ${protocolError.data}`;
|
2019-12-19 16:53:24 -08:00
|
|
|
return rewriteError(error, message);
|
|
|
|
}
|
|
|
|
|
|
|
|
function rewriteError(error: Error, message: string): Error {
|
|
|
|
error.message = message;
|
|
|
|
return error;
|
|
|
|
}
|
2020-02-18 19:56:59 -08:00
|
|
|
|
2020-03-27 15:18:34 -07:00
|
|
|
function rewriteInjectedScriptEvaluationLog(message: ProtocolRequest): string {
|
2020-02-18 19:56:59 -08:00
|
|
|
// Injected script is very long and clutters protocol logs.
|
|
|
|
// To increase development velocity, we skip replace it with short description in the log.
|
|
|
|
if (message.method === 'Runtime.evaluate' && message.params && message.params.expression && message.params.expression.includes('src/injected/injected.ts'))
|
|
|
|
return `{"id":${message.id} [evaluate injected script]}`;
|
2020-03-26 23:30:55 -07:00
|
|
|
return JSON.stringify(message);
|
2020-02-18 19:56:59 -08:00
|
|
|
}
|