wallet-core/packages/taler-wallet-core/src/util/asyncMemo.ts

88 lines
2.1 KiB
TypeScript
Raw Normal View History

/*
This file is part of GNU Taler
(C) 2019 GNUnet e.V.
GNU Taler is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation; either version 3, or (at your option) any later version.
GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
*/
2019-12-05 19:38:19 +01:00
interface MemoEntry<T> {
p: Promise<T>;
t: number;
n: number;
}
2019-12-05 19:38:19 +01:00
export class AsyncOpMemoMap<T> {
2019-12-02 17:35:47 +01:00
private n = 0;
2019-12-05 19:38:19 +01:00
private memoMap: { [k: string]: MemoEntry<T> } = {};
2020-04-06 20:02:01 +02:00
private cleanUp(key: string, n: number): void {
2019-12-05 19:38:19 +01:00
const r = this.memoMap[key];
if (r && r.n === n) {
delete this.memoMap[key];
}
}
memo(key: string, pg: () => Promise<T>): Promise<T> {
const res = this.memoMap[key];
if (res) {
return res.p;
}
const n = this.n++;
2019-12-05 19:38:19 +01:00
// Wrap the operation in case it immediately throws
const p = Promise.resolve().then(() => pg());
this.memoMap[key] = {
2020-03-30 12:39:32 +02:00
p,
n,
t: new Date().getTime(),
};
return p.finally(() => {
this.cleanUp(key, n);
});
}
2020-04-06 20:02:01 +02:00
clear(): void {
2019-12-05 19:38:19 +01:00
this.memoMap = {};
}
}
export class AsyncOpMemoSingle<T> {
private n = 0;
private memoEntry: MemoEntry<T> | undefined;
2020-04-06 20:02:01 +02:00
private cleanUp(n: number): void {
2019-12-05 19:38:19 +01:00
if (this.memoEntry && this.memoEntry.n === n) {
this.memoEntry = undefined;
}
}
memo(pg: () => Promise<T>): Promise<T> {
const res = this.memoEntry;
if (res) {
return res.p;
}
2019-12-05 19:38:19 +01:00
const n = this.n++;
// Wrap the operation in case it immediately throws
const p = Promise.resolve().then(() => pg());
p.finally(() => {
this.cleanUp(n);
});
this.memoEntry = {
p,
n,
t: new Date().getTime(),
};
return p;
}
2020-04-06 20:02:01 +02:00
clear(): void {
2019-12-05 19:38:19 +01:00
this.memoEntry = undefined;
}
2019-12-05 19:38:19 +01:00
}