2021-03-18 02:49:14 +01:00
|
|
|
export class Cache<T> {
|
|
|
|
private cache: Map<string | null, { date: number; value: T; }>;
|
|
|
|
private lifetime: number;
|
|
|
|
|
|
|
|
constructor(lifetime: Cache<never>['lifetime']) {
|
2021-03-18 02:54:39 +01:00
|
|
|
this.cache = new Map();
|
2021-03-18 02:49:14 +01:00
|
|
|
this.lifetime = lifetime;
|
|
|
|
}
|
|
|
|
|
2021-03-18 02:55:51 +01:00
|
|
|
public set(key: string | null, value: T): void {
|
2021-03-18 02:49:14 +01:00
|
|
|
this.cache.set(key, {
|
|
|
|
date: Date.now(),
|
2021-12-09 15:58:30 +01:00
|
|
|
value,
|
2021-03-18 02:49:14 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-03-21 16:44:38 +01:00
|
|
|
public get(key: string | null): T | undefined {
|
2021-03-18 02:49:14 +01:00
|
|
|
const cached = this.cache.get(key);
|
2021-03-21 16:44:38 +01:00
|
|
|
if (cached == null) return undefined;
|
2021-03-18 02:49:14 +01:00
|
|
|
if ((Date.now() - cached.date) > this.lifetime) {
|
|
|
|
this.cache.delete(key);
|
2021-03-21 16:44:38 +01:00
|
|
|
return undefined;
|
2021-03-18 02:49:14 +01:00
|
|
|
}
|
|
|
|
return cached.value;
|
|
|
|
}
|
2021-03-21 16:44:38 +01:00
|
|
|
|
|
|
|
public delete(key: string | null) {
|
|
|
|
this.cache.delete(key);
|
|
|
|
}
|
|
|
|
|
2022-03-20 17:22:00 +01:00
|
|
|
/**
|
|
|
|
* キャッシュがあればそれを返し、無ければfetcherを呼び出して結果をキャッシュ&返します
|
|
|
|
* optional: キャッシュが存在してもvalidatorでfalseを返すとキャッシュ無効扱いにします
|
|
|
|
*/
|
|
|
|
public async fetch(key: string | null, fetcher: () => Promise<T>, validator?: (cachedValue: T) => boolean): Promise<T> {
|
2021-03-21 16:44:38 +01:00
|
|
|
const cachedValue = this.get(key);
|
|
|
|
if (cachedValue !== undefined) {
|
2022-03-20 17:22:00 +01:00
|
|
|
if (validator) {
|
|
|
|
if (validator(cachedValue)) {
|
|
|
|
// Cache HIT
|
|
|
|
return cachedValue;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Cache HIT
|
|
|
|
return cachedValue;
|
|
|
|
}
|
2021-03-21 16:44:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Cache MISS
|
|
|
|
const value = await fetcher();
|
|
|
|
this.set(key, value);
|
|
|
|
return value;
|
|
|
|
}
|
2021-03-18 02:49:14 +01:00
|
|
|
}
|