Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 1 | /* Class object implementation (dead now except for methods) */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3 | #include "Python.h" |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 4 | #include "structmember.h" |
Guido van Rossum | 04691fc | 1992-08-12 15:35:34 +0000 | [diff] [blame] | 5 | |
Guido van Rossum | 3cf5b1e | 2006-07-27 21:53:35 +0000 | [diff] [blame] | 6 | #define TP_DESCR_GET(t) ((t)->tp_descr_get) |
Guido van Rossum | 915f0eb | 2001-10-17 20:26:38 +0000 | [diff] [blame] | 7 | |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 8 | /* Free list for method objects to safe malloc/free overhead |
| 9 | * The im_self element is used to chain the elements. |
| 10 | */ |
| 11 | static PyMethodObject *free_list; |
| 12 | static int numfree = 0; |
| 13 | #ifndef PyMethod_MAXFREELIST |
| 14 | #define PyMethod_MAXFREELIST 256 |
| 15 | #endif |
| 16 | |
Guido van Rossum | b479dc5 | 2001-09-05 22:52:50 +0000 | [diff] [blame] | 17 | PyObject * |
| 18 | PyMethod_Function(PyObject *im) |
| 19 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 20 | if (!PyMethod_Check(im)) { |
| 21 | PyErr_BadInternalCall(); |
| 22 | return NULL; |
| 23 | } |
| 24 | return ((PyMethodObject *)im)->im_func; |
Guido van Rossum | b479dc5 | 2001-09-05 22:52:50 +0000 | [diff] [blame] | 25 | } |
| 26 | |
| 27 | PyObject * |
| 28 | PyMethod_Self(PyObject *im) |
| 29 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 30 | if (!PyMethod_Check(im)) { |
| 31 | PyErr_BadInternalCall(); |
| 32 | return NULL; |
| 33 | } |
| 34 | return ((PyMethodObject *)im)->im_self; |
Guido van Rossum | b479dc5 | 2001-09-05 22:52:50 +0000 | [diff] [blame] | 35 | } |
| 36 | |
Christian Heimes | ff73795 | 2007-11-27 10:40:20 +0000 | [diff] [blame] | 37 | /* Method objects are used for bound instance methods returned by |
| 38 | instancename.methodname. ClassName.methodname returns an ordinary |
| 39 | function. |
Guido van Rossum | 81daa32 | 1993-05-20 14:24:46 +0000 | [diff] [blame] | 40 | */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 41 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 42 | PyObject * |
Christian Heimes | ff73795 | 2007-11-27 10:40:20 +0000 | [diff] [blame] | 43 | PyMethod_New(PyObject *func, PyObject *self) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 44 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 45 | register PyMethodObject *im; |
| 46 | if (self == NULL) { |
| 47 | PyErr_BadInternalCall(); |
| 48 | return NULL; |
| 49 | } |
| 50 | im = free_list; |
| 51 | if (im != NULL) { |
| 52 | free_list = (PyMethodObject *)(im->im_self); |
| 53 | PyObject_INIT(im, &PyMethod_Type); |
| 54 | numfree--; |
| 55 | } |
| 56 | else { |
| 57 | im = PyObject_GC_New(PyMethodObject, &PyMethod_Type); |
| 58 | if (im == NULL) |
| 59 | return NULL; |
| 60 | } |
| 61 | im->im_weakreflist = NULL; |
| 62 | Py_INCREF(func); |
| 63 | im->im_func = func; |
| 64 | Py_XINCREF(self); |
| 65 | im->im_self = self; |
| 66 | _PyObject_GC_TRACK(im); |
| 67 | return (PyObject *)im; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 68 | } |
| 69 | |
Guido van Rossum | f0b35e1 | 2001-09-18 03:53:24 +0000 | [diff] [blame] | 70 | /* Descriptors for PyMethod attributes */ |
| 71 | |
Christian Heimes | ff73795 | 2007-11-27 10:40:20 +0000 | [diff] [blame] | 72 | /* im_func and im_self are stored in the PyMethod object */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 73 | |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 74 | #define MO_OFF(x) offsetof(PyMethodObject, x) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 75 | |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 76 | static PyMemberDef method_memberlist[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 77 | {"__func__", T_OBJECT, MO_OFF(im_func), READONLY|RESTRICTED, |
| 78 | "the function (or other callable) implementing a method"}, |
| 79 | {"__self__", T_OBJECT, MO_OFF(im_self), READONLY|RESTRICTED, |
| 80 | "the instance to which a method is bound"}, |
| 81 | {NULL} /* Sentinel */ |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 82 | }; |
| 83 | |
Guido van Rossum | baf0f8f | 2003-11-22 23:55:50 +0000 | [diff] [blame] | 84 | /* Christian Tismer argued convincingly that method attributes should |
| 85 | (nearly) always override function attributes. |
| 86 | The one exception is __doc__; there's a default __doc__ which |
| 87 | should only be used for the class, not for instances */ |
| 88 | |
| 89 | static PyObject * |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 90 | method_get_doc(PyMethodObject *im, void *context) |
Guido van Rossum | baf0f8f | 2003-11-22 23:55:50 +0000 | [diff] [blame] | 91 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 92 | static PyObject *docstr; |
| 93 | if (docstr == NULL) { |
| 94 | docstr= PyUnicode_InternFromString("__doc__"); |
| 95 | if (docstr == NULL) |
| 96 | return NULL; |
| 97 | } |
| 98 | return PyObject_GetAttr(im->im_func, docstr); |
Guido van Rossum | baf0f8f | 2003-11-22 23:55:50 +0000 | [diff] [blame] | 99 | } |
| 100 | |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 101 | static PyGetSetDef method_getset[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 102 | {"__doc__", (getter)method_get_doc, NULL, NULL}, |
| 103 | {0} |
Guido van Rossum | baf0f8f | 2003-11-22 23:55:50 +0000 | [diff] [blame] | 104 | }; |
Guido van Rossum | f0b35e1 | 2001-09-18 03:53:24 +0000 | [diff] [blame] | 105 | |
| 106 | static PyObject * |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 107 | method_getattro(PyObject *obj, PyObject *name) |
Guido van Rossum | f0b35e1 | 2001-09-18 03:53:24 +0000 | [diff] [blame] | 108 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 109 | PyMethodObject *im = (PyMethodObject *)obj; |
| 110 | PyTypeObject *tp = obj->ob_type; |
| 111 | PyObject *descr = NULL; |
Guido van Rossum | f0b35e1 | 2001-09-18 03:53:24 +0000 | [diff] [blame] | 112 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 113 | { |
| 114 | if (tp->tp_dict == NULL) { |
| 115 | if (PyType_Ready(tp) < 0) |
| 116 | return NULL; |
| 117 | } |
| 118 | descr = _PyType_Lookup(tp, name); |
| 119 | } |
Guido van Rossum | f0b35e1 | 2001-09-18 03:53:24 +0000 | [diff] [blame] | 120 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 121 | if (descr != NULL) { |
| 122 | descrgetfunc f = TP_DESCR_GET(descr->ob_type); |
| 123 | if (f != NULL) |
| 124 | return f(descr, obj, (PyObject *)obj->ob_type); |
| 125 | else { |
| 126 | Py_INCREF(descr); |
| 127 | return descr; |
| 128 | } |
| 129 | } |
Guido van Rossum | f0b35e1 | 2001-09-18 03:53:24 +0000 | [diff] [blame] | 130 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 131 | return PyObject_GetAttr(im->im_func, name); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 132 | } |
| 133 | |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 134 | PyDoc_STRVAR(method_doc, |
Christian Heimes | ff73795 | 2007-11-27 10:40:20 +0000 | [diff] [blame] | 135 | "method(function, instance)\n\ |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 136 | \n\ |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 137 | Create a bound instance method object."); |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 138 | |
| 139 | static PyObject * |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 140 | method_new(PyTypeObject* type, PyObject* args, PyObject *kw) |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 141 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 142 | PyObject *func; |
| 143 | PyObject *self; |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 144 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 145 | if (!_PyArg_NoKeywords("method", kw)) |
| 146 | return NULL; |
| 147 | if (!PyArg_UnpackTuple(args, "method", 2, 2, |
| 148 | &func, &self)) |
| 149 | return NULL; |
| 150 | if (!PyCallable_Check(func)) { |
| 151 | PyErr_SetString(PyExc_TypeError, |
| 152 | "first argument must be callable"); |
| 153 | return NULL; |
| 154 | } |
| 155 | if (self == NULL || self == Py_None) { |
| 156 | PyErr_SetString(PyExc_TypeError, |
| 157 | "self must not be None"); |
| 158 | return NULL; |
| 159 | } |
Michael W. Hudson | e2749cb | 2005-03-30 16:32:10 +0000 | [diff] [blame] | 160 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 161 | return PyMethod_New(func, self); |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 162 | } |
| 163 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 164 | static void |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 165 | method_dealloc(register PyMethodObject *im) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 166 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 167 | _PyObject_GC_UNTRACK(im); |
| 168 | if (im->im_weakreflist != NULL) |
| 169 | PyObject_ClearWeakRefs((PyObject *)im); |
| 170 | Py_DECREF(im->im_func); |
| 171 | Py_XDECREF(im->im_self); |
| 172 | if (numfree < PyMethod_MAXFREELIST) { |
| 173 | im->im_self = (PyObject *)free_list; |
| 174 | free_list = im; |
| 175 | numfree++; |
| 176 | } |
| 177 | else { |
| 178 | PyObject_GC_Del(im); |
| 179 | } |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 180 | } |
| 181 | |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 182 | static PyObject * |
| 183 | method_richcompare(PyObject *self, PyObject *other, int op) |
Guido van Rossum | ebc8c51 | 1992-09-03 20:39:51 +0000 | [diff] [blame] | 184 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 185 | PyMethodObject *a, *b; |
| 186 | PyObject *res; |
| 187 | int eq; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 188 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 189 | if ((op != Py_EQ && op != Py_NE) || |
| 190 | !PyMethod_Check(self) || |
| 191 | !PyMethod_Check(other)) |
| 192 | { |
Brian Curtin | dfc80e3 | 2011-08-10 20:28:54 -0500 | [diff] [blame^] | 193 | Py_RETURN_NOTIMPLEMENTED; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 194 | } |
| 195 | a = (PyMethodObject *)self; |
| 196 | b = (PyMethodObject *)other; |
| 197 | eq = PyObject_RichCompareBool(a->im_func, b->im_func, Py_EQ); |
| 198 | if (eq == 1) { |
| 199 | if (a->im_self == NULL || b->im_self == NULL) |
| 200 | eq = a->im_self == b->im_self; |
| 201 | else |
| 202 | eq = PyObject_RichCompareBool(a->im_self, b->im_self, |
| 203 | Py_EQ); |
| 204 | } |
| 205 | if (eq < 0) |
| 206 | return NULL; |
| 207 | if (op == Py_EQ) |
| 208 | res = eq ? Py_True : Py_False; |
| 209 | else |
| 210 | res = eq ? Py_False : Py_True; |
| 211 | Py_INCREF(res); |
| 212 | return res; |
Guido van Rossum | ebc8c51 | 1992-09-03 20:39:51 +0000 | [diff] [blame] | 213 | } |
| 214 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 215 | static PyObject * |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 216 | method_repr(PyMethodObject *a) |
Guido van Rossum | 2583165 | 1993-05-19 14:50:45 +0000 | [diff] [blame] | 217 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 218 | PyObject *self = a->im_self; |
| 219 | PyObject *func = a->im_func; |
| 220 | PyObject *klass = (PyObject*)Py_TYPE(self); |
| 221 | PyObject *funcname = NULL ,*klassname = NULL, *result = NULL; |
| 222 | char *defname = "?"; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 223 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 224 | if (self == NULL) { |
| 225 | PyErr_BadInternalCall(); |
| 226 | return NULL; |
| 227 | } |
Christian Heimes | ff73795 | 2007-11-27 10:40:20 +0000 | [diff] [blame] | 228 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 229 | funcname = PyObject_GetAttrString(func, "__name__"); |
| 230 | if (funcname == NULL) { |
| 231 | if (!PyErr_ExceptionMatches(PyExc_AttributeError)) |
| 232 | return NULL; |
| 233 | PyErr_Clear(); |
| 234 | } |
| 235 | else if (!PyUnicode_Check(funcname)) { |
| 236 | Py_DECREF(funcname); |
| 237 | funcname = NULL; |
| 238 | } |
Christian Heimes | ff73795 | 2007-11-27 10:40:20 +0000 | [diff] [blame] | 239 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 240 | if (klass == NULL) |
| 241 | klassname = NULL; |
| 242 | else { |
| 243 | klassname = PyObject_GetAttrString(klass, "__name__"); |
| 244 | if (klassname == NULL) { |
| 245 | if (!PyErr_ExceptionMatches(PyExc_AttributeError)) |
| 246 | return NULL; |
| 247 | PyErr_Clear(); |
| 248 | } |
| 249 | else if (!PyUnicode_Check(klassname)) { |
| 250 | Py_DECREF(klassname); |
| 251 | klassname = NULL; |
| 252 | } |
| 253 | } |
Christian Heimes | ff73795 | 2007-11-27 10:40:20 +0000 | [diff] [blame] | 254 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 255 | /* XXX Shouldn't use repr()/%R here! */ |
| 256 | result = PyUnicode_FromFormat("<bound method %V.%V of %R>", |
| 257 | klassname, defname, |
| 258 | funcname, defname, self); |
Christian Heimes | ff73795 | 2007-11-27 10:40:20 +0000 | [diff] [blame] | 259 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 260 | Py_XDECREF(funcname); |
| 261 | Py_XDECREF(klassname); |
| 262 | return result; |
Guido van Rossum | 2583165 | 1993-05-19 14:50:45 +0000 | [diff] [blame] | 263 | } |
| 264 | |
Benjamin Peterson | 8f67d08 | 2010-10-17 20:54:53 +0000 | [diff] [blame] | 265 | static Py_hash_t |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 266 | method_hash(PyMethodObject *a) |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 267 | { |
Benjamin Peterson | 8f67d08 | 2010-10-17 20:54:53 +0000 | [diff] [blame] | 268 | Py_hash_t x, y; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 269 | if (a->im_self == NULL) |
| 270 | x = PyObject_Hash(Py_None); |
| 271 | else |
| 272 | x = PyObject_Hash(a->im_self); |
| 273 | if (x == -1) |
| 274 | return -1; |
| 275 | y = PyObject_Hash(a->im_func); |
| 276 | if (y == -1) |
| 277 | return -1; |
| 278 | x = x ^ y; |
| 279 | if (x == -1) |
| 280 | x = -2; |
| 281 | return x; |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 282 | } |
| 283 | |
Jeremy Hylton | 8caad49 | 2000-06-23 14:18:11 +0000 | [diff] [blame] | 284 | static int |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 285 | method_traverse(PyMethodObject *im, visitproc visit, void *arg) |
Jeremy Hylton | 8caad49 | 2000-06-23 14:18:11 +0000 | [diff] [blame] | 286 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 287 | Py_VISIT(im->im_func); |
| 288 | Py_VISIT(im->im_self); |
| 289 | return 0; |
Jeremy Hylton | 8caad49 | 2000-06-23 14:18:11 +0000 | [diff] [blame] | 290 | } |
| 291 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 292 | static PyObject * |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 293 | method_call(PyObject *func, PyObject *arg, PyObject *kw) |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 294 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 295 | PyObject *self = PyMethod_GET_SELF(func); |
| 296 | PyObject *result; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 297 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 298 | func = PyMethod_GET_FUNCTION(func); |
| 299 | if (self == NULL) { |
| 300 | PyErr_BadInternalCall(); |
| 301 | return NULL; |
| 302 | } |
| 303 | else { |
| 304 | Py_ssize_t argcount = PyTuple_Size(arg); |
| 305 | PyObject *newarg = PyTuple_New(argcount + 1); |
| 306 | int i; |
| 307 | if (newarg == NULL) |
| 308 | return NULL; |
| 309 | Py_INCREF(self); |
| 310 | PyTuple_SET_ITEM(newarg, 0, self); |
| 311 | for (i = 0; i < argcount; i++) { |
| 312 | PyObject *v = PyTuple_GET_ITEM(arg, i); |
| 313 | Py_XINCREF(v); |
| 314 | PyTuple_SET_ITEM(newarg, i+1, v); |
| 315 | } |
| 316 | arg = newarg; |
| 317 | } |
| 318 | result = PyObject_Call((PyObject *)func, arg, kw); |
| 319 | Py_DECREF(arg); |
| 320 | return result; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 321 | } |
| 322 | |
Guido van Rossum | 23cc2b4 | 2001-08-15 17:52:31 +0000 | [diff] [blame] | 323 | static PyObject * |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 324 | method_descr_get(PyObject *meth, PyObject *obj, PyObject *cls) |
Guido van Rossum | 23cc2b4 | 2001-08-15 17:52:31 +0000 | [diff] [blame] | 325 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 326 | /* Don't rebind an already bound method of a class that's not a base |
| 327 | class of cls. */ |
| 328 | if (PyMethod_GET_SELF(meth) != NULL) { |
| 329 | /* Already bound */ |
| 330 | Py_INCREF(meth); |
| 331 | return meth; |
| 332 | } |
| 333 | /* Bind it to obj */ |
| 334 | return PyMethod_New(PyMethod_GET_FUNCTION(meth), obj); |
Guido van Rossum | 23cc2b4 | 2001-08-15 17:52:31 +0000 | [diff] [blame] | 335 | } |
| 336 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 337 | PyTypeObject PyMethod_Type = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 338 | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
| 339 | "method", |
| 340 | sizeof(PyMethodObject), |
| 341 | 0, |
| 342 | (destructor)method_dealloc, /* tp_dealloc */ |
| 343 | 0, /* tp_print */ |
| 344 | 0, /* tp_getattr */ |
| 345 | 0, /* tp_setattr */ |
| 346 | 0, /* tp_reserved */ |
| 347 | (reprfunc)method_repr, /* tp_repr */ |
| 348 | 0, /* tp_as_number */ |
| 349 | 0, /* tp_as_sequence */ |
| 350 | 0, /* tp_as_mapping */ |
| 351 | (hashfunc)method_hash, /* tp_hash */ |
| 352 | method_call, /* tp_call */ |
| 353 | 0, /* tp_str */ |
| 354 | method_getattro, /* tp_getattro */ |
| 355 | PyObject_GenericSetAttr, /* tp_setattro */ |
| 356 | 0, /* tp_as_buffer */ |
| 357 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */ |
| 358 | method_doc, /* tp_doc */ |
| 359 | (traverseproc)method_traverse, /* tp_traverse */ |
| 360 | 0, /* tp_clear */ |
| 361 | method_richcompare, /* tp_richcompare */ |
| 362 | offsetof(PyMethodObject, im_weakreflist), /* tp_weaklistoffset */ |
| 363 | 0, /* tp_iter */ |
| 364 | 0, /* tp_iternext */ |
| 365 | 0, /* tp_methods */ |
| 366 | method_memberlist, /* tp_members */ |
| 367 | method_getset, /* tp_getset */ |
| 368 | 0, /* tp_base */ |
| 369 | 0, /* tp_dict */ |
| 370 | method_descr_get, /* tp_descr_get */ |
| 371 | 0, /* tp_descr_set */ |
| 372 | 0, /* tp_dictoffset */ |
| 373 | 0, /* tp_init */ |
| 374 | 0, /* tp_alloc */ |
| 375 | method_new, /* tp_new */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 376 | }; |
Guido van Rossum | a0d349f | 1997-08-05 02:06:53 +0000 | [diff] [blame] | 377 | |
| 378 | /* Clear out the free list */ |
| 379 | |
Christian Heimes | a156e09 | 2008-02-16 07:38:31 +0000 | [diff] [blame] | 380 | int |
| 381 | PyMethod_ClearFreeList(void) |
Guido van Rossum | a0d349f | 1997-08-05 02:06:53 +0000 | [diff] [blame] | 382 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 383 | int freelist_size = numfree; |
| 384 | |
| 385 | while (free_list) { |
| 386 | PyMethodObject *im = free_list; |
| 387 | free_list = (PyMethodObject *)(im->im_self); |
| 388 | PyObject_GC_Del(im); |
| 389 | numfree--; |
| 390 | } |
| 391 | assert(numfree == 0); |
| 392 | return freelist_size; |
Christian Heimes | a156e09 | 2008-02-16 07:38:31 +0000 | [diff] [blame] | 393 | } |
| 394 | |
| 395 | void |
| 396 | PyMethod_Fini(void) |
| 397 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 398 | (void)PyMethod_ClearFreeList(); |
Guido van Rossum | a0d349f | 1997-08-05 02:06:53 +0000 | [diff] [blame] | 399 | } |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 400 | |
| 401 | /* ------------------------------------------------------------------------ |
| 402 | * instance method |
| 403 | */ |
| 404 | |
| 405 | PyObject * |
| 406 | PyInstanceMethod_New(PyObject *func) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 407 | PyInstanceMethodObject *method; |
| 408 | method = PyObject_GC_New(PyInstanceMethodObject, |
| 409 | &PyInstanceMethod_Type); |
| 410 | if (method == NULL) return NULL; |
| 411 | Py_INCREF(func); |
| 412 | method->func = func; |
| 413 | _PyObject_GC_TRACK(method); |
| 414 | return (PyObject *)method; |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 415 | } |
| 416 | |
| 417 | PyObject * |
| 418 | PyInstanceMethod_Function(PyObject *im) |
| 419 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 420 | if (!PyInstanceMethod_Check(im)) { |
| 421 | PyErr_BadInternalCall(); |
| 422 | return NULL; |
| 423 | } |
| 424 | return PyInstanceMethod_GET_FUNCTION(im); |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 425 | } |
| 426 | |
| 427 | #define IMO_OFF(x) offsetof(PyInstanceMethodObject, x) |
| 428 | |
| 429 | static PyMemberDef instancemethod_memberlist[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 430 | {"__func__", T_OBJECT, IMO_OFF(func), READONLY|RESTRICTED, |
| 431 | "the function (or other callable) implementing a method"}, |
| 432 | {NULL} /* Sentinel */ |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 433 | }; |
| 434 | |
| 435 | static PyObject * |
| 436 | instancemethod_get_doc(PyObject *self, void *context) |
| 437 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 438 | static PyObject *docstr; |
| 439 | if (docstr == NULL) { |
| 440 | docstr = PyUnicode_InternFromString("__doc__"); |
| 441 | if (docstr == NULL) |
| 442 | return NULL; |
| 443 | } |
| 444 | return PyObject_GetAttr(PyInstanceMethod_GET_FUNCTION(self), docstr); |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 445 | } |
| 446 | |
| 447 | static PyGetSetDef instancemethod_getset[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 448 | {"__doc__", (getter)instancemethod_get_doc, NULL, NULL}, |
| 449 | {0} |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 450 | }; |
| 451 | |
| 452 | static PyObject * |
| 453 | instancemethod_getattro(PyObject *self, PyObject *name) |
| 454 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 455 | PyTypeObject *tp = self->ob_type; |
| 456 | PyObject *descr = NULL; |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 457 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 458 | if (tp->tp_dict == NULL) { |
| 459 | if (PyType_Ready(tp) < 0) |
| 460 | return NULL; |
| 461 | } |
| 462 | descr = _PyType_Lookup(tp, name); |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 463 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 464 | if (descr != NULL) { |
| 465 | descrgetfunc f = TP_DESCR_GET(descr->ob_type); |
| 466 | if (f != NULL) |
| 467 | return f(descr, self, (PyObject *)self->ob_type); |
| 468 | else { |
| 469 | Py_INCREF(descr); |
| 470 | return descr; |
| 471 | } |
| 472 | } |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 473 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 474 | return PyObject_GetAttr(PyInstanceMethod_GET_FUNCTION(self), name); |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 475 | } |
| 476 | |
| 477 | static void |
| 478 | instancemethod_dealloc(PyObject *self) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 479 | _PyObject_GC_UNTRACK(self); |
| 480 | Py_DECREF(PyInstanceMethod_GET_FUNCTION(self)); |
| 481 | PyObject_GC_Del(self); |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 482 | } |
| 483 | |
| 484 | static int |
| 485 | instancemethod_traverse(PyObject *self, visitproc visit, void *arg) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 486 | Py_VISIT(PyInstanceMethod_GET_FUNCTION(self)); |
| 487 | return 0; |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 488 | } |
| 489 | |
| 490 | static PyObject * |
| 491 | instancemethod_call(PyObject *self, PyObject *arg, PyObject *kw) |
| 492 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 493 | return PyObject_Call(PyMethod_GET_FUNCTION(self), arg, kw); |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 494 | } |
| 495 | |
| 496 | static PyObject * |
| 497 | instancemethod_descr_get(PyObject *descr, PyObject *obj, PyObject *type) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 498 | register PyObject *func = PyInstanceMethod_GET_FUNCTION(descr); |
| 499 | if (obj == NULL) { |
| 500 | Py_INCREF(func); |
| 501 | return func; |
| 502 | } |
| 503 | else |
| 504 | return PyMethod_New(func, obj); |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 505 | } |
| 506 | |
| 507 | static PyObject * |
| 508 | instancemethod_richcompare(PyObject *self, PyObject *other, int op) |
| 509 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 510 | PyInstanceMethodObject *a, *b; |
| 511 | PyObject *res; |
| 512 | int eq; |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 513 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 514 | if ((op != Py_EQ && op != Py_NE) || |
| 515 | !PyInstanceMethod_Check(self) || |
| 516 | !PyInstanceMethod_Check(other)) |
| 517 | { |
Brian Curtin | dfc80e3 | 2011-08-10 20:28:54 -0500 | [diff] [blame^] | 518 | Py_RETURN_NOTIMPLEMENTED; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 519 | } |
| 520 | a = (PyInstanceMethodObject *)self; |
| 521 | b = (PyInstanceMethodObject *)other; |
| 522 | eq = PyObject_RichCompareBool(a->func, b->func, Py_EQ); |
| 523 | if (eq < 0) |
| 524 | return NULL; |
| 525 | if (op == Py_EQ) |
| 526 | res = eq ? Py_True : Py_False; |
| 527 | else |
| 528 | res = eq ? Py_False : Py_True; |
| 529 | Py_INCREF(res); |
| 530 | return res; |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 531 | } |
| 532 | |
| 533 | static PyObject * |
| 534 | instancemethod_repr(PyObject *self) |
| 535 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 536 | PyObject *func = PyInstanceMethod_Function(self); |
| 537 | PyObject *funcname = NULL , *result = NULL; |
| 538 | char *defname = "?"; |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 539 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 540 | if (func == NULL) { |
| 541 | PyErr_BadInternalCall(); |
| 542 | return NULL; |
| 543 | } |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 544 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 545 | funcname = PyObject_GetAttrString(func, "__name__"); |
| 546 | if (funcname == NULL) { |
| 547 | if (!PyErr_ExceptionMatches(PyExc_AttributeError)) |
| 548 | return NULL; |
| 549 | PyErr_Clear(); |
| 550 | } |
| 551 | else if (!PyUnicode_Check(funcname)) { |
| 552 | Py_DECREF(funcname); |
| 553 | funcname = NULL; |
| 554 | } |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 555 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 556 | result = PyUnicode_FromFormat("<instancemethod %V at %p>", |
| 557 | funcname, defname, self); |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 558 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 559 | Py_XDECREF(funcname); |
| 560 | return result; |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 561 | } |
| 562 | |
| 563 | /* |
| 564 | static long |
| 565 | instancemethod_hash(PyObject *self) |
| 566 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 567 | long x, y; |
| 568 | x = (long)self; |
| 569 | y = PyObject_Hash(PyInstanceMethod_GET_FUNCTION(self)); |
| 570 | if (y == -1) |
| 571 | return -1; |
| 572 | x = x ^ y; |
| 573 | if (x == -1) |
| 574 | x = -2; |
| 575 | return x; |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 576 | } |
| 577 | */ |
| 578 | |
| 579 | PyDoc_STRVAR(instancemethod_doc, |
| 580 | "instancemethod(function)\n\ |
| 581 | \n\ |
| 582 | Bind a function to a class."); |
| 583 | |
| 584 | static PyObject * |
| 585 | instancemethod_new(PyTypeObject* type, PyObject* args, PyObject *kw) |
| 586 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 587 | PyObject *func; |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 588 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 589 | if (!_PyArg_NoKeywords("instancemethod", kw)) |
| 590 | return NULL; |
| 591 | if (!PyArg_UnpackTuple(args, "instancemethod", 1, 1, &func)) |
| 592 | return NULL; |
| 593 | if (!PyCallable_Check(func)) { |
| 594 | PyErr_SetString(PyExc_TypeError, |
| 595 | "first argument must be callable"); |
| 596 | return NULL; |
| 597 | } |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 598 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 599 | return PyInstanceMethod_New(func); |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 600 | } |
| 601 | |
| 602 | PyTypeObject PyInstanceMethod_Type = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 603 | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
| 604 | "instancemethod", /* tp_name */ |
| 605 | sizeof(PyInstanceMethodObject), /* tp_basicsize */ |
| 606 | 0, /* tp_itemsize */ |
| 607 | instancemethod_dealloc, /* tp_dealloc */ |
| 608 | 0, /* tp_print */ |
| 609 | 0, /* tp_getattr */ |
| 610 | 0, /* tp_setattr */ |
| 611 | 0, /* tp_reserved */ |
| 612 | (reprfunc)instancemethod_repr, /* tp_repr */ |
| 613 | 0, /* tp_as_number */ |
| 614 | 0, /* tp_as_sequence */ |
| 615 | 0, /* tp_as_mapping */ |
| 616 | 0, /*(hashfunc)instancemethod_hash, tp_hash */ |
| 617 | instancemethod_call, /* tp_call */ |
| 618 | 0, /* tp_str */ |
| 619 | instancemethod_getattro, /* tp_getattro */ |
| 620 | PyObject_GenericSetAttr, /* tp_setattro */ |
| 621 | 0, /* tp_as_buffer */ |
| 622 | Py_TPFLAGS_DEFAULT |
| 623 | | Py_TPFLAGS_HAVE_GC, /* tp_flags */ |
| 624 | instancemethod_doc, /* tp_doc */ |
| 625 | instancemethod_traverse, /* tp_traverse */ |
| 626 | 0, /* tp_clear */ |
| 627 | instancemethod_richcompare, /* tp_richcompare */ |
| 628 | 0, /* tp_weaklistoffset */ |
| 629 | 0, /* tp_iter */ |
| 630 | 0, /* tp_iternext */ |
| 631 | 0, /* tp_methods */ |
| 632 | instancemethod_memberlist, /* tp_members */ |
| 633 | instancemethod_getset, /* tp_getset */ |
| 634 | 0, /* tp_base */ |
| 635 | 0, /* tp_dict */ |
| 636 | instancemethod_descr_get, /* tp_descr_get */ |
| 637 | 0, /* tp_descr_set */ |
| 638 | 0, /* tp_dictoffset */ |
| 639 | 0, /* tp_init */ |
| 640 | 0, /* tp_alloc */ |
| 641 | instancemethod_new, /* tp_new */ |
Christian Heimes | a3534a6 | 2007-12-11 19:56:40 +0000 | [diff] [blame] | 642 | }; |