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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
module.metadata = {
"stability": "experimental"
};
"use strict";
const { Cu } = require("chrome");
function makeGetterFor(Type) {
let cache = new WeakMap();
return {
getFor(target) {
if (!cache.has(target))
cache.set(target, new Type());
return cache.get(target);
},
clearFor(target) {
return cache.delete(target)
}
}
}
var {getFor: getLookupFor, clearFor: clearLookupFor} = makeGetterFor(WeakMap);
var {getFor: getRefsFor, clearFor: clearRefsFor} = makeGetterFor(Set);
function add(target, value) {
if (has(target, value))
return;
getLookupFor(target).set(value, true);
getRefsFor(target).add(Cu.getWeakReference(value));
}
exports.add = add;
function remove(target, value) {
getLookupFor(target).delete(value);
}
exports.remove = remove;
function has(target, value) {
return getLookupFor(target).has(value);
}
exports.has = has;
function clear(target) {
clearLookupFor(target);
clearRefsFor(target);
}
exports.clear = clear;
function iterator(target) {
let refs = getRefsFor(target);
for (let ref of refs) {
let value = ref.get();
// If `value` is already gc'ed, it would be `null`.
// The `has` function is using a WeakMap as lookup table, so passing `null`
// would raise an exception because WeakMap accepts as value only non-null
// object.
// Plus, if `value` is already gc'ed, we do not have to take it in account
// during the iteration, and remove it from the references.
if (value !== null && has(target, value))
yield value;
else
refs.delete(ref);
}
}
exports.iterator = iterator;
|