-
Notifications
You must be signed in to change notification settings - Fork 0
/
WeakWeakMap.mjs
156 lines (156 loc) · 5.01 KB
/
WeakWeakMap.mjs
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/*
* 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 https://mozilla.org/MPL/2.0/.
*/
/**
* @file
* This is generated code. Do not edit.
*
* Generator: https://github.com/ajvincent/composite-collection/
* Template: Weak/Map
* @license MPL-2.0
* @author Alexander J. Vincent <ajvincent@gmail.com>
* @copyright © 2021-2022 Alexander J. Vincent
*/
import WeakKeyComposer from "./keys/Composite.mjs";
class WeakWeakMap {
// eslint-disable-next-line jsdoc/require-property
/** @typedef {object} WeakKey */
/** @type {WeakKeyComposer} @constant */
#keyComposer = new WeakKeyComposer(["key1", "key2"], []);
/**
* The root map holding weak composite keys and values.
*
* @type {WeakMap<WeakKey, *>}
* @constant
*/
#root = new WeakMap;
constructor(iterable) {
if (iterable) {
for (const [key1, key2, value] of iterable) {
this.set(key1, key2, value);
}
}
}
/**
* Delete an element from the collection by the given key sequence.
*
* @param {object} key1 The first key.
* @param {object} key2 The second key.
* @returns {boolean} True if we found the value and deleted it.
* @public
*/
delete(key1, key2) {
this.#requireValidKey(key1, key2);
const __key__ = this.#keyComposer.getKeyIfExists([key1, key2], []);
if (!__key__)
return false;
this.#keyComposer.deleteKey([key1, key2], []);
return this.#root.delete(__key__);
}
/**
* Get a value for a key set.
*
* @param {object} key1 The first key.
* @param {object} key2 The second key.
* @returns {*?} The value. Undefined if it isn't in the collection.
* @public
*/
get(key1, key2) {
this.#requireValidKey(key1, key2);
const __key__ = this.#keyComposer.getKeyIfExists([key1, key2], []);
return __key__ ? this.#root.get(__key__) : undefined;
}
/**
* Provide a default value for .getDefault().
*
* @callback __WeakWeakMap_GetDefaultCallback__
* @returns {*} The value.
*/
/**
* Guarantee a value for a key set.
*
* @param {object} key1 The first key.
* @param {object} key2 The second key.
* @param {__WeakWeakMap_GetDefaultCallback__} __default__ A function to provide a default value if necessary.
* @returns {*} The value.
* @public
*/
getDefault(key1, key2, __default__) {
this.#requireValidKey(key1, key2);
const __key__ = this.#keyComposer.getKey([key1, key2], []);
if (this.#root.has(__key__))
return this.#root.get(__key__);
const value = __default__();
this.#root.set(__key__, value);
return value;
}
/**
* Report if the collection has a value for a key set.
*
* @param {object} key1 The first key.
* @param {object} key2 The second key.
* @returns {boolean} True if the key set refers to a value in the collection.
* @public
*/
has(key1, key2) {
this.#requireValidKey(key1, key2);
const __key__ = this.#keyComposer.getKeyIfExists([key1, key2], []);
return __key__ ? this.#root.has(__key__) : false;
}
/**
* Determine if a set of keys is valid.
*
* @param {object} key1 The first key.
* @param {object} key2 The second key.
* @returns {boolean} True if the validation passes, false if it doesn't.
* @public
*/
isValidKey(key1, key2) {
return this.#isValidKey(key1, key2);
}
/**
* Set a value for a key set.
*
* @param {object} key1 The first key.
* @param {object} key2 The second key.
* @param {*} value The value.
* @returns {WeakWeakMap} This collection.
* @public
*/
set(key1, key2, value) {
this.#requireValidKey(key1, key2);
const __key__ = this.#keyComposer.getKey([key1, key2], []);
this.#root.set(__key__, value);
return this;
}
/**
* Throw if the key set is not valid.
*
* @param {object} key1 The first key.
* @param {object} key2 The second key.
* @throws for an invalid key set.
*/
#requireValidKey(key1, key2) {
if (!this.#isValidKey(key1, key2))
throw new Error("The ordered key set is not valid!");
}
/**
* Determine if a set of keys is valid.
*
* @param {object} key1 The first key.
* @param {object} key2 The second key.
* @returns {boolean} True if the validation passes, false if it doesn't.
*/
#isValidKey(key1, key2) {
if (!this.#keyComposer.isValidForKey([key1, key2], []))
return false;
return true;
}
[Symbol.toStringTag] = "WeakWeakMap";
}
Object.freeze(WeakWeakMap);
Object.freeze(WeakWeakMap.prototype);
export default WeakWeakMap;
//# sourceMappingURL=WeakWeakMap.mjs.map