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
|
|
|
|
2020-01-13 09:14:28 -08:00
|
|
|
const debugProtocol = platform.debug('pw:protocol');
|
2019-12-19 16:53:24 -08:00
|
|
|
|
|
|
|
export const ConnectionEvents = {
|
|
|
|
Disconnected: Symbol('Disconnected'),
|
|
|
|
};
|
|
|
|
|
2020-01-07 11:55:24 -08:00
|
|
|
export class FFConnection extends platform.EventEmitter {
|
2019-12-19 16:53:24 -08:00
|
|
|
private _lastId: number;
|
|
|
|
private _callbacks: Map<number, {resolve: Function, reject: Function, error: Error, method: string}>;
|
|
|
|
private _transport: ConnectionTransport;
|
|
|
|
private _sessions: Map<string, FFSession>;
|
|
|
|
_closed: boolean;
|
|
|
|
|
2020-01-13 22:08:35 -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;
|
|
|
|
|
2019-12-19 16:53:24 -08:00
|
|
|
constructor(transport: ConnectionTransport) {
|
|
|
|
super();
|
|
|
|
this._transport = transport;
|
|
|
|
this._lastId = 0;
|
|
|
|
this._callbacks = new Map();
|
|
|
|
|
|
|
|
this._transport.onmessage = this._onMessage.bind(this);
|
|
|
|
this._transport.onclose = this._onClose.bind(this);
|
|
|
|
this._sessions = new Map();
|
|
|
|
this._closed = false;
|
2020-01-13 22:08:35 -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
|
|
|
}
|
|
|
|
|
|
|
|
static fromSession(session: FFSession): FFConnection {
|
2020-01-13 22:08:35 -08:00
|
|
|
return session._connection!;
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
session(sessionId: string): FFSession | null {
|
|
|
|
return this._sessions.get(sessionId) || null;
|
|
|
|
}
|
|
|
|
|
2020-01-13 22:08:35 -08:00
|
|
|
send<T extends keyof Protocol.CommandParameters>(
|
|
|
|
method: T,
|
|
|
|
params?: Protocol.CommandParameters[T]
|
|
|
|
): Promise<Protocol.CommandReturnValues[T]> {
|
2019-12-19 16:53:24 -08:00
|
|
|
const id = this._rawSend({method, params});
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
this._callbacks.set(id, {resolve, reject, error: new Error(), method});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
_rawSend(message: any): number {
|
|
|
|
const id = ++this._lastId;
|
|
|
|
message = JSON.stringify(Object.assign({}, message, {id}));
|
|
|
|
debugProtocol('SEND ► ' + message);
|
|
|
|
this._transport.send(message);
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
async _onMessage(message: string) {
|
|
|
|
debugProtocol('◀ RECV ' + message);
|
|
|
|
const object = JSON.parse(message);
|
|
|
|
if (object.method === 'Target.attachedToTarget') {
|
|
|
|
const sessionId = object.params.sessionId;
|
|
|
|
const session = new FFSession(this, object.params.targetInfo.type, sessionId);
|
|
|
|
this._sessions.set(sessionId, session);
|
|
|
|
} else if (object.method === 'Browser.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);
|
|
|
|
if (session)
|
|
|
|
session._onMessage(object);
|
|
|
|
} else 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);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Promise.resolve().then(() => this.emit(object.method, object.params));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_onClose() {
|
|
|
|
if (this._closed)
|
|
|
|
return;
|
|
|
|
this._closed = true;
|
2020-01-13 22:08:35 -08:00
|
|
|
this._transport.onmessage = undefined;
|
|
|
|
this._transport.onclose = undefined;
|
2019-12-19 16:53:24 -08:00
|
|
|
for (const callback of this._callbacks.values())
|
|
|
|
callback.reject(rewriteError(callback.error, `Protocol error (${callback.method}): Target closed.`));
|
|
|
|
this._callbacks.clear();
|
|
|
|
for (const session of this._sessions.values())
|
|
|
|
session._onClosed();
|
|
|
|
this._sessions.clear();
|
|
|
|
Promise.resolve().then(() => this.emit(ConnectionEvents.Disconnected));
|
|
|
|
}
|
|
|
|
|
|
|
|
dispose() {
|
|
|
|
this._onClose();
|
|
|
|
this._transport.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
async createSession(targetId: string): Promise<FFSession> {
|
|
|
|
const {sessionId} = await this.send('Target.attachToTarget', {targetId});
|
2020-01-13 22:08:35 -08:00
|
|
|
return this._sessions.get(sessionId)!;
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const FFSessionEvents = {
|
|
|
|
Disconnected: Symbol('Disconnected')
|
|
|
|
};
|
|
|
|
|
2020-01-07 11:55:24 -08:00
|
|
|
export class FFSession extends platform.EventEmitter {
|
2020-01-13 22:08:35 -08:00
|
|
|
_connection: FFConnection | null;
|
2019-12-19 16:53:24 -08:00
|
|
|
private _callbacks: Map<number, {resolve: Function, reject: Function, error: Error, method: string}>;
|
|
|
|
private _targetType: string;
|
|
|
|
private _sessionId: string;
|
|
|
|
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: FFConnection, targetType: string, sessionId: string) {
|
|
|
|
super();
|
|
|
|
this._callbacks = new Map();
|
|
|
|
this._connection = connection;
|
|
|
|
this._targetType = targetType;
|
|
|
|
this._sessionId = sessionId;
|
2020-01-13 22:08:35 -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
|
|
|
}
|
|
|
|
|
|
|
|
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 ${this._targetType} has been closed.`));
|
|
|
|
const id = this._connection._rawSend({sessionId: this._sessionId, method, params});
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
this._callbacks.set(id, {resolve, reject, error: new Error(), method});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
_onMessage(object: { id?: number; method: string; params: object; error: { message: string; data: any; }; result?: any; }) {
|
|
|
|
if (object.id && this._callbacks.has(object.id)) {
|
2020-01-13 22:08:35 -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)
|
|
|
|
callback.reject(createProtocolError(callback.error, callback.method, object));
|
|
|
|
else
|
|
|
|
callback.resolve(object.result);
|
|
|
|
} else {
|
|
|
|
assert(!object.id);
|
|
|
|
Promise.resolve().then(() => this.emit(object.method, object.params));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_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(FFSessionEvents.Disconnected));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function createProtocolError(error: Error, method: string, object: { error: { message: string; data: any; }; }): Error {
|
|
|
|
let message = `Protocol error (${method}): ${object.error.message}`;
|
|
|
|
if ('data' in object.error)
|
|
|
|
message += ` ${object.error.data}`;
|
|
|
|
return rewriteError(error, message);
|
|
|
|
}
|
|
|
|
|
|
|
|
function rewriteError(error: Error, message: string): Error {
|
|
|
|
error.message = message;
|
|
|
|
return error;
|
|
|
|
}
|