/** * 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 { Browser } from '../browser'; import type * as channels from '../../protocol/channels'; import { BrowserContextDispatcher } from './browserContextDispatcher'; import { CDPSessionDispatcher } from './cdpSessionDispatcher'; import type { DispatcherScope } from './dispatcher'; import { Dispatcher } from './dispatcher'; import type { CRBrowser } from '../chromium/crBrowser'; import type { PageDispatcher } from './pageDispatcher'; import type { CallMetadata } from '../instrumentation'; import { serverSideCallMetadata } from '../instrumentation'; import { BrowserContext } from '../browserContext'; import { Selectors } from '../selectors'; export class BrowserDispatcher extends Dispatcher implements channels.BrowserChannel { _type_Browser = true; constructor(scope: DispatcherScope, browser: Browser) { super(scope, browser, 'Browser', { version: browser.version(), name: browser.options.name }, true); browser.on(Browser.Events.Disconnected, () => this._didClose()); } _didClose() { this._dispatchEvent('close'); this._dispose(); } async newContext(params: channels.BrowserNewContextParams, metadata: CallMetadata): Promise { const context = await this._object.newContext(metadata, params); return { context: new BrowserContextDispatcher(this._scope, context) }; } async close(): Promise { await this._object.close(); } async killForTests(): Promise { await this._object.killForTests(); } async newBrowserCDPSession(): Promise { if (!this._object.options.isChromium) throw new Error(`CDP session is only available in Chromium`); const crBrowser = this._object as CRBrowser; return { session: new CDPSessionDispatcher(this._scope, await crBrowser.newBrowserCDPSession()) }; } async startTracing(params: channels.BrowserStartTracingParams): Promise { if (!this._object.options.isChromium) throw new Error(`Tracing is only available in Chromium`); const crBrowser = this._object as CRBrowser; await crBrowser.startTracing(params.page ? (params.page as PageDispatcher)._object : undefined, params); } async stopTracing(): Promise { if (!this._object.options.isChromium) throw new Error(`Tracing is only available in Chromium`); const crBrowser = this._object as CRBrowser; const buffer = await crBrowser.stopTracing(); return { binary: buffer.toString('base64') }; } } // This class implements multiplexing browser dispatchers over a single Browser instance. export class ConnectedBrowserDispatcher extends Dispatcher implements channels.BrowserChannel { _type_Browser = true; private _contexts = new Set(); readonly selectors: Selectors; constructor(scope: DispatcherScope, browser: Browser) { super(scope, browser, 'Browser', { version: browser.version(), name: browser.options.name }, true); // When we have a remotely-connected browser, each client gets a fresh Selector instance, // so that two clients do not interfere between each other. this.selectors = new Selectors(); } async newContext(params: channels.BrowserNewContextParams, metadata: CallMetadata): Promise { if (params.recordVideo) params.recordVideo.dir = this._object.options.artifactsDir; const context = await this._object.newContext(metadata, params); this._contexts.add(context); context.setSelectors(this.selectors); context.on(BrowserContext.Events.Close, () => this._contexts.delete(context)); return { context: new BrowserContextDispatcher(this._scope, context) }; } async close(): Promise { // Client should not send us Browser.close. } async killForTests(): Promise { // Client should not send us Browser.killForTests. } async newBrowserCDPSession(): Promise { if (!this._object.options.isChromium) throw new Error(`CDP session is only available in Chromium`); const crBrowser = this._object as CRBrowser; return { session: new CDPSessionDispatcher(this._scope, await crBrowser.newBrowserCDPSession()) }; } async startTracing(params: channels.BrowserStartTracingParams): Promise { if (!this._object.options.isChromium) throw new Error(`Tracing is only available in Chromium`); const crBrowser = this._object as CRBrowser; await crBrowser.startTracing(params.page ? (params.page as PageDispatcher)._object : undefined, params); } async stopTracing(): Promise { if (!this._object.options.isChromium) throw new Error(`Tracing is only available in Chromium`); const crBrowser = this._object as CRBrowser; const buffer = await crBrowser.stopTracing(); return { binary: buffer.toString('base64') }; } async cleanupContexts() { await Promise.all(Array.from(this._contexts).map(context => context.close(serverSideCallMetadata()))); } }