blob: d4a46c37f02e122dca5a31b0f62cbb824f4de3c1 [file] [log] [blame]
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001/* Type object implementation */
2
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003#include "Python.h"
Tim Peters6d6c1a32001-08-02 04:15:00 +00004#include "structmember.h"
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005
Guido van Rossum9923ffe2002-06-04 19:52:53 +00006#include <ctype.h>
7
Guido van Rossum6f799372001-09-20 20:46:19 +00008static PyMemberDef type_members[] = {
Tim Peters6d6c1a32001-08-02 04:15:00 +00009 {"__basicsize__", T_INT, offsetof(PyTypeObject,tp_basicsize),READONLY},
10 {"__itemsize__", T_INT, offsetof(PyTypeObject, tp_itemsize), READONLY},
11 {"__flags__", T_LONG, offsetof(PyTypeObject, tp_flags), READONLY},
Guido van Rossum9676b222001-08-17 20:32:36 +000012 {"__weakrefoffset__", T_LONG,
Tim Peters6d6c1a32001-08-02 04:15:00 +000013 offsetof(PyTypeObject, tp_weaklistoffset), READONLY},
14 {"__base__", T_OBJECT, offsetof(PyTypeObject, tp_base), READONLY},
15 {"__dictoffset__", T_LONG,
16 offsetof(PyTypeObject, tp_dictoffset), READONLY},
Tim Peters6d6c1a32001-08-02 04:15:00 +000017 {"__mro__", T_OBJECT, offsetof(PyTypeObject, tp_mro), READONLY},
18 {0}
19};
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000020
Guido van Rossumc0b618a1997-05-02 03:12:38 +000021static PyObject *
Guido van Rossumc3542212001-08-16 09:18:56 +000022type_name(PyTypeObject *type, void *context)
23{
Jeremy Hyltonaf68c872005-12-10 18:50:16 +000024 const char *s;
Guido van Rossumc3542212001-08-16 09:18:56 +000025
Michael W. Hudsonade8c8b2002-11-27 16:29:26 +000026 if (type->tp_flags & Py_TPFLAGS_HEAPTYPE) {
Guido van Rossume5c691a2003-03-07 15:13:17 +000027 PyHeapTypeObject* et = (PyHeapTypeObject*)type;
Tim Petersea7f75d2002-12-07 21:39:16 +000028
Georg Brandlc255c7b2006-02-20 22:27:28 +000029 Py_INCREF(et->ht_name);
30 return et->ht_name;
Michael W. Hudsonade8c8b2002-11-27 16:29:26 +000031 }
32 else {
33 s = strrchr(type->tp_name, '.');
34 if (s == NULL)
35 s = type->tp_name;
36 else
37 s++;
38 return PyString_FromString(s);
39 }
Guido van Rossumc3542212001-08-16 09:18:56 +000040}
41
Michael W. Hudson98bbc492002-11-26 14:47:27 +000042static int
43type_set_name(PyTypeObject *type, PyObject *value, void *context)
44{
Guido van Rossume5c691a2003-03-07 15:13:17 +000045 PyHeapTypeObject* et;
Michael W. Hudson98bbc492002-11-26 14:47:27 +000046
47 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE)) {
48 PyErr_Format(PyExc_TypeError,
49 "can't set %s.__name__", type->tp_name);
50 return -1;
51 }
52 if (!value) {
53 PyErr_Format(PyExc_TypeError,
54 "can't delete %s.__name__", type->tp_name);
55 return -1;
56 }
57 if (!PyString_Check(value)) {
58 PyErr_Format(PyExc_TypeError,
59 "can only assign string to %s.__name__, not '%s'",
60 type->tp_name, value->ob_type->tp_name);
61 return -1;
62 }
Tim Petersea7f75d2002-12-07 21:39:16 +000063 if (strlen(PyString_AS_STRING(value))
Michael W. Hudson98bbc492002-11-26 14:47:27 +000064 != (size_t)PyString_GET_SIZE(value)) {
65 PyErr_Format(PyExc_ValueError,
66 "__name__ must not contain null bytes");
67 return -1;
68 }
69
Guido van Rossume5c691a2003-03-07 15:13:17 +000070 et = (PyHeapTypeObject*)type;
Michael W. Hudson98bbc492002-11-26 14:47:27 +000071
72 Py_INCREF(value);
73
Georg Brandlc255c7b2006-02-20 22:27:28 +000074 Py_DECREF(et->ht_name);
75 et->ht_name = value;
Michael W. Hudson98bbc492002-11-26 14:47:27 +000076
77 type->tp_name = PyString_AS_STRING(value);
78
79 return 0;
80}
81
Guido van Rossumc3542212001-08-16 09:18:56 +000082static PyObject *
Tim Peters6d6c1a32001-08-02 04:15:00 +000083type_module(PyTypeObject *type, void *context)
Guido van Rossum29ca26e1995-01-07 11:58:15 +000084{
Guido van Rossumc3542212001-08-16 09:18:56 +000085 PyObject *mod;
86 char *s;
87
Michael W. Hudsonade8c8b2002-11-27 16:29:26 +000088 if (type->tp_flags & Py_TPFLAGS_HEAPTYPE) {
89 mod = PyDict_GetItemString(type->tp_dict, "__module__");
Anthony Baxter3ecdb252004-06-11 14:41:18 +000090 if (!mod) {
91 PyErr_Format(PyExc_AttributeError, "__module__");
92 return 0;
93 }
Michael W. Hudsonade8c8b2002-11-27 16:29:26 +000094 Py_XINCREF(mod);
Guido van Rossumc3542212001-08-16 09:18:56 +000095 return mod;
96 }
Michael W. Hudsonade8c8b2002-11-27 16:29:26 +000097 else {
98 s = strrchr(type->tp_name, '.');
99 if (s != NULL)
100 return PyString_FromStringAndSize(
Armin Rigo7ccbca92006-10-04 12:17:45 +0000101 type->tp_name, (Py_ssize_t)(s - type->tp_name));
Michael W. Hudsonade8c8b2002-11-27 16:29:26 +0000102 return PyString_FromString("__builtin__");
103 }
Tim Peters6d6c1a32001-08-02 04:15:00 +0000104}
105
Guido van Rossum3926a632001-09-25 16:25:58 +0000106static int
107type_set_module(PyTypeObject *type, PyObject *value, void *context)
108{
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000109 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE)) {
Guido van Rossum3926a632001-09-25 16:25:58 +0000110 PyErr_Format(PyExc_TypeError,
111 "can't set %s.__module__", type->tp_name);
112 return -1;
113 }
114 if (!value) {
115 PyErr_Format(PyExc_TypeError,
116 "can't delete %s.__module__", type->tp_name);
117 return -1;
118 }
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000119
Guido van Rossum3926a632001-09-25 16:25:58 +0000120 return PyDict_SetItemString(type->tp_dict, "__module__", value);
121}
122
Tim Peters6d6c1a32001-08-02 04:15:00 +0000123static PyObject *
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000124type_get_bases(PyTypeObject *type, void *context)
125{
126 Py_INCREF(type->tp_bases);
127 return type->tp_bases;
128}
129
130static PyTypeObject *best_base(PyObject *);
131static int mro_internal(PyTypeObject *);
132static int compatible_for_assignment(PyTypeObject *, PyTypeObject *, char *);
133static int add_subclass(PyTypeObject*, PyTypeObject*);
134static void remove_subclass(PyTypeObject *, PyTypeObject *);
135static void update_all_slots(PyTypeObject *);
136
Guido van Rossum8d24ee92003-03-24 23:49:49 +0000137typedef int (*update_callback)(PyTypeObject *, void *);
138static int update_subclasses(PyTypeObject *type, PyObject *name,
139 update_callback callback, void *data);
140static int recurse_down_subclasses(PyTypeObject *type, PyObject *name,
141 update_callback callback, void *data);
142
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000143static int
Michael W. Hudson586da8f2002-11-27 15:20:19 +0000144mro_subclasses(PyTypeObject *type, PyObject* temp)
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000145{
146 PyTypeObject *subclass;
147 PyObject *ref, *subclasses, *old_mro;
Martin v. Löwis18e16552006-02-15 17:27:45 +0000148 Py_ssize_t i, n;
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000149
150 subclasses = type->tp_subclasses;
151 if (subclasses == NULL)
152 return 0;
153 assert(PyList_Check(subclasses));
154 n = PyList_GET_SIZE(subclasses);
155 for (i = 0; i < n; i++) {
156 ref = PyList_GET_ITEM(subclasses, i);
157 assert(PyWeakref_CheckRef(ref));
158 subclass = (PyTypeObject *)PyWeakref_GET_OBJECT(ref);
159 assert(subclass != NULL);
160 if ((PyObject *)subclass == Py_None)
161 continue;
162 assert(PyType_Check(subclass));
163 old_mro = subclass->tp_mro;
164 if (mro_internal(subclass) < 0) {
165 subclass->tp_mro = old_mro;
Michael W. Hudson586da8f2002-11-27 15:20:19 +0000166 return -1;
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000167 }
168 else {
Michael W. Hudson586da8f2002-11-27 15:20:19 +0000169 PyObject* tuple;
Raymond Hettinger8ae46892003-10-12 19:09:37 +0000170 tuple = PyTuple_Pack(2, subclass, old_mro);
Guido van Rossum19a02ba2003-04-15 22:09:45 +0000171 Py_DECREF(old_mro);
Michael W. Hudson586da8f2002-11-27 15:20:19 +0000172 if (!tuple)
173 return -1;
174 if (PyList_Append(temp, tuple) < 0)
175 return -1;
Guido van Rossum19a02ba2003-04-15 22:09:45 +0000176 Py_DECREF(tuple);
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000177 }
Michael W. Hudson586da8f2002-11-27 15:20:19 +0000178 if (mro_subclasses(subclass, temp) < 0)
179 return -1;
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000180 }
Michael W. Hudson586da8f2002-11-27 15:20:19 +0000181 return 0;
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000182}
183
184static int
185type_set_bases(PyTypeObject *type, PyObject *value, void *context)
186{
Martin v. Löwis18e16552006-02-15 17:27:45 +0000187 Py_ssize_t i;
188 int r = 0;
Michael W. Hudson586da8f2002-11-27 15:20:19 +0000189 PyObject *ob, *temp;
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000190 PyTypeObject *new_base, *old_base;
191 PyObject *old_bases, *old_mro;
192
193 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE)) {
194 PyErr_Format(PyExc_TypeError,
195 "can't set %s.__bases__", type->tp_name);
196 return -1;
197 }
198 if (!value) {
199 PyErr_Format(PyExc_TypeError,
200 "can't delete %s.__bases__", type->tp_name);
201 return -1;
202 }
203 if (!PyTuple_Check(value)) {
204 PyErr_Format(PyExc_TypeError,
205 "can only assign tuple to %s.__bases__, not %s",
206 type->tp_name, value->ob_type->tp_name);
207 return -1;
208 }
Guido van Rossum3bbc0ee2002-12-13 17:49:38 +0000209 if (PyTuple_GET_SIZE(value) == 0) {
210 PyErr_Format(PyExc_TypeError,
211 "can only assign non-empty tuple to %s.__bases__, not ()",
212 type->tp_name);
213 return -1;
214 }
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000215 for (i = 0; i < PyTuple_GET_SIZE(value); i++) {
216 ob = PyTuple_GET_ITEM(value, i);
217 if (!PyClass_Check(ob) && !PyType_Check(ob)) {
218 PyErr_Format(
219 PyExc_TypeError,
220 "%s.__bases__ must be tuple of old- or new-style classes, not '%s'",
221 type->tp_name, ob->ob_type->tp_name);
222 return -1;
223 }
Michael W. Hudsoncaf17be2002-11-27 10:24:44 +0000224 if (PyType_Check(ob)) {
225 if (PyType_IsSubtype((PyTypeObject*)ob, type)) {
226 PyErr_SetString(PyExc_TypeError,
227 "a __bases__ item causes an inheritance cycle");
228 return -1;
229 }
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000230 }
231 }
232
233 new_base = best_base(value);
234
235 if (!new_base) {
236 return -1;
237 }
238
239 if (!compatible_for_assignment(type->tp_base, new_base, "__bases__"))
240 return -1;
241
242 Py_INCREF(new_base);
243 Py_INCREF(value);
244
245 old_bases = type->tp_bases;
246 old_base = type->tp_base;
247 old_mro = type->tp_mro;
248
249 type->tp_bases = value;
250 type->tp_base = new_base;
251
252 if (mro_internal(type) < 0) {
Michael W. Hudson7e7c00d2002-11-27 15:40:09 +0000253 goto bail;
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000254 }
255
Michael W. Hudson586da8f2002-11-27 15:20:19 +0000256 temp = PyList_New(0);
Michael W. Hudson7e7c00d2002-11-27 15:40:09 +0000257 if (!temp)
258 goto bail;
Michael W. Hudson586da8f2002-11-27 15:20:19 +0000259
260 r = mro_subclasses(type, temp);
261
262 if (r < 0) {
263 for (i = 0; i < PyList_Size(temp); i++) {
264 PyTypeObject* cls;
265 PyObject* mro;
Raymond Hettinger8ae46892003-10-12 19:09:37 +0000266 PyArg_UnpackTuple(PyList_GET_ITEM(temp, i),
267 "", 2, 2, &cls, &mro);
Michael W. Hudson586da8f2002-11-27 15:20:19 +0000268 Py_DECREF(cls->tp_mro);
269 cls->tp_mro = mro;
270 Py_INCREF(cls->tp_mro);
271 }
272 Py_DECREF(temp);
Michael W. Hudson7e7c00d2002-11-27 15:40:09 +0000273 goto bail;
Michael W. Hudson586da8f2002-11-27 15:20:19 +0000274 }
275
276 Py_DECREF(temp);
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000277
278 /* any base that was in __bases__ but now isn't, we
Raymond Hettingera8285862002-12-14 17:17:56 +0000279 need to remove |type| from its tp_subclasses.
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000280 conversely, any class now in __bases__ that wasn't
Raymond Hettingera8285862002-12-14 17:17:56 +0000281 needs to have |type| added to its subclasses. */
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000282
283 /* for now, sod that: just remove from all old_bases,
284 add to all new_bases */
285
286 for (i = PyTuple_GET_SIZE(old_bases) - 1; i >= 0; i--) {
287 ob = PyTuple_GET_ITEM(old_bases, i);
288 if (PyType_Check(ob)) {
289 remove_subclass(
290 (PyTypeObject*)ob, type);
291 }
292 }
293
294 for (i = PyTuple_GET_SIZE(value) - 1; i >= 0; i--) {
295 ob = PyTuple_GET_ITEM(value, i);
296 if (PyType_Check(ob)) {
297 if (add_subclass((PyTypeObject*)ob, type) < 0)
298 r = -1;
299 }
300 }
301
302 update_all_slots(type);
303
304 Py_DECREF(old_bases);
305 Py_DECREF(old_base);
306 Py_DECREF(old_mro);
307
308 return r;
Michael W. Hudson7e7c00d2002-11-27 15:40:09 +0000309
310 bail:
Michael W. Hudsone723e452003-08-07 14:58:10 +0000311 Py_DECREF(type->tp_bases);
312 Py_DECREF(type->tp_base);
313 if (type->tp_mro != old_mro) {
314 Py_DECREF(type->tp_mro);
315 }
316
Michael W. Hudson7e7c00d2002-11-27 15:40:09 +0000317 type->tp_bases = old_bases;
318 type->tp_base = old_base;
319 type->tp_mro = old_mro;
Tim Petersea7f75d2002-12-07 21:39:16 +0000320
Michael W. Hudson7e7c00d2002-11-27 15:40:09 +0000321 return -1;
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000322}
323
324static PyObject *
Tim Peters6d6c1a32001-08-02 04:15:00 +0000325type_dict(PyTypeObject *type, void *context)
326{
327 if (type->tp_dict == NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000328 Py_INCREF(Py_None);
329 return Py_None;
Guido van Rossum29ca26e1995-01-07 11:58:15 +0000330 }
Tim Peters6d6c1a32001-08-02 04:15:00 +0000331 return PyDictProxy_New(type->tp_dict);
Guido van Rossum29ca26e1995-01-07 11:58:15 +0000332}
333
Tim Peters24008312002-03-17 18:56:20 +0000334static PyObject *
335type_get_doc(PyTypeObject *type, void *context)
336{
337 PyObject *result;
Guido van Rossum6ca7d412002-04-18 00:22:00 +0000338 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE) && type->tp_doc != NULL)
Tim Peters24008312002-03-17 18:56:20 +0000339 return PyString_FromString(type->tp_doc);
Tim Peters24008312002-03-17 18:56:20 +0000340 result = PyDict_GetItemString(type->tp_dict, "__doc__");
Guido van Rossum6ca7d412002-04-18 00:22:00 +0000341 if (result == NULL) {
342 result = Py_None;
343 Py_INCREF(result);
344 }
345 else if (result->ob_type->tp_descr_get) {
Tim Peters2b858972002-04-18 04:12:28 +0000346 result = result->ob_type->tp_descr_get(result, NULL,
347 (PyObject *)type);
Guido van Rossum6ca7d412002-04-18 00:22:00 +0000348 }
349 else {
350 Py_INCREF(result);
351 }
Tim Peters24008312002-03-17 18:56:20 +0000352 return result;
353}
354
Neil Schemenauerf23473f2001-10-21 22:28:58 +0000355static PyGetSetDef type_getsets[] = {
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000356 {"__name__", (getter)type_name, (setter)type_set_name, NULL},
357 {"__bases__", (getter)type_get_bases, (setter)type_set_bases, NULL},
Guido van Rossum3926a632001-09-25 16:25:58 +0000358 {"__module__", (getter)type_module, (setter)type_set_module, NULL},
Tim Peters6d6c1a32001-08-02 04:15:00 +0000359 {"__dict__", (getter)type_dict, NULL, NULL},
Tim Peters24008312002-03-17 18:56:20 +0000360 {"__doc__", (getter)type_get_doc, NULL, NULL},
Tim Peters6d6c1a32001-08-02 04:15:00 +0000361 {0}
362};
363
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000364static int
365type_compare(PyObject *v, PyObject *w)
366{
367 /* This is called with type objects only. So we
368 can just compare the addresses. */
369 Py_uintptr_t vv = (Py_uintptr_t)v;
370 Py_uintptr_t ww = (Py_uintptr_t)w;
371 return (vv < ww) ? -1 : (vv > ww) ? 1 : 0;
372}
373
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000374static PyObject *
Tim Peters6d6c1a32001-08-02 04:15:00 +0000375type_repr(PyTypeObject *type)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000376{
Barry Warsaw7ce36942001-08-24 18:34:26 +0000377 PyObject *mod, *name, *rtn;
Guido van Rossuma4cb7882001-09-25 03:56:29 +0000378 char *kind;
Guido van Rossumc3542212001-08-16 09:18:56 +0000379
380 mod = type_module(type, NULL);
381 if (mod == NULL)
382 PyErr_Clear();
383 else if (!PyString_Check(mod)) {
384 Py_DECREF(mod);
385 mod = NULL;
386 }
387 name = type_name(type, NULL);
388 if (name == NULL)
389 return NULL;
Barry Warsaw7ce36942001-08-24 18:34:26 +0000390
Guido van Rossuma4cb7882001-09-25 03:56:29 +0000391 if (type->tp_flags & Py_TPFLAGS_HEAPTYPE)
392 kind = "class";
393 else
394 kind = "type";
395
Barry Warsaw7ce36942001-08-24 18:34:26 +0000396 if (mod != NULL && strcmp(PyString_AS_STRING(mod), "__builtin__")) {
Guido van Rossuma4cb7882001-09-25 03:56:29 +0000397 rtn = PyString_FromFormat("<%s '%s.%s'>",
398 kind,
Barry Warsaw7ce36942001-08-24 18:34:26 +0000399 PyString_AS_STRING(mod),
400 PyString_AS_STRING(name));
401 }
Guido van Rossumc3542212001-08-16 09:18:56 +0000402 else
Guido van Rossuma4cb7882001-09-25 03:56:29 +0000403 rtn = PyString_FromFormat("<%s '%s'>", kind, type->tp_name);
Barry Warsaw7ce36942001-08-24 18:34:26 +0000404
Guido van Rossumc3542212001-08-16 09:18:56 +0000405 Py_XDECREF(mod);
406 Py_DECREF(name);
Barry Warsaw7ce36942001-08-24 18:34:26 +0000407 return rtn;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000408}
409
Tim Peters6d6c1a32001-08-02 04:15:00 +0000410static PyObject *
411type_call(PyTypeObject *type, PyObject *args, PyObject *kwds)
412{
413 PyObject *obj;
414
415 if (type->tp_new == NULL) {
416 PyErr_Format(PyExc_TypeError,
417 "cannot create '%.100s' instances",
418 type->tp_name);
419 return NULL;
420 }
421
Tim Peters3f996e72001-09-13 19:18:27 +0000422 obj = type->tp_new(type, args, kwds);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000423 if (obj != NULL) {
Guido van Rossumf76de622001-10-18 15:49:21 +0000424 /* Ugly exception: when the call was type(something),
425 don't call tp_init on the result. */
426 if (type == &PyType_Type &&
427 PyTuple_Check(args) && PyTuple_GET_SIZE(args) == 1 &&
428 (kwds == NULL ||
429 (PyDict_Check(kwds) && PyDict_Size(kwds) == 0)))
430 return obj;
Guido van Rossum8ace1ab2002-04-06 01:05:01 +0000431 /* If the returned object is not an instance of type,
432 it won't be initialized. */
433 if (!PyType_IsSubtype(obj->ob_type, type))
434 return obj;
Tim Peters6d6c1a32001-08-02 04:15:00 +0000435 type = obj->ob_type;
Jeremy Hylton719841e2002-07-16 19:39:38 +0000436 if (PyType_HasFeature(type, Py_TPFLAGS_HAVE_CLASS) &&
437 type->tp_init != NULL &&
Tim Peters6d6c1a32001-08-02 04:15:00 +0000438 type->tp_init(obj, args, kwds) < 0) {
439 Py_DECREF(obj);
440 obj = NULL;
441 }
442 }
443 return obj;
444}
445
446PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000447PyType_GenericAlloc(PyTypeObject *type, Py_ssize_t nitems)
Tim Peters6d6c1a32001-08-02 04:15:00 +0000448{
Tim Peters6d6c1a32001-08-02 04:15:00 +0000449 PyObject *obj;
Guido van Rossume5c691a2003-03-07 15:13:17 +0000450 const size_t size = _PyObject_VAR_SIZE(type, nitems+1);
451 /* note that we need to add one, for the sentinel */
Tim Peters406fe3b2001-10-06 19:04:01 +0000452
453 if (PyType_IS_GC(type))
Neil Schemenauer09a2ae52002-04-12 03:06:53 +0000454 obj = _PyObject_GC_Malloc(size);
Tim Peters406fe3b2001-10-06 19:04:01 +0000455 else
Anthony Baxtera6286212006-04-11 07:42:36 +0000456 obj = (PyObject *)PyObject_MALLOC(size);
Tim Peters406fe3b2001-10-06 19:04:01 +0000457
Neil Schemenauerc806c882001-08-29 23:54:54 +0000458 if (obj == NULL)
Tim Peters6d6c1a32001-08-02 04:15:00 +0000459 return PyErr_NoMemory();
Tim Peters406fe3b2001-10-06 19:04:01 +0000460
Neil Schemenauerc806c882001-08-29 23:54:54 +0000461 memset(obj, '\0', size);
Tim Peters406fe3b2001-10-06 19:04:01 +0000462
Tim Peters6d6c1a32001-08-02 04:15:00 +0000463 if (type->tp_flags & Py_TPFLAGS_HEAPTYPE)
464 Py_INCREF(type);
Tim Peters406fe3b2001-10-06 19:04:01 +0000465
Tim Peters6d6c1a32001-08-02 04:15:00 +0000466 if (type->tp_itemsize == 0)
467 PyObject_INIT(obj, type);
468 else
469 (void) PyObject_INIT_VAR((PyVarObject *)obj, type, nitems);
Tim Peters406fe3b2001-10-06 19:04:01 +0000470
Tim Peters6d6c1a32001-08-02 04:15:00 +0000471 if (PyType_IS_GC(type))
Neil Schemenauerc806c882001-08-29 23:54:54 +0000472 _PyObject_GC_TRACK(obj);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000473 return obj;
474}
475
476PyObject *
477PyType_GenericNew(PyTypeObject *type, PyObject *args, PyObject *kwds)
478{
479 return type->tp_alloc(type, 0);
480}
481
Guido van Rossum9475a232001-10-05 20:51:39 +0000482/* Helpers for subtyping */
483
484static int
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000485traverse_slots(PyTypeObject *type, PyObject *self, visitproc visit, void *arg)
486{
Martin v. Löwis18e16552006-02-15 17:27:45 +0000487 Py_ssize_t i, n;
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000488 PyMemberDef *mp;
489
490 n = type->ob_size;
Guido van Rossume5c691a2003-03-07 15:13:17 +0000491 mp = PyHeapType_GET_MEMBERS((PyHeapTypeObject *)type);
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000492 for (i = 0; i < n; i++, mp++) {
493 if (mp->type == T_OBJECT_EX) {
494 char *addr = (char *)self + mp->offset;
495 PyObject *obj = *(PyObject **)addr;
496 if (obj != NULL) {
497 int err = visit(obj, arg);
498 if (err)
499 return err;
500 }
501 }
502 }
503 return 0;
504}
505
506static int
Guido van Rossum9475a232001-10-05 20:51:39 +0000507subtype_traverse(PyObject *self, visitproc visit, void *arg)
508{
509 PyTypeObject *type, *base;
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000510 traverseproc basetraverse;
Guido van Rossum9475a232001-10-05 20:51:39 +0000511
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000512 /* Find the nearest base with a different tp_traverse,
513 and traverse slots while we're at it */
Guido van Rossum9475a232001-10-05 20:51:39 +0000514 type = self->ob_type;
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000515 base = type;
516 while ((basetraverse = base->tp_traverse) == subtype_traverse) {
517 if (base->ob_size) {
518 int err = traverse_slots(base, self, visit, arg);
519 if (err)
520 return err;
521 }
Guido van Rossum9475a232001-10-05 20:51:39 +0000522 base = base->tp_base;
523 assert(base);
524 }
525
526 if (type->tp_dictoffset != base->tp_dictoffset) {
527 PyObject **dictptr = _PyObject_GetDictPtr(self);
Thomas Woutersc6e55062006-04-15 21:47:09 +0000528 if (dictptr && *dictptr)
529 Py_VISIT(*dictptr);
Guido van Rossum9475a232001-10-05 20:51:39 +0000530 }
531
Thomas Woutersc6e55062006-04-15 21:47:09 +0000532 if (type->tp_flags & Py_TPFLAGS_HEAPTYPE)
Guido van Rossuma3862092002-06-10 15:24:42 +0000533 /* For a heaptype, the instances count as references
534 to the type. Traverse the type so the collector
535 can find cycles involving this link. */
Thomas Woutersc6e55062006-04-15 21:47:09 +0000536 Py_VISIT(type);
Guido van Rossuma3862092002-06-10 15:24:42 +0000537
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000538 if (basetraverse)
539 return basetraverse(self, visit, arg);
540 return 0;
541}
542
543static void
544clear_slots(PyTypeObject *type, PyObject *self)
545{
Martin v. Löwis18e16552006-02-15 17:27:45 +0000546 Py_ssize_t i, n;
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000547 PyMemberDef *mp;
548
549 n = type->ob_size;
Guido van Rossume5c691a2003-03-07 15:13:17 +0000550 mp = PyHeapType_GET_MEMBERS((PyHeapTypeObject *)type);
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000551 for (i = 0; i < n; i++, mp++) {
552 if (mp->type == T_OBJECT_EX && !(mp->flags & READONLY)) {
553 char *addr = (char *)self + mp->offset;
554 PyObject *obj = *(PyObject **)addr;
555 if (obj != NULL) {
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000556 *(PyObject **)addr = NULL;
Thomas Woutersedf17d82006-04-15 17:28:34 +0000557 Py_DECREF(obj);
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000558 }
559 }
560 }
561}
562
563static int
564subtype_clear(PyObject *self)
565{
566 PyTypeObject *type, *base;
567 inquiry baseclear;
568
569 /* Find the nearest base with a different tp_clear
570 and clear slots while we're at it */
571 type = self->ob_type;
572 base = type;
573 while ((baseclear = base->tp_clear) == subtype_clear) {
574 if (base->ob_size)
575 clear_slots(base, self);
576 base = base->tp_base;
577 assert(base);
578 }
579
Guido van Rossuma3862092002-06-10 15:24:42 +0000580 /* There's no need to clear the instance dict (if any);
581 the collector will call its tp_clear handler. */
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000582
583 if (baseclear)
584 return baseclear(self);
Guido van Rossum9475a232001-10-05 20:51:39 +0000585 return 0;
586}
Tim Peters6d6c1a32001-08-02 04:15:00 +0000587
588static void
589subtype_dealloc(PyObject *self)
590{
Guido van Rossum14227b42001-12-06 02:35:58 +0000591 PyTypeObject *type, *base;
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000592 destructor basedealloc;
Tim Peters6d6c1a32001-08-02 04:15:00 +0000593
Guido van Rossum22b13872002-08-06 21:41:44 +0000594 /* Extract the type; we expect it to be a heap type */
595 type = self->ob_type;
596 assert(type->tp_flags & Py_TPFLAGS_HEAPTYPE);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000597
Guido van Rossum22b13872002-08-06 21:41:44 +0000598 /* Test whether the type has GC exactly once */
599
600 if (!PyType_IS_GC(type)) {
601 /* It's really rare to find a dynamic type that doesn't have
602 GC; it can only happen when deriving from 'object' and not
603 adding any slots or instance variables. This allows
604 certain simplifications: there's no need to call
605 clear_slots(), or DECREF the dict, or clear weakrefs. */
606
607 /* Maybe call finalizer; exit early if resurrected */
Guido van Rossumfebd61d2002-08-08 20:55:20 +0000608 if (type->tp_del) {
609 type->tp_del(self);
610 if (self->ob_refcnt > 0)
611 return;
612 }
Guido van Rossum22b13872002-08-06 21:41:44 +0000613
614 /* Find the nearest base with a different tp_dealloc */
615 base = type;
616 while ((basedealloc = base->tp_dealloc) == subtype_dealloc) {
617 assert(base->ob_size == 0);
618 base = base->tp_base;
619 assert(base);
620 }
621
622 /* Call the base tp_dealloc() */
623 assert(basedealloc);
624 basedealloc(self);
625
626 /* Can't reference self beyond this point */
627 Py_DECREF(type);
628
629 /* Done */
630 return;
631 }
632
633 /* We get here only if the type has GC */
634
635 /* UnTrack and re-Track around the trashcan macro, alas */
Andrew M. Kuchlingc9172d32003-02-06 15:22:49 +0000636 /* See explanation at end of function for full disclosure */
Guido van Rossum0906e072002-08-07 20:42:09 +0000637 PyObject_GC_UnTrack(self);
Guido van Rossumce8bcd82003-02-05 22:39:45 +0000638 ++_PyTrash_delete_nesting;
Guido van Rossum22b13872002-08-06 21:41:44 +0000639 Py_TRASHCAN_SAFE_BEGIN(self);
Guido van Rossumce8bcd82003-02-05 22:39:45 +0000640 --_PyTrash_delete_nesting;
Tim Petersf7f9e992003-11-13 21:59:32 +0000641 /* DO NOT restore GC tracking at this point. weakref callbacks
642 * (if any, and whether directly here or indirectly in something we
643 * call) may trigger GC, and if self is tracked at that point, it
644 * will look like trash to GC and GC will try to delete self again.
Tim Petersadd09b42003-11-12 20:43:28 +0000645 */
Guido van Rossum22b13872002-08-06 21:41:44 +0000646
Guido van Rossum59195fd2003-06-13 20:54:40 +0000647 /* Find the nearest base with a different tp_dealloc */
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000648 base = type;
649 while ((basedealloc = base->tp_dealloc) == subtype_dealloc) {
Tim Peters6d6c1a32001-08-02 04:15:00 +0000650 base = base->tp_base;
651 assert(base);
Guido van Rossum14227b42001-12-06 02:35:58 +0000652 }
653
Guido van Rossum1987c662003-05-29 14:29:23 +0000654 /* If we added a weaklist, we clear it. Do this *before* calling
Guido van Rossum59195fd2003-06-13 20:54:40 +0000655 the finalizer (__del__), clearing slots, or clearing the instance
656 dict. */
657
Guido van Rossum1987c662003-05-29 14:29:23 +0000658 if (type->tp_weaklistoffset && !base->tp_weaklistoffset)
659 PyObject_ClearWeakRefs(self);
660
661 /* Maybe call finalizer; exit early if resurrected */
662 if (type->tp_del) {
Tim Petersf7f9e992003-11-13 21:59:32 +0000663 _PyObject_GC_TRACK(self);
Guido van Rossum1987c662003-05-29 14:29:23 +0000664 type->tp_del(self);
665 if (self->ob_refcnt > 0)
Tim Petersf7f9e992003-11-13 21:59:32 +0000666 goto endlabel; /* resurrected */
667 else
668 _PyObject_GC_UNTRACK(self);
Guido van Rossum1987c662003-05-29 14:29:23 +0000669 }
670
Guido van Rossum59195fd2003-06-13 20:54:40 +0000671 /* Clear slots up to the nearest base with a different tp_dealloc */
672 base = type;
673 while ((basedealloc = base->tp_dealloc) == subtype_dealloc) {
674 if (base->ob_size)
675 clear_slots(base, self);
676 base = base->tp_base;
677 assert(base);
678 }
679
Tim Peters6d6c1a32001-08-02 04:15:00 +0000680 /* If we added a dict, DECREF it */
Guido van Rossum6fb3fde2001-08-30 20:00:07 +0000681 if (type->tp_dictoffset && !base->tp_dictoffset) {
682 PyObject **dictptr = _PyObject_GetDictPtr(self);
683 if (dictptr != NULL) {
684 PyObject *dict = *dictptr;
685 if (dict != NULL) {
686 Py_DECREF(dict);
687 *dictptr = NULL;
688 }
Tim Peters6d6c1a32001-08-02 04:15:00 +0000689 }
690 }
691
Tim Peters0bd743c2003-11-13 22:50:00 +0000692 /* Call the base tp_dealloc(); first retrack self if
693 * basedealloc knows about gc.
694 */
695 if (PyType_IS_GC(base))
696 _PyObject_GC_TRACK(self);
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000697 assert(basedealloc);
698 basedealloc(self);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000699
700 /* Can't reference self beyond this point */
Guido van Rossum22b13872002-08-06 21:41:44 +0000701 Py_DECREF(type);
702
Guido van Rossum0906e072002-08-07 20:42:09 +0000703 endlabel:
Guido van Rossumce8bcd82003-02-05 22:39:45 +0000704 ++_PyTrash_delete_nesting;
Guido van Rossum22b13872002-08-06 21:41:44 +0000705 Py_TRASHCAN_SAFE_END(self);
Guido van Rossumce8bcd82003-02-05 22:39:45 +0000706 --_PyTrash_delete_nesting;
707
708 /* Explanation of the weirdness around the trashcan macros:
709
710 Q. What do the trashcan macros do?
711
712 A. Read the comment titled "Trashcan mechanism" in object.h.
713 For one, this explains why there must be a call to GC-untrack
714 before the trashcan begin macro. Without understanding the
715 trashcan code, the answers to the following questions don't make
716 sense.
717
718 Q. Why do we GC-untrack before the trashcan and then immediately
719 GC-track again afterward?
720
721 A. In the case that the base class is GC-aware, the base class
722 probably GC-untracks the object. If it does that using the
723 UNTRACK macro, this will crash when the object is already
724 untracked. Because we don't know what the base class does, the
725 only safe thing is to make sure the object is tracked when we
726 call the base class dealloc. But... The trashcan begin macro
727 requires that the object is *untracked* before it is called. So
728 the dance becomes:
729
730 GC untrack
731 trashcan begin
732 GC track
733
Tim Petersf7f9e992003-11-13 21:59:32 +0000734 Q. Why did the last question say "immediately GC-track again"?
735 It's nowhere near immediately.
736
737 A. Because the code *used* to re-track immediately. Bad Idea.
738 self has a refcount of 0, and if gc ever gets its hands on it
739 (which can happen if any weakref callback gets invoked), it
740 looks like trash to gc too, and gc also tries to delete self
741 then. But we're already deleting self. Double dealloction is
742 a subtle disaster.
743
Guido van Rossumce8bcd82003-02-05 22:39:45 +0000744 Q. Why the bizarre (net-zero) manipulation of
745 _PyTrash_delete_nesting around the trashcan macros?
746
747 A. Some base classes (e.g. list) also use the trashcan mechanism.
748 The following scenario used to be possible:
749
750 - suppose the trashcan level is one below the trashcan limit
751
752 - subtype_dealloc() is called
753
754 - the trashcan limit is not yet reached, so the trashcan level
755 is incremented and the code between trashcan begin and end is
756 executed
757
758 - this destroys much of the object's contents, including its
759 slots and __dict__
760
761 - basedealloc() is called; this is really list_dealloc(), or
762 some other type which also uses the trashcan macros
763
764 - the trashcan limit is now reached, so the object is put on the
765 trashcan's to-be-deleted-later list
766
767 - basedealloc() returns
768
769 - subtype_dealloc() decrefs the object's type
770
771 - subtype_dealloc() returns
772
773 - later, the trashcan code starts deleting the objects from its
774 to-be-deleted-later list
775
776 - subtype_dealloc() is called *AGAIN* for the same object
777
778 - at the very least (if the destroyed slots and __dict__ don't
779 cause problems) the object's type gets decref'ed a second
780 time, which is *BAD*!!!
781
782 The remedy is to make sure that if the code between trashcan
783 begin and end in subtype_dealloc() is called, the code between
784 trashcan begin and end in basedealloc() will also be called.
785 This is done by decrementing the level after passing into the
786 trashcan block, and incrementing it just before leaving the
787 block.
788
789 But now it's possible that a chain of objects consisting solely
790 of objects whose deallocator is subtype_dealloc() will defeat
791 the trashcan mechanism completely: the decremented level means
792 that the effective level never reaches the limit. Therefore, we
793 *increment* the level *before* entering the trashcan block, and
794 matchingly decrement it after leaving. This means the trashcan
795 code will trigger a little early, but that's no big deal.
796
797 Q. Are there any live examples of code in need of all this
798 complexity?
799
800 A. Yes. See SF bug 668433 for code that crashed (when Python was
801 compiled in debug mode) before the trashcan level manipulations
802 were added. For more discussion, see SF patches 581742, 575073
803 and bug 574207.
804 */
Tim Peters6d6c1a32001-08-02 04:15:00 +0000805}
806
Jeremy Hylton938ace62002-07-17 16:30:39 +0000807static PyTypeObject *solid_base(PyTypeObject *type);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000808
Tim Peters6d6c1a32001-08-02 04:15:00 +0000809/* type test with subclassing support */
810
811int
812PyType_IsSubtype(PyTypeObject *a, PyTypeObject *b)
813{
814 PyObject *mro;
815
Guido van Rossum9478d072001-09-07 18:52:13 +0000816 if (!(a->tp_flags & Py_TPFLAGS_HAVE_CLASS))
817 return b == a || b == &PyBaseObject_Type;
818
Tim Peters6d6c1a32001-08-02 04:15:00 +0000819 mro = a->tp_mro;
820 if (mro != NULL) {
821 /* Deal with multiple inheritance without recursion
822 by walking the MRO tuple */
Martin v. Löwis18e16552006-02-15 17:27:45 +0000823 Py_ssize_t i, n;
Tim Peters6d6c1a32001-08-02 04:15:00 +0000824 assert(PyTuple_Check(mro));
825 n = PyTuple_GET_SIZE(mro);
826 for (i = 0; i < n; i++) {
827 if (PyTuple_GET_ITEM(mro, i) == (PyObject *)b)
828 return 1;
829 }
830 return 0;
831 }
832 else {
833 /* a is not completely initilized yet; follow tp_base */
834 do {
835 if (a == b)
836 return 1;
837 a = a->tp_base;
838 } while (a != NULL);
839 return b == &PyBaseObject_Type;
840 }
841}
842
Guido van Rossumf21c6be2001-09-14 17:51:50 +0000843/* Internal routines to do a method lookup in the type
Guido van Rossum60718732001-08-28 17:47:51 +0000844 without looking in the instance dictionary
845 (so we can't use PyObject_GetAttr) but still binding
846 it to the instance. The arguments are the object,
847 the method name as a C string, and the address of a
Guido van Rossumf21c6be2001-09-14 17:51:50 +0000848 static variable used to cache the interned Python string.
849
850 Two variants:
851
852 - lookup_maybe() returns NULL without raising an exception
853 when the _PyType_Lookup() call fails;
854
855 - lookup_method() always raises an exception upon errors.
856*/
Guido van Rossum60718732001-08-28 17:47:51 +0000857
858static PyObject *
Guido van Rossumf21c6be2001-09-14 17:51:50 +0000859lookup_maybe(PyObject *self, char *attrstr, PyObject **attrobj)
Guido van Rossum60718732001-08-28 17:47:51 +0000860{
861 PyObject *res;
862
863 if (*attrobj == NULL) {
864 *attrobj = PyString_InternFromString(attrstr);
865 if (*attrobj == NULL)
866 return NULL;
867 }
868 res = _PyType_Lookup(self->ob_type, *attrobj);
Guido van Rossumf21c6be2001-09-14 17:51:50 +0000869 if (res != NULL) {
Guido van Rossum60718732001-08-28 17:47:51 +0000870 descrgetfunc f;
871 if ((f = res->ob_type->tp_descr_get) == NULL)
872 Py_INCREF(res);
873 else
874 res = f(res, self, (PyObject *)(self->ob_type));
875 }
876 return res;
877}
878
Guido van Rossumf21c6be2001-09-14 17:51:50 +0000879static PyObject *
880lookup_method(PyObject *self, char *attrstr, PyObject **attrobj)
881{
882 PyObject *res = lookup_maybe(self, attrstr, attrobj);
883 if (res == NULL && !PyErr_Occurred())
884 PyErr_SetObject(PyExc_AttributeError, *attrobj);
885 return res;
886}
887
Guido van Rossum2730b132001-08-28 18:22:14 +0000888/* A variation of PyObject_CallMethod that uses lookup_method()
889 instead of PyObject_GetAttrString(). This uses the same convention
890 as lookup_method to cache the interned name string object. */
891
Neil Schemenauerf23473f2001-10-21 22:28:58 +0000892static PyObject *
Guido van Rossum2730b132001-08-28 18:22:14 +0000893call_method(PyObject *o, char *name, PyObject **nameobj, char *format, ...)
894{
895 va_list va;
896 PyObject *args, *func = 0, *retval;
Guido van Rossum2730b132001-08-28 18:22:14 +0000897 va_start(va, format);
898
Guido van Rossumda21c012001-10-03 00:50:18 +0000899 func = lookup_maybe(o, name, nameobj);
Guido van Rossumf21c6be2001-09-14 17:51:50 +0000900 if (func == NULL) {
901 va_end(va);
902 if (!PyErr_Occurred())
Guido van Rossumda21c012001-10-03 00:50:18 +0000903 PyErr_SetObject(PyExc_AttributeError, *nameobj);
Guido van Rossumf21c6be2001-09-14 17:51:50 +0000904 return NULL;
905 }
Guido van Rossumf21c6be2001-09-14 17:51:50 +0000906
907 if (format && *format)
908 args = Py_VaBuildValue(format, va);
909 else
910 args = PyTuple_New(0);
911
912 va_end(va);
913
914 if (args == NULL)
915 return NULL;
916
917 assert(PyTuple_Check(args));
918 retval = PyObject_Call(func, args, NULL);
919
920 Py_DECREF(args);
921 Py_DECREF(func);
922
923 return retval;
924}
925
926/* Clone of call_method() that returns NotImplemented when the lookup fails. */
927
Neil Schemenauerf23473f2001-10-21 22:28:58 +0000928static PyObject *
Guido van Rossumf21c6be2001-09-14 17:51:50 +0000929call_maybe(PyObject *o, char *name, PyObject **nameobj, char *format, ...)
930{
931 va_list va;
932 PyObject *args, *func = 0, *retval;
Guido van Rossumf21c6be2001-09-14 17:51:50 +0000933 va_start(va, format);
934
Guido van Rossumda21c012001-10-03 00:50:18 +0000935 func = lookup_maybe(o, name, nameobj);
Guido van Rossum2730b132001-08-28 18:22:14 +0000936 if (func == NULL) {
937 va_end(va);
Guido van Rossumf21c6be2001-09-14 17:51:50 +0000938 if (!PyErr_Occurred()) {
939 Py_INCREF(Py_NotImplemented);
940 return Py_NotImplemented;
941 }
Guido van Rossum717ce002001-09-14 16:58:08 +0000942 return NULL;
Guido van Rossum2730b132001-08-28 18:22:14 +0000943 }
944
945 if (format && *format)
946 args = Py_VaBuildValue(format, va);
947 else
948 args = PyTuple_New(0);
949
950 va_end(va);
951
Guido van Rossum717ce002001-09-14 16:58:08 +0000952 if (args == NULL)
Guido van Rossum2730b132001-08-28 18:22:14 +0000953 return NULL;
954
Guido van Rossum717ce002001-09-14 16:58:08 +0000955 assert(PyTuple_Check(args));
956 retval = PyObject_Call(func, args, NULL);
Guido van Rossum2730b132001-08-28 18:22:14 +0000957
958 Py_DECREF(args);
959 Py_DECREF(func);
960
961 return retval;
962}
963
Tim Petersa91e9642001-11-14 23:32:33 +0000964static int
965fill_classic_mro(PyObject *mro, PyObject *cls)
966{
967 PyObject *bases, *base;
Martin v. Löwis18e16552006-02-15 17:27:45 +0000968 Py_ssize_t i, n;
Tim Petersa91e9642001-11-14 23:32:33 +0000969
970 assert(PyList_Check(mro));
971 assert(PyClass_Check(cls));
972 i = PySequence_Contains(mro, cls);
973 if (i < 0)
974 return -1;
975 if (!i) {
976 if (PyList_Append(mro, cls) < 0)
977 return -1;
978 }
979 bases = ((PyClassObject *)cls)->cl_bases;
980 assert(bases && PyTuple_Check(bases));
981 n = PyTuple_GET_SIZE(bases);
982 for (i = 0; i < n; i++) {
983 base = PyTuple_GET_ITEM(bases, i);
984 if (fill_classic_mro(mro, base) < 0)
985 return -1;
986 }
987 return 0;
988}
989
990static PyObject *
991classic_mro(PyObject *cls)
992{
993 PyObject *mro;
994
995 assert(PyClass_Check(cls));
996 mro = PyList_New(0);
997 if (mro != NULL) {
998 if (fill_classic_mro(mro, cls) == 0)
999 return mro;
1000 Py_DECREF(mro);
1001 }
1002 return NULL;
1003}
1004
Tim Petersea7f75d2002-12-07 21:39:16 +00001005/*
Guido van Rossum1f121312002-11-14 19:49:16 +00001006 Method resolution order algorithm C3 described in
1007 "A Monotonic Superclass Linearization for Dylan",
1008 by Kim Barrett, Bob Cassel, Paul Haahr,
Tim Petersea7f75d2002-12-07 21:39:16 +00001009 David A. Moon, Keith Playford, and P. Tucker Withington.
Guido van Rossum1f121312002-11-14 19:49:16 +00001010 (OOPSLA 1996)
1011
Guido van Rossum98f33732002-11-25 21:36:54 +00001012 Some notes about the rules implied by C3:
1013
Tim Petersea7f75d2002-12-07 21:39:16 +00001014 No duplicate bases.
Guido van Rossum98f33732002-11-25 21:36:54 +00001015 It isn't legal to repeat a class in a list of base classes.
1016
1017 The next three properties are the 3 constraints in "C3".
1018
Tim Petersea7f75d2002-12-07 21:39:16 +00001019 Local precendece order.
Guido van Rossum98f33732002-11-25 21:36:54 +00001020 If A precedes B in C's MRO, then A will precede B in the MRO of all
1021 subclasses of C.
1022
1023 Monotonicity.
1024 The MRO of a class must be an extension without reordering of the
1025 MRO of each of its superclasses.
1026
1027 Extended Precedence Graph (EPG).
1028 Linearization is consistent if there is a path in the EPG from
1029 each class to all its successors in the linearization. See
1030 the paper for definition of EPG.
Guido van Rossum1f121312002-11-14 19:49:16 +00001031 */
1032
Tim Petersea7f75d2002-12-07 21:39:16 +00001033static int
Guido van Rossum1f121312002-11-14 19:49:16 +00001034tail_contains(PyObject *list, int whence, PyObject *o) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001035 Py_ssize_t j, size;
Guido van Rossum1f121312002-11-14 19:49:16 +00001036 size = PyList_GET_SIZE(list);
1037
1038 for (j = whence+1; j < size; j++) {
1039 if (PyList_GET_ITEM(list, j) == o)
1040 return 1;
1041 }
1042 return 0;
1043}
1044
Guido van Rossum98f33732002-11-25 21:36:54 +00001045static PyObject *
1046class_name(PyObject *cls)
1047{
1048 PyObject *name = PyObject_GetAttrString(cls, "__name__");
1049 if (name == NULL) {
1050 PyErr_Clear();
1051 Py_XDECREF(name);
1052 name = PyObject_Repr(cls);
1053 }
1054 if (name == NULL)
1055 return NULL;
1056 if (!PyString_Check(name)) {
1057 Py_DECREF(name);
1058 return NULL;
1059 }
1060 return name;
1061}
1062
1063static int
1064check_duplicates(PyObject *list)
1065{
Martin v. Löwis18e16552006-02-15 17:27:45 +00001066 Py_ssize_t i, j, n;
Guido van Rossum98f33732002-11-25 21:36:54 +00001067 /* Let's use a quadratic time algorithm,
1068 assuming that the bases lists is short.
1069 */
1070 n = PyList_GET_SIZE(list);
1071 for (i = 0; i < n; i++) {
1072 PyObject *o = PyList_GET_ITEM(list, i);
1073 for (j = i + 1; j < n; j++) {
1074 if (PyList_GET_ITEM(list, j) == o) {
1075 o = class_name(o);
1076 PyErr_Format(PyExc_TypeError,
1077 "duplicate base class %s",
1078 o ? PyString_AS_STRING(o) : "?");
1079 Py_XDECREF(o);
1080 return -1;
1081 }
1082 }
1083 }
1084 return 0;
1085}
1086
1087/* Raise a TypeError for an MRO order disagreement.
1088
1089 It's hard to produce a good error message. In the absence of better
1090 insight into error reporting, report the classes that were candidates
1091 to be put next into the MRO. There is some conflict between the
1092 order in which they should be put in the MRO, but it's hard to
1093 diagnose what constraint can't be satisfied.
1094*/
1095
1096static void
1097set_mro_error(PyObject *to_merge, int *remain)
1098{
Martin v. Löwis18e16552006-02-15 17:27:45 +00001099 Py_ssize_t i, n, off, to_merge_size;
Guido van Rossum98f33732002-11-25 21:36:54 +00001100 char buf[1000];
1101 PyObject *k, *v;
1102 PyObject *set = PyDict_New();
Georg Brandl5c170fd2006-03-17 19:03:25 +00001103 if (!set) return;
Guido van Rossum98f33732002-11-25 21:36:54 +00001104
1105 to_merge_size = PyList_GET_SIZE(to_merge);
1106 for (i = 0; i < to_merge_size; i++) {
1107 PyObject *L = PyList_GET_ITEM(to_merge, i);
1108 if (remain[i] < PyList_GET_SIZE(L)) {
1109 PyObject *c = PyList_GET_ITEM(L, remain[i]);
Georg Brandl5c170fd2006-03-17 19:03:25 +00001110 if (PyDict_SetItem(set, c, Py_None) < 0) {
1111 Py_DECREF(set);
Guido van Rossum98f33732002-11-25 21:36:54 +00001112 return;
Georg Brandl5c170fd2006-03-17 19:03:25 +00001113 }
Guido van Rossum98f33732002-11-25 21:36:54 +00001114 }
1115 }
1116 n = PyDict_Size(set);
1117
Raymond Hettingerf394df42003-04-06 19:13:41 +00001118 off = PyOS_snprintf(buf, sizeof(buf), "Cannot create a \
1119consistent method resolution\norder (MRO) for bases");
Guido van Rossum98f33732002-11-25 21:36:54 +00001120 i = 0;
Skip Montanaro429433b2006-04-18 00:35:43 +00001121 while (PyDict_Next(set, &i, &k, &v) && (size_t)off < sizeof(buf)) {
Guido van Rossum98f33732002-11-25 21:36:54 +00001122 PyObject *name = class_name(k);
1123 off += PyOS_snprintf(buf + off, sizeof(buf) - off, " %s",
1124 name ? PyString_AS_STRING(name) : "?");
1125 Py_XDECREF(name);
Skip Montanaro429433b2006-04-18 00:35:43 +00001126 if (--n && (size_t)(off+1) < sizeof(buf)) {
Guido van Rossum98f33732002-11-25 21:36:54 +00001127 buf[off++] = ',';
1128 buf[off] = '\0';
1129 }
1130 }
1131 PyErr_SetString(PyExc_TypeError, buf);
1132 Py_DECREF(set);
1133}
1134
Tim Petersea7f75d2002-12-07 21:39:16 +00001135static int
Guido van Rossum1f121312002-11-14 19:49:16 +00001136pmerge(PyObject *acc, PyObject* to_merge) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001137 Py_ssize_t i, j, to_merge_size, empty_cnt;
Guido van Rossum1f121312002-11-14 19:49:16 +00001138 int *remain;
Martin v. Löwis18e16552006-02-15 17:27:45 +00001139 int ok;
Tim Petersea7f75d2002-12-07 21:39:16 +00001140
Guido van Rossum1f121312002-11-14 19:49:16 +00001141 to_merge_size = PyList_GET_SIZE(to_merge);
1142
Guido van Rossum98f33732002-11-25 21:36:54 +00001143 /* remain stores an index into each sublist of to_merge.
1144 remain[i] is the index of the next base in to_merge[i]
1145 that is not included in acc.
1146 */
Anthony Baxtera6286212006-04-11 07:42:36 +00001147 remain = (int *)PyMem_MALLOC(SIZEOF_INT*to_merge_size);
Guido van Rossum1f121312002-11-14 19:49:16 +00001148 if (remain == NULL)
1149 return -1;
1150 for (i = 0; i < to_merge_size; i++)
1151 remain[i] = 0;
1152
1153 again:
1154 empty_cnt = 0;
1155 for (i = 0; i < to_merge_size; i++) {
1156 PyObject *candidate;
Tim Petersea7f75d2002-12-07 21:39:16 +00001157
Guido van Rossum1f121312002-11-14 19:49:16 +00001158 PyObject *cur_list = PyList_GET_ITEM(to_merge, i);
1159
1160 if (remain[i] >= PyList_GET_SIZE(cur_list)) {
1161 empty_cnt++;
1162 continue;
1163 }
1164
Guido van Rossum98f33732002-11-25 21:36:54 +00001165 /* Choose next candidate for MRO.
1166
1167 The input sequences alone can determine the choice.
1168 If not, choose the class which appears in the MRO
1169 of the earliest direct superclass of the new class.
1170 */
1171
Guido van Rossum1f121312002-11-14 19:49:16 +00001172 candidate = PyList_GET_ITEM(cur_list, remain[i]);
1173 for (j = 0; j < to_merge_size; j++) {
1174 PyObject *j_lst = PyList_GET_ITEM(to_merge, j);
Guido van Rossum98f33732002-11-25 21:36:54 +00001175 if (tail_contains(j_lst, remain[j], candidate)) {
Guido van Rossum1f121312002-11-14 19:49:16 +00001176 goto skip; /* continue outer loop */
Guido van Rossum98f33732002-11-25 21:36:54 +00001177 }
Guido van Rossum1f121312002-11-14 19:49:16 +00001178 }
1179 ok = PyList_Append(acc, candidate);
1180 if (ok < 0) {
1181 PyMem_Free(remain);
1182 return -1;
1183 }
1184 for (j = 0; j < to_merge_size; j++) {
1185 PyObject *j_lst = PyList_GET_ITEM(to_merge, j);
Guido van Rossum768158c2002-12-31 16:33:01 +00001186 if (remain[j] < PyList_GET_SIZE(j_lst) &&
1187 PyList_GET_ITEM(j_lst, remain[j]) == candidate) {
Guido van Rossum1f121312002-11-14 19:49:16 +00001188 remain[j]++;
1189 }
1190 }
1191 goto again;
Tim Peters9a6b8d82002-11-14 23:22:33 +00001192 skip: ;
Guido van Rossum1f121312002-11-14 19:49:16 +00001193 }
1194
Guido van Rossum98f33732002-11-25 21:36:54 +00001195 if (empty_cnt == to_merge_size) {
1196 PyMem_FREE(remain);
Guido van Rossum1f121312002-11-14 19:49:16 +00001197 return 0;
Guido van Rossum98f33732002-11-25 21:36:54 +00001198 }
1199 set_mro_error(to_merge, remain);
1200 PyMem_FREE(remain);
Guido van Rossum1f121312002-11-14 19:49:16 +00001201 return -1;
1202}
1203
Tim Peters6d6c1a32001-08-02 04:15:00 +00001204static PyObject *
1205mro_implementation(PyTypeObject *type)
1206{
Martin v. Löwis18e16552006-02-15 17:27:45 +00001207 Py_ssize_t i, n;
1208 int ok;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001209 PyObject *bases, *result;
Guido van Rossum1f121312002-11-14 19:49:16 +00001210 PyObject *to_merge, *bases_aslist;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001211
Guido van Rossum63517572002-06-18 16:44:57 +00001212 if(type->tp_dict == NULL) {
1213 if(PyType_Ready(type) < 0)
1214 return NULL;
1215 }
1216
Guido van Rossum98f33732002-11-25 21:36:54 +00001217 /* Find a superclass linearization that honors the constraints
1218 of the explicit lists of bases and the constraints implied by
Tim Petersea7f75d2002-12-07 21:39:16 +00001219 each base class.
Guido van Rossum98f33732002-11-25 21:36:54 +00001220
1221 to_merge is a list of lists, where each list is a superclass
1222 linearization implied by a base class. The last element of
1223 to_merge is the declared list of bases.
1224 */
1225
Tim Peters6d6c1a32001-08-02 04:15:00 +00001226 bases = type->tp_bases;
1227 n = PyTuple_GET_SIZE(bases);
Guido van Rossum1f121312002-11-14 19:49:16 +00001228
1229 to_merge = PyList_New(n+1);
1230 if (to_merge == NULL)
Tim Peters6d6c1a32001-08-02 04:15:00 +00001231 return NULL;
Guido van Rossum1f121312002-11-14 19:49:16 +00001232
Tim Peters6d6c1a32001-08-02 04:15:00 +00001233 for (i = 0; i < n; i++) {
Tim Petersa91e9642001-11-14 23:32:33 +00001234 PyObject *base = PyTuple_GET_ITEM(bases, i);
1235 PyObject *parentMRO;
1236 if (PyType_Check(base))
1237 parentMRO = PySequence_List(
1238 ((PyTypeObject*)base)->tp_mro);
1239 else
1240 parentMRO = classic_mro(base);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001241 if (parentMRO == NULL) {
Guido van Rossum1f121312002-11-14 19:49:16 +00001242 Py_DECREF(to_merge);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001243 return NULL;
Guido van Rossum1f121312002-11-14 19:49:16 +00001244 }
1245
1246 PyList_SET_ITEM(to_merge, i, parentMRO);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001247 }
Guido van Rossum1f121312002-11-14 19:49:16 +00001248
1249 bases_aslist = PySequence_List(bases);
1250 if (bases_aslist == NULL) {
1251 Py_DECREF(to_merge);
1252 return NULL;
1253 }
Guido van Rossum98f33732002-11-25 21:36:54 +00001254 /* This is just a basic sanity check. */
1255 if (check_duplicates(bases_aslist) < 0) {
1256 Py_DECREF(to_merge);
1257 Py_DECREF(bases_aslist);
1258 return NULL;
1259 }
Guido van Rossum1f121312002-11-14 19:49:16 +00001260 PyList_SET_ITEM(to_merge, n, bases_aslist);
1261
1262 result = Py_BuildValue("[O]", (PyObject *)type);
1263 if (result == NULL) {
1264 Py_DECREF(to_merge);
1265 return NULL;
1266 }
1267
1268 ok = pmerge(result, to_merge);
1269 Py_DECREF(to_merge);
1270 if (ok < 0) {
1271 Py_DECREF(result);
1272 return NULL;
1273 }
1274
Tim Peters6d6c1a32001-08-02 04:15:00 +00001275 return result;
1276}
1277
1278static PyObject *
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00001279mro_external(PyObject *self)
Tim Peters6d6c1a32001-08-02 04:15:00 +00001280{
1281 PyTypeObject *type = (PyTypeObject *)self;
1282
Tim Peters6d6c1a32001-08-02 04:15:00 +00001283 return mro_implementation(type);
1284}
1285
1286static int
1287mro_internal(PyTypeObject *type)
1288{
1289 PyObject *mro, *result, *tuple;
Armin Rigo037d1e02005-12-29 17:07:39 +00001290 int checkit = 0;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001291
1292 if (type->ob_type == &PyType_Type) {
1293 result = mro_implementation(type);
1294 }
1295 else {
Guido van Rossum60718732001-08-28 17:47:51 +00001296 static PyObject *mro_str;
Armin Rigo037d1e02005-12-29 17:07:39 +00001297 checkit = 1;
Guido van Rossum60718732001-08-28 17:47:51 +00001298 mro = lookup_method((PyObject *)type, "mro", &mro_str);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001299 if (mro == NULL)
1300 return -1;
1301 result = PyObject_CallObject(mro, NULL);
1302 Py_DECREF(mro);
1303 }
1304 if (result == NULL)
1305 return -1;
1306 tuple = PySequence_Tuple(result);
1307 Py_DECREF(result);
Armin Rigo037d1e02005-12-29 17:07:39 +00001308 if (tuple == NULL)
1309 return -1;
1310 if (checkit) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001311 Py_ssize_t i, len;
Armin Rigo037d1e02005-12-29 17:07:39 +00001312 PyObject *cls;
1313 PyTypeObject *solid;
1314
1315 solid = solid_base(type);
1316
1317 len = PyTuple_GET_SIZE(tuple);
1318
1319 for (i = 0; i < len; i++) {
1320 PyTypeObject *t;
1321 cls = PyTuple_GET_ITEM(tuple, i);
1322 if (PyClass_Check(cls))
1323 continue;
1324 else if (!PyType_Check(cls)) {
1325 PyErr_Format(PyExc_TypeError,
1326 "mro() returned a non-class ('%.500s')",
1327 cls->ob_type->tp_name);
Neal Norwitz50bf51a2006-01-02 02:46:54 +00001328 Py_DECREF(tuple);
Armin Rigo037d1e02005-12-29 17:07:39 +00001329 return -1;
1330 }
1331 t = (PyTypeObject*)cls;
1332 if (!PyType_IsSubtype(solid, solid_base(t))) {
1333 PyErr_Format(PyExc_TypeError,
1334 "mro() returned base with unsuitable layout ('%.500s')",
1335 t->tp_name);
Neal Norwitz50bf51a2006-01-02 02:46:54 +00001336 Py_DECREF(tuple);
Armin Rigo037d1e02005-12-29 17:07:39 +00001337 return -1;
1338 }
1339 }
1340 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001341 type->tp_mro = tuple;
1342 return 0;
1343}
1344
1345
1346/* Calculate the best base amongst multiple base classes.
1347 This is the first one that's on the path to the "solid base". */
1348
1349static PyTypeObject *
1350best_base(PyObject *bases)
1351{
Martin v. Löwis18e16552006-02-15 17:27:45 +00001352 Py_ssize_t i, n;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001353 PyTypeObject *base, *winner, *candidate, *base_i;
Tim Petersa91e9642001-11-14 23:32:33 +00001354 PyObject *base_proto;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001355
1356 assert(PyTuple_Check(bases));
1357 n = PyTuple_GET_SIZE(bases);
1358 assert(n > 0);
Tim Petersa91e9642001-11-14 23:32:33 +00001359 base = NULL;
1360 winner = NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001361 for (i = 0; i < n; i++) {
Tim Petersa91e9642001-11-14 23:32:33 +00001362 base_proto = PyTuple_GET_ITEM(bases, i);
1363 if (PyClass_Check(base_proto))
1364 continue;
1365 if (!PyType_Check(base_proto)) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001366 PyErr_SetString(
1367 PyExc_TypeError,
1368 "bases must be types");
1369 return NULL;
1370 }
Tim Petersa91e9642001-11-14 23:32:33 +00001371 base_i = (PyTypeObject *)base_proto;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001372 if (base_i->tp_dict == NULL) {
Guido van Rossum528b7eb2001-08-07 17:24:28 +00001373 if (PyType_Ready(base_i) < 0)
Tim Peters6d6c1a32001-08-02 04:15:00 +00001374 return NULL;
1375 }
1376 candidate = solid_base(base_i);
Tim Petersa91e9642001-11-14 23:32:33 +00001377 if (winner == NULL) {
1378 winner = candidate;
1379 base = base_i;
1380 }
1381 else if (PyType_IsSubtype(winner, candidate))
Tim Peters6d6c1a32001-08-02 04:15:00 +00001382 ;
1383 else if (PyType_IsSubtype(candidate, winner)) {
1384 winner = candidate;
1385 base = base_i;
1386 }
1387 else {
1388 PyErr_SetString(
1389 PyExc_TypeError,
1390 "multiple bases have "
1391 "instance lay-out conflict");
1392 return NULL;
1393 }
1394 }
Guido van Rossume54616c2001-12-14 04:19:56 +00001395 if (base == NULL)
1396 PyErr_SetString(PyExc_TypeError,
1397 "a new-style class can't have only classic bases");
Tim Peters6d6c1a32001-08-02 04:15:00 +00001398 return base;
1399}
1400
1401static int
1402extra_ivars(PyTypeObject *type, PyTypeObject *base)
1403{
Neil Schemenauerc806c882001-08-29 23:54:54 +00001404 size_t t_size = type->tp_basicsize;
1405 size_t b_size = base->tp_basicsize;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001406
Guido van Rossum9676b222001-08-17 20:32:36 +00001407 assert(t_size >= b_size); /* Else type smaller than base! */
Tim Peters6d6c1a32001-08-02 04:15:00 +00001408 if (type->tp_itemsize || base->tp_itemsize) {
1409 /* If itemsize is involved, stricter rules */
1410 return t_size != b_size ||
1411 type->tp_itemsize != base->tp_itemsize;
1412 }
Guido van Rossum9676b222001-08-17 20:32:36 +00001413 if (type->tp_weaklistoffset && base->tp_weaklistoffset == 0 &&
1414 type->tp_weaklistoffset + sizeof(PyObject *) == t_size)
1415 t_size -= sizeof(PyObject *);
1416 if (type->tp_dictoffset && base->tp_dictoffset == 0 &&
1417 type->tp_dictoffset + sizeof(PyObject *) == t_size)
1418 t_size -= sizeof(PyObject *);
1419
1420 return t_size != b_size;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001421}
1422
1423static PyTypeObject *
1424solid_base(PyTypeObject *type)
1425{
1426 PyTypeObject *base;
1427
1428 if (type->tp_base)
1429 base = solid_base(type->tp_base);
1430 else
1431 base = &PyBaseObject_Type;
1432 if (extra_ivars(type, base))
1433 return type;
1434 else
1435 return base;
1436}
1437
Jeremy Hylton938ace62002-07-17 16:30:39 +00001438static void object_dealloc(PyObject *);
1439static int object_init(PyObject *, PyObject *, PyObject *);
1440static int update_slot(PyTypeObject *, PyObject *);
1441static void fixup_slot_dispatchers(PyTypeObject *);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001442
1443static PyObject *
Guido van Rossum6fb3fde2001-08-30 20:00:07 +00001444subtype_dict(PyObject *obj, void *context)
1445{
1446 PyObject **dictptr = _PyObject_GetDictPtr(obj);
1447 PyObject *dict;
1448
1449 if (dictptr == NULL) {
1450 PyErr_SetString(PyExc_AttributeError,
1451 "This object has no __dict__");
1452 return NULL;
1453 }
1454 dict = *dictptr;
Guido van Rossum3926a632001-09-25 16:25:58 +00001455 if (dict == NULL)
1456 *dictptr = dict = PyDict_New();
1457 Py_XINCREF(dict);
1458 return dict;
Guido van Rossum6fb3fde2001-08-30 20:00:07 +00001459}
1460
Guido van Rossum6661be32001-10-26 04:26:12 +00001461static int
1462subtype_setdict(PyObject *obj, PyObject *value, void *context)
1463{
1464 PyObject **dictptr = _PyObject_GetDictPtr(obj);
1465 PyObject *dict;
1466
1467 if (dictptr == NULL) {
1468 PyErr_SetString(PyExc_AttributeError,
1469 "This object has no __dict__");
1470 return -1;
1471 }
Guido van Rossumd331cb52001-12-05 19:46:42 +00001472 if (value != NULL && !PyDict_Check(value)) {
Georg Brandlccff7852006-06-18 22:17:29 +00001473 PyErr_Format(PyExc_TypeError,
1474 "__dict__ must be set to a dictionary, "
1475 "not a '%.200s'", value->ob_type->tp_name);
Guido van Rossum6661be32001-10-26 04:26:12 +00001476 return -1;
1477 }
1478 dict = *dictptr;
Guido van Rossumd331cb52001-12-05 19:46:42 +00001479 Py_XINCREF(value);
Guido van Rossum6661be32001-10-26 04:26:12 +00001480 *dictptr = value;
1481 Py_XDECREF(dict);
1482 return 0;
1483}
1484
Guido van Rossumad47da02002-08-12 19:05:44 +00001485static PyObject *
1486subtype_getweakref(PyObject *obj, void *context)
1487{
1488 PyObject **weaklistptr;
1489 PyObject *result;
1490
1491 if (obj->ob_type->tp_weaklistoffset == 0) {
1492 PyErr_SetString(PyExc_AttributeError,
Fred Drake7a36f5f2006-08-04 05:17:21 +00001493 "This object has no __weakref__");
Guido van Rossumad47da02002-08-12 19:05:44 +00001494 return NULL;
1495 }
1496 assert(obj->ob_type->tp_weaklistoffset > 0);
1497 assert(obj->ob_type->tp_weaklistoffset + sizeof(PyObject *) <=
Guido van Rossum3747a0f2002-08-12 19:25:08 +00001498 (size_t)(obj->ob_type->tp_basicsize));
Guido van Rossumad47da02002-08-12 19:05:44 +00001499 weaklistptr = (PyObject **)
Guido van Rossum3747a0f2002-08-12 19:25:08 +00001500 ((char *)obj + obj->ob_type->tp_weaklistoffset);
Guido van Rossumad47da02002-08-12 19:05:44 +00001501 if (*weaklistptr == NULL)
1502 result = Py_None;
1503 else
1504 result = *weaklistptr;
1505 Py_INCREF(result);
1506 return result;
1507}
1508
Guido van Rossum373c7412003-01-07 13:41:37 +00001509/* Three variants on the subtype_getsets list. */
1510
1511static PyGetSetDef subtype_getsets_full[] = {
Guido van Rossumad47da02002-08-12 19:05:44 +00001512 {"__dict__", subtype_dict, subtype_setdict,
Neal Norwitz858e34f2002-08-13 17:18:45 +00001513 PyDoc_STR("dictionary for instance variables (if defined)")},
Guido van Rossumad47da02002-08-12 19:05:44 +00001514 {"__weakref__", subtype_getweakref, NULL,
Neal Norwitz858e34f2002-08-13 17:18:45 +00001515 PyDoc_STR("list of weak references to the object (if defined)")},
Guido van Rossumad47da02002-08-12 19:05:44 +00001516 {0}
Guido van Rossum6fb3fde2001-08-30 20:00:07 +00001517};
1518
Guido van Rossum373c7412003-01-07 13:41:37 +00001519static PyGetSetDef subtype_getsets_dict_only[] = {
1520 {"__dict__", subtype_dict, subtype_setdict,
1521 PyDoc_STR("dictionary for instance variables (if defined)")},
1522 {0}
1523};
1524
1525static PyGetSetDef subtype_getsets_weakref_only[] = {
1526 {"__weakref__", subtype_getweakref, NULL,
1527 PyDoc_STR("list of weak references to the object (if defined)")},
1528 {0}
1529};
1530
Guido van Rossum9923ffe2002-06-04 19:52:53 +00001531static int
1532valid_identifier(PyObject *s)
1533{
Guido van Rossum03013a02002-07-16 14:30:28 +00001534 unsigned char *p;
Martin v. Löwis18e16552006-02-15 17:27:45 +00001535 Py_ssize_t i, n;
Guido van Rossum9923ffe2002-06-04 19:52:53 +00001536
1537 if (!PyString_Check(s)) {
Georg Brandlccff7852006-06-18 22:17:29 +00001538 PyErr_Format(PyExc_TypeError,
1539 "__slots__ items must be strings, not '%.200s'",
1540 s->ob_type->tp_name);
Guido van Rossum9923ffe2002-06-04 19:52:53 +00001541 return 0;
1542 }
Guido van Rossum03013a02002-07-16 14:30:28 +00001543 p = (unsigned char *) PyString_AS_STRING(s);
Guido van Rossum9923ffe2002-06-04 19:52:53 +00001544 n = PyString_GET_SIZE(s);
1545 /* We must reject an empty name. As a hack, we bump the
1546 length to 1 so that the loop will balk on the trailing \0. */
1547 if (n == 0)
1548 n = 1;
1549 for (i = 0; i < n; i++, p++) {
1550 if (!(i == 0 ? isalpha(*p) : isalnum(*p)) && *p != '_') {
1551 PyErr_SetString(PyExc_TypeError,
1552 "__slots__ must be identifiers");
1553 return 0;
1554 }
1555 }
1556 return 1;
1557}
1558
Martin v. Löwisd919a592002-10-14 21:07:28 +00001559#ifdef Py_USING_UNICODE
1560/* Replace Unicode objects in slots. */
1561
1562static PyObject *
Martin v. Löwiseb079f12006-02-16 14:32:27 +00001563_unicode_to_string(PyObject *slots, Py_ssize_t nslots)
Martin v. Löwisd919a592002-10-14 21:07:28 +00001564{
1565 PyObject *tmp = slots;
1566 PyObject *o, *o1;
Martin v. Löwiseb079f12006-02-16 14:32:27 +00001567 Py_ssize_t i;
Martin v. Löwis18e16552006-02-15 17:27:45 +00001568 ssizessizeargfunc copy = slots->ob_type->tp_as_sequence->sq_slice;
Martin v. Löwisd919a592002-10-14 21:07:28 +00001569 for (i = 0; i < nslots; i++) {
1570 if (PyUnicode_Check(o = PyTuple_GET_ITEM(tmp, i))) {
1571 if (tmp == slots) {
1572 tmp = copy(slots, 0, PyTuple_GET_SIZE(slots));
1573 if (tmp == NULL)
1574 return NULL;
1575 }
1576 o1 = _PyUnicode_AsDefaultEncodedString
1577 (o, NULL);
1578 if (o1 == NULL) {
1579 Py_DECREF(tmp);
1580 return 0;
1581 }
1582 Py_INCREF(o1);
1583 Py_DECREF(o);
1584 PyTuple_SET_ITEM(tmp, i, o1);
1585 }
1586 }
1587 return tmp;
1588}
1589#endif
1590
Guido van Rossum6fb3fde2001-08-30 20:00:07 +00001591static PyObject *
Tim Peters6d6c1a32001-08-02 04:15:00 +00001592type_new(PyTypeObject *metatype, PyObject *args, PyObject *kwds)
1593{
1594 PyObject *name, *bases, *dict;
Martin v. Löwis15e62742006-02-27 16:46:16 +00001595 static char *kwlist[] = {"name", "bases", "dict", 0};
Raymond Hettinger0ae0c072002-06-20 22:23:15 +00001596 PyObject *slots, *tmp, *newslots;
Guido van Rossum8d32c8b2001-08-17 11:18:38 +00001597 PyTypeObject *type, *base, *tmptype, *winner;
Guido van Rossume5c691a2003-03-07 15:13:17 +00001598 PyHeapTypeObject *et;
Guido van Rossum6f799372001-09-20 20:46:19 +00001599 PyMemberDef *mp;
Martin v. Löwis18e16552006-02-15 17:27:45 +00001600 Py_ssize_t i, nbases, nslots, slotoffset, add_dict, add_weak;
Guido van Rossumad47da02002-08-12 19:05:44 +00001601 int j, may_add_dict, may_add_weak;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001602
Tim Peters3abca122001-10-27 19:37:48 +00001603 assert(args != NULL && PyTuple_Check(args));
1604 assert(kwds == NULL || PyDict_Check(kwds));
1605
Guido van Rossum8d32c8b2001-08-17 11:18:38 +00001606 /* Special case: type(x) should return x->ob_type */
Tim Peters3abca122001-10-27 19:37:48 +00001607 {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001608 const Py_ssize_t nargs = PyTuple_GET_SIZE(args);
1609 const Py_ssize_t nkwds = kwds == NULL ? 0 : PyDict_Size(kwds);
Tim Peters3abca122001-10-27 19:37:48 +00001610
1611 if (PyType_CheckExact(metatype) && nargs == 1 && nkwds == 0) {
1612 PyObject *x = PyTuple_GET_ITEM(args, 0);
1613 Py_INCREF(x->ob_type);
1614 return (PyObject *) x->ob_type;
1615 }
1616
1617 /* SF bug 475327 -- if that didn't trigger, we need 3
1618 arguments. but PyArg_ParseTupleAndKeywords below may give
1619 a msg saying type() needs exactly 3. */
1620 if (nargs + nkwds != 3) {
1621 PyErr_SetString(PyExc_TypeError,
1622 "type() takes 1 or 3 arguments");
1623 return NULL;
1624 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001625 }
1626
Guido van Rossum8d32c8b2001-08-17 11:18:38 +00001627 /* Check arguments: (name, bases, dict) */
Tim Peters6d6c1a32001-08-02 04:15:00 +00001628 if (!PyArg_ParseTupleAndKeywords(args, kwds, "SO!O!:type", kwlist,
1629 &name,
1630 &PyTuple_Type, &bases,
1631 &PyDict_Type, &dict))
1632 return NULL;
1633
1634 /* Determine the proper metatype to deal with this,
1635 and check for metatype conflicts while we're at it.
1636 Note that if some other metatype wins to contract,
1637 it's possible that its instances are not types. */
1638 nbases = PyTuple_GET_SIZE(bases);
Guido van Rossum8d32c8b2001-08-17 11:18:38 +00001639 winner = metatype;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001640 for (i = 0; i < nbases; i++) {
1641 tmp = PyTuple_GET_ITEM(bases, i);
1642 tmptype = tmp->ob_type;
Tim Petersa91e9642001-11-14 23:32:33 +00001643 if (tmptype == &PyClass_Type)
1644 continue; /* Special case classic classes */
Guido van Rossum8d32c8b2001-08-17 11:18:38 +00001645 if (PyType_IsSubtype(winner, tmptype))
Tim Peters6d6c1a32001-08-02 04:15:00 +00001646 continue;
Guido van Rossum8d32c8b2001-08-17 11:18:38 +00001647 if (PyType_IsSubtype(tmptype, winner)) {
1648 winner = tmptype;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001649 continue;
1650 }
1651 PyErr_SetString(PyExc_TypeError,
Guido van Rossum636688d2003-04-23 12:07:22 +00001652 "metaclass conflict: "
1653 "the metaclass of a derived class "
1654 "must be a (non-strict) subclass "
1655 "of the metaclasses of all its bases");
Tim Peters6d6c1a32001-08-02 04:15:00 +00001656 return NULL;
1657 }
Guido van Rossum8d32c8b2001-08-17 11:18:38 +00001658 if (winner != metatype) {
1659 if (winner->tp_new != type_new) /* Pass it to the winner */
1660 return winner->tp_new(winner, args, kwds);
1661 metatype = winner;
1662 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001663
1664 /* Adjust for empty tuple bases */
1665 if (nbases == 0) {
Raymond Hettinger8ae46892003-10-12 19:09:37 +00001666 bases = PyTuple_Pack(1, &PyBaseObject_Type);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001667 if (bases == NULL)
1668 return NULL;
1669 nbases = 1;
1670 }
1671 else
1672 Py_INCREF(bases);
1673
1674 /* XXX From here until type is allocated, "return NULL" leaks bases! */
1675
1676 /* Calculate best base, and check that all bases are type objects */
1677 base = best_base(bases);
Michael W. Hudsona6a277d2003-08-08 13:57:22 +00001678 if (base == NULL) {
1679 Py_DECREF(bases);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001680 return NULL;
Michael W. Hudsona6a277d2003-08-08 13:57:22 +00001681 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001682 if (!PyType_HasFeature(base, Py_TPFLAGS_BASETYPE)) {
1683 PyErr_Format(PyExc_TypeError,
1684 "type '%.100s' is not an acceptable base type",
1685 base->tp_name);
Michael W. Hudsona6a277d2003-08-08 13:57:22 +00001686 Py_DECREF(bases);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001687 return NULL;
1688 }
1689
Tim Peters6d6c1a32001-08-02 04:15:00 +00001690 /* Check for a __slots__ sequence variable in dict, and count it */
1691 slots = PyDict_GetItemString(dict, "__slots__");
1692 nslots = 0;
Guido van Rossum9676b222001-08-17 20:32:36 +00001693 add_dict = 0;
1694 add_weak = 0;
Guido van Rossumad47da02002-08-12 19:05:44 +00001695 may_add_dict = base->tp_dictoffset == 0;
1696 may_add_weak = base->tp_weaklistoffset == 0 && base->tp_itemsize == 0;
1697 if (slots == NULL) {
1698 if (may_add_dict) {
1699 add_dict++;
1700 }
1701 if (may_add_weak) {
1702 add_weak++;
1703 }
1704 }
1705 else {
1706 /* Have slots */
1707
Tim Peters6d6c1a32001-08-02 04:15:00 +00001708 /* Make it into a tuple */
1709 if (PyString_Check(slots))
Raymond Hettinger8ae46892003-10-12 19:09:37 +00001710 slots = PyTuple_Pack(1, slots);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001711 else
1712 slots = PySequence_Tuple(slots);
Michael W. Hudsona6a277d2003-08-08 13:57:22 +00001713 if (slots == NULL) {
1714 Py_DECREF(bases);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001715 return NULL;
Michael W. Hudsona6a277d2003-08-08 13:57:22 +00001716 }
Guido van Rossumad47da02002-08-12 19:05:44 +00001717 assert(PyTuple_Check(slots));
1718
1719 /* Are slots allowed? */
Tim Peters6d6c1a32001-08-02 04:15:00 +00001720 nslots = PyTuple_GET_SIZE(slots);
Jeremy Hylton1c7a0ea2003-07-16 16:08:23 +00001721 if (nslots > 0 && base->tp_itemsize != 0) {
Guido van Rossumc4141872001-08-30 04:43:35 +00001722 PyErr_Format(PyExc_TypeError,
1723 "nonempty __slots__ "
1724 "not supported for subtype of '%s'",
1725 base->tp_name);
Guido van Rossumad47da02002-08-12 19:05:44 +00001726 bad_slots:
Michael W. Hudsona6a277d2003-08-08 13:57:22 +00001727 Py_DECREF(bases);
Guido van Rossumad47da02002-08-12 19:05:44 +00001728 Py_DECREF(slots);
Guido van Rossumc4141872001-08-30 04:43:35 +00001729 return NULL;
1730 }
Guido van Rossumad47da02002-08-12 19:05:44 +00001731
Martin v. Löwisd919a592002-10-14 21:07:28 +00001732#ifdef Py_USING_UNICODE
1733 tmp = _unicode_to_string(slots, nslots);
Martin v. Löwis13b1a5c2002-10-14 21:11:34 +00001734 if (tmp != slots) {
1735 Py_DECREF(slots);
1736 slots = tmp;
1737 }
Martin v. Löwisd919a592002-10-14 21:07:28 +00001738 if (!tmp)
1739 return NULL;
1740#endif
Guido van Rossumad47da02002-08-12 19:05:44 +00001741 /* Check for valid slot names and two special cases */
Tim Peters6d6c1a32001-08-02 04:15:00 +00001742 for (i = 0; i < nslots; i++) {
Guido van Rossumad47da02002-08-12 19:05:44 +00001743 PyObject *tmp = PyTuple_GET_ITEM(slots, i);
1744 char *s;
1745 if (!valid_identifier(tmp))
1746 goto bad_slots;
1747 assert(PyString_Check(tmp));
1748 s = PyString_AS_STRING(tmp);
1749 if (strcmp(s, "__dict__") == 0) {
1750 if (!may_add_dict || add_dict) {
1751 PyErr_SetString(PyExc_TypeError,
1752 "__dict__ slot disallowed: "
1753 "we already got one");
1754 goto bad_slots;
1755 }
1756 add_dict++;
1757 }
1758 if (strcmp(s, "__weakref__") == 0) {
1759 if (!may_add_weak || add_weak) {
1760 PyErr_SetString(PyExc_TypeError,
1761 "__weakref__ slot disallowed: "
1762 "either we already got one, "
1763 "or __itemsize__ != 0");
1764 goto bad_slots;
1765 }
1766 add_weak++;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001767 }
1768 }
Raymond Hettinger0ae0c072002-06-20 22:23:15 +00001769
Guido van Rossumad47da02002-08-12 19:05:44 +00001770 /* Copy slots into yet another tuple, demangling names */
1771 newslots = PyTuple_New(nslots - add_dict - add_weak);
Raymond Hettinger0ae0c072002-06-20 22:23:15 +00001772 if (newslots == NULL)
Guido van Rossumad47da02002-08-12 19:05:44 +00001773 goto bad_slots;
1774 for (i = j = 0; i < nslots; i++) {
1775 char *s;
Raymond Hettinger0ae0c072002-06-20 22:23:15 +00001776 tmp = PyTuple_GET_ITEM(slots, i);
Guido van Rossumad47da02002-08-12 19:05:44 +00001777 s = PyString_AS_STRING(tmp);
1778 if ((add_dict && strcmp(s, "__dict__") == 0) ||
1779 (add_weak && strcmp(s, "__weakref__") == 0))
1780 continue;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001781 tmp =_Py_Mangle(name, tmp);
1782 if (!tmp)
1783 goto bad_slots;
Guido van Rossumad47da02002-08-12 19:05:44 +00001784 PyTuple_SET_ITEM(newslots, j, tmp);
1785 j++;
Raymond Hettinger0ae0c072002-06-20 22:23:15 +00001786 }
Guido van Rossumad47da02002-08-12 19:05:44 +00001787 assert(j == nslots - add_dict - add_weak);
1788 nslots = j;
Raymond Hettinger0ae0c072002-06-20 22:23:15 +00001789 Py_DECREF(slots);
1790 slots = newslots;
1791
Guido van Rossumad47da02002-08-12 19:05:44 +00001792 /* Secondary bases may provide weakrefs or dict */
1793 if (nbases > 1 &&
1794 ((may_add_dict && !add_dict) ||
1795 (may_add_weak && !add_weak))) {
1796 for (i = 0; i < nbases; i++) {
1797 tmp = PyTuple_GET_ITEM(bases, i);
1798 if (tmp == (PyObject *)base)
1799 continue; /* Skip primary base */
1800 if (PyClass_Check(tmp)) {
1801 /* Classic base class provides both */
1802 if (may_add_dict && !add_dict)
1803 add_dict++;
1804 if (may_add_weak && !add_weak)
1805 add_weak++;
1806 break;
1807 }
1808 assert(PyType_Check(tmp));
1809 tmptype = (PyTypeObject *)tmp;
1810 if (may_add_dict && !add_dict &&
1811 tmptype->tp_dictoffset != 0)
1812 add_dict++;
1813 if (may_add_weak && !add_weak &&
1814 tmptype->tp_weaklistoffset != 0)
1815 add_weak++;
1816 if (may_add_dict && !add_dict)
1817 continue;
1818 if (may_add_weak && !add_weak)
1819 continue;
1820 /* Nothing more to check */
1821 break;
1822 }
1823 }
Guido van Rossum9676b222001-08-17 20:32:36 +00001824 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001825
1826 /* XXX From here until type is safely allocated,
1827 "return NULL" may leak slots! */
1828
1829 /* Allocate the type object */
1830 type = (PyTypeObject *)metatype->tp_alloc(metatype, nslots);
Guido van Rossumad47da02002-08-12 19:05:44 +00001831 if (type == NULL) {
1832 Py_XDECREF(slots);
Michael W. Hudsona6a277d2003-08-08 13:57:22 +00001833 Py_DECREF(bases);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001834 return NULL;
Guido van Rossumad47da02002-08-12 19:05:44 +00001835 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001836
1837 /* Keep name and slots alive in the extended type object */
Guido van Rossume5c691a2003-03-07 15:13:17 +00001838 et = (PyHeapTypeObject *)type;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001839 Py_INCREF(name);
Georg Brandlc255c7b2006-02-20 22:27:28 +00001840 et->ht_name = name;
1841 et->ht_slots = slots;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001842
Guido van Rossumdc91b992001-08-08 22:26:22 +00001843 /* Initialize tp_flags */
Tim Peters6d6c1a32001-08-02 04:15:00 +00001844 type->tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HEAPTYPE |
1845 Py_TPFLAGS_BASETYPE;
Guido van Rossum048eb752001-10-02 21:24:57 +00001846 if (base->tp_flags & Py_TPFLAGS_HAVE_GC)
1847 type->tp_flags |= Py_TPFLAGS_HAVE_GC;
Guido van Rossumdc91b992001-08-08 22:26:22 +00001848
1849 /* It's a new-style number unless it specifically inherits any
1850 old-style numeric behavior */
1851 if ((base->tp_flags & Py_TPFLAGS_CHECKTYPES) ||
1852 (base->tp_as_number == NULL))
1853 type->tp_flags |= Py_TPFLAGS_CHECKTYPES;
1854
1855 /* Initialize essential fields */
Tim Peters6d6c1a32001-08-02 04:15:00 +00001856 type->tp_as_number = &et->as_number;
1857 type->tp_as_sequence = &et->as_sequence;
1858 type->tp_as_mapping = &et->as_mapping;
1859 type->tp_as_buffer = &et->as_buffer;
1860 type->tp_name = PyString_AS_STRING(name);
1861
1862 /* Set tp_base and tp_bases */
1863 type->tp_bases = bases;
1864 Py_INCREF(base);
1865 type->tp_base = base;
1866
Guido van Rossum687ae002001-10-15 22:03:32 +00001867 /* Initialize tp_dict from passed-in dict */
1868 type->tp_dict = dict = PyDict_Copy(dict);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001869 if (dict == NULL) {
1870 Py_DECREF(type);
1871 return NULL;
1872 }
1873
Guido van Rossumc3542212001-08-16 09:18:56 +00001874 /* Set __module__ in the dict */
1875 if (PyDict_GetItemString(dict, "__module__") == NULL) {
1876 tmp = PyEval_GetGlobals();
1877 if (tmp != NULL) {
1878 tmp = PyDict_GetItemString(tmp, "__name__");
1879 if (tmp != NULL) {
1880 if (PyDict_SetItemString(dict, "__module__",
1881 tmp) < 0)
1882 return NULL;
1883 }
1884 }
1885 }
1886
Tim Peters2f93e282001-10-04 05:27:00 +00001887 /* Set tp_doc to a copy of dict['__doc__'], if the latter is there
Tim Peters24008312002-03-17 18:56:20 +00001888 and is a string. The __doc__ accessor will first look for tp_doc;
1889 if that fails, it will still look into __dict__.
Tim Peters2f93e282001-10-04 05:27:00 +00001890 */
1891 {
1892 PyObject *doc = PyDict_GetItemString(dict, "__doc__");
1893 if (doc != NULL && PyString_Check(doc)) {
1894 const size_t n = (size_t)PyString_GET_SIZE(doc);
Anthony Baxtera6286212006-04-11 07:42:36 +00001895 char *tp_doc = (char *)PyObject_MALLOC(n+1);
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001896 if (tp_doc == NULL) {
Tim Peters2f93e282001-10-04 05:27:00 +00001897 Py_DECREF(type);
1898 return NULL;
1899 }
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001900 memcpy(tp_doc, PyString_AS_STRING(doc), n+1);
1901 type->tp_doc = tp_doc;
Tim Peters2f93e282001-10-04 05:27:00 +00001902 }
1903 }
1904
Tim Peters6d6c1a32001-08-02 04:15:00 +00001905 /* Special-case __new__: if it's a plain function,
1906 make it a static function */
1907 tmp = PyDict_GetItemString(dict, "__new__");
1908 if (tmp != NULL && PyFunction_Check(tmp)) {
1909 tmp = PyStaticMethod_New(tmp);
1910 if (tmp == NULL) {
1911 Py_DECREF(type);
1912 return NULL;
1913 }
1914 PyDict_SetItemString(dict, "__new__", tmp);
1915 Py_DECREF(tmp);
1916 }
1917
1918 /* Add descriptors for custom slots from __slots__, or for __dict__ */
Guido van Rossume5c691a2003-03-07 15:13:17 +00001919 mp = PyHeapType_GET_MEMBERS(et);
Neil Schemenauerc806c882001-08-29 23:54:54 +00001920 slotoffset = base->tp_basicsize;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001921 if (slots != NULL) {
1922 for (i = 0; i < nslots; i++, mp++) {
1923 mp->name = PyString_AS_STRING(
1924 PyTuple_GET_ITEM(slots, i));
Guido van Rossum64b206c2001-12-04 17:13:22 +00001925 mp->type = T_OBJECT_EX;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001926 mp->offset = slotoffset;
Guido van Rossum9676b222001-08-17 20:32:36 +00001927 if (base->tp_weaklistoffset == 0 &&
Guido van Rossum64b206c2001-12-04 17:13:22 +00001928 strcmp(mp->name, "__weakref__") == 0) {
Guido van Rossumad47da02002-08-12 19:05:44 +00001929 add_weak++;
Guido van Rossum64b206c2001-12-04 17:13:22 +00001930 mp->type = T_OBJECT;
Guido van Rossum9923ffe2002-06-04 19:52:53 +00001931 mp->flags = READONLY;
Guido van Rossum9676b222001-08-17 20:32:36 +00001932 type->tp_weaklistoffset = slotoffset;
Guido van Rossum64b206c2001-12-04 17:13:22 +00001933 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001934 slotoffset += sizeof(PyObject *);
1935 }
1936 }
Guido van Rossumad47da02002-08-12 19:05:44 +00001937 if (add_dict) {
1938 if (base->tp_itemsize)
1939 type->tp_dictoffset = -(long)sizeof(PyObject *);
1940 else
1941 type->tp_dictoffset = slotoffset;
1942 slotoffset += sizeof(PyObject *);
1943 }
1944 if (add_weak) {
1945 assert(!base->tp_itemsize);
1946 type->tp_weaklistoffset = slotoffset;
1947 slotoffset += sizeof(PyObject *);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001948 }
1949 type->tp_basicsize = slotoffset;
Guido van Rossum6fb3fde2001-08-30 20:00:07 +00001950 type->tp_itemsize = base->tp_itemsize;
Guido van Rossume5c691a2003-03-07 15:13:17 +00001951 type->tp_members = PyHeapType_GET_MEMBERS(et);
Guido van Rossum373c7412003-01-07 13:41:37 +00001952
1953 if (type->tp_weaklistoffset && type->tp_dictoffset)
1954 type->tp_getset = subtype_getsets_full;
1955 else if (type->tp_weaklistoffset && !type->tp_dictoffset)
1956 type->tp_getset = subtype_getsets_weakref_only;
1957 else if (!type->tp_weaklistoffset && type->tp_dictoffset)
1958 type->tp_getset = subtype_getsets_dict_only;
1959 else
1960 type->tp_getset = NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001961
1962 /* Special case some slots */
1963 if (type->tp_dictoffset != 0 || nslots > 0) {
1964 if (base->tp_getattr == NULL && base->tp_getattro == NULL)
1965 type->tp_getattro = PyObject_GenericGetAttr;
1966 if (base->tp_setattr == NULL && base->tp_setattro == NULL)
1967 type->tp_setattro = PyObject_GenericSetAttr;
1968 }
1969 type->tp_dealloc = subtype_dealloc;
1970
Guido van Rossum9475a232001-10-05 20:51:39 +00001971 /* Enable GC unless there are really no instance variables possible */
1972 if (!(type->tp_basicsize == sizeof(PyObject) &&
1973 type->tp_itemsize == 0))
1974 type->tp_flags |= Py_TPFLAGS_HAVE_GC;
1975
Tim Peters6d6c1a32001-08-02 04:15:00 +00001976 /* Always override allocation strategy to use regular heap */
1977 type->tp_alloc = PyType_GenericAlloc;
Guido van Rossum048eb752001-10-02 21:24:57 +00001978 if (type->tp_flags & Py_TPFLAGS_HAVE_GC) {
Neil Schemenauer09a2ae52002-04-12 03:06:53 +00001979 type->tp_free = PyObject_GC_Del;
Guido van Rossum9475a232001-10-05 20:51:39 +00001980 type->tp_traverse = subtype_traverse;
Guido van Rossum9923ffe2002-06-04 19:52:53 +00001981 type->tp_clear = subtype_clear;
Guido van Rossum048eb752001-10-02 21:24:57 +00001982 }
1983 else
Neil Schemenauer09a2ae52002-04-12 03:06:53 +00001984 type->tp_free = PyObject_Del;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001985
1986 /* Initialize the rest */
Guido van Rossum528b7eb2001-08-07 17:24:28 +00001987 if (PyType_Ready(type) < 0) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001988 Py_DECREF(type);
1989 return NULL;
1990 }
1991
Guido van Rossum7b9144b2001-10-09 19:39:46 +00001992 /* Put the proper slots in place */
1993 fixup_slot_dispatchers(type);
Guido van Rossumf040ede2001-08-07 16:40:56 +00001994
Tim Peters6d6c1a32001-08-02 04:15:00 +00001995 return (PyObject *)type;
1996}
1997
1998/* Internal API to look for a name through the MRO.
1999 This returns a borrowed reference, and doesn't set an exception! */
2000PyObject *
2001_PyType_Lookup(PyTypeObject *type, PyObject *name)
2002{
Martin v. Löwis18e16552006-02-15 17:27:45 +00002003 Py_ssize_t i, n;
Tim Petersa91e9642001-11-14 23:32:33 +00002004 PyObject *mro, *res, *base, *dict;
Tim Peters6d6c1a32001-08-02 04:15:00 +00002005
Guido van Rossum687ae002001-10-15 22:03:32 +00002006 /* Look in tp_dict of types in MRO */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002007 mro = type->tp_mro;
Guido van Rossum23094982002-06-10 14:30:43 +00002008
2009 /* If mro is NULL, the type is either not yet initialized
2010 by PyType_Ready(), or already cleared by type_clear().
2011 Either way the safest thing to do is to return NULL. */
2012 if (mro == NULL)
2013 return NULL;
2014
Tim Peters6d6c1a32001-08-02 04:15:00 +00002015 assert(PyTuple_Check(mro));
2016 n = PyTuple_GET_SIZE(mro);
2017 for (i = 0; i < n; i++) {
Tim Petersa91e9642001-11-14 23:32:33 +00002018 base = PyTuple_GET_ITEM(mro, i);
2019 if (PyClass_Check(base))
2020 dict = ((PyClassObject *)base)->cl_dict;
2021 else {
2022 assert(PyType_Check(base));
2023 dict = ((PyTypeObject *)base)->tp_dict;
2024 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00002025 assert(dict && PyDict_Check(dict));
2026 res = PyDict_GetItem(dict, name);
2027 if (res != NULL)
2028 return res;
2029 }
2030 return NULL;
2031}
2032
2033/* This is similar to PyObject_GenericGetAttr(),
2034 but uses _PyType_Lookup() instead of just looking in type->tp_dict. */
2035static PyObject *
2036type_getattro(PyTypeObject *type, PyObject *name)
2037{
2038 PyTypeObject *metatype = type->ob_type;
Guido van Rossumbfc2e5e2002-04-04 17:50:54 +00002039 PyObject *meta_attribute, *attribute;
2040 descrgetfunc meta_get;
Tim Peters6d6c1a32001-08-02 04:15:00 +00002041
2042 /* Initialize this type (we'll assume the metatype is initialized) */
2043 if (type->tp_dict == NULL) {
Guido van Rossum528b7eb2001-08-07 17:24:28 +00002044 if (PyType_Ready(type) < 0)
Tim Peters6d6c1a32001-08-02 04:15:00 +00002045 return NULL;
2046 }
2047
Guido van Rossumbfc2e5e2002-04-04 17:50:54 +00002048 /* No readable descriptor found yet */
2049 meta_get = NULL;
Tim Peters34592512002-07-11 06:23:50 +00002050
Guido van Rossumbfc2e5e2002-04-04 17:50:54 +00002051 /* Look for the attribute in the metatype */
2052 meta_attribute = _PyType_Lookup(metatype, name);
2053
2054 if (meta_attribute != NULL) {
2055 meta_get = meta_attribute->ob_type->tp_descr_get;
Tim Peters34592512002-07-11 06:23:50 +00002056
Guido van Rossumbfc2e5e2002-04-04 17:50:54 +00002057 if (meta_get != NULL && PyDescr_IsData(meta_attribute)) {
2058 /* Data descriptors implement tp_descr_set to intercept
2059 * writes. Assume the attribute is not overridden in
2060 * type's tp_dict (and bases): call the descriptor now.
2061 */
2062 return meta_get(meta_attribute, (PyObject *)type,
2063 (PyObject *)metatype);
2064 }
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00002065 Py_INCREF(meta_attribute);
Tim Peters6d6c1a32001-08-02 04:15:00 +00002066 }
2067
Guido van Rossumbfc2e5e2002-04-04 17:50:54 +00002068 /* No data descriptor found on metatype. Look in tp_dict of this
2069 * type and its bases */
2070 attribute = _PyType_Lookup(type, name);
2071 if (attribute != NULL) {
2072 /* Implement descriptor functionality, if any */
2073 descrgetfunc local_get = attribute->ob_type->tp_descr_get;
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00002074
2075 Py_XDECREF(meta_attribute);
2076
Guido van Rossumbfc2e5e2002-04-04 17:50:54 +00002077 if (local_get != NULL) {
2078 /* NULL 2nd argument indicates the descriptor was
2079 * found on the target object itself (or a base) */
2080 return local_get(attribute, (PyObject *)NULL,
2081 (PyObject *)type);
2082 }
Tim Peters34592512002-07-11 06:23:50 +00002083
Guido van Rossumbfc2e5e2002-04-04 17:50:54 +00002084 Py_INCREF(attribute);
2085 return attribute;
Tim Peters6d6c1a32001-08-02 04:15:00 +00002086 }
2087
Guido van Rossumbfc2e5e2002-04-04 17:50:54 +00002088 /* No attribute found in local __dict__ (or bases): use the
2089 * descriptor from the metatype, if any */
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00002090 if (meta_get != NULL) {
2091 PyObject *res;
2092 res = meta_get(meta_attribute, (PyObject *)type,
2093 (PyObject *)metatype);
2094 Py_DECREF(meta_attribute);
2095 return res;
2096 }
Guido van Rossumbfc2e5e2002-04-04 17:50:54 +00002097
2098 /* If an ordinary attribute was found on the metatype, return it now */
2099 if (meta_attribute != NULL) {
Guido van Rossumbfc2e5e2002-04-04 17:50:54 +00002100 return meta_attribute;
Tim Peters6d6c1a32001-08-02 04:15:00 +00002101 }
2102
2103 /* Give up */
2104 PyErr_Format(PyExc_AttributeError,
Guido van Rossumbfc2e5e2002-04-04 17:50:54 +00002105 "type object '%.50s' has no attribute '%.400s'",
2106 type->tp_name, PyString_AS_STRING(name));
Tim Peters6d6c1a32001-08-02 04:15:00 +00002107 return NULL;
2108}
2109
2110static int
2111type_setattro(PyTypeObject *type, PyObject *name, PyObject *value)
2112{
Guido van Rossum2f3ca6e2001-10-15 21:05:10 +00002113 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE)) {
2114 PyErr_Format(
2115 PyExc_TypeError,
2116 "can't set attributes of built-in/extension type '%s'",
2117 type->tp_name);
2118 return -1;
Guido van Rossum7b9144b2001-10-09 19:39:46 +00002119 }
Guido van Rossum8d24ee92003-03-24 23:49:49 +00002120 /* XXX Example of how I expect this to be used...
2121 if (update_subclasses(type, name, invalidate_cache, NULL) < 0)
2122 return -1;
2123 */
Guido van Rossum2f3ca6e2001-10-15 21:05:10 +00002124 if (PyObject_GenericSetAttr((PyObject *)type, name, value) < 0)
2125 return -1;
2126 return update_slot(type, name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00002127}
2128
2129static void
2130type_dealloc(PyTypeObject *type)
2131{
Guido van Rossume5c691a2003-03-07 15:13:17 +00002132 PyHeapTypeObject *et;
Tim Peters6d6c1a32001-08-02 04:15:00 +00002133
2134 /* Assert this is a heap-allocated type object */
2135 assert(type->tp_flags & Py_TPFLAGS_HEAPTYPE);
Guido van Rossum048eb752001-10-02 21:24:57 +00002136 _PyObject_GC_UNTRACK(type);
Guido van Rossum1c450732001-10-08 15:18:27 +00002137 PyObject_ClearWeakRefs((PyObject *)type);
Guido van Rossume5c691a2003-03-07 15:13:17 +00002138 et = (PyHeapTypeObject *)type;
Tim Peters6d6c1a32001-08-02 04:15:00 +00002139 Py_XDECREF(type->tp_base);
2140 Py_XDECREF(type->tp_dict);
2141 Py_XDECREF(type->tp_bases);
2142 Py_XDECREF(type->tp_mro);
Guido van Rossum687ae002001-10-15 22:03:32 +00002143 Py_XDECREF(type->tp_cache);
Guido van Rossum1c450732001-10-08 15:18:27 +00002144 Py_XDECREF(type->tp_subclasses);
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00002145 /* A type's tp_doc is heap allocated, unlike the tp_doc slots
2146 * of most other objects. It's okay to cast it to char *.
2147 */
2148 PyObject_Free((char *)type->tp_doc);
Georg Brandlc255c7b2006-02-20 22:27:28 +00002149 Py_XDECREF(et->ht_name);
2150 Py_XDECREF(et->ht_slots);
Tim Peters6d6c1a32001-08-02 04:15:00 +00002151 type->ob_type->tp_free((PyObject *)type);
2152}
2153
Guido van Rossum1c450732001-10-08 15:18:27 +00002154static PyObject *
2155type_subclasses(PyTypeObject *type, PyObject *args_ignored)
2156{
2157 PyObject *list, *raw, *ref;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002158 Py_ssize_t i, n;
Guido van Rossum1c450732001-10-08 15:18:27 +00002159
2160 list = PyList_New(0);
2161 if (list == NULL)
2162 return NULL;
2163 raw = type->tp_subclasses;
2164 if (raw == NULL)
2165 return list;
2166 assert(PyList_Check(raw));
2167 n = PyList_GET_SIZE(raw);
2168 for (i = 0; i < n; i++) {
2169 ref = PyList_GET_ITEM(raw, i);
Tim Peters44383382001-10-08 16:49:26 +00002170 assert(PyWeakref_CheckRef(ref));
Guido van Rossum1c450732001-10-08 15:18:27 +00002171 ref = PyWeakref_GET_OBJECT(ref);
2172 if (ref != Py_None) {
2173 if (PyList_Append(list, ref) < 0) {
2174 Py_DECREF(list);
2175 return NULL;
2176 }
2177 }
2178 }
2179 return list;
2180}
2181
Tim Peters6d6c1a32001-08-02 04:15:00 +00002182static PyMethodDef type_methods[] = {
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00002183 {"mro", (PyCFunction)mro_external, METH_NOARGS,
Neal Norwitz5dc2a372002-08-13 22:19:13 +00002184 PyDoc_STR("mro() -> list\nreturn a type's method resolution order")},
Guido van Rossum1c450732001-10-08 15:18:27 +00002185 {"__subclasses__", (PyCFunction)type_subclasses, METH_NOARGS,
Neal Norwitz5dc2a372002-08-13 22:19:13 +00002186 PyDoc_STR("__subclasses__() -> list of immediate subclasses")},
Tim Peters6d6c1a32001-08-02 04:15:00 +00002187 {0}
2188};
2189
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002190PyDoc_STRVAR(type_doc,
Tim Peters6d6c1a32001-08-02 04:15:00 +00002191"type(object) -> the object's type\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002192"type(name, bases, dict) -> a new type");
Tim Peters6d6c1a32001-08-02 04:15:00 +00002193
Guido van Rossum048eb752001-10-02 21:24:57 +00002194static int
2195type_traverse(PyTypeObject *type, visitproc visit, void *arg)
2196{
Guido van Rossuma3862092002-06-10 15:24:42 +00002197 /* Because of type_is_gc(), the collector only calls this
2198 for heaptypes. */
2199 assert(type->tp_flags & Py_TPFLAGS_HEAPTYPE);
Guido van Rossum048eb752001-10-02 21:24:57 +00002200
Thomas Woutersc6e55062006-04-15 21:47:09 +00002201 Py_VISIT(type->tp_dict);
2202 Py_VISIT(type->tp_cache);
2203 Py_VISIT(type->tp_mro);
2204 Py_VISIT(type->tp_bases);
2205 Py_VISIT(type->tp_base);
Guido van Rossuma3862092002-06-10 15:24:42 +00002206
2207 /* There's no need to visit type->tp_subclasses or
Georg Brandlc255c7b2006-02-20 22:27:28 +00002208 ((PyHeapTypeObject *)type)->ht_slots, because they can't be involved
Guido van Rossuma3862092002-06-10 15:24:42 +00002209 in cycles; tp_subclasses is a list of weak references,
2210 and slots is a tuple of strings. */
Guido van Rossum048eb752001-10-02 21:24:57 +00002211
Guido van Rossum048eb752001-10-02 21:24:57 +00002212 return 0;
2213}
2214
2215static int
2216type_clear(PyTypeObject *type)
2217{
Guido van Rossuma3862092002-06-10 15:24:42 +00002218 /* Because of type_is_gc(), the collector only calls this
2219 for heaptypes. */
2220 assert(type->tp_flags & Py_TPFLAGS_HEAPTYPE);
Guido van Rossum048eb752001-10-02 21:24:57 +00002221
Guido van Rossuma3862092002-06-10 15:24:42 +00002222 /* The only field we need to clear is tp_mro, which is part of a
2223 hard cycle (its first element is the class itself) that won't
2224 be broken otherwise (it's a tuple and tuples don't have a
2225 tp_clear handler). None of the other fields need to be
2226 cleared, and here's why:
Guido van Rossum048eb752001-10-02 21:24:57 +00002227
Guido van Rossuma3862092002-06-10 15:24:42 +00002228 tp_dict:
2229 It is a dict, so the collector will call its tp_clear.
2230
2231 tp_cache:
2232 Not used; if it were, it would be a dict.
2233
2234 tp_bases, tp_base:
2235 If these are involved in a cycle, there must be at least
2236 one other, mutable object in the cycle, e.g. a base
2237 class's dict; the cycle will be broken that way.
2238
2239 tp_subclasses:
2240 A list of weak references can't be part of a cycle; and
2241 lists have their own tp_clear.
2242
Guido van Rossume5c691a2003-03-07 15:13:17 +00002243 slots (in PyHeapTypeObject):
Guido van Rossuma3862092002-06-10 15:24:42 +00002244 A tuple of strings can't be part of a cycle.
2245 */
2246
Thomas Woutersedf17d82006-04-15 17:28:34 +00002247 Py_CLEAR(type->tp_mro);
Guido van Rossum048eb752001-10-02 21:24:57 +00002248
2249 return 0;
2250}
2251
2252static int
2253type_is_gc(PyTypeObject *type)
2254{
2255 return type->tp_flags & Py_TPFLAGS_HEAPTYPE;
2256}
2257
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002258PyTypeObject PyType_Type = {
2259 PyObject_HEAD_INIT(&PyType_Type)
Tim Peters6d6c1a32001-08-02 04:15:00 +00002260 0, /* ob_size */
2261 "type", /* tp_name */
Guido van Rossume5c691a2003-03-07 15:13:17 +00002262 sizeof(PyHeapTypeObject), /* tp_basicsize */
Guido van Rossum6f799372001-09-20 20:46:19 +00002263 sizeof(PyMemberDef), /* tp_itemsize */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002264 (destructor)type_dealloc, /* tp_dealloc */
2265 0, /* tp_print */
2266 0, /* tp_getattr */
2267 0, /* tp_setattr */
2268 type_compare, /* tp_compare */
2269 (reprfunc)type_repr, /* tp_repr */
2270 0, /* tp_as_number */
2271 0, /* tp_as_sequence */
2272 0, /* tp_as_mapping */
2273 (hashfunc)_Py_HashPointer, /* tp_hash */
2274 (ternaryfunc)type_call, /* tp_call */
2275 0, /* tp_str */
2276 (getattrofunc)type_getattro, /* tp_getattro */
2277 (setattrofunc)type_setattro, /* tp_setattro */
2278 0, /* tp_as_buffer */
Guido van Rossum048eb752001-10-02 21:24:57 +00002279 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC |
2280 Py_TPFLAGS_BASETYPE, /* tp_flags */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002281 type_doc, /* tp_doc */
Guido van Rossum048eb752001-10-02 21:24:57 +00002282 (traverseproc)type_traverse, /* tp_traverse */
2283 (inquiry)type_clear, /* tp_clear */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002284 0, /* tp_richcompare */
Guido van Rossum1c450732001-10-08 15:18:27 +00002285 offsetof(PyTypeObject, tp_weaklist), /* tp_weaklistoffset */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002286 0, /* tp_iter */
2287 0, /* tp_iternext */
2288 type_methods, /* tp_methods */
2289 type_members, /* tp_members */
2290 type_getsets, /* tp_getset */
2291 0, /* tp_base */
2292 0, /* tp_dict */
2293 0, /* tp_descr_get */
2294 0, /* tp_descr_set */
2295 offsetof(PyTypeObject, tp_dict), /* tp_dictoffset */
2296 0, /* tp_init */
2297 0, /* tp_alloc */
2298 type_new, /* tp_new */
Neil Schemenauer09a2ae52002-04-12 03:06:53 +00002299 PyObject_GC_Del, /* tp_free */
Guido van Rossum048eb752001-10-02 21:24:57 +00002300 (inquiry)type_is_gc, /* tp_is_gc */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002301};
Tim Peters6d6c1a32001-08-02 04:15:00 +00002302
2303
2304/* The base type of all types (eventually)... except itself. */
2305
2306static int
2307object_init(PyObject *self, PyObject *args, PyObject *kwds)
2308{
2309 return 0;
2310}
2311
Guido van Rossum298e4212003-02-13 16:30:16 +00002312/* If we don't have a tp_new for a new-style class, new will use this one.
2313 Therefore this should take no arguments/keywords. However, this new may
2314 also be inherited by objects that define a tp_init but no tp_new. These
2315 objects WILL pass argumets to tp_new, because it gets the same args as
2316 tp_init. So only allow arguments if we aren't using the default init, in
2317 which case we expect init to handle argument parsing. */
2318static PyObject *
2319object_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
2320{
2321 if (type->tp_init == object_init && (PyTuple_GET_SIZE(args) ||
2322 (kwds && PyDict_Check(kwds) && PyDict_Size(kwds)))) {
2323 PyErr_SetString(PyExc_TypeError,
2324 "default __new__ takes no parameters");
2325 return NULL;
2326 }
2327 return type->tp_alloc(type, 0);
2328}
2329
Tim Peters6d6c1a32001-08-02 04:15:00 +00002330static void
2331object_dealloc(PyObject *self)
2332{
2333 self->ob_type->tp_free(self);
2334}
2335
Guido van Rossum8e248182001-08-12 05:17:56 +00002336static PyObject *
2337object_repr(PyObject *self)
2338{
Guido van Rossum76e69632001-08-16 18:52:43 +00002339 PyTypeObject *type;
Barry Warsaw7ce36942001-08-24 18:34:26 +00002340 PyObject *mod, *name, *rtn;
Guido van Rossum8e248182001-08-12 05:17:56 +00002341
Guido van Rossum76e69632001-08-16 18:52:43 +00002342 type = self->ob_type;
2343 mod = type_module(type, NULL);
2344 if (mod == NULL)
2345 PyErr_Clear();
2346 else if (!PyString_Check(mod)) {
2347 Py_DECREF(mod);
2348 mod = NULL;
2349 }
2350 name = type_name(type, NULL);
2351 if (name == NULL)
2352 return NULL;
2353 if (mod != NULL && strcmp(PyString_AS_STRING(mod), "__builtin__"))
Guido van Rossumff0e6d62001-09-24 16:03:59 +00002354 rtn = PyString_FromFormat("<%s.%s object at %p>",
Barry Warsaw7ce36942001-08-24 18:34:26 +00002355 PyString_AS_STRING(mod),
2356 PyString_AS_STRING(name),
2357 self);
Guido van Rossum76e69632001-08-16 18:52:43 +00002358 else
Guido van Rossumff0e6d62001-09-24 16:03:59 +00002359 rtn = PyString_FromFormat("<%s object at %p>",
Barry Warsaw7ce36942001-08-24 18:34:26 +00002360 type->tp_name, self);
Guido van Rossum76e69632001-08-16 18:52:43 +00002361 Py_XDECREF(mod);
2362 Py_DECREF(name);
Barry Warsaw7ce36942001-08-24 18:34:26 +00002363 return rtn;
Guido van Rossum8e248182001-08-12 05:17:56 +00002364}
2365
Guido van Rossumb8f63662001-08-15 23:57:02 +00002366static PyObject *
2367object_str(PyObject *self)
2368{
2369 unaryfunc f;
2370
2371 f = self->ob_type->tp_repr;
2372 if (f == NULL)
2373 f = object_repr;
2374 return f(self);
2375}
2376
Guido van Rossum8e248182001-08-12 05:17:56 +00002377static long
2378object_hash(PyObject *self)
2379{
2380 return _Py_HashPointer(self);
2381}
Guido van Rossum8e248182001-08-12 05:17:56 +00002382
Guido van Rossum5c294fb2001-09-25 03:43:42 +00002383static PyObject *
2384object_get_class(PyObject *self, void *closure)
2385{
2386 Py_INCREF(self->ob_type);
2387 return (PyObject *)(self->ob_type);
2388}
2389
2390static int
2391equiv_structs(PyTypeObject *a, PyTypeObject *b)
2392{
2393 return a == b ||
2394 (a != NULL &&
2395 b != NULL &&
2396 a->tp_basicsize == b->tp_basicsize &&
2397 a->tp_itemsize == b->tp_itemsize &&
2398 a->tp_dictoffset == b->tp_dictoffset &&
2399 a->tp_weaklistoffset == b->tp_weaklistoffset &&
2400 ((a->tp_flags & Py_TPFLAGS_HAVE_GC) ==
2401 (b->tp_flags & Py_TPFLAGS_HAVE_GC)));
2402}
2403
2404static int
2405same_slots_added(PyTypeObject *a, PyTypeObject *b)
2406{
2407 PyTypeObject *base = a->tp_base;
Martin v. Löwiseb079f12006-02-16 14:32:27 +00002408 Py_ssize_t size;
Guido van Rossum5c294fb2001-09-25 03:43:42 +00002409
2410 if (base != b->tp_base)
2411 return 0;
2412 if (equiv_structs(a, base) && equiv_structs(b, base))
2413 return 1;
2414 size = base->tp_basicsize;
2415 if (a->tp_dictoffset == size && b->tp_dictoffset == size)
2416 size += sizeof(PyObject *);
2417 if (a->tp_weaklistoffset == size && b->tp_weaklistoffset == size)
2418 size += sizeof(PyObject *);
2419 return size == a->tp_basicsize && size == b->tp_basicsize;
2420}
2421
2422static int
Anthony Baxtera6286212006-04-11 07:42:36 +00002423compatible_for_assignment(PyTypeObject* oldto, PyTypeObject* newto, char* attr)
Michael W. Hudson98bbc492002-11-26 14:47:27 +00002424{
2425 PyTypeObject *newbase, *oldbase;
2426
Anthony Baxtera6286212006-04-11 07:42:36 +00002427 if (newto->tp_dealloc != oldto->tp_dealloc ||
2428 newto->tp_free != oldto->tp_free)
Michael W. Hudson98bbc492002-11-26 14:47:27 +00002429 {
2430 PyErr_Format(PyExc_TypeError,
2431 "%s assignment: "
2432 "'%s' deallocator differs from '%s'",
2433 attr,
Anthony Baxtera6286212006-04-11 07:42:36 +00002434 newto->tp_name,
2435 oldto->tp_name);
Michael W. Hudson98bbc492002-11-26 14:47:27 +00002436 return 0;
2437 }
Anthony Baxtera6286212006-04-11 07:42:36 +00002438 newbase = newto;
2439 oldbase = oldto;
Michael W. Hudson98bbc492002-11-26 14:47:27 +00002440 while (equiv_structs(newbase, newbase->tp_base))
2441 newbase = newbase->tp_base;
2442 while (equiv_structs(oldbase, oldbase->tp_base))
2443 oldbase = oldbase->tp_base;
2444 if (newbase != oldbase &&
2445 (newbase->tp_base != oldbase->tp_base ||
2446 !same_slots_added(newbase, oldbase))) {
2447 PyErr_Format(PyExc_TypeError,
2448 "%s assignment: "
2449 "'%s' object layout differs from '%s'",
2450 attr,
Anthony Baxtera6286212006-04-11 07:42:36 +00002451 newto->tp_name,
2452 oldto->tp_name);
Michael W. Hudson98bbc492002-11-26 14:47:27 +00002453 return 0;
2454 }
Tim Petersea7f75d2002-12-07 21:39:16 +00002455
Michael W. Hudson98bbc492002-11-26 14:47:27 +00002456 return 1;
2457}
2458
2459static int
Guido van Rossum5c294fb2001-09-25 03:43:42 +00002460object_set_class(PyObject *self, PyObject *value, void *closure)
2461{
Anthony Baxtera6286212006-04-11 07:42:36 +00002462 PyTypeObject *oldto = self->ob_type;
2463 PyTypeObject *newto;
Guido van Rossum5c294fb2001-09-25 03:43:42 +00002464
Guido van Rossumb6b89422002-04-15 01:03:30 +00002465 if (value == NULL) {
2466 PyErr_SetString(PyExc_TypeError,
2467 "can't delete __class__ attribute");
2468 return -1;
2469 }
Guido van Rossum5c294fb2001-09-25 03:43:42 +00002470 if (!PyType_Check(value)) {
2471 PyErr_Format(PyExc_TypeError,
2472 "__class__ must be set to new-style class, not '%s' object",
2473 value->ob_type->tp_name);
2474 return -1;
2475 }
Anthony Baxtera6286212006-04-11 07:42:36 +00002476 newto = (PyTypeObject *)value;
2477 if (!(newto->tp_flags & Py_TPFLAGS_HEAPTYPE) ||
2478 !(oldto->tp_flags & Py_TPFLAGS_HEAPTYPE))
Guido van Rossum40af8892002-08-10 05:42:07 +00002479 {
2480 PyErr_Format(PyExc_TypeError,
2481 "__class__ assignment: only for heap types");
2482 return -1;
2483 }
Anthony Baxtera6286212006-04-11 07:42:36 +00002484 if (compatible_for_assignment(newto, oldto, "__class__")) {
2485 Py_INCREF(newto);
2486 self->ob_type = newto;
2487 Py_DECREF(oldto);
Michael W. Hudson98bbc492002-11-26 14:47:27 +00002488 return 0;
2489 }
2490 else {
Guido van Rossum9ee4b942002-05-24 18:47:47 +00002491 return -1;
2492 }
Guido van Rossum5c294fb2001-09-25 03:43:42 +00002493}
2494
2495static PyGetSetDef object_getsets[] = {
2496 {"__class__", object_get_class, object_set_class,
Neal Norwitz858e34f2002-08-13 17:18:45 +00002497 PyDoc_STR("the object's class")},
Tim Peters6d6c1a32001-08-02 04:15:00 +00002498 {0}
2499};
2500
Guido van Rossumc53f0092003-02-18 22:05:12 +00002501
Guido van Rossum036f9992003-02-21 22:02:54 +00002502/* Stuff to implement __reduce_ex__ for pickle protocols >= 2.
2503 We fall back to helpers in copy_reg for:
2504 - pickle protocols < 2
2505 - calculating the list of slot names (done only once per class)
2506 - the __newobj__ function (which is used as a token but never called)
2507*/
2508
2509static PyObject *
2510import_copy_reg(void)
2511{
2512 static PyObject *copy_reg_str;
Guido van Rossum3926a632001-09-25 16:25:58 +00002513
2514 if (!copy_reg_str) {
2515 copy_reg_str = PyString_InternFromString("copy_reg");
2516 if (copy_reg_str == NULL)
2517 return NULL;
2518 }
Guido van Rossum036f9992003-02-21 22:02:54 +00002519
2520 return PyImport_Import(copy_reg_str);
2521}
2522
2523static PyObject *
2524slotnames(PyObject *cls)
2525{
2526 PyObject *clsdict;
2527 PyObject *copy_reg;
2528 PyObject *slotnames;
2529
2530 if (!PyType_Check(cls)) {
2531 Py_INCREF(Py_None);
2532 return Py_None;
2533 }
2534
2535 clsdict = ((PyTypeObject *)cls)->tp_dict;
2536 slotnames = PyDict_GetItemString(clsdict, "__slotnames__");
Armin Rigoec862b92005-09-24 22:58:41 +00002537 if (slotnames != NULL && PyList_Check(slotnames)) {
Guido van Rossum036f9992003-02-21 22:02:54 +00002538 Py_INCREF(slotnames);
2539 return slotnames;
2540 }
2541
2542 copy_reg = import_copy_reg();
2543 if (copy_reg == NULL)
2544 return NULL;
2545
2546 slotnames = PyObject_CallMethod(copy_reg, "_slotnames", "O", cls);
2547 Py_DECREF(copy_reg);
2548 if (slotnames != NULL &&
2549 slotnames != Py_None &&
2550 !PyList_Check(slotnames))
2551 {
2552 PyErr_SetString(PyExc_TypeError,
2553 "copy_reg._slotnames didn't return a list or None");
2554 Py_DECREF(slotnames);
2555 slotnames = NULL;
2556 }
2557
2558 return slotnames;
2559}
2560
2561static PyObject *
2562reduce_2(PyObject *obj)
2563{
2564 PyObject *cls, *getnewargs;
2565 PyObject *args = NULL, *args2 = NULL;
2566 PyObject *getstate = NULL, *state = NULL, *names = NULL;
2567 PyObject *slots = NULL, *listitems = NULL, *dictitems = NULL;
2568 PyObject *copy_reg = NULL, *newobj = NULL, *res = NULL;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002569 Py_ssize_t i, n;
Guido van Rossum036f9992003-02-21 22:02:54 +00002570
2571 cls = PyObject_GetAttrString(obj, "__class__");
2572 if (cls == NULL)
2573 return NULL;
2574
2575 getnewargs = PyObject_GetAttrString(obj, "__getnewargs__");
2576 if (getnewargs != NULL) {
2577 args = PyObject_CallObject(getnewargs, NULL);
2578 Py_DECREF(getnewargs);
2579 if (args != NULL && !PyTuple_Check(args)) {
Georg Brandlccff7852006-06-18 22:17:29 +00002580 PyErr_Format(PyExc_TypeError,
2581 "__getnewargs__ should return a tuple, "
2582 "not '%.200s'", args->ob_type->tp_name);
Guido van Rossum036f9992003-02-21 22:02:54 +00002583 goto end;
2584 }
2585 }
2586 else {
2587 PyErr_Clear();
2588 args = PyTuple_New(0);
2589 }
2590 if (args == NULL)
2591 goto end;
2592
2593 getstate = PyObject_GetAttrString(obj, "__getstate__");
2594 if (getstate != NULL) {
2595 state = PyObject_CallObject(getstate, NULL);
2596 Py_DECREF(getstate);
Neal Norwitze2fdc612003-06-08 13:19:58 +00002597 if (state == NULL)
2598 goto end;
Guido van Rossum036f9992003-02-21 22:02:54 +00002599 }
2600 else {
Jim Fulton8a1a5942004-02-08 04:21:26 +00002601 PyErr_Clear();
Guido van Rossum036f9992003-02-21 22:02:54 +00002602 state = PyObject_GetAttrString(obj, "__dict__");
2603 if (state == NULL) {
2604 PyErr_Clear();
2605 state = Py_None;
2606 Py_INCREF(state);
2607 }
2608 names = slotnames(cls);
2609 if (names == NULL)
2610 goto end;
2611 if (names != Py_None) {
2612 assert(PyList_Check(names));
2613 slots = PyDict_New();
2614 if (slots == NULL)
2615 goto end;
2616 n = 0;
2617 /* Can't pre-compute the list size; the list
2618 is stored on the class so accessible to other
2619 threads, which may be run by DECREF */
2620 for (i = 0; i < PyList_GET_SIZE(names); i++) {
2621 PyObject *name, *value;
2622 name = PyList_GET_ITEM(names, i);
2623 value = PyObject_GetAttr(obj, name);
2624 if (value == NULL)
2625 PyErr_Clear();
2626 else {
2627 int err = PyDict_SetItem(slots, name,
2628 value);
2629 Py_DECREF(value);
2630 if (err)
2631 goto end;
2632 n++;
2633 }
2634 }
2635 if (n) {
2636 state = Py_BuildValue("(NO)", state, slots);
2637 if (state == NULL)
2638 goto end;
2639 }
2640 }
2641 }
2642
2643 if (!PyList_Check(obj)) {
2644 listitems = Py_None;
2645 Py_INCREF(listitems);
2646 }
2647 else {
2648 listitems = PyObject_GetIter(obj);
2649 if (listitems == NULL)
2650 goto end;
2651 }
2652
2653 if (!PyDict_Check(obj)) {
2654 dictitems = Py_None;
2655 Py_INCREF(dictitems);
2656 }
2657 else {
2658 dictitems = PyObject_CallMethod(obj, "iteritems", "");
2659 if (dictitems == NULL)
2660 goto end;
2661 }
2662
2663 copy_reg = import_copy_reg();
2664 if (copy_reg == NULL)
2665 goto end;
2666 newobj = PyObject_GetAttrString(copy_reg, "__newobj__");
2667 if (newobj == NULL)
2668 goto end;
2669
2670 n = PyTuple_GET_SIZE(args);
2671 args2 = PyTuple_New(n+1);
2672 if (args2 == NULL)
2673 goto end;
2674 PyTuple_SET_ITEM(args2, 0, cls);
2675 cls = NULL;
2676 for (i = 0; i < n; i++) {
2677 PyObject *v = PyTuple_GET_ITEM(args, i);
2678 Py_INCREF(v);
2679 PyTuple_SET_ITEM(args2, i+1, v);
2680 }
2681
Raymond Hettinger8ae46892003-10-12 19:09:37 +00002682 res = PyTuple_Pack(5, newobj, args2, state, listitems, dictitems);
Guido van Rossum036f9992003-02-21 22:02:54 +00002683
2684 end:
2685 Py_XDECREF(cls);
2686 Py_XDECREF(args);
2687 Py_XDECREF(args2);
Jeremy Hyltond06483c2003-04-09 21:01:42 +00002688 Py_XDECREF(slots);
Guido van Rossum036f9992003-02-21 22:02:54 +00002689 Py_XDECREF(state);
2690 Py_XDECREF(names);
2691 Py_XDECREF(listitems);
2692 Py_XDECREF(dictitems);
2693 Py_XDECREF(copy_reg);
2694 Py_XDECREF(newobj);
2695 return res;
2696}
2697
2698static PyObject *
2699object_reduce_ex(PyObject *self, PyObject *args)
2700{
2701 /* Call copy_reg._reduce_ex(self, proto) */
2702 PyObject *reduce, *copy_reg, *res;
2703 int proto = 0;
2704
2705 if (!PyArg_ParseTuple(args, "|i:__reduce_ex__", &proto))
2706 return NULL;
2707
2708 reduce = PyObject_GetAttrString(self, "__reduce__");
2709 if (reduce == NULL)
2710 PyErr_Clear();
2711 else {
2712 PyObject *cls, *clsreduce, *objreduce;
2713 int override;
2714 cls = PyObject_GetAttrString(self, "__class__");
2715 if (cls == NULL) {
2716 Py_DECREF(reduce);
2717 return NULL;
2718 }
2719 clsreduce = PyObject_GetAttrString(cls, "__reduce__");
2720 Py_DECREF(cls);
2721 if (clsreduce == NULL) {
2722 Py_DECREF(reduce);
2723 return NULL;
2724 }
2725 objreduce = PyDict_GetItemString(PyBaseObject_Type.tp_dict,
2726 "__reduce__");
2727 override = (clsreduce != objreduce);
2728 Py_DECREF(clsreduce);
2729 if (override) {
2730 res = PyObject_CallObject(reduce, NULL);
2731 Py_DECREF(reduce);
2732 return res;
2733 }
2734 else
2735 Py_DECREF(reduce);
2736 }
2737
2738 if (proto >= 2)
2739 return reduce_2(self);
2740
2741 copy_reg = import_copy_reg();
Guido van Rossum3926a632001-09-25 16:25:58 +00002742 if (!copy_reg)
2743 return NULL;
Guido van Rossum036f9992003-02-21 22:02:54 +00002744
Guido van Rossumc53f0092003-02-18 22:05:12 +00002745 res = PyEval_CallMethod(copy_reg, "_reduce_ex", "(Oi)", self, proto);
Guido van Rossum3926a632001-09-25 16:25:58 +00002746 Py_DECREF(copy_reg);
Guido van Rossum036f9992003-02-21 22:02:54 +00002747
Guido van Rossum3926a632001-09-25 16:25:58 +00002748 return res;
2749}
2750
2751static PyMethodDef object_methods[] = {
Guido van Rossumc53f0092003-02-18 22:05:12 +00002752 {"__reduce_ex__", object_reduce_ex, METH_VARARGS,
2753 PyDoc_STR("helper for pickle")},
2754 {"__reduce__", object_reduce_ex, METH_VARARGS,
Neal Norwitz5dc2a372002-08-13 22:19:13 +00002755 PyDoc_STR("helper for pickle")},
Guido van Rossum3926a632001-09-25 16:25:58 +00002756 {0}
2757};
2758
Guido van Rossum036f9992003-02-21 22:02:54 +00002759
Tim Peters6d6c1a32001-08-02 04:15:00 +00002760PyTypeObject PyBaseObject_Type = {
2761 PyObject_HEAD_INIT(&PyType_Type)
2762 0, /* ob_size */
2763 "object", /* tp_name */
2764 sizeof(PyObject), /* tp_basicsize */
2765 0, /* tp_itemsize */
Georg Brandl347b3002006-03-30 11:57:00 +00002766 object_dealloc, /* tp_dealloc */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002767 0, /* tp_print */
2768 0, /* tp_getattr */
2769 0, /* tp_setattr */
2770 0, /* tp_compare */
Guido van Rossumb8f63662001-08-15 23:57:02 +00002771 object_repr, /* tp_repr */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002772 0, /* tp_as_number */
2773 0, /* tp_as_sequence */
2774 0, /* tp_as_mapping */
Guido van Rossumb8f63662001-08-15 23:57:02 +00002775 object_hash, /* tp_hash */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002776 0, /* tp_call */
Guido van Rossumb8f63662001-08-15 23:57:02 +00002777 object_str, /* tp_str */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002778 PyObject_GenericGetAttr, /* tp_getattro */
Guido van Rossum13d52f02001-08-10 21:24:08 +00002779 PyObject_GenericSetAttr, /* tp_setattro */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002780 0, /* tp_as_buffer */
2781 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
Neal Norwitz5dc2a372002-08-13 22:19:13 +00002782 PyDoc_STR("The most base type"), /* tp_doc */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002783 0, /* tp_traverse */
2784 0, /* tp_clear */
2785 0, /* tp_richcompare */
2786 0, /* tp_weaklistoffset */
2787 0, /* tp_iter */
2788 0, /* tp_iternext */
Guido van Rossum3926a632001-09-25 16:25:58 +00002789 object_methods, /* tp_methods */
Guido van Rossum5c294fb2001-09-25 03:43:42 +00002790 0, /* tp_members */
2791 object_getsets, /* tp_getset */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002792 0, /* tp_base */
2793 0, /* tp_dict */
2794 0, /* tp_descr_get */
2795 0, /* tp_descr_set */
2796 0, /* tp_dictoffset */
2797 object_init, /* tp_init */
2798 PyType_GenericAlloc, /* tp_alloc */
Guido van Rossum298e4212003-02-13 16:30:16 +00002799 object_new, /* tp_new */
Neil Schemenauer09a2ae52002-04-12 03:06:53 +00002800 PyObject_Del, /* tp_free */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002801};
2802
2803
2804/* Initialize the __dict__ in a type object */
2805
2806static int
2807add_methods(PyTypeObject *type, PyMethodDef *meth)
2808{
Guido van Rossum687ae002001-10-15 22:03:32 +00002809 PyObject *dict = type->tp_dict;
Tim Peters6d6c1a32001-08-02 04:15:00 +00002810
2811 for (; meth->ml_name != NULL; meth++) {
2812 PyObject *descr;
Raymond Hettinger8f5cdaa2003-12-13 11:26:12 +00002813 if (PyDict_GetItemString(dict, meth->ml_name) &&
2814 !(meth->ml_flags & METH_COEXIST))
2815 continue;
Fred Drake7bf97152002-03-28 05:33:33 +00002816 if (meth->ml_flags & METH_CLASS) {
2817 if (meth->ml_flags & METH_STATIC) {
2818 PyErr_SetString(PyExc_ValueError,
2819 "method cannot be both class and static");
2820 return -1;
2821 }
Tim Petersbca1cbc2002-12-09 22:56:13 +00002822 descr = PyDescr_NewClassMethod(type, meth);
Fred Drake7bf97152002-03-28 05:33:33 +00002823 }
2824 else if (meth->ml_flags & METH_STATIC) {
Guido van Rossum9af48ff2003-02-11 17:12:46 +00002825 PyObject *cfunc = PyCFunction_New(meth, NULL);
2826 if (cfunc == NULL)
2827 return -1;
2828 descr = PyStaticMethod_New(cfunc);
2829 Py_DECREF(cfunc);
Fred Drake7bf97152002-03-28 05:33:33 +00002830 }
2831 else {
2832 descr = PyDescr_NewMethod(type, meth);
2833 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00002834 if (descr == NULL)
2835 return -1;
Fred Drake7bf97152002-03-28 05:33:33 +00002836 if (PyDict_SetItemString(dict, meth->ml_name, descr) < 0)
Tim Peters6d6c1a32001-08-02 04:15:00 +00002837 return -1;
2838 Py_DECREF(descr);
2839 }
2840 return 0;
2841}
2842
2843static int
Guido van Rossum6f799372001-09-20 20:46:19 +00002844add_members(PyTypeObject *type, PyMemberDef *memb)
Tim Peters6d6c1a32001-08-02 04:15:00 +00002845{
Guido van Rossum687ae002001-10-15 22:03:32 +00002846 PyObject *dict = type->tp_dict;
Tim Peters6d6c1a32001-08-02 04:15:00 +00002847
2848 for (; memb->name != NULL; memb++) {
2849 PyObject *descr;
2850 if (PyDict_GetItemString(dict, memb->name))
2851 continue;
2852 descr = PyDescr_NewMember(type, memb);
2853 if (descr == NULL)
2854 return -1;
2855 if (PyDict_SetItemString(dict, memb->name, descr) < 0)
2856 return -1;
2857 Py_DECREF(descr);
2858 }
2859 return 0;
2860}
2861
2862static int
Guido van Rossum32d34c82001-09-20 21:45:26 +00002863add_getset(PyTypeObject *type, PyGetSetDef *gsp)
Tim Peters6d6c1a32001-08-02 04:15:00 +00002864{
Guido van Rossum687ae002001-10-15 22:03:32 +00002865 PyObject *dict = type->tp_dict;
Tim Peters6d6c1a32001-08-02 04:15:00 +00002866
2867 for (; gsp->name != NULL; gsp++) {
2868 PyObject *descr;
2869 if (PyDict_GetItemString(dict, gsp->name))
2870 continue;
2871 descr = PyDescr_NewGetSet(type, gsp);
2872
2873 if (descr == NULL)
2874 return -1;
2875 if (PyDict_SetItemString(dict, gsp->name, descr) < 0)
2876 return -1;
2877 Py_DECREF(descr);
2878 }
2879 return 0;
2880}
2881
Guido van Rossum13d52f02001-08-10 21:24:08 +00002882static void
2883inherit_special(PyTypeObject *type, PyTypeObject *base)
Tim Peters6d6c1a32001-08-02 04:15:00 +00002884{
Martin v. Löwiseb079f12006-02-16 14:32:27 +00002885 Py_ssize_t oldsize, newsize;
Tim Peters6d6c1a32001-08-02 04:15:00 +00002886
Guido van Rossum13d52f02001-08-10 21:24:08 +00002887 /* Special flag magic */
2888 if (!type->tp_as_buffer && base->tp_as_buffer) {
2889 type->tp_flags &= ~Py_TPFLAGS_HAVE_GETCHARBUFFER;
2890 type->tp_flags |=
2891 base->tp_flags & Py_TPFLAGS_HAVE_GETCHARBUFFER;
2892 }
2893 if (!type->tp_as_sequence && base->tp_as_sequence) {
2894 type->tp_flags &= ~Py_TPFLAGS_HAVE_SEQUENCE_IN;
2895 type->tp_flags |= base->tp_flags & Py_TPFLAGS_HAVE_SEQUENCE_IN;
2896 }
2897 if ((type->tp_flags & Py_TPFLAGS_HAVE_INPLACEOPS) !=
2898 (base->tp_flags & Py_TPFLAGS_HAVE_INPLACEOPS)) {
2899 if ((!type->tp_as_number && base->tp_as_number) ||
2900 (!type->tp_as_sequence && base->tp_as_sequence)) {
2901 type->tp_flags &= ~Py_TPFLAGS_HAVE_INPLACEOPS;
2902 if (!type->tp_as_number && !type->tp_as_sequence) {
2903 type->tp_flags |= base->tp_flags &
2904 Py_TPFLAGS_HAVE_INPLACEOPS;
2905 }
2906 }
2907 /* Wow */
2908 }
2909 if (!type->tp_as_number && base->tp_as_number) {
2910 type->tp_flags &= ~Py_TPFLAGS_CHECKTYPES;
2911 type->tp_flags |= base->tp_flags & Py_TPFLAGS_CHECKTYPES;
2912 }
2913
2914 /* Copying basicsize is connected to the GC flags */
Neil Schemenauerc806c882001-08-29 23:54:54 +00002915 oldsize = base->tp_basicsize;
2916 newsize = type->tp_basicsize ? type->tp_basicsize : oldsize;
2917 if (!(type->tp_flags & Py_TPFLAGS_HAVE_GC) &&
2918 (base->tp_flags & Py_TPFLAGS_HAVE_GC) &&
Guido van Rossum13d52f02001-08-10 21:24:08 +00002919 (type->tp_flags & Py_TPFLAGS_HAVE_RICHCOMPARE/*GC slots exist*/) &&
2920 (!type->tp_traverse && !type->tp_clear)) {
Neil Schemenauerc806c882001-08-29 23:54:54 +00002921 type->tp_flags |= Py_TPFLAGS_HAVE_GC;
Guido van Rossum13d52f02001-08-10 21:24:08 +00002922 if (type->tp_traverse == NULL)
2923 type->tp_traverse = base->tp_traverse;
2924 if (type->tp_clear == NULL)
2925 type->tp_clear = base->tp_clear;
2926 }
2927 if (type->tp_flags & base->tp_flags & Py_TPFLAGS_HAVE_CLASS) {
Guido van Rossumf884b742001-12-17 17:14:22 +00002928 /* The condition below could use some explanation.
2929 It appears that tp_new is not inherited for static types
2930 whose base class is 'object'; this seems to be a precaution
2931 so that old extension types don't suddenly become
2932 callable (object.__new__ wouldn't insure the invariants
2933 that the extension type's own factory function ensures).
2934 Heap types, of course, are under our control, so they do
2935 inherit tp_new; static extension types that specify some
2936 other built-in type as the default are considered
2937 new-style-aware so they also inherit object.__new__. */
Guido van Rossum13d52f02001-08-10 21:24:08 +00002938 if (base != &PyBaseObject_Type ||
2939 (type->tp_flags & Py_TPFLAGS_HEAPTYPE)) {
2940 if (type->tp_new == NULL)
2941 type->tp_new = base->tp_new;
2942 }
2943 }
Neil Schemenauerc806c882001-08-29 23:54:54 +00002944 type->tp_basicsize = newsize;
Guido van Rossum4dd64ab2001-08-14 20:04:48 +00002945
2946 /* Copy other non-function slots */
2947
2948#undef COPYVAL
2949#define COPYVAL(SLOT) \
2950 if (type->SLOT == 0) type->SLOT = base->SLOT
2951
2952 COPYVAL(tp_itemsize);
2953 if (type->tp_flags & base->tp_flags & Py_TPFLAGS_HAVE_WEAKREFS) {
2954 COPYVAL(tp_weaklistoffset);
2955 }
2956 if (type->tp_flags & base->tp_flags & Py_TPFLAGS_HAVE_CLASS) {
2957 COPYVAL(tp_dictoffset);
2958 }
Guido van Rossum13d52f02001-08-10 21:24:08 +00002959}
2960
2961static void
2962inherit_slots(PyTypeObject *type, PyTypeObject *base)
2963{
2964 PyTypeObject *basebase;
2965
2966#undef SLOTDEFINED
Tim Peters6d6c1a32001-08-02 04:15:00 +00002967#undef COPYSLOT
2968#undef COPYNUM
2969#undef COPYSEQ
2970#undef COPYMAP
Guido van Rossum5af588b2001-10-12 14:13:21 +00002971#undef COPYBUF
Guido van Rossum13d52f02001-08-10 21:24:08 +00002972
2973#define SLOTDEFINED(SLOT) \
2974 (base->SLOT != 0 && \
2975 (basebase == NULL || base->SLOT != basebase->SLOT))
2976
Tim Peters6d6c1a32001-08-02 04:15:00 +00002977#define COPYSLOT(SLOT) \
Guido van Rossum13d52f02001-08-10 21:24:08 +00002978 if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
Tim Peters6d6c1a32001-08-02 04:15:00 +00002979
2980#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
2981#define COPYSEQ(SLOT) COPYSLOT(tp_as_sequence->SLOT)
2982#define COPYMAP(SLOT) COPYSLOT(tp_as_mapping->SLOT)
Tim Petersfc57ccb2001-10-12 02:38:24 +00002983#define COPYBUF(SLOT) COPYSLOT(tp_as_buffer->SLOT)
Tim Peters6d6c1a32001-08-02 04:15:00 +00002984
Guido van Rossum13d52f02001-08-10 21:24:08 +00002985 /* This won't inherit indirect slots (from tp_as_number etc.)
2986 if type doesn't provide the space. */
2987
2988 if (type->tp_as_number != NULL && base->tp_as_number != NULL) {
2989 basebase = base->tp_base;
2990 if (basebase->tp_as_number == NULL)
2991 basebase = NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00002992 COPYNUM(nb_add);
2993 COPYNUM(nb_subtract);
2994 COPYNUM(nb_multiply);
2995 COPYNUM(nb_divide);
2996 COPYNUM(nb_remainder);
2997 COPYNUM(nb_divmod);
2998 COPYNUM(nb_power);
2999 COPYNUM(nb_negative);
3000 COPYNUM(nb_positive);
3001 COPYNUM(nb_absolute);
3002 COPYNUM(nb_nonzero);
3003 COPYNUM(nb_invert);
3004 COPYNUM(nb_lshift);
3005 COPYNUM(nb_rshift);
3006 COPYNUM(nb_and);
3007 COPYNUM(nb_xor);
3008 COPYNUM(nb_or);
3009 COPYNUM(nb_coerce);
3010 COPYNUM(nb_int);
3011 COPYNUM(nb_long);
3012 COPYNUM(nb_float);
3013 COPYNUM(nb_oct);
3014 COPYNUM(nb_hex);
3015 COPYNUM(nb_inplace_add);
3016 COPYNUM(nb_inplace_subtract);
3017 COPYNUM(nb_inplace_multiply);
3018 COPYNUM(nb_inplace_divide);
3019 COPYNUM(nb_inplace_remainder);
3020 COPYNUM(nb_inplace_power);
3021 COPYNUM(nb_inplace_lshift);
3022 COPYNUM(nb_inplace_rshift);
3023 COPYNUM(nb_inplace_and);
3024 COPYNUM(nb_inplace_xor);
3025 COPYNUM(nb_inplace_or);
Guido van Rossumdc91b992001-08-08 22:26:22 +00003026 if (base->tp_flags & Py_TPFLAGS_CHECKTYPES) {
3027 COPYNUM(nb_true_divide);
3028 COPYNUM(nb_floor_divide);
3029 COPYNUM(nb_inplace_true_divide);
3030 COPYNUM(nb_inplace_floor_divide);
3031 }
Guido van Rossum38fff8c2006-03-07 18:50:55 +00003032 if (base->tp_flags & Py_TPFLAGS_HAVE_INDEX) {
3033 COPYNUM(nb_index);
3034 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00003035 }
3036
Guido van Rossum13d52f02001-08-10 21:24:08 +00003037 if (type->tp_as_sequence != NULL && base->tp_as_sequence != NULL) {
3038 basebase = base->tp_base;
3039 if (basebase->tp_as_sequence == NULL)
3040 basebase = NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003041 COPYSEQ(sq_length);
3042 COPYSEQ(sq_concat);
3043 COPYSEQ(sq_repeat);
3044 COPYSEQ(sq_item);
3045 COPYSEQ(sq_slice);
3046 COPYSEQ(sq_ass_item);
3047 COPYSEQ(sq_ass_slice);
3048 COPYSEQ(sq_contains);
3049 COPYSEQ(sq_inplace_concat);
3050 COPYSEQ(sq_inplace_repeat);
3051 }
3052
Guido van Rossum13d52f02001-08-10 21:24:08 +00003053 if (type->tp_as_mapping != NULL && base->tp_as_mapping != NULL) {
3054 basebase = base->tp_base;
3055 if (basebase->tp_as_mapping == NULL)
3056 basebase = NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003057 COPYMAP(mp_length);
3058 COPYMAP(mp_subscript);
3059 COPYMAP(mp_ass_subscript);
3060 }
3061
Tim Petersfc57ccb2001-10-12 02:38:24 +00003062 if (type->tp_as_buffer != NULL && base->tp_as_buffer != NULL) {
3063 basebase = base->tp_base;
3064 if (basebase->tp_as_buffer == NULL)
3065 basebase = NULL;
3066 COPYBUF(bf_getreadbuffer);
3067 COPYBUF(bf_getwritebuffer);
3068 COPYBUF(bf_getsegcount);
3069 COPYBUF(bf_getcharbuffer);
3070 }
3071
Guido van Rossum13d52f02001-08-10 21:24:08 +00003072 basebase = base->tp_base;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003073
Tim Peters6d6c1a32001-08-02 04:15:00 +00003074 COPYSLOT(tp_dealloc);
3075 COPYSLOT(tp_print);
3076 if (type->tp_getattr == NULL && type->tp_getattro == NULL) {
3077 type->tp_getattr = base->tp_getattr;
3078 type->tp_getattro = base->tp_getattro;
3079 }
3080 if (type->tp_setattr == NULL && type->tp_setattro == NULL) {
3081 type->tp_setattr = base->tp_setattr;
3082 type->tp_setattro = base->tp_setattro;
3083 }
3084 /* tp_compare see tp_richcompare */
3085 COPYSLOT(tp_repr);
Guido van Rossumb8f63662001-08-15 23:57:02 +00003086 /* tp_hash see tp_richcompare */
Tim Peters6d6c1a32001-08-02 04:15:00 +00003087 COPYSLOT(tp_call);
3088 COPYSLOT(tp_str);
Tim Peters6d6c1a32001-08-02 04:15:00 +00003089 if (type->tp_flags & base->tp_flags & Py_TPFLAGS_HAVE_RICHCOMPARE) {
Guido van Rossumb8f63662001-08-15 23:57:02 +00003090 if (type->tp_compare == NULL &&
3091 type->tp_richcompare == NULL &&
3092 type->tp_hash == NULL)
3093 {
Tim Peters6d6c1a32001-08-02 04:15:00 +00003094 type->tp_compare = base->tp_compare;
3095 type->tp_richcompare = base->tp_richcompare;
Guido van Rossumb8f63662001-08-15 23:57:02 +00003096 type->tp_hash = base->tp_hash;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003097 }
3098 }
3099 else {
3100 COPYSLOT(tp_compare);
3101 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00003102 if (type->tp_flags & base->tp_flags & Py_TPFLAGS_HAVE_ITER) {
3103 COPYSLOT(tp_iter);
3104 COPYSLOT(tp_iternext);
3105 }
3106 if (type->tp_flags & base->tp_flags & Py_TPFLAGS_HAVE_CLASS) {
3107 COPYSLOT(tp_descr_get);
3108 COPYSLOT(tp_descr_set);
3109 COPYSLOT(tp_dictoffset);
3110 COPYSLOT(tp_init);
3111 COPYSLOT(tp_alloc);
Guido van Rossumcc8fe042002-04-05 17:10:16 +00003112 COPYSLOT(tp_is_gc);
Tim Peters3cfe7542003-05-21 21:29:48 +00003113 if ((type->tp_flags & Py_TPFLAGS_HAVE_GC) ==
3114 (base->tp_flags & Py_TPFLAGS_HAVE_GC)) {
3115 /* They agree about gc. */
3116 COPYSLOT(tp_free);
3117 }
3118 else if ((type->tp_flags & Py_TPFLAGS_HAVE_GC) &&
3119 type->tp_free == NULL &&
3120 base->tp_free == _PyObject_Del) {
3121 /* A bit of magic to plug in the correct default
3122 * tp_free function when a derived class adds gc,
3123 * didn't define tp_free, and the base uses the
3124 * default non-gc tp_free.
3125 */
3126 type->tp_free = PyObject_GC_Del;
3127 }
3128 /* else they didn't agree about gc, and there isn't something
3129 * obvious to be done -- the type is on its own.
3130 */
Tim Peters6d6c1a32001-08-02 04:15:00 +00003131 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00003132}
3133
Jeremy Hylton938ace62002-07-17 16:30:39 +00003134static int add_operators(PyTypeObject *);
Guido van Rossum13d52f02001-08-10 21:24:08 +00003135
Tim Peters6d6c1a32001-08-02 04:15:00 +00003136int
Guido van Rossum528b7eb2001-08-07 17:24:28 +00003137PyType_Ready(PyTypeObject *type)
Tim Peters6d6c1a32001-08-02 04:15:00 +00003138{
Guido van Rossum2f3ca6e2001-10-15 21:05:10 +00003139 PyObject *dict, *bases;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003140 PyTypeObject *base;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003141 Py_ssize_t i, n;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003142
Guido van Rossumcab05802002-06-10 15:29:03 +00003143 if (type->tp_flags & Py_TPFLAGS_READY) {
3144 assert(type->tp_dict != NULL);
Guido van Rossumd614f972001-08-10 17:39:49 +00003145 return 0;
Guido van Rossumcab05802002-06-10 15:29:03 +00003146 }
Guido van Rossumd614f972001-08-10 17:39:49 +00003147 assert((type->tp_flags & Py_TPFLAGS_READYING) == 0);
Guido van Rossumd614f972001-08-10 17:39:49 +00003148
3149 type->tp_flags |= Py_TPFLAGS_READYING;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003150
Tim Peters36eb4df2003-03-23 03:33:13 +00003151#ifdef Py_TRACE_REFS
3152 /* PyType_Ready is the closest thing we have to a choke point
3153 * for type objects, so is the best place I can think of to try
3154 * to get type objects into the doubly-linked list of all objects.
3155 * Still, not all type objects go thru PyType_Ready.
3156 */
Tim Peters7571a0f2003-03-23 17:52:28 +00003157 _Py_AddToAllObjects((PyObject *)type, 0);
Tim Peters36eb4df2003-03-23 03:33:13 +00003158#endif
3159
Tim Peters6d6c1a32001-08-02 04:15:00 +00003160 /* Initialize tp_base (defaults to BaseObject unless that's us) */
3161 base = type->tp_base;
Martin v. Löwisbf608752004-08-18 13:16:54 +00003162 if (base == NULL && type != &PyBaseObject_Type) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00003163 base = type->tp_base = &PyBaseObject_Type;
Martin v. Löwisbf608752004-08-18 13:16:54 +00003164 Py_INCREF(base);
3165 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00003166
Guido van Rossum692cdbc2006-03-10 02:04:28 +00003167 /* Now the only way base can still be NULL is if type is
3168 * &PyBaseObject_Type.
3169 */
3170
Guido van Rossum323a9cf2002-08-14 17:26:30 +00003171 /* Initialize the base class */
3172 if (base && base->tp_dict == NULL) {
3173 if (PyType_Ready(base) < 0)
3174 goto error;
3175 }
3176
Guido van Rossum0986d822002-04-08 01:38:42 +00003177 /* Initialize ob_type if NULL. This means extensions that want to be
3178 compilable separately on Windows can call PyType_Ready() instead of
3179 initializing the ob_type field of their type objects. */
Guido van Rossum692cdbc2006-03-10 02:04:28 +00003180 /* The test for base != NULL is really unnecessary, since base is only
3181 NULL when type is &PyBaseObject_Type, and we know its ob_type is
3182 not NULL (it's initialized to &PyType_Type). But coverity doesn't
3183 know that. */
3184 if (type->ob_type == NULL && base != NULL)
Guido van Rossum0986d822002-04-08 01:38:42 +00003185 type->ob_type = base->ob_type;
3186
Tim Peters6d6c1a32001-08-02 04:15:00 +00003187 /* Initialize tp_bases */
3188 bases = type->tp_bases;
3189 if (bases == NULL) {
3190 if (base == NULL)
3191 bases = PyTuple_New(0);
3192 else
Raymond Hettinger8ae46892003-10-12 19:09:37 +00003193 bases = PyTuple_Pack(1, base);
Tim Peters6d6c1a32001-08-02 04:15:00 +00003194 if (bases == NULL)
Guido van Rossumd614f972001-08-10 17:39:49 +00003195 goto error;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003196 type->tp_bases = bases;
3197 }
3198
Guido van Rossum687ae002001-10-15 22:03:32 +00003199 /* Initialize tp_dict */
3200 dict = type->tp_dict;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003201 if (dict == NULL) {
3202 dict = PyDict_New();
3203 if (dict == NULL)
Guido van Rossumd614f972001-08-10 17:39:49 +00003204 goto error;
Guido van Rossum687ae002001-10-15 22:03:32 +00003205 type->tp_dict = dict;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003206 }
3207
Guido van Rossum687ae002001-10-15 22:03:32 +00003208 /* Add type-specific descriptors to tp_dict */
Tim Peters6d6c1a32001-08-02 04:15:00 +00003209 if (add_operators(type) < 0)
Guido van Rossumd614f972001-08-10 17:39:49 +00003210 goto error;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003211 if (type->tp_methods != NULL) {
3212 if (add_methods(type, type->tp_methods) < 0)
Guido van Rossumd614f972001-08-10 17:39:49 +00003213 goto error;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003214 }
3215 if (type->tp_members != NULL) {
3216 if (add_members(type, type->tp_members) < 0)
Guido van Rossumd614f972001-08-10 17:39:49 +00003217 goto error;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003218 }
3219 if (type->tp_getset != NULL) {
3220 if (add_getset(type, type->tp_getset) < 0)
Guido van Rossumd614f972001-08-10 17:39:49 +00003221 goto error;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003222 }
3223
Tim Peters6d6c1a32001-08-02 04:15:00 +00003224 /* Calculate method resolution order */
3225 if (mro_internal(type) < 0) {
Guido van Rossumd614f972001-08-10 17:39:49 +00003226 goto error;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003227 }
3228
Guido van Rossum13d52f02001-08-10 21:24:08 +00003229 /* Inherit special flags from dominant base */
3230 if (type->tp_base != NULL)
3231 inherit_special(type, type->tp_base);
3232
Tim Peters6d6c1a32001-08-02 04:15:00 +00003233 /* Initialize tp_dict properly */
Guido van Rossum2f3ca6e2001-10-15 21:05:10 +00003234 bases = type->tp_mro;
3235 assert(bases != NULL);
3236 assert(PyTuple_Check(bases));
3237 n = PyTuple_GET_SIZE(bases);
3238 for (i = 1; i < n; i++) {
Tim Petersa91e9642001-11-14 23:32:33 +00003239 PyObject *b = PyTuple_GET_ITEM(bases, i);
3240 if (PyType_Check(b))
3241 inherit_slots(type, (PyTypeObject *)b);
Guido van Rossum7b9144b2001-10-09 19:39:46 +00003242 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00003243
Tim Peters3cfe7542003-05-21 21:29:48 +00003244 /* Sanity check for tp_free. */
3245 if (PyType_IS_GC(type) && (type->tp_flags & Py_TPFLAGS_BASETYPE) &&
3246 (type->tp_free == NULL || type->tp_free == PyObject_Del)) {
3247 /* This base class needs to call tp_free, but doesn't have
3248 * one, or its tp_free is for non-gc'ed objects.
3249 */
3250 PyErr_Format(PyExc_TypeError, "type '%.100s' participates in "
3251 "gc and is a base type but has inappropriate "
3252 "tp_free slot",
3253 type->tp_name);
3254 goto error;
3255 }
3256
Martin v. Löwisf9bd6b02002-02-18 17:46:48 +00003257 /* if the type dictionary doesn't contain a __doc__, set it from
3258 the tp_doc slot.
3259 */
3260 if (PyDict_GetItemString(type->tp_dict, "__doc__") == NULL) {
3261 if (type->tp_doc != NULL) {
3262 PyObject *doc = PyString_FromString(type->tp_doc);
Neal Norwitze1fdb322006-07-21 05:32:28 +00003263 if (doc == NULL)
3264 goto error;
Martin v. Löwisf9bd6b02002-02-18 17:46:48 +00003265 PyDict_SetItemString(type->tp_dict, "__doc__", doc);
3266 Py_DECREF(doc);
3267 } else {
Guido van Rossumd4641072002-04-03 02:13:37 +00003268 PyDict_SetItemString(type->tp_dict,
3269 "__doc__", Py_None);
Martin v. Löwisf9bd6b02002-02-18 17:46:48 +00003270 }
3271 }
3272
Guido van Rossum13d52f02001-08-10 21:24:08 +00003273 /* Some more special stuff */
3274 base = type->tp_base;
3275 if (base != NULL) {
3276 if (type->tp_as_number == NULL)
3277 type->tp_as_number = base->tp_as_number;
3278 if (type->tp_as_sequence == NULL)
3279 type->tp_as_sequence = base->tp_as_sequence;
3280 if (type->tp_as_mapping == NULL)
3281 type->tp_as_mapping = base->tp_as_mapping;
Guido van Rossumeea47182003-02-11 20:39:59 +00003282 if (type->tp_as_buffer == NULL)
3283 type->tp_as_buffer = base->tp_as_buffer;
Guido van Rossum13d52f02001-08-10 21:24:08 +00003284 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00003285
Guido van Rossum1c450732001-10-08 15:18:27 +00003286 /* Link into each base class's list of subclasses */
3287 bases = type->tp_bases;
3288 n = PyTuple_GET_SIZE(bases);
3289 for (i = 0; i < n; i++) {
Tim Petersa91e9642001-11-14 23:32:33 +00003290 PyObject *b = PyTuple_GET_ITEM(bases, i);
3291 if (PyType_Check(b) &&
3292 add_subclass((PyTypeObject *)b, type) < 0)
Guido van Rossum1c450732001-10-08 15:18:27 +00003293 goto error;
3294 }
3295
Guido van Rossum13d52f02001-08-10 21:24:08 +00003296 /* All done -- set the ready flag */
Guido van Rossumd614f972001-08-10 17:39:49 +00003297 assert(type->tp_dict != NULL);
3298 type->tp_flags =
3299 (type->tp_flags & ~Py_TPFLAGS_READYING) | Py_TPFLAGS_READY;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003300 return 0;
Guido van Rossumd614f972001-08-10 17:39:49 +00003301
3302 error:
3303 type->tp_flags &= ~Py_TPFLAGS_READYING;
3304 return -1;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003305}
3306
Guido van Rossum1c450732001-10-08 15:18:27 +00003307static int
3308add_subclass(PyTypeObject *base, PyTypeObject *type)
3309{
Martin v. Löwiseb079f12006-02-16 14:32:27 +00003310 Py_ssize_t i;
3311 int result;
Anthony Baxtera6286212006-04-11 07:42:36 +00003312 PyObject *list, *ref, *newobj;
Guido van Rossum1c450732001-10-08 15:18:27 +00003313
3314 list = base->tp_subclasses;
3315 if (list == NULL) {
3316 base->tp_subclasses = list = PyList_New(0);
3317 if (list == NULL)
3318 return -1;
3319 }
3320 assert(PyList_Check(list));
Anthony Baxtera6286212006-04-11 07:42:36 +00003321 newobj = PyWeakref_NewRef((PyObject *)type, NULL);
Guido van Rossum1c450732001-10-08 15:18:27 +00003322 i = PyList_GET_SIZE(list);
3323 while (--i >= 0) {
3324 ref = PyList_GET_ITEM(list, i);
3325 assert(PyWeakref_CheckRef(ref));
Guido van Rossum3930bc32002-10-18 13:51:49 +00003326 if (PyWeakref_GET_OBJECT(ref) == Py_None)
Anthony Baxtera6286212006-04-11 07:42:36 +00003327 return PyList_SetItem(list, i, newobj);
Guido van Rossum1c450732001-10-08 15:18:27 +00003328 }
Anthony Baxtera6286212006-04-11 07:42:36 +00003329 result = PyList_Append(list, newobj);
3330 Py_DECREF(newobj);
Martin v. Löwiseb079f12006-02-16 14:32:27 +00003331 return result;
Guido van Rossum1c450732001-10-08 15:18:27 +00003332}
3333
Michael W. Hudson98bbc492002-11-26 14:47:27 +00003334static void
3335remove_subclass(PyTypeObject *base, PyTypeObject *type)
3336{
Martin v. Löwis18e16552006-02-15 17:27:45 +00003337 Py_ssize_t i;
Michael W. Hudson98bbc492002-11-26 14:47:27 +00003338 PyObject *list, *ref;
3339
3340 list = base->tp_subclasses;
3341 if (list == NULL) {
3342 return;
3343 }
3344 assert(PyList_Check(list));
3345 i = PyList_GET_SIZE(list);
3346 while (--i >= 0) {
3347 ref = PyList_GET_ITEM(list, i);
3348 assert(PyWeakref_CheckRef(ref));
3349 if (PyWeakref_GET_OBJECT(ref) == (PyObject*)type) {
3350 /* this can't fail, right? */
3351 PySequence_DelItem(list, i);
3352 return;
3353 }
3354 }
3355}
Tim Peters6d6c1a32001-08-02 04:15:00 +00003356
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003357static int
3358check_num_args(PyObject *ob, int n)
3359{
3360 if (!PyTuple_CheckExact(ob)) {
3361 PyErr_SetString(PyExc_SystemError,
3362 "PyArg_UnpackTuple() argument list is not a tuple");
3363 return 0;
3364 }
3365 if (n == PyTuple_GET_SIZE(ob))
3366 return 1;
3367 PyErr_Format(
3368 PyExc_TypeError,
Martin v. Löwis2c95cc62006-02-16 06:54:25 +00003369 "expected %d arguments, got %zd", n, PyTuple_GET_SIZE(ob));
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003370 return 0;
3371}
3372
Tim Peters6d6c1a32001-08-02 04:15:00 +00003373/* Generic wrappers for overloadable 'operators' such as __getitem__ */
3374
3375/* There's a wrapper *function* for each distinct function typedef used
3376 for type object slots (e.g. binaryfunc, ternaryfunc, etc.). There's a
3377 wrapper *table* for each distinct operation (e.g. __len__, __add__).
3378 Most tables have only one entry; the tables for binary operators have two
3379 entries, one regular and one with reversed arguments. */
3380
3381static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +00003382wrap_lenfunc(PyObject *self, PyObject *args, void *wrapped)
Tim Peters6d6c1a32001-08-02 04:15:00 +00003383{
Martin v. Löwis18e16552006-02-15 17:27:45 +00003384 lenfunc func = (lenfunc)wrapped;
3385 Py_ssize_t res;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003386
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003387 if (!check_num_args(args, 0))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003388 return NULL;
3389 res = (*func)(self);
3390 if (res == -1 && PyErr_Occurred())
3391 return NULL;
3392 return PyInt_FromLong((long)res);
3393}
3394
Tim Peters6d6c1a32001-08-02 04:15:00 +00003395static PyObject *
Raymond Hettingerf34f2642003-10-11 17:29:04 +00003396wrap_inquirypred(PyObject *self, PyObject *args, void *wrapped)
3397{
3398 inquiry func = (inquiry)wrapped;
3399 int res;
3400
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003401 if (!check_num_args(args, 0))
Raymond Hettingerf34f2642003-10-11 17:29:04 +00003402 return NULL;
3403 res = (*func)(self);
3404 if (res == -1 && PyErr_Occurred())
3405 return NULL;
3406 return PyBool_FromLong((long)res);
3407}
3408
3409static PyObject *
Tim Peters6d6c1a32001-08-02 04:15:00 +00003410wrap_binaryfunc(PyObject *self, PyObject *args, void *wrapped)
3411{
3412 binaryfunc func = (binaryfunc)wrapped;
3413 PyObject *other;
3414
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003415 if (!check_num_args(args, 1))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003416 return NULL;
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003417 other = PyTuple_GET_ITEM(args, 0);
Tim Peters6d6c1a32001-08-02 04:15:00 +00003418 return (*func)(self, other);
3419}
3420
3421static PyObject *
Guido van Rossum0eb2a6e2001-10-09 11:07:24 +00003422wrap_binaryfunc_l(PyObject *self, PyObject *args, void *wrapped)
3423{
3424 binaryfunc func = (binaryfunc)wrapped;
3425 PyObject *other;
3426
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003427 if (!check_num_args(args, 1))
Guido van Rossum0eb2a6e2001-10-09 11:07:24 +00003428 return NULL;
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003429 other = PyTuple_GET_ITEM(args, 0);
Guido van Rossum0eb2a6e2001-10-09 11:07:24 +00003430 if (!(self->ob_type->tp_flags & Py_TPFLAGS_CHECKTYPES) &&
Guido van Rossum7b9144b2001-10-09 19:39:46 +00003431 !PyType_IsSubtype(other->ob_type, self->ob_type)) {
Guido van Rossum0eb2a6e2001-10-09 11:07:24 +00003432 Py_INCREF(Py_NotImplemented);
3433 return Py_NotImplemented;
3434 }
3435 return (*func)(self, other);
3436}
3437
3438static PyObject *
Tim Peters6d6c1a32001-08-02 04:15:00 +00003439wrap_binaryfunc_r(PyObject *self, PyObject *args, void *wrapped)
3440{
3441 binaryfunc func = (binaryfunc)wrapped;
3442 PyObject *other;
3443
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003444 if (!check_num_args(args, 1))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003445 return NULL;
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003446 other = PyTuple_GET_ITEM(args, 0);
Guido van Rossum0eb2a6e2001-10-09 11:07:24 +00003447 if (!(self->ob_type->tp_flags & Py_TPFLAGS_CHECKTYPES) &&
Guido van Rossum7b9144b2001-10-09 19:39:46 +00003448 !PyType_IsSubtype(other->ob_type, self->ob_type)) {
Guido van Rossum0eb2a6e2001-10-09 11:07:24 +00003449 Py_INCREF(Py_NotImplemented);
3450 return Py_NotImplemented;
3451 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00003452 return (*func)(other, self);
3453}
3454
Guido van Rossum2ed6bf82001-09-27 20:30:07 +00003455static PyObject *
3456wrap_coercefunc(PyObject *self, PyObject *args, void *wrapped)
3457{
3458 coercion func = (coercion)wrapped;
3459 PyObject *other, *res;
3460 int ok;
3461
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003462 if (!check_num_args(args, 1))
Guido van Rossum2ed6bf82001-09-27 20:30:07 +00003463 return NULL;
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003464 other = PyTuple_GET_ITEM(args, 0);
Guido van Rossum2ed6bf82001-09-27 20:30:07 +00003465 ok = func(&self, &other);
3466 if (ok < 0)
3467 return NULL;
3468 if (ok > 0) {
3469 Py_INCREF(Py_NotImplemented);
3470 return Py_NotImplemented;
3471 }
3472 res = PyTuple_New(2);
3473 if (res == NULL) {
3474 Py_DECREF(self);
3475 Py_DECREF(other);
3476 return NULL;
3477 }
3478 PyTuple_SET_ITEM(res, 0, self);
3479 PyTuple_SET_ITEM(res, 1, other);
3480 return res;
3481}
3482
Tim Peters6d6c1a32001-08-02 04:15:00 +00003483static PyObject *
3484wrap_ternaryfunc(PyObject *self, PyObject *args, void *wrapped)
3485{
3486 ternaryfunc func = (ternaryfunc)wrapped;
3487 PyObject *other;
3488 PyObject *third = Py_None;
3489
3490 /* Note: This wrapper only works for __pow__() */
3491
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003492 if (!PyArg_UnpackTuple(args, "", 1, 2, &other, &third))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003493 return NULL;
3494 return (*func)(self, other, third);
3495}
3496
Guido van Rossum9bea3ab2001-09-28 22:58:52 +00003497static PyObject *
3498wrap_ternaryfunc_r(PyObject *self, PyObject *args, void *wrapped)
3499{
3500 ternaryfunc func = (ternaryfunc)wrapped;
3501 PyObject *other;
3502 PyObject *third = Py_None;
3503
3504 /* Note: This wrapper only works for __pow__() */
3505
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003506 if (!PyArg_UnpackTuple(args, "", 1, 2, &other, &third))
Guido van Rossum9bea3ab2001-09-28 22:58:52 +00003507 return NULL;
3508 return (*func)(other, self, third);
3509}
3510
Tim Peters6d6c1a32001-08-02 04:15:00 +00003511static PyObject *
3512wrap_unaryfunc(PyObject *self, PyObject *args, void *wrapped)
3513{
3514 unaryfunc func = (unaryfunc)wrapped;
3515
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003516 if (!check_num_args(args, 0))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003517 return NULL;
3518 return (*func)(self);
3519}
3520
Tim Peters6d6c1a32001-08-02 04:15:00 +00003521static PyObject *
Armin Rigo314861c2006-03-30 14:04:02 +00003522wrap_indexargfunc(PyObject *self, PyObject *args, void *wrapped)
Tim Peters6d6c1a32001-08-02 04:15:00 +00003523{
Martin v. Löwis18e16552006-02-15 17:27:45 +00003524 ssizeargfunc func = (ssizeargfunc)wrapped;
Armin Rigo314861c2006-03-30 14:04:02 +00003525 PyObject* o;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003526 Py_ssize_t i;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003527
Armin Rigo314861c2006-03-30 14:04:02 +00003528 if (!PyArg_UnpackTuple(args, "", 1, 1, &o))
3529 return NULL;
Neal Norwitz8a87f5d2006-08-12 17:03:09 +00003530 i = PyNumber_AsSsize_t(o, PyExc_OverflowError);
Armin Rigo314861c2006-03-30 14:04:02 +00003531 if (i == -1 && PyErr_Occurred())
Tim Peters6d6c1a32001-08-02 04:15:00 +00003532 return NULL;
3533 return (*func)(self, i);
3534}
3535
Martin v. Löwis18e16552006-02-15 17:27:45 +00003536static Py_ssize_t
Guido van Rossum5d815f32001-08-17 21:57:47 +00003537getindex(PyObject *self, PyObject *arg)
3538{
Martin v. Löwis18e16552006-02-15 17:27:45 +00003539 Py_ssize_t i;
Guido van Rossum5d815f32001-08-17 21:57:47 +00003540
Neal Norwitz8a87f5d2006-08-12 17:03:09 +00003541 i = PyNumber_AsSsize_t(arg, PyExc_OverflowError);
Guido van Rossum5d815f32001-08-17 21:57:47 +00003542 if (i == -1 && PyErr_Occurred())
3543 return -1;
3544 if (i < 0) {
3545 PySequenceMethods *sq = self->ob_type->tp_as_sequence;
3546 if (sq && sq->sq_length) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00003547 Py_ssize_t n = (*sq->sq_length)(self);
Guido van Rossum5d815f32001-08-17 21:57:47 +00003548 if (n < 0)
3549 return -1;
3550 i += n;
3551 }
3552 }
3553 return i;
3554}
3555
3556static PyObject *
3557wrap_sq_item(PyObject *self, PyObject *args, void *wrapped)
3558{
Martin v. Löwis18e16552006-02-15 17:27:45 +00003559 ssizeargfunc func = (ssizeargfunc)wrapped;
Guido van Rossum5d815f32001-08-17 21:57:47 +00003560 PyObject *arg;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003561 Py_ssize_t i;
Guido van Rossum5d815f32001-08-17 21:57:47 +00003562
Guido van Rossumf4593e02001-10-03 12:09:30 +00003563 if (PyTuple_GET_SIZE(args) == 1) {
3564 arg = PyTuple_GET_ITEM(args, 0);
3565 i = getindex(self, arg);
3566 if (i == -1 && PyErr_Occurred())
3567 return NULL;
3568 return (*func)(self, i);
3569 }
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003570 check_num_args(args, 1);
Guido van Rossumf4593e02001-10-03 12:09:30 +00003571 assert(PyErr_Occurred());
3572 return NULL;
Guido van Rossum5d815f32001-08-17 21:57:47 +00003573}
3574
Tim Peters6d6c1a32001-08-02 04:15:00 +00003575static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +00003576wrap_ssizessizeargfunc(PyObject *self, PyObject *args, void *wrapped)
Tim Peters6d6c1a32001-08-02 04:15:00 +00003577{
Martin v. Löwis18e16552006-02-15 17:27:45 +00003578 ssizessizeargfunc func = (ssizessizeargfunc)wrapped;
3579 Py_ssize_t i, j;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003580
Martin v. Löwis18e16552006-02-15 17:27:45 +00003581 if (!PyArg_ParseTuple(args, "nn", &i, &j))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003582 return NULL;
3583 return (*func)(self, i, j);
3584}
3585
Tim Peters6d6c1a32001-08-02 04:15:00 +00003586static PyObject *
Guido van Rossum5d815f32001-08-17 21:57:47 +00003587wrap_sq_setitem(PyObject *self, PyObject *args, void *wrapped)
Tim Peters6d6c1a32001-08-02 04:15:00 +00003588{
Martin v. Löwis18e16552006-02-15 17:27:45 +00003589 ssizeobjargproc func = (ssizeobjargproc)wrapped;
3590 Py_ssize_t i;
3591 int res;
Guido van Rossum5d815f32001-08-17 21:57:47 +00003592 PyObject *arg, *value;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003593
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003594 if (!PyArg_UnpackTuple(args, "", 2, 2, &arg, &value))
Guido van Rossum5d815f32001-08-17 21:57:47 +00003595 return NULL;
3596 i = getindex(self, arg);
3597 if (i == -1 && PyErr_Occurred())
Tim Peters6d6c1a32001-08-02 04:15:00 +00003598 return NULL;
3599 res = (*func)(self, i, value);
3600 if (res == -1 && PyErr_Occurred())
3601 return NULL;
3602 Py_INCREF(Py_None);
3603 return Py_None;
3604}
3605
Guido van Rossum2b8d7bd2001-08-02 15:31:58 +00003606static PyObject *
Guido van Rossum5d815f32001-08-17 21:57:47 +00003607wrap_sq_delitem(PyObject *self, PyObject *args, void *wrapped)
Guido van Rossum2b8d7bd2001-08-02 15:31:58 +00003608{
Martin v. Löwis18e16552006-02-15 17:27:45 +00003609 ssizeobjargproc func = (ssizeobjargproc)wrapped;
3610 Py_ssize_t i;
3611 int res;
Guido van Rossum5d815f32001-08-17 21:57:47 +00003612 PyObject *arg;
Guido van Rossum2b8d7bd2001-08-02 15:31:58 +00003613
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003614 if (!check_num_args(args, 1))
Guido van Rossum5d815f32001-08-17 21:57:47 +00003615 return NULL;
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003616 arg = PyTuple_GET_ITEM(args, 0);
Guido van Rossum5d815f32001-08-17 21:57:47 +00003617 i = getindex(self, arg);
3618 if (i == -1 && PyErr_Occurred())
Guido van Rossum2b8d7bd2001-08-02 15:31:58 +00003619 return NULL;
3620 res = (*func)(self, i, NULL);
3621 if (res == -1 && PyErr_Occurred())
3622 return NULL;
3623 Py_INCREF(Py_None);
3624 return Py_None;
3625}
3626
Tim Peters6d6c1a32001-08-02 04:15:00 +00003627static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +00003628wrap_ssizessizeobjargproc(PyObject *self, PyObject *args, void *wrapped)
Tim Peters6d6c1a32001-08-02 04:15:00 +00003629{
Martin v. Löwis18e16552006-02-15 17:27:45 +00003630 ssizessizeobjargproc func = (ssizessizeobjargproc)wrapped;
3631 Py_ssize_t i, j;
3632 int res;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003633 PyObject *value;
3634
Martin v. Löwis18e16552006-02-15 17:27:45 +00003635 if (!PyArg_ParseTuple(args, "nnO", &i, &j, &value))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003636 return NULL;
3637 res = (*func)(self, i, j, value);
3638 if (res == -1 && PyErr_Occurred())
3639 return NULL;
3640 Py_INCREF(Py_None);
3641 return Py_None;
3642}
3643
Guido van Rossum7b9144b2001-10-09 19:39:46 +00003644static PyObject *
3645wrap_delslice(PyObject *self, PyObject *args, void *wrapped)
3646{
Martin v. Löwis18e16552006-02-15 17:27:45 +00003647 ssizessizeobjargproc func = (ssizessizeobjargproc)wrapped;
3648 Py_ssize_t i, j;
3649 int res;
Guido van Rossum7b9144b2001-10-09 19:39:46 +00003650
Martin v. Löwis18e16552006-02-15 17:27:45 +00003651 if (!PyArg_ParseTuple(args, "nn", &i, &j))
Guido van Rossum7b9144b2001-10-09 19:39:46 +00003652 return NULL;
3653 res = (*func)(self, i, j, NULL);
3654 if (res == -1 && PyErr_Occurred())
3655 return NULL;
3656 Py_INCREF(Py_None);
3657 return Py_None;
3658}
3659
Tim Peters6d6c1a32001-08-02 04:15:00 +00003660/* XXX objobjproc is a misnomer; should be objargpred */
3661static PyObject *
3662wrap_objobjproc(PyObject *self, PyObject *args, void *wrapped)
3663{
3664 objobjproc func = (objobjproc)wrapped;
3665 int res;
Guido van Rossum22c3dda2003-10-09 03:46:35 +00003666 PyObject *value;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003667
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003668 if (!check_num_args(args, 1))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003669 return NULL;
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003670 value = PyTuple_GET_ITEM(args, 0);
Tim Peters6d6c1a32001-08-02 04:15:00 +00003671 res = (*func)(self, value);
3672 if (res == -1 && PyErr_Occurred())
3673 return NULL;
Guido van Rossum22c3dda2003-10-09 03:46:35 +00003674 else
3675 return PyBool_FromLong(res);
Tim Peters6d6c1a32001-08-02 04:15:00 +00003676}
3677
Tim Peters6d6c1a32001-08-02 04:15:00 +00003678static PyObject *
3679wrap_objobjargproc(PyObject *self, PyObject *args, void *wrapped)
3680{
3681 objobjargproc func = (objobjargproc)wrapped;
3682 int res;
3683 PyObject *key, *value;
3684
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003685 if (!PyArg_UnpackTuple(args, "", 2, 2, &key, &value))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003686 return NULL;
3687 res = (*func)(self, key, value);
3688 if (res == -1 && PyErr_Occurred())
3689 return NULL;
3690 Py_INCREF(Py_None);
3691 return Py_None;
3692}
3693
Guido van Rossum2b8d7bd2001-08-02 15:31:58 +00003694static PyObject *
3695wrap_delitem(PyObject *self, PyObject *args, void *wrapped)
3696{
3697 objobjargproc func = (objobjargproc)wrapped;
3698 int res;
3699 PyObject *key;
3700
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003701 if (!check_num_args(args, 1))
Guido van Rossum2b8d7bd2001-08-02 15:31:58 +00003702 return NULL;
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003703 key = PyTuple_GET_ITEM(args, 0);
Guido van Rossum2b8d7bd2001-08-02 15:31:58 +00003704 res = (*func)(self, key, NULL);
3705 if (res == -1 && PyErr_Occurred())
3706 return NULL;
3707 Py_INCREF(Py_None);
3708 return Py_None;
3709}
3710
Tim Peters6d6c1a32001-08-02 04:15:00 +00003711static PyObject *
3712wrap_cmpfunc(PyObject *self, PyObject *args, void *wrapped)
3713{
3714 cmpfunc func = (cmpfunc)wrapped;
3715 int res;
3716 PyObject *other;
3717
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003718 if (!check_num_args(args, 1))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003719 return NULL;
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003720 other = PyTuple_GET_ITEM(args, 0);
Guido van Rossum3d45d8f2001-09-24 18:47:40 +00003721 if (other->ob_type->tp_compare != func &&
3722 !PyType_IsSubtype(other->ob_type, self->ob_type)) {
Guido van Rossumceccae52001-09-18 20:03:57 +00003723 PyErr_Format(
3724 PyExc_TypeError,
3725 "%s.__cmp__(x,y) requires y to be a '%s', not a '%s'",
3726 self->ob_type->tp_name,
3727 self->ob_type->tp_name,
3728 other->ob_type->tp_name);
3729 return NULL;
3730 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00003731 res = (*func)(self, other);
3732 if (PyErr_Occurred())
3733 return NULL;
3734 return PyInt_FromLong((long)res);
3735}
3736
Guido van Rossum4dcdb782003-04-14 21:46:03 +00003737/* Helper to check for object.__setattr__ or __delattr__ applied to a type.
Guido van Rossum52b27052003-04-15 20:05:10 +00003738 This is called the Carlo Verre hack after its discoverer. */
Guido van Rossum4dcdb782003-04-14 21:46:03 +00003739static int
3740hackcheck(PyObject *self, setattrofunc func, char *what)
3741{
3742 PyTypeObject *type = self->ob_type;
3743 while (type && type->tp_flags & Py_TPFLAGS_HEAPTYPE)
3744 type = type->tp_base;
Guido van Rossum692cdbc2006-03-10 02:04:28 +00003745 /* If type is NULL now, this is a really weird type.
3746 In the same of backwards compatibility (?), just shut up. */
3747 if (type && type->tp_setattro != func) {
Guido van Rossum4dcdb782003-04-14 21:46:03 +00003748 PyErr_Format(PyExc_TypeError,
3749 "can't apply this %s to %s object",
3750 what,
3751 type->tp_name);
3752 return 0;
3753 }
3754 return 1;
3755}
3756
Tim Peters6d6c1a32001-08-02 04:15:00 +00003757static PyObject *
3758wrap_setattr(PyObject *self, PyObject *args, void *wrapped)
3759{
3760 setattrofunc func = (setattrofunc)wrapped;
3761 int res;
3762 PyObject *name, *value;
3763
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003764 if (!PyArg_UnpackTuple(args, "", 2, 2, &name, &value))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003765 return NULL;
Guido van Rossum4dcdb782003-04-14 21:46:03 +00003766 if (!hackcheck(self, func, "__setattr__"))
3767 return NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003768 res = (*func)(self, name, value);
3769 if (res < 0)
3770 return NULL;
3771 Py_INCREF(Py_None);
3772 return Py_None;
3773}
3774
3775static PyObject *
3776wrap_delattr(PyObject *self, PyObject *args, void *wrapped)
3777{
3778 setattrofunc func = (setattrofunc)wrapped;
3779 int res;
3780 PyObject *name;
3781
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003782 if (!check_num_args(args, 1))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003783 return NULL;
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003784 name = PyTuple_GET_ITEM(args, 0);
Guido van Rossum4dcdb782003-04-14 21:46:03 +00003785 if (!hackcheck(self, func, "__delattr__"))
3786 return NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003787 res = (*func)(self, name, NULL);
3788 if (res < 0)
3789 return NULL;
3790 Py_INCREF(Py_None);
3791 return Py_None;
3792}
3793
Tim Peters6d6c1a32001-08-02 04:15:00 +00003794static PyObject *
3795wrap_hashfunc(PyObject *self, PyObject *args, void *wrapped)
3796{
3797 hashfunc func = (hashfunc)wrapped;
3798 long res;
3799
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003800 if (!check_num_args(args, 0))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003801 return NULL;
3802 res = (*func)(self);
3803 if (res == -1 && PyErr_Occurred())
3804 return NULL;
3805 return PyInt_FromLong(res);
3806}
3807
Tim Peters6d6c1a32001-08-02 04:15:00 +00003808static PyObject *
Guido van Rossumc8e56452001-10-22 00:43:43 +00003809wrap_call(PyObject *self, PyObject *args, void *wrapped, PyObject *kwds)
Tim Peters6d6c1a32001-08-02 04:15:00 +00003810{
3811 ternaryfunc func = (ternaryfunc)wrapped;
3812
Guido van Rossumc8e56452001-10-22 00:43:43 +00003813 return (*func)(self, args, kwds);
Tim Peters6d6c1a32001-08-02 04:15:00 +00003814}
3815
Tim Peters6d6c1a32001-08-02 04:15:00 +00003816static PyObject *
3817wrap_richcmpfunc(PyObject *self, PyObject *args, void *wrapped, int op)
3818{
3819 richcmpfunc func = (richcmpfunc)wrapped;
3820 PyObject *other;
3821
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003822 if (!check_num_args(args, 1))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003823 return NULL;
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003824 other = PyTuple_GET_ITEM(args, 0);
Tim Peters6d6c1a32001-08-02 04:15:00 +00003825 return (*func)(self, other, op);
3826}
3827
3828#undef RICHCMP_WRAPPER
3829#define RICHCMP_WRAPPER(NAME, OP) \
3830static PyObject * \
3831richcmp_##NAME(PyObject *self, PyObject *args, void *wrapped) \
3832{ \
3833 return wrap_richcmpfunc(self, args, wrapped, OP); \
3834}
3835
Jack Jansen8e938b42001-08-08 15:29:49 +00003836RICHCMP_WRAPPER(lt, Py_LT)
3837RICHCMP_WRAPPER(le, Py_LE)
3838RICHCMP_WRAPPER(eq, Py_EQ)
3839RICHCMP_WRAPPER(ne, Py_NE)
3840RICHCMP_WRAPPER(gt, Py_GT)
3841RICHCMP_WRAPPER(ge, Py_GE)
Tim Peters6d6c1a32001-08-02 04:15:00 +00003842
Tim Peters6d6c1a32001-08-02 04:15:00 +00003843static PyObject *
3844wrap_next(PyObject *self, PyObject *args, void *wrapped)
3845{
3846 unaryfunc func = (unaryfunc)wrapped;
3847 PyObject *res;
3848
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003849 if (!check_num_args(args, 0))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003850 return NULL;
3851 res = (*func)(self);
3852 if (res == NULL && !PyErr_Occurred())
3853 PyErr_SetNone(PyExc_StopIteration);
3854 return res;
3855}
3856
Tim Peters6d6c1a32001-08-02 04:15:00 +00003857static PyObject *
3858wrap_descr_get(PyObject *self, PyObject *args, void *wrapped)
3859{
3860 descrgetfunc func = (descrgetfunc)wrapped;
3861 PyObject *obj;
3862 PyObject *type = NULL;
3863
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003864 if (!PyArg_UnpackTuple(args, "", 1, 2, &obj, &type))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003865 return NULL;
Guido van Rossum82ed25c2003-02-11 16:25:43 +00003866 if (obj == Py_None)
3867 obj = NULL;
3868 if (type == Py_None)
3869 type = NULL;
3870 if (type == NULL &&obj == NULL) {
3871 PyErr_SetString(PyExc_TypeError,
3872 "__get__(None, None) is invalid");
3873 return NULL;
3874 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00003875 return (*func)(self, obj, type);
3876}
3877
Tim Peters6d6c1a32001-08-02 04:15:00 +00003878static PyObject *
Guido van Rossum7b9144b2001-10-09 19:39:46 +00003879wrap_descr_set(PyObject *self, PyObject *args, void *wrapped)
Tim Peters6d6c1a32001-08-02 04:15:00 +00003880{
3881 descrsetfunc func = (descrsetfunc)wrapped;
3882 PyObject *obj, *value;
3883 int ret;
3884
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003885 if (!PyArg_UnpackTuple(args, "", 2, 2, &obj, &value))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003886 return NULL;
3887 ret = (*func)(self, obj, value);
3888 if (ret < 0)
3889 return NULL;
3890 Py_INCREF(Py_None);
3891 return Py_None;
3892}
Guido van Rossum22b13872002-08-06 21:41:44 +00003893
Guido van Rossum0dbab4c52002-08-01 14:39:25 +00003894static PyObject *
3895wrap_descr_delete(PyObject *self, PyObject *args, void *wrapped)
3896{
3897 descrsetfunc func = (descrsetfunc)wrapped;
3898 PyObject *obj;
3899 int ret;
3900
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003901 if (!check_num_args(args, 1))
Guido van Rossum0dbab4c52002-08-01 14:39:25 +00003902 return NULL;
Raymond Hettinger6a8bbdb2003-12-13 15:21:55 +00003903 obj = PyTuple_GET_ITEM(args, 0);
Guido van Rossum0dbab4c52002-08-01 14:39:25 +00003904 ret = (*func)(self, obj, NULL);
3905 if (ret < 0)
3906 return NULL;
3907 Py_INCREF(Py_None);
3908 return Py_None;
3909}
Tim Peters6d6c1a32001-08-02 04:15:00 +00003910
Tim Peters6d6c1a32001-08-02 04:15:00 +00003911static PyObject *
Guido van Rossumc8e56452001-10-22 00:43:43 +00003912wrap_init(PyObject *self, PyObject *args, void *wrapped, PyObject *kwds)
Tim Peters6d6c1a32001-08-02 04:15:00 +00003913{
3914 initproc func = (initproc)wrapped;
3915
Guido van Rossumc8e56452001-10-22 00:43:43 +00003916 if (func(self, args, kwds) < 0)
Tim Peters6d6c1a32001-08-02 04:15:00 +00003917 return NULL;
3918 Py_INCREF(Py_None);
3919 return Py_None;
3920}
3921
Tim Peters6d6c1a32001-08-02 04:15:00 +00003922static PyObject *
Guido van Rossum0d231ed2001-08-06 16:50:37 +00003923tp_new_wrapper(PyObject *self, PyObject *args, PyObject *kwds)
Tim Peters6d6c1a32001-08-02 04:15:00 +00003924{
Barry Warsaw60f01882001-08-22 19:24:42 +00003925 PyTypeObject *type, *subtype, *staticbase;
Guido van Rossum0d231ed2001-08-06 16:50:37 +00003926 PyObject *arg0, *res;
3927
3928 if (self == NULL || !PyType_Check(self))
3929 Py_FatalError("__new__() called with non-type 'self'");
3930 type = (PyTypeObject *)self;
3931 if (!PyTuple_Check(args) || PyTuple_GET_SIZE(args) < 1) {
Barry Warsaw60f01882001-08-22 19:24:42 +00003932 PyErr_Format(PyExc_TypeError,
3933 "%s.__new__(): not enough arguments",
3934 type->tp_name);
Guido van Rossum0d231ed2001-08-06 16:50:37 +00003935 return NULL;
3936 }
3937 arg0 = PyTuple_GET_ITEM(args, 0);
3938 if (!PyType_Check(arg0)) {
Barry Warsaw60f01882001-08-22 19:24:42 +00003939 PyErr_Format(PyExc_TypeError,
3940 "%s.__new__(X): X is not a type object (%s)",
3941 type->tp_name,
3942 arg0->ob_type->tp_name);
Guido van Rossum0d231ed2001-08-06 16:50:37 +00003943 return NULL;
3944 }
3945 subtype = (PyTypeObject *)arg0;
3946 if (!PyType_IsSubtype(subtype, type)) {
Barry Warsaw60f01882001-08-22 19:24:42 +00003947 PyErr_Format(PyExc_TypeError,
3948 "%s.__new__(%s): %s is not a subtype of %s",
3949 type->tp_name,
3950 subtype->tp_name,
3951 subtype->tp_name,
3952 type->tp_name);
Guido van Rossum0d231ed2001-08-06 16:50:37 +00003953 return NULL;
3954 }
Barry Warsaw60f01882001-08-22 19:24:42 +00003955
3956 /* Check that the use doesn't do something silly and unsafe like
Tim Petersa427a2b2001-10-29 22:25:45 +00003957 object.__new__(dict). To do this, we check that the
Barry Warsaw60f01882001-08-22 19:24:42 +00003958 most derived base that's not a heap type is this type. */
3959 staticbase = subtype;
3960 while (staticbase && (staticbase->tp_flags & Py_TPFLAGS_HEAPTYPE))
3961 staticbase = staticbase->tp_base;
Guido van Rossum692cdbc2006-03-10 02:04:28 +00003962 /* If staticbase is NULL now, it is a really weird type.
3963 In the same of backwards compatibility (?), just shut up. */
3964 if (staticbase && staticbase->tp_new != type->tp_new) {
Barry Warsaw60f01882001-08-22 19:24:42 +00003965 PyErr_Format(PyExc_TypeError,
3966 "%s.__new__(%s) is not safe, use %s.__new__()",
3967 type->tp_name,
3968 subtype->tp_name,
3969 staticbase == NULL ? "?" : staticbase->tp_name);
3970 return NULL;
3971 }
3972
Guido van Rossum0d231ed2001-08-06 16:50:37 +00003973 args = PyTuple_GetSlice(args, 1, PyTuple_GET_SIZE(args));
3974 if (args == NULL)
3975 return NULL;
3976 res = type->tp_new(subtype, args, kwds);
3977 Py_DECREF(args);
3978 return res;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003979}
3980
Guido van Rossum0d231ed2001-08-06 16:50:37 +00003981static struct PyMethodDef tp_new_methoddef[] = {
3982 {"__new__", (PyCFunction)tp_new_wrapper, METH_KEYWORDS,
Neal Norwitz5dc2a372002-08-13 22:19:13 +00003983 PyDoc_STR("T.__new__(S, ...) -> "
3984 "a new object with type S, a subtype of T")},
Tim Peters6d6c1a32001-08-02 04:15:00 +00003985 {0}
3986};
3987
3988static int
Guido van Rossum0d231ed2001-08-06 16:50:37 +00003989add_tp_new_wrapper(PyTypeObject *type)
3990{
Guido van Rossumf040ede2001-08-07 16:40:56 +00003991 PyObject *func;
Guido van Rossum0d231ed2001-08-06 16:50:37 +00003992
Guido van Rossum687ae002001-10-15 22:03:32 +00003993 if (PyDict_GetItemString(type->tp_dict, "__new__") != NULL)
Guido van Rossumf040ede2001-08-07 16:40:56 +00003994 return 0;
3995 func = PyCFunction_New(tp_new_methoddef, (PyObject *)type);
Guido van Rossum0d231ed2001-08-06 16:50:37 +00003996 if (func == NULL)
3997 return -1;
Raymond Hettinger8d726ee2004-06-25 22:24:35 +00003998 if (PyDict_SetItemString(type->tp_dict, "__new__", func)) {
Raymond Hettingerd56cbe52004-06-25 22:17:39 +00003999 Py_DECREF(func);
4000 return -1;
4001 }
4002 Py_DECREF(func);
4003 return 0;
Guido van Rossum0d231ed2001-08-06 16:50:37 +00004004}
4005
Guido van Rossumf040ede2001-08-07 16:40:56 +00004006/* Slot wrappers that call the corresponding __foo__ slot. See comments
4007 below at override_slots() for more explanation. */
Tim Peters6d6c1a32001-08-02 04:15:00 +00004008
Guido van Rossumdc91b992001-08-08 22:26:22 +00004009#define SLOT0(FUNCNAME, OPSTR) \
Tim Peters6d6c1a32001-08-02 04:15:00 +00004010static PyObject * \
Guido van Rossumdc91b992001-08-08 22:26:22 +00004011FUNCNAME(PyObject *self) \
Tim Peters6d6c1a32001-08-02 04:15:00 +00004012{ \
Guido van Rossum5592e4d2001-08-28 18:28:21 +00004013 static PyObject *cache_str; \
Guido van Rossum717ce002001-09-14 16:58:08 +00004014 return call_method(self, OPSTR, &cache_str, "()"); \
Tim Peters6d6c1a32001-08-02 04:15:00 +00004015}
4016
Guido van Rossumdc91b992001-08-08 22:26:22 +00004017#define SLOT1(FUNCNAME, OPSTR, ARG1TYPE, ARGCODES) \
Tim Peters6d6c1a32001-08-02 04:15:00 +00004018static PyObject * \
Guido van Rossumdc91b992001-08-08 22:26:22 +00004019FUNCNAME(PyObject *self, ARG1TYPE arg1) \
Tim Peters6d6c1a32001-08-02 04:15:00 +00004020{ \
Guido van Rossum2730b132001-08-28 18:22:14 +00004021 static PyObject *cache_str; \
Guido van Rossum717ce002001-09-14 16:58:08 +00004022 return call_method(self, OPSTR, &cache_str, "(" ARGCODES ")", arg1); \
Tim Peters6d6c1a32001-08-02 04:15:00 +00004023}
4024
Guido van Rossumcd118802003-01-06 22:57:47 +00004025/* Boolean helper for SLOT1BINFULL().
4026 right.__class__ is a nontrivial subclass of left.__class__. */
4027static int
4028method_is_overloaded(PyObject *left, PyObject *right, char *name)
4029{
4030 PyObject *a, *b;
4031 int ok;
4032
4033 b = PyObject_GetAttrString((PyObject *)(right->ob_type), name);
4034 if (b == NULL) {
4035 PyErr_Clear();
4036 /* If right doesn't have it, it's not overloaded */
4037 return 0;
4038 }
4039
4040 a = PyObject_GetAttrString((PyObject *)(left->ob_type), name);
4041 if (a == NULL) {
4042 PyErr_Clear();
4043 Py_DECREF(b);
4044 /* If right has it but left doesn't, it's overloaded */
4045 return 1;
4046 }
4047
4048 ok = PyObject_RichCompareBool(a, b, Py_NE);
4049 Py_DECREF(a);
4050 Py_DECREF(b);
4051 if (ok < 0) {
4052 PyErr_Clear();
4053 return 0;
4054 }
4055
4056 return ok;
4057}
4058
Guido van Rossumdc91b992001-08-08 22:26:22 +00004059
4060#define SLOT1BINFULL(FUNCNAME, TESTFUNC, SLOTNAME, OPSTR, ROPSTR) \
Tim Peters6d6c1a32001-08-02 04:15:00 +00004061static PyObject * \
Guido van Rossumdc91b992001-08-08 22:26:22 +00004062FUNCNAME(PyObject *self, PyObject *other) \
Tim Peters6d6c1a32001-08-02 04:15:00 +00004063{ \
Guido van Rossum2730b132001-08-28 18:22:14 +00004064 static PyObject *cache_str, *rcache_str; \
Guido van Rossum55f20992001-10-01 17:18:22 +00004065 int do_other = self->ob_type != other->ob_type && \
4066 other->ob_type->tp_as_number != NULL && \
4067 other->ob_type->tp_as_number->SLOTNAME == TESTFUNC; \
Guido van Rossumdc91b992001-08-08 22:26:22 +00004068 if (self->ob_type->tp_as_number != NULL && \
4069 self->ob_type->tp_as_number->SLOTNAME == TESTFUNC) { \
4070 PyObject *r; \
Guido van Rossum55f20992001-10-01 17:18:22 +00004071 if (do_other && \
Guido van Rossumcd118802003-01-06 22:57:47 +00004072 PyType_IsSubtype(other->ob_type, self->ob_type) && \
4073 method_is_overloaded(self, other, ROPSTR)) { \
Guido van Rossum55f20992001-10-01 17:18:22 +00004074 r = call_maybe( \
4075 other, ROPSTR, &rcache_str, "(O)", self); \
4076 if (r != Py_NotImplemented) \
4077 return r; \
4078 Py_DECREF(r); \
4079 do_other = 0; \
4080 } \
Guido van Rossumf21c6be2001-09-14 17:51:50 +00004081 r = call_maybe( \
Guido van Rossum717ce002001-09-14 16:58:08 +00004082 self, OPSTR, &cache_str, "(O)", other); \
Guido van Rossumdc91b992001-08-08 22:26:22 +00004083 if (r != Py_NotImplemented || \
4084 other->ob_type == self->ob_type) \
4085 return r; \
4086 Py_DECREF(r); \
4087 } \
Guido van Rossum55f20992001-10-01 17:18:22 +00004088 if (do_other) { \
Guido van Rossumf21c6be2001-09-14 17:51:50 +00004089 return call_maybe( \
Guido van Rossum717ce002001-09-14 16:58:08 +00004090 other, ROPSTR, &rcache_str, "(O)", self); \
Guido van Rossumdc91b992001-08-08 22:26:22 +00004091 } \
4092 Py_INCREF(Py_NotImplemented); \
4093 return Py_NotImplemented; \
4094}
4095
4096#define SLOT1BIN(FUNCNAME, SLOTNAME, OPSTR, ROPSTR) \
4097 SLOT1BINFULL(FUNCNAME, FUNCNAME, SLOTNAME, OPSTR, ROPSTR)
4098
4099#define SLOT2(FUNCNAME, OPSTR, ARG1TYPE, ARG2TYPE, ARGCODES) \
4100static PyObject * \
4101FUNCNAME(PyObject *self, ARG1TYPE arg1, ARG2TYPE arg2) \
4102{ \
Guido van Rossum2730b132001-08-28 18:22:14 +00004103 static PyObject *cache_str; \
Guido van Rossum717ce002001-09-14 16:58:08 +00004104 return call_method(self, OPSTR, &cache_str, \
4105 "(" ARGCODES ")", arg1, arg2); \
Tim Peters6d6c1a32001-08-02 04:15:00 +00004106}
4107
Martin v. Löwis18e16552006-02-15 17:27:45 +00004108static Py_ssize_t
Tim Peters6d6c1a32001-08-02 04:15:00 +00004109slot_sq_length(PyObject *self)
4110{
Guido van Rossum2730b132001-08-28 18:22:14 +00004111 static PyObject *len_str;
Guido van Rossum717ce002001-09-14 16:58:08 +00004112 PyObject *res = call_method(self, "__len__", &len_str, "()");
Martin v. Löwis18e16552006-02-15 17:27:45 +00004113 Py_ssize_t len;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004114
4115 if (res == NULL)
4116 return -1;
Neal Norwitz1872b1c2006-08-12 18:44:06 +00004117 len = PyInt_AsSsize_t(res);
Guido van Rossum26111622001-10-01 16:42:49 +00004118 Py_DECREF(res);
Jeremy Hyltonf20fcf92002-07-25 16:06:15 +00004119 if (len < 0) {
Armin Rigo7ccbca92006-10-04 12:17:45 +00004120 if (!PyErr_Occurred())
4121 PyErr_SetString(PyExc_ValueError,
4122 "__len__() should return >= 0");
Jeremy Hyltonf20fcf92002-07-25 16:06:15 +00004123 return -1;
4124 }
Guido van Rossum26111622001-10-01 16:42:49 +00004125 return len;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004126}
4127
Guido van Rossumf4593e02001-10-03 12:09:30 +00004128/* Super-optimized version of slot_sq_item.
4129 Other slots could do the same... */
4130static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +00004131slot_sq_item(PyObject *self, Py_ssize_t i)
Guido van Rossumf4593e02001-10-03 12:09:30 +00004132{
4133 static PyObject *getitem_str;
4134 PyObject *func, *args = NULL, *ival = NULL, *retval = NULL;
4135 descrgetfunc f;
4136
4137 if (getitem_str == NULL) {
4138 getitem_str = PyString_InternFromString("__getitem__");
4139 if (getitem_str == NULL)
4140 return NULL;
4141 }
4142 func = _PyType_Lookup(self->ob_type, getitem_str);
4143 if (func != NULL) {
Guido van Rossumf4593e02001-10-03 12:09:30 +00004144 if ((f = func->ob_type->tp_descr_get) == NULL)
4145 Py_INCREF(func);
Neal Norwitz673cd822002-10-18 16:33:13 +00004146 else {
Guido van Rossumf4593e02001-10-03 12:09:30 +00004147 func = f(func, self, (PyObject *)(self->ob_type));
Neal Norwitz673cd822002-10-18 16:33:13 +00004148 if (func == NULL) {
4149 return NULL;
4150 }
4151 }
Martin v. Löwiseb079f12006-02-16 14:32:27 +00004152 ival = PyInt_FromSsize_t(i);
Guido van Rossumf4593e02001-10-03 12:09:30 +00004153 if (ival != NULL) {
4154 args = PyTuple_New(1);
4155 if (args != NULL) {
4156 PyTuple_SET_ITEM(args, 0, ival);
4157 retval = PyObject_Call(func, args, NULL);
4158 Py_XDECREF(args);
4159 Py_XDECREF(func);
4160 return retval;
4161 }
4162 }
4163 }
4164 else {
4165 PyErr_SetObject(PyExc_AttributeError, getitem_str);
4166 }
4167 Py_XDECREF(args);
4168 Py_XDECREF(ival);
4169 Py_XDECREF(func);
4170 return NULL;
4171}
4172
Martin v. Löwis18e16552006-02-15 17:27:45 +00004173SLOT2(slot_sq_slice, "__getslice__", Py_ssize_t, Py_ssize_t, "nn")
Tim Peters6d6c1a32001-08-02 04:15:00 +00004174
4175static int
Martin v. Löwis18e16552006-02-15 17:27:45 +00004176slot_sq_ass_item(PyObject *self, Py_ssize_t index, PyObject *value)
Tim Peters6d6c1a32001-08-02 04:15:00 +00004177{
4178 PyObject *res;
Guido van Rossum2730b132001-08-28 18:22:14 +00004179 static PyObject *delitem_str, *setitem_str;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004180
4181 if (value == NULL)
Guido van Rossum2730b132001-08-28 18:22:14 +00004182 res = call_method(self, "__delitem__", &delitem_str,
Thomas Wouters4e908102006-04-21 11:26:56 +00004183 "(n)", index);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004184 else
Guido van Rossum2730b132001-08-28 18:22:14 +00004185 res = call_method(self, "__setitem__", &setitem_str,
Thomas Wouters4e908102006-04-21 11:26:56 +00004186 "(nO)", index, value);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004187 if (res == NULL)
4188 return -1;
4189 Py_DECREF(res);
4190 return 0;
4191}
4192
4193static int
Martin v. Löwis18e16552006-02-15 17:27:45 +00004194slot_sq_ass_slice(PyObject *self, Py_ssize_t i, Py_ssize_t j, PyObject *value)
Tim Peters6d6c1a32001-08-02 04:15:00 +00004195{
4196 PyObject *res;
Guido van Rossum2730b132001-08-28 18:22:14 +00004197 static PyObject *delslice_str, *setslice_str;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004198
4199 if (value == NULL)
Guido van Rossum2730b132001-08-28 18:22:14 +00004200 res = call_method(self, "__delslice__", &delslice_str,
Thomas Wouters4e908102006-04-21 11:26:56 +00004201 "(nn)", i, j);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004202 else
Guido van Rossum2730b132001-08-28 18:22:14 +00004203 res = call_method(self, "__setslice__", &setslice_str,
Thomas Wouters4e908102006-04-21 11:26:56 +00004204 "(nnO)", i, j, value);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004205 if (res == NULL)
4206 return -1;
4207 Py_DECREF(res);
4208 return 0;
4209}
4210
4211static int
4212slot_sq_contains(PyObject *self, PyObject *value)
4213{
Guido van Rossumb8f63662001-08-15 23:57:02 +00004214 PyObject *func, *res, *args;
Tim Petersbf9b2442003-03-23 05:35:36 +00004215 int result = -1;
4216
Guido van Rossum60718732001-08-28 17:47:51 +00004217 static PyObject *contains_str;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004218
Guido van Rossum55f20992001-10-01 17:18:22 +00004219 func = lookup_maybe(self, "__contains__", &contains_str);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004220 if (func != NULL) {
Raymond Hettinger8ae46892003-10-12 19:09:37 +00004221 args = PyTuple_Pack(1, value);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004222 if (args == NULL)
4223 res = NULL;
4224 else {
Guido van Rossum717ce002001-09-14 16:58:08 +00004225 res = PyObject_Call(func, args, NULL);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004226 Py_DECREF(args);
4227 }
4228 Py_DECREF(func);
Tim Petersbf9b2442003-03-23 05:35:36 +00004229 if (res != NULL) {
4230 result = PyObject_IsTrue(res);
4231 Py_DECREF(res);
4232 }
Guido van Rossumb8f63662001-08-15 23:57:02 +00004233 }
Tim Petersbf9b2442003-03-23 05:35:36 +00004234 else if (! PyErr_Occurred()) {
Martin v. Löwis725507b2006-03-07 12:08:51 +00004235 /* Possible results: -1 and 1 */
4236 result = (int)_PySequence_IterSearch(self, value,
Tim Petersbf9b2442003-03-23 05:35:36 +00004237 PY_ITERSEARCH_CONTAINS);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004238 }
Tim Petersbf9b2442003-03-23 05:35:36 +00004239 return result;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004240}
4241
Tim Peters6d6c1a32001-08-02 04:15:00 +00004242#define slot_mp_length slot_sq_length
4243
Guido van Rossumdc91b992001-08-08 22:26:22 +00004244SLOT1(slot_mp_subscript, "__getitem__", PyObject *, "O")
Tim Peters6d6c1a32001-08-02 04:15:00 +00004245
4246static int
4247slot_mp_ass_subscript(PyObject *self, PyObject *key, PyObject *value)
4248{
4249 PyObject *res;
Guido van Rossum2730b132001-08-28 18:22:14 +00004250 static PyObject *delitem_str, *setitem_str;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004251
4252 if (value == NULL)
Guido van Rossum2730b132001-08-28 18:22:14 +00004253 res = call_method(self, "__delitem__", &delitem_str,
Guido van Rossum717ce002001-09-14 16:58:08 +00004254 "(O)", key);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004255 else
Guido van Rossum2730b132001-08-28 18:22:14 +00004256 res = call_method(self, "__setitem__", &setitem_str,
Guido van Rossum717ce002001-09-14 16:58:08 +00004257 "(OO)", key, value);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004258 if (res == NULL)
4259 return -1;
4260 Py_DECREF(res);
4261 return 0;
4262}
4263
Guido van Rossumdc91b992001-08-08 22:26:22 +00004264SLOT1BIN(slot_nb_add, nb_add, "__add__", "__radd__")
4265SLOT1BIN(slot_nb_subtract, nb_subtract, "__sub__", "__rsub__")
4266SLOT1BIN(slot_nb_multiply, nb_multiply, "__mul__", "__rmul__")
4267SLOT1BIN(slot_nb_divide, nb_divide, "__div__", "__rdiv__")
4268SLOT1BIN(slot_nb_remainder, nb_remainder, "__mod__", "__rmod__")
4269SLOT1BIN(slot_nb_divmod, nb_divmod, "__divmod__", "__rdivmod__")
4270
Jeremy Hylton938ace62002-07-17 16:30:39 +00004271static PyObject *slot_nb_power(PyObject *, PyObject *, PyObject *);
Guido van Rossumdc91b992001-08-08 22:26:22 +00004272
4273SLOT1BINFULL(slot_nb_power_binary, slot_nb_power,
4274 nb_power, "__pow__", "__rpow__")
4275
4276static PyObject *
4277slot_nb_power(PyObject *self, PyObject *other, PyObject *modulus)
4278{
Guido van Rossum2730b132001-08-28 18:22:14 +00004279 static PyObject *pow_str;
4280
Guido van Rossumdc91b992001-08-08 22:26:22 +00004281 if (modulus == Py_None)
4282 return slot_nb_power_binary(self, other);
Guido van Rossum23094982002-06-10 14:30:43 +00004283 /* Three-arg power doesn't use __rpow__. But ternary_op
4284 can call this when the second argument's type uses
4285 slot_nb_power, so check before calling self.__pow__. */
4286 if (self->ob_type->tp_as_number != NULL &&
4287 self->ob_type->tp_as_number->nb_power == slot_nb_power) {
4288 return call_method(self, "__pow__", &pow_str,
4289 "(OO)", other, modulus);
4290 }
4291 Py_INCREF(Py_NotImplemented);
4292 return Py_NotImplemented;
Guido van Rossumdc91b992001-08-08 22:26:22 +00004293}
4294
4295SLOT0(slot_nb_negative, "__neg__")
4296SLOT0(slot_nb_positive, "__pos__")
4297SLOT0(slot_nb_absolute, "__abs__")
Tim Peters6d6c1a32001-08-02 04:15:00 +00004298
4299static int
4300slot_nb_nonzero(PyObject *self)
4301{
Tim Petersea7f75d2002-12-07 21:39:16 +00004302 PyObject *func, *args;
Guido van Rossum60718732001-08-28 17:47:51 +00004303 static PyObject *nonzero_str, *len_str;
Tim Petersea7f75d2002-12-07 21:39:16 +00004304 int result = -1;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004305
Guido van Rossum55f20992001-10-01 17:18:22 +00004306 func = lookup_maybe(self, "__nonzero__", &nonzero_str);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004307 if (func == NULL) {
Guido van Rossum55f20992001-10-01 17:18:22 +00004308 if (PyErr_Occurred())
Guido van Rossumb8f63662001-08-15 23:57:02 +00004309 return -1;
Guido van Rossum55f20992001-10-01 17:18:22 +00004310 func = lookup_maybe(self, "__len__", &len_str);
Tim Petersea7f75d2002-12-07 21:39:16 +00004311 if (func == NULL)
4312 return PyErr_Occurred() ? -1 : 1;
4313 }
4314 args = PyTuple_New(0);
4315 if (args != NULL) {
4316 PyObject *temp = PyObject_Call(func, args, NULL);
4317 Py_DECREF(args);
4318 if (temp != NULL) {
Jeremy Hylton3e3159c2003-06-27 17:38:27 +00004319 if (PyInt_CheckExact(temp) || PyBool_Check(temp))
Jeremy Hylton090a3492003-06-27 16:46:45 +00004320 result = PyObject_IsTrue(temp);
4321 else {
4322 PyErr_Format(PyExc_TypeError,
4323 "__nonzero__ should return "
4324 "bool or int, returned %s",
4325 temp->ob_type->tp_name);
Jeremy Hylton3e3159c2003-06-27 17:38:27 +00004326 result = -1;
Jeremy Hylton090a3492003-06-27 16:46:45 +00004327 }
Tim Petersea7f75d2002-12-07 21:39:16 +00004328 Py_DECREF(temp);
Guido van Rossum55f20992001-10-01 17:18:22 +00004329 }
Guido van Rossumb8f63662001-08-15 23:57:02 +00004330 }
Guido van Rossum55f20992001-10-01 17:18:22 +00004331 Py_DECREF(func);
Tim Petersea7f75d2002-12-07 21:39:16 +00004332 return result;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004333}
4334
Guido van Rossum38fff8c2006-03-07 18:50:55 +00004335
Neal Norwitz8a87f5d2006-08-12 17:03:09 +00004336static PyObject *
Guido van Rossum38fff8c2006-03-07 18:50:55 +00004337slot_nb_index(PyObject *self)
4338{
Guido van Rossum38fff8c2006-03-07 18:50:55 +00004339 static PyObject *index_str;
Neal Norwitz8a87f5d2006-08-12 17:03:09 +00004340 return call_method(self, "__index__", &index_str, "()");
Guido van Rossum38fff8c2006-03-07 18:50:55 +00004341}
4342
4343
Guido van Rossumdc91b992001-08-08 22:26:22 +00004344SLOT0(slot_nb_invert, "__invert__")
4345SLOT1BIN(slot_nb_lshift, nb_lshift, "__lshift__", "__rlshift__")
4346SLOT1BIN(slot_nb_rshift, nb_rshift, "__rshift__", "__rrshift__")
4347SLOT1BIN(slot_nb_and, nb_and, "__and__", "__rand__")
4348SLOT1BIN(slot_nb_xor, nb_xor, "__xor__", "__rxor__")
4349SLOT1BIN(slot_nb_or, nb_or, "__or__", "__ror__")
Guido van Rossum2ed6bf82001-09-27 20:30:07 +00004350
4351static int
4352slot_nb_coerce(PyObject **a, PyObject **b)
4353{
4354 static PyObject *coerce_str;
4355 PyObject *self = *a, *other = *b;
4356
4357 if (self->ob_type->tp_as_number != NULL &&
4358 self->ob_type->tp_as_number->nb_coerce == slot_nb_coerce) {
4359 PyObject *r;
4360 r = call_maybe(
4361 self, "__coerce__", &coerce_str, "(O)", other);
4362 if (r == NULL)
4363 return -1;
4364 if (r == Py_NotImplemented) {
4365 Py_DECREF(r);
Guido van Rossum2ed6bf82001-09-27 20:30:07 +00004366 }
Guido van Rossum55f20992001-10-01 17:18:22 +00004367 else {
4368 if (!PyTuple_Check(r) || PyTuple_GET_SIZE(r) != 2) {
4369 PyErr_SetString(PyExc_TypeError,
Guido van Rossum2ed6bf82001-09-27 20:30:07 +00004370 "__coerce__ didn't return a 2-tuple");
Guido van Rossum55f20992001-10-01 17:18:22 +00004371 Py_DECREF(r);
4372 return -1;
4373 }
4374 *a = PyTuple_GET_ITEM(r, 0);
4375 Py_INCREF(*a);
4376 *b = PyTuple_GET_ITEM(r, 1);
4377 Py_INCREF(*b);
Guido van Rossum2ed6bf82001-09-27 20:30:07 +00004378 Py_DECREF(r);
Guido van Rossum55f20992001-10-01 17:18:22 +00004379 return 0;
Guido van Rossum2ed6bf82001-09-27 20:30:07 +00004380 }
Guido van Rossum2ed6bf82001-09-27 20:30:07 +00004381 }
4382 if (other->ob_type->tp_as_number != NULL &&
4383 other->ob_type->tp_as_number->nb_coerce == slot_nb_coerce) {
4384 PyObject *r;
4385 r = call_maybe(
4386 other, "__coerce__", &coerce_str, "(O)", self);
4387 if (r == NULL)
4388 return -1;
4389 if (r == Py_NotImplemented) {
4390 Py_DECREF(r);
4391 return 1;
4392 }
4393 if (!PyTuple_Check(r) || PyTuple_GET_SIZE(r) != 2) {
4394 PyErr_SetString(PyExc_TypeError,
4395 "__coerce__ didn't return a 2-tuple");
4396 Py_DECREF(r);
4397 return -1;
4398 }
4399 *a = PyTuple_GET_ITEM(r, 1);
4400 Py_INCREF(*a);
4401 *b = PyTuple_GET_ITEM(r, 0);
4402 Py_INCREF(*b);
4403 Py_DECREF(r);
4404 return 0;
4405 }
4406 return 1;
4407}
4408
Guido van Rossumdc91b992001-08-08 22:26:22 +00004409SLOT0(slot_nb_int, "__int__")
4410SLOT0(slot_nb_long, "__long__")
4411SLOT0(slot_nb_float, "__float__")
4412SLOT0(slot_nb_oct, "__oct__")
4413SLOT0(slot_nb_hex, "__hex__")
4414SLOT1(slot_nb_inplace_add, "__iadd__", PyObject *, "O")
4415SLOT1(slot_nb_inplace_subtract, "__isub__", PyObject *, "O")
4416SLOT1(slot_nb_inplace_multiply, "__imul__", PyObject *, "O")
4417SLOT1(slot_nb_inplace_divide, "__idiv__", PyObject *, "O")
4418SLOT1(slot_nb_inplace_remainder, "__imod__", PyObject *, "O")
Guido van Rossum6e5680f2002-10-15 01:01:53 +00004419SLOT1(slot_nb_inplace_power, "__ipow__", PyObject *, "O")
Guido van Rossumdc91b992001-08-08 22:26:22 +00004420SLOT1(slot_nb_inplace_lshift, "__ilshift__", PyObject *, "O")
4421SLOT1(slot_nb_inplace_rshift, "__irshift__", PyObject *, "O")
4422SLOT1(slot_nb_inplace_and, "__iand__", PyObject *, "O")
4423SLOT1(slot_nb_inplace_xor, "__ixor__", PyObject *, "O")
4424SLOT1(slot_nb_inplace_or, "__ior__", PyObject *, "O")
4425SLOT1BIN(slot_nb_floor_divide, nb_floor_divide,
4426 "__floordiv__", "__rfloordiv__")
4427SLOT1BIN(slot_nb_true_divide, nb_true_divide, "__truediv__", "__rtruediv__")
4428SLOT1(slot_nb_inplace_floor_divide, "__ifloordiv__", PyObject *, "O")
4429SLOT1(slot_nb_inplace_true_divide, "__itruediv__", PyObject *, "O")
Tim Peters6d6c1a32001-08-02 04:15:00 +00004430
4431static int
Guido van Rossumb8f63662001-08-15 23:57:02 +00004432half_compare(PyObject *self, PyObject *other)
Tim Peters6d6c1a32001-08-02 04:15:00 +00004433{
Guido van Rossumb8f63662001-08-15 23:57:02 +00004434 PyObject *func, *args, *res;
Guido van Rossum60718732001-08-28 17:47:51 +00004435 static PyObject *cmp_str;
Martin v. Löwis18e16552006-02-15 17:27:45 +00004436 Py_ssize_t c;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004437
Guido van Rossum60718732001-08-28 17:47:51 +00004438 func = lookup_method(self, "__cmp__", &cmp_str);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004439 if (func == NULL) {
4440 PyErr_Clear();
4441 }
4442 else {
Raymond Hettinger8ae46892003-10-12 19:09:37 +00004443 args = PyTuple_Pack(1, other);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004444 if (args == NULL)
4445 res = NULL;
4446 else {
Guido van Rossum717ce002001-09-14 16:58:08 +00004447 res = PyObject_Call(func, args, NULL);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004448 Py_DECREF(args);
4449 }
Raymond Hettingerab5dae32002-06-24 13:08:16 +00004450 Py_DECREF(func);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004451 if (res != Py_NotImplemented) {
4452 if (res == NULL)
4453 return -2;
4454 c = PyInt_AsLong(res);
4455 Py_DECREF(res);
4456 if (c == -1 && PyErr_Occurred())
4457 return -2;
4458 return (c < 0) ? -1 : (c > 0) ? 1 : 0;
4459 }
4460 Py_DECREF(res);
4461 }
4462 return 2;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004463}
4464
Guido van Rossumab3b0342001-09-18 20:38:53 +00004465/* This slot is published for the benefit of try_3way_compare in object.c */
4466int
4467_PyObject_SlotCompare(PyObject *self, PyObject *other)
Guido van Rossumb8f63662001-08-15 23:57:02 +00004468{
4469 int c;
4470
Guido van Rossumab3b0342001-09-18 20:38:53 +00004471 if (self->ob_type->tp_compare == _PyObject_SlotCompare) {
Guido van Rossumb8f63662001-08-15 23:57:02 +00004472 c = half_compare(self, other);
4473 if (c <= 1)
4474 return c;
4475 }
Guido van Rossumab3b0342001-09-18 20:38:53 +00004476 if (other->ob_type->tp_compare == _PyObject_SlotCompare) {
Guido van Rossumb8f63662001-08-15 23:57:02 +00004477 c = half_compare(other, self);
4478 if (c < -1)
4479 return -2;
4480 if (c <= 1)
4481 return -c;
4482 }
4483 return (void *)self < (void *)other ? -1 :
4484 (void *)self > (void *)other ? 1 : 0;
4485}
4486
4487static PyObject *
4488slot_tp_repr(PyObject *self)
4489{
4490 PyObject *func, *res;
Guido van Rossum60718732001-08-28 17:47:51 +00004491 static PyObject *repr_str;
Guido van Rossumb8f63662001-08-15 23:57:02 +00004492
Guido van Rossum60718732001-08-28 17:47:51 +00004493 func = lookup_method(self, "__repr__", &repr_str);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004494 if (func != NULL) {
4495 res = PyEval_CallObject(func, NULL);
4496 Py_DECREF(func);
4497 return res;
4498 }
Barry Warsaw7ce36942001-08-24 18:34:26 +00004499 PyErr_Clear();
4500 return PyString_FromFormat("<%s object at %p>",
4501 self->ob_type->tp_name, self);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004502}
4503
4504static PyObject *
4505slot_tp_str(PyObject *self)
4506{
4507 PyObject *func, *res;
Guido van Rossum60718732001-08-28 17:47:51 +00004508 static PyObject *str_str;
Guido van Rossumb8f63662001-08-15 23:57:02 +00004509
Guido van Rossum60718732001-08-28 17:47:51 +00004510 func = lookup_method(self, "__str__", &str_str);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004511 if (func != NULL) {
4512 res = PyEval_CallObject(func, NULL);
4513 Py_DECREF(func);
4514 return res;
4515 }
4516 else {
4517 PyErr_Clear();
4518 return slot_tp_repr(self);
4519 }
4520}
Tim Peters6d6c1a32001-08-02 04:15:00 +00004521
4522static long
4523slot_tp_hash(PyObject *self)
4524{
Tim Peters61ce0a92002-12-06 23:38:02 +00004525 PyObject *func;
Guido van Rossum60718732001-08-28 17:47:51 +00004526 static PyObject *hash_str, *eq_str, *cmp_str;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004527 long h;
4528
Guido van Rossum60718732001-08-28 17:47:51 +00004529 func = lookup_method(self, "__hash__", &hash_str);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004530
4531 if (func != NULL) {
Tim Peters61ce0a92002-12-06 23:38:02 +00004532 PyObject *res = PyEval_CallObject(func, NULL);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004533 Py_DECREF(func);
4534 if (res == NULL)
4535 return -1;
Martin v. Löwisab2f8f72006-08-09 07:57:39 +00004536 if (PyLong_Check(res))
Armin Rigo51fc8c42006-08-09 14:55:26 +00004537 h = PyLong_Type.tp_hash(res);
Martin v. Löwisab2f8f72006-08-09 07:57:39 +00004538 else
4539 h = PyInt_AsLong(res);
Tim Peters61ce0a92002-12-06 23:38:02 +00004540 Py_DECREF(res);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004541 }
4542 else {
4543 PyErr_Clear();
Guido van Rossum60718732001-08-28 17:47:51 +00004544 func = lookup_method(self, "__eq__", &eq_str);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004545 if (func == NULL) {
4546 PyErr_Clear();
Guido van Rossum60718732001-08-28 17:47:51 +00004547 func = lookup_method(self, "__cmp__", &cmp_str);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004548 }
4549 if (func != NULL) {
Georg Brandlccff7852006-06-18 22:17:29 +00004550 PyErr_Format(PyExc_TypeError, "unhashable type: '%.200s'",
4551 self->ob_type->tp_name);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004552 Py_DECREF(func);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004553 return -1;
4554 }
4555 PyErr_Clear();
4556 h = _Py_HashPointer((void *)self);
4557 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00004558 if (h == -1 && !PyErr_Occurred())
4559 h = -2;
4560 return h;
4561}
4562
4563static PyObject *
4564slot_tp_call(PyObject *self, PyObject *args, PyObject *kwds)
4565{
Guido van Rossum60718732001-08-28 17:47:51 +00004566 static PyObject *call_str;
4567 PyObject *meth = lookup_method(self, "__call__", &call_str);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004568 PyObject *res;
4569
4570 if (meth == NULL)
4571 return NULL;
Armin Rigo53c1692f2006-06-21 21:58:50 +00004572
4573 /* PyObject_Call() will end up calling slot_tp_call() again if
4574 the object returned for __call__ has __call__ itself defined
4575 upon it. This can be an infinite recursion if you set
4576 __call__ in a class to an instance of it. */
Neal Norwitzb1149842006-06-23 03:32:44 +00004577 if (Py_EnterRecursiveCall(" in __call__")) {
4578 Py_DECREF(meth);
Armin Rigo53c1692f2006-06-21 21:58:50 +00004579 return NULL;
Neal Norwitzb1149842006-06-23 03:32:44 +00004580 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00004581 res = PyObject_Call(meth, args, kwds);
Armin Rigo53c1692f2006-06-21 21:58:50 +00004582 Py_LeaveRecursiveCall();
4583
Tim Peters6d6c1a32001-08-02 04:15:00 +00004584 Py_DECREF(meth);
4585 return res;
4586}
4587
Guido van Rossum14a6f832001-10-17 13:59:09 +00004588/* There are two slot dispatch functions for tp_getattro.
4589
4590 - slot_tp_getattro() is used when __getattribute__ is overridden
4591 but no __getattr__ hook is present;
4592
4593 - slot_tp_getattr_hook() is used when a __getattr__ hook is present.
4594
Guido van Rossumc334df52002-04-04 23:44:47 +00004595 The code in update_one_slot() always installs slot_tp_getattr_hook(); this
4596 detects the absence of __getattr__ and then installs the simpler slot if
4597 necessary. */
Guido van Rossum14a6f832001-10-17 13:59:09 +00004598
Tim Peters6d6c1a32001-08-02 04:15:00 +00004599static PyObject *
4600slot_tp_getattro(PyObject *self, PyObject *name)
4601{
Guido van Rossum14a6f832001-10-17 13:59:09 +00004602 static PyObject *getattribute_str = NULL;
4603 return call_method(self, "__getattribute__", &getattribute_str,
4604 "(O)", name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004605}
4606
Guido van Rossum19c1cd52001-09-21 21:24:49 +00004607static PyObject *
4608slot_tp_getattr_hook(PyObject *self, PyObject *name)
4609{
4610 PyTypeObject *tp = self->ob_type;
4611 PyObject *getattr, *getattribute, *res;
4612 static PyObject *getattribute_str = NULL;
4613 static PyObject *getattr_str = NULL;
4614
4615 if (getattr_str == NULL) {
4616 getattr_str = PyString_InternFromString("__getattr__");
4617 if (getattr_str == NULL)
4618 return NULL;
4619 }
4620 if (getattribute_str == NULL) {
4621 getattribute_str =
4622 PyString_InternFromString("__getattribute__");
4623 if (getattribute_str == NULL)
4624 return NULL;
4625 }
4626 getattr = _PyType_Lookup(tp, getattr_str);
Guido van Rossum14a6f832001-10-17 13:59:09 +00004627 if (getattr == NULL) {
Guido van Rossumd396b9c2001-10-13 20:02:41 +00004628 /* No __getattr__ hook: use a simpler dispatcher */
4629 tp->tp_getattro = slot_tp_getattro;
4630 return slot_tp_getattro(self, name);
4631 }
Guido van Rossum19c1cd52001-09-21 21:24:49 +00004632 getattribute = _PyType_Lookup(tp, getattribute_str);
Guido van Rossum14a6f832001-10-17 13:59:09 +00004633 if (getattribute == NULL ||
4634 (getattribute->ob_type == &PyWrapperDescr_Type &&
4635 ((PyWrapperDescrObject *)getattribute)->d_wrapped ==
4636 (void *)PyObject_GenericGetAttr))
Guido van Rossum19c1cd52001-09-21 21:24:49 +00004637 res = PyObject_GenericGetAttr(self, name);
4638 else
Georg Brandl684fd0c2006-05-25 19:15:31 +00004639 res = PyObject_CallFunctionObjArgs(getattribute, self, name, NULL);
Guido van Rossum14a6f832001-10-17 13:59:09 +00004640 if (res == NULL && PyErr_ExceptionMatches(PyExc_AttributeError)) {
Guido van Rossum19c1cd52001-09-21 21:24:49 +00004641 PyErr_Clear();
Georg Brandl684fd0c2006-05-25 19:15:31 +00004642 res = PyObject_CallFunctionObjArgs(getattr, self, name, NULL);
Guido van Rossum19c1cd52001-09-21 21:24:49 +00004643 }
4644 return res;
4645}
4646
Tim Peters6d6c1a32001-08-02 04:15:00 +00004647static int
4648slot_tp_setattro(PyObject *self, PyObject *name, PyObject *value)
4649{
4650 PyObject *res;
Guido van Rossum2730b132001-08-28 18:22:14 +00004651 static PyObject *delattr_str, *setattr_str;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004652
4653 if (value == NULL)
Guido van Rossum2730b132001-08-28 18:22:14 +00004654 res = call_method(self, "__delattr__", &delattr_str,
Guido van Rossum717ce002001-09-14 16:58:08 +00004655 "(O)", name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004656 else
Guido van Rossum2730b132001-08-28 18:22:14 +00004657 res = call_method(self, "__setattr__", &setattr_str,
Guido van Rossum717ce002001-09-14 16:58:08 +00004658 "(OO)", name, value);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004659 if (res == NULL)
4660 return -1;
4661 Py_DECREF(res);
4662 return 0;
4663}
4664
4665/* Map rich comparison operators to their __xx__ namesakes */
4666static char *name_op[] = {
4667 "__lt__",
4668 "__le__",
4669 "__eq__",
4670 "__ne__",
4671 "__gt__",
4672 "__ge__",
4673};
4674
4675static PyObject *
Guido van Rossumb8f63662001-08-15 23:57:02 +00004676half_richcompare(PyObject *self, PyObject *other, int op)
Tim Peters6d6c1a32001-08-02 04:15:00 +00004677{
Guido van Rossumb8f63662001-08-15 23:57:02 +00004678 PyObject *func, *args, *res;
Guido van Rossum60718732001-08-28 17:47:51 +00004679 static PyObject *op_str[6];
Tim Peters6d6c1a32001-08-02 04:15:00 +00004680
Guido van Rossum60718732001-08-28 17:47:51 +00004681 func = lookup_method(self, name_op[op], &op_str[op]);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004682 if (func == NULL) {
4683 PyErr_Clear();
4684 Py_INCREF(Py_NotImplemented);
4685 return Py_NotImplemented;
4686 }
Raymond Hettinger8ae46892003-10-12 19:09:37 +00004687 args = PyTuple_Pack(1, other);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004688 if (args == NULL)
4689 res = NULL;
4690 else {
Guido van Rossum717ce002001-09-14 16:58:08 +00004691 res = PyObject_Call(func, args, NULL);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004692 Py_DECREF(args);
4693 }
4694 Py_DECREF(func);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004695 return res;
4696}
4697
Guido van Rossumb8f63662001-08-15 23:57:02 +00004698static PyObject *
4699slot_tp_richcompare(PyObject *self, PyObject *other, int op)
4700{
4701 PyObject *res;
4702
4703 if (self->ob_type->tp_richcompare == slot_tp_richcompare) {
4704 res = half_richcompare(self, other, op);
4705 if (res != Py_NotImplemented)
4706 return res;
4707 Py_DECREF(res);
4708 }
4709 if (other->ob_type->tp_richcompare == slot_tp_richcompare) {
Tim Petersf4aca752004-09-23 02:39:37 +00004710 res = half_richcompare(other, self, _Py_SwappedOp[op]);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004711 if (res != Py_NotImplemented) {
4712 return res;
4713 }
4714 Py_DECREF(res);
4715 }
4716 Py_INCREF(Py_NotImplemented);
4717 return Py_NotImplemented;
4718}
4719
4720static PyObject *
4721slot_tp_iter(PyObject *self)
4722{
4723 PyObject *func, *res;
Guido van Rossum60718732001-08-28 17:47:51 +00004724 static PyObject *iter_str, *getitem_str;
Guido van Rossumb8f63662001-08-15 23:57:02 +00004725
Guido van Rossum60718732001-08-28 17:47:51 +00004726 func = lookup_method(self, "__iter__", &iter_str);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004727 if (func != NULL) {
Guido van Rossum84b2bed2002-08-16 17:01:09 +00004728 PyObject *args;
4729 args = res = PyTuple_New(0);
4730 if (args != NULL) {
4731 res = PyObject_Call(func, args, NULL);
4732 Py_DECREF(args);
4733 }
4734 Py_DECREF(func);
4735 return res;
Guido van Rossumb8f63662001-08-15 23:57:02 +00004736 }
4737 PyErr_Clear();
Guido van Rossum60718732001-08-28 17:47:51 +00004738 func = lookup_method(self, "__getitem__", &getitem_str);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004739 if (func == NULL) {
Georg Brandlccff7852006-06-18 22:17:29 +00004740 PyErr_Format(PyExc_TypeError,
4741 "'%.200s' object is not iterable",
4742 self->ob_type->tp_name);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004743 return NULL;
4744 }
4745 Py_DECREF(func);
4746 return PySeqIter_New(self);
4747}
Tim Peters6d6c1a32001-08-02 04:15:00 +00004748
4749static PyObject *
4750slot_tp_iternext(PyObject *self)
4751{
Guido van Rossum2730b132001-08-28 18:22:14 +00004752 static PyObject *next_str;
Guido van Rossum717ce002001-09-14 16:58:08 +00004753 return call_method(self, "next", &next_str, "()");
Tim Peters6d6c1a32001-08-02 04:15:00 +00004754}
4755
Guido van Rossum1a493502001-08-17 16:47:50 +00004756static PyObject *
4757slot_tp_descr_get(PyObject *self, PyObject *obj, PyObject *type)
4758{
4759 PyTypeObject *tp = self->ob_type;
4760 PyObject *get;
4761 static PyObject *get_str = NULL;
4762
4763 if (get_str == NULL) {
4764 get_str = PyString_InternFromString("__get__");
4765 if (get_str == NULL)
4766 return NULL;
4767 }
4768 get = _PyType_Lookup(tp, get_str);
4769 if (get == NULL) {
4770 /* Avoid further slowdowns */
4771 if (tp->tp_descr_get == slot_tp_descr_get)
4772 tp->tp_descr_get = NULL;
4773 Py_INCREF(self);
4774 return self;
4775 }
Guido van Rossum2c252392001-08-24 10:13:31 +00004776 if (obj == NULL)
4777 obj = Py_None;
4778 if (type == NULL)
4779 type = Py_None;
Georg Brandl684fd0c2006-05-25 19:15:31 +00004780 return PyObject_CallFunctionObjArgs(get, self, obj, type, NULL);
Guido van Rossum1a493502001-08-17 16:47:50 +00004781}
Tim Peters6d6c1a32001-08-02 04:15:00 +00004782
4783static int
4784slot_tp_descr_set(PyObject *self, PyObject *target, PyObject *value)
4785{
Guido van Rossum2c252392001-08-24 10:13:31 +00004786 PyObject *res;
Guido van Rossum2730b132001-08-28 18:22:14 +00004787 static PyObject *del_str, *set_str;
Guido van Rossum2c252392001-08-24 10:13:31 +00004788
4789 if (value == NULL)
Guido van Rossum1d5b3f22001-12-03 00:08:33 +00004790 res = call_method(self, "__delete__", &del_str,
Guido van Rossum717ce002001-09-14 16:58:08 +00004791 "(O)", target);
Guido van Rossum2c252392001-08-24 10:13:31 +00004792 else
Guido van Rossum2730b132001-08-28 18:22:14 +00004793 res = call_method(self, "__set__", &set_str,
Guido van Rossum717ce002001-09-14 16:58:08 +00004794 "(OO)", target, value);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004795 if (res == NULL)
4796 return -1;
4797 Py_DECREF(res);
4798 return 0;
4799}
4800
4801static int
4802slot_tp_init(PyObject *self, PyObject *args, PyObject *kwds)
4803{
Guido van Rossum60718732001-08-28 17:47:51 +00004804 static PyObject *init_str;
4805 PyObject *meth = lookup_method(self, "__init__", &init_str);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004806 PyObject *res;
4807
4808 if (meth == NULL)
4809 return -1;
4810 res = PyObject_Call(meth, args, kwds);
4811 Py_DECREF(meth);
4812 if (res == NULL)
4813 return -1;
Raymond Hettingerb67cc802005-03-03 16:45:19 +00004814 if (res != Py_None) {
Georg Brandlccff7852006-06-18 22:17:29 +00004815 PyErr_Format(PyExc_TypeError,
4816 "__init__() should return None, not '%.200s'",
4817 res->ob_type->tp_name);
Raymond Hettingerb67cc802005-03-03 16:45:19 +00004818 Py_DECREF(res);
4819 return -1;
4820 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00004821 Py_DECREF(res);
4822 return 0;
4823}
4824
4825static PyObject *
4826slot_tp_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
4827{
Guido van Rossum7bed2132002-08-08 21:57:53 +00004828 static PyObject *new_str;
4829 PyObject *func;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004830 PyObject *newargs, *x;
Martin v. Löwis18e16552006-02-15 17:27:45 +00004831 Py_ssize_t i, n;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004832
Guido van Rossum7bed2132002-08-08 21:57:53 +00004833 if (new_str == NULL) {
4834 new_str = PyString_InternFromString("__new__");
4835 if (new_str == NULL)
4836 return NULL;
4837 }
4838 func = PyObject_GetAttr((PyObject *)type, new_str);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004839 if (func == NULL)
4840 return NULL;
4841 assert(PyTuple_Check(args));
4842 n = PyTuple_GET_SIZE(args);
4843 newargs = PyTuple_New(n+1);
4844 if (newargs == NULL)
4845 return NULL;
4846 Py_INCREF(type);
4847 PyTuple_SET_ITEM(newargs, 0, (PyObject *)type);
4848 for (i = 0; i < n; i++) {
4849 x = PyTuple_GET_ITEM(args, i);
4850 Py_INCREF(x);
4851 PyTuple_SET_ITEM(newargs, i+1, x);
4852 }
4853 x = PyObject_Call(func, newargs, kwds);
Guido van Rossum25d18072001-10-01 15:55:28 +00004854 Py_DECREF(newargs);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004855 Py_DECREF(func);
4856 return x;
4857}
4858
Guido van Rossumfebd61d2002-08-08 20:55:20 +00004859static void
4860slot_tp_del(PyObject *self)
4861{
4862 static PyObject *del_str = NULL;
4863 PyObject *del, *res;
4864 PyObject *error_type, *error_value, *error_traceback;
4865
4866 /* Temporarily resurrect the object. */
4867 assert(self->ob_refcnt == 0);
4868 self->ob_refcnt = 1;
4869
4870 /* Save the current exception, if any. */
4871 PyErr_Fetch(&error_type, &error_value, &error_traceback);
4872
4873 /* Execute __del__ method, if any. */
4874 del = lookup_maybe(self, "__del__", &del_str);
4875 if (del != NULL) {
4876 res = PyEval_CallObject(del, NULL);
4877 if (res == NULL)
4878 PyErr_WriteUnraisable(del);
4879 else
4880 Py_DECREF(res);
4881 Py_DECREF(del);
4882 }
4883
4884 /* Restore the saved exception. */
4885 PyErr_Restore(error_type, error_value, error_traceback);
4886
4887 /* Undo the temporary resurrection; can't use DECREF here, it would
4888 * cause a recursive call.
4889 */
4890 assert(self->ob_refcnt > 0);
4891 if (--self->ob_refcnt == 0)
4892 return; /* this is the normal path out */
4893
4894 /* __del__ resurrected it! Make it look like the original Py_DECREF
4895 * never happened.
4896 */
4897 {
Martin v. Löwis725507b2006-03-07 12:08:51 +00004898 Py_ssize_t refcnt = self->ob_refcnt;
Guido van Rossumfebd61d2002-08-08 20:55:20 +00004899 _Py_NewReference(self);
4900 self->ob_refcnt = refcnt;
4901 }
4902 assert(!PyType_IS_GC(self->ob_type) ||
4903 _Py_AS_GC(self)->gc.gc_refs != _PyGC_REFS_UNTRACKED);
Michael W. Hudson3f3b6682004-08-03 10:21:03 +00004904 /* If Py_REF_DEBUG, _Py_NewReference bumped _Py_RefTotal, so
4905 * we need to undo that. */
4906 _Py_DEC_REFTOTAL;
4907 /* If Py_TRACE_REFS, _Py_NewReference re-added self to the object
4908 * chain, so no more to do there.
Guido van Rossumfebd61d2002-08-08 20:55:20 +00004909 * If COUNT_ALLOCS, the original decref bumped tp_frees, and
4910 * _Py_NewReference bumped tp_allocs: both of those need to be
4911 * undone.
4912 */
4913#ifdef COUNT_ALLOCS
4914 --self->ob_type->tp_frees;
4915 --self->ob_type->tp_allocs;
4916#endif
4917}
4918
Guido van Rossum7b9144b2001-10-09 19:39:46 +00004919
4920/* Table mapping __foo__ names to tp_foo offsets and slot_tp_foo wrapper
Tim Petersbf9b2442003-03-23 05:35:36 +00004921 functions. The offsets here are relative to the 'PyHeapTypeObject'
Guido van Rossume5c691a2003-03-07 15:13:17 +00004922 structure, which incorporates the additional structures used for numbers,
4923 sequences and mappings.
4924 Note that multiple names may map to the same slot (e.g. __eq__,
Guido van Rossum7b9144b2001-10-09 19:39:46 +00004925 __ne__ etc. all map to tp_richcompare) and one name may map to multiple
Guido van Rossumc334df52002-04-04 23:44:47 +00004926 slots (e.g. __str__ affects tp_str as well as tp_repr). The table is
4927 terminated with an all-zero entry. (This table is further initialized and
4928 sorted in init_slotdefs() below.) */
Guido van Rossum7b9144b2001-10-09 19:39:46 +00004929
Guido van Rossum6d204072001-10-21 00:44:31 +00004930typedef struct wrapperbase slotdef;
Guido van Rossum7b9144b2001-10-09 19:39:46 +00004931
4932#undef TPSLOT
Guido van Rossumc8e56452001-10-22 00:43:43 +00004933#undef FLSLOT
Guido van Rossum7b9144b2001-10-09 19:39:46 +00004934#undef ETSLOT
4935#undef SQSLOT
4936#undef MPSLOT
4937#undef NBSLOT
Guido van Rossum6d204072001-10-21 00:44:31 +00004938#undef UNSLOT
4939#undef IBSLOT
Guido van Rossum7b9144b2001-10-09 19:39:46 +00004940#undef BINSLOT
4941#undef RBINSLOT
4942
Guido van Rossum6d204072001-10-21 00:44:31 +00004943#define TPSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \
Neal Norwitzd47714a2002-08-13 19:01:38 +00004944 {NAME, offsetof(PyTypeObject, SLOT), (void *)(FUNCTION), WRAPPER, \
4945 PyDoc_STR(DOC)}
Guido van Rossumc8e56452001-10-22 00:43:43 +00004946#define FLSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC, FLAGS) \
4947 {NAME, offsetof(PyTypeObject, SLOT), (void *)(FUNCTION), WRAPPER, \
Neal Norwitzd47714a2002-08-13 19:01:38 +00004948 PyDoc_STR(DOC), FLAGS}
Guido van Rossum6d204072001-10-21 00:44:31 +00004949#define ETSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \
Guido van Rossume5c691a2003-03-07 15:13:17 +00004950 {NAME, offsetof(PyHeapTypeObject, SLOT), (void *)(FUNCTION), WRAPPER, \
Neal Norwitzd47714a2002-08-13 19:01:38 +00004951 PyDoc_STR(DOC)}
Guido van Rossum6d204072001-10-21 00:44:31 +00004952#define SQSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \
4953 ETSLOT(NAME, as_sequence.SLOT, FUNCTION, WRAPPER, DOC)
4954#define MPSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \
4955 ETSLOT(NAME, as_mapping.SLOT, FUNCTION, WRAPPER, DOC)
4956#define NBSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \
4957 ETSLOT(NAME, as_number.SLOT, FUNCTION, WRAPPER, DOC)
4958#define UNSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \
4959 ETSLOT(NAME, as_number.SLOT, FUNCTION, WRAPPER, \
4960 "x." NAME "() <==> " DOC)
4961#define IBSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \
4962 ETSLOT(NAME, as_number.SLOT, FUNCTION, WRAPPER, \
4963 "x." NAME "(y) <==> x" DOC "y")
4964#define BINSLOT(NAME, SLOT, FUNCTION, DOC) \
4965 ETSLOT(NAME, as_number.SLOT, FUNCTION, wrap_binaryfunc_l, \
4966 "x." NAME "(y) <==> x" DOC "y")
4967#define RBINSLOT(NAME, SLOT, FUNCTION, DOC) \
4968 ETSLOT(NAME, as_number.SLOT, FUNCTION, wrap_binaryfunc_r, \
4969 "x." NAME "(y) <==> y" DOC "x")
Anthony Baxter56616992005-06-03 14:12:21 +00004970#define BINSLOTNOTINFIX(NAME, SLOT, FUNCTION, DOC) \
4971 ETSLOT(NAME, as_number.SLOT, FUNCTION, wrap_binaryfunc_l, \
4972 "x." NAME "(y) <==> " DOC)
4973#define RBINSLOTNOTINFIX(NAME, SLOT, FUNCTION, DOC) \
4974 ETSLOT(NAME, as_number.SLOT, FUNCTION, wrap_binaryfunc_r, \
4975 "x." NAME "(y) <==> " DOC)
Guido van Rossum7b9144b2001-10-09 19:39:46 +00004976
4977static slotdef slotdefs[] = {
Martin v. Löwis18e16552006-02-15 17:27:45 +00004978 SQSLOT("__len__", sq_length, slot_sq_length, wrap_lenfunc,
Guido van Rossum6d204072001-10-21 00:44:31 +00004979 "x.__len__() <==> len(x)"),
Armin Rigofd163f92005-12-29 15:59:19 +00004980 /* Heap types defining __add__/__mul__ have sq_concat/sq_repeat == NULL.
4981 The logic in abstract.c always falls back to nb_add/nb_multiply in
4982 this case. Defining both the nb_* and the sq_* slots to call the
4983 user-defined methods has unexpected side-effects, as shown by
4984 test_descr.notimplemented() */
4985 SQSLOT("__add__", sq_concat, NULL, wrap_binaryfunc,
4986 "x.__add__(y) <==> x+y"),
Armin Rigo314861c2006-03-30 14:04:02 +00004987 SQSLOT("__mul__", sq_repeat, NULL, wrap_indexargfunc,
Armin Rigofd163f92005-12-29 15:59:19 +00004988 "x.__mul__(n) <==> x*n"),
Armin Rigo314861c2006-03-30 14:04:02 +00004989 SQSLOT("__rmul__", sq_repeat, NULL, wrap_indexargfunc,
Armin Rigofd163f92005-12-29 15:59:19 +00004990 "x.__rmul__(n) <==> n*x"),
Guido van Rossum6d204072001-10-21 00:44:31 +00004991 SQSLOT("__getitem__", sq_item, slot_sq_item, wrap_sq_item,
4992 "x.__getitem__(y) <==> x[y]"),
Martin v. Löwis18e16552006-02-15 17:27:45 +00004993 SQSLOT("__getslice__", sq_slice, slot_sq_slice, wrap_ssizessizeargfunc,
Brett Cannon154da9b2003-05-20 02:30:04 +00004994 "x.__getslice__(i, j) <==> x[i:j]\n\
4995 \n\
4996 Use of negative indices is not supported."),
Guido van Rossum6d204072001-10-21 00:44:31 +00004997 SQSLOT("__setitem__", sq_ass_item, slot_sq_ass_item, wrap_sq_setitem,
Brett Cannonbe67d872003-05-20 02:40:12 +00004998 "x.__setitem__(i, y) <==> x[i]=y"),
Guido van Rossum6d204072001-10-21 00:44:31 +00004999 SQSLOT("__delitem__", sq_ass_item, slot_sq_ass_item, wrap_sq_delitem,
Brett Cannonbe67d872003-05-20 02:40:12 +00005000 "x.__delitem__(y) <==> del x[y]"),
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005001 SQSLOT("__setslice__", sq_ass_slice, slot_sq_ass_slice,
Martin v. Löwis18e16552006-02-15 17:27:45 +00005002 wrap_ssizessizeobjargproc,
Brett Cannonbe67d872003-05-20 02:40:12 +00005003 "x.__setslice__(i, j, y) <==> x[i:j]=y\n\
5004 \n\
5005 Use of negative indices is not supported."),
Guido van Rossum6d204072001-10-21 00:44:31 +00005006 SQSLOT("__delslice__", sq_ass_slice, slot_sq_ass_slice, wrap_delslice,
Brett Cannonbe67d872003-05-20 02:40:12 +00005007 "x.__delslice__(i, j) <==> del x[i:j]\n\
5008 \n\
5009 Use of negative indices is not supported."),
Guido van Rossum6d204072001-10-21 00:44:31 +00005010 SQSLOT("__contains__", sq_contains, slot_sq_contains, wrap_objobjproc,
5011 "x.__contains__(y) <==> y in x"),
Armin Rigofd163f92005-12-29 15:59:19 +00005012 SQSLOT("__iadd__", sq_inplace_concat, NULL,
5013 wrap_binaryfunc, "x.__iadd__(y) <==> x+=y"),
5014 SQSLOT("__imul__", sq_inplace_repeat, NULL,
Armin Rigo314861c2006-03-30 14:04:02 +00005015 wrap_indexargfunc, "x.__imul__(y) <==> x*=y"),
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005016
Martin v. Löwis18e16552006-02-15 17:27:45 +00005017 MPSLOT("__len__", mp_length, slot_mp_length, wrap_lenfunc,
Guido van Rossum6d204072001-10-21 00:44:31 +00005018 "x.__len__() <==> len(x)"),
Guido van Rossumfd38f8e2001-10-09 20:17:57 +00005019 MPSLOT("__getitem__", mp_subscript, slot_mp_subscript,
Guido van Rossum6d204072001-10-21 00:44:31 +00005020 wrap_binaryfunc,
5021 "x.__getitem__(y) <==> x[y]"),
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005022 MPSLOT("__setitem__", mp_ass_subscript, slot_mp_ass_subscript,
Guido van Rossum6d204072001-10-21 00:44:31 +00005023 wrap_objobjargproc,
5024 "x.__setitem__(i, y) <==> x[i]=y"),
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005025 MPSLOT("__delitem__", mp_ass_subscript, slot_mp_ass_subscript,
Guido van Rossum6d204072001-10-21 00:44:31 +00005026 wrap_delitem,
5027 "x.__delitem__(y) <==> del x[y]"),
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005028
Guido van Rossum6d204072001-10-21 00:44:31 +00005029 BINSLOT("__add__", nb_add, slot_nb_add,
5030 "+"),
5031 RBINSLOT("__radd__", nb_add, slot_nb_add,
5032 "+"),
5033 BINSLOT("__sub__", nb_subtract, slot_nb_subtract,
5034 "-"),
5035 RBINSLOT("__rsub__", nb_subtract, slot_nb_subtract,
5036 "-"),
5037 BINSLOT("__mul__", nb_multiply, slot_nb_multiply,
5038 "*"),
5039 RBINSLOT("__rmul__", nb_multiply, slot_nb_multiply,
5040 "*"),
5041 BINSLOT("__div__", nb_divide, slot_nb_divide,
5042 "/"),
5043 RBINSLOT("__rdiv__", nb_divide, slot_nb_divide,
5044 "/"),
5045 BINSLOT("__mod__", nb_remainder, slot_nb_remainder,
5046 "%"),
5047 RBINSLOT("__rmod__", nb_remainder, slot_nb_remainder,
5048 "%"),
Anthony Baxter56616992005-06-03 14:12:21 +00005049 BINSLOTNOTINFIX("__divmod__", nb_divmod, slot_nb_divmod,
Guido van Rossum6d204072001-10-21 00:44:31 +00005050 "divmod(x, y)"),
Anthony Baxter56616992005-06-03 14:12:21 +00005051 RBINSLOTNOTINFIX("__rdivmod__", nb_divmod, slot_nb_divmod,
Guido van Rossum6d204072001-10-21 00:44:31 +00005052 "divmod(y, x)"),
5053 NBSLOT("__pow__", nb_power, slot_nb_power, wrap_ternaryfunc,
5054 "x.__pow__(y[, z]) <==> pow(x, y[, z])"),
5055 NBSLOT("__rpow__", nb_power, slot_nb_power, wrap_ternaryfunc_r,
5056 "y.__rpow__(x[, z]) <==> pow(x, y[, z])"),
5057 UNSLOT("__neg__", nb_negative, slot_nb_negative, wrap_unaryfunc, "-x"),
5058 UNSLOT("__pos__", nb_positive, slot_nb_positive, wrap_unaryfunc, "+x"),
5059 UNSLOT("__abs__", nb_absolute, slot_nb_absolute, wrap_unaryfunc,
5060 "abs(x)"),
Raymond Hettingerf34f2642003-10-11 17:29:04 +00005061 UNSLOT("__nonzero__", nb_nonzero, slot_nb_nonzero, wrap_inquirypred,
Guido van Rossum6d204072001-10-21 00:44:31 +00005062 "x != 0"),
5063 UNSLOT("__invert__", nb_invert, slot_nb_invert, wrap_unaryfunc, "~x"),
5064 BINSLOT("__lshift__", nb_lshift, slot_nb_lshift, "<<"),
5065 RBINSLOT("__rlshift__", nb_lshift, slot_nb_lshift, "<<"),
5066 BINSLOT("__rshift__", nb_rshift, slot_nb_rshift, ">>"),
5067 RBINSLOT("__rrshift__", nb_rshift, slot_nb_rshift, ">>"),
5068 BINSLOT("__and__", nb_and, slot_nb_and, "&"),
5069 RBINSLOT("__rand__", nb_and, slot_nb_and, "&"),
5070 BINSLOT("__xor__", nb_xor, slot_nb_xor, "^"),
5071 RBINSLOT("__rxor__", nb_xor, slot_nb_xor, "^"),
5072 BINSLOT("__or__", nb_or, slot_nb_or, "|"),
5073 RBINSLOT("__ror__", nb_or, slot_nb_or, "|"),
5074 NBSLOT("__coerce__", nb_coerce, slot_nb_coerce, wrap_coercefunc,
5075 "x.__coerce__(y) <==> coerce(x, y)"),
5076 UNSLOT("__int__", nb_int, slot_nb_int, wrap_unaryfunc,
5077 "int(x)"),
5078 UNSLOT("__long__", nb_long, slot_nb_long, wrap_unaryfunc,
5079 "long(x)"),
5080 UNSLOT("__float__", nb_float, slot_nb_float, wrap_unaryfunc,
5081 "float(x)"),
5082 UNSLOT("__oct__", nb_oct, slot_nb_oct, wrap_unaryfunc,
5083 "oct(x)"),
5084 UNSLOT("__hex__", nb_hex, slot_nb_hex, wrap_unaryfunc,
5085 "hex(x)"),
Neal Norwitz8a87f5d2006-08-12 17:03:09 +00005086 NBSLOT("__index__", nb_index, slot_nb_index, wrap_unaryfunc,
Guido van Rossum38fff8c2006-03-07 18:50:55 +00005087 "x[y:z] <==> x[y.__index__():z.__index__()]"),
Guido van Rossum6d204072001-10-21 00:44:31 +00005088 IBSLOT("__iadd__", nb_inplace_add, slot_nb_inplace_add,
5089 wrap_binaryfunc, "+"),
5090 IBSLOT("__isub__", nb_inplace_subtract, slot_nb_inplace_subtract,
5091 wrap_binaryfunc, "-"),
5092 IBSLOT("__imul__", nb_inplace_multiply, slot_nb_inplace_multiply,
5093 wrap_binaryfunc, "*"),
5094 IBSLOT("__idiv__", nb_inplace_divide, slot_nb_inplace_divide,
5095 wrap_binaryfunc, "/"),
5096 IBSLOT("__imod__", nb_inplace_remainder, slot_nb_inplace_remainder,
5097 wrap_binaryfunc, "%"),
5098 IBSLOT("__ipow__", nb_inplace_power, slot_nb_inplace_power,
Guido van Rossum6e5680f2002-10-15 01:01:53 +00005099 wrap_binaryfunc, "**"),
Guido van Rossum6d204072001-10-21 00:44:31 +00005100 IBSLOT("__ilshift__", nb_inplace_lshift, slot_nb_inplace_lshift,
5101 wrap_binaryfunc, "<<"),
5102 IBSLOT("__irshift__", nb_inplace_rshift, slot_nb_inplace_rshift,
5103 wrap_binaryfunc, ">>"),
5104 IBSLOT("__iand__", nb_inplace_and, slot_nb_inplace_and,
5105 wrap_binaryfunc, "&"),
5106 IBSLOT("__ixor__", nb_inplace_xor, slot_nb_inplace_xor,
5107 wrap_binaryfunc, "^"),
5108 IBSLOT("__ior__", nb_inplace_or, slot_nb_inplace_or,
5109 wrap_binaryfunc, "|"),
5110 BINSLOT("__floordiv__", nb_floor_divide, slot_nb_floor_divide, "//"),
5111 RBINSLOT("__rfloordiv__", nb_floor_divide, slot_nb_floor_divide, "//"),
5112 BINSLOT("__truediv__", nb_true_divide, slot_nb_true_divide, "/"),
5113 RBINSLOT("__rtruediv__", nb_true_divide, slot_nb_true_divide, "/"),
5114 IBSLOT("__ifloordiv__", nb_inplace_floor_divide,
5115 slot_nb_inplace_floor_divide, wrap_binaryfunc, "//"),
5116 IBSLOT("__itruediv__", nb_inplace_true_divide,
5117 slot_nb_inplace_true_divide, wrap_binaryfunc, "/"),
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005118
Guido van Rossum6d204072001-10-21 00:44:31 +00005119 TPSLOT("__str__", tp_str, slot_tp_str, wrap_unaryfunc,
5120 "x.__str__() <==> str(x)"),
Guido van Rossumafe7a942001-10-29 14:33:44 +00005121 TPSLOT("__str__", tp_print, NULL, NULL, ""),
Guido van Rossum6d204072001-10-21 00:44:31 +00005122 TPSLOT("__repr__", tp_repr, slot_tp_repr, wrap_unaryfunc,
5123 "x.__repr__() <==> repr(x)"),
Guido van Rossumafe7a942001-10-29 14:33:44 +00005124 TPSLOT("__repr__", tp_print, NULL, NULL, ""),
Guido van Rossum6d204072001-10-21 00:44:31 +00005125 TPSLOT("__cmp__", tp_compare, _PyObject_SlotCompare, wrap_cmpfunc,
5126 "x.__cmp__(y) <==> cmp(x,y)"),
5127 TPSLOT("__hash__", tp_hash, slot_tp_hash, wrap_hashfunc,
5128 "x.__hash__() <==> hash(x)"),
Guido van Rossumc8e56452001-10-22 00:43:43 +00005129 FLSLOT("__call__", tp_call, slot_tp_call, (wrapperfunc)wrap_call,
5130 "x.__call__(...) <==> x(...)", PyWrapperFlag_KEYWORDS),
Guido van Rossumd396b9c2001-10-13 20:02:41 +00005131 TPSLOT("__getattribute__", tp_getattro, slot_tp_getattr_hook,
Guido van Rossum6d204072001-10-21 00:44:31 +00005132 wrap_binaryfunc, "x.__getattribute__('name') <==> x.name"),
5133 TPSLOT("__getattribute__", tp_getattr, NULL, NULL, ""),
5134 TPSLOT("__getattr__", tp_getattro, slot_tp_getattr_hook, NULL, ""),
5135 TPSLOT("__getattr__", tp_getattr, NULL, NULL, ""),
5136 TPSLOT("__setattr__", tp_setattro, slot_tp_setattro, wrap_setattr,
5137 "x.__setattr__('name', value) <==> x.name = value"),
5138 TPSLOT("__setattr__", tp_setattr, NULL, NULL, ""),
5139 TPSLOT("__delattr__", tp_setattro, slot_tp_setattro, wrap_delattr,
5140 "x.__delattr__('name') <==> del x.name"),
5141 TPSLOT("__delattr__", tp_setattr, NULL, NULL, ""),
5142 TPSLOT("__lt__", tp_richcompare, slot_tp_richcompare, richcmp_lt,
5143 "x.__lt__(y) <==> x<y"),
5144 TPSLOT("__le__", tp_richcompare, slot_tp_richcompare, richcmp_le,
5145 "x.__le__(y) <==> x<=y"),
5146 TPSLOT("__eq__", tp_richcompare, slot_tp_richcompare, richcmp_eq,
5147 "x.__eq__(y) <==> x==y"),
5148 TPSLOT("__ne__", tp_richcompare, slot_tp_richcompare, richcmp_ne,
5149 "x.__ne__(y) <==> x!=y"),
5150 TPSLOT("__gt__", tp_richcompare, slot_tp_richcompare, richcmp_gt,
5151 "x.__gt__(y) <==> x>y"),
5152 TPSLOT("__ge__", tp_richcompare, slot_tp_richcompare, richcmp_ge,
5153 "x.__ge__(y) <==> x>=y"),
5154 TPSLOT("__iter__", tp_iter, slot_tp_iter, wrap_unaryfunc,
5155 "x.__iter__() <==> iter(x)"),
5156 TPSLOT("next", tp_iternext, slot_tp_iternext, wrap_next,
5157 "x.next() -> the next value, or raise StopIteration"),
5158 TPSLOT("__get__", tp_descr_get, slot_tp_descr_get, wrap_descr_get,
5159 "descr.__get__(obj[, type]) -> value"),
5160 TPSLOT("__set__", tp_descr_set, slot_tp_descr_set, wrap_descr_set,
5161 "descr.__set__(obj, value)"),
Guido van Rossum0dbab4c52002-08-01 14:39:25 +00005162 TPSLOT("__delete__", tp_descr_set, slot_tp_descr_set,
5163 wrap_descr_delete, "descr.__delete__(obj)"),
Guido van Rossumc8e56452001-10-22 00:43:43 +00005164 FLSLOT("__init__", tp_init, slot_tp_init, (wrapperfunc)wrap_init,
Guido van Rossum6d204072001-10-21 00:44:31 +00005165 "x.__init__(...) initializes x; "
Guido van Rossumc8e56452001-10-22 00:43:43 +00005166 "see x.__class__.__doc__ for signature",
5167 PyWrapperFlag_KEYWORDS),
5168 TPSLOT("__new__", tp_new, slot_tp_new, NULL, ""),
Guido van Rossumfebd61d2002-08-08 20:55:20 +00005169 TPSLOT("__del__", tp_del, slot_tp_del, NULL, ""),
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005170 {NULL}
5171};
5172
Guido van Rossumc334df52002-04-04 23:44:47 +00005173/* Given a type pointer and an offset gotten from a slotdef entry, return a
5174 pointer to the actual slot. This is not quite the same as simply adding
5175 the offset to the type pointer, since it takes care to indirect through the
5176 proper indirection pointer (as_buffer, etc.); it returns NULL if the
5177 indirection pointer is NULL. */
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005178static void **
Martin v. Löwis18e16552006-02-15 17:27:45 +00005179slotptr(PyTypeObject *type, int ioffset)
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005180{
5181 char *ptr;
Martin v. Löwis18e16552006-02-15 17:27:45 +00005182 long offset = ioffset;
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005183
Guido van Rossume5c691a2003-03-07 15:13:17 +00005184 /* Note: this depends on the order of the members of PyHeapTypeObject! */
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005185 assert(offset >= 0);
Skip Montanaro429433b2006-04-18 00:35:43 +00005186 assert((size_t)offset < offsetof(PyHeapTypeObject, as_buffer));
5187 if ((size_t)offset >= offsetof(PyHeapTypeObject, as_sequence)) {
Martin v. Löwisee36d652006-04-11 09:08:02 +00005188 ptr = (char *)type->tp_as_sequence;
Guido van Rossume5c691a2003-03-07 15:13:17 +00005189 offset -= offsetof(PyHeapTypeObject, as_sequence);
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005190 }
Skip Montanaro429433b2006-04-18 00:35:43 +00005191 else if ((size_t)offset >= offsetof(PyHeapTypeObject, as_mapping)) {
Martin v. Löwisee36d652006-04-11 09:08:02 +00005192 ptr = (char *)type->tp_as_mapping;
Guido van Rossume5c691a2003-03-07 15:13:17 +00005193 offset -= offsetof(PyHeapTypeObject, as_mapping);
Guido van Rossum09638c12002-06-13 19:17:46 +00005194 }
Skip Montanaro429433b2006-04-18 00:35:43 +00005195 else if ((size_t)offset >= offsetof(PyHeapTypeObject, as_number)) {
Martin v. Löwisee36d652006-04-11 09:08:02 +00005196 ptr = (char *)type->tp_as_number;
Guido van Rossume5c691a2003-03-07 15:13:17 +00005197 offset -= offsetof(PyHeapTypeObject, as_number);
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005198 }
5199 else {
Martin v. Löwisee36d652006-04-11 09:08:02 +00005200 ptr = (char *)type;
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005201 }
5202 if (ptr != NULL)
5203 ptr += offset;
5204 return (void **)ptr;
5205}
Guido van Rossumf040ede2001-08-07 16:40:56 +00005206
Guido van Rossumc334df52002-04-04 23:44:47 +00005207/* Length of array of slotdef pointers used to store slots with the
5208 same __name__. There should be at most MAX_EQUIV-1 slotdef entries with
5209 the same __name__, for any __name__. Since that's a static property, it is
5210 appropriate to declare fixed-size arrays for this. */
5211#define MAX_EQUIV 10
5212
5213/* Return a slot pointer for a given name, but ONLY if the attribute has
5214 exactly one slot function. The name must be an interned string. */
5215static void **
5216resolve_slotdups(PyTypeObject *type, PyObject *name)
5217{
5218 /* XXX Maybe this could be optimized more -- but is it worth it? */
5219
5220 /* pname and ptrs act as a little cache */
5221 static PyObject *pname;
5222 static slotdef *ptrs[MAX_EQUIV];
5223 slotdef *p, **pp;
5224 void **res, **ptr;
5225
5226 if (pname != name) {
5227 /* Collect all slotdefs that match name into ptrs. */
5228 pname = name;
5229 pp = ptrs;
5230 for (p = slotdefs; p->name_strobj; p++) {
5231 if (p->name_strobj == name)
5232 *pp++ = p;
5233 }
5234 *pp = NULL;
5235 }
5236
5237 /* Look in all matching slots of the type; if exactly one of these has
5238 a filled-in slot, return its value. Otherwise return NULL. */
5239 res = NULL;
5240 for (pp = ptrs; *pp; pp++) {
5241 ptr = slotptr(type, (*pp)->offset);
5242 if (ptr == NULL || *ptr == NULL)
5243 continue;
5244 if (res != NULL)
5245 return NULL;
5246 res = ptr;
5247 }
5248 return res;
5249}
5250
Guido van Rossum8d24ee92003-03-24 23:49:49 +00005251/* Common code for update_slots_callback() and fixup_slot_dispatchers(). This
Guido van Rossumc334df52002-04-04 23:44:47 +00005252 does some incredibly complex thinking and then sticks something into the
5253 slot. (It sees if the adjacent slotdefs for the same slot have conflicting
5254 interests, and then stores a generic wrapper or a specific function into
5255 the slot.) Return a pointer to the next slotdef with a different offset,
5256 because that's convenient for fixup_slot_dispatchers(). */
5257static slotdef *
5258update_one_slot(PyTypeObject *type, slotdef *p)
5259{
5260 PyObject *descr;
5261 PyWrapperDescrObject *d;
5262 void *generic = NULL, *specific = NULL;
5263 int use_generic = 0;
5264 int offset = p->offset;
5265 void **ptr = slotptr(type, offset);
5266
5267 if (ptr == NULL) {
5268 do {
5269 ++p;
5270 } while (p->offset == offset);
5271 return p;
5272 }
5273 do {
5274 descr = _PyType_Lookup(type, p->name_strobj);
5275 if (descr == NULL)
5276 continue;
5277 if (descr->ob_type == &PyWrapperDescr_Type) {
5278 void **tptr = resolve_slotdups(type, p->name_strobj);
5279 if (tptr == NULL || tptr == ptr)
5280 generic = p->function;
5281 d = (PyWrapperDescrObject *)descr;
5282 if (d->d_base->wrapper == p->wrapper &&
5283 PyType_IsSubtype(type, d->d_type))
5284 {
5285 if (specific == NULL ||
5286 specific == d->d_wrapped)
5287 specific = d->d_wrapped;
5288 else
5289 use_generic = 1;
5290 }
5291 }
Guido van Rossum721f62e2002-08-09 02:14:34 +00005292 else if (descr->ob_type == &PyCFunction_Type &&
5293 PyCFunction_GET_FUNCTION(descr) ==
5294 (PyCFunction)tp_new_wrapper &&
5295 strcmp(p->name, "__new__") == 0)
5296 {
5297 /* The __new__ wrapper is not a wrapper descriptor,
5298 so must be special-cased differently.
5299 If we don't do this, creating an instance will
5300 always use slot_tp_new which will look up
5301 __new__ in the MRO which will call tp_new_wrapper
5302 which will look through the base classes looking
5303 for a static base and call its tp_new (usually
5304 PyType_GenericNew), after performing various
5305 sanity checks and constructing a new argument
5306 list. Cut all that nonsense short -- this speeds
5307 up instance creation tremendously. */
Martin v. Löwisa94568a2003-05-10 07:36:56 +00005308 specific = (void *)type->tp_new;
Guido van Rossum721f62e2002-08-09 02:14:34 +00005309 /* XXX I'm not 100% sure that there isn't a hole
5310 in this reasoning that requires additional
5311 sanity checks. I'll buy the first person to
5312 point out a bug in this reasoning a beer. */
5313 }
Guido van Rossumc334df52002-04-04 23:44:47 +00005314 else {
5315 use_generic = 1;
5316 generic = p->function;
5317 }
5318 } while ((++p)->offset == offset);
5319 if (specific && !use_generic)
5320 *ptr = specific;
5321 else
5322 *ptr = generic;
5323 return p;
5324}
5325
Guido van Rossum8d24ee92003-03-24 23:49:49 +00005326/* In the type, update the slots whose slotdefs are gathered in the pp array.
5327 This is a callback for update_subclasses(). */
Guido van Rossum875eeaa2001-10-11 18:33:53 +00005328static int
Guido van Rossum8d24ee92003-03-24 23:49:49 +00005329update_slots_callback(PyTypeObject *type, void *data)
Guido van Rossum875eeaa2001-10-11 18:33:53 +00005330{
Guido van Rossum8d24ee92003-03-24 23:49:49 +00005331 slotdef **pp = (slotdef **)data;
Guido van Rossum875eeaa2001-10-11 18:33:53 +00005332
Guido van Rossum8d24ee92003-03-24 23:49:49 +00005333 for (; *pp; pp++)
Guido van Rossumc334df52002-04-04 23:44:47 +00005334 update_one_slot(type, *pp);
Guido van Rossum875eeaa2001-10-11 18:33:53 +00005335 return 0;
5336}
5337
Guido van Rossumc334df52002-04-04 23:44:47 +00005338/* Comparison function for qsort() to compare slotdefs by their offset, and
5339 for equal offset by their address (to force a stable sort). */
Guido van Rossumd396b9c2001-10-13 20:02:41 +00005340static int
5341slotdef_cmp(const void *aa, const void *bb)
5342{
5343 const slotdef *a = (const slotdef *)aa, *b = (const slotdef *)bb;
5344 int c = a->offset - b->offset;
5345 if (c != 0)
5346 return c;
5347 else
Martin v. Löwis18e16552006-02-15 17:27:45 +00005348 /* Cannot use a-b, as this gives off_t,
5349 which may lose precision when converted to int. */
5350 return (a > b) ? 1 : (a < b) ? -1 : 0;
Guido van Rossumd396b9c2001-10-13 20:02:41 +00005351}
5352
Guido van Rossumc334df52002-04-04 23:44:47 +00005353/* Initialize the slotdefs table by adding interned string objects for the
5354 names and sorting the entries. */
Guido van Rossum875eeaa2001-10-11 18:33:53 +00005355static void
Guido van Rossumd396b9c2001-10-13 20:02:41 +00005356init_slotdefs(void)
Guido van Rossum875eeaa2001-10-11 18:33:53 +00005357{
5358 slotdef *p;
5359 static int initialized = 0;
5360
5361 if (initialized)
5362 return;
5363 for (p = slotdefs; p->name; p++) {
5364 p->name_strobj = PyString_InternFromString(p->name);
5365 if (!p->name_strobj)
Guido van Rossumc334df52002-04-04 23:44:47 +00005366 Py_FatalError("Out of memory interning slotdef names");
Guido van Rossum875eeaa2001-10-11 18:33:53 +00005367 }
Guido van Rossumb85a8b72001-10-16 17:00:48 +00005368 qsort((void *)slotdefs, (size_t)(p-slotdefs), sizeof(slotdef),
5369 slotdef_cmp);
Guido van Rossum875eeaa2001-10-11 18:33:53 +00005370 initialized = 1;
5371}
5372
Guido van Rossumc334df52002-04-04 23:44:47 +00005373/* Update the slots after assignment to a class (type) attribute. */
Guido van Rossum875eeaa2001-10-11 18:33:53 +00005374static int
5375update_slot(PyTypeObject *type, PyObject *name)
5376{
Guido van Rossumc334df52002-04-04 23:44:47 +00005377 slotdef *ptrs[MAX_EQUIV];
Guido van Rossumd396b9c2001-10-13 20:02:41 +00005378 slotdef *p;
5379 slotdef **pp;
Guido van Rossumb85a8b72001-10-16 17:00:48 +00005380 int offset;
Guido van Rossum875eeaa2001-10-11 18:33:53 +00005381
Guido van Rossumb85a8b72001-10-16 17:00:48 +00005382 init_slotdefs();
5383 pp = ptrs;
5384 for (p = slotdefs; p->name; p++) {
5385 /* XXX assume name is interned! */
5386 if (p->name_strobj == name)
5387 *pp++ = p;
5388 }
5389 *pp = NULL;
Guido van Rossumd396b9c2001-10-13 20:02:41 +00005390 for (pp = ptrs; *pp; pp++) {
5391 p = *pp;
Guido van Rossumb85a8b72001-10-16 17:00:48 +00005392 offset = p->offset;
5393 while (p > slotdefs && (p-1)->offset == offset)
Guido van Rossumd396b9c2001-10-13 20:02:41 +00005394 --p;
Guido van Rossumb85a8b72001-10-16 17:00:48 +00005395 *pp = p;
Guido van Rossum875eeaa2001-10-11 18:33:53 +00005396 }
Guido van Rossumc334df52002-04-04 23:44:47 +00005397 if (ptrs[0] == NULL)
5398 return 0; /* Not an attribute that affects any slots */
Guido van Rossum8d24ee92003-03-24 23:49:49 +00005399 return update_subclasses(type, name,
5400 update_slots_callback, (void *)ptrs);
Guido van Rossum875eeaa2001-10-11 18:33:53 +00005401}
5402
Guido van Rossumc334df52002-04-04 23:44:47 +00005403/* Store the proper functions in the slot dispatches at class (type)
5404 definition time, based upon which operations the class overrides in its
5405 dict. */
Tim Peters6d6c1a32001-08-02 04:15:00 +00005406static void
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005407fixup_slot_dispatchers(PyTypeObject *type)
Tim Peters6d6c1a32001-08-02 04:15:00 +00005408{
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005409 slotdef *p;
Tim Peters6d6c1a32001-08-02 04:15:00 +00005410
Guido van Rossumd396b9c2001-10-13 20:02:41 +00005411 init_slotdefs();
Guido van Rossumc334df52002-04-04 23:44:47 +00005412 for (p = slotdefs; p->name; )
5413 p = update_one_slot(type, p);
Tim Peters6d6c1a32001-08-02 04:15:00 +00005414}
Guido van Rossum705f0f52001-08-24 16:47:00 +00005415
Michael W. Hudson98bbc492002-11-26 14:47:27 +00005416static void
5417update_all_slots(PyTypeObject* type)
5418{
5419 slotdef *p;
5420
5421 init_slotdefs();
5422 for (p = slotdefs; p->name; p++) {
5423 /* update_slot returns int but can't actually fail */
5424 update_slot(type, p->name_strobj);
5425 }
5426}
5427
Guido van Rossum8d24ee92003-03-24 23:49:49 +00005428/* recurse_down_subclasses() and update_subclasses() are mutually
5429 recursive functions to call a callback for all subclasses,
5430 but refraining from recursing into subclasses that define 'name'. */
5431
5432static int
5433update_subclasses(PyTypeObject *type, PyObject *name,
5434 update_callback callback, void *data)
5435{
5436 if (callback(type, data) < 0)
5437 return -1;
5438 return recurse_down_subclasses(type, name, callback, data);
5439}
5440
5441static int
5442recurse_down_subclasses(PyTypeObject *type, PyObject *name,
5443 update_callback callback, void *data)
5444{
5445 PyTypeObject *subclass;
5446 PyObject *ref, *subclasses, *dict;
Martin v. Löwis18e16552006-02-15 17:27:45 +00005447 Py_ssize_t i, n;
Guido van Rossum8d24ee92003-03-24 23:49:49 +00005448
5449 subclasses = type->tp_subclasses;
5450 if (subclasses == NULL)
5451 return 0;
5452 assert(PyList_Check(subclasses));
5453 n = PyList_GET_SIZE(subclasses);
5454 for (i = 0; i < n; i++) {
5455 ref = PyList_GET_ITEM(subclasses, i);
5456 assert(PyWeakref_CheckRef(ref));
5457 subclass = (PyTypeObject *)PyWeakref_GET_OBJECT(ref);
5458 assert(subclass != NULL);
5459 if ((PyObject *)subclass == Py_None)
5460 continue;
5461 assert(PyType_Check(subclass));
5462 /* Avoid recursing down into unaffected classes */
5463 dict = subclass->tp_dict;
5464 if (dict != NULL && PyDict_Check(dict) &&
5465 PyDict_GetItem(dict, name) != NULL)
5466 continue;
5467 if (update_subclasses(subclass, name, callback, data) < 0)
5468 return -1;
5469 }
5470 return 0;
5471}
5472
Guido van Rossum6d204072001-10-21 00:44:31 +00005473/* This function is called by PyType_Ready() to populate the type's
5474 dictionary with method descriptors for function slots. For each
Guido van Rossum09638c12002-06-13 19:17:46 +00005475 function slot (like tp_repr) that's defined in the type, one or more
5476 corresponding descriptors are added in the type's tp_dict dictionary
5477 under the appropriate name (like __repr__). Some function slots
5478 cause more than one descriptor to be added (for example, the nb_add
5479 slot adds both __add__ and __radd__ descriptors) and some function
5480 slots compete for the same descriptor (for example both sq_item and
5481 mp_subscript generate a __getitem__ descriptor).
5482
5483 In the latter case, the first slotdef entry encoutered wins. Since
Tim Petersbf9b2442003-03-23 05:35:36 +00005484 slotdef entries are sorted by the offset of the slot in the
Guido van Rossume5c691a2003-03-07 15:13:17 +00005485 PyHeapTypeObject, this gives us some control over disambiguating
Guido van Rossum8d24ee92003-03-24 23:49:49 +00005486 between competing slots: the members of PyHeapTypeObject are listed
5487 from most general to least general, so the most general slot is
5488 preferred. In particular, because as_mapping comes before as_sequence,
5489 for a type that defines both mp_subscript and sq_item, mp_subscript
5490 wins.
Guido van Rossum09638c12002-06-13 19:17:46 +00005491
5492 This only adds new descriptors and doesn't overwrite entries in
5493 tp_dict that were previously defined. The descriptors contain a
5494 reference to the C function they must call, so that it's safe if they
5495 are copied into a subtype's __dict__ and the subtype has a different
5496 C function in its slot -- calling the method defined by the
5497 descriptor will call the C function that was used to create it,
5498 rather than the C function present in the slot when it is called.
5499 (This is important because a subtype may have a C function in the
5500 slot that calls the method from the dictionary, and we want to avoid
5501 infinite recursion here.) */
Guido van Rossum6d204072001-10-21 00:44:31 +00005502
5503static int
5504add_operators(PyTypeObject *type)
5505{
5506 PyObject *dict = type->tp_dict;
5507 slotdef *p;
5508 PyObject *descr;
5509 void **ptr;
5510
5511 init_slotdefs();
5512 for (p = slotdefs; p->name; p++) {
5513 if (p->wrapper == NULL)
5514 continue;
5515 ptr = slotptr(type, p->offset);
5516 if (!ptr || !*ptr)
5517 continue;
5518 if (PyDict_GetItem(dict, p->name_strobj))
5519 continue;
5520 descr = PyDescr_NewWrapper(type, p, *ptr);
5521 if (descr == NULL)
5522 return -1;
5523 if (PyDict_SetItem(dict, p->name_strobj, descr) < 0)
5524 return -1;
5525 Py_DECREF(descr);
5526 }
5527 if (type->tp_new != NULL) {
5528 if (add_tp_new_wrapper(type) < 0)
5529 return -1;
5530 }
5531 return 0;
5532}
5533
Guido van Rossum705f0f52001-08-24 16:47:00 +00005534
5535/* Cooperative 'super' */
5536
5537typedef struct {
5538 PyObject_HEAD
Guido van Rossume705ef12001-08-29 15:47:06 +00005539 PyTypeObject *type;
Guido van Rossum705f0f52001-08-24 16:47:00 +00005540 PyObject *obj;
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005541 PyTypeObject *obj_type;
Guido van Rossum705f0f52001-08-24 16:47:00 +00005542} superobject;
5543
Guido van Rossum6f799372001-09-20 20:46:19 +00005544static PyMemberDef super_members[] = {
5545 {"__thisclass__", T_OBJECT, offsetof(superobject, type), READONLY,
5546 "the class invoking super()"},
5547 {"__self__", T_OBJECT, offsetof(superobject, obj), READONLY,
5548 "the instance invoking super(); may be None"},
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005549 {"__self_class__", T_OBJECT, offsetof(superobject, obj_type), READONLY,
Walter Dörwaldf0dfc7a2003-10-20 14:01:56 +00005550 "the type of the instance invoking super(); may be None"},
Guido van Rossum41eb14d2001-08-30 23:13:11 +00005551 {0}
5552};
5553
Guido van Rossum705f0f52001-08-24 16:47:00 +00005554static void
5555super_dealloc(PyObject *self)
5556{
5557 superobject *su = (superobject *)self;
5558
Guido van Rossum048eb752001-10-02 21:24:57 +00005559 _PyObject_GC_UNTRACK(self);
Guido van Rossum705f0f52001-08-24 16:47:00 +00005560 Py_XDECREF(su->obj);
5561 Py_XDECREF(su->type);
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005562 Py_XDECREF(su->obj_type);
Guido van Rossum705f0f52001-08-24 16:47:00 +00005563 self->ob_type->tp_free(self);
5564}
5565
5566static PyObject *
Guido van Rossum41eb14d2001-08-30 23:13:11 +00005567super_repr(PyObject *self)
5568{
5569 superobject *su = (superobject *)self;
5570
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005571 if (su->obj_type)
Guido van Rossum41eb14d2001-08-30 23:13:11 +00005572 return PyString_FromFormat(
Guido van Rossuma4cb7882001-09-25 03:56:29 +00005573 "<super: <class '%s'>, <%s object>>",
Guido van Rossum41eb14d2001-08-30 23:13:11 +00005574 su->type ? su->type->tp_name : "NULL",
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005575 su->obj_type->tp_name);
Guido van Rossum41eb14d2001-08-30 23:13:11 +00005576 else
5577 return PyString_FromFormat(
Guido van Rossuma4cb7882001-09-25 03:56:29 +00005578 "<super: <class '%s'>, NULL>",
Guido van Rossum41eb14d2001-08-30 23:13:11 +00005579 su->type ? su->type->tp_name : "NULL");
5580}
5581
5582static PyObject *
Guido van Rossum705f0f52001-08-24 16:47:00 +00005583super_getattro(PyObject *self, PyObject *name)
5584{
5585 superobject *su = (superobject *)self;
Guido van Rossum76ba09f2003-04-16 19:40:58 +00005586 int skip = su->obj_type == NULL;
Guido van Rossum705f0f52001-08-24 16:47:00 +00005587
Guido van Rossum76ba09f2003-04-16 19:40:58 +00005588 if (!skip) {
5589 /* We want __class__ to return the class of the super object
5590 (i.e. super, or a subclass), not the class of su->obj. */
5591 skip = (PyString_Check(name) &&
5592 PyString_GET_SIZE(name) == 9 &&
5593 strcmp(PyString_AS_STRING(name), "__class__") == 0);
5594 }
5595
5596 if (!skip) {
Tim Petersa91e9642001-11-14 23:32:33 +00005597 PyObject *mro, *res, *tmp, *dict;
Guido van Rossum155db9a2002-04-02 17:53:47 +00005598 PyTypeObject *starttype;
Guido van Rossum705f0f52001-08-24 16:47:00 +00005599 descrgetfunc f;
Martin v. Löwis18e16552006-02-15 17:27:45 +00005600 Py_ssize_t i, n;
Guido van Rossum705f0f52001-08-24 16:47:00 +00005601
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005602 starttype = su->obj_type;
Guido van Rossum155db9a2002-04-02 17:53:47 +00005603 mro = starttype->tp_mro;
5604
Guido van Rossum41eb14d2001-08-30 23:13:11 +00005605 if (mro == NULL)
5606 n = 0;
5607 else {
5608 assert(PyTuple_Check(mro));
5609 n = PyTuple_GET_SIZE(mro);
5610 }
Guido van Rossum705f0f52001-08-24 16:47:00 +00005611 for (i = 0; i < n; i++) {
Guido van Rossume705ef12001-08-29 15:47:06 +00005612 if ((PyObject *)(su->type) == PyTuple_GET_ITEM(mro, i))
Guido van Rossum705f0f52001-08-24 16:47:00 +00005613 break;
5614 }
Guido van Rossum705f0f52001-08-24 16:47:00 +00005615 i++;
5616 res = NULL;
5617 for (; i < n; i++) {
5618 tmp = PyTuple_GET_ITEM(mro, i);
Tim Petersa91e9642001-11-14 23:32:33 +00005619 if (PyType_Check(tmp))
5620 dict = ((PyTypeObject *)tmp)->tp_dict;
5621 else if (PyClass_Check(tmp))
5622 dict = ((PyClassObject *)tmp)->cl_dict;
5623 else
5624 continue;
5625 res = PyDict_GetItem(dict, name);
Guido van Rossum6cc5bb62003-04-16 20:01:36 +00005626 if (res != NULL) {
Guido van Rossum705f0f52001-08-24 16:47:00 +00005627 Py_INCREF(res);
5628 f = res->ob_type->tp_descr_get;
5629 if (f != NULL) {
Phillip J. Eby91a968a2004-03-25 02:19:34 +00005630 tmp = f(res,
5631 /* Only pass 'obj' param if
5632 this is instance-mode super
5633 (See SF ID #743627)
5634 */
Hye-Shik Changff365c92004-03-25 16:37:03 +00005635 (su->obj == (PyObject *)
5636 su->obj_type
Phillip J. Eby91a968a2004-03-25 02:19:34 +00005637 ? (PyObject *)NULL
5638 : su->obj),
Guido van Rossumd4641072002-04-03 02:13:37 +00005639 (PyObject *)starttype);
Guido van Rossum705f0f52001-08-24 16:47:00 +00005640 Py_DECREF(res);
5641 res = tmp;
5642 }
5643 return res;
5644 }
5645 }
5646 }
5647 return PyObject_GenericGetAttr(self, name);
5648}
5649
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005650static PyTypeObject *
Guido van Rossum5b443c62001-12-03 15:38:28 +00005651supercheck(PyTypeObject *type, PyObject *obj)
5652{
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005653 /* Check that a super() call makes sense. Return a type object.
5654
5655 obj can be a new-style class, or an instance of one:
5656
5657 - If it is a class, it must be a subclass of 'type'. This case is
5658 used for class methods; the return value is obj.
5659
5660 - If it is an instance, it must be an instance of 'type'. This is
5661 the normal case; the return value is obj.__class__.
5662
5663 But... when obj is an instance, we want to allow for the case where
5664 obj->ob_type is not a subclass of type, but obj.__class__ is!
5665 This will allow using super() with a proxy for obj.
5666 */
5667
Guido van Rossum8e80a722003-02-18 19:22:22 +00005668 /* Check for first bullet above (special case) */
5669 if (PyType_Check(obj) && PyType_IsSubtype((PyTypeObject *)obj, type)) {
5670 Py_INCREF(obj);
5671 return (PyTypeObject *)obj;
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005672 }
Guido van Rossum8e80a722003-02-18 19:22:22 +00005673
5674 /* Normal case */
5675 if (PyType_IsSubtype(obj->ob_type, type)) {
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005676 Py_INCREF(obj->ob_type);
5677 return obj->ob_type;
5678 }
5679 else {
5680 /* Try the slow way */
5681 static PyObject *class_str = NULL;
5682 PyObject *class_attr;
5683
5684 if (class_str == NULL) {
5685 class_str = PyString_FromString("__class__");
5686 if (class_str == NULL)
5687 return NULL;
5688 }
5689
5690 class_attr = PyObject_GetAttr(obj, class_str);
5691
5692 if (class_attr != NULL &&
5693 PyType_Check(class_attr) &&
5694 (PyTypeObject *)class_attr != obj->ob_type)
5695 {
5696 int ok = PyType_IsSubtype(
5697 (PyTypeObject *)class_attr, type);
5698 if (ok)
5699 return (PyTypeObject *)class_attr;
5700 }
5701
5702 if (class_attr == NULL)
5703 PyErr_Clear();
5704 else
5705 Py_DECREF(class_attr);
5706 }
5707
Tim Peters97e5ff52003-02-18 19:32:50 +00005708 PyErr_SetString(PyExc_TypeError,
Guido van Rossum5b443c62001-12-03 15:38:28 +00005709 "super(type, obj): "
5710 "obj must be an instance or subtype of type");
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005711 return NULL;
Guido van Rossum5b443c62001-12-03 15:38:28 +00005712}
5713
Guido van Rossum705f0f52001-08-24 16:47:00 +00005714static PyObject *
5715super_descr_get(PyObject *self, PyObject *obj, PyObject *type)
5716{
5717 superobject *su = (superobject *)self;
Anthony Baxtera6286212006-04-11 07:42:36 +00005718 superobject *newobj;
Guido van Rossum705f0f52001-08-24 16:47:00 +00005719
5720 if (obj == NULL || obj == Py_None || su->obj != NULL) {
5721 /* Not binding to an object, or already bound */
5722 Py_INCREF(self);
5723 return self;
5724 }
Guido van Rossum5b443c62001-12-03 15:38:28 +00005725 if (su->ob_type != &PySuper_Type)
Armin Rigo7726dc02005-05-15 15:32:08 +00005726 /* If su is an instance of a (strict) subclass of super,
Guido van Rossum5b443c62001-12-03 15:38:28 +00005727 call its type */
Georg Brandl684fd0c2006-05-25 19:15:31 +00005728 return PyObject_CallFunctionObjArgs((PyObject *)su->ob_type,
5729 su->type, obj, NULL);
Guido van Rossum5b443c62001-12-03 15:38:28 +00005730 else {
5731 /* Inline the common case */
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005732 PyTypeObject *obj_type = supercheck(su->type, obj);
5733 if (obj_type == NULL)
Guido van Rossum5b443c62001-12-03 15:38:28 +00005734 return NULL;
Anthony Baxtera6286212006-04-11 07:42:36 +00005735 newobj = (superobject *)PySuper_Type.tp_new(&PySuper_Type,
Guido van Rossum5b443c62001-12-03 15:38:28 +00005736 NULL, NULL);
Anthony Baxtera6286212006-04-11 07:42:36 +00005737 if (newobj == NULL)
Guido van Rossum5b443c62001-12-03 15:38:28 +00005738 return NULL;
5739 Py_INCREF(su->type);
5740 Py_INCREF(obj);
Anthony Baxtera6286212006-04-11 07:42:36 +00005741 newobj->type = su->type;
5742 newobj->obj = obj;
5743 newobj->obj_type = obj_type;
5744 return (PyObject *)newobj;
Guido van Rossum5b443c62001-12-03 15:38:28 +00005745 }
Guido van Rossum705f0f52001-08-24 16:47:00 +00005746}
5747
5748static int
5749super_init(PyObject *self, PyObject *args, PyObject *kwds)
5750{
5751 superobject *su = (superobject *)self;
Guido van Rossume705ef12001-08-29 15:47:06 +00005752 PyTypeObject *type;
5753 PyObject *obj = NULL;
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005754 PyTypeObject *obj_type = NULL;
Guido van Rossum705f0f52001-08-24 16:47:00 +00005755
Georg Brandl5d59c092006-09-30 08:43:30 +00005756 if (!_PyArg_NoKeywords("super", kwds))
5757 return -1;
Guido van Rossum705f0f52001-08-24 16:47:00 +00005758 if (!PyArg_ParseTuple(args, "O!|O:super", &PyType_Type, &type, &obj))
5759 return -1;
5760 if (obj == Py_None)
5761 obj = NULL;
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005762 if (obj != NULL) {
5763 obj_type = supercheck(type, obj);
5764 if (obj_type == NULL)
5765 return -1;
5766 Py_INCREF(obj);
5767 }
Guido van Rossum705f0f52001-08-24 16:47:00 +00005768 Py_INCREF(type);
Guido van Rossum705f0f52001-08-24 16:47:00 +00005769 su->type = type;
5770 su->obj = obj;
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005771 su->obj_type = obj_type;
Guido van Rossum705f0f52001-08-24 16:47:00 +00005772 return 0;
5773}
5774
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005775PyDoc_STRVAR(super_doc,
Guido van Rossum705f0f52001-08-24 16:47:00 +00005776"super(type) -> unbound super object\n"
5777"super(type, obj) -> bound super object; requires isinstance(obj, type)\n"
Guido van Rossume705ef12001-08-29 15:47:06 +00005778"super(type, type2) -> bound super object; requires issubclass(type2, type)\n"
Guido van Rossum705f0f52001-08-24 16:47:00 +00005779"Typical use to call a cooperative superclass method:\n"
5780"class C(B):\n"
5781" def meth(self, arg):\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005782" super(C, self).meth(arg)");
Guido van Rossum705f0f52001-08-24 16:47:00 +00005783
Guido van Rossum048eb752001-10-02 21:24:57 +00005784static int
5785super_traverse(PyObject *self, visitproc visit, void *arg)
5786{
5787 superobject *su = (superobject *)self;
Guido van Rossum048eb752001-10-02 21:24:57 +00005788
Thomas Woutersc6e55062006-04-15 21:47:09 +00005789 Py_VISIT(su->obj);
5790 Py_VISIT(su->type);
5791 Py_VISIT(su->obj_type);
Guido van Rossum048eb752001-10-02 21:24:57 +00005792
5793 return 0;
5794}
5795
Guido van Rossum705f0f52001-08-24 16:47:00 +00005796PyTypeObject PySuper_Type = {
5797 PyObject_HEAD_INIT(&PyType_Type)
5798 0, /* ob_size */
5799 "super", /* tp_name */
5800 sizeof(superobject), /* tp_basicsize */
5801 0, /* tp_itemsize */
5802 /* methods */
5803 super_dealloc, /* tp_dealloc */
5804 0, /* tp_print */
5805 0, /* tp_getattr */
5806 0, /* tp_setattr */
5807 0, /* tp_compare */
Guido van Rossum41eb14d2001-08-30 23:13:11 +00005808 super_repr, /* tp_repr */
Guido van Rossum705f0f52001-08-24 16:47:00 +00005809 0, /* tp_as_number */
5810 0, /* tp_as_sequence */
5811 0, /* tp_as_mapping */
5812 0, /* tp_hash */
5813 0, /* tp_call */
5814 0, /* tp_str */
5815 super_getattro, /* tp_getattro */
5816 0, /* tp_setattro */
5817 0, /* tp_as_buffer */
Guido van Rossum048eb752001-10-02 21:24:57 +00005818 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC |
5819 Py_TPFLAGS_BASETYPE, /* tp_flags */
Guido van Rossum705f0f52001-08-24 16:47:00 +00005820 super_doc, /* tp_doc */
Guido van Rossum048eb752001-10-02 21:24:57 +00005821 super_traverse, /* tp_traverse */
Guido van Rossum705f0f52001-08-24 16:47:00 +00005822 0, /* tp_clear */
5823 0, /* tp_richcompare */
5824 0, /* tp_weaklistoffset */
5825 0, /* tp_iter */
5826 0, /* tp_iternext */
5827 0, /* tp_methods */
Guido van Rossum41eb14d2001-08-30 23:13:11 +00005828 super_members, /* tp_members */
Guido van Rossum705f0f52001-08-24 16:47:00 +00005829 0, /* tp_getset */
5830 0, /* tp_base */
5831 0, /* tp_dict */
5832 super_descr_get, /* tp_descr_get */
5833 0, /* tp_descr_set */
5834 0, /* tp_dictoffset */
5835 super_init, /* tp_init */
5836 PyType_GenericAlloc, /* tp_alloc */
5837 PyType_GenericNew, /* tp_new */
Neil Schemenauer09a2ae52002-04-12 03:06:53 +00005838 PyObject_GC_Del, /* tp_free */
Guido van Rossum705f0f52001-08-24 16:47:00 +00005839};