2020-08-05 22:08:55 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2020-04-10 02:49:49 +05:30
|
|
|
function disposeValue(value) {
|
2020-05-07 03:01:36 +05:30
|
|
|
if (typeof value === "function") {
|
2020-04-10 02:49:49 +05:30
|
|
|
value();
|
|
|
|
} else {
|
|
|
|
value.dispose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-09 20:31:54 +05:30
|
|
|
function isDisposable(value) {
|
|
|
|
return value && (typeof value === "function" || typeof value.dispose === "function");
|
|
|
|
}
|
|
|
|
|
2020-04-10 02:49:49 +05:30
|
|
|
export class Disposables {
|
|
|
|
constructor() {
|
|
|
|
this._disposables = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
track(disposable) {
|
2020-10-09 20:31:54 +05:30
|
|
|
if (!isDisposable(disposable)) {
|
|
|
|
throw new Error("Not a disposable");
|
|
|
|
}
|
2021-02-22 15:17:17 +05:30
|
|
|
if (this.isDisposed) {
|
|
|
|
console.warn("Disposables already disposed, disposing new value");
|
|
|
|
disposeValue(disposable);
|
|
|
|
return disposable;
|
|
|
|
}
|
2020-04-10 02:49:49 +05:30
|
|
|
this._disposables.push(disposable);
|
2020-09-10 20:10:30 +05:30
|
|
|
return disposable;
|
2020-04-10 02:49:49 +05:30
|
|
|
}
|
|
|
|
|
2020-10-07 15:55:03 +05:30
|
|
|
untrack(disposable) {
|
|
|
|
const idx = this._disposables.indexOf(disposable);
|
|
|
|
if (idx >= 0) {
|
|
|
|
this._disposables.splice(idx, 1);
|
|
|
|
}
|
2020-10-13 16:40:27 +05:30
|
|
|
return null;
|
2020-10-07 15:55:03 +05:30
|
|
|
}
|
|
|
|
|
2020-04-10 02:49:49 +05:30
|
|
|
dispose() {
|
|
|
|
if (this._disposables) {
|
|
|
|
for (const d of this._disposables) {
|
|
|
|
disposeValue(d);
|
|
|
|
}
|
|
|
|
this._disposables = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-10 21:13:01 +05:30
|
|
|
get isDisposed() {
|
|
|
|
return this._disposables === null;
|
|
|
|
}
|
|
|
|
|
2020-04-10 02:49:49 +05:30
|
|
|
disposeTracked(value) {
|
2020-09-10 21:13:01 +05:30
|
|
|
if (value === undefined || value === null || this.isDisposed) {
|
2020-05-06 02:49:02 +05:30
|
|
|
return null;
|
|
|
|
}
|
2020-04-10 02:49:49 +05:30
|
|
|
const idx = this._disposables.indexOf(value);
|
|
|
|
if (idx !== -1) {
|
|
|
|
const [foundValue] = this._disposables.splice(idx, 1);
|
|
|
|
disposeValue(foundValue);
|
2020-05-06 02:49:02 +05:30
|
|
|
} else {
|
|
|
|
console.warn("disposable not found, did it leak?", value);
|
2020-04-10 02:49:49 +05:30
|
|
|
}
|
2020-05-06 02:49:02 +05:30
|
|
|
return null;
|
2020-04-10 02:49:49 +05:30
|
|
|
}
|
|
|
|
}
|