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.
|
|
|
|
*/
|
2022-08-17 12:39:41 +00:00
|
|
|
import {assert} from '../util/assert.js';
|
2022-06-22 13:25:44 +00:00
|
|
|
import {debug} from './Debug.js';
|
2020-06-15 08:36:45 +00:00
|
|
|
const debugProtocolSend = debug('puppeteer:protocol:SEND ►');
|
|
|
|
const debugProtocolReceive = debug('puppeteer:protocol:RECV ◀');
|
2020-04-21 08:20:25 +00:00
|
|
|
|
2022-06-22 13:25:44 +00:00
|
|
|
import {Protocol} from 'devtools-protocol';
|
|
|
|
import {ProtocolMapping} from 'devtools-protocol/types/protocol-mapping.js';
|
|
|
|
import {ConnectionTransport} from './ConnectionTransport.js';
|
|
|
|
import {EventEmitter} from './EventEmitter.js';
|
|
|
|
import {ProtocolError} from './Errors.js';
|
2020-04-21 08:20:25 +00:00
|
|
|
|
2021-04-12 13:57:05 +00:00
|
|
|
/**
|
|
|
|
* @public
|
|
|
|
*/
|
2022-06-22 13:25:44 +00:00
|
|
|
export {ConnectionTransport, ProtocolMapping};
|
2021-04-12 13:57:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
export interface ConnectionCallback {
|
feat!: type inference for evaluation types (#8547)
This PR greatly improves the types within Puppeteer:
- **Almost everything** is auto-deduced.
- Parameters don't need to be specified in the function. They are deduced from the spread.
- Return types don't need to be specified. They are deduced from the function. (More on this below)
- Selections based on tag names correctly deduce element type, similar to TypeScript's mechanism for `getElementByTagName`.
- [**BREAKING CHANGE**] We've removed the ability to declare return types in type arguments for the following reasons:
1. Setting them will indubitably break auto-deduction.
2. You can just use `as ...` in TypeScript to coerce the correct type (given it makes sense).
- [**BREAKING CHANGE**] `waitFor` is officially gone.
To migrate to these changes, there are only four things you may need to change:
- If you set a return type using the `ReturnType` type parameter, remove it and use `as ...` and `HandleFor` (if necessary).
⛔ `evaluate<ReturnType>(a: number, b: number) => {...}, a, b)`
✅ `(await evaluate(a, b) => {...}, a, b)) as ReturnType`
⛔ `evaluateHandle<ReturnType>(a: number, b: number) => {...}, a, b)`
✅ `(await evaluateHandle(a, b) => {...}, a, b)) as HandleFor<ReturnType>`
- If you set any type parameters in the *parameters* of an evaluation function, remove them.
⛔ `evaluate(a: number, b: number) => {...}, a, b)`
✅ `evaluate(a, b) => {...}, a, b)`
- If you set any type parameters in the method's declaration, remove them.
⛔ `evaluate<(a: number, b: number) => void>((a, b) => {...}, a, b)`
✅ `evaluate(a, b) => {...}, a, b)`
2022-06-23 09:29:46 +00:00
|
|
|
resolve(args: unknown): void;
|
|
|
|
reject(args: unknown): void;
|
2021-10-04 06:18:03 +00:00
|
|
|
error: ProtocolError;
|
2020-05-07 10:54:55 +00:00
|
|
|
method: string;
|
2020-04-21 08:20:25 +00:00
|
|
|
}
|
|
|
|
|
2020-07-08 10:11:01 +00:00
|
|
|
/**
|
|
|
|
* Internal events that the Connection class emits.
|
|
|
|
*
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
export const ConnectionEmittedEvents = {
|
|
|
|
Disconnected: Symbol('Connection.Disconnected'),
|
|
|
|
} as const;
|
|
|
|
|
|
|
|
/**
|
2021-07-09 08:12:01 +00:00
|
|
|
* @public
|
2020-07-08 10:11:01 +00:00
|
|
|
*/
|
2020-04-21 08:20:25 +00:00
|
|
|
export class Connection extends EventEmitter {
|
2022-06-13 09:16:25 +00:00
|
|
|
#url: string;
|
|
|
|
#transport: ConnectionTransport;
|
|
|
|
#delay: number;
|
|
|
|
#lastId = 0;
|
2022-09-15 13:50:12 +00:00
|
|
|
#sessions: Map<string, CDPSessionImpl> = new Map();
|
2022-06-13 09:16:25 +00:00
|
|
|
#closed = false;
|
|
|
|
#callbacks: Map<number, ConnectionCallback> = new Map();
|
2022-07-21 18:50:46 +00:00
|
|
|
#manuallyAttached = new Set<string>();
|
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();
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#url = url;
|
|
|
|
this.#delay = delay;
|
2017-06-14 22:45:59 +00:00
|
|
|
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#transport = transport;
|
2022-06-28 12:48:29 +00:00
|
|
|
this.#transport.onmessage = this.onMessage.bind(this);
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#transport.onclose = this.#onClose.bind(this);
|
2018-09-14 18:44:54 +00:00
|
|
|
}
|
|
|
|
|
2022-01-21 10:46:18 +00:00
|
|
|
static fromSession(session: CDPSession): Connection | undefined {
|
2022-06-13 09:16:25 +00:00
|
|
|
return session.connection();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
get _closed(): boolean {
|
|
|
|
return this.#closed;
|
2019-01-22 23:10:11 +00:00
|
|
|
}
|
|
|
|
|
2022-06-28 12:48:29 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
get _sessions(): Map<string, CDPSession> {
|
|
|
|
return this.#sessions;
|
|
|
|
}
|
|
|
|
|
2019-01-22 23:10:11 +00:00
|
|
|
/**
|
2021-04-12 13:57:05 +00:00
|
|
|
* @param sessionId - The session id
|
|
|
|
* @returns The current CDP session if it exists
|
2019-01-22 23:10:11 +00:00
|
|
|
*/
|
2020-04-21 08:20:25 +00:00
|
|
|
session(sessionId: string): CDPSession | null {
|
2022-06-13 09:16:25 +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 {
|
2022-06-13 09:16:25 +00:00
|
|
|
return this.#url;
|
2017-08-15 21:29:42 +00:00
|
|
|
}
|
|
|
|
|
2020-07-10 10:51:52 +00:00
|
|
|
send<T extends keyof ProtocolMapping.Commands>(
|
2020-05-07 10:54:55 +00:00
|
|
|
method: T,
|
2020-07-10 10:51:52 +00:00
|
|
|
...paramArgs: ProtocolMapping.Commands[T]['paramsType']
|
|
|
|
): Promise<ProtocolMapping.Commands[T]['returnType']> {
|
|
|
|
// There is only ever 1 param arg passed, but the Protocol defines it as an
|
|
|
|
// array of 0 or 1 items See this comment:
|
|
|
|
// https://github.com/ChromeDevTools/devtools-protocol/pull/113#issuecomment-412603285
|
|
|
|
// which explains why the protocol defines the params this way for better
|
|
|
|
// type-inference.
|
|
|
|
// So now we check if there are any params or not and deal with them accordingly.
|
|
|
|
const params = paramArgs.length ? paramArgs[0] : undefined;
|
2022-06-22 13:25:44 +00:00
|
|
|
const id = this._rawSend({method, params});
|
2017-06-21 20:51:06 +00:00
|
|
|
return new Promise((resolve, reject) => {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#callbacks.set(id, {
|
2021-10-04 06:18:03 +00:00
|
|
|
resolve,
|
|
|
|
reject,
|
|
|
|
error: new ProtocolError(),
|
|
|
|
method,
|
|
|
|
});
|
2017-06-21 20:51:06 +00:00
|
|
|
});
|
|
|
|
}
|
2017-06-14 22:45:59 +00:00
|
|
|
|
2022-06-13 09:16:25 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2020-10-12 09:30:35 +00:00
|
|
|
_rawSend(message: Record<string, unknown>): number {
|
2022-06-13 09:16:25 +00:00
|
|
|
const id = ++this.#lastId;
|
2022-06-22 13:25:44 +00:00
|
|
|
const stringifiedMessage = JSON.stringify(Object.assign({}, message, {id}));
|
2020-10-12 09:30:35 +00:00
|
|
|
debugProtocolSend(stringifiedMessage);
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#transport.send(stringifiedMessage);
|
2019-01-22 23:10:11 +00:00
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2022-06-28 12:48:29 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
protected async onMessage(message: string): Promise<void> {
|
2022-06-14 11:55:35 +00:00
|
|
|
if (this.#delay) {
|
2022-06-22 13:25:44 +00:00
|
|
|
await new Promise(f => {
|
2022-06-15 10:42:21 +00:00
|
|
|
return setTimeout(f, this.#delay);
|
|
|
|
});
|
2022-06-14 11:55:35 +00:00
|
|
|
}
|
2020-06-15 08:36:45 +00:00
|
|
|
debugProtocolReceive(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;
|
2022-09-15 13:50:12 +00:00
|
|
|
const session = new CDPSessionImpl(
|
2020-05-07 10:54:55 +00:00
|
|
|
this,
|
|
|
|
object.params.targetInfo.type,
|
|
|
|
sessionId
|
|
|
|
);
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#sessions.set(sessionId, session);
|
2021-05-07 08:31:39 +00:00
|
|
|
this.emit('sessionattached', session);
|
2022-06-13 09:16:25 +00:00
|
|
|
const parentSession = this.#sessions.get(object.sessionId);
|
2021-05-26 16:44:29 +00:00
|
|
|
if (parentSession) {
|
|
|
|
parentSession.emit('sessionattached', session);
|
|
|
|
}
|
2019-01-22 23:10:11 +00:00
|
|
|
} else if (object.method === 'Target.detachedFromTarget') {
|
2022-06-13 09:16:25 +00:00
|
|
|
const session = this.#sessions.get(object.params.sessionId);
|
2019-01-22 23:10:11 +00:00
|
|
|
if (session) {
|
|
|
|
session._onClosed();
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#sessions.delete(object.params.sessionId);
|
2021-05-07 08:31:39 +00:00
|
|
|
this.emit('sessiondetached', session);
|
2022-06-13 09:16:25 +00:00
|
|
|
const parentSession = this.#sessions.get(object.sessionId);
|
2021-05-26 16:44:29 +00:00
|
|
|
if (parentSession) {
|
|
|
|
parentSession.emit('sessiondetached', session);
|
|
|
|
}
|
2019-01-22 23:10:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (object.sessionId) {
|
2022-06-13 09:16:25 +00:00
|
|
|
const session = this.#sessions.get(object.sessionId);
|
2022-06-14 11:55:35 +00:00
|
|
|
if (session) {
|
|
|
|
session._onMessage(object);
|
|
|
|
}
|
2019-01-22 23:10:11 +00:00
|
|
|
} else if (object.id) {
|
2022-06-13 09:16:25 +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) {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#callbacks.delete(object.id);
|
2022-06-14 11:55:35 +00:00
|
|
|
if (object.error) {
|
2020-05-07 10:54:55 +00:00
|
|
|
callback.reject(
|
|
|
|
createProtocolError(callback.error, callback.method, object)
|
|
|
|
);
|
2022-06-14 11:55:35 +00:00
|
|
|
} 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
|
|
|
|
2022-06-13 09:16:25 +00:00
|
|
|
#onClose(): void {
|
2022-06-14 11:55:35 +00:00
|
|
|
if (this.#closed) {
|
|
|
|
return;
|
|
|
|
}
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#closed = true;
|
|
|
|
this.#transport.onmessage = undefined;
|
|
|
|
this.#transport.onclose = undefined;
|
2022-06-14 11:55:35 +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.`
|
|
|
|
)
|
|
|
|
);
|
2022-06-14 11:55:35 +00:00
|
|
|
}
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#callbacks.clear();
|
2022-06-14 11:55:35 +00:00
|
|
|
for (const session of this.#sessions.values()) {
|
|
|
|
session._onClosed();
|
|
|
|
}
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#sessions.clear();
|
2020-07-08 10:11:01 +00:00
|
|
|
this.emit(ConnectionEmittedEvents.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 {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#onClose();
|
|
|
|
this.#transport.close();
|
2017-08-09 23:14:00 +00:00
|
|
|
}
|
|
|
|
|
2022-07-21 18:50:46 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
isAutoAttached(targetId: string): boolean {
|
|
|
|
return !this.#manuallyAttached.has(targetId);
|
|
|
|
}
|
|
|
|
|
2017-08-09 23:14:00 +00:00
|
|
|
/**
|
2022-08-16 10:56:13 +00:00
|
|
|
* @internal
|
2017-08-09 23:14:00 +00:00
|
|
|
*/
|
2022-08-16 10:56:13 +00:00
|
|
|
async _createSession(
|
|
|
|
targetInfo: Protocol.Target.TargetInfo,
|
|
|
|
isAutoAttachEmulated = true
|
2020-05-07 10:54:55 +00:00
|
|
|
): Promise<CDPSession> {
|
2022-08-16 10:56:13 +00:00
|
|
|
if (!isAutoAttachEmulated) {
|
|
|
|
this.#manuallyAttached.add(targetInfo.targetId);
|
|
|
|
}
|
2022-06-22 13:25:44 +00:00
|
|
|
const {sessionId} = await this.send('Target.attachToTarget', {
|
2020-05-07 10:54:55 +00:00
|
|
|
targetId: targetInfo.targetId,
|
|
|
|
flatten: true,
|
|
|
|
});
|
2022-08-16 10:56:13 +00:00
|
|
|
this.#manuallyAttached.delete(targetInfo.targetId);
|
2022-06-13 09:16:25 +00:00
|
|
|
const session = this.#sessions.get(sessionId);
|
2022-01-21 10:46:18 +00:00
|
|
|
if (!session) {
|
|
|
|
throw new Error('CDPSession creation failed.');
|
|
|
|
}
|
|
|
|
return session;
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
2022-08-16 10:56:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param targetInfo - The target info
|
|
|
|
* @returns The CDP session that is created
|
|
|
|
*/
|
|
|
|
async createSession(
|
|
|
|
targetInfo: Protocol.Target.TargetInfo
|
|
|
|
): Promise<CDPSession> {
|
|
|
|
return await this._createSession(targetInfo, false);
|
|
|
|
}
|
2017-06-14 22:45:59 +00:00
|
|
|
}
|
|
|
|
|
2021-04-12 13:57:05 +00:00
|
|
|
/**
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
export interface CDPSessionOnMessageObject {
|
2020-05-07 10:54:55 +00:00
|
|
|
id?: number;
|
|
|
|
method: string;
|
2020-10-12 09:30:35 +00:00
|
|
|
params: Record<string, unknown>;
|
2022-06-22 13:25:44 +00:00
|
|
|
error: {message: string; data: any; code: number};
|
2020-05-07 10:54:55 +00:00
|
|
|
result?: any;
|
2020-04-21 08:20:25 +00:00
|
|
|
}
|
2020-06-22 10:05:10 +00:00
|
|
|
|
2020-07-08 10:11:01 +00:00
|
|
|
/**
|
|
|
|
* Internal events that the CDPSession class emits.
|
|
|
|
*
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
export const CDPSessionEmittedEvents = {
|
|
|
|
Disconnected: Symbol('CDPSession.Disconnected'),
|
|
|
|
} as const;
|
|
|
|
|
2020-06-22 10:05:10 +00:00
|
|
|
/**
|
|
|
|
* The `CDPSession` instances are used to talk raw Chrome Devtools Protocol.
|
|
|
|
*
|
|
|
|
* @remarks
|
|
|
|
*
|
|
|
|
* Protocol methods can be called with {@link CDPSession.send} method and protocol
|
|
|
|
* events can be subscribed to with `CDPSession.on` method.
|
|
|
|
*
|
|
|
|
* Useful links: {@link https://chromedevtools.github.io/devtools-protocol/ | DevTools Protocol Viewer}
|
2021-09-14 15:02:39 +00:00
|
|
|
* and {@link https://github.com/aslushnikov/getting-started-with-cdp/blob/HEAD/README.md | Getting Started with DevTools Protocol}.
|
2020-06-22 10:05:10 +00:00
|
|
|
*
|
|
|
|
* @example
|
2022-08-12 12:15:26 +00:00
|
|
|
*
|
2022-07-01 11:52:39 +00:00
|
|
|
* ```ts
|
2020-06-22 10:05:10 +00:00
|
|
|
* const client = await page.target().createCDPSession();
|
|
|
|
* await client.send('Animation.enable');
|
2022-08-12 12:15:26 +00:00
|
|
|
* client.on('Animation.animationCreated', () =>
|
|
|
|
* console.log('Animation created!')
|
|
|
|
* );
|
2020-06-22 10:05:10 +00:00
|
|
|
* const response = await client.send('Animation.getPlaybackRate');
|
|
|
|
* console.log('playback rate is ' + response.playbackRate);
|
|
|
|
* await client.send('Animation.setPlaybackRate', {
|
2022-08-12 12:15:26 +00:00
|
|
|
* playbackRate: response.playbackRate / 2,
|
2020-06-22 10:05:10 +00:00
|
|
|
* });
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
*/
|
2020-04-21 08:20:25 +00:00
|
|
|
export class CDPSession extends EventEmitter {
|
2022-09-15 13:50:12 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
|
|
|
connection(): Connection | undefined {
|
|
|
|
throw new Error('Not implemented');
|
|
|
|
}
|
|
|
|
|
|
|
|
send<T extends keyof ProtocolMapping.Commands>(
|
|
|
|
method: T,
|
|
|
|
...paramArgs: ProtocolMapping.Commands[T]['paramsType']
|
|
|
|
): Promise<ProtocolMapping.Commands[T]['returnType']>;
|
|
|
|
send<T extends keyof ProtocolMapping.Commands>(): Promise<
|
|
|
|
ProtocolMapping.Commands[T]['returnType']
|
|
|
|
> {
|
|
|
|
throw new Error('Not implemented');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Detaches the cdpSession from the target. Once detached, the cdpSession object
|
|
|
|
* won't emit any events and can't be used to send messages.
|
|
|
|
*/
|
|
|
|
async detach(): Promise<void> {
|
|
|
|
throw new Error('Not implemented');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the session's id.
|
|
|
|
*/
|
|
|
|
id(): string {
|
|
|
|
throw new Error('Not implemented');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
export class CDPSessionImpl extends CDPSession {
|
2022-06-13 09:16:25 +00:00
|
|
|
#sessionId: string;
|
|
|
|
#targetType: string;
|
|
|
|
#callbacks: Map<number, ConnectionCallback> = new Map();
|
|
|
|
#connection?: Connection;
|
2020-04-21 08:20:25 +00:00
|
|
|
|
2020-06-22 10:05:10 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2020-04-21 08:20:25 +00:00
|
|
|
constructor(connection: Connection, targetType: string, sessionId: string) {
|
2017-08-09 23:14:00 +00:00
|
|
|
super();
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#connection = connection;
|
|
|
|
this.#targetType = targetType;
|
|
|
|
this.#sessionId = sessionId;
|
2017-08-09 23:14:00 +00:00
|
|
|
}
|
|
|
|
|
2022-09-15 13:50:12 +00:00
|
|
|
override connection(): Connection | undefined {
|
2022-06-13 09:16:25 +00:00
|
|
|
return this.#connection;
|
2021-05-07 08:31:39 +00:00
|
|
|
}
|
|
|
|
|
2022-09-15 13:50:12 +00:00
|
|
|
override send<T extends keyof ProtocolMapping.Commands>(
|
2020-05-07 10:54:55 +00:00
|
|
|
method: T,
|
2020-07-10 10:51:52 +00:00
|
|
|
...paramArgs: ProtocolMapping.Commands[T]['paramsType']
|
|
|
|
): Promise<ProtocolMapping.Commands[T]['returnType']> {
|
2022-06-14 11:55:35 +00:00
|
|
|
if (!this.#connection) {
|
2020-05-07 10:54:55 +00:00
|
|
|
return Promise.reject(
|
|
|
|
new Error(
|
2022-06-13 09:16:25 +00:00
|
|
|
`Protocol error (${method}): Session closed. Most likely the ${
|
|
|
|
this.#targetType
|
|
|
|
} has been closed.`
|
2020-05-07 10:54:55 +00:00
|
|
|
)
|
|
|
|
);
|
2022-06-14 11:55:35 +00:00
|
|
|
}
|
2020-04-21 08:20:25 +00:00
|
|
|
|
2020-07-10 10:51:52 +00:00
|
|
|
// See the comment in Connection#send explaining why we do this.
|
|
|
|
const params = paramArgs.length ? paramArgs[0] : undefined;
|
|
|
|
|
2022-06-13 09:16:25 +00:00
|
|
|
const id = this.#connection._rawSend({
|
|
|
|
sessionId: this.#sessionId,
|
2020-04-21 08:20:25 +00:00
|
|
|
method,
|
2021-05-12 11:11:31 +00:00
|
|
|
params,
|
2020-04-21 08:20:25 +00:00
|
|
|
});
|
|
|
|
|
2017-08-09 23:14:00 +00:00
|
|
|
return new Promise((resolve, reject) => {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#callbacks.set(id, {
|
2021-10-04 06:18:03 +00:00
|
|
|
resolve,
|
|
|
|
reject,
|
|
|
|
error: new ProtocolError(),
|
|
|
|
method,
|
|
|
|
});
|
2017-08-09 23:14:00 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-06-22 10:05:10 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2020-04-21 08:20:25 +00:00
|
|
|
_onMessage(object: CDPSessionOnMessageObject): void {
|
2022-06-13 09:16:25 +00:00
|
|
|
const callback = object.id ? this.#callbacks.get(object.id) : undefined;
|
2022-01-21 10:46:18 +00:00
|
|
|
if (object.id && callback) {
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#callbacks.delete(object.id);
|
2022-06-14 11:55:35 +00:00
|
|
|
if (object.error) {
|
2020-05-07 10:54:55 +00:00
|
|
|
callback.reject(
|
|
|
|
createProtocolError(callback.error, callback.method, object)
|
|
|
|
);
|
2022-06-14 11:55:35 +00:00
|
|
|
} 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-06-22 10:05:10 +00:00
|
|
|
/**
|
|
|
|
* Detaches the cdpSession from the target. Once detached, the cdpSession object
|
|
|
|
* won't emit any events and can't be used to send messages.
|
|
|
|
*/
|
2022-09-15 13:50:12 +00:00
|
|
|
override async detach(): Promise<void> {
|
2022-06-14 11:55:35 +00:00
|
|
|
if (!this.#connection) {
|
2020-05-07 10:54:55 +00:00
|
|
|
throw new Error(
|
2022-06-13 09:16:25 +00:00
|
|
|
`Session already detached. Most likely the ${
|
|
|
|
this.#targetType
|
|
|
|
} has been closed.`
|
2020-05-07 10:54:55 +00:00
|
|
|
);
|
2022-06-14 11:55:35 +00:00
|
|
|
}
|
2022-06-13 09:16:25 +00:00
|
|
|
await this.#connection.send('Target.detachFromTarget', {
|
|
|
|
sessionId: this.#sessionId,
|
2020-05-07 10:54:55 +00:00
|
|
|
});
|
2017-08-09 23:14:00 +00:00
|
|
|
}
|
|
|
|
|
2020-06-22 10:05:10 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2020-04-21 08:20:25 +00:00
|
|
|
_onClosed(): void {
|
2022-06-14 11:55:35 +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.`
|
|
|
|
)
|
|
|
|
);
|
2022-06-14 11:55:35 +00:00
|
|
|
}
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#callbacks.clear();
|
|
|
|
this.#connection = undefined;
|
2020-07-08 10:11:01 +00:00
|
|
|
this.emit(CDPSessionEmittedEvents.Disconnected);
|
2017-08-09 23:14:00 +00:00
|
|
|
}
|
2021-10-28 09:25:49 +00:00
|
|
|
|
|
|
|
/**
|
2022-06-13 09:16:25 +00:00
|
|
|
* Returns the session's id.
|
2021-10-28 09:25:49 +00:00
|
|
|
*/
|
2022-09-15 13:50:12 +00:00
|
|
|
override id(): string {
|
2022-06-13 09:16:25 +00:00
|
|
|
return this.#sessionId;
|
2021-10-28 09:25:49 +00:00
|
|
|
}
|
2017-08-09 23:14:00 +00:00
|
|
|
}
|
2018-11-20 22:21:13 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
function createProtocolError(
|
2021-10-04 06:18:03 +00:00
|
|
|
error: ProtocolError,
|
2020-05-07 10:54:55 +00:00
|
|
|
method: string,
|
2022-06-22 13:25:44 +00:00
|
|
|
object: {error: {message: string; data: any; code: number}}
|
2020-05-07 10:54:55 +00:00
|
|
|
): Error {
|
2018-06-14 22:27:59 +00:00
|
|
|
let message = `Protocol error (${method}): ${object.error.message}`;
|
2022-06-14 11:55:35 +00:00
|
|
|
if ('data' in object.error) {
|
|
|
|
message += ` ${object.error.data}`;
|
|
|
|
}
|
2021-10-04 06:18:03 +00:00
|
|
|
return rewriteError(error, message, object.error.message);
|
2018-06-14 22:27:59 +00:00
|
|
|
}
|
|
|
|
|
2021-10-04 06:18:03 +00:00
|
|
|
function rewriteError(
|
|
|
|
error: ProtocolError,
|
|
|
|
message: string,
|
|
|
|
originalMessage?: string
|
|
|
|
): Error {
|
2017-12-09 03:05:46 +00:00
|
|
|
error.message = message;
|
2022-01-21 10:46:18 +00:00
|
|
|
error.originalMessage = originalMessage ?? error.originalMessage;
|
2017-12-09 03:05:46 +00:00
|
|
|
return error;
|
|
|
|
}
|
2022-09-14 12:18:12 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
export function isTargetClosedError(err: Error): boolean {
|
|
|
|
return (
|
|
|
|
err.message.includes('Target closed') ||
|
|
|
|
err.message.includes('Session closed')
|
|
|
|
);
|
|
|
|
}
|