forked from Yomguithereal/mnemonist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lru-map.js
261 lines (221 loc) · 6.65 KB
/
lru-map.js
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
/**
* Mnemonist LRUMap
* =================
*
* Variant of the LRUCache class that leverages an ES6 Map instead of an object.
* It might be faster for some use case but it is still hard to understand
* when a Map can outperform an object in v8.
*/
var LRUCache = require('./lru-cache.js'),
forEach = require('obliterator/foreach'),
typed = require('./utils/typed-arrays.js'),
iterables = require('./utils/iterables.js');
/**
* LRUMap.
*
* @constructor
* @param {function} Keys - Array class for storing keys.
* @param {function} Values - Array class for storing values.
* @param {number} capacity - Desired capacity.
*/
function LRUMap(Keys, Values, capacity) {
if (arguments.length < 2) {
capacity = Keys;
Keys = null;
Values = null;
}
this.capacity = capacity;
if (typeof this.capacity !== 'number' || this.capacity <= 0)
throw new Error('mnemonist/lru-map: capacity should be positive number.');
else if (!isFinite(this.capacity) || Math.floor(this.capacity) !== this.capacity)
throw new Error('mnemonist/lru-map: capacity should be a finite positive integer.');
var PointerArray = typed.getPointerArray(capacity);
this.forward = new PointerArray(capacity);
this.backward = new PointerArray(capacity);
this.K = typeof Keys === 'function' ? new Keys(capacity) : new Array(capacity);
this.V = typeof Values === 'function' ? new Values(capacity) : new Array(capacity);
// Properties
this.size = 0;
this.head = 0;
this.tail = 0;
this.items = new Map();
}
/**
* Method used to clear the structure.
*
* @return {undefined}
*/
LRUMap.prototype.clear = function() {
this.size = 0;
this.head = 0;
this.tail = 0;
this.items.clear();
};
/**
* Method used to set the value for the given key in the cache.
*
* @param {any} key - Key.
* @param {any} value - Value.
* @return {undefined}
*/
LRUMap.prototype.set = function(key, value) {
var pointer = this.items.get(key);
// The key already exists, we just need to update the value and splay on top
if (typeof pointer !== 'undefined') {
this.splayOnTop(pointer);
this.V[pointer] = value;
return;
}
// The cache is not yet full
if (this.size < this.capacity) {
pointer = this.size++;
}
// Cache is full, we need to drop the last value
else {
pointer = this.tail;
this.tail = this.backward[pointer];
this.items.delete(this.K[pointer]);
}
// Storing key & value
this.items.set(key, pointer);
this.K[pointer] = key;
this.V[pointer] = value;
// Moving the item at the front of the list
this.forward[pointer] = this.head;
this.backward[this.head] = pointer;
this.head = pointer;
};
/**
* Method used to set the value for the given key in the cache.
*
* @param {any} key - Key.
* @param {any} value - Value.
* @return {{evicted: boolean, key: any, value: any}} An object containing the
* key and value of an item that was overwritten or evicted in the set
* operation, as well as a boolean indicating whether it was evicted due to
* limited capacity. Return value is null if nothing was evicted or overwritten
* during the set operation.
*/
LRUMap.prototype.setpop = function(key, value) {
var oldValue = null;
var oldKey = null;
var pointer = this.items.get(key);
// The key already exists, we just need to update the value and splay on top
if (typeof pointer !== 'undefined') {
this.splayOnTop(pointer);
oldValue = this.V[pointer];
this.V[pointer] = value;
return {evicted: false, key: key, value: oldValue};
}
// The cache is not yet full
if (this.size < this.capacity) {
pointer = this.size++;
}
// Cache is full, we need to drop the last value
else {
pointer = this.tail;
this.tail = this.backward[pointer];
oldValue = this.V[pointer];
oldKey = this.K[pointer];
this.items.delete(this.K[pointer]);
}
// Storing key & value
this.items.set(key, pointer);
this.K[pointer] = key;
this.V[pointer] = value;
// Moving the item at the front of the list
this.forward[pointer] = this.head;
this.backward[this.head] = pointer;
this.head = pointer;
// Return object if eviction took place, otherwise return null
if (oldKey) {
return {evicted: true, key: oldKey, value: oldValue};
}
else {
return null;
}
};
/**
* Method used to check whether the key exists in the cache.
*
* @param {any} key - Key.
* @return {boolean}
*/
LRUMap.prototype.has = function(key) {
return this.items.has(key);
};
/**
* Method used to get the value attached to the given key. Will move the
* related key to the front of the underlying linked list.
*
* @param {any} key - Key.
* @return {any}
*/
LRUMap.prototype.get = function(key) {
var pointer = this.items.get(key);
if (typeof pointer === 'undefined')
return;
this.splayOnTop(pointer);
return this.V[pointer];
};
/**
* Method used to get the value attached to the given key. Does not modify
* the ordering of the underlying linked list.
*
* @param {any} key - Key.
* @return {any}
*/
LRUMap.prototype.peek = function(key) {
var pointer = this.items.get(key);
if (typeof pointer === 'undefined')
return;
return this.V[pointer];
};
/**
* Methods that can be reused as-is from LRUCache.
*/
LRUMap.prototype.splayOnTop = LRUCache.prototype.splayOnTop;
LRUMap.prototype.forEach = LRUCache.prototype.forEach;
LRUMap.prototype.keys = LRUCache.prototype.keys;
LRUMap.prototype.values = LRUCache.prototype.values;
LRUMap.prototype.entries = LRUCache.prototype.entries;
/**
* Attaching the #.entries method to Symbol.iterator if possible.
*/
if (typeof Symbol !== 'undefined')
LRUMap.prototype[Symbol.iterator] = LRUMap.prototype.entries;
/**
* Convenience known methods.
*/
LRUMap.prototype.inspect = LRUCache.prototype.inspect;
/**
* Static @.from function taking an arbitrary iterable & converting it into
* a structure.
*
* @param {Iterable} iterable - Target iterable.
* @param {function} Keys - Array class for storing keys.
* @param {function} Values - Array class for storing values.
* @param {number} capacity - Cache's capacity.
* @return {LRUMap}
*/
LRUMap.from = function(iterable, Keys, Values, capacity) {
if (arguments.length < 2) {
capacity = iterables.guessLength(iterable);
if (typeof capacity !== 'number')
throw new Error('mnemonist/lru-cache.from: could not guess iterable length. Please provide desired capacity as last argument.');
}
else if (arguments.length === 2) {
capacity = Keys;
Keys = null;
Values = null;
}
var cache = new LRUMap(Keys, Values, capacity);
forEach(iterable, function(value, key) {
cache.set(key, value);
});
return cache;
};
/**
* Exporting.
*/
module.exports = LRUMap;