summaryrefslogtreecommitdiff
path: root/js/src/Ice/HashMap.js
blob: b7314dd58be3fde6431c7c41e3d5c8d7554037fb (plain)
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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
// **********************************************************************
//
// Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************

var Ice = require("../Ice/ModuleRegistry").Ice;
var __M = Ice.__M;
__M.require(module, ["../Ice/Class", "../Ice/StringUtil"]);
var StringUtil = Ice.StringUtil;

function setInternal(map, key, value, hash, index)
{
    //
    // Search for an entry with the same key.
    //
    for(var e = map._table[index]; e !== null; e = e._nextInBucket)
    {
        if(e._hash === hash && map.keysEqual(key, e._key))
        {
            //
            // Found a match, update the value.
            //
            e._value = value;
            return undefined;
        }
    }

    //
    // No match found, add a new entry.
    //
    map.add(key, value, hash, index);
    return undefined;
}

function compareEquals(v1, v2)
{
    if(v1 === v2)
    {
        return true;
    }
    if(v1 === undefined || v1 === null || v2 === undefined || v2 === null)
    {
        return false;
    }
    return v1.equals(v2);
}

function compareIdentity(v1, v2)
{
    return v1 === v2;
}

var HashMap = Ice.Class({
    __init__: function(arg1, arg2)
    {
        //
        // The first argument can be a HashMap or the keyComparator, the second
        // argument if present is always the value comparator.
        // 
        var args = arguments;

        var h, keyComparator, valueComparator;

        if(typeof arg1 == "function")
        {
            keyComparator = arg1;
            valueComparator = arg2;
        }
        else if(arg1 instanceof HashMap)
        {
            h = arg1;
            keyComparator = h.keyComparator;
            valueComparator = h.valueComparator;
        }

        this._size = 0;
        this._head = null;
        this._initialCapacity = 32;
        this._loadFactor = 0.75;
        this._table = [];

        this._keyComparator = (typeof keyComparator == "function") ? keyComparator : compareIdentity;
        this._valueComparator = (typeof valueComparator == "function") ? valueComparator : compareIdentity;

        var i, length;
        if(h instanceof HashMap && h._size > 0)
        {
            this._threshold = h._threshold;
            length = h._table.length;
            this._table.length = length;
            for(i = 0; i < length; i++)
            {
                this._table[i] = null;
            }
            this.merge(h);
        }
        else
        {
            this._threshold = this._initialCapacity * this._loadFactor;
            for(i = 0; i < this._initialCapacity; i++)
            {
                this._table[i] = null;
            }
        }
    },
    set: function(key, value)
    {
        var hash = this.computeHash(key);

        var index = this.hashIndex(hash, this._table.length);

        return setInternal(this, key, value, hash, index);
    },
    get: function(key)
    {
        var e = this.findEntry(key, this.computeHash(key));
        return e !== undefined ? e._value : undefined;
    },
    has: function(key)
    {
        return this.findEntry(key, this.computeHash(key)) !== undefined;
    },
    delete: function(key)
    {
        var hash = this.computeHash(key);

        var index = this.hashIndex(hash, this._table.length);

        //
        // Search for an entry with the same key.
        //
        var prev = null;
        for(var e = this._table[index]; e !== null; e = e._nextInBucket)
        {
            if(e._hash === hash && this.keysEqual(key, e._key))
            {
                //
                // Found a match.
                //
                this._size--;

                //
                // Remove from bucket.
                //
                if(prev !== null)
                {
                    prev._nextInBucket = e._nextInBucket;
                }
                else
                {
                    this._table[index] = e._nextInBucket;
                }

                //
                // Unlink the entry.
                //
                if(e._prev !== null)
                {
                    e._prev._next = e._next;
                }
                if(e._next !== null)
                {
                    e._next._prev = e._prev;
                }

                if(this._head === e)
                {
                    this._head = e._next;
                }

                return e._value;
            }

            prev = e;
        }

        return undefined;
    },
    clear: function()
    {
        for(var i = 0; i < this._table.length; ++i)
        {
            this._table[i] = null;
        }
        this._head = null;
        this._size = 0;
    },
    forEach: function(fn, obj)
    {
        obj = obj === undefined ? fn : obj;
        for(var e = this._head; e !== null; e = e._next)
        {
            fn.call(obj, e._key, e._value);
        }
    },
    equals: function(other, valuesEqual)
    {
        if(other === null || !(other instanceof HashMap) || this._size !== other._size)
        {
            return false;
        }

        var self = this;
        var eq = valuesEqual || function(v1, v2)
            {
                return self._valueComparator.call(self._valueComparator, v1, v2);
            };
        
        for(var e = this._head; e !== null; e = e._next)
        {
            var oe = other.findEntry(e._key, e._hash);
            if(oe === undefined || !eq(e._value, oe._value))
            {
                return false;
            }
        }

        return true;
    },
    clone: function()
    {
        return new HashMap(this);
    },
    merge: function(from)
    {
        for(var e = from._head; e !== null; e = e._next)
        {
            setInternal(this, e._key, e._value, e._hash, this.hashIndex(e._hash, this._table.length));
        }
    },
    add: function(key, value, hash, index)
    {
        //
        // Create a new table entry.
        //
        /*
        var e =
        {
            key: key,
            value: value,
            prev: null,
            next: null,
            _hash: hash
        }
        */
        var e = Object.create(null, {
            "key": {
                enumerable: true,
                get: function() { return this._key; }
            },
            "value": {
                enumerable: true,
                get: function() { return this._value; }
            },
            "next": {
                enumerable: true,
                get: function() { return this._next; }
            },
            "_key": {
                enumerable: false,
                writable: true,
                value: key
            },
            "_value": {
                enumerable: false,
                writable: true,
                value: value
            },
            "_prev": {
                enumerable: false,
                writable: true,
                value: null
            },
            "_next": {
                enumerable: false,
                writable: true,
                value: null
            },
            "_nextInBucket": {
                enumerable: false,
                writable: true,
                value: null
            },
            "_hash": {
                enumerable: false,
                writable: true,
                value: hash
            }
        });
        e._nextInBucket = this._table[index];
        this._table[index] = e;

        e._next = this._head;
        if(this._head !== null)
        {
            this._head._prev = e;
        }
        this._head = e;

        this._size++;
        if(this._size >= this._threshold)
        {
            this.resize(this._table.length * 2);
        }
    },
    resize: function(capacity)
    {
        var oldTable = this._table;

        var newTable = [];
        for(var i = 0; i < capacity; i++)
        {
            newTable[i] = null;
        }

        //
        // Re-assign all entries to buckets.
        //
        for(var e = this._head; e !== null; e = e._next)
        {
            var index = this.hashIndex(e._hash, capacity);
            e._nextInBucket = newTable[index];
            newTable[index] = e;
        }

        this._table = newTable;
        this._threshold = (capacity * this._loadFactor);
    },
    findEntry: function(key, hash)
    {
        var index = this.hashIndex(hash, this._table.length);
        //
        // Search for an entry with the same key.
        //
        for(var e = this._table[index]; e !== null; e = e._nextInBucket)
        {
            if(e._hash === hash && this.keysEqual(key, e._key))
            {
                return e;
            }
        }

        return undefined;
    },
    hashIndex: function(hash, len)
    {
        return hash & (len - 1);
    },
    computeHash: function(v)
    {
        if(typeof(v.hashCode) === "function")
        {
            return v.hashCode();
        }

        var hash = 0;
        var type = typeof(v);
        if(type === "string" || v instanceof String)
        {
            hash = StringUtil.hashCode(v);
        }
        else if(type === "number" || v instanceof Number)
        {
            hash = v.toFixed(0);
        }
        else if(type === "boolean" || v instanceof Boolean)
        {
            hash = v ? 1 : 0;
        }
        else if(v !== null)
        {
            throw "cannot compute hash for value of type " + type;
        }
        return hash;
    },
    keysEqual: function(k1, k2)
    {
        return this._keyComparator.call(this._keyComparator, k1, k2);
    }
});
Ice.HashMap = HashMap;

