blob: f9568527b366b8017537d665275d06090a606500 [file] [log] [blame]
Guido van Rossum50e9fb92006-08-17 05:42:55 +00001/* Class object implementation (dead now except for methods) */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003#include "Python.h"
Guido van Rossum3f5da241990-12-20 15:06:42 +00004#include "structmember.h"
Guido van Rossum04691fc1992-08-12 15:35:34 +00005
Guido van Rossum3cf5b1e2006-07-27 21:53:35 +00006#define TP_DESCR_GET(t) ((t)->tp_descr_get)
Guido van Rossum915f0eb2001-10-17 20:26:38 +00007
Christian Heimes2202f872008-02-06 14:31:34 +00008/* Free list for method objects to safe malloc/free overhead
9 * The im_self element is used to chain the elements.
10 */
11static PyMethodObject *free_list;
12static int numfree = 0;
13#ifndef PyMethod_MAXFREELIST
14#define PyMethod_MAXFREELIST 256
15#endif
16
Guido van Rossumb479dc52001-09-05 22:52:50 +000017PyObject *
18PyMethod_Function(PyObject *im)
19{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000020 if (!PyMethod_Check(im)) {
21 PyErr_BadInternalCall();
22 return NULL;
23 }
24 return ((PyMethodObject *)im)->im_func;
Guido van Rossumb479dc52001-09-05 22:52:50 +000025}
26
27PyObject *
28PyMethod_Self(PyObject *im)
29{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000030 if (!PyMethod_Check(im)) {
31 PyErr_BadInternalCall();
32 return NULL;
33 }
34 return ((PyMethodObject *)im)->im_self;
Guido van Rossumb479dc52001-09-05 22:52:50 +000035}
36
Christian Heimesff737952007-11-27 10:40:20 +000037/* Method objects are used for bound instance methods returned by
38 instancename.methodname. ClassName.methodname returns an ordinary
39 function.
Guido van Rossum81daa321993-05-20 14:24:46 +000040*/
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000041
Guido van Rossumc0b618a1997-05-02 03:12:38 +000042PyObject *
Christian Heimesff737952007-11-27 10:40:20 +000043PyMethod_New(PyObject *func, PyObject *self)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000044{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000045 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 Rossum85a5fbb1990-10-14 12:07:46 +000068}
69
Guido van Rossumf0b35e12001-09-18 03:53:24 +000070/* Descriptors for PyMethod attributes */
71
Christian Heimesff737952007-11-27 10:40:20 +000072/* im_func and im_self are stored in the PyMethod object */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000073
Christian Heimesa3534a62007-12-11 19:56:40 +000074#define MO_OFF(x) offsetof(PyMethodObject, x)
Guido van Rossum3f5da241990-12-20 15:06:42 +000075
Guido van Rossum47b9ff62006-08-24 00:41:19 +000076static PyMemberDef method_memberlist[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000077 {"__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 Rossum3f5da241990-12-20 15:06:42 +000082};
83
Guido van Rossumbaf0f8f2003-11-22 23:55:50 +000084/* 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
89static PyObject *
Guido van Rossum47b9ff62006-08-24 00:41:19 +000090method_get_doc(PyMethodObject *im, void *context)
Guido van Rossumbaf0f8f2003-11-22 23:55:50 +000091{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000092 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 Rossumbaf0f8f2003-11-22 23:55:50 +000099}
100
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000101static PyGetSetDef method_getset[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000102 {"__doc__", (getter)method_get_doc, NULL, NULL},
103 {0}
Guido van Rossumbaf0f8f2003-11-22 23:55:50 +0000104};
Guido van Rossumf0b35e12001-09-18 03:53:24 +0000105
106static PyObject *
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000107method_getattro(PyObject *obj, PyObject *name)
Guido van Rossumf0b35e12001-09-18 03:53:24 +0000108{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000109 PyMethodObject *im = (PyMethodObject *)obj;
110 PyTypeObject *tp = obj->ob_type;
111 PyObject *descr = NULL;
Guido van Rossumf0b35e12001-09-18 03:53:24 +0000112
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000113 {
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 Rossumf0b35e12001-09-18 03:53:24 +0000120
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000121 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 Rossumf0b35e12001-09-18 03:53:24 +0000130
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000131 return PyObject_GetAttr(im->im_func, name);
Guido van Rossum3f5da241990-12-20 15:06:42 +0000132}
133
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000134PyDoc_STRVAR(method_doc,
Christian Heimesff737952007-11-27 10:40:20 +0000135"method(function, instance)\n\
Guido van Rossumbea18cc2002-06-14 20:41:17 +0000136\n\
Christian Heimesa3534a62007-12-11 19:56:40 +0000137Create a bound instance method object.");
Guido van Rossumbea18cc2002-06-14 20:41:17 +0000138
139static PyObject *
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000140method_new(PyTypeObject* type, PyObject* args, PyObject *kw)
Guido van Rossumbea18cc2002-06-14 20:41:17 +0000141{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000142 PyObject *func;
143 PyObject *self;
Guido van Rossumbea18cc2002-06-14 20:41:17 +0000144
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000145 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. Hudsone2749cb2005-03-30 16:32:10 +0000160
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000161 return PyMethod_New(func, self);
Guido van Rossumbea18cc2002-06-14 20:41:17 +0000162}
163
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000164static void
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000165method_dealloc(register PyMethodObject *im)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000166{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000167 _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 Rossum85a5fbb1990-10-14 12:07:46 +0000180}
181
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000182static PyObject *
183method_richcompare(PyObject *self, PyObject *other, int op)
Guido van Rossumebc8c511992-09-03 20:39:51 +0000184{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000185 PyMethodObject *a, *b;
186 PyObject *res;
187 int eq;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000188
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000189 if ((op != Py_EQ && op != Py_NE) ||
190 !PyMethod_Check(self) ||
191 !PyMethod_Check(other))
192 {
193 Py_INCREF(Py_NotImplemented);
194 return Py_NotImplemented;
195 }
196 a = (PyMethodObject *)self;
197 b = (PyMethodObject *)other;
198 eq = PyObject_RichCompareBool(a->im_func, b->im_func, Py_EQ);
199 if (eq == 1) {
200 if (a->im_self == NULL || b->im_self == NULL)
201 eq = a->im_self == b->im_self;
202 else
203 eq = PyObject_RichCompareBool(a->im_self, b->im_self,
204 Py_EQ);
205 }
206 if (eq < 0)
207 return NULL;
208 if (op == Py_EQ)
209 res = eq ? Py_True : Py_False;
210 else
211 res = eq ? Py_False : Py_True;
212 Py_INCREF(res);
213 return res;
Guido van Rossumebc8c511992-09-03 20:39:51 +0000214}
215
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000216static PyObject *
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000217method_repr(PyMethodObject *a)
Guido van Rossum25831651993-05-19 14:50:45 +0000218{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000219 PyObject *self = a->im_self;
220 PyObject *func = a->im_func;
Christian Heimes949f3312012-09-10 02:45:31 +0200221 PyObject *klass;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000222 PyObject *funcname = NULL ,*klassname = NULL, *result = NULL;
223 char *defname = "?";
Tim Peters6d6c1a32001-08-02 04:15:00 +0000224
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000225 if (self == NULL) {
226 PyErr_BadInternalCall();
227 return NULL;
228 }
Christian Heimes949f3312012-09-10 02:45:31 +0200229 klass = (PyObject*)Py_TYPE(self);
Christian Heimesff737952007-11-27 10:40:20 +0000230
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000231 funcname = PyObject_GetAttrString(func, "__name__");
232 if (funcname == NULL) {
233 if (!PyErr_ExceptionMatches(PyExc_AttributeError))
234 return NULL;
235 PyErr_Clear();
236 }
237 else if (!PyUnicode_Check(funcname)) {
238 Py_DECREF(funcname);
239 funcname = NULL;
240 }
Christian Heimesff737952007-11-27 10:40:20 +0000241
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000242 if (klass == NULL)
243 klassname = NULL;
244 else {
245 klassname = PyObject_GetAttrString(klass, "__name__");
246 if (klassname == NULL) {
Andrew Svetlovddcb6202012-07-20 14:51:45 +0300247 if (!PyErr_ExceptionMatches(PyExc_AttributeError)) {
248 Py_XDECREF(funcname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000249 return NULL;
Andrew Svetlovddcb6202012-07-20 14:51:45 +0300250 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000251 PyErr_Clear();
252 }
253 else if (!PyUnicode_Check(klassname)) {
254 Py_DECREF(klassname);
255 klassname = NULL;
256 }
257 }
Christian Heimesff737952007-11-27 10:40:20 +0000258
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000259 /* XXX Shouldn't use repr()/%R here! */
260 result = PyUnicode_FromFormat("<bound method %V.%V of %R>",
261 klassname, defname,
262 funcname, defname, self);
Christian Heimesff737952007-11-27 10:40:20 +0000263
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000264 Py_XDECREF(funcname);
265 Py_XDECREF(klassname);
266 return result;
Guido van Rossum25831651993-05-19 14:50:45 +0000267}
268
Benjamin Peterson8f67d082010-10-17 20:54:53 +0000269static Py_hash_t
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000270method_hash(PyMethodObject *a)
Guido van Rossum9bfef441993-03-29 10:43:31 +0000271{
Benjamin Peterson8f67d082010-10-17 20:54:53 +0000272 Py_hash_t x, y;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000273 if (a->im_self == NULL)
274 x = PyObject_Hash(Py_None);
275 else
276 x = PyObject_Hash(a->im_self);
277 if (x == -1)
278 return -1;
279 y = PyObject_Hash(a->im_func);
280 if (y == -1)
281 return -1;
282 x = x ^ y;
283 if (x == -1)
284 x = -2;
285 return x;
Guido van Rossum9bfef441993-03-29 10:43:31 +0000286}
287
Jeremy Hylton8caad492000-06-23 14:18:11 +0000288static int
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000289method_traverse(PyMethodObject *im, visitproc visit, void *arg)
Jeremy Hylton8caad492000-06-23 14:18:11 +0000290{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000291 Py_VISIT(im->im_func);
292 Py_VISIT(im->im_self);
293 return 0;
Jeremy Hylton8caad492000-06-23 14:18:11 +0000294}
295
Tim Peters6d6c1a32001-08-02 04:15:00 +0000296static PyObject *
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000297method_call(PyObject *func, PyObject *arg, PyObject *kw)
Tim Peters6d6c1a32001-08-02 04:15:00 +0000298{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000299 PyObject *self = PyMethod_GET_SELF(func);
300 PyObject *result;
Tim Peters6d6c1a32001-08-02 04:15:00 +0000301
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000302 func = PyMethod_GET_FUNCTION(func);
303 if (self == NULL) {
304 PyErr_BadInternalCall();
305 return NULL;
306 }
307 else {
308 Py_ssize_t argcount = PyTuple_Size(arg);
309 PyObject *newarg = PyTuple_New(argcount + 1);
310 int i;
311 if (newarg == NULL)
312 return NULL;
313 Py_INCREF(self);
314 PyTuple_SET_ITEM(newarg, 0, self);
315 for (i = 0; i < argcount; i++) {
316 PyObject *v = PyTuple_GET_ITEM(arg, i);
317 Py_XINCREF(v);
318 PyTuple_SET_ITEM(newarg, i+1, v);
319 }
320 arg = newarg;
321 }
322 result = PyObject_Call((PyObject *)func, arg, kw);
323 Py_DECREF(arg);
324 return result;
Tim Peters6d6c1a32001-08-02 04:15:00 +0000325}
326
Guido van Rossum23cc2b42001-08-15 17:52:31 +0000327static PyObject *
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000328method_descr_get(PyObject *meth, PyObject *obj, PyObject *cls)
Guido van Rossum23cc2b42001-08-15 17:52:31 +0000329{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000330 /* Don't rebind an already bound method of a class that's not a base
331 class of cls. */
332 if (PyMethod_GET_SELF(meth) != NULL) {
333 /* Already bound */
334 Py_INCREF(meth);
335 return meth;
336 }
337 /* Bind it to obj */
338 return PyMethod_New(PyMethod_GET_FUNCTION(meth), obj);
Guido van Rossum23cc2b42001-08-15 17:52:31 +0000339}
340
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000341PyTypeObject PyMethod_Type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000342 PyVarObject_HEAD_INIT(&PyType_Type, 0)
343 "method",
344 sizeof(PyMethodObject),
345 0,
346 (destructor)method_dealloc, /* tp_dealloc */
347 0, /* tp_print */
348 0, /* tp_getattr */
349 0, /* tp_setattr */
350 0, /* tp_reserved */
351 (reprfunc)method_repr, /* tp_repr */
352 0, /* tp_as_number */
353 0, /* tp_as_sequence */
354 0, /* tp_as_mapping */
355 (hashfunc)method_hash, /* tp_hash */
356 method_call, /* tp_call */
357 0, /* tp_str */
358 method_getattro, /* tp_getattro */
359 PyObject_GenericSetAttr, /* tp_setattro */
360 0, /* tp_as_buffer */
361 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */
362 method_doc, /* tp_doc */
363 (traverseproc)method_traverse, /* tp_traverse */
364 0, /* tp_clear */
365 method_richcompare, /* tp_richcompare */
366 offsetof(PyMethodObject, im_weakreflist), /* tp_weaklistoffset */
367 0, /* tp_iter */
368 0, /* tp_iternext */
369 0, /* tp_methods */
370 method_memberlist, /* tp_members */
371 method_getset, /* tp_getset */
372 0, /* tp_base */
373 0, /* tp_dict */
374 method_descr_get, /* tp_descr_get */
375 0, /* tp_descr_set */
376 0, /* tp_dictoffset */
377 0, /* tp_init */
378 0, /* tp_alloc */
379 method_new, /* tp_new */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000380};
Guido van Rossuma0d349f1997-08-05 02:06:53 +0000381
382/* Clear out the free list */
383
Christian Heimesa156e092008-02-16 07:38:31 +0000384int
385PyMethod_ClearFreeList(void)
Guido van Rossuma0d349f1997-08-05 02:06:53 +0000386{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000387 int freelist_size = numfree;
388
389 while (free_list) {
390 PyMethodObject *im = free_list;
391 free_list = (PyMethodObject *)(im->im_self);
392 PyObject_GC_Del(im);
393 numfree--;
394 }
395 assert(numfree == 0);
396 return freelist_size;
Christian Heimesa156e092008-02-16 07:38:31 +0000397}
398
399void
400PyMethod_Fini(void)
401{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000402 (void)PyMethod_ClearFreeList();
Guido van Rossuma0d349f1997-08-05 02:06:53 +0000403}
Christian Heimesa3534a62007-12-11 19:56:40 +0000404
405/* ------------------------------------------------------------------------
406 * instance method
407 */
408
409PyObject *
410PyInstanceMethod_New(PyObject *func) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000411 PyInstanceMethodObject *method;
412 method = PyObject_GC_New(PyInstanceMethodObject,
413 &PyInstanceMethod_Type);
414 if (method == NULL) return NULL;
415 Py_INCREF(func);
416 method->func = func;
417 _PyObject_GC_TRACK(method);
418 return (PyObject *)method;
Christian Heimesa3534a62007-12-11 19:56:40 +0000419}
420
421PyObject *
422PyInstanceMethod_Function(PyObject *im)
423{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000424 if (!PyInstanceMethod_Check(im)) {
425 PyErr_BadInternalCall();
426 return NULL;
427 }
428 return PyInstanceMethod_GET_FUNCTION(im);
Christian Heimesa3534a62007-12-11 19:56:40 +0000429}
430
431#define IMO_OFF(x) offsetof(PyInstanceMethodObject, x)
432
433static PyMemberDef instancemethod_memberlist[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000434 {"__func__", T_OBJECT, IMO_OFF(func), READONLY|RESTRICTED,
435 "the function (or other callable) implementing a method"},
436 {NULL} /* Sentinel */
Christian Heimesa3534a62007-12-11 19:56:40 +0000437};
438
439static PyObject *
440instancemethod_get_doc(PyObject *self, void *context)
441{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000442 static PyObject *docstr;
443 if (docstr == NULL) {
444 docstr = PyUnicode_InternFromString("__doc__");
445 if (docstr == NULL)
446 return NULL;
447 }
448 return PyObject_GetAttr(PyInstanceMethod_GET_FUNCTION(self), docstr);
Christian Heimesa3534a62007-12-11 19:56:40 +0000449}
450
451static PyGetSetDef instancemethod_getset[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000452 {"__doc__", (getter)instancemethod_get_doc, NULL, NULL},
453 {0}
Christian Heimesa3534a62007-12-11 19:56:40 +0000454};
455
456static PyObject *
457instancemethod_getattro(PyObject *self, PyObject *name)
458{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000459 PyTypeObject *tp = self->ob_type;
460 PyObject *descr = NULL;
Christian Heimesa3534a62007-12-11 19:56:40 +0000461
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000462 if (tp->tp_dict == NULL) {
463 if (PyType_Ready(tp) < 0)
464 return NULL;
465 }
466 descr = _PyType_Lookup(tp, name);
Christian Heimesa3534a62007-12-11 19:56:40 +0000467
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000468 if (descr != NULL) {
469 descrgetfunc f = TP_DESCR_GET(descr->ob_type);
470 if (f != NULL)
471 return f(descr, self, (PyObject *)self->ob_type);
472 else {
473 Py_INCREF(descr);
474 return descr;
475 }
476 }
Christian Heimesa3534a62007-12-11 19:56:40 +0000477
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000478 return PyObject_GetAttr(PyInstanceMethod_GET_FUNCTION(self), name);
Christian Heimesa3534a62007-12-11 19:56:40 +0000479}
480
481static void
482instancemethod_dealloc(PyObject *self) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000483 _PyObject_GC_UNTRACK(self);
484 Py_DECREF(PyInstanceMethod_GET_FUNCTION(self));
485 PyObject_GC_Del(self);
Christian Heimesa3534a62007-12-11 19:56:40 +0000486}
487
488static int
489instancemethod_traverse(PyObject *self, visitproc visit, void *arg) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000490 Py_VISIT(PyInstanceMethod_GET_FUNCTION(self));
491 return 0;
Christian Heimesa3534a62007-12-11 19:56:40 +0000492}
493
494static PyObject *
495instancemethod_call(PyObject *self, PyObject *arg, PyObject *kw)
496{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000497 return PyObject_Call(PyMethod_GET_FUNCTION(self), arg, kw);
Christian Heimesa3534a62007-12-11 19:56:40 +0000498}
499
500static PyObject *
501instancemethod_descr_get(PyObject *descr, PyObject *obj, PyObject *type) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000502 register PyObject *func = PyInstanceMethod_GET_FUNCTION(descr);
503 if (obj == NULL) {
504 Py_INCREF(func);
505 return func;
506 }
507 else
508 return PyMethod_New(func, obj);
Christian Heimesa3534a62007-12-11 19:56:40 +0000509}
510
511static PyObject *
512instancemethod_richcompare(PyObject *self, PyObject *other, int op)
513{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000514 PyInstanceMethodObject *a, *b;
515 PyObject *res;
516 int eq;
Christian Heimesa3534a62007-12-11 19:56:40 +0000517
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000518 if ((op != Py_EQ && op != Py_NE) ||
519 !PyInstanceMethod_Check(self) ||
520 !PyInstanceMethod_Check(other))
521 {
522 Py_INCREF(Py_NotImplemented);
523 return Py_NotImplemented;
524 }
525 a = (PyInstanceMethodObject *)self;
526 b = (PyInstanceMethodObject *)other;
527 eq = PyObject_RichCompareBool(a->func, b->func, Py_EQ);
528 if (eq < 0)
529 return NULL;
530 if (op == Py_EQ)
531 res = eq ? Py_True : Py_False;
532 else
533 res = eq ? Py_False : Py_True;
534 Py_INCREF(res);
535 return res;
Christian Heimesa3534a62007-12-11 19:56:40 +0000536}
537
538static PyObject *
539instancemethod_repr(PyObject *self)
540{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000541 PyObject *func = PyInstanceMethod_Function(self);
542 PyObject *funcname = NULL , *result = NULL;
543 char *defname = "?";
Christian Heimesa3534a62007-12-11 19:56:40 +0000544
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000545 if (func == NULL) {
546 PyErr_BadInternalCall();
547 return NULL;
548 }
Christian Heimesa3534a62007-12-11 19:56:40 +0000549
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000550 funcname = PyObject_GetAttrString(func, "__name__");
551 if (funcname == NULL) {
552 if (!PyErr_ExceptionMatches(PyExc_AttributeError))
553 return NULL;
554 PyErr_Clear();
555 }
556 else if (!PyUnicode_Check(funcname)) {
557 Py_DECREF(funcname);
558 funcname = NULL;
559 }
Christian Heimesa3534a62007-12-11 19:56:40 +0000560
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000561 result = PyUnicode_FromFormat("<instancemethod %V at %p>",
562 funcname, defname, self);
Christian Heimesa3534a62007-12-11 19:56:40 +0000563
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000564 Py_XDECREF(funcname);
565 return result;
Christian Heimesa3534a62007-12-11 19:56:40 +0000566}
567
568/*
569static long
570instancemethod_hash(PyObject *self)
571{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000572 long x, y;
573 x = (long)self;
574 y = PyObject_Hash(PyInstanceMethod_GET_FUNCTION(self));
575 if (y == -1)
576 return -1;
577 x = x ^ y;
578 if (x == -1)
579 x = -2;
580 return x;
Christian Heimesa3534a62007-12-11 19:56:40 +0000581}
582*/
583
584PyDoc_STRVAR(instancemethod_doc,
585"instancemethod(function)\n\
586\n\
587Bind a function to a class.");
588
589static PyObject *
590instancemethod_new(PyTypeObject* type, PyObject* args, PyObject *kw)
591{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000592 PyObject *func;
Christian Heimesa3534a62007-12-11 19:56:40 +0000593
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000594 if (!_PyArg_NoKeywords("instancemethod", kw))
595 return NULL;
596 if (!PyArg_UnpackTuple(args, "instancemethod", 1, 1, &func))
597 return NULL;
598 if (!PyCallable_Check(func)) {
599 PyErr_SetString(PyExc_TypeError,
600 "first argument must be callable");
601 return NULL;
602 }
Christian Heimesa3534a62007-12-11 19:56:40 +0000603
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000604 return PyInstanceMethod_New(func);
Christian Heimesa3534a62007-12-11 19:56:40 +0000605}
606
607PyTypeObject PyInstanceMethod_Type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000608 PyVarObject_HEAD_INIT(&PyType_Type, 0)
609 "instancemethod", /* tp_name */
610 sizeof(PyInstanceMethodObject), /* tp_basicsize */
611 0, /* tp_itemsize */
612 instancemethod_dealloc, /* tp_dealloc */
613 0, /* tp_print */
614 0, /* tp_getattr */
615 0, /* tp_setattr */
616 0, /* tp_reserved */
617 (reprfunc)instancemethod_repr, /* tp_repr */
618 0, /* tp_as_number */
619 0, /* tp_as_sequence */
620 0, /* tp_as_mapping */
621 0, /*(hashfunc)instancemethod_hash, tp_hash */
622 instancemethod_call, /* tp_call */
623 0, /* tp_str */
624 instancemethod_getattro, /* tp_getattro */
625 PyObject_GenericSetAttr, /* tp_setattro */
626 0, /* tp_as_buffer */
627 Py_TPFLAGS_DEFAULT
628 | Py_TPFLAGS_HAVE_GC, /* tp_flags */
629 instancemethod_doc, /* tp_doc */
630 instancemethod_traverse, /* tp_traverse */
631 0, /* tp_clear */
632 instancemethod_richcompare, /* tp_richcompare */
633 0, /* tp_weaklistoffset */
634 0, /* tp_iter */
635 0, /* tp_iternext */
636 0, /* tp_methods */
637 instancemethod_memberlist, /* tp_members */
638 instancemethod_getset, /* tp_getset */
639 0, /* tp_base */
640 0, /* tp_dict */
641 instancemethod_descr_get, /* tp_descr_get */
642 0, /* tp_descr_set */
643 0, /* tp_dictoffset */
644 0, /* tp_init */
645 0, /* tp_alloc */
646 instancemethod_new, /* tp_new */
Christian Heimesa3534a62007-12-11 19:56:40 +0000647};