blob: f7db3eadf1910bce287d727dce262b23cd2165cd [file] [log] [blame]
Dean Moldovan67b52d82016-10-16 19:12:43 +02001Classes
2#######
3
4This section presents advanced binding code for classes and it is assumed
5that you are already familiar with the basics from :doc:`/classes`.
6
7.. _overriding_virtuals:
8
9Overriding virtual functions in Python
10======================================
11
12Suppose that a C++ class or interface has a virtual function that we'd like to
13to override from within Python (we'll focus on the class ``Animal``; ``Dog`` is
14given as a specific example of how one would do this with traditional C++
15code).
16
17.. code-block:: cpp
18
19 class Animal {
20 public:
21 virtual ~Animal() { }
22 virtual std::string go(int n_times) = 0;
23 };
24
25 class Dog : public Animal {
26 public:
27 std::string go(int n_times) override {
28 std::string result;
29 for (int i=0; i<n_times; ++i)
30 result += "woof! ";
31 return result;
32 }
33 };
34
35Let's also suppose that we are given a plain function which calls the
36function ``go()`` on an arbitrary ``Animal`` instance.
37
38.. code-block:: cpp
39
40 std::string call_go(Animal *animal) {
41 return animal->go(3);
42 }
43
44Normally, the binding code for these classes would look as follows:
45
46.. code-block:: cpp
47
Dean Moldovan443ab592017-04-24 01:51:44 +020048 PYBIND11_MODULE(example, m) {
François Beckerce9d6e22018-05-07 15:18:08 +020049 py::class_<Animal>(m, "Animal")
Dean Moldovan67b52d82016-10-16 19:12:43 +020050 .def("go", &Animal::go);
51
Tom de Geusa7ff6162018-05-04 17:04:45 +020052 py::class_<Dog, Animal>(m, "Dog")
Dean Moldovan67b52d82016-10-16 19:12:43 +020053 .def(py::init<>());
54
55 m.def("call_go", &call_go);
Dean Moldovan67b52d82016-10-16 19:12:43 +020056 }
57
58However, these bindings are impossible to extend: ``Animal`` is not
59constructible, and we clearly require some kind of "trampoline" that
60redirects virtual calls back to Python.
61
62Defining a new type of ``Animal`` from within Python is possible but requires a
63helper class that is defined as follows:
64
65.. code-block:: cpp
66
67 class PyAnimal : public Animal {
68 public:
69 /* Inherit the constructors */
70 using Animal::Animal;
71
72 /* Trampoline (need one for each virtual function) */
73 std::string go(int n_times) override {
74 PYBIND11_OVERLOAD_PURE(
75 std::string, /* Return type */
76 Animal, /* Parent class */
jbarlow837830e852017-01-13 02:17:29 -080077 go, /* Name of function in C++ (must match Python name) */
Dean Moldovan67b52d82016-10-16 19:12:43 +020078 n_times /* Argument(s) */
79 );
80 }
81 };
82
Ivor Wanders2b045752019-06-10 16:12:28 -040083The macro :c:macro:`PYBIND11_OVERLOAD_PURE` should be used for pure virtual
84functions, and :c:macro:`PYBIND11_OVERLOAD` should be used for functions which have
Henry Schreinerd8c7ee02020-07-20 13:35:21 -040085a default implementation. There are also two alternate macros
Ivor Wanders2b045752019-06-10 16:12:28 -040086:c:macro:`PYBIND11_OVERLOAD_PURE_NAME` and :c:macro:`PYBIND11_OVERLOAD_NAME` which
Dean Moldovan67b52d82016-10-16 19:12:43 +020087take a string-valued name argument between the *Parent class* and *Name of the
Dean Moldovan234f7c32017-08-17 17:03:46 +020088function* slots, which defines the name of function in Python. This is required
jbarlow837830e852017-01-13 02:17:29 -080089when the C++ and Python versions of the
Dean Moldovan67b52d82016-10-16 19:12:43 +020090function have different names, e.g. ``operator()`` vs ``__call__``.
91
92The binding code also needs a few minor adaptations (highlighted):
93
94.. code-block:: cpp
Tom de Geusa7ff6162018-05-04 17:04:45 +020095 :emphasize-lines: 2,3
Dean Moldovan67b52d82016-10-16 19:12:43 +020096
Dean Moldovan443ab592017-04-24 01:51:44 +020097 PYBIND11_MODULE(example, m) {
François Beckerce9d6e22018-05-07 15:18:08 +020098 py::class_<Animal, PyAnimal /* <--- trampoline*/>(m, "Animal")
Dean Moldovan67b52d82016-10-16 19:12:43 +020099 .def(py::init<>())
100 .def("go", &Animal::go);
101
Tom de Geusa7ff6162018-05-04 17:04:45 +0200102 py::class_<Dog, Animal>(m, "Dog")
Dean Moldovan67b52d82016-10-16 19:12:43 +0200103 .def(py::init<>());
104
105 m.def("call_go", &call_go);
Dean Moldovan67b52d82016-10-16 19:12:43 +0200106 }
107
108Importantly, pybind11 is made aware of the trampoline helper class by
jbarlow837830e852017-01-13 02:17:29 -0800109specifying it as an extra template argument to :class:`class_`. (This can also
Dean Moldovan67b52d82016-10-16 19:12:43 +0200110be combined with other template arguments such as a custom holder type; the
111order of template types does not matter). Following this, we are able to
112define a constructor as usual.
113
jbarlow837830e852017-01-13 02:17:29 -0800114Bindings should be made against the actual class, not the trampoline helper class.
115
116.. code-block:: cpp
Tom de Geusa7ff6162018-05-04 17:04:45 +0200117 :emphasize-lines: 3
jbarlow837830e852017-01-13 02:17:29 -0800118
Tom de Geusa7ff6162018-05-04 17:04:45 +0200119 py::class_<Animal, PyAnimal /* <--- trampoline*/>(m, "Animal");
120 .def(py::init<>())
121 .def("go", &PyAnimal::go); /* <--- THIS IS WRONG, use &Animal::go */
jbarlow837830e852017-01-13 02:17:29 -0800122
Dean Moldovan67b52d82016-10-16 19:12:43 +0200123Note, however, that the above is sufficient for allowing python classes to
EricCousineau-TRIe06077b2017-08-07 18:37:42 -0400124extend ``Animal``, but not ``Dog``: see :ref:`virtual_and_inheritance` for the
Dean Moldovan67b52d82016-10-16 19:12:43 +0200125necessary steps required to providing proper overload support for inherited
126classes.
127
128The Python session below shows how to override ``Animal::go`` and invoke it via
129a virtual method call.
130
131.. code-block:: pycon
132
133 >>> from example import *
134 >>> d = Dog()
135 >>> call_go(d)
136 u'woof! woof! woof! '
137 >>> class Cat(Animal):
138 ... def go(self, n_times):
139 ... return "meow! " * n_times
140 ...
141 >>> c = Cat()
142 >>> call_go(c)
143 u'meow! meow! meow! '
144
EricCousineau-TRIe06077b2017-08-07 18:37:42 -0400145If you are defining a custom constructor in a derived Python class, you *must*
146ensure that you explicitly call the bound C++ constructor using ``__init__``,
147*regardless* of whether it is a default constructor or not. Otherwise, the
148memory for the C++ portion of the instance will be left uninitialized, which
149will generally leave the C++ instance in an invalid state and cause undefined
150behavior if the C++ instance is subsequently used.
151
Henry Schreinera6887b62020-08-19 14:53:59 -0400152.. versionchanged:: 2.6
Dustin Spicuzza1b0bf352020-07-07 06:04:06 -0400153 The default pybind11 metaclass will throw a ``TypeError`` when it detects
154 that ``__init__`` was not called by a derived class.
155
EricCousineau-TRIe06077b2017-08-07 18:37:42 -0400156Here is an example:
157
158.. code-block:: python
159
Manuel Schneider492da592019-06-10 22:02:58 +0200160 class Dachshund(Dog):
EricCousineau-TRIe06077b2017-08-07 18:37:42 -0400161 def __init__(self, name):
Tom de Geusa7ff6162018-05-04 17:04:45 +0200162 Dog.__init__(self) # Without this, undefined behavior may occur if the C++ portions are referenced.
EricCousineau-TRIe06077b2017-08-07 18:37:42 -0400163 self.name = name
164 def bark(self):
165 return "yap!"
166
167Note that a direct ``__init__`` constructor *should be called*, and ``super()``
168should not be used. For simple cases of linear inheritance, ``super()``
169may work, but once you begin mixing Python and C++ multiple inheritance,
170things will fall apart due to differences between Python's MRO and C++'s
171mechanisms.
172
Dean Moldovan67b52d82016-10-16 19:12:43 +0200173Please take a look at the :ref:`macro_notes` before using this feature.
174
175.. note::
176
177 When the overridden type returns a reference or pointer to a type that
178 pybind11 converts from Python (for example, numeric values, std::string,
179 and other built-in value-converting types), there are some limitations to
180 be aware of:
181
182 - because in these cases there is no C++ variable to reference (the value
183 is stored in the referenced Python variable), pybind11 provides one in
184 the PYBIND11_OVERLOAD macros (when needed) with static storage duration.
185 Note that this means that invoking the overloaded method on *any*
186 instance will change the referenced value stored in *all* instances of
187 that type.
188
189 - Attempts to modify a non-const reference will not have the desired
190 effect: it will change only the static cache variable, but this change
191 will not propagate to underlying Python instance, and the change will be
192 replaced the next time the overload is invoked.
193
194.. seealso::
195
196 The file :file:`tests/test_virtual_functions.cpp` contains a complete
197 example that demonstrates how to override virtual functions using pybind11
198 in more detail.
199
200.. _virtual_and_inheritance:
201
202Combining virtual functions and inheritance
203===========================================
204
205When combining virtual methods with inheritance, you need to be sure to provide
206an override for each method for which you want to allow overrides from derived
207python classes. For example, suppose we extend the above ``Animal``/``Dog``
208example as follows:
209
210.. code-block:: cpp
211
212 class Animal {
213 public:
214 virtual std::string go(int n_times) = 0;
215 virtual std::string name() { return "unknown"; }
216 };
myd73499b815ad2017-01-13 18:15:52 +0800217 class Dog : public Animal {
Dean Moldovan67b52d82016-10-16 19:12:43 +0200218 public:
219 std::string go(int n_times) override {
220 std::string result;
221 for (int i=0; i<n_times; ++i)
222 result += bark() + " ";
223 return result;
224 }
225 virtual std::string bark() { return "woof!"; }
226 };
227
228then the trampoline class for ``Animal`` must, as described in the previous
229section, override ``go()`` and ``name()``, but in order to allow python code to
230inherit properly from ``Dog``, we also need a trampoline class for ``Dog`` that
231overrides both the added ``bark()`` method *and* the ``go()`` and ``name()``
232methods inherited from ``Animal`` (even though ``Dog`` doesn't directly
233override the ``name()`` method):
234
235.. code-block:: cpp
236
237 class PyAnimal : public Animal {
238 public:
239 using Animal::Animal; // Inherit constructors
240 std::string go(int n_times) override { PYBIND11_OVERLOAD_PURE(std::string, Animal, go, n_times); }
241 std::string name() override { PYBIND11_OVERLOAD(std::string, Animal, name, ); }
242 };
243 class PyDog : public Dog {
244 public:
245 using Dog::Dog; // Inherit constructors
Omar Awileac6cb912019-06-10 21:56:17 +0200246 std::string go(int n_times) override { PYBIND11_OVERLOAD(std::string, Dog, go, n_times); }
Dean Moldovan67b52d82016-10-16 19:12:43 +0200247 std::string name() override { PYBIND11_OVERLOAD(std::string, Dog, name, ); }
248 std::string bark() override { PYBIND11_OVERLOAD(std::string, Dog, bark, ); }
249 };
250
Wenzel Jakobab262592017-03-22 21:39:19 +0100251.. note::
252
253 Note the trailing commas in the ``PYBIND11_OVERLOAD`` calls to ``name()``
254 and ``bark()``. These are needed to portably implement a trampoline for a
255 function that does not take any arguments. For functions that take
256 a nonzero number of arguments, the trailing comma must be omitted.
257
Dean Moldovan67b52d82016-10-16 19:12:43 +0200258A registered class derived from a pybind11-registered class with virtual
259methods requires a similar trampoline class, *even if* it doesn't explicitly
260declare or override any virtual methods itself:
261
262.. code-block:: cpp
263
264 class Husky : public Dog {};
265 class PyHusky : public Husky {
myd73499b815ad2017-01-13 18:15:52 +0800266 public:
267 using Husky::Husky; // Inherit constructors
Dean Moldovan67b52d82016-10-16 19:12:43 +0200268 std::string go(int n_times) override { PYBIND11_OVERLOAD_PURE(std::string, Husky, go, n_times); }
269 std::string name() override { PYBIND11_OVERLOAD(std::string, Husky, name, ); }
270 std::string bark() override { PYBIND11_OVERLOAD(std::string, Husky, bark, ); }
271 };
272
273There is, however, a technique that can be used to avoid this duplication
274(which can be especially helpful for a base class with several virtual
275methods). The technique involves using template trampoline classes, as
276follows:
277
278.. code-block:: cpp
279
280 template <class AnimalBase = Animal> class PyAnimal : public AnimalBase {
myd73499b815ad2017-01-13 18:15:52 +0800281 public:
Dean Moldovan67b52d82016-10-16 19:12:43 +0200282 using AnimalBase::AnimalBase; // Inherit constructors
283 std::string go(int n_times) override { PYBIND11_OVERLOAD_PURE(std::string, AnimalBase, go, n_times); }
284 std::string name() override { PYBIND11_OVERLOAD(std::string, AnimalBase, name, ); }
285 };
286 template <class DogBase = Dog> class PyDog : public PyAnimal<DogBase> {
myd73499b815ad2017-01-13 18:15:52 +0800287 public:
Dean Moldovan67b52d82016-10-16 19:12:43 +0200288 using PyAnimal<DogBase>::PyAnimal; // Inherit constructors
289 // Override PyAnimal's pure virtual go() with a non-pure one:
290 std::string go(int n_times) override { PYBIND11_OVERLOAD(std::string, DogBase, go, n_times); }
291 std::string bark() override { PYBIND11_OVERLOAD(std::string, DogBase, bark, ); }
292 };
293
294This technique has the advantage of requiring just one trampoline method to be
295declared per virtual method and pure virtual method override. It does,
296however, require the compiler to generate at least as many methods (and
297possibly more, if both pure virtual and overridden pure virtual methods are
298exposed, as above).
299
300The classes are then registered with pybind11 using:
301
302.. code-block:: cpp
303
304 py::class_<Animal, PyAnimal<>> animal(m, "Animal");
Wenzel Jakobfc3a4492020-07-01 00:25:17 +0200305 py::class_<Dog, Animal, PyDog<>> dog(m, "Dog");
306 py::class_<Husky, Dog, PyDog<Husky>> husky(m, "Husky");
Dean Moldovan67b52d82016-10-16 19:12:43 +0200307 // ... add animal, dog, husky definitions
308
309Note that ``Husky`` did not require a dedicated trampoline template class at
310all, since it neither declares any new virtual methods nor provides any pure
311virtual method implementations.
312
313With either the repeated-virtuals or templated trampoline methods in place, you
314can now create a python class that inherits from ``Dog``:
315
316.. code-block:: python
317
318 class ShihTzu(Dog):
319 def bark(self):
320 return "yip!"
321
322.. seealso::
323
324 See the file :file:`tests/test_virtual_functions.cpp` for complete examples
325 using both the duplication and templated trampoline approaches.
326
Jason Rhinelander464d9892017-06-12 21:52:48 -0400327.. _extended_aliases:
328
Dean Moldovan67b52d82016-10-16 19:12:43 +0200329Extended trampoline class functionality
330=======================================
331
Roland Dreier7a24bcf2019-06-11 01:57:49 -0700332.. _extended_class_functionality_forced_trampoline:
Ivor Wanders2b045752019-06-10 16:12:28 -0400333
334Forced trampoline class initialisation
335--------------------------------------
Dean Moldovan67b52d82016-10-16 19:12:43 +0200336The trampoline classes described in the previous sections are, by default, only
337initialized when needed. More specifically, they are initialized when a python
338class actually inherits from a registered type (instead of merely creating an
339instance of the registered type), or when a registered constructor is only
340valid for the trampoline class but not the registered class. This is primarily
341for performance reasons: when the trampoline class is not needed for anything
342except virtual method dispatching, not initializing the trampoline class
343improves performance by avoiding needing to do a run-time check to see if the
344inheriting python instance has an overloaded method.
345
346Sometimes, however, it is useful to always initialize a trampoline class as an
347intermediate class that does more than just handle virtual method dispatching.
348For example, such a class might perform extra class initialization, extra
349destruction operations, and might define new members and methods to enable a
350more python-like interface to a class.
351
352In order to tell pybind11 that it should *always* initialize the trampoline
353class when creating new instances of a type, the class constructors should be
354declared using ``py::init_alias<Args, ...>()`` instead of the usual
355``py::init<Args, ...>()``. This forces construction via the trampoline class,
356ensuring member initialization and (eventual) destruction.
357
358.. seealso::
359
Dean Moldovan0bc272b2017-06-22 23:42:11 +0200360 See the file :file:`tests/test_virtual_functions.cpp` for complete examples
Dean Moldovan67b52d82016-10-16 19:12:43 +0200361 showing both normal and forced trampoline instantiation.
362
Ivor Wanders2b045752019-06-10 16:12:28 -0400363Different method signatures
364---------------------------
365The macro's introduced in :ref:`overriding_virtuals` cover most of the standard
366use cases when exposing C++ classes to Python. Sometimes it is hard or unwieldy
367to create a direct one-on-one mapping between the arguments and method return
368type.
369
370An example would be when the C++ signature contains output arguments using
371references (See also :ref:`faq_reference_arguments`). Another way of solving
372this is to use the method body of the trampoline class to do conversions to the
373input and return of the Python method.
374
375The main building block to do so is the :func:`get_overload`, this function
376allows retrieving a method implemented in Python from within the trampoline's
377methods. Consider for example a C++ method which has the signature
378``bool myMethod(int32_t& value)``, where the return indicates whether
379something should be done with the ``value``. This can be made convenient on the
380Python side by allowing the Python function to return ``None`` or an ``int``:
381
382.. code-block:: cpp
383
384 bool MyClass::myMethod(int32_t& value)
385 {
386 pybind11::gil_scoped_acquire gil; // Acquire the GIL while in this scope.
387 // Try to look up the overloaded method on the Python side.
388 pybind11::function overload = pybind11::get_overload(this, "myMethod");
389 if (overload) { // method is found
390 auto obj = overload(value); // Call the Python function.
391 if (py::isinstance<py::int_>(obj)) { // check if it returned a Python integer type
392 value = obj.cast<int32_t>(); // Cast it and assign it to the value.
393 return true; // Return true; value should be used.
394 } else {
395 return false; // Python returned none, return false.
396 }
397 }
398 return false; // Alternatively return MyClass::myMethod(value);
399 }
400
401
Dean Moldovan67b52d82016-10-16 19:12:43 +0200402.. _custom_constructors:
403
404Custom constructors
405===================
406
407The syntax for binding constructors was previously introduced, but it only
Jason Rhinelander464d9892017-06-12 21:52:48 -0400408works when a constructor of the appropriate arguments actually exists on the
Dean Moldovan0991d7f2017-09-05 16:49:33 +0200409C++ side. To extend this to more general cases, pybind11 makes it possible
410to bind factory functions as constructors. For example, suppose you have a
Jason Rhinelander464d9892017-06-12 21:52:48 -0400411class like this:
412
413.. code-block:: cpp
414
415 class Example {
416 private:
417 Example(int); // private constructor
418 public:
419 // Factory function:
420 static Example create(int a) { return Example(a); }
421 };
422
Dean Moldovan0991d7f2017-09-05 16:49:33 +0200423 py::class_<Example>(m, "Example")
424 .def(py::init(&Example::create));
425
Wenzel Jakobfb276c62017-08-22 00:55:53 +0200426While it is possible to create a straightforward binding of the static
427``create`` method, it may sometimes be preferable to expose it as a constructor
428on the Python side. This can be accomplished by calling ``.def(py::init(...))``
429with the function reference returning the new instance passed as an argument.
430It is also possible to use this approach to bind a function returning a new
431instance by raw pointer or by the holder (e.g. ``std::unique_ptr``).
Jason Rhinelander464d9892017-06-12 21:52:48 -0400432
433The following example shows the different approaches:
434
435.. code-block:: cpp
436
437 class Example {
438 private:
439 Example(int); // private constructor
440 public:
441 // Factory function - returned by value:
442 static Example create(int a) { return Example(a); }
443
444 // These constructors are publicly callable:
445 Example(double);
446 Example(int, int);
447 Example(std::string);
448 };
449
450 py::class_<Example>(m, "Example")
451 // Bind the factory function as a constructor:
452 .def(py::init(&Example::create))
453 // Bind a lambda function returning a pointer wrapped in a holder:
454 .def(py::init([](std::string arg) {
455 return std::unique_ptr<Example>(new Example(arg));
456 }))
457 // Return a raw pointer:
458 .def(py::init([](int a, int b) { return new Example(a, b); }))
459 // You can mix the above with regular C++ constructor bindings as well:
460 .def(py::init<double>())
461 ;
462
463When the constructor is invoked from Python, pybind11 will call the factory
464function and store the resulting C++ instance in the Python instance.
465
Wenzel Jakobfb276c62017-08-22 00:55:53 +0200466When combining factory functions constructors with :ref:`virtual function
467trampolines <overriding_virtuals>` there are two approaches. The first is to
468add a constructor to the alias class that takes a base value by
469rvalue-reference. If such a constructor is available, it will be used to
470construct an alias instance from the value returned by the factory function.
471The second option is to provide two factory functions to ``py::init()``: the
472first will be invoked when no alias class is required (i.e. when the class is
473being used but not inherited from in Python), and the second will be invoked
474when an alias is required.
Jason Rhinelander464d9892017-06-12 21:52:48 -0400475
476You can also specify a single factory function that always returns an alias
477instance: this will result in behaviour similar to ``py::init_alias<...>()``,
Wenzel Jakobfb276c62017-08-22 00:55:53 +0200478as described in the :ref:`extended trampoline class documentation
479<extended_aliases>`.
Jason Rhinelander464d9892017-06-12 21:52:48 -0400480
481The following example shows the different factory approaches for a class with
482an alias:
483
484.. code-block:: cpp
485
486 #include <pybind11/factory.h>
487 class Example {
488 public:
489 // ...
490 virtual ~Example() = default;
491 };
492 class PyExample : public Example {
493 public:
494 using Example::Example;
495 PyExample(Example &&base) : Example(std::move(base)) {}
496 };
497 py::class_<Example, PyExample>(m, "Example")
498 // Returns an Example pointer. If a PyExample is needed, the Example
499 // instance will be moved via the extra constructor in PyExample, above.
500 .def(py::init([]() { return new Example(); }))
501 // Two callbacks:
502 .def(py::init([]() { return new Example(); } /* no alias needed */,
503 []() { return new PyExample(); } /* alias needed */))
504 // *Always* returns an alias instance (like py::init_alias<>())
505 .def(py::init([]() { return new PyExample(); }))
506 ;
507
Wenzel Jakob4336a7d2017-08-21 22:48:28 +0200508Brace initialization
509--------------------
510
511``pybind11::init<>`` internally uses C++11 brace initialization to call the
512constructor of the target class. This means that it can be used to bind
513*implicit* constructors as well:
514
515.. code-block:: cpp
516
517 struct Aggregate {
518 int a;
519 std::string b;
520 };
521
522 py::class_<Aggregate>(m, "Aggregate")
523 .def(py::init<int, const std::string &>());
524
525.. note::
526
527 Note that brace initialization preferentially invokes constructor overloads
528 taking a ``std::initializer_list``. In the rare event that this causes an
529 issue, you can work around it by using ``py::init(...)`` with a lambda
530 function that constructs the new object as desired.
531
Dean Moldovan67b52d82016-10-16 19:12:43 +0200532.. _classes_with_non_public_destructors:
533
534Non-public destructors
535======================
536
537If a class has a private or protected destructor (as might e.g. be the case in
538a singleton pattern), a compile error will occur when creating bindings via
539pybind11. The underlying issue is that the ``std::unique_ptr`` holder type that
540is responsible for managing the lifetime of instances will reference the
541destructor even if no deallocations ever take place. In order to expose classes
542with private or protected destructors, it is possible to override the holder
543type via a holder type argument to ``class_``. Pybind11 provides a helper class
544``py::nodelete`` that disables any destructor invocations. In this case, it is
545crucial that instances are deallocated on the C++ side to avoid memory leaks.
546
547.. code-block:: cpp
548
549 /* ... definition ... */
550
551 class MyClass {
552 private:
553 ~MyClass() { }
554 };
555
556 /* ... binding code ... */
557
558 py::class_<MyClass, std::unique_ptr<MyClass, py::nodelete>>(m, "MyClass")
myd73499b815ad2017-01-13 18:15:52 +0800559 .def(py::init<>())
Dean Moldovan67b52d82016-10-16 19:12:43 +0200560
James R. Barlow3618bea2020-08-08 03:07:14 -0700561.. _destructors_that_call_python:
562
563Destructors that call Python
564============================
565
566If a Python function is invoked from a C++ destructor, an exception may be thrown
567of type :class:`error_already_set`. If this error is thrown out of a class destructor,
568``std::terminate()`` will be called, terminating the process. Class destructors
569must catch all exceptions of type :class:`error_already_set` to discard the Python
570exception using :func:`error_already_set::discard_as_unraisable`.
571
572Every Python function should be treated as *possibly throwing*. When a Python generator
573stops yielding items, Python will throw a ``StopIteration`` exception, which can pass
574though C++ destructors if the generator's stack frame holds the last reference to C++
575objects.
576
577For more information, see :ref:`the documentation on exceptions <unraisable_exceptions>`.
578
579.. code-block:: cpp
580
581 class MyClass {
582 public:
583 ~MyClass() {
584 try {
585 py::print("Even printing is dangerous in a destructor");
586 py::exec("raise ValueError('This is an unraisable exception')");
587 } catch (py::error_already_set &e) {
588 // error_context should be information about where/why the occurred,
589 // e.g. use __func__ to get the name of the current function
590 e.discard_as_unraisable(__func__);
591 }
592 }
593 };
594
595.. note::
596
597 pybind11 does not support C++ destructors marked ``noexcept(false)``.
598
Henry Schreinera6887b62020-08-19 14:53:59 -0400599.. versionadded:: 2.6
600
Jason Rhinelanderabc29ca2017-01-23 03:50:00 -0500601.. _implicit_conversions:
602
Dean Moldovan67b52d82016-10-16 19:12:43 +0200603Implicit conversions
604====================
605
606Suppose that instances of two types ``A`` and ``B`` are used in a project, and
607that an ``A`` can easily be converted into an instance of type ``B`` (examples of this
608could be a fixed and an arbitrary precision number type).
609
610.. code-block:: cpp
611
612 py::class_<A>(m, "A")
613 /// ... members ...
614
615 py::class_<B>(m, "B")
616 .def(py::init<A>())
617 /// ... members ...
618
619 m.def("func",
620 [](const B &) { /* .... */ }
621 );
622
623To invoke the function ``func`` using a variable ``a`` containing an ``A``
624instance, we'd have to write ``func(B(a))`` in Python. On the other hand, C++
625will automatically apply an implicit type conversion, which makes it possible
626to directly write ``func(a)``.
627
628In this situation (i.e. where ``B`` has a constructor that converts from
629``A``), the following statement enables similar implicit conversions on the
630Python side:
631
632.. code-block:: cpp
633
634 py::implicitly_convertible<A, B>();
635
636.. note::
637
638 Implicit conversions from ``A`` to ``B`` only work when ``B`` is a custom
639 data type that is exposed to Python via pybind11.
640
Wenzel Jakob8ed5b8a2017-08-28 16:34:06 +0200641 To prevent runaway recursion, implicit conversions are non-reentrant: an
642 implicit conversion invoked as part of another implicit conversion of the
643 same type (i.e. from ``A`` to ``B``) will fail.
644
Dean Moldovan67b52d82016-10-16 19:12:43 +0200645.. _static_properties:
646
647Static properties
648=================
649
650The section on :ref:`properties` discussed the creation of instance properties
651that are implemented in terms of C++ getters and setters.
652
653Static properties can also be created in a similar way to expose getters and
Dean Moldovandd016652017-02-16 23:02:56 +0100654setters of static class attributes. Note that the implicit ``self`` argument
655also exists in this case and is used to pass the Python ``type`` subclass
656instance. This parameter will often not be needed by the C++ side, and the
657following example illustrates how to instantiate a lambda getter function
658that ignores it:
Dean Moldovan67b52d82016-10-16 19:12:43 +0200659
660.. code-block:: cpp
661
Dean Moldovandd016652017-02-16 23:02:56 +0100662 py::class_<Foo>(m, "Foo")
Dean Moldovan67b52d82016-10-16 19:12:43 +0200663 .def_property_readonly_static("foo", [](py::object /* self */) { return Foo(); });
664
665Operator overloading
666====================
667
668Suppose that we're given the following ``Vector2`` class with a vector addition
669and scalar multiplication operation, all implemented using overloaded operators
670in C++.
671
672.. code-block:: cpp
673
674 class Vector2 {
675 public:
676 Vector2(float x, float y) : x(x), y(y) { }
677
678 Vector2 operator+(const Vector2 &v) const { return Vector2(x + v.x, y + v.y); }
679 Vector2 operator*(float value) const { return Vector2(x * value, y * value); }
680 Vector2& operator+=(const Vector2 &v) { x += v.x; y += v.y; return *this; }
681 Vector2& operator*=(float v) { x *= v; y *= v; return *this; }
682
683 friend Vector2 operator*(float f, const Vector2 &v) {
684 return Vector2(f * v.x, f * v.y);
685 }
686
687 std::string toString() const {
688 return "[" + std::to_string(x) + ", " + std::to_string(y) + "]";
689 }
690 private:
691 float x, y;
692 };
693
694The following snippet shows how the above operators can be conveniently exposed
695to Python.
696
697.. code-block:: cpp
698
699 #include <pybind11/operators.h>
700
Dean Moldovan443ab592017-04-24 01:51:44 +0200701 PYBIND11_MODULE(example, m) {
Dean Moldovan67b52d82016-10-16 19:12:43 +0200702 py::class_<Vector2>(m, "Vector2")
703 .def(py::init<float, float>())
704 .def(py::self + py::self)
705 .def(py::self += py::self)
706 .def(py::self *= float())
707 .def(float() * py::self)
myd73499b815ad2017-01-13 18:15:52 +0800708 .def(py::self * float())
Ian Bell502ffe52019-06-22 04:07:41 -0600709 .def(-py::self)
Dean Moldovan67b52d82016-10-16 19:12:43 +0200710 .def("__repr__", &Vector2::toString);
Dean Moldovan67b52d82016-10-16 19:12:43 +0200711 }
712
713Note that a line like
714
715.. code-block:: cpp
716
717 .def(py::self * float())
718
719is really just short hand notation for
720
721.. code-block:: cpp
722
723 .def("__mul__", [](const Vector2 &a, float b) {
724 return a * b;
725 }, py::is_operator())
726
727This can be useful for exposing additional operators that don't exist on the
728C++ side, or to perform other types of customization. The ``py::is_operator``
729flag marker is needed to inform pybind11 that this is an operator, which
730returns ``NotImplemented`` when invoked with incompatible arguments rather than
731throwing a type error.
732
733.. note::
734
735 To use the more convenient ``py::self`` notation, the additional
736 header file :file:`pybind11/operators.h` must be included.
737
738.. seealso::
739
740 The file :file:`tests/test_operator_overloading.cpp` contains a
741 complete example that demonstrates how to work with overloaded operators in
742 more detail.
743
Dean Moldovan1e5a7da2017-08-24 01:53:15 +0200744.. _pickling:
745
Dean Moldovan67b52d82016-10-16 19:12:43 +0200746Pickling support
747================
748
749Python's ``pickle`` module provides a powerful facility to serialize and
750de-serialize a Python object graph into a binary data stream. To pickle and
Dean Moldovan1e5a7da2017-08-24 01:53:15 +0200751unpickle C++ classes using pybind11, a ``py::pickle()`` definition must be
752provided. Suppose the class in question has the following signature:
Dean Moldovan67b52d82016-10-16 19:12:43 +0200753
754.. code-block:: cpp
755
756 class Pickleable {
757 public:
758 Pickleable(const std::string &value) : m_value(value) { }
759 const std::string &value() const { return m_value; }
760
761 void setExtra(int extra) { m_extra = extra; }
762 int extra() const { return m_extra; }
763 private:
764 std::string m_value;
765 int m_extra = 0;
766 };
767
Patrik Huber1ad22272017-09-04 22:00:19 +0100768Pickling support in Python is enabled by defining the ``__setstate__`` and
Dean Moldovan1e5a7da2017-08-24 01:53:15 +0200769``__getstate__`` methods [#f3]_. For pybind11 classes, use ``py::pickle()``
770to bind these two functions:
Dean Moldovan67b52d82016-10-16 19:12:43 +0200771
772.. code-block:: cpp
773
774 py::class_<Pickleable>(m, "Pickleable")
775 .def(py::init<std::string>())
776 .def("value", &Pickleable::value)
777 .def("extra", &Pickleable::extra)
778 .def("setExtra", &Pickleable::setExtra)
Dean Moldovan1e5a7da2017-08-24 01:53:15 +0200779 .def(py::pickle(
780 [](const Pickleable &p) { // __getstate__
781 /* Return a tuple that fully encodes the state of the object */
782 return py::make_tuple(p.value(), p.extra());
783 },
784 [](py::tuple t) { // __setstate__
785 if (t.size() != 2)
786 throw std::runtime_error("Invalid state!");
Dean Moldovan67b52d82016-10-16 19:12:43 +0200787
Dean Moldovan1e5a7da2017-08-24 01:53:15 +0200788 /* Create a new C++ instance */
789 Pickleable p(t[0].cast<std::string>());
Dean Moldovan67b52d82016-10-16 19:12:43 +0200790
Dean Moldovan1e5a7da2017-08-24 01:53:15 +0200791 /* Assign any additional state */
792 p.setExtra(t[1].cast<int>());
793
794 return p;
795 }
796 ));
797
798The ``__setstate__`` part of the ``py::picke()`` definition follows the same
799rules as the single-argument version of ``py::init()``. The return type can be
800a value, pointer or holder type. See :ref:`custom_constructors` for details.
Dean Moldovan67b52d82016-10-16 19:12:43 +0200801
802An instance can now be pickled as follows:
803
804.. code-block:: python
805
806 try:
807 import cPickle as pickle # Use cPickle on Python 2.7
808 except ImportError:
809 import pickle
810
811 p = Pickleable("test_value")
812 p.setExtra(15)
813 data = pickle.dumps(p, 2)
814
Matthijs van der Burghb5240082020-06-10 13:30:41 +0200815
816.. note::
817 Note that only the cPickle module is supported on Python 2.7.
818
819 The second argument to ``dumps`` is also crucial: it selects the pickle
820 protocol version 2, since the older version 1 is not supported. Newer
821 versions are also fine—for instance, specify ``-1`` to always use the
822 latest available version. Beware: failure to follow these instructions
823 will cause important pybind11 memory allocation routines to be skipped
824 during unpickling, which will likely lead to memory corruption and/or
825 segmentation faults.
Dean Moldovan67b52d82016-10-16 19:12:43 +0200826
827.. seealso::
828
829 The file :file:`tests/test_pickling.cpp` contains a complete example
830 that demonstrates how to pickle and unpickle types using pybind11 in more
831 detail.
832
833.. [#f3] http://docs.python.org/3/library/pickle.html#pickling-class-instances
834
Matthijs van der Burghb5240082020-06-10 13:30:41 +0200835Deepcopy support
836================
837
838Python normally uses references in assignments. Sometimes a real copy is needed
839to prevent changing all copies. The ``copy`` module [#f5]_ provides these
840capabilities.
841
842On Python 3, a class with pickle support is automatically also (deep)copy
843compatible. However, performance can be improved by adding custom
844``__copy__`` and ``__deepcopy__`` methods. With Python 2.7, these custom methods
845are mandatory for (deep)copy compatibility, because pybind11 only supports
846cPickle.
847
848For simple classes (deep)copy can be enabled by using the copy constructor,
849which should look as follows:
850
851.. code-block:: cpp
852
853 py::class_<Copyable>(m, "Copyable")
854 .def("__copy__", [](const Copyable &self) {
855 return Copyable(self);
856 })
857 .def("__deepcopy__", [](const Copyable &self, py::dict) {
858 return Copyable(self);
859 }, "memo"_a);
860
861.. note::
862
863 Dynamic attributes will not be copied in this example.
864
865.. [#f5] https://docs.python.org/3/library/copy.html
866
Dean Moldovan67b52d82016-10-16 19:12:43 +0200867Multiple Inheritance
868====================
869
870pybind11 can create bindings for types that derive from multiple base types
871(aka. *multiple inheritance*). To do so, specify all bases in the template
872arguments of the ``class_`` declaration:
873
874.. code-block:: cpp
875
876 py::class_<MyType, BaseType1, BaseType2, BaseType3>(m, "MyType")
877 ...
878
879The base types can be specified in arbitrary order, and they can even be
880interspersed with alias types and holder types (discussed earlier in this
881document)---pybind11 will automatically find out which is which. The only
882requirement is that the first template argument is the type to be declared.
883
Jason Rhinelandere45c2112017-02-22 21:36:09 -0500884It is also permitted to inherit multiply from exported C++ classes in Python,
Tom de Geusa7ff6162018-05-04 17:04:45 +0200885as well as inheriting from multiple Python and/or pybind11-exported classes.
Dean Moldovan67b52d82016-10-16 19:12:43 +0200886
Jason Rhinelandere45c2112017-02-22 21:36:09 -0500887There is one caveat regarding the implementation of this feature:
Dean Moldovan67b52d82016-10-16 19:12:43 +0200888
Jason Rhinelandere45c2112017-02-22 21:36:09 -0500889When only one base type is specified for a C++ type that actually has multiple
890bases, pybind11 will assume that it does not participate in multiple
891inheritance, which can lead to undefined behavior. In such cases, add the tag
892``multiple_inheritance`` to the class constructor:
Dean Moldovan67b52d82016-10-16 19:12:43 +0200893
Jason Rhinelandere45c2112017-02-22 21:36:09 -0500894.. code-block:: cpp
Dean Moldovan67b52d82016-10-16 19:12:43 +0200895
Jason Rhinelandere45c2112017-02-22 21:36:09 -0500896 py::class_<MyType, BaseType2>(m, "MyType", py::multiple_inheritance());
Dean Moldovan67b52d82016-10-16 19:12:43 +0200897
Jason Rhinelandere45c2112017-02-22 21:36:09 -0500898The tag is redundant and does not need to be specified when multiple base types
899are listed.
Jason Rhinelander7437c692017-07-28 22:03:44 -0400900
901.. _module_local:
902
903Module-local class bindings
904===========================
905
Tom de Geusa7ff6162018-05-04 17:04:45 +0200906When creating a binding for a class, pybind11 by default makes that binding
Jason Rhinelander7437c692017-07-28 22:03:44 -0400907"global" across modules. What this means is that a type defined in one module
Jason Rhinelander5e14aa62017-08-17 11:38:05 -0400908can be returned from any module resulting in the same Python type. For
Jason Rhinelander7437c692017-07-28 22:03:44 -0400909example, this allows the following:
910
911.. code-block:: cpp
912
913 // In the module1.cpp binding code for module1:
914 py::class_<Pet>(m, "Pet")
Jason Rhinelander5e14aa62017-08-17 11:38:05 -0400915 .def(py::init<std::string>())
916 .def_readonly("name", &Pet::name);
Jason Rhinelander7437c692017-07-28 22:03:44 -0400917
918.. code-block:: cpp
919
920 // In the module2.cpp binding code for module2:
Jason Rhinelander5e14aa62017-08-17 11:38:05 -0400921 m.def("create_pet", [](std::string name) { return new Pet(name); });
Jason Rhinelander7437c692017-07-28 22:03:44 -0400922
923.. code-block:: pycon
924
925 >>> from module1 import Pet
Jason Rhinelander5e14aa62017-08-17 11:38:05 -0400926 >>> from module2 import create_pet
927 >>> pet1 = Pet("Kitty")
928 >>> pet2 = create_pet("Doggy")
929 >>> pet2.name()
930 'Doggy'
Jason Rhinelander7437c692017-07-28 22:03:44 -0400931
932When writing binding code for a library, this is usually desirable: this
933allows, for example, splitting up a complex library into multiple Python
934modules.
935
936In some cases, however, this can cause conflicts. For example, suppose two
937unrelated modules make use of an external C++ library and each provide custom
938bindings for one of that library's classes. This will result in an error when
939a Python program attempts to import both modules (directly or indirectly)
940because of conflicting definitions on the external type:
941
942.. code-block:: cpp
943
944 // dogs.cpp
945
946 // Binding for external library class:
947 py::class<pets::Pet>(m, "Pet")
948 .def("name", &pets::Pet::name);
949
950 // Binding for local extension class:
951 py::class<Dog, pets::Pet>(m, "Dog")
952 .def(py::init<std::string>());
953
954.. code-block:: cpp
955
956 // cats.cpp, in a completely separate project from the above dogs.cpp.
957
958 // Binding for external library class:
959 py::class<pets::Pet>(m, "Pet")
960 .def("get_name", &pets::Pet::name);
961
962 // Binding for local extending class:
963 py::class<Cat, pets::Pet>(m, "Cat")
964 .def(py::init<std::string>());
965
966.. code-block:: pycon
967
968 >>> import cats
969 >>> import dogs
970 Traceback (most recent call last):
971 File "<stdin>", line 1, in <module>
972 ImportError: generic_type: type "Pet" is already registered!
973
974To get around this, you can tell pybind11 to keep the external class binding
975localized to the module by passing the ``py::module_local()`` attribute into
976the ``py::class_`` constructor:
977
978.. code-block:: cpp
979
980 // Pet binding in dogs.cpp:
981 py::class<pets::Pet>(m, "Pet", py::module_local())
982 .def("name", &pets::Pet::name);
983
984.. code-block:: cpp
985
986 // Pet binding in cats.cpp:
987 py::class<pets::Pet>(m, "Pet", py::module_local())
988 .def("get_name", &pets::Pet::name);
989
Jason Rhinelander5e14aa62017-08-17 11:38:05 -0400990This makes the Python-side ``dogs.Pet`` and ``cats.Pet`` into distinct classes,
991avoiding the conflict and allowing both modules to be loaded. C++ code in the
992``dogs`` module that casts or returns a ``Pet`` instance will result in a
993``dogs.Pet`` Python instance, while C++ code in the ``cats`` module will result
994in a ``cats.Pet`` Python instance.
Jason Rhinelander7437c692017-07-28 22:03:44 -0400995
Jason Rhinelander5e14aa62017-08-17 11:38:05 -0400996This does come with two caveats, however: First, external modules cannot return
997or cast a ``Pet`` instance to Python (unless they also provide their own local
998bindings). Second, from the Python point of view they are two distinct classes.
999
1000Note that the locality only applies in the C++ -> Python direction. When
1001passing such a ``py::module_local`` type into a C++ function, the module-local
1002classes are still considered. This means that if the following function is
1003added to any module (including but not limited to the ``cats`` and ``dogs``
1004modules above) it will be callable with either a ``dogs.Pet`` or ``cats.Pet``
1005argument:
Jason Rhinelander7437c692017-07-28 22:03:44 -04001006
1007.. code-block:: cpp
1008
Jason Rhinelander5e14aa62017-08-17 11:38:05 -04001009 m.def("pet_name", [](const pets::Pet &pet) { return pet.name(); });
Jason Rhinelander7437c692017-07-28 22:03:44 -04001010
Jason Rhinelander5e14aa62017-08-17 11:38:05 -04001011For example, suppose the above function is added to each of ``cats.cpp``,
1012``dogs.cpp`` and ``frogs.cpp`` (where ``frogs.cpp`` is some other module that
1013does *not* bind ``Pets`` at all).
Jason Rhinelander7437c692017-07-28 22:03:44 -04001014
1015.. code-block:: pycon
1016
Jason Rhinelander5e14aa62017-08-17 11:38:05 -04001017 >>> import cats, dogs, frogs # No error because of the added py::module_local()
Jason Rhinelander7437c692017-07-28 22:03:44 -04001018 >>> mycat, mydog = cats.Cat("Fluffy"), dogs.Dog("Rover")
Jason Rhinelander5e14aa62017-08-17 11:38:05 -04001019 >>> (cats.pet_name(mycat), dogs.pet_name(mydog))
Jason Rhinelander7437c692017-07-28 22:03:44 -04001020 ('Fluffy', 'Rover')
Jason Rhinelander5e14aa62017-08-17 11:38:05 -04001021 >>> (cats.pet_name(mydog), dogs.pet_name(mycat), frogs.pet_name(mycat))
1022 ('Rover', 'Fluffy', 'Fluffy')
Jason Rhinelander7437c692017-07-28 22:03:44 -04001023
Jason Rhinelander5e14aa62017-08-17 11:38:05 -04001024It is possible to use ``py::module_local()`` registrations in one module even
1025if another module registers the same type globally: within the module with the
1026module-local definition, all C++ instances will be cast to the associated bound
1027Python type. In other modules any such values are converted to the global
1028Python type created elsewhere.
Jason Rhinelander4b159232017-08-04 13:05:12 -04001029
Jason Rhinelander7437c692017-07-28 22:03:44 -04001030.. note::
1031
1032 STL bindings (as provided via the optional :file:`pybind11/stl_bind.h`
1033 header) apply ``py::module_local`` by default when the bound type might
1034 conflict with other modules; see :ref:`stl_bind` for details.
1035
1036.. note::
1037
1038 The localization of the bound types is actually tied to the shared object
1039 or binary generated by the compiler/linker. For typical modules created
1040 with ``PYBIND11_MODULE()``, this distinction is not significant. It is
1041 possible, however, when :ref:`embedding` to embed multiple modules in the
1042 same binary (see :ref:`embedding_modules`). In such a case, the
1043 localization will apply across all embedded modules within the same binary.
1044
1045.. seealso::
1046
1047 The file :file:`tests/test_local_bindings.cpp` contains additional examples
1048 that demonstrate how ``py::module_local()`` works.
Dean Moldovan234f7c32017-08-17 17:03:46 +02001049
1050Binding protected member functions
1051==================================
1052
1053It's normally not possible to expose ``protected`` member functions to Python:
1054
1055.. code-block:: cpp
1056
1057 class A {
1058 protected:
1059 int foo() const { return 42; }
1060 };
1061
1062 py::class_<A>(m, "A")
1063 .def("foo", &A::foo); // error: 'foo' is a protected member of 'A'
1064
1065On one hand, this is good because non-``public`` members aren't meant to be
1066accessed from the outside. But we may want to make use of ``protected``
1067functions in derived Python classes.
1068
1069The following pattern makes this possible:
1070
1071.. code-block:: cpp
1072
1073 class A {
1074 protected:
1075 int foo() const { return 42; }
1076 };
1077
1078 class Publicist : public A { // helper type for exposing protected functions
1079 public:
1080 using A::foo; // inherited with different access modifier
1081 };
1082
1083 py::class_<A>(m, "A") // bind the primary class
1084 .def("foo", &Publicist::foo); // expose protected methods via the publicist
1085
1086This works because ``&Publicist::foo`` is exactly the same function as
1087``&A::foo`` (same signature and address), just with a different access
1088modifier. The only purpose of the ``Publicist`` helper class is to make
1089the function name ``public``.
1090
1091If the intent is to expose ``protected`` ``virtual`` functions which can be
1092overridden in Python, the publicist pattern can be combined with the previously
1093described trampoline:
1094
1095.. code-block:: cpp
1096
1097 class A {
1098 public:
1099 virtual ~A() = default;
1100
1101 protected:
1102 virtual int foo() const { return 42; }
1103 };
1104
1105 class Trampoline : public A {
1106 public:
1107 int foo() const override { PYBIND11_OVERLOAD(int, A, foo, ); }
1108 };
1109
1110 class Publicist : public A {
1111 public:
1112 using A::foo;
1113 };
1114
1115 py::class_<A, Trampoline>(m, "A") // <-- `Trampoline` here
1116 .def("foo", &Publicist::foo); // <-- `Publicist` here, not `Trampoline`!
1117
1118.. note::
1119
1120 MSVC 2015 has a compiler bug (fixed in version 2017) which
1121 requires a more explicit function binding in the form of
1122 ``.def("foo", static_cast<int (A::*)() const>(&Publicist::foo));``
1123 where ``int (A::*)() const`` is the type of ``A::foo``.
oremanjfd9bc8f2018-04-13 20:13:10 -04001124
Dustin Spicuzza0dfffcf2020-04-05 02:34:00 -04001125Binding final classes
1126=====================
1127
1128Some classes may not be appropriate to inherit from. In C++11, classes can
1129use the ``final`` specifier to ensure that a class cannot be inherited from.
Henry Schreinerd8c7ee02020-07-20 13:35:21 -04001130The ``py::is_final`` attribute can be used to ensure that Python classes
Dustin Spicuzza0dfffcf2020-04-05 02:34:00 -04001131cannot inherit from a specified type. The underlying C++ type does not need
1132to be declared final.
1133
1134.. code-block:: cpp
1135
1136 class IsFinal final {};
1137
1138 py::class_<IsFinal>(m, "IsFinal", py::is_final());
1139
1140When you try to inherit from such a class in Python, you will now get this
1141error:
1142
1143.. code-block:: pycon
1144
1145 >>> class PyFinalChild(IsFinal):
1146 ... pass
1147 TypeError: type 'IsFinal' is not an acceptable base type
1148
1149.. note:: This attribute is currently ignored on PyPy
1150
Henry Schreinera6887b62020-08-19 14:53:59 -04001151.. versionadded:: 2.6
1152
oremanjfd9bc8f2018-04-13 20:13:10 -04001153Custom automatic downcasters
1154============================
1155
1156As explained in :ref:`inheritance`, pybind11 comes with built-in
1157understanding of the dynamic type of polymorphic objects in C++; that
1158is, returning a Pet to Python produces a Python object that knows it's
1159wrapping a Dog, if Pet has virtual methods and pybind11 knows about
1160Dog and this Pet is in fact a Dog. Sometimes, you might want to
1161provide this automatic downcasting behavior when creating bindings for
1162a class hierarchy that does not use standard C++ polymorphism, such as
1163LLVM [#f4]_. As long as there's some way to determine at runtime
1164whether a downcast is safe, you can proceed by specializing the
1165``pybind11::polymorphic_type_hook`` template:
1166
1167.. code-block:: cpp
1168
1169 enum class PetKind { Cat, Dog, Zebra };
1170 struct Pet { // Not polymorphic: has no virtual methods
1171 const PetKind kind;
1172 int age = 0;
1173 protected:
1174 Pet(PetKind _kind) : kind(_kind) {}
1175 };
1176 struct Dog : Pet {
1177 Dog() : Pet(PetKind::Dog) {}
1178 std::string sound = "woof!";
1179 std::string bark() const { return sound; }
1180 };
1181
1182 namespace pybind11 {
1183 template<> struct polymorphic_type_hook<Pet> {
1184 static const void *get(const Pet *src, const std::type_info*& type) {
1185 // note that src may be nullptr
1186 if (src && src->kind == PetKind::Dog) {
1187 type = &typeid(Dog);
1188 return static_cast<const Dog*>(src);
1189 }
1190 return src;
1191 }
1192 };
1193 } // namespace pybind11
1194
1195When pybind11 wants to convert a C++ pointer of type ``Base*`` to a
1196Python object, it calls ``polymorphic_type_hook<Base>::get()`` to
1197determine if a downcast is possible. The ``get()`` function should use
1198whatever runtime information is available to determine if its ``src``
1199parameter is in fact an instance of some class ``Derived`` that
1200inherits from ``Base``. If it finds such a ``Derived``, it sets ``type
1201= &typeid(Derived)`` and returns a pointer to the ``Derived`` object
1202that contains ``src``. Otherwise, it just returns ``src``, leaving
1203``type`` at its default value of nullptr. If you set ``type`` to a
1204type that pybind11 doesn't know about, no downcasting will occur, and
1205the original ``src`` pointer will be used with its static type
1206``Base*``.
1207
1208It is critical that the returned pointer and ``type`` argument of
1209``get()`` agree with each other: if ``type`` is set to something
1210non-null, the returned pointer must point to the start of an object
1211whose type is ``type``. If the hierarchy being exposed uses only
1212single inheritance, a simple ``return src;`` will achieve this just
1213fine, but in the general case, you must cast ``src`` to the
1214appropriate derived-class pointer (e.g. using
1215``static_cast<Derived>(src)``) before allowing it to be returned as a
1216``void*``.
1217
1218.. [#f4] https://llvm.org/docs/HowToSetUpLLVMStyleRTTI.html
1219
1220.. note::
1221
1222 pybind11's standard support for downcasting objects whose types
1223 have virtual methods is implemented using
1224 ``polymorphic_type_hook`` too, using the standard C++ ability to
1225 determine the most-derived type of a polymorphic object using
1226 ``typeid()`` and to cast a base pointer to that most-derived type
1227 (even if you don't know what it is) using ``dynamic_cast<void*>``.
1228
1229.. seealso::
1230
1231 The file :file:`tests/test_tagbased_polymorphic.cpp` contains a
1232 more complete example, including a demonstration of how to provide
1233 automatic downcasting for an entire class hierarchy without
1234 writing one get() function for each class.