mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-29 21:11:38 +01:00
56 lines
1.3 KiB
TypeScript
56 lines
1.3 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 * as vscode from 'vscode';
|
|
|
|
export function disposeAll(disposables: Iterable<vscode.Disposable>) {
|
|
const errors: any[] = [];
|
|
|
|
for (const disposable of disposables) {
|
|
try {
|
|
disposable.dispose();
|
|
} catch (e) {
|
|
errors.push(e);
|
|
}
|
|
}
|
|
|
|
if (errors.length === 1) {
|
|
throw errors[0];
|
|
} else if (errors.length > 1) {
|
|
throw new AggregateError(errors, 'Encountered errors while disposing of store');
|
|
}
|
|
}
|
|
|
|
export interface IDisposable {
|
|
dispose(): void;
|
|
}
|
|
|
|
export abstract class Disposable {
|
|
#isDisposed = false;
|
|
|
|
protected _disposables: vscode.Disposable[] = [];
|
|
|
|
public dispose(): any {
|
|
if (this.#isDisposed) {
|
|
return;
|
|
}
|
|
this.#isDisposed = true;
|
|
disposeAll(this._disposables);
|
|
}
|
|
|
|
protected _register<T extends IDisposable>(value: T): T {
|
|
if (this.#isDisposed) {
|
|
value.dispose();
|
|
} else {
|
|
this._disposables.push(value);
|
|
}
|
|
return value;
|
|
}
|
|
|
|
protected get isDisposed() {
|
|
return this.#isDisposed;
|
|
}
|
|
}
|