mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-18 16:51:50 +03:00
198 lines
6.9 KiB
TypeScript
198 lines
6.9 KiB
TypeScript
/**
|
|
* 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 { EventEmitter } from 'events';
|
|
import type * as channels from '../protocol/channels';
|
|
import type { Validator } from '../protocol/validator';
|
|
import { createScheme, ValidationError } from '../protocol/validator';
|
|
import { debugLogger } from '../common/debugLogger';
|
|
import type { ParsedStackTrace } from '../utils/stackTrace';
|
|
import { captureRawStack, captureStackTrace } from '../utils/stackTrace';
|
|
import { isUnderTest } from '../utils';
|
|
import { zones } from '../utils/zones';
|
|
import type { ClientInstrumentation } from './clientInstrumentation';
|
|
import type { Connection } from './connection';
|
|
import type { Logger } from './types';
|
|
|
|
export abstract class ChannelOwner<T extends channels.Channel = channels.Channel> extends EventEmitter {
|
|
readonly _connection: Connection;
|
|
private _parent: ChannelOwner | undefined;
|
|
private _objects = new Map<string, ChannelOwner>();
|
|
|
|
readonly _type: string;
|
|
readonly _guid: string;
|
|
readonly _channel: T;
|
|
readonly _initializer: channels.InitializerTraits<T>;
|
|
_logger: Logger | undefined;
|
|
_instrumentation: ClientInstrumentation | undefined;
|
|
|
|
constructor(parent: ChannelOwner | Connection, type: string, guid: string, initializer: channels.InitializerTraits<T>, instrumentation?: ClientInstrumentation) {
|
|
super();
|
|
this.setMaxListeners(0);
|
|
this._connection = parent instanceof ChannelOwner ? parent._connection : parent;
|
|
this._type = type;
|
|
this._guid = guid;
|
|
this._parent = parent instanceof ChannelOwner ? parent : undefined;
|
|
this._instrumentation = instrumentation || this._parent?._instrumentation;
|
|
|
|
this._connection._objects.set(guid, this);
|
|
if (this._parent) {
|
|
this._parent._objects.set(guid, this);
|
|
this._logger = this._parent._logger;
|
|
}
|
|
|
|
this._channel = this._createChannel(new EventEmitter());
|
|
this._initializer = initializer;
|
|
}
|
|
|
|
_dispose() {
|
|
// Clean up from parent and connection.
|
|
if (this._parent)
|
|
this._parent._objects.delete(this._guid);
|
|
this._connection._objects.delete(this._guid);
|
|
|
|
// Dispose all children.
|
|
for (const object of [...this._objects.values()])
|
|
object._dispose();
|
|
this._objects.clear();
|
|
}
|
|
|
|
_debugScopeState(): any {
|
|
return {
|
|
_guid: this._guid,
|
|
objects: Array.from(this._objects.values()).map(o => o._debugScopeState()),
|
|
};
|
|
}
|
|
|
|
private _createChannel(base: Object): T {
|
|
const channel = new Proxy(base, {
|
|
get: (obj: any, prop) => {
|
|
if (prop === 'debugScopeState')
|
|
return (params: any) => this._connection.sendMessageToServer(this, prop, params, null);
|
|
if (typeof prop === 'string') {
|
|
const validator = scheme[paramsName(this._type, prop)];
|
|
if (validator) {
|
|
return (params: any) => {
|
|
return this._wrapApiCall(apiZone => {
|
|
const { stackTrace, csi, callCookie } = apiZone.reported ? { csi: undefined, callCookie: undefined, stackTrace: null } : apiZone;
|
|
apiZone.reported = true;
|
|
if (csi && stackTrace && stackTrace.apiName)
|
|
csi.onApiCallBegin(renderCallWithParams(stackTrace.apiName, params), stackTrace, callCookie);
|
|
return this._connection.sendMessageToServer(this, prop, validator(params, ''), stackTrace);
|
|
});
|
|
};
|
|
}
|
|
}
|
|
return obj[prop];
|
|
},
|
|
});
|
|
(channel as any)._object = this;
|
|
return channel;
|
|
}
|
|
|
|
async _wrapApiCall<R>(func: (apiZone: ApiZone) => Promise<R>, isInternal = false, customStackTrace?: ParsedStackTrace): Promise<R> {
|
|
const logger = this._logger;
|
|
const stack = captureRawStack();
|
|
const apiZone = zones.zoneData<ApiZone>('apiZone', stack);
|
|
if (apiZone)
|
|
return func(apiZone);
|
|
|
|
const stackTrace = customStackTrace || captureStackTrace(stack);
|
|
if (isInternal)
|
|
delete stackTrace.apiName;
|
|
const csi = isInternal ? undefined : this._instrumentation;
|
|
const callCookie: any = {};
|
|
|
|
const { apiName, frameTexts } = stackTrace;
|
|
|
|
try {
|
|
logApiCall(logger, `=> ${apiName} started`, isInternal);
|
|
const apiZone = { stackTrace, isInternal, reported: false, csi, callCookie };
|
|
const result = await zones.run<ApiZone, R>('apiZone', apiZone, async () => {
|
|
return await func(apiZone);
|
|
});
|
|
csi?.onApiCallEnd(callCookie);
|
|
logApiCall(logger, `<= ${apiName} succeeded`, isInternal);
|
|
return result;
|
|
} catch (e) {
|
|
const innerError = ((process.env.PWDEBUGIMPL || isUnderTest()) && e.stack) ? '\n<inner error>\n' + e.stack : '';
|
|
e.message = apiName + ': ' + e.message;
|
|
e.stack = e.message + '\n' + frameTexts.join('\n') + innerError;
|
|
csi?.onApiCallEnd(callCookie, e);
|
|
logApiCall(logger, `<= ${apiName} failed`, isInternal);
|
|
throw e;
|
|
}
|
|
}
|
|
|
|
_toImpl(): any {
|
|
return this._connection.toImpl?.(this);
|
|
}
|
|
|
|
private toJSON() {
|
|
// Jest's expect library tries to print objects sometimes.
|
|
// RPC objects can contain links to lots of other objects,
|
|
// which can cause jest to crash. Let's help it out
|
|
// by just returning the important values.
|
|
return {
|
|
_type: this._type,
|
|
_guid: this._guid,
|
|
};
|
|
}
|
|
}
|
|
|
|
function logApiCall(logger: Logger | undefined, message: string, isNested: boolean) {
|
|
if (isNested)
|
|
return;
|
|
if (logger && logger.isEnabled('api', 'info'))
|
|
logger.log('api', 'info', message, [], { color: 'cyan' });
|
|
debugLogger.log('api', message);
|
|
}
|
|
|
|
function paramsName(type: string, method: string) {
|
|
return type + method[0].toUpperCase() + method.substring(1) + 'Params';
|
|
}
|
|
|
|
const paramsToRender = ['url', 'selector', 'text', 'key'];
|
|
export function renderCallWithParams(apiName: string, params: any) {
|
|
const paramsArray = [];
|
|
if (params) {
|
|
for (const name of paramsToRender) {
|
|
if (params[name])
|
|
paramsArray.push(params[name]);
|
|
}
|
|
}
|
|
const paramsText = paramsArray.length ? '(' + paramsArray.join(', ') + ')' : '';
|
|
return apiName + paramsText;
|
|
}
|
|
|
|
const tChannel = (name: string): Validator => {
|
|
return (arg: any, path: string) => {
|
|
if (arg._object instanceof ChannelOwner && (name === '*' || arg._object._type === name))
|
|
return { guid: arg._object._guid };
|
|
throw new ValidationError(`${path}: expected ${name}`);
|
|
};
|
|
};
|
|
|
|
const scheme = createScheme(tChannel);
|
|
|
|
type ApiZone = {
|
|
stackTrace: ParsedStackTrace;
|
|
isInternal: boolean;
|
|
reported: boolean;
|
|
csi: ClientInstrumentation | undefined;
|
|
callCookie: any;
|
|
};
|