2019-12-20 01:53:24 +01:00
|
|
|
/**
|
|
|
|
|
* Copyright 2019 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-02-24 23:35:51 +01:00
|
|
|
import { CRBrowser, CRBrowserContext } from './crBrowser';
|
2019-12-20 01:53:24 +01:00
|
|
|
import { CRSession, CRSessionEvents } from './crConnection';
|
|
|
|
|
import { Events } from '../events';
|
2020-01-07 21:59:01 +01:00
|
|
|
import { Page, Worker } from '../page';
|
2019-12-20 01:53:24 +01:00
|
|
|
import { Protocol } from './protocol';
|
|
|
|
|
import { debugError } from '../helper';
|
2019-12-23 20:39:57 +01:00
|
|
|
import { CRPage } from './crPage';
|
2020-01-07 21:59:01 +01:00
|
|
|
import { CRExecutionContext } from './crExecutionContext';
|
2019-12-20 01:53:24 +01:00
|
|
|
|
|
|
|
|
const targetSymbol = Symbol('target');
|
|
|
|
|
|
|
|
|
|
export class CRTarget {
|
|
|
|
|
private _targetInfo: Protocol.Target.TargetInfo;
|
2019-12-23 21:10:07 +01:00
|
|
|
private readonly _browser: CRBrowser;
|
2020-02-24 23:35:51 +01:00
|
|
|
private readonly _browserContext: CRBrowserContext;
|
2019-12-23 21:10:07 +01:00
|
|
|
readonly _targetId: string;
|
2020-03-02 22:58:22 +01:00
|
|
|
readonly sessionFactory: () => Promise<CRSession>;
|
2019-12-20 01:53:24 +01:00
|
|
|
private _pagePromise: Promise<Page> | null = null;
|
2019-12-23 21:10:07 +01:00
|
|
|
_crPage: CRPage | null = null;
|
2020-01-07 21:59:01 +01:00
|
|
|
private _workerPromise: Promise<Worker> | null = null;
|
2019-12-23 21:10:07 +01:00
|
|
|
readonly _initializedPromise: Promise<boolean>;
|
2020-01-13 22:33:25 +01:00
|
|
|
_initializedCallback: (success: boolean) => void = () => {};
|
2019-12-20 01:53:24 +01:00
|
|
|
_isInitialized: boolean;
|
|
|
|
|
|
|
|
|
|
static fromPage(page: Page): CRTarget {
|
|
|
|
|
return (page as any)[targetSymbol];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
|
browser: CRBrowser,
|
|
|
|
|
targetInfo: Protocol.Target.TargetInfo,
|
2020-02-24 23:35:51 +01:00
|
|
|
browserContext: CRBrowserContext,
|
2019-12-20 01:53:24 +01:00
|
|
|
sessionFactory: () => Promise<CRSession>) {
|
|
|
|
|
this._targetInfo = targetInfo;
|
|
|
|
|
this._browser = browser;
|
|
|
|
|
this._browserContext = browserContext;
|
|
|
|
|
this._targetId = targetInfo.targetId;
|
2020-03-02 22:58:22 +01:00
|
|
|
this.sessionFactory = sessionFactory;
|
2019-12-20 01:53:24 +01:00
|
|
|
this._initializedPromise = new Promise(fulfill => this._initializedCallback = fulfill).then(async success => {
|
|
|
|
|
if (!success)
|
|
|
|
|
return false;
|
|
|
|
|
const opener = this.opener();
|
|
|
|
|
if (!opener || !opener._pagePromise || this.type() !== 'page')
|
|
|
|
|
return true;
|
|
|
|
|
const openerPage = await opener._pagePromise;
|
|
|
|
|
if (!openerPage.listenerCount(Events.Page.Popup))
|
|
|
|
|
return true;
|
|
|
|
|
const popupPage = await this.page();
|
|
|
|
|
openerPage.emit(Events.Page.Popup, popupPage);
|
|
|
|
|
return true;
|
|
|
|
|
});
|
|
|
|
|
this._isInitialized = this._targetInfo.type !== 'page' || this._targetInfo.url !== '';
|
|
|
|
|
if (this._isInitialized)
|
|
|
|
|
this._initializedCallback(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_didClose() {
|
2019-12-23 20:39:57 +01:00
|
|
|
if (this._crPage)
|
|
|
|
|
this._crPage.didClose();
|
2019-12-20 01:53:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async page(): Promise<Page | null> {
|
|
|
|
|
if ((this._targetInfo.type === 'page' || this._targetInfo.type === 'background_page') && !this._pagePromise) {
|
2020-03-02 22:58:22 +01:00
|
|
|
this._pagePromise = this.sessionFactory().then(async client => {
|
2019-12-23 20:39:57 +01:00
|
|
|
this._crPage = new CRPage(client, this._browser, this._browserContext);
|
|
|
|
|
const page = this._crPage.page();
|
2019-12-20 01:53:24 +01:00
|
|
|
(page as any)[targetSymbol] = this;
|
|
|
|
|
client.once(CRSessionEvents.Disconnected, () => page._didDisconnect());
|
2019-12-23 20:39:57 +01:00
|
|
|
await this._crPage.initialize();
|
2019-12-20 01:53:24 +01:00
|
|
|
return page;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
return this._pagePromise;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-24 17:31:58 +01:00
|
|
|
async serviceWorker(): Promise<Worker | null> {
|
|
|
|
|
if (this._targetInfo.type !== 'service_worker')
|
2019-12-20 01:53:24 +01:00
|
|
|
return null;
|
|
|
|
|
if (!this._workerPromise) {
|
|
|
|
|
// TODO(einbinder): Make workers send their console logs.
|
2020-03-02 22:58:22 +01:00
|
|
|
this._workerPromise = this.sessionFactory().then(session => {
|
2020-01-07 21:59:01 +01:00
|
|
|
const worker = new Worker(this._targetInfo.url);
|
|
|
|
|
session.once('Runtime.executionContextCreated', async event => {
|
|
|
|
|
worker._createExecutionContext(new CRExecutionContext(session, event.context));
|
|
|
|
|
});
|
|
|
|
|
// This might fail if the target is closed before we recieve all execution contexts.
|
|
|
|
|
session.send('Runtime.enable', {}).catch(debugError);
|
|
|
|
|
return worker;
|
|
|
|
|
});
|
2019-12-20 01:53:24 +01:00
|
|
|
}
|
|
|
|
|
return this._workerPromise;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
url(): string {
|
|
|
|
|
return this._targetInfo.url;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type(): 'page' | 'background_page' | 'service_worker' | 'shared_worker' | 'other' | 'browser' {
|
|
|
|
|
const type = this._targetInfo.type;
|
|
|
|
|
if (type === 'page' || type === 'background_page' || type === 'service_worker' || type === 'shared_worker' || type === 'browser')
|
|
|
|
|
return type;
|
|
|
|
|
return 'other';
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-24 23:35:51 +01:00
|
|
|
context(): CRBrowserContext {
|
2019-12-20 01:53:24 +01:00
|
|
|
return this._browserContext;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
opener(): CRTarget | null {
|
|
|
|
|
const { openerId } = this._targetInfo;
|
|
|
|
|
if (!openerId)
|
|
|
|
|
return null;
|
2020-01-13 22:33:25 +01:00
|
|
|
return this._browser._targets.get(openerId)!;
|
2019-12-20 01:53:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_targetInfoChanged(targetInfo: Protocol.Target.TargetInfo) {
|
|
|
|
|
this._targetInfo = targetInfo;
|
|
|
|
|
|
|
|
|
|
if (!this._isInitialized && (this._targetInfo.type !== 'page' || this._targetInfo.url !== '')) {
|
|
|
|
|
this._isInitialized = true;
|
|
|
|
|
this._initializedCallback(true);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|