HashMap.compareEquals = compareEquals;
HashMap.compareIdentity = compareIdentity;

var prototype = HashMap.prototype;

Object.defineProperty(prototype, "size", {
    get: function() { return this._size; }
});

Object.defineProperty(prototype, "entries", {
    get: function() { return this._head; }
});

var Slice = Ice.Slice;
Slice.defineDictionary = function(module, name, helperName, keyHelper, valueHelper, fixed, keysEqual, valueType, valuesEqual)
{
    if(keysEqual !== undefined || valuesEqual !== undefined)
    {
        //
        // Define a constructor function for a dictionary whose key type requires
        // comparison using an equals() method instead of the native comparison
        // operators.
        //
        module[name] = function(h)
        {
            return new HashMap(h || keysEqual, valuesEqual);
        };
    }
    else
    {
        module[name] = HashMap;
    }

    var helper = null;
    Object.defineProperty(module, helperName,
    {
        get: function()
            {
                if(helper === null)
                {
                    /*jshint -W061 */
                    helper = Ice.StreamHelpers.generateDictHelper(__M.type(keyHelper), __M.type(valueHelper), fixed, 
                                                                  __M.type(valueType), module[name]);
                    /*jshint +W061 */
                }
                return helper;
            }
    });
};
module.exports.Ice = Ice;