-
Notifications
You must be signed in to change notification settings - Fork 6
/
cacheService.js
333 lines (311 loc) · 9.48 KB
/
cacheService.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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
var CacheCollection = require('./cacheCollection');
/**
* cacheService constructor
* @constructor
* @param cacheServiceConfig: {
* nameSpace: {string | ''},
* verbose: {boolean | false},
* writeToVolatileCaches: {boolean | true}
* }
* @param cacheModules: [
* {cache module object}
* ]
*/
function cacheService(cacheServiceConfig, cacheModules) {
var self = this;
/**
******************************************* PUBLIC FUNCTIONS *******************************************
*/
/**
* Get the value associated with a given key
* @param {string} key
* @param {function} cb
*/
self.get = function(key, cb){
if(arguments.length < 2){
throw new Exception('INCORRECT_ARGUMENT_EXCEPTION', '.get() requires 2 arguments.');
}
log(false, '.get() called:', {key: key});
var curCache;
var curCacheIndex = 0;
var callback = function(err, result){
var status = checkCacheResponse(key, err, result, curCache.type, curCacheIndex - 1);
if(status.status === 'continue'){
if(status.toIndex){
curCacheIndex = status.toIndex;
}
getNextCache();
return;
}
if(status.status === 'break'){
cb(err, status.result);
if(self.writeToVolatileCaches){
writeToVolatileCaches(curCacheIndex - 1, key, result);
}
}
else {
log(false, '.get() key not found:', {key: key});
cb(null, null);
}
};
function getNextCache(){
if(curCacheIndex < self.caches.length){
curCache = self.caches[curCacheIndex++];
curCache.get(key, callback);
}
}
getNextCache();
};
/**
* Get multiple values given multiple keys
* @param {array} keys
* @param {function} cb
*/
self.mget = function(keys, cb){
if(arguments.length < 2){
throw new Exception('INCORRECT_ARGUMENT_EXCEPTION', '.mget() requires 2 arguments.');
}
log(false, '.mget() called:', {keys: keys});
var maxKeysFound = 0;
var returnError = null;
var returnResponse = null;
var keepGoing = true;
var i = 0;
var successIndex = 0;
var finished = false;
var finish = function(index){
if(!finished){
finished = true;
keepGoing = false;
if(self.writeToVolatileCaches){
writeToVolatileCaches(index, returnResponse);
}
cb(returnError, returnResponse);
}
};
var callback = function(err, response, index){
var objectSize = 0;
for (var key in response){
if(response.hasOwnProperty(key)){
++objectSize;
}
}
if(objectSize === keys.length){
returnResponse = response;
finish(index);
}
else if(objectSize > maxKeysFound){
maxKeysFound = objectSize;
returnResponse = response;
successIndex = index;
}
if(index + 1 === self.caches.length){
returnResponse = response;
finish(successIndex);
}
};
while(keepGoing && i < self.caches.length){
var cache = self.caches[i];
cache.mget(keys, callback, i);
i++;
}
};
/**
* 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(){
if(arguments.length < 2){
throw new Exception('INCORRECT_ARGUMENT_EXCEPTION', '.set() requires a minimum of 2 arguments.');
}
var key = arguments[0];
var value = arguments[1];
var expiration = arguments[2] || null;
var refresh = arguments[3] || null;
var cb = arguments[4] || noop;
if(arguments.length === 4 && typeof arguments[3] === 'function'){
cb = arguments[3];
if(typeof arguments[2] === 'function'){
refresh = arguments[2];
expiration = null;
}
else{
expiration = arguments[2];
refresh = null;
}
}
else if(arguments.length === 3 && typeof arguments[2] === 'function'){
cb = arguments[2];
expiration = null;
}
log(false, '.set() called:', {key: key, value: value});
for(var i = 0; i < self.cachesLength; i++){
var cache = self.caches[i];
var ref = (i === self.caches.length - 1) ? refresh : null;
var func = (i === 0) ? cb : noop;
cache.set(key, value, expiration, ref, func);
}
};
/**
* Associate multiple keys with multiple values and optionally set expirations per function and/or key
* @param {object} arguments[0]
* @param {integer} arguments[1]
* @param {function} arguments[2]
*/
self.mset = function(){
if(arguments.length < 1){
throw new Exception('INCORRECT_ARGUMENT_EXCEPTION', '.mset() requires a minimum of 1 argument.');
}
var obj = arguments[0];
var expiration = arguments[1] || null;
var cb = arguments[2] || null;
log(false, '.mset() called:', {data: obj});
for(var i = 0; i < self.cachesLength; i++){
var cache = self.caches[i];
expiration = expiration || cache.expiration;
if(i === self.caches.length - 1){
cache.mset(obj, expiration, cb);
}
else{
cache.mset(obj, expiration);
}
}
};
/**
* Delete a list of keys and their values
* @param {array} keys
* @param {function} cb
*/
self.del = function(keys, cb){
if(arguments.length < 1){
throw new Exception('INCORRECT_ARGUMENT_EXCEPTION', '.del() requires a minimum of 1 argument.');
}
log(false, '.del() called:', {keys: keys});
for(var i = 0; i < self.cachesLength; i++){
var cache = self.caches[i];
if(i === self.caches.length - 1){
cache.del(keys, cb);
}
else{
cache.del(keys);
}
}
};
/**
* Flush all keys and values from all configured caches in caches
* @param {function} cb
*/
self.flush = function(cb){
log(false, '.flush() called');
for(var i = 0; i < self.cachesLength; i++){
var cache = self.caches[i];
if(i === self.caches.length - 1){
cache.flush(cb);
}
else{
cache.flush();
}
}
};
/**
******************************************* PRIVATE FUNCTIONS *******************************************
*/
/**
* Initialize cacheService given the provided constructor params
*/
function init(){
if(!cacheServiceConfig) {
cacheServiceConfig = {};
}
self.nameSpace = cacheServiceConfig.nameSpace || '';
self.verbose = (typeof cacheServiceConfig.verbose === 'boolean') ? cacheServiceConfig.verbose : false;
self.writeToVolatileCaches = (typeof cacheServiceConfig.writeToVolatileCaches === 'boolean') ? cacheServiceConfig.writeToVolatileCaches : true;
self.caches = new CacheCollection({nameSpace: self.nameSpace, verbose: self.verbose}, cacheModules).caches;
self.cachesLength = self.caches.length;
}
/**
* Decides what action cacheService should take given the response from a configured cache
* @param {string} key
* @param {null | object} err
* @param {null | object | string} result
* @param {string} type
* @param {integer} cacheIndex
*/
function checkCacheResponse(key, err, result, type, cacheIndex){
if(err){
log(true, 'Error when getting key ' + key + ' from cache of type ' + type + ':', err);
if(cacheIndex < self.caches.length - 1){
return {status:'continue'};
}
}
//THIS ALLOWS false AS A VALID CACHE VALUE, BUT DO I WANT null TO BE VALID AS WELL?
if(result !== null && typeof result !== 'undefined'){
log(false, 'Key found:', {key: key, value: result});
return {status: 'break', result: result};
}
var curCache = self.caches[cacheIndex];
for(var i = cacheIndex + 1; i < self.cachesLength; i++) {
var nextCache = self.caches[i];
if(nextCache.checkOnPreviousEmpty || nextCache.expiration > curCache.expiration){
return {status:'continue', toIndex: i};
}
}
return {status: 'else'};
}
/**
* Writes data to caches that appear before the current cache in caches
* @param {integer} currentCacheIndex
* @param {string} key
* @param {null | object | string} value
*/
function writeToVolatileCaches(currentCacheIndex, key, value){
if(currentCacheIndex > 0){
var curExpiration = self.caches[currentCacheIndex].expiration;
for(var tempIndex = currentCacheIndex; tempIndex > -1; tempIndex--){
var preExpiration = self.caches[tempIndex].expiration;
if(preExpiration <= curExpiration){
var preCache = self.caches[currentCacheIndex];
if(value){
preCache.set(key, value); /*This means that a more volatile cache can have a key longer than a less volatile cache. Should I adjust this?*/
}
else if(typeof key === 'object'){
preCache.mset(key);
}
}
}
}
}
/**
* Instantates an exception to be thrown
* @param {string} name
* @param {string} message
* @return {exception}
*/
function Exception(name, message) {
this.name = name;
this.message = message;
}
/**
* Logging utility function
* @param {boolean} isError
* @param {string} message
* @param {object} data
*/
function log(isError, message, data){
var indentifier = 'cacheService: ';
if(self.verbose || isError){
if(data) {
console.log(indentifier + message, data);
} else {
console.log(indentifier + message);
}
}
}
function noop(){}
init();
}
module.exports = cacheService;