pbc/libs/cache.js

177 lines
3.6 KiB
JavaScript

const config = require('../config.json');
const logger = require('./logger.js');
const constants = require('./constants.js');
const timeDiff = require('./util.js').timeDiff;
const active = config.cache.active;
const lifetime = config.cache.lifetime * 60000;
let modep;
const cache = new Map();
function isActive() {
return active;
}
function getLifetime() {
return lifetime;
}
async function fill() {
if (!isActive) {
return;
}
const timestamp = new Date();
logger.debug('filling cache...');
clear();
try {
if (modep === undefined) {
modep = require('./modep.js');
}
await modep.getBanks();
await modep.getPedalboards();
await modep.getDefaultPedalboard();
await modep.getCurrentPedalboard();
await modep.getCurrentPedals();
logger.debug('cache filled after ' + timeDiff(timestamp) + 'ms');
} catch (err) {
logger.error('encountered an error while filling the cache after ' + timeDiff(timestamp) + 'ms');
}
}
function clear() {
cache.clear();
}
function validLifetime(timestamp) {
if (timestamp === undefined) {
return false;
}
if (lifetime === 0) {
return true;
}
return (new Date().getTime() - timestamp) <= lifetime;
}
function getValue(key) {
var value = cache.get(key);
if (value === undefined) {
return undefined;
}
if (!validLifetime(value.timestamp)) {
resetValue(key)
return undefined;
}
return cache.get(key).data;
}
function setValue(key, value) {
if (!isActive) {
return;
}
logger.debug('caching \'' + key + '\'...');
cache.set(key, { data: value, timestamp: new Date().getTime() });
}
function resetValue(key) {
cache.delete(key);
}
function getBanks() {
return getValue(constants.CACHE_BANKS);
}
function clearBanks() {
resetValue(constants.CACHE_BANKS);
}
function setBanks(value) {
setValue(constants.CACHE_BANKS, value);
}
function getPedalboards() {
return getValue(constants.CACHE_PEDALBOARDS);
}
function clearPedalboards() {
resetValue(constants.CACHE_PEDALBOARDS);
}
function setPedalboards(value) {
setValue(constants.CACHE_PEDALBOARDS, value);
}
function getCurrentPedalboard() {
return getValue(constants.CACHE_PEDALBOARD_CURRENT);
}
function clearCurrentPedalboard() {
resetValue(constants.CACHE_PEDALBOARD_CURRENT);
}
function setCurrentPedalboard(value) {
setValue(constants.CACHE_PEDALBOARD_CURRENT, value);
}
function getDefaultPedalboard() {
return getValue(constants.CACHE_PEDALBOARD_DEFAULT);
}
function clearDefaultPedalboard() {
resetValue(constants.CACHE_PEDALBOARD_DEFAULT);
}
function setDefaultPedalboard(value) {
setValue(constants.CACHE_PEDALBOARD_DEFAULT, value);
}
function getCurrentPedals() {
return getValue(constants.CACHE_PEDALS);
}
function clearCurrentPedals() {
resetValue(constants.CACHE_PEDALS);
}
function setCurrentPedals(value) {
setValue(constants.CACHE_PEDALS, value);
}
function getInfo() {
return getValue(constants.CACHE_INFO);
}
function clearInfo() {
resetValue(constants.CACHE_INFO);
}
function setInfo(value) {
setValue(constants.CACHE_INFO, value);
}
module.exports = {
isActive,
getLifetime,
fill,
clear,
getBanks,
clearBanks,
setBanks,
getPedalboards,
clearPedalboards,
setPedalboards,
getDefaultPedalboard,
clearDefaultPedalboard,
setDefaultPedalboard,
getCurrentPedalboard,
clearCurrentPedalboard,
setCurrentPedalboard,
getCurrentPedals,
clearCurrentPedals,
setCurrentPedals,
getInfo,
clearInfo,
setInfo
}