-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.js
137 lines (134 loc) · 3.62 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import { LRFUExpirer, EXPIRED_ENTRY } from './LRFUExpirer.js'
export { LRFUExpirer } from './LRFUExpirer.js'
let defaultExpirer
export class WeakLRUCache extends Map {
constructor(options) {
super()
this.hits = 0
this.misses = 0
if (options && options.cacheSize) {
options.lruSize = options.cacheSize >> 2
}
if (options && options.clearKeptInterval) {
this.clearKeptInterval = options.clearKeptInterval
this.clearKeptCount = 0
this.clearKeptObjects = options.clearKeptObjects
}
this.expirer = (options ? options.expirer === false ? defaultNoLRUExpirer : options.expirer : null) || defaultExpirer || (defaultExpirer = new LRFUExpirer(options))
this.deferRegister = Boolean(options && options.deferRegister)
let registry = this.registry = new FinalizationRegistry(key => {
let entry = super.get(key)
if (entry && entry.deref && entry.deref() === undefined)
super.delete(key)
})
}
onRemove(entry) {
let target = entry.deref && entry.deref()
if (target) {
// remove strong reference, so only a weak reference, wait until it is finalized to remove
this.registry.register(target, entry.key)
entry.value = undefined
} else if (entry.key) {
let currentEntry = super.get(entry.key)
if (currentEntry === entry)
super.delete(entry.key)
}
}
get(key, mode) {
let entry = super.get(key)
let value
if (entry) {
this.hits++
value = entry.value
if (value === EXPIRED_ENTRY) {
value = entry.deref && entry.deref()
if (value === undefined)
super.delete(key)
else {
entry.value = value
if (this.clearKeptInterval)
this.incrementClearKeptCount()
if (mode !== 1)
this.expirer.used(entry)
return mode === 2 ? value : entry
}
}
else {
if (mode !== 1)
this.expirer.used(entry)
return mode === 2 ? value : entry
}
} else
this.misses++
}
getValue(key) {
return this.get(key, 2)
}
setValue(key, value, expirationPriority) {
let entry
if (value && typeof value == 'object') {
entry = new WeakRef(value)
if (this.clearKeptInterval)
this.incrementClearKeptCount()
entry.value = value
if (this.deferRegister) {
entry.key = key
entry.cache = this
} else
this.registry.register(value, key)
} else if (value !== undefined)
entry = { value, key, cache: this }
// else entry is undefined
this.set(key, entry, expirationPriority)
return entry
}
incrementClearKeptCount() {
if (++this.clearKeptCount >= this.clearKeptInterval) {
this.clearKeptCount = 0
if (this.clearKeptObjects)
this.clearKeptObjects()
if (this.registry.cleanupSome)
this.registry.cleanupSome()
}
}
set(key, entry, expirationPriority) {
let oldEntry = super.get(key)
if (oldEntry)
this.expirer.delete(oldEntry)
return this.insert(key, entry, expirationPriority)
}
insert(key, entry, expirationPriority) {
if (entry) {
this.expirer.used(entry, expirationPriority)
}
return super.set(key, entry)
}
delete(key) {
let oldEntry = super.get(key)
if (oldEntry) {
this.expirer.delete(oldEntry)
}
return super.delete(key)
}
used(entry, expirationPriority) {
this.expirer.used(entry, expirationPriority)
}
clear() {
for (let [ key, entry ] of this) {
this.expirer.delete(entry)
super.delete(key)
}
}
}
class NoLRUExpirer {
used(entry) {
if (entry.cache)
entry.cache.onRemove(entry)
else if (entry.deref) // if we have already registered the entry in the finalization registry, just mark it expired from the beginning
entry.value = EXPIRED_ENTRY
}
delete(entry) {
// nothing to do here, we don't have a separate cache here
}
}
const defaultNoLRUExpirer = new NoLRUExpirer()