-
Notifications
You must be signed in to change notification settings - Fork 0
/
cache.js
69 lines (58 loc) · 1.41 KB
/
cache.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
'use strict';
/*
Cache representation for metatile rendering result
*/
function Cache(options) {
this.options = Object.assign({
lockTimeoutMs: 60000,
waitTimeoutMs: 60000,
ttlMs: 60000
}, options);
this.callbacks = {};
this.results = {};
this.locks = {};
}
Cache.prototype.has = function(key) {
const hit = !!this.locks[key] || !!this.results[key];
return hit;
}
Cache.prototype.take = function(key, callback) {
if (this.results[key]) {
callback(null, this.results[key]);
delete this.results[key];
delete this.locks[key];
return;
}
//TODO: Check multiple callbacks
if (this.callbacks[key]) {
this.callbacks[key]("Callback was overriden")
}
this.callbacks[key] = callback;
const cache = this;
setTimeout(() => {
if (cache.callbacks[key]) {
cache.callbacks[key]("Timeout reached without answer");
delete cache.callbacks[key];
}
}, this.options.waitTimeoutMs);
}
Cache.prototype.lock = function(key) {
this.locks[key] = true;
const cache = this;
setTimeout(() => {
delete cache.locks[key];
}, this.options.lockTimeout);
}
Cache.prototype.put = function(key, data) {
if (this.callbacks[key]) {
this.callbacks[key](null, data);
delete this.callbacks[key];
} else {
this.results[key] = data;
}
const cache = this;
setTimeout(() => {
delete cache.results[key];
}, this.options.ttl);
}
module.exports = Cache;