-
Notifications
You must be signed in to change notification settings - Fork 3
/
cacheModule.js
311 lines (294 loc) · 9.63 KB
/
cacheModule.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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
/**
* cacheModule constructor
* @param config: {
* type: {string | 'cache-module'}
* verbose: {boolean | false},
* defaultExpiration: {integer | 900},
* readOnly: {boolean | false},
* checkOnPreviousEmpty: {boolean | true},
* backgroundRefreshIntervalCheck: {boolean | true},
* backgroundRefreshInterval: {integer | 60000},
* backgroundRefreshMinTtl: {integer | 70000},
* storage: {string | null},
* storageMock: {object | null}
* }
*/
function cacheModule(config){
var self = this;
config = config || {};
self.type = config.type || 'cache-module';
self.verbose = config.verbose || false;
self.defaultExpiration = config.defaultExpiration || 900;
self.readOnly = config.readOnly || false;
self.checkOnPreviousEmpty = (typeof config.checkOnPreviousEmpty === 'boolean') ? config.checkOnPreviousEmpty : true;
self.backgroundRefreshIntervalCheck = (typeof config.backgroundRefreshIntervalCheck === 'boolean') ? config.backgroundRefreshIntervalCheck : true;
self.backgroundRefreshInterval = config.backgroundRefreshInterval || 60000;
self.backgroundRefreshMinTtl = config.backgroundRefreshMinTtl || 70000;
var store = null;
var storageMock = config.storageMock || false;
var backgroundRefreshEnabled = false;
var browser = (typeof window !== 'undefined');
var cache = {
db: {},
expirations: {},
refreshKeys: {}
};
var storageKey;
var interval;
setupBrowserStorage();
log(false, 'Cache-module client created with the following defaults:', {type: self.type, defaultExpiration: self.defaultExpiration, verbose: self.verbose, readOnly: self.readOnly});
/**
* Get the value associated with a given key
* @param {string} key
* @param {function} cb
*/
self.get = function(key, cb){
throwErrorIf((arguments.length < 2), 'ARGUMENT_EXCEPTION: .get() requires 2 arguments.');
log(false, 'get() called:', {key: key});
try {
var now = Date.now();
var expiration = cache.expirations[key];
if(expiration > now){
var output = cache.db[key];
if(typeof output === 'object'){
output = cloneObject(output);
}
cb(null, output);
}
else{
expire(key);
cb(null, null);
}
} catch (err) {
cb({name: 'GetException', message: err}, null);
}
}
/**
* Get multiple values given multiple keys
* @param {array} keys
* @param {function} cb
* @param {integer} index
*/
self.mget = function(keys, cb, index){
throwErrorIf((arguments.length < 2), 'ARGUMENT_EXCEPTION: .mget() requires 2 arguments.');
log(false, '.mget() called:', {keys: keys});
var values = {};
for(var i = 0; i < keys.length; i++){
var key = keys[i];
self.get(key, function(err, response){
if(response !== null){
values[key] = response;
}
});
}
cb(null, values, index);
}
/**
* Associate a key and value and optionally set an expiration
* @param {string} key
* @param {string | object} value
* @param {integer} expiration
* @param {function} refresh
* @param {function} cb
*/
self.set = function(){
throwErrorIf((arguments.length < 2), 'ARGUMENT_EXCEPTION: .set() requires at least 2 arguments.');
var key = arguments[0];
var value = arguments[1];
var expiration = arguments[2] || null;
var refresh = (arguments.length == 5) ? arguments[3] : null;
var cb = (arguments.length == 5) ? arguments[4] : arguments[3];
log(false, '.set() called:', {key: key, value: value});
if(!self.readOnly){
try {
expiration = (expiration) ? (expiration * 1000) : (self.defaultExpiration * 1000);
var exp = expiration + Date.now();
cache.expirations[key] = exp;
cache.db[key] = value;
if(cb) cb();
if(refresh){
cache.refreshKeys[key] = {expiration: exp, lifeSpan: expiration, refresh: refresh};
backgroundRefreshInit();
}
overwriteBrowserStorage();
} catch (err) {
log(true, '.set() failed for cache of type ' + self.type, {name: 'CacheModuleSetException', message: err});
}
}
}
/**
* Associate multiple keys with multiple values and optionally set expirations per function and/or key
* @param {object} obj
* @param {integer} expiration
* @param {function} cb
*/
self.mset = function(obj, expiration, cb){
throwErrorIf((arguments.length < 1), 'ARGUMENT_EXCEPTION: .mset() requires at least 1 argument.');
log(false, '.mset() called:', {data: obj});
for(var key in obj){
if(obj.hasOwnProperty(key)){
var tempExpiration = expiration || self.defaultExpiration;
var value = obj[key];
if(typeof value === 'object' && value.cacheValue){
tempExpiration = value.expiration || tempExpiration;
value = value.cacheValue;
}
self.set(key, value, tempExpiration);
}
}
if(cb) cb();
}
/**
* Delete the provided keys and their associated values
* @param {array} keys
* @param {function} cb
*/
self.del = function(keys, cb){
throwErrorIf((arguments.length < 1), 'ARGUMENT_EXCEPTION: .del() requires at least 1 argument.');
log(false, '.del() called:', {keys: keys});
if(typeof keys === 'object'){
for(var i = 0; i < keys.length; i++){
var key = keys[i];
delete cache.db[key];
delete cache.expirations[key];
delete cache.refreshKeys[key];
}
if(cb) cb(null, keys.length);
}
else{
delete cache.db[keys];
delete cache.expirations[keys];
delete cache.refreshKeys[keys];
if(cb) cb(null, 1);
}
overwriteBrowserStorage();
}
/**
* Flush all keys and values
* @param {function} cb
*/
self.flush = function(cb){
log(false, '.flush() called');
cache.db = {};
cache.expirations = {};
cache.refreshKeys = {};
if(cb) cb();
overwriteBrowserStorage();
if(interval) clearInterval(interval);
backgroundRefreshEnabled = false;
}
/**
* Enable browser storage if desired and available
*/
function setupBrowserStorage(){
if(browser || storageMock){
if(storageMock){
store = storageMock;
storageKey = 'cache-module-storage-mock';
}
else{
var storageType = (config.storage === 'local' || config.storage === 'session') ? config.storage : null;
store = (storageType && typeof Storage !== void(0)) ? window[storageType + 'Storage'] : false;
storageKey = (storageType) ? self.type + '-' + storageType + '-storage' : null;
}
if(store){
var db = store.getItem(storageKey);
try {
cache = JSON.parse(db) || cache;
} catch (err) { /* Do nothing */ }
}
// If storageType is set but store is not, the desired storage mechanism was not available
else if(storageType){
log(true, 'Browser storage is not supported by this browser. Defaulting to an in-memory cache.');
}
}
}
/**
* Overwrite namespaced browser storage with current cache
*/
function overwriteBrowserStorage(){
if((browser && store) || storageMock){
var db = cache;
try {
db = JSON.stringify(db);
store.setItem(storageKey, db);
} catch (err) { /* Do nothing */ }
}
}
/**
* Throw a given error if error is true
* @param {boolean} error
* @param {string} message
*/
function throwErrorIf(error, message){
if(error) throw new Error(message);
}
/**
* Delete a given key from cache.db and cache.expirations but not from cache.refreshKeys
* @param {string} key
*/
function expire(key){
delete cache.db[key];
delete cache.expirations[key];
overwriteBrowserStorage();
}
/**
* Initialize background refresh
*/
function backgroundRefreshInit(){
if(!backgroundRefreshEnabled){
backgroundRefreshEnabled = true;
if(self.backgroundRefreshIntervalCheck){
if(self.backgroundRefreshInterval > self.backgroundRefreshMinTtl){
throw new Error('BACKGROUND_REFRESH_INTERVAL_EXCEPTION: backgroundRefreshInterval cannot be greater than backgroundRefreshMinTtl.');
}
}
interval = setInterval(backgroundRefresh, self.backgroundRefreshInterval);
}
}
/**
* Handle the refresh callback from the consumer, save the data to redis.
*
* @param {string} key The key used to save.
* @param {Object} data refresh keys data.
* @param {Error|null} err consumer callback failure.
* @param {*} response The consumer response.
*/
function handleRefreshResponse (key, data, err, response) {
if(!err) {
this.set(key, response, (data.lifeSpan / 1000), data.refresh, function(){});
}
}
/**
* Refreshes all keys that were set with a refresh function
*/
function backgroundRefresh() {
var keys = Object.keys(cache.refreshKeys);
keys.forEach(function(key) {
var data = cache.refreshKeys[key];
if(data.expiration - Date.now() < this.backgroundRefreshMinTtl){
data.refresh(key, handleRefreshResponse.bind(this, key, data));
}
}, self);
}
/**
* Return a clone of an object
* @param {object} obj
*/
function cloneObject(obj){
return JSON.parse(JSON.stringify(obj));
}
/**
* Error logging logic
* @param {boolean} isError
* @param {string} message
* @param {object} data
*/
function log(isError, message, data){
if(self.verbose || isError){
if(data) console.log(self.type + ': ' + message, data);
else console.log(self.type + message);
}
}
}
module.exports = cacheModule;