-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathAPersistentMap.java
More file actions
502 lines (403 loc) · 9.66 KB
/
APersistentMap.java
File metadata and controls
502 lines (403 loc) · 9.66 KB
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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
/**
* Copyright (c) Rich Hickey. All rights reserved.
* The use and distribution terms for this software are covered by the
* Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
* which can be found in the file epl-v10.html at the root of this distribution.
* By using this software in any fashion, you are agreeing to be bound by
* the terms of this license.
* You must not remove this notice, or any other, from this software.
**/
package clojure.lang;
import java.io.Serializable;
import java.util.*;
public abstract class APersistentMap extends AFn implements IPersistentMap, Map, Iterable, Serializable, MapEquivalence, IHashEq {
private static final long serialVersionUID = 6736310834519110267L;
int _hash;
int _hasheq;
public String toString(){
return RT.printString(this);
}
public IPersistentCollection cons(Object o){
if(o instanceof Map.Entry)
{
Map.Entry e = (Map.Entry) o;
return assoc(e.getKey(), e.getValue());
}
else if(o instanceof IPersistentVector)
{
IPersistentVector v = (IPersistentVector) o;
if(v.count() != 2)
throw new IllegalArgumentException("Vector arg to map conj must be a pair");
return assoc(v.nth(0), v.nth(1));
}
IPersistentMap ret = this;
for(ISeq es = RT.seq(o); es != null; es = es.next())
{
Map.Entry e = (Map.Entry) es.first();
ret = ret.assoc(e.getKey(), e.getValue());
}
return ret;
}
public boolean equals(Object obj){
return mapEquals(this, obj);
}
static public boolean mapEquals(IPersistentMap m1, Object obj){
if(m1 == obj) return true;
if(!(obj instanceof Map))
return false;
Map m = (Map) obj;
if(m.size() != m1.count())
return false;
for(ISeq s = m1.seq(); s != null; s = s.next())
{
Map.Entry e = (Map.Entry) s.first();
boolean found = m.containsKey(e.getKey());
if(!found || !Util.equals(e.getValue(), m.get(e.getKey())))
return false;
}
return true;
}
public boolean equiv(Object obj){
if(!(obj instanceof Map))
return false;
if(obj instanceof IPersistentMap && !(obj instanceof MapEquivalence))
return false;
Map m = (Map) obj;
if(m.size() != size())
return false;
for(ISeq s = seq(); s != null; s = s.next())
{
Map.Entry e = (Map.Entry) s.first();
boolean found = m.containsKey(e.getKey());
if(!found || !Util.equiv(e.getValue(), m.get(e.getKey())))
return false;
}
return true;
}
public int hashCode(){
int cached = this._hash;
if(cached == 0)
{
this._hash = cached = mapHash(this);
}
return cached;
}
static public int mapHash(IPersistentMap m){
int hash = 0;
for(ISeq s = m.seq(); s != null; s = s.next())
{
Map.Entry e = (Map.Entry) s.first();
hash += (e.getKey() == null ? 0 : e.getKey().hashCode()) ^
(e.getValue() == null ? 0 : e.getValue().hashCode());
}
return hash;
}
public int hasheq(){
int cached = this._hasheq;
if(cached == 0)
{
//this._hasheq = mapHasheq(this);
this._hasheq = cached = Murmur3.hashUnordered(this);
}
return cached;
}
static public int mapHasheq(IPersistentMap m) {
return Murmur3.hashUnordered(m);
// int hash = 0;
// for(ISeq s = m.seq(); s != null; s = s.next())
// {
// Map.Entry e = (Map.Entry) s.first();
// hash += Util.hasheq(e.getKey()) ^
// Util.hasheq(e.getValue());
// }
// return hash;
}
static public class KeySeq extends ASeq{
final ISeq seq;
final Iterable iterable;
static public KeySeq create(ISeq seq){
if(seq == null)
return null;
return new KeySeq(seq, null);
}
static public KeySeq createFromMap(IPersistentMap map){
if(map == null)
return null;
ISeq seq = map.seq();
if(seq == null)
return null;
return new KeySeq(seq, map);
}
private KeySeq(ISeq seq, Iterable iterable){
this.seq = seq;
this.iterable = iterable;
}
private KeySeq(IPersistentMap meta, ISeq seq, Iterable iterable){
super(meta);
this.seq = seq;
this.iterable = iterable;
}
public Object first(){
return ((Map.Entry) seq.first()).getKey();
}
public ISeq next(){
return create(seq.next());
}
public KeySeq withMeta(IPersistentMap meta){
if(meta() == meta)
return this;
return new KeySeq(meta, seq, iterable);
}
public Iterator iterator(){
if(iterable == null)
return super.iterator();
if(iterable instanceof IMapIterable)
return ((IMapIterable)iterable).keyIterator();
final Iterator mapIter = iterable.iterator();
return new Iterator() {
public boolean hasNext() {
return mapIter.hasNext();
}
public Object next() {
return ((Map.Entry)mapIter.next()).getKey();
}
public void remove() {
throw new UnsupportedOperationException();
}
};
}
}
static public class ValSeq extends ASeq{
final ISeq seq;
final Iterable iterable;
static public ValSeq create(ISeq seq){
if(seq == null)
return null;
return new ValSeq(seq, null);
}
static public ValSeq createFromMap(IPersistentMap map) {
if(map == null)
return null;
ISeq seq = map.seq();
if(seq == null)
return null;
return new ValSeq(seq, map);
}
private ValSeq(ISeq seq, Iterable iterable){
this.seq = seq;
this.iterable = iterable;
}
private ValSeq(IPersistentMap meta, ISeq seq, Iterable iterable){
super(meta);
this.seq = seq;
this.iterable = iterable;
}
public Object first(){
return ((Map.Entry) seq.first()).getValue();
}
public ISeq next(){
return create(seq.next());
}
public ValSeq withMeta(IPersistentMap meta){
if(meta() == meta)
return this;
return new ValSeq(meta, seq, iterable);
}
public Iterator iterator(){
if(iterable == null)
return super.iterator();
if(iterable instanceof IMapIterable)
return ((IMapIterable)iterable).valIterator();
final Iterator mapIter = iterable.iterator();
return new Iterator() {
public boolean hasNext() {
return mapIter.hasNext();
}
public Object next() {
return ((Map.Entry)mapIter.next()).getValue();
}
public void remove() {
throw new UnsupportedOperationException();
}
};
}
}
static final IFn MAKE_ENTRY = new AFn() {
public Object invoke(Object key, Object val) {
return MapEntry.create(key, val);
}
};
static final IFn MAKE_KEY = new AFn() {
public Object invoke(Object key, Object val) {
return key;
}
};
static final IFn MAKE_VAL = new AFn() {
public Object invoke(Object key, Object val) {
return val;
}
};
public Object invoke(Object arg1) {
return valAt(arg1);
}
public Object invoke(Object arg1, Object notFound) {
return valAt(arg1, notFound);
}
// java.util.Map implementation
public void clear(){
throw new UnsupportedOperationException();
}
public boolean containsValue(Object value){
return values().contains(value);
}
public Set entrySet(){
return new AbstractSet(){
public Iterator iterator(){
return APersistentMap.this.iterator();
}
public int size(){
return count();
}
public int hashCode(){
return APersistentMap.this.hashCode();
}
public boolean contains(Object o){
if(o instanceof Entry)
{
Entry e = (Entry) o;
Entry found = entryAt(e.getKey());
if(found != null && Util.equals(found.getValue(), e.getValue()))
return true;
}
return false;
}
};
}
public Object get(Object key){
return valAt(key);
}
public boolean isEmpty(){
return count() == 0;
}
public Set keySet(){
return new AbstractSet(){
public Iterator iterator(){
final Iterator mi = APersistentMap.this.iterator();
return new Iterator(){
public boolean hasNext(){
return mi.hasNext();
}
public Object next(){
Entry e = (Entry) mi.next();
return e.getKey();
}
public void remove(){
throw new UnsupportedOperationException();
}
};
}
public int size(){
return count();
}
public boolean contains(Object o){
return APersistentMap.this.containsKey(o);
}
};
}
public Object put(Object key, Object value){
throw new UnsupportedOperationException();
}
public void putAll(Map t){
throw new UnsupportedOperationException();
}
public Object remove(Object key){
throw new UnsupportedOperationException();
}
public int size(){
return count();
}
public Collection values(){
return new AbstractCollection(){
public Iterator iterator(){
final Iterator mi = APersistentMap.this.iterator();
return new Iterator(){
public boolean hasNext(){
return mi.hasNext();
}
public Object next(){
Entry e = (Entry) mi.next();
return e.getValue();
}
public void remove(){
throw new UnsupportedOperationException();
}
};
}
public int size(){
return count();
}
};
}
/*
// java.util.Collection implementation
public Object[] toArray(){
return RT.seqToArray(seq());
}
public boolean add(Object o){
throw new UnsupportedOperationException();
}
public boolean remove(Object o){
throw new UnsupportedOperationException();
}
public boolean addAll(Collection c){
throw new UnsupportedOperationException();
}
public void clear(){
throw new UnsupportedOperationException();
}
public boolean retainAll(Collection c){
throw new UnsupportedOperationException();
}
public boolean removeAll(Collection c){
throw new UnsupportedOperationException();
}
public boolean containsAll(Collection c){
for(Object o : c)
{
if(!contains(o))
return false;
}
return true;
}
public Object[] toArray(Object[] a){
if(a.length >= count())
{
ISeq s = seq();
for(int i = 0; s != null; ++i, s = s.rest())
{
a[i] = s.first();
}
if(a.length > count())
a[count()] = null;
return a;
}
else
return toArray();
}
public int size(){
return count();
}
public boolean isEmpty(){
return count() == 0;
}
public boolean contains(Object o){
if(o instanceof Map.Entry)
{
Map.Entry e = (Map.Entry) o;
Map.Entry v = entryAt(e.getKey());
return (v != null && Util.equal(v.getValue(), e.getValue()));
}
return false;
}
*/
}