test_virtual_functions.cpp 11.7 KB
Newer Older
1
/*
Dean Moldovan's avatar
Dean Moldovan committed
2
    tests/test_virtual_functions.cpp -- overriding virtual functions from Python
3

4
    Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>
5
6
7
8
9

    All rights reserved. Use of this source code is governed by a
    BSD-style license that can be found in the LICENSE file.
*/

Dean Moldovan's avatar
Dean Moldovan committed
10
11
#include "pybind11_tests.h"
#include "constructor_stats.h"
12
#include <pybind11/functional.h>
13
14

/* This is an example class that we'll want to be able to extend from Python */
15
class ExampleVirt  {
16
public:
17
18
19
20
    ExampleVirt(int state) : state(state) { print_created(this, state); }
    ExampleVirt(const ExampleVirt &e) : state(e.state) { print_copy_created(this); }
    ExampleVirt(ExampleVirt &&e) : state(e.state) { print_move_created(this); e.state = 0; }
    ~ExampleVirt() { print_destroyed(this); }
21
22

    virtual int run(int value) {
23
24
        py::print("Original implementation of "
                  "ExampleVirt::run(state={}, value={})"_s.format(state, value));
25
26
27
        return state + value;
    }

28
    virtual bool run_bool() = 0;
29
30
31
32
33
34
    virtual void pure_virtual() = 0;
private:
    int state;
};

/* This is a wrapper class that must be generated */
35
class PyExampleVirt : public ExampleVirt {
36
public:
37
    using ExampleVirt::ExampleVirt; /* Inherit constructors */
38

39
    int run(int value) override {
40
        /* Generate wrapping code that enables native function overloading */
41
        PYBIND11_OVERLOAD(
42
43
44
45
            int,         /* Return type */
            ExampleVirt, /* Parent class */
            run,         /* Name of function */
            value        /* Argument(s) */
46
47
48
        );
    }

49
    bool run_bool() override {
50
        PYBIND11_OVERLOAD_PURE(
51
            bool,         /* Return type */
52
            ExampleVirt,  /* Parent class */
53
54
55
            run_bool,     /* Name of function */
                          /* This function has no arguments. The trailing comma
                             in the previous line is needed for some compilers */
56
57
58
        );
    }

59
    void pure_virtual() override {
60
        PYBIND11_OVERLOAD_PURE(
61
            void,         /* Return type */
62
            ExampleVirt,  /* Parent class */
63
64
65
            pure_virtual, /* Name of function */
                          /* This function has no arguments. The trailing comma
                             in the previous line is needed for some compilers */
66
67
68
69
        );
    }
};

70
71
class NonCopyable {
public:
72
73
    NonCopyable(int a, int b) : value{new int(a*b)} { print_created(this, a, b); }
    NonCopyable(NonCopyable &&o) { value = std::move(o.value); print_move_created(this); }
74
75
76
77
78
79
80
    NonCopyable(const NonCopyable &) = delete;
    NonCopyable() = delete;
    void operator=(const NonCopyable &) = delete;
    void operator=(NonCopyable &&) = delete;
    std::string get_value() const {
        if (value) return std::to_string(*value); else return "(null)";
    }
81
    ~NonCopyable() { print_destroyed(this); }
82
83
84
85
86
87
88
89
90

private:
    std::unique_ptr<int> value;
};

// This is like the above, but is both copy and movable.  In effect this means it should get moved
// when it is not referenced elsewhere, but copied if it is still referenced.
class Movable {
public:
91
92
93
    Movable(int a, int b) : value{a+b} { print_created(this, a, b); }
    Movable(const Movable &m) { value = m.value; print_copy_created(this); }
    Movable(Movable &&m) { value = std::move(m.value); print_move_created(this); }
94
    std::string get_value() const { return std::to_string(value); }
95
    ~Movable() { print_destroyed(this); }
96
97
98
99
100
101
102
103
104
private:
    int value;
};

class NCVirt {
public:
    virtual NonCopyable get_noncopyable(int a, int b) { return NonCopyable(a, b); }
    virtual Movable get_movable(int a, int b) = 0;

105
106
    std::string print_nc(int a, int b) { return get_noncopyable(a, b).get_value(); }
    std::string print_movable(int a, int b) { return get_movable(a, b).get_value(); }
107
108
};
class NCVirtTrampoline : public NCVirt {
109
#if !defined(__INTEL_COMPILER)
110
    NonCopyable get_noncopyable(int a, int b) override {
111
112
        PYBIND11_OVERLOAD(NonCopyable, NCVirt, get_noncopyable, a, b);
    }
113
#endif
114
    Movable get_movable(int a, int b) override {
115
116
117
118
        PYBIND11_OVERLOAD_PURE(Movable, NCVirt, get_movable, a, b);
    }
};

