-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathLruCache.ts
234 lines (197 loc) · 5.84 KB
/
LruCache.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
/*
Copyright 2024 New Vector Ltd.
Copyright 2023 The Matrix.org Foundation C.I.C.
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE files in the repository root for full details.
*/
import { logger } from "matrix-js-sdk/src/logger";
interface CacheItem<K, V> {
key: K;
value: V;
/** Next item in the list */
next: CacheItem<K, V> | null;
/** Previous item in the list */
prev: CacheItem<K, V> | null;
}
/**
* Least Recently Used cache.
* Can be initialised with a capacity and drops the least recently used items.
* This cache should be error robust: Cache miss on error.
*
* Implemented via a key lookup map and a double linked list:
* head tail
* a next → b next → c → next null
* null ← prev a ← prev b ← prev c
*
* @template K - Type of the key used to look up the values inside the cache
* @template V - Type of the values inside the cache
*/
export class LruCache<K, V> {
/** Head of the list. */
private head: CacheItem<K, V> | null = null;
/** Tail of the list */
private tail: CacheItem<K, V> | null = null;
/** Key lookup map */
private map: Map<K, CacheItem<K, V>>;
/**
* @param capacity - Cache capcity.
* @throws {Error} - Raises an error if the cache capacity is less than 1.
*/
public constructor(private capacity: number) {
if (this.capacity < 1) {
throw new Error("Cache capacity must be at least 1");
}
this.map = new Map();
}
/**
* Whether the cache contains an item under this key.
* Marks the item as most recently used.
*
* @param key - Key of the item
* @returns true: item in cache, else false
*/
public has(key: K): boolean {
try {
return this.getItem(key) !== undefined;
} catch (e) {
// Should not happen but makes it more robust to the unknown.
this.onError(e);
return false;
}
}
/**
* Returns an item from the cache.
* Marks the item as most recently used.
*
* @param key - Key of the item
* @returns The value if found, else undefined
*/
public get(key: K): V | undefined {
try {
return this.getItem(key)?.value;
} catch (e) {
// Should not happen but makes it more robust to the unknown.
this.onError(e);
return undefined;
}
}
/**
* Adds an item to the cache.
* A newly added item will be the set as the most recently used.
*
* @param key - Key of the item
* @param value - Item value
*/
public set(key: K, value: V): void {
try {
this.safeSet(key, value);
} catch (e) {
// Should not happen but makes it more robust to the unknown.
this.onError(e);
}
}
/**
* Deletes an item from the cache.
*
* @param key - Key of the item to be removed
*/
public delete(key: K): void {
const item = this.map.get(key);
// Unknown item.
if (!item) return;
try {
this.removeItemFromList(item);
this.map.delete(key);
} catch (e) {
// Should not happen but makes it more robust to the unknown.
this.onError(e);
}
}
/**
* Clears the cache.
*/
public clear(): void {
this.map = new Map();
this.head = null;
this.tail = null;
}
/**
* Returns an iterator over the cached values.
*/
public *values(): IterableIterator<V> {
for (const item of this.map.values()) {
yield item.value;
}
}
private safeSet(key: K, value: V): void {
const item = this.getItem(key);
if (item) {
// The item is already stored under this key. Update the value.
item.value = value;
return;
}
const newItem: CacheItem<K, V> = {
key,
value,
next: null,
prev: null,
};
if (this.head) {
// Put item in front of the list.
this.head.prev = newItem;
newItem.next = this.head;
}
this.setHeadTail(newItem);
// Store item in lookup map.
this.map.set(key, newItem);
if (this.tail && this.map.size > this.capacity) {
// Map size exceeded cache capcity. Drop tail item.
this.delete(this.tail.key);
}
}
private onError(e: unknown): void {
logger.warn("LruCache error", e);
this.clear();
}
private getItem(key: K): CacheItem<K, V> | undefined {
const item = this.map.get(key);
// Not in cache.
if (!item) return undefined;
// Item is already at the head of the list.
// No update required.
if (item === this.head) return item;
this.removeItemFromList(item);
// Put item to the front.
if (this.head) {
this.head.prev = item;
}
item.prev = null;
item.next = this.head;
this.setHeadTail(item);
return item;
}
private setHeadTail(item: CacheItem<K, V>): void {
if (item.prev === null) {
// Item has no previous item → head
this.head = item;
}
if (item.next === null) {
// Item has no next item → tail
this.tail = item;
}
}
private removeItemFromList(item: CacheItem<K, V>): void {
if (item === this.head) {
this.head = item.next;
}
if (item === this.tail) {
this.tail = item.prev;
}
if (item.prev) {
item.prev.next = item.next;
}
if (item.next) {
item.next.prev = item.prev;
}
}
}