mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-16 08:53:26 +01:00
4c32889faf
* Show InputBox for unsupported clients Fixes https://github.com/microsoft/vscode/issues/238147 * comment * Add 127.0.0.1 for good measure
180 lines
4.5 KiB
TypeScript
180 lines
4.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 { CancellationError, CancellationToken, Disposable, Event } from 'vscode';
|
|
|
|
export class SequencerByKey<TKey> {
|
|
|
|
private promiseMap = new Map<TKey, Promise<unknown>>();
|
|
|
|
queue<T>(key: TKey, promiseTask: () => Promise<T>): Promise<T> {
|
|
const runningPromise = this.promiseMap.get(key) ?? Promise.resolve();
|
|
const newPromise = runningPromise
|
|
.catch(() => { })
|
|
.then(promiseTask)
|
|
.finally(() => {
|
|
if (this.promiseMap.get(key) === newPromise) {
|
|
this.promiseMap.delete(key);
|
|
}
|
|
});
|
|
this.promiseMap.set(key, newPromise);
|
|
return newPromise;
|
|
}
|
|
}
|
|
|
|
export class IntervalTimer extends Disposable {
|
|
|
|
private _token: any;
|
|
|
|
constructor() {
|
|
super(() => this.cancel());
|
|
this._token = -1;
|
|
}
|
|
|
|
cancel(): void {
|
|
if (this._token !== -1) {
|
|
clearInterval(this._token);
|
|
this._token = -1;
|
|
}
|
|
}
|
|
|
|
cancelAndSet(runner: () => void, interval: number): void {
|
|
this.cancel();
|
|
this._token = setInterval(() => {
|
|
runner();
|
|
}, interval);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns a promise that rejects with an {@CancellationError} as soon as the passed token is cancelled.
|
|
* @see {@link raceCancellation}
|
|
*/
|
|
function raceCancellationError<T>(promise: Promise<T>, token: CancellationToken): Promise<T> {
|
|
return new Promise((resolve, reject) => {
|
|
const ref = token.onCancellationRequested(() => {
|
|
ref.dispose();
|
|
reject(new CancellationError());
|
|
});
|
|
promise.then(resolve, reject).finally(() => ref.dispose());
|
|
});
|
|
}
|
|
|
|
function raceTimeoutError<T>(promise: Promise<T>, timeout: number): Promise<T> {
|
|
return new Promise((resolve, reject) => {
|
|
const ref = setTimeout(() => {
|
|
reject(new CancellationError());
|
|
}, timeout);
|
|
promise.then(resolve, reject).finally(() => clearTimeout(ref));
|
|
});
|
|
}
|
|
|
|
export function raceCancellationAndTimeoutError<T>(promise: Promise<T>, token: CancellationToken, timeout: number): Promise<T> {
|
|
return raceCancellationError(raceTimeoutError(promise, timeout), token);
|
|
}
|
|
|
|
/**
|
|
* Given an event, returns another event which only fires once.
|
|
*
|
|
* @param event The event source for the new event.
|
|
*/
|
|
function once<T>(event: Event<T>): Event<T> {
|
|
return (listener, thisArgs = null, disposables?) => {
|
|
// we need this, in case the event fires during the listener call
|
|
let didFire = false;
|
|
let result: Disposable | undefined = undefined;
|
|
result = event(e => {
|
|
if (didFire) {
|
|
return;
|
|
} else if (result) {
|
|
result.dispose();
|
|
} else {
|
|
didFire = true;
|
|
}
|
|
|
|
return listener.call(thisArgs, e);
|
|
}, null, disposables);
|
|
|
|
if (didFire) {
|
|
result.dispose();
|
|
}
|
|
|
|
return result;
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Creates a promise out of an event, using the {@link Event.once} helper.
|
|
*/
|
|
export function toPromise<T>(event: Event<T>): Promise<T> {
|
|
return new Promise(resolve => once(event)(resolve));
|
|
}
|
|
|
|
//#region DeferredPromise
|
|
|
|
export type ValueCallback<T = unknown> = (value: T | Promise<T>) => void;
|
|
|
|
const enum DeferredOutcome {
|
|
Resolved,
|
|
Rejected
|
|
}
|
|
|
|
/**
|
|
* Creates a promise whose resolution or rejection can be controlled imperatively.
|
|
*/
|
|
export class DeferredPromise<T> {
|
|
|
|
private completeCallback!: ValueCallback<T>;
|
|
private errorCallback!: (err: unknown) => void;
|
|
private outcome?: { outcome: DeferredOutcome.Rejected; value: any } | { outcome: DeferredOutcome.Resolved; value: T };
|
|
|
|
public get isRejected() {
|
|
return this.outcome?.outcome === DeferredOutcome.Rejected;
|
|
}
|
|
|
|
public get isResolved() {
|
|
return this.outcome?.outcome === DeferredOutcome.Resolved;
|
|
}
|
|
|
|
public get isSettled() {
|
|
return !!this.outcome;
|
|
}
|
|
|
|
public get value() {
|
|
return this.outcome?.outcome === DeferredOutcome.Resolved ? this.outcome?.value : undefined;
|
|
}
|
|
|
|
public readonly p: Promise<T>;
|
|
|
|
constructor() {
|
|
this.p = new Promise<T>((c, e) => {
|
|
this.completeCallback = c;
|
|
this.errorCallback = e;
|
|
});
|
|
}
|
|
|
|
public complete(value: T) {
|
|
return new Promise<void>(resolve => {
|
|
this.completeCallback(value);
|
|
this.outcome = { outcome: DeferredOutcome.Resolved, value };
|
|
resolve();
|
|
});
|
|
}
|
|
|
|
public error(err: unknown) {
|
|
return new Promise<void>(resolve => {
|
|
this.errorCallback(err);
|
|
this.outcome = { outcome: DeferredOutcome.Rejected, value: err };
|
|
resolve();
|
|
});
|
|
}
|
|
|
|
public cancel() {
|
|
return this.error(new CancellationError());
|
|
}
|
|
}
|
|
|
|
//#endregion
|