mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-24 03:35:38 +00:00
46 lines
1.5 KiB
TypeScript
46 lines
1.5 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 { ResponseError, CancellationToken, LSPErrorCodes } from 'vscode-languageserver';
|
|
import { RuntimeEnvironment } from '../cssServer';
|
|
|
|
export function formatError(message: string, err: any): string {
|
|
if (err instanceof Error) {
|
|
const error = <Error>err;
|
|
return `${message}: ${error.message}\n${error.stack}`;
|
|
} else if (typeof err === 'string') {
|
|
return `${message}: ${err}`;
|
|
} else if (err) {
|
|
return `${message}: ${err.toString()}`;
|
|
}
|
|
return message;
|
|
}
|
|
|
|
export function runSafeAsync<T>(runtime: RuntimeEnvironment, func: () => Thenable<T>, errorVal: T, errorMessage: string, token: CancellationToken): Thenable<T | ResponseError<any>> {
|
|
return new Promise<T | ResponseError<any>>((resolve) => {
|
|
runtime.timer.setImmediate(() => {
|
|
if (token.isCancellationRequested) {
|
|
resolve(cancelValue());
|
|
return;
|
|
}
|
|
return func().then(result => {
|
|
if (token.isCancellationRequested) {
|
|
resolve(cancelValue());
|
|
return;
|
|
} else {
|
|
resolve(result);
|
|
}
|
|
}, e => {
|
|
console.error(formatError(errorMessage, e));
|
|
resolve(errorVal);
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
function cancelValue<E>() {
|
|
return new ResponseError<E>(LSPErrorCodes.RequestCancelled, 'Request cancelled');
|
|
}
|