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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import { assert } from '../helper';
|
2020-01-07 11:55:24 -08:00
|
|
|
import * as platform from '../platform';
|
2019-12-19 16:53:24 -08:00
|
|
|
import { ConnectionTransport } from '../transport';
|
|
|
|
import { Protocol } from './protocol';
|
|
|
|
|
2020-01-07 11:55:24 -08:00
|
|
|
const debugProtocol = platform.debug('playwright:protocol');
|
|
|
|
const debugWrappedMessage = platform.debug('wrapped');
|
2019-12-19 16:53:24 -08:00
|
|
|
|
|
|
|
export const WKConnectionEvents = {
|
2020-01-08 13:55:38 -08:00
|
|
|
Disconnected: Symbol('Disconnected'),
|
2020-01-07 10:39:01 -08:00
|
|
|
PageProxyCreated: Symbol('ConnectionEvents.PageProxyCreated'),
|
|
|
|
PageProxyDestroyed: Symbol('Connection.PageProxyDestroyed')
|
|
|
|
};
|
|
|
|
|
2020-01-08 13:55:38 -08:00
|
|
|
export const kBrowserCloseMessageId = -9999;
|
2020-01-08 07:13:51 -08:00
|
|
|
|
2020-01-07 11:55:24 -08:00
|
|
|
export class WKConnection extends platform.EventEmitter {
|
2020-01-07 10:39:01 -08:00
|
|
|
private _lastId = 0;
|
2019-12-19 16:53:24 -08:00
|
|
|
private readonly _callbacks = new Map<number, {resolve:(o: any) => void, reject: (e: Error) => void, error: Error, method: string}>();
|
|
|
|
private readonly _transport: ConnectionTransport;
|
2020-01-07 10:39:01 -08:00
|
|
|
private readonly _pageProxySessions = new Map<string, WKPageProxySession>();
|
2019-12-19 16:53:24 -08:00
|
|
|
|
2020-01-07 10:39:01 -08:00
|
|
|
private _closed = false;
|
2019-12-19 16:53:24 -08:00
|
|
|
|
|
|
|
constructor(transport: ConnectionTransport) {
|
|
|
|
super();
|
|
|
|
this._transport = transport;
|
|
|
|
this._transport.onmessage = this._dispatchMessage.bind(this);
|
|
|
|
this._transport.onclose = this._onClose.bind(this);
|
|
|
|
}
|
|
|
|
|
2020-01-07 10:39:01 -08:00
|
|
|
nextMessageId(): number {
|
|
|
|
return ++this._lastId;
|
|
|
|
}
|
|
|
|
|
2019-12-19 16:53:24 -08:00
|
|
|
send<T extends keyof Protocol.CommandParameters>(
|
|
|
|
method: T,
|
2020-01-07 10:39:01 -08:00
|
|
|
params?: Protocol.CommandParameters[T],
|
|
|
|
pageProxyId?: string
|
2019-12-19 16:53:24 -08:00
|
|
|
): Promise<Protocol.CommandReturnValues[T]> {
|
2020-01-07 10:39:01 -08:00
|
|
|
const id = this._rawSend({pageProxyId, 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});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
_rawSend(message: any): number {
|
2020-01-07 10:39:01 -08:00
|
|
|
const id = this.nextMessageId();
|
2019-12-19 16:53:24 -08:00
|
|
|
message = JSON.stringify(Object.assign({}, message, {id}));
|
|
|
|
debugProtocol('SEND ► ' + message);
|
|
|
|
this._transport.send(message);
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
private _dispatchMessage(message: string) {
|
|
|
|
debugProtocol('◀ RECV ' + message);
|
|
|
|
const object = JSON.parse(message);
|
2020-01-07 10:39:01 -08:00
|
|
|
this._dispatchPageProxyMessage(object, message);
|
2019-12-19 16:53:24 -08:00
|
|
|
if (object.id) {
|
|
|
|
const callback = this._callbacks.get(object.id);
|
|
|
|
// Callbacks could be all rejected if someone has called `.dispose()`.
|
|
|
|
if (callback) {
|
|
|
|
this._callbacks.delete(object.id);
|
|
|
|
if (object.error)
|
|
|
|
callback.reject(createProtocolError(callback.error, callback.method, object));
|
|
|
|
else
|
|
|
|
callback.resolve(object.result);
|
2020-01-08 13:55:38 -08:00
|
|
|
} else if (object.id !== kBrowserCloseMessageId) {
|
2019-12-19 16:53:24 -08:00
|
|
|
assert(this._closed, 'Received response for unknown callback: ' + object.id);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Promise.resolve().then(() => this.emit(object.method, object.params));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-07 10:39:01 -08:00
|
|
|
_dispatchPageProxyMessage(object: {method: string, params: any, id?: string, pageProxyId?: string}, message: string) {
|
|
|
|
if (object.method === 'Browser.pageProxyCreated') {
|
|
|
|
const pageProxyId = object.params.pageProxyInfo.pageProxyId;
|
|
|
|
const pageProxySession = new WKPageProxySession(this, pageProxyId);
|
|
|
|
this._pageProxySessions.set(pageProxyId, pageProxySession);
|
|
|
|
Promise.resolve().then(() => this.emit(WKConnectionEvents.PageProxyCreated, pageProxySession, object.params.pageProxyInfo));
|
|
|
|
} else if (object.method === 'Browser.pageProxyDestroyed') {
|
|
|
|
const pageProxyId = object.params.pageProxyId as string;
|
|
|
|
const pageProxySession = this._pageProxySessions.get(pageProxyId);
|
|
|
|
this._pageProxySessions.delete(pageProxyId);
|
|
|
|
pageProxySession.dispose();
|
|
|
|
Promise.resolve().then(() => this.emit(WKConnectionEvents.PageProxyDestroyed, pageProxyId));
|
|
|
|
} else if (!object.id && object.pageProxyId) {
|
|
|
|
const pageProxySession = this._pageProxySessions.get(object.pageProxyId);
|
2020-01-09 11:02:55 -08:00
|
|
|
Promise.resolve().then(() => pageProxySession.emit(object.method, object.params));
|
2020-01-07 10:39:01 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_onClose() {
|
|
|
|
if (this._closed)
|
|
|
|
return;
|
|
|
|
this._closed = true;
|
|
|
|
this._transport.onmessage = null;
|
|
|
|
this._transport.onclose = null;
|
|
|
|
for (const callback of this._callbacks.values())
|
|
|
|
callback.reject(rewriteError(callback.error, `Protocol error (${callback.method}): Target closed.`));
|
|
|
|
this._callbacks.clear();
|
|
|
|
|
|
|
|
for (const pageProxySession of this._pageProxySessions.values())
|
|
|
|
pageProxySession.dispose();
|
|
|
|
this._pageProxySessions.clear();
|
2020-01-08 13:55:38 -08:00
|
|
|
this.emit(WKConnectionEvents.Disconnected);
|
2020-01-07 10:39:01 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
dispose() {
|
|
|
|
this._onClose();
|
|
|
|
this._transport.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-08 16:34:45 -08:00
|
|
|
export const WKSessionEvents = {
|
|
|
|
Disconnected: Symbol('WKSessionEvents.Disconnected')
|
2020-01-07 10:39:01 -08:00
|
|
|
};
|
|
|
|
|
2020-01-07 11:55:24 -08:00
|
|
|
export class WKPageProxySession extends platform.EventEmitter {
|
2020-01-07 10:39:01 -08:00
|
|
|
_connection: WKConnection;
|
2020-01-09 11:02:55 -08:00
|
|
|
readonly _pageProxyId: string;
|
2020-01-07 17:16:27 -08:00
|
|
|
private readonly _closePromise: Promise<void>;
|
|
|
|
private _closePromiseCallback: () => void;
|
2020-01-07 10:39:01 -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;
|
|
|
|
|
|
|
|
constructor(connection: WKConnection, pageProxyId: string) {
|
|
|
|
super();
|
|
|
|
this._connection = connection;
|
|
|
|
this._pageProxyId = pageProxyId;
|
2020-01-07 17:16:27 -08:00
|
|
|
this._closePromise = new Promise(r => this._closePromiseCallback = r);
|
2020-01-07 10:39:01 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
send<T extends keyof Protocol.CommandParameters>(
|
|
|
|
method: T,
|
|
|
|
params?: Protocol.CommandParameters[T]
|
|
|
|
): Promise<Protocol.CommandReturnValues[T]> {
|
|
|
|
if (!this._connection)
|
|
|
|
return Promise.reject(new Error(`Protocol error (${method}): Session closed. Most likely the pageProxy has been closed.`));
|
2020-01-07 17:16:27 -08:00
|
|
|
return Promise.race([
|
|
|
|
this._closePromise.then(() => { throw new Error('Page proxy closed'); }),
|
|
|
|
this._connection.send(method, params, this._pageProxyId)
|
|
|
|
]);
|
2020-01-07 10:39:01 -08:00
|
|
|
}
|
|
|
|
|
2020-01-07 17:16:27 -08:00
|
|
|
isClosed() {
|
|
|
|
return !this._connection;
|
|
|
|
}
|
|
|
|
|
2020-01-07 10:39:01 -08:00
|
|
|
dispose() {
|
2020-01-07 17:16:27 -08:00
|
|
|
this._closePromiseCallback();
|
2020-01-07 10:39:01 -08:00
|
|
|
this._connection = null;
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-07 12:59:01 -08:00
|
|
|
export class WKSession extends platform.EventEmitter {
|
2020-01-09 11:02:55 -08:00
|
|
|
connection?: WKConnection;
|
2020-01-08 16:34:45 -08:00
|
|
|
errorText: string;
|
2020-01-09 11:02:55 -08:00
|
|
|
readonly sessionId: string;
|
|
|
|
|
|
|
|
private readonly _rawSend: (message: any) => void;
|
|
|
|
private readonly _callbacks = new Map<number, {resolve:(o: any) => void, reject: (e: Error) => void, error: Error, method: string}>();
|
2020-01-08 16:34:45 -08:00
|
|
|
|
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-01-08 16:34:45 -08:00
|
|
|
constructor(connection: WKConnection, sessionId: string, errorText: string, rawSend: (message: any) => void) {
|
|
|
|
super();
|
|
|
|
this.connection = connection;
|
|
|
|
this.sessionId = sessionId;
|
|
|
|
this._rawSend = rawSend;
|
|
|
|
this.errorText = errorText;
|
|
|
|
}
|
|
|
|
|
2020-01-07 12:59:01 -08:00
|
|
|
send<T extends keyof Protocol.CommandParameters>(
|
|
|
|
method: T,
|
|
|
|
params?: Protocol.CommandParameters[T]
|
|
|
|
): Promise<Protocol.CommandReturnValues[T]> {
|
2020-01-08 16:34:45 -08:00
|
|
|
if (!this.connection)
|
|
|
|
return Promise.reject(new Error(`Protocol error (${method}): ${this.errorText}`));
|
|
|
|
const id = this.connection.nextMessageId();
|
|
|
|
const messageObj = { id, method, params };
|
|
|
|
debugWrappedMessage('SEND ► ' + JSON.stringify(messageObj, null, 2));
|
|
|
|
const result = new Promise<Protocol.CommandReturnValues[T]>((resolve, reject) => {
|
|
|
|
this._callbacks.set(id, {resolve, reject, error: new Error(), method});
|
|
|
|
});
|
|
|
|
this._rawSend(messageObj);
|
|
|
|
return result;
|
2020-01-07 12:59:01 -08:00
|
|
|
}
|
|
|
|
|
2020-01-08 16:34:45 -08:00
|
|
|
isDisposed(): boolean {
|
|
|
|
return !this.connection;
|
|
|
|
}
|
|
|
|
|
|
|
|
dispose() {
|
|
|
|
for (const callback of this._callbacks.values())
|
|
|
|
callback.reject(rewriteError(callback.error, `Protocol error (${callback.method}): ${this.errorText}`));
|
|
|
|
this._callbacks.clear();
|
2020-01-09 11:02:55 -08:00
|
|
|
this.connection = undefined;
|
|
|
|
this.emit(WKSessionEvents.Disconnected);
|
2020-01-08 16:34:45 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
dispatchMessage(object: any) {
|
2020-01-07 12:59:01 -08:00
|
|
|
debugWrappedMessage('◀ RECV ' + JSON.stringify(object, null, 2));
|
|
|
|
if (object.id && this._callbacks.has(object.id)) {
|
|
|
|
const callback = this._callbacks.get(object.id);
|
|
|
|
this._callbacks.delete(object.id);
|
|
|
|
if (object.error)
|
|
|
|
callback.reject(createProtocolError(callback.error, callback.method, object));
|
|
|
|
else
|
|
|
|
callback.resolve(object.result);
|
2020-01-08 16:34:45 -08:00
|
|
|
} else if (object.id) {
|
|
|
|
// Response might come after session has been disposed and rejected all callbacks.
|
|
|
|
assert(this.isDisposed());
|
2020-01-07 12:59:01 -08:00
|
|
|
} else {
|
|
|
|
Promise.resolve().then(() => this.emit(object.method, object.params));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function createProtocolError(error: Error, method: string, object: { error: { message: string; data: any; }; }): Error {
|
2019-12-19 16:53:24 -08:00
|
|
|
let message = `Protocol error (${method}): ${object.error.message}`;
|
|
|
|
if ('data' in object.error)
|
|
|
|
message += ` ${object.error.data}`;
|
|
|
|
return rewriteError(error, message);
|
|
|
|
}
|
|
|
|
|
2020-01-07 12:59:01 -08:00
|
|
|
export function rewriteError(error: Error, message: string): Error {
|
2019-12-19 16:53:24 -08:00
|
|
|
error.message = message;
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isSwappedOutError(e: Error) {
|
|
|
|
return e.message.includes('Target was swapped out.');
|
|
|
|
}
|