2020-06-25 16:05:36 -07: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 { EventEmitter } from 'events';
|
2020-07-24 16:22:20 -07:00
|
|
|
import type { Channel } from '../channels';
|
|
|
|
import type { Connection } from './connection';
|
2020-07-29 17:26:59 -07:00
|
|
|
import type { LoggerSink } from './types';
|
2020-08-17 14:12:31 -07:00
|
|
|
import { debugLogger } from '../../helper';
|
2020-06-25 16:05:36 -07:00
|
|
|
|
2020-07-10 15:11:47 -07:00
|
|
|
export abstract class ChannelOwner<T extends Channel = Channel, Initializer = {}> extends EventEmitter {
|
|
|
|
private _connection: Connection;
|
|
|
|
private _parent: ChannelOwner | undefined;
|
|
|
|
private _objects = new Map<string, ChannelOwner>();
|
|
|
|
|
2020-07-10 18:00:10 -07:00
|
|
|
readonly _type: string;
|
2020-07-10 15:11:47 -07:00
|
|
|
readonly _guid: string;
|
2020-06-25 16:05:36 -07:00
|
|
|
readonly _channel: T;
|
2020-06-26 12:28:27 -07:00
|
|
|
readonly _initializer: Initializer;
|
2020-07-10 18:00:10 -07:00
|
|
|
_logger: LoggerSink | undefined;
|
2020-06-25 16:05:36 -07:00
|
|
|
|
2020-07-27 10:21:39 -07:00
|
|
|
constructor(parent: ChannelOwner | Connection, type: string, guid: string, initializer: Initializer) {
|
2020-06-25 16:05:36 -07:00
|
|
|
super();
|
2020-07-24 16:22:20 -07:00
|
|
|
this._connection = parent instanceof ChannelOwner ? parent._connection : parent;
|
2020-07-10 18:00:10 -07:00
|
|
|
this._type = type;
|
2020-07-10 15:11:47 -07:00
|
|
|
this._guid = guid;
|
2020-07-24 16:22:20 -07:00
|
|
|
this._parent = parent instanceof ChannelOwner ? parent : undefined;
|
2020-07-10 15:11:47 -07:00
|
|
|
|
|
|
|
this._connection._objects.set(guid, this);
|
2020-07-10 18:00:10 -07:00
|
|
|
if (this._parent) {
|
2020-07-10 15:11:47 -07:00
|
|
|
this._parent._objects.set(guid, this);
|
2020-07-10 18:00:10 -07:00
|
|
|
this._logger = this._parent._logger;
|
|
|
|
}
|
2020-07-10 15:11:47 -07:00
|
|
|
|
2020-07-01 13:55:29 -07:00
|
|
|
const base = new EventEmitter();
|
|
|
|
this._channel = new Proxy(base, {
|
|
|
|
get: (obj: any, prop) => {
|
|
|
|
if (String(prop).startsWith('_'))
|
|
|
|
return obj[prop];
|
|
|
|
if (prop === 'then')
|
|
|
|
return obj.then;
|
|
|
|
if (prop === 'emit')
|
|
|
|
return obj.emit;
|
|
|
|
if (prop === 'on')
|
|
|
|
return obj.on;
|
|
|
|
if (prop === 'once')
|
|
|
|
return obj.once;
|
|
|
|
if (prop === 'addEventListener')
|
|
|
|
return obj.addListener;
|
|
|
|
if (prop === 'removeEventListener')
|
|
|
|
return obj.removeListener;
|
2020-07-22 18:05:07 -07:00
|
|
|
return (params: any) => this._connection.sendMessageToServer(this._type, guid, String(prop), params);
|
2020-07-01 13:55:29 -07:00
|
|
|
},
|
|
|
|
});
|
2020-07-01 18:36:09 -07:00
|
|
|
(this._channel as any)._object = this;
|
2020-06-26 12:28:27 -07:00
|
|
|
this._initializer = initializer;
|
2020-06-25 16:05:36 -07:00
|
|
|
}
|
2020-07-10 15:11:47 -07:00
|
|
|
|
|
|
|
_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.
|
2020-07-27 10:21:39 -07:00
|
|
|
for (const object of [...this._objects.values()])
|
|
|
|
object._dispose();
|
2020-07-10 15:11:47 -07:00
|
|
|
this._objects.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
_debugScopeState(): any {
|
|
|
|
return {
|
|
|
|
_guid: this._guid,
|
2020-07-27 10:21:39 -07:00
|
|
|
objects: Array.from(this._objects.values()).map(o => o._debugScopeState()),
|
2020-07-10 15:11:47 -07:00
|
|
|
};
|
|
|
|
}
|
2020-07-15 14:04:39 -07:00
|
|
|
|
|
|
|
protected async _wrapApiCall<T>(apiName: string, func: () => Promise<T>, logger?: LoggerSink): Promise<T> {
|
2020-07-16 14:32:21 -07:00
|
|
|
const stackObject: any = {};
|
|
|
|
Error.captureStackTrace(stackObject);
|
|
|
|
const stack = stackObject.stack.startsWith('Error') ? stackObject.stack.substring(5) : stackObject.stack;
|
2020-07-15 14:04:39 -07:00
|
|
|
logger = logger || this._logger;
|
|
|
|
try {
|
2020-07-16 14:32:21 -07:00
|
|
|
logApiCall(logger, `=> ${apiName} started`);
|
2020-07-15 14:04:39 -07:00
|
|
|
const result = await func();
|
2020-07-16 14:32:21 -07:00
|
|
|
logApiCall(logger, `<= ${apiName} succeeded`);
|
2020-07-15 14:04:39 -07:00
|
|
|
return result;
|
|
|
|
} catch (e) {
|
2020-07-16 14:32:21 -07:00
|
|
|
logApiCall(logger, `<= ${apiName} failed`);
|
|
|
|
// TODO: we could probably save "e.stack" in some log-heavy mode
|
|
|
|
// because it gives some insights into the server part.
|
|
|
|
e.message = `${apiName}: ` + e.message;
|
|
|
|
e.stack = e.message + stack;
|
2020-07-15 14:04:39 -07:00
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
2020-08-16 14:41:33 -07:00
|
|
|
|
|
|
|
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,
|
|
|
|
};
|
|
|
|
}
|
2020-06-25 16:05:36 -07:00
|
|
|
}
|
2020-07-16 14:32:21 -07:00
|
|
|
|
|
|
|
function logApiCall(logger: LoggerSink | undefined, message: string) {
|
|
|
|
if (logger && logger.isEnabled('api', 'info'))
|
|
|
|
logger.log('api', 'info', message, [], { color: 'cyan' });
|
2020-08-17 14:12:31 -07:00
|
|
|
debugLogger.log('api', message);
|
2020-07-16 14:32:21 -07:00
|
|
|
}
|