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-04-01 14:42:47 -07:00
|
|
|
import { EventEmitter } from 'events';
|
2025-02-07 13:54:01 -08:00
|
|
|
|
2025-02-12 19:27:24 -08:00
|
|
|
import { debugLogger } from '../utils/debugLogger';
|
2025-02-07 13:54:01 -08:00
|
|
|
import { helper } from '../helper';
|
|
|
|
import { ProtocolError } from '../protocolError';
|
|
|
|
|
2022-04-06 13:57:14 -08:00
|
|
|
import type { ConnectionTransport, ProtocolRequest, ProtocolResponse } from '../transport';
|
|
|
|
import type { Protocol } from './protocol';
|
2025-02-12 19:27:24 -08:00
|
|
|
import type { RecentLogsCollector } from '../utils/debugLogger';
|
2022-04-06 13:57:14 -08:00
|
|
|
import type { ProtocolLogger } from '../types';
|
2025-02-07 13:54:01 -08:00
|
|
|
|
2020-01-07 11:55:24 -08:00
|
|
|
|
2019-12-19 16:53:24 -08:00
|
|
|
export const ConnectionEvents = {
|
|
|
|
Disconnected: Symbol('Disconnected'),
|
|
|
|
};
|
|
|
|
|
2020-01-23 17:45:31 -08:00
|
|
|
// FFPlaywright uses this special id to issue Browser.close command which we
|
|
|
|
// should ignore.
|
|
|
|
export const kBrowserCloseMessageId = -9999;
|
|
|
|
|
2020-04-01 14:42:47 -07:00
|
|
|
export class FFConnection extends EventEmitter {
|
2019-12-19 16:53:24 -08:00
|
|
|
private _lastId: number;
|
|
|
|
private _transport: ConnectionTransport;
|
2020-11-11 15:12:10 -08:00
|
|
|
private readonly _protocolLogger: ProtocolLogger;
|
2020-12-08 09:35:28 -08:00
|
|
|
private readonly _browserLogsCollector: RecentLogsCollector;
|
2023-10-05 13:46:41 -07:00
|
|
|
_browserDisconnectedLogs: string | undefined;
|
|
|
|
readonly rootSession: FFSession;
|
2020-03-06 16:49:48 -08:00
|
|
|
readonly _sessions: Map<string, FFSession>;
|
2019-12-19 16:53:24 -08:00
|
|
|
_closed: boolean;
|
|
|
|
|
2020-12-08 09:35:28 -08:00
|
|
|
constructor(transport: ConnectionTransport, protocolLogger: ProtocolLogger, browserLogsCollector: RecentLogsCollector) {
|
2019-12-19 16:53:24 -08:00
|
|
|
super();
|
2021-02-03 13:53:09 -08:00
|
|
|
this.setMaxListeners(0);
|
2019-12-19 16:53:24 -08:00
|
|
|
this._transport = transport;
|
2020-11-11 15:12:10 -08:00
|
|
|
this._protocolLogger = protocolLogger;
|
2020-12-08 09:35:28 -08:00
|
|
|
this._browserLogsCollector = browserLogsCollector;
|
2019-12-19 16:53:24 -08:00
|
|
|
this._lastId = 0;
|
|
|
|
this._sessions = new Map();
|
|
|
|
this._closed = false;
|
2023-10-05 13:46:41 -07:00
|
|
|
this.rootSession = new FFSession(this, '', message => this._rawSend(message));
|
|
|
|
this._sessions.set('', this.rootSession);
|
2022-06-30 10:58:22 -07:00
|
|
|
|
|
|
|
this._transport.onmessage = this._onMessage.bind(this);
|
|
|
|
// onclose should be set last, since it can be immediately called.
|
|
|
|
this._transport.onclose = this._onClose.bind(this);
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
|
2020-01-17 17:51:02 -08:00
|
|
|
nextMessageId(): number {
|
|
|
|
return ++this._lastId;
|
|
|
|
}
|
|
|
|
|
2020-03-27 15:18:34 -07:00
|
|
|
_rawSend(message: ProtocolRequest) {
|
2020-11-11 15:12:10 -08:00
|
|
|
this._protocolLogger('send', message);
|
2020-03-26 23:30:55 -07:00
|
|
|
this._transport.send(message);
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
|
2020-03-27 15:18:34 -07:00
|
|
|
async _onMessage(message: ProtocolResponse) {
|
2020-11-11 15:12:10 -08:00
|
|
|
this._protocolLogger('receive', message);
|
2020-03-26 23:30:55 -07:00
|
|
|
if (message.id === kBrowserCloseMessageId)
|
2020-01-23 17:45:31 -08:00
|
|
|
return;
|
2023-10-05 13:46:41 -07:00
|
|
|
const session = this._sessions.get(message.sessionId || '');
|
|
|
|
if (session)
|
|
|
|
session.dispatchMessage(message);
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
|
2024-04-01 21:05:33 -07:00
|
|
|
_onClose(reason?: string) {
|
2019-12-19 16:53:24 -08:00
|
|
|
this._closed = true;
|
2020-01-13 22:08:35 -08:00
|
|
|
this._transport.onmessage = undefined;
|
|
|
|
this._transport.onclose = undefined;
|
2024-04-01 21:05:33 -07:00
|
|
|
this._browserDisconnectedLogs = helper.formatBrowserLogs(this._browserLogsCollector.recentLogs(), reason);
|
2023-10-05 13:46:41 -07:00
|
|
|
this.rootSession.dispose();
|
2019-12-19 16:53:24 -08:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-08-26 18:44:49 -07:00
|
|
|
createSession(sessionId: string): FFSession {
|
2021-09-27 18:58:08 +02:00
|
|
|
const session = new FFSession(this, sessionId, message => this._rawSend({ ...message, sessionId }));
|
2020-03-06 16:49:48 -08:00
|
|
|
this._sessions.set(sessionId, session);
|
|
|
|
return session;
|
2019-12-19 16:53:24 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-01 14:42:47 -07:00
|
|
|
export class FFSession extends EventEmitter {
|
2020-01-17 17:51:02 -08:00
|
|
|
_connection: FFConnection;
|
|
|
|
_disposed = false;
|
2023-10-16 13:13:00 -07:00
|
|
|
private _callbacks: Map<number, { resolve: Function, reject: Function, error: ProtocolError }>;
|
2019-12-19 16:53:24 -08:00
|
|
|
private _sessionId: string;
|
2020-01-17 17:51:02 -08:00
|
|
|
private _rawSend: (message: any) => void;
|
2020-04-15 00:04:35 -07:00
|
|
|
private _crashed: boolean = false;
|
2021-08-25 10:11:18 -04:00
|
|
|
override 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;
|
|
|
|
override 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;
|
|
|
|
override 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;
|
|
|
|
override 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;
|
|
|
|
override 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
|
|
|
|
2021-08-26 18:44:49 -07:00
|
|
|
constructor(connection: FFConnection, sessionId: string, rawSend: (message: any) => void) {
|
2019-12-19 16:53:24 -08:00
|
|
|
super();
|
2021-02-03 13:53:09 -08:00
|
|
|
this.setMaxListeners(0);
|
2019-12-19 16:53:24 -08:00
|
|
|
this._callbacks = new Map();
|
|
|
|
this._connection = connection;
|
|
|
|
this._sessionId = sessionId;
|
2020-01-17 17:51:02 -08:00
|
|
|
this._rawSend = rawSend;
|
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
|
|
|
}
|
|
|
|
|
2020-04-15 00:04:35 -07:00
|
|
|
markAsCrashed() {
|
|
|
|
this._crashed = true;
|
|
|
|
}
|
|
|
|
|
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]> {
|
2023-10-16 13:13:00 -07:00
|
|
|
if (this._crashed || this._disposed || this._connection._closed || this._connection._browserDisconnectedLogs)
|
|
|
|
throw new ProtocolError(this._crashed ? 'crashed' : 'closed', undefined, this._connection._browserDisconnectedLogs);
|
2020-01-17 17:51:02 -08:00
|
|
|
const id = this._connection.nextMessageId();
|
2021-09-27 18:58:08 +02:00
|
|
|
this._rawSend({ method, params, id });
|
2019-12-19 16:53:24 -08:00
|
|
|
return new Promise((resolve, reject) => {
|
2023-10-16 13:13:00 -07:00
|
|
|
this._callbacks.set(id, { resolve, reject, error: new ProtocolError('error', method) });
|
2019-12-19 16:53:24 -08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-06-05 07:50:26 -07:00
|
|
|
sendMayFail<T extends keyof Protocol.CommandParameters>(method: T, params?: Protocol.CommandParameters[T]): Promise<Protocol.CommandReturnValues[T] | void> {
|
2020-08-17 14:12:31 -07:00
|
|
|
return this.send(method, params).catch(error => debugLogger.log('error', error));
|
2020-06-05 07:50:26 -07:00
|
|
|
}
|
|
|
|
|
2020-03-27 15:18:34 -07:00
|
|
|
dispatchMessage(object: ProtocolResponse) {
|
2023-10-05 13:46:41 -07: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);
|
2023-10-16 13:13:00 -07:00
|
|
|
if (object.error) {
|
|
|
|
callback.error.setMessage(object.error.message);
|
|
|
|
callback.reject(callback.error);
|
|
|
|
} else {
|
2023-10-05 13:46:41 -07:00
|
|
|
callback.resolve(object.result);
|
2023-10-16 13:13:00 -07:00
|
|
|
}
|
2023-10-05 13:46:41 -07:00
|
|
|
}
|
2019-12-19 16:53:24 -08:00
|
|
|
} else {
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-26 18:44:49 -07:00
|
|
|
dispose() {
|
2023-10-05 13:46:41 -07:00
|
|
|
this._disposed = true;
|
|
|
|
this._connection._sessions.delete(this._sessionId);
|
2021-08-26 18:44:49 -07:00
|
|
|
for (const callback of this._callbacks.values()) {
|
2023-10-16 13:13:00 -07:00
|
|
|
callback.error.type = this._crashed ? 'crashed' : 'closed';
|
|
|
|
callback.error.logs = this._connection._browserDisconnectedLogs;
|
|
|
|
callback.reject(callback.error);
|
2021-08-26 18:44:49 -07:00
|
|
|
}
|
2019-12-19 16:53:24 -08:00
|
|
|
this._callbacks.clear();
|
|
|
|
}
|
|
|
|
}
|