nightscout
Version:
Nightscout acts as a web-based CGM (Continuous Glucose Monitor) to allow multiple caregivers to remotely view a patients glucose data in realtime.
104 lines (81 loc) • 2.98 kB
JavaScript
;
/* This is a simple cache intended to reduce the amount of load
* Nightscout puts on MongoDB. The cache is based on identifying
* elements based on the MongoDB _id field and implements simple
* semantics for adding data to the cache in the runtime, intended
* to be accessed by the persistence layer as data is inserted, updated
* or deleted, as well as the periodic dataloader, which polls Mongo
* for new inserts.
*
* Longer term, the cache is planned to allow skipping the Mongo polls
* altogether.
*/
const _ = require('lodash');
const constants = require('../constants');
function cache (env, ctx) {
const data = {
treatments: []
, devicestatus: []
, entries: []
};
const retentionPeriods = {
treatments: constants.ONE_HOUR * 60
, devicestatus: env.extendedSettings.devicestatus && env.extendedSettings.devicestatus.days && env.extendedSettings.devicestatus.days == 2 ? constants.TWO_DAYS : constants.ONE_DAY
, entries: constants.TWO_DAYS
};
function mergeCacheArrays (oldData, newData, retentionPeriod) {
const ageLimit = Date.now() - retentionPeriod;
var filteredOld = filterForAge(oldData, ageLimit);
var filteredNew = filterForAge(newData, ageLimit);
const merged = ctx.ddata.idMergePreferNew(filteredOld, filteredNew);
return _.sortBy(merged, function(item) {
return -item.mills;
});
function filterForAge(data, ageLimit) {
return _.filter(data, function hasId(object) {
const hasId = !_.isEmpty(object._id);
const isFresh = object.mills >= ageLimit;
return isFresh && hasId;
});
}
}
data.isEmpty = (datatype) => {
return data[datatype].length < 20;
}
data.getData = (datatype) => {
return _.cloneDeep(data[datatype]);
}
data.insertData = (datatype, newData) => {
data[datatype] = mergeCacheArrays(data[datatype], newData, retentionPeriods[datatype]);
return data.getData(datatype);
}
function dataChanged (operation) {
if (!data[operation.type]) return;
if (operation.op == 'remove') {
// if multiple items were deleted, flush entire cache
if (!operation.changes) {
data.treatments = [];
data.devicestatus = [];
data.entries = [];
} else {
removeFromArray(data[operation.type], operation.changes);
}
}
if (operation.op == 'update') {
data[operation.type] = mergeCacheArrays(data[operation.type], operation.changes, retentionPeriods[operation.type]);
}
}
ctx.bus.on('data-update', dataChanged);
function removeFromArray (array, id) {
for (let i = 0; i < array.length; i++) {
const o = array[i];
if (o._id == id) {
//console.log('Deleting object from cache', id);
array.splice(i, 1);
break;
}
}
}
return data;
}
module.exports = cache;