Scarab  v2.9.0
Project 8 C++ Utility Library
class.h
Go to the documentation of this file.
1 /*
2  pybind11/detail/class.h: Python C API implementation details for py::class_
3 
4  Copyright (c) 2017 Wenzel Jakob <wenzel.jakob@epfl.ch>
5 
6  All rights reserved. Use of this source code is governed by a
7  BSD-style license that can be found in the LICENSE file.
8 */
9 
10 #pragma once
11 
12 #include "../attr.h"
13 #include "../options.h"
14 
16 NAMESPACE_BEGIN(detail)
17 
18 #if PY_VERSION_HEX >= 0x03030000
19 # define PYBIND11_BUILTIN_QUALNAME
20 # define PYBIND11_SET_OLDPY_QUALNAME(obj, nameobj)
21 #else
22 // In pre-3.3 Python, we still set __qualname__ so that we can produce reliable function type
23 // signatures; in 3.3+ this macro expands to nothing:
24 # define PYBIND11_SET_OLDPY_QUALNAME(obj, nameobj) setattr((PyObject *) obj, "__qualname__", nameobj)
25 #endif
26 
27 inline PyTypeObject *type_incref(PyTypeObject *type) {
28  Py_INCREF(type);
29  return type;
30 }
31 
32 #if !defined(PYPY_VERSION)
33 
35 extern "C" inline PyObject *pybind11_static_get(PyObject *self, PyObject * /*ob*/, PyObject *cls) {
36  return PyProperty_Type.tp_descr_get(self, cls, cls);
37 }
38 
40 extern "C" inline int pybind11_static_set(PyObject *self, PyObject *obj, PyObject *value) {
41  PyObject *cls = PyType_Check(obj) ? obj : (PyObject *) Py_TYPE(obj);
42  return PyProperty_Type.tp_descr_set(self, cls, value);
43 }
44 
48 inline PyTypeObject *make_static_property_type() {
49  constexpr auto *name = "pybind11_static_property";
50  auto name_obj = reinterpret_steal<object>(PYBIND11_FROM_STRING(name));
51 
52  /* Danger zone: from now (and until PyType_Ready), make sure to
53  issue no Python C API calls which could potentially invoke the
54  garbage collector (the GC will call type_traverse(), which will in
55  turn find the newly constructed type in an invalid state) */
56  auto heap_type = (PyHeapTypeObject *) PyType_Type.tp_alloc(&PyType_Type, 0);
57  if (!heap_type)
58  pybind11_fail("make_static_property_type(): error allocating type!");
59 
60  heap_type->ht_name = name_obj.inc_ref().ptr();
61 #ifdef PYBIND11_BUILTIN_QUALNAME
62  heap_type->ht_qualname = name_obj.inc_ref().ptr();
63 #endif
64 
65  auto type = &heap_type->ht_type;
66  type->tp_name = name;
67  type->tp_base = type_incref(&PyProperty_Type);
68  type->tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HEAPTYPE;
69  type->tp_descr_get = pybind11_static_get;
70  type->tp_descr_set = pybind11_static_set;
71 
72  if (PyType_Ready(type) < 0)
73  pybind11_fail("make_static_property_type(): failure in PyType_Ready()!");
74 
75  setattr((PyObject *) type, "__module__", str("pybind11_builtins"));
76  PYBIND11_SET_OLDPY_QUALNAME(type, name_obj);
77 
78  return type;
79 }
80 
81 #else // PYPY
82 
86 inline PyTypeObject *make_static_property_type() {
87  auto d = dict();
88  PyObject *result = PyRun_String(R"(\
89  class pybind11_static_property(property):
90  def __get__(self, obj, cls):
91  return property.__get__(self, cls, cls)
92 
93  def __set__(self, obj, value):
94  cls = obj if isinstance(obj, type) else type(obj)
95  property.__set__(self, cls, value)
96  )", Py_file_input, d.ptr(), d.ptr()
97  );
98  if (result == nullptr)
99  throw error_already_set();
100  Py_DECREF(result);
101  return (PyTypeObject *) d["pybind11_static_property"].cast<object>().release().ptr();
102 }
103 
104 #endif // PYPY
105 
110 extern "C" inline int pybind11_meta_setattro(PyObject* obj, PyObject* name, PyObject* value) {
111  // Use `_PyType_Lookup()` instead of `PyObject_GetAttr()` in order to get the raw
112  // descriptor (`property`) instead of calling `tp_descr_get` (`property.__get__()`).
113  PyObject *descr = _PyType_Lookup((PyTypeObject *) obj, name);
114 
115  // The following assignment combinations are possible:
116  // 1. `Type.static_prop = value` --> descr_set: `Type.static_prop.__set__(value)`
117  // 2. `Type.static_prop = other_static_prop` --> setattro: replace existing `static_prop`
118  // 3. `Type.regular_attribute = value` --> setattro: regular attribute assignment
119  const auto static_prop = (PyObject *) get_internals().static_property_type;
120  const auto call_descr_set = descr && PyObject_IsInstance(descr, static_prop)
121  && !PyObject_IsInstance(value, static_prop);
122  if (call_descr_set) {
123  // Call `static_property.__set__()` instead of replacing the `static_property`.
124 #if !defined(PYPY_VERSION)
125  return Py_TYPE(descr)->tp_descr_set(descr, obj, value);
126 #else
127  if (PyObject *result = PyObject_CallMethod(descr, "__set__", "OO", obj, value)) {
128  Py_DECREF(result);
129  return 0;
130  } else {
131  return -1;
132  }
133 #endif
134  } else {
135  // Replace existing attribute.
136  return PyType_Type.tp_setattro(obj, name, value);
137  }
138 }
139 
140 #if PY_MAJOR_VERSION >= 3
141 
147 extern "C" inline PyObject *pybind11_meta_getattro(PyObject *obj, PyObject *name) {
148  PyObject *descr = _PyType_Lookup((PyTypeObject *) obj, name);
149  if (descr && PyInstanceMethod_Check(descr)) {
150  Py_INCREF(descr);
151  return descr;
152  }
153  else {
154  return PyType_Type.tp_getattro(obj, name);
155  }
156 }
157 #endif
158 
162 inline PyTypeObject* make_default_metaclass() {
163  constexpr auto *name = "pybind11_type";
164  auto name_obj = reinterpret_steal<object>(PYBIND11_FROM_STRING(name));
165 
166  /* Danger zone: from now (and until PyType_Ready), make sure to
167  issue no Python C API calls which could potentially invoke the
168  garbage collector (the GC will call type_traverse(), which will in
169  turn find the newly constructed type in an invalid state) */
170  auto heap_type = (PyHeapTypeObject *) PyType_Type.tp_alloc(&PyType_Type, 0);
171  if (!heap_type)
172  pybind11_fail("make_default_metaclass(): error allocating metaclass!");
173 
174  heap_type->ht_name = name_obj.inc_ref().ptr();
175 #ifdef PYBIND11_BUILTIN_QUALNAME
176  heap_type->ht_qualname = name_obj.inc_ref().ptr();
177 #endif
178 
179  auto type = &heap_type->ht_type;
180  type->tp_name = name;
181  type->tp_base = type_incref(&PyType_Type);
182  type->tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HEAPTYPE;
183 
184  type->tp_setattro = pybind11_meta_setattro;
185 #if PY_MAJOR_VERSION >= 3
186  type->tp_getattro = pybind11_meta_getattro;
187 #endif
188 
189  if (PyType_Ready(type) < 0)
190  pybind11_fail("make_default_metaclass(): failure in PyType_Ready()!");
191 
192  setattr((PyObject *) type, "__module__", str("pybind11_builtins"));
193  PYBIND11_SET_OLDPY_QUALNAME(type, name_obj);
194 
195  return type;
196 }
197 
201 inline void traverse_offset_bases(void *valueptr, const detail::type_info *tinfo, instance *self,
202  bool (*f)(void * /*parentptr*/, instance * /*self*/)) {
203  for (handle h : reinterpret_borrow<tuple>(tinfo->type->tp_bases)) {
204  if (auto parent_tinfo = get_type_info((PyTypeObject *) h.ptr())) {
205  for (auto &c : parent_tinfo->implicit_casts) {
206  if (c.first == tinfo->cpptype) {
207  auto *parentptr = c.second(valueptr);
208  if (parentptr != valueptr)
209  f(parentptr, self);
210  traverse_offset_bases(parentptr, parent_tinfo, self, f);
211  break;
212  }
213  }
214  }
215  }
216 }
217 
218 inline bool register_instance_impl(void *ptr, instance *self) {
219  get_internals().registered_instances.emplace(ptr, self);
220  return true; // unused, but gives the same signature as the deregister func
221 }
222 inline bool deregister_instance_impl(void *ptr, instance *self) {
223  auto &registered_instances = get_internals().registered_instances;
224  auto range = registered_instances.equal_range(ptr);
225  for (auto it = range.first; it != range.second; ++it) {
226  if (Py_TYPE(self) == Py_TYPE(it->second)) {
227  registered_instances.erase(it);
228  return true;
229  }
230  }
231  return false;
232 }
233 
234 inline void register_instance(instance *self, void *valptr, const type_info *tinfo) {
235  register_instance_impl(valptr, self);
236  if (!tinfo->simple_ancestors)
237  traverse_offset_bases(valptr, tinfo, self, register_instance_impl);
238 }
239 
240 inline bool deregister_instance(instance *self, void *valptr, const type_info *tinfo) {
241  bool ret = deregister_instance_impl(valptr, self);
242  if (!tinfo->simple_ancestors)
243  traverse_offset_bases(valptr, tinfo, self, deregister_instance_impl);
244  return ret;
245 }
246 
250 inline PyObject *make_new_instance(PyTypeObject *type) {
251 #if defined(PYPY_VERSION)
252  // PyPy gets tp_basicsize wrong (issue 2482) under multiple inheritance when the first inherited
253  // object is a a plain Python type (i.e. not derived from an extension type). Fix it.
254  ssize_t instance_size = static_cast<ssize_t>(sizeof(instance));
255  if (type->tp_basicsize < instance_size) {
256  type->tp_basicsize = instance_size;
257  }
258 #endif
259  PyObject *self = type->tp_alloc(type, 0);
260  auto inst = reinterpret_cast<instance *>(self);
261  // Allocate the value/holder internals:
262  inst->allocate_layout();
263 
264  inst->owned = true;
265 
266  return self;
267 }
268 
271 extern "C" inline PyObject *pybind11_object_new(PyTypeObject *type, PyObject *, PyObject *) {
272  return make_new_instance(type);
273 }
274 
278 extern "C" inline int pybind11_object_init(PyObject *self, PyObject *, PyObject *) {
279  PyTypeObject *type = Py_TYPE(self);
280  std::string msg;
281 #if defined(PYPY_VERSION)
282  msg += handle((PyObject *) type).attr("__module__").cast<std::string>() + ".";
283 #endif
284  msg += type->tp_name;
285  msg += ": No constructor defined!";
286  PyErr_SetString(PyExc_TypeError, msg.c_str());
287  return -1;
288 }
289 
290 inline void add_patient(PyObject *nurse, PyObject *patient) {
291  auto &internals = get_internals();
292  auto instance = reinterpret_cast<detail::instance *>(nurse);
293  instance->has_patients = true;
294  Py_INCREF(patient);
295  internals.patients[nurse].push_back(patient);
296 }
297 
298 inline void clear_patients(PyObject *self) {
299  auto instance = reinterpret_cast<detail::instance *>(self);
300  auto &internals = get_internals();
301  auto pos = internals.patients.find(self);
302  assert(pos != internals.patients.end());
303  // Clearing the patients can cause more Python code to run, which
304  // can invalidate the iterator. Extract the vector of patients
305  // from the unordered_map first.
306  auto patients = std::move(pos->second);
307  internals.patients.erase(pos);
308  instance->has_patients = false;
309  for (PyObject *&patient : patients)
310  Py_CLEAR(patient);
311 }
312 
315 inline void clear_instance(PyObject *self) {
316  auto instance = reinterpret_cast<detail::instance *>(self);
317 
318  // Deallocate any values/holders, if present:
319  for (auto &v_h : values_and_holders(instance)) {
320  if (v_h) {
321 
322  // We have to deregister before we call dealloc because, for virtual MI types, we still
323  // need to be able to get the parent pointers.
324  if (v_h.instance_registered() && !deregister_instance(instance, v_h.value_ptr(), v_h.type))
325  pybind11_fail("pybind11_object_dealloc(): Tried to deallocate unregistered instance!");
326 
327  if (instance->owned || v_h.holder_constructed())
328  v_h.type->dealloc(v_h);
329  }
330  }
331  // Deallocate the value/holder layout internals:
333 
334  if (instance->weakrefs)
335  PyObject_ClearWeakRefs(self);
336 
337  PyObject **dict_ptr = _PyObject_GetDictPtr(self);
338  if (dict_ptr)
339  Py_CLEAR(*dict_ptr);
340 
341  if (instance->has_patients)
342  clear_patients(self);
343 }
344 
347 extern "C" inline void pybind11_object_dealloc(PyObject *self) {
348  clear_instance(self);
349 
350  auto type = Py_TYPE(self);
351  type->tp_free(self);
352 
353  // `type->tp_dealloc != pybind11_object_dealloc` means that we're being called
354  // as part of a derived type's dealloc, in which case we're not allowed to decref
355  // the type here. For cross-module compatibility, we shouldn't compare directly
356  // with `pybind11_object_dealloc`, but with the common one stashed in internals.
357  auto pybind11_object_type = (PyTypeObject *) get_internals().instance_base;
358  if (type->tp_dealloc == pybind11_object_type->tp_dealloc)
359  Py_DECREF(type);
360 }
361 
365 inline PyObject *make_object_base_type(PyTypeObject *metaclass) {
366  constexpr auto *name = "pybind11_object";
367  auto name_obj = reinterpret_steal<object>(PYBIND11_FROM_STRING(name));
368 
369  /* Danger zone: from now (and until PyType_Ready), make sure to
370  issue no Python C API calls which could potentially invoke the
371  garbage collector (the GC will call type_traverse(), which will in
372  turn find the newly constructed type in an invalid state) */
373  auto heap_type = (PyHeapTypeObject *) metaclass->tp_alloc(metaclass, 0);
374  if (!heap_type)
375  pybind11_fail("make_object_base_type(): error allocating type!");
376 
377  heap_type->ht_name = name_obj.inc_ref().ptr();
378 #ifdef PYBIND11_BUILTIN_QUALNAME
379  heap_type->ht_qualname = name_obj.inc_ref().ptr();
380 #endif
381 
382  auto type = &heap_type->ht_type;
383  type->tp_name = name;
384  type->tp_base = type_incref(&PyBaseObject_Type);
385  type->tp_basicsize = static_cast<ssize_t>(sizeof(instance));
386  type->tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HEAPTYPE;
387 
388  type->tp_new = pybind11_object_new;
389  type->tp_init = pybind11_object_init;
390  type->tp_dealloc = pybind11_object_dealloc;
391 
392  /* Support weak references (needed for the keep_alive feature) */
393  type->tp_weaklistoffset = offsetof(instance, weakrefs);
394 
395  if (PyType_Ready(type) < 0)
396  pybind11_fail("PyType_Ready failed in make_object_base_type():" + error_string());
397 
398  setattr((PyObject *) type, "__module__", str("pybind11_builtins"));
399  PYBIND11_SET_OLDPY_QUALNAME(type, name_obj);
400 
401  assert(!PyType_HasFeature(type, Py_TPFLAGS_HAVE_GC));
402  return (PyObject *) heap_type;
403 }
404 
406 extern "C" inline PyObject *pybind11_get_dict(PyObject *self, void *) {
407  PyObject *&dict = *_PyObject_GetDictPtr(self);
408  if (!dict)
409  dict = PyDict_New();
410  Py_XINCREF(dict);
411  return dict;
412 }
413 
415 extern "C" inline int pybind11_set_dict(PyObject *self, PyObject *new_dict, void *) {
416  if (!PyDict_Check(new_dict)) {
417  PyErr_Format(PyExc_TypeError, "__dict__ must be set to a dictionary, not a '%.200s'",
418  Py_TYPE(new_dict)->tp_name);
419  return -1;
420  }
421  PyObject *&dict = *_PyObject_GetDictPtr(self);
422  Py_INCREF(new_dict);
423  Py_CLEAR(dict);
424  dict = new_dict;
425  return 0;
426 }
427 
429 extern "C" inline int pybind11_traverse(PyObject *self, visitproc visit, void *arg) {
430  PyObject *&dict = *_PyObject_GetDictPtr(self);
431  Py_VISIT(dict);
432  return 0;
433 }
434 
436 extern "C" inline int pybind11_clear(PyObject *self) {
437  PyObject *&dict = *_PyObject_GetDictPtr(self);
438  Py_CLEAR(dict);
439  return 0;
440 }
441 
443 inline void enable_dynamic_attributes(PyHeapTypeObject *heap_type) {
444  auto type = &heap_type->ht_type;
445 #if defined(PYPY_VERSION)
446  pybind11_fail(std::string(type->tp_name) + ": dynamic attributes are "
447  "currently not supported in "
448  "conjunction with PyPy!");
449 #endif
450  type->tp_flags |= Py_TPFLAGS_HAVE_GC;
451  type->tp_dictoffset = type->tp_basicsize; // place dict at the end
452  type->tp_basicsize += (ssize_t)sizeof(PyObject *); // and allocate enough space for it
453  type->tp_traverse = pybind11_traverse;
454  type->tp_clear = pybind11_clear;
455 
456  static PyGetSetDef getset[] = {
457  {const_cast<char*>("__dict__"), pybind11_get_dict, pybind11_set_dict, nullptr, nullptr},
458  {nullptr, nullptr, nullptr, nullptr, nullptr}
459  };
460  type->tp_getset = getset;
461 }
462 
464 extern "C" inline int pybind11_getbuffer(PyObject *obj, Py_buffer *view, int flags) {
465  // Look for a `get_buffer` implementation in this type's info or any bases (following MRO).
466  type_info *tinfo = nullptr;
467  for (auto type : reinterpret_borrow<tuple>(Py_TYPE(obj)->tp_mro)) {
468  tinfo = get_type_info((PyTypeObject *) type.ptr());
469  if (tinfo && tinfo->get_buffer)
470  break;
471  }
472  if (view == nullptr || !tinfo || !tinfo->get_buffer) {
473  if (view)
474  view->obj = nullptr;
475  PyErr_SetString(PyExc_BufferError, "pybind11_getbuffer(): Internal error");
476  return -1;
477  }
478  std::memset(view, 0, sizeof(Py_buffer));
479  buffer_info *info = tinfo->get_buffer(obj, tinfo->get_buffer_data);
480  view->obj = obj;
481  view->ndim = 1;
482  view->internal = info;
483  view->buf = info->ptr;
484  view->itemsize = info->itemsize;
485  view->len = view->itemsize;
486  for (auto s : info->shape)
487  view->len *= s;
488  if ((flags & PyBUF_FORMAT) == PyBUF_FORMAT)
489  view->format = const_cast<char *>(info->format.c_str());
490  if ((flags & PyBUF_STRIDES) == PyBUF_STRIDES) {
491  view->ndim = (int) info->ndim;
492  view->strides = &info->strides[0];
493  view->shape = &info->shape[0];
494  }
495  Py_INCREF(view->obj);
496  return 0;
497 }
498 
500 extern "C" inline void pybind11_releasebuffer(PyObject *, Py_buffer *view) {
501  delete (buffer_info *) view->internal;
502 }
503 
505 inline void enable_buffer_protocol(PyHeapTypeObject *heap_type) {
506  heap_type->ht_type.tp_as_buffer = &heap_type->as_buffer;
507 #if PY_MAJOR_VERSION < 3
508  heap_type->ht_type.tp_flags |= Py_TPFLAGS_HAVE_NEWBUFFER;
509 #endif
510 
511  heap_type->as_buffer.bf_getbuffer = pybind11_getbuffer;
512  heap_type->as_buffer.bf_releasebuffer = pybind11_releasebuffer;
513 }
514 
517 inline PyObject* make_new_python_type(const type_record &rec) {
518  auto name = reinterpret_steal<object>(PYBIND11_FROM_STRING(rec.name));
519 
520  auto qualname = name;
521  if (rec.scope && !PyModule_Check(rec.scope.ptr()) && hasattr(rec.scope, "__qualname__")) {
522 #if PY_MAJOR_VERSION >= 3
523  qualname = reinterpret_steal<object>(
524  PyUnicode_FromFormat("%U.%U", rec.scope.attr("__qualname__").ptr(), name.ptr()));
525 #else
526  qualname = str(rec.scope.attr("__qualname__").cast<std::string>() + "." + rec.name);
527 #endif
528  }
529 
530  object module;
531  if (rec.scope) {
532  if (hasattr(rec.scope, "__module__"))
533  module = rec.scope.attr("__module__");
534  else if (hasattr(rec.scope, "__name__"))
535  module = rec.scope.attr("__name__");
536  }
537 
538  auto full_name = c_str(
539 #if !defined(PYPY_VERSION)
540  module ? str(module).cast<std::string>() + "." + rec.name :
541 #endif
542  rec.name);
543 
544  char *tp_doc = nullptr;
545  if (rec.doc && options::show_user_defined_docstrings()) {
546  /* Allocate memory for docstring (using PyObject_MALLOC, since
547  Python will free this later on) */
548  size_t size = strlen(rec.doc) + 1;
549  tp_doc = (char *) PyObject_MALLOC(size);
550  memcpy((void *) tp_doc, rec.doc, size);
551  }
552 
553  auto &internals = get_internals();
554  auto bases = tuple(rec.bases);
555  auto base = (bases.size() == 0) ? internals.instance_base
556  : bases[0].ptr();
557 
558  /* Danger zone: from now (and until PyType_Ready), make sure to
559  issue no Python C API calls which could potentially invoke the
560  garbage collector (the GC will call type_traverse(), which will in
561  turn find the newly constructed type in an invalid state) */
562  auto metaclass = rec.metaclass.ptr() ? (PyTypeObject *) rec.metaclass.ptr()
564 
565  auto heap_type = (PyHeapTypeObject *) metaclass->tp_alloc(metaclass, 0);
566  if (!heap_type)
567  pybind11_fail(std::string(rec.name) + ": Unable to create type object!");
568 
569  heap_type->ht_name = name.release().ptr();
570 #ifdef PYBIND11_BUILTIN_QUALNAME
571  heap_type->ht_qualname = qualname.inc_ref().ptr();
572 #endif
573 
574  auto type = &heap_type->ht_type;
575  type->tp_name = full_name;
576  type->tp_doc = tp_doc;
577  type->tp_base = type_incref((PyTypeObject *)base);
578  type->tp_basicsize = static_cast<ssize_t>(sizeof(instance));
579  if (bases.size() > 0)
580  type->tp_bases = bases.release().ptr();
581 
582  /* Don't inherit base __init__ */
583  type->tp_init = pybind11_object_init;
584 
585  /* Supported protocols */
586  type->tp_as_number = &heap_type->as_number;
587  type->tp_as_sequence = &heap_type->as_sequence;
588  type->tp_as_mapping = &heap_type->as_mapping;
589 #if PY_VERSION_HEX >= 0x03050000
590  type->tp_as_async = &heap_type->as_async;
591 #endif
592 
593  /* Flags */
594  type->tp_flags |= Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HEAPTYPE;
595 #if PY_MAJOR_VERSION < 3
596  type->tp_flags |= Py_TPFLAGS_CHECKTYPES;
597 #endif
598 
599  if (rec.dynamic_attr)
600  enable_dynamic_attributes(heap_type);
601 
602  if (rec.buffer_protocol)
603  enable_buffer_protocol(heap_type);
604 
605  if (PyType_Ready(type) < 0)
606  pybind11_fail(std::string(rec.name) + ": PyType_Ready failed (" + error_string() + ")!");
607 
608  assert(rec.dynamic_attr ? PyType_HasFeature(type, Py_TPFLAGS_HAVE_GC)
609  : !PyType_HasFeature(type, Py_TPFLAGS_HAVE_GC));
610 
611  /* Register type with the parent scope */
612  if (rec.scope)
613  setattr(rec.scope, rec.name, (PyObject *) type);
614  else
615  Py_INCREF(type); // Keep it alive forever (reference leak)
616 
617  if (module) // Needed by pydoc
618  setattr((PyObject *) type, "__module__", module);
619 
620  PYBIND11_SET_OLDPY_QUALNAME(type, qualname);
621 
622  return (PyObject *) type;
623 }
624 
625 NAMESPACE_END(detail)
#define PYBIND11_SET_OLDPY_QUALNAME(obj, nameobj)
Definition: class.h:24
bool has_patients
If true, get_internals().patients has an entry for this object.
int pybind11_static_set(PyObject *self, PyObject *obj, PyObject *value)
pybind11_static_property.__set__(): Just like the above __get__().
Definition: class.h:40
#define PYBIND11_FROM_STRING
#define PYBIND11_NAMESPACE
Definition: detail/common.h:26
PyObject * ptr() const
Return the underlying PyObject * pointer.
Definition: pytypes.h:182
void enable_dynamic_attributes(PyHeapTypeObject *heap_type)
Give instances of this type a __dict__ and opt into garbage collection.
Definition: class.h:443
string release
Definition: conf.py:66
void pybind11_releasebuffer(PyObject *, Py_buffer *view)
buffer_protocol: Release the resources of the buffer.
Definition: class.h:500
void register_instance(instance *self, void *valptr, const type_info *tinfo)
Definition: class.h:234
std::string error_string()
const char * name
Name of the class.
Definition: attr.h:210
void add_patient(PyObject *nurse, PyObject *patient)
Definition: class.h:290
void allocate_layout()
Initializes all of the above type/values/holders data (but not the instance values themselves) ...
int pybind11_object_init(PyObject *self, PyObject *, PyObject *)
Definition: class.h:278
bool deregister_instance_impl(void *ptr, instance *self)
Definition: class.h:222
int pybind11_meta_setattro(PyObject *obj, PyObject *name, PyObject *value)
Definition: class.h:110
bool deregister_instance(instance *self, void *valptr, const type_info *tinfo)
Definition: class.h:240
std::vector< ssize_t > strides
Definition: buffer_info.h:24
def msg()
Definition: conftest.py:165
Information record describing a Python buffer object.
Definition: buffer_info.h:17
void clear_instance(PyObject *self)
Definition: class.h:315
Wrapper for Python extension modules.
Definition: pybind11.h:789
std::vector< ssize_t > shape
Definition: buffer_info.h:23
The &#39;instance&#39; type which needs to be standard layout (need to be able to use &#39;offsetof&#39;) ...
buffer_info *(* get_buffer)(PyObject *, void *)
Definition: internals.h:126
bool register_instance_impl(void *ptr, instance *self)
Definition: class.h:218
void traverse_offset_bases(void *valueptr, const detail::type_info *tinfo, instance *self, bool(*f)(void *, instance *))
Definition: class.h:201
PyObject * make_new_instance(PyTypeObject *type)
Definition: class.h:250
obj_attr_accessor attr(handle key) const
Definition: pytypes.h:1410
std::vector< type_info * > & bases
Definition: cast.h:91
PyObject * pybind11_object_new(PyTypeObject *type, PyObject *, PyObject *)
Definition: class.h:271
size_t function_call handle ret
Definition: pybind11.h:1610
PyTypeObject * type_incref(PyTypeObject *type)
Definition: class.h:27
Annotation which requests that a special metaclass is created for a type.
Definition: attr.h:57
handle metaclass
Custom metaclass (optional)
Definition: attr.h:240
handle scope
Handle to the parent scope.
Definition: attr.h:207
#define NAMESPACE_END(name)
Definition: detail/common.h:16
void clear_patients(PyObject *self)
Definition: class.h:298
PyTypeObject * default_metaclass
Definition: internals.h:106
PyObject * make_object_base_type(PyTypeObject *metaclass)
Definition: class.h:365
const std::type_info * cpptype
Definition: internals.h:118
int pybind11_getbuffer(PyObject *obj, Py_buffer *view, int flags)
buffer_protocol: Fill in the view as specified by flags.
Definition: class.h:464
PyTypeObject * make_default_metaclass()
Definition: class.h:162
bool owned
If true, the pointer is owned which means we&#39;re free to manage it with a holder.
bool buffer_protocol
Does the class implement the buffer protocol?
Definition: attr.h:249
PyObject * pybind11_static_get(PyObject *self, PyObject *, PyObject *cls)
pybind11_static_property.__get__(): Always pass the class instead of the instance.
Definition: class.h:35
void deallocate_layout()
Destroys/deallocates all of the above.
PyTypeObject * make_static_property_type()
Definition: class.h:48
bool dynamic_attr
Does the class manage a dict?
Definition: attr.h:246
def d(s)
Definition: mkdoc.py:69
PyObject * weakrefs
Weak references.
int pybind11_clear(PyObject *self)
dynamic_attr: Allow the GC to clear the dictionary.
Definition: class.h:436
Annotation indicating that a class derives from another given type.
Definition: attr.h:39
const detail::type_info * type
Definition: cast.h:453
Annotation for function names.
Definition: attr.h:33
const char * c_str(Args &&...args)
Definition: internals.h:271
detail::enable_if_t<!detail::move_never< T >::value, T > move(object &&obj)
Definition: cast.h:1685
return os str()
void pybind11_object_dealloc(PyObject *self)
Definition: class.h:347
PyObject * make_new_python_type(const type_record &rec)
Definition: class.h:517
#define NAMESPACE_BEGIN(name)
Definition: detail/common.h:13
const char * doc
Optional docstring.
Definition: attr.h:237
void enable_buffer_protocol(PyHeapTypeObject *heap_type)
Give this type a buffer interface.
Definition: class.h:505
auto range
Definition: cast.h:455
Special data structure which (temporarily) holds metadata about a bound class.
Definition: attr.h:201
list bases
List of base classes of the newly created type.
Definition: attr.h:234
void setattr(handle obj, handle name, handle value)
Definition: pytypes.h:433
const std::type_info & tinfo
Definition: numpy.h:1091
std::string format
Definition: buffer_info.h:21
int pybind11_set_dict(PyObject *self, PyObject *new_dict, void *)
dynamic_attr: Support for instance.__dict__ = dict().
Definition: class.h:415
int pybind11_traverse(PyObject *self, visitproc visit, void *arg)
dynamic_attr: Allow the garbage collector to traverse the internal instance __dict__.
Definition: class.h:429
bool hasattr(handle obj, handle name)
Definition: pytypes.h:387
Py_ssize_t ssize_t
std::unordered_map< const PyObject *, std::vector< PyObject * > > patients
Definition: internals.h:100
PyObject * pybind11_get_dict(PyObject *self, void *)
dynamic_attr: Support for d = instance.__dict__.
Definition: class.h:406