119
int runExampleVirt(ExampleVirt *ex, int value) {
120
121
122
    return ex->run(value);
}

123
bool runExampleVirtBool(ExampleVirt* ex) {
124
125
126
    return ex->run_bool();
}

127
void runExampleVirtVirtual(ExampleVirt *ex) {
128
129
130
    ex->pure_virtual();
}

131

132
133
// Inheriting virtual methods.  We do two versions here: the repeat-everything version and the
// templated trampoline versions mentioned in docs/advanced.rst.
134
//
135
136
137
// These base classes are exactly the same, but we technically need distinct
// classes for this example code because we need to be able to bind them
// properly (pybind11, sensibly, doesn't allow us to bind the same C++ class to
138
139
140
141
142
// multiple python classes).
class A_Repeat {
#define A_METHODS \
public: \
    virtual int unlucky_number() = 0; \
143
144
145
146
147
    virtual std::string say_something(unsigned times) { \
        std::string s = ""; \
        for (unsigned i = 0; i < times; ++i) \
            s += "hi"; \
        return s; \
148
149
150
    } \
    std::string say_everything() { \
        return say_something(1) + " " + std::to_string(unlucky_number()); \
151
152
153
154
155
156
157
    }
A_METHODS
};
class B_Repeat : public A_Repeat {
#define B_METHODS \
public: \
    int unlucky_number() override { return 13; } \
158
159
    std::string say_something(unsigned times) override { \
        return "B says hi " + std::to_string(times) + " times"; \
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
    } \
    virtual double lucky_number() { return 7.0; }
B_METHODS
};
class C_Repeat : public B_Repeat {
#define C_METHODS \
public: \
    int unlucky_number() override { return 4444; } \
    double lucky_number() override { return 888; }
C_METHODS
};
class D_Repeat : public C_Repeat {
#define D_METHODS // Nothing overridden.
D_METHODS
};

// Base classes for templated inheritance trampolines.  Identical to the repeat-everything version:
class A_Tpl { A_METHODS };
class B_Tpl : public A_Tpl { B_METHODS };
class C_Tpl : public B_Tpl { C_METHODS };
class D_Tpl : public C_Tpl { D_METHODS };


// Inheritance approach 1: each trampoline gets every virtual method (11 in total)
class PyA_Repeat : public A_Repeat {
public:
    using A_Repeat::A_Repeat;
    int unlucky_number() override { PYBIND11_OVERLOAD_PURE(int, A_Repeat, unlucky_number, ); }
188
    std::string say_something(unsigned times) override { PYBIND11_OVERLOAD(std::string, A_Repeat, say_something, times); }
189
190
191
192
193
};
class PyB_Repeat : public B_Repeat {
public:
    using B_Repeat::B_Repeat;
    int unlucky_number() override { PYBIND11_OVERLOAD(int, B_Repeat, unlucky_number, ); }
194
    std::string say_something(unsigned times) override { PYBIND11_OVERLOAD(std::string, B_Repeat, say_something, times); }
195
196
197
198
199
200
    double lucky_number() override { PYBIND11_OVERLOAD(double, B_Repeat, lucky_number, ); }
};
class PyC_Repeat : public C_Repeat {
public:
    using C_Repeat::C_Repeat;
    int unlucky_number() override { PYBIND11_OVERLOAD(int, C_Repeat, unlucky_number, ); }
201
    std::string say_something(unsigned times) override { PYBIND11_OVERLOAD(std::string, C_Repeat, say_something, times); }
202
203
204
205
206
207
    double lucky_number() override { PYBIND11_OVERLOAD(double, C_Repeat, lucky_number, ); }
};
class PyD_Repeat : public D_Repeat {
public:
    using D_Repeat::D_Repeat;
    int unlucky_number() override { PYBIND11_OVERLOAD(int, D_Repeat, unlucky_number, ); }
208
    std::string say_something(unsigned times) override { PYBIND11_OVERLOAD(std::string, D_Repeat, say_something, times); }
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
    double lucky_number() override { PYBIND11_OVERLOAD(double, D_Repeat, lucky_number, ); }
};

