UNPKG

@sussudio/platform

Version:

Internal APIs for VS Code's service injection the base services.

105 lines (104 loc) 4.37 kB
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? (desc = Object.getOwnPropertyDescriptor(target, key)) : desc, d; if (typeof Reflect === 'object' && typeof Reflect.decorate === 'function') r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if ((d = decorators[i])) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __param = (this && this.__param) || function (paramIndex, decorator) { return function (target, key) { decorator(target, key, paramIndex); }; }; import { FileAccess } from '@sussudio/base/common/network.mjs'; import { Client as TelemetryClient } from '@sussudio/base/parts/ipc/node/ipc.cp.mjs'; import { IConfigurationService } from '../../configuration/common/configuration.mjs'; import { IEnvironmentService } from '../../environment/common/environment.mjs'; import { ILoggerService } from '../../log/common/log.mjs'; import { IProductService } from '../../product/common/productService.mjs'; import { ITelemetryService } from '../common/telemetry.mjs'; import { TelemetryAppenderClient } from '../common/telemetryIpc.mjs'; import { TelemetryLogAppender } from '../common/telemetryLogAppender.mjs'; import { TelemetryService } from '../common/telemetryService.mjs'; let CustomEndpointTelemetryService = class CustomEndpointTelemetryService { configurationService; telemetryService; loggerService; environmentService; productService; customTelemetryServices = new Map(); constructor(configurationService, telemetryService, loggerService, environmentService, productService) { this.configurationService = configurationService; this.telemetryService = telemetryService; this.loggerService = loggerService; this.environmentService = environmentService; this.productService = productService; } async getCustomTelemetryService(endpoint) { if (!this.customTelemetryServices.has(endpoint.id)) { const { machineId, sessionId } = await this.telemetryService.getTelemetryInfo(); const telemetryInfo = Object.create(null); telemetryInfo['common.vscodemachineid'] = machineId; telemetryInfo['common.vscodesessionid'] = sessionId; const args = [endpoint.id, JSON.stringify(telemetryInfo), endpoint.aiKey]; const client = new TelemetryClient(FileAccess.asFileUri('bootstrap-fork').fsPath, { serverName: 'Debug Telemetry', timeout: 1000 * 60 * 5, args, env: { ELECTRON_RUN_AS_NODE: 1, VSCODE_PIPE_LOGGING: 'true', VSCODE_AMD_ENTRYPOINT: 'vs/workbench/contrib/debug/node/telemetryApp', }, }); const channel = client.getChannel('telemetryAppender'); const appenders = [ new TelemetryAppenderClient(channel), new TelemetryLogAppender(this.loggerService, this.environmentService, `[${endpoint.id}] `), ]; this.customTelemetryServices.set( endpoint.id, new TelemetryService( { appenders, sendErrorTelemetry: endpoint.sendErrorTelemetry, }, this.configurationService, this.productService, ), ); } return this.customTelemetryServices.get(endpoint.id); } async publicLog(telemetryEndpoint, eventName, data) { const customTelemetryService = await this.getCustomTelemetryService(telemetryEndpoint); await customTelemetryService.publicLog(eventName, data); } async publicLogError(telemetryEndpoint, errorEventName, data) { const customTelemetryService = await this.getCustomTelemetryService(telemetryEndpoint); await customTelemetryService.publicLogError(errorEventName, data); } }; CustomEndpointTelemetryService = __decorate( [ __param(0, IConfigurationService), __param(1, ITelemetryService), __param(2, ILoggerService), __param(3, IEnvironmentService), __param(4, IProductService), ], CustomEndpointTelemetryService, ); export { CustomEndpointTelemetryService };