stylus/js/cache.js

53 lines
992 B
JavaScript
Raw Normal View History

2018-10-04 04:46:19 +00:00
'use strict';
2018-10-03 19:35:07 +00:00
function createCache(size = 1000) {
2018-10-04 04:46:19 +00:00
const map = new Map();
2018-10-03 19:35:07 +00:00
const buffer = Array(size);
let index = 0;
let lastIndex = 0;
return {
get,
set,
delete: delete_,
clear,
has: id => map.has(id),
2018-10-04 04:46:19 +00:00
get size() {
return map.size;
}
2018-10-03 19:35:07 +00:00
};
function get(id) {
const item = map.get(id);
return item && item.data;
}
function set(id, data) {
if (map.size === size) {
// full
map.delete(buffer[lastIndex].id);
lastIndex = (lastIndex + 1) % size;
}
const item = {id, data, index};
map.set(id, item);
buffer[index] = item;
index = (index + 1) % size;
}
function delete_(id) {
const item = map.get(id);
if (!item) {
return;
}
map.delete(item.id);
const lastItem = buffer[lastIndex];
lastItem.index = item.index;
buffer[item.index] = lastItem;
lastIndex = (lastIndex + 1) % size;
}
function clear() {
map.clear();
index = lastIndex = 0;
}
}