File indexing completed on 2025-09-18 09:25:12
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #pragma once
0011
0012 #include <pybind11/attr.h>
0013 #include <pybind11/options.h>
0014
0015 #include "exception_translation.h"
0016
0017 PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE)
0018 PYBIND11_NAMESPACE_BEGIN(detail)
0019
0020 #if !defined(PYPY_VERSION)
0021 # define PYBIND11_BUILTIN_QUALNAME
0022 # define PYBIND11_SET_OLDPY_QUALNAME(obj, nameobj)
0023 #else
0024
0025
0026 # define PYBIND11_SET_OLDPY_QUALNAME(obj, nameobj) \
0027 setattr((PyObject *) obj, "__qualname__", nameobj)
0028 #endif
0029
0030 inline std::string get_fully_qualified_tp_name(PyTypeObject *type) {
0031 #if !defined(PYPY_VERSION)
0032 return type->tp_name;
0033 #else
0034 auto module_name = handle((PyObject *) type).attr("__module__").cast<std::string>();
0035 if (module_name == PYBIND11_BUILTINS_MODULE)
0036 return type->tp_name;
0037 else
0038 return std::move(module_name) + "." + type->tp_name;
0039 #endif
0040 }
0041
0042 inline PyTypeObject *type_incref(PyTypeObject *type) {
0043 Py_INCREF(type);
0044 return type;
0045 }
0046
0047 #if !defined(PYPY_VERSION)
0048
0049
0050 extern "C" inline PyObject *pybind11_static_get(PyObject *self, PyObject * , PyObject *cls) {
0051 return PyProperty_Type.tp_descr_get(self, cls, cls);
0052 }
0053
0054
0055 extern "C" inline int pybind11_static_set(PyObject *self, PyObject *obj, PyObject *value) {
0056 PyObject *cls = PyType_Check(obj) ? obj : (PyObject *) Py_TYPE(obj);
0057 return PyProperty_Type.tp_descr_set(self, cls, value);
0058 }
0059
0060
0061 inline void enable_dynamic_attributes(PyHeapTypeObject *heap_type);
0062
0063
0064
0065
0066 inline PyTypeObject *make_static_property_type() {
0067 constexpr auto *name = "pybind11_static_property";
0068 auto name_obj = reinterpret_steal<object>(PYBIND11_FROM_STRING(name));
0069
0070
0071
0072
0073
0074 auto *heap_type = (PyHeapTypeObject *) PyType_Type.tp_alloc(&PyType_Type, 0);
0075 if (!heap_type) {
0076 pybind11_fail("make_static_property_type(): error allocating type!");
0077 }
0078
0079 heap_type->ht_name = name_obj.inc_ref().ptr();
0080 # ifdef PYBIND11_BUILTIN_QUALNAME
0081 heap_type->ht_qualname = name_obj.inc_ref().ptr();
0082 # endif
0083
0084 auto *type = &heap_type->ht_type;
0085 type->tp_name = name;
0086 type->tp_base = type_incref(&PyProperty_Type);
0087 type->tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HEAPTYPE;
0088 type->tp_descr_get = pybind11_static_get;
0089 type->tp_descr_set = pybind11_static_set;
0090
0091 # if PY_VERSION_HEX >= 0x030C0000
0092
0093
0094 enable_dynamic_attributes(heap_type);
0095 # endif
0096
0097 if (PyType_Ready(type) < 0) {
0098 pybind11_fail("make_static_property_type(): failure in PyType_Ready()!");
0099 }
0100
0101 setattr((PyObject *) type, "__module__", str("pybind11_builtins"));
0102 PYBIND11_SET_OLDPY_QUALNAME(type, name_obj);
0103
0104 return type;
0105 }
0106
0107 #else
0108
0109
0110
0111
0112 inline PyTypeObject *make_static_property_type() {
0113 auto d = dict();
0114 PyObject *result = PyRun_String(R"(\
0115 class pybind11_static_property(property):
0116 def __get__(self, obj, cls):
0117 return property.__get__(self, cls, cls)
0118
0119 def __set__(self, obj, value):
0120 cls = obj if isinstance(obj, type) else type(obj)
0121 property.__set__(self, cls, value)
0122 )",
0123 Py_file_input,
0124 d.ptr(),
0125 d.ptr());
0126 if (result == nullptr)
0127 throw error_already_set();
0128 Py_DECREF(result);
0129 return (PyTypeObject *) d["pybind11_static_property"].cast<object>().release().ptr();
0130 }
0131
0132 #endif
0133
0134
0135
0136
0137
0138 extern "C" inline int pybind11_meta_setattro(PyObject *obj, PyObject *name, PyObject *value) {
0139
0140
0141 PyObject *descr = _PyType_Lookup((PyTypeObject *) obj, name);
0142
0143
0144
0145
0146
0147 auto *const static_prop = (PyObject *) get_internals().static_property_type;
0148 const auto call_descr_set = (descr != nullptr) && (value != nullptr)
0149 && (PyObject_IsInstance(descr, static_prop) != 0)
0150 && (PyObject_IsInstance(value, static_prop) == 0);
0151 if (call_descr_set) {
0152
0153 #if !defined(PYPY_VERSION)
0154 return Py_TYPE(descr)->tp_descr_set(descr, obj, value);
0155 #else
0156 if (PyObject *result = PyObject_CallMethod(descr, "__set__", "OO", obj, value)) {
0157 Py_DECREF(result);
0158 return 0;
0159 } else {
0160 return -1;
0161 }
0162 #endif
0163 } else {
0164
0165 return PyType_Type.tp_setattro(obj, name, value);
0166 }
0167 }
0168
0169
0170
0171
0172
0173
0174
0175 extern "C" inline PyObject *pybind11_meta_getattro(PyObject *obj, PyObject *name) {
0176 PyObject *descr = _PyType_Lookup((PyTypeObject *) obj, name);
0177 if (descr && PyInstanceMethod_Check(descr)) {
0178 Py_INCREF(descr);
0179 return descr;
0180 }
0181 return PyType_Type.tp_getattro(obj, name);
0182 }
0183
0184
0185 extern "C" inline PyObject *pybind11_meta_call(PyObject *type, PyObject *args, PyObject *kwargs) {
0186
0187
0188 PyObject *self = PyType_Type.tp_call(type, args, kwargs);
0189 if (self == nullptr) {
0190 return nullptr;
0191 }
0192
0193
0194 values_and_holders vhs(self);
0195 for (const auto &vh : vhs) {
0196 if (!vh.holder_constructed() && !vhs.is_redundant_value_and_holder(vh)) {
0197 PyErr_Format(PyExc_TypeError,
0198 "%.200s.__init__() must be called when overriding __init__",
0199 get_fully_qualified_tp_name(vh.type->type).c_str());
0200 Py_DECREF(self);
0201 return nullptr;
0202 }
0203 }
0204
0205 return self;
0206 }
0207
0208
0209 extern "C" inline void pybind11_meta_dealloc(PyObject *obj) {
0210 with_internals([obj](internals &internals) {
0211 auto *type = (PyTypeObject *) obj;
0212
0213
0214
0215
0216 auto found_type = internals.registered_types_py.find(type);
0217 if (found_type != internals.registered_types_py.end() && found_type->second.size() == 1
0218 && found_type->second[0]->type == type) {
0219
0220 auto *tinfo = found_type->second[0];
0221 auto tindex = std::type_index(*tinfo->cpptype);
0222 internals.direct_conversions.erase(tindex);
0223
0224 if (tinfo->module_local) {
0225 get_local_internals().registered_types_cpp.erase(tindex);
0226 } else {
0227 internals.registered_types_cpp.erase(tindex);
0228 }
0229 internals.registered_types_py.erase(tinfo->type);
0230
0231
0232 auto &cache = internals.inactive_override_cache;
0233 for (auto it = cache.begin(), last = cache.end(); it != last;) {
0234 if (it->first == (PyObject *) tinfo->type) {
0235 it = cache.erase(it);
0236 } else {
0237 ++it;
0238 }
0239 }
0240
0241 delete tinfo;
0242 }
0243 });
0244
0245 PyType_Type.tp_dealloc(obj);
0246 }
0247
0248
0249
0250
0251 inline PyTypeObject *make_default_metaclass() {
0252 constexpr auto *name = "pybind11_type";
0253 auto name_obj = reinterpret_steal<object>(PYBIND11_FROM_STRING(name));
0254
0255
0256
0257
0258
0259 auto *heap_type = (PyHeapTypeObject *) PyType_Type.tp_alloc(&PyType_Type, 0);
0260 if (!heap_type) {
0261 pybind11_fail("make_default_metaclass(): error allocating metaclass!");
0262 }
0263
0264 heap_type->ht_name = name_obj.inc_ref().ptr();
0265 #ifdef PYBIND11_BUILTIN_QUALNAME
0266 heap_type->ht_qualname = name_obj.inc_ref().ptr();
0267 #endif
0268
0269 auto *type = &heap_type->ht_type;
0270 type->tp_name = name;
0271 type->tp_base = type_incref(&PyType_Type);
0272 type->tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HEAPTYPE;
0273
0274 type->tp_call = pybind11_meta_call;
0275
0276 type->tp_setattro = pybind11_meta_setattro;
0277 type->tp_getattro = pybind11_meta_getattro;
0278
0279 type->tp_dealloc = pybind11_meta_dealloc;
0280
0281 if (PyType_Ready(type) < 0) {
0282 pybind11_fail("make_default_metaclass(): failure in PyType_Ready()!");
0283 }
0284
0285 setattr((PyObject *) type, "__module__", str("pybind11_builtins"));
0286 PYBIND11_SET_OLDPY_QUALNAME(type, name_obj);
0287
0288 return type;
0289 }
0290
0291
0292
0293
0294
0295 inline void traverse_offset_bases(void *valueptr,
0296 const detail::type_info *tinfo,
0297 instance *self,
0298 bool (*f)(void * , instance * )) {
0299 for (handle h : reinterpret_borrow<tuple>(tinfo->type->tp_bases)) {
0300 if (auto *parent_tinfo = get_type_info((PyTypeObject *) h.ptr())) {
0301 for (auto &c : parent_tinfo->implicit_casts) {
0302 if (c.first == tinfo->cpptype) {
0303 auto *parentptr = c.second(valueptr);
0304 if (parentptr != valueptr) {
0305 f(parentptr, self);
0306 }
0307 traverse_offset_bases(parentptr, parent_tinfo, self, f);
0308 break;
0309 }
0310 }
0311 }
0312 }
0313 }
0314
0315 inline bool register_instance_impl(void *ptr, instance *self) {
0316 with_instance_map(ptr, [&](instance_map &instances) { instances.emplace(ptr, self); });
0317 return true;
0318 }
0319 inline bool deregister_instance_impl(void *ptr, instance *self) {
0320 return with_instance_map(ptr, [&](instance_map &instances) {
0321 auto range = instances.equal_range(ptr);
0322 for (auto it = range.first; it != range.second; ++it) {
0323 if (self == it->second) {
0324 instances.erase(it);
0325 return true;
0326 }
0327 }
0328 return false;
0329 });
0330 }
0331
0332 inline void register_instance(instance *self, void *valptr, const type_info *tinfo) {
0333 register_instance_impl(valptr, self);
0334 if (!tinfo->simple_ancestors) {
0335 traverse_offset_bases(valptr, tinfo, self, register_instance_impl);
0336 }
0337 }
0338
0339 inline bool deregister_instance(instance *self, void *valptr, const type_info *tinfo) {
0340 bool ret = deregister_instance_impl(valptr, self);
0341 if (!tinfo->simple_ancestors) {
0342 traverse_offset_bases(valptr, tinfo, self, deregister_instance_impl);
0343 }
0344 return ret;
0345 }
0346
0347
0348
0349
0350 inline PyObject *make_new_instance(PyTypeObject *type) {
0351 #if defined(PYPY_VERSION)
0352
0353
0354 ssize_t instance_size = static_cast<ssize_t>(sizeof(instance));
0355 if (type->tp_basicsize < instance_size) {
0356 type->tp_basicsize = instance_size;
0357 }
0358 #endif
0359 PyObject *self = type->tp_alloc(type, 0);
0360 auto *inst = reinterpret_cast<instance *>(self);
0361
0362 inst->allocate_layout();
0363
0364 return self;
0365 }
0366
0367
0368
0369 extern "C" inline PyObject *pybind11_object_new(PyTypeObject *type, PyObject *, PyObject *) {
0370 return make_new_instance(type);
0371 }
0372
0373
0374
0375
0376 extern "C" inline int pybind11_object_init(PyObject *self, PyObject *, PyObject *) {
0377 PyTypeObject *type = Py_TYPE(self);
0378 std::string msg = get_fully_qualified_tp_name(type) + ": No constructor defined!";
0379 set_error(PyExc_TypeError, msg.c_str());
0380 return -1;
0381 }
0382
0383 inline void add_patient(PyObject *nurse, PyObject *patient) {
0384 auto *instance = reinterpret_cast<detail::instance *>(nurse);
0385 instance->has_patients = true;
0386 Py_INCREF(patient);
0387
0388 with_internals([&](internals &internals) { internals.patients[nurse].push_back(patient); });
0389 }
0390
0391 inline void clear_patients(PyObject *self) {
0392 auto *instance = reinterpret_cast<detail::instance *>(self);
0393 std::vector<PyObject *> patients;
0394
0395 with_internals([&](internals &internals) {
0396 auto pos = internals.patients.find(self);
0397
0398 if (pos == internals.patients.end()) {
0399 pybind11_fail(
0400 "FATAL: Internal consistency check failed: Invalid clear_patients() call.");
0401 }
0402
0403
0404
0405
0406 patients = std::move(pos->second);
0407 internals.patients.erase(pos);
0408 });
0409
0410 instance->has_patients = false;
0411 for (PyObject *&patient : patients) {
0412 Py_CLEAR(patient);
0413 }
0414 }
0415
0416
0417
0418 inline void clear_instance(PyObject *self) {
0419 auto *instance = reinterpret_cast<detail::instance *>(self);
0420
0421
0422 for (auto &v_h : values_and_holders(instance)) {
0423 if (v_h) {
0424
0425
0426
0427 if (v_h.instance_registered()
0428 && !deregister_instance(instance, v_h.value_ptr(), v_h.type)) {
0429 pybind11_fail(
0430 "pybind11_object_dealloc(): Tried to deallocate unregistered instance!");
0431 }
0432
0433 if (instance->owned || v_h.holder_constructed()) {
0434 v_h.type->dealloc(v_h);
0435 }
0436 }
0437 }
0438
0439 instance->deallocate_layout();
0440
0441 if (instance->weakrefs) {
0442 PyObject_ClearWeakRefs(self);
0443 }
0444
0445 PyObject **dict_ptr = _PyObject_GetDictPtr(self);
0446 if (dict_ptr) {
0447 Py_CLEAR(*dict_ptr);
0448 }
0449
0450 if (instance->has_patients) {
0451 clear_patients(self);
0452 }
0453 }
0454
0455
0456
0457 extern "C" inline void pybind11_object_dealloc(PyObject *self) {
0458 auto *type = Py_TYPE(self);
0459
0460
0461
0462
0463 if (PyType_HasFeature(type, Py_TPFLAGS_HAVE_GC) != 0) {
0464 PyObject_GC_UnTrack(self);
0465 }
0466
0467 clear_instance(self);
0468
0469 type->tp_free(self);
0470
0471 #if PY_VERSION_HEX < 0x03080000
0472
0473
0474
0475
0476 auto pybind11_object_type = (PyTypeObject *) get_internals().instance_base;
0477 if (type->tp_dealloc == pybind11_object_type->tp_dealloc)
0478 Py_DECREF(type);
0479 #else
0480
0481
0482 Py_DECREF(type);
0483 #endif
0484 }
0485
0486 std::string error_string();
0487
0488
0489
0490
0491 inline PyObject *make_object_base_type(PyTypeObject *metaclass) {
0492 constexpr auto *name = "pybind11_object";
0493 auto name_obj = reinterpret_steal<object>(PYBIND11_FROM_STRING(name));
0494
0495
0496
0497
0498
0499 auto *heap_type = (PyHeapTypeObject *) metaclass->tp_alloc(metaclass, 0);
0500 if (!heap_type) {
0501 pybind11_fail("make_object_base_type(): error allocating type!");
0502 }
0503
0504 heap_type->ht_name = name_obj.inc_ref().ptr();
0505 #ifdef PYBIND11_BUILTIN_QUALNAME
0506 heap_type->ht_qualname = name_obj.inc_ref().ptr();
0507 #endif
0508
0509 auto *type = &heap_type->ht_type;
0510 type->tp_name = name;
0511 type->tp_base = type_incref(&PyBaseObject_Type);
0512 type->tp_basicsize = static_cast<ssize_t>(sizeof(instance));
0513 type->tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HEAPTYPE;
0514
0515 type->tp_new = pybind11_object_new;
0516 type->tp_init = pybind11_object_init;
0517 type->tp_dealloc = pybind11_object_dealloc;
0518
0519
0520 type->tp_weaklistoffset = offsetof(instance, weakrefs);
0521
0522 if (PyType_Ready(type) < 0) {
0523 pybind11_fail("PyType_Ready failed in make_object_base_type(): " + error_string());
0524 }
0525
0526 setattr((PyObject *) type, "__module__", str("pybind11_builtins"));
0527 PYBIND11_SET_OLDPY_QUALNAME(type, name_obj);
0528
0529 assert(!PyType_HasFeature(type, Py_TPFLAGS_HAVE_GC));
0530 return (PyObject *) heap_type;
0531 }
0532
0533
0534 extern "C" inline int pybind11_traverse(PyObject *self, visitproc visit, void *arg) {
0535 #if PY_VERSION_HEX >= 0x030D0000
0536 PyObject_VisitManagedDict(self, visit, arg);
0537 #else
0538 PyObject *&dict = *_PyObject_GetDictPtr(self);
0539 Py_VISIT(dict);
0540 #endif
0541
0542 #if PY_VERSION_HEX >= 0x03090000
0543 Py_VISIT(Py_TYPE(self));
0544 #endif
0545 return 0;
0546 }
0547
0548
0549 extern "C" inline int pybind11_clear(PyObject *self) {
0550 #if PY_VERSION_HEX >= 0x030D0000
0551 PyObject_ClearManagedDict(self);
0552 #else
0553 PyObject *&dict = *_PyObject_GetDictPtr(self);
0554 Py_CLEAR(dict);
0555 #endif
0556 return 0;
0557 }
0558
0559
0560 inline void enable_dynamic_attributes(PyHeapTypeObject *heap_type) {
0561 auto *type = &heap_type->ht_type;
0562 type->tp_flags |= Py_TPFLAGS_HAVE_GC;
0563 #if PY_VERSION_HEX < 0x030B0000
0564 type->tp_dictoffset = type->tp_basicsize;
0565 type->tp_basicsize += (ssize_t) sizeof(PyObject *);
0566 #else
0567 type->tp_flags |= Py_TPFLAGS_MANAGED_DICT;
0568 #endif
0569 type->tp_traverse = pybind11_traverse;
0570 type->tp_clear = pybind11_clear;
0571
0572 static PyGetSetDef getset[]
0573 = {{"__dict__", PyObject_GenericGetDict, PyObject_GenericSetDict, nullptr, nullptr},
0574 {nullptr, nullptr, nullptr, nullptr, nullptr}};
0575 type->tp_getset = getset;
0576 }
0577
0578
0579 extern "C" inline int pybind11_getbuffer(PyObject *obj, Py_buffer *view, int flags) {
0580
0581 type_info *tinfo = nullptr;
0582 for (auto type : reinterpret_borrow<tuple>(Py_TYPE(obj)->tp_mro)) {
0583 tinfo = get_type_info((PyTypeObject *) type.ptr());
0584 if (tinfo && tinfo->get_buffer) {
0585 break;
0586 }
0587 }
0588 if (view == nullptr || !tinfo || !tinfo->get_buffer) {
0589 if (view) {
0590 view->obj = nullptr;
0591 }
0592 set_error(PyExc_BufferError, "pybind11_getbuffer(): Internal error");
0593 return -1;
0594 }
0595 std::memset(view, 0, sizeof(Py_buffer));
0596 buffer_info *info = nullptr;
0597 try {
0598 info = tinfo->get_buffer(obj, tinfo->get_buffer_data);
0599 } catch (...) {
0600 try_translate_exceptions();
0601 raise_from(PyExc_BufferError, "Error getting buffer");
0602 return -1;
0603 }
0604 if (info == nullptr) {
0605 pybind11_fail("FATAL UNEXPECTED SITUATION: tinfo->get_buffer() returned nullptr.");
0606 }
0607
0608 if ((flags & PyBUF_WRITABLE) == PyBUF_WRITABLE && info->readonly) {
0609 delete info;
0610
0611 set_error(PyExc_BufferError, "Writable buffer requested for readonly storage");
0612 return -1;
0613 }
0614 view->obj = obj;
0615 view->ndim = 1;
0616 view->internal = info;
0617 view->buf = info->ptr;
0618 view->itemsize = info->itemsize;
0619 view->len = view->itemsize;
0620 for (auto s : info->shape) {
0621 view->len *= s;
0622 }
0623 view->readonly = static_cast<int>(info->readonly);
0624 if ((flags & PyBUF_FORMAT) == PyBUF_FORMAT) {
0625 view->format = const_cast<char *>(info->format.c_str());
0626 }
0627 if ((flags & PyBUF_STRIDES) == PyBUF_STRIDES) {
0628 view->ndim = (int) info->ndim;
0629 view->strides = info->strides.data();
0630 view->shape = info->shape.data();
0631 }
0632 Py_INCREF(view->obj);
0633 return 0;
0634 }
0635
0636
0637 extern "C" inline void pybind11_releasebuffer(PyObject *, Py_buffer *view) {
0638 delete (buffer_info *) view->internal;
0639 }
0640
0641
0642 inline void enable_buffer_protocol(PyHeapTypeObject *heap_type) {
0643 heap_type->ht_type.tp_as_buffer = &heap_type->as_buffer;
0644
0645 heap_type->as_buffer.bf_getbuffer = pybind11_getbuffer;
0646 heap_type->as_buffer.bf_releasebuffer = pybind11_releasebuffer;
0647 }
0648
0649
0650
0651 inline PyObject *make_new_python_type(const type_record &rec) {
0652 auto name = reinterpret_steal<object>(PYBIND11_FROM_STRING(rec.name));
0653
0654 auto qualname = name;
0655 if (rec.scope && !PyModule_Check(rec.scope.ptr()) && hasattr(rec.scope, "__qualname__")) {
0656 qualname = reinterpret_steal<object>(
0657 PyUnicode_FromFormat("%U.%U", rec.scope.attr("__qualname__").ptr(), name.ptr()));
0658 }
0659
0660 object module_;
0661 if (rec.scope) {
0662 if (hasattr(rec.scope, "__module__")) {
0663 module_ = rec.scope.attr("__module__");
0664 } else if (hasattr(rec.scope, "__name__")) {
0665 module_ = rec.scope.attr("__name__");
0666 }
0667 }
0668
0669 const auto *full_name = c_str(
0670 #if !defined(PYPY_VERSION)
0671 module_ ? str(module_).cast<std::string>() + "." + rec.name :
0672 #endif
0673 rec.name);
0674
0675 char *tp_doc = nullptr;
0676 if (rec.doc && options::show_user_defined_docstrings()) {
0677
0678 size_t size = std::strlen(rec.doc) + 1;
0679 #if PY_VERSION_HEX >= 0x030D0000
0680 tp_doc = (char *) PyMem_MALLOC(size);
0681 #else
0682 tp_doc = (char *) PyObject_MALLOC(size);
0683 #endif
0684 std::memcpy((void *) tp_doc, rec.doc, size);
0685 }
0686
0687 auto &internals = get_internals();
0688 auto bases = tuple(rec.bases);
0689 auto *base = (bases.empty()) ? internals.instance_base : bases[0].ptr();
0690
0691
0692
0693
0694
0695 auto *metaclass
0696 = rec.metaclass.ptr() ? (PyTypeObject *) rec.metaclass.ptr() : internals.default_metaclass;
0697
0698 auto *heap_type = (PyHeapTypeObject *) metaclass->tp_alloc(metaclass, 0);
0699 if (!heap_type) {
0700 pybind11_fail(std::string(rec.name) + ": Unable to create type object!");
0701 }
0702
0703 heap_type->ht_name = name.release().ptr();
0704 #ifdef PYBIND11_BUILTIN_QUALNAME
0705 heap_type->ht_qualname = qualname.inc_ref().ptr();
0706 #endif
0707
0708 auto *type = &heap_type->ht_type;
0709 type->tp_name = full_name;
0710 type->tp_doc = tp_doc;
0711 type->tp_base = type_incref((PyTypeObject *) base);
0712 type->tp_basicsize = static_cast<ssize_t>(sizeof(instance));
0713 if (!bases.empty()) {
0714 type->tp_bases = bases.release().ptr();
0715 }
0716
0717
0718 type->tp_init = pybind11_object_init;
0719
0720
0721 type->tp_as_number = &heap_type->as_number;
0722 type->tp_as_sequence = &heap_type->as_sequence;
0723 type->tp_as_mapping = &heap_type->as_mapping;
0724 type->tp_as_async = &heap_type->as_async;
0725
0726
0727 type->tp_flags |= Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HEAPTYPE;
0728 if (!rec.is_final) {
0729 type->tp_flags |= Py_TPFLAGS_BASETYPE;
0730 }
0731
0732 if (rec.dynamic_attr) {
0733 enable_dynamic_attributes(heap_type);
0734 }
0735
0736 if (rec.buffer_protocol) {
0737 enable_buffer_protocol(heap_type);
0738 }
0739
0740 if (rec.custom_type_setup_callback) {
0741 rec.custom_type_setup_callback(heap_type);
0742 }
0743
0744 if (PyType_Ready(type) < 0) {
0745 pybind11_fail(std::string(rec.name) + ": PyType_Ready failed: " + error_string());
0746 }
0747
0748 assert(!rec.dynamic_attr || PyType_HasFeature(type, Py_TPFLAGS_HAVE_GC));
0749
0750
0751 if (rec.scope) {
0752 setattr(rec.scope, rec.name, (PyObject *) type);
0753 } else {
0754 Py_INCREF(type);
0755 }
0756
0757 if (module_) {
0758 setattr((PyObject *) type, "__module__", module_);
0759 }
0760
0761 PYBIND11_SET_OLDPY_QUALNAME(type, qualname);
0762
0763 return (PyObject *) type;
0764 }
0765
0766 PYBIND11_NAMESPACE_END(detail)
0767 PYBIND11_NAMESPACE_END(PYBIND11_NAMESPACE)