-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathJavaProxySet.java
More file actions
599 lines (531 loc) · 19.5 KB
/
Copy pathJavaProxySet.java
File metadata and controls
599 lines (531 loc) · 19.5 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
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
package org.python.core;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.Iterator;
import java.util.NavigableSet;
import java.util.NoSuchElementException;
import java.util.Set;
/**
* Proxy objects implementing java.util.Set
*/
class JavaProxySet {
@Untraversable
private static class SetMethod extends PyBuiltinMethodNarrow {
protected SetMethod(String name, int numArgs) {
super(name, numArgs);
}
protected SetMethod(String name, int minArgs, int maxArgs) {
super(name, minArgs, maxArgs);
}
@SuppressWarnings("unchecked")
protected Set<Object> asSet() {
return (Set<Object>) self.getJavaProxy();
}
// Unlike list and dict, set maintains the derived type for the set
// so we replicate this behavior
protected PyObject makePySet(Set newSet) {
PyObject newPySet = self.getType().__call__();
@SuppressWarnings("unchecked")
Set<Object> jSet = ((Set<Object>) newPySet.getJavaProxy());
jSet.addAll(newSet);
return newPySet;
}
public boolean isEqual(PyObject other) {
Set<Object> selfSet = asSet();
Object oj = other.getJavaProxy();
if (oj != null && oj instanceof Set) {
@SuppressWarnings("unchecked")
Set<Object> otherSet = (Set<Object>) oj;
if (selfSet.size() != otherSet.size()) {
return false;
}
return selfSet.containsAll(otherSet);
} else if (isPySet(other)) {
Set<PyObject> otherPySet = ((BaseSet) other).getSet();
if (selfSet.size() != otherPySet.size()) {
return false;
}
for (PyObject pyobj : otherPySet) {
if (!selfSet.contains(pyobj.__tojava__(Object.class))) {
return false;
}
}
return true;
}
return false;
}
public boolean isSuperset(PyObject other) {
Set<Object> selfSet = asSet();
Object oj = other.getJavaProxy();
if (oj != null && oj instanceof Set) {
Set otherSet = (Set) oj;
return selfSet.containsAll(otherSet);
} else if (isPySet(other)) {
Set<PyObject> otherPySet = ((BaseSet) other).getSet();
for (PyObject pyobj : otherPySet) {
if (!selfSet.contains(pyobj.__tojava__(Object.class))) {
return false;
}
}
return true;
}
return false;
}
public boolean isSubset(PyObject other) {
Set<Object> selfSet = asSet();
Object oj = other.getJavaProxy();
if (oj != null && oj instanceof Set) {
@SuppressWarnings("unchecked")
Set<Object> otherSet = (Set<Object>) oj;
return otherSet.containsAll(selfSet);
} else if (isPySet(other)) {
Set<PyObject> otherPySet = ((BaseSet) other).getSet();
for (Object obj : selfSet) {
if (!otherPySet.contains(Py.java2py(obj))) {
return false;
}
}
return true;
}
return false;
}
protected Set difference(Collection<Object> other) {
Set<Object> selfSet = asSet();
Set<Object> diff = new HashSet<>(selfSet);
diff.removeAll(other);
return diff;
}
protected void differenceUpdate(Collection other) {
asSet().removeAll(other);
}
protected Set intersect(Collection[] others) {
Set<Object> selfSet = asSet();
Set<Object> intersection = new HashSet<>(selfSet);
for (Collection other : others) {
intersection.retainAll(other);
}
return intersection;
}
protected void intersectUpdate(Collection[] others) {
Set<Object> selfSet = asSet();
for (Collection other : others) {
selfSet.retainAll(other);
}
}
protected Set union(Collection<Object> other) {
Set<Object> selfSet = asSet();
Set<Object> u = new HashSet<>(selfSet);
u.addAll(other);
return u;
}
protected void update(Collection<Object> other) {
asSet().addAll(other);
}
protected Set symDiff(Collection<Object> other) {
Set<Object> selfSet = asSet();
Set<Object> symDiff = new HashSet<>(selfSet);
symDiff.addAll(other);
Set<Object> intersection = new HashSet<>(selfSet);
intersection.retainAll(other);
symDiff.removeAll(intersection);
return symDiff;
}
protected void symDiffUpdate(Collection<Object> other) {
Set<Object> selfSet = asSet();
Set<Object> intersection = new HashSet<>(selfSet);
intersection.retainAll(other);
selfSet.addAll(other);
selfSet.removeAll(intersection);
}
}
@Untraversable
private static class SetMethodVarargs extends SetMethod {
protected SetMethodVarargs(String name) {
super(name, 0, -1);
}
public PyObject __call__() {
return __call__(Py.EmptyObjects);
}
public PyObject __call__(PyObject obj) {
return __call__(new PyObject[]{obj});
}
public PyObject __call__(PyObject obj1, PyObject obj2) {
return __call__(new PyObject[]{obj1, obj2});
}
public PyObject __call__(PyObject obj1, PyObject obj2, PyObject obj3) {
return __call__(new PyObject[]{obj1, obj2, obj3});
}
public PyObject __call__(PyObject obj1, PyObject obj2, PyObject obj3, PyObject obj4) {
return __call__(new PyObject[]{obj1, obj2, obj3, obj4});
}
}
private static boolean isPySet(PyObject obj) {
PyType type = obj.getType();
return type.isSubType(PySet.TYPE) || type.isSubType(PyFrozenSet.TYPE);
}
private static Collection<Object> getJavaSet(PyObject self, String op, PyObject obj) {
Collection<Object> items;
if (isPySet(obj)) {
Set<PyObject> otherPySet = ((BaseSet)obj).getSet();
items = new ArrayList<>(otherPySet.size());
for (PyObject pyobj : otherPySet) {
items.add(pyobj.__tojava__(Object.class));
}
} else {
Object oj = obj.getJavaProxy();
if (oj instanceof Set) {
@SuppressWarnings("unchecked")
Set<Object> jSet = (Set<Object>) oj;
items = jSet;
} else {
throw Py.TypeError(String.format(
"unsupported operand type(s) for %s: '%.200s' and '%.200s'",
op, self.getType().fastGetName(), obj.getType().fastGetName()));
}
}
return items;
}
private static Collection<Object> getJavaCollection(PyObject obj) {
Collection<Object> items;
Object oj = obj.getJavaProxy();
if (oj != null) {
if (oj instanceof Collection) {
@SuppressWarnings("unchecked")
Collection<Object> jCollection = (Collection<Object>) oj;
items = jCollection;
} else if (oj instanceof Iterable) {
items = new HashSet<>();
for (Object item: (Iterable) oj) {
items.add(item);
}
} else {
throw Py.TypeError(String.format("unsupported operand type(s): '%.200s'",
obj.getType().fastGetName()));
}
} else {
// This step verifies objects are hashable
items = new HashSet<>();
for (PyObject pyobj : obj.asIterable()) {
items.add(pyobj.__tojava__(Object.class));
}
}
return items;
}
private static Collection<Object>[] getJavaCollections(PyObject[] objs) {
Collection[] collections = new Collection[objs.length];
int i = 0;
for (PyObject obj : objs) {
collections[i++] = getJavaCollection(obj);
}
return collections;
}
private static Collection<Object> getCombinedJavaCollections(PyObject[] objs) {
if (objs.length == 0) {
return Collections.emptyList();
}
if (objs.length == 1) {
return getJavaCollection(objs[0]);
}
Set<Object> items = new HashSet<>();
for (PyObject obj : objs) {
Object oj = obj.getJavaProxy();
if (oj != null) {
if (oj instanceof Iterable) {
for (Object item : (Iterable) oj) {
items.add(item);
}
} else {
throw Py.TypeError(String.format("unsupported operand type(s): '%.200s'",
obj.getType().fastGetName()));
}
} else {
for (PyObject pyobj : obj.asIterable()) {
items.add(pyobj.__tojava__(Object.class));
}
}
}
return items;
}
private static final SetMethod cmpProxy = new SetMethod("__cmp__", 1) {
@Override
public PyObject __call__(PyObject value) {
throw Py.TypeError("cannot compare sets using cmp()");
}
};
private static final SetMethod eqProxy = new SetMethod("__eq__", 1) {
@Override
public PyObject __call__(PyObject other) {
return Py.newBoolean(isEqual(other));
}
};
private static final SetMethod ltProxy = new SetMethod("__lt__", 1) {
@Override
public PyObject __call__(PyObject other) {
return Py.newBoolean(!isEqual(other) && isSubset(other));
}
};
@Untraversable
private static class IsSubsetMethod extends SetMethod {
// __le__, issubset
protected IsSubsetMethod(String name) {
super(name, 1);
}
@Override
public PyObject __call__(PyObject other) {
return Py.newBoolean(isSubset(other));
}
}
@Untraversable
private static class IsSupersetMethod extends SetMethod {
// __ge__, issuperset
protected IsSupersetMethod(String name) {
super(name, 1);
}
@Override
public PyObject __call__(PyObject other) {
return Py.newBoolean(isSuperset(other));
}
}
private static final SetMethod gtProxy = new SetMethod("__gt__", 1) {
@Override
public PyObject __call__(PyObject other) {
return Py.newBoolean(!isEqual(other) && isSuperset(other));
}
};
private static final SetMethod isDisjointProxy = new SetMethod("isdisjoint", 1) {
@Override
public PyObject __call__(PyObject other) {
return Py.newBoolean(intersect(new Collection[]{getJavaCollection(other)}).size() == 0);
}
};
private static final SetMethod differenceProxy = new SetMethodVarargs("difference") {
@Override
public PyObject __call__(PyObject[] others) {
return makePySet(difference(getCombinedJavaCollections(others)));
}
};
private static final SetMethod differenceUpdateProxy = new SetMethodVarargs("difference_update") {
@Override
public PyObject __call__(PyObject[] others) {
differenceUpdate(getCombinedJavaCollections(others));
return Py.None;
}
};
private static final SetMethod subProxy = new SetMethod("__sub__", 1) {
@Override
public PyObject __call__(PyObject other) {
return makePySet(difference(getJavaSet(self, "-", other)));
}
};
private static final SetMethod isubProxy = new SetMethod("__isub__", 1) {
@Override
public PyObject __call__(PyObject other) {
differenceUpdate(getJavaSet(self, "-=", other));
return self;
}
};
private static final SetMethod intersectionProxy = new SetMethodVarargs("intersection") {
@Override
public PyObject __call__(PyObject[] others) {
return makePySet(intersect(getJavaCollections(others)));
}
};
private static final SetMethod intersectionUpdateProxy = new SetMethodVarargs("intersection_update") {
@Override
public PyObject __call__(PyObject[] others) {
intersectUpdate(getJavaCollections(others));
return Py.None;
}
};
private static final SetMethod andProxy = new SetMethod("__and__", 1) {
@Override
public PyObject __call__(PyObject other) {
return makePySet(intersect(new Collection[]{getJavaSet(self, "&", other)}));
}
};
private static final SetMethod iandProxy = new SetMethod("__iand__", 1) {
@Override
public PyObject __call__(PyObject other) {
intersectUpdate(new Collection[]{getJavaSet(self, "&=", other)});
return self;
}
};
private static final SetMethod symDiffProxy = new SetMethod("symmetric_difference", 1) {
@Override
public PyObject __call__(PyObject other) {
return makePySet(symDiff(getJavaCollection(other)));
}
};
private static final SetMethod symDiffUpdateProxy = new SetMethod("symmetric_difference_update", 1) {
@Override
public PyObject __call__(PyObject other) {
symDiffUpdate(getJavaCollection(other));
return Py.None;
}
};
private static final SetMethod xorProxy = new SetMethod("__xor__", 1) {
@Override
public PyObject __call__(PyObject other) {
return makePySet(symDiff(getJavaSet(self, "^", other)));
}
};
private static final SetMethod ixorProxy = new SetMethod("__ixor__", 1) {
@Override
public PyObject __call__(PyObject other) {
symDiffUpdate(getJavaSet(self, "^=", other));
return self;
}
};
private static final SetMethod unionProxy = new SetMethodVarargs("union") {
@Override
public PyObject __call__(PyObject[] others) {
return makePySet(union(getCombinedJavaCollections(others)));
}
};
private static final SetMethod updateProxy = new SetMethodVarargs("update") {
@Override
public PyObject __call__(PyObject[] others) {
update(getCombinedJavaCollections(others));
return Py.None;
}
};
private static final SetMethod orProxy = new SetMethod("__or__", 1) {
@Override
public PyObject __call__(PyObject other) {
return makePySet(union(getJavaSet(self, "|", other)));
}
};
private static final SetMethod iorProxy = new SetMethod("__ior__", 1) {
@Override
public PyObject __call__(PyObject other) {
update(getJavaSet(self, "|=", other));
return self;
}
};
@Untraversable
private static class CopyMethod extends SetMethod {
protected CopyMethod(String name) {
super(name, 0);
}
@Override
public PyObject __call__() {
return makePySet(asSet());
}
}
private static final SetMethod deepcopyOverrideProxy = new SetMethod("__deepcopy__", 1) {
@Override
public PyObject __call__(PyObject memo) {
Set<Object> newSet = new HashSet<>();
for (Object obj : asSet()) {
PyObject pyobj = Py.java2py(obj);
PyObject newobj = pyobj.invoke("__deepcopy__", memo);
newSet.add(newobj.__tojava__(Object.class));
}
return makePySet(newSet);
}
};
private static final SetMethod reduceProxy = new SetMethod("__reduce__", 0) {
@Override
public PyObject __call__() {
PyObject args = new PyTuple(new PyList(new JavaIterator(asSet())));
PyObject dict = __findattr__("__dict__");
if (dict == null) {
dict = Py.None;
}
return new PyTuple(self.getType(), args, dict);
}
};
private static final SetMethod containsProxy = new SetMethod("__contains__", 1) {
@Override
public PyObject __call__(PyObject value) {
return Py.newBoolean(asSet().contains(value.__tojava__(Object.class)));
}
};
private static final SetMethod hashProxy = new SetMethod("__hash__", 0) {
// in general, we don't know if this is really true or not
@Override
public PyObject __call__(PyObject value) {
throw Py.TypeError(String.format("unhashable type: '%.200s'", self.getType().fastGetName()));
}
};
private static final SetMethod discardProxy = new SetMethod("discard", 1) {
@Override
public PyObject __call__(PyObject value) {
asSet().remove(value.__tojava__(Object.class));
return Py.None;
}
};
private static final SetMethod popProxy = new SetMethod("pop", 0) {
@Override
public PyObject __call__() {
Set selfSet = asSet();
Iterator it;
if (selfSet instanceof NavigableSet) {
it = ((NavigableSet) selfSet).descendingIterator();
} else {
it = selfSet.iterator();
}
try {
PyObject value = Py.java2py(it.next());
it.remove();
return value;
} catch (NoSuchElementException ex) {
throw Py.KeyError("pop from an empty set");
}
}
};
private static final SetMethod removeOverrideProxy = new SetMethod("remove", 1) {
@Override
public PyObject __call__(PyObject value) {
boolean removed = asSet().remove(value.__tojava__(Object.class));
if (!removed) {
throw Py.KeyError(value);
}
return Py.None;
}
};
static PyBuiltinMethod[] getProxyMethods() {
return new PyBuiltinMethod[]{
cmpProxy,
eqProxy,
ltProxy,
new IsSubsetMethod("__le__"),
new IsSubsetMethod("issubset"),
new IsSupersetMethod("__ge__"),
new IsSupersetMethod("issuperset"),
gtProxy,
isDisjointProxy,
differenceProxy,
differenceUpdateProxy,
subProxy,
isubProxy,
intersectionProxy,
intersectionUpdateProxy,
andProxy,
iandProxy,
symDiffProxy,
symDiffUpdateProxy,
xorProxy,
ixorProxy,
unionProxy,
updateProxy,
orProxy,
iorProxy,
new CopyMethod("copy"),
new CopyMethod("__copy__"),
reduceProxy,
containsProxy,
hashProxy,
discardProxy,
popProxy
};
}
static PyBuiltinMethod[] getPostProxyMethods() {
return new PyBuiltinMethod[]{
deepcopyOverrideProxy,
removeOverrideProxy
};
}
}