Files
cgm-remote-monitor/lib/server/cache.js
T
Sulka HaroandGitHub 0426b019ca Fix api v3 users seeing gaps in CGM data (#7853)
* Change runtime cache to support item timestamp be defined in either mills or date field.

* Fix typo

* Return mills in v1 api when returning data from cache

* Also parse created_at in the cache

* Fix copy paste error
2023-01-24 19:48:51 +02:00

112 lines
3.0 KiB
JavaScript

'use strict';
/* 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 getObjectAge(object) {
let age = object.mills || object.date;
if (isNaN(age) && object.created_at) age = Date.parse(object.created_at).valueOf();
return age;
}
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) {
const age = getObjectAge(item);
return -age;
});
function filterForAge(data, ageLimit) {
return _.filter(data, function hasId(object) {
const hasId = !_.isEmpty(object._id);
const age = getObjectAge(object);
const isFresh = age >= 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;