blob: 032fa1822c310bbf486de58531f05480124faea8 [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{
24 char *s;
25
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
Michael W. Hudsonade8c8b2002-11-27 16:29:26 +000029 Py_INCREF(et->name);
30 return et->name;
31 }
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
74 Py_DECREF(et->name);
75 et->name = value;
76
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__");
90 Py_XINCREF(mod);
Guido van Rossumc3542212001-08-16 09:18:56 +000091 return mod;
92 }
Michael W. Hudsonade8c8b2002-11-27 16:29:26 +000093 else {
94 s = strrchr(type->tp_name, '.');
95 if (s != NULL)
96 return PyString_FromStringAndSize(
97 type->tp_name, (int)(s - type->tp_name));
98 return PyString_FromString("__builtin__");
99 }
Tim Peters6d6c1a32001-08-02 04:15:00 +0000100}
101
Guido van Rossum3926a632001-09-25 16:25:58 +0000102static int
103type_set_module(PyTypeObject *type, PyObject *value, void *context)
104{
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000105 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE)) {
Guido van Rossum3926a632001-09-25 16:25:58 +0000106 PyErr_Format(PyExc_TypeError,
107 "can't set %s.__module__", type->tp_name);
108 return -1;
109 }
110 if (!value) {
111 PyErr_Format(PyExc_TypeError,
112 "can't delete %s.__module__", type->tp_name);
113 return -1;
114 }
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000115
Guido van Rossum3926a632001-09-25 16:25:58 +0000116 return PyDict_SetItemString(type->tp_dict, "__module__", value);
117}
118
Tim Peters6d6c1a32001-08-02 04:15:00 +0000119static PyObject *
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000120type_get_bases(PyTypeObject *type, void *context)
121{
122 Py_INCREF(type->tp_bases);
123 return type->tp_bases;
124}
125
126static PyTypeObject *best_base(PyObject *);
127static int mro_internal(PyTypeObject *);
128static int compatible_for_assignment(PyTypeObject *, PyTypeObject *, char *);
129static int add_subclass(PyTypeObject*, PyTypeObject*);
130static void remove_subclass(PyTypeObject *, PyTypeObject *);
131static void update_all_slots(PyTypeObject *);
132
Guido van Rossum8d24ee92003-03-24 23:49:49 +0000133typedef int (*update_callback)(PyTypeObject *, void *);
134static int update_subclasses(PyTypeObject *type, PyObject *name,
135 update_callback callback, void *data);
136static int recurse_down_subclasses(PyTypeObject *type, PyObject *name,
137 update_callback callback, void *data);
138
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000139static int
Michael W. Hudson586da8f2002-11-27 15:20:19 +0000140mro_subclasses(PyTypeObject *type, PyObject* temp)
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000141{
142 PyTypeObject *subclass;
143 PyObject *ref, *subclasses, *old_mro;
Michael W. Hudson586da8f2002-11-27 15:20:19 +0000144 int i, n;
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000145
146 subclasses = type->tp_subclasses;
147 if (subclasses == NULL)
148 return 0;
149 assert(PyList_Check(subclasses));
150 n = PyList_GET_SIZE(subclasses);
151 for (i = 0; i < n; i++) {
152 ref = PyList_GET_ITEM(subclasses, i);
153 assert(PyWeakref_CheckRef(ref));
154 subclass = (PyTypeObject *)PyWeakref_GET_OBJECT(ref);
155 assert(subclass != NULL);
156 if ((PyObject *)subclass == Py_None)
157 continue;
158 assert(PyType_Check(subclass));
159 old_mro = subclass->tp_mro;
160 if (mro_internal(subclass) < 0) {
161 subclass->tp_mro = old_mro;
Michael W. Hudson586da8f2002-11-27 15:20:19 +0000162 return -1;
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000163 }
164 else {
Michael W. Hudson586da8f2002-11-27 15:20:19 +0000165 PyObject* tuple;
Raymond Hettinger8ae46892003-10-12 19:09:37 +0000166 tuple = PyTuple_Pack(2, subclass, old_mro);
Guido van Rossum19a02ba2003-04-15 22:09:45 +0000167 Py_DECREF(old_mro);
Michael W. Hudson586da8f2002-11-27 15:20:19 +0000168 if (!tuple)
169 return -1;
170 if (PyList_Append(temp, tuple) < 0)
171 return -1;
Guido van Rossum19a02ba2003-04-15 22:09:45 +0000172 Py_DECREF(tuple);
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000173 }
Michael W. Hudson586da8f2002-11-27 15:20:19 +0000174 if (mro_subclasses(subclass, temp) < 0)
175 return -1;
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000176 }
Michael W. Hudson586da8f2002-11-27 15:20:19 +0000177 return 0;
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000178}
179
180static int
181type_set_bases(PyTypeObject *type, PyObject *value, void *context)
182{
183 int i, r = 0;
Michael W. Hudson586da8f2002-11-27 15:20:19 +0000184 PyObject *ob, *temp;
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000185 PyTypeObject *new_base, *old_base;
186 PyObject *old_bases, *old_mro;
187
188 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE)) {
189 PyErr_Format(PyExc_TypeError,
190 "can't set %s.__bases__", type->tp_name);
191 return -1;
192 }
193 if (!value) {
194 PyErr_Format(PyExc_TypeError,
195 "can't delete %s.__bases__", type->tp_name);
196 return -1;
197 }
198 if (!PyTuple_Check(value)) {
199 PyErr_Format(PyExc_TypeError,
200 "can only assign tuple to %s.__bases__, not %s",
201 type->tp_name, value->ob_type->tp_name);
202 return -1;
203 }
Guido van Rossum3bbc0ee2002-12-13 17:49:38 +0000204 if (PyTuple_GET_SIZE(value) == 0) {
205 PyErr_Format(PyExc_TypeError,
206 "can only assign non-empty tuple to %s.__bases__, not ()",
207 type->tp_name);
208 return -1;
209 }
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000210 for (i = 0; i < PyTuple_GET_SIZE(value); i++) {
211 ob = PyTuple_GET_ITEM(value, i);
212 if (!PyClass_Check(ob) && !PyType_Check(ob)) {
213 PyErr_Format(
214 PyExc_TypeError,
215 "%s.__bases__ must be tuple of old- or new-style classes, not '%s'",
216 type->tp_name, ob->ob_type->tp_name);
217 return -1;
218 }
Michael W. Hudsoncaf17be2002-11-27 10:24:44 +0000219 if (PyType_Check(ob)) {
220 if (PyType_IsSubtype((PyTypeObject*)ob, type)) {
221 PyErr_SetString(PyExc_TypeError,
222 "a __bases__ item causes an inheritance cycle");
223 return -1;
224 }
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000225 }
226 }
227
228 new_base = best_base(value);
229
230 if (!new_base) {
231 return -1;
232 }
233
234 if (!compatible_for_assignment(type->tp_base, new_base, "__bases__"))
235 return -1;
236
237 Py_INCREF(new_base);
238 Py_INCREF(value);
239
240 old_bases = type->tp_bases;
241 old_base = type->tp_base;
242 old_mro = type->tp_mro;
243
244 type->tp_bases = value;
245 type->tp_base = new_base;
246
247 if (mro_internal(type) < 0) {
Michael W. Hudson7e7c00d2002-11-27 15:40:09 +0000248 goto bail;
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000249 }
250
Michael W. Hudson586da8f2002-11-27 15:20:19 +0000251 temp = PyList_New(0);
Michael W. Hudson7e7c00d2002-11-27 15:40:09 +0000252 if (!temp)
253 goto bail;
Michael W. Hudson586da8f2002-11-27 15:20:19 +0000254
255 r = mro_subclasses(type, temp);
256
257 if (r < 0) {
258 for (i = 0; i < PyList_Size(temp); i++) {
259 PyTypeObject* cls;
260 PyObject* mro;
Raymond Hettinger8ae46892003-10-12 19:09:37 +0000261 PyArg_UnpackTuple(PyList_GET_ITEM(temp, i),
262 "", 2, 2, &cls, &mro);
Michael W. Hudson586da8f2002-11-27 15:20:19 +0000263 Py_DECREF(cls->tp_mro);
264 cls->tp_mro = mro;
265 Py_INCREF(cls->tp_mro);
266 }
267 Py_DECREF(temp);
Michael W. Hudson7e7c00d2002-11-27 15:40:09 +0000268 goto bail;
Michael W. Hudson586da8f2002-11-27 15:20:19 +0000269 }
270
271 Py_DECREF(temp);
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000272
273 /* any base that was in __bases__ but now isn't, we
Raymond Hettingera8285862002-12-14 17:17:56 +0000274 need to remove |type| from its tp_subclasses.
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000275 conversely, any class now in __bases__ that wasn't
Raymond Hettingera8285862002-12-14 17:17:56 +0000276 needs to have |type| added to its subclasses. */
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000277
278 /* for now, sod that: just remove from all old_bases,
279 add to all new_bases */
280
281 for (i = PyTuple_GET_SIZE(old_bases) - 1; i >= 0; i--) {
282 ob = PyTuple_GET_ITEM(old_bases, i);
283 if (PyType_Check(ob)) {
284 remove_subclass(
285 (PyTypeObject*)ob, type);
286 }
287 }
288
289 for (i = PyTuple_GET_SIZE(value) - 1; i >= 0; i--) {
290 ob = PyTuple_GET_ITEM(value, i);
291 if (PyType_Check(ob)) {
292 if (add_subclass((PyTypeObject*)ob, type) < 0)
293 r = -1;
294 }
295 }
296
297 update_all_slots(type);
298
299 Py_DECREF(old_bases);
300 Py_DECREF(old_base);
301 Py_DECREF(old_mro);
302
303 return r;
Michael W. Hudson7e7c00d2002-11-27 15:40:09 +0000304
305 bail:
Michael W. Hudsone723e452003-08-07 14:58:10 +0000306 Py_DECREF(type->tp_bases);
307 Py_DECREF(type->tp_base);
308 if (type->tp_mro != old_mro) {
309 Py_DECREF(type->tp_mro);
310 }
311
Michael W. Hudson7e7c00d2002-11-27 15:40:09 +0000312 type->tp_bases = old_bases;
313 type->tp_base = old_base;
314 type->tp_mro = old_mro;
Tim Petersea7f75d2002-12-07 21:39:16 +0000315
Michael W. Hudson7e7c00d2002-11-27 15:40:09 +0000316 return -1;
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000317}
318
319static PyObject *
Tim Peters6d6c1a32001-08-02 04:15:00 +0000320type_dict(PyTypeObject *type, void *context)
321{
322 if (type->tp_dict == NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000323 Py_INCREF(Py_None);
324 return Py_None;
Guido van Rossum29ca26e1995-01-07 11:58:15 +0000325 }
Tim Peters6d6c1a32001-08-02 04:15:00 +0000326 return PyDictProxy_New(type->tp_dict);
Guido van Rossum29ca26e1995-01-07 11:58:15 +0000327}
328
Tim Peters24008312002-03-17 18:56:20 +0000329static PyObject *
330type_get_doc(PyTypeObject *type, void *context)
331{
332 PyObject *result;
Guido van Rossum6ca7d412002-04-18 00:22:00 +0000333 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE) && type->tp_doc != NULL)
Tim Peters24008312002-03-17 18:56:20 +0000334 return PyString_FromString(type->tp_doc);
Tim Peters24008312002-03-17 18:56:20 +0000335 result = PyDict_GetItemString(type->tp_dict, "__doc__");
Guido van Rossum6ca7d412002-04-18 00:22:00 +0000336 if (result == NULL) {
337 result = Py_None;
338 Py_INCREF(result);
339 }
340 else if (result->ob_type->tp_descr_get) {
Tim Peters2b858972002-04-18 04:12:28 +0000341 result = result->ob_type->tp_descr_get(result, NULL,
342 (PyObject *)type);
Guido van Rossum6ca7d412002-04-18 00:22:00 +0000343 }
344 else {
345 Py_INCREF(result);
346 }
Tim Peters24008312002-03-17 18:56:20 +0000347 return result;
348}
349
Neil Schemenauerf23473f2001-10-21 22:28:58 +0000350static PyGetSetDef type_getsets[] = {
Michael W. Hudson98bbc492002-11-26 14:47:27 +0000351 {"__name__", (getter)type_name, (setter)type_set_name, NULL},
352 {"__bases__", (getter)type_get_bases, (setter)type_set_bases, NULL},
Guido van Rossum3926a632001-09-25 16:25:58 +0000353 {"__module__", (getter)type_module, (setter)type_set_module, NULL},
Tim Peters6d6c1a32001-08-02 04:15:00 +0000354 {"__dict__", (getter)type_dict, NULL, NULL},
Tim Peters24008312002-03-17 18:56:20 +0000355 {"__doc__", (getter)type_get_doc, NULL, NULL},
Tim Peters6d6c1a32001-08-02 04:15:00 +0000356 {0}
357};
358
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000359static int
360type_compare(PyObject *v, PyObject *w)
361{
362 /* This is called with type objects only. So we
363 can just compare the addresses. */
364 Py_uintptr_t vv = (Py_uintptr_t)v;
365 Py_uintptr_t ww = (Py_uintptr_t)w;
366 return (vv < ww) ? -1 : (vv > ww) ? 1 : 0;
367}
368
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000369static PyObject *
Tim Peters6d6c1a32001-08-02 04:15:00 +0000370type_repr(PyTypeObject *type)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000371{
Barry Warsaw7ce36942001-08-24 18:34:26 +0000372 PyObject *mod, *name, *rtn;
Guido van Rossuma4cb7882001-09-25 03:56:29 +0000373 char *kind;
Guido van Rossumc3542212001-08-16 09:18:56 +0000374
375 mod = type_module(type, NULL);
376 if (mod == NULL)
377 PyErr_Clear();
378 else if (!PyString_Check(mod)) {
379 Py_DECREF(mod);
380 mod = NULL;
381 }
382 name = type_name(type, NULL);
383 if (name == NULL)
384 return NULL;
Barry Warsaw7ce36942001-08-24 18:34:26 +0000385
Guido van Rossuma4cb7882001-09-25 03:56:29 +0000386 if (type->tp_flags & Py_TPFLAGS_HEAPTYPE)
387 kind = "class";
388 else
389 kind = "type";
390
Barry Warsaw7ce36942001-08-24 18:34:26 +0000391 if (mod != NULL && strcmp(PyString_AS_STRING(mod), "__builtin__")) {
Guido van Rossuma4cb7882001-09-25 03:56:29 +0000392 rtn = PyString_FromFormat("<%s '%s.%s'>",
393 kind,
Barry Warsaw7ce36942001-08-24 18:34:26 +0000394 PyString_AS_STRING(mod),
395 PyString_AS_STRING(name));
396 }
Guido van Rossumc3542212001-08-16 09:18:56 +0000397 else
Guido van Rossuma4cb7882001-09-25 03:56:29 +0000398 rtn = PyString_FromFormat("<%s '%s'>", kind, type->tp_name);
Barry Warsaw7ce36942001-08-24 18:34:26 +0000399
Guido van Rossumc3542212001-08-16 09:18:56 +0000400 Py_XDECREF(mod);
401 Py_DECREF(name);
Barry Warsaw7ce36942001-08-24 18:34:26 +0000402 return rtn;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000403}
404
Tim Peters6d6c1a32001-08-02 04:15:00 +0000405static PyObject *
406type_call(PyTypeObject *type, PyObject *args, PyObject *kwds)
407{
408 PyObject *obj;
409
410 if (type->tp_new == NULL) {
411 PyErr_Format(PyExc_TypeError,
412 "cannot create '%.100s' instances",
413 type->tp_name);
414 return NULL;
415 }
416
Tim Peters3f996e72001-09-13 19:18:27 +0000417 obj = type->tp_new(type, args, kwds);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000418 if (obj != NULL) {
Guido van Rossumf76de622001-10-18 15:49:21 +0000419 /* Ugly exception: when the call was type(something),
420 don't call tp_init on the result. */
421 if (type == &PyType_Type &&
422 PyTuple_Check(args) && PyTuple_GET_SIZE(args) == 1 &&
423 (kwds == NULL ||
424 (PyDict_Check(kwds) && PyDict_Size(kwds) == 0)))
425 return obj;
Guido van Rossum8ace1ab2002-04-06 01:05:01 +0000426 /* If the returned object is not an instance of type,
427 it won't be initialized. */
428 if (!PyType_IsSubtype(obj->ob_type, type))
429 return obj;
Tim Peters6d6c1a32001-08-02 04:15:00 +0000430 type = obj->ob_type;
Jeremy Hylton719841e2002-07-16 19:39:38 +0000431 if (PyType_HasFeature(type, Py_TPFLAGS_HAVE_CLASS) &&
432 type->tp_init != NULL &&
Tim Peters6d6c1a32001-08-02 04:15:00 +0000433 type->tp_init(obj, args, kwds) < 0) {
434 Py_DECREF(obj);
435 obj = NULL;
436 }
437 }
438 return obj;
439}
440
441PyObject *
442PyType_GenericAlloc(PyTypeObject *type, int nitems)
443{
Tim Peters6d6c1a32001-08-02 04:15:00 +0000444 PyObject *obj;
Guido van Rossume5c691a2003-03-07 15:13:17 +0000445 const size_t size = _PyObject_VAR_SIZE(type, nitems+1);
446 /* note that we need to add one, for the sentinel */
Tim Peters406fe3b2001-10-06 19:04:01 +0000447
448 if (PyType_IS_GC(type))
Neil Schemenauer09a2ae52002-04-12 03:06:53 +0000449 obj = _PyObject_GC_Malloc(size);
Tim Peters406fe3b2001-10-06 19:04:01 +0000450 else
Neil Schemenauerc806c882001-08-29 23:54:54 +0000451 obj = PyObject_MALLOC(size);
Tim Peters406fe3b2001-10-06 19:04:01 +0000452
Neil Schemenauerc806c882001-08-29 23:54:54 +0000453 if (obj == NULL)
Tim Peters6d6c1a32001-08-02 04:15:00 +0000454 return PyErr_NoMemory();
Tim Peters406fe3b2001-10-06 19:04:01 +0000455
Neil Schemenauerc806c882001-08-29 23:54:54 +0000456 memset(obj, '\0', size);
Tim Peters406fe3b2001-10-06 19:04:01 +0000457
Tim Peters6d6c1a32001-08-02 04:15:00 +0000458 if (type->tp_flags & Py_TPFLAGS_HEAPTYPE)
459 Py_INCREF(type);
Tim Peters406fe3b2001-10-06 19:04:01 +0000460
Tim Peters6d6c1a32001-08-02 04:15:00 +0000461 if (type->tp_itemsize == 0)
462 PyObject_INIT(obj, type);
463 else
464 (void) PyObject_INIT_VAR((PyVarObject *)obj, type, nitems);
Tim Peters406fe3b2001-10-06 19:04:01 +0000465
Tim Peters6d6c1a32001-08-02 04:15:00 +0000466 if (PyType_IS_GC(type))
Neil Schemenauerc806c882001-08-29 23:54:54 +0000467 _PyObject_GC_TRACK(obj);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000468 return obj;
469}
470
471PyObject *
472PyType_GenericNew(PyTypeObject *type, PyObject *args, PyObject *kwds)
473{
474 return type->tp_alloc(type, 0);
475}
476
Guido van Rossum9475a232001-10-05 20:51:39 +0000477/* Helpers for subtyping */
478
479static int
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000480traverse_slots(PyTypeObject *type, PyObject *self, visitproc visit, void *arg)
481{
482 int i, n;
483 PyMemberDef *mp;
484
485 n = type->ob_size;
Guido van Rossume5c691a2003-03-07 15:13:17 +0000486 mp = PyHeapType_GET_MEMBERS((PyHeapTypeObject *)type);
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000487 for (i = 0; i < n; i++, mp++) {
488 if (mp->type == T_OBJECT_EX) {
489 char *addr = (char *)self + mp->offset;
490 PyObject *obj = *(PyObject **)addr;
491 if (obj != NULL) {
492 int err = visit(obj, arg);
493 if (err)
494 return err;
495 }
496 }
497 }
498 return 0;
499}
500
501static int
Guido van Rossum9475a232001-10-05 20:51:39 +0000502subtype_traverse(PyObject *self, visitproc visit, void *arg)
503{
504 PyTypeObject *type, *base;
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000505 traverseproc basetraverse;
Guido van Rossum9475a232001-10-05 20:51:39 +0000506
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000507 /* Find the nearest base with a different tp_traverse,
508 and traverse slots while we're at it */
Guido van Rossum9475a232001-10-05 20:51:39 +0000509 type = self->ob_type;
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000510 base = type;
511 while ((basetraverse = base->tp_traverse) == subtype_traverse) {
512 if (base->ob_size) {
513 int err = traverse_slots(base, self, visit, arg);
514 if (err)
515 return err;
516 }
Guido van Rossum9475a232001-10-05 20:51:39 +0000517 base = base->tp_base;
518 assert(base);
519 }
520
521 if (type->tp_dictoffset != base->tp_dictoffset) {
522 PyObject **dictptr = _PyObject_GetDictPtr(self);
523 if (dictptr && *dictptr) {
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000524 int err = visit(*dictptr, arg);
Guido van Rossum9475a232001-10-05 20:51:39 +0000525 if (err)
526 return err;
527 }
528 }
529
Guido van Rossuma3862092002-06-10 15:24:42 +0000530 if (type->tp_flags & Py_TPFLAGS_HEAPTYPE) {
531 /* For a heaptype, the instances count as references
532 to the type. Traverse the type so the collector
533 can find cycles involving this link. */
534 int err = visit((PyObject *)type, arg);
535 if (err)
536 return err;
537 }
538
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000539 if (basetraverse)
540 return basetraverse(self, visit, arg);
541 return 0;
542}
543
544static void
545clear_slots(PyTypeObject *type, PyObject *self)
546{
547 int i, n;
548 PyMemberDef *mp;
549
550 n = type->ob_size;
Guido van Rossume5c691a2003-03-07 15:13:17 +0000551 mp = PyHeapType_GET_MEMBERS((PyHeapTypeObject *)type);
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000552 for (i = 0; i < n; i++, mp++) {
553 if (mp->type == T_OBJECT_EX && !(mp->flags & READONLY)) {
554 char *addr = (char *)self + mp->offset;
555 PyObject *obj = *(PyObject **)addr;
556 if (obj != NULL) {
557 Py_DECREF(obj);
558 *(PyObject **)addr = NULL;
559 }
560 }
561 }
562}
563
564static int
565subtype_clear(PyObject *self)
566{
567 PyTypeObject *type, *base;
568 inquiry baseclear;
569
570 /* Find the nearest base with a different tp_clear
571 and clear slots while we're at it */
572 type = self->ob_type;
573 base = type;
574 while ((baseclear = base->tp_clear) == subtype_clear) {
575 if (base->ob_size)
576 clear_slots(base, self);
577 base = base->tp_base;
578 assert(base);
579 }
580
Guido van Rossuma3862092002-06-10 15:24:42 +0000581 /* There's no need to clear the instance dict (if any);
582 the collector will call its tp_clear handler. */
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000583
584 if (baseclear)
585 return baseclear(self);
Guido van Rossum9475a232001-10-05 20:51:39 +0000586 return 0;
587}
Tim Peters6d6c1a32001-08-02 04:15:00 +0000588
589static void
590subtype_dealloc(PyObject *self)
591{
Guido van Rossum14227b42001-12-06 02:35:58 +0000592 PyTypeObject *type, *base;
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000593 destructor basedealloc;
Tim Peters6d6c1a32001-08-02 04:15:00 +0000594
Guido van Rossum22b13872002-08-06 21:41:44 +0000595 /* Extract the type; we expect it to be a heap type */
596 type = self->ob_type;
597 assert(type->tp_flags & Py_TPFLAGS_HEAPTYPE);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000598
Guido van Rossum22b13872002-08-06 21:41:44 +0000599 /* Test whether the type has GC exactly once */
600
601 if (!PyType_IS_GC(type)) {
602 /* It's really rare to find a dynamic type that doesn't have
603 GC; it can only happen when deriving from 'object' and not
604 adding any slots or instance variables. This allows
605 certain simplifications: there's no need to call
606 clear_slots(), or DECREF the dict, or clear weakrefs. */
607
608 /* Maybe call finalizer; exit early if resurrected */
Guido van Rossumfebd61d2002-08-08 20:55:20 +0000609 if (type->tp_del) {
610 type->tp_del(self);
611 if (self->ob_refcnt > 0)
612 return;
613 }
Guido van Rossum22b13872002-08-06 21:41:44 +0000614
615 /* Find the nearest base with a different tp_dealloc */
616 base = type;
617 while ((basedealloc = base->tp_dealloc) == subtype_dealloc) {
618 assert(base->ob_size == 0);
619 base = base->tp_base;
620 assert(base);
621 }
622
623 /* Call the base tp_dealloc() */
624 assert(basedealloc);
625 basedealloc(self);
626
627 /* Can't reference self beyond this point */
628 Py_DECREF(type);
629
630 /* Done */
631 return;
632 }
633
634 /* We get here only if the type has GC */
635
636 /* UnTrack and re-Track around the trashcan macro, alas */
Andrew M. Kuchlingc9172d32003-02-06 15:22:49 +0000637 /* See explanation at end of function for full disclosure */
Guido van Rossum0906e072002-08-07 20:42:09 +0000638 PyObject_GC_UnTrack(self);
Guido van Rossumce8bcd82003-02-05 22:39:45 +0000639 ++_PyTrash_delete_nesting;
Guido van Rossum22b13872002-08-06 21:41:44 +0000640 Py_TRASHCAN_SAFE_BEGIN(self);
Guido van Rossumce8bcd82003-02-05 22:39:45 +0000641 --_PyTrash_delete_nesting;
Tim Petersf7f9e992003-11-13 21:59:32 +0000642 /* DO NOT restore GC tracking at this point. weakref callbacks
643 * (if any, and whether directly here or indirectly in something we
644 * call) may trigger GC, and if self is tracked at that point, it
645 * will look like trash to GC and GC will try to delete self again.
Tim Petersadd09b42003-11-12 20:43:28 +0000646 */
Guido van Rossum22b13872002-08-06 21:41:44 +0000647
Guido van Rossum59195fd2003-06-13 20:54:40 +0000648 /* Find the nearest base with a different tp_dealloc */
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000649 base = type;
650 while ((basedealloc = base->tp_dealloc) == subtype_dealloc) {
Tim Peters6d6c1a32001-08-02 04:15:00 +0000651 base = base->tp_base;
652 assert(base);
Guido van Rossum14227b42001-12-06 02:35:58 +0000653 }
654
Guido van Rossum1987c662003-05-29 14:29:23 +0000655 /* If we added a weaklist, we clear it. Do this *before* calling
Guido van Rossum59195fd2003-06-13 20:54:40 +0000656 the finalizer (__del__), clearing slots, or clearing the instance
657 dict. */
658
Guido van Rossum1987c662003-05-29 14:29:23 +0000659 if (type->tp_weaklistoffset && !base->tp_weaklistoffset)
660 PyObject_ClearWeakRefs(self);
661
662 /* Maybe call finalizer; exit early if resurrected */
663 if (type->tp_del) {
Tim Petersf7f9e992003-11-13 21:59:32 +0000664 _PyObject_GC_TRACK(self);
Guido van Rossum1987c662003-05-29 14:29:23 +0000665 type->tp_del(self);
666 if (self->ob_refcnt > 0)
Tim Petersf7f9e992003-11-13 21:59:32 +0000667 goto endlabel; /* resurrected */
668 else
669 _PyObject_GC_UNTRACK(self);
Guido van Rossum1987c662003-05-29 14:29:23 +0000670 }
671
Guido van Rossum59195fd2003-06-13 20:54:40 +0000672 /* Clear slots up to the nearest base with a different tp_dealloc */
673 base = type;
674 while ((basedealloc = base->tp_dealloc) == subtype_dealloc) {
675 if (base->ob_size)
676 clear_slots(base, self);
677 base = base->tp_base;
678 assert(base);
679 }
680
Tim Peters6d6c1a32001-08-02 04:15:00 +0000681 /* If we added a dict, DECREF it */
Guido van Rossum6fb3fde2001-08-30 20:00:07 +0000682 if (type->tp_dictoffset && !base->tp_dictoffset) {
683 PyObject **dictptr = _PyObject_GetDictPtr(self);
684 if (dictptr != NULL) {
685 PyObject *dict = *dictptr;
686 if (dict != NULL) {
687 Py_DECREF(dict);
688 *dictptr = NULL;
689 }
Tim Peters6d6c1a32001-08-02 04:15:00 +0000690 }
691 }
692
693 /* Finalize GC if the base doesn't do GC and we do */
Tim Petersf7f9e992003-11-13 21:59:32 +0000694 _PyObject_GC_TRACK(self);
Guido van Rossum22b13872002-08-06 21:41:44 +0000695 if (!PyType_IS_GC(base))
Guido van Rossum048eb752001-10-02 21:24:57 +0000696 _PyObject_GC_UNTRACK(self);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000697
698 /* Call the base tp_dealloc() */
Guido van Rossum9923ffe2002-06-04 19:52:53 +0000699 assert(basedealloc);
700 basedealloc(self);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000701
702 /* Can't reference self beyond this point */
Guido van Rossum22b13872002-08-06 21:41:44 +0000703 Py_DECREF(type);
704
Guido van Rossum0906e072002-08-07 20:42:09 +0000705 endlabel:
Guido van Rossumce8bcd82003-02-05 22:39:45 +0000706 ++_PyTrash_delete_nesting;
Guido van Rossum22b13872002-08-06 21:41:44 +0000707 Py_TRASHCAN_SAFE_END(self);
Guido van Rossumce8bcd82003-02-05 22:39:45 +0000708 --_PyTrash_delete_nesting;
709
710 /* Explanation of the weirdness around the trashcan macros:
711
712 Q. What do the trashcan macros do?
713
714 A. Read the comment titled "Trashcan mechanism" in object.h.
715 For one, this explains why there must be a call to GC-untrack
716 before the trashcan begin macro. Without understanding the
717 trashcan code, the answers to the following questions don't make
718 sense.
719
720 Q. Why do we GC-untrack before the trashcan and then immediately
721 GC-track again afterward?
722
723 A. In the case that the base class is GC-aware, the base class
724 probably GC-untracks the object. If it does that using the
725 UNTRACK macro, this will crash when the object is already
726 untracked. Because we don't know what the base class does, the
727 only safe thing is to make sure the object is tracked when we
728 call the base class dealloc. But... The trashcan begin macro
729 requires that the object is *untracked* before it is called. So
730 the dance becomes:
731
732 GC untrack
733 trashcan begin
734 GC track
735
Tim Petersf7f9e992003-11-13 21:59:32 +0000736 Q. Why did the last question say "immediately GC-track again"?
737 It's nowhere near immediately.
738
739 A. Because the code *used* to re-track immediately. Bad Idea.
740 self has a refcount of 0, and if gc ever gets its hands on it
741 (which can happen if any weakref callback gets invoked), it
742 looks like trash to gc too, and gc also tries to delete self
743 then. But we're already deleting self. Double dealloction is
744 a subtle disaster.
745
Guido van Rossumce8bcd82003-02-05 22:39:45 +0000746 Q. Why the bizarre (net-zero) manipulation of
747 _PyTrash_delete_nesting around the trashcan macros?
748
749 A. Some base classes (e.g. list) also use the trashcan mechanism.
750 The following scenario used to be possible:
751
752 - suppose the trashcan level is one below the trashcan limit
753
754 - subtype_dealloc() is called
755
756 - the trashcan limit is not yet reached, so the trashcan level
757 is incremented and the code between trashcan begin and end is
758 executed
759
760 - this destroys much of the object's contents, including its
761 slots and __dict__
762
763 - basedealloc() is called; this is really list_dealloc(), or
764 some other type which also uses the trashcan macros
765
766 - the trashcan limit is now reached, so the object is put on the
767 trashcan's to-be-deleted-later list
768
769 - basedealloc() returns
770
771 - subtype_dealloc() decrefs the object's type
772
773 - subtype_dealloc() returns
774
775 - later, the trashcan code starts deleting the objects from its
776 to-be-deleted-later list
777
778 - subtype_dealloc() is called *AGAIN* for the same object
779
780 - at the very least (if the destroyed slots and __dict__ don't
781 cause problems) the object's type gets decref'ed a second
782 time, which is *BAD*!!!
783
784 The remedy is to make sure that if the code between trashcan
785 begin and end in subtype_dealloc() is called, the code between
786 trashcan begin and end in basedealloc() will also be called.
787 This is done by decrementing the level after passing into the
788 trashcan block, and incrementing it just before leaving the
789 block.
790
791 But now it's possible that a chain of objects consisting solely
792 of objects whose deallocator is subtype_dealloc() will defeat
793 the trashcan mechanism completely: the decremented level means
794 that the effective level never reaches the limit. Therefore, we
795 *increment* the level *before* entering the trashcan block, and
796 matchingly decrement it after leaving. This means the trashcan
797 code will trigger a little early, but that's no big deal.
798
799 Q. Are there any live examples of code in need of all this
800 complexity?
801
802 A. Yes. See SF bug 668433 for code that crashed (when Python was
803 compiled in debug mode) before the trashcan level manipulations
804 were added. For more discussion, see SF patches 581742, 575073
805 and bug 574207.
806 */
Tim Peters6d6c1a32001-08-02 04:15:00 +0000807}
808
Jeremy Hylton938ace62002-07-17 16:30:39 +0000809static PyTypeObject *solid_base(PyTypeObject *type);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000810
Tim Peters6d6c1a32001-08-02 04:15:00 +0000811/* type test with subclassing support */
812
813int
814PyType_IsSubtype(PyTypeObject *a, PyTypeObject *b)
815{
816 PyObject *mro;
817
Guido van Rossum9478d072001-09-07 18:52:13 +0000818 if (!(a->tp_flags & Py_TPFLAGS_HAVE_CLASS))
819 return b == a || b == &PyBaseObject_Type;
820
Tim Peters6d6c1a32001-08-02 04:15:00 +0000821 mro = a->tp_mro;
822 if (mro != NULL) {
823 /* Deal with multiple inheritance without recursion
824 by walking the MRO tuple */
825 int i, n;
826 assert(PyTuple_Check(mro));
827 n = PyTuple_GET_SIZE(mro);
828 for (i = 0; i < n; i++) {
829 if (PyTuple_GET_ITEM(mro, i) == (PyObject *)b)
830 return 1;
831 }
832 return 0;
833 }
834 else {
835 /* a is not completely initilized yet; follow tp_base */
836 do {
837 if (a == b)
838 return 1;
839 a = a->tp_base;
840 } while (a != NULL);
841 return b == &PyBaseObject_Type;
842 }
843}
844
Guido van Rossumf21c6be2001-09-14 17:51:50 +0000845/* Internal routines to do a method lookup in the type
Guido van Rossum60718732001-08-28 17:47:51 +0000846 without looking in the instance dictionary
847 (so we can't use PyObject_GetAttr) but still binding
848 it to the instance. The arguments are the object,
849 the method name as a C string, and the address of a
Guido van Rossumf21c6be2001-09-14 17:51:50 +0000850 static variable used to cache the interned Python string.
851
852 Two variants:
853
854 - lookup_maybe() returns NULL without raising an exception
855 when the _PyType_Lookup() call fails;
856
857 - lookup_method() always raises an exception upon errors.
858*/
Guido van Rossum60718732001-08-28 17:47:51 +0000859
860static PyObject *
Guido van Rossumf21c6be2001-09-14 17:51:50 +0000861lookup_maybe(PyObject *self, char *attrstr, PyObject **attrobj)
Guido van Rossum60718732001-08-28 17:47:51 +0000862{
863 PyObject *res;
864
865 if (*attrobj == NULL) {
866 *attrobj = PyString_InternFromString(attrstr);
867 if (*attrobj == NULL)
868 return NULL;
869 }
870 res = _PyType_Lookup(self->ob_type, *attrobj);
Guido van Rossumf21c6be2001-09-14 17:51:50 +0000871 if (res != NULL) {
Guido van Rossum60718732001-08-28 17:47:51 +0000872 descrgetfunc f;
873 if ((f = res->ob_type->tp_descr_get) == NULL)
874 Py_INCREF(res);
875 else
876 res = f(res, self, (PyObject *)(self->ob_type));
877 }
878 return res;
879}
880
Guido van Rossumf21c6be2001-09-14 17:51:50 +0000881static PyObject *
882lookup_method(PyObject *self, char *attrstr, PyObject **attrobj)
883{
884 PyObject *res = lookup_maybe(self, attrstr, attrobj);
885 if (res == NULL && !PyErr_Occurred())
886 PyErr_SetObject(PyExc_AttributeError, *attrobj);
887 return res;
888}
889
Guido van Rossum2730b132001-08-28 18:22:14 +0000890/* A variation of PyObject_CallMethod that uses lookup_method()
891 instead of PyObject_GetAttrString(). This uses the same convention
892 as lookup_method to cache the interned name string object. */
893
Neil Schemenauerf23473f2001-10-21 22:28:58 +0000894static PyObject *
Guido van Rossum2730b132001-08-28 18:22:14 +0000895call_method(PyObject *o, char *name, PyObject **nameobj, char *format, ...)
896{
897 va_list va;
898 PyObject *args, *func = 0, *retval;
Guido van Rossum2730b132001-08-28 18:22:14 +0000899 va_start(va, format);
900
Guido van Rossumda21c012001-10-03 00:50:18 +0000901 func = lookup_maybe(o, name, nameobj);
Guido van Rossumf21c6be2001-09-14 17:51:50 +0000902 if (func == NULL) {
903 va_end(va);
904 if (!PyErr_Occurred())
Guido van Rossumda21c012001-10-03 00:50:18 +0000905 PyErr_SetObject(PyExc_AttributeError, *nameobj);
Guido van Rossumf21c6be2001-09-14 17:51:50 +0000906 return NULL;
907 }
Guido van Rossumf21c6be2001-09-14 17:51:50 +0000908
909 if (format && *format)
910 args = Py_VaBuildValue(format, va);
911 else
912 args = PyTuple_New(0);
913
914 va_end(va);
915
916 if (args == NULL)
917 return NULL;
918
919 assert(PyTuple_Check(args));
920 retval = PyObject_Call(func, args, NULL);
921
922 Py_DECREF(args);
923 Py_DECREF(func);
924
925 return retval;
926}
927
928/* Clone of call_method() that returns NotImplemented when the lookup fails. */
929
Neil Schemenauerf23473f2001-10-21 22:28:58 +0000930static PyObject *
Guido van Rossumf21c6be2001-09-14 17:51:50 +0000931call_maybe(PyObject *o, char *name, PyObject **nameobj, char *format, ...)
932{
933 va_list va;
934 PyObject *args, *func = 0, *retval;
Guido van Rossumf21c6be2001-09-14 17:51:50 +0000935 va_start(va, format);
936
Guido van Rossumda21c012001-10-03 00:50:18 +0000937 func = lookup_maybe(o, name, nameobj);
Guido van Rossum2730b132001-08-28 18:22:14 +0000938 if (func == NULL) {
939 va_end(va);
Guido van Rossumf21c6be2001-09-14 17:51:50 +0000940 if (!PyErr_Occurred()) {
941 Py_INCREF(Py_NotImplemented);
942 return Py_NotImplemented;
943 }
Guido van Rossum717ce002001-09-14 16:58:08 +0000944 return NULL;
Guido van Rossum2730b132001-08-28 18:22:14 +0000945 }
946
947 if (format && *format)
948 args = Py_VaBuildValue(format, va);
949 else
950 args = PyTuple_New(0);
951
952 va_end(va);
953
Guido van Rossum717ce002001-09-14 16:58:08 +0000954 if (args == NULL)
Guido van Rossum2730b132001-08-28 18:22:14 +0000955 return NULL;
956
Guido van Rossum717ce002001-09-14 16:58:08 +0000957 assert(PyTuple_Check(args));
958 retval = PyObject_Call(func, args, NULL);
Guido van Rossum2730b132001-08-28 18:22:14 +0000959
960 Py_DECREF(args);
961 Py_DECREF(func);
962
963 return retval;
964}
965
Tim Petersa91e9642001-11-14 23:32:33 +0000966static int
967fill_classic_mro(PyObject *mro, PyObject *cls)
968{
969 PyObject *bases, *base;
970 int i, n;
971
972 assert(PyList_Check(mro));
973 assert(PyClass_Check(cls));
974 i = PySequence_Contains(mro, cls);
975 if (i < 0)
976 return -1;
977 if (!i) {
978 if (PyList_Append(mro, cls) < 0)
979 return -1;
980 }
981 bases = ((PyClassObject *)cls)->cl_bases;
982 assert(bases && PyTuple_Check(bases));
983 n = PyTuple_GET_SIZE(bases);
984 for (i = 0; i < n; i++) {
985 base = PyTuple_GET_ITEM(bases, i);
986 if (fill_classic_mro(mro, base) < 0)
987 return -1;
988 }
989 return 0;
990}
991
992static PyObject *
993classic_mro(PyObject *cls)
994{
995 PyObject *mro;
996
997 assert(PyClass_Check(cls));
998 mro = PyList_New(0);
999 if (mro != NULL) {
1000 if (fill_classic_mro(mro, cls) == 0)
1001 return mro;
1002 Py_DECREF(mro);
1003 }
1004 return NULL;
1005}
1006
Tim Petersea7f75d2002-12-07 21:39:16 +00001007/*
Guido van Rossum1f121312002-11-14 19:49:16 +00001008 Method resolution order algorithm C3 described in
1009 "A Monotonic Superclass Linearization for Dylan",
1010 by Kim Barrett, Bob Cassel, Paul Haahr,
Tim Petersea7f75d2002-12-07 21:39:16 +00001011 David A. Moon, Keith Playford, and P. Tucker Withington.
Guido van Rossum1f121312002-11-14 19:49:16 +00001012 (OOPSLA 1996)
1013
Guido van Rossum98f33732002-11-25 21:36:54 +00001014 Some notes about the rules implied by C3:
1015
Tim Petersea7f75d2002-12-07 21:39:16 +00001016 No duplicate bases.
Guido van Rossum98f33732002-11-25 21:36:54 +00001017 It isn't legal to repeat a class in a list of base classes.
1018
1019 The next three properties are the 3 constraints in "C3".
1020
Tim Petersea7f75d2002-12-07 21:39:16 +00001021 Local precendece order.
Guido van Rossum98f33732002-11-25 21:36:54 +00001022 If A precedes B in C's MRO, then A will precede B in the MRO of all
1023 subclasses of C.
1024
1025 Monotonicity.
1026 The MRO of a class must be an extension without reordering of the
1027 MRO of each of its superclasses.
1028
1029 Extended Precedence Graph (EPG).
1030 Linearization is consistent if there is a path in the EPG from
1031 each class to all its successors in the linearization. See
1032 the paper for definition of EPG.
Guido van Rossum1f121312002-11-14 19:49:16 +00001033 */
1034
Tim Petersea7f75d2002-12-07 21:39:16 +00001035static int
Guido van Rossum1f121312002-11-14 19:49:16 +00001036tail_contains(PyObject *list, int whence, PyObject *o) {
1037 int j, size;
1038 size = PyList_GET_SIZE(list);
1039
1040 for (j = whence+1; j < size; j++) {
1041 if (PyList_GET_ITEM(list, j) == o)
1042 return 1;
1043 }
1044 return 0;
1045}
1046
Guido van Rossum98f33732002-11-25 21:36:54 +00001047static PyObject *
1048class_name(PyObject *cls)
1049{
1050 PyObject *name = PyObject_GetAttrString(cls, "__name__");
1051 if (name == NULL) {
1052 PyErr_Clear();
1053 Py_XDECREF(name);
1054 name = PyObject_Repr(cls);
1055 }
1056 if (name == NULL)
1057 return NULL;
1058 if (!PyString_Check(name)) {
1059 Py_DECREF(name);
1060 return NULL;
1061 }
1062 return name;
1063}
1064
1065static int
1066check_duplicates(PyObject *list)
1067{
1068 int i, j, n;
1069 /* Let's use a quadratic time algorithm,
1070 assuming that the bases lists is short.
1071 */
1072 n = PyList_GET_SIZE(list);
1073 for (i = 0; i < n; i++) {
1074 PyObject *o = PyList_GET_ITEM(list, i);
1075 for (j = i + 1; j < n; j++) {
1076 if (PyList_GET_ITEM(list, j) == o) {
1077 o = class_name(o);
1078 PyErr_Format(PyExc_TypeError,
1079 "duplicate base class %s",
1080 o ? PyString_AS_STRING(o) : "?");
1081 Py_XDECREF(o);
1082 return -1;
1083 }
1084 }
1085 }
1086 return 0;
1087}
1088
1089/* Raise a TypeError for an MRO order disagreement.
1090
1091 It's hard to produce a good error message. In the absence of better
1092 insight into error reporting, report the classes that were candidates
1093 to be put next into the MRO. There is some conflict between the
1094 order in which they should be put in the MRO, but it's hard to
1095 diagnose what constraint can't be satisfied.
1096*/
1097
1098static void
1099set_mro_error(PyObject *to_merge, int *remain)
1100{
1101 int i, n, off, to_merge_size;
1102 char buf[1000];
1103 PyObject *k, *v;
1104 PyObject *set = PyDict_New();
1105
1106 to_merge_size = PyList_GET_SIZE(to_merge);
1107 for (i = 0; i < to_merge_size; i++) {
1108 PyObject *L = PyList_GET_ITEM(to_merge, i);
1109 if (remain[i] < PyList_GET_SIZE(L)) {
1110 PyObject *c = PyList_GET_ITEM(L, remain[i]);
1111 if (PyDict_SetItem(set, c, Py_None) < 0)
1112 return;
1113 }
1114 }
1115 n = PyDict_Size(set);
1116
Raymond Hettingerf394df42003-04-06 19:13:41 +00001117 off = PyOS_snprintf(buf, sizeof(buf), "Cannot create a \
1118consistent method resolution\norder (MRO) for bases");
Guido van Rossum98f33732002-11-25 21:36:54 +00001119 i = 0;
1120 while (PyDict_Next(set, &i, &k, &v) && off < sizeof(buf)) {
1121 PyObject *name = class_name(k);
1122 off += PyOS_snprintf(buf + off, sizeof(buf) - off, " %s",
1123 name ? PyString_AS_STRING(name) : "?");
1124 Py_XDECREF(name);
1125 if (--n && off+1 < sizeof(buf)) {
1126 buf[off++] = ',';
1127 buf[off] = '\0';
1128 }
1129 }
1130 PyErr_SetString(PyExc_TypeError, buf);
1131 Py_DECREF(set);
1132}
1133
Tim Petersea7f75d2002-12-07 21:39:16 +00001134static int
Guido van Rossum1f121312002-11-14 19:49:16 +00001135pmerge(PyObject *acc, PyObject* to_merge) {
1136 int i, j, to_merge_size;
1137 int *remain;
1138 int ok, empty_cnt;
Tim Petersea7f75d2002-12-07 21:39:16 +00001139
Guido van Rossum1f121312002-11-14 19:49:16 +00001140 to_merge_size = PyList_GET_SIZE(to_merge);
1141
Guido van Rossum98f33732002-11-25 21:36:54 +00001142 /* remain stores an index into each sublist of to_merge.
1143 remain[i] is the index of the next base in to_merge[i]
1144 that is not included in acc.
1145 */
Guido van Rossum1f121312002-11-14 19:49:16 +00001146 remain = PyMem_MALLOC(SIZEOF_INT*to_merge_size);
1147 if (remain == NULL)
1148 return -1;
1149 for (i = 0; i < to_merge_size; i++)
1150 remain[i] = 0;
1151
1152 again:
1153 empty_cnt = 0;
1154 for (i = 0; i < to_merge_size; i++) {
1155 PyObject *candidate;
Tim Petersea7f75d2002-12-07 21:39:16 +00001156
Guido van Rossum1f121312002-11-14 19:49:16 +00001157 PyObject *cur_list = PyList_GET_ITEM(to_merge, i);
1158
1159 if (remain[i] >= PyList_GET_SIZE(cur_list)) {
1160 empty_cnt++;
1161 continue;
1162 }
1163
Guido van Rossum98f33732002-11-25 21:36:54 +00001164 /* Choose next candidate for MRO.
1165
1166 The input sequences alone can determine the choice.
1167 If not, choose the class which appears in the MRO
1168 of the earliest direct superclass of the new class.
1169 */
1170
Guido van Rossum1f121312002-11-14 19:49:16 +00001171 candidate = PyList_GET_ITEM(cur_list, remain[i]);
1172 for (j = 0; j < to_merge_size; j++) {
1173 PyObject *j_lst = PyList_GET_ITEM(to_merge, j);
Guido van Rossum98f33732002-11-25 21:36:54 +00001174 if (tail_contains(j_lst, remain[j], candidate)) {
Guido van Rossum1f121312002-11-14 19:49:16 +00001175 goto skip; /* continue outer loop */
Guido van Rossum98f33732002-11-25 21:36:54 +00001176 }
Guido van Rossum1f121312002-11-14 19:49:16 +00001177 }
1178 ok = PyList_Append(acc, candidate);
1179 if (ok < 0) {
1180 PyMem_Free(remain);
1181 return -1;
1182 }
1183 for (j = 0; j < to_merge_size; j++) {
1184 PyObject *j_lst = PyList_GET_ITEM(to_merge, j);
Guido van Rossum768158c2002-12-31 16:33:01 +00001185 if (remain[j] < PyList_GET_SIZE(j_lst) &&
1186 PyList_GET_ITEM(j_lst, remain[j]) == candidate) {
Guido van Rossum1f121312002-11-14 19:49:16 +00001187 remain[j]++;
1188 }
1189 }
1190 goto again;
Tim Peters9a6b8d82002-11-14 23:22:33 +00001191 skip: ;
Guido van Rossum1f121312002-11-14 19:49:16 +00001192 }
1193
Guido van Rossum98f33732002-11-25 21:36:54 +00001194 if (empty_cnt == to_merge_size) {
1195 PyMem_FREE(remain);
Guido van Rossum1f121312002-11-14 19:49:16 +00001196 return 0;
Guido van Rossum98f33732002-11-25 21:36:54 +00001197 }
1198 set_mro_error(to_merge, remain);
1199 PyMem_FREE(remain);
Guido van Rossum1f121312002-11-14 19:49:16 +00001200 return -1;
1201}
1202
Tim Peters6d6c1a32001-08-02 04:15:00 +00001203static PyObject *
1204mro_implementation(PyTypeObject *type)
1205{
1206 int i, n, ok;
1207 PyObject *bases, *result;
Guido van Rossum1f121312002-11-14 19:49:16 +00001208 PyObject *to_merge, *bases_aslist;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001209
Guido van Rossum63517572002-06-18 16:44:57 +00001210 if(type->tp_dict == NULL) {
1211 if(PyType_Ready(type) < 0)
1212 return NULL;
1213 }
1214
Guido van Rossum98f33732002-11-25 21:36:54 +00001215 /* Find a superclass linearization that honors the constraints
1216 of the explicit lists of bases and the constraints implied by
Tim Petersea7f75d2002-12-07 21:39:16 +00001217 each base class.
Guido van Rossum98f33732002-11-25 21:36:54 +00001218
1219 to_merge is a list of lists, where each list is a superclass
1220 linearization implied by a base class. The last element of
1221 to_merge is the declared list of bases.
1222 */
1223
Tim Peters6d6c1a32001-08-02 04:15:00 +00001224 bases = type->tp_bases;
1225 n = PyTuple_GET_SIZE(bases);
Guido van Rossum1f121312002-11-14 19:49:16 +00001226
1227 to_merge = PyList_New(n+1);
1228 if (to_merge == NULL)
Tim Peters6d6c1a32001-08-02 04:15:00 +00001229 return NULL;
Guido van Rossum1f121312002-11-14 19:49:16 +00001230
Tim Peters6d6c1a32001-08-02 04:15:00 +00001231 for (i = 0; i < n; i++) {
Tim Petersa91e9642001-11-14 23:32:33 +00001232 PyObject *base = PyTuple_GET_ITEM(bases, i);
1233 PyObject *parentMRO;
1234 if (PyType_Check(base))
1235 parentMRO = PySequence_List(
1236 ((PyTypeObject*)base)->tp_mro);
1237 else
1238 parentMRO = classic_mro(base);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001239 if (parentMRO == NULL) {
Guido van Rossum1f121312002-11-14 19:49:16 +00001240 Py_DECREF(to_merge);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001241 return NULL;
Guido van Rossum1f121312002-11-14 19:49:16 +00001242 }
1243
1244 PyList_SET_ITEM(to_merge, i, parentMRO);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001245 }
Guido van Rossum1f121312002-11-14 19:49:16 +00001246
1247 bases_aslist = PySequence_List(bases);
1248 if (bases_aslist == NULL) {
1249 Py_DECREF(to_merge);
1250 return NULL;
1251 }
Guido van Rossum98f33732002-11-25 21:36:54 +00001252 /* This is just a basic sanity check. */
1253 if (check_duplicates(bases_aslist) < 0) {
1254 Py_DECREF(to_merge);
1255 Py_DECREF(bases_aslist);
1256 return NULL;
1257 }
Guido van Rossum1f121312002-11-14 19:49:16 +00001258 PyList_SET_ITEM(to_merge, n, bases_aslist);
1259
1260 result = Py_BuildValue("[O]", (PyObject *)type);
1261 if (result == NULL) {
1262 Py_DECREF(to_merge);
1263 return NULL;
1264 }
1265
1266 ok = pmerge(result, to_merge);
1267 Py_DECREF(to_merge);
1268 if (ok < 0) {
1269 Py_DECREF(result);
1270 return NULL;
1271 }
1272
Tim Peters6d6c1a32001-08-02 04:15:00 +00001273 return result;
1274}
1275
1276static PyObject *
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00001277mro_external(PyObject *self)
Tim Peters6d6c1a32001-08-02 04:15:00 +00001278{
1279 PyTypeObject *type = (PyTypeObject *)self;
1280
Tim Peters6d6c1a32001-08-02 04:15:00 +00001281 return mro_implementation(type);
1282}
1283
1284static int
1285mro_internal(PyTypeObject *type)
1286{
1287 PyObject *mro, *result, *tuple;
1288
1289 if (type->ob_type == &PyType_Type) {
1290 result = mro_implementation(type);
1291 }
1292 else {
Guido van Rossum60718732001-08-28 17:47:51 +00001293 static PyObject *mro_str;
1294 mro = lookup_method((PyObject *)type, "mro", &mro_str);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001295 if (mro == NULL)
1296 return -1;
1297 result = PyObject_CallObject(mro, NULL);
1298 Py_DECREF(mro);
1299 }
1300 if (result == NULL)
1301 return -1;
1302 tuple = PySequence_Tuple(result);
1303 Py_DECREF(result);
1304 type->tp_mro = tuple;
1305 return 0;
1306}
1307
1308
1309/* Calculate the best base amongst multiple base classes.
1310 This is the first one that's on the path to the "solid base". */
1311
1312static PyTypeObject *
1313best_base(PyObject *bases)
1314{
1315 int i, n;
1316 PyTypeObject *base, *winner, *candidate, *base_i;
Tim Petersa91e9642001-11-14 23:32:33 +00001317 PyObject *base_proto;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001318
1319 assert(PyTuple_Check(bases));
1320 n = PyTuple_GET_SIZE(bases);
1321 assert(n > 0);
Tim Petersa91e9642001-11-14 23:32:33 +00001322 base = NULL;
1323 winner = NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001324 for (i = 0; i < n; i++) {
Tim Petersa91e9642001-11-14 23:32:33 +00001325 base_proto = PyTuple_GET_ITEM(bases, i);
1326 if (PyClass_Check(base_proto))
1327 continue;
1328 if (!PyType_Check(base_proto)) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001329 PyErr_SetString(
1330 PyExc_TypeError,
1331 "bases must be types");
1332 return NULL;
1333 }
Tim Petersa91e9642001-11-14 23:32:33 +00001334 base_i = (PyTypeObject *)base_proto;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001335 if (base_i->tp_dict == NULL) {
Guido van Rossum528b7eb2001-08-07 17:24:28 +00001336 if (PyType_Ready(base_i) < 0)
Tim Peters6d6c1a32001-08-02 04:15:00 +00001337 return NULL;
1338 }
1339 candidate = solid_base(base_i);
Tim Petersa91e9642001-11-14 23:32:33 +00001340 if (winner == NULL) {
1341 winner = candidate;
1342 base = base_i;
1343 }
1344 else if (PyType_IsSubtype(winner, candidate))
Tim Peters6d6c1a32001-08-02 04:15:00 +00001345 ;
1346 else if (PyType_IsSubtype(candidate, winner)) {
1347 winner = candidate;
1348 base = base_i;
1349 }
1350 else {
1351 PyErr_SetString(
1352 PyExc_TypeError,
1353 "multiple bases have "
1354 "instance lay-out conflict");
1355 return NULL;
1356 }
1357 }
Guido van Rossume54616c2001-12-14 04:19:56 +00001358 if (base == NULL)
1359 PyErr_SetString(PyExc_TypeError,
1360 "a new-style class can't have only classic bases");
Tim Peters6d6c1a32001-08-02 04:15:00 +00001361 return base;
1362}
1363
1364static int
1365extra_ivars(PyTypeObject *type, PyTypeObject *base)
1366{
Neil Schemenauerc806c882001-08-29 23:54:54 +00001367 size_t t_size = type->tp_basicsize;
1368 size_t b_size = base->tp_basicsize;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001369
Guido van Rossum9676b222001-08-17 20:32:36 +00001370 assert(t_size >= b_size); /* Else type smaller than base! */
Tim Peters6d6c1a32001-08-02 04:15:00 +00001371 if (type->tp_itemsize || base->tp_itemsize) {
1372 /* If itemsize is involved, stricter rules */
1373 return t_size != b_size ||
1374 type->tp_itemsize != base->tp_itemsize;
1375 }
Guido van Rossum9676b222001-08-17 20:32:36 +00001376 if (type->tp_weaklistoffset && base->tp_weaklistoffset == 0 &&
1377 type->tp_weaklistoffset + sizeof(PyObject *) == t_size)
1378 t_size -= sizeof(PyObject *);
1379 if (type->tp_dictoffset && base->tp_dictoffset == 0 &&
1380 type->tp_dictoffset + sizeof(PyObject *) == t_size)
1381 t_size -= sizeof(PyObject *);
1382
1383 return t_size != b_size;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001384}
1385
1386static PyTypeObject *
1387solid_base(PyTypeObject *type)
1388{
1389 PyTypeObject *base;
1390
1391 if (type->tp_base)
1392 base = solid_base(type->tp_base);
1393 else
1394 base = &PyBaseObject_Type;
1395 if (extra_ivars(type, base))
1396 return type;
1397 else
1398 return base;
1399}
1400
Jeremy Hylton938ace62002-07-17 16:30:39 +00001401static void object_dealloc(PyObject *);
1402static int object_init(PyObject *, PyObject *, PyObject *);
1403static int update_slot(PyTypeObject *, PyObject *);
1404static void fixup_slot_dispatchers(PyTypeObject *);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001405
1406static PyObject *
Guido van Rossum6fb3fde2001-08-30 20:00:07 +00001407subtype_dict(PyObject *obj, void *context)
1408{
1409 PyObject **dictptr = _PyObject_GetDictPtr(obj);
1410 PyObject *dict;
1411
1412 if (dictptr == NULL) {
1413 PyErr_SetString(PyExc_AttributeError,
1414 "This object has no __dict__");
1415 return NULL;
1416 }
1417 dict = *dictptr;
Guido van Rossum3926a632001-09-25 16:25:58 +00001418 if (dict == NULL)
1419 *dictptr = dict = PyDict_New();
1420 Py_XINCREF(dict);
1421 return dict;
Guido van Rossum6fb3fde2001-08-30 20:00:07 +00001422}
1423
Guido van Rossum6661be32001-10-26 04:26:12 +00001424static int
1425subtype_setdict(PyObject *obj, PyObject *value, void *context)
1426{
1427 PyObject **dictptr = _PyObject_GetDictPtr(obj);
1428 PyObject *dict;
1429
1430 if (dictptr == NULL) {
1431 PyErr_SetString(PyExc_AttributeError,
1432 "This object has no __dict__");
1433 return -1;
1434 }
Guido van Rossumd331cb52001-12-05 19:46:42 +00001435 if (value != NULL && !PyDict_Check(value)) {
Guido van Rossum6661be32001-10-26 04:26:12 +00001436 PyErr_SetString(PyExc_TypeError,
1437 "__dict__ must be set to a dictionary");
1438 return -1;
1439 }
1440 dict = *dictptr;
Guido van Rossumd331cb52001-12-05 19:46:42 +00001441 Py_XINCREF(value);
Guido van Rossum6661be32001-10-26 04:26:12 +00001442 *dictptr = value;
1443 Py_XDECREF(dict);
1444 return 0;
1445}
1446
Guido van Rossumad47da02002-08-12 19:05:44 +00001447static PyObject *
1448subtype_getweakref(PyObject *obj, void *context)
1449{
1450 PyObject **weaklistptr;
1451 PyObject *result;
1452
1453 if (obj->ob_type->tp_weaklistoffset == 0) {
1454 PyErr_SetString(PyExc_AttributeError,
1455 "This object has no __weaklist__");
1456 return NULL;
1457 }
1458 assert(obj->ob_type->tp_weaklistoffset > 0);
1459 assert(obj->ob_type->tp_weaklistoffset + sizeof(PyObject *) <=
Guido van Rossum3747a0f2002-08-12 19:25:08 +00001460 (size_t)(obj->ob_type->tp_basicsize));
Guido van Rossumad47da02002-08-12 19:05:44 +00001461 weaklistptr = (PyObject **)
Guido van Rossum3747a0f2002-08-12 19:25:08 +00001462 ((char *)obj + obj->ob_type->tp_weaklistoffset);
Guido van Rossumad47da02002-08-12 19:05:44 +00001463 if (*weaklistptr == NULL)
1464 result = Py_None;
1465 else
1466 result = *weaklistptr;
1467 Py_INCREF(result);
1468 return result;
1469}
1470
Guido van Rossum373c7412003-01-07 13:41:37 +00001471/* Three variants on the subtype_getsets list. */
1472
1473static PyGetSetDef subtype_getsets_full[] = {
Guido van Rossumad47da02002-08-12 19:05:44 +00001474 {"__dict__", subtype_dict, subtype_setdict,
Neal Norwitz858e34f2002-08-13 17:18:45 +00001475 PyDoc_STR("dictionary for instance variables (if defined)")},
Guido van Rossumad47da02002-08-12 19:05:44 +00001476 {"__weakref__", subtype_getweakref, NULL,
Neal Norwitz858e34f2002-08-13 17:18:45 +00001477 PyDoc_STR("list of weak references to the object (if defined)")},
Guido van Rossumad47da02002-08-12 19:05:44 +00001478 {0}
Guido van Rossum6fb3fde2001-08-30 20:00:07 +00001479};
1480
Guido van Rossum373c7412003-01-07 13:41:37 +00001481static PyGetSetDef subtype_getsets_dict_only[] = {
1482 {"__dict__", subtype_dict, subtype_setdict,
1483 PyDoc_STR("dictionary for instance variables (if defined)")},
1484 {0}
1485};
1486
1487static PyGetSetDef subtype_getsets_weakref_only[] = {
1488 {"__weakref__", subtype_getweakref, NULL,
1489 PyDoc_STR("list of weak references to the object (if defined)")},
1490 {0}
1491};
1492
Guido van Rossum9923ffe2002-06-04 19:52:53 +00001493static int
1494valid_identifier(PyObject *s)
1495{
Guido van Rossum03013a02002-07-16 14:30:28 +00001496 unsigned char *p;
Guido van Rossum9923ffe2002-06-04 19:52:53 +00001497 int i, n;
1498
1499 if (!PyString_Check(s)) {
1500 PyErr_SetString(PyExc_TypeError,
1501 "__slots__ must be strings");
1502 return 0;
1503 }
Guido van Rossum03013a02002-07-16 14:30:28 +00001504 p = (unsigned char *) PyString_AS_STRING(s);
Guido van Rossum9923ffe2002-06-04 19:52:53 +00001505 n = PyString_GET_SIZE(s);
1506 /* We must reject an empty name. As a hack, we bump the
1507 length to 1 so that the loop will balk on the trailing \0. */
1508 if (n == 0)
1509 n = 1;
1510 for (i = 0; i < n; i++, p++) {
1511 if (!(i == 0 ? isalpha(*p) : isalnum(*p)) && *p != '_') {
1512 PyErr_SetString(PyExc_TypeError,
1513 "__slots__ must be identifiers");
1514 return 0;
1515 }
1516 }
1517 return 1;
1518}
1519
Martin v. Löwisd919a592002-10-14 21:07:28 +00001520#ifdef Py_USING_UNICODE
1521/* Replace Unicode objects in slots. */
1522
1523static PyObject *
1524_unicode_to_string(PyObject *slots, int nslots)
1525{
1526 PyObject *tmp = slots;
1527 PyObject *o, *o1;
1528 int i;
1529 intintargfunc copy = slots->ob_type->tp_as_sequence->sq_slice;
1530 for (i = 0; i < nslots; i++) {
1531 if (PyUnicode_Check(o = PyTuple_GET_ITEM(tmp, i))) {
1532 if (tmp == slots) {
1533 tmp = copy(slots, 0, PyTuple_GET_SIZE(slots));
1534 if (tmp == NULL)
1535 return NULL;
1536 }
1537 o1 = _PyUnicode_AsDefaultEncodedString
1538 (o, NULL);
1539 if (o1 == NULL) {
1540 Py_DECREF(tmp);
1541 return 0;
1542 }
1543 Py_INCREF(o1);
1544 Py_DECREF(o);
1545 PyTuple_SET_ITEM(tmp, i, o1);
1546 }
1547 }
1548 return tmp;
1549}
1550#endif
1551
Guido van Rossum6fb3fde2001-08-30 20:00:07 +00001552static PyObject *
Tim Peters6d6c1a32001-08-02 04:15:00 +00001553type_new(PyTypeObject *metatype, PyObject *args, PyObject *kwds)
1554{
1555 PyObject *name, *bases, *dict;
1556 static char *kwlist[] = {"name", "bases", "dict", 0};
Raymond Hettinger0ae0c072002-06-20 22:23:15 +00001557 PyObject *slots, *tmp, *newslots;
Guido van Rossum8d32c8b2001-08-17 11:18:38 +00001558 PyTypeObject *type, *base, *tmptype, *winner;
Guido van Rossume5c691a2003-03-07 15:13:17 +00001559 PyHeapTypeObject *et;
Guido van Rossum6f799372001-09-20 20:46:19 +00001560 PyMemberDef *mp;
Guido van Rossum2f3ca6e2001-10-15 21:05:10 +00001561 int i, nbases, nslots, slotoffset, add_dict, add_weak;
Guido van Rossumad47da02002-08-12 19:05:44 +00001562 int j, may_add_dict, may_add_weak;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001563
Tim Peters3abca122001-10-27 19:37:48 +00001564 assert(args != NULL && PyTuple_Check(args));
1565 assert(kwds == NULL || PyDict_Check(kwds));
1566
Guido van Rossum8d32c8b2001-08-17 11:18:38 +00001567 /* Special case: type(x) should return x->ob_type */
Tim Peters3abca122001-10-27 19:37:48 +00001568 {
1569 const int nargs = PyTuple_GET_SIZE(args);
1570 const int nkwds = kwds == NULL ? 0 : PyDict_Size(kwds);
1571
1572 if (PyType_CheckExact(metatype) && nargs == 1 && nkwds == 0) {
1573 PyObject *x = PyTuple_GET_ITEM(args, 0);
1574 Py_INCREF(x->ob_type);
1575 return (PyObject *) x->ob_type;
1576 }
1577
1578 /* SF bug 475327 -- if that didn't trigger, we need 3
1579 arguments. but PyArg_ParseTupleAndKeywords below may give
1580 a msg saying type() needs exactly 3. */
1581 if (nargs + nkwds != 3) {
1582 PyErr_SetString(PyExc_TypeError,
1583 "type() takes 1 or 3 arguments");
1584 return NULL;
1585 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001586 }
1587
Guido van Rossum8d32c8b2001-08-17 11:18:38 +00001588 /* Check arguments: (name, bases, dict) */
Tim Peters6d6c1a32001-08-02 04:15:00 +00001589 if (!PyArg_ParseTupleAndKeywords(args, kwds, "SO!O!:type", kwlist,
1590 &name,
1591 &PyTuple_Type, &bases,
1592 &PyDict_Type, &dict))
1593 return NULL;
1594
1595 /* Determine the proper metatype to deal with this,
1596 and check for metatype conflicts while we're at it.
1597 Note that if some other metatype wins to contract,
1598 it's possible that its instances are not types. */
1599 nbases = PyTuple_GET_SIZE(bases);
Guido van Rossum8d32c8b2001-08-17 11:18:38 +00001600 winner = metatype;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001601 for (i = 0; i < nbases; i++) {
1602 tmp = PyTuple_GET_ITEM(bases, i);
1603 tmptype = tmp->ob_type;
Tim Petersa91e9642001-11-14 23:32:33 +00001604 if (tmptype == &PyClass_Type)
1605 continue; /* Special case classic classes */
Guido van Rossum8d32c8b2001-08-17 11:18:38 +00001606 if (PyType_IsSubtype(winner, tmptype))
Tim Peters6d6c1a32001-08-02 04:15:00 +00001607 continue;
Guido van Rossum8d32c8b2001-08-17 11:18:38 +00001608 if (PyType_IsSubtype(tmptype, winner)) {
1609 winner = tmptype;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001610 continue;
1611 }
1612 PyErr_SetString(PyExc_TypeError,
Guido van Rossum636688d2003-04-23 12:07:22 +00001613 "metaclass conflict: "
1614 "the metaclass of a derived class "
1615 "must be a (non-strict) subclass "
1616 "of the metaclasses of all its bases");
Tim Peters6d6c1a32001-08-02 04:15:00 +00001617 return NULL;
1618 }
Guido van Rossum8d32c8b2001-08-17 11:18:38 +00001619 if (winner != metatype) {
1620 if (winner->tp_new != type_new) /* Pass it to the winner */
1621 return winner->tp_new(winner, args, kwds);
1622 metatype = winner;
1623 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001624
1625 /* Adjust for empty tuple bases */
1626 if (nbases == 0) {
Raymond Hettinger8ae46892003-10-12 19:09:37 +00001627 bases = PyTuple_Pack(1, &PyBaseObject_Type);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001628 if (bases == NULL)
1629 return NULL;
1630 nbases = 1;
1631 }
1632 else
1633 Py_INCREF(bases);
1634
1635 /* XXX From here until type is allocated, "return NULL" leaks bases! */
1636
1637 /* Calculate best base, and check that all bases are type objects */
1638 base = best_base(bases);
Michael W. Hudsona6a277d2003-08-08 13:57:22 +00001639 if (base == NULL) {
1640 Py_DECREF(bases);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001641 return NULL;
Michael W. Hudsona6a277d2003-08-08 13:57:22 +00001642 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001643 if (!PyType_HasFeature(base, Py_TPFLAGS_BASETYPE)) {
1644 PyErr_Format(PyExc_TypeError,
1645 "type '%.100s' is not an acceptable base type",
1646 base->tp_name);
Michael W. Hudsona6a277d2003-08-08 13:57:22 +00001647 Py_DECREF(bases);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001648 return NULL;
1649 }
1650
Tim Peters6d6c1a32001-08-02 04:15:00 +00001651 /* Check for a __slots__ sequence variable in dict, and count it */
1652 slots = PyDict_GetItemString(dict, "__slots__");
1653 nslots = 0;
Guido van Rossum9676b222001-08-17 20:32:36 +00001654 add_dict = 0;
1655 add_weak = 0;
Guido van Rossumad47da02002-08-12 19:05:44 +00001656 may_add_dict = base->tp_dictoffset == 0;
1657 may_add_weak = base->tp_weaklistoffset == 0 && base->tp_itemsize == 0;
1658 if (slots == NULL) {
1659 if (may_add_dict) {
1660 add_dict++;
1661 }
1662 if (may_add_weak) {
1663 add_weak++;
1664 }
1665 }
1666 else {
1667 /* Have slots */
1668
Tim Peters6d6c1a32001-08-02 04:15:00 +00001669 /* Make it into a tuple */
1670 if (PyString_Check(slots))
Raymond Hettinger8ae46892003-10-12 19:09:37 +00001671 slots = PyTuple_Pack(1, slots);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001672 else
1673 slots = PySequence_Tuple(slots);
Michael W. Hudsona6a277d2003-08-08 13:57:22 +00001674 if (slots == NULL) {
1675 Py_DECREF(bases);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001676 return NULL;
Michael W. Hudsona6a277d2003-08-08 13:57:22 +00001677 }
Guido van Rossumad47da02002-08-12 19:05:44 +00001678 assert(PyTuple_Check(slots));
1679
1680 /* Are slots allowed? */
Tim Peters6d6c1a32001-08-02 04:15:00 +00001681 nslots = PyTuple_GET_SIZE(slots);
Jeremy Hylton1c7a0ea2003-07-16 16:08:23 +00001682 if (nslots > 0 && base->tp_itemsize != 0) {
Guido van Rossumc4141872001-08-30 04:43:35 +00001683 PyErr_Format(PyExc_TypeError,
1684 "nonempty __slots__ "
1685 "not supported for subtype of '%s'",
1686 base->tp_name);
Guido van Rossumad47da02002-08-12 19:05:44 +00001687 bad_slots:
Michael W. Hudsona6a277d2003-08-08 13:57:22 +00001688 Py_DECREF(bases);
Guido van Rossumad47da02002-08-12 19:05:44 +00001689 Py_DECREF(slots);
Guido van Rossumc4141872001-08-30 04:43:35 +00001690 return NULL;
1691 }
Guido van Rossumad47da02002-08-12 19:05:44 +00001692
Martin v. Löwisd919a592002-10-14 21:07:28 +00001693#ifdef Py_USING_UNICODE
1694 tmp = _unicode_to_string(slots, nslots);
Martin v. Löwis13b1a5c2002-10-14 21:11:34 +00001695 if (tmp != slots) {
1696 Py_DECREF(slots);
1697 slots = tmp;
1698 }
Martin v. Löwisd919a592002-10-14 21:07:28 +00001699 if (!tmp)
1700 return NULL;
1701#endif
Guido van Rossumad47da02002-08-12 19:05:44 +00001702 /* Check for valid slot names and two special cases */
Tim Peters6d6c1a32001-08-02 04:15:00 +00001703 for (i = 0; i < nslots; i++) {
Guido van Rossumad47da02002-08-12 19:05:44 +00001704 PyObject *tmp = PyTuple_GET_ITEM(slots, i);
1705 char *s;
1706 if (!valid_identifier(tmp))
1707 goto bad_slots;
1708 assert(PyString_Check(tmp));
1709 s = PyString_AS_STRING(tmp);
1710 if (strcmp(s, "__dict__") == 0) {
1711 if (!may_add_dict || add_dict) {
1712 PyErr_SetString(PyExc_TypeError,
1713 "__dict__ slot disallowed: "
1714 "we already got one");
1715 goto bad_slots;
1716 }
1717 add_dict++;
1718 }
1719 if (strcmp(s, "__weakref__") == 0) {
1720 if (!may_add_weak || add_weak) {
1721 PyErr_SetString(PyExc_TypeError,
1722 "__weakref__ slot disallowed: "
1723 "either we already got one, "
1724 "or __itemsize__ != 0");
1725 goto bad_slots;
1726 }
1727 add_weak++;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001728 }
1729 }
Raymond Hettinger0ae0c072002-06-20 22:23:15 +00001730
Guido van Rossumad47da02002-08-12 19:05:44 +00001731 /* Copy slots into yet another tuple, demangling names */
1732 newslots = PyTuple_New(nslots - add_dict - add_weak);
Raymond Hettinger0ae0c072002-06-20 22:23:15 +00001733 if (newslots == NULL)
Guido van Rossumad47da02002-08-12 19:05:44 +00001734 goto bad_slots;
1735 for (i = j = 0; i < nslots; i++) {
1736 char *s;
Guido van Rossum8e829202002-08-16 03:47:49 +00001737 char buffer[256];
Raymond Hettinger0ae0c072002-06-20 22:23:15 +00001738 tmp = PyTuple_GET_ITEM(slots, i);
Guido van Rossumad47da02002-08-12 19:05:44 +00001739 s = PyString_AS_STRING(tmp);
1740 if ((add_dict && strcmp(s, "__dict__") == 0) ||
1741 (add_weak && strcmp(s, "__weakref__") == 0))
1742 continue;
Raymond Hettinger0ae0c072002-06-20 22:23:15 +00001743 if (_Py_Mangle(PyString_AS_STRING(name),
Guido van Rossumad47da02002-08-12 19:05:44 +00001744 PyString_AS_STRING(tmp),
1745 buffer, sizeof(buffer)))
Raymond Hettinger0ae0c072002-06-20 22:23:15 +00001746 {
1747 tmp = PyString_FromString(buffer);
1748 } else {
1749 Py_INCREF(tmp);
1750 }
Guido van Rossumad47da02002-08-12 19:05:44 +00001751 PyTuple_SET_ITEM(newslots, j, tmp);
1752 j++;
Raymond Hettinger0ae0c072002-06-20 22:23:15 +00001753 }
Guido van Rossumad47da02002-08-12 19:05:44 +00001754 assert(j == nslots - add_dict - add_weak);
1755 nslots = j;
Raymond Hettinger0ae0c072002-06-20 22:23:15 +00001756 Py_DECREF(slots);
1757 slots = newslots;
1758
Guido van Rossumad47da02002-08-12 19:05:44 +00001759 /* Secondary bases may provide weakrefs or dict */
1760 if (nbases > 1 &&
1761 ((may_add_dict && !add_dict) ||
1762 (may_add_weak && !add_weak))) {
1763 for (i = 0; i < nbases; i++) {
1764 tmp = PyTuple_GET_ITEM(bases, i);
1765 if (tmp == (PyObject *)base)
1766 continue; /* Skip primary base */
1767 if (PyClass_Check(tmp)) {
1768 /* Classic base class provides both */
1769 if (may_add_dict && !add_dict)
1770 add_dict++;
1771 if (may_add_weak && !add_weak)
1772 add_weak++;
1773 break;
1774 }
1775 assert(PyType_Check(tmp));
1776 tmptype = (PyTypeObject *)tmp;
1777 if (may_add_dict && !add_dict &&
1778 tmptype->tp_dictoffset != 0)
1779 add_dict++;
1780 if (may_add_weak && !add_weak &&
1781 tmptype->tp_weaklistoffset != 0)
1782 add_weak++;
1783 if (may_add_dict && !add_dict)
1784 continue;
1785 if (may_add_weak && !add_weak)
1786 continue;
1787 /* Nothing more to check */
1788 break;
1789 }
1790 }
Guido van Rossum9676b222001-08-17 20:32:36 +00001791 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001792
1793 /* XXX From here until type is safely allocated,
1794 "return NULL" may leak slots! */
1795
1796 /* Allocate the type object */
1797 type = (PyTypeObject *)metatype->tp_alloc(metatype, nslots);
Guido van Rossumad47da02002-08-12 19:05:44 +00001798 if (type == NULL) {
1799 Py_XDECREF(slots);
Michael W. Hudsona6a277d2003-08-08 13:57:22 +00001800 Py_DECREF(bases);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001801 return NULL;
Guido van Rossumad47da02002-08-12 19:05:44 +00001802 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001803
1804 /* Keep name and slots alive in the extended type object */
Guido van Rossume5c691a2003-03-07 15:13:17 +00001805 et = (PyHeapTypeObject *)type;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001806 Py_INCREF(name);
1807 et->name = name;
1808 et->slots = slots;
1809
Guido van Rossumdc91b992001-08-08 22:26:22 +00001810 /* Initialize tp_flags */
Tim Peters6d6c1a32001-08-02 04:15:00 +00001811 type->tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HEAPTYPE |
1812 Py_TPFLAGS_BASETYPE;
Guido van Rossum048eb752001-10-02 21:24:57 +00001813 if (base->tp_flags & Py_TPFLAGS_HAVE_GC)
1814 type->tp_flags |= Py_TPFLAGS_HAVE_GC;
Guido van Rossumdc91b992001-08-08 22:26:22 +00001815
1816 /* It's a new-style number unless it specifically inherits any
1817 old-style numeric behavior */
1818 if ((base->tp_flags & Py_TPFLAGS_CHECKTYPES) ||
1819 (base->tp_as_number == NULL))
1820 type->tp_flags |= Py_TPFLAGS_CHECKTYPES;
1821
1822 /* Initialize essential fields */
Tim Peters6d6c1a32001-08-02 04:15:00 +00001823 type->tp_as_number = &et->as_number;
1824 type->tp_as_sequence = &et->as_sequence;
1825 type->tp_as_mapping = &et->as_mapping;
1826 type->tp_as_buffer = &et->as_buffer;
1827 type->tp_name = PyString_AS_STRING(name);
1828
1829 /* Set tp_base and tp_bases */
1830 type->tp_bases = bases;
1831 Py_INCREF(base);
1832 type->tp_base = base;
1833
Guido van Rossum687ae002001-10-15 22:03:32 +00001834 /* Initialize tp_dict from passed-in dict */
1835 type->tp_dict = dict = PyDict_Copy(dict);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001836 if (dict == NULL) {
1837 Py_DECREF(type);
1838 return NULL;
1839 }
1840
Guido van Rossumc3542212001-08-16 09:18:56 +00001841 /* Set __module__ in the dict */
1842 if (PyDict_GetItemString(dict, "__module__") == NULL) {
1843 tmp = PyEval_GetGlobals();
1844 if (tmp != NULL) {
1845 tmp = PyDict_GetItemString(tmp, "__name__");
1846 if (tmp != NULL) {
1847 if (PyDict_SetItemString(dict, "__module__",
1848 tmp) < 0)
1849 return NULL;
1850 }
1851 }
1852 }
1853
Tim Peters2f93e282001-10-04 05:27:00 +00001854 /* Set tp_doc to a copy of dict['__doc__'], if the latter is there
Tim Peters24008312002-03-17 18:56:20 +00001855 and is a string. The __doc__ accessor will first look for tp_doc;
1856 if that fails, it will still look into __dict__.
Tim Peters2f93e282001-10-04 05:27:00 +00001857 */
1858 {
1859 PyObject *doc = PyDict_GetItemString(dict, "__doc__");
1860 if (doc != NULL && PyString_Check(doc)) {
1861 const size_t n = (size_t)PyString_GET_SIZE(doc);
Tim Peters59f809d2001-10-04 05:43:02 +00001862 type->tp_doc = (char *)PyObject_MALLOC(n+1);
Tim Peters2f93e282001-10-04 05:27:00 +00001863 if (type->tp_doc == NULL) {
1864 Py_DECREF(type);
1865 return NULL;
1866 }
1867 memcpy(type->tp_doc, PyString_AS_STRING(doc), n+1);
1868 }
1869 }
1870
Tim Peters6d6c1a32001-08-02 04:15:00 +00001871 /* Special-case __new__: if it's a plain function,
1872 make it a static function */
1873 tmp = PyDict_GetItemString(dict, "__new__");
1874 if (tmp != NULL && PyFunction_Check(tmp)) {
1875 tmp = PyStaticMethod_New(tmp);
1876 if (tmp == NULL) {
1877 Py_DECREF(type);
1878 return NULL;
1879 }
1880 PyDict_SetItemString(dict, "__new__", tmp);
1881 Py_DECREF(tmp);
1882 }
1883
1884 /* Add descriptors for custom slots from __slots__, or for __dict__ */
Guido van Rossume5c691a2003-03-07 15:13:17 +00001885 mp = PyHeapType_GET_MEMBERS(et);
Neil Schemenauerc806c882001-08-29 23:54:54 +00001886 slotoffset = base->tp_basicsize;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001887 if (slots != NULL) {
1888 for (i = 0; i < nslots; i++, mp++) {
1889 mp->name = PyString_AS_STRING(
1890 PyTuple_GET_ITEM(slots, i));
Guido van Rossum64b206c2001-12-04 17:13:22 +00001891 mp->type = T_OBJECT_EX;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001892 mp->offset = slotoffset;
Guido van Rossum9676b222001-08-17 20:32:36 +00001893 if (base->tp_weaklistoffset == 0 &&
Guido van Rossum64b206c2001-12-04 17:13:22 +00001894 strcmp(mp->name, "__weakref__") == 0) {
Guido van Rossumad47da02002-08-12 19:05:44 +00001895 add_weak++;
Guido van Rossum64b206c2001-12-04 17:13:22 +00001896 mp->type = T_OBJECT;
Guido van Rossum9923ffe2002-06-04 19:52:53 +00001897 mp->flags = READONLY;
Guido van Rossum9676b222001-08-17 20:32:36 +00001898 type->tp_weaklistoffset = slotoffset;
Guido van Rossum64b206c2001-12-04 17:13:22 +00001899 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001900 slotoffset += sizeof(PyObject *);
1901 }
1902 }
Guido van Rossumad47da02002-08-12 19:05:44 +00001903 if (add_dict) {
1904 if (base->tp_itemsize)
1905 type->tp_dictoffset = -(long)sizeof(PyObject *);
1906 else
1907 type->tp_dictoffset = slotoffset;
1908 slotoffset += sizeof(PyObject *);
1909 }
1910 if (add_weak) {
1911 assert(!base->tp_itemsize);
1912 type->tp_weaklistoffset = slotoffset;
1913 slotoffset += sizeof(PyObject *);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001914 }
1915 type->tp_basicsize = slotoffset;
Guido van Rossum6fb3fde2001-08-30 20:00:07 +00001916 type->tp_itemsize = base->tp_itemsize;
Guido van Rossume5c691a2003-03-07 15:13:17 +00001917 type->tp_members = PyHeapType_GET_MEMBERS(et);
Guido van Rossum373c7412003-01-07 13:41:37 +00001918
1919 if (type->tp_weaklistoffset && type->tp_dictoffset)
1920 type->tp_getset = subtype_getsets_full;
1921 else if (type->tp_weaklistoffset && !type->tp_dictoffset)
1922 type->tp_getset = subtype_getsets_weakref_only;
1923 else if (!type->tp_weaklistoffset && type->tp_dictoffset)
1924 type->tp_getset = subtype_getsets_dict_only;
1925 else
1926 type->tp_getset = NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001927
1928 /* Special case some slots */
1929 if (type->tp_dictoffset != 0 || nslots > 0) {
1930 if (base->tp_getattr == NULL && base->tp_getattro == NULL)
1931 type->tp_getattro = PyObject_GenericGetAttr;
1932 if (base->tp_setattr == NULL && base->tp_setattro == NULL)
1933 type->tp_setattro = PyObject_GenericSetAttr;
1934 }
1935 type->tp_dealloc = subtype_dealloc;
1936
Guido van Rossum9475a232001-10-05 20:51:39 +00001937 /* Enable GC unless there are really no instance variables possible */
1938 if (!(type->tp_basicsize == sizeof(PyObject) &&
1939 type->tp_itemsize == 0))
1940 type->tp_flags |= Py_TPFLAGS_HAVE_GC;
1941
Tim Peters6d6c1a32001-08-02 04:15:00 +00001942 /* Always override allocation strategy to use regular heap */
1943 type->tp_alloc = PyType_GenericAlloc;
Guido van Rossum048eb752001-10-02 21:24:57 +00001944 if (type->tp_flags & Py_TPFLAGS_HAVE_GC) {
Neil Schemenauer09a2ae52002-04-12 03:06:53 +00001945 type->tp_free = PyObject_GC_Del;
Guido van Rossum9475a232001-10-05 20:51:39 +00001946 type->tp_traverse = subtype_traverse;
Guido van Rossum9923ffe2002-06-04 19:52:53 +00001947 type->tp_clear = subtype_clear;
Guido van Rossum048eb752001-10-02 21:24:57 +00001948 }
1949 else
Neil Schemenauer09a2ae52002-04-12 03:06:53 +00001950 type->tp_free = PyObject_Del;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001951
1952 /* Initialize the rest */
Guido van Rossum528b7eb2001-08-07 17:24:28 +00001953 if (PyType_Ready(type) < 0) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001954 Py_DECREF(type);
1955 return NULL;
1956 }
1957
Guido van Rossum7b9144b2001-10-09 19:39:46 +00001958 /* Put the proper slots in place */
1959 fixup_slot_dispatchers(type);
Guido van Rossumf040ede2001-08-07 16:40:56 +00001960
Tim Peters6d6c1a32001-08-02 04:15:00 +00001961 return (PyObject *)type;
1962}
1963
1964/* Internal API to look for a name through the MRO.
1965 This returns a borrowed reference, and doesn't set an exception! */
1966PyObject *
1967_PyType_Lookup(PyTypeObject *type, PyObject *name)
1968{
1969 int i, n;
Tim Petersa91e9642001-11-14 23:32:33 +00001970 PyObject *mro, *res, *base, *dict;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001971
Guido van Rossum687ae002001-10-15 22:03:32 +00001972 /* Look in tp_dict of types in MRO */
Tim Peters6d6c1a32001-08-02 04:15:00 +00001973 mro = type->tp_mro;
Guido van Rossum23094982002-06-10 14:30:43 +00001974
1975 /* If mro is NULL, the type is either not yet initialized
1976 by PyType_Ready(), or already cleared by type_clear().
1977 Either way the safest thing to do is to return NULL. */
1978 if (mro == NULL)
1979 return NULL;
1980
Tim Peters6d6c1a32001-08-02 04:15:00 +00001981 assert(PyTuple_Check(mro));
1982 n = PyTuple_GET_SIZE(mro);
1983 for (i = 0; i < n; i++) {
Tim Petersa91e9642001-11-14 23:32:33 +00001984 base = PyTuple_GET_ITEM(mro, i);
1985 if (PyClass_Check(base))
1986 dict = ((PyClassObject *)base)->cl_dict;
1987 else {
1988 assert(PyType_Check(base));
1989 dict = ((PyTypeObject *)base)->tp_dict;
1990 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001991 assert(dict && PyDict_Check(dict));
1992 res = PyDict_GetItem(dict, name);
1993 if (res != NULL)
1994 return res;
1995 }
1996 return NULL;
1997}
1998
1999/* This is similar to PyObject_GenericGetAttr(),
2000 but uses _PyType_Lookup() instead of just looking in type->tp_dict. */
2001static PyObject *
2002type_getattro(PyTypeObject *type, PyObject *name)
2003{
2004 PyTypeObject *metatype = type->ob_type;
Guido van Rossumbfc2e5e2002-04-04 17:50:54 +00002005 PyObject *meta_attribute, *attribute;
2006 descrgetfunc meta_get;
Tim Peters6d6c1a32001-08-02 04:15:00 +00002007
2008 /* Initialize this type (we'll assume the metatype is initialized) */
2009 if (type->tp_dict == NULL) {
Guido van Rossum528b7eb2001-08-07 17:24:28 +00002010 if (PyType_Ready(type) < 0)
Tim Peters6d6c1a32001-08-02 04:15:00 +00002011 return NULL;
2012 }
2013
Guido van Rossumbfc2e5e2002-04-04 17:50:54 +00002014 /* No readable descriptor found yet */
2015 meta_get = NULL;
Tim Peters34592512002-07-11 06:23:50 +00002016
Guido van Rossumbfc2e5e2002-04-04 17:50:54 +00002017 /* Look for the attribute in the metatype */
2018 meta_attribute = _PyType_Lookup(metatype, name);
2019
2020 if (meta_attribute != NULL) {
2021 meta_get = meta_attribute->ob_type->tp_descr_get;
Tim Peters34592512002-07-11 06:23:50 +00002022
Guido van Rossumbfc2e5e2002-04-04 17:50:54 +00002023 if (meta_get != NULL && PyDescr_IsData(meta_attribute)) {
2024 /* Data descriptors implement tp_descr_set to intercept
2025 * writes. Assume the attribute is not overridden in
2026 * type's tp_dict (and bases): call the descriptor now.
2027 */
2028 return meta_get(meta_attribute, (PyObject *)type,
2029 (PyObject *)metatype);
2030 }
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00002031 Py_INCREF(meta_attribute);
Tim Peters6d6c1a32001-08-02 04:15:00 +00002032 }
2033
Guido van Rossumbfc2e5e2002-04-04 17:50:54 +00002034 /* No data descriptor found on metatype. Look in tp_dict of this
2035 * type and its bases */
2036 attribute = _PyType_Lookup(type, name);
2037 if (attribute != NULL) {
2038 /* Implement descriptor functionality, if any */
2039 descrgetfunc local_get = attribute->ob_type->tp_descr_get;
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00002040
2041 Py_XDECREF(meta_attribute);
2042
Guido van Rossumbfc2e5e2002-04-04 17:50:54 +00002043 if (local_get != NULL) {
2044 /* NULL 2nd argument indicates the descriptor was
2045 * found on the target object itself (or a base) */
2046 return local_get(attribute, (PyObject *)NULL,
2047 (PyObject *)type);
2048 }
Tim Peters34592512002-07-11 06:23:50 +00002049
Guido van Rossumbfc2e5e2002-04-04 17:50:54 +00002050 Py_INCREF(attribute);
2051 return attribute;
Tim Peters6d6c1a32001-08-02 04:15:00 +00002052 }
2053
Guido van Rossumbfc2e5e2002-04-04 17:50:54 +00002054 /* No attribute found in local __dict__ (or bases): use the
2055 * descriptor from the metatype, if any */
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00002056 if (meta_get != NULL) {
2057 PyObject *res;
2058 res = meta_get(meta_attribute, (PyObject *)type,
2059 (PyObject *)metatype);
2060 Py_DECREF(meta_attribute);
2061 return res;
2062 }
Guido van Rossumbfc2e5e2002-04-04 17:50:54 +00002063
2064 /* If an ordinary attribute was found on the metatype, return it now */
2065 if (meta_attribute != NULL) {
Guido van Rossumbfc2e5e2002-04-04 17:50:54 +00002066 return meta_attribute;
Tim Peters6d6c1a32001-08-02 04:15:00 +00002067 }
2068
2069 /* Give up */
2070 PyErr_Format(PyExc_AttributeError,
Guido van Rossumbfc2e5e2002-04-04 17:50:54 +00002071 "type object '%.50s' has no attribute '%.400s'",
2072 type->tp_name, PyString_AS_STRING(name));
Tim Peters6d6c1a32001-08-02 04:15:00 +00002073 return NULL;
2074}
2075
2076static int
2077type_setattro(PyTypeObject *type, PyObject *name, PyObject *value)
2078{
Guido van Rossum2f3ca6e2001-10-15 21:05:10 +00002079 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE)) {
2080 PyErr_Format(
2081 PyExc_TypeError,
2082 "can't set attributes of built-in/extension type '%s'",
2083 type->tp_name);
2084 return -1;
Guido van Rossum7b9144b2001-10-09 19:39:46 +00002085 }
Guido van Rossum8d24ee92003-03-24 23:49:49 +00002086 /* XXX Example of how I expect this to be used...
2087 if (update_subclasses(type, name, invalidate_cache, NULL) < 0)
2088 return -1;
2089 */
Guido van Rossum2f3ca6e2001-10-15 21:05:10 +00002090 if (PyObject_GenericSetAttr((PyObject *)type, name, value) < 0)
2091 return -1;
2092 return update_slot(type, name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00002093}
2094
2095static void
2096type_dealloc(PyTypeObject *type)
2097{
Guido van Rossume5c691a2003-03-07 15:13:17 +00002098 PyHeapTypeObject *et;
Tim Peters6d6c1a32001-08-02 04:15:00 +00002099
2100 /* Assert this is a heap-allocated type object */
2101 assert(type->tp_flags & Py_TPFLAGS_HEAPTYPE);
Guido van Rossum048eb752001-10-02 21:24:57 +00002102 _PyObject_GC_UNTRACK(type);
Guido van Rossum1c450732001-10-08 15:18:27 +00002103 PyObject_ClearWeakRefs((PyObject *)type);
Guido van Rossume5c691a2003-03-07 15:13:17 +00002104 et = (PyHeapTypeObject *)type;
Tim Peters6d6c1a32001-08-02 04:15:00 +00002105 Py_XDECREF(type->tp_base);
2106 Py_XDECREF(type->tp_dict);
2107 Py_XDECREF(type->tp_bases);
2108 Py_XDECREF(type->tp_mro);
Guido van Rossum687ae002001-10-15 22:03:32 +00002109 Py_XDECREF(type->tp_cache);
Guido van Rossum1c450732001-10-08 15:18:27 +00002110 Py_XDECREF(type->tp_subclasses);
Neal Norwitzcee5ca02002-07-30 00:42:06 +00002111 PyObject_Free(type->tp_doc);
Tim Peters6d6c1a32001-08-02 04:15:00 +00002112 Py_XDECREF(et->name);
2113 Py_XDECREF(et->slots);
2114 type->ob_type->tp_free((PyObject *)type);
2115}
2116
Guido van Rossum1c450732001-10-08 15:18:27 +00002117static PyObject *
2118type_subclasses(PyTypeObject *type, PyObject *args_ignored)
2119{
2120 PyObject *list, *raw, *ref;
2121 int i, n;
2122
2123 list = PyList_New(0);
2124 if (list == NULL)
2125 return NULL;
2126 raw = type->tp_subclasses;
2127 if (raw == NULL)
2128 return list;
2129 assert(PyList_Check(raw));
2130 n = PyList_GET_SIZE(raw);
2131 for (i = 0; i < n; i++) {
2132 ref = PyList_GET_ITEM(raw, i);
Tim Peters44383382001-10-08 16:49:26 +00002133 assert(PyWeakref_CheckRef(ref));
Guido van Rossum1c450732001-10-08 15:18:27 +00002134 ref = PyWeakref_GET_OBJECT(ref);
2135 if (ref != Py_None) {
2136 if (PyList_Append(list, ref) < 0) {
2137 Py_DECREF(list);
2138 return NULL;
2139 }
2140 }
2141 }
2142 return list;
2143}
2144
Tim Peters6d6c1a32001-08-02 04:15:00 +00002145static PyMethodDef type_methods[] = {
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00002146 {"mro", (PyCFunction)mro_external, METH_NOARGS,
Neal Norwitz5dc2a372002-08-13 22:19:13 +00002147 PyDoc_STR("mro() -> list\nreturn a type's method resolution order")},
Guido van Rossum1c450732001-10-08 15:18:27 +00002148 {"__subclasses__", (PyCFunction)type_subclasses, METH_NOARGS,
Neal Norwitz5dc2a372002-08-13 22:19:13 +00002149 PyDoc_STR("__subclasses__() -> list of immediate subclasses")},
Tim Peters6d6c1a32001-08-02 04:15:00 +00002150 {0}
2151};
2152
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002153PyDoc_STRVAR(type_doc,
Tim Peters6d6c1a32001-08-02 04:15:00 +00002154"type(object) -> the object's type\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002155"type(name, bases, dict) -> a new type");
Tim Peters6d6c1a32001-08-02 04:15:00 +00002156
Guido van Rossum048eb752001-10-02 21:24:57 +00002157static int
2158type_traverse(PyTypeObject *type, visitproc visit, void *arg)
2159{
Guido van Rossum048eb752001-10-02 21:24:57 +00002160 int err;
2161
Guido van Rossuma3862092002-06-10 15:24:42 +00002162 /* Because of type_is_gc(), the collector only calls this
2163 for heaptypes. */
2164 assert(type->tp_flags & Py_TPFLAGS_HEAPTYPE);
Guido van Rossum048eb752001-10-02 21:24:57 +00002165
2166#define VISIT(SLOT) \
2167 if (SLOT) { \
2168 err = visit((PyObject *)(SLOT), arg); \
2169 if (err) \
2170 return err; \
2171 }
2172
2173 VISIT(type->tp_dict);
Guido van Rossum687ae002001-10-15 22:03:32 +00002174 VISIT(type->tp_cache);
Guido van Rossum048eb752001-10-02 21:24:57 +00002175 VISIT(type->tp_mro);
2176 VISIT(type->tp_bases);
2177 VISIT(type->tp_base);
Guido van Rossuma3862092002-06-10 15:24:42 +00002178
2179 /* There's no need to visit type->tp_subclasses or
Guido van Rossume5c691a2003-03-07 15:13:17 +00002180 ((PyHeapTypeObject *)type)->slots, because they can't be involved
Guido van Rossuma3862092002-06-10 15:24:42 +00002181 in cycles; tp_subclasses is a list of weak references,
2182 and slots is a tuple of strings. */
Guido van Rossum048eb752001-10-02 21:24:57 +00002183
2184#undef VISIT
2185
2186 return 0;
2187}
2188
2189static int
2190type_clear(PyTypeObject *type)
2191{
Guido van Rossum048eb752001-10-02 21:24:57 +00002192 PyObject *tmp;
2193
Guido van Rossuma3862092002-06-10 15:24:42 +00002194 /* Because of type_is_gc(), the collector only calls this
2195 for heaptypes. */
2196 assert(type->tp_flags & Py_TPFLAGS_HEAPTYPE);
Guido van Rossum048eb752001-10-02 21:24:57 +00002197
2198#define CLEAR(SLOT) \
2199 if (SLOT) { \
2200 tmp = (PyObject *)(SLOT); \
2201 SLOT = NULL; \
2202 Py_DECREF(tmp); \
2203 }
2204
Guido van Rossuma3862092002-06-10 15:24:42 +00002205 /* The only field we need to clear is tp_mro, which is part of a
2206 hard cycle (its first element is the class itself) that won't
2207 be broken otherwise (it's a tuple and tuples don't have a
2208 tp_clear handler). None of the other fields need to be
2209 cleared, and here's why:
Guido van Rossum048eb752001-10-02 21:24:57 +00002210
Guido van Rossuma3862092002-06-10 15:24:42 +00002211 tp_dict:
2212 It is a dict, so the collector will call its tp_clear.
2213
2214 tp_cache:
2215 Not used; if it were, it would be a dict.
2216
2217 tp_bases, tp_base:
2218 If these are involved in a cycle, there must be at least
2219 one other, mutable object in the cycle, e.g. a base
2220 class's dict; the cycle will be broken that way.
2221
2222 tp_subclasses:
2223 A list of weak references can't be part of a cycle; and
2224 lists have their own tp_clear.
2225
Guido van Rossume5c691a2003-03-07 15:13:17 +00002226 slots (in PyHeapTypeObject):
Guido van Rossuma3862092002-06-10 15:24:42 +00002227 A tuple of strings can't be part of a cycle.
2228 */
2229
2230 CLEAR(type->tp_mro);
Tim Peters2f93e282001-10-04 05:27:00 +00002231
Guido van Rossum048eb752001-10-02 21:24:57 +00002232#undef CLEAR
2233
2234 return 0;
2235}
2236
2237static int
2238type_is_gc(PyTypeObject *type)
2239{
2240 return type->tp_flags & Py_TPFLAGS_HEAPTYPE;
2241}
2242
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002243PyTypeObject PyType_Type = {
2244 PyObject_HEAD_INIT(&PyType_Type)
Tim Peters6d6c1a32001-08-02 04:15:00 +00002245 0, /* ob_size */
2246 "type", /* tp_name */
Guido van Rossume5c691a2003-03-07 15:13:17 +00002247 sizeof(PyHeapTypeObject), /* tp_basicsize */
Guido van Rossum6f799372001-09-20 20:46:19 +00002248 sizeof(PyMemberDef), /* tp_itemsize */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002249 (destructor)type_dealloc, /* tp_dealloc */
2250 0, /* tp_print */
2251 0, /* tp_getattr */
2252 0, /* tp_setattr */
2253 type_compare, /* tp_compare */
2254 (reprfunc)type_repr, /* tp_repr */
2255 0, /* tp_as_number */
2256 0, /* tp_as_sequence */
2257 0, /* tp_as_mapping */
2258 (hashfunc)_Py_HashPointer, /* tp_hash */
2259 (ternaryfunc)type_call, /* tp_call */
2260 0, /* tp_str */
2261 (getattrofunc)type_getattro, /* tp_getattro */
2262 (setattrofunc)type_setattro, /* tp_setattro */
2263 0, /* tp_as_buffer */
Guido van Rossum048eb752001-10-02 21:24:57 +00002264 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC |
2265 Py_TPFLAGS_BASETYPE, /* tp_flags */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002266 type_doc, /* tp_doc */
Guido van Rossum048eb752001-10-02 21:24:57 +00002267 (traverseproc)type_traverse, /* tp_traverse */
2268 (inquiry)type_clear, /* tp_clear */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002269 0, /* tp_richcompare */
Guido van Rossum1c450732001-10-08 15:18:27 +00002270 offsetof(PyTypeObject, tp_weaklist), /* tp_weaklistoffset */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002271 0, /* tp_iter */
2272 0, /* tp_iternext */
2273 type_methods, /* tp_methods */
2274 type_members, /* tp_members */
2275 type_getsets, /* tp_getset */
2276 0, /* tp_base */
2277 0, /* tp_dict */
2278 0, /* tp_descr_get */
2279 0, /* tp_descr_set */
2280 offsetof(PyTypeObject, tp_dict), /* tp_dictoffset */
2281 0, /* tp_init */
2282 0, /* tp_alloc */
2283 type_new, /* tp_new */
Neil Schemenauer09a2ae52002-04-12 03:06:53 +00002284 PyObject_GC_Del, /* tp_free */
Guido van Rossum048eb752001-10-02 21:24:57 +00002285 (inquiry)type_is_gc, /* tp_is_gc */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002286};
Tim Peters6d6c1a32001-08-02 04:15:00 +00002287
2288
2289/* The base type of all types (eventually)... except itself. */
2290
2291static int
2292object_init(PyObject *self, PyObject *args, PyObject *kwds)
2293{
2294 return 0;
2295}
2296
Guido van Rossum298e4212003-02-13 16:30:16 +00002297/* If we don't have a tp_new for a new-style class, new will use this one.
2298 Therefore this should take no arguments/keywords. However, this new may
2299 also be inherited by objects that define a tp_init but no tp_new. These
2300 objects WILL pass argumets to tp_new, because it gets the same args as
2301 tp_init. So only allow arguments if we aren't using the default init, in
2302 which case we expect init to handle argument parsing. */
2303static PyObject *
2304object_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
2305{
2306 if (type->tp_init == object_init && (PyTuple_GET_SIZE(args) ||
2307 (kwds && PyDict_Check(kwds) && PyDict_Size(kwds)))) {
2308 PyErr_SetString(PyExc_TypeError,
2309 "default __new__ takes no parameters");
2310 return NULL;
2311 }
2312 return type->tp_alloc(type, 0);
2313}
2314
Tim Peters6d6c1a32001-08-02 04:15:00 +00002315static void
2316object_dealloc(PyObject *self)
2317{
2318 self->ob_type->tp_free(self);
2319}
2320
Guido van Rossum8e248182001-08-12 05:17:56 +00002321static PyObject *
2322object_repr(PyObject *self)
2323{
Guido van Rossum76e69632001-08-16 18:52:43 +00002324 PyTypeObject *type;
Barry Warsaw7ce36942001-08-24 18:34:26 +00002325 PyObject *mod, *name, *rtn;
Guido van Rossum8e248182001-08-12 05:17:56 +00002326
Guido van Rossum76e69632001-08-16 18:52:43 +00002327 type = self->ob_type;
2328 mod = type_module(type, NULL);
2329 if (mod == NULL)
2330 PyErr_Clear();
2331 else if (!PyString_Check(mod)) {
2332 Py_DECREF(mod);
2333 mod = NULL;
2334 }
2335 name = type_name(type, NULL);
2336 if (name == NULL)
2337 return NULL;
2338 if (mod != NULL && strcmp(PyString_AS_STRING(mod), "__builtin__"))
Guido van Rossumff0e6d62001-09-24 16:03:59 +00002339 rtn = PyString_FromFormat("<%s.%s object at %p>",
Barry Warsaw7ce36942001-08-24 18:34:26 +00002340 PyString_AS_STRING(mod),
2341 PyString_AS_STRING(name),
2342 self);
Guido van Rossum76e69632001-08-16 18:52:43 +00002343 else
Guido van Rossumff0e6d62001-09-24 16:03:59 +00002344 rtn = PyString_FromFormat("<%s object at %p>",
Barry Warsaw7ce36942001-08-24 18:34:26 +00002345 type->tp_name, self);
Guido van Rossum76e69632001-08-16 18:52:43 +00002346 Py_XDECREF(mod);
2347 Py_DECREF(name);
Barry Warsaw7ce36942001-08-24 18:34:26 +00002348 return rtn;
Guido van Rossum8e248182001-08-12 05:17:56 +00002349}
2350
Guido van Rossumb8f63662001-08-15 23:57:02 +00002351static PyObject *
2352object_str(PyObject *self)
2353{
2354 unaryfunc f;
2355
2356 f = self->ob_type->tp_repr;
2357 if (f == NULL)
2358 f = object_repr;
2359 return f(self);
2360}
2361
Guido van Rossum8e248182001-08-12 05:17:56 +00002362static long
2363object_hash(PyObject *self)
2364{
2365 return _Py_HashPointer(self);
2366}
Guido van Rossum8e248182001-08-12 05:17:56 +00002367
Guido van Rossum5c294fb2001-09-25 03:43:42 +00002368static PyObject *
2369object_get_class(PyObject *self, void *closure)
2370{
2371 Py_INCREF(self->ob_type);
2372 return (PyObject *)(self->ob_type);
2373}
2374
2375static int
2376equiv_structs(PyTypeObject *a, PyTypeObject *b)
2377{
2378 return a == b ||
2379 (a != NULL &&
2380 b != NULL &&
2381 a->tp_basicsize == b->tp_basicsize &&
2382 a->tp_itemsize == b->tp_itemsize &&
2383 a->tp_dictoffset == b->tp_dictoffset &&
2384 a->tp_weaklistoffset == b->tp_weaklistoffset &&
2385 ((a->tp_flags & Py_TPFLAGS_HAVE_GC) ==
2386 (b->tp_flags & Py_TPFLAGS_HAVE_GC)));
2387}
2388
2389static int
2390same_slots_added(PyTypeObject *a, PyTypeObject *b)
2391{
2392 PyTypeObject *base = a->tp_base;
2393 int size;
2394
2395 if (base != b->tp_base)
2396 return 0;
2397 if (equiv_structs(a, base) && equiv_structs(b, base))
2398 return 1;
2399 size = base->tp_basicsize;
2400 if (a->tp_dictoffset == size && b->tp_dictoffset == size)
2401 size += sizeof(PyObject *);
2402 if (a->tp_weaklistoffset == size && b->tp_weaklistoffset == size)
2403 size += sizeof(PyObject *);
2404 return size == a->tp_basicsize && size == b->tp_basicsize;
2405}
2406
2407static int
Michael W. Hudson98bbc492002-11-26 14:47:27 +00002408compatible_for_assignment(PyTypeObject* old, PyTypeObject* new, char* attr)
2409{
2410 PyTypeObject *newbase, *oldbase;
2411
2412 if (new->tp_dealloc != old->tp_dealloc ||
2413 new->tp_free != old->tp_free)
2414 {
2415 PyErr_Format(PyExc_TypeError,
2416 "%s assignment: "
2417 "'%s' deallocator differs from '%s'",
2418 attr,
2419 new->tp_name,
2420 old->tp_name);
2421 return 0;
2422 }
2423 newbase = new;
2424 oldbase = old;
2425 while (equiv_structs(newbase, newbase->tp_base))
2426 newbase = newbase->tp_base;
2427 while (equiv_structs(oldbase, oldbase->tp_base))
2428 oldbase = oldbase->tp_base;
2429 if (newbase != oldbase &&
2430 (newbase->tp_base != oldbase->tp_base ||
2431 !same_slots_added(newbase, oldbase))) {
2432 PyErr_Format(PyExc_TypeError,
2433 "%s assignment: "
2434 "'%s' object layout differs from '%s'",
2435 attr,
2436 new->tp_name,
2437 old->tp_name);
2438 return 0;
2439 }
Tim Petersea7f75d2002-12-07 21:39:16 +00002440
Michael W. Hudson98bbc492002-11-26 14:47:27 +00002441 return 1;
2442}
2443
2444static int
Guido van Rossum5c294fb2001-09-25 03:43:42 +00002445object_set_class(PyObject *self, PyObject *value, void *closure)
2446{
2447 PyTypeObject *old = self->ob_type;
Michael W. Hudson98bbc492002-11-26 14:47:27 +00002448 PyTypeObject *new;
Guido van Rossum5c294fb2001-09-25 03:43:42 +00002449
Guido van Rossumb6b89422002-04-15 01:03:30 +00002450 if (value == NULL) {
2451 PyErr_SetString(PyExc_TypeError,
2452 "can't delete __class__ attribute");
2453 return -1;
2454 }
Guido van Rossum5c294fb2001-09-25 03:43:42 +00002455 if (!PyType_Check(value)) {
2456 PyErr_Format(PyExc_TypeError,
2457 "__class__ must be set to new-style class, not '%s' object",
2458 value->ob_type->tp_name);
2459 return -1;
2460 }
2461 new = (PyTypeObject *)value;
Guido van Rossum40af8892002-08-10 05:42:07 +00002462 if (!(new->tp_flags & Py_TPFLAGS_HEAPTYPE) ||
2463 !(old->tp_flags & Py_TPFLAGS_HEAPTYPE))
2464 {
2465 PyErr_Format(PyExc_TypeError,
2466 "__class__ assignment: only for heap types");
2467 return -1;
2468 }
Michael W. Hudson98bbc492002-11-26 14:47:27 +00002469 if (compatible_for_assignment(new, old, "__class__")) {
2470 Py_INCREF(new);
2471 self->ob_type = new;
2472 Py_DECREF(old);
2473 return 0;
2474 }
2475 else {
Guido van Rossum9ee4b942002-05-24 18:47:47 +00002476 return -1;
2477 }
Guido van Rossum5c294fb2001-09-25 03:43:42 +00002478}
2479
2480static PyGetSetDef object_getsets[] = {
2481 {"__class__", object_get_class, object_set_class,
Neal Norwitz858e34f2002-08-13 17:18:45 +00002482 PyDoc_STR("the object's class")},
Tim Peters6d6c1a32001-08-02 04:15:00 +00002483 {0}
2484};
2485
Guido van Rossumc53f0092003-02-18 22:05:12 +00002486
Guido van Rossum036f9992003-02-21 22:02:54 +00002487/* Stuff to implement __reduce_ex__ for pickle protocols >= 2.
2488 We fall back to helpers in copy_reg for:
2489 - pickle protocols < 2
2490 - calculating the list of slot names (done only once per class)
2491 - the __newobj__ function (which is used as a token but never called)
2492*/
2493
2494static PyObject *
2495import_copy_reg(void)
2496{
2497 static PyObject *copy_reg_str;
Guido van Rossum3926a632001-09-25 16:25:58 +00002498
2499 if (!copy_reg_str) {
2500 copy_reg_str = PyString_InternFromString("copy_reg");
2501 if (copy_reg_str == NULL)
2502 return NULL;
2503 }
Guido van Rossum036f9992003-02-21 22:02:54 +00002504
2505 return PyImport_Import(copy_reg_str);
2506}
2507
2508static PyObject *
2509slotnames(PyObject *cls)
2510{
2511 PyObject *clsdict;
2512 PyObject *copy_reg;
2513 PyObject *slotnames;
2514
2515 if (!PyType_Check(cls)) {
2516 Py_INCREF(Py_None);
2517 return Py_None;
2518 }
2519
2520 clsdict = ((PyTypeObject *)cls)->tp_dict;
2521 slotnames = PyDict_GetItemString(clsdict, "__slotnames__");
2522 if (slotnames != NULL) {
2523 Py_INCREF(slotnames);
2524 return slotnames;
2525 }
2526
2527 copy_reg = import_copy_reg();
2528 if (copy_reg == NULL)
2529 return NULL;
2530
2531 slotnames = PyObject_CallMethod(copy_reg, "_slotnames", "O", cls);
2532 Py_DECREF(copy_reg);
2533 if (slotnames != NULL &&
2534 slotnames != Py_None &&
2535 !PyList_Check(slotnames))
2536 {
2537 PyErr_SetString(PyExc_TypeError,
2538 "copy_reg._slotnames didn't return a list or None");
2539 Py_DECREF(slotnames);
2540 slotnames = NULL;
2541 }
2542
2543 return slotnames;
2544}
2545
2546static PyObject *
2547reduce_2(PyObject *obj)
2548{
2549 PyObject *cls, *getnewargs;
2550 PyObject *args = NULL, *args2 = NULL;
2551 PyObject *getstate = NULL, *state = NULL, *names = NULL;
2552 PyObject *slots = NULL, *listitems = NULL, *dictitems = NULL;
2553 PyObject *copy_reg = NULL, *newobj = NULL, *res = NULL;
2554 int i, n;
2555
2556 cls = PyObject_GetAttrString(obj, "__class__");
2557 if (cls == NULL)
2558 return NULL;
2559
2560 getnewargs = PyObject_GetAttrString(obj, "__getnewargs__");
2561 if (getnewargs != NULL) {
2562 args = PyObject_CallObject(getnewargs, NULL);
2563 Py_DECREF(getnewargs);
2564 if (args != NULL && !PyTuple_Check(args)) {
2565 PyErr_SetString(PyExc_TypeError,
2566 "__getnewargs__ should return a tuple");
2567 goto end;
2568 }
2569 }
2570 else {
2571 PyErr_Clear();
2572 args = PyTuple_New(0);
2573 }
2574 if (args == NULL)
2575 goto end;
2576
2577 getstate = PyObject_GetAttrString(obj, "__getstate__");
2578 if (getstate != NULL) {
2579 state = PyObject_CallObject(getstate, NULL);
2580 Py_DECREF(getstate);
Neal Norwitze2fdc612003-06-08 13:19:58 +00002581 if (state == NULL)
2582 goto end;
Guido van Rossum036f9992003-02-21 22:02:54 +00002583 }
2584 else {
2585 state = PyObject_GetAttrString(obj, "__dict__");
2586 if (state == NULL) {
2587 PyErr_Clear();
2588 state = Py_None;
2589 Py_INCREF(state);
2590 }
2591 names = slotnames(cls);
2592 if (names == NULL)
2593 goto end;
2594 if (names != Py_None) {
2595 assert(PyList_Check(names));
2596 slots = PyDict_New();
2597 if (slots == NULL)
2598 goto end;
2599 n = 0;
2600 /* Can't pre-compute the list size; the list
2601 is stored on the class so accessible to other
2602 threads, which may be run by DECREF */
2603 for (i = 0; i < PyList_GET_SIZE(names); i++) {
2604 PyObject *name, *value;
2605 name = PyList_GET_ITEM(names, i);
2606 value = PyObject_GetAttr(obj, name);
2607 if (value == NULL)
2608 PyErr_Clear();
2609 else {
2610 int err = PyDict_SetItem(slots, name,
2611 value);
2612 Py_DECREF(value);
2613 if (err)
2614 goto end;
2615 n++;
2616 }
2617 }
2618 if (n) {
2619 state = Py_BuildValue("(NO)", state, slots);
2620 if (state == NULL)
2621 goto end;
2622 }
2623 }
2624 }
2625
2626 if (!PyList_Check(obj)) {
2627 listitems = Py_None;
2628 Py_INCREF(listitems);
2629 }
2630 else {
2631 listitems = PyObject_GetIter(obj);
2632 if (listitems == NULL)
2633 goto end;
2634 }
2635
2636 if (!PyDict_Check(obj)) {
2637 dictitems = Py_None;
2638 Py_INCREF(dictitems);
2639 }
2640 else {
2641 dictitems = PyObject_CallMethod(obj, "iteritems", "");
2642 if (dictitems == NULL)
2643 goto end;
2644 }
2645
2646 copy_reg = import_copy_reg();
2647 if (copy_reg == NULL)
2648 goto end;
2649 newobj = PyObject_GetAttrString(copy_reg, "__newobj__");
2650 if (newobj == NULL)
2651 goto end;
2652
2653 n = PyTuple_GET_SIZE(args);
2654 args2 = PyTuple_New(n+1);
2655 if (args2 == NULL)
2656 goto end;
2657 PyTuple_SET_ITEM(args2, 0, cls);
2658 cls = NULL;
2659 for (i = 0; i < n; i++) {
2660 PyObject *v = PyTuple_GET_ITEM(args, i);
2661 Py_INCREF(v);
2662 PyTuple_SET_ITEM(args2, i+1, v);
2663 }
2664
Raymond Hettinger8ae46892003-10-12 19:09:37 +00002665 res = PyTuple_Pack(5, newobj, args2, state, listitems, dictitems);
Guido van Rossum036f9992003-02-21 22:02:54 +00002666
2667 end:
2668 Py_XDECREF(cls);
2669 Py_XDECREF(args);
2670 Py_XDECREF(args2);
Jeremy Hyltond06483c2003-04-09 21:01:42 +00002671 Py_XDECREF(slots);
Guido van Rossum036f9992003-02-21 22:02:54 +00002672 Py_XDECREF(state);
2673 Py_XDECREF(names);
2674 Py_XDECREF(listitems);
2675 Py_XDECREF(dictitems);
2676 Py_XDECREF(copy_reg);
2677 Py_XDECREF(newobj);
2678 return res;
2679}
2680
2681static PyObject *
2682object_reduce_ex(PyObject *self, PyObject *args)
2683{
2684 /* Call copy_reg._reduce_ex(self, proto) */
2685 PyObject *reduce, *copy_reg, *res;
2686 int proto = 0;
2687
2688 if (!PyArg_ParseTuple(args, "|i:__reduce_ex__", &proto))
2689 return NULL;
2690
2691 reduce = PyObject_GetAttrString(self, "__reduce__");
2692 if (reduce == NULL)
2693 PyErr_Clear();
2694 else {
2695 PyObject *cls, *clsreduce, *objreduce;
2696 int override;
2697 cls = PyObject_GetAttrString(self, "__class__");
2698 if (cls == NULL) {
2699 Py_DECREF(reduce);
2700 return NULL;
2701 }
2702 clsreduce = PyObject_GetAttrString(cls, "__reduce__");
2703 Py_DECREF(cls);
2704 if (clsreduce == NULL) {
2705 Py_DECREF(reduce);
2706 return NULL;
2707 }
2708 objreduce = PyDict_GetItemString(PyBaseObject_Type.tp_dict,
2709 "__reduce__");
2710 override = (clsreduce != objreduce);
2711 Py_DECREF(clsreduce);
2712 if (override) {
2713 res = PyObject_CallObject(reduce, NULL);
2714 Py_DECREF(reduce);
2715 return res;
2716 }
2717 else
2718 Py_DECREF(reduce);
2719 }
2720
2721 if (proto >= 2)
2722 return reduce_2(self);
2723
2724 copy_reg = import_copy_reg();
Guido van Rossum3926a632001-09-25 16:25:58 +00002725 if (!copy_reg)
2726 return NULL;
Guido van Rossum036f9992003-02-21 22:02:54 +00002727
Guido van Rossumc53f0092003-02-18 22:05:12 +00002728 res = PyEval_CallMethod(copy_reg, "_reduce_ex", "(Oi)", self, proto);
Guido van Rossum3926a632001-09-25 16:25:58 +00002729 Py_DECREF(copy_reg);
Guido van Rossum036f9992003-02-21 22:02:54 +00002730
Guido van Rossum3926a632001-09-25 16:25:58 +00002731 return res;
2732}
2733
2734static PyMethodDef object_methods[] = {
Guido van Rossumc53f0092003-02-18 22:05:12 +00002735 {"__reduce_ex__", object_reduce_ex, METH_VARARGS,
2736 PyDoc_STR("helper for pickle")},
2737 {"__reduce__", object_reduce_ex, METH_VARARGS,
Neal Norwitz5dc2a372002-08-13 22:19:13 +00002738 PyDoc_STR("helper for pickle")},
Guido van Rossum3926a632001-09-25 16:25:58 +00002739 {0}
2740};
2741
Guido van Rossum036f9992003-02-21 22:02:54 +00002742
Tim Peters6d6c1a32001-08-02 04:15:00 +00002743PyTypeObject PyBaseObject_Type = {
2744 PyObject_HEAD_INIT(&PyType_Type)
2745 0, /* ob_size */
2746 "object", /* tp_name */
2747 sizeof(PyObject), /* tp_basicsize */
2748 0, /* tp_itemsize */
2749 (destructor)object_dealloc, /* tp_dealloc */
2750 0, /* tp_print */
2751 0, /* tp_getattr */
2752 0, /* tp_setattr */
2753 0, /* tp_compare */
Guido van Rossumb8f63662001-08-15 23:57:02 +00002754 object_repr, /* tp_repr */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002755 0, /* tp_as_number */
2756 0, /* tp_as_sequence */
2757 0, /* tp_as_mapping */
Guido van Rossumb8f63662001-08-15 23:57:02 +00002758 object_hash, /* tp_hash */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002759 0, /* tp_call */
Guido van Rossumb8f63662001-08-15 23:57:02 +00002760 object_str, /* tp_str */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002761 PyObject_GenericGetAttr, /* tp_getattro */
Guido van Rossum13d52f02001-08-10 21:24:08 +00002762 PyObject_GenericSetAttr, /* tp_setattro */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002763 0, /* tp_as_buffer */
2764 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
Neal Norwitz5dc2a372002-08-13 22:19:13 +00002765 PyDoc_STR("The most base type"), /* tp_doc */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002766 0, /* tp_traverse */
2767 0, /* tp_clear */
2768 0, /* tp_richcompare */
2769 0, /* tp_weaklistoffset */
2770 0, /* tp_iter */
2771 0, /* tp_iternext */
Guido van Rossum3926a632001-09-25 16:25:58 +00002772 object_methods, /* tp_methods */
Guido van Rossum5c294fb2001-09-25 03:43:42 +00002773 0, /* tp_members */
2774 object_getsets, /* tp_getset */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002775 0, /* tp_base */
2776 0, /* tp_dict */
2777 0, /* tp_descr_get */
2778 0, /* tp_descr_set */
2779 0, /* tp_dictoffset */
2780 object_init, /* tp_init */
2781 PyType_GenericAlloc, /* tp_alloc */
Guido van Rossum298e4212003-02-13 16:30:16 +00002782 object_new, /* tp_new */
Neil Schemenauer09a2ae52002-04-12 03:06:53 +00002783 PyObject_Del, /* tp_free */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002784};
2785
2786
2787/* Initialize the __dict__ in a type object */
2788
2789static int
2790add_methods(PyTypeObject *type, PyMethodDef *meth)
2791{
Guido van Rossum687ae002001-10-15 22:03:32 +00002792 PyObject *dict = type->tp_dict;
Tim Peters6d6c1a32001-08-02 04:15:00 +00002793
2794 for (; meth->ml_name != NULL; meth++) {
2795 PyObject *descr;
2796 if (PyDict_GetItemString(dict, meth->ml_name))
2797 continue;
Fred Drake7bf97152002-03-28 05:33:33 +00002798 if (meth->ml_flags & METH_CLASS) {
2799 if (meth->ml_flags & METH_STATIC) {
2800 PyErr_SetString(PyExc_ValueError,
2801 "method cannot be both class and static");
2802 return -1;
2803 }
Tim Petersbca1cbc2002-12-09 22:56:13 +00002804 descr = PyDescr_NewClassMethod(type, meth);
Fred Drake7bf97152002-03-28 05:33:33 +00002805 }
2806 else if (meth->ml_flags & METH_STATIC) {
Guido van Rossum9af48ff2003-02-11 17:12:46 +00002807 PyObject *cfunc = PyCFunction_New(meth, NULL);
2808 if (cfunc == NULL)
2809 return -1;
2810 descr = PyStaticMethod_New(cfunc);
2811 Py_DECREF(cfunc);
Fred Drake7bf97152002-03-28 05:33:33 +00002812 }
2813 else {
2814 descr = PyDescr_NewMethod(type, meth);
2815 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00002816 if (descr == NULL)
2817 return -1;
Fred Drake7bf97152002-03-28 05:33:33 +00002818 if (PyDict_SetItemString(dict, meth->ml_name, descr) < 0)
Tim Peters6d6c1a32001-08-02 04:15:00 +00002819 return -1;
2820 Py_DECREF(descr);
2821 }
2822 return 0;
2823}
2824
2825static int
Guido van Rossum6f799372001-09-20 20:46:19 +00002826add_members(PyTypeObject *type, PyMemberDef *memb)
Tim Peters6d6c1a32001-08-02 04:15:00 +00002827{
Guido van Rossum687ae002001-10-15 22:03:32 +00002828 PyObject *dict = type->tp_dict;
Tim Peters6d6c1a32001-08-02 04:15:00 +00002829
2830 for (; memb->name != NULL; memb++) {
2831 PyObject *descr;
2832 if (PyDict_GetItemString(dict, memb->name))
2833 continue;
2834 descr = PyDescr_NewMember(type, memb);
2835 if (descr == NULL)
2836 return -1;
2837 if (PyDict_SetItemString(dict, memb->name, descr) < 0)
2838 return -1;
2839 Py_DECREF(descr);
2840 }
2841 return 0;
2842}
2843
2844static int
Guido van Rossum32d34c82001-09-20 21:45:26 +00002845add_getset(PyTypeObject *type, PyGetSetDef *gsp)
Tim Peters6d6c1a32001-08-02 04:15:00 +00002846{
Guido van Rossum687ae002001-10-15 22:03:32 +00002847 PyObject *dict = type->tp_dict;
Tim Peters6d6c1a32001-08-02 04:15:00 +00002848
2849 for (; gsp->name != NULL; gsp++) {
2850 PyObject *descr;
2851 if (PyDict_GetItemString(dict, gsp->name))
2852 continue;
2853 descr = PyDescr_NewGetSet(type, gsp);
2854
2855 if (descr == NULL)
2856 return -1;
2857 if (PyDict_SetItemString(dict, gsp->name, descr) < 0)
2858 return -1;
2859 Py_DECREF(descr);
2860 }
2861 return 0;
2862}
2863
Guido van Rossum13d52f02001-08-10 21:24:08 +00002864static void
2865inherit_special(PyTypeObject *type, PyTypeObject *base)
Tim Peters6d6c1a32001-08-02 04:15:00 +00002866{
2867 int oldsize, newsize;
2868
Guido van Rossum13d52f02001-08-10 21:24:08 +00002869 /* Special flag magic */
2870 if (!type->tp_as_buffer && base->tp_as_buffer) {
2871 type->tp_flags &= ~Py_TPFLAGS_HAVE_GETCHARBUFFER;
2872 type->tp_flags |=
2873 base->tp_flags & Py_TPFLAGS_HAVE_GETCHARBUFFER;
2874 }
2875 if (!type->tp_as_sequence && base->tp_as_sequence) {
2876 type->tp_flags &= ~Py_TPFLAGS_HAVE_SEQUENCE_IN;
2877 type->tp_flags |= base->tp_flags & Py_TPFLAGS_HAVE_SEQUENCE_IN;
2878 }
2879 if ((type->tp_flags & Py_TPFLAGS_HAVE_INPLACEOPS) !=
2880 (base->tp_flags & Py_TPFLAGS_HAVE_INPLACEOPS)) {
2881 if ((!type->tp_as_number && base->tp_as_number) ||
2882 (!type->tp_as_sequence && base->tp_as_sequence)) {
2883 type->tp_flags &= ~Py_TPFLAGS_HAVE_INPLACEOPS;
2884 if (!type->tp_as_number && !type->tp_as_sequence) {
2885 type->tp_flags |= base->tp_flags &
2886 Py_TPFLAGS_HAVE_INPLACEOPS;
2887 }
2888 }
2889 /* Wow */
2890 }
2891 if (!type->tp_as_number && base->tp_as_number) {
2892 type->tp_flags &= ~Py_TPFLAGS_CHECKTYPES;
2893 type->tp_flags |= base->tp_flags & Py_TPFLAGS_CHECKTYPES;
2894 }
2895
2896 /* Copying basicsize is connected to the GC flags */
Neil Schemenauerc806c882001-08-29 23:54:54 +00002897 oldsize = base->tp_basicsize;
2898 newsize = type->tp_basicsize ? type->tp_basicsize : oldsize;
2899 if (!(type->tp_flags & Py_TPFLAGS_HAVE_GC) &&
2900 (base->tp_flags & Py_TPFLAGS_HAVE_GC) &&
Guido van Rossum13d52f02001-08-10 21:24:08 +00002901 (type->tp_flags & Py_TPFLAGS_HAVE_RICHCOMPARE/*GC slots exist*/) &&
2902 (!type->tp_traverse && !type->tp_clear)) {
Neil Schemenauerc806c882001-08-29 23:54:54 +00002903 type->tp_flags |= Py_TPFLAGS_HAVE_GC;
Guido van Rossum13d52f02001-08-10 21:24:08 +00002904 if (type->tp_traverse == NULL)
2905 type->tp_traverse = base->tp_traverse;
2906 if (type->tp_clear == NULL)
2907 type->tp_clear = base->tp_clear;
2908 }
2909 if (type->tp_flags & base->tp_flags & Py_TPFLAGS_HAVE_CLASS) {
Guido van Rossumf884b742001-12-17 17:14:22 +00002910 /* The condition below could use some explanation.
2911 It appears that tp_new is not inherited for static types
2912 whose base class is 'object'; this seems to be a precaution
2913 so that old extension types don't suddenly become
2914 callable (object.__new__ wouldn't insure the invariants
2915 that the extension type's own factory function ensures).
2916 Heap types, of course, are under our control, so they do
2917 inherit tp_new; static extension types that specify some
2918 other built-in type as the default are considered
2919 new-style-aware so they also inherit object.__new__. */
Guido van Rossum13d52f02001-08-10 21:24:08 +00002920 if (base != &PyBaseObject_Type ||
2921 (type->tp_flags & Py_TPFLAGS_HEAPTYPE)) {
2922 if (type->tp_new == NULL)
2923 type->tp_new = base->tp_new;
2924 }
2925 }
Neil Schemenauerc806c882001-08-29 23:54:54 +00002926 type->tp_basicsize = newsize;
Guido van Rossum4dd64ab2001-08-14 20:04:48 +00002927
2928 /* Copy other non-function slots */
2929
2930#undef COPYVAL
2931#define COPYVAL(SLOT) \
2932 if (type->SLOT == 0) type->SLOT = base->SLOT
2933
2934 COPYVAL(tp_itemsize);
2935 if (type->tp_flags & base->tp_flags & Py_TPFLAGS_HAVE_WEAKREFS) {
2936 COPYVAL(tp_weaklistoffset);
2937 }
2938 if (type->tp_flags & base->tp_flags & Py_TPFLAGS_HAVE_CLASS) {
2939 COPYVAL(tp_dictoffset);
2940 }
Guido van Rossum13d52f02001-08-10 21:24:08 +00002941}
2942
2943static void
2944inherit_slots(PyTypeObject *type, PyTypeObject *base)
2945{
2946 PyTypeObject *basebase;
2947
2948#undef SLOTDEFINED
Tim Peters6d6c1a32001-08-02 04:15:00 +00002949#undef COPYSLOT
2950#undef COPYNUM
2951#undef COPYSEQ
2952#undef COPYMAP
Guido van Rossum5af588b2001-10-12 14:13:21 +00002953#undef COPYBUF
Guido van Rossum13d52f02001-08-10 21:24:08 +00002954
2955#define SLOTDEFINED(SLOT) \
2956 (base->SLOT != 0 && \
2957 (basebase == NULL || base->SLOT != basebase->SLOT))
2958
Tim Peters6d6c1a32001-08-02 04:15:00 +00002959#define COPYSLOT(SLOT) \
Guido van Rossum13d52f02001-08-10 21:24:08 +00002960 if (!type->SLOT && SLOTDEFINED(SLOT)) type->SLOT = base->SLOT
Tim Peters6d6c1a32001-08-02 04:15:00 +00002961
2962#define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
2963#define COPYSEQ(SLOT) COPYSLOT(tp_as_sequence->SLOT)
2964#define COPYMAP(SLOT) COPYSLOT(tp_as_mapping->SLOT)
Tim Petersfc57ccb2001-10-12 02:38:24 +00002965#define COPYBUF(SLOT) COPYSLOT(tp_as_buffer->SLOT)
Tim Peters6d6c1a32001-08-02 04:15:00 +00002966
Guido van Rossum13d52f02001-08-10 21:24:08 +00002967 /* This won't inherit indirect slots (from tp_as_number etc.)
2968 if type doesn't provide the space. */
2969
2970 if (type->tp_as_number != NULL && base->tp_as_number != NULL) {
2971 basebase = base->tp_base;
2972 if (basebase->tp_as_number == NULL)
2973 basebase = NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00002974 COPYNUM(nb_add);
2975 COPYNUM(nb_subtract);
2976 COPYNUM(nb_multiply);
2977 COPYNUM(nb_divide);
2978 COPYNUM(nb_remainder);
2979 COPYNUM(nb_divmod);
2980 COPYNUM(nb_power);
2981 COPYNUM(nb_negative);
2982 COPYNUM(nb_positive);
2983 COPYNUM(nb_absolute);
2984 COPYNUM(nb_nonzero);
2985 COPYNUM(nb_invert);
2986 COPYNUM(nb_lshift);
2987 COPYNUM(nb_rshift);
2988 COPYNUM(nb_and);
2989 COPYNUM(nb_xor);
2990 COPYNUM(nb_or);
2991 COPYNUM(nb_coerce);
2992 COPYNUM(nb_int);
2993 COPYNUM(nb_long);
2994 COPYNUM(nb_float);
2995 COPYNUM(nb_oct);
2996 COPYNUM(nb_hex);
2997 COPYNUM(nb_inplace_add);
2998 COPYNUM(nb_inplace_subtract);
2999 COPYNUM(nb_inplace_multiply);
3000 COPYNUM(nb_inplace_divide);
3001 COPYNUM(nb_inplace_remainder);
3002 COPYNUM(nb_inplace_power);
3003 COPYNUM(nb_inplace_lshift);
3004 COPYNUM(nb_inplace_rshift);
3005 COPYNUM(nb_inplace_and);
3006 COPYNUM(nb_inplace_xor);
3007 COPYNUM(nb_inplace_or);
Guido van Rossumdc91b992001-08-08 22:26:22 +00003008 if (base->tp_flags & Py_TPFLAGS_CHECKTYPES) {
3009 COPYNUM(nb_true_divide);
3010 COPYNUM(nb_floor_divide);
3011 COPYNUM(nb_inplace_true_divide);
3012 COPYNUM(nb_inplace_floor_divide);
3013 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00003014 }
3015
Guido van Rossum13d52f02001-08-10 21:24:08 +00003016 if (type->tp_as_sequence != NULL && base->tp_as_sequence != NULL) {
3017 basebase = base->tp_base;
3018 if (basebase->tp_as_sequence == NULL)
3019 basebase = NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003020 COPYSEQ(sq_length);
3021 COPYSEQ(sq_concat);
3022 COPYSEQ(sq_repeat);
3023 COPYSEQ(sq_item);
3024 COPYSEQ(sq_slice);
3025 COPYSEQ(sq_ass_item);
3026 COPYSEQ(sq_ass_slice);
3027 COPYSEQ(sq_contains);
3028 COPYSEQ(sq_inplace_concat);
3029 COPYSEQ(sq_inplace_repeat);
3030 }
3031
Guido van Rossum13d52f02001-08-10 21:24:08 +00003032 if (type->tp_as_mapping != NULL && base->tp_as_mapping != NULL) {
3033 basebase = base->tp_base;
3034 if (basebase->tp_as_mapping == NULL)
3035 basebase = NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003036 COPYMAP(mp_length);
3037 COPYMAP(mp_subscript);
3038 COPYMAP(mp_ass_subscript);
3039 }
3040
Tim Petersfc57ccb2001-10-12 02:38:24 +00003041 if (type->tp_as_buffer != NULL && base->tp_as_buffer != NULL) {
3042 basebase = base->tp_base;
3043 if (basebase->tp_as_buffer == NULL)
3044 basebase = NULL;
3045 COPYBUF(bf_getreadbuffer);
3046 COPYBUF(bf_getwritebuffer);
3047 COPYBUF(bf_getsegcount);
3048 COPYBUF(bf_getcharbuffer);
3049 }
3050
Guido van Rossum13d52f02001-08-10 21:24:08 +00003051 basebase = base->tp_base;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003052
Tim Peters6d6c1a32001-08-02 04:15:00 +00003053 COPYSLOT(tp_dealloc);
3054 COPYSLOT(tp_print);
3055 if (type->tp_getattr == NULL && type->tp_getattro == NULL) {
3056 type->tp_getattr = base->tp_getattr;
3057 type->tp_getattro = base->tp_getattro;
3058 }
3059 if (type->tp_setattr == NULL && type->tp_setattro == NULL) {
3060 type->tp_setattr = base->tp_setattr;
3061 type->tp_setattro = base->tp_setattro;
3062 }
3063 /* tp_compare see tp_richcompare */
3064 COPYSLOT(tp_repr);
Guido van Rossumb8f63662001-08-15 23:57:02 +00003065 /* tp_hash see tp_richcompare */
Tim Peters6d6c1a32001-08-02 04:15:00 +00003066 COPYSLOT(tp_call);
3067 COPYSLOT(tp_str);
Tim Peters6d6c1a32001-08-02 04:15:00 +00003068 if (type->tp_flags & base->tp_flags & Py_TPFLAGS_HAVE_RICHCOMPARE) {
Guido van Rossumb8f63662001-08-15 23:57:02 +00003069 if (type->tp_compare == NULL &&
3070 type->tp_richcompare == NULL &&
3071 type->tp_hash == NULL)
3072 {
Tim Peters6d6c1a32001-08-02 04:15:00 +00003073 type->tp_compare = base->tp_compare;
3074 type->tp_richcompare = base->tp_richcompare;
Guido van Rossumb8f63662001-08-15 23:57:02 +00003075 type->tp_hash = base->tp_hash;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003076 }
3077 }
3078 else {
3079 COPYSLOT(tp_compare);
3080 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00003081 if (type->tp_flags & base->tp_flags & Py_TPFLAGS_HAVE_ITER) {
3082 COPYSLOT(tp_iter);
3083 COPYSLOT(tp_iternext);
3084 }
3085 if (type->tp_flags & base->tp_flags & Py_TPFLAGS_HAVE_CLASS) {
3086 COPYSLOT(tp_descr_get);
3087 COPYSLOT(tp_descr_set);
3088 COPYSLOT(tp_dictoffset);
3089 COPYSLOT(tp_init);
3090 COPYSLOT(tp_alloc);
Guido van Rossumcc8fe042002-04-05 17:10:16 +00003091 COPYSLOT(tp_is_gc);
Tim Peters3cfe7542003-05-21 21:29:48 +00003092 if ((type->tp_flags & Py_TPFLAGS_HAVE_GC) ==
3093 (base->tp_flags & Py_TPFLAGS_HAVE_GC)) {
3094 /* They agree about gc. */
3095 COPYSLOT(tp_free);
3096 }
3097 else if ((type->tp_flags & Py_TPFLAGS_HAVE_GC) &&
3098 type->tp_free == NULL &&
3099 base->tp_free == _PyObject_Del) {
3100 /* A bit of magic to plug in the correct default
3101 * tp_free function when a derived class adds gc,
3102 * didn't define tp_free, and the base uses the
3103 * default non-gc tp_free.
3104 */
3105 type->tp_free = PyObject_GC_Del;
3106 }
3107 /* else they didn't agree about gc, and there isn't something
3108 * obvious to be done -- the type is on its own.
3109 */
Tim Peters6d6c1a32001-08-02 04:15:00 +00003110 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00003111}
3112
Jeremy Hylton938ace62002-07-17 16:30:39 +00003113static int add_operators(PyTypeObject *);
Guido van Rossum13d52f02001-08-10 21:24:08 +00003114
Tim Peters6d6c1a32001-08-02 04:15:00 +00003115int
Guido van Rossum528b7eb2001-08-07 17:24:28 +00003116PyType_Ready(PyTypeObject *type)
Tim Peters6d6c1a32001-08-02 04:15:00 +00003117{
Guido van Rossum2f3ca6e2001-10-15 21:05:10 +00003118 PyObject *dict, *bases;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003119 PyTypeObject *base;
3120 int i, n;
3121
Guido van Rossumcab05802002-06-10 15:29:03 +00003122 if (type->tp_flags & Py_TPFLAGS_READY) {
3123 assert(type->tp_dict != NULL);
Guido van Rossumd614f972001-08-10 17:39:49 +00003124 return 0;
Guido van Rossumcab05802002-06-10 15:29:03 +00003125 }
Guido van Rossumd614f972001-08-10 17:39:49 +00003126 assert((type->tp_flags & Py_TPFLAGS_READYING) == 0);
Guido van Rossumd614f972001-08-10 17:39:49 +00003127
3128 type->tp_flags |= Py_TPFLAGS_READYING;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003129
Tim Peters36eb4df2003-03-23 03:33:13 +00003130#ifdef Py_TRACE_REFS
3131 /* PyType_Ready is the closest thing we have to a choke point
3132 * for type objects, so is the best place I can think of to try
3133 * to get type objects into the doubly-linked list of all objects.
3134 * Still, not all type objects go thru PyType_Ready.
3135 */
Tim Peters7571a0f2003-03-23 17:52:28 +00003136 _Py_AddToAllObjects((PyObject *)type, 0);
Tim Peters36eb4df2003-03-23 03:33:13 +00003137#endif
3138
Tim Peters6d6c1a32001-08-02 04:15:00 +00003139 /* Initialize tp_base (defaults to BaseObject unless that's us) */
3140 base = type->tp_base;
3141 if (base == NULL && type != &PyBaseObject_Type)
3142 base = type->tp_base = &PyBaseObject_Type;
3143
Guido van Rossum323a9cf2002-08-14 17:26:30 +00003144 /* Initialize the base class */
3145 if (base && base->tp_dict == NULL) {
3146 if (PyType_Ready(base) < 0)
3147 goto error;
3148 }
3149
Guido van Rossum0986d822002-04-08 01:38:42 +00003150 /* Initialize ob_type if NULL. This means extensions that want to be
3151 compilable separately on Windows can call PyType_Ready() instead of
3152 initializing the ob_type field of their type objects. */
3153 if (type->ob_type == NULL)
3154 type->ob_type = base->ob_type;
3155
Tim Peters6d6c1a32001-08-02 04:15:00 +00003156 /* Initialize tp_bases */
3157 bases = type->tp_bases;
3158 if (bases == NULL) {
3159 if (base == NULL)
3160 bases = PyTuple_New(0);
3161 else
Raymond Hettinger8ae46892003-10-12 19:09:37 +00003162 bases = PyTuple_Pack(1, base);
Tim Peters6d6c1a32001-08-02 04:15:00 +00003163 if (bases == NULL)
Guido van Rossumd614f972001-08-10 17:39:49 +00003164 goto error;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003165 type->tp_bases = bases;
3166 }
3167
Guido van Rossum687ae002001-10-15 22:03:32 +00003168 /* Initialize tp_dict */
3169 dict = type->tp_dict;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003170 if (dict == NULL) {
3171 dict = PyDict_New();
3172 if (dict == NULL)
Guido van Rossumd614f972001-08-10 17:39:49 +00003173 goto error;
Guido van Rossum687ae002001-10-15 22:03:32 +00003174 type->tp_dict = dict;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003175 }
3176
Guido van Rossum687ae002001-10-15 22:03:32 +00003177 /* Add type-specific descriptors to tp_dict */
Tim Peters6d6c1a32001-08-02 04:15:00 +00003178 if (add_operators(type) < 0)
Guido van Rossumd614f972001-08-10 17:39:49 +00003179 goto error;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003180 if (type->tp_methods != NULL) {
3181 if (add_methods(type, type->tp_methods) < 0)
Guido van Rossumd614f972001-08-10 17:39:49 +00003182 goto error;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003183 }
3184 if (type->tp_members != NULL) {
3185 if (add_members(type, type->tp_members) < 0)
Guido van Rossumd614f972001-08-10 17:39:49 +00003186 goto error;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003187 }
3188 if (type->tp_getset != NULL) {
3189 if (add_getset(type, type->tp_getset) < 0)
Guido van Rossumd614f972001-08-10 17:39:49 +00003190 goto error;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003191 }
3192
Tim Peters6d6c1a32001-08-02 04:15:00 +00003193 /* Calculate method resolution order */
3194 if (mro_internal(type) < 0) {
Guido van Rossumd614f972001-08-10 17:39:49 +00003195 goto error;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003196 }
3197
Guido van Rossum13d52f02001-08-10 21:24:08 +00003198 /* Inherit special flags from dominant base */
3199 if (type->tp_base != NULL)
3200 inherit_special(type, type->tp_base);
3201
Tim Peters6d6c1a32001-08-02 04:15:00 +00003202 /* Initialize tp_dict properly */
Guido van Rossum2f3ca6e2001-10-15 21:05:10 +00003203 bases = type->tp_mro;
3204 assert(bases != NULL);
3205 assert(PyTuple_Check(bases));
3206 n = PyTuple_GET_SIZE(bases);
3207 for (i = 1; i < n; i++) {
Tim Petersa91e9642001-11-14 23:32:33 +00003208 PyObject *b = PyTuple_GET_ITEM(bases, i);
3209 if (PyType_Check(b))
3210 inherit_slots(type, (PyTypeObject *)b);
Guido van Rossum7b9144b2001-10-09 19:39:46 +00003211 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00003212
Tim Peters3cfe7542003-05-21 21:29:48 +00003213 /* Sanity check for tp_free. */
3214 if (PyType_IS_GC(type) && (type->tp_flags & Py_TPFLAGS_BASETYPE) &&
3215 (type->tp_free == NULL || type->tp_free == PyObject_Del)) {
3216 /* This base class needs to call tp_free, but doesn't have
3217 * one, or its tp_free is for non-gc'ed objects.
3218 */
3219 PyErr_Format(PyExc_TypeError, "type '%.100s' participates in "
3220 "gc and is a base type but has inappropriate "
3221 "tp_free slot",
3222 type->tp_name);
3223 goto error;
3224 }
3225
Martin v. Löwisf9bd6b02002-02-18 17:46:48 +00003226 /* if the type dictionary doesn't contain a __doc__, set it from
3227 the tp_doc slot.
3228 */
3229 if (PyDict_GetItemString(type->tp_dict, "__doc__") == NULL) {
3230 if (type->tp_doc != NULL) {
3231 PyObject *doc = PyString_FromString(type->tp_doc);
3232 PyDict_SetItemString(type->tp_dict, "__doc__", doc);
3233 Py_DECREF(doc);
3234 } else {
Guido van Rossumd4641072002-04-03 02:13:37 +00003235 PyDict_SetItemString(type->tp_dict,
3236 "__doc__", Py_None);
Martin v. Löwisf9bd6b02002-02-18 17:46:48 +00003237 }
3238 }
3239
Guido van Rossum13d52f02001-08-10 21:24:08 +00003240 /* Some more special stuff */
3241 base = type->tp_base;
3242 if (base != NULL) {
3243 if (type->tp_as_number == NULL)
3244 type->tp_as_number = base->tp_as_number;
3245 if (type->tp_as_sequence == NULL)
3246 type->tp_as_sequence = base->tp_as_sequence;
3247 if (type->tp_as_mapping == NULL)
3248 type->tp_as_mapping = base->tp_as_mapping;
Guido van Rossumeea47182003-02-11 20:39:59 +00003249 if (type->tp_as_buffer == NULL)
3250 type->tp_as_buffer = base->tp_as_buffer;
Guido van Rossum13d52f02001-08-10 21:24:08 +00003251 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00003252
Guido van Rossum1c450732001-10-08 15:18:27 +00003253 /* Link into each base class's list of subclasses */
3254 bases = type->tp_bases;
3255 n = PyTuple_GET_SIZE(bases);
3256 for (i = 0; i < n; i++) {
Tim Petersa91e9642001-11-14 23:32:33 +00003257 PyObject *b = PyTuple_GET_ITEM(bases, i);
3258 if (PyType_Check(b) &&
3259 add_subclass((PyTypeObject *)b, type) < 0)
Guido van Rossum1c450732001-10-08 15:18:27 +00003260 goto error;
3261 }
3262
Guido van Rossum13d52f02001-08-10 21:24:08 +00003263 /* All done -- set the ready flag */
Guido van Rossumd614f972001-08-10 17:39:49 +00003264 assert(type->tp_dict != NULL);
3265 type->tp_flags =
3266 (type->tp_flags & ~Py_TPFLAGS_READYING) | Py_TPFLAGS_READY;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003267 return 0;
Guido van Rossumd614f972001-08-10 17:39:49 +00003268
3269 error:
3270 type->tp_flags &= ~Py_TPFLAGS_READYING;
3271 return -1;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003272}
3273
Guido van Rossum1c450732001-10-08 15:18:27 +00003274static int
3275add_subclass(PyTypeObject *base, PyTypeObject *type)
3276{
3277 int i;
3278 PyObject *list, *ref, *new;
3279
3280 list = base->tp_subclasses;
3281 if (list == NULL) {
3282 base->tp_subclasses = list = PyList_New(0);
3283 if (list == NULL)
3284 return -1;
3285 }
3286 assert(PyList_Check(list));
3287 new = PyWeakref_NewRef((PyObject *)type, NULL);
3288 i = PyList_GET_SIZE(list);
3289 while (--i >= 0) {
3290 ref = PyList_GET_ITEM(list, i);
3291 assert(PyWeakref_CheckRef(ref));
Guido van Rossum3930bc32002-10-18 13:51:49 +00003292 if (PyWeakref_GET_OBJECT(ref) == Py_None)
3293 return PyList_SetItem(list, i, new);
Guido van Rossum1c450732001-10-08 15:18:27 +00003294 }
3295 i = PyList_Append(list, new);
3296 Py_DECREF(new);
3297 return i;
3298}
3299
Michael W. Hudson98bbc492002-11-26 14:47:27 +00003300static void
3301remove_subclass(PyTypeObject *base, PyTypeObject *type)
3302{
3303 int i;
3304 PyObject *list, *ref;
3305
3306 list = base->tp_subclasses;
3307 if (list == NULL) {
3308 return;
3309 }
3310 assert(PyList_Check(list));
3311 i = PyList_GET_SIZE(list);
3312 while (--i >= 0) {
3313 ref = PyList_GET_ITEM(list, i);
3314 assert(PyWeakref_CheckRef(ref));
3315 if (PyWeakref_GET_OBJECT(ref) == (PyObject*)type) {
3316 /* this can't fail, right? */
3317 PySequence_DelItem(list, i);
3318 return;
3319 }
3320 }
3321}
Tim Peters6d6c1a32001-08-02 04:15:00 +00003322
3323/* Generic wrappers for overloadable 'operators' such as __getitem__ */
3324
3325/* There's a wrapper *function* for each distinct function typedef used
3326 for type object slots (e.g. binaryfunc, ternaryfunc, etc.). There's a
3327 wrapper *table* for each distinct operation (e.g. __len__, __add__).
3328 Most tables have only one entry; the tables for binary operators have two
3329 entries, one regular and one with reversed arguments. */
3330
3331static PyObject *
3332wrap_inquiry(PyObject *self, PyObject *args, void *wrapped)
3333{
3334 inquiry func = (inquiry)wrapped;
3335 int res;
3336
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003337 if (!PyArg_UnpackTuple(args, "", 0, 0))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003338 return NULL;
3339 res = (*func)(self);
3340 if (res == -1 && PyErr_Occurred())
3341 return NULL;
3342 return PyInt_FromLong((long)res);
3343}
3344
Tim Peters6d6c1a32001-08-02 04:15:00 +00003345static PyObject *
Raymond Hettingerf34f2642003-10-11 17:29:04 +00003346wrap_inquirypred(PyObject *self, PyObject *args, void *wrapped)
3347{
3348 inquiry func = (inquiry)wrapped;
3349 int res;
3350
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003351 if (!PyArg_UnpackTuple(args, "", 0, 0))
Raymond Hettingerf34f2642003-10-11 17:29:04 +00003352 return NULL;
3353 res = (*func)(self);
3354 if (res == -1 && PyErr_Occurred())
3355 return NULL;
3356 return PyBool_FromLong((long)res);
3357}
3358
3359static PyObject *
Tim Peters6d6c1a32001-08-02 04:15:00 +00003360wrap_binaryfunc(PyObject *self, PyObject *args, void *wrapped)
3361{
3362 binaryfunc func = (binaryfunc)wrapped;
3363 PyObject *other;
3364
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003365 if (!PyArg_UnpackTuple(args, "", 1, 1, &other))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003366 return NULL;
3367 return (*func)(self, other);
3368}
3369
3370static PyObject *
Guido van Rossum0eb2a6e2001-10-09 11:07:24 +00003371wrap_binaryfunc_l(PyObject *self, PyObject *args, void *wrapped)
3372{
3373 binaryfunc func = (binaryfunc)wrapped;
3374 PyObject *other;
3375
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003376 if (!PyArg_UnpackTuple(args, "", 1, 1, &other))
Guido van Rossum0eb2a6e2001-10-09 11:07:24 +00003377 return NULL;
3378 if (!(self->ob_type->tp_flags & Py_TPFLAGS_CHECKTYPES) &&
Guido van Rossum7b9144b2001-10-09 19:39:46 +00003379 !PyType_IsSubtype(other->ob_type, self->ob_type)) {
Guido van Rossum0eb2a6e2001-10-09 11:07:24 +00003380 Py_INCREF(Py_NotImplemented);
3381 return Py_NotImplemented;
3382 }
3383 return (*func)(self, other);
3384}
3385
3386static PyObject *
Tim Peters6d6c1a32001-08-02 04:15:00 +00003387wrap_binaryfunc_r(PyObject *self, PyObject *args, void *wrapped)
3388{
3389 binaryfunc func = (binaryfunc)wrapped;
3390 PyObject *other;
3391
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003392 if (!PyArg_UnpackTuple(args, "", 1, 1, &other))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003393 return NULL;
Guido van Rossum0eb2a6e2001-10-09 11:07:24 +00003394 if (!(self->ob_type->tp_flags & Py_TPFLAGS_CHECKTYPES) &&
Guido van Rossum7b9144b2001-10-09 19:39:46 +00003395 !PyType_IsSubtype(other->ob_type, self->ob_type)) {
Guido van Rossum0eb2a6e2001-10-09 11:07:24 +00003396 Py_INCREF(Py_NotImplemented);
3397 return Py_NotImplemented;
3398 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00003399 return (*func)(other, self);
3400}
3401
Guido van Rossum2ed6bf82001-09-27 20:30:07 +00003402static PyObject *
3403wrap_coercefunc(PyObject *self, PyObject *args, void *wrapped)
3404{
3405 coercion func = (coercion)wrapped;
3406 PyObject *other, *res;
3407 int ok;
3408
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003409 if (!PyArg_UnpackTuple(args, "", 1, 1, &other))
Guido van Rossum2ed6bf82001-09-27 20:30:07 +00003410 return NULL;
3411 ok = func(&self, &other);
3412 if (ok < 0)
3413 return NULL;
3414 if (ok > 0) {
3415 Py_INCREF(Py_NotImplemented);
3416 return Py_NotImplemented;
3417 }
3418 res = PyTuple_New(2);
3419 if (res == NULL) {
3420 Py_DECREF(self);
3421 Py_DECREF(other);
3422 return NULL;
3423 }
3424 PyTuple_SET_ITEM(res, 0, self);
3425 PyTuple_SET_ITEM(res, 1, other);
3426 return res;
3427}
3428
Tim Peters6d6c1a32001-08-02 04:15:00 +00003429static PyObject *
3430wrap_ternaryfunc(PyObject *self, PyObject *args, void *wrapped)
3431{
3432 ternaryfunc func = (ternaryfunc)wrapped;
3433 PyObject *other;
3434 PyObject *third = Py_None;
3435
3436 /* Note: This wrapper only works for __pow__() */
3437
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003438 if (!PyArg_UnpackTuple(args, "", 1, 2, &other, &third))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003439 return NULL;
3440 return (*func)(self, other, third);
3441}
3442
Guido van Rossum9bea3ab2001-09-28 22:58:52 +00003443static PyObject *
3444wrap_ternaryfunc_r(PyObject *self, PyObject *args, void *wrapped)
3445{
3446 ternaryfunc func = (ternaryfunc)wrapped;
3447 PyObject *other;
3448 PyObject *third = Py_None;
3449
3450 /* Note: This wrapper only works for __pow__() */
3451
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003452 if (!PyArg_UnpackTuple(args, "", 1, 2, &other, &third))
Guido van Rossum9bea3ab2001-09-28 22:58:52 +00003453 return NULL;
3454 return (*func)(other, self, third);
3455}
3456
Tim Peters6d6c1a32001-08-02 04:15:00 +00003457static PyObject *
3458wrap_unaryfunc(PyObject *self, PyObject *args, void *wrapped)
3459{
3460 unaryfunc func = (unaryfunc)wrapped;
3461
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003462 if (!PyArg_UnpackTuple(args, "", 0, 0))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003463 return NULL;
3464 return (*func)(self);
3465}
3466
Tim Peters6d6c1a32001-08-02 04:15:00 +00003467static PyObject *
3468wrap_intargfunc(PyObject *self, PyObject *args, void *wrapped)
3469{
3470 intargfunc func = (intargfunc)wrapped;
3471 int i;
3472
3473 if (!PyArg_ParseTuple(args, "i", &i))
3474 return NULL;
3475 return (*func)(self, i);
3476}
3477
Guido van Rossum5d815f32001-08-17 21:57:47 +00003478static int
3479getindex(PyObject *self, PyObject *arg)
3480{
3481 int i;
3482
3483 i = PyInt_AsLong(arg);
3484 if (i == -1 && PyErr_Occurred())
3485 return -1;
3486 if (i < 0) {
3487 PySequenceMethods *sq = self->ob_type->tp_as_sequence;
3488 if (sq && sq->sq_length) {
3489 int n = (*sq->sq_length)(self);
3490 if (n < 0)
3491 return -1;
3492 i += n;
3493 }
3494 }
3495 return i;
3496}
3497
3498static PyObject *
3499wrap_sq_item(PyObject *self, PyObject *args, void *wrapped)
3500{
3501 intargfunc func = (intargfunc)wrapped;
3502 PyObject *arg;
3503 int i;
3504
Guido van Rossumf4593e02001-10-03 12:09:30 +00003505 if (PyTuple_GET_SIZE(args) == 1) {
3506 arg = PyTuple_GET_ITEM(args, 0);
3507 i = getindex(self, arg);
3508 if (i == -1 && PyErr_Occurred())
3509 return NULL;
3510 return (*func)(self, i);
3511 }
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003512 PyArg_UnpackTuple(args, "", 1, 1, &arg);
Guido van Rossumf4593e02001-10-03 12:09:30 +00003513 assert(PyErr_Occurred());
3514 return NULL;
Guido van Rossum5d815f32001-08-17 21:57:47 +00003515}
3516
Tim Peters6d6c1a32001-08-02 04:15:00 +00003517static PyObject *
3518wrap_intintargfunc(PyObject *self, PyObject *args, void *wrapped)
3519{
3520 intintargfunc func = (intintargfunc)wrapped;
3521 int i, j;
3522
3523 if (!PyArg_ParseTuple(args, "ii", &i, &j))
3524 return NULL;
3525 return (*func)(self, i, j);
3526}
3527
Tim Peters6d6c1a32001-08-02 04:15:00 +00003528static PyObject *
Guido van Rossum5d815f32001-08-17 21:57:47 +00003529wrap_sq_setitem(PyObject *self, PyObject *args, void *wrapped)
Tim Peters6d6c1a32001-08-02 04:15:00 +00003530{
3531 intobjargproc func = (intobjargproc)wrapped;
3532 int i, res;
Guido van Rossum5d815f32001-08-17 21:57:47 +00003533 PyObject *arg, *value;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003534
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003535 if (!PyArg_UnpackTuple(args, "", 2, 2, &arg, &value))
Guido van Rossum5d815f32001-08-17 21:57:47 +00003536 return NULL;
3537 i = getindex(self, arg);
3538 if (i == -1 && PyErr_Occurred())
Tim Peters6d6c1a32001-08-02 04:15:00 +00003539 return NULL;
3540 res = (*func)(self, i, value);
3541 if (res == -1 && PyErr_Occurred())
3542 return NULL;
3543 Py_INCREF(Py_None);
3544 return Py_None;
3545}
3546
Guido van Rossum2b8d7bd2001-08-02 15:31:58 +00003547static PyObject *
Guido van Rossum5d815f32001-08-17 21:57:47 +00003548wrap_sq_delitem(PyObject *self, PyObject *args, void *wrapped)
Guido van Rossum2b8d7bd2001-08-02 15:31:58 +00003549{
3550 intobjargproc func = (intobjargproc)wrapped;
3551 int i, res;
Guido van Rossum5d815f32001-08-17 21:57:47 +00003552 PyObject *arg;
Guido van Rossum2b8d7bd2001-08-02 15:31:58 +00003553
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003554 if (!PyArg_UnpackTuple(args, "", 1, 1, &arg))
Guido van Rossum5d815f32001-08-17 21:57:47 +00003555 return NULL;
3556 i = getindex(self, arg);
3557 if (i == -1 && PyErr_Occurred())
Guido van Rossum2b8d7bd2001-08-02 15:31:58 +00003558 return NULL;
3559 res = (*func)(self, i, NULL);
3560 if (res == -1 && PyErr_Occurred())
3561 return NULL;
3562 Py_INCREF(Py_None);
3563 return Py_None;
3564}
3565
Tim Peters6d6c1a32001-08-02 04:15:00 +00003566static PyObject *
3567wrap_intintobjargproc(PyObject *self, PyObject *args, void *wrapped)
3568{
3569 intintobjargproc func = (intintobjargproc)wrapped;
3570 int i, j, res;
3571 PyObject *value;
3572
3573 if (!PyArg_ParseTuple(args, "iiO", &i, &j, &value))
3574 return NULL;
3575 res = (*func)(self, i, j, value);
3576 if (res == -1 && PyErr_Occurred())
3577 return NULL;
3578 Py_INCREF(Py_None);
3579 return Py_None;
3580}
3581
Guido van Rossum7b9144b2001-10-09 19:39:46 +00003582static PyObject *
3583wrap_delslice(PyObject *self, PyObject *args, void *wrapped)
3584{
3585 intintobjargproc func = (intintobjargproc)wrapped;
3586 int i, j, res;
3587
3588 if (!PyArg_ParseTuple(args, "ii", &i, &j))
3589 return NULL;
3590 res = (*func)(self, i, j, NULL);
3591 if (res == -1 && PyErr_Occurred())
3592 return NULL;
3593 Py_INCREF(Py_None);
3594 return Py_None;
3595}
3596
Tim Peters6d6c1a32001-08-02 04:15:00 +00003597/* XXX objobjproc is a misnomer; should be objargpred */
3598static PyObject *
3599wrap_objobjproc(PyObject *self, PyObject *args, void *wrapped)
3600{
3601 objobjproc func = (objobjproc)wrapped;
3602 int res;
Guido van Rossum22c3dda2003-10-09 03:46:35 +00003603 PyObject *value;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003604
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003605 if (!PyArg_UnpackTuple(args, "", 1, 1, &value))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003606 return NULL;
3607 res = (*func)(self, value);
3608 if (res == -1 && PyErr_Occurred())
3609 return NULL;
Guido van Rossum22c3dda2003-10-09 03:46:35 +00003610 else
3611 return PyBool_FromLong(res);
Tim Peters6d6c1a32001-08-02 04:15:00 +00003612}
3613
Tim Peters6d6c1a32001-08-02 04:15:00 +00003614static PyObject *
3615wrap_objobjargproc(PyObject *self, PyObject *args, void *wrapped)
3616{
3617 objobjargproc func = (objobjargproc)wrapped;
3618 int res;
3619 PyObject *key, *value;
3620
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003621 if (!PyArg_UnpackTuple(args, "", 2, 2, &key, &value))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003622 return NULL;
3623 res = (*func)(self, key, value);
3624 if (res == -1 && PyErr_Occurred())
3625 return NULL;
3626 Py_INCREF(Py_None);
3627 return Py_None;
3628}
3629
Guido van Rossum2b8d7bd2001-08-02 15:31:58 +00003630static PyObject *
3631wrap_delitem(PyObject *self, PyObject *args, void *wrapped)
3632{
3633 objobjargproc func = (objobjargproc)wrapped;
3634 int res;
3635 PyObject *key;
3636
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003637 if (!PyArg_UnpackTuple(args, "", 1, 1, &key))
Guido van Rossum2b8d7bd2001-08-02 15:31:58 +00003638 return NULL;
3639 res = (*func)(self, key, NULL);
3640 if (res == -1 && PyErr_Occurred())
3641 return NULL;
3642 Py_INCREF(Py_None);
3643 return Py_None;
3644}
3645
Tim Peters6d6c1a32001-08-02 04:15:00 +00003646static PyObject *
3647wrap_cmpfunc(PyObject *self, PyObject *args, void *wrapped)
3648{
3649 cmpfunc func = (cmpfunc)wrapped;
3650 int res;
3651 PyObject *other;
3652
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003653 if (!PyArg_UnpackTuple(args, "", 1, 1, &other))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003654 return NULL;
Guido van Rossum3d45d8f2001-09-24 18:47:40 +00003655 if (other->ob_type->tp_compare != func &&
3656 !PyType_IsSubtype(other->ob_type, self->ob_type)) {
Guido van Rossumceccae52001-09-18 20:03:57 +00003657 PyErr_Format(
3658 PyExc_TypeError,
3659 "%s.__cmp__(x,y) requires y to be a '%s', not a '%s'",
3660 self->ob_type->tp_name,
3661 self->ob_type->tp_name,
3662 other->ob_type->tp_name);
3663 return NULL;
3664 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00003665 res = (*func)(self, other);
3666 if (PyErr_Occurred())
3667 return NULL;
3668 return PyInt_FromLong((long)res);
3669}
3670
Guido van Rossum4dcdb782003-04-14 21:46:03 +00003671/* Helper to check for object.__setattr__ or __delattr__ applied to a type.
Guido van Rossum52b27052003-04-15 20:05:10 +00003672 This is called the Carlo Verre hack after its discoverer. */
Guido van Rossum4dcdb782003-04-14 21:46:03 +00003673static int
3674hackcheck(PyObject *self, setattrofunc func, char *what)
3675{
3676 PyTypeObject *type = self->ob_type;
3677 while (type && type->tp_flags & Py_TPFLAGS_HEAPTYPE)
3678 type = type->tp_base;
3679 if (type->tp_setattro != func) {
3680 PyErr_Format(PyExc_TypeError,
3681 "can't apply this %s to %s object",
3682 what,
3683 type->tp_name);
3684 return 0;
3685 }
3686 return 1;
3687}
3688
Tim Peters6d6c1a32001-08-02 04:15:00 +00003689static PyObject *
3690wrap_setattr(PyObject *self, PyObject *args, void *wrapped)
3691{
3692 setattrofunc func = (setattrofunc)wrapped;
3693 int res;
3694 PyObject *name, *value;
3695
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003696 if (!PyArg_UnpackTuple(args, "", 2, 2, &name, &value))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003697 return NULL;
Guido van Rossum4dcdb782003-04-14 21:46:03 +00003698 if (!hackcheck(self, func, "__setattr__"))
3699 return NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003700 res = (*func)(self, name, value);
3701 if (res < 0)
3702 return NULL;
3703 Py_INCREF(Py_None);
3704 return Py_None;
3705}
3706
3707static PyObject *
3708wrap_delattr(PyObject *self, PyObject *args, void *wrapped)
3709{
3710 setattrofunc func = (setattrofunc)wrapped;
3711 int res;
3712 PyObject *name;
3713
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003714 if (!PyArg_UnpackTuple(args, "", 1, 1, &name))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003715 return NULL;
Guido van Rossum4dcdb782003-04-14 21:46:03 +00003716 if (!hackcheck(self, func, "__delattr__"))
3717 return NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003718 res = (*func)(self, name, NULL);
3719 if (res < 0)
3720 return NULL;
3721 Py_INCREF(Py_None);
3722 return Py_None;
3723}
3724
Tim Peters6d6c1a32001-08-02 04:15:00 +00003725static PyObject *
3726wrap_hashfunc(PyObject *self, PyObject *args, void *wrapped)
3727{
3728 hashfunc func = (hashfunc)wrapped;
3729 long res;
3730
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003731 if (!PyArg_UnpackTuple(args, "", 0, 0))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003732 return NULL;
3733 res = (*func)(self);
3734 if (res == -1 && PyErr_Occurred())
3735 return NULL;
3736 return PyInt_FromLong(res);
3737}
3738
Tim Peters6d6c1a32001-08-02 04:15:00 +00003739static PyObject *
Guido van Rossumc8e56452001-10-22 00:43:43 +00003740wrap_call(PyObject *self, PyObject *args, void *wrapped, PyObject *kwds)
Tim Peters6d6c1a32001-08-02 04:15:00 +00003741{
3742 ternaryfunc func = (ternaryfunc)wrapped;
3743
Guido van Rossumc8e56452001-10-22 00:43:43 +00003744 return (*func)(self, args, kwds);
Tim Peters6d6c1a32001-08-02 04:15:00 +00003745}
3746
Tim Peters6d6c1a32001-08-02 04:15:00 +00003747static PyObject *
3748wrap_richcmpfunc(PyObject *self, PyObject *args, void *wrapped, int op)
3749{
3750 richcmpfunc func = (richcmpfunc)wrapped;
3751 PyObject *other;
3752
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003753 if (!PyArg_UnpackTuple(args, "", 1, 1, &other))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003754 return NULL;
3755 return (*func)(self, other, op);
3756}
3757
3758#undef RICHCMP_WRAPPER
3759#define RICHCMP_WRAPPER(NAME, OP) \
3760static PyObject * \
3761richcmp_##NAME(PyObject *self, PyObject *args, void *wrapped) \
3762{ \
3763 return wrap_richcmpfunc(self, args, wrapped, OP); \
3764}
3765
Jack Jansen8e938b42001-08-08 15:29:49 +00003766RICHCMP_WRAPPER(lt, Py_LT)
3767RICHCMP_WRAPPER(le, Py_LE)
3768RICHCMP_WRAPPER(eq, Py_EQ)
3769RICHCMP_WRAPPER(ne, Py_NE)
3770RICHCMP_WRAPPER(gt, Py_GT)
3771RICHCMP_WRAPPER(ge, Py_GE)
Tim Peters6d6c1a32001-08-02 04:15:00 +00003772
Tim Peters6d6c1a32001-08-02 04:15:00 +00003773static PyObject *
3774wrap_next(PyObject *self, PyObject *args, void *wrapped)
3775{
3776 unaryfunc func = (unaryfunc)wrapped;
3777 PyObject *res;
3778
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003779 if (!PyArg_UnpackTuple(args, "", 0, 0))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003780 return NULL;
3781 res = (*func)(self);
3782 if (res == NULL && !PyErr_Occurred())
3783 PyErr_SetNone(PyExc_StopIteration);
3784 return res;
3785}
3786
Tim Peters6d6c1a32001-08-02 04:15:00 +00003787static PyObject *
3788wrap_descr_get(PyObject *self, PyObject *args, void *wrapped)
3789{
3790 descrgetfunc func = (descrgetfunc)wrapped;
3791 PyObject *obj;
3792 PyObject *type = NULL;
3793
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003794 if (!PyArg_UnpackTuple(args, "", 1, 2, &obj, &type))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003795 return NULL;
Guido van Rossum82ed25c2003-02-11 16:25:43 +00003796 if (obj == Py_None)
3797 obj = NULL;
3798 if (type == Py_None)
3799 type = NULL;
3800 if (type == NULL &&obj == NULL) {
3801 PyErr_SetString(PyExc_TypeError,
3802 "__get__(None, None) is invalid");
3803 return NULL;
3804 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00003805 return (*func)(self, obj, type);
3806}
3807
Tim Peters6d6c1a32001-08-02 04:15:00 +00003808static PyObject *
Guido van Rossum7b9144b2001-10-09 19:39:46 +00003809wrap_descr_set(PyObject *self, PyObject *args, void *wrapped)
Tim Peters6d6c1a32001-08-02 04:15:00 +00003810{
3811 descrsetfunc func = (descrsetfunc)wrapped;
3812 PyObject *obj, *value;
3813 int ret;
3814
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003815 if (!PyArg_UnpackTuple(args, "", 2, 2, &obj, &value))
Tim Peters6d6c1a32001-08-02 04:15:00 +00003816 return NULL;
3817 ret = (*func)(self, obj, value);
3818 if (ret < 0)
3819 return NULL;
3820 Py_INCREF(Py_None);
3821 return Py_None;
3822}
Guido van Rossum22b13872002-08-06 21:41:44 +00003823
Guido van Rossum0dbab4c52002-08-01 14:39:25 +00003824static PyObject *
3825wrap_descr_delete(PyObject *self, PyObject *args, void *wrapped)
3826{
3827 descrsetfunc func = (descrsetfunc)wrapped;
3828 PyObject *obj;
3829 int ret;
3830
Raymond Hettinger56bb16f2003-10-11 19:32:18 +00003831 if (!PyArg_UnpackTuple(args, "", 1, 1, &obj))
Guido van Rossum0dbab4c52002-08-01 14:39:25 +00003832 return NULL;
3833 ret = (*func)(self, obj, NULL);
3834 if (ret < 0)
3835 return NULL;
3836 Py_INCREF(Py_None);
3837 return Py_None;
3838}
Tim Peters6d6c1a32001-08-02 04:15:00 +00003839
Tim Peters6d6c1a32001-08-02 04:15:00 +00003840static PyObject *
Guido van Rossumc8e56452001-10-22 00:43:43 +00003841wrap_init(PyObject *self, PyObject *args, void *wrapped, PyObject *kwds)
Tim Peters6d6c1a32001-08-02 04:15:00 +00003842{
3843 initproc func = (initproc)wrapped;
3844
Guido van Rossumc8e56452001-10-22 00:43:43 +00003845 if (func(self, args, kwds) < 0)
Tim Peters6d6c1a32001-08-02 04:15:00 +00003846 return NULL;
3847 Py_INCREF(Py_None);
3848 return Py_None;
3849}
3850
Tim Peters6d6c1a32001-08-02 04:15:00 +00003851static PyObject *
Guido van Rossum0d231ed2001-08-06 16:50:37 +00003852tp_new_wrapper(PyObject *self, PyObject *args, PyObject *kwds)
Tim Peters6d6c1a32001-08-02 04:15:00 +00003853{
Barry Warsaw60f01882001-08-22 19:24:42 +00003854 PyTypeObject *type, *subtype, *staticbase;
Guido van Rossum0d231ed2001-08-06 16:50:37 +00003855 PyObject *arg0, *res;
3856
3857 if (self == NULL || !PyType_Check(self))
3858 Py_FatalError("__new__() called with non-type 'self'");
3859 type = (PyTypeObject *)self;
3860 if (!PyTuple_Check(args) || PyTuple_GET_SIZE(args) < 1) {
Barry Warsaw60f01882001-08-22 19:24:42 +00003861 PyErr_Format(PyExc_TypeError,
3862 "%s.__new__(): not enough arguments",
3863 type->tp_name);
Guido van Rossum0d231ed2001-08-06 16:50:37 +00003864 return NULL;
3865 }
3866 arg0 = PyTuple_GET_ITEM(args, 0);
3867 if (!PyType_Check(arg0)) {
Barry Warsaw60f01882001-08-22 19:24:42 +00003868 PyErr_Format(PyExc_TypeError,
3869 "%s.__new__(X): X is not a type object (%s)",
3870 type->tp_name,
3871 arg0->ob_type->tp_name);
Guido van Rossum0d231ed2001-08-06 16:50:37 +00003872 return NULL;
3873 }
3874 subtype = (PyTypeObject *)arg0;
3875 if (!PyType_IsSubtype(subtype, type)) {
Barry Warsaw60f01882001-08-22 19:24:42 +00003876 PyErr_Format(PyExc_TypeError,
3877 "%s.__new__(%s): %s is not a subtype of %s",
3878 type->tp_name,
3879 subtype->tp_name,
3880 subtype->tp_name,
3881 type->tp_name);
Guido van Rossum0d231ed2001-08-06 16:50:37 +00003882 return NULL;
3883 }
Barry Warsaw60f01882001-08-22 19:24:42 +00003884
3885 /* Check that the use doesn't do something silly and unsafe like
Tim Petersa427a2b2001-10-29 22:25:45 +00003886 object.__new__(dict). To do this, we check that the
Barry Warsaw60f01882001-08-22 19:24:42 +00003887 most derived base that's not a heap type is this type. */
3888 staticbase = subtype;
3889 while (staticbase && (staticbase->tp_flags & Py_TPFLAGS_HEAPTYPE))
3890 staticbase = staticbase->tp_base;
Guido van Rossuma8c60f42001-09-14 19:43:36 +00003891 if (staticbase->tp_new != type->tp_new) {
Barry Warsaw60f01882001-08-22 19:24:42 +00003892 PyErr_Format(PyExc_TypeError,
3893 "%s.__new__(%s) is not safe, use %s.__new__()",
3894 type->tp_name,
3895 subtype->tp_name,
3896 staticbase == NULL ? "?" : staticbase->tp_name);
3897 return NULL;
3898 }
3899
Guido van Rossum0d231ed2001-08-06 16:50:37 +00003900 args = PyTuple_GetSlice(args, 1, PyTuple_GET_SIZE(args));
3901 if (args == NULL)
3902 return NULL;
3903 res = type->tp_new(subtype, args, kwds);
3904 Py_DECREF(args);
3905 return res;
Tim Peters6d6c1a32001-08-02 04:15:00 +00003906}
3907
Guido van Rossum0d231ed2001-08-06 16:50:37 +00003908static struct PyMethodDef tp_new_methoddef[] = {
3909 {"__new__", (PyCFunction)tp_new_wrapper, METH_KEYWORDS,
Neal Norwitz5dc2a372002-08-13 22:19:13 +00003910 PyDoc_STR("T.__new__(S, ...) -> "
3911 "a new object with type S, a subtype of T")},
Tim Peters6d6c1a32001-08-02 04:15:00 +00003912 {0}
3913};
3914
3915static int
Guido van Rossum0d231ed2001-08-06 16:50:37 +00003916add_tp_new_wrapper(PyTypeObject *type)
3917{
Guido van Rossumf040ede2001-08-07 16:40:56 +00003918 PyObject *func;
Guido van Rossum0d231ed2001-08-06 16:50:37 +00003919
Guido van Rossum687ae002001-10-15 22:03:32 +00003920 if (PyDict_GetItemString(type->tp_dict, "__new__") != NULL)
Guido van Rossumf040ede2001-08-07 16:40:56 +00003921 return 0;
3922 func = PyCFunction_New(tp_new_methoddef, (PyObject *)type);
Guido van Rossum0d231ed2001-08-06 16:50:37 +00003923 if (func == NULL)
3924 return -1;
Guido van Rossum687ae002001-10-15 22:03:32 +00003925 return PyDict_SetItemString(type->tp_dict, "__new__", func);
Guido van Rossum0d231ed2001-08-06 16:50:37 +00003926}
3927
Guido van Rossumf040ede2001-08-07 16:40:56 +00003928/* Slot wrappers that call the corresponding __foo__ slot. See comments
3929 below at override_slots() for more explanation. */
Tim Peters6d6c1a32001-08-02 04:15:00 +00003930
Guido van Rossumdc91b992001-08-08 22:26:22 +00003931#define SLOT0(FUNCNAME, OPSTR) \
Tim Peters6d6c1a32001-08-02 04:15:00 +00003932static PyObject * \
Guido van Rossumdc91b992001-08-08 22:26:22 +00003933FUNCNAME(PyObject *self) \
Tim Peters6d6c1a32001-08-02 04:15:00 +00003934{ \
Guido van Rossum5592e4d2001-08-28 18:28:21 +00003935 static PyObject *cache_str; \
Guido van Rossum717ce002001-09-14 16:58:08 +00003936 return call_method(self, OPSTR, &cache_str, "()"); \
Tim Peters6d6c1a32001-08-02 04:15:00 +00003937}
3938
Guido van Rossumdc91b992001-08-08 22:26:22 +00003939#define SLOT1(FUNCNAME, OPSTR, ARG1TYPE, ARGCODES) \
Tim Peters6d6c1a32001-08-02 04:15:00 +00003940static PyObject * \
Guido van Rossumdc91b992001-08-08 22:26:22 +00003941FUNCNAME(PyObject *self, ARG1TYPE arg1) \
Tim Peters6d6c1a32001-08-02 04:15:00 +00003942{ \
Guido van Rossum2730b132001-08-28 18:22:14 +00003943 static PyObject *cache_str; \
Guido van Rossum717ce002001-09-14 16:58:08 +00003944 return call_method(self, OPSTR, &cache_str, "(" ARGCODES ")", arg1); \
Tim Peters6d6c1a32001-08-02 04:15:00 +00003945}
3946
Guido van Rossumcd118802003-01-06 22:57:47 +00003947/* Boolean helper for SLOT1BINFULL().
3948 right.__class__ is a nontrivial subclass of left.__class__. */
3949static int
3950method_is_overloaded(PyObject *left, PyObject *right, char *name)
3951{
3952 PyObject *a, *b;
3953 int ok;
3954
3955 b = PyObject_GetAttrString((PyObject *)(right->ob_type), name);
3956 if (b == NULL) {
3957 PyErr_Clear();
3958 /* If right doesn't have it, it's not overloaded */
3959 return 0;
3960 }
3961
3962 a = PyObject_GetAttrString((PyObject *)(left->ob_type), name);
3963 if (a == NULL) {
3964 PyErr_Clear();
3965 Py_DECREF(b);
3966 /* If right has it but left doesn't, it's overloaded */
3967 return 1;
3968 }
3969
3970 ok = PyObject_RichCompareBool(a, b, Py_NE);
3971 Py_DECREF(a);
3972 Py_DECREF(b);
3973 if (ok < 0) {
3974 PyErr_Clear();
3975 return 0;
3976 }
3977
3978 return ok;
3979}
3980
Guido van Rossumdc91b992001-08-08 22:26:22 +00003981
3982#define SLOT1BINFULL(FUNCNAME, TESTFUNC, SLOTNAME, OPSTR, ROPSTR) \
Tim Peters6d6c1a32001-08-02 04:15:00 +00003983static PyObject * \
Guido van Rossumdc91b992001-08-08 22:26:22 +00003984FUNCNAME(PyObject *self, PyObject *other) \
Tim Peters6d6c1a32001-08-02 04:15:00 +00003985{ \
Guido van Rossum2730b132001-08-28 18:22:14 +00003986 static PyObject *cache_str, *rcache_str; \
Guido van Rossum55f20992001-10-01 17:18:22 +00003987 int do_other = self->ob_type != other->ob_type && \
3988 other->ob_type->tp_as_number != NULL && \
3989 other->ob_type->tp_as_number->SLOTNAME == TESTFUNC; \
Guido van Rossumdc91b992001-08-08 22:26:22 +00003990 if (self->ob_type->tp_as_number != NULL && \
3991 self->ob_type->tp_as_number->SLOTNAME == TESTFUNC) { \
3992 PyObject *r; \
Guido van Rossum55f20992001-10-01 17:18:22 +00003993 if (do_other && \
Guido van Rossumcd118802003-01-06 22:57:47 +00003994 PyType_IsSubtype(other->ob_type, self->ob_type) && \
3995 method_is_overloaded(self, other, ROPSTR)) { \
Guido van Rossum55f20992001-10-01 17:18:22 +00003996 r = call_maybe( \
3997 other, ROPSTR, &rcache_str, "(O)", self); \
3998 if (r != Py_NotImplemented) \
3999 return r; \
4000 Py_DECREF(r); \
4001 do_other = 0; \
4002 } \
Guido van Rossumf21c6be2001-09-14 17:51:50 +00004003 r = call_maybe( \
Guido van Rossum717ce002001-09-14 16:58:08 +00004004 self, OPSTR, &cache_str, "(O)", other); \
Guido van Rossumdc91b992001-08-08 22:26:22 +00004005 if (r != Py_NotImplemented || \
4006 other->ob_type == self->ob_type) \
4007 return r; \
4008 Py_DECREF(r); \
4009 } \
Guido van Rossum55f20992001-10-01 17:18:22 +00004010 if (do_other) { \
Guido van Rossumf21c6be2001-09-14 17:51:50 +00004011 return call_maybe( \
Guido van Rossum717ce002001-09-14 16:58:08 +00004012 other, ROPSTR, &rcache_str, "(O)", self); \
Guido van Rossumdc91b992001-08-08 22:26:22 +00004013 } \
4014 Py_INCREF(Py_NotImplemented); \
4015 return Py_NotImplemented; \
4016}
4017
4018#define SLOT1BIN(FUNCNAME, SLOTNAME, OPSTR, ROPSTR) \
4019 SLOT1BINFULL(FUNCNAME, FUNCNAME, SLOTNAME, OPSTR, ROPSTR)
4020
4021#define SLOT2(FUNCNAME, OPSTR, ARG1TYPE, ARG2TYPE, ARGCODES) \
4022static PyObject * \
4023FUNCNAME(PyObject *self, ARG1TYPE arg1, ARG2TYPE arg2) \
4024{ \
Guido van Rossum2730b132001-08-28 18:22:14 +00004025 static PyObject *cache_str; \
Guido van Rossum717ce002001-09-14 16:58:08 +00004026 return call_method(self, OPSTR, &cache_str, \
4027 "(" ARGCODES ")", arg1, arg2); \
Tim Peters6d6c1a32001-08-02 04:15:00 +00004028}
4029
4030static int
4031slot_sq_length(PyObject *self)
4032{
Guido van Rossum2730b132001-08-28 18:22:14 +00004033 static PyObject *len_str;
Guido van Rossum717ce002001-09-14 16:58:08 +00004034 PyObject *res = call_method(self, "__len__", &len_str, "()");
Guido van Rossum26111622001-10-01 16:42:49 +00004035 int len;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004036
4037 if (res == NULL)
4038 return -1;
Guido van Rossum26111622001-10-01 16:42:49 +00004039 len = (int)PyInt_AsLong(res);
4040 Py_DECREF(res);
Jeremy Hylton73a088e2002-07-25 16:43:29 +00004041 if (len == -1 && PyErr_Occurred())
4042 return -1;
Jeremy Hyltonf20fcf92002-07-25 16:06:15 +00004043 if (len < 0) {
Guido van Rossum22b13872002-08-06 21:41:44 +00004044 PyErr_SetString(PyExc_ValueError,
Jeremy Hyltonf20fcf92002-07-25 16:06:15 +00004045 "__len__() should return >= 0");
4046 return -1;
4047 }
Guido van Rossum26111622001-10-01 16:42:49 +00004048 return len;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004049}
4050
Guido van Rossumdc91b992001-08-08 22:26:22 +00004051SLOT1(slot_sq_concat, "__add__", PyObject *, "O")
4052SLOT1(slot_sq_repeat, "__mul__", int, "i")
Guido van Rossumf4593e02001-10-03 12:09:30 +00004053
4054/* Super-optimized version of slot_sq_item.
4055 Other slots could do the same... */
4056static PyObject *
4057slot_sq_item(PyObject *self, int i)
4058{
4059 static PyObject *getitem_str;
4060 PyObject *func, *args = NULL, *ival = NULL, *retval = NULL;
4061 descrgetfunc f;
4062
4063 if (getitem_str == NULL) {
4064 getitem_str = PyString_InternFromString("__getitem__");
4065 if (getitem_str == NULL)
4066 return NULL;
4067 }
4068 func = _PyType_Lookup(self->ob_type, getitem_str);
4069 if (func != NULL) {
Guido van Rossumf4593e02001-10-03 12:09:30 +00004070 if ((f = func->ob_type->tp_descr_get) == NULL)
4071 Py_INCREF(func);
Neal Norwitz673cd822002-10-18 16:33:13 +00004072 else {
Guido van Rossumf4593e02001-10-03 12:09:30 +00004073 func = f(func, self, (PyObject *)(self->ob_type));
Neal Norwitz673cd822002-10-18 16:33:13 +00004074 if (func == NULL) {
4075 return NULL;
4076 }
4077 }
Guido van Rossumf4593e02001-10-03 12:09:30 +00004078 ival = PyInt_FromLong(i);
4079 if (ival != NULL) {
4080 args = PyTuple_New(1);
4081 if (args != NULL) {
4082 PyTuple_SET_ITEM(args, 0, ival);
4083 retval = PyObject_Call(func, args, NULL);
4084 Py_XDECREF(args);
4085 Py_XDECREF(func);
4086 return retval;
4087 }
4088 }
4089 }
4090 else {
4091 PyErr_SetObject(PyExc_AttributeError, getitem_str);
4092 }
4093 Py_XDECREF(args);
4094 Py_XDECREF(ival);
4095 Py_XDECREF(func);
4096 return NULL;
4097}
4098
Guido van Rossumdc91b992001-08-08 22:26:22 +00004099SLOT2(slot_sq_slice, "__getslice__", int, int, "ii")
Tim Peters6d6c1a32001-08-02 04:15:00 +00004100
4101static int
4102slot_sq_ass_item(PyObject *self, int index, PyObject *value)
4103{
4104 PyObject *res;
Guido van Rossum2730b132001-08-28 18:22:14 +00004105 static PyObject *delitem_str, *setitem_str;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004106
4107 if (value == NULL)
Guido van Rossum2730b132001-08-28 18:22:14 +00004108 res = call_method(self, "__delitem__", &delitem_str,
Guido van Rossum717ce002001-09-14 16:58:08 +00004109 "(i)", index);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004110 else
Guido van Rossum2730b132001-08-28 18:22:14 +00004111 res = call_method(self, "__setitem__", &setitem_str,
Guido van Rossum717ce002001-09-14 16:58:08 +00004112 "(iO)", index, value);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004113 if (res == NULL)
4114 return -1;
4115 Py_DECREF(res);
4116 return 0;
4117}
4118
4119static int
4120slot_sq_ass_slice(PyObject *self, int i, int j, PyObject *value)
4121{
4122 PyObject *res;
Guido van Rossum2730b132001-08-28 18:22:14 +00004123 static PyObject *delslice_str, *setslice_str;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004124
4125 if (value == NULL)
Guido van Rossum2730b132001-08-28 18:22:14 +00004126 res = call_method(self, "__delslice__", &delslice_str,
Guido van Rossum717ce002001-09-14 16:58:08 +00004127 "(ii)", i, j);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004128 else
Guido van Rossum2730b132001-08-28 18:22:14 +00004129 res = call_method(self, "__setslice__", &setslice_str,
Guido van Rossum717ce002001-09-14 16:58:08 +00004130 "(iiO)", i, j, value);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004131 if (res == NULL)
4132 return -1;
4133 Py_DECREF(res);
4134 return 0;
4135}
4136
4137static int
4138slot_sq_contains(PyObject *self, PyObject *value)
4139{
Guido van Rossumb8f63662001-08-15 23:57:02 +00004140 PyObject *func, *res, *args;
Tim Petersbf9b2442003-03-23 05:35:36 +00004141 int result = -1;
4142
Guido van Rossum60718732001-08-28 17:47:51 +00004143 static PyObject *contains_str;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004144
Guido van Rossum55f20992001-10-01 17:18:22 +00004145 func = lookup_maybe(self, "__contains__", &contains_str);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004146 if (func != NULL) {
Raymond Hettinger8ae46892003-10-12 19:09:37 +00004147 args = PyTuple_Pack(1, value);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004148 if (args == NULL)
4149 res = NULL;
4150 else {
Guido van Rossum717ce002001-09-14 16:58:08 +00004151 res = PyObject_Call(func, args, NULL);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004152 Py_DECREF(args);
4153 }
4154 Py_DECREF(func);
Tim Petersbf9b2442003-03-23 05:35:36 +00004155 if (res != NULL) {
4156 result = PyObject_IsTrue(res);
4157 Py_DECREF(res);
4158 }
Guido van Rossumb8f63662001-08-15 23:57:02 +00004159 }
Tim Petersbf9b2442003-03-23 05:35:36 +00004160 else if (! PyErr_Occurred()) {
4161 result = _PySequence_IterSearch(self, value,
4162 PY_ITERSEARCH_CONTAINS);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004163 }
Tim Petersbf9b2442003-03-23 05:35:36 +00004164 return result;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004165}
4166
Guido van Rossumdc91b992001-08-08 22:26:22 +00004167SLOT1(slot_sq_inplace_concat, "__iadd__", PyObject *, "O")
4168SLOT1(slot_sq_inplace_repeat, "__imul__", int, "i")
Tim Peters6d6c1a32001-08-02 04:15:00 +00004169
4170#define slot_mp_length slot_sq_length
4171
Guido van Rossumdc91b992001-08-08 22:26:22 +00004172SLOT1(slot_mp_subscript, "__getitem__", PyObject *, "O")
Tim Peters6d6c1a32001-08-02 04:15:00 +00004173
4174static int
4175slot_mp_ass_subscript(PyObject *self, PyObject *key, PyObject *value)
4176{
4177 PyObject *res;
Guido van Rossum2730b132001-08-28 18:22:14 +00004178 static PyObject *delitem_str, *setitem_str;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004179
4180 if (value == NULL)
Guido van Rossum2730b132001-08-28 18:22:14 +00004181 res = call_method(self, "__delitem__", &delitem_str,
Guido van Rossum717ce002001-09-14 16:58:08 +00004182 "(O)", key);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004183 else
Guido van Rossum2730b132001-08-28 18:22:14 +00004184 res = call_method(self, "__setitem__", &setitem_str,
Guido van Rossum717ce002001-09-14 16:58:08 +00004185 "(OO)", key, value);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004186 if (res == NULL)
4187 return -1;
4188 Py_DECREF(res);
4189 return 0;
4190}
4191
Guido van Rossumdc91b992001-08-08 22:26:22 +00004192SLOT1BIN(slot_nb_add, nb_add, "__add__", "__radd__")
4193SLOT1BIN(slot_nb_subtract, nb_subtract, "__sub__", "__rsub__")
4194SLOT1BIN(slot_nb_multiply, nb_multiply, "__mul__", "__rmul__")
4195SLOT1BIN(slot_nb_divide, nb_divide, "__div__", "__rdiv__")
4196SLOT1BIN(slot_nb_remainder, nb_remainder, "__mod__", "__rmod__")
4197SLOT1BIN(slot_nb_divmod, nb_divmod, "__divmod__", "__rdivmod__")
4198
Jeremy Hylton938ace62002-07-17 16:30:39 +00004199static PyObject *slot_nb_power(PyObject *, PyObject *, PyObject *);
Guido van Rossumdc91b992001-08-08 22:26:22 +00004200
4201SLOT1BINFULL(slot_nb_power_binary, slot_nb_power,
4202 nb_power, "__pow__", "__rpow__")
4203
4204static PyObject *
4205slot_nb_power(PyObject *self, PyObject *other, PyObject *modulus)
4206{
Guido van Rossum2730b132001-08-28 18:22:14 +00004207 static PyObject *pow_str;
4208
Guido van Rossumdc91b992001-08-08 22:26:22 +00004209 if (modulus == Py_None)
4210 return slot_nb_power_binary(self, other);
Guido van Rossum23094982002-06-10 14:30:43 +00004211 /* Three-arg power doesn't use __rpow__. But ternary_op
4212 can call this when the second argument's type uses
4213 slot_nb_power, so check before calling self.__pow__. */
4214 if (self->ob_type->tp_as_number != NULL &&
4215 self->ob_type->tp_as_number->nb_power == slot_nb_power) {
4216 return call_method(self, "__pow__", &pow_str,
4217 "(OO)", other, modulus);
4218 }
4219 Py_INCREF(Py_NotImplemented);
4220 return Py_NotImplemented;
Guido van Rossumdc91b992001-08-08 22:26:22 +00004221}
4222
4223SLOT0(slot_nb_negative, "__neg__")
4224SLOT0(slot_nb_positive, "__pos__")
4225SLOT0(slot_nb_absolute, "__abs__")
Tim Peters6d6c1a32001-08-02 04:15:00 +00004226
4227static int
4228slot_nb_nonzero(PyObject *self)
4229{
Tim Petersea7f75d2002-12-07 21:39:16 +00004230 PyObject *func, *args;
Guido van Rossum60718732001-08-28 17:47:51 +00004231 static PyObject *nonzero_str, *len_str;
Tim Petersea7f75d2002-12-07 21:39:16 +00004232 int result = -1;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004233
Guido van Rossum55f20992001-10-01 17:18:22 +00004234 func = lookup_maybe(self, "__nonzero__", &nonzero_str);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004235 if (func == NULL) {
Guido van Rossum55f20992001-10-01 17:18:22 +00004236 if (PyErr_Occurred())
Guido van Rossumb8f63662001-08-15 23:57:02 +00004237 return -1;
Guido van Rossum55f20992001-10-01 17:18:22 +00004238 func = lookup_maybe(self, "__len__", &len_str);
Tim Petersea7f75d2002-12-07 21:39:16 +00004239 if (func == NULL)
4240 return PyErr_Occurred() ? -1 : 1;
4241 }
4242 args = PyTuple_New(0);
4243 if (args != NULL) {
4244 PyObject *temp = PyObject_Call(func, args, NULL);
4245 Py_DECREF(args);
4246 if (temp != NULL) {
Jeremy Hylton3e3159c2003-06-27 17:38:27 +00004247 if (PyInt_CheckExact(temp) || PyBool_Check(temp))
Jeremy Hylton090a3492003-06-27 16:46:45 +00004248 result = PyObject_IsTrue(temp);
4249 else {
4250 PyErr_Format(PyExc_TypeError,
4251 "__nonzero__ should return "
4252 "bool or int, returned %s",
4253 temp->ob_type->tp_name);
Jeremy Hylton3e3159c2003-06-27 17:38:27 +00004254 result = -1;
Jeremy Hylton090a3492003-06-27 16:46:45 +00004255 }
Tim Petersea7f75d2002-12-07 21:39:16 +00004256 Py_DECREF(temp);
Guido van Rossum55f20992001-10-01 17:18:22 +00004257 }
Guido van Rossumb8f63662001-08-15 23:57:02 +00004258 }
Guido van Rossum55f20992001-10-01 17:18:22 +00004259 Py_DECREF(func);
Tim Petersea7f75d2002-12-07 21:39:16 +00004260 return result;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004261}
4262
Guido van Rossumdc91b992001-08-08 22:26:22 +00004263SLOT0(slot_nb_invert, "__invert__")
4264SLOT1BIN(slot_nb_lshift, nb_lshift, "__lshift__", "__rlshift__")
4265SLOT1BIN(slot_nb_rshift, nb_rshift, "__rshift__", "__rrshift__")
4266SLOT1BIN(slot_nb_and, nb_and, "__and__", "__rand__")
4267SLOT1BIN(slot_nb_xor, nb_xor, "__xor__", "__rxor__")
4268SLOT1BIN(slot_nb_or, nb_or, "__or__", "__ror__")
Guido van Rossum2ed6bf82001-09-27 20:30:07 +00004269
4270static int
4271slot_nb_coerce(PyObject **a, PyObject **b)
4272{
4273 static PyObject *coerce_str;
4274 PyObject *self = *a, *other = *b;
4275
4276 if (self->ob_type->tp_as_number != NULL &&
4277 self->ob_type->tp_as_number->nb_coerce == slot_nb_coerce) {
4278 PyObject *r;
4279 r = call_maybe(
4280 self, "__coerce__", &coerce_str, "(O)", other);
4281 if (r == NULL)
4282 return -1;
4283 if (r == Py_NotImplemented) {
4284 Py_DECREF(r);
Guido van Rossum2ed6bf82001-09-27 20:30:07 +00004285 }
Guido van Rossum55f20992001-10-01 17:18:22 +00004286 else {
4287 if (!PyTuple_Check(r) || PyTuple_GET_SIZE(r) != 2) {
4288 PyErr_SetString(PyExc_TypeError,
Guido van Rossum2ed6bf82001-09-27 20:30:07 +00004289 "__coerce__ didn't return a 2-tuple");
Guido van Rossum55f20992001-10-01 17:18:22 +00004290 Py_DECREF(r);
4291 return -1;
4292 }
4293 *a = PyTuple_GET_ITEM(r, 0);
4294 Py_INCREF(*a);
4295 *b = PyTuple_GET_ITEM(r, 1);
4296 Py_INCREF(*b);
Guido van Rossum2ed6bf82001-09-27 20:30:07 +00004297 Py_DECREF(r);
Guido van Rossum55f20992001-10-01 17:18:22 +00004298 return 0;
Guido van Rossum2ed6bf82001-09-27 20:30:07 +00004299 }
Guido van Rossum2ed6bf82001-09-27 20:30:07 +00004300 }
4301 if (other->ob_type->tp_as_number != NULL &&
4302 other->ob_type->tp_as_number->nb_coerce == slot_nb_coerce) {
4303 PyObject *r;
4304 r = call_maybe(
4305 other, "__coerce__", &coerce_str, "(O)", self);
4306 if (r == NULL)
4307 return -1;
4308 if (r == Py_NotImplemented) {
4309 Py_DECREF(r);
4310 return 1;
4311 }
4312 if (!PyTuple_Check(r) || PyTuple_GET_SIZE(r) != 2) {
4313 PyErr_SetString(PyExc_TypeError,
4314 "__coerce__ didn't return a 2-tuple");
4315 Py_DECREF(r);
4316 return -1;
4317 }
4318 *a = PyTuple_GET_ITEM(r, 1);
4319 Py_INCREF(*a);
4320 *b = PyTuple_GET_ITEM(r, 0);
4321 Py_INCREF(*b);
4322 Py_DECREF(r);
4323 return 0;
4324 }
4325 return 1;
4326}
4327
Guido van Rossumdc91b992001-08-08 22:26:22 +00004328SLOT0(slot_nb_int, "__int__")
4329SLOT0(slot_nb_long, "__long__")
4330SLOT0(slot_nb_float, "__float__")
4331SLOT0(slot_nb_oct, "__oct__")
4332SLOT0(slot_nb_hex, "__hex__")
4333SLOT1(slot_nb_inplace_add, "__iadd__", PyObject *, "O")
4334SLOT1(slot_nb_inplace_subtract, "__isub__", PyObject *, "O")
4335SLOT1(slot_nb_inplace_multiply, "__imul__", PyObject *, "O")
4336SLOT1(slot_nb_inplace_divide, "__idiv__", PyObject *, "O")
4337SLOT1(slot_nb_inplace_remainder, "__imod__", PyObject *, "O")
Guido van Rossum6e5680f2002-10-15 01:01:53 +00004338SLOT1(slot_nb_inplace_power, "__ipow__", PyObject *, "O")
Guido van Rossumdc91b992001-08-08 22:26:22 +00004339SLOT1(slot_nb_inplace_lshift, "__ilshift__", PyObject *, "O")
4340SLOT1(slot_nb_inplace_rshift, "__irshift__", PyObject *, "O")
4341SLOT1(slot_nb_inplace_and, "__iand__", PyObject *, "O")
4342SLOT1(slot_nb_inplace_xor, "__ixor__", PyObject *, "O")
4343SLOT1(slot_nb_inplace_or, "__ior__", PyObject *, "O")
4344SLOT1BIN(slot_nb_floor_divide, nb_floor_divide,
4345 "__floordiv__", "__rfloordiv__")
4346SLOT1BIN(slot_nb_true_divide, nb_true_divide, "__truediv__", "__rtruediv__")
4347SLOT1(slot_nb_inplace_floor_divide, "__ifloordiv__", PyObject *, "O")
4348SLOT1(slot_nb_inplace_true_divide, "__itruediv__", PyObject *, "O")
Tim Peters6d6c1a32001-08-02 04:15:00 +00004349
4350static int
Guido van Rossumb8f63662001-08-15 23:57:02 +00004351half_compare(PyObject *self, PyObject *other)
Tim Peters6d6c1a32001-08-02 04:15:00 +00004352{
Guido van Rossumb8f63662001-08-15 23:57:02 +00004353 PyObject *func, *args, *res;
Guido van Rossum60718732001-08-28 17:47:51 +00004354 static PyObject *cmp_str;
Guido van Rossumb8f63662001-08-15 23:57:02 +00004355 int c;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004356
Guido van Rossum60718732001-08-28 17:47:51 +00004357 func = lookup_method(self, "__cmp__", &cmp_str);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004358 if (func == NULL) {
4359 PyErr_Clear();
4360 }
4361 else {
Raymond Hettinger8ae46892003-10-12 19:09:37 +00004362 args = PyTuple_Pack(1, other);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004363 if (args == NULL)
4364 res = NULL;
4365 else {
Guido van Rossum717ce002001-09-14 16:58:08 +00004366 res = PyObject_Call(func, args, NULL);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004367 Py_DECREF(args);
4368 }
Raymond Hettingerab5dae32002-06-24 13:08:16 +00004369 Py_DECREF(func);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004370 if (res != Py_NotImplemented) {
4371 if (res == NULL)
4372 return -2;
4373 c = PyInt_AsLong(res);
4374 Py_DECREF(res);
4375 if (c == -1 && PyErr_Occurred())
4376 return -2;
4377 return (c < 0) ? -1 : (c > 0) ? 1 : 0;
4378 }
4379 Py_DECREF(res);
4380 }
4381 return 2;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004382}
4383
Guido van Rossumab3b0342001-09-18 20:38:53 +00004384/* This slot is published for the benefit of try_3way_compare in object.c */
4385int
4386_PyObject_SlotCompare(PyObject *self, PyObject *other)
Guido van Rossumb8f63662001-08-15 23:57:02 +00004387{
4388 int c;
4389
Guido van Rossumab3b0342001-09-18 20:38:53 +00004390 if (self->ob_type->tp_compare == _PyObject_SlotCompare) {
Guido van Rossumb8f63662001-08-15 23:57:02 +00004391 c = half_compare(self, other);
4392 if (c <= 1)
4393 return c;
4394 }
Guido van Rossumab3b0342001-09-18 20:38:53 +00004395 if (other->ob_type->tp_compare == _PyObject_SlotCompare) {
Guido van Rossumb8f63662001-08-15 23:57:02 +00004396 c = half_compare(other, self);
4397 if (c < -1)
4398 return -2;
4399 if (c <= 1)
4400 return -c;
4401 }
4402 return (void *)self < (void *)other ? -1 :
4403 (void *)self > (void *)other ? 1 : 0;
4404}
4405
4406static PyObject *
4407slot_tp_repr(PyObject *self)
4408{
4409 PyObject *func, *res;
Guido van Rossum60718732001-08-28 17:47:51 +00004410 static PyObject *repr_str;
Guido van Rossumb8f63662001-08-15 23:57:02 +00004411
Guido van Rossum60718732001-08-28 17:47:51 +00004412 func = lookup_method(self, "__repr__", &repr_str);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004413 if (func != NULL) {
4414 res = PyEval_CallObject(func, NULL);
4415 Py_DECREF(func);
4416 return res;
4417 }
Barry Warsaw7ce36942001-08-24 18:34:26 +00004418 PyErr_Clear();
4419 return PyString_FromFormat("<%s object at %p>",
4420 self->ob_type->tp_name, self);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004421}
4422
4423static PyObject *
4424slot_tp_str(PyObject *self)
4425{
4426 PyObject *func, *res;
Guido van Rossum60718732001-08-28 17:47:51 +00004427 static PyObject *str_str;
Guido van Rossumb8f63662001-08-15 23:57:02 +00004428
Guido van Rossum60718732001-08-28 17:47:51 +00004429 func = lookup_method(self, "__str__", &str_str);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004430 if (func != NULL) {
4431 res = PyEval_CallObject(func, NULL);
4432 Py_DECREF(func);
4433 return res;
4434 }
4435 else {
4436 PyErr_Clear();
4437 return slot_tp_repr(self);
4438 }
4439}
Tim Peters6d6c1a32001-08-02 04:15:00 +00004440
4441static long
4442slot_tp_hash(PyObject *self)
4443{
Tim Peters61ce0a92002-12-06 23:38:02 +00004444 PyObject *func;
Guido van Rossum60718732001-08-28 17:47:51 +00004445 static PyObject *hash_str, *eq_str, *cmp_str;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004446 long h;
4447
Guido van Rossum60718732001-08-28 17:47:51 +00004448 func = lookup_method(self, "__hash__", &hash_str);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004449
4450 if (func != NULL) {
Tim Peters61ce0a92002-12-06 23:38:02 +00004451 PyObject *res = PyEval_CallObject(func, NULL);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004452 Py_DECREF(func);
4453 if (res == NULL)
4454 return -1;
4455 h = PyInt_AsLong(res);
Tim Peters61ce0a92002-12-06 23:38:02 +00004456 Py_DECREF(res);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004457 }
4458 else {
4459 PyErr_Clear();
Guido van Rossum60718732001-08-28 17:47:51 +00004460 func = lookup_method(self, "__eq__", &eq_str);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004461 if (func == NULL) {
4462 PyErr_Clear();
Guido van Rossum60718732001-08-28 17:47:51 +00004463 func = lookup_method(self, "__cmp__", &cmp_str);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004464 }
4465 if (func != NULL) {
4466 Py_DECREF(func);
4467 PyErr_SetString(PyExc_TypeError, "unhashable type");
4468 return -1;
4469 }
4470 PyErr_Clear();
4471 h = _Py_HashPointer((void *)self);
4472 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00004473 if (h == -1 && !PyErr_Occurred())
4474 h = -2;
4475 return h;
4476}
4477
4478static PyObject *
4479slot_tp_call(PyObject *self, PyObject *args, PyObject *kwds)
4480{
Guido van Rossum60718732001-08-28 17:47:51 +00004481 static PyObject *call_str;
4482 PyObject *meth = lookup_method(self, "__call__", &call_str);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004483 PyObject *res;
4484
4485 if (meth == NULL)
4486 return NULL;
4487 res = PyObject_Call(meth, args, kwds);
4488 Py_DECREF(meth);
4489 return res;
4490}
4491
Guido van Rossum14a6f832001-10-17 13:59:09 +00004492/* There are two slot dispatch functions for tp_getattro.
4493
4494 - slot_tp_getattro() is used when __getattribute__ is overridden
4495 but no __getattr__ hook is present;
4496
4497 - slot_tp_getattr_hook() is used when a __getattr__ hook is present.
4498
Guido van Rossumc334df52002-04-04 23:44:47 +00004499 The code in update_one_slot() always installs slot_tp_getattr_hook(); this
4500 detects the absence of __getattr__ and then installs the simpler slot if
4501 necessary. */
Guido van Rossum14a6f832001-10-17 13:59:09 +00004502
Tim Peters6d6c1a32001-08-02 04:15:00 +00004503static PyObject *
4504slot_tp_getattro(PyObject *self, PyObject *name)
4505{
Guido van Rossum14a6f832001-10-17 13:59:09 +00004506 static PyObject *getattribute_str = NULL;
4507 return call_method(self, "__getattribute__", &getattribute_str,
4508 "(O)", name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004509}
4510
Guido van Rossum19c1cd52001-09-21 21:24:49 +00004511static PyObject *
4512slot_tp_getattr_hook(PyObject *self, PyObject *name)
4513{
4514 PyTypeObject *tp = self->ob_type;
4515 PyObject *getattr, *getattribute, *res;
4516 static PyObject *getattribute_str = NULL;
4517 static PyObject *getattr_str = NULL;
4518
4519 if (getattr_str == NULL) {
4520 getattr_str = PyString_InternFromString("__getattr__");
4521 if (getattr_str == NULL)
4522 return NULL;
4523 }
4524 if (getattribute_str == NULL) {
4525 getattribute_str =
4526 PyString_InternFromString("__getattribute__");
4527 if (getattribute_str == NULL)
4528 return NULL;
4529 }
4530 getattr = _PyType_Lookup(tp, getattr_str);
Guido van Rossum14a6f832001-10-17 13:59:09 +00004531 if (getattr == NULL) {
Guido van Rossumd396b9c2001-10-13 20:02:41 +00004532 /* No __getattr__ hook: use a simpler dispatcher */
4533 tp->tp_getattro = slot_tp_getattro;
4534 return slot_tp_getattro(self, name);
4535 }
Guido van Rossum19c1cd52001-09-21 21:24:49 +00004536 getattribute = _PyType_Lookup(tp, getattribute_str);
Guido van Rossum14a6f832001-10-17 13:59:09 +00004537 if (getattribute == NULL ||
4538 (getattribute->ob_type == &PyWrapperDescr_Type &&
4539 ((PyWrapperDescrObject *)getattribute)->d_wrapped ==
4540 (void *)PyObject_GenericGetAttr))
Guido van Rossum19c1cd52001-09-21 21:24:49 +00004541 res = PyObject_GenericGetAttr(self, name);
4542 else
4543 res = PyObject_CallFunction(getattribute, "OO", self, name);
Guido van Rossum14a6f832001-10-17 13:59:09 +00004544 if (res == NULL && PyErr_ExceptionMatches(PyExc_AttributeError)) {
Guido van Rossum19c1cd52001-09-21 21:24:49 +00004545 PyErr_Clear();
4546 res = PyObject_CallFunction(getattr, "OO", self, name);
4547 }
4548 return res;
4549}
4550
Tim Peters6d6c1a32001-08-02 04:15:00 +00004551static int
4552slot_tp_setattro(PyObject *self, PyObject *name, PyObject *value)
4553{
4554 PyObject *res;
Guido van Rossum2730b132001-08-28 18:22:14 +00004555 static PyObject *delattr_str, *setattr_str;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004556
4557 if (value == NULL)
Guido van Rossum2730b132001-08-28 18:22:14 +00004558 res = call_method(self, "__delattr__", &delattr_str,
Guido van Rossum717ce002001-09-14 16:58:08 +00004559 "(O)", name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004560 else
Guido van Rossum2730b132001-08-28 18:22:14 +00004561 res = call_method(self, "__setattr__", &setattr_str,
Guido van Rossum717ce002001-09-14 16:58:08 +00004562 "(OO)", name, value);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004563 if (res == NULL)
4564 return -1;
4565 Py_DECREF(res);
4566 return 0;
4567}
4568
4569/* Map rich comparison operators to their __xx__ namesakes */
4570static char *name_op[] = {
4571 "__lt__",
4572 "__le__",
4573 "__eq__",
4574 "__ne__",
4575 "__gt__",
4576 "__ge__",
4577};
4578
4579static PyObject *
Guido van Rossumb8f63662001-08-15 23:57:02 +00004580half_richcompare(PyObject *self, PyObject *other, int op)
Tim Peters6d6c1a32001-08-02 04:15:00 +00004581{
Guido van Rossumb8f63662001-08-15 23:57:02 +00004582 PyObject *func, *args, *res;
Guido van Rossum60718732001-08-28 17:47:51 +00004583 static PyObject *op_str[6];
Tim Peters6d6c1a32001-08-02 04:15:00 +00004584
Guido van Rossum60718732001-08-28 17:47:51 +00004585 func = lookup_method(self, name_op[op], &op_str[op]);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004586 if (func == NULL) {
4587 PyErr_Clear();
4588 Py_INCREF(Py_NotImplemented);
4589 return Py_NotImplemented;
4590 }
Raymond Hettinger8ae46892003-10-12 19:09:37 +00004591 args = PyTuple_Pack(1, other);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004592 if (args == NULL)
4593 res = NULL;
4594 else {
Guido van Rossum717ce002001-09-14 16:58:08 +00004595 res = PyObject_Call(func, args, NULL);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004596 Py_DECREF(args);
4597 }
4598 Py_DECREF(func);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004599 return res;
4600}
4601
Guido van Rossumb8f63662001-08-15 23:57:02 +00004602/* Map rich comparison operators to their swapped version, e.g. LT --> GT */
4603static int swapped_op[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE};
4604
4605static PyObject *
4606slot_tp_richcompare(PyObject *self, PyObject *other, int op)
4607{
4608 PyObject *res;
4609
4610 if (self->ob_type->tp_richcompare == slot_tp_richcompare) {
4611 res = half_richcompare(self, other, op);
4612 if (res != Py_NotImplemented)
4613 return res;
4614 Py_DECREF(res);
4615 }
4616 if (other->ob_type->tp_richcompare == slot_tp_richcompare) {
4617 res = half_richcompare(other, self, swapped_op[op]);
4618 if (res != Py_NotImplemented) {
4619 return res;
4620 }
4621 Py_DECREF(res);
4622 }
4623 Py_INCREF(Py_NotImplemented);
4624 return Py_NotImplemented;
4625}
4626
4627static PyObject *
4628slot_tp_iter(PyObject *self)
4629{
4630 PyObject *func, *res;
Guido van Rossum60718732001-08-28 17:47:51 +00004631 static PyObject *iter_str, *getitem_str;
Guido van Rossumb8f63662001-08-15 23:57:02 +00004632
Guido van Rossum60718732001-08-28 17:47:51 +00004633 func = lookup_method(self, "__iter__", &iter_str);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004634 if (func != NULL) {
Guido van Rossum84b2bed2002-08-16 17:01:09 +00004635 PyObject *args;
4636 args = res = PyTuple_New(0);
4637 if (args != NULL) {
4638 res = PyObject_Call(func, args, NULL);
4639 Py_DECREF(args);
4640 }
4641 Py_DECREF(func);
4642 return res;
Guido van Rossumb8f63662001-08-15 23:57:02 +00004643 }
4644 PyErr_Clear();
Guido van Rossum60718732001-08-28 17:47:51 +00004645 func = lookup_method(self, "__getitem__", &getitem_str);
Guido van Rossumb8f63662001-08-15 23:57:02 +00004646 if (func == NULL) {
Guido van Rossumd4641072002-04-03 02:13:37 +00004647 PyErr_SetString(PyExc_TypeError,
4648 "iteration over non-sequence");
Guido van Rossumb8f63662001-08-15 23:57:02 +00004649 return NULL;
4650 }
4651 Py_DECREF(func);
4652 return PySeqIter_New(self);
4653}
Tim Peters6d6c1a32001-08-02 04:15:00 +00004654
4655static PyObject *
4656slot_tp_iternext(PyObject *self)
4657{
Guido van Rossum2730b132001-08-28 18:22:14 +00004658 static PyObject *next_str;
Guido van Rossum717ce002001-09-14 16:58:08 +00004659 return call_method(self, "next", &next_str, "()");
Tim Peters6d6c1a32001-08-02 04:15:00 +00004660}
4661
Guido van Rossum1a493502001-08-17 16:47:50 +00004662static PyObject *
4663slot_tp_descr_get(PyObject *self, PyObject *obj, PyObject *type)
4664{
4665 PyTypeObject *tp = self->ob_type;
4666 PyObject *get;
4667 static PyObject *get_str = NULL;
4668
4669 if (get_str == NULL) {
4670 get_str = PyString_InternFromString("__get__");
4671 if (get_str == NULL)
4672 return NULL;
4673 }
4674 get = _PyType_Lookup(tp, get_str);
4675 if (get == NULL) {
4676 /* Avoid further slowdowns */
4677 if (tp->tp_descr_get == slot_tp_descr_get)
4678 tp->tp_descr_get = NULL;
4679 Py_INCREF(self);
4680 return self;
4681 }
Guido van Rossum2c252392001-08-24 10:13:31 +00004682 if (obj == NULL)
4683 obj = Py_None;
4684 if (type == NULL)
4685 type = Py_None;
Guido van Rossum1a493502001-08-17 16:47:50 +00004686 return PyObject_CallFunction(get, "OOO", self, obj, type);
4687}
Tim Peters6d6c1a32001-08-02 04:15:00 +00004688
4689static int
4690slot_tp_descr_set(PyObject *self, PyObject *target, PyObject *value)
4691{
Guido van Rossum2c252392001-08-24 10:13:31 +00004692 PyObject *res;
Guido van Rossum2730b132001-08-28 18:22:14 +00004693 static PyObject *del_str, *set_str;
Guido van Rossum2c252392001-08-24 10:13:31 +00004694
4695 if (value == NULL)
Guido van Rossum1d5b3f22001-12-03 00:08:33 +00004696 res = call_method(self, "__delete__", &del_str,
Guido van Rossum717ce002001-09-14 16:58:08 +00004697 "(O)", target);
Guido van Rossum2c252392001-08-24 10:13:31 +00004698 else
Guido van Rossum2730b132001-08-28 18:22:14 +00004699 res = call_method(self, "__set__", &set_str,
Guido van Rossum717ce002001-09-14 16:58:08 +00004700 "(OO)", target, value);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004701 if (res == NULL)
4702 return -1;
4703 Py_DECREF(res);
4704 return 0;
4705}
4706
4707static int
4708slot_tp_init(PyObject *self, PyObject *args, PyObject *kwds)
4709{
Guido van Rossum60718732001-08-28 17:47:51 +00004710 static PyObject *init_str;
4711 PyObject *meth = lookup_method(self, "__init__", &init_str);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004712 PyObject *res;
4713
4714 if (meth == NULL)
4715 return -1;
4716 res = PyObject_Call(meth, args, kwds);
4717 Py_DECREF(meth);
4718 if (res == NULL)
4719 return -1;
4720 Py_DECREF(res);
4721 return 0;
4722}
4723
4724static PyObject *
4725slot_tp_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
4726{
Guido van Rossum7bed2132002-08-08 21:57:53 +00004727 static PyObject *new_str;
4728 PyObject *func;
Tim Peters6d6c1a32001-08-02 04:15:00 +00004729 PyObject *newargs, *x;
4730 int i, n;
4731
Guido van Rossum7bed2132002-08-08 21:57:53 +00004732 if (new_str == NULL) {
4733 new_str = PyString_InternFromString("__new__");
4734 if (new_str == NULL)
4735 return NULL;
4736 }
4737 func = PyObject_GetAttr((PyObject *)type, new_str);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004738 if (func == NULL)
4739 return NULL;
4740 assert(PyTuple_Check(args));
4741 n = PyTuple_GET_SIZE(args);
4742 newargs = PyTuple_New(n+1);
4743 if (newargs == NULL)
4744 return NULL;
4745 Py_INCREF(type);
4746 PyTuple_SET_ITEM(newargs, 0, (PyObject *)type);
4747 for (i = 0; i < n; i++) {
4748 x = PyTuple_GET_ITEM(args, i);
4749 Py_INCREF(x);
4750 PyTuple_SET_ITEM(newargs, i+1, x);
4751 }
4752 x = PyObject_Call(func, newargs, kwds);
Guido van Rossum25d18072001-10-01 15:55:28 +00004753 Py_DECREF(newargs);
Tim Peters6d6c1a32001-08-02 04:15:00 +00004754 Py_DECREF(func);
4755 return x;
4756}
4757
Guido van Rossumfebd61d2002-08-08 20:55:20 +00004758static void
4759slot_tp_del(PyObject *self)
4760{
4761 static PyObject *del_str = NULL;
4762 PyObject *del, *res;
4763 PyObject *error_type, *error_value, *error_traceback;
4764
4765 /* Temporarily resurrect the object. */
4766 assert(self->ob_refcnt == 0);
4767 self->ob_refcnt = 1;
4768
4769 /* Save the current exception, if any. */
4770 PyErr_Fetch(&error_type, &error_value, &error_traceback);
4771
4772 /* Execute __del__ method, if any. */
4773 del = lookup_maybe(self, "__del__", &del_str);
4774 if (del != NULL) {
4775 res = PyEval_CallObject(del, NULL);
4776 if (res == NULL)
4777 PyErr_WriteUnraisable(del);
4778 else
4779 Py_DECREF(res);
4780 Py_DECREF(del);
4781 }
4782
4783 /* Restore the saved exception. */
4784 PyErr_Restore(error_type, error_value, error_traceback);
4785
4786 /* Undo the temporary resurrection; can't use DECREF here, it would
4787 * cause a recursive call.
4788 */
4789 assert(self->ob_refcnt > 0);
4790 if (--self->ob_refcnt == 0)
4791 return; /* this is the normal path out */
4792
4793 /* __del__ resurrected it! Make it look like the original Py_DECREF
4794 * never happened.
4795 */
4796 {
4797 int refcnt = self->ob_refcnt;
4798 _Py_NewReference(self);
4799 self->ob_refcnt = refcnt;
4800 }
4801 assert(!PyType_IS_GC(self->ob_type) ||
4802 _Py_AS_GC(self)->gc.gc_refs != _PyGC_REFS_UNTRACKED);
4803 /* If Py_REF_DEBUG, the original decref dropped _Py_RefTotal, but
4804 * _Py_NewReference bumped it again, so that's a wash.
4805 * If Py_TRACE_REFS, _Py_NewReference re-added self to the object
4806 * chain, so no more to do there either.
4807 * If COUNT_ALLOCS, the original decref bumped tp_frees, and
4808 * _Py_NewReference bumped tp_allocs: both of those need to be
4809 * undone.
4810 */
4811#ifdef COUNT_ALLOCS
4812 --self->ob_type->tp_frees;
4813 --self->ob_type->tp_allocs;
4814#endif
4815}
4816
Guido van Rossum7b9144b2001-10-09 19:39:46 +00004817
4818/* Table mapping __foo__ names to tp_foo offsets and slot_tp_foo wrapper
Tim Petersbf9b2442003-03-23 05:35:36 +00004819 functions. The offsets here are relative to the 'PyHeapTypeObject'
Guido van Rossume5c691a2003-03-07 15:13:17 +00004820 structure, which incorporates the additional structures used for numbers,
4821 sequences and mappings.
4822 Note that multiple names may map to the same slot (e.g. __eq__,
Guido van Rossum7b9144b2001-10-09 19:39:46 +00004823 __ne__ etc. all map to tp_richcompare) and one name may map to multiple
Guido van Rossumc334df52002-04-04 23:44:47 +00004824 slots (e.g. __str__ affects tp_str as well as tp_repr). The table is
4825 terminated with an all-zero entry. (This table is further initialized and
4826 sorted in init_slotdefs() below.) */
Guido van Rossum7b9144b2001-10-09 19:39:46 +00004827
Guido van Rossum6d204072001-10-21 00:44:31 +00004828typedef struct wrapperbase slotdef;
Guido van Rossum7b9144b2001-10-09 19:39:46 +00004829
4830#undef TPSLOT
Guido van Rossumc8e56452001-10-22 00:43:43 +00004831#undef FLSLOT
Guido van Rossum7b9144b2001-10-09 19:39:46 +00004832#undef ETSLOT
4833#undef SQSLOT
4834#undef MPSLOT
4835#undef NBSLOT
Guido van Rossum6d204072001-10-21 00:44:31 +00004836#undef UNSLOT
4837#undef IBSLOT
Guido van Rossum7b9144b2001-10-09 19:39:46 +00004838#undef BINSLOT
4839#undef RBINSLOT
4840
Guido van Rossum6d204072001-10-21 00:44:31 +00004841#define TPSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \
Neal Norwitzd47714a2002-08-13 19:01:38 +00004842 {NAME, offsetof(PyTypeObject, SLOT), (void *)(FUNCTION), WRAPPER, \
4843 PyDoc_STR(DOC)}
Guido van Rossumc8e56452001-10-22 00:43:43 +00004844#define FLSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC, FLAGS) \
4845 {NAME, offsetof(PyTypeObject, SLOT), (void *)(FUNCTION), WRAPPER, \
Neal Norwitzd47714a2002-08-13 19:01:38 +00004846 PyDoc_STR(DOC), FLAGS}
Guido van Rossum6d204072001-10-21 00:44:31 +00004847#define ETSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \
Guido van Rossume5c691a2003-03-07 15:13:17 +00004848 {NAME, offsetof(PyHeapTypeObject, SLOT), (void *)(FUNCTION), WRAPPER, \
Neal Norwitzd47714a2002-08-13 19:01:38 +00004849 PyDoc_STR(DOC)}
Guido van Rossum6d204072001-10-21 00:44:31 +00004850#define SQSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \
4851 ETSLOT(NAME, as_sequence.SLOT, FUNCTION, WRAPPER, DOC)
4852#define MPSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \
4853 ETSLOT(NAME, as_mapping.SLOT, FUNCTION, WRAPPER, DOC)
4854#define NBSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \
4855 ETSLOT(NAME, as_number.SLOT, FUNCTION, WRAPPER, DOC)
4856#define UNSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \
4857 ETSLOT(NAME, as_number.SLOT, FUNCTION, WRAPPER, \
4858 "x." NAME "() <==> " DOC)
4859#define IBSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \
4860 ETSLOT(NAME, as_number.SLOT, FUNCTION, WRAPPER, \
4861 "x." NAME "(y) <==> x" DOC "y")
4862#define BINSLOT(NAME, SLOT, FUNCTION, DOC) \
4863 ETSLOT(NAME, as_number.SLOT, FUNCTION, wrap_binaryfunc_l, \
4864 "x." NAME "(y) <==> x" DOC "y")
4865#define RBINSLOT(NAME, SLOT, FUNCTION, DOC) \
4866 ETSLOT(NAME, as_number.SLOT, FUNCTION, wrap_binaryfunc_r, \
4867 "x." NAME "(y) <==> y" DOC "x")
Guido van Rossum7b9144b2001-10-09 19:39:46 +00004868
4869static slotdef slotdefs[] = {
Guido van Rossum6d204072001-10-21 00:44:31 +00004870 SQSLOT("__len__", sq_length, slot_sq_length, wrap_inquiry,
4871 "x.__len__() <==> len(x)"),
4872 SQSLOT("__add__", sq_concat, slot_sq_concat, wrap_binaryfunc,
4873 "x.__add__(y) <==> x+y"),
4874 SQSLOT("__mul__", sq_repeat, slot_sq_repeat, wrap_intargfunc,
4875 "x.__mul__(n) <==> x*n"),
4876 SQSLOT("__rmul__", sq_repeat, slot_sq_repeat, wrap_intargfunc,
4877 "x.__rmul__(n) <==> n*x"),
4878 SQSLOT("__getitem__", sq_item, slot_sq_item, wrap_sq_item,
4879 "x.__getitem__(y) <==> x[y]"),
4880 SQSLOT("__getslice__", sq_slice, slot_sq_slice, wrap_intintargfunc,
Brett Cannon154da9b2003-05-20 02:30:04 +00004881 "x.__getslice__(i, j) <==> x[i:j]\n\
4882 \n\
4883 Use of negative indices is not supported."),
Guido van Rossum6d204072001-10-21 00:44:31 +00004884 SQSLOT("__setitem__", sq_ass_item, slot_sq_ass_item, wrap_sq_setitem,
Brett Cannonbe67d872003-05-20 02:40:12 +00004885 "x.__setitem__(i, y) <==> x[i]=y"),
Guido van Rossum6d204072001-10-21 00:44:31 +00004886 SQSLOT("__delitem__", sq_ass_item, slot_sq_ass_item, wrap_sq_delitem,
Brett Cannonbe67d872003-05-20 02:40:12 +00004887 "x.__delitem__(y) <==> del x[y]"),
Guido van Rossum7b9144b2001-10-09 19:39:46 +00004888 SQSLOT("__setslice__", sq_ass_slice, slot_sq_ass_slice,
Guido van Rossum6d204072001-10-21 00:44:31 +00004889 wrap_intintobjargproc,
Brett Cannonbe67d872003-05-20 02:40:12 +00004890 "x.__setslice__(i, j, y) <==> x[i:j]=y\n\
4891 \n\
4892 Use of negative indices is not supported."),
Guido van Rossum6d204072001-10-21 00:44:31 +00004893 SQSLOT("__delslice__", sq_ass_slice, slot_sq_ass_slice, wrap_delslice,
Brett Cannonbe67d872003-05-20 02:40:12 +00004894 "x.__delslice__(i, j) <==> del x[i:j]\n\
4895 \n\
4896 Use of negative indices is not supported."),
Guido van Rossum6d204072001-10-21 00:44:31 +00004897 SQSLOT("__contains__", sq_contains, slot_sq_contains, wrap_objobjproc,
4898 "x.__contains__(y) <==> y in x"),
Guido van Rossum7b9144b2001-10-09 19:39:46 +00004899 SQSLOT("__iadd__", sq_inplace_concat, slot_sq_inplace_concat,
Guido van Rossum6d204072001-10-21 00:44:31 +00004900 wrap_binaryfunc, "x.__iadd__(y) <==> x+=y"),
Guido van Rossum7b9144b2001-10-09 19:39:46 +00004901 SQSLOT("__imul__", sq_inplace_repeat, slot_sq_inplace_repeat,
Guido van Rossum6d204072001-10-21 00:44:31 +00004902 wrap_intargfunc, "x.__imul__(y) <==> x*=y"),
Guido van Rossum7b9144b2001-10-09 19:39:46 +00004903
Guido van Rossum6d204072001-10-21 00:44:31 +00004904 MPSLOT("__len__", mp_length, slot_mp_length, wrap_inquiry,
4905 "x.__len__() <==> len(x)"),
Guido van Rossumfd38f8e2001-10-09 20:17:57 +00004906 MPSLOT("__getitem__", mp_subscript, slot_mp_subscript,
Guido van Rossum6d204072001-10-21 00:44:31 +00004907 wrap_binaryfunc,
4908 "x.__getitem__(y) <==> x[y]"),
Guido van Rossum7b9144b2001-10-09 19:39:46 +00004909 MPSLOT("__setitem__", mp_ass_subscript, slot_mp_ass_subscript,
Guido van Rossum6d204072001-10-21 00:44:31 +00004910 wrap_objobjargproc,
4911 "x.__setitem__(i, y) <==> x[i]=y"),
Guido van Rossum7b9144b2001-10-09 19:39:46 +00004912 MPSLOT("__delitem__", mp_ass_subscript, slot_mp_ass_subscript,
Guido van Rossum6d204072001-10-21 00:44:31 +00004913 wrap_delitem,
4914 "x.__delitem__(y) <==> del x[y]"),
Guido van Rossum7b9144b2001-10-09 19:39:46 +00004915
Guido van Rossum6d204072001-10-21 00:44:31 +00004916 BINSLOT("__add__", nb_add, slot_nb_add,
4917 "+"),
4918 RBINSLOT("__radd__", nb_add, slot_nb_add,
4919 "+"),
4920 BINSLOT("__sub__", nb_subtract, slot_nb_subtract,
4921 "-"),
4922 RBINSLOT("__rsub__", nb_subtract, slot_nb_subtract,
4923 "-"),
4924 BINSLOT("__mul__", nb_multiply, slot_nb_multiply,
4925 "*"),
4926 RBINSLOT("__rmul__", nb_multiply, slot_nb_multiply,
4927 "*"),
4928 BINSLOT("__div__", nb_divide, slot_nb_divide,
4929 "/"),
4930 RBINSLOT("__rdiv__", nb_divide, slot_nb_divide,
4931 "/"),
4932 BINSLOT("__mod__", nb_remainder, slot_nb_remainder,
4933 "%"),
4934 RBINSLOT("__rmod__", nb_remainder, slot_nb_remainder,
4935 "%"),
4936 BINSLOT("__divmod__", nb_divmod, slot_nb_divmod,
4937 "divmod(x, y)"),
4938 RBINSLOT("__rdivmod__", nb_divmod, slot_nb_divmod,
4939 "divmod(y, x)"),
4940 NBSLOT("__pow__", nb_power, slot_nb_power, wrap_ternaryfunc,
4941 "x.__pow__(y[, z]) <==> pow(x, y[, z])"),
4942 NBSLOT("__rpow__", nb_power, slot_nb_power, wrap_ternaryfunc_r,
4943 "y.__rpow__(x[, z]) <==> pow(x, y[, z])"),
4944 UNSLOT("__neg__", nb_negative, slot_nb_negative, wrap_unaryfunc, "-x"),
4945 UNSLOT("__pos__", nb_positive, slot_nb_positive, wrap_unaryfunc, "+x"),
4946 UNSLOT("__abs__", nb_absolute, slot_nb_absolute, wrap_unaryfunc,
4947 "abs(x)"),
Raymond Hettingerf34f2642003-10-11 17:29:04 +00004948 UNSLOT("__nonzero__", nb_nonzero, slot_nb_nonzero, wrap_inquirypred,
Guido van Rossum6d204072001-10-21 00:44:31 +00004949 "x != 0"),
4950 UNSLOT("__invert__", nb_invert, slot_nb_invert, wrap_unaryfunc, "~x"),
4951 BINSLOT("__lshift__", nb_lshift, slot_nb_lshift, "<<"),
4952 RBINSLOT("__rlshift__", nb_lshift, slot_nb_lshift, "<<"),
4953 BINSLOT("__rshift__", nb_rshift, slot_nb_rshift, ">>"),
4954 RBINSLOT("__rrshift__", nb_rshift, slot_nb_rshift, ">>"),
4955 BINSLOT("__and__", nb_and, slot_nb_and, "&"),
4956 RBINSLOT("__rand__", nb_and, slot_nb_and, "&"),
4957 BINSLOT("__xor__", nb_xor, slot_nb_xor, "^"),
4958 RBINSLOT("__rxor__", nb_xor, slot_nb_xor, "^"),
4959 BINSLOT("__or__", nb_or, slot_nb_or, "|"),
4960 RBINSLOT("__ror__", nb_or, slot_nb_or, "|"),
4961 NBSLOT("__coerce__", nb_coerce, slot_nb_coerce, wrap_coercefunc,
4962 "x.__coerce__(y) <==> coerce(x, y)"),
4963 UNSLOT("__int__", nb_int, slot_nb_int, wrap_unaryfunc,
4964 "int(x)"),
4965 UNSLOT("__long__", nb_long, slot_nb_long, wrap_unaryfunc,
4966 "long(x)"),
4967 UNSLOT("__float__", nb_float, slot_nb_float, wrap_unaryfunc,
4968 "float(x)"),
4969 UNSLOT("__oct__", nb_oct, slot_nb_oct, wrap_unaryfunc,
4970 "oct(x)"),
4971 UNSLOT("__hex__", nb_hex, slot_nb_hex, wrap_unaryfunc,
4972 "hex(x)"),
4973 IBSLOT("__iadd__", nb_inplace_add, slot_nb_inplace_add,
4974 wrap_binaryfunc, "+"),
4975 IBSLOT("__isub__", nb_inplace_subtract, slot_nb_inplace_subtract,
4976 wrap_binaryfunc, "-"),
4977 IBSLOT("__imul__", nb_inplace_multiply, slot_nb_inplace_multiply,
4978 wrap_binaryfunc, "*"),
4979 IBSLOT("__idiv__", nb_inplace_divide, slot_nb_inplace_divide,
4980 wrap_binaryfunc, "/"),
4981 IBSLOT("__imod__", nb_inplace_remainder, slot_nb_inplace_remainder,
4982 wrap_binaryfunc, "%"),
4983 IBSLOT("__ipow__", nb_inplace_power, slot_nb_inplace_power,
Guido van Rossum6e5680f2002-10-15 01:01:53 +00004984 wrap_binaryfunc, "**"),
Guido van Rossum6d204072001-10-21 00:44:31 +00004985 IBSLOT("__ilshift__", nb_inplace_lshift, slot_nb_inplace_lshift,
4986 wrap_binaryfunc, "<<"),
4987 IBSLOT("__irshift__", nb_inplace_rshift, slot_nb_inplace_rshift,
4988 wrap_binaryfunc, ">>"),
4989 IBSLOT("__iand__", nb_inplace_and, slot_nb_inplace_and,
4990 wrap_binaryfunc, "&"),
4991 IBSLOT("__ixor__", nb_inplace_xor, slot_nb_inplace_xor,
4992 wrap_binaryfunc, "^"),
4993 IBSLOT("__ior__", nb_inplace_or, slot_nb_inplace_or,
4994 wrap_binaryfunc, "|"),
4995 BINSLOT("__floordiv__", nb_floor_divide, slot_nb_floor_divide, "//"),
4996 RBINSLOT("__rfloordiv__", nb_floor_divide, slot_nb_floor_divide, "//"),
4997 BINSLOT("__truediv__", nb_true_divide, slot_nb_true_divide, "/"),
4998 RBINSLOT("__rtruediv__", nb_true_divide, slot_nb_true_divide, "/"),
4999 IBSLOT("__ifloordiv__", nb_inplace_floor_divide,
5000 slot_nb_inplace_floor_divide, wrap_binaryfunc, "//"),
5001 IBSLOT("__itruediv__", nb_inplace_true_divide,
5002 slot_nb_inplace_true_divide, wrap_binaryfunc, "/"),
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005003
Guido van Rossum6d204072001-10-21 00:44:31 +00005004 TPSLOT("__str__", tp_str, slot_tp_str, wrap_unaryfunc,
5005 "x.__str__() <==> str(x)"),
Guido van Rossumafe7a942001-10-29 14:33:44 +00005006 TPSLOT("__str__", tp_print, NULL, NULL, ""),
Guido van Rossum6d204072001-10-21 00:44:31 +00005007 TPSLOT("__repr__", tp_repr, slot_tp_repr, wrap_unaryfunc,
5008 "x.__repr__() <==> repr(x)"),
Guido van Rossumafe7a942001-10-29 14:33:44 +00005009 TPSLOT("__repr__", tp_print, NULL, NULL, ""),
Guido van Rossum6d204072001-10-21 00:44:31 +00005010 TPSLOT("__cmp__", tp_compare, _PyObject_SlotCompare, wrap_cmpfunc,
5011 "x.__cmp__(y) <==> cmp(x,y)"),
5012 TPSLOT("__hash__", tp_hash, slot_tp_hash, wrap_hashfunc,
5013 "x.__hash__() <==> hash(x)"),
Guido van Rossumc8e56452001-10-22 00:43:43 +00005014 FLSLOT("__call__", tp_call, slot_tp_call, (wrapperfunc)wrap_call,
5015 "x.__call__(...) <==> x(...)", PyWrapperFlag_KEYWORDS),
Guido van Rossumd396b9c2001-10-13 20:02:41 +00005016 TPSLOT("__getattribute__", tp_getattro, slot_tp_getattr_hook,
Guido van Rossum6d204072001-10-21 00:44:31 +00005017 wrap_binaryfunc, "x.__getattribute__('name') <==> x.name"),
5018 TPSLOT("__getattribute__", tp_getattr, NULL, NULL, ""),
5019 TPSLOT("__getattr__", tp_getattro, slot_tp_getattr_hook, NULL, ""),
5020 TPSLOT("__getattr__", tp_getattr, NULL, NULL, ""),
5021 TPSLOT("__setattr__", tp_setattro, slot_tp_setattro, wrap_setattr,
5022 "x.__setattr__('name', value) <==> x.name = value"),
5023 TPSLOT("__setattr__", tp_setattr, NULL, NULL, ""),
5024 TPSLOT("__delattr__", tp_setattro, slot_tp_setattro, wrap_delattr,
5025 "x.__delattr__('name') <==> del x.name"),
5026 TPSLOT("__delattr__", tp_setattr, NULL, NULL, ""),
5027 TPSLOT("__lt__", tp_richcompare, slot_tp_richcompare, richcmp_lt,
5028 "x.__lt__(y) <==> x<y"),
5029 TPSLOT("__le__", tp_richcompare, slot_tp_richcompare, richcmp_le,
5030 "x.__le__(y) <==> x<=y"),
5031 TPSLOT("__eq__", tp_richcompare, slot_tp_richcompare, richcmp_eq,
5032 "x.__eq__(y) <==> x==y"),
5033 TPSLOT("__ne__", tp_richcompare, slot_tp_richcompare, richcmp_ne,
5034 "x.__ne__(y) <==> x!=y"),
5035 TPSLOT("__gt__", tp_richcompare, slot_tp_richcompare, richcmp_gt,
5036 "x.__gt__(y) <==> x>y"),
5037 TPSLOT("__ge__", tp_richcompare, slot_tp_richcompare, richcmp_ge,
5038 "x.__ge__(y) <==> x>=y"),
5039 TPSLOT("__iter__", tp_iter, slot_tp_iter, wrap_unaryfunc,
5040 "x.__iter__() <==> iter(x)"),
5041 TPSLOT("next", tp_iternext, slot_tp_iternext, wrap_next,
5042 "x.next() -> the next value, or raise StopIteration"),
5043 TPSLOT("__get__", tp_descr_get, slot_tp_descr_get, wrap_descr_get,
5044 "descr.__get__(obj[, type]) -> value"),
5045 TPSLOT("__set__", tp_descr_set, slot_tp_descr_set, wrap_descr_set,
5046 "descr.__set__(obj, value)"),
Guido van Rossum0dbab4c52002-08-01 14:39:25 +00005047 TPSLOT("__delete__", tp_descr_set, slot_tp_descr_set,
5048 wrap_descr_delete, "descr.__delete__(obj)"),
Guido van Rossumc8e56452001-10-22 00:43:43 +00005049 FLSLOT("__init__", tp_init, slot_tp_init, (wrapperfunc)wrap_init,
Guido van Rossum6d204072001-10-21 00:44:31 +00005050 "x.__init__(...) initializes x; "
Guido van Rossumc8e56452001-10-22 00:43:43 +00005051 "see x.__class__.__doc__ for signature",
5052 PyWrapperFlag_KEYWORDS),
5053 TPSLOT("__new__", tp_new, slot_tp_new, NULL, ""),
Guido van Rossumfebd61d2002-08-08 20:55:20 +00005054 TPSLOT("__del__", tp_del, slot_tp_del, NULL, ""),
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005055 {NULL}
5056};
5057
Guido van Rossumc334df52002-04-04 23:44:47 +00005058/* Given a type pointer and an offset gotten from a slotdef entry, return a
5059 pointer to the actual slot. This is not quite the same as simply adding
5060 the offset to the type pointer, since it takes care to indirect through the
5061 proper indirection pointer (as_buffer, etc.); it returns NULL if the
5062 indirection pointer is NULL. */
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005063static void **
5064slotptr(PyTypeObject *type, int offset)
5065{
5066 char *ptr;
5067
Guido van Rossume5c691a2003-03-07 15:13:17 +00005068 /* Note: this depends on the order of the members of PyHeapTypeObject! */
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005069 assert(offset >= 0);
Guido van Rossume5c691a2003-03-07 15:13:17 +00005070 assert(offset < offsetof(PyHeapTypeObject, as_buffer));
5071 if (offset >= offsetof(PyHeapTypeObject, as_sequence)) {
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005072 ptr = (void *)type->tp_as_sequence;
Guido van Rossume5c691a2003-03-07 15:13:17 +00005073 offset -= offsetof(PyHeapTypeObject, as_sequence);
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005074 }
Guido van Rossume5c691a2003-03-07 15:13:17 +00005075 else if (offset >= offsetof(PyHeapTypeObject, as_mapping)) {
Guido van Rossum09638c12002-06-13 19:17:46 +00005076 ptr = (void *)type->tp_as_mapping;
Guido van Rossume5c691a2003-03-07 15:13:17 +00005077 offset -= offsetof(PyHeapTypeObject, as_mapping);
Guido van Rossum09638c12002-06-13 19:17:46 +00005078 }
Guido van Rossume5c691a2003-03-07 15:13:17 +00005079 else if (offset >= offsetof(PyHeapTypeObject, as_number)) {
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005080 ptr = (void *)type->tp_as_number;
Guido van Rossume5c691a2003-03-07 15:13:17 +00005081 offset -= offsetof(PyHeapTypeObject, as_number);
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005082 }
5083 else {
5084 ptr = (void *)type;
5085 }
5086 if (ptr != NULL)
5087 ptr += offset;
5088 return (void **)ptr;
5089}
Guido van Rossumf040ede2001-08-07 16:40:56 +00005090
Guido van Rossumc334df52002-04-04 23:44:47 +00005091/* Length of array of slotdef pointers used to store slots with the
5092 same __name__. There should be at most MAX_EQUIV-1 slotdef entries with
5093 the same __name__, for any __name__. Since that's a static property, it is
5094 appropriate to declare fixed-size arrays for this. */
5095#define MAX_EQUIV 10
5096
5097/* Return a slot pointer for a given name, but ONLY if the attribute has
5098 exactly one slot function. The name must be an interned string. */
5099static void **
5100resolve_slotdups(PyTypeObject *type, PyObject *name)
5101{
5102 /* XXX Maybe this could be optimized more -- but is it worth it? */
5103
5104 /* pname and ptrs act as a little cache */
5105 static PyObject *pname;
5106 static slotdef *ptrs[MAX_EQUIV];
5107 slotdef *p, **pp;
5108 void **res, **ptr;
5109
5110 if (pname != name) {
5111 /* Collect all slotdefs that match name into ptrs. */
5112 pname = name;
5113 pp = ptrs;
5114 for (p = slotdefs; p->name_strobj; p++) {
5115 if (p->name_strobj == name)
5116 *pp++ = p;
5117 }
5118 *pp = NULL;
5119 }
5120
5121 /* Look in all matching slots of the type; if exactly one of these has
5122 a filled-in slot, return its value. Otherwise return NULL. */
5123 res = NULL;
5124 for (pp = ptrs; *pp; pp++) {
5125 ptr = slotptr(type, (*pp)->offset);
5126 if (ptr == NULL || *ptr == NULL)
5127 continue;
5128 if (res != NULL)
5129 return NULL;
5130 res = ptr;
5131 }
5132 return res;
5133}
5134
Guido van Rossum8d24ee92003-03-24 23:49:49 +00005135/* Common code for update_slots_callback() and fixup_slot_dispatchers(). This
Guido van Rossumc334df52002-04-04 23:44:47 +00005136 does some incredibly complex thinking and then sticks something into the
5137 slot. (It sees if the adjacent slotdefs for the same slot have conflicting
5138 interests, and then stores a generic wrapper or a specific function into
5139 the slot.) Return a pointer to the next slotdef with a different offset,
5140 because that's convenient for fixup_slot_dispatchers(). */
5141static slotdef *
5142update_one_slot(PyTypeObject *type, slotdef *p)
5143{
5144 PyObject *descr;
5145 PyWrapperDescrObject *d;
5146 void *generic = NULL, *specific = NULL;
5147 int use_generic = 0;
5148 int offset = p->offset;
5149 void **ptr = slotptr(type, offset);
5150
5151 if (ptr == NULL) {
5152 do {
5153 ++p;
5154 } while (p->offset == offset);
5155 return p;
5156 }
5157 do {
5158 descr = _PyType_Lookup(type, p->name_strobj);
5159 if (descr == NULL)
5160 continue;
5161 if (descr->ob_type == &PyWrapperDescr_Type) {
5162 void **tptr = resolve_slotdups(type, p->name_strobj);
5163 if (tptr == NULL || tptr == ptr)
5164 generic = p->function;
5165 d = (PyWrapperDescrObject *)descr;
5166 if (d->d_base->wrapper == p->wrapper &&
5167 PyType_IsSubtype(type, d->d_type))
5168 {
5169 if (specific == NULL ||
5170 specific == d->d_wrapped)
5171 specific = d->d_wrapped;
5172 else
5173 use_generic = 1;
5174 }
5175 }
Guido van Rossum721f62e2002-08-09 02:14:34 +00005176 else if (descr->ob_type == &PyCFunction_Type &&
5177 PyCFunction_GET_FUNCTION(descr) ==
5178 (PyCFunction)tp_new_wrapper &&
5179 strcmp(p->name, "__new__") == 0)
5180 {
5181 /* The __new__ wrapper is not a wrapper descriptor,
5182 so must be special-cased differently.
5183 If we don't do this, creating an instance will
5184 always use slot_tp_new which will look up
5185 __new__ in the MRO which will call tp_new_wrapper
5186 which will look through the base classes looking
5187 for a static base and call its tp_new (usually
5188 PyType_GenericNew), after performing various
5189 sanity checks and constructing a new argument
5190 list. Cut all that nonsense short -- this speeds
5191 up instance creation tremendously. */
Martin v. Löwisa94568a2003-05-10 07:36:56 +00005192 specific = (void *)type->tp_new;
Guido van Rossum721f62e2002-08-09 02:14:34 +00005193 /* XXX I'm not 100% sure that there isn't a hole
5194 in this reasoning that requires additional
5195 sanity checks. I'll buy the first person to
5196 point out a bug in this reasoning a beer. */
5197 }
Guido van Rossumc334df52002-04-04 23:44:47 +00005198 else {
5199 use_generic = 1;
5200 generic = p->function;
5201 }
5202 } while ((++p)->offset == offset);
5203 if (specific && !use_generic)
5204 *ptr = specific;
5205 else
5206 *ptr = generic;
5207 return p;
5208}
5209
Guido van Rossum8d24ee92003-03-24 23:49:49 +00005210/* In the type, update the slots whose slotdefs are gathered in the pp array.
5211 This is a callback for update_subclasses(). */
Guido van Rossum875eeaa2001-10-11 18:33:53 +00005212static int
Guido van Rossum8d24ee92003-03-24 23:49:49 +00005213update_slots_callback(PyTypeObject *type, void *data)
Guido van Rossum875eeaa2001-10-11 18:33:53 +00005214{
Guido van Rossum8d24ee92003-03-24 23:49:49 +00005215 slotdef **pp = (slotdef **)data;
Guido van Rossum875eeaa2001-10-11 18:33:53 +00005216
Guido van Rossum8d24ee92003-03-24 23:49:49 +00005217 for (; *pp; pp++)
Guido van Rossumc334df52002-04-04 23:44:47 +00005218 update_one_slot(type, *pp);
Guido van Rossum875eeaa2001-10-11 18:33:53 +00005219 return 0;
5220}
5221
Guido van Rossumc334df52002-04-04 23:44:47 +00005222/* Comparison function for qsort() to compare slotdefs by their offset, and
5223 for equal offset by their address (to force a stable sort). */
Guido van Rossumd396b9c2001-10-13 20:02:41 +00005224static int
5225slotdef_cmp(const void *aa, const void *bb)
5226{
5227 const slotdef *a = (const slotdef *)aa, *b = (const slotdef *)bb;
5228 int c = a->offset - b->offset;
5229 if (c != 0)
5230 return c;
5231 else
5232 return a - b;
5233}
5234
Guido van Rossumc334df52002-04-04 23:44:47 +00005235/* Initialize the slotdefs table by adding interned string objects for the
5236 names and sorting the entries. */
Guido van Rossum875eeaa2001-10-11 18:33:53 +00005237static void
Guido van Rossumd396b9c2001-10-13 20:02:41 +00005238init_slotdefs(void)
Guido van Rossum875eeaa2001-10-11 18:33:53 +00005239{
5240 slotdef *p;
5241 static int initialized = 0;
5242
5243 if (initialized)
5244 return;
5245 for (p = slotdefs; p->name; p++) {
5246 p->name_strobj = PyString_InternFromString(p->name);
5247 if (!p->name_strobj)
Guido van Rossumc334df52002-04-04 23:44:47 +00005248 Py_FatalError("Out of memory interning slotdef names");
Guido van Rossum875eeaa2001-10-11 18:33:53 +00005249 }
Guido van Rossumb85a8b72001-10-16 17:00:48 +00005250 qsort((void *)slotdefs, (size_t)(p-slotdefs), sizeof(slotdef),
5251 slotdef_cmp);
Guido van Rossum875eeaa2001-10-11 18:33:53 +00005252 initialized = 1;
5253}
5254
Guido van Rossumc334df52002-04-04 23:44:47 +00005255/* Update the slots after assignment to a class (type) attribute. */
Guido van Rossum875eeaa2001-10-11 18:33:53 +00005256static int
5257update_slot(PyTypeObject *type, PyObject *name)
5258{
Guido van Rossumc334df52002-04-04 23:44:47 +00005259 slotdef *ptrs[MAX_EQUIV];
Guido van Rossumd396b9c2001-10-13 20:02:41 +00005260 slotdef *p;
5261 slotdef **pp;
Guido van Rossumb85a8b72001-10-16 17:00:48 +00005262 int offset;
Guido van Rossum875eeaa2001-10-11 18:33:53 +00005263
Guido van Rossumb85a8b72001-10-16 17:00:48 +00005264 init_slotdefs();
5265 pp = ptrs;
5266 for (p = slotdefs; p->name; p++) {
5267 /* XXX assume name is interned! */
5268 if (p->name_strobj == name)
5269 *pp++ = p;
5270 }
5271 *pp = NULL;
Guido van Rossumd396b9c2001-10-13 20:02:41 +00005272 for (pp = ptrs; *pp; pp++) {
5273 p = *pp;
Guido van Rossumb85a8b72001-10-16 17:00:48 +00005274 offset = p->offset;
5275 while (p > slotdefs && (p-1)->offset == offset)
Guido van Rossumd396b9c2001-10-13 20:02:41 +00005276 --p;
Guido van Rossumb85a8b72001-10-16 17:00:48 +00005277 *pp = p;
Guido van Rossum875eeaa2001-10-11 18:33:53 +00005278 }
Guido van Rossumc334df52002-04-04 23:44:47 +00005279 if (ptrs[0] == NULL)
5280 return 0; /* Not an attribute that affects any slots */
Guido van Rossum8d24ee92003-03-24 23:49:49 +00005281 return update_subclasses(type, name,
5282 update_slots_callback, (void *)ptrs);
Guido van Rossum875eeaa2001-10-11 18:33:53 +00005283}
5284
Guido van Rossumc334df52002-04-04 23:44:47 +00005285/* Store the proper functions in the slot dispatches at class (type)
5286 definition time, based upon which operations the class overrides in its
5287 dict. */
Tim Peters6d6c1a32001-08-02 04:15:00 +00005288static void
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005289fixup_slot_dispatchers(PyTypeObject *type)
Tim Peters6d6c1a32001-08-02 04:15:00 +00005290{
Guido van Rossum7b9144b2001-10-09 19:39:46 +00005291 slotdef *p;
Tim Peters6d6c1a32001-08-02 04:15:00 +00005292
Guido van Rossumd396b9c2001-10-13 20:02:41 +00005293 init_slotdefs();
Guido van Rossumc334df52002-04-04 23:44:47 +00005294 for (p = slotdefs; p->name; )
5295 p = update_one_slot(type, p);
Tim Peters6d6c1a32001-08-02 04:15:00 +00005296}
Guido van Rossum705f0f52001-08-24 16:47:00 +00005297
Michael W. Hudson98bbc492002-11-26 14:47:27 +00005298static void
5299update_all_slots(PyTypeObject* type)
5300{
5301 slotdef *p;
5302
5303 init_slotdefs();
5304 for (p = slotdefs; p->name; p++) {
5305 /* update_slot returns int but can't actually fail */
5306 update_slot(type, p->name_strobj);
5307 }
5308}
5309
Guido van Rossum8d24ee92003-03-24 23:49:49 +00005310/* recurse_down_subclasses() and update_subclasses() are mutually
5311 recursive functions to call a callback for all subclasses,
5312 but refraining from recursing into subclasses that define 'name'. */
5313
5314static int
5315update_subclasses(PyTypeObject *type, PyObject *name,
5316 update_callback callback, void *data)
5317{
5318 if (callback(type, data) < 0)
5319 return -1;
5320 return recurse_down_subclasses(type, name, callback, data);
5321}
5322
5323static int
5324recurse_down_subclasses(PyTypeObject *type, PyObject *name,
5325 update_callback callback, void *data)
5326{
5327 PyTypeObject *subclass;
5328 PyObject *ref, *subclasses, *dict;
5329 int i, n;
5330
5331 subclasses = type->tp_subclasses;
5332 if (subclasses == NULL)
5333 return 0;
5334 assert(PyList_Check(subclasses));
5335 n = PyList_GET_SIZE(subclasses);
5336 for (i = 0; i < n; i++) {
5337 ref = PyList_GET_ITEM(subclasses, i);
5338 assert(PyWeakref_CheckRef(ref));
5339 subclass = (PyTypeObject *)PyWeakref_GET_OBJECT(ref);
5340 assert(subclass != NULL);
5341 if ((PyObject *)subclass == Py_None)
5342 continue;
5343 assert(PyType_Check(subclass));
5344 /* Avoid recursing down into unaffected classes */
5345 dict = subclass->tp_dict;
5346 if (dict != NULL && PyDict_Check(dict) &&
5347 PyDict_GetItem(dict, name) != NULL)
5348 continue;
5349 if (update_subclasses(subclass, name, callback, data) < 0)
5350 return -1;
5351 }
5352 return 0;
5353}
5354
Guido van Rossum6d204072001-10-21 00:44:31 +00005355/* This function is called by PyType_Ready() to populate the type's
5356 dictionary with method descriptors for function slots. For each
Guido van Rossum09638c12002-06-13 19:17:46 +00005357 function slot (like tp_repr) that's defined in the type, one or more
5358 corresponding descriptors are added in the type's tp_dict dictionary
5359 under the appropriate name (like __repr__). Some function slots
5360 cause more than one descriptor to be added (for example, the nb_add
5361 slot adds both __add__ and __radd__ descriptors) and some function
5362 slots compete for the same descriptor (for example both sq_item and
5363 mp_subscript generate a __getitem__ descriptor).
5364
5365 In the latter case, the first slotdef entry encoutered wins. Since
Tim Petersbf9b2442003-03-23 05:35:36 +00005366 slotdef entries are sorted by the offset of the slot in the
Guido van Rossume5c691a2003-03-07 15:13:17 +00005367 PyHeapTypeObject, this gives us some control over disambiguating
Guido van Rossum8d24ee92003-03-24 23:49:49 +00005368 between competing slots: the members of PyHeapTypeObject are listed
5369 from most general to least general, so the most general slot is
5370 preferred. In particular, because as_mapping comes before as_sequence,
5371 for a type that defines both mp_subscript and sq_item, mp_subscript
5372 wins.
Guido van Rossum09638c12002-06-13 19:17:46 +00005373
5374 This only adds new descriptors and doesn't overwrite entries in
5375 tp_dict that were previously defined. The descriptors contain a
5376 reference to the C function they must call, so that it's safe if they
5377 are copied into a subtype's __dict__ and the subtype has a different
5378 C function in its slot -- calling the method defined by the
5379 descriptor will call the C function that was used to create it,
5380 rather than the C function present in the slot when it is called.
5381 (This is important because a subtype may have a C function in the
5382 slot that calls the method from the dictionary, and we want to avoid
5383 infinite recursion here.) */
Guido van Rossum6d204072001-10-21 00:44:31 +00005384
5385static int
5386add_operators(PyTypeObject *type)
5387{
5388 PyObject *dict = type->tp_dict;
5389 slotdef *p;
5390 PyObject *descr;
5391 void **ptr;
5392
5393 init_slotdefs();
5394 for (p = slotdefs; p->name; p++) {
5395 if (p->wrapper == NULL)
5396 continue;
5397 ptr = slotptr(type, p->offset);
5398 if (!ptr || !*ptr)
5399 continue;
5400 if (PyDict_GetItem(dict, p->name_strobj))
5401 continue;
5402 descr = PyDescr_NewWrapper(type, p, *ptr);
5403 if (descr == NULL)
5404 return -1;
5405 if (PyDict_SetItem(dict, p->name_strobj, descr) < 0)
5406 return -1;
5407 Py_DECREF(descr);
5408 }
5409 if (type->tp_new != NULL) {
5410 if (add_tp_new_wrapper(type) < 0)
5411 return -1;
5412 }
5413 return 0;
5414}
5415
Guido van Rossum705f0f52001-08-24 16:47:00 +00005416
5417/* Cooperative 'super' */
5418
5419typedef struct {
5420 PyObject_HEAD
Guido van Rossume705ef12001-08-29 15:47:06 +00005421 PyTypeObject *type;
Guido van Rossum705f0f52001-08-24 16:47:00 +00005422 PyObject *obj;
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005423 PyTypeObject *obj_type;
Guido van Rossum705f0f52001-08-24 16:47:00 +00005424} superobject;
5425
Guido van Rossum6f799372001-09-20 20:46:19 +00005426static PyMemberDef super_members[] = {
5427 {"__thisclass__", T_OBJECT, offsetof(superobject, type), READONLY,
5428 "the class invoking super()"},
5429 {"__self__", T_OBJECT, offsetof(superobject, obj), READONLY,
5430 "the instance invoking super(); may be None"},
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005431 {"__self_class__", T_OBJECT, offsetof(superobject, obj_type), READONLY,
Walter Dörwaldf0dfc7a2003-10-20 14:01:56 +00005432 "the type of the instance invoking super(); may be None"},
Guido van Rossum41eb14d2001-08-30 23:13:11 +00005433 {0}
5434};
5435
Guido van Rossum705f0f52001-08-24 16:47:00 +00005436static void
5437super_dealloc(PyObject *self)
5438{
5439 superobject *su = (superobject *)self;
5440
Guido van Rossum048eb752001-10-02 21:24:57 +00005441 _PyObject_GC_UNTRACK(self);
Guido van Rossum705f0f52001-08-24 16:47:00 +00005442 Py_XDECREF(su->obj);
5443 Py_XDECREF(su->type);
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005444 Py_XDECREF(su->obj_type);
Guido van Rossum705f0f52001-08-24 16:47:00 +00005445 self->ob_type->tp_free(self);
5446}
5447
5448static PyObject *
Guido van Rossum41eb14d2001-08-30 23:13:11 +00005449super_repr(PyObject *self)
5450{
5451 superobject *su = (superobject *)self;
5452
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005453 if (su->obj_type)
Guido van Rossum41eb14d2001-08-30 23:13:11 +00005454 return PyString_FromFormat(
Guido van Rossuma4cb7882001-09-25 03:56:29 +00005455 "<super: <class '%s'>, <%s object>>",
Guido van Rossum41eb14d2001-08-30 23:13:11 +00005456 su->type ? su->type->tp_name : "NULL",
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005457 su->obj_type->tp_name);
Guido van Rossum41eb14d2001-08-30 23:13:11 +00005458 else
5459 return PyString_FromFormat(
Guido van Rossuma4cb7882001-09-25 03:56:29 +00005460 "<super: <class '%s'>, NULL>",
Guido van Rossum41eb14d2001-08-30 23:13:11 +00005461 su->type ? su->type->tp_name : "NULL");
5462}
5463
5464static PyObject *
Guido van Rossum705f0f52001-08-24 16:47:00 +00005465super_getattro(PyObject *self, PyObject *name)
5466{
5467 superobject *su = (superobject *)self;
Guido van Rossum76ba09f2003-04-16 19:40:58 +00005468 int skip = su->obj_type == NULL;
Guido van Rossum705f0f52001-08-24 16:47:00 +00005469
Guido van Rossum76ba09f2003-04-16 19:40:58 +00005470 if (!skip) {
5471 /* We want __class__ to return the class of the super object
5472 (i.e. super, or a subclass), not the class of su->obj. */
5473 skip = (PyString_Check(name) &&
5474 PyString_GET_SIZE(name) == 9 &&
5475 strcmp(PyString_AS_STRING(name), "__class__") == 0);
5476 }
5477
5478 if (!skip) {
Tim Petersa91e9642001-11-14 23:32:33 +00005479 PyObject *mro, *res, *tmp, *dict;
Guido van Rossum155db9a2002-04-02 17:53:47 +00005480 PyTypeObject *starttype;
Guido van Rossum705f0f52001-08-24 16:47:00 +00005481 descrgetfunc f;
5482 int i, n;
5483
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005484 starttype = su->obj_type;
Guido van Rossum155db9a2002-04-02 17:53:47 +00005485 mro = starttype->tp_mro;
5486
Guido van Rossum41eb14d2001-08-30 23:13:11 +00005487 if (mro == NULL)
5488 n = 0;
5489 else {
5490 assert(PyTuple_Check(mro));
5491 n = PyTuple_GET_SIZE(mro);
5492 }
Guido van Rossum705f0f52001-08-24 16:47:00 +00005493 for (i = 0; i < n; i++) {
Guido van Rossume705ef12001-08-29 15:47:06 +00005494 if ((PyObject *)(su->type) == PyTuple_GET_ITEM(mro, i))
Guido van Rossum705f0f52001-08-24 16:47:00 +00005495 break;
5496 }
Guido van Rossum705f0f52001-08-24 16:47:00 +00005497 i++;
5498 res = NULL;
5499 for (; i < n; i++) {
5500 tmp = PyTuple_GET_ITEM(mro, i);
Tim Petersa91e9642001-11-14 23:32:33 +00005501 if (PyType_Check(tmp))
5502 dict = ((PyTypeObject *)tmp)->tp_dict;
5503 else if (PyClass_Check(tmp))
5504 dict = ((PyClassObject *)tmp)->cl_dict;
5505 else
5506 continue;
5507 res = PyDict_GetItem(dict, name);
Guido van Rossum6cc5bb62003-04-16 20:01:36 +00005508 if (res != NULL) {
Guido van Rossum705f0f52001-08-24 16:47:00 +00005509 Py_INCREF(res);
5510 f = res->ob_type->tp_descr_get;
5511 if (f != NULL) {
Guido van Rossumd4641072002-04-03 02:13:37 +00005512 tmp = f(res, su->obj,
5513 (PyObject *)starttype);
Guido van Rossum705f0f52001-08-24 16:47:00 +00005514 Py_DECREF(res);
5515 res = tmp;
5516 }
5517 return res;
5518 }
5519 }
5520 }
5521 return PyObject_GenericGetAttr(self, name);
5522}
5523
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005524static PyTypeObject *
Guido van Rossum5b443c62001-12-03 15:38:28 +00005525supercheck(PyTypeObject *type, PyObject *obj)
5526{
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005527 /* Check that a super() call makes sense. Return a type object.
5528
5529 obj can be a new-style class, or an instance of one:
5530
5531 - If it is a class, it must be a subclass of 'type'. This case is
5532 used for class methods; the return value is obj.
5533
5534 - If it is an instance, it must be an instance of 'type'. This is
5535 the normal case; the return value is obj.__class__.
5536
5537 But... when obj is an instance, we want to allow for the case where
5538 obj->ob_type is not a subclass of type, but obj.__class__ is!
5539 This will allow using super() with a proxy for obj.
5540 */
5541
Guido van Rossum8e80a722003-02-18 19:22:22 +00005542 /* Check for first bullet above (special case) */
5543 if (PyType_Check(obj) && PyType_IsSubtype((PyTypeObject *)obj, type)) {
5544 Py_INCREF(obj);
5545 return (PyTypeObject *)obj;
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005546 }
Guido van Rossum8e80a722003-02-18 19:22:22 +00005547
5548 /* Normal case */
5549 if (PyType_IsSubtype(obj->ob_type, type)) {
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005550 Py_INCREF(obj->ob_type);
5551 return obj->ob_type;
5552 }
5553 else {
5554 /* Try the slow way */
5555 static PyObject *class_str = NULL;
5556 PyObject *class_attr;
5557
5558 if (class_str == NULL) {
5559 class_str = PyString_FromString("__class__");
5560 if (class_str == NULL)
5561 return NULL;
5562 }
5563
5564 class_attr = PyObject_GetAttr(obj, class_str);
5565
5566 if (class_attr != NULL &&
5567 PyType_Check(class_attr) &&
5568 (PyTypeObject *)class_attr != obj->ob_type)
5569 {
5570 int ok = PyType_IsSubtype(
5571 (PyTypeObject *)class_attr, type);
5572 if (ok)
5573 return (PyTypeObject *)class_attr;
5574 }
5575
5576 if (class_attr == NULL)
5577 PyErr_Clear();
5578 else
5579 Py_DECREF(class_attr);
5580 }
5581
Tim Peters97e5ff52003-02-18 19:32:50 +00005582 PyErr_SetString(PyExc_TypeError,
Guido van Rossum5b443c62001-12-03 15:38:28 +00005583 "super(type, obj): "
5584 "obj must be an instance or subtype of type");
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005585 return NULL;
Guido van Rossum5b443c62001-12-03 15:38:28 +00005586}
5587
Guido van Rossum705f0f52001-08-24 16:47:00 +00005588static PyObject *
5589super_descr_get(PyObject *self, PyObject *obj, PyObject *type)
5590{
5591 superobject *su = (superobject *)self;
5592 superobject *new;
5593
5594 if (obj == NULL || obj == Py_None || su->obj != NULL) {
5595 /* Not binding to an object, or already bound */
5596 Py_INCREF(self);
5597 return self;
5598 }
Guido van Rossum5b443c62001-12-03 15:38:28 +00005599 if (su->ob_type != &PySuper_Type)
Brett Cannon10147f72003-06-11 20:50:33 +00005600 /* If su is not an instance of a subclass of super,
Guido van Rossum5b443c62001-12-03 15:38:28 +00005601 call its type */
5602 return PyObject_CallFunction((PyObject *)su->ob_type,
5603 "OO", su->type, obj);
5604 else {
5605 /* Inline the common case */
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005606 PyTypeObject *obj_type = supercheck(su->type, obj);
5607 if (obj_type == NULL)
Guido van Rossum5b443c62001-12-03 15:38:28 +00005608 return NULL;
5609 new = (superobject *)PySuper_Type.tp_new(&PySuper_Type,
5610 NULL, NULL);
5611 if (new == NULL)
5612 return NULL;
5613 Py_INCREF(su->type);
5614 Py_INCREF(obj);
5615 new->type = su->type;
5616 new->obj = obj;
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005617 new->obj_type = obj_type;
Guido van Rossum5b443c62001-12-03 15:38:28 +00005618 return (PyObject *)new;
5619 }
Guido van Rossum705f0f52001-08-24 16:47:00 +00005620}
5621
5622static int
5623super_init(PyObject *self, PyObject *args, PyObject *kwds)
5624{
5625 superobject *su = (superobject *)self;
Guido van Rossume705ef12001-08-29 15:47:06 +00005626 PyTypeObject *type;
5627 PyObject *obj = NULL;
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005628 PyTypeObject *obj_type = NULL;
Guido van Rossum705f0f52001-08-24 16:47:00 +00005629
5630 if (!PyArg_ParseTuple(args, "O!|O:super", &PyType_Type, &type, &obj))
5631 return -1;
5632 if (obj == Py_None)
5633 obj = NULL;
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005634 if (obj != NULL) {
5635 obj_type = supercheck(type, obj);
5636 if (obj_type == NULL)
5637 return -1;
5638 Py_INCREF(obj);
5639 }
Guido van Rossum705f0f52001-08-24 16:47:00 +00005640 Py_INCREF(type);
Guido van Rossum705f0f52001-08-24 16:47:00 +00005641 su->type = type;
5642 su->obj = obj;
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005643 su->obj_type = obj_type;
Guido van Rossum705f0f52001-08-24 16:47:00 +00005644 return 0;
5645}
5646
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005647PyDoc_STRVAR(super_doc,
Guido van Rossum705f0f52001-08-24 16:47:00 +00005648"super(type) -> unbound super object\n"
5649"super(type, obj) -> bound super object; requires isinstance(obj, type)\n"
Guido van Rossume705ef12001-08-29 15:47:06 +00005650"super(type, type2) -> bound super object; requires issubclass(type2, type)\n"
Guido van Rossum705f0f52001-08-24 16:47:00 +00005651"Typical use to call a cooperative superclass method:\n"
5652"class C(B):\n"
5653" def meth(self, arg):\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005654" super(C, self).meth(arg)");
Guido van Rossum705f0f52001-08-24 16:47:00 +00005655
Guido van Rossum048eb752001-10-02 21:24:57 +00005656static int
5657super_traverse(PyObject *self, visitproc visit, void *arg)
5658{
5659 superobject *su = (superobject *)self;
5660 int err;
5661
5662#define VISIT(SLOT) \
5663 if (SLOT) { \
5664 err = visit((PyObject *)(SLOT), arg); \
5665 if (err) \
5666 return err; \
5667 }
5668
5669 VISIT(su->obj);
5670 VISIT(su->type);
Guido van Rossuma89d10e2003-02-12 03:58:38 +00005671 VISIT(su->obj_type);
Guido van Rossum048eb752001-10-02 21:24:57 +00005672
5673#undef VISIT
5674
5675 return 0;
5676}
5677
Guido van Rossum705f0f52001-08-24 16:47:00 +00005678PyTypeObject PySuper_Type = {
5679 PyObject_HEAD_INIT(&PyType_Type)
5680 0, /* ob_size */
5681 "super", /* tp_name */
5682 sizeof(superobject), /* tp_basicsize */
5683 0, /* tp_itemsize */
5684 /* methods */
5685 super_dealloc, /* tp_dealloc */
5686 0, /* tp_print */
5687 0, /* tp_getattr */
5688 0, /* tp_setattr */
5689 0, /* tp_compare */
Guido van Rossum41eb14d2001-08-30 23:13:11 +00005690 super_repr, /* tp_repr */
Guido van Rossum705f0f52001-08-24 16:47:00 +00005691 0, /* tp_as_number */
5692 0, /* tp_as_sequence */
5693 0, /* tp_as_mapping */
5694 0, /* tp_hash */
5695 0, /* tp_call */
5696 0, /* tp_str */
5697 super_getattro, /* tp_getattro */
5698 0, /* tp_setattro */
5699 0, /* tp_as_buffer */
Guido van Rossum048eb752001-10-02 21:24:57 +00005700 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC |
5701 Py_TPFLAGS_BASETYPE, /* tp_flags */
Guido van Rossum705f0f52001-08-24 16:47:00 +00005702 super_doc, /* tp_doc */
Guido van Rossum048eb752001-10-02 21:24:57 +00005703 super_traverse, /* tp_traverse */
Guido van Rossum705f0f52001-08-24 16:47:00 +00005704 0, /* tp_clear */
5705 0, /* tp_richcompare */
5706 0, /* tp_weaklistoffset */
5707 0, /* tp_iter */
5708 0, /* tp_iternext */
5709 0, /* tp_methods */
Guido van Rossum41eb14d2001-08-30 23:13:11 +00005710 super_members, /* tp_members */
Guido van Rossum705f0f52001-08-24 16:47:00 +00005711 0, /* tp_getset */
5712 0, /* tp_base */
5713 0, /* tp_dict */
5714 super_descr_get, /* tp_descr_get */
5715 0, /* tp_descr_set */
5716 0, /* tp_dictoffset */
5717 super_init, /* tp_init */
5718 PyType_GenericAlloc, /* tp_alloc */
5719 PyType_GenericNew, /* tp_new */
Neil Schemenauer09a2ae52002-04-12 03:06:53 +00005720 PyObject_GC_Del, /* tp_free */
Guido van Rossum705f0f52001-08-24 16:47:00 +00005721};