-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathPyBuiltinMethodSet.java
More file actions
72 lines (60 loc) · 2.05 KB
/
PyBuiltinMethodSet.java
File metadata and controls
72 lines (60 loc) · 2.05 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
/* Copyright (c) Jython Developers */
package org.python.core;
public class PyBuiltinMethodSet extends PyBuiltinFunctionSet implements Cloneable, Traverseproc {
private Class<?> type;
protected PyObject __self__ = Py.None;
public PyBuiltinMethodSet(String name, int index, int minargs, int maxargs, String doc,
Class<?> type) {
super(name, index, minargs, maxargs, doc);
this.type = type;
}
@Override
public PyObject __get__(PyObject obj, PyObject type) {
if (obj != null) {
if (this.type.isAssignableFrom(obj.getClass())) {
return bind(obj);
} else {
throw Py.TypeError(String.format("descriptor '%s' for '%s' objects doesn't apply "
+ "to '%s' object", info.getName(),
PyType.fromClass(this.type), obj.getType()));
}
}
return this;
}
@Override
public PyBuiltinCallable bind(PyObject bindTo) {
if (__self__ != Py.None) {
return this;
}
PyBuiltinMethodSet bindable;
try {
bindable = (PyBuiltinMethodSet)clone();
} catch (CloneNotSupportedException e) {
throw new RuntimeException("Didn't expect PyBuiltinMethodSet to throw "
+ "CloneNotSupported since it implements Cloneable", e);
}
bindable.__self__ = bindTo;
return bindable;
}
@Override
public PyObject getSelf() {
return __self__;
}
@Override
public boolean implementsDescrGet() {
return true;
}
@Override
public String toString() {
return String.format("<built-in method %s>", info.getName());
}
/* Traverseproc implementation */
@Override
public int traverse(Visitproc visit, Object arg) {
return visit.visit(__self__, arg);
}
@Override
public boolean refersDirectlyTo(PyObject ob) {
return ob == __self__;
}
}