-
Notifications
You must be signed in to change notification settings - Fork 1
/
cache.js
260 lines (260 loc) · 6.82 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
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
exports.init = function(compound) {
var TAFFY, _getAllOfModelFromDB, _getTimeStampFromDB, cache;
TAFFY = require('taffy').taffy;
cache = {};
cache.timeStamps = {};
cache.dataset = TAFFY();
_getAllOfModelFromDB = function(_model, cb) {
var allFn, modelFn;
modelFn = _model;
allFn = 'all';
if (compound.models[modelFn] === void 0) {
throw new Error('Model [' + _model + '] not exists or is not defined.');
}
return compound.models[modelFn][allFn](function(err, items) {
var _item, _items, i, item, len;
cache.dataset().filter({
model: _model
}).remove();
_items = [];
for (i = 0, len = items.length; i < len; i++) {
item = items[i];
_item = item.toObject();
_item['model'] = _model;
_items.push(_item);
}
cache.dataset.insert(_items);
return cb(err, items);
});
};
_getTimeStampFromDB = function(model, cb) {
return compound.models.Timestamp.find(model + "TimeStamp", function(err, docTS) {
var modelTS, toSave;
if (!err && docTS) {
modelTS = docTS.v;
cache.timeStamps[model] = modelTS;
return cb(err, modelTS);
} else {
toSave = {
id: model + "TimeStamp",
v: JSON.stringify(new Date().valueOf())
};
return compound.models.Timestamp.create(toSave, (function(_this) {
return function(err, docTS) {
modelTS = docTS.v;
cache.timeStamps[model] = modelTS;
return cb(err, modelTS);
};
})(this));
}
});
};
cache.reloadDoc = function(docId, cb) {
var db;
db = compound.orm._schemas[0].adapter.db;
return db.get(docId, function(err, doc) {
cache.dataset({
id: docId
}).update(doc);
return cb(err, doc);
});
};
cache.reloadModel = function(model, cb) {
return _getTimeStampFromDB(model, function(err, modelTS) {
return _getAllOfModelFromDB(model, function(err, items) {
return cb(err, items);
});
});
};
cache.reloadAll = function(cb) {
var models;
models = Object.keys(cache.timeStamps);
return compound.async.map(models, function(model, mapCallback) {
return _getTimeStampFromDB(model, function(err, modelTS) {
return _getAllOfModelFromDB(model, function(err, items) {
return mapCallback(err, null);
});
});
}, cb);
};
cache.clearModel = function(model, cb) {
delete cache.timeStamps[model];
cache.dataset().filter({
'model': model
}).remove();
return cb();
};
cache.getTimeStamp = function(model, cb) {
var currentTS;
currentTS = cache.timeStamps[model];
return _getTimeStampFromDB(model, function(err, modelTS) {
if (currentTS === modelTS) {
return cb(null, currentTS);
} else {
return _getAllOfModelFromDB(model, function(err, items) {
return cb(null, cache.timeStamps[model]);
});
}
});
};
cache.setTimeStamp = function(model, value) {
if (cache.timeStamps.hasOwnProperty(model)) {
return cache.timeStamps[model] = value;
} else {
return new Error('Model not exist in cache');
}
};
cache.append = function(model, doc, cb) {
doc['model'] = model;
cache.dataset.insert([doc]);
return _getTimeStampFromDB(model, function(err, modelTS) {
return cb();
});
};
cache["delete"] = function(doc, cb) {
cache.dataset().filter({
id: doc.id
}).remove();
return _getTimeStampFromDB(doc.model, function(err, modelTS) {
return cb();
});
};
cache.set = function(doc, cb) {
cache.dataset({
id: doc.id
}).update(doc);
return _getTimeStampFromDB(doc.model, function(err, modelTS) {
return cb();
});
};
cache.all = function(model, cb) {
var currentTS;
currentTS = cache.timeStamps[model];
return _getTimeStampFromDB(model, function(err, modelTS) {
var items;
if (!cache.timeStamps.hasOwnProperty(model)) {
return _getAllOfModelFromDB(model, cb);
} else {
if (currentTS === modelTS) {
items = cache.dataset().filter({
model: model
}).get();
return cb(null, items);
} else {
return _getAllOfModelFromDB(model, cb);
}
}
});
};
cache.get = function(id, cb) {
var _get, db;
_get = function(doc, cb) {
return _getAllOfModelFromDB(doc.model, function(err, items) {
var item;
item = cache.dataset().filter({
id: id
}).first();
return cb(null, item);
});
};
if (id.length > 0) {
db = compound.orm._schemas[0].adapter.db;
return db.get(id, function(err, doc) {
var currentTS;
if (!err) {
if (doc.hasOwnProperty('model')) {
currentTS = cache.timeStamps[doc.model];
return _getTimeStampFromDB(doc.model, function(err, modelTS) {
var item;
if (currentTS === modelTS) {
item = cache.dataset().filter({
id: id
}).first();
if (item) {
return cb(null, item);
} else {
return _get(doc, cb);
}
} else {
return _get(doc, cb);
}
});
}
} else {
return cb(err, doc);
}
});
} else {
return cb(new Error('Document ID is not valid.'), null);
}
};
cache.getReferenceId = function(itemId, keyRef, cb) {
var item;
if (cb == null) {
cb = null;
}
item = cache.dataset().filter({
id: itemId
}).first();
item = item[keyRef];
if (cb) {
return cb(null, item);
} else {
return item;
}
};
cache.find = function(query, cb) {
var res;
if (cb == null) {
cb = null;
}
res = cache.dataset().filter(query).get();
if (cb) {
return cb(null, res);
} else {
return res;
}
};
cache.findOne = function(query, cb) {
var res;
if (cb == null) {
cb = null;
}
res = cache.dataset().filter(query).first();
if (cb) {
return cb(null, res);
} else {
return res;
}
};
cache.getEver = function(docId, cb) {
var db, res;
res = cache.dataset().filter({
'id': docId
}).first();
if (res === false) {
db = compound.orm._schemas[0].adapter.db;
return db.get(docId, cb);
} else {
return cb(null, res);
}
};
cache.count = function(query, cb) {
var res;
if (cb == null) {
cb = null;
}
if (typeof query === 'string') {
query = {
model: query
};
}
res = cache.dataset().filter(query).get().length;
if (cb) {
return cb(null, res);
} else {
return res;
}
};
return compound.utils.cache = cache;
};