summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-09-25 03:43:42 (GMT)
committerGuido van Rossum <guido@python.org>2001-09-25 03:43:42 (GMT)
commit5c294fb0e634afc4807ca83032ace356512c97dc (patch)
tree71a9bb4e810bbb936dca64369f49098a4a225196 /Objects
parent2306d246e8c5bb928a432726178047b8d50776f5 (diff)
downloadcpython-5c294fb0e634afc4807ca83032ace356512c97dc.zip
cpython-5c294fb0e634afc4807ca83032ace356512c97dc.tar.gz
cpython-5c294fb0e634afc4807ca83032ace356512c97dc.tar.bz2
Make __class__ assignment possible, when the object structures are the
same. I hope the test for structural equivalence is stringent enough. It only allows the assignment if the old and new types: - have the same basic size - have the same item size - have the same dict offset - have the same weaklist offset - have the same GC flag bit - have a common base that is the same except for maybe the dict and weaklist (which may have been added separately at the same offsets in both types)
Diffstat (limited to 'Objects')
-rw-r--r--Objects/typeobject.c87
1 files changed, 83 insertions, 4 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index 027a568..877a3bd 100644
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -1192,8 +1192,87 @@ object_free(PyObject *self)
PyObject_Del(self);
}
-static PyMemberDef object_members[] = {
- {"__class__", T_OBJECT, offsetof(PyObject, ob_type), READONLY},
+static PyObject *
+object_get_class(PyObject *self, void *closure)
+{
+ Py_INCREF(self->ob_type);
+ return (PyObject *)(self->ob_type);
+}
+
+static int
+equiv_structs(PyTypeObject *a, PyTypeObject *b)
+{
+ return a == b ||
+ (a != NULL &&
+ b != NULL &&
+ a->tp_basicsize == b->tp_basicsize &&
+ a->tp_itemsize == b->tp_itemsize &&
+ a->tp_dictoffset == b->tp_dictoffset &&
+ a->tp_weaklistoffset == b->tp_weaklistoffset &&
+ ((a->tp_flags & Py_TPFLAGS_HAVE_GC) ==
+ (b->tp_flags & Py_TPFLAGS_HAVE_GC)));
+}
+
+static int
+same_slots_added(PyTypeObject *a, PyTypeObject *b)
+{
+ PyTypeObject *base = a->tp_base;
+ int size;
+
+ if (base != b->tp_base)
+ return 0;
+ if (equiv_structs(a, base) && equiv_structs(b, base))
+ return 1;
+ size = base->tp_basicsize;
+ if (a->tp_dictoffset == size && b->tp_dictoffset == size)
+ size += sizeof(PyObject *);
+ if (a->tp_weaklistoffset == size && b->tp_weaklistoffset == size)
+ size += sizeof(PyObject *);
+ return size == a->tp_basicsize && size == b->tp_basicsize;
+}
+
+static int
+object_set_class(PyObject *self, PyObject *value, void *closure)
+{
+ PyTypeObject *old = self->ob_type;
+ PyTypeObject *new, *newbase, *oldbase;
+
+ if (!PyType_Check(value)) {
+ PyErr_Format(PyExc_TypeError,
+ "__class__ must be set to new-style class, not '%s' object",
+ value->ob_type->tp_name);
+ return -1;
+ }
+ new = (PyTypeObject *)value;
+ newbase = new;
+ oldbase = old;
+ while (equiv_structs(newbase, newbase->tp_base))
+ newbase = newbase->tp_base;
+ while (equiv_structs(oldbase, oldbase->tp_base))
+ oldbase = oldbase->tp_base;
+ if (newbase != oldbase &&
+ (newbase->tp_base != oldbase->tp_base ||
+ !same_slots_added(newbase, oldbase))) {
+ PyErr_Format(PyExc_TypeError,
+ "__class__ assignment: "
+ "'%s' object layout differs from '%s'",
+ new->tp_name,
+ old->tp_name);
+ return -1;
+ }
+ if (new->tp_flags & Py_TPFLAGS_HEAPTYPE) {
+ Py_INCREF(new);
+ }
+ self->ob_type = new;
+ if (old->tp_flags & Py_TPFLAGS_HEAPTYPE) {
+ Py_DECREF(old);
+ }
+ return 0;
+}
+
+static PyGetSetDef object_getsets[] = {
+ {"__class__", object_get_class, object_set_class,
+ "the object's class"},
{0}
};
@@ -1227,8 +1306,8 @@ PyTypeObject PyBaseObject_Type = {
0, /* tp_iter */
0, /* tp_iternext */
0, /* tp_methods */
- object_members, /* tp_members */
- 0, /* tp_getset */
+ 0, /* tp_members */
+ object_getsets, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */