mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-25 09:35:37 -05:00
136 lines
5.6 KiB
TypeScript
136 lines
5.6 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { Disposable } from 'vs/base/common/lifecycle';
|
|
import { ILocalExtension } from 'vs/platform/extensionManagement/common/extensionManagement';
|
|
import { ILogService } from 'vs/platform/log/common/log';
|
|
import { fork, ChildProcess } from 'child_process';
|
|
import { toErrorMessage } from 'vs/base/common/errorMessage';
|
|
import { join } from 'vs/base/common/path';
|
|
import { Limiter } from 'vs/base/common/async';
|
|
import { Event } from 'vs/base/common/event';
|
|
import { Schemas } from 'vs/base/common/network';
|
|
import { INativeEnvironmentService } from 'vs/platform/environment/node/environmentService';
|
|
import { rimraf } from 'vs/base/node/pfs';
|
|
|
|
export class ExtensionsLifecycle extends Disposable {
|
|
|
|
private processesLimiter: Limiter<void> = new Limiter(5); // Run max 5 processes in parallel
|
|
|
|
constructor(
|
|
private environmentService: INativeEnvironmentService,
|
|
private logService: ILogService
|
|
) {
|
|
super();
|
|
}
|
|
|
|
async postUninstall(extension: ILocalExtension): Promise<void> {
|
|
const script = this.parseScript(extension, 'uninstall');
|
|
if (script) {
|
|
this.logService.info(extension.identifier.id, extension.manifest.version, `Running post uninstall script`);
|
|
await this.processesLimiter.queue(() =>
|
|
this.runLifecycleHook(script.script, 'uninstall', script.args, true, extension)
|
|
.then(() => this.logService.info(extension.identifier.id, extension.manifest.version, `Finished running post uninstall script`), err => this.logService.error(extension.identifier.id, extension.manifest.version, `Failed to run post uninstall script: ${err}`)));
|
|
}
|
|
return rimraf(this.getExtensionStoragePath(extension)).then(undefined, e => this.logService.error('Error while removing extension storage path', e));
|
|
}
|
|
|
|
private parseScript(extension: ILocalExtension, type: string): { script: string, args: string[] } | null {
|
|
const scriptKey = `vscode:${type}`;
|
|
if (extension.location.scheme === Schemas.file && extension.manifest && extension.manifest['scripts'] && typeof extension.manifest['scripts'][scriptKey] === 'string') {
|
|
const script = (<string>extension.manifest['scripts'][scriptKey]).split(' ');
|
|
if (script.length < 2 || script[0] !== 'node' || !script[1]) {
|
|
this.logService.warn(extension.identifier.id, extension.manifest.version, `${scriptKey} should be a node script`);
|
|
return null;
|
|
}
|
|
return { script: join(extension.location.fsPath, script[1]), args: script.slice(2) || [] };
|
|
}
|
|
return null;
|
|
}
|
|
|
|
private runLifecycleHook(lifecycleHook: string, lifecycleType: string, args: string[], timeout: boolean, extension: ILocalExtension): Promise<void> {
|
|
return new Promise<void>((c, e) => {
|
|
|
|
const extensionLifecycleProcess = this.start(lifecycleHook, lifecycleType, args, extension);
|
|
let timeoutHandler: any;
|
|
|
|
const onexit = (error?: string) => {
|
|
if (timeoutHandler) {
|
|
clearTimeout(timeoutHandler);
|
|
timeoutHandler = null;
|
|
}
|
|
if (error) {
|
|
e(error);
|
|
} else {
|
|
c(undefined);
|
|
}
|
|
};
|
|
|
|
// on error
|
|
extensionLifecycleProcess.on('error', (err) => {
|
|
onexit(toErrorMessage(err) || 'Unknown');
|
|
});
|
|
|
|
// on exit
|
|
extensionLifecycleProcess.on('exit', (code: number, signal: string) => {
|
|
onexit(code ? `post-${lifecycleType} process exited with code ${code}` : undefined);
|
|
});
|
|
|
|
if (timeout) {
|
|
// timeout: kill process after waiting for 5s
|
|
timeoutHandler = setTimeout(() => {
|
|
timeoutHandler = null;
|
|
extensionLifecycleProcess.kill();
|
|
e('timed out');
|
|
}, 5000);
|
|
}
|
|
});
|
|
}
|
|
|
|
private start(uninstallHook: string, lifecycleType: string, args: string[], extension: ILocalExtension): ChildProcess {
|
|
const opts = {
|
|
silent: true,
|
|
execArgv: undefined
|
|
};
|
|
const extensionUninstallProcess = fork(uninstallHook, [`--type=extension-post-${lifecycleType}`, ...args], opts);
|
|
|
|
// Catch all output coming from the process
|
|
type Output = { data: string, format: string[] };
|
|
extensionUninstallProcess.stdout!.setEncoding('utf8');
|
|
extensionUninstallProcess.stderr!.setEncoding('utf8');
|
|
|
|
const onStdout = Event.fromNodeEventEmitter<string>(extensionUninstallProcess.stdout!, 'data');
|
|
const onStderr = Event.fromNodeEventEmitter<string>(extensionUninstallProcess.stderr!, 'data');
|
|
|
|
// Log output
|
|
onStdout(data => this.logService.info(extension.identifier.id, extension.manifest.version, `post-${lifecycleType}`, data));
|
|
onStderr(data => this.logService.error(extension.identifier.id, extension.manifest.version, `post-${lifecycleType}`, data));
|
|
|
|
const onOutput = Event.any(
|
|
Event.map(onStdout, o => ({ data: `%c${o}`, format: [''] })),
|
|
Event.map(onStderr, o => ({ data: `%c${o}`, format: ['color: red'] }))
|
|
);
|
|
// Debounce all output, so we can render it in the Chrome console as a group
|
|
const onDebouncedOutput = Event.debounce<Output>(onOutput, (r, o) => {
|
|
return r
|
|
? { data: r.data + o.data, format: [...r.format, ...o.format] }
|
|
: { data: o.data, format: o.format };
|
|
}, 100);
|
|
|
|
// Print out output
|
|
onDebouncedOutput(data => {
|
|
console.group(extension.identifier.id);
|
|
console.log(data.data, ...data.format);
|
|
console.groupEnd();
|
|
});
|
|
|
|
return extensionUninstallProcess;
|
|
}
|
|
|
|
private getExtensionStoragePath(extension: ILocalExtension): string {
|
|
return join(this.environmentService.globalStorageHome.fsPath, extension.identifier.id.toLowerCase());
|
|
}
|
|
}
|