forked from mi-sec/lightmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLightMap.js
313 lines (277 loc) · 6.25 KB
/
LightMap.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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
/** ****************************************************************************************************
* File: LightMap.js
* Project: lightmap
* @author Nick Soggin <[email protected]> on 31-May-2018
*******************************************************************************************************/
'use strict';
const { version } = require( './package' );
/**
* LightMap
* @augments Map
*/
class LightMap extends Map
{
constructor( n )
{
super( n );
this.forEach(
( v, k ) => this.set( k, this[ Symbol.constructMapByPattern ]( v ) )
);
}
/**
* filter
* @description
* Filter LightMap based on keys and values based in.
* Comparisons can be made on the key and/or value.
* @param {Function} fn - comparing method
* @return {LightMap} - returns new LightMap with filtered results
* @example
* const _ = new LightMap();
* _.set( 'key', 'value' );
* _.set( 'key1', 'value1' );
*
* const result = _.filter(
* ( v, k ) => k === 'key'
* );
*
* // -> LightMap { 'key' => 'value' }
*/
filter( fn )
{
const arr = new LightMap();
for( const [ key, value ] of this[ Symbol.iterator ]() ) {
if( fn( value, key, this ) ) {
arr.set( key, value );
}
}
return arr;
}
/**
* map
* @description
* Map LightMap with new key and/or value.
* Return the new item in a "tuple" form matching the Map paradigm (`[ x, y ]`).
* @param {Function} fn - map method
* @return {LightMap} - returns new LightMap with mapped results
* @example
* const _ = new LightMap();
* _.set( 'key', 'value' );
*
* const result = _.map(
* ( v, k ) => [ k + 1, v + 1 ]
* );
*
* // -> LightMap { 'key1' => 'value1' }
*/
map( fn )
{
const arr = new LightMap();
for( const [ key, value ] of this[ Symbol.iterator ]() ) {
let entry = fn( value, key, this );
if( !entry ) {
entry = [ undefined, undefined ];
}
arr.set( entry[ 0 ] || key, entry[ 1 ] || value );
}
return arr;
}
/**
* reduce
* @description
* Reduce LightMap with new value.
* Must return the carriage value just like Array.reduce.
* @param {Function} fn - reducing method
* @param {*} r - carriage value
* @param {Iterator<LightMap>} iterator - `LightMap[ Symbol.iterator ]()`
* @return {*} - returns reduced result
* @example
* const _ = new LightMap();
* _.set( 'key', 'value' );
*
* const result = _.reduce(
* ( r, [ k, v ] ) => {
* r += `Key: ${ k }\n`;
* r += `Value: ${ v }\n`;
* return r;
* }, ''
* );
*
* // -> 'Key: key\nValue: value\n'
*/
reduce( fn, r, iterator = this[ Symbol.iterator ]() )
{
for( const [ key, value ] of iterator ) {
r = fn( r, [ key, value ], key, this );
}
return r;
}
/**
* sortKeys
* @description
* Map LightMap with sorted key-value pairs.
* @param {Function?} fn - sorting method
* @return {LightMap} - returns new LightMap with sorted results
* @example
* const _ = new LightMap();
* _.set( 'key2', 'value2' );
* _.set( 'key1', 'value1' );
* _.set( 'key', 'value' );
*
* const result = _.sortKeys();
*
* // -> LightMap { 'key' => 'value', 'key1' => 'value1', 'key2' => 'value2' }
*/
sortKeys( fn = ( a, b ) => String( a ).localeCompare( String( b ) ) )
{
const keys = [ ...this.keys() ].sort( fn );
let i = 0;
return this.map(
( v, k, iterator ) => {
const key = keys[ i++ ];
return [ key, iterator.get( key ) ];
}
);
}
/**
* sortValues
* @description
* Map LightMap with sorted key-value pairs sorted by value.
* @param {Function?} fn - sorting method
* @return {LightMap} - returns new LightMap with sorted results
* @example
* const _ = new LightMap();
* _.set( 'key', 'value2' );
* _.set( 'key1', 'value1' );
* _.set( 'key2', 'value' );
*
* const result = _.sortValues();
*
* // -> LightMap { 'key2' => 'value', 'key1' => 'value1', 'key' => 'value2' }
*/
sortValues( fn = ( a, b ) => String( a ).localeCompare( String( b ) ) ) {
const entries = [ ...this.entries() ].sort( ( a, b ) => fn( a[ 1 ], b[ 1 ] ) );
let i = 0;
return this.map(
() => {
const [ key, value ] = entries[ i++ ];
return [ key, value ];
}
);
}
/**
* version
* @description
* return LightMap module version
* @return {string} - returns LightMap module version
* @example
* LightMap.version();
*
* // -> v0.0.0
*/
static version()
{
return `v${ version }`;
}
/**
* mapToArray
* @description
* maps a LightMap object to an array of arrays in the Map Pattern (re-constructable pattern)
* @return {Array} - returns array of tuple key-value pairs
* @example
*
* const _ = new LightMap();
* _.set( 'key', new LightMap( [ [ 'key1', 'value1' ] ] ) );
*
* const result = _.mapToArray();
*
* // -> [ [ 'key', [ [ 'key1', 'value1' ] ] ] ]
*/
mapToArray()
{
return this.reduce(
( r, [ k, v ] ) => {
if( v instanceof LightMap ) {
v = v.toJSON();
}
r.push( [ k, v ] );
return r;
}, []
);
}
toJSON()
{
return this.mapToArray();
}
toString()
{
return JSON.stringify( this.mapToArray() );
}
indexOf( n )
{
let i = -1;
return this.reduce(
( r, [ k ] ) => {
if( r === -1 ) {
i++;
if( k === n ) {
r = i;
}
}
return r;
}, -1
);
}
// TODO::: [equals] get back to this
// equals( n )
// {
// if( n instanceof LightMap ) {
// if( this.size !== n ) {
// return false;
// }
// }
// return false;
// }
[ Symbol.constructMapByPattern ]( n )
{
return Array.isArray( n ) ?
n.filter( i => i.length === 2 ).length === n.length ?
Reflect.construct( LightMap, [ n ] ) :
n : n;
}
[ Symbol.search ]( n )
{
return this.indexOf( n );
}
[ Symbol.replace ]( n )
{
this.forEach(
( v, k ) => n = n.replace( k, v )
);
return n;
}
[ Symbol.toPrimitive ]( n )
{
if( n === 'string' ) {
return this.toString();
} else if( n === 'number' ) {
return +this.size;
} else if( n === 'boolean' ) {
return !!this;
} else {
return this.toString();
}
}
get [ Symbol.toStringTag ]()
{
return this.constructor.name;
}
static get [ Symbol.species ]()
{
return Map;
}
static [ Symbol.hasInstance ]( instance )
{
return instance.constructor.name === 'LightMap';
}
}
module.exports = LightMap;