// Inheritance approach 2: templated trampoline classes.
//
// Advantages:
// - we have only 2 (template) class and 4 method declarations (one per virtual method, plus one for
//   any override of a pure virtual method), versus 4 classes and 6 methods (MI) or 4 classes and 11
//   methods (repeat).
// - Compared to MI, we also don't have to change the non-trampoline inheritance to virtual, and can
//   properly inherit constructors.
//
// Disadvantage:
// - the compiler must still generate and compile 14 different methods (more, even, than the 11
//   required for the repeat approach) instead of the 6 required for MI.  (If there was no pure
//   method (or no pure method override), the number would drop down to the same 11 as the repeat
//   approach).
template <class Base = A_Tpl>
class PyA_Tpl : public Base {
public:
    using Base::Base; // Inherit constructors
    int unlucky_number() override { PYBIND11_OVERLOAD_PURE(int, Base, unlucky_number, ); }
231
    std::string say_something(unsigned times) override { PYBIND11_OVERLOAD(std::string, Base, say_something, times); }
232
233
234
235
236
237
};
template <class Base = B_Tpl>
class PyB_Tpl : public PyA_Tpl<Base> {
public:
    using PyA_Tpl<Base>::PyA_Tpl; // Inherit constructors (via PyA_Tpl's inherited constructors)
    int unlucky_number() override { PYBIND11_OVERLOAD(int, Base, unlucky_number, ); }
Wenzel Jakob's avatar
Wenzel Jakob committed
238
    double lucky_number() override { PYBIND11_OVERLOAD(double, Base, lucky_number, ); }
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
};
// Since C_Tpl and D_Tpl don't declare any new virtual methods, we don't actually need these (we can
// use PyB_Tpl<C_Tpl> and PyB_Tpl<D_Tpl> for the trampoline classes instead):
/*
template <class Base = C_Tpl> class PyC_Tpl : public PyB_Tpl<Base> {
public:
    using PyB_Tpl<Base>::PyB_Tpl;
};
template <class Base = D_Tpl> class PyD_Tpl : public PyC_Tpl<Base> {
public:
    using PyC_Tpl<Base>::PyC_Tpl;
};
*/


void initialize_inherited_virtuals(py::module &m) {
    // Method 1: repeat
256
    py::class_<A_Repeat, PyA_Repeat>(m, "A_Repeat")
257
258
        .def(py::init<>())
        .def("unlucky_number", &A_Repeat::unlucky_number)
259
260
        .def("say_something", &A_Repeat::say_something)
        .def("say_everything", &A_Repeat::say_everything);
261
    py::class_<B_Repeat, A_Repeat, PyB_Repeat>(m, "B_Repeat")
262
263
        .def(py::init<>())
        .def("lucky_number", &B_Repeat::lucky_number);
264
    py::class_<C_Repeat, B_Repeat, PyC_Repeat>(m, "C_Repeat")
265
        .def(py::init<>());
266
    py::class_<D_Repeat, C_Repeat, PyD_Repeat>(m, "D_Repeat")
267
268
269
        .def(py::init<>());

    // Method 2: Templated trampolines
270
    py::class_<A_Tpl, PyA_Tpl<>>(m, "A_Tpl")
271
272
        .def(py::init<>())
        .def("unlucky_number", &A_Tpl::unlucky_number)
273
274
        .def("say_something", &A_Tpl::say_something)
        .def("say_everything", &A_Tpl::say_everything);
275
    py::class_<B_Tpl, A_Tpl, PyB_Tpl<>>(m, "B_Tpl")
276
277
        .def(py::init<>())
        .def("lucky_number", &B_Tpl::lucky_number);
278
    py::class_<C_Tpl, B_Tpl, PyB_Tpl<C_Tpl>>(m, "C_Tpl")
279
        .def(py::init<>());
280
    py::class_<D_Tpl, C_Tpl, PyB_Tpl<D_Tpl>>(m, "D_Tpl")
281
282
283
284
285
        .def(py::init<>());

};


286
test_initializer virtual_functions([](py::module &m) {
287
    /* Important: indicate the trampoline class PyExampleVirt using the third
288
289
       argument to py::class_. The second argument with the unique pointer
       is simply the default holder type used by pybind11. */
290
    py::class_<ExampleVirt, PyExampleVirt>(m, "ExampleVirt")
291
292
        .def(py::init<int>())
        /* Reference original class in function definitions */
293
294
295
        .def("run", &ExampleVirt::run)
        .def("run_bool", &ExampleVirt::run_bool)
        .def("pure_virtual", &ExampleVirt::pure_virtual);
296

297
    py::class_<NonCopyable>(m, "NonCopyable")
298
299
        .def(py::init<int, int>());

300
    py::class_<Movable>(m, "Movable")
301
302
303
        .def(py::init<int, int>());

#if !defined(__INTEL_COMPILER)
304
    py::class_<NCVirt, NCVirtTrampoline>(m, "NCVirt")
305
306
307
308
        .def(py::init<>())
        .def("get_noncopyable", &NCVirt::get_noncopyable)
        .def("get_movable", &NCVirt::get_movable)
        .def("print_nc", &NCVirt::print_nc)
309
310
        .def("print_movable", &NCVirt::print_movable);
#endif
311

312
313
314
    m.def("runExampleVirt", &runExampleVirt);
    m.def("runExampleVirtBool", &runExampleVirtBool);
    m.def("runExampleVirtVirtual", &runExampleVirtVirtual);
315

316
    m.def("cstats_debug", &ConstructorStats::get<ExampleVirt>);
317
    initialize_inherited_virtuals(m);
318
});