2021-12-10 02:21:17 +01:00
|
|
|
/**
|
|
|
|
|
* 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 { ChannelOwner } from './channelOwner';
|
2025-02-11 00:04:33 +01:00
|
|
|
import { Connection } from './connection';
|
2025-02-10 23:19:58 +01:00
|
|
|
import * as localUtils from '../utils/localUtils';
|
2025-02-07 22:54:01 +01:00
|
|
|
|
2023-10-05 01:48:54 +02:00
|
|
|
import type { Size } from './types';
|
2025-02-10 23:19:58 +01:00
|
|
|
import type { HarBackend } from '../utils/harBackend';
|
2025-02-07 22:54:01 +01:00
|
|
|
import type * as channels from '@protocol/channels';
|
2023-10-05 01:48:54 +02:00
|
|
|
|
|
|
|
|
type DeviceDescriptor = {
|
|
|
|
|
userAgent: string,
|
|
|
|
|
viewport: Size,
|
|
|
|
|
deviceScaleFactor: number,
|
|
|
|
|
isMobile: boolean,
|
|
|
|
|
hasTouch: boolean,
|
|
|
|
|
defaultBrowserType: 'chromium' | 'firefox' | 'webkit'
|
|
|
|
|
};
|
|
|
|
|
type Devices = { [name: string]: DeviceDescriptor };
|
2021-12-10 02:21:17 +01:00
|
|
|
|
|
|
|
|
export class LocalUtils extends ChannelOwner<channels.LocalUtilsChannel> {
|
2023-10-05 01:48:54 +02:00
|
|
|
readonly devices: Devices;
|
2025-02-10 23:19:58 +01:00
|
|
|
private _harBackends = new Map<string, HarBackend>();
|
|
|
|
|
private _stackSessions = new Map<string, localUtils.StackSession>();
|
2023-10-05 01:48:54 +02:00
|
|
|
|
2021-12-10 02:21:17 +01:00
|
|
|
constructor(parent: ChannelOwner, type: string, guid: string, initializer: channels.LocalUtilsInitializer) {
|
|
|
|
|
super(parent, type, guid, initializer);
|
2024-09-21 19:17:59 +02:00
|
|
|
this.markAsInternalType();
|
2023-10-05 01:48:54 +02:00
|
|
|
this.devices = {};
|
|
|
|
|
for (const { name, descriptor } of initializer.deviceDescriptors)
|
|
|
|
|
this.devices[name] = descriptor;
|
2021-12-10 02:21:17 +01:00
|
|
|
}
|
2025-02-10 23:19:58 +01:00
|
|
|
|
|
|
|
|
async zip(params: channels.LocalUtilsZipParams): Promise<void> {
|
|
|
|
|
return await localUtils.zip(this._platform, this._stackSessions, params);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async harOpen(params: channels.LocalUtilsHarOpenParams): Promise<channels.LocalUtilsHarOpenResult> {
|
|
|
|
|
return await localUtils.harOpen(this._harBackends, params);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async harLookup(params: channels.LocalUtilsHarLookupParams): Promise<channels.LocalUtilsHarLookupResult> {
|
|
|
|
|
return await localUtils.harLookup(this._harBackends, params);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async harClose(params: channels.LocalUtilsHarCloseParams): Promise<void> {
|
|
|
|
|
return await localUtils.harClose(this._harBackends, params);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async harUnzip(params: channels.LocalUtilsHarUnzipParams): Promise<void> {
|
|
|
|
|
return await localUtils.harUnzip(params);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async tracingStarted(params: channels.LocalUtilsTracingStartedParams): Promise<channels.LocalUtilsTracingStartedResult> {
|
|
|
|
|
return await localUtils.tracingStarted(this._stackSessions, params);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async traceDiscarded(params: channels.LocalUtilsTraceDiscardedParams): Promise<void> {
|
|
|
|
|
return await localUtils.traceDiscarded(this._platform, this._stackSessions, params);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async addStackToTracingNoReply(params: channels.LocalUtilsAddStackToTracingNoReplyParams): Promise<void> {
|
|
|
|
|
return await localUtils.addStackToTracingNoReply(this._stackSessions, params);
|
|
|
|
|
}
|
|
|
|
|
|
2025-02-11 00:04:33 +01:00
|
|
|
async connect(params: channels.LocalUtilsConnectParams): Promise<Connection> {
|
|
|
|
|
const { pipe, headers: connectHeaders } = await this._channel.connect(params);
|
|
|
|
|
const closePipe = () => this._wrapApiCall(() => pipe.close().catch(() => {}), /* isInternal */ true);
|
|
|
|
|
const connection = new Connection(this, this._platform, this._instrumentation, connectHeaders);
|
|
|
|
|
connection.markAsRemote();
|
|
|
|
|
connection.on('close', closePipe);
|
|
|
|
|
|
|
|
|
|
let closeError: string | undefined;
|
|
|
|
|
const onPipeClosed = (reason?: string) => {
|
|
|
|
|
connection.close(reason || closeError);
|
|
|
|
|
};
|
|
|
|
|
pipe.on('closed', params => onPipeClosed(params.reason));
|
|
|
|
|
connection.onmessage = message => this._wrapApiCall(() => pipe.send({ message }).catch(() => onPipeClosed()), /* isInternal */ true);
|
|
|
|
|
|
|
|
|
|
pipe.on('message', ({ message }) => {
|
|
|
|
|
try {
|
|
|
|
|
connection!.dispatch(message);
|
|
|
|
|
} catch (e) {
|
|
|
|
|
closeError = String(e);
|
|
|
|
|
closePipe();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
return connection;
|
2025-02-10 23:19:58 +01:00
|
|
|
}
|
2021-12-10 02:21:17 +01:00
|
|
|
}
|