Files
vscode/src/vs/workbench/api/node/extHostProgress.ts
2017-01-19 12:06:46 +01:00

58 lines
1.8 KiB
TypeScript

/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
'use strict';
import { Progress, CancellationToken } from 'vscode';
import { MainThreadProgressShape } from './extHost.protocol';
import { IExtensionDescription } from 'vs/platform/extensions/common/extensions';
export class ExtHostProgress {
private _proxy: MainThreadProgressShape;
private _handles: number = 0;
constructor(proxy: MainThreadProgressShape) {
this._proxy = proxy;
}
withWindowProgress<R>(extension: IExtensionDescription, title: string, task: (progress: Progress<string>, token: CancellationToken) => Thenable<R>): Thenable<R> {
const handle = this._handles++;
this._proxy.$startWindow(handle, title);
return this._withProgress(handle, task);
}
withScmProgress<R>(extension: IExtensionDescription, task: (progress: Progress<number>) => Thenable<R>): Thenable<R> {
const handle = this._handles++;
this._proxy.$startScm(handle);
return this._withProgress(handle, task);
}
private _withProgress<R>(handle: number, task: (progress: Progress<any>, token: CancellationToken) => Thenable<R>): Thenable<R> {
const progress = {
report: (message: string) => {
this._proxy.$progressReport(handle, message);
}
};
let p: Thenable<R>;
try {
p = task(progress, null);
} catch (err) {
this._proxy.$progressEnd(handle);
throw err;
}
return p.then(result => {
this._proxy.$progressEnd(handle);
return result;
}, err => {
this._proxy.$progressEnd(handle);
throw err;
});
}
}