-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
fuzzy-map.js
185 lines (155 loc) · 4.08 KB
/
fuzzy-map.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
/**
* Mnemonist Fuzzy Map
* ====================
*
* The fuzzy map is a map whose keys are processed by a function before
* read/write operations. This can often result in multiple keys accessing
* the same resource (example: a map with lowercased keys).
*/
var forEach = require('obliterator/foreach');
var identity = function(x) {
return x;
};
/**
* FuzzyMap.
*
* @constructor
* @param {array|function} descriptor - Hash functions descriptor.
*/
function FuzzyMap(descriptor) {
this.items = new Map();
this.clear();
if (Array.isArray(descriptor)) {
this.writeHashFunction = descriptor[0];
this.readHashFunction = descriptor[1];
}
else {
this.writeHashFunction = descriptor;
this.readHashFunction = descriptor;
}
if (!this.writeHashFunction)
this.writeHashFunction = identity;
if (!this.readHashFunction)
this.readHashFunction = identity;
if (typeof this.writeHashFunction !== 'function')
throw new Error('mnemonist/FuzzyMap.constructor: invalid hash function given.');
if (typeof this.readHashFunction !== 'function')
throw new Error('mnemonist/FuzzyMap.constructor: invalid hash function given.');
}
/**
* Method used to clear the structure.
*
* @return {undefined}
*/
FuzzyMap.prototype.clear = function() {
this.items.clear();
// Properties
this.size = 0;
};
/**
* Method used to add an item to the FuzzyMap.
*
* @param {any} item - Item to add.
* @return {FuzzyMap}
*/
FuzzyMap.prototype.add = function(item) {
var key = this.writeHashFunction(item);
this.items.set(key, item);
this.size = this.items.size;
return this;
};
/**
* Method used to set an item in the FuzzyMap using the given key.
*
* @param {any} key - Key to use.
* @param {any} item - Item to add.
* @return {FuzzyMap}
*/
FuzzyMap.prototype.set = function(key, item) {
key = this.writeHashFunction(key);
this.items.set(key, item);
this.size = this.items.size;
return this;
};
/**
* Method used to retrieve an item from the FuzzyMap.
*
* @param {any} key - Key to use.
* @return {any}
*/
FuzzyMap.prototype.get = function(key) {
key = this.readHashFunction(key);
return this.items.get(key);
};
/**
* Method used to test the existence of an item in the map.
*
* @param {any} key - Key to check.
* @return {boolean}
*/
FuzzyMap.prototype.has = function(key) {
key = this.readHashFunction(key);
return this.items.has(key);
};
/**
* Method used to iterate over each of the FuzzyMap's values.
*
* @param {function} callback - Function to call for each item.
* @param {object} scope - Optional scope.
* @return {undefined}
*/
FuzzyMap.prototype.forEach = function(callback, scope) {
scope = arguments.length > 1 ? scope : this;
this.items.forEach(function(value) {
callback.call(scope, value, value);
});
};
/**
* Method returning an iterator over the FuzzyMap's values.
*
* @return {FuzzyMapIterator}
*/
FuzzyMap.prototype.values = function() {
return this.items.values();
};
/**
* Attaching the #.values method to Symbol.iterator if possible.
*/
if (typeof Symbol !== 'undefined')
FuzzyMap.prototype[Symbol.iterator] = FuzzyMap.prototype.values;
/**
* Convenience known method.
*/
FuzzyMap.prototype.inspect = function() {
var array = Array.from(this.items.values());
Object.defineProperty(array, 'constructor', {
value: FuzzyMap,
enumerable: false
});
return array;
};
if (typeof Symbol !== 'undefined')
FuzzyMap.prototype[Symbol.for('nodejs.util.inspect.custom')] = FuzzyMap.prototype.inspect;
/**
* Static @.from function taking an arbitrary iterable & converting it into
* a structure.
*
* @param {Iterable} iterable - Target iterable.
* @param {array|function} descriptor - Hash functions descriptor.
* @param {boolean} useSet - Whether to use #.set or #.add
* @return {FuzzyMap}
*/
FuzzyMap.from = function(iterable, descriptor, useSet) {
var map = new FuzzyMap(descriptor);
forEach(iterable, function(value, key) {
if (useSet)
map.set(key, value);
else
map.add(value);
});
return map;
};
/**
* Exporting.
*/
module.exports = FuzzyMap;