123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- const PINNED_IN_MEMORY = 0x7fffffff
- const NOT_IN_LRU = 0x40000000
- export const EXPIRED_ENTRY = {
- description: 'This cache entry value has been expired from the LRFU cache, and is waiting for garbage collection to be removed.'
- }
- /* bit pattern:
- * < is-in-lru 1 bit > ...< mask/or bits 6 bits > <lru index 2 bits > < position in cache - 22 bits >
- */
- export class LRFUExpirer {
- constructor(options) {
- this.lruSize = options && options.lruSize || 0x2000
- if (this.lruSize > 0x400000)
- throw new Error('The LRU/cache size was larger than the maximum cache size of 16777216 (LRU size of 4194304)')
- this.reset()
- startTimedCleanup(new WeakRef(this), options && options.cleanupInterval || 60000)
- }
- delete(entry) {
- if (entry.position < NOT_IN_LRU) {
- this.lru[(entry.position >> 22) & 3][entry.position & 0x3fffff] = null
- }
- entry.position |= NOT_IN_LRU
- }
- used(entry, expirationPriority) {
- let originalPosition = entry.position
- let orMask
- if (expirationPriority < 0) {
- // pin this in memory, first remove from LRFU and then mark it as pinned in memory
- if (entry.position < NOT_IN_LRU) {
- this.lru[(entry.position >> 22) & 3][entry.position & 0x3fffff] = null
- }
- entry.position = PINNED_IN_MEMORY
- return
- } else if (entry.position == PINNED_IN_MEMORY && expirationPriority == undefined) {
- return
- } else if (expirationPriority >= 0) {
- let bits = 0
- if (expirationPriority > (this.lruSize >> 2))
- expirationPriority = this.lruSize >> 2
- while (expirationPriority > 0) {
- expirationPriority = expirationPriority >> 1
- bits++
- }
- expirationPriority = bits
- } else {
- if (originalPosition >= 0)
- expirationPriority = (originalPosition >> 24) & 0x3f
- else
- expirationPriority = 0
- }
-
- let lruPosition
- let lruIndex
- if (originalPosition < NOT_IN_LRU) {
- lruIndex = (originalPosition >> 22) & 3
- if (lruIndex >= 3)
- return // can't get any higher than this, don't do anything
- let lru = this.lru[lruIndex]
- // check to see if it is in the same generation
- lruPosition = lru.position
- if ((originalPosition > lruPosition ? lruPosition + this.lruSize : lruPosition) - originalPosition < (this.lruSize >> 2))
- return // only recently added, don't promote
- lru[originalPosition & 0x3fffff] = null // remove it, we are going to move/promote it
- lruIndex++
- } else
- lruIndex = 0
- this.insertEntry(entry, lruIndex, expirationPriority)
- }
- insertEntry(entry, lruIndex, expirationPriority) {
- let lruPosition, nextLru = this.lru[lruIndex]
- let orMask = 0x3fffff >> (22 - expirationPriority)
- do {
- // put it in the next lru
- lruPosition = nextLru.position | orMask
- let previousEntry = nextLru[lruPosition & 0x3fffff]
- nextLru[lruPosition & 0x3fffff] = entry
- if (entry)
- entry.position = lruPosition | (expirationPriority << 24)
- nextLru.position = ++lruPosition
- if ((lruPosition & 0x3fffff) >= this.lruSize) {
- // reset at the beginning of the lru cache
- lruPosition &= 0x7fc00000
- nextLru.position = lruPosition
- nextLru.cycles++
- }
- entry = previousEntry
- if (entry && (nextLru = this.lru[--lruIndex])) {
- expirationPriority = ((entry.position || 0) >> 24) & 0x3f
- orMask = 0x3fffff >> (22 - expirationPriority)
- } else
- break
- } while (true)
- if (entry) {// this one was removed
- entry.position |= NOT_IN_LRU
- if (entry.cache)
- entry.cache.onRemove(entry)
- else if (entry.deref) // if we have already registered the entry in the finalization registry, just clear it
- entry.value = EXPIRED_ENTRY
- }
- }
- reset() {
- /* if (this.lru) {
- for (let i = 0; i < 4; i++) {
- for (let j = 0, l = this.lru.length; j < l; j++) {
- let entry = this.lru[i][j]
- if (entry) {// this one was removed
- entry.position |= NOT_IN_LRU
- if (entry.cache)
- entry.cache.onRemove(entry)
- else if (entry.deref) // if we have already registered the entry in the finalization registry, just clear it
- entry.value = EXPIRED_ENTRY
- }
- }
- }
- }*/
- this.lru = []
- for (let i = 0; i < 4; i++) {
- this.lru[i] = new Array(this.lruSize)
- this.lru[i].position = i << 22
- this.lru[i].cycles = 0
- }
- }
- cleanup() { // clean out a portion of the cache, so we can clean up over time if idle
- let toClear = this.lruSize >> 4 // 1/16 of the lru cache at a time
- for (let i = 3; i >= 0; i--) {
- let lru = this.lru[i]
- for (let j = 0, l = toClear; j < l; j++) {
- if (lru[lru.position & 0x3fffff]) {
- toClear--
- this.insertEntry(null, i, 0)
- } else {
- if ((++lru.position & 0x3fffff) >= this.lruSize) {
- // reset at the beginning of the lru cache
- lru.position &= 0x7fc00000
- lru.cycles++
- }
- }
- }
- }
- }
- }
- function startTimedCleanup(reference, cleanupInterval) {
- let interval = setInterval(() => {
- let expirer = reference.deref()
- if (expirer)
- expirer.cleanup()
- else
- clearInterval(interval)
- }, cleanupInterval)
- if (interval.unref)
- interval.unref()
- }
|