mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-28 20:43:31 +01:00
We compile using the alwaysStrict flag so these directives are not needed This part removes most `use strict` directives that are right after the file header
58 lines
2.1 KiB
TypeScript
58 lines
2.1 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { IProgress } from 'vs/platform/progress/common/progress';
|
|
import { MainThreadProgressShape, MainContext, IExtHostContext, ExtHostProgressShape, ExtHostContext } from '../node/extHost.protocol';
|
|
import { extHostNamedCustomer } from 'vs/workbench/api/electron-browser/extHostCustomers';
|
|
import { IProgressService2, IProgressStep, IProgressOptions } from 'vs/workbench/services/progress/common/progress';
|
|
|
|
@extHostNamedCustomer(MainContext.MainThreadProgress)
|
|
export class MainThreadProgress implements MainThreadProgressShape {
|
|
|
|
private _progressService: IProgressService2;
|
|
private _progress = new Map<number, { resolve: Function, progress: IProgress<IProgressStep> }>();
|
|
private _proxy: ExtHostProgressShape;
|
|
|
|
constructor(
|
|
extHostContext: IExtHostContext,
|
|
@IProgressService2 progressService: IProgressService2
|
|
) {
|
|
this._proxy = extHostContext.getProxy(ExtHostContext.ExtHostProgress);
|
|
this._progressService = progressService;
|
|
}
|
|
|
|
dispose(): void {
|
|
this._progress.forEach(handle => handle.resolve());
|
|
this._progress.clear();
|
|
}
|
|
|
|
$startProgress(handle: number, options: IProgressOptions): void {
|
|
const task = this._createTask(handle);
|
|
|
|
this._progressService.withProgress(options, task, () => this._proxy.$acceptProgressCanceled(handle));
|
|
}
|
|
|
|
$progressReport(handle: number, message: IProgressStep): void {
|
|
if (this._progress.has(handle)) {
|
|
this._progress.get(handle).progress.report(message);
|
|
}
|
|
}
|
|
|
|
$progressEnd(handle: number): void {
|
|
if (this._progress.has(handle)) {
|
|
this._progress.get(handle).resolve();
|
|
this._progress.delete(handle);
|
|
}
|
|
}
|
|
|
|
private _createTask(handle: number) {
|
|
return (progress: IProgress<IProgressStep>) => {
|
|
return new Promise<any>(resolve => {
|
|
this._progress.set(handle, { resolve, progress });
|
|
});
|
|
};
|
|
}
|
|
}
|